Support -pie for arm*-eabi targets.
[deliverable/binutils-gdb.git] / gdb / breakpoint.c
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. */
85 enum exception_event_kind
86 {
87 EX_EVENT_THROW,
88 EX_EVENT_RETHROW,
89 EX_EVENT_CATCH
90 };
91
92 /* Prototypes for local functions. */
93
94 static void enable_delete_command (char *, int);
95
96 static void enable_once_command (char *, int);
97
98 static void enable_count_command (char *, int);
99
100 static void disable_command (char *, int);
101
102 static void enable_command (char *, int);
103
104 static void map_breakpoint_numbers (char *, void (*) (struct breakpoint *,
105 void *),
106 void *);
107
108 static void ignore_command (char *, int);
109
110 static int breakpoint_re_set_one (void *);
111
112 static void breakpoint_re_set_default (struct breakpoint *);
113
114 static void
115 create_sals_from_location_default (const struct event_location *location,
116 struct linespec_result *canonical,
117 enum bptype type_wanted);
118
119 static 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
127 static 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
132 static void clear_command (char *, int);
133
134 static void catch_command (char *, int);
135
136 static int can_use_hardware_watchpoint (struct value *);
137
138 static void break_command_1 (char *, int, int);
139
140 static void mention (struct breakpoint *);
141
142 static struct breakpoint *set_raw_breakpoint_without_location (struct gdbarch *,
143 enum bptype,
144 const struct breakpoint_ops *);
145 static 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. */
150 struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
151 struct symtab_and_line,
152 enum bptype,
153 const struct breakpoint_ops *);
154
155 static 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
161 static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
162
163 static CORE_ADDR adjust_breakpoint_address (struct gdbarch *gdbarch,
164 CORE_ADDR bpaddr,
165 enum bptype bptype);
166
167 static void describe_other_breakpoints (struct gdbarch *,
168 struct program_space *, CORE_ADDR,
169 struct obj_section *, int);
170
171 static int watchpoint_locations_match (struct bp_location *loc1,
172 struct bp_location *loc2);
173
174 static int breakpoint_location_address_match (struct bp_location *bl,
175 struct address_space *aspace,
176 CORE_ADDR addr);
177
178 static int breakpoint_location_address_range_overlap (struct bp_location *,
179 struct address_space *,
180 CORE_ADDR, int);
181
182 static void breakpoints_info (char *, int);
183
184 static void watchpoints_info (char *, int);
185
186 static int breakpoint_1 (char *, int,
187 int (*) (const struct breakpoint *));
188
189 static int breakpoint_cond_eval (void *);
190
191 static void cleanup_executing_breakpoints (void *);
192
193 static void commands_command (char *, int);
194
195 static void condition_command (char *, int);
196
197 typedef enum
198 {
199 mark_inserted,
200 mark_uninserted
201 }
202 insertion_state_t;
203
204 static int remove_breakpoint (struct bp_location *, insertion_state_t);
205 static int remove_breakpoint_1 (struct bp_location *, insertion_state_t);
206
207 static enum print_stop_action print_bp_stop_message (bpstat bs);
208
209 static int watchpoint_check (void *);
210
211 static void maintenance_info_breakpoints (char *, int);
212
213 static int hw_breakpoint_used_count (void);
214
215 static int hw_watchpoint_use_count (struct breakpoint *);
216
217 static int hw_watchpoint_used_count_others (struct breakpoint *except,
218 enum bptype type,
219 int *other_type_used);
220
221 static void hbreak_command (char *, int);
222
223 static void thbreak_command (char *, int);
224
225 static void enable_breakpoint_disp (struct breakpoint *, enum bpdisp,
226 int count);
227
228 static void stop_command (char *arg, int from_tty);
229
230 static void stopin_command (char *arg, int from_tty);
231
232 static void stopat_command (char *arg, int from_tty);
233
234 static void tcatch_command (char *arg, int from_tty);
235
236 static void free_bp_location (struct bp_location *loc);
237 static void incref_bp_location (struct bp_location *loc);
238 static void decref_bp_location (struct bp_location **loc);
239
240 static 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. */
244 enum 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
277 static void update_global_location_list (enum ugll_insert_mode);
278
279 static void update_global_location_list_nothrow (enum ugll_insert_mode);
280
281 static int is_hardware_watchpoint (const struct breakpoint *bpt);
282
283 static void insert_breakpoint_locations (void);
284
285 static void tracepoints_info (char *, int);
286
287 static void delete_trace_command (char *, int);
288
289 static void enable_trace_command (char *, int);
290
291 static void disable_trace_command (char *, int);
292
293 static void trace_pass_command (char *, int);
294
295 static void set_tracepoint_count (int num);
296
297 static int is_masked_watchpoint (const struct breakpoint *b);
298
299 static 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
304 static 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.). */
309 static struct breakpoint_ops bkpt_base_breakpoint_ops;
310
311 /* Internal breakpoints class type. */
312 static struct breakpoint_ops internal_breakpoint_ops;
313
314 /* Momentary breakpoints class type. */
315 static struct breakpoint_ops momentary_breakpoint_ops;
316
317 /* Momentary breakpoints for bp_longjmp and bp_exception class type. */
318 static struct breakpoint_ops longjmp_breakpoint_ops;
319
320 /* The breakpoint_ops structure to be used in regular user created
321 breakpoints. */
322 struct breakpoint_ops bkpt_breakpoint_ops;
323
324 /* Breakpoints set on probes. */
325 static struct breakpoint_ops bkpt_probe_breakpoint_ops;
326
327 /* Dynamic printf class type. */
328 struct 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
337 static const char dprintf_style_gdb[] = "gdb";
338 static const char dprintf_style_call[] = "call";
339 static const char dprintf_style_agent[] = "agent";
340 static const char *const dprintf_style_enums[] = {
341 dprintf_style_gdb,
342 dprintf_style_call,
343 dprintf_style_agent,
344 NULL
345 };
346 static 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
353 static 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
363 static char *dprintf_channel = "";
364
365 /* True if dprintf commands should continue to operate even if GDB
366 has disconnected. */
367 static int disconnected_dprintf = 1;
368
369 /* A reference-counted struct command_line. This lets multiple
370 breakpoints share a single command list. */
371 struct counted_command_line
372 {
373 /* The reference count. */
374 int refc;
375
376 /* The command list. */
377 struct command_line *commands;
378 };
379
380 struct command_line *
381 breakpoint_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
389 static int breakpoint_proceeded;
390
391 const char *
392 bpdisp_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. */
405 static int can_use_hw_watchpoints;
406
407 static void
408 show_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. */
422 static enum auto_boolean pending_break_support;
423 static void
424 show_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. */
438 static int automatic_hardware_breakpoints;
439 static void
440 show_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. */
456 static int always_inserted_mode = 0;
457
458 static void
459 show_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
468 int
469 breakpoints_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
502 static const char condition_evaluation_both[] = "host or target";
503
504 /* Modes for breakpoint condition evaluation. */
505 static const char condition_evaluation_auto[] = "auto";
506 static const char condition_evaluation_host[] = "host";
507 static const char condition_evaluation_target[] = "target";
508 static 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. */
516 static 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. */
520 static 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
527 static const char *
528 translate_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
543 static const char *
544 breakpoint_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
552 static int
553 gdb_evaluates_breakpoint_condition_p (void)
554 {
555 const char *mode = breakpoint_condition_evaluation_mode ();
556
557 return (mode == condition_evaluation_host);
558 }
559
560 void _initialize_breakpoint (void);
561
562 /* Are we executing breakpoint commands? */
563 static int executing_breakpoint_commands;
564
565 /* Are overlay event breakpoints enabled? */
566 static int overlay_events_enabled;
567
568 /* See description in breakpoint.h. */
569 int 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
613 struct breakpoint *breakpoint_chain;
614
615 /* Array is sorted by bp_location_compare - primarily by the ADDRESS. */
616
617 static struct bp_location **bp_location;
618
619 /* Number of elements of BP_LOCATION. */
620
621 static 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
629 static 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
637 static 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. */
642 VEC(bp_location_p) *moribund_locations = NULL;
643
644 /* Number of last breakpoint made. */
645
646 static 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. */
652 static int prev_breakpoint_count;
653
654 /* Number of last tracepoint made. */
655
656 static int tracepoint_count;
657
658 static struct cmd_list_element *breakpoint_set_cmdlist;
659 static struct cmd_list_element *breakpoint_show_cmdlist;
660 struct cmd_list_element *save_cmdlist;
661
662 /* See declaration at breakpoint.h. */
663
664 struct breakpoint *
665 breakpoint_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. */
680 static int
681 breakpoint_enabled (struct breakpoint *b)
682 {
683 return (b->enable_state == bp_enabled);
684 }
685
686 /* Set breakpoint count to NUM. */
687
688 static void
689 set_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. */
698 static int rbreak_start_breakpoint_count;
699
700 /* Called at the start an "rbreak" command to record the first
701 breakpoint made. */
702
703 void
704 start_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
712 void
713 end_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
720 void
721 clear_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
732 static struct counted_command_line *
733 alloc_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
745 static void
746 incref_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
756 static void
757 decref_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
772 static void
773 do_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
781 static struct cleanup *
782 make_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
791 struct breakpoint *
792 get_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
808 static void
809 mark_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
831 static void
832 mark_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
852 static void
853 set_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
912 static void
913 show_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
931 static int
932 bp_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
948 static struct bp_location **
949 get_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
978 void
979 set_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
1054 static VEC (char_ptr) *
1055 condition_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
1099 static void
1100 condition_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
1144 static void
1145 check_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
1173 static int
1174 is_tracepoint_type (enum bptype type)
1175 {
1176 return (type == bp_tracepoint
1177 || type == bp_fast_tracepoint
1178 || type == bp_static_tracepoint);
1179 }
1180
1181 int
1182 is_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
1191 static void
1192 validate_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
1258 VEC(breakpoint_p) *
1259 static_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
1279 void
1280 breakpoint_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
1294 void
1295 breakpoint_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
1307 void
1308 breakpoint_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
1320 void
1321 breakpoint_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
1330 void
1331 check_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
1341 struct 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
1361 static void
1362 do_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
1407 static void
1408 commands_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
1454 static void
1455 commands_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. */
1465 enum command_control_type
1466 commands_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
1474 static int
1475 bp_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
1495 static void
1496 one_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
1599 void
1600 breakpoint_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
1608 /* Find BC_L which is a leftmost element which may affect BUF
1609 content. It is safe to report lower value but a failure to
1610 report higher one. */
1611
1612 bc_l = 0;
1613 bc_r = bp_location_count;
1614 while (bc_l + 1 < bc_r)
1615 {
1616 struct bp_location *bl;
1617
1618 bc = (bc_l + bc_r) / 2;
1619 bl = bp_location[bc];
1620
1621 /* Check first BL->ADDRESS will not overflow due to the added
1622 constant. Then advance the left boundary only if we are sure
1623 the BC element can in no way affect the BUF content (MEMADDR
1624 to MEMADDR + LEN range).
1625
1626 Use the BP_LOCATION_SHADOW_LEN_AFTER_ADDRESS_MAX safety
1627 offset so that we cannot miss a breakpoint with its shadow
1628 range tail still reaching MEMADDR. */
1629
1630 if ((bl->address + bp_location_shadow_len_after_address_max
1631 >= bl->address)
1632 && (bl->address + bp_location_shadow_len_after_address_max
1633 <= memaddr))
1634 bc_l = bc;
1635 else
1636 bc_r = bc;
1637 }
1638
1639 /* Due to the binary search above, we need to make sure we pick the
1640 first location that's at BC_L's address. E.g., if there are
1641 multiple locations at the same address, BC_L may end up pointing
1642 at a duplicate location, and miss the "master"/"inserted"
1643 location. Say, given locations L1, L2 and L3 at addresses A and
1644 B:
1645
1646 L1@A, L2@A, L3@B, ...
1647
1648 BC_L could end up pointing at location L2, while the "master"
1649 location could be L1. Since the `loc->inserted' flag is only set
1650 on "master" locations, we'd forget to restore the shadow of L1
1651 and L2. */
1652 while (bc_l > 0
1653 && bp_location[bc_l]->address == bp_location[bc_l - 1]->address)
1654 bc_l--;
1655
1656 /* Now do full processing of the found relevant range of elements. */
1657
1658 for (bc = bc_l; bc < bp_location_count; bc++)
1659 {
1660 struct bp_location *bl = bp_location[bc];
1661
1662 /* bp_location array has BL->OWNER always non-NULL. */
1663 if (bl->owner->type == bp_none)
1664 warning (_("reading through apparently deleted breakpoint #%d?"),
1665 bl->owner->number);
1666
1667 /* Performance optimization: any further element can no longer affect BUF
1668 content. */
1669
1670 if (bl->address >= bp_location_placed_address_before_address_max
1671 && memaddr + len <= (bl->address
1672 - bp_location_placed_address_before_address_max))
1673 break;
1674
1675 if (!bp_location_has_shadow (bl))
1676 continue;
1677
1678 one_breakpoint_xfer_memory (readbuf, writebuf, writebuf_org,
1679 memaddr, len, &bl->target_info, bl->gdbarch);
1680 }
1681 }
1682
1683 \f
1684
1685 /* Return true if BPT is either a software breakpoint or a hardware
1686 breakpoint. */
1687
1688 int
1689 is_breakpoint (const struct breakpoint *bpt)
1690 {
1691 return (bpt->type == bp_breakpoint
1692 || bpt->type == bp_hardware_breakpoint
1693 || bpt->type == bp_dprintf);
1694 }
1695
1696 /* Return true if BPT is of any hardware watchpoint kind. */
1697
1698 static int
1699 is_hardware_watchpoint (const struct breakpoint *bpt)
1700 {
1701 return (bpt->type == bp_hardware_watchpoint
1702 || bpt->type == bp_read_watchpoint
1703 || bpt->type == bp_access_watchpoint);
1704 }
1705
1706 /* Return true if BPT is of any watchpoint kind, hardware or
1707 software. */
1708
1709 int
1710 is_watchpoint (const struct breakpoint *bpt)
1711 {
1712 return (is_hardware_watchpoint (bpt)
1713 || bpt->type == bp_watchpoint);
1714 }
1715
1716 /* Returns true if the current thread and its running state are safe
1717 to evaluate or update watchpoint B. Watchpoints on local
1718 expressions need to be evaluated in the context of the thread that
1719 was current when the watchpoint was created, and, that thread needs
1720 to be stopped to be able to select the correct frame context.
1721 Watchpoints on global expressions can be evaluated on any thread,
1722 and in any state. It is presently left to the target allowing
1723 memory accesses when threads are running. */
1724
1725 static int
1726 watchpoint_in_thread_scope (struct watchpoint *b)
1727 {
1728 return (b->base.pspace == current_program_space
1729 && (ptid_equal (b->watchpoint_thread, null_ptid)
1730 || (ptid_equal (inferior_ptid, b->watchpoint_thread)
1731 && !is_executing (inferior_ptid))));
1732 }
1733
1734 /* Set watchpoint B to disp_del_at_next_stop, even including its possible
1735 associated bp_watchpoint_scope breakpoint. */
1736
1737 static void
1738 watchpoint_del_at_next_stop (struct watchpoint *w)
1739 {
1740 struct breakpoint *b = &w->base;
1741
1742 if (b->related_breakpoint != b)
1743 {
1744 gdb_assert (b->related_breakpoint->type == bp_watchpoint_scope);
1745 gdb_assert (b->related_breakpoint->related_breakpoint == b);
1746 b->related_breakpoint->disposition = disp_del_at_next_stop;
1747 b->related_breakpoint->related_breakpoint = b->related_breakpoint;
1748 b->related_breakpoint = b;
1749 }
1750 b->disposition = disp_del_at_next_stop;
1751 }
1752
1753 /* Extract a bitfield value from value VAL using the bit parameters contained in
1754 watchpoint W. */
1755
1756 static struct value *
1757 extract_bitfield_from_watchpoint_value (struct watchpoint *w, struct value *val)
1758 {
1759 struct value *bit_val;
1760
1761 if (val == NULL)
1762 return NULL;
1763
1764 bit_val = allocate_value (value_type (val));
1765
1766 unpack_value_bitfield (bit_val,
1767 w->val_bitpos,
1768 w->val_bitsize,
1769 value_contents_for_printing (val),
1770 value_offset (val),
1771 val);
1772
1773 return bit_val;
1774 }
1775
1776 /* Allocate a dummy location and add it to B, which must be a software
1777 watchpoint. This is required because even if a software watchpoint
1778 is not watching any memory, bpstat_stop_status requires a location
1779 to be able to report stops. */
1780
1781 static void
1782 software_watchpoint_add_no_memory_location (struct breakpoint *b,
1783 struct program_space *pspace)
1784 {
1785 gdb_assert (b->type == bp_watchpoint && b->loc == NULL);
1786
1787 b->loc = allocate_bp_location (b);
1788 b->loc->pspace = pspace;
1789 b->loc->address = -1;
1790 b->loc->length = -1;
1791 }
1792
1793 /* Returns true if B is a software watchpoint that is not watching any
1794 memory (e.g., "watch $pc"). */
1795
1796 static int
1797 is_no_memory_software_watchpoint (struct breakpoint *b)
1798 {
1799 return (b->type == bp_watchpoint
1800 && b->loc != NULL
1801 && b->loc->next == NULL
1802 && b->loc->address == -1
1803 && b->loc->length == -1);
1804 }
1805
1806 /* Assuming that B is a watchpoint:
1807 - Reparse watchpoint expression, if REPARSE is non-zero
1808 - Evaluate expression and store the result in B->val
1809 - Evaluate the condition if there is one, and store the result
1810 in b->loc->cond.
1811 - Update the list of values that must be watched in B->loc.
1812
1813 If the watchpoint disposition is disp_del_at_next_stop, then do
1814 nothing. If this is local watchpoint that is out of scope, delete
1815 it.
1816
1817 Even with `set breakpoint always-inserted on' the watchpoints are
1818 removed + inserted on each stop here. Normal breakpoints must
1819 never be removed because they might be missed by a running thread
1820 when debugging in non-stop mode. On the other hand, hardware
1821 watchpoints (is_hardware_watchpoint; processed here) are specific
1822 to each LWP since they are stored in each LWP's hardware debug
1823 registers. Therefore, such LWP must be stopped first in order to
1824 be able to modify its hardware watchpoints.
1825
1826 Hardware watchpoints must be reset exactly once after being
1827 presented to the user. It cannot be done sooner, because it would
1828 reset the data used to present the watchpoint hit to the user. And
1829 it must not be done later because it could display the same single
1830 watchpoint hit during multiple GDB stops. Note that the latter is
1831 relevant only to the hardware watchpoint types bp_read_watchpoint
1832 and bp_access_watchpoint. False hit by bp_hardware_watchpoint is
1833 not user-visible - its hit is suppressed if the memory content has
1834 not changed.
1835
1836 The following constraints influence the location where we can reset
1837 hardware watchpoints:
1838
1839 * target_stopped_by_watchpoint and target_stopped_data_address are
1840 called several times when GDB stops.
1841
1842 [linux]
1843 * Multiple hardware watchpoints can be hit at the same time,
1844 causing GDB to stop. GDB only presents one hardware watchpoint
1845 hit at a time as the reason for stopping, and all the other hits
1846 are presented later, one after the other, each time the user
1847 requests the execution to be resumed. Execution is not resumed
1848 for the threads still having pending hit event stored in
1849 LWP_INFO->STATUS. While the watchpoint is already removed from
1850 the inferior on the first stop the thread hit event is kept being
1851 reported from its cached value by linux_nat_stopped_data_address
1852 until the real thread resume happens after the watchpoint gets
1853 presented and thus its LWP_INFO->STATUS gets reset.
1854
1855 Therefore the hardware watchpoint hit can get safely reset on the
1856 watchpoint removal from inferior. */
1857
1858 static void
1859 update_watchpoint (struct watchpoint *b, int reparse)
1860 {
1861 int within_current_scope;
1862 struct frame_id saved_frame_id;
1863 int frame_saved;
1864
1865 /* If this is a local watchpoint, we only want to check if the
1866 watchpoint frame is in scope if the current thread is the thread
1867 that was used to create the watchpoint. */
1868 if (!watchpoint_in_thread_scope (b))
1869 return;
1870
1871 if (b->base.disposition == disp_del_at_next_stop)
1872 return;
1873
1874 frame_saved = 0;
1875
1876 /* Determine if the watchpoint is within scope. */
1877 if (b->exp_valid_block == NULL)
1878 within_current_scope = 1;
1879 else
1880 {
1881 struct frame_info *fi = get_current_frame ();
1882 struct gdbarch *frame_arch = get_frame_arch (fi);
1883 CORE_ADDR frame_pc = get_frame_pc (fi);
1884
1885 /* If we're at a point where the stack has been destroyed
1886 (e.g. in a function epilogue), unwinding may not work
1887 properly. Do not attempt to recreate locations at this
1888 point. See similar comments in watchpoint_check. */
1889 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
1890 return;
1891
1892 /* Save the current frame's ID so we can restore it after
1893 evaluating the watchpoint expression on its own frame. */
1894 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
1895 took a frame parameter, so that we didn't have to change the
1896 selected frame. */
1897 frame_saved = 1;
1898 saved_frame_id = get_frame_id (get_selected_frame (NULL));
1899
1900 fi = frame_find_by_id (b->watchpoint_frame);
1901 within_current_scope = (fi != NULL);
1902 if (within_current_scope)
1903 select_frame (fi);
1904 }
1905
1906 /* We don't free locations. They are stored in the bp_location array
1907 and update_global_location_list will eventually delete them and
1908 remove breakpoints if needed. */
1909 b->base.loc = NULL;
1910
1911 if (within_current_scope && reparse)
1912 {
1913 const char *s;
1914
1915 if (b->exp)
1916 {
1917 xfree (b->exp);
1918 b->exp = NULL;
1919 }
1920 s = b->exp_string_reparse ? b->exp_string_reparse : b->exp_string;
1921 b->exp = parse_exp_1 (&s, 0, b->exp_valid_block, 0);
1922 /* If the meaning of expression itself changed, the old value is
1923 no longer relevant. We don't want to report a watchpoint hit
1924 to the user when the old value and the new value may actually
1925 be completely different objects. */
1926 value_free (b->val);
1927 b->val = NULL;
1928 b->val_valid = 0;
1929
1930 /* Note that unlike with breakpoints, the watchpoint's condition
1931 expression is stored in the breakpoint object, not in the
1932 locations (re)created below. */
1933 if (b->base.cond_string != NULL)
1934 {
1935 if (b->cond_exp != NULL)
1936 {
1937 xfree (b->cond_exp);
1938 b->cond_exp = NULL;
1939 }
1940
1941 s = b->base.cond_string;
1942 b->cond_exp = parse_exp_1 (&s, 0, b->cond_exp_valid_block, 0);
1943 }
1944 }
1945
1946 /* If we failed to parse the expression, for example because
1947 it refers to a global variable in a not-yet-loaded shared library,
1948 don't try to insert watchpoint. We don't automatically delete
1949 such watchpoint, though, since failure to parse expression
1950 is different from out-of-scope watchpoint. */
1951 if (!target_has_execution)
1952 {
1953 /* Without execution, memory can't change. No use to try and
1954 set watchpoint locations. The watchpoint will be reset when
1955 the target gains execution, through breakpoint_re_set. */
1956 if (!can_use_hw_watchpoints)
1957 {
1958 if (b->base.ops->works_in_software_mode (&b->base))
1959 b->base.type = bp_watchpoint;
1960 else
1961 error (_("Can't set read/access watchpoint when "
1962 "hardware watchpoints are disabled."));
1963 }
1964 }
1965 else if (within_current_scope && b->exp)
1966 {
1967 int pc = 0;
1968 struct value *val_chain, *v, *result, *next;
1969 struct program_space *frame_pspace;
1970
1971 fetch_subexp_value (b->exp, &pc, &v, &result, &val_chain, 0);
1972
1973 /* Avoid setting b->val if it's already set. The meaning of
1974 b->val is 'the last value' user saw, and we should update
1975 it only if we reported that last value to user. As it
1976 happens, the code that reports it updates b->val directly.
1977 We don't keep track of the memory value for masked
1978 watchpoints. */
1979 if (!b->val_valid && !is_masked_watchpoint (&b->base))
1980 {
1981 if (b->val_bitsize != 0)
1982 {
1983 v = extract_bitfield_from_watchpoint_value (b, v);
1984 if (v != NULL)
1985 release_value (v);
1986 }
1987 b->val = v;
1988 b->val_valid = 1;
1989 }
1990
1991 frame_pspace = get_frame_program_space (get_selected_frame (NULL));
1992
1993 /* Look at each value on the value chain. */
1994 for (v = val_chain; v; v = value_next (v))
1995 {
1996 /* If it's a memory location, and GDB actually needed
1997 its contents to evaluate the expression, then we
1998 must watch it. If the first value returned is
1999 still lazy, that means an error occurred reading it;
2000 watch it anyway in case it becomes readable. */
2001 if (VALUE_LVAL (v) == lval_memory
2002 && (v == val_chain || ! value_lazy (v)))
2003 {
2004 struct type *vtype = check_typedef (value_type (v));
2005
2006 /* We only watch structs and arrays if user asked
2007 for it explicitly, never if they just happen to
2008 appear in the middle of some value chain. */
2009 if (v == result
2010 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
2011 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
2012 {
2013 CORE_ADDR addr;
2014 enum target_hw_bp_type type;
2015 struct bp_location *loc, **tmp;
2016 int bitpos = 0, bitsize = 0;
2017
2018 if (value_bitsize (v) != 0)
2019 {
2020 /* Extract the bit parameters out from the bitfield
2021 sub-expression. */
2022 bitpos = value_bitpos (v);
2023 bitsize = value_bitsize (v);
2024 }
2025 else if (v == result && b->val_bitsize != 0)
2026 {
2027 /* If VAL_BITSIZE != 0 then RESULT is actually a bitfield
2028 lvalue whose bit parameters are saved in the fields
2029 VAL_BITPOS and VAL_BITSIZE. */
2030 bitpos = b->val_bitpos;
2031 bitsize = b->val_bitsize;
2032 }
2033
2034 addr = value_address (v);
2035 if (bitsize != 0)
2036 {
2037 /* Skip the bytes that don't contain the bitfield. */
2038 addr += bitpos / 8;
2039 }
2040
2041 type = hw_write;
2042 if (b->base.type == bp_read_watchpoint)
2043 type = hw_read;
2044 else if (b->base.type == bp_access_watchpoint)
2045 type = hw_access;
2046
2047 loc = allocate_bp_location (&b->base);
2048 for (tmp = &(b->base.loc); *tmp != NULL; tmp = &((*tmp)->next))
2049 ;
2050 *tmp = loc;
2051 loc->gdbarch = get_type_arch (value_type (v));
2052
2053 loc->pspace = frame_pspace;
2054 loc->address = addr;
2055
2056 if (bitsize != 0)
2057 {
2058 /* Just cover the bytes that make up the bitfield. */
2059 loc->length = ((bitpos % 8) + bitsize + 7) / 8;
2060 }
2061 else
2062 loc->length = TYPE_LENGTH (value_type (v));
2063
2064 loc->watchpoint_type = type;
2065 }
2066 }
2067 }
2068
2069 /* Change the type of breakpoint between hardware assisted or
2070 an ordinary watchpoint depending on the hardware support
2071 and free hardware slots. REPARSE is set when the inferior
2072 is started. */
2073 if (reparse)
2074 {
2075 int reg_cnt;
2076 enum bp_loc_type loc_type;
2077 struct bp_location *bl;
2078
2079 reg_cnt = can_use_hardware_watchpoint (val_chain);
2080
2081 if (reg_cnt)
2082 {
2083 int i, target_resources_ok, other_type_used;
2084 enum bptype type;
2085
2086 /* Use an exact watchpoint when there's only one memory region to be
2087 watched, and only one debug register is needed to watch it. */
2088 b->exact = target_exact_watchpoints && reg_cnt == 1;
2089
2090 /* We need to determine how many resources are already
2091 used for all other hardware watchpoints plus this one
2092 to see if we still have enough resources to also fit
2093 this watchpoint in as well. */
2094
2095 /* If this is a software watchpoint, we try to turn it
2096 to a hardware one -- count resources as if B was of
2097 hardware watchpoint type. */
2098 type = b->base.type;
2099 if (type == bp_watchpoint)
2100 type = bp_hardware_watchpoint;
2101
2102 /* This watchpoint may or may not have been placed on
2103 the list yet at this point (it won't be in the list
2104 if we're trying to create it for the first time,
2105 through watch_command), so always account for it
2106 manually. */
2107
2108 /* Count resources used by all watchpoints except B. */
2109 i = hw_watchpoint_used_count_others (&b->base, type, &other_type_used);
2110
2111 /* Add in the resources needed for B. */
2112 i += hw_watchpoint_use_count (&b->base);
2113
2114 target_resources_ok
2115 = target_can_use_hardware_watchpoint (type, i, other_type_used);
2116 if (target_resources_ok <= 0)
2117 {
2118 int sw_mode = b->base.ops->works_in_software_mode (&b->base);
2119
2120 if (target_resources_ok == 0 && !sw_mode)
2121 error (_("Target does not support this type of "
2122 "hardware watchpoint."));
2123 else if (target_resources_ok < 0 && !sw_mode)
2124 error (_("There are not enough available hardware "
2125 "resources for this watchpoint."));
2126
2127 /* Downgrade to software watchpoint. */
2128 b->base.type = bp_watchpoint;
2129 }
2130 else
2131 {
2132 /* If this was a software watchpoint, we've just
2133 found we have enough resources to turn it to a
2134 hardware watchpoint. Otherwise, this is a
2135 nop. */
2136 b->base.type = type;
2137 }
2138 }
2139 else if (!b->base.ops->works_in_software_mode (&b->base))
2140 {
2141 if (!can_use_hw_watchpoints)
2142 error (_("Can't set read/access watchpoint when "
2143 "hardware watchpoints are disabled."));
2144 else
2145 error (_("Expression cannot be implemented with "
2146 "read/access watchpoint."));
2147 }
2148 else
2149 b->base.type = bp_watchpoint;
2150
2151 loc_type = (b->base.type == bp_watchpoint? bp_loc_other
2152 : bp_loc_hardware_watchpoint);
2153 for (bl = b->base.loc; bl; bl = bl->next)
2154 bl->loc_type = loc_type;
2155 }
2156
2157 for (v = val_chain; v; v = next)
2158 {
2159 next = value_next (v);
2160 if (v != b->val)
2161 value_free (v);
2162 }
2163
2164 /* If a software watchpoint is not watching any memory, then the
2165 above left it without any location set up. But,
2166 bpstat_stop_status requires a location to be able to report
2167 stops, so make sure there's at least a dummy one. */
2168 if (b->base.type == bp_watchpoint && b->base.loc == NULL)
2169 software_watchpoint_add_no_memory_location (&b->base, frame_pspace);
2170 }
2171 else if (!within_current_scope)
2172 {
2173 printf_filtered (_("\
2174 Watchpoint %d deleted because the program has left the block\n\
2175 in which its expression is valid.\n"),
2176 b->base.number);
2177 watchpoint_del_at_next_stop (b);
2178 }
2179
2180 /* Restore the selected frame. */
2181 if (frame_saved)
2182 select_frame (frame_find_by_id (saved_frame_id));
2183 }
2184
2185
2186 /* Returns 1 iff breakpoint location should be
2187 inserted in the inferior. We don't differentiate the type of BL's owner
2188 (breakpoint vs. tracepoint), although insert_location in tracepoint's
2189 breakpoint_ops is not defined, because in insert_bp_location,
2190 tracepoint's insert_location will not be called. */
2191 static int
2192 should_be_inserted (struct bp_location *bl)
2193 {
2194 if (bl->owner == NULL || !breakpoint_enabled (bl->owner))
2195 return 0;
2196
2197 if (bl->owner->disposition == disp_del_at_next_stop)
2198 return 0;
2199
2200 if (!bl->enabled || bl->shlib_disabled || bl->duplicate)
2201 return 0;
2202
2203 if (user_breakpoint_p (bl->owner) && bl->pspace->executing_startup)
2204 return 0;
2205
2206 /* This is set for example, when we're attached to the parent of a
2207 vfork, and have detached from the child. The child is running
2208 free, and we expect it to do an exec or exit, at which point the
2209 OS makes the parent schedulable again (and the target reports
2210 that the vfork is done). Until the child is done with the shared
2211 memory region, do not insert breakpoints in the parent, otherwise
2212 the child could still trip on the parent's breakpoints. Since
2213 the parent is blocked anyway, it won't miss any breakpoint. */
2214 if (bl->pspace->breakpoints_not_allowed)
2215 return 0;
2216
2217 /* Don't insert a breakpoint if we're trying to step past its
2218 location, except if the breakpoint is a single-step breakpoint,
2219 and the breakpoint's thread is the thread which is stepping past
2220 a breakpoint. */
2221 if ((bl->loc_type == bp_loc_software_breakpoint
2222 || bl->loc_type == bp_loc_hardware_breakpoint)
2223 && stepping_past_instruction_at (bl->pspace->aspace,
2224 bl->address)
2225 /* The single-step breakpoint may be inserted at the location
2226 we're trying to step if the instruction branches to itself.
2227 However, the instruction won't be executed at all and it may
2228 break the semantics of the instruction, for example, the
2229 instruction is a conditional branch or updates some flags.
2230 We can't fix it unless GDB is able to emulate the instruction
2231 or switch to displaced stepping. */
2232 && !(bl->owner->type == bp_single_step
2233 && thread_is_stepping_over_breakpoint (bl->owner->thread)))
2234 {
2235 if (debug_infrun)
2236 {
2237 fprintf_unfiltered (gdb_stdlog,
2238 "infrun: skipping breakpoint: "
2239 "stepping past insn at: %s\n",
2240 paddress (bl->gdbarch, bl->address));
2241 }
2242 return 0;
2243 }
2244
2245 /* Don't insert watchpoints if we're trying to step past the
2246 instruction that triggered one. */
2247 if ((bl->loc_type == bp_loc_hardware_watchpoint)
2248 && stepping_past_nonsteppable_watchpoint ())
2249 {
2250 if (debug_infrun)
2251 {
2252 fprintf_unfiltered (gdb_stdlog,
2253 "infrun: stepping past non-steppable watchpoint. "
2254 "skipping watchpoint at %s:%d\n",
2255 paddress (bl->gdbarch, bl->address),
2256 bl->length);
2257 }
2258 return 0;
2259 }
2260
2261 return 1;
2262 }
2263
2264 /* Same as should_be_inserted but does the check assuming
2265 that the location is not duplicated. */
2266
2267 static int
2268 unduplicated_should_be_inserted (struct bp_location *bl)
2269 {
2270 int result;
2271 const int save_duplicate = bl->duplicate;
2272
2273 bl->duplicate = 0;
2274 result = should_be_inserted (bl);
2275 bl->duplicate = save_duplicate;
2276 return result;
2277 }
2278
2279 /* Parses a conditional described by an expression COND into an
2280 agent expression bytecode suitable for evaluation
2281 by the bytecode interpreter. Return NULL if there was
2282 any error during parsing. */
2283
2284 static struct agent_expr *
2285 parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond)
2286 {
2287 struct agent_expr *aexpr = NULL;
2288
2289 if (!cond)
2290 return NULL;
2291
2292 /* We don't want to stop processing, so catch any errors
2293 that may show up. */
2294 TRY
2295 {
2296 aexpr = gen_eval_for_expr (scope, cond);
2297 }
2298
2299 CATCH (ex, RETURN_MASK_ERROR)
2300 {
2301 /* If we got here, it means the condition could not be parsed to a valid
2302 bytecode expression and thus can't be evaluated on the target's side.
2303 It's no use iterating through the conditions. */
2304 return NULL;
2305 }
2306 END_CATCH
2307
2308 /* We have a valid agent expression. */
2309 return aexpr;
2310 }
2311
2312 /* Based on location BL, create a list of breakpoint conditions to be
2313 passed on to the target. If we have duplicated locations with different
2314 conditions, we will add such conditions to the list. The idea is that the
2315 target will evaluate the list of conditions and will only notify GDB when
2316 one of them is true. */
2317
2318 static void
2319 build_target_condition_list (struct bp_location *bl)
2320 {
2321 struct bp_location **locp = NULL, **loc2p;
2322 int null_condition_or_parse_error = 0;
2323 int modified = bl->needs_update;
2324 struct bp_location *loc;
2325
2326 /* Release conditions left over from a previous insert. */
2327 VEC_free (agent_expr_p, bl->target_info.conditions);
2328
2329 /* This is only meaningful if the target is
2330 evaluating conditions and if the user has
2331 opted for condition evaluation on the target's
2332 side. */
2333 if (gdb_evaluates_breakpoint_condition_p ()
2334 || !target_supports_evaluation_of_breakpoint_conditions ())
2335 return;
2336
2337 /* Do a first pass to check for locations with no assigned
2338 conditions or conditions that fail to parse to a valid agent expression
2339 bytecode. If any of these happen, then it's no use to send conditions
2340 to the target since this location will always trigger and generate a
2341 response back to GDB. */
2342 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2343 {
2344 loc = (*loc2p);
2345 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2346 {
2347 if (modified)
2348 {
2349 struct agent_expr *aexpr;
2350
2351 /* Re-parse the conditions since something changed. In that
2352 case we already freed the condition bytecodes (see
2353 force_breakpoint_reinsertion). We just
2354 need to parse the condition to bytecodes again. */
2355 aexpr = parse_cond_to_aexpr (bl->address, loc->cond);
2356 loc->cond_bytecode = aexpr;
2357 }
2358
2359 /* If we have a NULL bytecode expression, it means something
2360 went wrong or we have a null condition expression. */
2361 if (!loc->cond_bytecode)
2362 {
2363 null_condition_or_parse_error = 1;
2364 break;
2365 }
2366 }
2367 }
2368
2369 /* If any of these happened, it means we will have to evaluate the conditions
2370 for the location's address on gdb's side. It is no use keeping bytecodes
2371 for all the other duplicate locations, thus we free all of them here.
2372
2373 This is so we have a finer control over which locations' conditions are
2374 being evaluated by GDB or the remote stub. */
2375 if (null_condition_or_parse_error)
2376 {
2377 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2378 {
2379 loc = (*loc2p);
2380 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2381 {
2382 /* Only go as far as the first NULL bytecode is
2383 located. */
2384 if (!loc->cond_bytecode)
2385 return;
2386
2387 free_agent_expr (loc->cond_bytecode);
2388 loc->cond_bytecode = NULL;
2389 }
2390 }
2391 }
2392
2393 /* No NULL conditions or failed bytecode generation. Build a condition list
2394 for this location's address. */
2395 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2396 {
2397 loc = (*loc2p);
2398 if (loc->cond
2399 && is_breakpoint (loc->owner)
2400 && loc->pspace->num == bl->pspace->num
2401 && loc->owner->enable_state == bp_enabled
2402 && loc->enabled)
2403 /* Add the condition to the vector. This will be used later to send the
2404 conditions to the target. */
2405 VEC_safe_push (agent_expr_p, bl->target_info.conditions,
2406 loc->cond_bytecode);
2407 }
2408
2409 return;
2410 }
2411
2412 /* Parses a command described by string CMD into an agent expression
2413 bytecode suitable for evaluation by the bytecode interpreter.
2414 Return NULL if there was any error during parsing. */
2415
2416 static struct agent_expr *
2417 parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd)
2418 {
2419 struct cleanup *old_cleanups = 0;
2420 struct expression *expr, **argvec;
2421 struct agent_expr *aexpr = NULL;
2422 const char *cmdrest;
2423 const char *format_start, *format_end;
2424 struct format_piece *fpieces;
2425 int nargs;
2426 struct gdbarch *gdbarch = get_current_arch ();
2427
2428 if (!cmd)
2429 return NULL;
2430
2431 cmdrest = cmd;
2432
2433 if (*cmdrest == ',')
2434 ++cmdrest;
2435 cmdrest = skip_spaces_const (cmdrest);
2436
2437 if (*cmdrest++ != '"')
2438 error (_("No format string following the location"));
2439
2440 format_start = cmdrest;
2441
2442 fpieces = parse_format_string (&cmdrest);
2443
2444 old_cleanups = make_cleanup (free_format_pieces_cleanup, &fpieces);
2445
2446 format_end = cmdrest;
2447
2448 if (*cmdrest++ != '"')
2449 error (_("Bad format string, non-terminated '\"'."));
2450
2451 cmdrest = skip_spaces_const (cmdrest);
2452
2453 if (!(*cmdrest == ',' || *cmdrest == '\0'))
2454 error (_("Invalid argument syntax"));
2455
2456 if (*cmdrest == ',')
2457 cmdrest++;
2458 cmdrest = skip_spaces_const (cmdrest);
2459
2460 /* For each argument, make an expression. */
2461
2462 argvec = (struct expression **) alloca (strlen (cmd)
2463 * sizeof (struct expression *));
2464
2465 nargs = 0;
2466 while (*cmdrest != '\0')
2467 {
2468 const char *cmd1;
2469
2470 cmd1 = cmdrest;
2471 expr = parse_exp_1 (&cmd1, scope, block_for_pc (scope), 1);
2472 argvec[nargs++] = expr;
2473 cmdrest = cmd1;
2474 if (*cmdrest == ',')
2475 ++cmdrest;
2476 }
2477
2478 /* We don't want to stop processing, so catch any errors
2479 that may show up. */
2480 TRY
2481 {
2482 aexpr = gen_printf (scope, gdbarch, 0, 0,
2483 format_start, format_end - format_start,
2484 fpieces, nargs, argvec);
2485 }
2486 CATCH (ex, RETURN_MASK_ERROR)
2487 {
2488 /* If we got here, it means the command could not be parsed to a valid
2489 bytecode expression and thus can't be evaluated on the target's side.
2490 It's no use iterating through the other commands. */
2491 aexpr = NULL;
2492 }
2493 END_CATCH
2494
2495 do_cleanups (old_cleanups);
2496
2497 /* We have a valid agent expression, return it. */
2498 return aexpr;
2499 }
2500
2501 /* Based on location BL, create a list of breakpoint commands to be
2502 passed on to the target. If we have duplicated locations with
2503 different commands, we will add any such to the list. */
2504
2505 static void
2506 build_target_command_list (struct bp_location *bl)
2507 {
2508 struct bp_location **locp = NULL, **loc2p;
2509 int null_command_or_parse_error = 0;
2510 int modified = bl->needs_update;
2511 struct bp_location *loc;
2512
2513 /* Release commands left over from a previous insert. */
2514 VEC_free (agent_expr_p, bl->target_info.tcommands);
2515
2516 if (!target_can_run_breakpoint_commands ())
2517 return;
2518
2519 /* For now, limit to agent-style dprintf breakpoints. */
2520 if (dprintf_style != dprintf_style_agent)
2521 return;
2522
2523 /* For now, if we have any duplicate location that isn't a dprintf,
2524 don't install the target-side commands, as that would make the
2525 breakpoint not be reported to the core, and we'd lose
2526 control. */
2527 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2528 {
2529 loc = (*loc2p);
2530 if (is_breakpoint (loc->owner)
2531 && loc->pspace->num == bl->pspace->num
2532 && loc->owner->type != bp_dprintf)
2533 return;
2534 }
2535
2536 /* Do a first pass to check for locations with no assigned
2537 conditions or conditions that fail to parse to a valid agent expression
2538 bytecode. If any of these happen, then it's no use to send conditions
2539 to the target since this location will always trigger and generate a
2540 response back to GDB. */
2541 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2542 {
2543 loc = (*loc2p);
2544 if (is_breakpoint (loc->owner) && loc->pspace->num == bl->pspace->num)
2545 {
2546 if (modified)
2547 {
2548 struct agent_expr *aexpr;
2549
2550 /* Re-parse the commands since something changed. In that
2551 case we already freed the command bytecodes (see
2552 force_breakpoint_reinsertion). We just
2553 need to parse the command to bytecodes again. */
2554 aexpr = parse_cmd_to_aexpr (bl->address,
2555 loc->owner->extra_string);
2556 loc->cmd_bytecode = aexpr;
2557 }
2558
2559 /* If we have a NULL bytecode expression, it means something
2560 went wrong or we have a null command expression. */
2561 if (!loc->cmd_bytecode)
2562 {
2563 null_command_or_parse_error = 1;
2564 break;
2565 }
2566 }
2567 }
2568
2569 /* If anything failed, then we're not doing target-side commands,
2570 and so clean up. */
2571 if (null_command_or_parse_error)
2572 {
2573 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2574 {
2575 loc = (*loc2p);
2576 if (is_breakpoint (loc->owner)
2577 && loc->pspace->num == bl->pspace->num)
2578 {
2579 /* Only go as far as the first NULL bytecode is
2580 located. */
2581 if (loc->cmd_bytecode == NULL)
2582 return;
2583
2584 free_agent_expr (loc->cmd_bytecode);
2585 loc->cmd_bytecode = NULL;
2586 }
2587 }
2588 }
2589
2590 /* No NULL commands or failed bytecode generation. Build a command list
2591 for this location's address. */
2592 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, bl->address)
2593 {
2594 loc = (*loc2p);
2595 if (loc->owner->extra_string
2596 && is_breakpoint (loc->owner)
2597 && loc->pspace->num == bl->pspace->num
2598 && loc->owner->enable_state == bp_enabled
2599 && loc->enabled)
2600 /* Add the command to the vector. This will be used later
2601 to send the commands to the target. */
2602 VEC_safe_push (agent_expr_p, bl->target_info.tcommands,
2603 loc->cmd_bytecode);
2604 }
2605
2606 bl->target_info.persist = 0;
2607 /* Maybe flag this location as persistent. */
2608 if (bl->owner->type == bp_dprintf && disconnected_dprintf)
2609 bl->target_info.persist = 1;
2610 }
2611
2612 /* Insert a low-level "breakpoint" of some type. BL is the breakpoint
2613 location. Any error messages are printed to TMP_ERROR_STREAM; and
2614 DISABLED_BREAKS, and HW_BREAKPOINT_ERROR are used to report problems.
2615 Returns 0 for success, 1 if the bp_location type is not supported or
2616 -1 for failure.
2617
2618 NOTE drow/2003-09-09: This routine could be broken down to an
2619 object-style method for each breakpoint or catchpoint type. */
2620 static int
2621 insert_bp_location (struct bp_location *bl,
2622 struct ui_file *tmp_error_stream,
2623 int *disabled_breaks,
2624 int *hw_breakpoint_error,
2625 int *hw_bp_error_explained_already)
2626 {
2627 enum errors bp_err = GDB_NO_ERROR;
2628 const char *bp_err_message = NULL;
2629
2630 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
2631 return 0;
2632
2633 /* Note we don't initialize bl->target_info, as that wipes out
2634 the breakpoint location's shadow_contents if the breakpoint
2635 is still inserted at that location. This in turn breaks
2636 target_read_memory which depends on these buffers when
2637 a memory read is requested at the breakpoint location:
2638 Once the target_info has been wiped, we fail to see that
2639 we have a breakpoint inserted at that address and thus
2640 read the breakpoint instead of returning the data saved in
2641 the breakpoint location's shadow contents. */
2642 bl->target_info.reqstd_address = bl->address;
2643 bl->target_info.placed_address_space = bl->pspace->aspace;
2644 bl->target_info.length = bl->length;
2645
2646 /* When working with target-side conditions, we must pass all the conditions
2647 for the same breakpoint address down to the target since GDB will not
2648 insert those locations. With a list of breakpoint conditions, the target
2649 can decide when to stop and notify GDB. */
2650
2651 if (is_breakpoint (bl->owner))
2652 {
2653 build_target_condition_list (bl);
2654 build_target_command_list (bl);
2655 /* Reset the modification marker. */
2656 bl->needs_update = 0;
2657 }
2658
2659 if (bl->loc_type == bp_loc_software_breakpoint
2660 || bl->loc_type == bp_loc_hardware_breakpoint)
2661 {
2662 if (bl->owner->type != bp_hardware_breakpoint)
2663 {
2664 /* If the explicitly specified breakpoint type
2665 is not hardware breakpoint, check the memory map to see
2666 if the breakpoint address is in read only memory or not.
2667
2668 Two important cases are:
2669 - location type is not hardware breakpoint, memory
2670 is readonly. We change the type of the location to
2671 hardware breakpoint.
2672 - location type is hardware breakpoint, memory is
2673 read-write. This means we've previously made the
2674 location hardware one, but then the memory map changed,
2675 so we undo.
2676
2677 When breakpoints are removed, remove_breakpoints will use
2678 location types we've just set here, the only possible
2679 problem is that memory map has changed during running
2680 program, but it's not going to work anyway with current
2681 gdb. */
2682 struct mem_region *mr
2683 = lookup_mem_region (bl->target_info.reqstd_address);
2684
2685 if (mr)
2686 {
2687 if (automatic_hardware_breakpoints)
2688 {
2689 enum bp_loc_type new_type;
2690
2691 if (mr->attrib.mode != MEM_RW)
2692 new_type = bp_loc_hardware_breakpoint;
2693 else
2694 new_type = bp_loc_software_breakpoint;
2695
2696 if (new_type != bl->loc_type)
2697 {
2698 static int said = 0;
2699
2700 bl->loc_type = new_type;
2701 if (!said)
2702 {
2703 fprintf_filtered (gdb_stdout,
2704 _("Note: automatically using "
2705 "hardware breakpoints for "
2706 "read-only addresses.\n"));
2707 said = 1;
2708 }
2709 }
2710 }
2711 else if (bl->loc_type == bp_loc_software_breakpoint
2712 && mr->attrib.mode != MEM_RW)
2713 {
2714 fprintf_unfiltered (tmp_error_stream,
2715 _("Cannot insert breakpoint %d.\n"
2716 "Cannot set software breakpoint "
2717 "at read-only address %s\n"),
2718 bl->owner->number,
2719 paddress (bl->gdbarch, bl->address));
2720 return 1;
2721 }
2722 }
2723 }
2724
2725 /* First check to see if we have to handle an overlay. */
2726 if (overlay_debugging == ovly_off
2727 || bl->section == NULL
2728 || !(section_is_overlay (bl->section)))
2729 {
2730 /* No overlay handling: just set the breakpoint. */
2731 TRY
2732 {
2733 int val;
2734
2735 val = bl->owner->ops->insert_location (bl);
2736 if (val)
2737 bp_err = GENERIC_ERROR;
2738 }
2739 CATCH (e, RETURN_MASK_ALL)
2740 {
2741 bp_err = e.error;
2742 bp_err_message = e.message;
2743 }
2744 END_CATCH
2745 }
2746 else
2747 {
2748 /* This breakpoint is in an overlay section.
2749 Shall we set a breakpoint at the LMA? */
2750 if (!overlay_events_enabled)
2751 {
2752 /* Yes -- overlay event support is not active,
2753 so we must try to set a breakpoint at the LMA.
2754 This will not work for a hardware breakpoint. */
2755 if (bl->loc_type == bp_loc_hardware_breakpoint)
2756 warning (_("hardware breakpoint %d not supported in overlay!"),
2757 bl->owner->number);
2758 else
2759 {
2760 CORE_ADDR addr = overlay_unmapped_address (bl->address,
2761 bl->section);
2762 /* Set a software (trap) breakpoint at the LMA. */
2763 bl->overlay_target_info = bl->target_info;
2764 bl->overlay_target_info.reqstd_address = addr;
2765
2766 /* No overlay handling: just set the breakpoint. */
2767 TRY
2768 {
2769 int val;
2770
2771 val = target_insert_breakpoint (bl->gdbarch,
2772 &bl->overlay_target_info);
2773 if (val)
2774 bp_err = GENERIC_ERROR;
2775 }
2776 CATCH (e, RETURN_MASK_ALL)
2777 {
2778 bp_err = e.error;
2779 bp_err_message = e.message;
2780 }
2781 END_CATCH
2782
2783 if (bp_err != GDB_NO_ERROR)
2784 fprintf_unfiltered (tmp_error_stream,
2785 "Overlay breakpoint %d "
2786 "failed: in ROM?\n",
2787 bl->owner->number);
2788 }
2789 }
2790 /* Shall we set a breakpoint at the VMA? */
2791 if (section_is_mapped (bl->section))
2792 {
2793 /* Yes. This overlay section is mapped into memory. */
2794 TRY
2795 {
2796 int val;
2797
2798 val = bl->owner->ops->insert_location (bl);
2799 if (val)
2800 bp_err = GENERIC_ERROR;
2801 }
2802 CATCH (e, RETURN_MASK_ALL)
2803 {
2804 bp_err = e.error;
2805 bp_err_message = e.message;
2806 }
2807 END_CATCH
2808 }
2809 else
2810 {
2811 /* No. This breakpoint will not be inserted.
2812 No error, but do not mark the bp as 'inserted'. */
2813 return 0;
2814 }
2815 }
2816
2817 if (bp_err != GDB_NO_ERROR)
2818 {
2819 /* Can't set the breakpoint. */
2820
2821 /* In some cases, we might not be able to insert a
2822 breakpoint in a shared library that has already been
2823 removed, but we have not yet processed the shlib unload
2824 event. Unfortunately, some targets that implement
2825 breakpoint insertion themselves can't tell why the
2826 breakpoint insertion failed (e.g., the remote target
2827 doesn't define error codes), so we must treat generic
2828 errors as memory errors. */
2829 if ((bp_err == GENERIC_ERROR || bp_err == MEMORY_ERROR)
2830 && bl->loc_type == bp_loc_software_breakpoint
2831 && (solib_name_from_address (bl->pspace, bl->address)
2832 || shared_objfile_contains_address_p (bl->pspace,
2833 bl->address)))
2834 {
2835 /* See also: disable_breakpoints_in_shlibs. */
2836 bl->shlib_disabled = 1;
2837 observer_notify_breakpoint_modified (bl->owner);
2838 if (!*disabled_breaks)
2839 {
2840 fprintf_unfiltered (tmp_error_stream,
2841 "Cannot insert breakpoint %d.\n",
2842 bl->owner->number);
2843 fprintf_unfiltered (tmp_error_stream,
2844 "Temporarily disabling shared "
2845 "library breakpoints:\n");
2846 }
2847 *disabled_breaks = 1;
2848 fprintf_unfiltered (tmp_error_stream,
2849 "breakpoint #%d\n", bl->owner->number);
2850 return 0;
2851 }
2852 else
2853 {
2854 if (bl->loc_type == bp_loc_hardware_breakpoint)
2855 {
2856 *hw_breakpoint_error = 1;
2857 *hw_bp_error_explained_already = bp_err_message != NULL;
2858 fprintf_unfiltered (tmp_error_stream,
2859 "Cannot insert hardware breakpoint %d%s",
2860 bl->owner->number, bp_err_message ? ":" : ".\n");
2861 if (bp_err_message != NULL)
2862 fprintf_unfiltered (tmp_error_stream, "%s.\n", bp_err_message);
2863 }
2864 else
2865 {
2866 if (bp_err_message == NULL)
2867 {
2868 char *message
2869 = memory_error_message (TARGET_XFER_E_IO,
2870 bl->gdbarch, bl->address);
2871 struct cleanup *old_chain = make_cleanup (xfree, message);
2872
2873 fprintf_unfiltered (tmp_error_stream,
2874 "Cannot insert breakpoint %d.\n"
2875 "%s\n",
2876 bl->owner->number, message);
2877 do_cleanups (old_chain);
2878 }
2879 else
2880 {
2881 fprintf_unfiltered (tmp_error_stream,
2882 "Cannot insert breakpoint %d: %s\n",
2883 bl->owner->number,
2884 bp_err_message);
2885 }
2886 }
2887 return 1;
2888
2889 }
2890 }
2891 else
2892 bl->inserted = 1;
2893
2894 return 0;
2895 }
2896
2897 else if (bl->loc_type == bp_loc_hardware_watchpoint
2898 /* NOTE drow/2003-09-08: This state only exists for removing
2899 watchpoints. It's not clear that it's necessary... */
2900 && bl->owner->disposition != disp_del_at_next_stop)
2901 {
2902 int val;
2903
2904 gdb_assert (bl->owner->ops != NULL
2905 && bl->owner->ops->insert_location != NULL);
2906
2907 val = bl->owner->ops->insert_location (bl);
2908
2909 /* If trying to set a read-watchpoint, and it turns out it's not
2910 supported, try emulating one with an access watchpoint. */
2911 if (val == 1 && bl->watchpoint_type == hw_read)
2912 {
2913 struct bp_location *loc, **loc_temp;
2914
2915 /* But don't try to insert it, if there's already another
2916 hw_access location that would be considered a duplicate
2917 of this one. */
2918 ALL_BP_LOCATIONS (loc, loc_temp)
2919 if (loc != bl
2920 && loc->watchpoint_type == hw_access
2921 && watchpoint_locations_match (bl, loc))
2922 {
2923 bl->duplicate = 1;
2924 bl->inserted = 1;
2925 bl->target_info = loc->target_info;
2926 bl->watchpoint_type = hw_access;
2927 val = 0;
2928 break;
2929 }
2930
2931 if (val == 1)
2932 {
2933 bl->watchpoint_type = hw_access;
2934 val = bl->owner->ops->insert_location (bl);
2935
2936 if (val)
2937 /* Back to the original value. */
2938 bl->watchpoint_type = hw_read;
2939 }
2940 }
2941
2942 bl->inserted = (val == 0);
2943 }
2944
2945 else if (bl->owner->type == bp_catchpoint)
2946 {
2947 int val;
2948
2949 gdb_assert (bl->owner->ops != NULL
2950 && bl->owner->ops->insert_location != NULL);
2951
2952 val = bl->owner->ops->insert_location (bl);
2953 if (val)
2954 {
2955 bl->owner->enable_state = bp_disabled;
2956
2957 if (val == 1)
2958 warning (_("\
2959 Error inserting catchpoint %d: Your system does not support this type\n\
2960 of catchpoint."), bl->owner->number);
2961 else
2962 warning (_("Error inserting catchpoint %d."), bl->owner->number);
2963 }
2964
2965 bl->inserted = (val == 0);
2966
2967 /* We've already printed an error message if there was a problem
2968 inserting this catchpoint, and we've disabled the catchpoint,
2969 so just return success. */
2970 return 0;
2971 }
2972
2973 return 0;
2974 }
2975
2976 /* This function is called when program space PSPACE is about to be
2977 deleted. It takes care of updating breakpoints to not reference
2978 PSPACE anymore. */
2979
2980 void
2981 breakpoint_program_space_exit (struct program_space *pspace)
2982 {
2983 struct breakpoint *b, *b_temp;
2984 struct bp_location *loc, **loc_temp;
2985
2986 /* Remove any breakpoint that was set through this program space. */
2987 ALL_BREAKPOINTS_SAFE (b, b_temp)
2988 {
2989 if (b->pspace == pspace)
2990 delete_breakpoint (b);
2991 }
2992
2993 /* Breakpoints set through other program spaces could have locations
2994 bound to PSPACE as well. Remove those. */
2995 ALL_BP_LOCATIONS (loc, loc_temp)
2996 {
2997 struct bp_location *tmp;
2998
2999 if (loc->pspace == pspace)
3000 {
3001 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
3002 if (loc->owner->loc == loc)
3003 loc->owner->loc = loc->next;
3004 else
3005 for (tmp = loc->owner->loc; tmp->next != NULL; tmp = tmp->next)
3006 if (tmp->next == loc)
3007 {
3008 tmp->next = loc->next;
3009 break;
3010 }
3011 }
3012 }
3013
3014 /* Now update the global location list to permanently delete the
3015 removed locations above. */
3016 update_global_location_list (UGLL_DONT_INSERT);
3017 }
3018
3019 /* Make sure all breakpoints are inserted in inferior.
3020 Throws exception on any error.
3021 A breakpoint that is already inserted won't be inserted
3022 again, so calling this function twice is safe. */
3023 void
3024 insert_breakpoints (void)
3025 {
3026 struct breakpoint *bpt;
3027
3028 ALL_BREAKPOINTS (bpt)
3029 if (is_hardware_watchpoint (bpt))
3030 {
3031 struct watchpoint *w = (struct watchpoint *) bpt;
3032
3033 update_watchpoint (w, 0 /* don't reparse. */);
3034 }
3035
3036 /* Updating watchpoints creates new locations, so update the global
3037 location list. Explicitly tell ugll to insert locations and
3038 ignore breakpoints_always_inserted_mode. */
3039 update_global_location_list (UGLL_INSERT);
3040 }
3041
3042 /* Invoke CALLBACK for each of bp_location. */
3043
3044 void
3045 iterate_over_bp_locations (walk_bp_location_callback callback)
3046 {
3047 struct bp_location *loc, **loc_tmp;
3048
3049 ALL_BP_LOCATIONS (loc, loc_tmp)
3050 {
3051 callback (loc, NULL);
3052 }
3053 }
3054
3055 /* This is used when we need to synch breakpoint conditions between GDB and the
3056 target. It is the case with deleting and disabling of breakpoints when using
3057 always-inserted mode. */
3058
3059 static void
3060 update_inserted_breakpoint_locations (void)
3061 {
3062 struct bp_location *bl, **blp_tmp;
3063 int error_flag = 0;
3064 int val = 0;
3065 int disabled_breaks = 0;
3066 int hw_breakpoint_error = 0;
3067 int hw_bp_details_reported = 0;
3068
3069 struct ui_file *tmp_error_stream = mem_fileopen ();
3070 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
3071
3072 /* Explicitly mark the warning -- this will only be printed if
3073 there was an error. */
3074 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
3075
3076 save_current_space_and_thread ();
3077
3078 ALL_BP_LOCATIONS (bl, blp_tmp)
3079 {
3080 /* We only want to update software breakpoints and hardware
3081 breakpoints. */
3082 if (!is_breakpoint (bl->owner))
3083 continue;
3084
3085 /* We only want to update locations that are already inserted
3086 and need updating. This is to avoid unwanted insertion during
3087 deletion of breakpoints. */
3088 if (!bl->inserted || (bl->inserted && !bl->needs_update))
3089 continue;
3090
3091 switch_to_program_space_and_thread (bl->pspace);
3092
3093 /* For targets that support global breakpoints, there's no need
3094 to select an inferior to insert breakpoint to. In fact, even
3095 if we aren't attached to any process yet, we should still
3096 insert breakpoints. */
3097 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
3098 && ptid_equal (inferior_ptid, null_ptid))
3099 continue;
3100
3101 val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks,
3102 &hw_breakpoint_error, &hw_bp_details_reported);
3103 if (val)
3104 error_flag = val;
3105 }
3106
3107 if (error_flag)
3108 {
3109 target_terminal_ours_for_output ();
3110 error_stream (tmp_error_stream);
3111 }
3112
3113 do_cleanups (cleanups);
3114 }
3115
3116 /* Used when starting or continuing the program. */
3117
3118 static void
3119 insert_breakpoint_locations (void)
3120 {
3121 struct breakpoint *bpt;
3122 struct bp_location *bl, **blp_tmp;
3123 int error_flag = 0;
3124 int val = 0;
3125 int disabled_breaks = 0;
3126 int hw_breakpoint_error = 0;
3127 int hw_bp_error_explained_already = 0;
3128
3129 struct ui_file *tmp_error_stream = mem_fileopen ();
3130 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_error_stream);
3131
3132 /* Explicitly mark the warning -- this will only be printed if
3133 there was an error. */
3134 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
3135
3136 save_current_space_and_thread ();
3137
3138 ALL_BP_LOCATIONS (bl, blp_tmp)
3139 {
3140 if (!should_be_inserted (bl) || (bl->inserted && !bl->needs_update))
3141 continue;
3142
3143 /* There is no point inserting thread-specific breakpoints if
3144 the thread no longer exists. ALL_BP_LOCATIONS bp_location
3145 has BL->OWNER always non-NULL. */
3146 if (bl->owner->thread != -1
3147 && !valid_global_thread_id (bl->owner->thread))
3148 continue;
3149
3150 switch_to_program_space_and_thread (bl->pspace);
3151
3152 /* For targets that support global breakpoints, there's no need
3153 to select an inferior to insert breakpoint to. In fact, even
3154 if we aren't attached to any process yet, we should still
3155 insert breakpoints. */
3156 if (!gdbarch_has_global_breakpoints (target_gdbarch ())
3157 && ptid_equal (inferior_ptid, null_ptid))
3158 continue;
3159
3160 val = insert_bp_location (bl, tmp_error_stream, &disabled_breaks,
3161 &hw_breakpoint_error, &hw_bp_error_explained_already);
3162 if (val)
3163 error_flag = val;
3164 }
3165
3166 /* If we failed to insert all locations of a watchpoint, remove
3167 them, as half-inserted watchpoint is of limited use. */
3168 ALL_BREAKPOINTS (bpt)
3169 {
3170 int some_failed = 0;
3171 struct bp_location *loc;
3172
3173 if (!is_hardware_watchpoint (bpt))
3174 continue;
3175
3176 if (!breakpoint_enabled (bpt))
3177 continue;
3178
3179 if (bpt->disposition == disp_del_at_next_stop)
3180 continue;
3181
3182 for (loc = bpt->loc; loc; loc = loc->next)
3183 if (!loc->inserted && should_be_inserted (loc))
3184 {
3185 some_failed = 1;
3186 break;
3187 }
3188 if (some_failed)
3189 {
3190 for (loc = bpt->loc; loc; loc = loc->next)
3191 if (loc->inserted)
3192 remove_breakpoint (loc, mark_uninserted);
3193
3194 hw_breakpoint_error = 1;
3195 fprintf_unfiltered (tmp_error_stream,
3196 "Could not insert hardware watchpoint %d.\n",
3197 bpt->number);
3198 error_flag = -1;
3199 }
3200 }
3201
3202 if (error_flag)
3203 {
3204 /* If a hardware breakpoint or watchpoint was inserted, add a
3205 message about possibly exhausted resources. */
3206 if (hw_breakpoint_error && !hw_bp_error_explained_already)
3207 {
3208 fprintf_unfiltered (tmp_error_stream,
3209 "Could not insert hardware breakpoints:\n\
3210 You may have requested too many hardware breakpoints/watchpoints.\n");
3211 }
3212 target_terminal_ours_for_output ();
3213 error_stream (tmp_error_stream);
3214 }
3215
3216 do_cleanups (cleanups);
3217 }
3218
3219 /* Used when the program stops.
3220 Returns zero if successful, or non-zero if there was a problem
3221 removing a breakpoint location. */
3222
3223 int
3224 remove_breakpoints (void)
3225 {
3226 struct bp_location *bl, **blp_tmp;
3227 int val = 0;
3228
3229 ALL_BP_LOCATIONS (bl, blp_tmp)
3230 {
3231 if (bl->inserted && !is_tracepoint (bl->owner))
3232 val |= remove_breakpoint (bl, mark_uninserted);
3233 }
3234 return val;
3235 }
3236
3237 /* When a thread exits, remove breakpoints that are related to
3238 that thread. */
3239
3240 static void
3241 remove_threaded_breakpoints (struct thread_info *tp, int silent)
3242 {
3243 struct breakpoint *b, *b_tmp;
3244
3245 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3246 {
3247 if (b->thread == tp->global_num && user_breakpoint_p (b))
3248 {
3249 b->disposition = disp_del_at_next_stop;
3250
3251 printf_filtered (_("\
3252 Thread-specific breakpoint %d deleted - thread %s no longer in the thread list.\n"),
3253 b->number, print_thread_id (tp));
3254
3255 /* Hide it from the user. */
3256 b->number = 0;
3257 }
3258 }
3259 }
3260
3261 /* Remove breakpoints of process PID. */
3262
3263 int
3264 remove_breakpoints_pid (int pid)
3265 {
3266 struct bp_location *bl, **blp_tmp;
3267 int val;
3268 struct inferior *inf = find_inferior_pid (pid);
3269
3270 ALL_BP_LOCATIONS (bl, blp_tmp)
3271 {
3272 if (bl->pspace != inf->pspace)
3273 continue;
3274
3275 if (bl->inserted && !bl->target_info.persist)
3276 {
3277 val = remove_breakpoint (bl, mark_uninserted);
3278 if (val != 0)
3279 return val;
3280 }
3281 }
3282 return 0;
3283 }
3284
3285 int
3286 reattach_breakpoints (int pid)
3287 {
3288 struct cleanup *old_chain;
3289 struct bp_location *bl, **blp_tmp;
3290 int val;
3291 struct ui_file *tmp_error_stream;
3292 int dummy1 = 0, dummy2 = 0, dummy3 = 0;
3293 struct inferior *inf;
3294 struct thread_info *tp;
3295
3296 tp = any_live_thread_of_process (pid);
3297 if (tp == NULL)
3298 return 1;
3299
3300 inf = find_inferior_pid (pid);
3301 old_chain = save_inferior_ptid ();
3302
3303 inferior_ptid = tp->ptid;
3304
3305 tmp_error_stream = mem_fileopen ();
3306 make_cleanup_ui_file_delete (tmp_error_stream);
3307
3308 ALL_BP_LOCATIONS (bl, blp_tmp)
3309 {
3310 if (bl->pspace != inf->pspace)
3311 continue;
3312
3313 if (bl->inserted)
3314 {
3315 bl->inserted = 0;
3316 val = insert_bp_location (bl, tmp_error_stream, &dummy1, &dummy2, &dummy3);
3317 if (val != 0)
3318 {
3319 do_cleanups (old_chain);
3320 return val;
3321 }
3322 }
3323 }
3324 do_cleanups (old_chain);
3325 return 0;
3326 }
3327
3328 static int internal_breakpoint_number = -1;
3329
3330 /* Set the breakpoint number of B, depending on the value of INTERNAL.
3331 If INTERNAL is non-zero, the breakpoint number will be populated
3332 from internal_breakpoint_number and that variable decremented.
3333 Otherwise the breakpoint number will be populated from
3334 breakpoint_count and that value incremented. Internal breakpoints
3335 do not set the internal var bpnum. */
3336 static void
3337 set_breakpoint_number (int internal, struct breakpoint *b)
3338 {
3339 if (internal)
3340 b->number = internal_breakpoint_number--;
3341 else
3342 {
3343 set_breakpoint_count (breakpoint_count + 1);
3344 b->number = breakpoint_count;
3345 }
3346 }
3347
3348 static struct breakpoint *
3349 create_internal_breakpoint (struct gdbarch *gdbarch,
3350 CORE_ADDR address, enum bptype type,
3351 const struct breakpoint_ops *ops)
3352 {
3353 struct symtab_and_line sal;
3354 struct breakpoint *b;
3355
3356 init_sal (&sal); /* Initialize to zeroes. */
3357
3358 sal.pc = address;
3359 sal.section = find_pc_overlay (sal.pc);
3360 sal.pspace = current_program_space;
3361
3362 b = set_raw_breakpoint (gdbarch, sal, type, ops);
3363 b->number = internal_breakpoint_number--;
3364 b->disposition = disp_donttouch;
3365
3366 return b;
3367 }
3368
3369 static const char *const longjmp_names[] =
3370 {
3371 "longjmp", "_longjmp", "siglongjmp", "_siglongjmp"
3372 };
3373 #define NUM_LONGJMP_NAMES ARRAY_SIZE(longjmp_names)
3374
3375 /* Per-objfile data private to breakpoint.c. */
3376 struct breakpoint_objfile_data
3377 {
3378 /* Minimal symbol for "_ovly_debug_event" (if any). */
3379 struct bound_minimal_symbol overlay_msym;
3380
3381 /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any). */
3382 struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES];
3383
3384 /* True if we have looked for longjmp probes. */
3385 int longjmp_searched;
3386
3387 /* SystemTap probe points for longjmp (if any). */
3388 VEC (probe_p) *longjmp_probes;
3389
3390 /* Minimal symbol for "std::terminate()" (if any). */
3391 struct bound_minimal_symbol terminate_msym;
3392
3393 /* Minimal symbol for "_Unwind_DebugHook" (if any). */
3394 struct bound_minimal_symbol exception_msym;
3395
3396 /* True if we have looked for exception probes. */
3397 int exception_searched;
3398
3399 /* SystemTap probe points for unwinding (if any). */
3400 VEC (probe_p) *exception_probes;
3401 };
3402
3403 static const struct objfile_data *breakpoint_objfile_key;
3404
3405 /* Minimal symbol not found sentinel. */
3406 static struct minimal_symbol msym_not_found;
3407
3408 /* Returns TRUE if MSYM point to the "not found" sentinel. */
3409
3410 static int
3411 msym_not_found_p (const struct minimal_symbol *msym)
3412 {
3413 return msym == &msym_not_found;
3414 }
3415
3416 /* Return per-objfile data needed by breakpoint.c.
3417 Allocate the data if necessary. */
3418
3419 static struct breakpoint_objfile_data *
3420 get_breakpoint_objfile_data (struct objfile *objfile)
3421 {
3422 struct breakpoint_objfile_data *bp_objfile_data;
3423
3424 bp_objfile_data = ((struct breakpoint_objfile_data *)
3425 objfile_data (objfile, breakpoint_objfile_key));
3426 if (bp_objfile_data == NULL)
3427 {
3428 bp_objfile_data =
3429 XOBNEW (&objfile->objfile_obstack, struct breakpoint_objfile_data);
3430
3431 memset (bp_objfile_data, 0, sizeof (*bp_objfile_data));
3432 set_objfile_data (objfile, breakpoint_objfile_key, bp_objfile_data);
3433 }
3434 return bp_objfile_data;
3435 }
3436
3437 static void
3438 free_breakpoint_probes (struct objfile *obj, void *data)
3439 {
3440 struct breakpoint_objfile_data *bp_objfile_data
3441 = (struct breakpoint_objfile_data *) data;
3442
3443 VEC_free (probe_p, bp_objfile_data->longjmp_probes);
3444 VEC_free (probe_p, bp_objfile_data->exception_probes);
3445 }
3446
3447 static void
3448 create_overlay_event_breakpoint (void)
3449 {
3450 struct objfile *objfile;
3451 const char *const func_name = "_ovly_debug_event";
3452
3453 ALL_OBJFILES (objfile)
3454 {
3455 struct breakpoint *b;
3456 struct breakpoint_objfile_data *bp_objfile_data;
3457 CORE_ADDR addr;
3458 struct explicit_location explicit_loc;
3459
3460 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3461
3462 if (msym_not_found_p (bp_objfile_data->overlay_msym.minsym))
3463 continue;
3464
3465 if (bp_objfile_data->overlay_msym.minsym == NULL)
3466 {
3467 struct bound_minimal_symbol m;
3468
3469 m = lookup_minimal_symbol_text (func_name, objfile);
3470 if (m.minsym == NULL)
3471 {
3472 /* Avoid future lookups in this objfile. */
3473 bp_objfile_data->overlay_msym.minsym = &msym_not_found;
3474 continue;
3475 }
3476 bp_objfile_data->overlay_msym = m;
3477 }
3478
3479 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->overlay_msym);
3480 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
3481 bp_overlay_event,
3482 &internal_breakpoint_ops);
3483 initialize_explicit_location (&explicit_loc);
3484 explicit_loc.function_name = ASTRDUP (func_name);
3485 b->location = new_explicit_location (&explicit_loc);
3486
3487 if (overlay_debugging == ovly_auto)
3488 {
3489 b->enable_state = bp_enabled;
3490 overlay_events_enabled = 1;
3491 }
3492 else
3493 {
3494 b->enable_state = bp_disabled;
3495 overlay_events_enabled = 0;
3496 }
3497 }
3498 }
3499
3500 static void
3501 create_longjmp_master_breakpoint (void)
3502 {
3503 struct program_space *pspace;
3504 struct cleanup *old_chain;
3505
3506 old_chain = save_current_program_space ();
3507
3508 ALL_PSPACES (pspace)
3509 {
3510 struct objfile *objfile;
3511
3512 set_current_program_space (pspace);
3513
3514 ALL_OBJFILES (objfile)
3515 {
3516 int i;
3517 struct gdbarch *gdbarch;
3518 struct breakpoint_objfile_data *bp_objfile_data;
3519
3520 gdbarch = get_objfile_arch (objfile);
3521
3522 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3523
3524 if (!bp_objfile_data->longjmp_searched)
3525 {
3526 VEC (probe_p) *ret;
3527
3528 ret = find_probes_in_objfile (objfile, "libc", "longjmp");
3529 if (ret != NULL)
3530 {
3531 /* We are only interested in checking one element. */
3532 struct probe *p = VEC_index (probe_p, ret, 0);
3533
3534 if (!can_evaluate_probe_arguments (p))
3535 {
3536 /* We cannot use the probe interface here, because it does
3537 not know how to evaluate arguments. */
3538 VEC_free (probe_p, ret);
3539 ret = NULL;
3540 }
3541 }
3542 bp_objfile_data->longjmp_probes = ret;
3543 bp_objfile_data->longjmp_searched = 1;
3544 }
3545
3546 if (bp_objfile_data->longjmp_probes != NULL)
3547 {
3548 int i;
3549 struct probe *probe;
3550 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3551
3552 for (i = 0;
3553 VEC_iterate (probe_p,
3554 bp_objfile_data->longjmp_probes,
3555 i, probe);
3556 ++i)
3557 {
3558 struct breakpoint *b;
3559
3560 b = create_internal_breakpoint (gdbarch,
3561 get_probe_address (probe,
3562 objfile),
3563 bp_longjmp_master,
3564 &internal_breakpoint_ops);
3565 b->location
3566 = new_probe_location ("-probe-stap libc:longjmp");
3567 b->enable_state = bp_disabled;
3568 }
3569
3570 continue;
3571 }
3572
3573 if (!gdbarch_get_longjmp_target_p (gdbarch))
3574 continue;
3575
3576 for (i = 0; i < NUM_LONGJMP_NAMES; i++)
3577 {
3578 struct breakpoint *b;
3579 const char *func_name;
3580 CORE_ADDR addr;
3581 struct explicit_location explicit_loc;
3582
3583 if (msym_not_found_p (bp_objfile_data->longjmp_msym[i].minsym))
3584 continue;
3585
3586 func_name = longjmp_names[i];
3587 if (bp_objfile_data->longjmp_msym[i].minsym == NULL)
3588 {
3589 struct bound_minimal_symbol m;
3590
3591 m = lookup_minimal_symbol_text (func_name, objfile);
3592 if (m.minsym == NULL)
3593 {
3594 /* Prevent future lookups in this objfile. */
3595 bp_objfile_data->longjmp_msym[i].minsym = &msym_not_found;
3596 continue;
3597 }
3598 bp_objfile_data->longjmp_msym[i] = m;
3599 }
3600
3601 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->longjmp_msym[i]);
3602 b = create_internal_breakpoint (gdbarch, addr, bp_longjmp_master,
3603 &internal_breakpoint_ops);
3604 initialize_explicit_location (&explicit_loc);
3605 explicit_loc.function_name = ASTRDUP (func_name);
3606 b->location = new_explicit_location (&explicit_loc);
3607 b->enable_state = bp_disabled;
3608 }
3609 }
3610 }
3611
3612 do_cleanups (old_chain);
3613 }
3614
3615 /* Create a master std::terminate breakpoint. */
3616 static void
3617 create_std_terminate_master_breakpoint (void)
3618 {
3619 struct program_space *pspace;
3620 struct cleanup *old_chain;
3621 const char *const func_name = "std::terminate()";
3622
3623 old_chain = save_current_program_space ();
3624
3625 ALL_PSPACES (pspace)
3626 {
3627 struct objfile *objfile;
3628 CORE_ADDR addr;
3629
3630 set_current_program_space (pspace);
3631
3632 ALL_OBJFILES (objfile)
3633 {
3634 struct breakpoint *b;
3635 struct breakpoint_objfile_data *bp_objfile_data;
3636 struct explicit_location explicit_loc;
3637
3638 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3639
3640 if (msym_not_found_p (bp_objfile_data->terminate_msym.minsym))
3641 continue;
3642
3643 if (bp_objfile_data->terminate_msym.minsym == NULL)
3644 {
3645 struct bound_minimal_symbol m;
3646
3647 m = lookup_minimal_symbol (func_name, NULL, objfile);
3648 if (m.minsym == NULL || (MSYMBOL_TYPE (m.minsym) != mst_text
3649 && MSYMBOL_TYPE (m.minsym) != mst_file_text))
3650 {
3651 /* Prevent future lookups in this objfile. */
3652 bp_objfile_data->terminate_msym.minsym = &msym_not_found;
3653 continue;
3654 }
3655 bp_objfile_data->terminate_msym = m;
3656 }
3657
3658 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->terminate_msym);
3659 b = create_internal_breakpoint (get_objfile_arch (objfile), addr,
3660 bp_std_terminate_master,
3661 &internal_breakpoint_ops);
3662 initialize_explicit_location (&explicit_loc);
3663 explicit_loc.function_name = ASTRDUP (func_name);
3664 b->location = new_explicit_location (&explicit_loc);
3665 b->enable_state = bp_disabled;
3666 }
3667 }
3668
3669 do_cleanups (old_chain);
3670 }
3671
3672 /* Install a master breakpoint on the unwinder's debug hook. */
3673
3674 static void
3675 create_exception_master_breakpoint (void)
3676 {
3677 struct objfile *objfile;
3678 const char *const func_name = "_Unwind_DebugHook";
3679
3680 ALL_OBJFILES (objfile)
3681 {
3682 struct breakpoint *b;
3683 struct gdbarch *gdbarch;
3684 struct breakpoint_objfile_data *bp_objfile_data;
3685 CORE_ADDR addr;
3686 struct explicit_location explicit_loc;
3687
3688 bp_objfile_data = get_breakpoint_objfile_data (objfile);
3689
3690 /* We prefer the SystemTap probe point if it exists. */
3691 if (!bp_objfile_data->exception_searched)
3692 {
3693 VEC (probe_p) *ret;
3694
3695 ret = find_probes_in_objfile (objfile, "libgcc", "unwind");
3696
3697 if (ret != NULL)
3698 {
3699 /* We are only interested in checking one element. */
3700 struct probe *p = VEC_index (probe_p, ret, 0);
3701
3702 if (!can_evaluate_probe_arguments (p))
3703 {
3704 /* We cannot use the probe interface here, because it does
3705 not know how to evaluate arguments. */
3706 VEC_free (probe_p, ret);
3707 ret = NULL;
3708 }
3709 }
3710 bp_objfile_data->exception_probes = ret;
3711 bp_objfile_data->exception_searched = 1;
3712 }
3713
3714 if (bp_objfile_data->exception_probes != NULL)
3715 {
3716 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3717 int i;
3718 struct probe *probe;
3719
3720 for (i = 0;
3721 VEC_iterate (probe_p,
3722 bp_objfile_data->exception_probes,
3723 i, probe);
3724 ++i)
3725 {
3726 struct breakpoint *b;
3727
3728 b = create_internal_breakpoint (gdbarch,
3729 get_probe_address (probe,
3730 objfile),
3731 bp_exception_master,
3732 &internal_breakpoint_ops);
3733 b->location
3734 = new_probe_location ("-probe-stap libgcc:unwind");
3735 b->enable_state = bp_disabled;
3736 }
3737
3738 continue;
3739 }
3740
3741 /* Otherwise, try the hook function. */
3742
3743 if (msym_not_found_p (bp_objfile_data->exception_msym.minsym))
3744 continue;
3745
3746 gdbarch = get_objfile_arch (objfile);
3747
3748 if (bp_objfile_data->exception_msym.minsym == NULL)
3749 {
3750 struct bound_minimal_symbol debug_hook;
3751
3752 debug_hook = lookup_minimal_symbol (func_name, NULL, objfile);
3753 if (debug_hook.minsym == NULL)
3754 {
3755 bp_objfile_data->exception_msym.minsym = &msym_not_found;
3756 continue;
3757 }
3758
3759 bp_objfile_data->exception_msym = debug_hook;
3760 }
3761
3762 addr = BMSYMBOL_VALUE_ADDRESS (bp_objfile_data->exception_msym);
3763 addr = gdbarch_convert_from_func_ptr_addr (gdbarch, addr,
3764 &current_target);
3765 b = create_internal_breakpoint (gdbarch, addr, bp_exception_master,
3766 &internal_breakpoint_ops);
3767 initialize_explicit_location (&explicit_loc);
3768 explicit_loc.function_name = ASTRDUP (func_name);
3769 b->location = new_explicit_location (&explicit_loc);
3770 b->enable_state = bp_disabled;
3771 }
3772 }
3773
3774 /* Does B have a location spec? */
3775
3776 static int
3777 breakpoint_event_location_empty_p (const struct breakpoint *b)
3778 {
3779 return b->location != NULL && event_location_empty_p (b->location);
3780 }
3781
3782 void
3783 update_breakpoints_after_exec (void)
3784 {
3785 struct breakpoint *b, *b_tmp;
3786 struct bp_location *bploc, **bplocp_tmp;
3787
3788 /* We're about to delete breakpoints from GDB's lists. If the
3789 INSERTED flag is true, GDB will try to lift the breakpoints by
3790 writing the breakpoints' "shadow contents" back into memory. The
3791 "shadow contents" are NOT valid after an exec, so GDB should not
3792 do that. Instead, the target is responsible from marking
3793 breakpoints out as soon as it detects an exec. We don't do that
3794 here instead, because there may be other attempts to delete
3795 breakpoints after detecting an exec and before reaching here. */
3796 ALL_BP_LOCATIONS (bploc, bplocp_tmp)
3797 if (bploc->pspace == current_program_space)
3798 gdb_assert (!bploc->inserted);
3799
3800 ALL_BREAKPOINTS_SAFE (b, b_tmp)
3801 {
3802 if (b->pspace != current_program_space)
3803 continue;
3804
3805 /* Solib breakpoints must be explicitly reset after an exec(). */
3806 if (b->type == bp_shlib_event)
3807 {
3808 delete_breakpoint (b);
3809 continue;
3810 }
3811
3812 /* JIT breakpoints must be explicitly reset after an exec(). */
3813 if (b->type == bp_jit_event)
3814 {
3815 delete_breakpoint (b);
3816 continue;
3817 }
3818
3819 /* Thread event breakpoints must be set anew after an exec(),
3820 as must overlay event and longjmp master breakpoints. */
3821 if (b->type == bp_thread_event || b->type == bp_overlay_event
3822 || b->type == bp_longjmp_master || b->type == bp_std_terminate_master
3823 || b->type == bp_exception_master)
3824 {
3825 delete_breakpoint (b);
3826 continue;
3827 }
3828
3829 /* Step-resume breakpoints are meaningless after an exec(). */
3830 if (b->type == bp_step_resume || b->type == bp_hp_step_resume)
3831 {
3832 delete_breakpoint (b);
3833 continue;
3834 }
3835
3836 /* Just like single-step breakpoints. */
3837 if (b->type == bp_single_step)
3838 {
3839 delete_breakpoint (b);
3840 continue;
3841 }
3842
3843 /* Longjmp and longjmp-resume breakpoints are also meaningless
3844 after an exec. */
3845 if (b->type == bp_longjmp || b->type == bp_longjmp_resume
3846 || b->type == bp_longjmp_call_dummy
3847 || b->type == bp_exception || b->type == bp_exception_resume)
3848 {
3849 delete_breakpoint (b);
3850 continue;
3851 }
3852
3853 if (b->type == bp_catchpoint)
3854 {
3855 /* For now, none of the bp_catchpoint breakpoints need to
3856 do anything at this point. In the future, if some of
3857 the catchpoints need to something, we will need to add
3858 a new method, and call this method from here. */
3859 continue;
3860 }
3861
3862 /* bp_finish is a special case. The only way we ought to be able
3863 to see one of these when an exec() has happened, is if the user
3864 caught a vfork, and then said "finish". Ordinarily a finish just
3865 carries them to the call-site of the current callee, by setting
3866 a temporary bp there and resuming. But in this case, the finish
3867 will carry them entirely through the vfork & exec.
3868
3869 We don't want to allow a bp_finish to remain inserted now. But
3870 we can't safely delete it, 'cause finish_command has a handle to
3871 the bp on a bpstat, and will later want to delete it. There's a
3872 chance (and I've seen it happen) that if we delete the bp_finish
3873 here, that its storage will get reused by the time finish_command
3874 gets 'round to deleting the "use to be a bp_finish" breakpoint.
3875 We really must allow finish_command to delete a bp_finish.
3876
3877 In the absence of a general solution for the "how do we know
3878 it's safe to delete something others may have handles to?"
3879 problem, what we'll do here is just uninsert the bp_finish, and
3880 let finish_command delete it.
3881
3882 (We know the bp_finish is "doomed" in the sense that it's
3883 momentary, and will be deleted as soon as finish_command sees
3884 the inferior stopped. So it doesn't matter that the bp's
3885 address is probably bogus in the new a.out, unlike e.g., the
3886 solib breakpoints.) */
3887
3888 if (b->type == bp_finish)
3889 {
3890 continue;
3891 }
3892
3893 /* Without a symbolic address, we have little hope of the
3894 pre-exec() address meaning the same thing in the post-exec()
3895 a.out. */
3896 if (breakpoint_event_location_empty_p (b))
3897 {
3898 delete_breakpoint (b);
3899 continue;
3900 }
3901 }
3902 }
3903
3904 int
3905 detach_breakpoints (ptid_t ptid)
3906 {
3907 struct bp_location *bl, **blp_tmp;
3908 int val = 0;
3909 struct cleanup *old_chain = save_inferior_ptid ();
3910 struct inferior *inf = current_inferior ();
3911
3912 if (ptid_get_pid (ptid) == ptid_get_pid (inferior_ptid))
3913 error (_("Cannot detach breakpoints of inferior_ptid"));
3914
3915 /* Set inferior_ptid; remove_breakpoint_1 uses this global. */
3916 inferior_ptid = ptid;
3917 ALL_BP_LOCATIONS (bl, blp_tmp)
3918 {
3919 if (bl->pspace != inf->pspace)
3920 continue;
3921
3922 /* This function must physically remove breakpoints locations
3923 from the specified ptid, without modifying the breakpoint
3924 package's state. Locations of type bp_loc_other are only
3925 maintained at GDB side. So, there is no need to remove
3926 these bp_loc_other locations. Moreover, removing these
3927 would modify the breakpoint package's state. */
3928 if (bl->loc_type == bp_loc_other)
3929 continue;
3930
3931 if (bl->inserted)
3932 val |= remove_breakpoint_1 (bl, mark_inserted);
3933 }
3934
3935 do_cleanups (old_chain);
3936 return val;
3937 }
3938
3939 /* Remove the breakpoint location BL from the current address space.
3940 Note that this is used to detach breakpoints from a child fork.
3941 When we get here, the child isn't in the inferior list, and neither
3942 do we have objects to represent its address space --- we should
3943 *not* look at bl->pspace->aspace here. */
3944
3945 static int
3946 remove_breakpoint_1 (struct bp_location *bl, insertion_state_t is)
3947 {
3948 int val;
3949
3950 /* BL is never in moribund_locations by our callers. */
3951 gdb_assert (bl->owner != NULL);
3952
3953 /* The type of none suggests that owner is actually deleted.
3954 This should not ever happen. */
3955 gdb_assert (bl->owner->type != bp_none);
3956
3957 if (bl->loc_type == bp_loc_software_breakpoint
3958 || bl->loc_type == bp_loc_hardware_breakpoint)
3959 {
3960 /* "Normal" instruction breakpoint: either the standard
3961 trap-instruction bp (bp_breakpoint), or a
3962 bp_hardware_breakpoint. */
3963
3964 /* First check to see if we have to handle an overlay. */
3965 if (overlay_debugging == ovly_off
3966 || bl->section == NULL
3967 || !(section_is_overlay (bl->section)))
3968 {
3969 /* No overlay handling: just remove the breakpoint. */
3970
3971 /* If we're trying to uninsert a memory breakpoint that we
3972 know is set in a dynamic object that is marked
3973 shlib_disabled, then either the dynamic object was
3974 removed with "remove-symbol-file" or with
3975 "nosharedlibrary". In the former case, we don't know
3976 whether another dynamic object might have loaded over the
3977 breakpoint's address -- the user might well let us know
3978 about it next with add-symbol-file (the whole point of
3979 add-symbol-file is letting the user manually maintain a
3980 list of dynamically loaded objects). If we have the
3981 breakpoint's shadow memory, that is, this is a software
3982 breakpoint managed by GDB, check whether the breakpoint
3983 is still inserted in memory, to avoid overwriting wrong
3984 code with stale saved shadow contents. Note that HW
3985 breakpoints don't have shadow memory, as they're
3986 implemented using a mechanism that is not dependent on
3987 being able to modify the target's memory, and as such
3988 they should always be removed. */
3989 if (bl->shlib_disabled
3990 && bl->target_info.shadow_len != 0
3991 && !memory_validate_breakpoint (bl->gdbarch, &bl->target_info))
3992 val = 0;
3993 else
3994 val = bl->owner->ops->remove_location (bl);
3995 }
3996 else
3997 {
3998 /* This breakpoint is in an overlay section.
3999 Did we set a breakpoint at the LMA? */
4000 if (!overlay_events_enabled)
4001 {
4002 /* Yes -- overlay event support is not active, so we
4003 should have set a breakpoint at the LMA. Remove it.
4004 */
4005 /* Ignore any failures: if the LMA is in ROM, we will
4006 have already warned when we failed to insert it. */
4007 if (bl->loc_type == bp_loc_hardware_breakpoint)
4008 target_remove_hw_breakpoint (bl->gdbarch,
4009 &bl->overlay_target_info);
4010 else
4011 target_remove_breakpoint (bl->gdbarch,
4012 &bl->overlay_target_info);
4013 }
4014 /* Did we set a breakpoint at the VMA?
4015 If so, we will have marked the breakpoint 'inserted'. */
4016 if (bl->inserted)
4017 {
4018 /* Yes -- remove it. Previously we did not bother to
4019 remove the breakpoint if the section had been
4020 unmapped, but let's not rely on that being safe. We
4021 don't know what the overlay manager might do. */
4022
4023 /* However, we should remove *software* breakpoints only
4024 if the section is still mapped, or else we overwrite
4025 wrong code with the saved shadow contents. */
4026 if (bl->loc_type == bp_loc_hardware_breakpoint
4027 || section_is_mapped (bl->section))
4028 val = bl->owner->ops->remove_location (bl);
4029 else
4030 val = 0;
4031 }
4032 else
4033 {
4034 /* No -- not inserted, so no need to remove. No error. */
4035 val = 0;
4036 }
4037 }
4038
4039 /* In some cases, we might not be able to remove a breakpoint in
4040 a shared library that has already been removed, but we have
4041 not yet processed the shlib unload event. Similarly for an
4042 unloaded add-symbol-file object - the user might not yet have
4043 had the chance to remove-symbol-file it. shlib_disabled will
4044 be set if the library/object has already been removed, but
4045 the breakpoint hasn't been uninserted yet, e.g., after
4046 "nosharedlibrary" or "remove-symbol-file" with breakpoints
4047 always-inserted mode. */
4048 if (val
4049 && (bl->loc_type == bp_loc_software_breakpoint
4050 && (bl->shlib_disabled
4051 || solib_name_from_address (bl->pspace, bl->address)
4052 || shared_objfile_contains_address_p (bl->pspace,
4053 bl->address))))
4054 val = 0;
4055
4056 if (val)
4057 return val;
4058 bl->inserted = (is == mark_inserted);
4059 }
4060 else if (bl->loc_type == bp_loc_hardware_watchpoint)
4061 {
4062 gdb_assert (bl->owner->ops != NULL
4063 && bl->owner->ops->remove_location != NULL);
4064
4065 bl->inserted = (is == mark_inserted);
4066 bl->owner->ops->remove_location (bl);
4067
4068 /* Failure to remove any of the hardware watchpoints comes here. */
4069 if ((is == mark_uninserted) && (bl->inserted))
4070 warning (_("Could not remove hardware watchpoint %d."),
4071 bl->owner->number);
4072 }
4073 else if (bl->owner->type == bp_catchpoint
4074 && breakpoint_enabled (bl->owner)
4075 && !bl->duplicate)
4076 {
4077 gdb_assert (bl->owner->ops != NULL
4078 && bl->owner->ops->remove_location != NULL);
4079
4080 val = bl->owner->ops->remove_location (bl);
4081 if (val)
4082 return val;
4083
4084 bl->inserted = (is == mark_inserted);
4085 }
4086
4087 return 0;
4088 }
4089
4090 static int
4091 remove_breakpoint (struct bp_location *bl, insertion_state_t is)
4092 {
4093 int ret;
4094 struct cleanup *old_chain;
4095
4096 /* BL is never in moribund_locations by our callers. */
4097 gdb_assert (bl->owner != NULL);
4098
4099 /* The type of none suggests that owner is actually deleted.
4100 This should not ever happen. */
4101 gdb_assert (bl->owner->type != bp_none);
4102
4103 old_chain = save_current_space_and_thread ();
4104
4105 switch_to_program_space_and_thread (bl->pspace);
4106
4107 ret = remove_breakpoint_1 (bl, is);
4108
4109 do_cleanups (old_chain);
4110 return ret;
4111 }
4112
4113 /* Clear the "inserted" flag in all breakpoints. */
4114
4115 void
4116 mark_breakpoints_out (void)
4117 {
4118 struct bp_location *bl, **blp_tmp;
4119
4120 ALL_BP_LOCATIONS (bl, blp_tmp)
4121 if (bl->pspace == current_program_space)
4122 bl->inserted = 0;
4123 }
4124
4125 /* Clear the "inserted" flag in all breakpoints and delete any
4126 breakpoints which should go away between runs of the program.
4127
4128 Plus other such housekeeping that has to be done for breakpoints
4129 between runs.
4130
4131 Note: this function gets called at the end of a run (by
4132 generic_mourn_inferior) and when a run begins (by
4133 init_wait_for_inferior). */
4134
4135
4136
4137 void
4138 breakpoint_init_inferior (enum inf_context context)
4139 {
4140 struct breakpoint *b, *b_tmp;
4141 struct bp_location *bl;
4142 int ix;
4143 struct program_space *pspace = current_program_space;
4144
4145 /* If breakpoint locations are shared across processes, then there's
4146 nothing to do. */
4147 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
4148 return;
4149
4150 mark_breakpoints_out ();
4151
4152 ALL_BREAKPOINTS_SAFE (b, b_tmp)
4153 {
4154 if (b->loc && b->loc->pspace != pspace)
4155 continue;
4156
4157 switch (b->type)
4158 {
4159 case bp_call_dummy:
4160 case bp_longjmp_call_dummy:
4161
4162 /* If the call dummy breakpoint is at the entry point it will
4163 cause problems when the inferior is rerun, so we better get
4164 rid of it. */
4165
4166 case bp_watchpoint_scope:
4167
4168 /* Also get rid of scope breakpoints. */
4169
4170 case bp_shlib_event:
4171
4172 /* Also remove solib event breakpoints. Their addresses may
4173 have changed since the last time we ran the program.
4174 Actually we may now be debugging against different target;
4175 and so the solib backend that installed this breakpoint may
4176 not be used in by the target. E.g.,
4177
4178 (gdb) file prog-linux
4179 (gdb) run # native linux target
4180 ...
4181 (gdb) kill
4182 (gdb) file prog-win.exe
4183 (gdb) tar rem :9999 # remote Windows gdbserver.
4184 */
4185
4186 case bp_step_resume:
4187
4188 /* Also remove step-resume breakpoints. */
4189
4190 case bp_single_step:
4191
4192 /* Also remove single-step breakpoints. */
4193
4194 delete_breakpoint (b);
4195 break;
4196
4197 case bp_watchpoint:
4198 case bp_hardware_watchpoint:
4199 case bp_read_watchpoint:
4200 case bp_access_watchpoint:
4201 {
4202 struct watchpoint *w = (struct watchpoint *) b;
4203
4204 /* Likewise for watchpoints on local expressions. */
4205 if (w->exp_valid_block != NULL)
4206 delete_breakpoint (b);
4207 else
4208 {
4209 /* Get rid of existing locations, which are no longer
4210 valid. New ones will be created in
4211 update_watchpoint, when the inferior is restarted.
4212 The next update_global_location_list call will
4213 garbage collect them. */
4214 b->loc = NULL;
4215
4216 if (context == inf_starting)
4217 {
4218 /* Reset val field to force reread of starting value in
4219 insert_breakpoints. */
4220 if (w->val)
4221 value_free (w->val);
4222 w->val = NULL;
4223 w->val_valid = 0;
4224 }
4225 }
4226 }
4227 break;
4228 default:
4229 break;
4230 }
4231 }
4232
4233 /* Get rid of the moribund locations. */
4234 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, bl); ++ix)
4235 decref_bp_location (&bl);
4236 VEC_free (bp_location_p, moribund_locations);
4237 }
4238
4239 /* These functions concern about actual breakpoints inserted in the
4240 target --- to e.g. check if we need to do decr_pc adjustment or if
4241 we need to hop over the bkpt --- so we check for address space
4242 match, not program space. */
4243
4244 /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
4245 exists at PC. It returns ordinary_breakpoint_here if it's an
4246 ordinary breakpoint, or permanent_breakpoint_here if it's a
4247 permanent breakpoint.
4248 - When continuing from a location with an ordinary breakpoint, we
4249 actually single step once before calling insert_breakpoints.
4250 - When continuing from a location with a permanent breakpoint, we
4251 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
4252 the target, to advance the PC past the breakpoint. */
4253
4254 enum breakpoint_here
4255 breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
4256 {
4257 struct bp_location *bl, **blp_tmp;
4258 int any_breakpoint_here = 0;
4259
4260 ALL_BP_LOCATIONS (bl, blp_tmp)
4261 {
4262 if (bl->loc_type != bp_loc_software_breakpoint
4263 && bl->loc_type != bp_loc_hardware_breakpoint)
4264 continue;
4265
4266 /* ALL_BP_LOCATIONS bp_location has BL->OWNER always non-NULL. */
4267 if ((breakpoint_enabled (bl->owner)
4268 || bl->permanent)
4269 && breakpoint_location_address_match (bl, aspace, pc))
4270 {
4271 if (overlay_debugging
4272 && section_is_overlay (bl->section)
4273 && !section_is_mapped (bl->section))
4274 continue; /* unmapped overlay -- can't be a match */
4275 else if (bl->permanent)
4276 return permanent_breakpoint_here;
4277 else
4278 any_breakpoint_here = 1;
4279 }
4280 }
4281
4282 return any_breakpoint_here ? ordinary_breakpoint_here : no_breakpoint_here;
4283 }
4284
4285 /* See breakpoint.h. */
4286
4287 int
4288 breakpoint_in_range_p (struct address_space *aspace,
4289 CORE_ADDR addr, ULONGEST len)
4290 {
4291 struct bp_location *bl, **blp_tmp;
4292
4293 ALL_BP_LOCATIONS (bl, blp_tmp)
4294 {
4295 if (bl->loc_type != bp_loc_software_breakpoint
4296 && bl->loc_type != bp_loc_hardware_breakpoint)
4297 continue;
4298
4299 if ((breakpoint_enabled (bl->owner)
4300 || bl->permanent)
4301 && breakpoint_location_address_range_overlap (bl, aspace,
4302 addr, len))
4303 {
4304 if (overlay_debugging
4305 && section_is_overlay (bl->section)
4306 && !section_is_mapped (bl->section))
4307 {
4308 /* Unmapped overlay -- can't be a match. */
4309 continue;
4310 }
4311
4312 return 1;
4313 }
4314 }
4315
4316 return 0;
4317 }
4318
4319 /* Return true if there's a moribund breakpoint at PC. */
4320
4321 int
4322 moribund_breakpoint_here_p (struct address_space *aspace, CORE_ADDR pc)
4323 {
4324 struct bp_location *loc;
4325 int ix;
4326
4327 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
4328 if (breakpoint_location_address_match (loc, aspace, pc))
4329 return 1;
4330
4331 return 0;
4332 }
4333
4334 /* Returns non-zero iff BL is inserted at PC, in address space
4335 ASPACE. */
4336
4337 static int
4338 bp_location_inserted_here_p (struct bp_location *bl,
4339 struct address_space *aspace, CORE_ADDR pc)
4340 {
4341 if (bl->inserted
4342 && breakpoint_address_match (bl->pspace->aspace, bl->address,
4343 aspace, pc))
4344 {
4345 if (overlay_debugging
4346 && section_is_overlay (bl->section)
4347 && !section_is_mapped (bl->section))
4348 return 0; /* unmapped overlay -- can't be a match */
4349 else
4350 return 1;
4351 }
4352 return 0;
4353 }
4354
4355 /* Returns non-zero iff there's a breakpoint inserted at PC. */
4356
4357 int
4358 breakpoint_inserted_here_p (struct address_space *aspace, CORE_ADDR pc)
4359 {
4360 struct bp_location **blp, **blp_tmp = NULL;
4361
4362 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4363 {
4364 struct bp_location *bl = *blp;
4365
4366 if (bl->loc_type != bp_loc_software_breakpoint
4367 && bl->loc_type != bp_loc_hardware_breakpoint)
4368 continue;
4369
4370 if (bp_location_inserted_here_p (bl, aspace, pc))
4371 return 1;
4372 }
4373 return 0;
4374 }
4375
4376 /* This function returns non-zero iff there is a software breakpoint
4377 inserted at PC. */
4378
4379 int
4380 software_breakpoint_inserted_here_p (struct address_space *aspace,
4381 CORE_ADDR pc)
4382 {
4383 struct bp_location **blp, **blp_tmp = NULL;
4384
4385 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4386 {
4387 struct bp_location *bl = *blp;
4388
4389 if (bl->loc_type != bp_loc_software_breakpoint)
4390 continue;
4391
4392 if (bp_location_inserted_here_p (bl, aspace, pc))
4393 return 1;
4394 }
4395
4396 return 0;
4397 }
4398
4399 /* See breakpoint.h. */
4400
4401 int
4402 hardware_breakpoint_inserted_here_p (struct address_space *aspace,
4403 CORE_ADDR pc)
4404 {
4405 struct bp_location **blp, **blp_tmp = NULL;
4406
4407 ALL_BP_LOCATIONS_AT_ADDR (blp, blp_tmp, pc)
4408 {
4409 struct bp_location *bl = *blp;
4410
4411 if (bl->loc_type != bp_loc_hardware_breakpoint)
4412 continue;
4413
4414 if (bp_location_inserted_here_p (bl, aspace, pc))
4415 return 1;
4416 }
4417
4418 return 0;
4419 }
4420
4421 int
4422 hardware_watchpoint_inserted_in_range (struct address_space *aspace,
4423 CORE_ADDR addr, ULONGEST len)
4424 {
4425 struct breakpoint *bpt;
4426
4427 ALL_BREAKPOINTS (bpt)
4428 {
4429 struct bp_location *loc;
4430
4431 if (bpt->type != bp_hardware_watchpoint
4432 && bpt->type != bp_access_watchpoint)
4433 continue;
4434
4435 if (!breakpoint_enabled (bpt))
4436 continue;
4437
4438 for (loc = bpt->loc; loc; loc = loc->next)
4439 if (loc->pspace->aspace == aspace && loc->inserted)
4440 {
4441 CORE_ADDR l, h;
4442
4443 /* Check for intersection. */
4444 l = max (loc->address, addr);
4445 h = min (loc->address + loc->length, addr + len);
4446 if (l < h)
4447 return 1;
4448 }
4449 }
4450 return 0;
4451 }
4452 \f
4453
4454 /* bpstat stuff. External routines' interfaces are documented
4455 in breakpoint.h. */
4456
4457 int
4458 is_catchpoint (struct breakpoint *ep)
4459 {
4460 return (ep->type == bp_catchpoint);
4461 }
4462
4463 /* Frees any storage that is part of a bpstat. Does not walk the
4464 'next' chain. */
4465
4466 static void
4467 bpstat_free (bpstat bs)
4468 {
4469 if (bs->old_val != NULL)
4470 value_free (bs->old_val);
4471 decref_counted_command_line (&bs->commands);
4472 decref_bp_location (&bs->bp_location_at);
4473 xfree (bs);
4474 }
4475
4476 /* Clear a bpstat so that it says we are not at any breakpoint.
4477 Also free any storage that is part of a bpstat. */
4478
4479 void
4480 bpstat_clear (bpstat *bsp)
4481 {
4482 bpstat p;
4483 bpstat q;
4484
4485 if (bsp == 0)
4486 return;
4487 p = *bsp;
4488 while (p != NULL)
4489 {
4490 q = p->next;
4491 bpstat_free (p);
4492 p = q;
4493 }
4494 *bsp = NULL;
4495 }
4496
4497 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
4498 is part of the bpstat is copied as well. */
4499
4500 bpstat
4501 bpstat_copy (bpstat bs)
4502 {
4503 bpstat p = NULL;
4504 bpstat tmp;
4505 bpstat retval = NULL;
4506
4507 if (bs == NULL)
4508 return bs;
4509
4510 for (; bs != NULL; bs = bs->next)
4511 {
4512 tmp = (bpstat) xmalloc (sizeof (*tmp));
4513 memcpy (tmp, bs, sizeof (*tmp));
4514 incref_counted_command_line (tmp->commands);
4515 incref_bp_location (tmp->bp_location_at);
4516 if (bs->old_val != NULL)
4517 {
4518 tmp->old_val = value_copy (bs->old_val);
4519 release_value (tmp->old_val);
4520 }
4521
4522 if (p == NULL)
4523 /* This is the first thing in the chain. */
4524 retval = tmp;
4525 else
4526 p->next = tmp;
4527 p = tmp;
4528 }
4529 p->next = NULL;
4530 return retval;
4531 }
4532
4533 /* Find the bpstat associated with this breakpoint. */
4534
4535 bpstat
4536 bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
4537 {
4538 if (bsp == NULL)
4539 return NULL;
4540
4541 for (; bsp != NULL; bsp = bsp->next)
4542 {
4543 if (bsp->breakpoint_at == breakpoint)
4544 return bsp;
4545 }
4546 return NULL;
4547 }
4548
4549 /* See breakpoint.h. */
4550
4551 int
4552 bpstat_explains_signal (bpstat bsp, enum gdb_signal sig)
4553 {
4554 for (; bsp != NULL; bsp = bsp->next)
4555 {
4556 if (bsp->breakpoint_at == NULL)
4557 {
4558 /* A moribund location can never explain a signal other than
4559 GDB_SIGNAL_TRAP. */
4560 if (sig == GDB_SIGNAL_TRAP)
4561 return 1;
4562 }
4563 else
4564 {
4565 if (bsp->breakpoint_at->ops->explains_signal (bsp->breakpoint_at,
4566 sig))
4567 return 1;
4568 }
4569 }
4570
4571 return 0;
4572 }
4573
4574 /* Put in *NUM the breakpoint number of the first breakpoint we are
4575 stopped at. *BSP upon return is a bpstat which points to the
4576 remaining breakpoints stopped at (but which is not guaranteed to be
4577 good for anything but further calls to bpstat_num).
4578
4579 Return 0 if passed a bpstat which does not indicate any breakpoints.
4580 Return -1 if stopped at a breakpoint that has been deleted since
4581 we set it.
4582 Return 1 otherwise. */
4583
4584 int
4585 bpstat_num (bpstat *bsp, int *num)
4586 {
4587 struct breakpoint *b;
4588
4589 if ((*bsp) == NULL)
4590 return 0; /* No more breakpoint values */
4591
4592 /* We assume we'll never have several bpstats that correspond to a
4593 single breakpoint -- otherwise, this function might return the
4594 same number more than once and this will look ugly. */
4595 b = (*bsp)->breakpoint_at;
4596 *bsp = (*bsp)->next;
4597 if (b == NULL)
4598 return -1; /* breakpoint that's been deleted since */
4599
4600 *num = b->number; /* We have its number */
4601 return 1;
4602 }
4603
4604 /* See breakpoint.h. */
4605
4606 void
4607 bpstat_clear_actions (void)
4608 {
4609 struct thread_info *tp;
4610 bpstat bs;
4611
4612 if (ptid_equal (inferior_ptid, null_ptid))
4613 return;
4614
4615 tp = find_thread_ptid (inferior_ptid);
4616 if (tp == NULL)
4617 return;
4618
4619 for (bs = tp->control.stop_bpstat; bs != NULL; bs = bs->next)
4620 {
4621 decref_counted_command_line (&bs->commands);
4622
4623 if (bs->old_val != NULL)
4624 {
4625 value_free (bs->old_val);
4626 bs->old_val = NULL;
4627 }
4628 }
4629 }
4630
4631 /* Called when a command is about to proceed the inferior. */
4632
4633 static void
4634 breakpoint_about_to_proceed (void)
4635 {
4636 if (!ptid_equal (inferior_ptid, null_ptid))
4637 {
4638 struct thread_info *tp = inferior_thread ();
4639
4640 /* Allow inferior function calls in breakpoint commands to not
4641 interrupt the command list. When the call finishes
4642 successfully, the inferior will be standing at the same
4643 breakpoint as if nothing happened. */
4644 if (tp->control.in_infcall)
4645 return;
4646 }
4647
4648 breakpoint_proceeded = 1;
4649 }
4650
4651 /* Stub for cleaning up our state if we error-out of a breakpoint
4652 command. */
4653 static void
4654 cleanup_executing_breakpoints (void *ignore)
4655 {
4656 executing_breakpoint_commands = 0;
4657 }
4658
4659 /* Return non-zero iff CMD as the first line of a command sequence is `silent'
4660 or its equivalent. */
4661
4662 static int
4663 command_line_is_silent (struct command_line *cmd)
4664 {
4665 return cmd && (strcmp ("silent", cmd->line) == 0);
4666 }
4667
4668 /* Execute all the commands associated with all the breakpoints at
4669 this location. Any of these commands could cause the process to
4670 proceed beyond this point, etc. We look out for such changes by
4671 checking the global "breakpoint_proceeded" after each command.
4672
4673 Returns true if a breakpoint command resumed the inferior. In that
4674 case, it is the caller's responsibility to recall it again with the
4675 bpstat of the current thread. */
4676
4677 static int
4678 bpstat_do_actions_1 (bpstat *bsp)
4679 {
4680 bpstat bs;
4681 struct cleanup *old_chain;
4682 int again = 0;
4683
4684 /* Avoid endless recursion if a `source' command is contained
4685 in bs->commands. */
4686 if (executing_breakpoint_commands)
4687 return 0;
4688
4689 executing_breakpoint_commands = 1;
4690 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
4691
4692 prevent_dont_repeat ();
4693
4694 /* This pointer will iterate over the list of bpstat's. */
4695 bs = *bsp;
4696
4697 breakpoint_proceeded = 0;
4698 for (; bs != NULL; bs = bs->next)
4699 {
4700 struct counted_command_line *ccmd;
4701 struct command_line *cmd;
4702 struct cleanup *this_cmd_tree_chain;
4703
4704 /* Take ownership of the BSP's command tree, if it has one.
4705
4706 The command tree could legitimately contain commands like
4707 'step' and 'next', which call clear_proceed_status, which
4708 frees stop_bpstat's command tree. To make sure this doesn't
4709 free the tree we're executing out from under us, we need to
4710 take ownership of the tree ourselves. Since a given bpstat's
4711 commands are only executed once, we don't need to copy it; we
4712 can clear the pointer in the bpstat, and make sure we free
4713 the tree when we're done. */
4714 ccmd = bs->commands;
4715 bs->commands = NULL;
4716 this_cmd_tree_chain = make_cleanup_decref_counted_command_line (&ccmd);
4717 cmd = ccmd ? ccmd->commands : NULL;
4718 if (command_line_is_silent (cmd))
4719 {
4720 /* The action has been already done by bpstat_stop_status. */
4721 cmd = cmd->next;
4722 }
4723
4724 while (cmd != NULL)
4725 {
4726 execute_control_command (cmd);
4727
4728 if (breakpoint_proceeded)
4729 break;
4730 else
4731 cmd = cmd->next;
4732 }
4733
4734 /* We can free this command tree now. */
4735 do_cleanups (this_cmd_tree_chain);
4736
4737 if (breakpoint_proceeded)
4738 {
4739 if (current_ui->async)
4740 /* If we are in async mode, then the target might be still
4741 running, not stopped at any breakpoint, so nothing for
4742 us to do here -- just return to the event loop. */
4743 ;
4744 else
4745 /* In sync mode, when execute_control_command returns
4746 we're already standing on the next breakpoint.
4747 Breakpoint commands for that stop were not run, since
4748 execute_command does not run breakpoint commands --
4749 only command_line_handler does, but that one is not
4750 involved in execution of breakpoint commands. So, we
4751 can now execute breakpoint commands. It should be
4752 noted that making execute_command do bpstat actions is
4753 not an option -- in this case we'll have recursive
4754 invocation of bpstat for each breakpoint with a
4755 command, and can easily blow up GDB stack. Instead, we
4756 return true, which will trigger the caller to recall us
4757 with the new stop_bpstat. */
4758 again = 1;
4759 break;
4760 }
4761 }
4762 do_cleanups (old_chain);
4763 return again;
4764 }
4765
4766 void
4767 bpstat_do_actions (void)
4768 {
4769 struct cleanup *cleanup_if_error = make_bpstat_clear_actions_cleanup ();
4770
4771 /* Do any commands attached to breakpoint we are stopped at. */
4772 while (!ptid_equal (inferior_ptid, null_ptid)
4773 && target_has_execution
4774 && !is_exited (inferior_ptid)
4775 && !is_executing (inferior_ptid))
4776 /* Since in sync mode, bpstat_do_actions may resume the inferior,
4777 and only return when it is stopped at the next breakpoint, we
4778 keep doing breakpoint actions until it returns false to
4779 indicate the inferior was not resumed. */
4780 if (!bpstat_do_actions_1 (&inferior_thread ()->control.stop_bpstat))
4781 break;
4782
4783 discard_cleanups (cleanup_if_error);
4784 }
4785
4786 /* Print out the (old or new) value associated with a watchpoint. */
4787
4788 static void
4789 watchpoint_value_print (struct value *val, struct ui_file *stream)
4790 {
4791 if (val == NULL)
4792 fprintf_unfiltered (stream, _("<unreadable>"));
4793 else
4794 {
4795 struct value_print_options opts;
4796 get_user_print_options (&opts);
4797 value_print (val, stream, &opts);
4798 }
4799 }
4800
4801 /* Print the "Thread ID hit" part of "Thread ID hit Breakpoint N" if
4802 debugging multiple threads. */
4803
4804 void
4805 maybe_print_thread_hit_breakpoint (struct ui_out *uiout)
4806 {
4807 if (ui_out_is_mi_like_p (uiout))
4808 return;
4809
4810 ui_out_text (uiout, "\n");
4811
4812 if (show_thread_that_caused_stop ())
4813 {
4814 const char *name;
4815 struct thread_info *thr = inferior_thread ();
4816
4817 ui_out_text (uiout, "Thread ");
4818 ui_out_field_fmt (uiout, "thread-id", "%s", print_thread_id (thr));
4819
4820 name = thr->name != NULL ? thr->name : target_thread_name (thr);
4821 if (name != NULL)
4822 {
4823 ui_out_text (uiout, " \"");
4824 ui_out_field_fmt (uiout, "name", "%s", name);
4825 ui_out_text (uiout, "\"");
4826 }
4827
4828 ui_out_text (uiout, " hit ");
4829 }
4830 }
4831
4832 /* Generic routine for printing messages indicating why we
4833 stopped. The behavior of this function depends on the value
4834 'print_it' in the bpstat structure. Under some circumstances we
4835 may decide not to print anything here and delegate the task to
4836 normal_stop(). */
4837
4838 static enum print_stop_action
4839 print_bp_stop_message (bpstat bs)
4840 {
4841 switch (bs->print_it)
4842 {
4843 case print_it_noop:
4844 /* Nothing should be printed for this bpstat entry. */
4845 return PRINT_UNKNOWN;
4846 break;
4847
4848 case print_it_done:
4849 /* We still want to print the frame, but we already printed the
4850 relevant messages. */
4851 return PRINT_SRC_AND_LOC;
4852 break;
4853
4854 case print_it_normal:
4855 {
4856 struct breakpoint *b = bs->breakpoint_at;
4857
4858 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
4859 which has since been deleted. */
4860 if (b == NULL)
4861 return PRINT_UNKNOWN;
4862
4863 /* Normal case. Call the breakpoint's print_it method. */
4864 return b->ops->print_it (bs);
4865 }
4866 break;
4867
4868 default:
4869 internal_error (__FILE__, __LINE__,
4870 _("print_bp_stop_message: unrecognized enum value"));
4871 break;
4872 }
4873 }
4874
4875 /* A helper function that prints a shared library stopped event. */
4876
4877 static void
4878 print_solib_event (int is_catchpoint)
4879 {
4880 int any_deleted
4881 = !VEC_empty (char_ptr, current_program_space->deleted_solibs);
4882 int any_added
4883 = !VEC_empty (so_list_ptr, current_program_space->added_solibs);
4884
4885 if (!is_catchpoint)
4886 {
4887 if (any_added || any_deleted)
4888 ui_out_text (current_uiout,
4889 _("Stopped due to shared library event:\n"));
4890 else
4891 ui_out_text (current_uiout,
4892 _("Stopped due to shared library event (no "
4893 "libraries added or removed)\n"));
4894 }
4895
4896 if (ui_out_is_mi_like_p (current_uiout))
4897 ui_out_field_string (current_uiout, "reason",
4898 async_reason_lookup (EXEC_ASYNC_SOLIB_EVENT));
4899
4900 if (any_deleted)
4901 {
4902 struct cleanup *cleanup;
4903 char *name;
4904 int ix;
4905
4906 ui_out_text (current_uiout, _(" Inferior unloaded "));
4907 cleanup = make_cleanup_ui_out_list_begin_end (current_uiout,
4908 "removed");
4909 for (ix = 0;
4910 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
4911 ix, name);
4912 ++ix)
4913 {
4914 if (ix > 0)
4915 ui_out_text (current_uiout, " ");
4916 ui_out_field_string (current_uiout, "library", name);
4917 ui_out_text (current_uiout, "\n");
4918 }
4919
4920 do_cleanups (cleanup);
4921 }
4922
4923 if (any_added)
4924 {
4925 struct so_list *iter;
4926 int ix;
4927 struct cleanup *cleanup;
4928
4929 ui_out_text (current_uiout, _(" Inferior loaded "));
4930 cleanup = make_cleanup_ui_out_list_begin_end (current_uiout,
4931 "added");
4932 for (ix = 0;
4933 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
4934 ix, iter);
4935 ++ix)
4936 {
4937 if (ix > 0)
4938 ui_out_text (current_uiout, " ");
4939 ui_out_field_string (current_uiout, "library", iter->so_name);
4940 ui_out_text (current_uiout, "\n");
4941 }
4942
4943 do_cleanups (cleanup);
4944 }
4945 }
4946
4947 /* Print a message indicating what happened. This is called from
4948 normal_stop(). The input to this routine is the head of the bpstat
4949 list - a list of the eventpoints that caused this stop. KIND is
4950 the target_waitkind for the stopping event. This
4951 routine calls the generic print routine for printing a message
4952 about reasons for stopping. This will print (for example) the
4953 "Breakpoint n," part of the output. The return value of this
4954 routine is one of:
4955
4956 PRINT_UNKNOWN: Means we printed nothing.
4957 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
4958 code to print the location. An example is
4959 "Breakpoint 1, " which should be followed by
4960 the location.
4961 PRINT_SRC_ONLY: Means we printed something, but there is no need
4962 to also print the location part of the message.
4963 An example is the catch/throw messages, which
4964 don't require a location appended to the end.
4965 PRINT_NOTHING: We have done some printing and we don't need any
4966 further info to be printed. */
4967
4968 enum print_stop_action
4969 bpstat_print (bpstat bs, int kind)
4970 {
4971 enum print_stop_action val;
4972
4973 /* Maybe another breakpoint in the chain caused us to stop.
4974 (Currently all watchpoints go on the bpstat whether hit or not.
4975 That probably could (should) be changed, provided care is taken
4976 with respect to bpstat_explains_signal). */
4977 for (; bs; bs = bs->next)
4978 {
4979 val = print_bp_stop_message (bs);
4980 if (val == PRINT_SRC_ONLY
4981 || val == PRINT_SRC_AND_LOC
4982 || val == PRINT_NOTHING)
4983 return val;
4984 }
4985
4986 /* If we had hit a shared library event breakpoint,
4987 print_bp_stop_message would print out this message. If we hit an
4988 OS-level shared library event, do the same thing. */
4989 if (kind == TARGET_WAITKIND_LOADED)
4990 {
4991 print_solib_event (0);
4992 return PRINT_NOTHING;
4993 }
4994
4995 /* We reached the end of the chain, or we got a null BS to start
4996 with and nothing was printed. */
4997 return PRINT_UNKNOWN;
4998 }
4999
5000 /* Evaluate the expression EXP and return 1 if value is zero.
5001 This returns the inverse of the condition because it is called
5002 from catch_errors which returns 0 if an exception happened, and if an
5003 exception happens we want execution to stop.
5004 The argument is a "struct expression *" that has been cast to a
5005 "void *" to make it pass through catch_errors. */
5006
5007 static int
5008 breakpoint_cond_eval (void *exp)
5009 {
5010 struct value *mark = value_mark ();
5011 int i = !value_true (evaluate_expression ((struct expression *) exp));
5012
5013 value_free_to_mark (mark);
5014 return i;
5015 }
5016
5017 /* Allocate a new bpstat. Link it to the FIFO list by BS_LINK_POINTER. */
5018
5019 static bpstat
5020 bpstat_alloc (struct bp_location *bl, bpstat **bs_link_pointer)
5021 {
5022 bpstat bs;
5023
5024 bs = (bpstat) xmalloc (sizeof (*bs));
5025 bs->next = NULL;
5026 **bs_link_pointer = bs;
5027 *bs_link_pointer = &bs->next;
5028 bs->breakpoint_at = bl->owner;
5029 bs->bp_location_at = bl;
5030 incref_bp_location (bl);
5031 /* If the condition is false, etc., don't do the commands. */
5032 bs->commands = NULL;
5033 bs->old_val = NULL;
5034 bs->print_it = print_it_normal;
5035 return bs;
5036 }
5037 \f
5038 /* The target has stopped with waitstatus WS. Check if any hardware
5039 watchpoints have triggered, according to the target. */
5040
5041 int
5042 watchpoints_triggered (struct target_waitstatus *ws)
5043 {
5044 int stopped_by_watchpoint = target_stopped_by_watchpoint ();
5045 CORE_ADDR addr;
5046 struct breakpoint *b;
5047
5048 if (!stopped_by_watchpoint)
5049 {
5050 /* We were not stopped by a watchpoint. Mark all watchpoints
5051 as not triggered. */
5052 ALL_BREAKPOINTS (b)
5053 if (is_hardware_watchpoint (b))
5054 {
5055 struct watchpoint *w = (struct watchpoint *) b;
5056
5057 w->watchpoint_triggered = watch_triggered_no;
5058 }
5059
5060 return 0;
5061 }
5062
5063 if (!target_stopped_data_address (&current_target, &addr))
5064 {
5065 /* We were stopped by a watchpoint, but we don't know where.
5066 Mark all watchpoints as unknown. */
5067 ALL_BREAKPOINTS (b)
5068 if (is_hardware_watchpoint (b))
5069 {
5070 struct watchpoint *w = (struct watchpoint *) b;
5071
5072 w->watchpoint_triggered = watch_triggered_unknown;
5073 }
5074
5075 return 1;
5076 }
5077
5078 /* The target could report the data address. Mark watchpoints
5079 affected by this data address as triggered, and all others as not
5080 triggered. */
5081
5082 ALL_BREAKPOINTS (b)
5083 if (is_hardware_watchpoint (b))
5084 {
5085 struct watchpoint *w = (struct watchpoint *) b;
5086 struct bp_location *loc;
5087
5088 w->watchpoint_triggered = watch_triggered_no;
5089 for (loc = b->loc; loc; loc = loc->next)
5090 {
5091 if (is_masked_watchpoint (b))
5092 {
5093 CORE_ADDR newaddr = addr & w->hw_wp_mask;
5094 CORE_ADDR start = loc->address & w->hw_wp_mask;
5095
5096 if (newaddr == start)
5097 {
5098 w->watchpoint_triggered = watch_triggered_yes;
5099 break;
5100 }
5101 }
5102 /* Exact match not required. Within range is sufficient. */
5103 else if (target_watchpoint_addr_within_range (&current_target,
5104 addr, loc->address,
5105 loc->length))
5106 {
5107 w->watchpoint_triggered = watch_triggered_yes;
5108 break;
5109 }
5110 }
5111 }
5112
5113 return 1;
5114 }
5115
5116 /* Possible return values for watchpoint_check (this can't be an enum
5117 because of check_errors). */
5118 /* The watchpoint has been deleted. */
5119 #define WP_DELETED 1
5120 /* The value has changed. */
5121 #define WP_VALUE_CHANGED 2
5122 /* The value has not changed. */
5123 #define WP_VALUE_NOT_CHANGED 3
5124 /* Ignore this watchpoint, no matter if the value changed or not. */
5125 #define WP_IGNORE 4
5126
5127 #define BP_TEMPFLAG 1
5128 #define BP_HARDWAREFLAG 2
5129
5130 /* Evaluate watchpoint condition expression and check if its value
5131 changed.
5132
5133 P should be a pointer to struct bpstat, but is defined as a void *
5134 in order for this function to be usable with catch_errors. */
5135
5136 static int
5137 watchpoint_check (void *p)
5138 {
5139 bpstat bs = (bpstat) p;
5140 struct watchpoint *b;
5141 struct frame_info *fr;
5142 int within_current_scope;
5143
5144 /* BS is built from an existing struct breakpoint. */
5145 gdb_assert (bs->breakpoint_at != NULL);
5146 b = (struct watchpoint *) bs->breakpoint_at;
5147
5148 /* If this is a local watchpoint, we only want to check if the
5149 watchpoint frame is in scope if the current thread is the thread
5150 that was used to create the watchpoint. */
5151 if (!watchpoint_in_thread_scope (b))
5152 return WP_IGNORE;
5153
5154 if (b->exp_valid_block == NULL)
5155 within_current_scope = 1;
5156 else
5157 {
5158 struct frame_info *frame = get_current_frame ();
5159 struct gdbarch *frame_arch = get_frame_arch (frame);
5160 CORE_ADDR frame_pc = get_frame_pc (frame);
5161
5162 /* stack_frame_destroyed_p() returns a non-zero value if we're
5163 still in the function but the stack frame has already been
5164 invalidated. Since we can't rely on the values of local
5165 variables after the stack has been destroyed, we are treating
5166 the watchpoint in that state as `not changed' without further
5167 checking. Don't mark watchpoints as changed if the current
5168 frame is in an epilogue - even if they are in some other
5169 frame, our view of the stack is likely to be wrong and
5170 frame_find_by_id could error out. */
5171 if (gdbarch_stack_frame_destroyed_p (frame_arch, frame_pc))
5172 return WP_IGNORE;
5173
5174 fr = frame_find_by_id (b->watchpoint_frame);
5175 within_current_scope = (fr != NULL);
5176
5177 /* If we've gotten confused in the unwinder, we might have
5178 returned a frame that can't describe this variable. */
5179 if (within_current_scope)
5180 {
5181 struct symbol *function;
5182
5183 function = get_frame_function (fr);
5184 if (function == NULL
5185 || !contained_in (b->exp_valid_block,
5186 SYMBOL_BLOCK_VALUE (function)))
5187 within_current_scope = 0;
5188 }
5189
5190 if (within_current_scope)
5191 /* If we end up stopping, the current frame will get selected
5192 in normal_stop. So this call to select_frame won't affect
5193 the user. */
5194 select_frame (fr);
5195 }
5196
5197 if (within_current_scope)
5198 {
5199 /* We use value_{,free_to_}mark because it could be a *long*
5200 time before we return to the command level and call
5201 free_all_values. We can't call free_all_values because we
5202 might be in the middle of evaluating a function call. */
5203
5204 int pc = 0;
5205 struct value *mark;
5206 struct value *new_val;
5207
5208 if (is_masked_watchpoint (&b->base))
5209 /* Since we don't know the exact trigger address (from
5210 stopped_data_address), just tell the user we've triggered
5211 a mask watchpoint. */
5212 return WP_VALUE_CHANGED;
5213
5214 mark = value_mark ();
5215 fetch_subexp_value (b->exp, &pc, &new_val, NULL, NULL, 0);
5216
5217 if (b->val_bitsize != 0)
5218 new_val = extract_bitfield_from_watchpoint_value (b, new_val);
5219
5220 /* We use value_equal_contents instead of value_equal because
5221 the latter coerces an array to a pointer, thus comparing just
5222 the address of the array instead of its contents. This is
5223 not what we want. */
5224 if ((b->val != NULL) != (new_val != NULL)
5225 || (b->val != NULL && !value_equal_contents (b->val, new_val)))
5226 {
5227 if (new_val != NULL)
5228 {
5229 release_value (new_val);
5230 value_free_to_mark (mark);
5231 }
5232 bs->old_val = b->val;
5233 b->val = new_val;
5234 b->val_valid = 1;
5235 return WP_VALUE_CHANGED;
5236 }
5237 else
5238 {
5239 /* Nothing changed. */
5240 value_free_to_mark (mark);
5241 return WP_VALUE_NOT_CHANGED;
5242 }
5243 }
5244 else
5245 {
5246 struct switch_thru_all_uis state;
5247
5248 /* This seems like the only logical thing to do because
5249 if we temporarily ignored the watchpoint, then when
5250 we reenter the block in which it is valid it contains
5251 garbage (in the case of a function, it may have two
5252 garbage values, one before and one after the prologue).
5253 So we can't even detect the first assignment to it and
5254 watch after that (since the garbage may or may not equal
5255 the first value assigned). */
5256 /* We print all the stop information in
5257 breakpoint_ops->print_it, but in this case, by the time we
5258 call breakpoint_ops->print_it this bp will be deleted
5259 already. So we have no choice but print the information
5260 here. */
5261
5262 SWITCH_THRU_ALL_UIS (state)
5263 {
5264 struct ui_out *uiout = current_uiout;
5265
5266 if (ui_out_is_mi_like_p (uiout))
5267 ui_out_field_string
5268 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
5269 ui_out_text (uiout, "\nWatchpoint ");
5270 ui_out_field_int (uiout, "wpnum", b->base.number);
5271 ui_out_text (uiout,
5272 " deleted because the program has left the block in\n"
5273 "which its expression is valid.\n");
5274 }
5275
5276 /* Make sure the watchpoint's commands aren't executed. */
5277 decref_counted_command_line (&b->base.commands);
5278 watchpoint_del_at_next_stop (b);
5279
5280 return WP_DELETED;
5281 }
5282 }
5283
5284 /* Return true if it looks like target has stopped due to hitting
5285 breakpoint location BL. This function does not check if we should
5286 stop, only if BL explains the stop. */
5287
5288 static int
5289 bpstat_check_location (const struct bp_location *bl,
5290 struct address_space *aspace, CORE_ADDR bp_addr,
5291 const struct target_waitstatus *ws)
5292 {
5293 struct breakpoint *b = bl->owner;
5294
5295 /* BL is from an existing breakpoint. */
5296 gdb_assert (b != NULL);
5297
5298 return b->ops->breakpoint_hit (bl, aspace, bp_addr, ws);
5299 }
5300
5301 /* Determine if the watched values have actually changed, and we
5302 should stop. If not, set BS->stop to 0. */
5303
5304 static void
5305 bpstat_check_watchpoint (bpstat bs)
5306 {
5307 const struct bp_location *bl;
5308 struct watchpoint *b;
5309
5310 /* BS is built for existing struct breakpoint. */
5311 bl = bs->bp_location_at;
5312 gdb_assert (bl != NULL);
5313 b = (struct watchpoint *) bs->breakpoint_at;
5314 gdb_assert (b != NULL);
5315
5316 {
5317 int must_check_value = 0;
5318
5319 if (b->base.type == bp_watchpoint)
5320 /* For a software watchpoint, we must always check the
5321 watched value. */
5322 must_check_value = 1;
5323 else if (b->watchpoint_triggered == watch_triggered_yes)
5324 /* We have a hardware watchpoint (read, write, or access)
5325 and the target earlier reported an address watched by
5326 this watchpoint. */
5327 must_check_value = 1;
5328 else if (b->watchpoint_triggered == watch_triggered_unknown
5329 && b->base.type == bp_hardware_watchpoint)
5330 /* We were stopped by a hardware watchpoint, but the target could
5331 not report the data address. We must check the watchpoint's
5332 value. Access and read watchpoints are out of luck; without
5333 a data address, we can't figure it out. */
5334 must_check_value = 1;
5335
5336 if (must_check_value)
5337 {
5338 char *message
5339 = xstrprintf ("Error evaluating expression for watchpoint %d\n",
5340 b->base.number);
5341 struct cleanup *cleanups = make_cleanup (xfree, message);
5342 int e = catch_errors (watchpoint_check, bs, message,
5343 RETURN_MASK_ALL);
5344 do_cleanups (cleanups);
5345 switch (e)
5346 {
5347 case WP_DELETED:
5348 /* We've already printed what needs to be printed. */
5349 bs->print_it = print_it_done;
5350 /* Stop. */
5351 break;
5352 case WP_IGNORE:
5353 bs->print_it = print_it_noop;
5354 bs->stop = 0;
5355 break;
5356 case WP_VALUE_CHANGED:
5357 if (b->base.type == bp_read_watchpoint)
5358 {
5359 /* There are two cases to consider here:
5360
5361 1. We're watching the triggered memory for reads.
5362 In that case, trust the target, and always report
5363 the watchpoint hit to the user. Even though
5364 reads don't cause value changes, the value may
5365 have changed since the last time it was read, and
5366 since we're not trapping writes, we will not see
5367 those, and as such we should ignore our notion of
5368 old value.
5369
5370 2. We're watching the triggered memory for both
5371 reads and writes. There are two ways this may
5372 happen:
5373
5374 2.1. This is a target that can't break on data
5375 reads only, but can break on accesses (reads or
5376 writes), such as e.g., x86. We detect this case
5377 at the time we try to insert read watchpoints.
5378
5379 2.2. Otherwise, the target supports read
5380 watchpoints, but, the user set an access or write
5381 watchpoint watching the same memory as this read
5382 watchpoint.
5383
5384 If we're watching memory writes as well as reads,
5385 ignore watchpoint hits when we find that the
5386 value hasn't changed, as reads don't cause
5387 changes. This still gives false positives when
5388 the program writes the same value to memory as
5389 what there was already in memory (we will confuse
5390 it for a read), but it's much better than
5391 nothing. */
5392
5393 int other_write_watchpoint = 0;
5394
5395 if (bl->watchpoint_type == hw_read)
5396 {
5397 struct breakpoint *other_b;
5398
5399 ALL_BREAKPOINTS (other_b)
5400 if (other_b->type == bp_hardware_watchpoint
5401 || other_b->type == bp_access_watchpoint)
5402 {
5403 struct watchpoint *other_w =
5404 (struct watchpoint *) other_b;
5405
5406 if (other_w->watchpoint_triggered
5407 == watch_triggered_yes)
5408 {
5409 other_write_watchpoint = 1;
5410 break;
5411 }
5412 }
5413 }
5414
5415 if (other_write_watchpoint
5416 || bl->watchpoint_type == hw_access)
5417 {
5418 /* We're watching the same memory for writes,
5419 and the value changed since the last time we
5420 updated it, so this trap must be for a write.
5421 Ignore it. */
5422 bs->print_it = print_it_noop;
5423 bs->stop = 0;
5424 }
5425 }
5426 break;
5427 case WP_VALUE_NOT_CHANGED:
5428 if (b->base.type == bp_hardware_watchpoint
5429 || b->base.type == bp_watchpoint)
5430 {
5431 /* Don't stop: write watchpoints shouldn't fire if
5432 the value hasn't changed. */
5433 bs->print_it = print_it_noop;
5434 bs->stop = 0;
5435 }
5436 /* Stop. */
5437 break;
5438 default:
5439 /* Can't happen. */
5440 case 0:
5441 /* Error from catch_errors. */
5442 {
5443 struct switch_thru_all_uis state;
5444
5445 SWITCH_THRU_ALL_UIS (state)
5446 {
5447 printf_filtered (_("Watchpoint %d deleted.\n"),
5448 b->base.number);
5449 }
5450 watchpoint_del_at_next_stop (b);
5451 /* We've already printed what needs to be printed. */
5452 bs->print_it = print_it_done;
5453 }
5454 break;
5455 }
5456 }
5457 else /* must_check_value == 0 */
5458 {
5459 /* This is a case where some watchpoint(s) triggered, but
5460 not at the address of this watchpoint, or else no
5461 watchpoint triggered after all. So don't print
5462 anything for this watchpoint. */
5463 bs->print_it = print_it_noop;
5464 bs->stop = 0;
5465 }
5466 }
5467 }
5468
5469 /* For breakpoints that are currently marked as telling gdb to stop,
5470 check conditions (condition proper, frame, thread and ignore count)
5471 of breakpoint referred to by BS. If we should not stop for this
5472 breakpoint, set BS->stop to 0. */
5473
5474 static void
5475 bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid)
5476 {
5477 const struct bp_location *bl;
5478 struct breakpoint *b;
5479 int value_is_zero = 0;
5480 struct expression *cond;
5481
5482 gdb_assert (bs->stop);
5483
5484 /* BS is built for existing struct breakpoint. */
5485 bl = bs->bp_location_at;
5486 gdb_assert (bl != NULL);
5487 b = bs->breakpoint_at;
5488 gdb_assert (b != NULL);
5489
5490 /* Even if the target evaluated the condition on its end and notified GDB, we
5491 need to do so again since GDB does not know if we stopped due to a
5492 breakpoint or a single step breakpoint. */
5493
5494 if (frame_id_p (b->frame_id)
5495 && !frame_id_eq (b->frame_id, get_stack_frame_id (get_current_frame ())))
5496 {
5497 bs->stop = 0;
5498 return;
5499 }
5500
5501 /* If this is a thread/task-specific breakpoint, don't waste cpu
5502 evaluating the condition if this isn't the specified
5503 thread/task. */
5504 if ((b->thread != -1 && b->thread != ptid_to_global_thread_id (ptid))
5505 || (b->task != 0 && b->task != ada_get_task_number (ptid)))
5506
5507 {
5508 bs->stop = 0;
5509 return;
5510 }
5511
5512 /* Evaluate extension language breakpoints that have a "stop" method
5513 implemented. */
5514 bs->stop = breakpoint_ext_lang_cond_says_stop (b);
5515
5516 if (is_watchpoint (b))
5517 {
5518 struct watchpoint *w = (struct watchpoint *) b;
5519
5520 cond = w->cond_exp;
5521 }
5522 else
5523 cond = bl->cond;
5524
5525 if (cond && b->disposition != disp_del_at_next_stop)
5526 {
5527 int within_current_scope = 1;
5528 struct watchpoint * w;
5529
5530 /* We use value_mark and value_free_to_mark because it could
5531 be a long time before we return to the command level and
5532 call free_all_values. We can't call free_all_values
5533 because we might be in the middle of evaluating a
5534 function call. */
5535 struct value *mark = value_mark ();
5536
5537 if (is_watchpoint (b))
5538 w = (struct watchpoint *) b;
5539 else
5540 w = NULL;
5541
5542 /* Need to select the frame, with all that implies so that
5543 the conditions will have the right context. Because we
5544 use the frame, we will not see an inlined function's
5545 variables when we arrive at a breakpoint at the start
5546 of the inlined function; the current frame will be the
5547 call site. */
5548 if (w == NULL || w->cond_exp_valid_block == NULL)
5549 select_frame (get_current_frame ());
5550 else
5551 {
5552 struct frame_info *frame;
5553
5554 /* For local watchpoint expressions, which particular
5555 instance of a local is being watched matters, so we
5556 keep track of the frame to evaluate the expression
5557 in. To evaluate the condition however, it doesn't
5558 really matter which instantiation of the function
5559 where the condition makes sense triggers the
5560 watchpoint. This allows an expression like "watch
5561 global if q > 10" set in `func', catch writes to
5562 global on all threads that call `func', or catch
5563 writes on all recursive calls of `func' by a single
5564 thread. We simply always evaluate the condition in
5565 the innermost frame that's executing where it makes
5566 sense to evaluate the condition. It seems
5567 intuitive. */
5568 frame = block_innermost_frame (w->cond_exp_valid_block);
5569 if (frame != NULL)
5570 select_frame (frame);
5571 else
5572 within_current_scope = 0;
5573 }
5574 if (within_current_scope)
5575 value_is_zero
5576 = catch_errors (breakpoint_cond_eval, cond,
5577 "Error in testing breakpoint condition:\n",
5578 RETURN_MASK_ALL);
5579 else
5580 {
5581 warning (_("Watchpoint condition cannot be tested "
5582 "in the current scope"));
5583 /* If we failed to set the right context for this
5584 watchpoint, unconditionally report it. */
5585 value_is_zero = 0;
5586 }
5587 /* FIXME-someday, should give breakpoint #. */
5588 value_free_to_mark (mark);
5589 }
5590
5591 if (cond && value_is_zero)
5592 {
5593 bs->stop = 0;
5594 }
5595 else if (b->ignore_count > 0)
5596 {
5597 b->ignore_count--;
5598 bs->stop = 0;
5599 /* Increase the hit count even though we don't stop. */
5600 ++(b->hit_count);
5601 observer_notify_breakpoint_modified (b);
5602 }
5603 }
5604
5605 /* Returns true if we need to track moribund locations of LOC's type
5606 on the current target. */
5607
5608 static int
5609 need_moribund_for_location_type (struct bp_location *loc)
5610 {
5611 return ((loc->loc_type == bp_loc_software_breakpoint
5612 && !target_supports_stopped_by_sw_breakpoint ())
5613 || (loc->loc_type == bp_loc_hardware_breakpoint
5614 && !target_supports_stopped_by_hw_breakpoint ()));
5615 }
5616
5617
5618 /* Get a bpstat associated with having just stopped at address
5619 BP_ADDR in thread PTID.
5620
5621 Determine whether we stopped at a breakpoint, etc, or whether we
5622 don't understand this stop. Result is a chain of bpstat's such
5623 that:
5624
5625 if we don't understand the stop, the result is a null pointer.
5626
5627 if we understand why we stopped, the result is not null.
5628
5629 Each element of the chain refers to a particular breakpoint or
5630 watchpoint at which we have stopped. (We may have stopped for
5631 several reasons concurrently.)
5632
5633 Each element of the chain has valid next, breakpoint_at,
5634 commands, FIXME??? fields. */
5635
5636 bpstat
5637 bpstat_stop_status (struct address_space *aspace,
5638 CORE_ADDR bp_addr, ptid_t ptid,
5639 const struct target_waitstatus *ws)
5640 {
5641 struct breakpoint *b = NULL;
5642 struct bp_location *bl;
5643 struct bp_location *loc;
5644 /* First item of allocated bpstat's. */
5645 bpstat bs_head = NULL, *bs_link = &bs_head;
5646 /* Pointer to the last thing in the chain currently. */
5647 bpstat bs;
5648 int ix;
5649 int need_remove_insert;
5650 int removed_any;
5651
5652 /* First, build the bpstat chain with locations that explain a
5653 target stop, while being careful to not set the target running,
5654 as that may invalidate locations (in particular watchpoint
5655 locations are recreated). Resuming will happen here with
5656 breakpoint conditions or watchpoint expressions that include
5657 inferior function calls. */
5658
5659 ALL_BREAKPOINTS (b)
5660 {
5661 if (!breakpoint_enabled (b))
5662 continue;
5663
5664 for (bl = b->loc; bl != NULL; bl = bl->next)
5665 {
5666 /* For hardware watchpoints, we look only at the first
5667 location. The watchpoint_check function will work on the
5668 entire expression, not the individual locations. For
5669 read watchpoints, the watchpoints_triggered function has
5670 checked all locations already. */
5671 if (b->type == bp_hardware_watchpoint && bl != b->loc)
5672 break;
5673
5674 if (!bl->enabled || bl->shlib_disabled)
5675 continue;
5676
5677 if (!bpstat_check_location (bl, aspace, bp_addr, ws))
5678 continue;
5679
5680 /* Come here if it's a watchpoint, or if the break address
5681 matches. */
5682
5683 bs = bpstat_alloc (bl, &bs_link); /* Alloc a bpstat to
5684 explain stop. */
5685
5686 /* Assume we stop. Should we find a watchpoint that is not
5687 actually triggered, or if the condition of the breakpoint
5688 evaluates as false, we'll reset 'stop' to 0. */
5689 bs->stop = 1;
5690 bs->print = 1;
5691
5692 /* If this is a scope breakpoint, mark the associated
5693 watchpoint as triggered so that we will handle the
5694 out-of-scope event. We'll get to the watchpoint next
5695 iteration. */
5696 if (b->type == bp_watchpoint_scope && b->related_breakpoint != b)
5697 {
5698 struct watchpoint *w = (struct watchpoint *) b->related_breakpoint;
5699
5700 w->watchpoint_triggered = watch_triggered_yes;
5701 }
5702 }
5703 }
5704
5705 /* Check if a moribund breakpoint explains the stop. */
5706 if (!target_supports_stopped_by_sw_breakpoint ()
5707 || !target_supports_stopped_by_hw_breakpoint ())
5708 {
5709 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
5710 {
5711 if (breakpoint_location_address_match (loc, aspace, bp_addr)
5712 && need_moribund_for_location_type (loc))
5713 {
5714 bs = bpstat_alloc (loc, &bs_link);
5715 /* For hits of moribund locations, we should just proceed. */
5716 bs->stop = 0;
5717 bs->print = 0;
5718 bs->print_it = print_it_noop;
5719 }
5720 }
5721 }
5722
5723 /* A bit of special processing for shlib breakpoints. We need to
5724 process solib loading here, so that the lists of loaded and
5725 unloaded libraries are correct before we handle "catch load" and
5726 "catch unload". */
5727 for (bs = bs_head; bs != NULL; bs = bs->next)
5728 {
5729 if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
5730 {
5731 handle_solib_event ();
5732 break;
5733 }
5734 }
5735
5736 /* Now go through the locations that caused the target to stop, and
5737 check whether we're interested in reporting this stop to higher
5738 layers, or whether we should resume the target transparently. */
5739
5740 removed_any = 0;
5741
5742 for (bs = bs_head; bs != NULL; bs = bs->next)
5743 {
5744 if (!bs->stop)
5745 continue;
5746
5747 b = bs->breakpoint_at;
5748 b->ops->check_status (bs);
5749 if (bs->stop)
5750 {
5751 bpstat_check_breakpoint_conditions (bs, ptid);
5752
5753 if (bs->stop)
5754 {
5755 ++(b->hit_count);
5756 observer_notify_breakpoint_modified (b);
5757
5758 /* We will stop here. */
5759 if (b->disposition == disp_disable)
5760 {
5761 --(b->enable_count);
5762 if (b->enable_count <= 0)
5763 b->enable_state = bp_disabled;
5764 removed_any = 1;
5765 }
5766 if (b->silent)
5767 bs->print = 0;
5768 bs->commands = b->commands;
5769 incref_counted_command_line (bs->commands);
5770 if (command_line_is_silent (bs->commands
5771 ? bs->commands->commands : NULL))
5772 bs->print = 0;
5773
5774 b->ops->after_condition_true (bs);
5775 }
5776
5777 }
5778
5779 /* Print nothing for this entry if we don't stop or don't
5780 print. */
5781 if (!bs->stop || !bs->print)
5782 bs->print_it = print_it_noop;
5783 }
5784
5785 /* If we aren't stopping, the value of some hardware watchpoint may
5786 not have changed, but the intermediate memory locations we are
5787 watching may have. Don't bother if we're stopping; this will get
5788 done later. */
5789 need_remove_insert = 0;
5790 if (! bpstat_causes_stop (bs_head))
5791 for (bs = bs_head; bs != NULL; bs = bs->next)
5792 if (!bs->stop
5793 && bs->breakpoint_at
5794 && is_hardware_watchpoint (bs->breakpoint_at))
5795 {
5796 struct watchpoint *w = (struct watchpoint *) bs->breakpoint_at;
5797
5798 update_watchpoint (w, 0 /* don't reparse. */);
5799 need_remove_insert = 1;
5800 }
5801
5802 if (need_remove_insert)
5803 update_global_location_list (UGLL_MAY_INSERT);
5804 else if (removed_any)
5805 update_global_location_list (UGLL_DONT_INSERT);
5806
5807 return bs_head;
5808 }
5809
5810 static void
5811 handle_jit_event (void)
5812 {
5813 struct frame_info *frame;
5814 struct gdbarch *gdbarch;
5815
5816 if (debug_infrun)
5817 fprintf_unfiltered (gdb_stdlog, "handling bp_jit_event\n");
5818
5819 /* Switch terminal for any messages produced by
5820 breakpoint_re_set. */
5821 target_terminal_ours_for_output ();
5822
5823 frame = get_current_frame ();
5824 gdbarch = get_frame_arch (frame);
5825
5826 jit_event_handler (gdbarch);
5827
5828 target_terminal_inferior ();
5829 }
5830
5831 /* Prepare WHAT final decision for infrun. */
5832
5833 /* Decide what infrun needs to do with this bpstat. */
5834
5835 struct bpstat_what
5836 bpstat_what (bpstat bs_head)
5837 {
5838 struct bpstat_what retval;
5839 bpstat bs;
5840
5841 retval.main_action = BPSTAT_WHAT_KEEP_CHECKING;
5842 retval.call_dummy = STOP_NONE;
5843 retval.is_longjmp = 0;
5844
5845 for (bs = bs_head; bs != NULL; bs = bs->next)
5846 {
5847 /* Extract this BS's action. After processing each BS, we check
5848 if its action overrides all we've seem so far. */
5849 enum bpstat_what_main_action this_action = BPSTAT_WHAT_KEEP_CHECKING;
5850 enum bptype bptype;
5851
5852 if (bs->breakpoint_at == NULL)
5853 {
5854 /* I suspect this can happen if it was a momentary
5855 breakpoint which has since been deleted. */
5856 bptype = bp_none;
5857 }
5858 else
5859 bptype = bs->breakpoint_at->type;
5860
5861 switch (bptype)
5862 {
5863 case bp_none:
5864 break;
5865 case bp_breakpoint:
5866 case bp_hardware_breakpoint:
5867 case bp_single_step:
5868 case bp_until:
5869 case bp_finish:
5870 case bp_shlib_event:
5871 if (bs->stop)
5872 {
5873 if (bs->print)
5874 this_action = BPSTAT_WHAT_STOP_NOISY;
5875 else
5876 this_action = BPSTAT_WHAT_STOP_SILENT;
5877 }
5878 else
5879 this_action = BPSTAT_WHAT_SINGLE;
5880 break;
5881 case bp_watchpoint:
5882 case bp_hardware_watchpoint:
5883 case bp_read_watchpoint:
5884 case bp_access_watchpoint:
5885 if (bs->stop)
5886 {
5887 if (bs->print)
5888 this_action = BPSTAT_WHAT_STOP_NOISY;
5889 else
5890 this_action = BPSTAT_WHAT_STOP_SILENT;
5891 }
5892 else
5893 {
5894 /* There was a watchpoint, but we're not stopping.
5895 This requires no further action. */
5896 }
5897 break;
5898 case bp_longjmp:
5899 case bp_longjmp_call_dummy:
5900 case bp_exception:
5901 if (bs->stop)
5902 {
5903 this_action = BPSTAT_WHAT_SET_LONGJMP_RESUME;
5904 retval.is_longjmp = bptype != bp_exception;
5905 }
5906 else
5907 this_action = BPSTAT_WHAT_SINGLE;
5908 break;
5909 case bp_longjmp_resume:
5910 case bp_exception_resume:
5911 if (bs->stop)
5912 {
5913 this_action = BPSTAT_WHAT_CLEAR_LONGJMP_RESUME;
5914 retval.is_longjmp = bptype == bp_longjmp_resume;
5915 }
5916 else
5917 this_action = BPSTAT_WHAT_SINGLE;
5918 break;
5919 case bp_step_resume:
5920 if (bs->stop)
5921 this_action = BPSTAT_WHAT_STEP_RESUME;
5922 else
5923 {
5924 /* It is for the wrong frame. */
5925 this_action = BPSTAT_WHAT_SINGLE;
5926 }
5927 break;
5928 case bp_hp_step_resume:
5929 if (bs->stop)
5930 this_action = BPSTAT_WHAT_HP_STEP_RESUME;
5931 else
5932 {
5933 /* It is for the wrong frame. */
5934 this_action = BPSTAT_WHAT_SINGLE;
5935 }
5936 break;
5937 case bp_watchpoint_scope:
5938 case bp_thread_event:
5939 case bp_overlay_event:
5940 case bp_longjmp_master:
5941 case bp_std_terminate_master:
5942 case bp_exception_master:
5943 this_action = BPSTAT_WHAT_SINGLE;
5944 break;
5945 case bp_catchpoint:
5946 if (bs->stop)
5947 {
5948 if (bs->print)
5949 this_action = BPSTAT_WHAT_STOP_NOISY;
5950 else
5951 this_action = BPSTAT_WHAT_STOP_SILENT;
5952 }
5953 else
5954 {
5955 /* There was a catchpoint, but we're not stopping.
5956 This requires no further action. */
5957 }
5958 break;
5959 case bp_jit_event:
5960 this_action = BPSTAT_WHAT_SINGLE;
5961 break;
5962 case bp_call_dummy:
5963 /* Make sure the action is stop (silent or noisy),
5964 so infrun.c pops the dummy frame. */
5965 retval.call_dummy = STOP_STACK_DUMMY;
5966 this_action = BPSTAT_WHAT_STOP_SILENT;
5967 break;
5968 case bp_std_terminate:
5969 /* Make sure the action is stop (silent or noisy),
5970 so infrun.c pops the dummy frame. */
5971 retval.call_dummy = STOP_STD_TERMINATE;
5972 this_action = BPSTAT_WHAT_STOP_SILENT;
5973 break;
5974 case bp_tracepoint:
5975 case bp_fast_tracepoint:
5976 case bp_static_tracepoint:
5977 /* Tracepoint hits should not be reported back to GDB, and
5978 if one got through somehow, it should have been filtered
5979 out already. */
5980 internal_error (__FILE__, __LINE__,
5981 _("bpstat_what: tracepoint encountered"));
5982 break;
5983 case bp_gnu_ifunc_resolver:
5984 /* Step over it (and insert bp_gnu_ifunc_resolver_return). */
5985 this_action = BPSTAT_WHAT_SINGLE;
5986 break;
5987 case bp_gnu_ifunc_resolver_return:
5988 /* The breakpoint will be removed, execution will restart from the
5989 PC of the former breakpoint. */
5990 this_action = BPSTAT_WHAT_KEEP_CHECKING;
5991 break;
5992
5993 case bp_dprintf:
5994 if (bs->stop)
5995 this_action = BPSTAT_WHAT_STOP_SILENT;
5996 else
5997 this_action = BPSTAT_WHAT_SINGLE;
5998 break;
5999
6000 default:
6001 internal_error (__FILE__, __LINE__,
6002 _("bpstat_what: unhandled bptype %d"), (int) bptype);
6003 }
6004
6005 retval.main_action = max (retval.main_action, this_action);
6006 }
6007
6008 return retval;
6009 }
6010
6011 void
6012 bpstat_run_callbacks (bpstat bs_head)
6013 {
6014 bpstat bs;
6015
6016 for (bs = bs_head; bs != NULL; bs = bs->next)
6017 {
6018 struct breakpoint *b = bs->breakpoint_at;
6019
6020 if (b == NULL)
6021 continue;
6022 switch (b->type)
6023 {
6024 case bp_jit_event:
6025 handle_jit_event ();
6026 break;
6027 case bp_gnu_ifunc_resolver:
6028 gnu_ifunc_resolver_stop (b);
6029 break;
6030 case bp_gnu_ifunc_resolver_return:
6031 gnu_ifunc_resolver_return_stop (b);
6032 break;
6033 }
6034 }
6035 }
6036
6037 /* Nonzero if we should step constantly (e.g. watchpoints on machines
6038 without hardware support). This isn't related to a specific bpstat,
6039 just to things like whether watchpoints are set. */
6040
6041 int
6042 bpstat_should_step (void)
6043 {
6044 struct breakpoint *b;
6045
6046 ALL_BREAKPOINTS (b)
6047 if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
6048 return 1;
6049 return 0;
6050 }
6051
6052 int
6053 bpstat_causes_stop (bpstat bs)
6054 {
6055 for (; bs != NULL; bs = bs->next)
6056 if (bs->stop)
6057 return 1;
6058
6059 return 0;
6060 }
6061
6062 \f
6063
6064 /* Compute a string of spaces suitable to indent the next line
6065 so it starts at the position corresponding to the table column
6066 named COL_NAME in the currently active table of UIOUT. */
6067
6068 static char *
6069 wrap_indent_at_field (struct ui_out *uiout, const char *col_name)
6070 {
6071 static char wrap_indent[80];
6072 int i, total_width, width, align;
6073 char *text;
6074
6075 total_width = 0;
6076 for (i = 1; ui_out_query_field (uiout, i, &width, &align, &text); i++)
6077 {
6078 if (strcmp (text, col_name) == 0)
6079 {
6080 gdb_assert (total_width < sizeof wrap_indent);
6081 memset (wrap_indent, ' ', total_width);
6082 wrap_indent[total_width] = 0;
6083
6084 return wrap_indent;
6085 }
6086
6087 total_width += width + 1;
6088 }
6089
6090 return NULL;
6091 }
6092
6093 /* Determine if the locations of this breakpoint will have their conditions
6094 evaluated by the target, host or a mix of both. Returns the following:
6095
6096 "host": Host evals condition.
6097 "host or target": Host or Target evals condition.
6098 "target": Target evals condition.
6099 */
6100
6101 static const char *
6102 bp_condition_evaluator (struct breakpoint *b)
6103 {
6104 struct bp_location *bl;
6105 char host_evals = 0;
6106 char target_evals = 0;
6107
6108 if (!b)
6109 return NULL;
6110
6111 if (!is_breakpoint (b))
6112 return NULL;
6113
6114 if (gdb_evaluates_breakpoint_condition_p ()
6115 || !target_supports_evaluation_of_breakpoint_conditions ())
6116 return condition_evaluation_host;
6117
6118 for (bl = b->loc; bl; bl = bl->next)
6119 {
6120 if (bl->cond_bytecode)
6121 target_evals++;
6122 else
6123 host_evals++;
6124 }
6125
6126 if (host_evals && target_evals)
6127 return condition_evaluation_both;
6128 else if (target_evals)
6129 return condition_evaluation_target;
6130 else
6131 return condition_evaluation_host;
6132 }
6133
6134 /* Determine the breakpoint location's condition evaluator. This is
6135 similar to bp_condition_evaluator, but for locations. */
6136
6137 static const char *
6138 bp_location_condition_evaluator (struct bp_location *bl)
6139 {
6140 if (bl && !is_breakpoint (bl->owner))
6141 return NULL;
6142
6143 if (gdb_evaluates_breakpoint_condition_p ()
6144 || !target_supports_evaluation_of_breakpoint_conditions ())
6145 return condition_evaluation_host;
6146
6147 if (bl && bl->cond_bytecode)
6148 return condition_evaluation_target;
6149 else
6150 return condition_evaluation_host;
6151 }
6152
6153 /* Print the LOC location out of the list of B->LOC locations. */
6154
6155 static void
6156 print_breakpoint_location (struct breakpoint *b,
6157 struct bp_location *loc)
6158 {
6159 struct ui_out *uiout = current_uiout;
6160 struct cleanup *old_chain = save_current_program_space ();
6161
6162 if (loc != NULL && loc->shlib_disabled)
6163 loc = NULL;
6164
6165 if (loc != NULL)
6166 set_current_program_space (loc->pspace);
6167
6168 if (b->display_canonical)
6169 ui_out_field_string (uiout, "what",
6170 event_location_to_string (b->location));
6171 else if (loc && loc->symtab)
6172 {
6173 struct symbol *sym
6174 = find_pc_sect_function (loc->address, loc->section);
6175 if (sym)
6176 {
6177 ui_out_text (uiout, "in ");
6178 ui_out_field_string (uiout, "func",
6179 SYMBOL_PRINT_NAME (sym));
6180 ui_out_text (uiout, " ");
6181 ui_out_wrap_hint (uiout, wrap_indent_at_field (uiout, "what"));
6182 ui_out_text (uiout, "at ");
6183 }
6184 ui_out_field_string (uiout, "file",
6185 symtab_to_filename_for_display (loc->symtab));
6186 ui_out_text (uiout, ":");
6187
6188 if (ui_out_is_mi_like_p (uiout))
6189 ui_out_field_string (uiout, "fullname",
6190 symtab_to_fullname (loc->symtab));
6191
6192 ui_out_field_int (uiout, "line", loc->line_number);
6193 }
6194 else if (loc)
6195 {
6196 struct ui_file *stb = mem_fileopen ();
6197 struct cleanup *stb_chain = make_cleanup_ui_file_delete (stb);
6198
6199 print_address_symbolic (loc->gdbarch, loc->address, stb,
6200 demangle, "");
6201 ui_out_field_stream (uiout, "at", stb);
6202
6203 do_cleanups (stb_chain);
6204 }
6205 else
6206 {
6207 ui_out_field_string (uiout, "pending",
6208 event_location_to_string (b->location));
6209 /* If extra_string is available, it could be holding a condition
6210 or dprintf arguments. In either case, make sure it is printed,
6211 too, but only for non-MI streams. */
6212 if (!ui_out_is_mi_like_p (uiout) && b->extra_string != NULL)
6213 {
6214 if (b->type == bp_dprintf)
6215 ui_out_text (uiout, ",");
6216 else
6217 ui_out_text (uiout, " ");
6218 ui_out_text (uiout, b->extra_string);
6219 }
6220 }
6221
6222 if (loc && is_breakpoint (b)
6223 && breakpoint_condition_evaluation_mode () == condition_evaluation_target
6224 && bp_condition_evaluator (b) == condition_evaluation_both)
6225 {
6226 ui_out_text (uiout, " (");
6227 ui_out_field_string (uiout, "evaluated-by",
6228 bp_location_condition_evaluator (loc));
6229 ui_out_text (uiout, ")");
6230 }
6231
6232 do_cleanups (old_chain);
6233 }
6234
6235 static const char *
6236 bptype_string (enum bptype type)
6237 {
6238 struct ep_type_description
6239 {
6240 enum bptype type;
6241 char *description;
6242 };
6243 static struct ep_type_description bptypes[] =
6244 {
6245 {bp_none, "?deleted?"},
6246 {bp_breakpoint, "breakpoint"},
6247 {bp_hardware_breakpoint, "hw breakpoint"},
6248 {bp_single_step, "sw single-step"},
6249 {bp_until, "until"},
6250 {bp_finish, "finish"},
6251 {bp_watchpoint, "watchpoint"},
6252 {bp_hardware_watchpoint, "hw watchpoint"},
6253 {bp_read_watchpoint, "read watchpoint"},
6254 {bp_access_watchpoint, "acc watchpoint"},
6255 {bp_longjmp, "longjmp"},
6256 {bp_longjmp_resume, "longjmp resume"},
6257 {bp_longjmp_call_dummy, "longjmp for call dummy"},
6258 {bp_exception, "exception"},
6259 {bp_exception_resume, "exception resume"},
6260 {bp_step_resume, "step resume"},
6261 {bp_hp_step_resume, "high-priority step resume"},
6262 {bp_watchpoint_scope, "watchpoint scope"},
6263 {bp_call_dummy, "call dummy"},
6264 {bp_std_terminate, "std::terminate"},
6265 {bp_shlib_event, "shlib events"},
6266 {bp_thread_event, "thread events"},
6267 {bp_overlay_event, "overlay events"},
6268 {bp_longjmp_master, "longjmp master"},
6269 {bp_std_terminate_master, "std::terminate master"},
6270 {bp_exception_master, "exception master"},
6271 {bp_catchpoint, "catchpoint"},
6272 {bp_tracepoint, "tracepoint"},
6273 {bp_fast_tracepoint, "fast tracepoint"},
6274 {bp_static_tracepoint, "static tracepoint"},
6275 {bp_dprintf, "dprintf"},
6276 {bp_jit_event, "jit events"},
6277 {bp_gnu_ifunc_resolver, "STT_GNU_IFUNC resolver"},
6278 {bp_gnu_ifunc_resolver_return, "STT_GNU_IFUNC resolver return"},
6279 };
6280
6281 if (((int) type >= (sizeof (bptypes) / sizeof (bptypes[0])))
6282 || ((int) type != bptypes[(int) type].type))
6283 internal_error (__FILE__, __LINE__,
6284 _("bptypes table does not describe type #%d."),
6285 (int) type);
6286
6287 return bptypes[(int) type].description;
6288 }
6289
6290 /* For MI, output a field named 'thread-groups' with a list as the value.
6291 For CLI, prefix the list with the string 'inf'. */
6292
6293 static void
6294 output_thread_groups (struct ui_out *uiout,
6295 const char *field_name,
6296 VEC(int) *inf_num,
6297 int mi_only)
6298 {
6299 struct cleanup *back_to;
6300 int is_mi = ui_out_is_mi_like_p (uiout);
6301 int inf;
6302 int i;
6303
6304 /* For backward compatibility, don't display inferiors in CLI unless
6305 there are several. Always display them for MI. */
6306 if (!is_mi && mi_only)
6307 return;
6308
6309 back_to = make_cleanup_ui_out_list_begin_end (uiout, field_name);
6310
6311 for (i = 0; VEC_iterate (int, inf_num, i, inf); ++i)
6312 {
6313 if (is_mi)
6314 {
6315 char mi_group[10];
6316
6317 xsnprintf (mi_group, sizeof (mi_group), "i%d", inf);
6318 ui_out_field_string (uiout, NULL, mi_group);
6319 }
6320 else
6321 {
6322 if (i == 0)
6323 ui_out_text (uiout, " inf ");
6324 else
6325 ui_out_text (uiout, ", ");
6326
6327 ui_out_text (uiout, plongest (inf));
6328 }
6329 }
6330
6331 do_cleanups (back_to);
6332 }
6333
6334 /* Print B to gdb_stdout. */
6335
6336 static void
6337 print_one_breakpoint_location (struct breakpoint *b,
6338 struct bp_location *loc,
6339 int loc_number,
6340 struct bp_location **last_loc,
6341 int allflag)
6342 {
6343 struct command_line *l;
6344 static char bpenables[] = "nynny";
6345
6346 struct ui_out *uiout = current_uiout;
6347 int header_of_multiple = 0;
6348 int part_of_multiple = (loc != NULL);
6349 struct value_print_options opts;
6350
6351 get_user_print_options (&opts);
6352
6353 gdb_assert (!loc || loc_number != 0);
6354 /* See comment in print_one_breakpoint concerning treatment of
6355 breakpoints with single disabled location. */
6356 if (loc == NULL
6357 && (b->loc != NULL
6358 && (b->loc->next != NULL || !b->loc->enabled)))
6359 header_of_multiple = 1;
6360 if (loc == NULL)
6361 loc = b->loc;
6362
6363 annotate_record ();
6364
6365 /* 1 */
6366 annotate_field (0);
6367 if (part_of_multiple)
6368 {
6369 char *formatted;
6370 formatted = xstrprintf ("%d.%d", b->number, loc_number);
6371 ui_out_field_string (uiout, "number", formatted);
6372 xfree (formatted);
6373 }
6374 else
6375 {
6376 ui_out_field_int (uiout, "number", b->number);
6377 }
6378
6379 /* 2 */
6380 annotate_field (1);
6381 if (part_of_multiple)
6382 ui_out_field_skip (uiout, "type");
6383 else
6384 ui_out_field_string (uiout, "type", bptype_string (b->type));
6385
6386 /* 3 */
6387 annotate_field (2);
6388 if (part_of_multiple)
6389 ui_out_field_skip (uiout, "disp");
6390 else
6391 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
6392
6393
6394 /* 4 */
6395 annotate_field (3);
6396 if (part_of_multiple)
6397 ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n");
6398 else
6399 ui_out_field_fmt (uiout, "enabled", "%c",
6400 bpenables[(int) b->enable_state]);
6401 ui_out_spaces (uiout, 2);
6402
6403
6404 /* 5 and 6 */
6405 if (b->ops != NULL && b->ops->print_one != NULL)
6406 {
6407 /* Although the print_one can possibly print all locations,
6408 calling it here is not likely to get any nice result. So,
6409 make sure there's just one location. */
6410 gdb_assert (b->loc == NULL || b->loc->next == NULL);
6411 b->ops->print_one (b, last_loc);
6412 }
6413 else
6414 switch (b->type)
6415 {
6416 case bp_none:
6417 internal_error (__FILE__, __LINE__,
6418 _("print_one_breakpoint: bp_none encountered\n"));
6419 break;
6420
6421 case bp_watchpoint:
6422 case bp_hardware_watchpoint:
6423 case bp_read_watchpoint:
6424 case bp_access_watchpoint:
6425 {
6426 struct watchpoint *w = (struct watchpoint *) b;
6427
6428 /* Field 4, the address, is omitted (which makes the columns
6429 not line up too nicely with the headers, but the effect
6430 is relatively readable). */
6431 if (opts.addressprint)
6432 ui_out_field_skip (uiout, "addr");
6433 annotate_field (5);
6434 ui_out_field_string (uiout, "what", w->exp_string);
6435 }
6436 break;
6437
6438 case bp_breakpoint:
6439 case bp_hardware_breakpoint:
6440 case bp_single_step:
6441 case bp_until:
6442 case bp_finish:
6443 case bp_longjmp:
6444 case bp_longjmp_resume:
6445 case bp_longjmp_call_dummy:
6446 case bp_exception:
6447 case bp_exception_resume:
6448 case bp_step_resume:
6449 case bp_hp_step_resume:
6450 case bp_watchpoint_scope:
6451 case bp_call_dummy:
6452 case bp_std_terminate:
6453 case bp_shlib_event:
6454 case bp_thread_event:
6455 case bp_overlay_event:
6456 case bp_longjmp_master:
6457 case bp_std_terminate_master:
6458 case bp_exception_master:
6459 case bp_tracepoint:
6460 case bp_fast_tracepoint:
6461 case bp_static_tracepoint:
6462 case bp_dprintf:
6463 case bp_jit_event:
6464 case bp_gnu_ifunc_resolver:
6465 case bp_gnu_ifunc_resolver_return:
6466 if (opts.addressprint)
6467 {
6468 annotate_field (4);
6469 if (header_of_multiple)
6470 ui_out_field_string (uiout, "addr", "<MULTIPLE>");
6471 else if (b->loc == NULL || loc->shlib_disabled)
6472 ui_out_field_string (uiout, "addr", "<PENDING>");
6473 else
6474 ui_out_field_core_addr (uiout, "addr",
6475 loc->gdbarch, loc->address);
6476 }
6477 annotate_field (5);
6478 if (!header_of_multiple)
6479 print_breakpoint_location (b, loc);
6480 if (b->loc)
6481 *last_loc = b->loc;
6482 break;
6483 }
6484
6485
6486 if (loc != NULL && !header_of_multiple)
6487 {
6488 struct inferior *inf;
6489 VEC(int) *inf_num = NULL;
6490 int mi_only = 1;
6491
6492 ALL_INFERIORS (inf)
6493 {
6494 if (inf->pspace == loc->pspace)
6495 VEC_safe_push (int, inf_num, inf->num);
6496 }
6497
6498 /* For backward compatibility, don't display inferiors in CLI unless
6499 there are several. Always display for MI. */
6500 if (allflag
6501 || (!gdbarch_has_global_breakpoints (target_gdbarch ())
6502 && (number_of_program_spaces () > 1
6503 || number_of_inferiors () > 1)
6504 /* LOC is for existing B, it cannot be in
6505 moribund_locations and thus having NULL OWNER. */
6506 && loc->owner->type != bp_catchpoint))
6507 mi_only = 0;
6508 output_thread_groups (uiout, "thread-groups", inf_num, mi_only);
6509 VEC_free (int, inf_num);
6510 }
6511
6512 if (!part_of_multiple)
6513 {
6514 if (b->thread != -1)
6515 {
6516 /* FIXME: This seems to be redundant and lost here; see the
6517 "stop only in" line a little further down. */
6518 ui_out_text (uiout, " thread ");
6519 ui_out_field_int (uiout, "thread", b->thread);
6520 }
6521 else if (b->task != 0)
6522 {
6523 ui_out_text (uiout, " task ");
6524 ui_out_field_int (uiout, "task", b->task);
6525 }
6526 }
6527
6528 ui_out_text (uiout, "\n");
6529
6530 if (!part_of_multiple)
6531 b->ops->print_one_detail (b, uiout);
6532
6533 if (part_of_multiple && frame_id_p (b->frame_id))
6534 {
6535 annotate_field (6);
6536 ui_out_text (uiout, "\tstop only in stack frame at ");
6537 /* FIXME: cagney/2002-12-01: Shouldn't be poking around inside
6538 the frame ID. */
6539 ui_out_field_core_addr (uiout, "frame",
6540 b->gdbarch, b->frame_id.stack_addr);
6541 ui_out_text (uiout, "\n");
6542 }
6543
6544 if (!part_of_multiple && b->cond_string)
6545 {
6546 annotate_field (7);
6547 if (is_tracepoint (b))
6548 ui_out_text (uiout, "\ttrace only if ");
6549 else
6550 ui_out_text (uiout, "\tstop only if ");
6551 ui_out_field_string (uiout, "cond", b->cond_string);
6552
6553 /* Print whether the target is doing the breakpoint's condition
6554 evaluation. If GDB is doing the evaluation, don't print anything. */
6555 if (is_breakpoint (b)
6556 && breakpoint_condition_evaluation_mode ()
6557 == condition_evaluation_target)
6558 {
6559 ui_out_text (uiout, " (");
6560 ui_out_field_string (uiout, "evaluated-by",
6561 bp_condition_evaluator (b));
6562 ui_out_text (uiout, " evals)");
6563 }
6564 ui_out_text (uiout, "\n");
6565 }
6566
6567 if (!part_of_multiple && b->thread != -1)
6568 {
6569 /* FIXME should make an annotation for this. */
6570 ui_out_text (uiout, "\tstop only in thread ");
6571 if (ui_out_is_mi_like_p (uiout))
6572 ui_out_field_int (uiout, "thread", b->thread);
6573 else
6574 {
6575 struct thread_info *thr = find_thread_global_id (b->thread);
6576
6577 ui_out_field_string (uiout, "thread", print_thread_id (thr));
6578 }
6579 ui_out_text (uiout, "\n");
6580 }
6581
6582 if (!part_of_multiple)
6583 {
6584 if (b->hit_count)
6585 {
6586 /* FIXME should make an annotation for this. */
6587 if (is_catchpoint (b))
6588 ui_out_text (uiout, "\tcatchpoint");
6589 else if (is_tracepoint (b))
6590 ui_out_text (uiout, "\ttracepoint");
6591 else
6592 ui_out_text (uiout, "\tbreakpoint");
6593 ui_out_text (uiout, " already hit ");
6594 ui_out_field_int (uiout, "times", b->hit_count);
6595 if (b->hit_count == 1)
6596 ui_out_text (uiout, " time\n");
6597 else
6598 ui_out_text (uiout, " times\n");
6599 }
6600 else
6601 {
6602 /* Output the count also if it is zero, but only if this is mi. */
6603 if (ui_out_is_mi_like_p (uiout))
6604 ui_out_field_int (uiout, "times", b->hit_count);
6605 }
6606 }
6607
6608 if (!part_of_multiple && b->ignore_count)
6609 {
6610 annotate_field (8);
6611 ui_out_text (uiout, "\tignore next ");
6612 ui_out_field_int (uiout, "ignore", b->ignore_count);
6613 ui_out_text (uiout, " hits\n");
6614 }
6615
6616 /* Note that an enable count of 1 corresponds to "enable once"
6617 behavior, which is reported by the combination of enablement and
6618 disposition, so we don't need to mention it here. */
6619 if (!part_of_multiple && b->enable_count > 1)
6620 {
6621 annotate_field (8);
6622 ui_out_text (uiout, "\tdisable after ");
6623 /* Tweak the wording to clarify that ignore and enable counts
6624 are distinct, and have additive effect. */
6625 if (b->ignore_count)
6626 ui_out_text (uiout, "additional ");
6627 else
6628 ui_out_text (uiout, "next ");
6629 ui_out_field_int (uiout, "enable", b->enable_count);
6630 ui_out_text (uiout, " hits\n");
6631 }
6632
6633 if (!part_of_multiple && is_tracepoint (b))
6634 {
6635 struct tracepoint *tp = (struct tracepoint *) b;
6636
6637 if (tp->traceframe_usage)
6638 {
6639 ui_out_text (uiout, "\ttrace buffer usage ");
6640 ui_out_field_int (uiout, "traceframe-usage", tp->traceframe_usage);
6641 ui_out_text (uiout, " bytes\n");
6642 }
6643 }
6644
6645 l = b->commands ? b->commands->commands : NULL;
6646 if (!part_of_multiple && l)
6647 {
6648 struct cleanup *script_chain;
6649
6650 annotate_field (9);
6651 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
6652 print_command_lines (uiout, l, 4);
6653 do_cleanups (script_chain);
6654 }
6655
6656 if (is_tracepoint (b))
6657 {
6658 struct tracepoint *t = (struct tracepoint *) b;
6659
6660 if (!part_of_multiple && t->pass_count)
6661 {
6662 annotate_field (10);
6663 ui_out_text (uiout, "\tpass count ");
6664 ui_out_field_int (uiout, "pass", t->pass_count);
6665 ui_out_text (uiout, " \n");
6666 }
6667
6668 /* Don't display it when tracepoint or tracepoint location is
6669 pending. */
6670 if (!header_of_multiple && loc != NULL && !loc->shlib_disabled)
6671 {
6672 annotate_field (11);
6673
6674 if (ui_out_is_mi_like_p (uiout))
6675 ui_out_field_string (uiout, "installed",
6676 loc->inserted ? "y" : "n");
6677 else
6678 {
6679 if (loc->inserted)
6680 ui_out_text (uiout, "\t");
6681 else
6682 ui_out_text (uiout, "\tnot ");
6683 ui_out_text (uiout, "installed on target\n");
6684 }
6685 }
6686 }
6687
6688 if (ui_out_is_mi_like_p (uiout) && !part_of_multiple)
6689 {
6690 if (is_watchpoint (b))
6691 {
6692 struct watchpoint *w = (struct watchpoint *) b;
6693
6694 ui_out_field_string (uiout, "original-location", w->exp_string);
6695 }
6696 else if (b->location != NULL
6697 && event_location_to_string (b->location) != NULL)
6698 ui_out_field_string (uiout, "original-location",
6699 event_location_to_string (b->location));
6700 }
6701 }
6702
6703 static void
6704 print_one_breakpoint (struct breakpoint *b,
6705 struct bp_location **last_loc,
6706 int allflag)
6707 {
6708 struct cleanup *bkpt_chain;
6709 struct ui_out *uiout = current_uiout;
6710
6711 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
6712
6713 print_one_breakpoint_location (b, NULL, 0, last_loc, allflag);
6714 do_cleanups (bkpt_chain);
6715
6716 /* If this breakpoint has custom print function,
6717 it's already printed. Otherwise, print individual
6718 locations, if any. */
6719 if (b->ops == NULL || b->ops->print_one == NULL)
6720 {
6721 /* If breakpoint has a single location that is disabled, we
6722 print it as if it had several locations, since otherwise it's
6723 hard to represent "breakpoint enabled, location disabled"
6724 situation.
6725
6726 Note that while hardware watchpoints have several locations
6727 internally, that's not a property exposed to user. */
6728 if (b->loc
6729 && !is_hardware_watchpoint (b)
6730 && (b->loc->next || !b->loc->enabled))
6731 {
6732 struct bp_location *loc;
6733 int n = 1;
6734
6735 for (loc = b->loc; loc; loc = loc->next, ++n)
6736 {
6737 struct cleanup *inner2 =
6738 make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
6739 print_one_breakpoint_location (b, loc, n, last_loc, allflag);
6740 do_cleanups (inner2);
6741 }
6742 }
6743 }
6744 }
6745
6746 static int
6747 breakpoint_address_bits (struct breakpoint *b)
6748 {
6749 int print_address_bits = 0;
6750 struct bp_location *loc;
6751
6752 /* Software watchpoints that aren't watching memory don't have an
6753 address to print. */
6754 if (is_no_memory_software_watchpoint (b))
6755 return 0;
6756
6757 for (loc = b->loc; loc; loc = loc->next)
6758 {
6759 int addr_bit;
6760
6761 addr_bit = gdbarch_addr_bit (loc->gdbarch);
6762 if (addr_bit > print_address_bits)
6763 print_address_bits = addr_bit;
6764 }
6765
6766 return print_address_bits;
6767 }
6768
6769 struct captured_breakpoint_query_args
6770 {
6771 int bnum;
6772 };
6773
6774 static int
6775 do_captured_breakpoint_query (struct ui_out *uiout, void *data)
6776 {
6777 struct captured_breakpoint_query_args *args
6778 = (struct captured_breakpoint_query_args *) data;
6779 struct breakpoint *b;
6780 struct bp_location *dummy_loc = NULL;
6781
6782 ALL_BREAKPOINTS (b)
6783 {
6784 if (args->bnum == b->number)
6785 {
6786 print_one_breakpoint (b, &dummy_loc, 0);
6787 return GDB_RC_OK;
6788 }
6789 }
6790 return GDB_RC_NONE;
6791 }
6792
6793 enum gdb_rc
6794 gdb_breakpoint_query (struct ui_out *uiout, int bnum,
6795 char **error_message)
6796 {
6797 struct captured_breakpoint_query_args args;
6798
6799 args.bnum = bnum;
6800 /* For the moment we don't trust print_one_breakpoint() to not throw
6801 an error. */
6802 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
6803 error_message, RETURN_MASK_ALL) < 0)
6804 return GDB_RC_FAIL;
6805 else
6806 return GDB_RC_OK;
6807 }
6808
6809 /* Return true if this breakpoint was set by the user, false if it is
6810 internal or momentary. */
6811
6812 int
6813 user_breakpoint_p (struct breakpoint *b)
6814 {
6815 return b->number > 0;
6816 }
6817
6818 /* See breakpoint.h. */
6819
6820 int
6821 pending_breakpoint_p (struct breakpoint *b)
6822 {
6823 return b->loc == NULL;
6824 }
6825
6826 /* Print information on user settable breakpoint (watchpoint, etc)
6827 number BNUM. If BNUM is -1 print all user-settable breakpoints.
6828 If ALLFLAG is non-zero, include non-user-settable breakpoints. If
6829 FILTER is non-NULL, call it on each breakpoint and only include the
6830 ones for which it returns non-zero. Return the total number of
6831 breakpoints listed. */
6832
6833 static int
6834 breakpoint_1 (char *args, int allflag,
6835 int (*filter) (const struct breakpoint *))
6836 {
6837 struct breakpoint *b;
6838 struct bp_location *last_loc = NULL;
6839 int nr_printable_breakpoints;
6840 struct cleanup *bkpttbl_chain;
6841 struct value_print_options opts;
6842 int print_address_bits = 0;
6843 int print_type_col_width = 14;
6844 struct ui_out *uiout = current_uiout;
6845
6846 get_user_print_options (&opts);
6847
6848 /* Compute the number of rows in the table, as well as the size
6849 required for address fields. */
6850 nr_printable_breakpoints = 0;
6851 ALL_BREAKPOINTS (b)
6852 {
6853 /* If we have a filter, only list the breakpoints it accepts. */
6854 if (filter && !filter (b))
6855 continue;
6856
6857 /* If we have an "args" string, it is a list of breakpoints to
6858 accept. Skip the others. */
6859 if (args != NULL && *args != '\0')
6860 {
6861 if (allflag && parse_and_eval_long (args) != b->number)
6862 continue;
6863 if (!allflag && !number_is_in_list (args, b->number))
6864 continue;
6865 }
6866
6867 if (allflag || user_breakpoint_p (b))
6868 {
6869 int addr_bit, type_len;
6870
6871 addr_bit = breakpoint_address_bits (b);
6872 if (addr_bit > print_address_bits)
6873 print_address_bits = addr_bit;
6874
6875 type_len = strlen (bptype_string (b->type));
6876 if (type_len > print_type_col_width)
6877 print_type_col_width = type_len;
6878
6879 nr_printable_breakpoints++;
6880 }
6881 }
6882
6883 if (opts.addressprint)
6884 bkpttbl_chain
6885 = make_cleanup_ui_out_table_begin_end (uiout, 6,
6886 nr_printable_breakpoints,
6887 "BreakpointTable");
6888 else
6889 bkpttbl_chain
6890 = make_cleanup_ui_out_table_begin_end (uiout, 5,
6891 nr_printable_breakpoints,
6892 "BreakpointTable");
6893
6894 if (nr_printable_breakpoints > 0)
6895 annotate_breakpoints_headers ();
6896 if (nr_printable_breakpoints > 0)
6897 annotate_field (0);
6898 ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */
6899 if (nr_printable_breakpoints > 0)
6900 annotate_field (1);
6901 ui_out_table_header (uiout, print_type_col_width, ui_left,
6902 "type", "Type"); /* 2 */
6903 if (nr_printable_breakpoints > 0)
6904 annotate_field (2);
6905 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
6906 if (nr_printable_breakpoints > 0)
6907 annotate_field (3);
6908 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
6909 if (opts.addressprint)
6910 {
6911 if (nr_printable_breakpoints > 0)
6912 annotate_field (4);
6913 if (print_address_bits <= 32)
6914 ui_out_table_header (uiout, 10, ui_left,
6915 "addr", "Address"); /* 5 */
6916 else
6917 ui_out_table_header (uiout, 18, ui_left,
6918 "addr", "Address"); /* 5 */
6919 }
6920 if (nr_printable_breakpoints > 0)
6921 annotate_field (5);
6922 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
6923 ui_out_table_body (uiout);
6924 if (nr_printable_breakpoints > 0)
6925 annotate_breakpoints_table ();
6926
6927 ALL_BREAKPOINTS (b)
6928 {
6929 QUIT;
6930 /* If we have a filter, only list the breakpoints it accepts. */
6931 if (filter && !filter (b))
6932 continue;
6933
6934 /* If we have an "args" string, it is a list of breakpoints to
6935 accept. Skip the others. */
6936
6937 if (args != NULL && *args != '\0')
6938 {
6939 if (allflag) /* maintenance info breakpoint */
6940 {
6941 if (parse_and_eval_long (args) != b->number)
6942 continue;
6943 }
6944 else /* all others */
6945 {
6946 if (!number_is_in_list (args, b->number))
6947 continue;
6948 }
6949 }
6950 /* We only print out user settable breakpoints unless the
6951 allflag is set. */
6952 if (allflag || user_breakpoint_p (b))
6953 print_one_breakpoint (b, &last_loc, allflag);
6954 }
6955
6956 do_cleanups (bkpttbl_chain);
6957
6958 if (nr_printable_breakpoints == 0)
6959 {
6960 /* If there's a filter, let the caller decide how to report
6961 empty list. */
6962 if (!filter)
6963 {
6964 if (args == NULL || *args == '\0')
6965 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
6966 else
6967 ui_out_message (uiout, 0,
6968 "No breakpoint or watchpoint matching '%s'.\n",
6969 args);
6970 }
6971 }
6972 else
6973 {
6974 if (last_loc && !server_command)
6975 set_next_address (last_loc->gdbarch, last_loc->address);
6976 }
6977
6978 /* FIXME? Should this be moved up so that it is only called when
6979 there have been breakpoints? */
6980 annotate_breakpoints_table_end ();
6981
6982 return nr_printable_breakpoints;
6983 }
6984
6985 /* Display the value of default-collect in a way that is generally
6986 compatible with the breakpoint list. */
6987
6988 static void
6989 default_collect_info (void)
6990 {
6991 struct ui_out *uiout = current_uiout;
6992
6993 /* If it has no value (which is frequently the case), say nothing; a
6994 message like "No default-collect." gets in user's face when it's
6995 not wanted. */
6996 if (!*default_collect)
6997 return;
6998
6999 /* The following phrase lines up nicely with per-tracepoint collect
7000 actions. */
7001 ui_out_text (uiout, "default collect ");
7002 ui_out_field_string (uiout, "default-collect", default_collect);
7003 ui_out_text (uiout, " \n");
7004 }
7005
7006 static void
7007 breakpoints_info (char *args, int from_tty)
7008 {
7009 breakpoint_1 (args, 0, NULL);
7010
7011 default_collect_info ();
7012 }
7013
7014 static void
7015 watchpoints_info (char *args, int from_tty)
7016 {
7017 int num_printed = breakpoint_1 (args, 0, is_watchpoint);
7018 struct ui_out *uiout = current_uiout;
7019
7020 if (num_printed == 0)
7021 {
7022 if (args == NULL || *args == '\0')
7023 ui_out_message (uiout, 0, "No watchpoints.\n");
7024 else
7025 ui_out_message (uiout, 0, "No watchpoint matching '%s'.\n", args);
7026 }
7027 }
7028
7029 static void
7030 maintenance_info_breakpoints (char *args, int from_tty)
7031 {
7032 breakpoint_1 (args, 1, NULL);
7033
7034 default_collect_info ();
7035 }
7036
7037 static int
7038 breakpoint_has_pc (struct breakpoint *b,
7039 struct program_space *pspace,
7040 CORE_ADDR pc, struct obj_section *section)
7041 {
7042 struct bp_location *bl = b->loc;
7043
7044 for (; bl; bl = bl->next)
7045 {
7046 if (bl->pspace == pspace
7047 && bl->address == pc
7048 && (!overlay_debugging || bl->section == section))
7049 return 1;
7050 }
7051 return 0;
7052 }
7053
7054 /* Print a message describing any user-breakpoints set at PC. This
7055 concerns with logical breakpoints, so we match program spaces, not
7056 address spaces. */
7057
7058 static void
7059 describe_other_breakpoints (struct gdbarch *gdbarch,
7060 struct program_space *pspace, CORE_ADDR pc,
7061 struct obj_section *section, int thread)
7062 {
7063 int others = 0;
7064 struct breakpoint *b;
7065
7066 ALL_BREAKPOINTS (b)
7067 others += (user_breakpoint_p (b)
7068 && breakpoint_has_pc (b, pspace, pc, section));
7069 if (others > 0)
7070 {
7071 if (others == 1)
7072 printf_filtered (_("Note: breakpoint "));
7073 else /* if (others == ???) */
7074 printf_filtered (_("Note: breakpoints "));
7075 ALL_BREAKPOINTS (b)
7076 if (user_breakpoint_p (b) && breakpoint_has_pc (b, pspace, pc, section))
7077 {
7078 others--;
7079 printf_filtered ("%d", b->number);
7080 if (b->thread == -1 && thread != -1)
7081 printf_filtered (" (all threads)");
7082 else if (b->thread != -1)
7083 printf_filtered (" (thread %d)", b->thread);
7084 printf_filtered ("%s%s ",
7085 ((b->enable_state == bp_disabled
7086 || b->enable_state == bp_call_disabled)
7087 ? " (disabled)"
7088 : ""),
7089 (others > 1) ? ","
7090 : ((others == 1) ? " and" : ""));
7091 }
7092 printf_filtered (_("also set at pc "));
7093 fputs_filtered (paddress (gdbarch, pc), gdb_stdout);
7094 printf_filtered (".\n");
7095 }
7096 }
7097 \f
7098
7099 /* Return true iff it is meaningful to use the address member of
7100 BPT locations. For some breakpoint types, the locations' address members
7101 are irrelevant and it makes no sense to attempt to compare them to other
7102 addresses (or use them for any other purpose either).
7103
7104 More specifically, each of the following breakpoint types will
7105 always have a zero valued location address and we don't want to mark
7106 breakpoints of any of these types to be a duplicate of an actual
7107 breakpoint location at address zero:
7108
7109 bp_watchpoint
7110 bp_catchpoint
7111
7112 */
7113
7114 static int
7115 breakpoint_address_is_meaningful (struct breakpoint *bpt)
7116 {
7117 enum bptype type = bpt->type;
7118
7119 return (type != bp_watchpoint && type != bp_catchpoint);
7120 }
7121
7122 /* Assuming LOC1 and LOC2's owners are hardware watchpoints, returns
7123 true if LOC1 and LOC2 represent the same watchpoint location. */
7124
7125 static int
7126 watchpoint_locations_match (struct bp_location *loc1,
7127 struct bp_location *loc2)
7128 {
7129 struct watchpoint *w1 = (struct watchpoint *) loc1->owner;
7130 struct watchpoint *w2 = (struct watchpoint *) loc2->owner;
7131
7132 /* Both of them must exist. */
7133 gdb_assert (w1 != NULL);
7134 gdb_assert (w2 != NULL);
7135
7136 /* If the target can evaluate the condition expression in hardware,
7137 then we we need to insert both watchpoints even if they are at
7138 the same place. Otherwise the watchpoint will only trigger when
7139 the condition of whichever watchpoint was inserted evaluates to
7140 true, not giving a chance for GDB to check the condition of the
7141 other watchpoint. */
7142 if ((w1->cond_exp
7143 && target_can_accel_watchpoint_condition (loc1->address,
7144 loc1->length,
7145 loc1->watchpoint_type,
7146 w1->cond_exp))
7147 || (w2->cond_exp
7148 && target_can_accel_watchpoint_condition (loc2->address,
7149 loc2->length,
7150 loc2->watchpoint_type,
7151 w2->cond_exp)))
7152 return 0;
7153
7154 /* Note that this checks the owner's type, not the location's. In
7155 case the target does not support read watchpoints, but does
7156 support access watchpoints, we'll have bp_read_watchpoint
7157 watchpoints with hw_access locations. Those should be considered
7158 duplicates of hw_read locations. The hw_read locations will
7159 become hw_access locations later. */
7160 return (loc1->owner->type == loc2->owner->type
7161 && loc1->pspace->aspace == loc2->pspace->aspace
7162 && loc1->address == loc2->address
7163 && loc1->length == loc2->length);
7164 }
7165
7166 /* See breakpoint.h. */
7167
7168 int
7169 breakpoint_address_match (struct address_space *aspace1, CORE_ADDR addr1,
7170 struct address_space *aspace2, CORE_ADDR addr2)
7171 {
7172 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
7173 || aspace1 == aspace2)
7174 && addr1 == addr2);
7175 }
7176
7177 /* Returns true if {ASPACE2,ADDR2} falls within the range determined by
7178 {ASPACE1,ADDR1,LEN1}. In most targets, this can only be true if ASPACE1
7179 matches ASPACE2. On targets that have global breakpoints, the address
7180 space doesn't really matter. */
7181
7182 static int
7183 breakpoint_address_match_range (struct address_space *aspace1, CORE_ADDR addr1,
7184 int len1, struct address_space *aspace2,
7185 CORE_ADDR addr2)
7186 {
7187 return ((gdbarch_has_global_breakpoints (target_gdbarch ())
7188 || aspace1 == aspace2)
7189 && addr2 >= addr1 && addr2 < addr1 + len1);
7190 }
7191
7192 /* Returns true if {ASPACE,ADDR} matches the breakpoint BL. BL may be
7193 a ranged breakpoint. In most targets, a match happens only if ASPACE
7194 matches the breakpoint's address space. On targets that have global
7195 breakpoints, the address space doesn't really matter. */
7196
7197 static int
7198 breakpoint_location_address_match (struct bp_location *bl,
7199 struct address_space *aspace,
7200 CORE_ADDR addr)
7201 {
7202 return (breakpoint_address_match (bl->pspace->aspace, bl->address,
7203 aspace, addr)
7204 || (bl->length
7205 && breakpoint_address_match_range (bl->pspace->aspace,
7206 bl->address, bl->length,
7207 aspace, addr)));
7208 }
7209
7210 /* Returns true if the [ADDR,ADDR+LEN) range in ASPACE overlaps
7211 breakpoint BL. BL may be a ranged breakpoint. In most targets, a
7212 match happens only if ASPACE matches the breakpoint's address
7213 space. On targets that have global breakpoints, the address space
7214 doesn't really matter. */
7215
7216 static int
7217 breakpoint_location_address_range_overlap (struct bp_location *bl,
7218 struct address_space *aspace,
7219 CORE_ADDR addr, int len)
7220 {
7221 if (gdbarch_has_global_breakpoints (target_gdbarch ())
7222 || bl->pspace->aspace == aspace)
7223 {
7224 int bl_len = bl->length != 0 ? bl->length : 1;
7225
7226 if (mem_ranges_overlap (addr, len, bl->address, bl_len))
7227 return 1;
7228 }
7229 return 0;
7230 }
7231
7232 /* If LOC1 and LOC2's owners are not tracepoints, returns false directly.
7233 Then, if LOC1 and LOC2 represent the same tracepoint location, returns
7234 true, otherwise returns false. */
7235
7236 static int
7237 tracepoint_locations_match (struct bp_location *loc1,
7238 struct bp_location *loc2)
7239 {
7240 if (is_tracepoint (loc1->owner) && is_tracepoint (loc2->owner))
7241 /* Since tracepoint locations are never duplicated with others', tracepoint
7242 locations at the same address of different tracepoints are regarded as
7243 different locations. */
7244 return (loc1->address == loc2->address && loc1->owner == loc2->owner);
7245 else
7246 return 0;
7247 }
7248
7249 /* Assuming LOC1 and LOC2's types' have meaningful target addresses
7250 (breakpoint_address_is_meaningful), returns true if LOC1 and LOC2
7251 represent the same location. */
7252
7253 static int
7254 breakpoint_locations_match (struct bp_location *loc1,
7255 struct bp_location *loc2)
7256 {
7257 int hw_point1, hw_point2;
7258
7259 /* Both of them must not be in moribund_locations. */
7260 gdb_assert (loc1->owner != NULL);
7261 gdb_assert (loc2->owner != NULL);
7262
7263 hw_point1 = is_hardware_watchpoint (loc1->owner);
7264 hw_point2 = is_hardware_watchpoint (loc2->owner);
7265
7266 if (hw_point1 != hw_point2)
7267 return 0;
7268 else if (hw_point1)
7269 return watchpoint_locations_match (loc1, loc2);
7270 else if (is_tracepoint (loc1->owner) || is_tracepoint (loc2->owner))
7271 return tracepoint_locations_match (loc1, loc2);
7272 else
7273 /* We compare bp_location.length in order to cover ranged breakpoints. */
7274 return (breakpoint_address_match (loc1->pspace->aspace, loc1->address,
7275 loc2->pspace->aspace, loc2->address)
7276 && loc1->length == loc2->length);
7277 }
7278
7279 static void
7280 breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
7281 int bnum, int have_bnum)
7282 {
7283 /* The longest string possibly returned by hex_string_custom
7284 is 50 chars. These must be at least that big for safety. */
7285 char astr1[64];
7286 char astr2[64];
7287
7288 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
7289 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
7290 if (have_bnum)
7291 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
7292 bnum, astr1, astr2);
7293 else
7294 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
7295 }
7296
7297 /* Adjust a breakpoint's address to account for architectural
7298 constraints on breakpoint placement. Return the adjusted address.
7299 Note: Very few targets require this kind of adjustment. For most
7300 targets, this function is simply the identity function. */
7301
7302 static CORE_ADDR
7303 adjust_breakpoint_address (struct gdbarch *gdbarch,
7304 CORE_ADDR bpaddr, enum bptype bptype)
7305 {
7306 if (!gdbarch_adjust_breakpoint_address_p (gdbarch))
7307 {
7308 /* Very few targets need any kind of breakpoint adjustment. */
7309 return bpaddr;
7310 }
7311 else if (bptype == bp_watchpoint
7312 || bptype == bp_hardware_watchpoint
7313 || bptype == bp_read_watchpoint
7314 || bptype == bp_access_watchpoint
7315 || bptype == bp_catchpoint)
7316 {
7317 /* Watchpoints and the various bp_catch_* eventpoints should not
7318 have their addresses modified. */
7319 return bpaddr;
7320 }
7321 else if (bptype == bp_single_step)
7322 {
7323 /* Single-step breakpoints should not have their addresses
7324 modified. If there's any architectural constrain that
7325 applies to this address, then it should have already been
7326 taken into account when the breakpoint was created in the
7327 first place. If we didn't do this, stepping through e.g.,
7328 Thumb-2 IT blocks would break. */
7329 return bpaddr;
7330 }
7331 else
7332 {
7333 CORE_ADDR adjusted_bpaddr;
7334
7335 /* Some targets have architectural constraints on the placement
7336 of breakpoint instructions. Obtain the adjusted address. */
7337 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (gdbarch, bpaddr);
7338
7339 /* An adjusted breakpoint address can significantly alter
7340 a user's expectations. Print a warning if an adjustment
7341 is required. */
7342 if (adjusted_bpaddr != bpaddr)
7343 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
7344
7345 return adjusted_bpaddr;
7346 }
7347 }
7348
7349 void
7350 init_bp_location (struct bp_location *loc, const struct bp_location_ops *ops,
7351 struct breakpoint *owner)
7352 {
7353 memset (loc, 0, sizeof (*loc));
7354
7355 gdb_assert (ops != NULL);
7356
7357 loc->ops = ops;
7358 loc->owner = owner;
7359 loc->cond = NULL;
7360 loc->cond_bytecode = NULL;
7361 loc->shlib_disabled = 0;
7362 loc->enabled = 1;
7363
7364 switch (owner->type)
7365 {
7366 case bp_breakpoint:
7367 case bp_single_step:
7368 case bp_until:
7369 case bp_finish:
7370 case bp_longjmp:
7371 case bp_longjmp_resume:
7372 case bp_longjmp_call_dummy:
7373 case bp_exception:
7374 case bp_exception_resume:
7375 case bp_step_resume:
7376 case bp_hp_step_resume:
7377 case bp_watchpoint_scope:
7378 case bp_call_dummy:
7379 case bp_std_terminate:
7380 case bp_shlib_event:
7381 case bp_thread_event:
7382 case bp_overlay_event:
7383 case bp_jit_event:
7384 case bp_longjmp_master:
7385 case bp_std_terminate_master:
7386 case bp_exception_master:
7387 case bp_gnu_ifunc_resolver:
7388 case bp_gnu_ifunc_resolver_return:
7389 case bp_dprintf:
7390 loc->loc_type = bp_loc_software_breakpoint;
7391 mark_breakpoint_location_modified (loc);
7392 break;
7393 case bp_hardware_breakpoint:
7394 loc->loc_type = bp_loc_hardware_breakpoint;
7395 mark_breakpoint_location_modified (loc);
7396 break;
7397 case bp_hardware_watchpoint:
7398 case bp_read_watchpoint:
7399 case bp_access_watchpoint:
7400 loc->loc_type = bp_loc_hardware_watchpoint;
7401 break;
7402 case bp_watchpoint:
7403 case bp_catchpoint:
7404 case bp_tracepoint:
7405 case bp_fast_tracepoint:
7406 case bp_static_tracepoint:
7407 loc->loc_type = bp_loc_other;
7408 break;
7409 default:
7410 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
7411 }
7412
7413 loc->refc = 1;
7414 }
7415
7416 /* Allocate a struct bp_location. */
7417
7418 static struct bp_location *
7419 allocate_bp_location (struct breakpoint *bpt)
7420 {
7421 return bpt->ops->allocate_location (bpt);
7422 }
7423
7424 static void
7425 free_bp_location (struct bp_location *loc)
7426 {
7427 loc->ops->dtor (loc);
7428 xfree (loc);
7429 }
7430
7431 /* Increment reference count. */
7432
7433 static void
7434 incref_bp_location (struct bp_location *bl)
7435 {
7436 ++bl->refc;
7437 }
7438
7439 /* Decrement reference count. If the reference count reaches 0,
7440 destroy the bp_location. Sets *BLP to NULL. */
7441
7442 static void
7443 decref_bp_location (struct bp_location **blp)
7444 {
7445 gdb_assert ((*blp)->refc > 0);
7446
7447 if (--(*blp)->refc == 0)
7448 free_bp_location (*blp);
7449 *blp = NULL;
7450 }
7451
7452 /* Add breakpoint B at the end of the global breakpoint chain. */
7453
7454 static void
7455 add_to_breakpoint_chain (struct breakpoint *b)
7456 {
7457 struct breakpoint *b1;
7458
7459 /* Add this breakpoint to the end of the chain so that a list of
7460 breakpoints will come out in order of increasing numbers. */
7461
7462 b1 = breakpoint_chain;
7463 if (b1 == 0)
7464 breakpoint_chain = b;
7465 else
7466 {
7467 while (b1->next)
7468 b1 = b1->next;
7469 b1->next = b;
7470 }
7471 }
7472
7473 /* Initializes breakpoint B with type BPTYPE and no locations yet. */
7474
7475 static void
7476 init_raw_breakpoint_without_location (struct breakpoint *b,
7477 struct gdbarch *gdbarch,
7478 enum bptype bptype,
7479 const struct breakpoint_ops *ops)
7480 {
7481 memset (b, 0, sizeof (*b));
7482
7483 gdb_assert (ops != NULL);
7484
7485 b->ops = ops;
7486 b->type = bptype;
7487 b->gdbarch = gdbarch;
7488 b->language = current_language->la_language;
7489 b->input_radix = input_radix;
7490 b->thread = -1;
7491 b->enable_state = bp_enabled;
7492 b->next = 0;
7493 b->silent = 0;
7494 b->ignore_count = 0;
7495 b->commands = NULL;
7496 b->frame_id = null_frame_id;
7497 b->condition_not_parsed = 0;
7498 b->py_bp_object = NULL;
7499 b->related_breakpoint = b;
7500 b->location = NULL;
7501 }
7502
7503 /* Helper to set_raw_breakpoint below. Creates a breakpoint
7504 that has type BPTYPE and has no locations as yet. */
7505
7506 static struct breakpoint *
7507 set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
7508 enum bptype bptype,
7509 const struct breakpoint_ops *ops)
7510 {
7511 struct breakpoint *b = XNEW (struct breakpoint);
7512
7513 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
7514 add_to_breakpoint_chain (b);
7515 return b;
7516 }
7517
7518 /* Initialize loc->function_name. EXPLICIT_LOC says no indirect function
7519 resolutions should be made as the user specified the location explicitly
7520 enough. */
7521
7522 static void
7523 set_breakpoint_location_function (struct bp_location *loc, int explicit_loc)
7524 {
7525 gdb_assert (loc->owner != NULL);
7526
7527 if (loc->owner->type == bp_breakpoint
7528 || loc->owner->type == bp_hardware_breakpoint
7529 || is_tracepoint (loc->owner))
7530 {
7531 int is_gnu_ifunc;
7532 const char *function_name;
7533 CORE_ADDR func_addr;
7534
7535 find_pc_partial_function_gnu_ifunc (loc->address, &function_name,
7536 &func_addr, NULL, &is_gnu_ifunc);
7537
7538 if (is_gnu_ifunc && !explicit_loc)
7539 {
7540 struct breakpoint *b = loc->owner;
7541
7542 gdb_assert (loc->pspace == current_program_space);
7543 if (gnu_ifunc_resolve_name (function_name,
7544 &loc->requested_address))
7545 {
7546 /* Recalculate ADDRESS based on new REQUESTED_ADDRESS. */
7547 loc->address = adjust_breakpoint_address (loc->gdbarch,
7548 loc->requested_address,
7549 b->type);
7550 }
7551 else if (b->type == bp_breakpoint && b->loc == loc
7552 && loc->next == NULL && b->related_breakpoint == b)
7553 {
7554 /* Create only the whole new breakpoint of this type but do not
7555 mess more complicated breakpoints with multiple locations. */
7556 b->type = bp_gnu_ifunc_resolver;
7557 /* Remember the resolver's address for use by the return
7558 breakpoint. */
7559 loc->related_address = func_addr;
7560 }
7561 }
7562
7563 if (function_name)
7564 loc->function_name = xstrdup (function_name);
7565 }
7566 }
7567
7568 /* Attempt to determine architecture of location identified by SAL. */
7569 struct gdbarch *
7570 get_sal_arch (struct symtab_and_line sal)
7571 {
7572 if (sal.section)
7573 return get_objfile_arch (sal.section->objfile);
7574 if (sal.symtab)
7575 return get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
7576
7577 return NULL;
7578 }
7579
7580 /* Low level routine for partially initializing a breakpoint of type
7581 BPTYPE. The newly created breakpoint's address, section, source
7582 file name, and line number are provided by SAL.
7583
7584 It is expected that the caller will complete the initialization of
7585 the newly created breakpoint struct as well as output any status
7586 information regarding the creation of a new breakpoint. */
7587
7588 static void
7589 init_raw_breakpoint (struct breakpoint *b, struct gdbarch *gdbarch,
7590 struct symtab_and_line sal, enum bptype bptype,
7591 const struct breakpoint_ops *ops)
7592 {
7593 init_raw_breakpoint_without_location (b, gdbarch, bptype, ops);
7594
7595 add_location_to_breakpoint (b, &sal);
7596
7597 if (bptype != bp_catchpoint)
7598 gdb_assert (sal.pspace != NULL);
7599
7600 /* Store the program space that was used to set the breakpoint,
7601 except for ordinary breakpoints, which are independent of the
7602 program space. */
7603 if (bptype != bp_breakpoint && bptype != bp_hardware_breakpoint)
7604 b->pspace = sal.pspace;
7605 }
7606
7607 /* set_raw_breakpoint is a low level routine for allocating and
7608 partially initializing a breakpoint of type BPTYPE. The newly
7609 created breakpoint's address, section, source file name, and line
7610 number are provided by SAL. The newly created and partially
7611 initialized breakpoint is added to the breakpoint chain and
7612 is also returned as the value of this function.
7613
7614 It is expected that the caller will complete the initialization of
7615 the newly created breakpoint struct as well as output any status
7616 information regarding the creation of a new breakpoint. In
7617 particular, set_raw_breakpoint does NOT set the breakpoint
7618 number! Care should be taken to not allow an error to occur
7619 prior to completing the initialization of the breakpoint. If this
7620 should happen, a bogus breakpoint will be left on the chain. */
7621
7622 struct breakpoint *
7623 set_raw_breakpoint (struct gdbarch *gdbarch,
7624 struct symtab_and_line sal, enum bptype bptype,
7625 const struct breakpoint_ops *ops)
7626 {
7627 struct breakpoint *b = XNEW (struct breakpoint);
7628
7629 init_raw_breakpoint (b, gdbarch, sal, bptype, ops);
7630 add_to_breakpoint_chain (b);
7631 return b;
7632 }
7633
7634 /* Call this routine when stepping and nexting to enable a breakpoint
7635 if we do a longjmp() or 'throw' in TP. FRAME is the frame which
7636 initiated the operation. */
7637
7638 void
7639 set_longjmp_breakpoint (struct thread_info *tp, struct frame_id frame)
7640 {
7641 struct breakpoint *b, *b_tmp;
7642 int thread = tp->global_num;
7643
7644 /* To avoid having to rescan all objfile symbols at every step,
7645 we maintain a list of continually-inserted but always disabled
7646 longjmp "master" breakpoints. Here, we simply create momentary
7647 clones of those and enable them for the requested thread. */
7648 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7649 if (b->pspace == current_program_space
7650 && (b->type == bp_longjmp_master
7651 || b->type == bp_exception_master))
7652 {
7653 enum bptype type = b->type == bp_longjmp_master ? bp_longjmp : bp_exception;
7654 struct breakpoint *clone;
7655
7656 /* longjmp_breakpoint_ops ensures INITIATING_FRAME is cleared again
7657 after their removal. */
7658 clone = momentary_breakpoint_from_master (b, type,
7659 &longjmp_breakpoint_ops, 1);
7660 clone->thread = thread;
7661 }
7662
7663 tp->initiating_frame = frame;
7664 }
7665
7666 /* Delete all longjmp breakpoints from THREAD. */
7667 void
7668 delete_longjmp_breakpoint (int thread)
7669 {
7670 struct breakpoint *b, *b_tmp;
7671
7672 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7673 if (b->type == bp_longjmp || b->type == bp_exception)
7674 {
7675 if (b->thread == thread)
7676 delete_breakpoint (b);
7677 }
7678 }
7679
7680 void
7681 delete_longjmp_breakpoint_at_next_stop (int thread)
7682 {
7683 struct breakpoint *b, *b_tmp;
7684
7685 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7686 if (b->type == bp_longjmp || b->type == bp_exception)
7687 {
7688 if (b->thread == thread)
7689 b->disposition = disp_del_at_next_stop;
7690 }
7691 }
7692
7693 /* Place breakpoints of type bp_longjmp_call_dummy to catch longjmp for
7694 INFERIOR_PTID thread. Chain them all by RELATED_BREAKPOINT and return
7695 pointer to any of them. Return NULL if this system cannot place longjmp
7696 breakpoints. */
7697
7698 struct breakpoint *
7699 set_longjmp_breakpoint_for_call_dummy (void)
7700 {
7701 struct breakpoint *b, *retval = NULL;
7702
7703 ALL_BREAKPOINTS (b)
7704 if (b->pspace == current_program_space && b->type == bp_longjmp_master)
7705 {
7706 struct breakpoint *new_b;
7707
7708 new_b = momentary_breakpoint_from_master (b, bp_longjmp_call_dummy,
7709 &momentary_breakpoint_ops,
7710 1);
7711 new_b->thread = ptid_to_global_thread_id (inferior_ptid);
7712
7713 /* Link NEW_B into the chain of RETVAL breakpoints. */
7714
7715 gdb_assert (new_b->related_breakpoint == new_b);
7716 if (retval == NULL)
7717 retval = new_b;
7718 new_b->related_breakpoint = retval;
7719 while (retval->related_breakpoint != new_b->related_breakpoint)
7720 retval = retval->related_breakpoint;
7721 retval->related_breakpoint = new_b;
7722 }
7723
7724 return retval;
7725 }
7726
7727 /* Verify all existing dummy frames and their associated breakpoints for
7728 TP. Remove those which can no longer be found in the current frame
7729 stack.
7730
7731 You should call this function only at places where it is safe to currently
7732 unwind the whole stack. Failed stack unwind would discard live dummy
7733 frames. */
7734
7735 void
7736 check_longjmp_breakpoint_for_call_dummy (struct thread_info *tp)
7737 {
7738 struct breakpoint *b, *b_tmp;
7739
7740 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7741 if (b->type == bp_longjmp_call_dummy && b->thread == tp->global_num)
7742 {
7743 struct breakpoint *dummy_b = b->related_breakpoint;
7744
7745 while (dummy_b != b && dummy_b->type != bp_call_dummy)
7746 dummy_b = dummy_b->related_breakpoint;
7747 if (dummy_b->type != bp_call_dummy
7748 || frame_find_by_id (dummy_b->frame_id) != NULL)
7749 continue;
7750
7751 dummy_frame_discard (dummy_b->frame_id, tp->ptid);
7752
7753 while (b->related_breakpoint != b)
7754 {
7755 if (b_tmp == b->related_breakpoint)
7756 b_tmp = b->related_breakpoint->next;
7757 delete_breakpoint (b->related_breakpoint);
7758 }
7759 delete_breakpoint (b);
7760 }
7761 }
7762
7763 void
7764 enable_overlay_breakpoints (void)
7765 {
7766 struct breakpoint *b;
7767
7768 ALL_BREAKPOINTS (b)
7769 if (b->type == bp_overlay_event)
7770 {
7771 b->enable_state = bp_enabled;
7772 update_global_location_list (UGLL_MAY_INSERT);
7773 overlay_events_enabled = 1;
7774 }
7775 }
7776
7777 void
7778 disable_overlay_breakpoints (void)
7779 {
7780 struct breakpoint *b;
7781
7782 ALL_BREAKPOINTS (b)
7783 if (b->type == bp_overlay_event)
7784 {
7785 b->enable_state = bp_disabled;
7786 update_global_location_list (UGLL_DONT_INSERT);
7787 overlay_events_enabled = 0;
7788 }
7789 }
7790
7791 /* Set an active std::terminate breakpoint for each std::terminate
7792 master breakpoint. */
7793 void
7794 set_std_terminate_breakpoint (void)
7795 {
7796 struct breakpoint *b, *b_tmp;
7797
7798 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7799 if (b->pspace == current_program_space
7800 && b->type == bp_std_terminate_master)
7801 {
7802 momentary_breakpoint_from_master (b, bp_std_terminate,
7803 &momentary_breakpoint_ops, 1);
7804 }
7805 }
7806
7807 /* Delete all the std::terminate breakpoints. */
7808 void
7809 delete_std_terminate_breakpoint (void)
7810 {
7811 struct breakpoint *b, *b_tmp;
7812
7813 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7814 if (b->type == bp_std_terminate)
7815 delete_breakpoint (b);
7816 }
7817
7818 struct breakpoint *
7819 create_thread_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7820 {
7821 struct breakpoint *b;
7822
7823 b = create_internal_breakpoint (gdbarch, address, bp_thread_event,
7824 &internal_breakpoint_ops);
7825
7826 b->enable_state = bp_enabled;
7827 /* location has to be used or breakpoint_re_set will delete me. */
7828 b->location = new_address_location (b->loc->address, NULL, 0);
7829
7830 update_global_location_list_nothrow (UGLL_MAY_INSERT);
7831
7832 return b;
7833 }
7834
7835 struct lang_and_radix
7836 {
7837 enum language lang;
7838 int radix;
7839 };
7840
7841 /* Create a breakpoint for JIT code registration and unregistration. */
7842
7843 struct breakpoint *
7844 create_jit_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7845 {
7846 return create_internal_breakpoint (gdbarch, address, bp_jit_event,
7847 &internal_breakpoint_ops);
7848 }
7849
7850 /* Remove JIT code registration and unregistration breakpoint(s). */
7851
7852 void
7853 remove_jit_event_breakpoints (void)
7854 {
7855 struct breakpoint *b, *b_tmp;
7856
7857 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7858 if (b->type == bp_jit_event
7859 && b->loc->pspace == current_program_space)
7860 delete_breakpoint (b);
7861 }
7862
7863 void
7864 remove_solib_event_breakpoints (void)
7865 {
7866 struct breakpoint *b, *b_tmp;
7867
7868 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7869 if (b->type == bp_shlib_event
7870 && b->loc->pspace == current_program_space)
7871 delete_breakpoint (b);
7872 }
7873
7874 /* See breakpoint.h. */
7875
7876 void
7877 remove_solib_event_breakpoints_at_next_stop (void)
7878 {
7879 struct breakpoint *b, *b_tmp;
7880
7881 ALL_BREAKPOINTS_SAFE (b, b_tmp)
7882 if (b->type == bp_shlib_event
7883 && b->loc->pspace == current_program_space)
7884 b->disposition = disp_del_at_next_stop;
7885 }
7886
7887 /* Helper for create_solib_event_breakpoint /
7888 create_and_insert_solib_event_breakpoint. Allows specifying which
7889 INSERT_MODE to pass through to update_global_location_list. */
7890
7891 static struct breakpoint *
7892 create_solib_event_breakpoint_1 (struct gdbarch *gdbarch, CORE_ADDR address,
7893 enum ugll_insert_mode insert_mode)
7894 {
7895 struct breakpoint *b;
7896
7897 b = create_internal_breakpoint (gdbarch, address, bp_shlib_event,
7898 &internal_breakpoint_ops);
7899 update_global_location_list_nothrow (insert_mode);
7900 return b;
7901 }
7902
7903 struct breakpoint *
7904 create_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7905 {
7906 return create_solib_event_breakpoint_1 (gdbarch, address, UGLL_MAY_INSERT);
7907 }
7908
7909 /* See breakpoint.h. */
7910
7911 struct breakpoint *
7912 create_and_insert_solib_event_breakpoint (struct gdbarch *gdbarch, CORE_ADDR address)
7913 {
7914 struct breakpoint *b;
7915
7916 /* Explicitly tell update_global_location_list to insert
7917 locations. */
7918 b = create_solib_event_breakpoint_1 (gdbarch, address, UGLL_INSERT);
7919 if (!b->loc->inserted)
7920 {
7921 delete_breakpoint (b);
7922 return NULL;
7923 }
7924 return b;
7925 }
7926
7927 /* Disable any breakpoints that are on code in shared libraries. Only
7928 apply to enabled breakpoints, disabled ones can just stay disabled. */
7929
7930 void
7931 disable_breakpoints_in_shlibs (void)
7932 {
7933 struct bp_location *loc, **locp_tmp;
7934
7935 ALL_BP_LOCATIONS (loc, locp_tmp)
7936 {
7937 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
7938 struct breakpoint *b = loc->owner;
7939
7940 /* We apply the check to all breakpoints, including disabled for
7941 those with loc->duplicate set. This is so that when breakpoint
7942 becomes enabled, or the duplicate is removed, gdb will try to
7943 insert all breakpoints. If we don't set shlib_disabled here,
7944 we'll try to insert those breakpoints and fail. */
7945 if (((b->type == bp_breakpoint)
7946 || (b->type == bp_jit_event)
7947 || (b->type == bp_hardware_breakpoint)
7948 || (is_tracepoint (b)))
7949 && loc->pspace == current_program_space
7950 && !loc->shlib_disabled
7951 && solib_name_from_address (loc->pspace, loc->address)
7952 )
7953 {
7954 loc->shlib_disabled = 1;
7955 }
7956 }
7957 }
7958
7959 /* Disable any breakpoints and tracepoints that are in SOLIB upon
7960 notification of unloaded_shlib. Only apply to enabled breakpoints,
7961 disabled ones can just stay disabled. */
7962
7963 static void
7964 disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
7965 {
7966 struct bp_location *loc, **locp_tmp;
7967 int disabled_shlib_breaks = 0;
7968
7969 /* SunOS a.out shared libraries are always mapped, so do not
7970 disable breakpoints; they will only be reported as unloaded
7971 through clear_solib when GDB discards its shared library
7972 list. See clear_solib for more information. */
7973 if (exec_bfd != NULL
7974 && bfd_get_flavour (exec_bfd) == bfd_target_aout_flavour)
7975 return;
7976
7977 ALL_BP_LOCATIONS (loc, locp_tmp)
7978 {
7979 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always non-NULL. */
7980 struct breakpoint *b = loc->owner;
7981
7982 if (solib->pspace == loc->pspace
7983 && !loc->shlib_disabled
7984 && (((b->type == bp_breakpoint
7985 || b->type == bp_jit_event
7986 || b->type == bp_hardware_breakpoint)
7987 && (loc->loc_type == bp_loc_hardware_breakpoint
7988 || loc->loc_type == bp_loc_software_breakpoint))
7989 || is_tracepoint (b))
7990 && solib_contains_address_p (solib, loc->address))
7991 {
7992 loc->shlib_disabled = 1;
7993 /* At this point, we cannot rely on remove_breakpoint
7994 succeeding so we must mark the breakpoint as not inserted
7995 to prevent future errors occurring in remove_breakpoints. */
7996 loc->inserted = 0;
7997
7998 /* This may cause duplicate notifications for the same breakpoint. */
7999 observer_notify_breakpoint_modified (b);
8000
8001 if (!disabled_shlib_breaks)
8002 {
8003 target_terminal_ours_for_output ();
8004 warning (_("Temporarily disabling breakpoints "
8005 "for unloaded shared library \"%s\""),
8006 solib->so_name);
8007 }
8008 disabled_shlib_breaks = 1;
8009 }
8010 }
8011 }
8012
8013 /* Disable any breakpoints and tracepoints in OBJFILE upon
8014 notification of free_objfile. Only apply to enabled breakpoints,
8015 disabled ones can just stay disabled. */
8016
8017 static void
8018 disable_breakpoints_in_freed_objfile (struct objfile *objfile)
8019 {
8020 struct breakpoint *b;
8021
8022 if (objfile == NULL)
8023 return;
8024
8025 /* OBJF_SHARED|OBJF_USERLOADED objfiles are dynamic modules manually
8026 managed by the user with add-symbol-file/remove-symbol-file.
8027 Similarly to how breakpoints in shared libraries are handled in
8028 response to "nosharedlibrary", mark breakpoints in such modules
8029 shlib_disabled so they end up uninserted on the next global
8030 location list update. Shared libraries not loaded by the user
8031 aren't handled here -- they're already handled in
8032 disable_breakpoints_in_unloaded_shlib, called by solib.c's
8033 solib_unloaded observer. We skip objfiles that are not
8034 OBJF_SHARED as those aren't considered dynamic objects (e.g. the
8035 main objfile). */
8036 if ((objfile->flags & OBJF_SHARED) == 0
8037 || (objfile->flags & OBJF_USERLOADED) == 0)
8038 return;
8039
8040 ALL_BREAKPOINTS (b)
8041 {
8042 struct bp_location *loc;
8043 int bp_modified = 0;
8044
8045 if (!is_breakpoint (b) && !is_tracepoint (b))
8046 continue;
8047
8048 for (loc = b->loc; loc != NULL; loc = loc->next)
8049 {
8050 CORE_ADDR loc_addr = loc->address;
8051
8052 if (loc->loc_type != bp_loc_hardware_breakpoint
8053 && loc->loc_type != bp_loc_software_breakpoint)
8054 continue;
8055
8056 if (loc->shlib_disabled != 0)
8057 continue;
8058
8059 if (objfile->pspace != loc->pspace)
8060 continue;
8061
8062 if (loc->loc_type != bp_loc_hardware_breakpoint
8063 && loc->loc_type != bp_loc_software_breakpoint)
8064 continue;
8065
8066 if (is_addr_in_objfile (loc_addr, objfile))
8067 {
8068 loc->shlib_disabled = 1;
8069 /* At this point, we don't know whether the object was
8070 unmapped from the inferior or not, so leave the
8071 inserted flag alone. We'll handle failure to
8072 uninsert quietly, in case the object was indeed
8073 unmapped. */
8074
8075 mark_breakpoint_location_modified (loc);
8076
8077 bp_modified = 1;
8078 }
8079 }
8080
8081 if (bp_modified)
8082 observer_notify_breakpoint_modified (b);
8083 }
8084 }
8085
8086 /* FORK & VFORK catchpoints. */
8087
8088 /* An instance of this type is used to represent a fork or vfork
8089 catchpoint. It includes a "struct breakpoint" as a kind of base
8090 class; users downcast to "struct breakpoint *" when needed. A
8091 breakpoint is really of this type iff its ops pointer points to
8092 CATCH_FORK_BREAKPOINT_OPS. */
8093
8094 struct fork_catchpoint
8095 {
8096 /* The base class. */
8097 struct breakpoint base;
8098
8099 /* Process id of a child process whose forking triggered this
8100 catchpoint. This field is only valid immediately after this
8101 catchpoint has triggered. */
8102 ptid_t forked_inferior_pid;
8103 };
8104
8105 /* Implement the "insert" breakpoint_ops method for fork
8106 catchpoints. */
8107
8108 static int
8109 insert_catch_fork (struct bp_location *bl)
8110 {
8111 return target_insert_fork_catchpoint (ptid_get_pid (inferior_ptid));
8112 }
8113
8114 /* Implement the "remove" breakpoint_ops method for fork
8115 catchpoints. */
8116
8117 static int
8118 remove_catch_fork (struct bp_location *bl)
8119 {
8120 return target_remove_fork_catchpoint (ptid_get_pid (inferior_ptid));
8121 }
8122
8123 /* Implement the "breakpoint_hit" breakpoint_ops method for fork
8124 catchpoints. */
8125
8126 static int
8127 breakpoint_hit_catch_fork (const struct bp_location *bl,
8128 struct address_space *aspace, CORE_ADDR bp_addr,
8129 const struct target_waitstatus *ws)
8130 {
8131 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
8132
8133 if (ws->kind != TARGET_WAITKIND_FORKED)
8134 return 0;
8135
8136 c->forked_inferior_pid = ws->value.related_pid;
8137 return 1;
8138 }
8139
8140 /* Implement the "print_it" breakpoint_ops method for fork
8141 catchpoints. */
8142
8143 static enum print_stop_action
8144 print_it_catch_fork (bpstat bs)
8145 {
8146 struct ui_out *uiout = current_uiout;
8147 struct breakpoint *b = bs->breakpoint_at;
8148 struct fork_catchpoint *c = (struct fork_catchpoint *) bs->breakpoint_at;
8149
8150 annotate_catchpoint (b->number);
8151 maybe_print_thread_hit_breakpoint (uiout);
8152 if (b->disposition == disp_del)
8153 ui_out_text (uiout, "Temporary catchpoint ");
8154 else
8155 ui_out_text (uiout, "Catchpoint ");
8156 if (ui_out_is_mi_like_p (uiout))
8157 {
8158 ui_out_field_string (uiout, "reason",
8159 async_reason_lookup (EXEC_ASYNC_FORK));
8160 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8161 }
8162 ui_out_field_int (uiout, "bkptno", b->number);
8163 ui_out_text (uiout, " (forked process ");
8164 ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid));
8165 ui_out_text (uiout, "), ");
8166 return PRINT_SRC_AND_LOC;
8167 }
8168
8169 /* Implement the "print_one" breakpoint_ops method for fork
8170 catchpoints. */
8171
8172 static void
8173 print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc)
8174 {
8175 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
8176 struct value_print_options opts;
8177 struct ui_out *uiout = current_uiout;
8178
8179 get_user_print_options (&opts);
8180
8181 /* Field 4, the address, is omitted (which makes the columns not
8182 line up too nicely with the headers, but the effect is relatively
8183 readable). */
8184 if (opts.addressprint)
8185 ui_out_field_skip (uiout, "addr");
8186 annotate_field (5);
8187 ui_out_text (uiout, "fork");
8188 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
8189 {
8190 ui_out_text (uiout, ", process ");
8191 ui_out_field_int (uiout, "what",
8192 ptid_get_pid (c->forked_inferior_pid));
8193 ui_out_spaces (uiout, 1);
8194 }
8195
8196 if (ui_out_is_mi_like_p (uiout))
8197 ui_out_field_string (uiout, "catch-type", "fork");
8198 }
8199
8200 /* Implement the "print_mention" breakpoint_ops method for fork
8201 catchpoints. */
8202
8203 static void
8204 print_mention_catch_fork (struct breakpoint *b)
8205 {
8206 printf_filtered (_("Catchpoint %d (fork)"), b->number);
8207 }
8208
8209 /* Implement the "print_recreate" breakpoint_ops method for fork
8210 catchpoints. */
8211
8212 static void
8213 print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp)
8214 {
8215 fprintf_unfiltered (fp, "catch fork");
8216 print_recreate_thread (b, fp);
8217 }
8218
8219 /* The breakpoint_ops structure to be used in fork catchpoints. */
8220
8221 static struct breakpoint_ops catch_fork_breakpoint_ops;
8222
8223 /* Implement the "insert" breakpoint_ops method for vfork
8224 catchpoints. */
8225
8226 static int
8227 insert_catch_vfork (struct bp_location *bl)
8228 {
8229 return target_insert_vfork_catchpoint (ptid_get_pid (inferior_ptid));
8230 }
8231
8232 /* Implement the "remove" breakpoint_ops method for vfork
8233 catchpoints. */
8234
8235 static int
8236 remove_catch_vfork (struct bp_location *bl)
8237 {
8238 return target_remove_vfork_catchpoint (ptid_get_pid (inferior_ptid));
8239 }
8240
8241 /* Implement the "breakpoint_hit" breakpoint_ops method for vfork
8242 catchpoints. */
8243
8244 static int
8245 breakpoint_hit_catch_vfork (const struct bp_location *bl,
8246 struct address_space *aspace, CORE_ADDR bp_addr,
8247 const struct target_waitstatus *ws)
8248 {
8249 struct fork_catchpoint *c = (struct fork_catchpoint *) bl->owner;
8250
8251 if (ws->kind != TARGET_WAITKIND_VFORKED)
8252 return 0;
8253
8254 c->forked_inferior_pid = ws->value.related_pid;
8255 return 1;
8256 }
8257
8258 /* Implement the "print_it" breakpoint_ops method for vfork
8259 catchpoints. */
8260
8261 static enum print_stop_action
8262 print_it_catch_vfork (bpstat bs)
8263 {
8264 struct ui_out *uiout = current_uiout;
8265 struct breakpoint *b = bs->breakpoint_at;
8266 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
8267
8268 annotate_catchpoint (b->number);
8269 maybe_print_thread_hit_breakpoint (uiout);
8270 if (b->disposition == disp_del)
8271 ui_out_text (uiout, "Temporary catchpoint ");
8272 else
8273 ui_out_text (uiout, "Catchpoint ");
8274 if (ui_out_is_mi_like_p (uiout))
8275 {
8276 ui_out_field_string (uiout, "reason",
8277 async_reason_lookup (EXEC_ASYNC_VFORK));
8278 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8279 }
8280 ui_out_field_int (uiout, "bkptno", b->number);
8281 ui_out_text (uiout, " (vforked process ");
8282 ui_out_field_int (uiout, "newpid", ptid_get_pid (c->forked_inferior_pid));
8283 ui_out_text (uiout, "), ");
8284 return PRINT_SRC_AND_LOC;
8285 }
8286
8287 /* Implement the "print_one" breakpoint_ops method for vfork
8288 catchpoints. */
8289
8290 static void
8291 print_one_catch_vfork (struct breakpoint *b, struct bp_location **last_loc)
8292 {
8293 struct fork_catchpoint *c = (struct fork_catchpoint *) b;
8294 struct value_print_options opts;
8295 struct ui_out *uiout = current_uiout;
8296
8297 get_user_print_options (&opts);
8298 /* Field 4, the address, is omitted (which makes the columns not
8299 line up too nicely with the headers, but the effect is relatively
8300 readable). */
8301 if (opts.addressprint)
8302 ui_out_field_skip (uiout, "addr");
8303 annotate_field (5);
8304 ui_out_text (uiout, "vfork");
8305 if (!ptid_equal (c->forked_inferior_pid, null_ptid))
8306 {
8307 ui_out_text (uiout, ", process ");
8308 ui_out_field_int (uiout, "what",
8309 ptid_get_pid (c->forked_inferior_pid));
8310 ui_out_spaces (uiout, 1);
8311 }
8312
8313 if (ui_out_is_mi_like_p (uiout))
8314 ui_out_field_string (uiout, "catch-type", "vfork");
8315 }
8316
8317 /* Implement the "print_mention" breakpoint_ops method for vfork
8318 catchpoints. */
8319
8320 static void
8321 print_mention_catch_vfork (struct breakpoint *b)
8322 {
8323 printf_filtered (_("Catchpoint %d (vfork)"), b->number);
8324 }
8325
8326 /* Implement the "print_recreate" breakpoint_ops method for vfork
8327 catchpoints. */
8328
8329 static void
8330 print_recreate_catch_vfork (struct breakpoint *b, struct ui_file *fp)
8331 {
8332 fprintf_unfiltered (fp, "catch vfork");
8333 print_recreate_thread (b, fp);
8334 }
8335
8336 /* The breakpoint_ops structure to be used in vfork catchpoints. */
8337
8338 static struct breakpoint_ops catch_vfork_breakpoint_ops;
8339
8340 /* An instance of this type is used to represent an solib catchpoint.
8341 It includes a "struct breakpoint" as a kind of base class; users
8342 downcast to "struct breakpoint *" when needed. A breakpoint is
8343 really of this type iff its ops pointer points to
8344 CATCH_SOLIB_BREAKPOINT_OPS. */
8345
8346 struct solib_catchpoint
8347 {
8348 /* The base class. */
8349 struct breakpoint base;
8350
8351 /* True for "catch load", false for "catch unload". */
8352 unsigned char is_load;
8353
8354 /* Regular expression to match, if any. COMPILED is only valid when
8355 REGEX is non-NULL. */
8356 char *regex;
8357 regex_t compiled;
8358 };
8359
8360 static void
8361 dtor_catch_solib (struct breakpoint *b)
8362 {
8363 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8364
8365 if (self->regex)
8366 regfree (&self->compiled);
8367 xfree (self->regex);
8368
8369 base_breakpoint_ops.dtor (b);
8370 }
8371
8372 static int
8373 insert_catch_solib (struct bp_location *ignore)
8374 {
8375 return 0;
8376 }
8377
8378 static int
8379 remove_catch_solib (struct bp_location *ignore)
8380 {
8381 return 0;
8382 }
8383
8384 static int
8385 breakpoint_hit_catch_solib (const struct bp_location *bl,
8386 struct address_space *aspace,
8387 CORE_ADDR bp_addr,
8388 const struct target_waitstatus *ws)
8389 {
8390 struct solib_catchpoint *self = (struct solib_catchpoint *) bl->owner;
8391 struct breakpoint *other;
8392
8393 if (ws->kind == TARGET_WAITKIND_LOADED)
8394 return 1;
8395
8396 ALL_BREAKPOINTS (other)
8397 {
8398 struct bp_location *other_bl;
8399
8400 if (other == bl->owner)
8401 continue;
8402
8403 if (other->type != bp_shlib_event)
8404 continue;
8405
8406 if (self->base.pspace != NULL && other->pspace != self->base.pspace)
8407 continue;
8408
8409 for (other_bl = other->loc; other_bl != NULL; other_bl = other_bl->next)
8410 {
8411 if (other->ops->breakpoint_hit (other_bl, aspace, bp_addr, ws))
8412 return 1;
8413 }
8414 }
8415
8416 return 0;
8417 }
8418
8419 static void
8420 check_status_catch_solib (struct bpstats *bs)
8421 {
8422 struct solib_catchpoint *self
8423 = (struct solib_catchpoint *) bs->breakpoint_at;
8424 int ix;
8425
8426 if (self->is_load)
8427 {
8428 struct so_list *iter;
8429
8430 for (ix = 0;
8431 VEC_iterate (so_list_ptr, current_program_space->added_solibs,
8432 ix, iter);
8433 ++ix)
8434 {
8435 if (!self->regex
8436 || regexec (&self->compiled, iter->so_name, 0, NULL, 0) == 0)
8437 return;
8438 }
8439 }
8440 else
8441 {
8442 char *iter;
8443
8444 for (ix = 0;
8445 VEC_iterate (char_ptr, current_program_space->deleted_solibs,
8446 ix, iter);
8447 ++ix)
8448 {
8449 if (!self->regex
8450 || regexec (&self->compiled, iter, 0, NULL, 0) == 0)
8451 return;
8452 }
8453 }
8454
8455 bs->stop = 0;
8456 bs->print_it = print_it_noop;
8457 }
8458
8459 static enum print_stop_action
8460 print_it_catch_solib (bpstat bs)
8461 {
8462 struct breakpoint *b = bs->breakpoint_at;
8463 struct ui_out *uiout = current_uiout;
8464
8465 annotate_catchpoint (b->number);
8466 maybe_print_thread_hit_breakpoint (uiout);
8467 if (b->disposition == disp_del)
8468 ui_out_text (uiout, "Temporary catchpoint ");
8469 else
8470 ui_out_text (uiout, "Catchpoint ");
8471 ui_out_field_int (uiout, "bkptno", b->number);
8472 ui_out_text (uiout, "\n");
8473 if (ui_out_is_mi_like_p (uiout))
8474 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8475 print_solib_event (1);
8476 return PRINT_SRC_AND_LOC;
8477 }
8478
8479 static void
8480 print_one_catch_solib (struct breakpoint *b, struct bp_location **locs)
8481 {
8482 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8483 struct value_print_options opts;
8484 struct ui_out *uiout = current_uiout;
8485 char *msg;
8486
8487 get_user_print_options (&opts);
8488 /* Field 4, the address, is omitted (which makes the columns not
8489 line up too nicely with the headers, but the effect is relatively
8490 readable). */
8491 if (opts.addressprint)
8492 {
8493 annotate_field (4);
8494 ui_out_field_skip (uiout, "addr");
8495 }
8496
8497 annotate_field (5);
8498 if (self->is_load)
8499 {
8500 if (self->regex)
8501 msg = xstrprintf (_("load of library matching %s"), self->regex);
8502 else
8503 msg = xstrdup (_("load of library"));
8504 }
8505 else
8506 {
8507 if (self->regex)
8508 msg = xstrprintf (_("unload of library matching %s"), self->regex);
8509 else
8510 msg = xstrdup (_("unload of library"));
8511 }
8512 ui_out_field_string (uiout, "what", msg);
8513 xfree (msg);
8514
8515 if (ui_out_is_mi_like_p (uiout))
8516 ui_out_field_string (uiout, "catch-type",
8517 self->is_load ? "load" : "unload");
8518 }
8519
8520 static void
8521 print_mention_catch_solib (struct breakpoint *b)
8522 {
8523 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8524
8525 printf_filtered (_("Catchpoint %d (%s)"), b->number,
8526 self->is_load ? "load" : "unload");
8527 }
8528
8529 static void
8530 print_recreate_catch_solib (struct breakpoint *b, struct ui_file *fp)
8531 {
8532 struct solib_catchpoint *self = (struct solib_catchpoint *) b;
8533
8534 fprintf_unfiltered (fp, "%s %s",
8535 b->disposition == disp_del ? "tcatch" : "catch",
8536 self->is_load ? "load" : "unload");
8537 if (self->regex)
8538 fprintf_unfiltered (fp, " %s", self->regex);
8539 fprintf_unfiltered (fp, "\n");
8540 }
8541
8542 static struct breakpoint_ops catch_solib_breakpoint_ops;
8543
8544 /* Shared helper function (MI and CLI) for creating and installing
8545 a shared object event catchpoint. If IS_LOAD is non-zero then
8546 the events to be caught are load events, otherwise they are
8547 unload events. If IS_TEMP is non-zero the catchpoint is a
8548 temporary one. If ENABLED is non-zero the catchpoint is
8549 created in an enabled state. */
8550
8551 void
8552 add_solib_catchpoint (char *arg, int is_load, int is_temp, int enabled)
8553 {
8554 struct solib_catchpoint *c;
8555 struct gdbarch *gdbarch = get_current_arch ();
8556 struct cleanup *cleanup;
8557
8558 if (!arg)
8559 arg = "";
8560 arg = skip_spaces (arg);
8561
8562 c = XCNEW (struct solib_catchpoint);
8563 cleanup = make_cleanup (xfree, c);
8564
8565 if (*arg != '\0')
8566 {
8567 int errcode;
8568
8569 errcode = regcomp (&c->compiled, arg, REG_NOSUB);
8570 if (errcode != 0)
8571 {
8572 char *err = get_regcomp_error (errcode, &c->compiled);
8573
8574 make_cleanup (xfree, err);
8575 error (_("Invalid regexp (%s): %s"), err, arg);
8576 }
8577 c->regex = xstrdup (arg);
8578 }
8579
8580 c->is_load = is_load;
8581 init_catchpoint (&c->base, gdbarch, is_temp, NULL,
8582 &catch_solib_breakpoint_ops);
8583
8584 c->base.enable_state = enabled ? bp_enabled : bp_disabled;
8585
8586 discard_cleanups (cleanup);
8587 install_breakpoint (0, &c->base, 1);
8588 }
8589
8590 /* A helper function that does all the work for "catch load" and
8591 "catch unload". */
8592
8593 static void
8594 catch_load_or_unload (char *arg, int from_tty, int is_load,
8595 struct cmd_list_element *command)
8596 {
8597 int tempflag;
8598 const int enabled = 1;
8599
8600 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
8601
8602 add_solib_catchpoint (arg, is_load, tempflag, enabled);
8603 }
8604
8605 static void
8606 catch_load_command_1 (char *arg, int from_tty,
8607 struct cmd_list_element *command)
8608 {
8609 catch_load_or_unload (arg, from_tty, 1, command);
8610 }
8611
8612 static void
8613 catch_unload_command_1 (char *arg, int from_tty,
8614 struct cmd_list_element *command)
8615 {
8616 catch_load_or_unload (arg, from_tty, 0, command);
8617 }
8618
8619 /* Initialize a new breakpoint of the bp_catchpoint kind. If TEMPFLAG
8620 is non-zero, then make the breakpoint temporary. If COND_STRING is
8621 not NULL, then store it in the breakpoint. OPS, if not NULL, is
8622 the breakpoint_ops structure associated to the catchpoint. */
8623
8624 void
8625 init_catchpoint (struct breakpoint *b,
8626 struct gdbarch *gdbarch, int tempflag,
8627 char *cond_string,
8628 const struct breakpoint_ops *ops)
8629 {
8630 struct symtab_and_line sal;
8631
8632 init_sal (&sal);
8633 sal.pspace = current_program_space;
8634
8635 init_raw_breakpoint (b, gdbarch, sal, bp_catchpoint, ops);
8636
8637 b->cond_string = (cond_string == NULL) ? NULL : xstrdup (cond_string);
8638 b->disposition = tempflag ? disp_del : disp_donttouch;
8639 }
8640
8641 void
8642 install_breakpoint (int internal, struct breakpoint *b, int update_gll)
8643 {
8644 add_to_breakpoint_chain (b);
8645 set_breakpoint_number (internal, b);
8646 if (is_tracepoint (b))
8647 set_tracepoint_count (breakpoint_count);
8648 if (!internal)
8649 mention (b);
8650 observer_notify_breakpoint_created (b);
8651
8652 if (update_gll)
8653 update_global_location_list (UGLL_MAY_INSERT);
8654 }
8655
8656 static void
8657 create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
8658 int tempflag, char *cond_string,
8659 const struct breakpoint_ops *ops)
8660 {
8661 struct fork_catchpoint *c = XNEW (struct fork_catchpoint);
8662
8663 init_catchpoint (&c->base, gdbarch, tempflag, cond_string, ops);
8664
8665 c->forked_inferior_pid = null_ptid;
8666
8667 install_breakpoint (0, &c->base, 1);
8668 }
8669
8670 /* Exec catchpoints. */
8671
8672 /* An instance of this type is used to represent an exec catchpoint.
8673 It includes a "struct breakpoint" as a kind of base class; users
8674 downcast to "struct breakpoint *" when needed. A breakpoint is
8675 really of this type iff its ops pointer points to
8676 CATCH_EXEC_BREAKPOINT_OPS. */
8677
8678 struct exec_catchpoint
8679 {
8680 /* The base class. */
8681 struct breakpoint base;
8682
8683 /* Filename of a program whose exec triggered this catchpoint.
8684 This field is only valid immediately after this catchpoint has
8685 triggered. */
8686 char *exec_pathname;
8687 };
8688
8689 /* Implement the "dtor" breakpoint_ops method for exec
8690 catchpoints. */
8691
8692 static void
8693 dtor_catch_exec (struct breakpoint *b)
8694 {
8695 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8696
8697 xfree (c->exec_pathname);
8698
8699 base_breakpoint_ops.dtor (b);
8700 }
8701
8702 static int
8703 insert_catch_exec (struct bp_location *bl)
8704 {
8705 return target_insert_exec_catchpoint (ptid_get_pid (inferior_ptid));
8706 }
8707
8708 static int
8709 remove_catch_exec (struct bp_location *bl)
8710 {
8711 return target_remove_exec_catchpoint (ptid_get_pid (inferior_ptid));
8712 }
8713
8714 static int
8715 breakpoint_hit_catch_exec (const struct bp_location *bl,
8716 struct address_space *aspace, CORE_ADDR bp_addr,
8717 const struct target_waitstatus *ws)
8718 {
8719 struct exec_catchpoint *c = (struct exec_catchpoint *) bl->owner;
8720
8721 if (ws->kind != TARGET_WAITKIND_EXECD)
8722 return 0;
8723
8724 c->exec_pathname = xstrdup (ws->value.execd_pathname);
8725 return 1;
8726 }
8727
8728 static enum print_stop_action
8729 print_it_catch_exec (bpstat bs)
8730 {
8731 struct ui_out *uiout = current_uiout;
8732 struct breakpoint *b = bs->breakpoint_at;
8733 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8734
8735 annotate_catchpoint (b->number);
8736 maybe_print_thread_hit_breakpoint (uiout);
8737 if (b->disposition == disp_del)
8738 ui_out_text (uiout, "Temporary catchpoint ");
8739 else
8740 ui_out_text (uiout, "Catchpoint ");
8741 if (ui_out_is_mi_like_p (uiout))
8742 {
8743 ui_out_field_string (uiout, "reason",
8744 async_reason_lookup (EXEC_ASYNC_EXEC));
8745 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
8746 }
8747 ui_out_field_int (uiout, "bkptno", b->number);
8748 ui_out_text (uiout, " (exec'd ");
8749 ui_out_field_string (uiout, "new-exec", c->exec_pathname);
8750 ui_out_text (uiout, "), ");
8751
8752 return PRINT_SRC_AND_LOC;
8753 }
8754
8755 static void
8756 print_one_catch_exec (struct breakpoint *b, struct bp_location **last_loc)
8757 {
8758 struct exec_catchpoint *c = (struct exec_catchpoint *) b;
8759 struct value_print_options opts;
8760 struct ui_out *uiout = current_uiout;
8761
8762 get_user_print_options (&opts);
8763
8764 /* Field 4, the address, is omitted (which makes the columns
8765 not line up too nicely with the headers, but the effect
8766 is relatively readable). */
8767 if (opts.addressprint)
8768 ui_out_field_skip (uiout, "addr");
8769 annotate_field (5);
8770 ui_out_text (uiout, "exec");
8771 if (c->exec_pathname != NULL)
8772 {
8773 ui_out_text (uiout, ", program \"");
8774 ui_out_field_string (uiout, "what", c->exec_pathname);
8775 ui_out_text (uiout, "\" ");
8776 }
8777
8778 if (ui_out_is_mi_like_p (uiout))
8779 ui_out_field_string (uiout, "catch-type", "exec");
8780 }
8781
8782 static void
8783 print_mention_catch_exec (struct breakpoint *b)
8784 {
8785 printf_filtered (_("Catchpoint %d (exec)"), b->number);
8786 }
8787
8788 /* Implement the "print_recreate" breakpoint_ops method for exec
8789 catchpoints. */
8790
8791 static void
8792 print_recreate_catch_exec (struct breakpoint *b, struct ui_file *fp)
8793 {
8794 fprintf_unfiltered (fp, "catch exec");
8795 print_recreate_thread (b, fp);
8796 }
8797
8798 static struct breakpoint_ops catch_exec_breakpoint_ops;
8799
8800 static int
8801 hw_breakpoint_used_count (void)
8802 {
8803 int i = 0;
8804 struct breakpoint *b;
8805 struct bp_location *bl;
8806
8807 ALL_BREAKPOINTS (b)
8808 {
8809 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
8810 for (bl = b->loc; bl; bl = bl->next)
8811 {
8812 /* Special types of hardware breakpoints may use more than
8813 one register. */
8814 i += b->ops->resources_needed (bl);
8815 }
8816 }
8817
8818 return i;
8819 }
8820
8821 /* Returns the resources B would use if it were a hardware
8822 watchpoint. */
8823
8824 static int
8825 hw_watchpoint_use_count (struct breakpoint *b)
8826 {
8827 int i = 0;
8828 struct bp_location *bl;
8829
8830 if (!breakpoint_enabled (b))
8831 return 0;
8832
8833 for (bl = b->loc; bl; bl = bl->next)
8834 {
8835 /* Special types of hardware watchpoints may use more than
8836 one register. */
8837 i += b->ops->resources_needed (bl);
8838 }
8839
8840 return i;
8841 }
8842
8843 /* Returns the sum the used resources of all hardware watchpoints of
8844 type TYPE in the breakpoints list. Also returns in OTHER_TYPE_USED
8845 the sum of the used resources of all hardware watchpoints of other
8846 types _not_ TYPE. */
8847
8848 static int
8849 hw_watchpoint_used_count_others (struct breakpoint *except,
8850 enum bptype type, int *other_type_used)
8851 {
8852 int i = 0;
8853 struct breakpoint *b;
8854
8855 *other_type_used = 0;
8856 ALL_BREAKPOINTS (b)
8857 {
8858 if (b == except)
8859 continue;
8860 if (!breakpoint_enabled (b))
8861 continue;
8862
8863 if (b->type == type)
8864 i += hw_watchpoint_use_count (b);
8865 else if (is_hardware_watchpoint (b))
8866 *other_type_used = 1;
8867 }
8868
8869 return i;
8870 }
8871
8872 void
8873 disable_watchpoints_before_interactive_call_start (void)
8874 {
8875 struct breakpoint *b;
8876
8877 ALL_BREAKPOINTS (b)
8878 {
8879 if (is_watchpoint (b) && breakpoint_enabled (b))
8880 {
8881 b->enable_state = bp_call_disabled;
8882 update_global_location_list (UGLL_DONT_INSERT);
8883 }
8884 }
8885 }
8886
8887 void
8888 enable_watchpoints_after_interactive_call_stop (void)
8889 {
8890 struct breakpoint *b;
8891
8892 ALL_BREAKPOINTS (b)
8893 {
8894 if (is_watchpoint (b) && b->enable_state == bp_call_disabled)
8895 {
8896 b->enable_state = bp_enabled;
8897 update_global_location_list (UGLL_MAY_INSERT);
8898 }
8899 }
8900 }
8901
8902 void
8903 disable_breakpoints_before_startup (void)
8904 {
8905 current_program_space->executing_startup = 1;
8906 update_global_location_list (UGLL_DONT_INSERT);
8907 }
8908
8909 void
8910 enable_breakpoints_after_startup (void)
8911 {
8912 current_program_space->executing_startup = 0;
8913 breakpoint_re_set ();
8914 }
8915
8916 /* Create a new single-step breakpoint for thread THREAD, with no
8917 locations. */
8918
8919 static struct breakpoint *
8920 new_single_step_breakpoint (int thread, struct gdbarch *gdbarch)
8921 {
8922 struct breakpoint *b = XNEW (struct breakpoint);
8923
8924 init_raw_breakpoint_without_location (b, gdbarch, bp_single_step,
8925 &momentary_breakpoint_ops);
8926
8927 b->disposition = disp_donttouch;
8928 b->frame_id = null_frame_id;
8929
8930 b->thread = thread;
8931 gdb_assert (b->thread != 0);
8932
8933 add_to_breakpoint_chain (b);
8934
8935 return b;
8936 }
8937
8938 /* Set a momentary breakpoint of type TYPE at address specified by
8939 SAL. If FRAME_ID is valid, the breakpoint is restricted to that
8940 frame. */
8941
8942 struct breakpoint *
8943 set_momentary_breakpoint (struct gdbarch *gdbarch, struct symtab_and_line sal,
8944 struct frame_id frame_id, enum bptype type)
8945 {
8946 struct breakpoint *b;
8947
8948 /* If FRAME_ID is valid, it should be a real frame, not an inlined or
8949 tail-called one. */
8950 gdb_assert (!frame_id_artificial_p (frame_id));
8951
8952 b = set_raw_breakpoint (gdbarch, sal, type, &momentary_breakpoint_ops);
8953 b->enable_state = bp_enabled;
8954 b->disposition = disp_donttouch;
8955 b->frame_id = frame_id;
8956
8957 /* If we're debugging a multi-threaded program, then we want
8958 momentary breakpoints to be active in only a single thread of
8959 control. */
8960 if (in_thread_list (inferior_ptid))
8961 b->thread = ptid_to_global_thread_id (inferior_ptid);
8962
8963 update_global_location_list_nothrow (UGLL_MAY_INSERT);
8964
8965 return b;
8966 }
8967
8968 /* Make a momentary breakpoint based on the master breakpoint ORIG.
8969 The new breakpoint will have type TYPE, use OPS as its
8970 breakpoint_ops, and will set enabled to LOC_ENABLED. */
8971
8972 static struct breakpoint *
8973 momentary_breakpoint_from_master (struct breakpoint *orig,
8974 enum bptype type,
8975 const struct breakpoint_ops *ops,
8976 int loc_enabled)
8977 {
8978 struct breakpoint *copy;
8979
8980 copy = set_raw_breakpoint_without_location (orig->gdbarch, type, ops);
8981 copy->loc = allocate_bp_location (copy);
8982 set_breakpoint_location_function (copy->loc, 1);
8983
8984 copy->loc->gdbarch = orig->loc->gdbarch;
8985 copy->loc->requested_address = orig->loc->requested_address;
8986 copy->loc->address = orig->loc->address;
8987 copy->loc->section = orig->loc->section;
8988 copy->loc->pspace = orig->loc->pspace;
8989 copy->loc->probe = orig->loc->probe;
8990 copy->loc->line_number = orig->loc->line_number;
8991 copy->loc->symtab = orig->loc->symtab;
8992 copy->loc->enabled = loc_enabled;
8993 copy->frame_id = orig->frame_id;
8994 copy->thread = orig->thread;
8995 copy->pspace = orig->pspace;
8996
8997 copy->enable_state = bp_enabled;
8998 copy->disposition = disp_donttouch;
8999 copy->number = internal_breakpoint_number--;
9000
9001 update_global_location_list_nothrow (UGLL_DONT_INSERT);
9002 return copy;
9003 }
9004
9005 /* Make a deep copy of momentary breakpoint ORIG. Returns NULL if
9006 ORIG is NULL. */
9007
9008 struct breakpoint *
9009 clone_momentary_breakpoint (struct breakpoint *orig)
9010 {
9011 /* If there's nothing to clone, then return nothing. */
9012 if (orig == NULL)
9013 return NULL;
9014
9015 return momentary_breakpoint_from_master (orig, orig->type, orig->ops, 0);
9016 }
9017
9018 struct breakpoint *
9019 set_momentary_breakpoint_at_pc (struct gdbarch *gdbarch, CORE_ADDR pc,
9020 enum bptype type)
9021 {
9022 struct symtab_and_line sal;
9023
9024 sal = find_pc_line (pc, 0);
9025 sal.pc = pc;
9026 sal.section = find_pc_overlay (pc);
9027 sal.explicit_pc = 1;
9028
9029 return set_momentary_breakpoint (gdbarch, sal, null_frame_id, type);
9030 }
9031 \f
9032
9033 /* Tell the user we have just set a breakpoint B. */
9034
9035 static void
9036 mention (struct breakpoint *b)
9037 {
9038 b->ops->print_mention (b);
9039 if (ui_out_is_mi_like_p (current_uiout))
9040 return;
9041 printf_filtered ("\n");
9042 }
9043 \f
9044
9045 static int bp_loc_is_permanent (struct bp_location *loc);
9046
9047 static struct bp_location *
9048 add_location_to_breakpoint (struct breakpoint *b,
9049 const struct symtab_and_line *sal)
9050 {
9051 struct bp_location *loc, **tmp;
9052 CORE_ADDR adjusted_address;
9053 struct gdbarch *loc_gdbarch = get_sal_arch (*sal);
9054
9055 if (loc_gdbarch == NULL)
9056 loc_gdbarch = b->gdbarch;
9057
9058 /* Adjust the breakpoint's address prior to allocating a location.
9059 Once we call allocate_bp_location(), that mostly uninitialized
9060 location will be placed on the location chain. Adjustment of the
9061 breakpoint may cause target_read_memory() to be called and we do
9062 not want its scan of the location chain to find a breakpoint and
9063 location that's only been partially initialized. */
9064 adjusted_address = adjust_breakpoint_address (loc_gdbarch,
9065 sal->pc, b->type);
9066
9067 /* Sort the locations by their ADDRESS. */
9068 loc = allocate_bp_location (b);
9069 for (tmp = &(b->loc); *tmp != NULL && (*tmp)->address <= adjusted_address;
9070 tmp = &((*tmp)->next))
9071 ;
9072 loc->next = *tmp;
9073 *tmp = loc;
9074
9075 loc->requested_address = sal->pc;
9076 loc->address = adjusted_address;
9077 loc->pspace = sal->pspace;
9078 loc->probe.probe = sal->probe;
9079 loc->probe.objfile = sal->objfile;
9080 gdb_assert (loc->pspace != NULL);
9081 loc->section = sal->section;
9082 loc->gdbarch = loc_gdbarch;
9083 loc->line_number = sal->line;
9084 loc->symtab = sal->symtab;
9085
9086 set_breakpoint_location_function (loc,
9087 sal->explicit_pc || sal->explicit_line);
9088
9089 /* While by definition, permanent breakpoints are already present in the
9090 code, we don't mark the location as inserted. Normally one would expect
9091 that GDB could rely on that breakpoint instruction to stop the program,
9092 thus removing the need to insert its own breakpoint, except that executing
9093 the breakpoint instruction can kill the target instead of reporting a
9094 SIGTRAP. E.g., on SPARC, when interrupts are disabled, executing the
9095 instruction resets the CPU, so QEMU 2.0.0 for SPARC correspondingly dies
9096 with "Trap 0x02 while interrupts disabled, Error state". Letting the
9097 breakpoint be inserted normally results in QEMU knowing about the GDB
9098 breakpoint, and thus trap before the breakpoint instruction is executed.
9099 (If GDB later needs to continue execution past the permanent breakpoint,
9100 it manually increments the PC, thus avoiding executing the breakpoint
9101 instruction.) */
9102 if (bp_loc_is_permanent (loc))
9103 loc->permanent = 1;
9104
9105 return loc;
9106 }
9107 \f
9108
9109 /* See breakpoint.h. */
9110
9111 int
9112 program_breakpoint_here_p (struct gdbarch *gdbarch, CORE_ADDR address)
9113 {
9114 int len;
9115 CORE_ADDR addr;
9116 const gdb_byte *bpoint;
9117 gdb_byte *target_mem;
9118 struct cleanup *cleanup;
9119 int retval = 0;
9120
9121 addr = address;
9122 bpoint = gdbarch_breakpoint_from_pc (gdbarch, &addr, &len);
9123
9124 /* Software breakpoints unsupported? */
9125 if (bpoint == NULL)
9126 return 0;
9127
9128 target_mem = (gdb_byte *) alloca (len);
9129
9130 /* Enable the automatic memory restoration from breakpoints while
9131 we read the memory. Otherwise we could say about our temporary
9132 breakpoints they are permanent. */
9133 cleanup = make_show_memory_breakpoints_cleanup (0);
9134
9135 if (target_read_memory (address, target_mem, len) == 0
9136 && memcmp (target_mem, bpoint, len) == 0)
9137 retval = 1;
9138
9139 do_cleanups (cleanup);
9140
9141 return retval;
9142 }
9143
9144 /* Return 1 if LOC is pointing to a permanent breakpoint,
9145 return 0 otherwise. */
9146
9147 static int
9148 bp_loc_is_permanent (struct bp_location *loc)
9149 {
9150 struct cleanup *cleanup;
9151 int retval;
9152
9153 gdb_assert (loc != NULL);
9154
9155 /* If we have a catchpoint or a watchpoint, just return 0. We should not
9156 attempt to read from the addresses the locations of these breakpoint types
9157 point to. program_breakpoint_here_p, below, will attempt to read
9158 memory. */
9159 if (!breakpoint_address_is_meaningful (loc->owner))
9160 return 0;
9161
9162 cleanup = save_current_space_and_thread ();
9163 switch_to_program_space_and_thread (loc->pspace);
9164
9165 retval = program_breakpoint_here_p (loc->gdbarch, loc->address);
9166
9167 do_cleanups (cleanup);
9168
9169 return retval;
9170 }
9171
9172 /* Build a command list for the dprintf corresponding to the current
9173 settings of the dprintf style options. */
9174
9175 static void
9176 update_dprintf_command_list (struct breakpoint *b)
9177 {
9178 char *dprintf_args = b->extra_string;
9179 char *printf_line = NULL;
9180
9181 if (!dprintf_args)
9182 return;
9183
9184 dprintf_args = skip_spaces (dprintf_args);
9185
9186 /* Allow a comma, as it may have terminated a location, but don't
9187 insist on it. */
9188 if (*dprintf_args == ',')
9189 ++dprintf_args;
9190 dprintf_args = skip_spaces (dprintf_args);
9191
9192 if (*dprintf_args != '"')
9193 error (_("Bad format string, missing '\"'."));
9194
9195 if (strcmp (dprintf_style, dprintf_style_gdb) == 0)
9196 printf_line = xstrprintf ("printf %s", dprintf_args);
9197 else if (strcmp (dprintf_style, dprintf_style_call) == 0)
9198 {
9199 if (!dprintf_function)
9200 error (_("No function supplied for dprintf call"));
9201
9202 if (dprintf_channel && strlen (dprintf_channel) > 0)
9203 printf_line = xstrprintf ("call (void) %s (%s,%s)",
9204 dprintf_function,
9205 dprintf_channel,
9206 dprintf_args);
9207 else
9208 printf_line = xstrprintf ("call (void) %s (%s)",
9209 dprintf_function,
9210 dprintf_args);
9211 }
9212 else if (strcmp (dprintf_style, dprintf_style_agent) == 0)
9213 {
9214 if (target_can_run_breakpoint_commands ())
9215 printf_line = xstrprintf ("agent-printf %s", dprintf_args);
9216 else
9217 {
9218 warning (_("Target cannot run dprintf commands, falling back to GDB printf"));
9219 printf_line = xstrprintf ("printf %s", dprintf_args);
9220 }
9221 }
9222 else
9223 internal_error (__FILE__, __LINE__,
9224 _("Invalid dprintf style."));
9225
9226 gdb_assert (printf_line != NULL);
9227 /* Manufacture a printf sequence. */
9228 {
9229 struct command_line *printf_cmd_line = XNEW (struct command_line);
9230
9231 printf_cmd_line->control_type = simple_control;
9232 printf_cmd_line->body_count = 0;
9233 printf_cmd_line->body_list = NULL;
9234 printf_cmd_line->next = NULL;
9235 printf_cmd_line->line = printf_line;
9236
9237 breakpoint_set_commands (b, printf_cmd_line);
9238 }
9239 }
9240
9241 /* Update all dprintf commands, making their command lists reflect
9242 current style settings. */
9243
9244 static void
9245 update_dprintf_commands (char *args, int from_tty,
9246 struct cmd_list_element *c)
9247 {
9248 struct breakpoint *b;
9249
9250 ALL_BREAKPOINTS (b)
9251 {
9252 if (b->type == bp_dprintf)
9253 update_dprintf_command_list (b);
9254 }
9255 }
9256
9257 /* Create a breakpoint with SAL as location. Use LOCATION
9258 as a description of the location, and COND_STRING
9259 as condition expression. If LOCATION is NULL then create an
9260 "address location" from the address in the SAL. */
9261
9262 static void
9263 init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
9264 struct symtabs_and_lines sals,
9265 struct event_location *location,
9266 char *filter, char *cond_string,
9267 char *extra_string,
9268 enum bptype type, enum bpdisp disposition,
9269 int thread, int task, int ignore_count,
9270 const struct breakpoint_ops *ops, int from_tty,
9271 int enabled, int internal, unsigned flags,
9272 int display_canonical)
9273 {
9274 int i;
9275
9276 if (type == bp_hardware_breakpoint)
9277 {
9278 int target_resources_ok;
9279
9280 i = hw_breakpoint_used_count ();
9281 target_resources_ok =
9282 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
9283 i + 1, 0);
9284 if (target_resources_ok == 0)
9285 error (_("No hardware breakpoint support in the target."));
9286 else if (target_resources_ok < 0)
9287 error (_("Hardware breakpoints used exceeds limit."));
9288 }
9289
9290 gdb_assert (sals.nelts > 0);
9291
9292 for (i = 0; i < sals.nelts; ++i)
9293 {
9294 struct symtab_and_line sal = sals.sals[i];
9295 struct bp_location *loc;
9296
9297 if (from_tty)
9298 {
9299 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
9300 if (!loc_gdbarch)
9301 loc_gdbarch = gdbarch;
9302
9303 describe_other_breakpoints (loc_gdbarch,
9304 sal.pspace, sal.pc, sal.section, thread);
9305 }
9306
9307 if (i == 0)
9308 {
9309 init_raw_breakpoint (b, gdbarch, sal, type, ops);
9310 b->thread = thread;
9311 b->task = task;
9312
9313 b->cond_string = cond_string;
9314 b->extra_string = extra_string;
9315 b->ignore_count = ignore_count;
9316 b->enable_state = enabled ? bp_enabled : bp_disabled;
9317 b->disposition = disposition;
9318
9319 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
9320 b->loc->inserted = 1;
9321
9322 if (type == bp_static_tracepoint)
9323 {
9324 struct tracepoint *t = (struct tracepoint *) b;
9325 struct static_tracepoint_marker marker;
9326
9327 if (strace_marker_p (b))
9328 {
9329 /* We already know the marker exists, otherwise, we
9330 wouldn't see a sal for it. */
9331 const char *p = &event_location_to_string (b->location)[3];
9332 const char *endp;
9333 char *marker_str;
9334
9335 p = skip_spaces_const (p);
9336
9337 endp = skip_to_space_const (p);
9338
9339 marker_str = savestring (p, endp - p);
9340 t->static_trace_marker_id = marker_str;
9341
9342 printf_filtered (_("Probed static tracepoint "
9343 "marker \"%s\"\n"),
9344 t->static_trace_marker_id);
9345 }
9346 else if (target_static_tracepoint_marker_at (sal.pc, &marker))
9347 {
9348 t->static_trace_marker_id = xstrdup (marker.str_id);
9349 release_static_tracepoint_marker (&marker);
9350
9351 printf_filtered (_("Probed static tracepoint "
9352 "marker \"%s\"\n"),
9353 t->static_trace_marker_id);
9354 }
9355 else
9356 warning (_("Couldn't determine the static "
9357 "tracepoint marker to probe"));
9358 }
9359
9360 loc = b->loc;
9361 }
9362 else
9363 {
9364 loc = add_location_to_breakpoint (b, &sal);
9365 if ((flags & CREATE_BREAKPOINT_FLAGS_INSERTED) != 0)
9366 loc->inserted = 1;
9367 }
9368
9369 if (b->cond_string)
9370 {
9371 const char *arg = b->cond_string;
9372
9373 loc->cond = parse_exp_1 (&arg, loc->address,
9374 block_for_pc (loc->address), 0);
9375 if (*arg)
9376 error (_("Garbage '%s' follows condition"), arg);
9377 }
9378
9379 /* Dynamic printf requires and uses additional arguments on the
9380 command line, otherwise it's an error. */
9381 if (type == bp_dprintf)
9382 {
9383 if (b->extra_string)
9384 update_dprintf_command_list (b);
9385 else
9386 error (_("Format string required"));
9387 }
9388 else if (b->extra_string)
9389 error (_("Garbage '%s' at end of command"), b->extra_string);
9390 }
9391
9392 b->display_canonical = display_canonical;
9393 if (location != NULL)
9394 b->location = location;
9395 else
9396 {
9397 const char *addr_string = NULL;
9398 int addr_string_len = 0;
9399
9400 if (location != NULL)
9401 addr_string = event_location_to_string (location);
9402 if (addr_string != NULL)
9403 addr_string_len = strlen (addr_string);
9404
9405 b->location = new_address_location (b->loc->address,
9406 addr_string, addr_string_len);
9407 }
9408 b->filter = filter;
9409 }
9410
9411 static void
9412 create_breakpoint_sal (struct gdbarch *gdbarch,
9413 struct symtabs_and_lines sals,
9414 struct event_location *location,
9415 char *filter, char *cond_string,
9416 char *extra_string,
9417 enum bptype type, enum bpdisp disposition,
9418 int thread, int task, int ignore_count,
9419 const struct breakpoint_ops *ops, int from_tty,
9420 int enabled, int internal, unsigned flags,
9421 int display_canonical)
9422 {
9423 struct breakpoint *b;
9424 struct cleanup *old_chain;
9425
9426 if (is_tracepoint_type (type))
9427 {
9428 struct tracepoint *t;
9429
9430 t = XCNEW (struct tracepoint);
9431 b = &t->base;
9432 }
9433 else
9434 b = XNEW (struct breakpoint);
9435
9436 old_chain = make_cleanup (xfree, b);
9437
9438 init_breakpoint_sal (b, gdbarch,
9439 sals, location,
9440 filter, cond_string, extra_string,
9441 type, disposition,
9442 thread, task, ignore_count,
9443 ops, from_tty,
9444 enabled, internal, flags,
9445 display_canonical);
9446 discard_cleanups (old_chain);
9447
9448 install_breakpoint (internal, b, 0);
9449 }
9450
9451 /* Add SALS.nelts breakpoints to the breakpoint table. For each
9452 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
9453 value. COND_STRING, if not NULL, specified the condition to be
9454 used for all breakpoints. Essentially the only case where
9455 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
9456 function. In that case, it's still not possible to specify
9457 separate conditions for different overloaded functions, so
9458 we take just a single condition string.
9459
9460 NOTE: If the function succeeds, the caller is expected to cleanup
9461 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
9462 array contents). If the function fails (error() is called), the
9463 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
9464 COND and SALS arrays and each of those arrays contents. */
9465
9466 static void
9467 create_breakpoints_sal (struct gdbarch *gdbarch,
9468 struct linespec_result *canonical,
9469 char *cond_string, char *extra_string,
9470 enum bptype type, enum bpdisp disposition,
9471 int thread, int task, int ignore_count,
9472 const struct breakpoint_ops *ops, int from_tty,
9473 int enabled, int internal, unsigned flags)
9474 {
9475 int i;
9476 struct linespec_sals *lsal;
9477
9478 if (canonical->pre_expanded)
9479 gdb_assert (VEC_length (linespec_sals, canonical->sals) == 1);
9480
9481 for (i = 0; VEC_iterate (linespec_sals, canonical->sals, i, lsal); ++i)
9482 {
9483 /* Note that 'location' can be NULL in the case of a plain
9484 'break', without arguments. */
9485 struct event_location *location
9486 = (canonical->location != NULL
9487 ? copy_event_location (canonical->location) : NULL);
9488 char *filter_string = lsal->canonical ? xstrdup (lsal->canonical) : NULL;
9489 struct cleanup *inner = make_cleanup_delete_event_location (location);
9490
9491 make_cleanup (xfree, filter_string);
9492 create_breakpoint_sal (gdbarch, lsal->sals,
9493 location,
9494 filter_string,
9495 cond_string, extra_string,
9496 type, disposition,
9497 thread, task, ignore_count, ops,
9498 from_tty, enabled, internal, flags,
9499 canonical->special_display);
9500 discard_cleanups (inner);
9501 }
9502 }
9503
9504 /* Parse LOCATION which is assumed to be a SAL specification possibly
9505 followed by conditionals. On return, SALS contains an array of SAL
9506 addresses found. LOCATION points to the end of the SAL (for
9507 linespec locations).
9508
9509 The array and the line spec strings are allocated on the heap, it is
9510 the caller's responsibility to free them. */
9511
9512 static void
9513 parse_breakpoint_sals (const struct event_location *location,
9514 struct linespec_result *canonical)
9515 {
9516 struct symtab_and_line cursal;
9517
9518 if (event_location_type (location) == LINESPEC_LOCATION)
9519 {
9520 const char *address = get_linespec_location (location);
9521
9522 if (address == NULL)
9523 {
9524 /* The last displayed codepoint, if it's valid, is our default
9525 breakpoint address. */
9526 if (last_displayed_sal_is_valid ())
9527 {
9528 struct linespec_sals lsal;
9529 struct symtab_and_line sal;
9530 CORE_ADDR pc;
9531
9532 init_sal (&sal); /* Initialize to zeroes. */
9533 lsal.sals.sals = XNEW (struct symtab_and_line);
9534
9535 /* Set sal's pspace, pc, symtab, and line to the values
9536 corresponding to the last call to print_frame_info.
9537 Be sure to reinitialize LINE with NOTCURRENT == 0
9538 as the breakpoint line number is inappropriate otherwise.
9539 find_pc_line would adjust PC, re-set it back. */
9540 get_last_displayed_sal (&sal);
9541 pc = sal.pc;
9542 sal = find_pc_line (pc, 0);
9543
9544 /* "break" without arguments is equivalent to "break *PC"
9545 where PC is the last displayed codepoint's address. So
9546 make sure to set sal.explicit_pc to prevent GDB from
9547 trying to expand the list of sals to include all other
9548 instances with the same symtab and line. */
9549 sal.pc = pc;
9550 sal.explicit_pc = 1;
9551
9552 lsal.sals.sals[0] = sal;
9553 lsal.sals.nelts = 1;
9554 lsal.canonical = NULL;
9555
9556 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
9557 return;
9558 }
9559 else
9560 error (_("No default breakpoint address now."));
9561 }
9562 }
9563
9564 /* Force almost all breakpoints to be in terms of the
9565 current_source_symtab (which is decode_line_1's default).
9566 This should produce the results we want almost all of the
9567 time while leaving default_breakpoint_* alone.
9568
9569 ObjC: However, don't match an Objective-C method name which
9570 may have a '+' or '-' succeeded by a '['. */
9571 cursal = get_current_source_symtab_and_line ();
9572 if (last_displayed_sal_is_valid ())
9573 {
9574 const char *address = NULL;
9575
9576 if (event_location_type (location) == LINESPEC_LOCATION)
9577 address = get_linespec_location (location);
9578
9579 if (!cursal.symtab
9580 || (address != NULL
9581 && strchr ("+-", address[0]) != NULL
9582 && address[1] != '['))
9583 {
9584 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
9585 get_last_displayed_symtab (),
9586 get_last_displayed_line (),
9587 canonical, NULL, NULL);
9588 return;
9589 }
9590 }
9591
9592 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, NULL,
9593 cursal.symtab, cursal.line, canonical, NULL, NULL);
9594 }
9595
9596
9597 /* Convert each SAL into a real PC. Verify that the PC can be
9598 inserted as a breakpoint. If it can't throw an error. */
9599
9600 static void
9601 breakpoint_sals_to_pc (struct symtabs_and_lines *sals)
9602 {
9603 int i;
9604
9605 for (i = 0; i < sals->nelts; i++)
9606 resolve_sal_pc (&sals->sals[i]);
9607 }
9608
9609 /* Fast tracepoints may have restrictions on valid locations. For
9610 instance, a fast tracepoint using a jump instead of a trap will
9611 likely have to overwrite more bytes than a trap would, and so can
9612 only be placed where the instruction is longer than the jump, or a
9613 multi-instruction sequence does not have a jump into the middle of
9614 it, etc. */
9615
9616 static void
9617 check_fast_tracepoint_sals (struct gdbarch *gdbarch,
9618 struct symtabs_and_lines *sals)
9619 {
9620 int i, rslt;
9621 struct symtab_and_line *sal;
9622 char *msg;
9623 struct cleanup *old_chain;
9624
9625 for (i = 0; i < sals->nelts; i++)
9626 {
9627 struct gdbarch *sarch;
9628
9629 sal = &sals->sals[i];
9630
9631 sarch = get_sal_arch (*sal);
9632 /* We fall back to GDBARCH if there is no architecture
9633 associated with SAL. */
9634 if (sarch == NULL)
9635 sarch = gdbarch;
9636 rslt = gdbarch_fast_tracepoint_valid_at (sarch, sal->pc, &msg);
9637 old_chain = make_cleanup (xfree, msg);
9638
9639 if (!rslt)
9640 error (_("May not have a fast tracepoint at 0x%s%s"),
9641 paddress (sarch, sal->pc), (msg ? msg : ""));
9642
9643 do_cleanups (old_chain);
9644 }
9645 }
9646
9647 /* Given TOK, a string specification of condition and thread, as
9648 accepted by the 'break' command, extract the condition
9649 string and thread number and set *COND_STRING and *THREAD.
9650 PC identifies the context at which the condition should be parsed.
9651 If no condition is found, *COND_STRING is set to NULL.
9652 If no thread is found, *THREAD is set to -1. */
9653
9654 static void
9655 find_condition_and_thread (const char *tok, CORE_ADDR pc,
9656 char **cond_string, int *thread, int *task,
9657 char **rest)
9658 {
9659 *cond_string = NULL;
9660 *thread = -1;
9661 *task = 0;
9662 *rest = NULL;
9663
9664 while (tok && *tok)
9665 {
9666 const char *end_tok;
9667 int toklen;
9668 const char *cond_start = NULL;
9669 const char *cond_end = NULL;
9670
9671 tok = skip_spaces_const (tok);
9672
9673 if ((*tok == '"' || *tok == ',') && rest)
9674 {
9675 *rest = savestring (tok, strlen (tok));
9676 return;
9677 }
9678
9679 end_tok = skip_to_space_const (tok);
9680
9681 toklen = end_tok - tok;
9682
9683 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
9684 {
9685 struct expression *expr;
9686
9687 tok = cond_start = end_tok + 1;
9688 expr = parse_exp_1 (&tok, pc, block_for_pc (pc), 0);
9689 xfree (expr);
9690 cond_end = tok;
9691 *cond_string = savestring (cond_start, cond_end - cond_start);
9692 }
9693 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
9694 {
9695 const char *tmptok;
9696 struct thread_info *thr;
9697
9698 tok = end_tok + 1;
9699 thr = parse_thread_id (tok, &tmptok);
9700 if (tok == tmptok)
9701 error (_("Junk after thread keyword."));
9702 *thread = thr->global_num;
9703 tok = tmptok;
9704 }
9705 else if (toklen >= 1 && strncmp (tok, "task", toklen) == 0)
9706 {
9707 char *tmptok;
9708
9709 tok = end_tok + 1;
9710 *task = strtol (tok, &tmptok, 0);
9711 if (tok == tmptok)
9712 error (_("Junk after task keyword."));
9713 if (!valid_task_id (*task))
9714 error (_("Unknown task %d."), *task);
9715 tok = tmptok;
9716 }
9717 else if (rest)
9718 {
9719 *rest = savestring (tok, strlen (tok));
9720 return;
9721 }
9722 else
9723 error (_("Junk at end of arguments."));
9724 }
9725 }
9726
9727 /* Decode a static tracepoint marker spec. */
9728
9729 static struct symtabs_and_lines
9730 decode_static_tracepoint_spec (const char **arg_p)
9731 {
9732 VEC(static_tracepoint_marker_p) *markers = NULL;
9733 struct symtabs_and_lines sals;
9734 struct cleanup *old_chain;
9735 const char *p = &(*arg_p)[3];
9736 const char *endp;
9737 char *marker_str;
9738 int i;
9739
9740 p = skip_spaces_const (p);
9741
9742 endp = skip_to_space_const (p);
9743
9744 marker_str = savestring (p, endp - p);
9745 old_chain = make_cleanup (xfree, marker_str);
9746
9747 markers = target_static_tracepoint_markers_by_strid (marker_str);
9748 if (VEC_empty(static_tracepoint_marker_p, markers))
9749 error (_("No known static tracepoint marker named %s"), marker_str);
9750
9751 sals.nelts = VEC_length(static_tracepoint_marker_p, markers);
9752 sals.sals = XNEWVEC (struct symtab_and_line, sals.nelts);
9753
9754 for (i = 0; i < sals.nelts; i++)
9755 {
9756 struct static_tracepoint_marker *marker;
9757
9758 marker = VEC_index (static_tracepoint_marker_p, markers, i);
9759
9760 init_sal (&sals.sals[i]);
9761
9762 sals.sals[i] = find_pc_line (marker->address, 0);
9763 sals.sals[i].pc = marker->address;
9764
9765 release_static_tracepoint_marker (marker);
9766 }
9767
9768 do_cleanups (old_chain);
9769
9770 *arg_p = endp;
9771 return sals;
9772 }
9773
9774 /* See breakpoint.h. */
9775
9776 int
9777 create_breakpoint (struct gdbarch *gdbarch,
9778 const struct event_location *location, char *cond_string,
9779 int thread, char *extra_string,
9780 int parse_extra,
9781 int tempflag, enum bptype type_wanted,
9782 int ignore_count,
9783 enum auto_boolean pending_break_support,
9784 const struct breakpoint_ops *ops,
9785 int from_tty, int enabled, int internal,
9786 unsigned flags)
9787 {
9788 struct linespec_result canonical;
9789 struct cleanup *old_chain;
9790 struct cleanup *bkpt_chain = NULL;
9791 int pending = 0;
9792 int task = 0;
9793 int prev_bkpt_count = breakpoint_count;
9794
9795 gdb_assert (ops != NULL);
9796
9797 /* If extra_string isn't useful, set it to NULL. */
9798 if (extra_string != NULL && *extra_string == '\0')
9799 extra_string = NULL;
9800
9801 init_linespec_result (&canonical);
9802
9803 TRY
9804 {
9805 ops->create_sals_from_location (location, &canonical, type_wanted);
9806 }
9807 CATCH (e, RETURN_MASK_ERROR)
9808 {
9809 /* If caller is interested in rc value from parse, set
9810 value. */
9811 if (e.error == NOT_FOUND_ERROR)
9812 {
9813 /* If pending breakpoint support is turned off, throw
9814 error. */
9815
9816 if (pending_break_support == AUTO_BOOLEAN_FALSE)
9817 throw_exception (e);
9818
9819 exception_print (gdb_stderr, e);
9820
9821 /* If pending breakpoint support is auto query and the user
9822 selects no, then simply return the error code. */
9823 if (pending_break_support == AUTO_BOOLEAN_AUTO
9824 && !nquery (_("Make %s pending on future shared library load? "),
9825 bptype_string (type_wanted)))
9826 return 0;
9827
9828 /* At this point, either the user was queried about setting
9829 a pending breakpoint and selected yes, or pending
9830 breakpoint behavior is on and thus a pending breakpoint
9831 is defaulted on behalf of the user. */
9832 pending = 1;
9833 }
9834 else
9835 throw_exception (e);
9836 }
9837 END_CATCH
9838
9839 if (!pending && VEC_empty (linespec_sals, canonical.sals))
9840 return 0;
9841
9842 /* Create a chain of things that always need to be cleaned up. */
9843 old_chain = make_cleanup_destroy_linespec_result (&canonical);
9844
9845 /* ----------------------------- SNIP -----------------------------
9846 Anything added to the cleanup chain beyond this point is assumed
9847 to be part of a breakpoint. If the breakpoint create succeeds
9848 then the memory is not reclaimed. */
9849 bkpt_chain = make_cleanup (null_cleanup, 0);
9850
9851 /* Resolve all line numbers to PC's and verify that the addresses
9852 are ok for the target. */
9853 if (!pending)
9854 {
9855 int ix;
9856 struct linespec_sals *iter;
9857
9858 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
9859 breakpoint_sals_to_pc (&iter->sals);
9860 }
9861
9862 /* Fast tracepoints may have additional restrictions on location. */
9863 if (!pending && type_wanted == bp_fast_tracepoint)
9864 {
9865 int ix;
9866 struct linespec_sals *iter;
9867
9868 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
9869 check_fast_tracepoint_sals (gdbarch, &iter->sals);
9870 }
9871
9872 /* Verify that condition can be parsed, before setting any
9873 breakpoints. Allocate a separate condition expression for each
9874 breakpoint. */
9875 if (!pending)
9876 {
9877 if (parse_extra)
9878 {
9879 char *rest;
9880 struct linespec_sals *lsal;
9881
9882 lsal = VEC_index (linespec_sals, canonical.sals, 0);
9883
9884 /* Here we only parse 'arg' to separate condition
9885 from thread number, so parsing in context of first
9886 sal is OK. When setting the breakpoint we'll
9887 re-parse it in context of each sal. */
9888
9889 find_condition_and_thread (extra_string, lsal->sals.sals[0].pc,
9890 &cond_string, &thread, &task, &rest);
9891 if (cond_string)
9892 make_cleanup (xfree, cond_string);
9893 if (rest)
9894 make_cleanup (xfree, rest);
9895 if (rest)
9896 extra_string = rest;
9897 else
9898 extra_string = NULL;
9899 }
9900 else
9901 {
9902 if (type_wanted != bp_dprintf
9903 && extra_string != NULL && *extra_string != '\0')
9904 error (_("Garbage '%s' at end of location"), extra_string);
9905
9906 /* Create a private copy of condition string. */
9907 if (cond_string)
9908 {
9909 cond_string = xstrdup (cond_string);
9910 make_cleanup (xfree, cond_string);
9911 }
9912 /* Create a private copy of any extra string. */
9913 if (extra_string)
9914 {
9915 extra_string = xstrdup (extra_string);
9916 make_cleanup (xfree, extra_string);
9917 }
9918 }
9919
9920 ops->create_breakpoints_sal (gdbarch, &canonical,
9921 cond_string, extra_string, type_wanted,
9922 tempflag ? disp_del : disp_donttouch,
9923 thread, task, ignore_count, ops,
9924 from_tty, enabled, internal, flags);
9925 }
9926 else
9927 {
9928 struct breakpoint *b;
9929
9930 if (is_tracepoint_type (type_wanted))
9931 {
9932 struct tracepoint *t;
9933
9934 t = XCNEW (struct tracepoint);
9935 b = &t->base;
9936 }
9937 else
9938 b = XNEW (struct breakpoint);
9939
9940 init_raw_breakpoint_without_location (b, gdbarch, type_wanted, ops);
9941 b->location = copy_event_location (location);
9942
9943 if (parse_extra)
9944 b->cond_string = NULL;
9945 else
9946 {
9947 /* Create a private copy of condition string. */
9948 if (cond_string)
9949 {
9950 cond_string = xstrdup (cond_string);
9951 make_cleanup (xfree, cond_string);
9952 }
9953 b->cond_string = cond_string;
9954 b->thread = thread;
9955 }
9956
9957 /* Create a private copy of any extra string. */
9958 if (extra_string != NULL)
9959 {
9960 extra_string = xstrdup (extra_string);
9961 make_cleanup (xfree, extra_string);
9962 }
9963 b->extra_string = extra_string;
9964 b->ignore_count = ignore_count;
9965 b->disposition = tempflag ? disp_del : disp_donttouch;
9966 b->condition_not_parsed = 1;
9967 b->enable_state = enabled ? bp_enabled : bp_disabled;
9968 if ((type_wanted != bp_breakpoint
9969 && type_wanted != bp_hardware_breakpoint) || thread != -1)
9970 b->pspace = current_program_space;
9971
9972 install_breakpoint (internal, b, 0);
9973 }
9974
9975 if (VEC_length (linespec_sals, canonical.sals) > 1)
9976 {
9977 warning (_("Multiple breakpoints were set.\nUse the "
9978 "\"delete\" command to delete unwanted breakpoints."));
9979 prev_breakpoint_count = prev_bkpt_count;
9980 }
9981
9982 /* That's it. Discard the cleanups for data inserted into the
9983 breakpoint. */
9984 discard_cleanups (bkpt_chain);
9985 /* But cleanup everything else. */
9986 do_cleanups (old_chain);
9987
9988 /* error call may happen here - have BKPT_CHAIN already discarded. */
9989 update_global_location_list (UGLL_MAY_INSERT);
9990
9991 return 1;
9992 }
9993
9994 /* Set a breakpoint.
9995 ARG is a string describing breakpoint address,
9996 condition, and thread.
9997 FLAG specifies if a breakpoint is hardware on,
9998 and if breakpoint is temporary, using BP_HARDWARE_FLAG
9999 and BP_TEMPFLAG. */
10000
10001 static void
10002 break_command_1 (char *arg, int flag, int from_tty)
10003 {
10004 int tempflag = flag & BP_TEMPFLAG;
10005 enum bptype type_wanted = (flag & BP_HARDWAREFLAG
10006 ? bp_hardware_breakpoint
10007 : bp_breakpoint);
10008 struct breakpoint_ops *ops;
10009 struct event_location *location;
10010 struct cleanup *cleanup;
10011
10012 location = string_to_event_location (&arg, current_language);
10013 cleanup = make_cleanup_delete_event_location (location);
10014
10015 /* Matching breakpoints on probes. */
10016 if (location != NULL
10017 && event_location_type (location) == PROBE_LOCATION)
10018 ops = &bkpt_probe_breakpoint_ops;
10019 else
10020 ops = &bkpt_breakpoint_ops;
10021
10022 create_breakpoint (get_current_arch (),
10023 location,
10024 NULL, 0, arg, 1 /* parse arg */,
10025 tempflag, type_wanted,
10026 0 /* Ignore count */,
10027 pending_break_support,
10028 ops,
10029 from_tty,
10030 1 /* enabled */,
10031 0 /* internal */,
10032 0);
10033 do_cleanups (cleanup);
10034 }
10035
10036 /* Helper function for break_command_1 and disassemble_command. */
10037
10038 void
10039 resolve_sal_pc (struct symtab_and_line *sal)
10040 {
10041 CORE_ADDR pc;
10042
10043 if (sal->pc == 0 && sal->symtab != NULL)
10044 {
10045 if (!find_line_pc (sal->symtab, sal->line, &pc))
10046 error (_("No line %d in file \"%s\"."),
10047 sal->line, symtab_to_filename_for_display (sal->symtab));
10048 sal->pc = pc;
10049
10050 /* If this SAL corresponds to a breakpoint inserted using a line
10051 number, then skip the function prologue if necessary. */
10052 if (sal->explicit_line)
10053 skip_prologue_sal (sal);
10054 }
10055
10056 if (sal->section == 0 && sal->symtab != NULL)
10057 {
10058 const struct blockvector *bv;
10059 const struct block *b;
10060 struct symbol *sym;
10061
10062 bv = blockvector_for_pc_sect (sal->pc, 0, &b,
10063 SYMTAB_COMPUNIT (sal->symtab));
10064 if (bv != NULL)
10065 {
10066 sym = block_linkage_function (b);
10067 if (sym != NULL)
10068 {
10069 fixup_symbol_section (sym, SYMTAB_OBJFILE (sal->symtab));
10070 sal->section = SYMBOL_OBJ_SECTION (SYMTAB_OBJFILE (sal->symtab),
10071 sym);
10072 }
10073 else
10074 {
10075 /* It really is worthwhile to have the section, so we'll
10076 just have to look harder. This case can be executed
10077 if we have line numbers but no functions (as can
10078 happen in assembly source). */
10079
10080 struct bound_minimal_symbol msym;
10081 struct cleanup *old_chain = save_current_space_and_thread ();
10082
10083 switch_to_program_space_and_thread (sal->pspace);
10084
10085 msym = lookup_minimal_symbol_by_pc (sal->pc);
10086 if (msym.minsym)
10087 sal->section = MSYMBOL_OBJ_SECTION (msym.objfile, msym.minsym);
10088
10089 do_cleanups (old_chain);
10090 }
10091 }
10092 }
10093 }
10094
10095 void
10096 break_command (char *arg, int from_tty)
10097 {
10098 break_command_1 (arg, 0, from_tty);
10099 }
10100
10101 void
10102 tbreak_command (char *arg, int from_tty)
10103 {
10104 break_command_1 (arg, BP_TEMPFLAG, from_tty);
10105 }
10106
10107 static void
10108 hbreak_command (char *arg, int from_tty)
10109 {
10110 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
10111 }
10112
10113 static void
10114 thbreak_command (char *arg, int from_tty)
10115 {
10116 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
10117 }
10118
10119 static void
10120 stop_command (char *arg, int from_tty)
10121 {
10122 printf_filtered (_("Specify the type of breakpoint to set.\n\
10123 Usage: stop in <function | address>\n\
10124 stop at <line>\n"));
10125 }
10126
10127 static void
10128 stopin_command (char *arg, int from_tty)
10129 {
10130 int badInput = 0;
10131
10132 if (arg == (char *) NULL)
10133 badInput = 1;
10134 else if (*arg != '*')
10135 {
10136 char *argptr = arg;
10137 int hasColon = 0;
10138
10139 /* Look for a ':'. If this is a line number specification, then
10140 say it is bad, otherwise, it should be an address or
10141 function/method name. */
10142 while (*argptr && !hasColon)
10143 {
10144 hasColon = (*argptr == ':');
10145 argptr++;
10146 }
10147
10148 if (hasColon)
10149 badInput = (*argptr != ':'); /* Not a class::method */
10150 else
10151 badInput = isdigit (*arg); /* a simple line number */
10152 }
10153
10154 if (badInput)
10155 printf_filtered (_("Usage: stop in <function | address>\n"));
10156 else
10157 break_command_1 (arg, 0, from_tty);
10158 }
10159
10160 static void
10161 stopat_command (char *arg, int from_tty)
10162 {
10163 int badInput = 0;
10164
10165 if (arg == (char *) NULL || *arg == '*') /* no line number */
10166 badInput = 1;
10167 else
10168 {
10169 char *argptr = arg;
10170 int hasColon = 0;
10171
10172 /* Look for a ':'. If there is a '::' then get out, otherwise
10173 it is probably a line number. */
10174 while (*argptr && !hasColon)
10175 {
10176 hasColon = (*argptr == ':');
10177 argptr++;
10178 }
10179
10180 if (hasColon)
10181 badInput = (*argptr == ':'); /* we have class::method */
10182 else
10183 badInput = !isdigit (*arg); /* not a line number */
10184 }
10185
10186 if (badInput)
10187 printf_filtered (_("Usage: stop at <line>\n"));
10188 else
10189 break_command_1 (arg, 0, from_tty);
10190 }
10191
10192 /* The dynamic printf command is mostly like a regular breakpoint, but
10193 with a prewired command list consisting of a single output command,
10194 built from extra arguments supplied on the dprintf command
10195 line. */
10196
10197 static void
10198 dprintf_command (char *arg, int from_tty)
10199 {
10200 struct event_location *location;
10201 struct cleanup *cleanup;
10202
10203 location = string_to_event_location (&arg, current_language);
10204 cleanup = make_cleanup_delete_event_location (location);
10205
10206 /* If non-NULL, ARG should have been advanced past the location;
10207 the next character must be ','. */
10208 if (arg != NULL)
10209 {
10210 if (arg[0] != ',' || arg[1] == '\0')
10211 error (_("Format string required"));
10212 else
10213 {
10214 /* Skip the comma. */
10215 ++arg;
10216 }
10217 }
10218
10219 create_breakpoint (get_current_arch (),
10220 location,
10221 NULL, 0, arg, 1 /* parse arg */,
10222 0, bp_dprintf,
10223 0 /* Ignore count */,
10224 pending_break_support,
10225 &dprintf_breakpoint_ops,
10226 from_tty,
10227 1 /* enabled */,
10228 0 /* internal */,
10229 0);
10230 do_cleanups (cleanup);
10231 }
10232
10233 static void
10234 agent_printf_command (char *arg, int from_tty)
10235 {
10236 error (_("May only run agent-printf on the target"));
10237 }
10238
10239 /* Implement the "breakpoint_hit" breakpoint_ops method for
10240 ranged breakpoints. */
10241
10242 static int
10243 breakpoint_hit_ranged_breakpoint (const struct bp_location *bl,
10244 struct address_space *aspace,
10245 CORE_ADDR bp_addr,
10246 const struct target_waitstatus *ws)
10247 {
10248 if (ws->kind != TARGET_WAITKIND_STOPPED
10249 || ws->value.sig != GDB_SIGNAL_TRAP)
10250 return 0;
10251
10252 return breakpoint_address_match_range (bl->pspace->aspace, bl->address,
10253 bl->length, aspace, bp_addr);
10254 }
10255
10256 /* Implement the "resources_needed" breakpoint_ops method for
10257 ranged breakpoints. */
10258
10259 static int
10260 resources_needed_ranged_breakpoint (const struct bp_location *bl)
10261 {
10262 return target_ranged_break_num_registers ();
10263 }
10264
10265 /* Implement the "print_it" breakpoint_ops method for
10266 ranged breakpoints. */
10267
10268 static enum print_stop_action
10269 print_it_ranged_breakpoint (bpstat bs)
10270 {
10271 struct breakpoint *b = bs->breakpoint_at;
10272 struct bp_location *bl = b->loc;
10273 struct ui_out *uiout = current_uiout;
10274
10275 gdb_assert (b->type == bp_hardware_breakpoint);
10276
10277 /* Ranged breakpoints have only one location. */
10278 gdb_assert (bl && bl->next == NULL);
10279
10280 annotate_breakpoint (b->number);
10281
10282 maybe_print_thread_hit_breakpoint (uiout);
10283
10284 if (b->disposition == disp_del)
10285 ui_out_text (uiout, "Temporary ranged breakpoint ");
10286 else
10287 ui_out_text (uiout, "Ranged breakpoint ");
10288 if (ui_out_is_mi_like_p (uiout))
10289 {
10290 ui_out_field_string (uiout, "reason",
10291 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
10292 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
10293 }
10294 ui_out_field_int (uiout, "bkptno", b->number);
10295 ui_out_text (uiout, ", ");
10296
10297 return PRINT_SRC_AND_LOC;
10298 }
10299
10300 /* Implement the "print_one" breakpoint_ops method for
10301 ranged breakpoints. */
10302
10303 static void
10304 print_one_ranged_breakpoint (struct breakpoint *b,
10305 struct bp_location **last_loc)
10306 {
10307 struct bp_location *bl = b->loc;
10308 struct value_print_options opts;
10309 struct ui_out *uiout = current_uiout;
10310
10311 /* Ranged breakpoints have only one location. */
10312 gdb_assert (bl && bl->next == NULL);
10313
10314 get_user_print_options (&opts);
10315
10316 if (opts.addressprint)
10317 /* We don't print the address range here, it will be printed later
10318 by print_one_detail_ranged_breakpoint. */
10319 ui_out_field_skip (uiout, "addr");
10320 annotate_field (5);
10321 print_breakpoint_location (b, bl);
10322 *last_loc = bl;
10323 }
10324
10325 /* Implement the "print_one_detail" breakpoint_ops method for
10326 ranged breakpoints. */
10327
10328 static void
10329 print_one_detail_ranged_breakpoint (const struct breakpoint *b,
10330 struct ui_out *uiout)
10331 {
10332 CORE_ADDR address_start, address_end;
10333 struct bp_location *bl = b->loc;
10334 struct ui_file *stb = mem_fileopen ();
10335 struct cleanup *cleanup = make_cleanup_ui_file_delete (stb);
10336
10337 gdb_assert (bl);
10338
10339 address_start = bl->address;
10340 address_end = address_start + bl->length - 1;
10341
10342 ui_out_text (uiout, "\taddress range: ");
10343 fprintf_unfiltered (stb, "[%s, %s]",
10344 print_core_address (bl->gdbarch, address_start),
10345 print_core_address (bl->gdbarch, address_end));
10346 ui_out_field_stream (uiout, "addr", stb);
10347 ui_out_text (uiout, "\n");
10348
10349 do_cleanups (cleanup);
10350 }
10351
10352 /* Implement the "print_mention" breakpoint_ops method for
10353 ranged breakpoints. */
10354
10355 static void
10356 print_mention_ranged_breakpoint (struct breakpoint *b)
10357 {
10358 struct bp_location *bl = b->loc;
10359 struct ui_out *uiout = current_uiout;
10360
10361 gdb_assert (bl);
10362 gdb_assert (b->type == bp_hardware_breakpoint);
10363
10364 if (ui_out_is_mi_like_p (uiout))
10365 return;
10366
10367 printf_filtered (_("Hardware assisted ranged breakpoint %d from %s to %s."),
10368 b->number, paddress (bl->gdbarch, bl->address),
10369 paddress (bl->gdbarch, bl->address + bl->length - 1));
10370 }
10371
10372 /* Implement the "print_recreate" breakpoint_ops method for
10373 ranged breakpoints. */
10374
10375 static void
10376 print_recreate_ranged_breakpoint (struct breakpoint *b, struct ui_file *fp)
10377 {
10378 fprintf_unfiltered (fp, "break-range %s, %s",
10379 event_location_to_string (b->location),
10380 event_location_to_string (b->location_range_end));
10381 print_recreate_thread (b, fp);
10382 }
10383
10384 /* The breakpoint_ops structure to be used in ranged breakpoints. */
10385
10386 static struct breakpoint_ops ranged_breakpoint_ops;
10387
10388 /* Find the address where the end of the breakpoint range should be
10389 placed, given the SAL of the end of the range. This is so that if
10390 the user provides a line number, the end of the range is set to the
10391 last instruction of the given line. */
10392
10393 static CORE_ADDR
10394 find_breakpoint_range_end (struct symtab_and_line sal)
10395 {
10396 CORE_ADDR end;
10397
10398 /* If the user provided a PC value, use it. Otherwise,
10399 find the address of the end of the given location. */
10400 if (sal.explicit_pc)
10401 end = sal.pc;
10402 else
10403 {
10404 int ret;
10405 CORE_ADDR start;
10406
10407 ret = find_line_pc_range (sal, &start, &end);
10408 if (!ret)
10409 error (_("Could not find location of the end of the range."));
10410
10411 /* find_line_pc_range returns the start of the next line. */
10412 end--;
10413 }
10414
10415 return end;
10416 }
10417
10418 /* Implement the "break-range" CLI command. */
10419
10420 static void
10421 break_range_command (char *arg, int from_tty)
10422 {
10423 char *arg_start, *addr_string_start;
10424 struct linespec_result canonical_start, canonical_end;
10425 int bp_count, can_use_bp, length;
10426 CORE_ADDR end;
10427 struct breakpoint *b;
10428 struct symtab_and_line sal_start, sal_end;
10429 struct cleanup *cleanup_bkpt;
10430 struct linespec_sals *lsal_start, *lsal_end;
10431 struct event_location *start_location, *end_location;
10432
10433 /* We don't support software ranged breakpoints. */
10434 if (target_ranged_break_num_registers () < 0)
10435 error (_("This target does not support hardware ranged breakpoints."));
10436
10437 bp_count = hw_breakpoint_used_count ();
10438 bp_count += target_ranged_break_num_registers ();
10439 can_use_bp = target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
10440 bp_count, 0);
10441 if (can_use_bp < 0)
10442 error (_("Hardware breakpoints used exceeds limit."));
10443
10444 arg = skip_spaces (arg);
10445 if (arg == NULL || arg[0] == '\0')
10446 error(_("No address range specified."));
10447
10448 init_linespec_result (&canonical_start);
10449
10450 arg_start = arg;
10451 start_location = string_to_event_location (&arg, current_language);
10452 cleanup_bkpt = make_cleanup_delete_event_location (start_location);
10453 parse_breakpoint_sals (start_location, &canonical_start);
10454 make_cleanup_destroy_linespec_result (&canonical_start);
10455
10456 if (arg[0] != ',')
10457 error (_("Too few arguments."));
10458 else if (VEC_empty (linespec_sals, canonical_start.sals))
10459 error (_("Could not find location of the beginning of the range."));
10460
10461 lsal_start = VEC_index (linespec_sals, canonical_start.sals, 0);
10462
10463 if (VEC_length (linespec_sals, canonical_start.sals) > 1
10464 || lsal_start->sals.nelts != 1)
10465 error (_("Cannot create a ranged breakpoint with multiple locations."));
10466
10467 sal_start = lsal_start->sals.sals[0];
10468 addr_string_start = savestring (arg_start, arg - arg_start);
10469 make_cleanup (xfree, addr_string_start);
10470
10471 arg++; /* Skip the comma. */
10472 arg = skip_spaces (arg);
10473
10474 /* Parse the end location. */
10475
10476 init_linespec_result (&canonical_end);
10477 arg_start = arg;
10478
10479 /* We call decode_line_full directly here instead of using
10480 parse_breakpoint_sals because we need to specify the start location's
10481 symtab and line as the default symtab and line for the end of the
10482 range. This makes it possible to have ranges like "foo.c:27, +14",
10483 where +14 means 14 lines from the start location. */
10484 end_location = string_to_event_location (&arg, current_language);
10485 make_cleanup_delete_event_location (end_location);
10486 decode_line_full (end_location, DECODE_LINE_FUNFIRSTLINE, NULL,
10487 sal_start.symtab, sal_start.line,
10488 &canonical_end, NULL, NULL);
10489
10490 make_cleanup_destroy_linespec_result (&canonical_end);
10491
10492 if (VEC_empty (linespec_sals, canonical_end.sals))
10493 error (_("Could not find location of the end of the range."));
10494
10495 lsal_end = VEC_index (linespec_sals, canonical_end.sals, 0);
10496 if (VEC_length (linespec_sals, canonical_end.sals) > 1
10497 || lsal_end->sals.nelts != 1)
10498 error (_("Cannot create a ranged breakpoint with multiple locations."));
10499
10500 sal_end = lsal_end->sals.sals[0];
10501
10502 end = find_breakpoint_range_end (sal_end);
10503 if (sal_start.pc > end)
10504 error (_("Invalid address range, end precedes start."));
10505
10506 length = end - sal_start.pc + 1;
10507 if (length < 0)
10508 /* Length overflowed. */
10509 error (_("Address range too large."));
10510 else if (length == 1)
10511 {
10512 /* This range is simple enough to be handled by
10513 the `hbreak' command. */
10514 hbreak_command (addr_string_start, 1);
10515
10516 do_cleanups (cleanup_bkpt);
10517
10518 return;
10519 }
10520
10521 /* Now set up the breakpoint. */
10522 b = set_raw_breakpoint (get_current_arch (), sal_start,
10523 bp_hardware_breakpoint, &ranged_breakpoint_ops);
10524 set_breakpoint_count (breakpoint_count + 1);
10525 b->number = breakpoint_count;
10526 b->disposition = disp_donttouch;
10527 b->location = copy_event_location (start_location);
10528 b->location_range_end = copy_event_location (end_location);
10529 b->loc->length = length;
10530
10531 do_cleanups (cleanup_bkpt);
10532
10533 mention (b);
10534 observer_notify_breakpoint_created (b);
10535 update_global_location_list (UGLL_MAY_INSERT);
10536 }
10537
10538 /* Return non-zero if EXP is verified as constant. Returned zero
10539 means EXP is variable. Also the constant detection may fail for
10540 some constant expressions and in such case still falsely return
10541 zero. */
10542
10543 static int
10544 watchpoint_exp_is_const (const struct expression *exp)
10545 {
10546 int i = exp->nelts;
10547
10548 while (i > 0)
10549 {
10550 int oplenp, argsp;
10551
10552 /* We are only interested in the descriptor of each element. */
10553 operator_length (exp, i, &oplenp, &argsp);
10554 i -= oplenp;
10555
10556 switch (exp->elts[i].opcode)
10557 {
10558 case BINOP_ADD:
10559 case BINOP_SUB:
10560 case BINOP_MUL:
10561 case BINOP_DIV:
10562 case BINOP_REM:
10563 case BINOP_MOD:
10564 case BINOP_LSH:
10565 case BINOP_RSH:
10566 case BINOP_LOGICAL_AND:
10567 case BINOP_LOGICAL_OR:
10568 case BINOP_BITWISE_AND:
10569 case BINOP_BITWISE_IOR:
10570 case BINOP_BITWISE_XOR:
10571 case BINOP_EQUAL:
10572 case BINOP_NOTEQUAL:
10573 case BINOP_LESS:
10574 case BINOP_GTR:
10575 case BINOP_LEQ:
10576 case BINOP_GEQ:
10577 case BINOP_REPEAT:
10578 case BINOP_COMMA:
10579 case BINOP_EXP:
10580 case BINOP_MIN:
10581 case BINOP_MAX:
10582 case BINOP_INTDIV:
10583 case BINOP_CONCAT:
10584 case TERNOP_COND:
10585 case TERNOP_SLICE:
10586
10587 case OP_LONG:
10588 case OP_DOUBLE:
10589 case OP_DECFLOAT:
10590 case OP_LAST:
10591 case OP_COMPLEX:
10592 case OP_STRING:
10593 case OP_ARRAY:
10594 case OP_TYPE:
10595 case OP_TYPEOF:
10596 case OP_DECLTYPE:
10597 case OP_TYPEID:
10598 case OP_NAME:
10599 case OP_OBJC_NSSTRING:
10600
10601 case UNOP_NEG:
10602 case UNOP_LOGICAL_NOT:
10603 case UNOP_COMPLEMENT:
10604 case UNOP_ADDR:
10605 case UNOP_HIGH:
10606 case UNOP_CAST:
10607
10608 case UNOP_CAST_TYPE:
10609 case UNOP_REINTERPRET_CAST:
10610 case UNOP_DYNAMIC_CAST:
10611 /* Unary, binary and ternary operators: We have to check
10612 their operands. If they are constant, then so is the
10613 result of that operation. For instance, if A and B are
10614 determined to be constants, then so is "A + B".
10615
10616 UNOP_IND is one exception to the rule above, because the
10617 value of *ADDR is not necessarily a constant, even when
10618 ADDR is. */
10619 break;
10620
10621 case OP_VAR_VALUE:
10622 /* Check whether the associated symbol is a constant.
10623
10624 We use SYMBOL_CLASS rather than TYPE_CONST because it's
10625 possible that a buggy compiler could mark a variable as
10626 constant even when it is not, and TYPE_CONST would return
10627 true in this case, while SYMBOL_CLASS wouldn't.
10628
10629 We also have to check for function symbols because they
10630 are always constant. */
10631 {
10632 struct symbol *s = exp->elts[i + 2].symbol;
10633
10634 if (SYMBOL_CLASS (s) != LOC_BLOCK
10635 && SYMBOL_CLASS (s) != LOC_CONST
10636 && SYMBOL_CLASS (s) != LOC_CONST_BYTES)
10637 return 0;
10638 break;
10639 }
10640
10641 /* The default action is to return 0 because we are using
10642 the optimistic approach here: If we don't know something,
10643 then it is not a constant. */
10644 default:
10645 return 0;
10646 }
10647 }
10648
10649 return 1;
10650 }
10651
10652 /* Implement the "dtor" breakpoint_ops method for watchpoints. */
10653
10654 static void
10655 dtor_watchpoint (struct breakpoint *self)
10656 {
10657 struct watchpoint *w = (struct watchpoint *) self;
10658
10659 xfree (w->cond_exp);
10660 xfree (w->exp);
10661 xfree (w->exp_string);
10662 xfree (w->exp_string_reparse);
10663 value_free (w->val);
10664
10665 base_breakpoint_ops.dtor (self);
10666 }
10667
10668 /* Implement the "re_set" breakpoint_ops method for watchpoints. */
10669
10670 static void
10671 re_set_watchpoint (struct breakpoint *b)
10672 {
10673 struct watchpoint *w = (struct watchpoint *) b;
10674
10675 /* Watchpoint can be either on expression using entirely global
10676 variables, or it can be on local variables.
10677
10678 Watchpoints of the first kind are never auto-deleted, and even
10679 persist across program restarts. Since they can use variables
10680 from shared libraries, we need to reparse expression as libraries
10681 are loaded and unloaded.
10682
10683 Watchpoints on local variables can also change meaning as result
10684 of solib event. For example, if a watchpoint uses both a local
10685 and a global variables in expression, it's a local watchpoint,
10686 but unloading of a shared library will make the expression
10687 invalid. This is not a very common use case, but we still
10688 re-evaluate expression, to avoid surprises to the user.
10689
10690 Note that for local watchpoints, we re-evaluate it only if
10691 watchpoints frame id is still valid. If it's not, it means the
10692 watchpoint is out of scope and will be deleted soon. In fact,
10693 I'm not sure we'll ever be called in this case.
10694
10695 If a local watchpoint's frame id is still valid, then
10696 w->exp_valid_block is likewise valid, and we can safely use it.
10697
10698 Don't do anything about disabled watchpoints, since they will be
10699 reevaluated again when enabled. */
10700 update_watchpoint (w, 1 /* reparse */);
10701 }
10702
10703 /* Implement the "insert" breakpoint_ops method for hardware watchpoints. */
10704
10705 static int
10706 insert_watchpoint (struct bp_location *bl)
10707 {
10708 struct watchpoint *w = (struct watchpoint *) bl->owner;
10709 int length = w->exact ? 1 : bl->length;
10710
10711 return target_insert_watchpoint (bl->address, length, bl->watchpoint_type,
10712 w->cond_exp);
10713 }
10714
10715 /* Implement the "remove" breakpoint_ops method for hardware watchpoints. */
10716
10717 static int
10718 remove_watchpoint (struct bp_location *bl)
10719 {
10720 struct watchpoint *w = (struct watchpoint *) bl->owner;
10721 int length = w->exact ? 1 : bl->length;
10722
10723 return target_remove_watchpoint (bl->address, length, bl->watchpoint_type,
10724 w->cond_exp);
10725 }
10726
10727 static int
10728 breakpoint_hit_watchpoint (const struct bp_location *bl,
10729 struct address_space *aspace, CORE_ADDR bp_addr,
10730 const struct target_waitstatus *ws)
10731 {
10732 struct breakpoint *b = bl->owner;
10733 struct watchpoint *w = (struct watchpoint *) b;
10734
10735 /* Continuable hardware watchpoints are treated as non-existent if the
10736 reason we stopped wasn't a hardware watchpoint (we didn't stop on
10737 some data address). Otherwise gdb won't stop on a break instruction
10738 in the code (not from a breakpoint) when a hardware watchpoint has
10739 been defined. Also skip watchpoints which we know did not trigger
10740 (did not match the data address). */
10741 if (is_hardware_watchpoint (b)
10742 && w->watchpoint_triggered == watch_triggered_no)
10743 return 0;
10744
10745 return 1;
10746 }
10747
10748 static void
10749 check_status_watchpoint (bpstat bs)
10750 {
10751 gdb_assert (is_watchpoint (bs->breakpoint_at));
10752
10753 bpstat_check_watchpoint (bs);
10754 }
10755
10756 /* Implement the "resources_needed" breakpoint_ops method for
10757 hardware watchpoints. */
10758
10759 static int
10760 resources_needed_watchpoint (const struct bp_location *bl)
10761 {
10762 struct watchpoint *w = (struct watchpoint *) bl->owner;
10763 int length = w->exact? 1 : bl->length;
10764
10765 return target_region_ok_for_hw_watchpoint (bl->address, length);
10766 }
10767
10768 /* Implement the "works_in_software_mode" breakpoint_ops method for
10769 hardware watchpoints. */
10770
10771 static int
10772 works_in_software_mode_watchpoint (const struct breakpoint *b)
10773 {
10774 /* Read and access watchpoints only work with hardware support. */
10775 return b->type == bp_watchpoint || b->type == bp_hardware_watchpoint;
10776 }
10777
10778 static enum print_stop_action
10779 print_it_watchpoint (bpstat bs)
10780 {
10781 struct cleanup *old_chain;
10782 struct breakpoint *b;
10783 struct ui_file *stb;
10784 enum print_stop_action result;
10785 struct watchpoint *w;
10786 struct ui_out *uiout = current_uiout;
10787
10788 gdb_assert (bs->bp_location_at != NULL);
10789
10790 b = bs->breakpoint_at;
10791 w = (struct watchpoint *) b;
10792
10793 stb = mem_fileopen ();
10794 old_chain = make_cleanup_ui_file_delete (stb);
10795
10796 annotate_watchpoint (b->number);
10797 maybe_print_thread_hit_breakpoint (uiout);
10798
10799 switch (b->type)
10800 {
10801 case bp_watchpoint:
10802 case bp_hardware_watchpoint:
10803 if (ui_out_is_mi_like_p (uiout))
10804 ui_out_field_string
10805 (uiout, "reason",
10806 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
10807 mention (b);
10808 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10809 ui_out_text (uiout, "\nOld value = ");
10810 watchpoint_value_print (bs->old_val, stb);
10811 ui_out_field_stream (uiout, "old", stb);
10812 ui_out_text (uiout, "\nNew value = ");
10813 watchpoint_value_print (w->val, stb);
10814 ui_out_field_stream (uiout, "new", stb);
10815 ui_out_text (uiout, "\n");
10816 /* More than one watchpoint may have been triggered. */
10817 result = PRINT_UNKNOWN;
10818 break;
10819
10820 case bp_read_watchpoint:
10821 if (ui_out_is_mi_like_p (uiout))
10822 ui_out_field_string
10823 (uiout, "reason",
10824 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
10825 mention (b);
10826 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10827 ui_out_text (uiout, "\nValue = ");
10828 watchpoint_value_print (w->val, stb);
10829 ui_out_field_stream (uiout, "value", stb);
10830 ui_out_text (uiout, "\n");
10831 result = PRINT_UNKNOWN;
10832 break;
10833
10834 case bp_access_watchpoint:
10835 if (bs->old_val != NULL)
10836 {
10837 if (ui_out_is_mi_like_p (uiout))
10838 ui_out_field_string
10839 (uiout, "reason",
10840 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10841 mention (b);
10842 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10843 ui_out_text (uiout, "\nOld value = ");
10844 watchpoint_value_print (bs->old_val, stb);
10845 ui_out_field_stream (uiout, "old", stb);
10846 ui_out_text (uiout, "\nNew value = ");
10847 }
10848 else
10849 {
10850 mention (b);
10851 if (ui_out_is_mi_like_p (uiout))
10852 ui_out_field_string
10853 (uiout, "reason",
10854 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
10855 make_cleanup_ui_out_tuple_begin_end (uiout, "value");
10856 ui_out_text (uiout, "\nValue = ");
10857 }
10858 watchpoint_value_print (w->val, stb);
10859 ui_out_field_stream (uiout, "new", stb);
10860 ui_out_text (uiout, "\n");
10861 result = PRINT_UNKNOWN;
10862 break;
10863 default:
10864 result = PRINT_UNKNOWN;
10865 }
10866
10867 do_cleanups (old_chain);
10868 return result;
10869 }
10870
10871 /* Implement the "print_mention" breakpoint_ops method for hardware
10872 watchpoints. */
10873
10874 static void
10875 print_mention_watchpoint (struct breakpoint *b)
10876 {
10877 struct cleanup *ui_out_chain;
10878 struct watchpoint *w = (struct watchpoint *) b;
10879 struct ui_out *uiout = current_uiout;
10880
10881 switch (b->type)
10882 {
10883 case bp_watchpoint:
10884 ui_out_text (uiout, "Watchpoint ");
10885 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
10886 break;
10887 case bp_hardware_watchpoint:
10888 ui_out_text (uiout, "Hardware watchpoint ");
10889 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
10890 break;
10891 case bp_read_watchpoint:
10892 ui_out_text (uiout, "Hardware read watchpoint ");
10893 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
10894 break;
10895 case bp_access_watchpoint:
10896 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
10897 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
10898 break;
10899 default:
10900 internal_error (__FILE__, __LINE__,
10901 _("Invalid hardware watchpoint type."));
10902 }
10903
10904 ui_out_field_int (uiout, "number", b->number);
10905 ui_out_text (uiout, ": ");
10906 ui_out_field_string (uiout, "exp", w->exp_string);
10907 do_cleanups (ui_out_chain);
10908 }
10909
10910 /* Implement the "print_recreate" breakpoint_ops method for
10911 watchpoints. */
10912
10913 static void
10914 print_recreate_watchpoint (struct breakpoint *b, struct ui_file *fp)
10915 {
10916 struct watchpoint *w = (struct watchpoint *) b;
10917
10918 switch (b->type)
10919 {
10920 case bp_watchpoint:
10921 case bp_hardware_watchpoint:
10922 fprintf_unfiltered (fp, "watch");
10923 break;
10924 case bp_read_watchpoint:
10925 fprintf_unfiltered (fp, "rwatch");
10926 break;
10927 case bp_access_watchpoint:
10928 fprintf_unfiltered (fp, "awatch");
10929 break;
10930 default:
10931 internal_error (__FILE__, __LINE__,
10932 _("Invalid watchpoint type."));
10933 }
10934
10935 fprintf_unfiltered (fp, " %s", w->exp_string);
10936 print_recreate_thread (b, fp);
10937 }
10938
10939 /* Implement the "explains_signal" breakpoint_ops method for
10940 watchpoints. */
10941
10942 static int
10943 explains_signal_watchpoint (struct breakpoint *b, enum gdb_signal sig)
10944 {
10945 /* A software watchpoint cannot cause a signal other than
10946 GDB_SIGNAL_TRAP. */
10947 if (b->type == bp_watchpoint && sig != GDB_SIGNAL_TRAP)
10948 return 0;
10949
10950 return 1;
10951 }
10952
10953 /* The breakpoint_ops structure to be used in hardware watchpoints. */
10954
10955 static struct breakpoint_ops watchpoint_breakpoint_ops;
10956
10957 /* Implement the "insert" breakpoint_ops method for
10958 masked hardware watchpoints. */
10959
10960 static int
10961 insert_masked_watchpoint (struct bp_location *bl)
10962 {
10963 struct watchpoint *w = (struct watchpoint *) bl->owner;
10964
10965 return target_insert_mask_watchpoint (bl->address, w->hw_wp_mask,
10966 bl->watchpoint_type);
10967 }
10968
10969 /* Implement the "remove" breakpoint_ops method for
10970 masked hardware watchpoints. */
10971
10972 static int
10973 remove_masked_watchpoint (struct bp_location *bl)
10974 {
10975 struct watchpoint *w = (struct watchpoint *) bl->owner;
10976
10977 return target_remove_mask_watchpoint (bl->address, w->hw_wp_mask,
10978 bl->watchpoint_type);
10979 }
10980
10981 /* Implement the "resources_needed" breakpoint_ops method for
10982 masked hardware watchpoints. */
10983
10984 static int
10985 resources_needed_masked_watchpoint (const struct bp_location *bl)
10986 {
10987 struct watchpoint *w = (struct watchpoint *) bl->owner;
10988
10989 return target_masked_watch_num_registers (bl->address, w->hw_wp_mask);
10990 }
10991
10992 /* Implement the "works_in_software_mode" breakpoint_ops method for
10993 masked hardware watchpoints. */
10994
10995 static int
10996 works_in_software_mode_masked_watchpoint (const struct breakpoint *b)
10997 {
10998 return 0;
10999 }
11000
11001 /* Implement the "print_it" breakpoint_ops method for
11002 masked hardware watchpoints. */
11003
11004 static enum print_stop_action
11005 print_it_masked_watchpoint (bpstat bs)
11006 {
11007 struct breakpoint *b = bs->breakpoint_at;
11008 struct ui_out *uiout = current_uiout;
11009
11010 /* Masked watchpoints have only one location. */
11011 gdb_assert (b->loc && b->loc->next == NULL);
11012
11013 annotate_watchpoint (b->number);
11014 maybe_print_thread_hit_breakpoint (uiout);
11015
11016 switch (b->type)
11017 {
11018 case bp_hardware_watchpoint:
11019 if (ui_out_is_mi_like_p (uiout))
11020 ui_out_field_string
11021 (uiout, "reason",
11022 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
11023 break;
11024
11025 case bp_read_watchpoint:
11026 if (ui_out_is_mi_like_p (uiout))
11027 ui_out_field_string
11028 (uiout, "reason",
11029 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
11030 break;
11031
11032 case bp_access_watchpoint:
11033 if (ui_out_is_mi_like_p (uiout))
11034 ui_out_field_string
11035 (uiout, "reason",
11036 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
11037 break;
11038 default:
11039 internal_error (__FILE__, __LINE__,
11040 _("Invalid hardware watchpoint type."));
11041 }
11042
11043 mention (b);
11044 ui_out_text (uiout, _("\n\
11045 Check the underlying instruction at PC for the memory\n\
11046 address and value which triggered this watchpoint.\n"));
11047 ui_out_text (uiout, "\n");
11048
11049 /* More than one watchpoint may have been triggered. */
11050 return PRINT_UNKNOWN;
11051 }
11052
11053 /* Implement the "print_one_detail" breakpoint_ops method for
11054 masked hardware watchpoints. */
11055
11056 static void
11057 print_one_detail_masked_watchpoint (const struct breakpoint *b,
11058 struct ui_out *uiout)
11059 {
11060 struct watchpoint *w = (struct watchpoint *) b;
11061
11062 /* Masked watchpoints have only one location. */
11063 gdb_assert (b->loc && b->loc->next == NULL);
11064
11065 ui_out_text (uiout, "\tmask ");
11066 ui_out_field_core_addr (uiout, "mask", b->loc->gdbarch, w->hw_wp_mask);
11067 ui_out_text (uiout, "\n");
11068 }
11069
11070 /* Implement the "print_mention" breakpoint_ops method for
11071 masked hardware watchpoints. */
11072
11073 static void
11074 print_mention_masked_watchpoint (struct breakpoint *b)
11075 {
11076 struct watchpoint *w = (struct watchpoint *) b;
11077 struct ui_out *uiout = current_uiout;
11078 struct cleanup *ui_out_chain;
11079
11080 switch (b->type)
11081 {
11082 case bp_hardware_watchpoint:
11083 ui_out_text (uiout, "Masked hardware watchpoint ");
11084 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
11085 break;
11086 case bp_read_watchpoint:
11087 ui_out_text (uiout, "Masked hardware read watchpoint ");
11088 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
11089 break;
11090 case bp_access_watchpoint:
11091 ui_out_text (uiout, "Masked hardware access (read/write) watchpoint ");
11092 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
11093 break;
11094 default:
11095 internal_error (__FILE__, __LINE__,
11096 _("Invalid hardware watchpoint type."));
11097 }
11098
11099 ui_out_field_int (uiout, "number", b->number);
11100 ui_out_text (uiout, ": ");
11101 ui_out_field_string (uiout, "exp", w->exp_string);
11102 do_cleanups (ui_out_chain);
11103 }
11104
11105 /* Implement the "print_recreate" breakpoint_ops method for
11106 masked hardware watchpoints. */
11107
11108 static void
11109 print_recreate_masked_watchpoint (struct breakpoint *b, struct ui_file *fp)
11110 {
11111 struct watchpoint *w = (struct watchpoint *) b;
11112 char tmp[40];
11113
11114 switch (b->type)
11115 {
11116 case bp_hardware_watchpoint:
11117 fprintf_unfiltered (fp, "watch");
11118 break;
11119 case bp_read_watchpoint:
11120 fprintf_unfiltered (fp, "rwatch");
11121 break;
11122 case bp_access_watchpoint:
11123 fprintf_unfiltered (fp, "awatch");
11124 break;
11125 default:
11126 internal_error (__FILE__, __LINE__,
11127 _("Invalid hardware watchpoint type."));
11128 }
11129
11130 sprintf_vma (tmp, w->hw_wp_mask);
11131 fprintf_unfiltered (fp, " %s mask 0x%s", w->exp_string, tmp);
11132 print_recreate_thread (b, fp);
11133 }
11134
11135 /* The breakpoint_ops structure to be used in masked hardware watchpoints. */
11136
11137 static struct breakpoint_ops masked_watchpoint_breakpoint_ops;
11138
11139 /* Tell whether the given watchpoint is a masked hardware watchpoint. */
11140
11141 static int
11142 is_masked_watchpoint (const struct breakpoint *b)
11143 {
11144 return b->ops == &masked_watchpoint_breakpoint_ops;
11145 }
11146
11147 /* accessflag: hw_write: watch write,
11148 hw_read: watch read,
11149 hw_access: watch access (read or write) */
11150 static void
11151 watch_command_1 (const char *arg, int accessflag, int from_tty,
11152 int just_location, int internal)
11153 {
11154 struct breakpoint *b, *scope_breakpoint = NULL;
11155 struct expression *exp;
11156 const struct block *exp_valid_block = NULL, *cond_exp_valid_block = NULL;
11157 struct value *val, *mark, *result;
11158 int saved_bitpos = 0, saved_bitsize = 0;
11159 struct frame_info *frame;
11160 const char *exp_start = NULL;
11161 const char *exp_end = NULL;
11162 const char *tok, *end_tok;
11163 int toklen = -1;
11164 const char *cond_start = NULL;
11165 const char *cond_end = NULL;
11166 enum bptype bp_type;
11167 int thread = -1;
11168 int pc = 0;
11169 /* Flag to indicate whether we are going to use masks for
11170 the hardware watchpoint. */
11171 int use_mask = 0;
11172 CORE_ADDR mask = 0;
11173 struct watchpoint *w;
11174 char *expression;
11175 struct cleanup *back_to;
11176
11177 /* Make sure that we actually have parameters to parse. */
11178 if (arg != NULL && arg[0] != '\0')
11179 {
11180 const char *value_start;
11181
11182 exp_end = arg + strlen (arg);
11183
11184 /* Look for "parameter value" pairs at the end
11185 of the arguments string. */
11186 for (tok = exp_end - 1; tok > arg; tok--)
11187 {
11188 /* Skip whitespace at the end of the argument list. */
11189 while (tok > arg && (*tok == ' ' || *tok == '\t'))
11190 tok--;
11191
11192 /* Find the beginning of the last token.
11193 This is the value of the parameter. */
11194 while (tok > arg && (*tok != ' ' && *tok != '\t'))
11195 tok--;
11196 value_start = tok + 1;
11197
11198 /* Skip whitespace. */
11199 while (tok > arg && (*tok == ' ' || *tok == '\t'))
11200 tok--;
11201
11202 end_tok = tok;
11203
11204 /* Find the beginning of the second to last token.
11205 This is the parameter itself. */
11206 while (tok > arg && (*tok != ' ' && *tok != '\t'))
11207 tok--;
11208 tok++;
11209 toklen = end_tok - tok + 1;
11210
11211 if (toklen == 6 && startswith (tok, "thread"))
11212 {
11213 struct thread_info *thr;
11214 /* At this point we've found a "thread" token, which means
11215 the user is trying to set a watchpoint that triggers
11216 only in a specific thread. */
11217 const char *endp;
11218
11219 if (thread != -1)
11220 error(_("You can specify only one thread."));
11221
11222 /* Extract the thread ID from the next token. */
11223 thr = parse_thread_id (value_start, &endp);
11224
11225 /* Check if the user provided a valid thread ID. */
11226 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
11227 invalid_thread_id_error (value_start);
11228
11229 thread = thr->global_num;
11230 }
11231 else if (toklen == 4 && startswith (tok, "mask"))
11232 {
11233 /* We've found a "mask" token, which means the user wants to
11234 create a hardware watchpoint that is going to have the mask
11235 facility. */
11236 struct value *mask_value, *mark;
11237
11238 if (use_mask)
11239 error(_("You can specify only one mask."));
11240
11241 use_mask = just_location = 1;
11242
11243 mark = value_mark ();
11244 mask_value = parse_to_comma_and_eval (&value_start);
11245 mask = value_as_address (mask_value);
11246 value_free_to_mark (mark);
11247 }
11248 else
11249 /* We didn't recognize what we found. We should stop here. */
11250 break;
11251
11252 /* Truncate the string and get rid of the "parameter value" pair before
11253 the arguments string is parsed by the parse_exp_1 function. */
11254 exp_end = tok;
11255 }
11256 }
11257 else
11258 exp_end = arg;
11259
11260 /* Parse the rest of the arguments. From here on out, everything
11261 is in terms of a newly allocated string instead of the original
11262 ARG. */
11263 innermost_block = NULL;
11264 expression = savestring (arg, exp_end - arg);
11265 back_to = make_cleanup (xfree, expression);
11266 exp_start = arg = expression;
11267 exp = parse_exp_1 (&arg, 0, 0, 0);
11268 exp_end = arg;
11269 /* Remove trailing whitespace from the expression before saving it.
11270 This makes the eventual display of the expression string a bit
11271 prettier. */
11272 while (exp_end > exp_start && (exp_end[-1] == ' ' || exp_end[-1] == '\t'))
11273 --exp_end;
11274
11275 /* Checking if the expression is not constant. */
11276 if (watchpoint_exp_is_const (exp))
11277 {
11278 int len;
11279
11280 len = exp_end - exp_start;
11281 while (len > 0 && isspace (exp_start[len - 1]))
11282 len--;
11283 error (_("Cannot watch constant value `%.*s'."), len, exp_start);
11284 }
11285
11286 exp_valid_block = innermost_block;
11287 mark = value_mark ();
11288 fetch_subexp_value (exp, &pc, &val, &result, NULL, just_location);
11289
11290 if (val != NULL && just_location)
11291 {
11292 saved_bitpos = value_bitpos (val);
11293 saved_bitsize = value_bitsize (val);
11294 }
11295
11296 if (just_location)
11297 {
11298 int ret;
11299
11300 exp_valid_block = NULL;
11301 val = value_addr (result);
11302 release_value (val);
11303 value_free_to_mark (mark);
11304
11305 if (use_mask)
11306 {
11307 ret = target_masked_watch_num_registers (value_as_address (val),
11308 mask);
11309 if (ret == -1)
11310 error (_("This target does not support masked watchpoints."));
11311 else if (ret == -2)
11312 error (_("Invalid mask or memory region."));
11313 }
11314 }
11315 else if (val != NULL)
11316 release_value (val);
11317
11318 tok = skip_spaces_const (arg);
11319 end_tok = skip_to_space_const (tok);
11320
11321 toklen = end_tok - tok;
11322 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
11323 {
11324 struct expression *cond;
11325
11326 innermost_block = NULL;
11327 tok = cond_start = end_tok + 1;
11328 cond = parse_exp_1 (&tok, 0, 0, 0);
11329
11330 /* The watchpoint expression may not be local, but the condition
11331 may still be. E.g.: `watch global if local > 0'. */
11332 cond_exp_valid_block = innermost_block;
11333
11334 xfree (cond);
11335 cond_end = tok;
11336 }
11337 if (*tok)
11338 error (_("Junk at end of command."));
11339
11340 frame = block_innermost_frame (exp_valid_block);
11341
11342 /* If the expression is "local", then set up a "watchpoint scope"
11343 breakpoint at the point where we've left the scope of the watchpoint
11344 expression. Create the scope breakpoint before the watchpoint, so
11345 that we will encounter it first in bpstat_stop_status. */
11346 if (exp_valid_block && frame)
11347 {
11348 if (frame_id_p (frame_unwind_caller_id (frame)))
11349 {
11350 scope_breakpoint
11351 = create_internal_breakpoint (frame_unwind_caller_arch (frame),
11352 frame_unwind_caller_pc (frame),
11353 bp_watchpoint_scope,
11354 &momentary_breakpoint_ops);
11355
11356 scope_breakpoint->enable_state = bp_enabled;
11357
11358 /* Automatically delete the breakpoint when it hits. */
11359 scope_breakpoint->disposition = disp_del;
11360
11361 /* Only break in the proper frame (help with recursion). */
11362 scope_breakpoint->frame_id = frame_unwind_caller_id (frame);
11363
11364 /* Set the address at which we will stop. */
11365 scope_breakpoint->loc->gdbarch
11366 = frame_unwind_caller_arch (frame);
11367 scope_breakpoint->loc->requested_address
11368 = frame_unwind_caller_pc (frame);
11369 scope_breakpoint->loc->address
11370 = adjust_breakpoint_address (scope_breakpoint->loc->gdbarch,
11371 scope_breakpoint->loc->requested_address,
11372 scope_breakpoint->type);
11373 }
11374 }
11375
11376 /* Now set up the breakpoint. We create all watchpoints as hardware
11377 watchpoints here even if hardware watchpoints are turned off, a call
11378 to update_watchpoint later in this function will cause the type to
11379 drop back to bp_watchpoint (software watchpoint) if required. */
11380
11381 if (accessflag == hw_read)
11382 bp_type = bp_read_watchpoint;
11383 else if (accessflag == hw_access)
11384 bp_type = bp_access_watchpoint;
11385 else
11386 bp_type = bp_hardware_watchpoint;
11387
11388 w = XCNEW (struct watchpoint);
11389 b = &w->base;
11390 if (use_mask)
11391 init_raw_breakpoint_without_location (b, NULL, bp_type,
11392 &masked_watchpoint_breakpoint_ops);
11393 else
11394 init_raw_breakpoint_without_location (b, NULL, bp_type,
11395 &watchpoint_breakpoint_ops);
11396 b->thread = thread;
11397 b->disposition = disp_donttouch;
11398 b->pspace = current_program_space;
11399 w->exp = exp;
11400 w->exp_valid_block = exp_valid_block;
11401 w->cond_exp_valid_block = cond_exp_valid_block;
11402 if (just_location)
11403 {
11404 struct type *t = value_type (val);
11405 CORE_ADDR addr = value_as_address (val);
11406 char *name;
11407
11408 t = check_typedef (TYPE_TARGET_TYPE (check_typedef (t)));
11409 name = type_to_string (t);
11410
11411 w->exp_string_reparse = xstrprintf ("* (%s *) %s", name,
11412 core_addr_to_string (addr));
11413 xfree (name);
11414
11415 w->exp_string = xstrprintf ("-location %.*s",
11416 (int) (exp_end - exp_start), exp_start);
11417
11418 /* The above expression is in C. */
11419 b->language = language_c;
11420 }
11421 else
11422 w->exp_string = savestring (exp_start, exp_end - exp_start);
11423
11424 if (use_mask)
11425 {
11426 w->hw_wp_mask = mask;
11427 }
11428 else
11429 {
11430 w->val = val;
11431 w->val_bitpos = saved_bitpos;
11432 w->val_bitsize = saved_bitsize;
11433 w->val_valid = 1;
11434 }
11435
11436 if (cond_start)
11437 b->cond_string = savestring (cond_start, cond_end - cond_start);
11438 else
11439 b->cond_string = 0;
11440
11441 if (frame)
11442 {
11443 w->watchpoint_frame = get_frame_id (frame);
11444 w->watchpoint_thread = inferior_ptid;
11445 }
11446 else
11447 {
11448 w->watchpoint_frame = null_frame_id;
11449 w->watchpoint_thread = null_ptid;
11450 }
11451
11452 if (scope_breakpoint != NULL)
11453 {
11454 /* The scope breakpoint is related to the watchpoint. We will
11455 need to act on them together. */
11456 b->related_breakpoint = scope_breakpoint;
11457 scope_breakpoint->related_breakpoint = b;
11458 }
11459
11460 if (!just_location)
11461 value_free_to_mark (mark);
11462
11463 TRY
11464 {
11465 /* Finally update the new watchpoint. This creates the locations
11466 that should be inserted. */
11467 update_watchpoint (w, 1);
11468 }
11469 CATCH (e, RETURN_MASK_ALL)
11470 {
11471 delete_breakpoint (b);
11472 throw_exception (e);
11473 }
11474 END_CATCH
11475
11476 install_breakpoint (internal, b, 1);
11477 do_cleanups (back_to);
11478 }
11479
11480 /* Return count of debug registers needed to watch the given expression.
11481 If the watchpoint cannot be handled in hardware return zero. */
11482
11483 static int
11484 can_use_hardware_watchpoint (struct value *v)
11485 {
11486 int found_memory_cnt = 0;
11487 struct value *head = v;
11488
11489 /* Did the user specifically forbid us to use hardware watchpoints? */
11490 if (!can_use_hw_watchpoints)
11491 return 0;
11492
11493 /* Make sure that the value of the expression depends only upon
11494 memory contents, and values computed from them within GDB. If we
11495 find any register references or function calls, we can't use a
11496 hardware watchpoint.
11497
11498 The idea here is that evaluating an expression generates a series
11499 of values, one holding the value of every subexpression. (The
11500 expression a*b+c has five subexpressions: a, b, a*b, c, and
11501 a*b+c.) GDB's values hold almost enough information to establish
11502 the criteria given above --- they identify memory lvalues,
11503 register lvalues, computed values, etcetera. So we can evaluate
11504 the expression, and then scan the chain of values that leaves
11505 behind to decide whether we can detect any possible change to the
11506 expression's final value using only hardware watchpoints.
11507
11508 However, I don't think that the values returned by inferior
11509 function calls are special in any way. So this function may not
11510 notice that an expression involving an inferior function call
11511 can't be watched with hardware watchpoints. FIXME. */
11512 for (; v; v = value_next (v))
11513 {
11514 if (VALUE_LVAL (v) == lval_memory)
11515 {
11516 if (v != head && value_lazy (v))
11517 /* A lazy memory lvalue in the chain is one that GDB never
11518 needed to fetch; we either just used its address (e.g.,
11519 `a' in `a.b') or we never needed it at all (e.g., `a'
11520 in `a,b'). This doesn't apply to HEAD; if that is
11521 lazy then it was not readable, but watch it anyway. */
11522 ;
11523 else
11524 {
11525 /* Ahh, memory we actually used! Check if we can cover
11526 it with hardware watchpoints. */
11527 struct type *vtype = check_typedef (value_type (v));
11528
11529 /* We only watch structs and arrays if user asked for it
11530 explicitly, never if they just happen to appear in a
11531 middle of some value chain. */
11532 if (v == head
11533 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
11534 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
11535 {
11536 CORE_ADDR vaddr = value_address (v);
11537 int len;
11538 int num_regs;
11539
11540 len = (target_exact_watchpoints
11541 && is_scalar_type_recursive (vtype))?
11542 1 : TYPE_LENGTH (value_type (v));
11543
11544 num_regs = target_region_ok_for_hw_watchpoint (vaddr, len);
11545 if (!num_regs)
11546 return 0;
11547 else
11548 found_memory_cnt += num_regs;
11549 }
11550 }
11551 }
11552 else if (VALUE_LVAL (v) != not_lval
11553 && deprecated_value_modifiable (v) == 0)
11554 return 0; /* These are values from the history (e.g., $1). */
11555 else if (VALUE_LVAL (v) == lval_register)
11556 return 0; /* Cannot watch a register with a HW watchpoint. */
11557 }
11558
11559 /* The expression itself looks suitable for using a hardware
11560 watchpoint, but give the target machine a chance to reject it. */
11561 return found_memory_cnt;
11562 }
11563
11564 void
11565 watch_command_wrapper (char *arg, int from_tty, int internal)
11566 {
11567 watch_command_1 (arg, hw_write, from_tty, 0, internal);
11568 }
11569
11570 /* A helper function that looks for the "-location" argument and then
11571 calls watch_command_1. */
11572
11573 static void
11574 watch_maybe_just_location (char *arg, int accessflag, int from_tty)
11575 {
11576 int just_location = 0;
11577
11578 if (arg
11579 && (check_for_argument (&arg, "-location", sizeof ("-location") - 1)
11580 || check_for_argument (&arg, "-l", sizeof ("-l") - 1)))
11581 {
11582 arg = skip_spaces (arg);
11583 just_location = 1;
11584 }
11585
11586 watch_command_1 (arg, accessflag, from_tty, just_location, 0);
11587 }
11588
11589 static void
11590 watch_command (char *arg, int from_tty)
11591 {
11592 watch_maybe_just_location (arg, hw_write, from_tty);
11593 }
11594
11595 void
11596 rwatch_command_wrapper (char *arg, int from_tty, int internal)
11597 {
11598 watch_command_1 (arg, hw_read, from_tty, 0, internal);
11599 }
11600
11601 static void
11602 rwatch_command (char *arg, int from_tty)
11603 {
11604 watch_maybe_just_location (arg, hw_read, from_tty);
11605 }
11606
11607 void
11608 awatch_command_wrapper (char *arg, int from_tty, int internal)
11609 {
11610 watch_command_1 (arg, hw_access, from_tty, 0, internal);
11611 }
11612
11613 static void
11614 awatch_command (char *arg, int from_tty)
11615 {
11616 watch_maybe_just_location (arg, hw_access, from_tty);
11617 }
11618 \f
11619
11620 /* Data for the FSM that manages the until(location)/advance commands
11621 in infcmd.c. Here because it uses the mechanisms of
11622 breakpoints. */
11623
11624 struct until_break_fsm
11625 {
11626 /* The base class. */
11627 struct thread_fsm thread_fsm;
11628
11629 /* The thread that as current when the command was executed. */
11630 int thread;
11631
11632 /* The breakpoint set at the destination location. */
11633 struct breakpoint *location_breakpoint;
11634
11635 /* Breakpoint set at the return address in the caller frame. May be
11636 NULL. */
11637 struct breakpoint *caller_breakpoint;
11638 };
11639
11640 static void until_break_fsm_clean_up (struct thread_fsm *self,
11641 struct thread_info *thread);
11642 static int until_break_fsm_should_stop (struct thread_fsm *self,
11643 struct thread_info *thread);
11644 static enum async_reply_reason
11645 until_break_fsm_async_reply_reason (struct thread_fsm *self);
11646
11647 /* until_break_fsm's vtable. */
11648
11649 static struct thread_fsm_ops until_break_fsm_ops =
11650 {
11651 NULL, /* dtor */
11652 until_break_fsm_clean_up,
11653 until_break_fsm_should_stop,
11654 NULL, /* return_value */
11655 until_break_fsm_async_reply_reason,
11656 };
11657
11658 /* Allocate a new until_break_command_fsm. */
11659
11660 static struct until_break_fsm *
11661 new_until_break_fsm (struct interp *cmd_interp, int thread,
11662 struct breakpoint *location_breakpoint,
11663 struct breakpoint *caller_breakpoint)
11664 {
11665 struct until_break_fsm *sm;
11666
11667 sm = XCNEW (struct until_break_fsm);
11668 thread_fsm_ctor (&sm->thread_fsm, &until_break_fsm_ops, cmd_interp);
11669
11670 sm->thread = thread;
11671 sm->location_breakpoint = location_breakpoint;
11672 sm->caller_breakpoint = caller_breakpoint;
11673
11674 return sm;
11675 }
11676
11677 /* Implementation of the 'should_stop' FSM method for the
11678 until(location)/advance commands. */
11679
11680 static int
11681 until_break_fsm_should_stop (struct thread_fsm *self,
11682 struct thread_info *tp)
11683 {
11684 struct until_break_fsm *sm = (struct until_break_fsm *) self;
11685
11686 if (bpstat_find_breakpoint (tp->control.stop_bpstat,
11687 sm->location_breakpoint) != NULL
11688 || (sm->caller_breakpoint != NULL
11689 && bpstat_find_breakpoint (tp->control.stop_bpstat,
11690 sm->caller_breakpoint) != NULL))
11691 thread_fsm_set_finished (self);
11692
11693 return 1;
11694 }
11695
11696 /* Implementation of the 'clean_up' FSM method for the
11697 until(location)/advance commands. */
11698
11699 static void
11700 until_break_fsm_clean_up (struct thread_fsm *self,
11701 struct thread_info *thread)
11702 {
11703 struct until_break_fsm *sm = (struct until_break_fsm *) self;
11704
11705 /* Clean up our temporary breakpoints. */
11706 if (sm->location_breakpoint != NULL)
11707 {
11708 delete_breakpoint (sm->location_breakpoint);
11709 sm->location_breakpoint = NULL;
11710 }
11711 if (sm->caller_breakpoint != NULL)
11712 {
11713 delete_breakpoint (sm->caller_breakpoint);
11714 sm->caller_breakpoint = NULL;
11715 }
11716 delete_longjmp_breakpoint (sm->thread);
11717 }
11718
11719 /* Implementation of the 'async_reply_reason' FSM method for the
11720 until(location)/advance commands. */
11721
11722 static enum async_reply_reason
11723 until_break_fsm_async_reply_reason (struct thread_fsm *self)
11724 {
11725 return EXEC_ASYNC_LOCATION_REACHED;
11726 }
11727
11728 void
11729 until_break_command (char *arg, int from_tty, int anywhere)
11730 {
11731 struct symtabs_and_lines sals;
11732 struct symtab_and_line sal;
11733 struct frame_info *frame;
11734 struct gdbarch *frame_gdbarch;
11735 struct frame_id stack_frame_id;
11736 struct frame_id caller_frame_id;
11737 struct breakpoint *location_breakpoint;
11738 struct breakpoint *caller_breakpoint = NULL;
11739 struct cleanup *old_chain, *cleanup;
11740 int thread;
11741 struct thread_info *tp;
11742 struct event_location *location;
11743 struct until_break_fsm *sm;
11744
11745 clear_proceed_status (0);
11746
11747 /* Set a breakpoint where the user wants it and at return from
11748 this function. */
11749
11750 location = string_to_event_location (&arg, current_language);
11751 cleanup = make_cleanup_delete_event_location (location);
11752
11753 if (last_displayed_sal_is_valid ())
11754 sals = decode_line_1 (location, DECODE_LINE_FUNFIRSTLINE, NULL,
11755 get_last_displayed_symtab (),
11756 get_last_displayed_line ());
11757 else
11758 sals = decode_line_1 (location, DECODE_LINE_FUNFIRSTLINE,
11759 NULL, (struct symtab *) NULL, 0);
11760
11761 if (sals.nelts != 1)
11762 error (_("Couldn't get information on specified line."));
11763
11764 sal = sals.sals[0];
11765 xfree (sals.sals); /* malloc'd, so freed. */
11766
11767 if (*arg)
11768 error (_("Junk at end of arguments."));
11769
11770 resolve_sal_pc (&sal);
11771
11772 tp = inferior_thread ();
11773 thread = tp->global_num;
11774
11775 old_chain = make_cleanup (null_cleanup, NULL);
11776
11777 /* Note linespec handling above invalidates the frame chain.
11778 Installing a breakpoint also invalidates the frame chain (as it
11779 may need to switch threads), so do any frame handling before
11780 that. */
11781
11782 frame = get_selected_frame (NULL);
11783 frame_gdbarch = get_frame_arch (frame);
11784 stack_frame_id = get_stack_frame_id (frame);
11785 caller_frame_id = frame_unwind_caller_id (frame);
11786
11787 /* Keep within the current frame, or in frames called by the current
11788 one. */
11789
11790 if (frame_id_p (caller_frame_id))
11791 {
11792 struct symtab_and_line sal2;
11793 struct gdbarch *caller_gdbarch;
11794
11795 sal2 = find_pc_line (frame_unwind_caller_pc (frame), 0);
11796 sal2.pc = frame_unwind_caller_pc (frame);
11797 caller_gdbarch = frame_unwind_caller_arch (frame);
11798 caller_breakpoint = set_momentary_breakpoint (caller_gdbarch,
11799 sal2,
11800 caller_frame_id,
11801 bp_until);
11802 make_cleanup_delete_breakpoint (caller_breakpoint);
11803
11804 set_longjmp_breakpoint (tp, caller_frame_id);
11805 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
11806 }
11807
11808 /* set_momentary_breakpoint could invalidate FRAME. */
11809 frame = NULL;
11810
11811 if (anywhere)
11812 /* If the user told us to continue until a specified location,
11813 we don't specify a frame at which we need to stop. */
11814 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11815 null_frame_id, bp_until);
11816 else
11817 /* Otherwise, specify the selected frame, because we want to stop
11818 only at the very same frame. */
11819 location_breakpoint = set_momentary_breakpoint (frame_gdbarch, sal,
11820 stack_frame_id, bp_until);
11821 make_cleanup_delete_breakpoint (location_breakpoint);
11822
11823 sm = new_until_break_fsm (command_interp (), tp->global_num,
11824 location_breakpoint, caller_breakpoint);
11825 tp->thread_fsm = &sm->thread_fsm;
11826
11827 discard_cleanups (old_chain);
11828
11829 proceed (-1, GDB_SIGNAL_DEFAULT);
11830
11831 do_cleanups (cleanup);
11832 }
11833
11834 /* This function attempts to parse an optional "if <cond>" clause
11835 from the arg string. If one is not found, it returns NULL.
11836
11837 Else, it returns a pointer to the condition string. (It does not
11838 attempt to evaluate the string against a particular block.) And,
11839 it updates arg to point to the first character following the parsed
11840 if clause in the arg string. */
11841
11842 char *
11843 ep_parse_optional_if_clause (char **arg)
11844 {
11845 char *cond_string;
11846
11847 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
11848 return NULL;
11849
11850 /* Skip the "if" keyword. */
11851 (*arg) += 2;
11852
11853 /* Skip any extra leading whitespace, and record the start of the
11854 condition string. */
11855 *arg = skip_spaces (*arg);
11856 cond_string = *arg;
11857
11858 /* Assume that the condition occupies the remainder of the arg
11859 string. */
11860 (*arg) += strlen (cond_string);
11861
11862 return cond_string;
11863 }
11864
11865 /* Commands to deal with catching events, such as signals, exceptions,
11866 process start/exit, etc. */
11867
11868 typedef enum
11869 {
11870 catch_fork_temporary, catch_vfork_temporary,
11871 catch_fork_permanent, catch_vfork_permanent
11872 }
11873 catch_fork_kind;
11874
11875 static void
11876 catch_fork_command_1 (char *arg, int from_tty,
11877 struct cmd_list_element *command)
11878 {
11879 struct gdbarch *gdbarch = get_current_arch ();
11880 char *cond_string = NULL;
11881 catch_fork_kind fork_kind;
11882 int tempflag;
11883
11884 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
11885 tempflag = (fork_kind == catch_fork_temporary
11886 || fork_kind == catch_vfork_temporary);
11887
11888 if (!arg)
11889 arg = "";
11890 arg = skip_spaces (arg);
11891
11892 /* The allowed syntax is:
11893 catch [v]fork
11894 catch [v]fork if <cond>
11895
11896 First, check if there's an if clause. */
11897 cond_string = ep_parse_optional_if_clause (&arg);
11898
11899 if ((*arg != '\0') && !isspace (*arg))
11900 error (_("Junk at end of arguments."));
11901
11902 /* If this target supports it, create a fork or vfork catchpoint
11903 and enable reporting of such events. */
11904 switch (fork_kind)
11905 {
11906 case catch_fork_temporary:
11907 case catch_fork_permanent:
11908 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
11909 &catch_fork_breakpoint_ops);
11910 break;
11911 case catch_vfork_temporary:
11912 case catch_vfork_permanent:
11913 create_fork_vfork_event_catchpoint (gdbarch, tempflag, cond_string,
11914 &catch_vfork_breakpoint_ops);
11915 break;
11916 default:
11917 error (_("unsupported or unknown fork kind; cannot catch it"));
11918 break;
11919 }
11920 }
11921
11922 static void
11923 catch_exec_command_1 (char *arg, int from_tty,
11924 struct cmd_list_element *command)
11925 {
11926 struct exec_catchpoint *c;
11927 struct gdbarch *gdbarch = get_current_arch ();
11928 int tempflag;
11929 char *cond_string = NULL;
11930
11931 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
11932
11933 if (!arg)
11934 arg = "";
11935 arg = skip_spaces (arg);
11936
11937 /* The allowed syntax is:
11938 catch exec
11939 catch exec if <cond>
11940
11941 First, check if there's an if clause. */
11942 cond_string = ep_parse_optional_if_clause (&arg);
11943
11944 if ((*arg != '\0') && !isspace (*arg))
11945 error (_("Junk at end of arguments."));
11946
11947 c = XNEW (struct exec_catchpoint);
11948 init_catchpoint (&c->base, gdbarch, tempflag, cond_string,
11949 &catch_exec_breakpoint_ops);
11950 c->exec_pathname = NULL;
11951
11952 install_breakpoint (0, &c->base, 1);
11953 }
11954
11955 void
11956 init_ada_exception_breakpoint (struct breakpoint *b,
11957 struct gdbarch *gdbarch,
11958 struct symtab_and_line sal,
11959 char *addr_string,
11960 const struct breakpoint_ops *ops,
11961 int tempflag,
11962 int enabled,
11963 int from_tty)
11964 {
11965 if (from_tty)
11966 {
11967 struct gdbarch *loc_gdbarch = get_sal_arch (sal);
11968 if (!loc_gdbarch)
11969 loc_gdbarch = gdbarch;
11970
11971 describe_other_breakpoints (loc_gdbarch,
11972 sal.pspace, sal.pc, sal.section, -1);
11973 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
11974 version for exception catchpoints, because two catchpoints
11975 used for different exception names will use the same address.
11976 In this case, a "breakpoint ... also set at..." warning is
11977 unproductive. Besides, the warning phrasing is also a bit
11978 inappropriate, we should use the word catchpoint, and tell
11979 the user what type of catchpoint it is. The above is good
11980 enough for now, though. */
11981 }
11982
11983 init_raw_breakpoint (b, gdbarch, sal, bp_breakpoint, ops);
11984
11985 b->enable_state = enabled ? bp_enabled : bp_disabled;
11986 b->disposition = tempflag ? disp_del : disp_donttouch;
11987 b->location = string_to_event_location (&addr_string,
11988 language_def (language_ada));
11989 b->language = language_ada;
11990 }
11991
11992 static void
11993 catch_command (char *arg, int from_tty)
11994 {
11995 error (_("Catch requires an event name."));
11996 }
11997 \f
11998
11999 static void
12000 tcatch_command (char *arg, int from_tty)
12001 {
12002 error (_("Catch requires an event name."));
12003 }
12004
12005 /* A qsort comparison function that sorts breakpoints in order. */
12006
12007 static int
12008 compare_breakpoints (const void *a, const void *b)
12009 {
12010 const breakpoint_p *ba = (const breakpoint_p *) a;
12011 uintptr_t ua = (uintptr_t) *ba;
12012 const breakpoint_p *bb = (const breakpoint_p *) b;
12013 uintptr_t ub = (uintptr_t) *bb;
12014
12015 if ((*ba)->number < (*bb)->number)
12016 return -1;
12017 else if ((*ba)->number > (*bb)->number)
12018 return 1;
12019
12020 /* Now sort by address, in case we see, e..g, two breakpoints with
12021 the number 0. */
12022 if (ua < ub)
12023 return -1;
12024 return ua > ub ? 1 : 0;
12025 }
12026
12027 /* Delete breakpoints by address or line. */
12028
12029 static void
12030 clear_command (char *arg, int from_tty)
12031 {
12032 struct breakpoint *b, *prev;
12033 VEC(breakpoint_p) *found = 0;
12034 int ix;
12035 int default_match;
12036 struct symtabs_and_lines sals;
12037 struct symtab_and_line sal;
12038 int i;
12039 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
12040
12041 if (arg)
12042 {
12043 sals = decode_line_with_current_source (arg,
12044 (DECODE_LINE_FUNFIRSTLINE
12045 | DECODE_LINE_LIST_MODE));
12046 make_cleanup (xfree, sals.sals);
12047 default_match = 0;
12048 }
12049 else
12050 {
12051 sals.sals = XNEW (struct symtab_and_line);
12052 make_cleanup (xfree, sals.sals);
12053 init_sal (&sal); /* Initialize to zeroes. */
12054
12055 /* Set sal's line, symtab, pc, and pspace to the values
12056 corresponding to the last call to print_frame_info. If the
12057 codepoint is not valid, this will set all the fields to 0. */
12058 get_last_displayed_sal (&sal);
12059 if (sal.symtab == 0)
12060 error (_("No source file specified."));
12061
12062 sals.sals[0] = sal;
12063 sals.nelts = 1;
12064
12065 default_match = 1;
12066 }
12067
12068 /* We don't call resolve_sal_pc here. That's not as bad as it
12069 seems, because all existing breakpoints typically have both
12070 file/line and pc set. So, if clear is given file/line, we can
12071 match this to existing breakpoint without obtaining pc at all.
12072
12073 We only support clearing given the address explicitly
12074 present in breakpoint table. Say, we've set breakpoint
12075 at file:line. There were several PC values for that file:line,
12076 due to optimization, all in one block.
12077
12078 We've picked one PC value. If "clear" is issued with another
12079 PC corresponding to the same file:line, the breakpoint won't
12080 be cleared. We probably can still clear the breakpoint, but
12081 since the other PC value is never presented to user, user
12082 can only find it by guessing, and it does not seem important
12083 to support that. */
12084
12085 /* For each line spec given, delete bps which correspond to it. Do
12086 it in two passes, solely to preserve the current behavior that
12087 from_tty is forced true if we delete more than one
12088 breakpoint. */
12089
12090 found = NULL;
12091 make_cleanup (VEC_cleanup (breakpoint_p), &found);
12092 for (i = 0; i < sals.nelts; i++)
12093 {
12094 const char *sal_fullname;
12095
12096 /* If exact pc given, clear bpts at that pc.
12097 If line given (pc == 0), clear all bpts on specified line.
12098 If defaulting, clear all bpts on default line
12099 or at default pc.
12100
12101 defaulting sal.pc != 0 tests to do
12102
12103 0 1 pc
12104 1 1 pc _and_ line
12105 0 0 line
12106 1 0 <can't happen> */
12107
12108 sal = sals.sals[i];
12109 sal_fullname = (sal.symtab == NULL
12110 ? NULL : symtab_to_fullname (sal.symtab));
12111
12112 /* Find all matching breakpoints and add them to 'found'. */
12113 ALL_BREAKPOINTS (b)
12114 {
12115 int match = 0;
12116 /* Are we going to delete b? */
12117 if (b->type != bp_none && !is_watchpoint (b))
12118 {
12119 struct bp_location *loc = b->loc;
12120 for (; loc; loc = loc->next)
12121 {
12122 /* If the user specified file:line, don't allow a PC
12123 match. This matches historical gdb behavior. */
12124 int pc_match = (!sal.explicit_line
12125 && sal.pc
12126 && (loc->pspace == sal.pspace)
12127 && (loc->address == sal.pc)
12128 && (!section_is_overlay (loc->section)
12129 || loc->section == sal.section));
12130 int line_match = 0;
12131
12132 if ((default_match || sal.explicit_line)
12133 && loc->symtab != NULL
12134 && sal_fullname != NULL
12135 && sal.pspace == loc->pspace
12136 && loc->line_number == sal.line
12137 && filename_cmp (symtab_to_fullname (loc->symtab),
12138 sal_fullname) == 0)
12139 line_match = 1;
12140
12141 if (pc_match || line_match)
12142 {
12143 match = 1;
12144 break;
12145 }
12146 }
12147 }
12148
12149 if (match)
12150 VEC_safe_push(breakpoint_p, found, b);
12151 }
12152 }
12153
12154 /* Now go thru the 'found' chain and delete them. */
12155 if (VEC_empty(breakpoint_p, found))
12156 {
12157 if (arg)
12158 error (_("No breakpoint at %s."), arg);
12159 else
12160 error (_("No breakpoint at this line."));
12161 }
12162
12163 /* Remove duplicates from the vec. */
12164 qsort (VEC_address (breakpoint_p, found),
12165 VEC_length (breakpoint_p, found),
12166 sizeof (breakpoint_p),
12167 compare_breakpoints);
12168 prev = VEC_index (breakpoint_p, found, 0);
12169 for (ix = 1; VEC_iterate (breakpoint_p, found, ix, b); ++ix)
12170 {
12171 if (b == prev)
12172 {
12173 VEC_ordered_remove (breakpoint_p, found, ix);
12174 --ix;
12175 }
12176 }
12177
12178 if (VEC_length(breakpoint_p, found) > 1)
12179 from_tty = 1; /* Always report if deleted more than one. */
12180 if (from_tty)
12181 {
12182 if (VEC_length(breakpoint_p, found) == 1)
12183 printf_unfiltered (_("Deleted breakpoint "));
12184 else
12185 printf_unfiltered (_("Deleted breakpoints "));
12186 }
12187
12188 for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
12189 {
12190 if (from_tty)
12191 printf_unfiltered ("%d ", b->number);
12192 delete_breakpoint (b);
12193 }
12194 if (from_tty)
12195 putchar_unfiltered ('\n');
12196
12197 do_cleanups (cleanups);
12198 }
12199 \f
12200 /* Delete breakpoint in BS if they are `delete' breakpoints and
12201 all breakpoints that are marked for deletion, whether hit or not.
12202 This is called after any breakpoint is hit, or after errors. */
12203
12204 void
12205 breakpoint_auto_delete (bpstat bs)
12206 {
12207 struct breakpoint *b, *b_tmp;
12208
12209 for (; bs; bs = bs->next)
12210 if (bs->breakpoint_at
12211 && bs->breakpoint_at->disposition == disp_del
12212 && bs->stop)
12213 delete_breakpoint (bs->breakpoint_at);
12214
12215 ALL_BREAKPOINTS_SAFE (b, b_tmp)
12216 {
12217 if (b->disposition == disp_del_at_next_stop)
12218 delete_breakpoint (b);
12219 }
12220 }
12221
12222 /* A comparison function for bp_location AP and BP being interfaced to
12223 qsort. Sort elements primarily by their ADDRESS (no matter what
12224 does breakpoint_address_is_meaningful say for its OWNER),
12225 secondarily by ordering first permanent elements and
12226 terciarily just ensuring the array is sorted stable way despite
12227 qsort being an unstable algorithm. */
12228
12229 static int
12230 bp_location_compare (const void *ap, const void *bp)
12231 {
12232 const struct bp_location *a = *(const struct bp_location **) ap;
12233 const struct bp_location *b = *(const struct bp_location **) bp;
12234
12235 if (a->address != b->address)
12236 return (a->address > b->address) - (a->address < b->address);
12237
12238 /* Sort locations at the same address by their pspace number, keeping
12239 locations of the same inferior (in a multi-inferior environment)
12240 grouped. */
12241
12242 if (a->pspace->num != b->pspace->num)
12243 return ((a->pspace->num > b->pspace->num)
12244 - (a->pspace->num < b->pspace->num));
12245
12246 /* Sort permanent breakpoints first. */
12247 if (a->permanent != b->permanent)
12248 return (a->permanent < b->permanent) - (a->permanent > b->permanent);
12249
12250 /* Make the internal GDB representation stable across GDB runs
12251 where A and B memory inside GDB can differ. Breakpoint locations of
12252 the same type at the same address can be sorted in arbitrary order. */
12253
12254 if (a->owner->number != b->owner->number)
12255 return ((a->owner->number > b->owner->number)
12256 - (a->owner->number < b->owner->number));
12257
12258 return (a > b) - (a < b);
12259 }
12260
12261 /* Set bp_location_placed_address_before_address_max and
12262 bp_location_shadow_len_after_address_max according to the current
12263 content of the bp_location array. */
12264
12265 static void
12266 bp_location_target_extensions_update (void)
12267 {
12268 struct bp_location *bl, **blp_tmp;
12269
12270 bp_location_placed_address_before_address_max = 0;
12271 bp_location_shadow_len_after_address_max = 0;
12272
12273 ALL_BP_LOCATIONS (bl, blp_tmp)
12274 {
12275 CORE_ADDR start, end, addr;
12276
12277 if (!bp_location_has_shadow (bl))
12278 continue;
12279
12280 start = bl->target_info.placed_address;
12281 end = start + bl->target_info.shadow_len;
12282
12283 gdb_assert (bl->address >= start);
12284 addr = bl->address - start;
12285 if (addr > bp_location_placed_address_before_address_max)
12286 bp_location_placed_address_before_address_max = addr;
12287
12288 /* Zero SHADOW_LEN would not pass bp_location_has_shadow. */
12289
12290 gdb_assert (bl->address < end);
12291 addr = end - bl->address;
12292 if (addr > bp_location_shadow_len_after_address_max)
12293 bp_location_shadow_len_after_address_max = addr;
12294 }
12295 }
12296
12297 /* Download tracepoint locations if they haven't been. */
12298
12299 static void
12300 download_tracepoint_locations (void)
12301 {
12302 struct breakpoint *b;
12303 struct cleanup *old_chain;
12304 enum tribool can_download_tracepoint = TRIBOOL_UNKNOWN;
12305
12306 old_chain = save_current_space_and_thread ();
12307
12308 ALL_TRACEPOINTS (b)
12309 {
12310 struct bp_location *bl;
12311 struct tracepoint *t;
12312 int bp_location_downloaded = 0;
12313
12314 if ((b->type == bp_fast_tracepoint
12315 ? !may_insert_fast_tracepoints
12316 : !may_insert_tracepoints))
12317 continue;
12318
12319 if (can_download_tracepoint == TRIBOOL_UNKNOWN)
12320 {
12321 if (target_can_download_tracepoint ())
12322 can_download_tracepoint = TRIBOOL_TRUE;
12323 else
12324 can_download_tracepoint = TRIBOOL_FALSE;
12325 }
12326
12327 if (can_download_tracepoint == TRIBOOL_FALSE)
12328 break;
12329
12330 for (bl = b->loc; bl; bl = bl->next)
12331 {
12332 /* In tracepoint, locations are _never_ duplicated, so
12333 should_be_inserted is equivalent to
12334 unduplicated_should_be_inserted. */
12335 if (!should_be_inserted (bl) || bl->inserted)
12336 continue;
12337
12338 switch_to_program_space_and_thread (bl->pspace);
12339
12340 target_download_tracepoint (bl);
12341
12342 bl->inserted = 1;
12343 bp_location_downloaded = 1;
12344 }
12345 t = (struct tracepoint *) b;
12346 t->number_on_target = b->number;
12347 if (bp_location_downloaded)
12348 observer_notify_breakpoint_modified (b);
12349 }
12350
12351 do_cleanups (old_chain);
12352 }
12353
12354 /* Swap the insertion/duplication state between two locations. */
12355
12356 static void
12357 swap_insertion (struct bp_location *left, struct bp_location *right)
12358 {
12359 const int left_inserted = left->inserted;
12360 const int left_duplicate = left->duplicate;
12361 const int left_needs_update = left->needs_update;
12362 const struct bp_target_info left_target_info = left->target_info;
12363
12364 /* Locations of tracepoints can never be duplicated. */
12365 if (is_tracepoint (left->owner))
12366 gdb_assert (!left->duplicate);
12367 if (is_tracepoint (right->owner))
12368 gdb_assert (!right->duplicate);
12369
12370 left->inserted = right->inserted;
12371 left->duplicate = right->duplicate;
12372 left->needs_update = right->needs_update;
12373 left->target_info = right->target_info;
12374 right->inserted = left_inserted;
12375 right->duplicate = left_duplicate;
12376 right->needs_update = left_needs_update;
12377 right->target_info = left_target_info;
12378 }
12379
12380 /* Force the re-insertion of the locations at ADDRESS. This is called
12381 once a new/deleted/modified duplicate location is found and we are evaluating
12382 conditions on the target's side. Such conditions need to be updated on
12383 the target. */
12384
12385 static void
12386 force_breakpoint_reinsertion (struct bp_location *bl)
12387 {
12388 struct bp_location **locp = NULL, **loc2p;
12389 struct bp_location *loc;
12390 CORE_ADDR address = 0;
12391 int pspace_num;
12392
12393 address = bl->address;
12394 pspace_num = bl->pspace->num;
12395
12396 /* This is only meaningful if the target is
12397 evaluating conditions and if the user has
12398 opted for condition evaluation on the target's
12399 side. */
12400 if (gdb_evaluates_breakpoint_condition_p ()
12401 || !target_supports_evaluation_of_breakpoint_conditions ())
12402 return;
12403
12404 /* Flag all breakpoint locations with this address and
12405 the same program space as the location
12406 as "its condition has changed". We need to
12407 update the conditions on the target's side. */
12408 ALL_BP_LOCATIONS_AT_ADDR (loc2p, locp, address)
12409 {
12410 loc = *loc2p;
12411
12412 if (!is_breakpoint (loc->owner)
12413 || pspace_num != loc->pspace->num)
12414 continue;
12415
12416 /* Flag the location appropriately. We use a different state to
12417 let everyone know that we already updated the set of locations
12418 with addr bl->address and program space bl->pspace. This is so
12419 we don't have to keep calling these functions just to mark locations
12420 that have already been marked. */
12421 loc->condition_changed = condition_updated;
12422
12423 /* Free the agent expression bytecode as well. We will compute
12424 it later on. */
12425 if (loc->cond_bytecode)
12426 {
12427 free_agent_expr (loc->cond_bytecode);
12428 loc->cond_bytecode = NULL;
12429 }
12430 }
12431 }
12432 /* Called whether new breakpoints are created, or existing breakpoints
12433 deleted, to update the global location list and recompute which
12434 locations are duplicate of which.
12435
12436 The INSERT_MODE flag determines whether locations may not, may, or
12437 shall be inserted now. See 'enum ugll_insert_mode' for more
12438 info. */
12439
12440 static void
12441 update_global_location_list (enum ugll_insert_mode insert_mode)
12442 {
12443 struct breakpoint *b;
12444 struct bp_location **locp, *loc;
12445 struct cleanup *cleanups;
12446 /* Last breakpoint location address that was marked for update. */
12447 CORE_ADDR last_addr = 0;
12448 /* Last breakpoint location program space that was marked for update. */
12449 int last_pspace_num = -1;
12450
12451 /* Used in the duplicates detection below. When iterating over all
12452 bp_locations, points to the first bp_location of a given address.
12453 Breakpoints and watchpoints of different types are never
12454 duplicates of each other. Keep one pointer for each type of
12455 breakpoint/watchpoint, so we only need to loop over all locations
12456 once. */
12457 struct bp_location *bp_loc_first; /* breakpoint */
12458 struct bp_location *wp_loc_first; /* hardware watchpoint */
12459 struct bp_location *awp_loc_first; /* access watchpoint */
12460 struct bp_location *rwp_loc_first; /* read watchpoint */
12461
12462 /* Saved former bp_location array which we compare against the newly
12463 built bp_location from the current state of ALL_BREAKPOINTS. */
12464 struct bp_location **old_location, **old_locp;
12465 unsigned old_location_count;
12466
12467 old_location = bp_location;
12468 old_location_count = bp_location_count;
12469 bp_location = NULL;
12470 bp_location_count = 0;
12471 cleanups = make_cleanup (xfree, old_location);
12472
12473 ALL_BREAKPOINTS (b)
12474 for (loc = b->loc; loc; loc = loc->next)
12475 bp_location_count++;
12476
12477 bp_location = XNEWVEC (struct bp_location *, bp_location_count);
12478 locp = bp_location;
12479 ALL_BREAKPOINTS (b)
12480 for (loc = b->loc; loc; loc = loc->next)
12481 *locp++ = loc;
12482 qsort (bp_location, bp_location_count, sizeof (*bp_location),
12483 bp_location_compare);
12484
12485 bp_location_target_extensions_update ();
12486
12487 /* Identify bp_location instances that are no longer present in the
12488 new list, and therefore should be freed. Note that it's not
12489 necessary that those locations should be removed from inferior --
12490 if there's another location at the same address (previously
12491 marked as duplicate), we don't need to remove/insert the
12492 location.
12493
12494 LOCP is kept in sync with OLD_LOCP, each pointing to the current
12495 and former bp_location array state respectively. */
12496
12497 locp = bp_location;
12498 for (old_locp = old_location; old_locp < old_location + old_location_count;
12499 old_locp++)
12500 {
12501 struct bp_location *old_loc = *old_locp;
12502 struct bp_location **loc2p;
12503
12504 /* Tells if 'old_loc' is found among the new locations. If
12505 not, we have to free it. */
12506 int found_object = 0;
12507 /* Tells if the location should remain inserted in the target. */
12508 int keep_in_target = 0;
12509 int removed = 0;
12510
12511 /* Skip LOCP entries which will definitely never be needed.
12512 Stop either at or being the one matching OLD_LOC. */
12513 while (locp < bp_location + bp_location_count
12514 && (*locp)->address < old_loc->address)
12515 locp++;
12516
12517 for (loc2p = locp;
12518 (loc2p < bp_location + bp_location_count
12519 && (*loc2p)->address == old_loc->address);
12520 loc2p++)
12521 {
12522 /* Check if this is a new/duplicated location or a duplicated
12523 location that had its condition modified. If so, we want to send
12524 its condition to the target if evaluation of conditions is taking
12525 place there. */
12526 if ((*loc2p)->condition_changed == condition_modified
12527 && (last_addr != old_loc->address
12528 || last_pspace_num != old_loc->pspace->num))
12529 {
12530 force_breakpoint_reinsertion (*loc2p);
12531 last_pspace_num = old_loc->pspace->num;
12532 }
12533
12534 if (*loc2p == old_loc)
12535 found_object = 1;
12536 }
12537
12538 /* We have already handled this address, update it so that we don't
12539 have to go through updates again. */
12540 last_addr = old_loc->address;
12541
12542 /* Target-side condition evaluation: Handle deleted locations. */
12543 if (!found_object)
12544 force_breakpoint_reinsertion (old_loc);
12545
12546 /* If this location is no longer present, and inserted, look if
12547 there's maybe a new location at the same address. If so,
12548 mark that one inserted, and don't remove this one. This is
12549 needed so that we don't have a time window where a breakpoint
12550 at certain location is not inserted. */
12551
12552 if (old_loc->inserted)
12553 {
12554 /* If the location is inserted now, we might have to remove
12555 it. */
12556
12557 if (found_object && should_be_inserted (old_loc))
12558 {
12559 /* The location is still present in the location list,
12560 and still should be inserted. Don't do anything. */
12561 keep_in_target = 1;
12562 }
12563 else
12564 {
12565 /* This location still exists, but it won't be kept in the
12566 target since it may have been disabled. We proceed to
12567 remove its target-side condition. */
12568
12569 /* The location is either no longer present, or got
12570 disabled. See if there's another location at the
12571 same address, in which case we don't need to remove
12572 this one from the target. */
12573
12574 /* OLD_LOC comes from existing struct breakpoint. */
12575 if (breakpoint_address_is_meaningful (old_loc->owner))
12576 {
12577 for (loc2p = locp;
12578 (loc2p < bp_location + bp_location_count
12579 && (*loc2p)->address == old_loc->address);
12580 loc2p++)
12581 {
12582 struct bp_location *loc2 = *loc2p;
12583
12584 if (breakpoint_locations_match (loc2, old_loc))
12585 {
12586 /* Read watchpoint locations are switched to
12587 access watchpoints, if the former are not
12588 supported, but the latter are. */
12589 if (is_hardware_watchpoint (old_loc->owner))
12590 {
12591 gdb_assert (is_hardware_watchpoint (loc2->owner));
12592 loc2->watchpoint_type = old_loc->watchpoint_type;
12593 }
12594
12595 /* loc2 is a duplicated location. We need to check
12596 if it should be inserted in case it will be
12597 unduplicated. */
12598 if (loc2 != old_loc
12599 && unduplicated_should_be_inserted (loc2))
12600 {
12601 swap_insertion (old_loc, loc2);
12602 keep_in_target = 1;
12603 break;
12604 }
12605 }
12606 }
12607 }
12608 }
12609
12610 if (!keep_in_target)
12611 {
12612 if (remove_breakpoint (old_loc, mark_uninserted))
12613 {
12614 /* This is just about all we can do. We could keep
12615 this location on the global list, and try to
12616 remove it next time, but there's no particular
12617 reason why we will succeed next time.
12618
12619 Note that at this point, old_loc->owner is still
12620 valid, as delete_breakpoint frees the breakpoint
12621 only after calling us. */
12622 printf_filtered (_("warning: Error removing "
12623 "breakpoint %d\n"),
12624 old_loc->owner->number);
12625 }
12626 removed = 1;
12627 }
12628 }
12629
12630 if (!found_object)
12631 {
12632 if (removed && target_is_non_stop_p ()
12633 && need_moribund_for_location_type (old_loc))
12634 {
12635 /* This location was removed from the target. In
12636 non-stop mode, a race condition is possible where
12637 we've removed a breakpoint, but stop events for that
12638 breakpoint are already queued and will arrive later.
12639 We apply an heuristic to be able to distinguish such
12640 SIGTRAPs from other random SIGTRAPs: we keep this
12641 breakpoint location for a bit, and will retire it
12642 after we see some number of events. The theory here
12643 is that reporting of events should, "on the average",
12644 be fair, so after a while we'll see events from all
12645 threads that have anything of interest, and no longer
12646 need to keep this breakpoint location around. We
12647 don't hold locations forever so to reduce chances of
12648 mistaking a non-breakpoint SIGTRAP for a breakpoint
12649 SIGTRAP.
12650
12651 The heuristic failing can be disastrous on
12652 decr_pc_after_break targets.
12653
12654 On decr_pc_after_break targets, like e.g., x86-linux,
12655 if we fail to recognize a late breakpoint SIGTRAP,
12656 because events_till_retirement has reached 0 too
12657 soon, we'll fail to do the PC adjustment, and report
12658 a random SIGTRAP to the user. When the user resumes
12659 the inferior, it will most likely immediately crash
12660 with SIGILL/SIGBUS/SIGSEGV, or worse, get silently
12661 corrupted, because of being resumed e.g., in the
12662 middle of a multi-byte instruction, or skipped a
12663 one-byte instruction. This was actually seen happen
12664 on native x86-linux, and should be less rare on
12665 targets that do not support new thread events, like
12666 remote, due to the heuristic depending on
12667 thread_count.
12668
12669 Mistaking a random SIGTRAP for a breakpoint trap
12670 causes similar symptoms (PC adjustment applied when
12671 it shouldn't), but then again, playing with SIGTRAPs
12672 behind the debugger's back is asking for trouble.
12673
12674 Since hardware watchpoint traps are always
12675 distinguishable from other traps, so we don't need to
12676 apply keep hardware watchpoint moribund locations
12677 around. We simply always ignore hardware watchpoint
12678 traps we can no longer explain. */
12679
12680 old_loc->events_till_retirement = 3 * (thread_count () + 1);
12681 old_loc->owner = NULL;
12682
12683 VEC_safe_push (bp_location_p, moribund_locations, old_loc);
12684 }
12685 else
12686 {
12687 old_loc->owner = NULL;
12688 decref_bp_location (&old_loc);
12689 }
12690 }
12691 }
12692
12693 /* Rescan breakpoints at the same address and section, marking the
12694 first one as "first" and any others as "duplicates". This is so
12695 that the bpt instruction is only inserted once. If we have a
12696 permanent breakpoint at the same place as BPT, make that one the
12697 official one, and the rest as duplicates. Permanent breakpoints
12698 are sorted first for the same address.
12699
12700 Do the same for hardware watchpoints, but also considering the
12701 watchpoint's type (regular/access/read) and length. */
12702
12703 bp_loc_first = NULL;
12704 wp_loc_first = NULL;
12705 awp_loc_first = NULL;
12706 rwp_loc_first = NULL;
12707 ALL_BP_LOCATIONS (loc, locp)
12708 {
12709 /* ALL_BP_LOCATIONS bp_location has LOC->OWNER always
12710 non-NULL. */
12711 struct bp_location **loc_first_p;
12712 b = loc->owner;
12713
12714 if (!unduplicated_should_be_inserted (loc)
12715 || !breakpoint_address_is_meaningful (b)
12716 /* Don't detect duplicate for tracepoint locations because they are
12717 never duplicated. See the comments in field `duplicate' of
12718 `struct bp_location'. */
12719 || is_tracepoint (b))
12720 {
12721 /* Clear the condition modification flag. */
12722 loc->condition_changed = condition_unchanged;
12723 continue;
12724 }
12725
12726 if (b->type == bp_hardware_watchpoint)
12727 loc_first_p = &wp_loc_first;
12728 else if (b->type == bp_read_watchpoint)
12729 loc_first_p = &rwp_loc_first;
12730 else if (b->type == bp_access_watchpoint)
12731 loc_first_p = &awp_loc_first;
12732 else
12733 loc_first_p = &bp_loc_first;
12734
12735 if (*loc_first_p == NULL
12736 || (overlay_debugging && loc->section != (*loc_first_p)->section)
12737 || !breakpoint_locations_match (loc, *loc_first_p))
12738 {
12739 *loc_first_p = loc;
12740 loc->duplicate = 0;
12741
12742 if (is_breakpoint (loc->owner) && loc->condition_changed)
12743 {
12744 loc->needs_update = 1;
12745 /* Clear the condition modification flag. */
12746 loc->condition_changed = condition_unchanged;
12747 }
12748 continue;
12749 }
12750
12751
12752 /* This and the above ensure the invariant that the first location
12753 is not duplicated, and is the inserted one.
12754 All following are marked as duplicated, and are not inserted. */
12755 if (loc->inserted)
12756 swap_insertion (loc, *loc_first_p);
12757 loc->duplicate = 1;
12758
12759 /* Clear the condition modification flag. */
12760 loc->condition_changed = condition_unchanged;
12761 }
12762
12763 if (insert_mode == UGLL_INSERT || breakpoints_should_be_inserted_now ())
12764 {
12765 if (insert_mode != UGLL_DONT_INSERT)
12766 insert_breakpoint_locations ();
12767 else
12768 {
12769 /* Even though the caller told us to not insert new
12770 locations, we may still need to update conditions on the
12771 target's side of breakpoints that were already inserted
12772 if the target is evaluating breakpoint conditions. We
12773 only update conditions for locations that are marked
12774 "needs_update". */
12775 update_inserted_breakpoint_locations ();
12776 }
12777 }
12778
12779 if (insert_mode != UGLL_DONT_INSERT)
12780 download_tracepoint_locations ();
12781
12782 do_cleanups (cleanups);
12783 }
12784
12785 void
12786 breakpoint_retire_moribund (void)
12787 {
12788 struct bp_location *loc;
12789 int ix;
12790
12791 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
12792 if (--(loc->events_till_retirement) == 0)
12793 {
12794 decref_bp_location (&loc);
12795 VEC_unordered_remove (bp_location_p, moribund_locations, ix);
12796 --ix;
12797 }
12798 }
12799
12800 static void
12801 update_global_location_list_nothrow (enum ugll_insert_mode insert_mode)
12802 {
12803
12804 TRY
12805 {
12806 update_global_location_list (insert_mode);
12807 }
12808 CATCH (e, RETURN_MASK_ERROR)
12809 {
12810 }
12811 END_CATCH
12812 }
12813
12814 /* Clear BKP from a BPS. */
12815
12816 static void
12817 bpstat_remove_bp_location (bpstat bps, struct breakpoint *bpt)
12818 {
12819 bpstat bs;
12820
12821 for (bs = bps; bs; bs = bs->next)
12822 if (bs->breakpoint_at == bpt)
12823 {
12824 bs->breakpoint_at = NULL;
12825 bs->old_val = NULL;
12826 /* bs->commands will be freed later. */
12827 }
12828 }
12829
12830 /* Callback for iterate_over_threads. */
12831 static int
12832 bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
12833 {
12834 struct breakpoint *bpt = (struct breakpoint *) data;
12835
12836 bpstat_remove_bp_location (th->control.stop_bpstat, bpt);
12837 return 0;
12838 }
12839
12840 /* Helper for breakpoint and tracepoint breakpoint_ops->mention
12841 callbacks. */
12842
12843 static void
12844 say_where (struct breakpoint *b)
12845 {
12846 struct value_print_options opts;
12847
12848 get_user_print_options (&opts);
12849
12850 /* i18n: cagney/2005-02-11: Below needs to be merged into a
12851 single string. */
12852 if (b->loc == NULL)
12853 {
12854 /* For pending locations, the output differs slightly based
12855 on b->extra_string. If this is non-NULL, it contains either
12856 a condition or dprintf arguments. */
12857 if (b->extra_string == NULL)
12858 {
12859 printf_filtered (_(" (%s) pending."),
12860 event_location_to_string (b->location));
12861 }
12862 else if (b->type == bp_dprintf)
12863 {
12864 printf_filtered (_(" (%s,%s) pending."),
12865 event_location_to_string (b->location),
12866 b->extra_string);
12867 }
12868 else
12869 {
12870 printf_filtered (_(" (%s %s) pending."),
12871 event_location_to_string (b->location),
12872 b->extra_string);
12873 }
12874 }
12875 else
12876 {
12877 if (opts.addressprint || b->loc->symtab == NULL)
12878 {
12879 printf_filtered (" at ");
12880 fputs_filtered (paddress (b->loc->gdbarch, b->loc->address),
12881 gdb_stdout);
12882 }
12883 if (b->loc->symtab != NULL)
12884 {
12885 /* If there is a single location, we can print the location
12886 more nicely. */
12887 if (b->loc->next == NULL)
12888 printf_filtered (": file %s, line %d.",
12889 symtab_to_filename_for_display (b->loc->symtab),
12890 b->loc->line_number);
12891 else
12892 /* This is not ideal, but each location may have a
12893 different file name, and this at least reflects the
12894 real situation somewhat. */
12895 printf_filtered (": %s.",
12896 event_location_to_string (b->location));
12897 }
12898
12899 if (b->loc->next)
12900 {
12901 struct bp_location *loc = b->loc;
12902 int n = 0;
12903 for (; loc; loc = loc->next)
12904 ++n;
12905 printf_filtered (" (%d locations)", n);
12906 }
12907 }
12908 }
12909
12910 /* Default bp_location_ops methods. */
12911
12912 static void
12913 bp_location_dtor (struct bp_location *self)
12914 {
12915 xfree (self->cond);
12916 if (self->cond_bytecode)
12917 free_agent_expr (self->cond_bytecode);
12918 xfree (self->function_name);
12919
12920 VEC_free (agent_expr_p, self->target_info.conditions);
12921 VEC_free (agent_expr_p, self->target_info.tcommands);
12922 }
12923
12924 static const struct bp_location_ops bp_location_ops =
12925 {
12926 bp_location_dtor
12927 };
12928
12929 /* Default breakpoint_ops methods all breakpoint_ops ultimately
12930 inherit from. */
12931
12932 static void
12933 base_breakpoint_dtor (struct breakpoint *self)
12934 {
12935 decref_counted_command_line (&self->commands);
12936 xfree (self->cond_string);
12937 xfree (self->extra_string);
12938 xfree (self->filter);
12939 delete_event_location (self->location);
12940 delete_event_location (self->location_range_end);
12941 }
12942
12943 static struct bp_location *
12944 base_breakpoint_allocate_location (struct breakpoint *self)
12945 {
12946 struct bp_location *loc;
12947
12948 loc = XNEW (struct bp_location);
12949 init_bp_location (loc, &bp_location_ops, self);
12950 return loc;
12951 }
12952
12953 static void
12954 base_breakpoint_re_set (struct breakpoint *b)
12955 {
12956 /* Nothing to re-set. */
12957 }
12958
12959 #define internal_error_pure_virtual_called() \
12960 gdb_assert_not_reached ("pure virtual function called")
12961
12962 static int
12963 base_breakpoint_insert_location (struct bp_location *bl)
12964 {
12965 internal_error_pure_virtual_called ();
12966 }
12967
12968 static int
12969 base_breakpoint_remove_location (struct bp_location *bl)
12970 {
12971 internal_error_pure_virtual_called ();
12972 }
12973
12974 static int
12975 base_breakpoint_breakpoint_hit (const struct bp_location *bl,
12976 struct address_space *aspace,
12977 CORE_ADDR bp_addr,
12978 const struct target_waitstatus *ws)
12979 {
12980 internal_error_pure_virtual_called ();
12981 }
12982
12983 static void
12984 base_breakpoint_check_status (bpstat bs)
12985 {
12986 /* Always stop. */
12987 }
12988
12989 /* A "works_in_software_mode" breakpoint_ops method that just internal
12990 errors. */
12991
12992 static int
12993 base_breakpoint_works_in_software_mode (const struct breakpoint *b)
12994 {
12995 internal_error_pure_virtual_called ();
12996 }
12997
12998 /* A "resources_needed" breakpoint_ops method that just internal
12999 errors. */
13000
13001 static int
13002 base_breakpoint_resources_needed (const struct bp_location *bl)
13003 {
13004 internal_error_pure_virtual_called ();
13005 }
13006
13007 static enum print_stop_action
13008 base_breakpoint_print_it (bpstat bs)
13009 {
13010 internal_error_pure_virtual_called ();
13011 }
13012
13013 static void
13014 base_breakpoint_print_one_detail (const struct breakpoint *self,
13015 struct ui_out *uiout)
13016 {
13017 /* nothing */
13018 }
13019
13020 static void
13021 base_breakpoint_print_mention (struct breakpoint *b)
13022 {
13023 internal_error_pure_virtual_called ();
13024 }
13025
13026 static void
13027 base_breakpoint_print_recreate (struct breakpoint *b, struct ui_file *fp)
13028 {
13029 internal_error_pure_virtual_called ();
13030 }
13031
13032 static void
13033 base_breakpoint_create_sals_from_location
13034 (const struct event_location *location,
13035 struct linespec_result *canonical,
13036 enum bptype type_wanted)
13037 {
13038 internal_error_pure_virtual_called ();
13039 }
13040
13041 static void
13042 base_breakpoint_create_breakpoints_sal (struct gdbarch *gdbarch,
13043 struct linespec_result *c,
13044 char *cond_string,
13045 char *extra_string,
13046 enum bptype type_wanted,
13047 enum bpdisp disposition,
13048 int thread,
13049 int task, int ignore_count,
13050 const struct breakpoint_ops *o,
13051 int from_tty, int enabled,
13052 int internal, unsigned flags)
13053 {
13054 internal_error_pure_virtual_called ();
13055 }
13056
13057 static void
13058 base_breakpoint_decode_location (struct breakpoint *b,
13059 const struct event_location *location,
13060 struct program_space *search_pspace,
13061 struct symtabs_and_lines *sals)
13062 {
13063 internal_error_pure_virtual_called ();
13064 }
13065
13066 /* The default 'explains_signal' method. */
13067
13068 static int
13069 base_breakpoint_explains_signal (struct breakpoint *b, enum gdb_signal sig)
13070 {
13071 return 1;
13072 }
13073
13074 /* The default "after_condition_true" method. */
13075
13076 static void
13077 base_breakpoint_after_condition_true (struct bpstats *bs)
13078 {
13079 /* Nothing to do. */
13080 }
13081
13082 struct breakpoint_ops base_breakpoint_ops =
13083 {
13084 base_breakpoint_dtor,
13085 base_breakpoint_allocate_location,
13086 base_breakpoint_re_set,
13087 base_breakpoint_insert_location,
13088 base_breakpoint_remove_location,
13089 base_breakpoint_breakpoint_hit,
13090 base_breakpoint_check_status,
13091 base_breakpoint_resources_needed,
13092 base_breakpoint_works_in_software_mode,
13093 base_breakpoint_print_it,
13094 NULL,
13095 base_breakpoint_print_one_detail,
13096 base_breakpoint_print_mention,
13097 base_breakpoint_print_recreate,
13098 base_breakpoint_create_sals_from_location,
13099 base_breakpoint_create_breakpoints_sal,
13100 base_breakpoint_decode_location,
13101 base_breakpoint_explains_signal,
13102 base_breakpoint_after_condition_true,
13103 };
13104
13105 /* Default breakpoint_ops methods. */
13106
13107 static void
13108 bkpt_re_set (struct breakpoint *b)
13109 {
13110 /* FIXME: is this still reachable? */
13111 if (breakpoint_event_location_empty_p (b))
13112 {
13113 /* Anything without a location can't be re-set. */
13114 delete_breakpoint (b);
13115 return;
13116 }
13117
13118 breakpoint_re_set_default (b);
13119 }
13120
13121 static int
13122 bkpt_insert_location (struct bp_location *bl)
13123 {
13124 if (bl->loc_type == bp_loc_hardware_breakpoint)
13125 return target_insert_hw_breakpoint (bl->gdbarch, &bl->target_info);
13126 else
13127 return target_insert_breakpoint (bl->gdbarch, &bl->target_info);
13128 }
13129
13130 static int
13131 bkpt_remove_location (struct bp_location *bl)
13132 {
13133 if (bl->loc_type == bp_loc_hardware_breakpoint)
13134 return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info);
13135 else
13136 return target_remove_breakpoint (bl->gdbarch, &bl->target_info);
13137 }
13138
13139 static int
13140 bkpt_breakpoint_hit (const struct bp_location *bl,
13141 struct address_space *aspace, CORE_ADDR bp_addr,
13142 const struct target_waitstatus *ws)
13143 {
13144 if (ws->kind != TARGET_WAITKIND_STOPPED
13145 || ws->value.sig != GDB_SIGNAL_TRAP)
13146 return 0;
13147
13148 if (!breakpoint_address_match (bl->pspace->aspace, bl->address,
13149 aspace, bp_addr))
13150 return 0;
13151
13152 if (overlay_debugging /* unmapped overlay section */
13153 && section_is_overlay (bl->section)
13154 && !section_is_mapped (bl->section))
13155 return 0;
13156
13157 return 1;
13158 }
13159
13160 static int
13161 dprintf_breakpoint_hit (const struct bp_location *bl,
13162 struct address_space *aspace, CORE_ADDR bp_addr,
13163 const struct target_waitstatus *ws)
13164 {
13165 if (dprintf_style == dprintf_style_agent
13166 && target_can_run_breakpoint_commands ())
13167 {
13168 /* An agent-style dprintf never causes a stop. If we see a trap
13169 for this address it must be for a breakpoint that happens to
13170 be set at the same address. */
13171 return 0;
13172 }
13173
13174 return bkpt_breakpoint_hit (bl, aspace, bp_addr, ws);
13175 }
13176
13177 static int
13178 bkpt_resources_needed (const struct bp_location *bl)
13179 {
13180 gdb_assert (bl->owner->type == bp_hardware_breakpoint);
13181
13182 return 1;
13183 }
13184
13185 static enum print_stop_action
13186 bkpt_print_it (bpstat bs)
13187 {
13188 struct breakpoint *b;
13189 const struct bp_location *bl;
13190 int bp_temp;
13191 struct ui_out *uiout = current_uiout;
13192
13193 gdb_assert (bs->bp_location_at != NULL);
13194
13195 bl = bs->bp_location_at;
13196 b = bs->breakpoint_at;
13197
13198 bp_temp = b->disposition == disp_del;
13199 if (bl->address != bl->requested_address)
13200 breakpoint_adjustment_warning (bl->requested_address,
13201 bl->address,
13202 b->number, 1);
13203 annotate_breakpoint (b->number);
13204 maybe_print_thread_hit_breakpoint (uiout);
13205
13206 if (bp_temp)
13207 ui_out_text (uiout, "Temporary breakpoint ");
13208 else
13209 ui_out_text (uiout, "Breakpoint ");
13210 if (ui_out_is_mi_like_p (uiout))
13211 {
13212 ui_out_field_string (uiout, "reason",
13213 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
13214 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
13215 }
13216 ui_out_field_int (uiout, "bkptno", b->number);
13217 ui_out_text (uiout, ", ");
13218
13219 return PRINT_SRC_AND_LOC;
13220 }
13221
13222 static void
13223 bkpt_print_mention (struct breakpoint *b)
13224 {
13225 if (ui_out_is_mi_like_p (current_uiout))
13226 return;
13227
13228 switch (b->type)
13229 {
13230 case bp_breakpoint:
13231 case bp_gnu_ifunc_resolver:
13232 if (b->disposition == disp_del)
13233 printf_filtered (_("Temporary breakpoint"));
13234 else
13235 printf_filtered (_("Breakpoint"));
13236 printf_filtered (_(" %d"), b->number);
13237 if (b->type == bp_gnu_ifunc_resolver)
13238 printf_filtered (_(" at gnu-indirect-function resolver"));
13239 break;
13240 case bp_hardware_breakpoint:
13241 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
13242 break;
13243 case bp_dprintf:
13244 printf_filtered (_("Dprintf %d"), b->number);
13245 break;
13246 }
13247
13248 say_where (b);
13249 }
13250
13251 static void
13252 bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13253 {
13254 if (tp->type == bp_breakpoint && tp->disposition == disp_del)
13255 fprintf_unfiltered (fp, "tbreak");
13256 else if (tp->type == bp_breakpoint)
13257 fprintf_unfiltered (fp, "break");
13258 else if (tp->type == bp_hardware_breakpoint
13259 && tp->disposition == disp_del)
13260 fprintf_unfiltered (fp, "thbreak");
13261 else if (tp->type == bp_hardware_breakpoint)
13262 fprintf_unfiltered (fp, "hbreak");
13263 else
13264 internal_error (__FILE__, __LINE__,
13265 _("unhandled breakpoint type %d"), (int) tp->type);
13266
13267 fprintf_unfiltered (fp, " %s",
13268 event_location_to_string (tp->location));
13269
13270 /* Print out extra_string if this breakpoint is pending. It might
13271 contain, for example, conditions that were set by the user. */
13272 if (tp->loc == NULL && tp->extra_string != NULL)
13273 fprintf_unfiltered (fp, " %s", tp->extra_string);
13274
13275 print_recreate_thread (tp, fp);
13276 }
13277
13278 static void
13279 bkpt_create_sals_from_location (const struct event_location *location,
13280 struct linespec_result *canonical,
13281 enum bptype type_wanted)
13282 {
13283 create_sals_from_location_default (location, canonical, type_wanted);
13284 }
13285
13286 static void
13287 bkpt_create_breakpoints_sal (struct gdbarch *gdbarch,
13288 struct linespec_result *canonical,
13289 char *cond_string,
13290 char *extra_string,
13291 enum bptype type_wanted,
13292 enum bpdisp disposition,
13293 int thread,
13294 int task, int ignore_count,
13295 const struct breakpoint_ops *ops,
13296 int from_tty, int enabled,
13297 int internal, unsigned flags)
13298 {
13299 create_breakpoints_sal_default (gdbarch, canonical,
13300 cond_string, extra_string,
13301 type_wanted,
13302 disposition, thread, task,
13303 ignore_count, ops, from_tty,
13304 enabled, internal, flags);
13305 }
13306
13307 static void
13308 bkpt_decode_location (struct breakpoint *b,
13309 const struct event_location *location,
13310 struct program_space *search_pspace,
13311 struct symtabs_and_lines *sals)
13312 {
13313 decode_location_default (b, location, search_pspace, sals);
13314 }
13315
13316 /* Virtual table for internal breakpoints. */
13317
13318 static void
13319 internal_bkpt_re_set (struct breakpoint *b)
13320 {
13321 switch (b->type)
13322 {
13323 /* Delete overlay event and longjmp master breakpoints; they
13324 will be reset later by breakpoint_re_set. */
13325 case bp_overlay_event:
13326 case bp_longjmp_master:
13327 case bp_std_terminate_master:
13328 case bp_exception_master:
13329 delete_breakpoint (b);
13330 break;
13331
13332 /* This breakpoint is special, it's set up when the inferior
13333 starts and we really don't want to touch it. */
13334 case bp_shlib_event:
13335
13336 /* Like bp_shlib_event, this breakpoint type is special. Once
13337 it is set up, we do not want to touch it. */
13338 case bp_thread_event:
13339 break;
13340 }
13341 }
13342
13343 static void
13344 internal_bkpt_check_status (bpstat bs)
13345 {
13346 if (bs->breakpoint_at->type == bp_shlib_event)
13347 {
13348 /* If requested, stop when the dynamic linker notifies GDB of
13349 events. This allows the user to get control and place
13350 breakpoints in initializer routines for dynamically loaded
13351 objects (among other things). */
13352 bs->stop = stop_on_solib_events;
13353 bs->print = stop_on_solib_events;
13354 }
13355 else
13356 bs->stop = 0;
13357 }
13358
13359 static enum print_stop_action
13360 internal_bkpt_print_it (bpstat bs)
13361 {
13362 struct breakpoint *b;
13363
13364 b = bs->breakpoint_at;
13365
13366 switch (b->type)
13367 {
13368 case bp_shlib_event:
13369 /* Did we stop because the user set the stop_on_solib_events
13370 variable? (If so, we report this as a generic, "Stopped due
13371 to shlib event" message.) */
13372 print_solib_event (0);
13373 break;
13374
13375 case bp_thread_event:
13376 /* Not sure how we will get here.
13377 GDB should not stop for these breakpoints. */
13378 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
13379 break;
13380
13381 case bp_overlay_event:
13382 /* By analogy with the thread event, GDB should not stop for these. */
13383 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
13384 break;
13385
13386 case bp_longjmp_master:
13387 /* These should never be enabled. */
13388 printf_filtered (_("Longjmp Master Breakpoint: gdb should not stop!\n"));
13389 break;
13390
13391 case bp_std_terminate_master:
13392 /* These should never be enabled. */
13393 printf_filtered (_("std::terminate Master Breakpoint: "
13394 "gdb should not stop!\n"));
13395 break;
13396
13397 case bp_exception_master:
13398 /* These should never be enabled. */
13399 printf_filtered (_("Exception Master Breakpoint: "
13400 "gdb should not stop!\n"));
13401 break;
13402 }
13403
13404 return PRINT_NOTHING;
13405 }
13406
13407 static void
13408 internal_bkpt_print_mention (struct breakpoint *b)
13409 {
13410 /* Nothing to mention. These breakpoints are internal. */
13411 }
13412
13413 /* Virtual table for momentary breakpoints */
13414
13415 static void
13416 momentary_bkpt_re_set (struct breakpoint *b)
13417 {
13418 /* Keep temporary breakpoints, which can be encountered when we step
13419 over a dlopen call and solib_add is resetting the breakpoints.
13420 Otherwise these should have been blown away via the cleanup chain
13421 or by breakpoint_init_inferior when we rerun the executable. */
13422 }
13423
13424 static void
13425 momentary_bkpt_check_status (bpstat bs)
13426 {
13427 /* Nothing. The point of these breakpoints is causing a stop. */
13428 }
13429
13430 static enum print_stop_action
13431 momentary_bkpt_print_it (bpstat bs)
13432 {
13433 return PRINT_UNKNOWN;
13434 }
13435
13436 static void
13437 momentary_bkpt_print_mention (struct breakpoint *b)
13438 {
13439 /* Nothing to mention. These breakpoints are internal. */
13440 }
13441
13442 /* Ensure INITIATING_FRAME is cleared when no such breakpoint exists.
13443
13444 It gets cleared already on the removal of the first one of such placed
13445 breakpoints. This is OK as they get all removed altogether. */
13446
13447 static void
13448 longjmp_bkpt_dtor (struct breakpoint *self)
13449 {
13450 struct thread_info *tp = find_thread_global_id (self->thread);
13451
13452 if (tp)
13453 tp->initiating_frame = null_frame_id;
13454
13455 momentary_breakpoint_ops.dtor (self);
13456 }
13457
13458 /* Specific methods for probe breakpoints. */
13459
13460 static int
13461 bkpt_probe_insert_location (struct bp_location *bl)
13462 {
13463 int v = bkpt_insert_location (bl);
13464
13465 if (v == 0)
13466 {
13467 /* The insertion was successful, now let's set the probe's semaphore
13468 if needed. */
13469 if (bl->probe.probe->pops->set_semaphore != NULL)
13470 bl->probe.probe->pops->set_semaphore (bl->probe.probe,
13471 bl->probe.objfile,
13472 bl->gdbarch);
13473 }
13474
13475 return v;
13476 }
13477
13478 static int
13479 bkpt_probe_remove_location (struct bp_location *bl)
13480 {
13481 /* Let's clear the semaphore before removing the location. */
13482 if (bl->probe.probe->pops->clear_semaphore != NULL)
13483 bl->probe.probe->pops->clear_semaphore (bl->probe.probe,
13484 bl->probe.objfile,
13485 bl->gdbarch);
13486
13487 return bkpt_remove_location (bl);
13488 }
13489
13490 static void
13491 bkpt_probe_create_sals_from_location (const struct event_location *location,
13492 struct linespec_result *canonical,
13493 enum bptype type_wanted)
13494 {
13495 struct linespec_sals lsal;
13496
13497 lsal.sals = parse_probes (location, NULL, canonical);
13498 lsal.canonical = xstrdup (event_location_to_string (canonical->location));
13499 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
13500 }
13501
13502 static void
13503 bkpt_probe_decode_location (struct breakpoint *b,
13504 const struct event_location *location,
13505 struct program_space *search_pspace,
13506 struct symtabs_and_lines *sals)
13507 {
13508 *sals = parse_probes (location, search_pspace, NULL);
13509 if (!sals->sals)
13510 error (_("probe not found"));
13511 }
13512
13513 /* The breakpoint_ops structure to be used in tracepoints. */
13514
13515 static void
13516 tracepoint_re_set (struct breakpoint *b)
13517 {
13518 breakpoint_re_set_default (b);
13519 }
13520
13521 static int
13522 tracepoint_breakpoint_hit (const struct bp_location *bl,
13523 struct address_space *aspace, CORE_ADDR bp_addr,
13524 const struct target_waitstatus *ws)
13525 {
13526 /* By definition, the inferior does not report stops at
13527 tracepoints. */
13528 return 0;
13529 }
13530
13531 static void
13532 tracepoint_print_one_detail (const struct breakpoint *self,
13533 struct ui_out *uiout)
13534 {
13535 struct tracepoint *tp = (struct tracepoint *) self;
13536 if (tp->static_trace_marker_id)
13537 {
13538 gdb_assert (self->type == bp_static_tracepoint);
13539
13540 ui_out_text (uiout, "\tmarker id is ");
13541 ui_out_field_string (uiout, "static-tracepoint-marker-string-id",
13542 tp->static_trace_marker_id);
13543 ui_out_text (uiout, "\n");
13544 }
13545 }
13546
13547 static void
13548 tracepoint_print_mention (struct breakpoint *b)
13549 {
13550 if (ui_out_is_mi_like_p (current_uiout))
13551 return;
13552
13553 switch (b->type)
13554 {
13555 case bp_tracepoint:
13556 printf_filtered (_("Tracepoint"));
13557 printf_filtered (_(" %d"), b->number);
13558 break;
13559 case bp_fast_tracepoint:
13560 printf_filtered (_("Fast tracepoint"));
13561 printf_filtered (_(" %d"), b->number);
13562 break;
13563 case bp_static_tracepoint:
13564 printf_filtered (_("Static tracepoint"));
13565 printf_filtered (_(" %d"), b->number);
13566 break;
13567 default:
13568 internal_error (__FILE__, __LINE__,
13569 _("unhandled tracepoint type %d"), (int) b->type);
13570 }
13571
13572 say_where (b);
13573 }
13574
13575 static void
13576 tracepoint_print_recreate (struct breakpoint *self, struct ui_file *fp)
13577 {
13578 struct tracepoint *tp = (struct tracepoint *) self;
13579
13580 if (self->type == bp_fast_tracepoint)
13581 fprintf_unfiltered (fp, "ftrace");
13582 else if (self->type == bp_static_tracepoint)
13583 fprintf_unfiltered (fp, "strace");
13584 else if (self->type == bp_tracepoint)
13585 fprintf_unfiltered (fp, "trace");
13586 else
13587 internal_error (__FILE__, __LINE__,
13588 _("unhandled tracepoint type %d"), (int) self->type);
13589
13590 fprintf_unfiltered (fp, " %s",
13591 event_location_to_string (self->location));
13592 print_recreate_thread (self, fp);
13593
13594 if (tp->pass_count)
13595 fprintf_unfiltered (fp, " passcount %d\n", tp->pass_count);
13596 }
13597
13598 static void
13599 tracepoint_create_sals_from_location (const struct event_location *location,
13600 struct linespec_result *canonical,
13601 enum bptype type_wanted)
13602 {
13603 create_sals_from_location_default (location, canonical, type_wanted);
13604 }
13605
13606 static void
13607 tracepoint_create_breakpoints_sal (struct gdbarch *gdbarch,
13608 struct linespec_result *canonical,
13609 char *cond_string,
13610 char *extra_string,
13611 enum bptype type_wanted,
13612 enum bpdisp disposition,
13613 int thread,
13614 int task, int ignore_count,
13615 const struct breakpoint_ops *ops,
13616 int from_tty, int enabled,
13617 int internal, unsigned flags)
13618 {
13619 create_breakpoints_sal_default (gdbarch, canonical,
13620 cond_string, extra_string,
13621 type_wanted,
13622 disposition, thread, task,
13623 ignore_count, ops, from_tty,
13624 enabled, internal, flags);
13625 }
13626
13627 static void
13628 tracepoint_decode_location (struct breakpoint *b,
13629 const struct event_location *location,
13630 struct program_space *search_pspace,
13631 struct symtabs_and_lines *sals)
13632 {
13633 decode_location_default (b, location, search_pspace, sals);
13634 }
13635
13636 struct breakpoint_ops tracepoint_breakpoint_ops;
13637
13638 /* The breakpoint_ops structure to be use on tracepoints placed in a
13639 static probe. */
13640
13641 static void
13642 tracepoint_probe_create_sals_from_location
13643 (const struct event_location *location,
13644 struct linespec_result *canonical,
13645 enum bptype type_wanted)
13646 {
13647 /* We use the same method for breakpoint on probes. */
13648 bkpt_probe_create_sals_from_location (location, canonical, type_wanted);
13649 }
13650
13651 static void
13652 tracepoint_probe_decode_location (struct breakpoint *b,
13653 const struct event_location *location,
13654 struct program_space *search_pspace,
13655 struct symtabs_and_lines *sals)
13656 {
13657 /* We use the same method for breakpoint on probes. */
13658 bkpt_probe_decode_location (b, location, search_pspace, sals);
13659 }
13660
13661 static struct breakpoint_ops tracepoint_probe_breakpoint_ops;
13662
13663 /* Dprintf breakpoint_ops methods. */
13664
13665 static void
13666 dprintf_re_set (struct breakpoint *b)
13667 {
13668 breakpoint_re_set_default (b);
13669
13670 /* extra_string should never be non-NULL for dprintf. */
13671 gdb_assert (b->extra_string != NULL);
13672
13673 /* 1 - connect to target 1, that can run breakpoint commands.
13674 2 - create a dprintf, which resolves fine.
13675 3 - disconnect from target 1
13676 4 - connect to target 2, that can NOT run breakpoint commands.
13677
13678 After steps #3/#4, you'll want the dprintf command list to
13679 be updated, because target 1 and 2 may well return different
13680 answers for target_can_run_breakpoint_commands().
13681 Given absence of finer grained resetting, we get to do
13682 it all the time. */
13683 if (b->extra_string != NULL)
13684 update_dprintf_command_list (b);
13685 }
13686
13687 /* Implement the "print_recreate" breakpoint_ops method for dprintf. */
13688
13689 static void
13690 dprintf_print_recreate (struct breakpoint *tp, struct ui_file *fp)
13691 {
13692 fprintf_unfiltered (fp, "dprintf %s,%s",
13693 event_location_to_string (tp->location),
13694 tp->extra_string);
13695 print_recreate_thread (tp, fp);
13696 }
13697
13698 /* Implement the "after_condition_true" breakpoint_ops method for
13699 dprintf.
13700
13701 dprintf's are implemented with regular commands in their command
13702 list, but we run the commands here instead of before presenting the
13703 stop to the user, as dprintf's don't actually cause a stop. This
13704 also makes it so that the commands of multiple dprintfs at the same
13705 address are all handled. */
13706
13707 static void
13708 dprintf_after_condition_true (struct bpstats *bs)
13709 {
13710 struct cleanup *old_chain;
13711 struct bpstats tmp_bs = { NULL };
13712 struct bpstats *tmp_bs_p = &tmp_bs;
13713
13714 /* dprintf's never cause a stop. This wasn't set in the
13715 check_status hook instead because that would make the dprintf's
13716 condition not be evaluated. */
13717 bs->stop = 0;
13718
13719 /* Run the command list here. Take ownership of it instead of
13720 copying. We never want these commands to run later in
13721 bpstat_do_actions, if a breakpoint that causes a stop happens to
13722 be set at same address as this dprintf, or even if running the
13723 commands here throws. */
13724 tmp_bs.commands = bs->commands;
13725 bs->commands = NULL;
13726 old_chain = make_cleanup_decref_counted_command_line (&tmp_bs.commands);
13727
13728 bpstat_do_actions_1 (&tmp_bs_p);
13729
13730 /* 'tmp_bs.commands' will usually be NULL by now, but
13731 bpstat_do_actions_1 may return early without processing the whole
13732 list. */
13733 do_cleanups (old_chain);
13734 }
13735
13736 /* The breakpoint_ops structure to be used on static tracepoints with
13737 markers (`-m'). */
13738
13739 static void
13740 strace_marker_create_sals_from_location (const struct event_location *location,
13741 struct linespec_result *canonical,
13742 enum bptype type_wanted)
13743 {
13744 struct linespec_sals lsal;
13745 const char *arg_start, *arg;
13746 char *str;
13747 struct cleanup *cleanup;
13748
13749 arg = arg_start = get_linespec_location (location);
13750 lsal.sals = decode_static_tracepoint_spec (&arg);
13751
13752 str = savestring (arg_start, arg - arg_start);
13753 cleanup = make_cleanup (xfree, str);
13754 canonical->location = new_linespec_location (&str);
13755 do_cleanups (cleanup);
13756
13757 lsal.canonical = xstrdup (event_location_to_string (canonical->location));
13758 VEC_safe_push (linespec_sals, canonical->sals, &lsal);
13759 }
13760
13761 static void
13762 strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch,
13763 struct linespec_result *canonical,
13764 char *cond_string,
13765 char *extra_string,
13766 enum bptype type_wanted,
13767 enum bpdisp disposition,
13768 int thread,
13769 int task, int ignore_count,
13770 const struct breakpoint_ops *ops,
13771 int from_tty, int enabled,
13772 int internal, unsigned flags)
13773 {
13774 int i;
13775 struct linespec_sals *lsal = VEC_index (linespec_sals,
13776 canonical->sals, 0);
13777
13778 /* If the user is creating a static tracepoint by marker id
13779 (strace -m MARKER_ID), then store the sals index, so that
13780 breakpoint_re_set can try to match up which of the newly
13781 found markers corresponds to this one, and, don't try to
13782 expand multiple locations for each sal, given than SALS
13783 already should contain all sals for MARKER_ID. */
13784
13785 for (i = 0; i < lsal->sals.nelts; ++i)
13786 {
13787 struct symtabs_and_lines expanded;
13788 struct tracepoint *tp;
13789 struct cleanup *old_chain;
13790 struct event_location *location;
13791
13792 expanded.nelts = 1;
13793 expanded.sals = &lsal->sals.sals[i];
13794
13795 location = copy_event_location (canonical->location);
13796 old_chain = make_cleanup_delete_event_location (location);
13797
13798 tp = XCNEW (struct tracepoint);
13799 init_breakpoint_sal (&tp->base, gdbarch, expanded,
13800 location, NULL,
13801 cond_string, extra_string,
13802 type_wanted, disposition,
13803 thread, task, ignore_count, ops,
13804 from_tty, enabled, internal, flags,
13805 canonical->special_display);
13806 /* Given that its possible to have multiple markers with
13807 the same string id, if the user is creating a static
13808 tracepoint by marker id ("strace -m MARKER_ID"), then
13809 store the sals index, so that breakpoint_re_set can
13810 try to match up which of the newly found markers
13811 corresponds to this one */
13812 tp->static_trace_marker_id_idx = i;
13813
13814 install_breakpoint (internal, &tp->base, 0);
13815
13816 discard_cleanups (old_chain);
13817 }
13818 }
13819
13820 static void
13821 strace_marker_decode_location (struct breakpoint *b,
13822 const struct event_location *location,
13823 struct program_space *search_pspace,
13824 struct symtabs_and_lines *sals)
13825 {
13826 struct tracepoint *tp = (struct tracepoint *) b;
13827 const char *s = get_linespec_location (location);
13828
13829 *sals = decode_static_tracepoint_spec (&s);
13830 if (sals->nelts > tp->static_trace_marker_id_idx)
13831 {
13832 sals->sals[0] = sals->sals[tp->static_trace_marker_id_idx];
13833 sals->nelts = 1;
13834 }
13835 else
13836 error (_("marker %s not found"), tp->static_trace_marker_id);
13837 }
13838
13839 static struct breakpoint_ops strace_marker_breakpoint_ops;
13840
13841 static int
13842 strace_marker_p (struct breakpoint *b)
13843 {
13844 return b->ops == &strace_marker_breakpoint_ops;
13845 }
13846
13847 /* Delete a breakpoint and clean up all traces of it in the data
13848 structures. */
13849
13850 void
13851 delete_breakpoint (struct breakpoint *bpt)
13852 {
13853 struct breakpoint *b;
13854
13855 gdb_assert (bpt != NULL);
13856
13857 /* Has this bp already been deleted? This can happen because
13858 multiple lists can hold pointers to bp's. bpstat lists are
13859 especial culprits.
13860
13861 One example of this happening is a watchpoint's scope bp. When
13862 the scope bp triggers, we notice that the watchpoint is out of
13863 scope, and delete it. We also delete its scope bp. But the
13864 scope bp is marked "auto-deleting", and is already on a bpstat.
13865 That bpstat is then checked for auto-deleting bp's, which are
13866 deleted.
13867
13868 A real solution to this problem might involve reference counts in
13869 bp's, and/or giving them pointers back to their referencing
13870 bpstat's, and teaching delete_breakpoint to only free a bp's
13871 storage when no more references were extent. A cheaper bandaid
13872 was chosen. */
13873 if (bpt->type == bp_none)
13874 return;
13875
13876 /* At least avoid this stale reference until the reference counting
13877 of breakpoints gets resolved. */
13878 if (bpt->related_breakpoint != bpt)
13879 {
13880 struct breakpoint *related;
13881 struct watchpoint *w;
13882
13883 if (bpt->type == bp_watchpoint_scope)
13884 w = (struct watchpoint *) bpt->related_breakpoint;
13885 else if (bpt->related_breakpoint->type == bp_watchpoint_scope)
13886 w = (struct watchpoint *) bpt;
13887 else
13888 w = NULL;
13889 if (w != NULL)
13890 watchpoint_del_at_next_stop (w);
13891
13892 /* Unlink bpt from the bpt->related_breakpoint ring. */
13893 for (related = bpt; related->related_breakpoint != bpt;
13894 related = related->related_breakpoint);
13895 related->related_breakpoint = bpt->related_breakpoint;
13896 bpt->related_breakpoint = bpt;
13897 }
13898
13899 /* watch_command_1 creates a watchpoint but only sets its number if
13900 update_watchpoint succeeds in creating its bp_locations. If there's
13901 a problem in that process, we'll be asked to delete the half-created
13902 watchpoint. In that case, don't announce the deletion. */
13903 if (bpt->number)
13904 observer_notify_breakpoint_deleted (bpt);
13905
13906 if (breakpoint_chain == bpt)
13907 breakpoint_chain = bpt->next;
13908
13909 ALL_BREAKPOINTS (b)
13910 if (b->next == bpt)
13911 {
13912 b->next = bpt->next;
13913 break;
13914 }
13915
13916 /* Be sure no bpstat's are pointing at the breakpoint after it's
13917 been freed. */
13918 /* FIXME, how can we find all bpstat's? We just check stop_bpstat
13919 in all threads for now. Note that we cannot just remove bpstats
13920 pointing at bpt from the stop_bpstat list entirely, as breakpoint
13921 commands are associated with the bpstat; if we remove it here,
13922 then the later call to bpstat_do_actions (&stop_bpstat); in
13923 event-top.c won't do anything, and temporary breakpoints with
13924 commands won't work. */
13925
13926 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
13927
13928 /* Now that breakpoint is removed from breakpoint list, update the
13929 global location list. This will remove locations that used to
13930 belong to this breakpoint. Do this before freeing the breakpoint
13931 itself, since remove_breakpoint looks at location's owner. It
13932 might be better design to have location completely
13933 self-contained, but it's not the case now. */
13934 update_global_location_list (UGLL_DONT_INSERT);
13935
13936 bpt->ops->dtor (bpt);
13937 /* On the chance that someone will soon try again to delete this
13938 same bp, we mark it as deleted before freeing its storage. */
13939 bpt->type = bp_none;
13940 xfree (bpt);
13941 }
13942
13943 static void
13944 do_delete_breakpoint_cleanup (void *b)
13945 {
13946 delete_breakpoint ((struct breakpoint *) b);
13947 }
13948
13949 struct cleanup *
13950 make_cleanup_delete_breakpoint (struct breakpoint *b)
13951 {
13952 return make_cleanup (do_delete_breakpoint_cleanup, b);
13953 }
13954
13955 /* Iterator function to call a user-provided callback function once
13956 for each of B and its related breakpoints. */
13957
13958 static void
13959 iterate_over_related_breakpoints (struct breakpoint *b,
13960 void (*function) (struct breakpoint *,
13961 void *),
13962 void *data)
13963 {
13964 struct breakpoint *related;
13965
13966 related = b;
13967 do
13968 {
13969 struct breakpoint *next;
13970
13971 /* FUNCTION may delete RELATED. */
13972 next = related->related_breakpoint;
13973
13974 if (next == related)
13975 {
13976 /* RELATED is the last ring entry. */
13977 function (related, data);
13978
13979 /* FUNCTION may have deleted it, so we'd never reach back to
13980 B. There's nothing left to do anyway, so just break
13981 out. */
13982 break;
13983 }
13984 else
13985 function (related, data);
13986
13987 related = next;
13988 }
13989 while (related != b);
13990 }
13991
13992 static void
13993 do_delete_breakpoint (struct breakpoint *b, void *ignore)
13994 {
13995 delete_breakpoint (b);
13996 }
13997
13998 /* A callback for map_breakpoint_numbers that calls
13999 delete_breakpoint. */
14000
14001 static void
14002 do_map_delete_breakpoint (struct breakpoint *b, void *ignore)
14003 {
14004 iterate_over_related_breakpoints (b, do_delete_breakpoint, NULL);
14005 }
14006
14007 void
14008 delete_command (char *arg, int from_tty)
14009 {
14010 struct breakpoint *b, *b_tmp;
14011
14012 dont_repeat ();
14013
14014 if (arg == 0)
14015 {
14016 int breaks_to_delete = 0;
14017
14018 /* Delete all breakpoints if no argument. Do not delete
14019 internal breakpoints, these have to be deleted with an
14020 explicit breakpoint number argument. */
14021 ALL_BREAKPOINTS (b)
14022 if (user_breakpoint_p (b))
14023 {
14024 breaks_to_delete = 1;
14025 break;
14026 }
14027
14028 /* Ask user only if there are some breakpoints to delete. */
14029 if (!from_tty
14030 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
14031 {
14032 ALL_BREAKPOINTS_SAFE (b, b_tmp)
14033 if (user_breakpoint_p (b))
14034 delete_breakpoint (b);
14035 }
14036 }
14037 else
14038 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
14039 }
14040
14041 /* Return true if all locations of B bound to PSPACE are pending. If
14042 PSPACE is NULL, all locations of all program spaces are
14043 considered. */
14044
14045 static int
14046 all_locations_are_pending (struct breakpoint *b, struct program_space *pspace)
14047 {
14048 struct bp_location *loc;
14049
14050 for (loc = b->loc; loc != NULL; loc = loc->next)
14051 if ((pspace == NULL
14052 || loc->pspace == pspace)
14053 && !loc->shlib_disabled
14054 && !loc->pspace->executing_startup)
14055 return 0;
14056 return 1;
14057 }
14058
14059 /* Subroutine of update_breakpoint_locations to simplify it.
14060 Return non-zero if multiple fns in list LOC have the same name.
14061 Null names are ignored. */
14062
14063 static int
14064 ambiguous_names_p (struct bp_location *loc)
14065 {
14066 struct bp_location *l;
14067 htab_t htab = htab_create_alloc (13, htab_hash_string,
14068 (int (*) (const void *,
14069 const void *)) streq,
14070 NULL, xcalloc, xfree);
14071
14072 for (l = loc; l != NULL; l = l->next)
14073 {
14074 const char **slot;
14075 const char *name = l->function_name;
14076
14077 /* Allow for some names to be NULL, ignore them. */
14078 if (name == NULL)
14079 continue;
14080
14081 slot = (const char **) htab_find_slot (htab, (const void *) name,
14082 INSERT);
14083 /* NOTE: We can assume slot != NULL here because xcalloc never
14084 returns NULL. */
14085 if (*slot != NULL)
14086 {
14087 htab_delete (htab);
14088 return 1;
14089 }
14090 *slot = name;
14091 }
14092
14093 htab_delete (htab);
14094 return 0;
14095 }
14096
14097 /* When symbols change, it probably means the sources changed as well,
14098 and it might mean the static tracepoint markers are no longer at
14099 the same address or line numbers they used to be at last we
14100 checked. Losing your static tracepoints whenever you rebuild is
14101 undesirable. This function tries to resync/rematch gdb static
14102 tracepoints with the markers on the target, for static tracepoints
14103 that have not been set by marker id. Static tracepoint that have
14104 been set by marker id are reset by marker id in breakpoint_re_set.
14105 The heuristic is:
14106
14107 1) For a tracepoint set at a specific address, look for a marker at
14108 the old PC. If one is found there, assume to be the same marker.
14109 If the name / string id of the marker found is different from the
14110 previous known name, assume that means the user renamed the marker
14111 in the sources, and output a warning.
14112
14113 2) For a tracepoint set at a given line number, look for a marker
14114 at the new address of the old line number. If one is found there,
14115 assume to be the same marker. If the name / string id of the
14116 marker found is different from the previous known name, assume that
14117 means the user renamed the marker in the sources, and output a
14118 warning.
14119
14120 3) If a marker is no longer found at the same address or line, it
14121 may mean the marker no longer exists. But it may also just mean
14122 the code changed a bit. Maybe the user added a few lines of code
14123 that made the marker move up or down (in line number terms). Ask
14124 the target for info about the marker with the string id as we knew
14125 it. If found, update line number and address in the matching
14126 static tracepoint. This will get confused if there's more than one
14127 marker with the same ID (possible in UST, although unadvised
14128 precisely because it confuses tools). */
14129
14130 static struct symtab_and_line
14131 update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal)
14132 {
14133 struct tracepoint *tp = (struct tracepoint *) b;
14134 struct static_tracepoint_marker marker;
14135 CORE_ADDR pc;
14136
14137 pc = sal.pc;
14138 if (sal.line)
14139 find_line_pc (sal.symtab, sal.line, &pc);
14140
14141 if (target_static_tracepoint_marker_at (pc, &marker))
14142 {
14143 if (strcmp (tp->static_trace_marker_id, marker.str_id) != 0)
14144 warning (_("static tracepoint %d changed probed marker from %s to %s"),
14145 b->number,
14146 tp->static_trace_marker_id, marker.str_id);
14147
14148 xfree (tp->static_trace_marker_id);
14149 tp->static_trace_marker_id = xstrdup (marker.str_id);
14150 release_static_tracepoint_marker (&marker);
14151
14152 return sal;
14153 }
14154
14155 /* Old marker wasn't found on target at lineno. Try looking it up
14156 by string ID. */
14157 if (!sal.explicit_pc
14158 && sal.line != 0
14159 && sal.symtab != NULL
14160 && tp->static_trace_marker_id != NULL)
14161 {
14162 VEC(static_tracepoint_marker_p) *markers;
14163
14164 markers
14165 = target_static_tracepoint_markers_by_strid (tp->static_trace_marker_id);
14166
14167 if (!VEC_empty(static_tracepoint_marker_p, markers))
14168 {
14169 struct symtab_and_line sal2;
14170 struct symbol *sym;
14171 struct static_tracepoint_marker *tpmarker;
14172 struct ui_out *uiout = current_uiout;
14173 struct explicit_location explicit_loc;
14174
14175 tpmarker = VEC_index (static_tracepoint_marker_p, markers, 0);
14176
14177 xfree (tp->static_trace_marker_id);
14178 tp->static_trace_marker_id = xstrdup (tpmarker->str_id);
14179
14180 warning (_("marker for static tracepoint %d (%s) not "
14181 "found at previous line number"),
14182 b->number, tp->static_trace_marker_id);
14183
14184 init_sal (&sal2);
14185
14186 sal2.pc = tpmarker->address;
14187
14188 sal2 = find_pc_line (tpmarker->address, 0);
14189 sym = find_pc_sect_function (tpmarker->address, NULL);
14190 ui_out_text (uiout, "Now in ");
14191 if (sym)
14192 {
14193 ui_out_field_string (uiout, "func",
14194 SYMBOL_PRINT_NAME (sym));
14195 ui_out_text (uiout, " at ");
14196 }
14197 ui_out_field_string (uiout, "file",
14198 symtab_to_filename_for_display (sal2.symtab));
14199 ui_out_text (uiout, ":");
14200
14201 if (ui_out_is_mi_like_p (uiout))
14202 {
14203 const char *fullname = symtab_to_fullname (sal2.symtab);
14204
14205 ui_out_field_string (uiout, "fullname", fullname);
14206 }
14207
14208 ui_out_field_int (uiout, "line", sal2.line);
14209 ui_out_text (uiout, "\n");
14210
14211 b->loc->line_number = sal2.line;
14212 b->loc->symtab = sym != NULL ? sal2.symtab : NULL;
14213
14214 delete_event_location (b->location);
14215 initialize_explicit_location (&explicit_loc);
14216 explicit_loc.source_filename
14217 = ASTRDUP (symtab_to_filename_for_display (sal2.symtab));
14218 explicit_loc.line_offset.offset = b->loc->line_number;
14219 explicit_loc.line_offset.sign = LINE_OFFSET_NONE;
14220 b->location = new_explicit_location (&explicit_loc);
14221
14222 /* Might be nice to check if function changed, and warn if
14223 so. */
14224
14225 release_static_tracepoint_marker (tpmarker);
14226 }
14227 }
14228 return sal;
14229 }
14230
14231 /* Returns 1 iff locations A and B are sufficiently same that
14232 we don't need to report breakpoint as changed. */
14233
14234 static int
14235 locations_are_equal (struct bp_location *a, struct bp_location *b)
14236 {
14237 while (a && b)
14238 {
14239 if (a->address != b->address)
14240 return 0;
14241
14242 if (a->shlib_disabled != b->shlib_disabled)
14243 return 0;
14244
14245 if (a->enabled != b->enabled)
14246 return 0;
14247
14248 a = a->next;
14249 b = b->next;
14250 }
14251
14252 if ((a == NULL) != (b == NULL))
14253 return 0;
14254
14255 return 1;
14256 }
14257
14258 /* Split all locations of B that are bound to PSPACE out of B's
14259 location list to a separate list and return that list's head. If
14260 PSPACE is NULL, hoist out all locations of B. */
14261
14262 static struct bp_location *
14263 hoist_existing_locations (struct breakpoint *b, struct program_space *pspace)
14264 {
14265 struct bp_location head;
14266 struct bp_location *i = b->loc;
14267 struct bp_location **i_link = &b->loc;
14268 struct bp_location *hoisted = &head;
14269
14270 if (pspace == NULL)
14271 {
14272 i = b->loc;
14273 b->loc = NULL;
14274 return i;
14275 }
14276
14277 head.next = NULL;
14278
14279 while (i != NULL)
14280 {
14281 if (i->pspace == pspace)
14282 {
14283 *i_link = i->next;
14284 i->next = NULL;
14285 hoisted->next = i;
14286 hoisted = i;
14287 }
14288 else
14289 i_link = &i->next;
14290 i = *i_link;
14291 }
14292
14293 return head.next;
14294 }
14295
14296 /* Create new breakpoint locations for B (a hardware or software
14297 breakpoint) based on SALS and SALS_END. If SALS_END.NELTS is not
14298 zero, then B is a ranged breakpoint. Only recreates locations for
14299 FILTER_PSPACE. Locations of other program spaces are left
14300 untouched. */
14301
14302 void
14303 update_breakpoint_locations (struct breakpoint *b,
14304 struct program_space *filter_pspace,
14305 struct symtabs_and_lines sals,
14306 struct symtabs_and_lines sals_end)
14307 {
14308 int i;
14309 struct bp_location *existing_locations;
14310
14311 if (sals_end.nelts != 0 && (sals.nelts != 1 || sals_end.nelts != 1))
14312 {
14313 /* Ranged breakpoints have only one start location and one end
14314 location. */
14315 b->enable_state = bp_disabled;
14316 printf_unfiltered (_("Could not reset ranged breakpoint %d: "
14317 "multiple locations found\n"),
14318 b->number);
14319 return;
14320 }
14321
14322 /* If there's no new locations, and all existing locations are
14323 pending, don't do anything. This optimizes the common case where
14324 all locations are in the same shared library, that was unloaded.
14325 We'd like to retain the location, so that when the library is
14326 loaded again, we don't loose the enabled/disabled status of the
14327 individual locations. */
14328 if (all_locations_are_pending (b, filter_pspace) && sals.nelts == 0)
14329 return;
14330
14331 existing_locations = hoist_existing_locations (b, filter_pspace);
14332
14333 for (i = 0; i < sals.nelts; ++i)
14334 {
14335 struct bp_location *new_loc;
14336
14337 switch_to_program_space_and_thread (sals.sals[i].pspace);
14338
14339 new_loc = add_location_to_breakpoint (b, &(sals.sals[i]));
14340
14341 /* Reparse conditions, they might contain references to the
14342 old symtab. */
14343 if (b->cond_string != NULL)
14344 {
14345 const char *s;
14346
14347 s = b->cond_string;
14348 TRY
14349 {
14350 new_loc->cond = parse_exp_1 (&s, sals.sals[i].pc,
14351 block_for_pc (sals.sals[i].pc),
14352 0);
14353 }
14354 CATCH (e, RETURN_MASK_ERROR)
14355 {
14356 warning (_("failed to reevaluate condition "
14357 "for breakpoint %d: %s"),
14358 b->number, e.message);
14359 new_loc->enabled = 0;
14360 }
14361 END_CATCH
14362 }
14363
14364 if (sals_end.nelts)
14365 {
14366 CORE_ADDR end = find_breakpoint_range_end (sals_end.sals[0]);
14367
14368 new_loc->length = end - sals.sals[0].pc + 1;
14369 }
14370 }
14371
14372 /* If possible, carry over 'disable' status from existing
14373 breakpoints. */
14374 {
14375 struct bp_location *e = existing_locations;
14376 /* If there are multiple breakpoints with the same function name,
14377 e.g. for inline functions, comparing function names won't work.
14378 Instead compare pc addresses; this is just a heuristic as things
14379 may have moved, but in practice it gives the correct answer
14380 often enough until a better solution is found. */
14381 int have_ambiguous_names = ambiguous_names_p (b->loc);
14382
14383 for (; e; e = e->next)
14384 {
14385 if (!e->enabled && e->function_name)
14386 {
14387 struct bp_location *l = b->loc;
14388 if (have_ambiguous_names)
14389 {
14390 for (; l; l = l->next)
14391 if (breakpoint_locations_match (e, l))
14392 {
14393 l->enabled = 0;
14394 break;
14395 }
14396 }
14397 else
14398 {
14399 for (; l; l = l->next)
14400 if (l->function_name
14401 && strcmp (e->function_name, l->function_name) == 0)
14402 {
14403 l->enabled = 0;
14404 break;
14405 }
14406 }
14407 }
14408 }
14409 }
14410
14411 if (!locations_are_equal (existing_locations, b->loc))
14412 observer_notify_breakpoint_modified (b);
14413 }
14414
14415 /* Find the SaL locations corresponding to the given LOCATION.
14416 On return, FOUND will be 1 if any SaL was found, zero otherwise. */
14417
14418 static struct symtabs_and_lines
14419 location_to_sals (struct breakpoint *b, struct event_location *location,
14420 struct program_space *search_pspace, int *found)
14421 {
14422 struct symtabs_and_lines sals = {0};
14423 struct gdb_exception exception = exception_none;
14424
14425 gdb_assert (b->ops != NULL);
14426
14427 TRY
14428 {
14429 b->ops->decode_location (b, location, search_pspace, &sals);
14430 }
14431 CATCH (e, RETURN_MASK_ERROR)
14432 {
14433 int not_found_and_ok = 0;
14434
14435 exception = e;
14436
14437 /* For pending breakpoints, it's expected that parsing will
14438 fail until the right shared library is loaded. User has
14439 already told to create pending breakpoints and don't need
14440 extra messages. If breakpoint is in bp_shlib_disabled
14441 state, then user already saw the message about that
14442 breakpoint being disabled, and don't want to see more
14443 errors. */
14444 if (e.error == NOT_FOUND_ERROR
14445 && (b->condition_not_parsed
14446 || (b->loc != NULL
14447 && search_pspace != NULL
14448 && b->loc->pspace != search_pspace)
14449 || (b->loc && b->loc->shlib_disabled)
14450 || (b->loc && b->loc->pspace->executing_startup)
14451 || b->enable_state == bp_disabled))
14452 not_found_and_ok = 1;
14453
14454 if (!not_found_and_ok)
14455 {
14456 /* We surely don't want to warn about the same breakpoint
14457 10 times. One solution, implemented here, is disable
14458 the breakpoint on error. Another solution would be to
14459 have separate 'warning emitted' flag. Since this
14460 happens only when a binary has changed, I don't know
14461 which approach is better. */
14462 b->enable_state = bp_disabled;
14463 throw_exception (e);
14464 }
14465 }
14466 END_CATCH
14467
14468 if (exception.reason == 0 || exception.error != NOT_FOUND_ERROR)
14469 {
14470 int i;
14471
14472 for (i = 0; i < sals.nelts; ++i)
14473 resolve_sal_pc (&sals.sals[i]);
14474 if (b->condition_not_parsed && b->extra_string != NULL)
14475 {
14476 char *cond_string, *extra_string;
14477 int thread, task;
14478
14479 find_condition_and_thread (b->extra_string, sals.sals[0].pc,
14480 &cond_string, &thread, &task,
14481 &extra_string);
14482 gdb_assert (b->cond_string == NULL);
14483 if (cond_string)
14484 b->cond_string = cond_string;
14485 b->thread = thread;
14486 b->task = task;
14487 if (extra_string)
14488 {
14489 xfree (b->extra_string);
14490 b->extra_string = extra_string;
14491 }
14492 b->condition_not_parsed = 0;
14493 }
14494
14495 if (b->type == bp_static_tracepoint && !strace_marker_p (b))
14496 sals.sals[0] = update_static_tracepoint (b, sals.sals[0]);
14497
14498 *found = 1;
14499 }
14500 else
14501 *found = 0;
14502
14503 return sals;
14504 }
14505
14506 /* The default re_set method, for typical hardware or software
14507 breakpoints. Reevaluate the breakpoint and recreate its
14508 locations. */
14509
14510 static void
14511 breakpoint_re_set_default (struct breakpoint *b)
14512 {
14513 int found;
14514 struct symtabs_and_lines sals, sals_end;
14515 struct symtabs_and_lines expanded = {0};
14516 struct symtabs_and_lines expanded_end = {0};
14517 struct program_space *filter_pspace = current_program_space;
14518
14519 sals = location_to_sals (b, b->location, filter_pspace, &found);
14520 if (found)
14521 {
14522 make_cleanup (xfree, sals.sals);
14523 expanded = sals;
14524 }
14525
14526 if (b->location_range_end != NULL)
14527 {
14528 sals_end = location_to_sals (b, b->location_range_end,
14529 filter_pspace, &found);
14530 if (found)
14531 {
14532 make_cleanup (xfree, sals_end.sals);
14533 expanded_end = sals_end;
14534 }
14535 }
14536
14537 update_breakpoint_locations (b, filter_pspace, expanded, expanded_end);
14538 }
14539
14540 /* Default method for creating SALs from an address string. It basically
14541 calls parse_breakpoint_sals. Return 1 for success, zero for failure. */
14542
14543 static void
14544 create_sals_from_location_default (const struct event_location *location,
14545 struct linespec_result *canonical,
14546 enum bptype type_wanted)
14547 {
14548 parse_breakpoint_sals (location, canonical);
14549 }
14550
14551 /* Call create_breakpoints_sal for the given arguments. This is the default
14552 function for the `create_breakpoints_sal' method of
14553 breakpoint_ops. */
14554
14555 static void
14556 create_breakpoints_sal_default (struct gdbarch *gdbarch,
14557 struct linespec_result *canonical,
14558 char *cond_string,
14559 char *extra_string,
14560 enum bptype type_wanted,
14561 enum bpdisp disposition,
14562 int thread,
14563 int task, int ignore_count,
14564 const struct breakpoint_ops *ops,
14565 int from_tty, int enabled,
14566 int internal, unsigned flags)
14567 {
14568 create_breakpoints_sal (gdbarch, canonical, cond_string,
14569 extra_string,
14570 type_wanted, disposition,
14571 thread, task, ignore_count, ops, from_tty,
14572 enabled, internal, flags);
14573 }
14574
14575 /* Decode the line represented by S by calling decode_line_full. This is the
14576 default function for the `decode_location' method of breakpoint_ops. */
14577
14578 static void
14579 decode_location_default (struct breakpoint *b,
14580 const struct event_location *location,
14581 struct program_space *search_pspace,
14582 struct symtabs_and_lines *sals)
14583 {
14584 struct linespec_result canonical;
14585
14586 init_linespec_result (&canonical);
14587 decode_line_full (location, DECODE_LINE_FUNFIRSTLINE, search_pspace,
14588 (struct symtab *) NULL, 0,
14589 &canonical, multiple_symbols_all,
14590 b->filter);
14591
14592 /* We should get 0 or 1 resulting SALs. */
14593 gdb_assert (VEC_length (linespec_sals, canonical.sals) < 2);
14594
14595 if (VEC_length (linespec_sals, canonical.sals) > 0)
14596 {
14597 struct linespec_sals *lsal;
14598
14599 lsal = VEC_index (linespec_sals, canonical.sals, 0);
14600 *sals = lsal->sals;
14601 /* Arrange it so the destructor does not free the
14602 contents. */
14603 lsal->sals.sals = NULL;
14604 }
14605
14606 destroy_linespec_result (&canonical);
14607 }
14608
14609 /* Prepare the global context for a re-set of breakpoint B. */
14610
14611 static struct cleanup *
14612 prepare_re_set_context (struct breakpoint *b)
14613 {
14614 input_radix = b->input_radix;
14615 set_language (b->language);
14616
14617 return make_cleanup (null_cleanup, NULL);
14618 }
14619
14620 /* Reset a breakpoint given it's struct breakpoint * BINT.
14621 The value we return ends up being the return value from catch_errors.
14622 Unused in this case. */
14623
14624 static int
14625 breakpoint_re_set_one (void *bint)
14626 {
14627 /* Get past catch_errs. */
14628 struct breakpoint *b = (struct breakpoint *) bint;
14629 struct cleanup *cleanups;
14630
14631 cleanups = prepare_re_set_context (b);
14632 b->ops->re_set (b);
14633 do_cleanups (cleanups);
14634 return 0;
14635 }
14636
14637 /* Re-set breakpoint locations for the current program space.
14638 Locations bound to other program spaces are left untouched. */
14639
14640 void
14641 breakpoint_re_set (void)
14642 {
14643 struct breakpoint *b, *b_tmp;
14644 enum language save_language;
14645 int save_input_radix;
14646 struct cleanup *old_chain;
14647
14648 save_language = current_language->la_language;
14649 save_input_radix = input_radix;
14650 old_chain = save_current_space_and_thread ();
14651
14652 /* Note: we must not try to insert locations until after all
14653 breakpoints have been re-set. Otherwise, e.g., when re-setting
14654 breakpoint 1, we'd insert the locations of breakpoint 2, which
14655 hadn't been re-set yet, and thus may have stale locations. */
14656
14657 ALL_BREAKPOINTS_SAFE (b, b_tmp)
14658 {
14659 /* Format possible error msg. */
14660 char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
14661 b->number);
14662 struct cleanup *cleanups = make_cleanup (xfree, message);
14663 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
14664 do_cleanups (cleanups);
14665 }
14666 set_language (save_language);
14667 input_radix = save_input_radix;
14668
14669 jit_breakpoint_re_set ();
14670
14671 do_cleanups (old_chain);
14672
14673 create_overlay_event_breakpoint ();
14674 create_longjmp_master_breakpoint ();
14675 create_std_terminate_master_breakpoint ();
14676 create_exception_master_breakpoint ();
14677
14678 /* Now we can insert. */
14679 update_global_location_list (UGLL_MAY_INSERT);
14680 }
14681 \f
14682 /* Reset the thread number of this breakpoint:
14683
14684 - If the breakpoint is for all threads, leave it as-is.
14685 - Else, reset it to the current thread for inferior_ptid. */
14686 void
14687 breakpoint_re_set_thread (struct breakpoint *b)
14688 {
14689 if (b->thread != -1)
14690 {
14691 if (in_thread_list (inferior_ptid))
14692 b->thread = ptid_to_global_thread_id (inferior_ptid);
14693
14694 /* We're being called after following a fork. The new fork is
14695 selected as current, and unless this was a vfork will have a
14696 different program space from the original thread. Reset that
14697 as well. */
14698 b->loc->pspace = current_program_space;
14699 }
14700 }
14701
14702 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
14703 If from_tty is nonzero, it prints a message to that effect,
14704 which ends with a period (no newline). */
14705
14706 void
14707 set_ignore_count (int bptnum, int count, int from_tty)
14708 {
14709 struct breakpoint *b;
14710
14711 if (count < 0)
14712 count = 0;
14713
14714 ALL_BREAKPOINTS (b)
14715 if (b->number == bptnum)
14716 {
14717 if (is_tracepoint (b))
14718 {
14719 if (from_tty && count != 0)
14720 printf_filtered (_("Ignore count ignored for tracepoint %d."),
14721 bptnum);
14722 return;
14723 }
14724
14725 b->ignore_count = count;
14726 if (from_tty)
14727 {
14728 if (count == 0)
14729 printf_filtered (_("Will stop next time "
14730 "breakpoint %d is reached."),
14731 bptnum);
14732 else if (count == 1)
14733 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
14734 bptnum);
14735 else
14736 printf_filtered (_("Will ignore next %d "
14737 "crossings of breakpoint %d."),
14738 count, bptnum);
14739 }
14740 observer_notify_breakpoint_modified (b);
14741 return;
14742 }
14743
14744 error (_("No breakpoint number %d."), bptnum);
14745 }
14746
14747 /* Command to set ignore-count of breakpoint N to COUNT. */
14748
14749 static void
14750 ignore_command (char *args, int from_tty)
14751 {
14752 char *p = args;
14753 int num;
14754
14755 if (p == 0)
14756 error_no_arg (_("a breakpoint number"));
14757
14758 num = get_number (&p);
14759 if (num == 0)
14760 error (_("bad breakpoint number: '%s'"), args);
14761 if (*p == 0)
14762 error (_("Second argument (specified ignore-count) is missing."));
14763
14764 set_ignore_count (num,
14765 longest_to_int (value_as_long (parse_and_eval (p))),
14766 from_tty);
14767 if (from_tty)
14768 printf_filtered ("\n");
14769 }
14770 \f
14771 /* Call FUNCTION on each of the breakpoints
14772 whose numbers are given in ARGS. */
14773
14774 static void
14775 map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *,
14776 void *),
14777 void *data)
14778 {
14779 int num;
14780 struct breakpoint *b, *tmp;
14781 int match;
14782 struct get_number_or_range_state state;
14783
14784 if (args == 0 || *args == '\0')
14785 error_no_arg (_("one or more breakpoint numbers"));
14786
14787 init_number_or_range (&state, args);
14788
14789 while (!state.finished)
14790 {
14791 const char *p = state.string;
14792
14793 match = 0;
14794
14795 num = get_number_or_range (&state);
14796 if (num == 0)
14797 {
14798 warning (_("bad breakpoint number at or near '%s'"), p);
14799 }
14800 else
14801 {
14802 ALL_BREAKPOINTS_SAFE (b, tmp)
14803 if (b->number == num)
14804 {
14805 match = 1;
14806 function (b, data);
14807 break;
14808 }
14809 if (match == 0)
14810 printf_unfiltered (_("No breakpoint number %d.\n"), num);
14811 }
14812 }
14813 }
14814
14815 static struct bp_location *
14816 find_location_by_number (char *number)
14817 {
14818 char *dot = strchr (number, '.');
14819 char *p1;
14820 int bp_num;
14821 int loc_num;
14822 struct breakpoint *b;
14823 struct bp_location *loc;
14824
14825 *dot = '\0';
14826
14827 p1 = number;
14828 bp_num = get_number (&p1);
14829 if (bp_num == 0)
14830 error (_("Bad breakpoint number '%s'"), number);
14831
14832 ALL_BREAKPOINTS (b)
14833 if (b->number == bp_num)
14834 {
14835 break;
14836 }
14837
14838 if (!b || b->number != bp_num)
14839 error (_("Bad breakpoint number '%s'"), number);
14840
14841 p1 = dot+1;
14842 loc_num = get_number (&p1);
14843 if (loc_num == 0)
14844 error (_("Bad breakpoint location number '%s'"), number);
14845
14846 --loc_num;
14847 loc = b->loc;
14848 for (;loc_num && loc; --loc_num, loc = loc->next)
14849 ;
14850 if (!loc)
14851 error (_("Bad breakpoint location number '%s'"), dot+1);
14852
14853 return loc;
14854 }
14855
14856
14857 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
14858 If from_tty is nonzero, it prints a message to that effect,
14859 which ends with a period (no newline). */
14860
14861 void
14862 disable_breakpoint (struct breakpoint *bpt)
14863 {
14864 /* Never disable a watchpoint scope breakpoint; we want to
14865 hit them when we leave scope so we can delete both the
14866 watchpoint and its scope breakpoint at that time. */
14867 if (bpt->type == bp_watchpoint_scope)
14868 return;
14869
14870 bpt->enable_state = bp_disabled;
14871
14872 /* Mark breakpoint locations modified. */
14873 mark_breakpoint_modified (bpt);
14874
14875 if (target_supports_enable_disable_tracepoint ()
14876 && current_trace_status ()->running && is_tracepoint (bpt))
14877 {
14878 struct bp_location *location;
14879
14880 for (location = bpt->loc; location; location = location->next)
14881 target_disable_tracepoint (location);
14882 }
14883
14884 update_global_location_list (UGLL_DONT_INSERT);
14885
14886 observer_notify_breakpoint_modified (bpt);
14887 }
14888
14889 /* A callback for iterate_over_related_breakpoints. */
14890
14891 static void
14892 do_disable_breakpoint (struct breakpoint *b, void *ignore)
14893 {
14894 disable_breakpoint (b);
14895 }
14896
14897 /* A callback for map_breakpoint_numbers that calls
14898 disable_breakpoint. */
14899
14900 static void
14901 do_map_disable_breakpoint (struct breakpoint *b, void *ignore)
14902 {
14903 iterate_over_related_breakpoints (b, do_disable_breakpoint, NULL);
14904 }
14905
14906 static void
14907 disable_command (char *args, int from_tty)
14908 {
14909 if (args == 0)
14910 {
14911 struct breakpoint *bpt;
14912
14913 ALL_BREAKPOINTS (bpt)
14914 if (user_breakpoint_p (bpt))
14915 disable_breakpoint (bpt);
14916 }
14917 else
14918 {
14919 char *num = extract_arg (&args);
14920
14921 while (num)
14922 {
14923 if (strchr (num, '.'))
14924 {
14925 struct bp_location *loc = find_location_by_number (num);
14926
14927 if (loc)
14928 {
14929 if (loc->enabled)
14930 {
14931 loc->enabled = 0;
14932 mark_breakpoint_location_modified (loc);
14933 }
14934 if (target_supports_enable_disable_tracepoint ()
14935 && current_trace_status ()->running && loc->owner
14936 && is_tracepoint (loc->owner))
14937 target_disable_tracepoint (loc);
14938 }
14939 update_global_location_list (UGLL_DONT_INSERT);
14940 }
14941 else
14942 map_breakpoint_numbers (num, do_map_disable_breakpoint, NULL);
14943 num = extract_arg (&args);
14944 }
14945 }
14946 }
14947
14948 static void
14949 enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
14950 int count)
14951 {
14952 int target_resources_ok;
14953
14954 if (bpt->type == bp_hardware_breakpoint)
14955 {
14956 int i;
14957 i = hw_breakpoint_used_count ();
14958 target_resources_ok =
14959 target_can_use_hardware_watchpoint (bp_hardware_breakpoint,
14960 i + 1, 0);
14961 if (target_resources_ok == 0)
14962 error (_("No hardware breakpoint support in the target."));
14963 else if (target_resources_ok < 0)
14964 error (_("Hardware breakpoints used exceeds limit."));
14965 }
14966
14967 if (is_watchpoint (bpt))
14968 {
14969 /* Initialize it just to avoid a GCC false warning. */
14970 enum enable_state orig_enable_state = bp_disabled;
14971
14972 TRY
14973 {
14974 struct watchpoint *w = (struct watchpoint *) bpt;
14975
14976 orig_enable_state = bpt->enable_state;
14977 bpt->enable_state = bp_enabled;
14978 update_watchpoint (w, 1 /* reparse */);
14979 }
14980 CATCH (e, RETURN_MASK_ALL)
14981 {
14982 bpt->enable_state = orig_enable_state;
14983 exception_fprintf (gdb_stderr, e, _("Cannot enable watchpoint %d: "),
14984 bpt->number);
14985 return;
14986 }
14987 END_CATCH
14988 }
14989
14990 bpt->enable_state = bp_enabled;
14991
14992 /* Mark breakpoint locations modified. */
14993 mark_breakpoint_modified (bpt);
14994
14995 if (target_supports_enable_disable_tracepoint ()
14996 && current_trace_status ()->running && is_tracepoint (bpt))
14997 {
14998 struct bp_location *location;
14999
15000 for (location = bpt->loc; location; location = location->next)
15001 target_enable_tracepoint (location);
15002 }
15003
15004 bpt->disposition = disposition;
15005 bpt->enable_count = count;
15006 update_global_location_list (UGLL_MAY_INSERT);
15007
15008 observer_notify_breakpoint_modified (bpt);
15009 }
15010
15011
15012 void
15013 enable_breakpoint (struct breakpoint *bpt)
15014 {
15015 enable_breakpoint_disp (bpt, bpt->disposition, 0);
15016 }
15017
15018 static void
15019 do_enable_breakpoint (struct breakpoint *bpt, void *arg)
15020 {
15021 enable_breakpoint (bpt);
15022 }
15023
15024 /* A callback for map_breakpoint_numbers that calls
15025 enable_breakpoint. */
15026
15027 static void
15028 do_map_enable_breakpoint (struct breakpoint *b, void *ignore)
15029 {
15030 iterate_over_related_breakpoints (b, do_enable_breakpoint, NULL);
15031 }
15032
15033 /* The enable command enables the specified breakpoints (or all defined
15034 breakpoints) so they once again become (or continue to be) effective
15035 in stopping the inferior. */
15036
15037 static void
15038 enable_command (char *args, int from_tty)
15039 {
15040 if (args == 0)
15041 {
15042 struct breakpoint *bpt;
15043
15044 ALL_BREAKPOINTS (bpt)
15045 if (user_breakpoint_p (bpt))
15046 enable_breakpoint (bpt);
15047 }
15048 else
15049 {
15050 char *num = extract_arg (&args);
15051
15052 while (num)
15053 {
15054 if (strchr (num, '.'))
15055 {
15056 struct bp_location *loc = find_location_by_number (num);
15057
15058 if (loc)
15059 {
15060 if (!loc->enabled)
15061 {
15062 loc->enabled = 1;
15063 mark_breakpoint_location_modified (loc);
15064 }
15065 if (target_supports_enable_disable_tracepoint ()
15066 && current_trace_status ()->running && loc->owner
15067 && is_tracepoint (loc->owner))
15068 target_enable_tracepoint (loc);
15069 }
15070 update_global_location_list (UGLL_MAY_INSERT);
15071 }
15072 else
15073 map_breakpoint_numbers (num, do_map_enable_breakpoint, NULL);
15074 num = extract_arg (&args);
15075 }
15076 }
15077 }
15078
15079 /* This struct packages up disposition data for application to multiple
15080 breakpoints. */
15081
15082 struct disp_data
15083 {
15084 enum bpdisp disp;
15085 int count;
15086 };
15087
15088 static void
15089 do_enable_breakpoint_disp (struct breakpoint *bpt, void *arg)
15090 {
15091 struct disp_data disp_data = *(struct disp_data *) arg;
15092
15093 enable_breakpoint_disp (bpt, disp_data.disp, disp_data.count);
15094 }
15095
15096 static void
15097 do_map_enable_once_breakpoint (struct breakpoint *bpt, void *ignore)
15098 {
15099 struct disp_data disp = { disp_disable, 1 };
15100
15101 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
15102 }
15103
15104 static void
15105 enable_once_command (char *args, int from_tty)
15106 {
15107 map_breakpoint_numbers (args, do_map_enable_once_breakpoint, NULL);
15108 }
15109
15110 static void
15111 do_map_enable_count_breakpoint (struct breakpoint *bpt, void *countptr)
15112 {
15113 struct disp_data disp = { disp_disable, *(int *) countptr };
15114
15115 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
15116 }
15117
15118 static void
15119 enable_count_command (char *args, int from_tty)
15120 {
15121 int count;
15122
15123 if (args == NULL)
15124 error_no_arg (_("hit count"));
15125
15126 count = get_number (&args);
15127
15128 map_breakpoint_numbers (args, do_map_enable_count_breakpoint, &count);
15129 }
15130
15131 static void
15132 do_map_enable_delete_breakpoint (struct breakpoint *bpt, void *ignore)
15133 {
15134 struct disp_data disp = { disp_del, 1 };
15135
15136 iterate_over_related_breakpoints (bpt, do_enable_breakpoint_disp, &disp);
15137 }
15138
15139 static void
15140 enable_delete_command (char *args, int from_tty)
15141 {
15142 map_breakpoint_numbers (args, do_map_enable_delete_breakpoint, NULL);
15143 }
15144 \f
15145 static void
15146 set_breakpoint_cmd (char *args, int from_tty)
15147 {
15148 }
15149
15150 static void
15151 show_breakpoint_cmd (char *args, int from_tty)
15152 {
15153 }
15154
15155 /* Invalidate last known value of any hardware watchpoint if
15156 the memory which that value represents has been written to by
15157 GDB itself. */
15158
15159 static void
15160 invalidate_bp_value_on_memory_change (struct inferior *inferior,
15161 CORE_ADDR addr, ssize_t len,
15162 const bfd_byte *data)
15163 {
15164 struct breakpoint *bp;
15165
15166 ALL_BREAKPOINTS (bp)
15167 if (bp->enable_state == bp_enabled
15168 && bp->type == bp_hardware_watchpoint)
15169 {
15170 struct watchpoint *wp = (struct watchpoint *) bp;
15171
15172 if (wp->val_valid && wp->val)
15173 {
15174 struct bp_location *loc;
15175
15176 for (loc = bp->loc; loc != NULL; loc = loc->next)
15177 if (loc->loc_type == bp_loc_hardware_watchpoint
15178 && loc->address + loc->length > addr
15179 && addr + len > loc->address)
15180 {
15181 value_free (wp->val);
15182 wp->val = NULL;
15183 wp->val_valid = 0;
15184 }
15185 }
15186 }
15187 }
15188
15189 /* Create and insert a breakpoint for software single step. */
15190
15191 void
15192 insert_single_step_breakpoint (struct gdbarch *gdbarch,
15193 struct address_space *aspace,
15194 CORE_ADDR next_pc)
15195 {
15196 struct thread_info *tp = inferior_thread ();
15197 struct symtab_and_line sal;
15198 CORE_ADDR pc = next_pc;
15199
15200 if (tp->control.single_step_breakpoints == NULL)
15201 {
15202 tp->control.single_step_breakpoints
15203 = new_single_step_breakpoint (tp->global_num, gdbarch);
15204 }
15205
15206 sal = find_pc_line (pc, 0);
15207 sal.pc = pc;
15208 sal.section = find_pc_overlay (pc);
15209 sal.explicit_pc = 1;
15210 add_location_to_breakpoint (tp->control.single_step_breakpoints, &sal);
15211
15212 update_global_location_list (UGLL_INSERT);
15213 }
15214
15215 /* See breakpoint.h. */
15216
15217 int
15218 breakpoint_has_location_inserted_here (struct breakpoint *bp,
15219 struct address_space *aspace,
15220 CORE_ADDR pc)
15221 {
15222 struct bp_location *loc;
15223
15224 for (loc = bp->loc; loc != NULL; loc = loc->next)
15225 if (loc->inserted
15226 && breakpoint_location_address_match (loc, aspace, pc))
15227 return 1;
15228
15229 return 0;
15230 }
15231
15232 /* Check whether a software single-step breakpoint is inserted at
15233 PC. */
15234
15235 int
15236 single_step_breakpoint_inserted_here_p (struct address_space *aspace,
15237 CORE_ADDR pc)
15238 {
15239 struct breakpoint *bpt;
15240
15241 ALL_BREAKPOINTS (bpt)
15242 {
15243 if (bpt->type == bp_single_step
15244 && breakpoint_has_location_inserted_here (bpt, aspace, pc))
15245 return 1;
15246 }
15247 return 0;
15248 }
15249
15250 /* Tracepoint-specific operations. */
15251
15252 /* Set tracepoint count to NUM. */
15253 static void
15254 set_tracepoint_count (int num)
15255 {
15256 tracepoint_count = num;
15257 set_internalvar_integer (lookup_internalvar ("tpnum"), num);
15258 }
15259
15260 static void
15261 trace_command (char *arg, int from_tty)
15262 {
15263 struct breakpoint_ops *ops;
15264 struct event_location *location;
15265 struct cleanup *back_to;
15266
15267 location = string_to_event_location (&arg, current_language);
15268 back_to = make_cleanup_delete_event_location (location);
15269 if (location != NULL
15270 && event_location_type (location) == PROBE_LOCATION)
15271 ops = &tracepoint_probe_breakpoint_ops;
15272 else
15273 ops = &tracepoint_breakpoint_ops;
15274
15275 create_breakpoint (get_current_arch (),
15276 location,
15277 NULL, 0, arg, 1 /* parse arg */,
15278 0 /* tempflag */,
15279 bp_tracepoint /* type_wanted */,
15280 0 /* Ignore count */,
15281 pending_break_support,
15282 ops,
15283 from_tty,
15284 1 /* enabled */,
15285 0 /* internal */, 0);
15286 do_cleanups (back_to);
15287 }
15288
15289 static void
15290 ftrace_command (char *arg, int from_tty)
15291 {
15292 struct event_location *location;
15293 struct cleanup *back_to;
15294
15295 location = string_to_event_location (&arg, current_language);
15296 back_to = make_cleanup_delete_event_location (location);
15297 create_breakpoint (get_current_arch (),
15298 location,
15299 NULL, 0, arg, 1 /* parse arg */,
15300 0 /* tempflag */,
15301 bp_fast_tracepoint /* type_wanted */,
15302 0 /* Ignore count */,
15303 pending_break_support,
15304 &tracepoint_breakpoint_ops,
15305 from_tty,
15306 1 /* enabled */,
15307 0 /* internal */, 0);
15308 do_cleanups (back_to);
15309 }
15310
15311 /* strace command implementation. Creates a static tracepoint. */
15312
15313 static void
15314 strace_command (char *arg, int from_tty)
15315 {
15316 struct breakpoint_ops *ops;
15317 struct event_location *location;
15318 struct cleanup *back_to;
15319
15320 /* Decide if we are dealing with a static tracepoint marker (`-m'),
15321 or with a normal static tracepoint. */
15322 if (arg && startswith (arg, "-m") && isspace (arg[2]))
15323 {
15324 ops = &strace_marker_breakpoint_ops;
15325 location = new_linespec_location (&arg);
15326 }
15327 else
15328 {
15329 ops = &tracepoint_breakpoint_ops;
15330 location = string_to_event_location (&arg, current_language);
15331 }
15332
15333 back_to = make_cleanup_delete_event_location (location);
15334 create_breakpoint (get_current_arch (),
15335 location,
15336 NULL, 0, arg, 1 /* parse arg */,
15337 0 /* tempflag */,
15338 bp_static_tracepoint /* type_wanted */,
15339 0 /* Ignore count */,
15340 pending_break_support,
15341 ops,
15342 from_tty,
15343 1 /* enabled */,
15344 0 /* internal */, 0);
15345 do_cleanups (back_to);
15346 }
15347
15348 /* Set up a fake reader function that gets command lines from a linked
15349 list that was acquired during tracepoint uploading. */
15350
15351 static struct uploaded_tp *this_utp;
15352 static int next_cmd;
15353
15354 static char *
15355 read_uploaded_action (void)
15356 {
15357 char *rslt;
15358
15359 VEC_iterate (char_ptr, this_utp->cmd_strings, next_cmd, rslt);
15360
15361 next_cmd++;
15362
15363 return rslt;
15364 }
15365
15366 /* Given information about a tracepoint as recorded on a target (which
15367 can be either a live system or a trace file), attempt to create an
15368 equivalent GDB tracepoint. This is not a reliable process, since
15369 the target does not necessarily have all the information used when
15370 the tracepoint was originally defined. */
15371
15372 struct tracepoint *
15373 create_tracepoint_from_upload (struct uploaded_tp *utp)
15374 {
15375 char *addr_str, small_buf[100];
15376 struct tracepoint *tp;
15377 struct event_location *location;
15378 struct cleanup *cleanup;
15379
15380 if (utp->at_string)
15381 addr_str = utp->at_string;
15382 else
15383 {
15384 /* In the absence of a source location, fall back to raw
15385 address. Since there is no way to confirm that the address
15386 means the same thing as when the trace was started, warn the
15387 user. */
15388 warning (_("Uploaded tracepoint %d has no "
15389 "source location, using raw address"),
15390 utp->number);
15391 xsnprintf (small_buf, sizeof (small_buf), "*%s", hex_string (utp->addr));
15392 addr_str = small_buf;
15393 }
15394
15395 /* There's not much we can do with a sequence of bytecodes. */
15396 if (utp->cond && !utp->cond_string)
15397 warning (_("Uploaded tracepoint %d condition "
15398 "has no source form, ignoring it"),
15399 utp->number);
15400
15401 location = string_to_event_location (&addr_str, current_language);
15402 cleanup = make_cleanup_delete_event_location (location);
15403 if (!create_breakpoint (get_current_arch (),
15404 location,
15405 utp->cond_string, -1, addr_str,
15406 0 /* parse cond/thread */,
15407 0 /* tempflag */,
15408 utp->type /* type_wanted */,
15409 0 /* Ignore count */,
15410 pending_break_support,
15411 &tracepoint_breakpoint_ops,
15412 0 /* from_tty */,
15413 utp->enabled /* enabled */,
15414 0 /* internal */,
15415 CREATE_BREAKPOINT_FLAGS_INSERTED))
15416 {
15417 do_cleanups (cleanup);
15418 return NULL;
15419 }
15420
15421 do_cleanups (cleanup);
15422
15423 /* Get the tracepoint we just created. */
15424 tp = get_tracepoint (tracepoint_count);
15425 gdb_assert (tp != NULL);
15426
15427 if (utp->pass > 0)
15428 {
15429 xsnprintf (small_buf, sizeof (small_buf), "%d %d", utp->pass,
15430 tp->base.number);
15431
15432 trace_pass_command (small_buf, 0);
15433 }
15434
15435 /* If we have uploaded versions of the original commands, set up a
15436 special-purpose "reader" function and call the usual command line
15437 reader, then pass the result to the breakpoint command-setting
15438 function. */
15439 if (!VEC_empty (char_ptr, utp->cmd_strings))
15440 {
15441 struct command_line *cmd_list;
15442
15443 this_utp = utp;
15444 next_cmd = 0;
15445
15446 cmd_list = read_command_lines_1 (read_uploaded_action, 1, NULL, NULL);
15447
15448 breakpoint_set_commands (&tp->base, cmd_list);
15449 }
15450 else if (!VEC_empty (char_ptr, utp->actions)
15451 || !VEC_empty (char_ptr, utp->step_actions))
15452 warning (_("Uploaded tracepoint %d actions "
15453 "have no source form, ignoring them"),
15454 utp->number);
15455
15456 /* Copy any status information that might be available. */
15457 tp->base.hit_count = utp->hit_count;
15458 tp->traceframe_usage = utp->traceframe_usage;
15459
15460 return tp;
15461 }
15462
15463 /* Print information on tracepoint number TPNUM_EXP, or all if
15464 omitted. */
15465
15466 static void
15467 tracepoints_info (char *args, int from_tty)
15468 {
15469 struct ui_out *uiout = current_uiout;
15470 int num_printed;
15471
15472 num_printed = breakpoint_1 (args, 0, is_tracepoint);
15473
15474 if (num_printed == 0)
15475 {
15476 if (args == NULL || *args == '\0')
15477 ui_out_message (uiout, 0, "No tracepoints.\n");
15478 else
15479 ui_out_message (uiout, 0, "No tracepoint matching '%s'.\n", args);
15480 }
15481
15482 default_collect_info ();
15483 }
15484
15485 /* The 'enable trace' command enables tracepoints.
15486 Not supported by all targets. */
15487 static void
15488 enable_trace_command (char *args, int from_tty)
15489 {
15490 enable_command (args, from_tty);
15491 }
15492
15493 /* The 'disable trace' command disables tracepoints.
15494 Not supported by all targets. */
15495 static void
15496 disable_trace_command (char *args, int from_tty)
15497 {
15498 disable_command (args, from_tty);
15499 }
15500
15501 /* Remove a tracepoint (or all if no argument). */
15502 static void
15503 delete_trace_command (char *arg, int from_tty)
15504 {
15505 struct breakpoint *b, *b_tmp;
15506
15507 dont_repeat ();
15508
15509 if (arg == 0)
15510 {
15511 int breaks_to_delete = 0;
15512
15513 /* Delete all breakpoints if no argument.
15514 Do not delete internal or call-dummy breakpoints, these
15515 have to be deleted with an explicit breakpoint number
15516 argument. */
15517 ALL_TRACEPOINTS (b)
15518 if (is_tracepoint (b) && user_breakpoint_p (b))
15519 {
15520 breaks_to_delete = 1;
15521 break;
15522 }
15523
15524 /* Ask user only if there are some breakpoints to delete. */
15525 if (!from_tty
15526 || (breaks_to_delete && query (_("Delete all tracepoints? "))))
15527 {
15528 ALL_BREAKPOINTS_SAFE (b, b_tmp)
15529 if (is_tracepoint (b) && user_breakpoint_p (b))
15530 delete_breakpoint (b);
15531 }
15532 }
15533 else
15534 map_breakpoint_numbers (arg, do_map_delete_breakpoint, NULL);
15535 }
15536
15537 /* Helper function for trace_pass_command. */
15538
15539 static void
15540 trace_pass_set_count (struct tracepoint *tp, int count, int from_tty)
15541 {
15542 tp->pass_count = count;
15543 observer_notify_breakpoint_modified (&tp->base);
15544 if (from_tty)
15545 printf_filtered (_("Setting tracepoint %d's passcount to %d\n"),
15546 tp->base.number, count);
15547 }
15548
15549 /* Set passcount for tracepoint.
15550
15551 First command argument is passcount, second is tracepoint number.
15552 If tracepoint number omitted, apply to most recently defined.
15553 Also accepts special argument "all". */
15554
15555 static void
15556 trace_pass_command (char *args, int from_tty)
15557 {
15558 struct tracepoint *t1;
15559 unsigned int count;
15560
15561 if (args == 0 || *args == 0)
15562 error (_("passcount command requires an "
15563 "argument (count + optional TP num)"));
15564
15565 count = strtoul (args, &args, 10); /* Count comes first, then TP num. */
15566
15567 args = skip_spaces (args);
15568 if (*args && strncasecmp (args, "all", 3) == 0)
15569 {
15570 struct breakpoint *b;
15571
15572 args += 3; /* Skip special argument "all". */
15573 if (*args)
15574 error (_("Junk at end of arguments."));
15575
15576 ALL_TRACEPOINTS (b)
15577 {
15578 t1 = (struct tracepoint *) b;
15579 trace_pass_set_count (t1, count, from_tty);
15580 }
15581 }
15582 else if (*args == '\0')
15583 {
15584 t1 = get_tracepoint_by_number (&args, NULL);
15585 if (t1)
15586 trace_pass_set_count (t1, count, from_tty);
15587 }
15588 else
15589 {
15590 struct get_number_or_range_state state;
15591
15592 init_number_or_range (&state, args);
15593 while (!state.finished)
15594 {
15595 t1 = get_tracepoint_by_number (&args, &state);
15596 if (t1)
15597 trace_pass_set_count (t1, count, from_tty);
15598 }
15599 }
15600 }
15601
15602 struct tracepoint *
15603 get_tracepoint (int num)
15604 {
15605 struct breakpoint *t;
15606
15607 ALL_TRACEPOINTS (t)
15608 if (t->number == num)
15609 return (struct tracepoint *) t;
15610
15611 return NULL;
15612 }
15613
15614 /* Find the tracepoint with the given target-side number (which may be
15615 different from the tracepoint number after disconnecting and
15616 reconnecting). */
15617
15618 struct tracepoint *
15619 get_tracepoint_by_number_on_target (int num)
15620 {
15621 struct breakpoint *b;
15622
15623 ALL_TRACEPOINTS (b)
15624 {
15625 struct tracepoint *t = (struct tracepoint *) b;
15626
15627 if (t->number_on_target == num)
15628 return t;
15629 }
15630
15631 return NULL;
15632 }
15633
15634 /* Utility: parse a tracepoint number and look it up in the list.
15635 If STATE is not NULL, use, get_number_or_range_state and ignore ARG.
15636 If the argument is missing, the most recent tracepoint
15637 (tracepoint_count) is returned. */
15638
15639 struct tracepoint *
15640 get_tracepoint_by_number (char **arg,
15641 struct get_number_or_range_state *state)
15642 {
15643 struct breakpoint *t;
15644 int tpnum;
15645 char *instring = arg == NULL ? NULL : *arg;
15646
15647 if (state)
15648 {
15649 gdb_assert (!state->finished);
15650 tpnum = get_number_or_range (state);
15651 }
15652 else if (arg == NULL || *arg == NULL || ! **arg)
15653 tpnum = tracepoint_count;
15654 else
15655 tpnum = get_number (arg);
15656
15657 if (tpnum <= 0)
15658 {
15659 if (instring && *instring)
15660 printf_filtered (_("bad tracepoint number at or near '%s'\n"),
15661 instring);
15662 else
15663 printf_filtered (_("No previous tracepoint\n"));
15664 return NULL;
15665 }
15666
15667 ALL_TRACEPOINTS (t)
15668 if (t->number == tpnum)
15669 {
15670 return (struct tracepoint *) t;
15671 }
15672
15673 printf_unfiltered ("No tracepoint number %d.\n", tpnum);
15674 return NULL;
15675 }
15676
15677 void
15678 print_recreate_thread (struct breakpoint *b, struct ui_file *fp)
15679 {
15680 if (b->thread != -1)
15681 fprintf_unfiltered (fp, " thread %d", b->thread);
15682
15683 if (b->task != 0)
15684 fprintf_unfiltered (fp, " task %d", b->task);
15685
15686 fprintf_unfiltered (fp, "\n");
15687 }
15688
15689 /* Save information on user settable breakpoints (watchpoints, etc) to
15690 a new script file named FILENAME. If FILTER is non-NULL, call it
15691 on each breakpoint and only include the ones for which it returns
15692 non-zero. */
15693
15694 static void
15695 save_breakpoints (char *filename, int from_tty,
15696 int (*filter) (const struct breakpoint *))
15697 {
15698 struct breakpoint *tp;
15699 int any = 0;
15700 struct cleanup *cleanup;
15701 struct ui_file *fp;
15702 int extra_trace_bits = 0;
15703
15704 if (filename == 0 || *filename == 0)
15705 error (_("Argument required (file name in which to save)"));
15706
15707 /* See if we have anything to save. */
15708 ALL_BREAKPOINTS (tp)
15709 {
15710 /* Skip internal and momentary breakpoints. */
15711 if (!user_breakpoint_p (tp))
15712 continue;
15713
15714 /* If we have a filter, only save the breakpoints it accepts. */
15715 if (filter && !filter (tp))
15716 continue;
15717
15718 any = 1;
15719
15720 if (is_tracepoint (tp))
15721 {
15722 extra_trace_bits = 1;
15723
15724 /* We can stop searching. */
15725 break;
15726 }
15727 }
15728
15729 if (!any)
15730 {
15731 warning (_("Nothing to save."));
15732 return;
15733 }
15734
15735 filename = tilde_expand (filename);
15736 cleanup = make_cleanup (xfree, filename);
15737 fp = gdb_fopen (filename, "w");
15738 if (!fp)
15739 error (_("Unable to open file '%s' for saving (%s)"),
15740 filename, safe_strerror (errno));
15741 make_cleanup_ui_file_delete (fp);
15742
15743 if (extra_trace_bits)
15744 save_trace_state_variables (fp);
15745
15746 ALL_BREAKPOINTS (tp)
15747 {
15748 /* Skip internal and momentary breakpoints. */
15749 if (!user_breakpoint_p (tp))
15750 continue;
15751
15752 /* If we have a filter, only save the breakpoints it accepts. */
15753 if (filter && !filter (tp))
15754 continue;
15755
15756 tp->ops->print_recreate (tp, fp);
15757
15758 /* Note, we can't rely on tp->number for anything, as we can't
15759 assume the recreated breakpoint numbers will match. Use $bpnum
15760 instead. */
15761
15762 if (tp->cond_string)
15763 fprintf_unfiltered (fp, " condition $bpnum %s\n", tp->cond_string);
15764
15765 if (tp->ignore_count)
15766 fprintf_unfiltered (fp, " ignore $bpnum %d\n", tp->ignore_count);
15767
15768 if (tp->type != bp_dprintf && tp->commands)
15769 {
15770 fprintf_unfiltered (fp, " commands\n");
15771
15772 ui_out_redirect (current_uiout, fp);
15773 TRY
15774 {
15775 print_command_lines (current_uiout, tp->commands->commands, 2);
15776 }
15777 CATCH (ex, RETURN_MASK_ALL)
15778 {
15779 ui_out_redirect (current_uiout, NULL);
15780 throw_exception (ex);
15781 }
15782 END_CATCH
15783
15784 ui_out_redirect (current_uiout, NULL);
15785 fprintf_unfiltered (fp, " end\n");
15786 }
15787
15788 if (tp->enable_state == bp_disabled)
15789 fprintf_unfiltered (fp, "disable $bpnum\n");
15790
15791 /* If this is a multi-location breakpoint, check if the locations
15792 should be individually disabled. Watchpoint locations are
15793 special, and not user visible. */
15794 if (!is_watchpoint (tp) && tp->loc && tp->loc->next)
15795 {
15796 struct bp_location *loc;
15797 int n = 1;
15798
15799 for (loc = tp->loc; loc != NULL; loc = loc->next, n++)
15800 if (!loc->enabled)
15801 fprintf_unfiltered (fp, "disable $bpnum.%d\n", n);
15802 }
15803 }
15804
15805 if (extra_trace_bits && *default_collect)
15806 fprintf_unfiltered (fp, "set default-collect %s\n", default_collect);
15807
15808 if (from_tty)
15809 printf_filtered (_("Saved to file '%s'.\n"), filename);
15810 do_cleanups (cleanup);
15811 }
15812
15813 /* The `save breakpoints' command. */
15814
15815 static void
15816 save_breakpoints_command (char *args, int from_tty)
15817 {
15818 save_breakpoints (args, from_tty, NULL);
15819 }
15820
15821 /* The `save tracepoints' command. */
15822
15823 static void
15824 save_tracepoints_command (char *args, int from_tty)
15825 {
15826 save_breakpoints (args, from_tty, is_tracepoint);
15827 }
15828
15829 /* Create a vector of all tracepoints. */
15830
15831 VEC(breakpoint_p) *
15832 all_tracepoints (void)
15833 {
15834 VEC(breakpoint_p) *tp_vec = 0;
15835 struct breakpoint *tp;
15836
15837 ALL_TRACEPOINTS (tp)
15838 {
15839 VEC_safe_push (breakpoint_p, tp_vec, tp);
15840 }
15841
15842 return tp_vec;
15843 }
15844
15845 \f
15846 /* This help string is used to consolidate all the help string for specifying
15847 locations used by several commands. */
15848
15849 #define LOCATION_HELP_STRING \
15850 "Linespecs are colon-separated lists of location parameters, such as\n\
15851 source filename, function name, label name, and line number.\n\
15852 Example: To specify the start of a label named \"the_top\" in the\n\
15853 function \"fact\" in the file \"factorial.c\", use\n\
15854 \"factorial.c:fact:the_top\".\n\
15855 \n\
15856 Address locations begin with \"*\" and specify an exact address in the\n\
15857 program. Example: To specify the fourth byte past the start function\n\
15858 \"main\", use \"*main + 4\".\n\
15859 \n\
15860 Explicit locations are similar to linespecs but use an option/argument\n\
15861 syntax to specify location parameters.\n\
15862 Example: To specify the start of the label named \"the_top\" in the\n\
15863 function \"fact\" in the file \"factorial.c\", use \"-source factorial.c\n\
15864 -function fact -label the_top\".\n"
15865
15866 /* This help string is used for the break, hbreak, tbreak and thbreak
15867 commands. It is defined as a macro to prevent duplication.
15868 COMMAND should be a string constant containing the name of the
15869 command. */
15870
15871 #define BREAK_ARGS_HELP(command) \
15872 command" [PROBE_MODIFIER] [LOCATION] [thread THREADNUM] [if CONDITION]\n\
15873 PROBE_MODIFIER shall be present if the command is to be placed in a\n\
15874 probe point. Accepted values are `-probe' (for a generic, automatically\n\
15875 guessed probe type), `-probe-stap' (for a SystemTap probe) or \n\
15876 `-probe-dtrace' (for a DTrace probe).\n\
15877 LOCATION may be a linespec, address, or explicit location as described\n\
15878 below.\n\
15879 \n\
15880 With no LOCATION, uses current execution address of the selected\n\
15881 stack frame. This is useful for breaking on return to a stack frame.\n\
15882 \n\
15883 THREADNUM is the number from \"info threads\".\n\
15884 CONDITION is a boolean expression.\n\
15885 \n" LOCATION_HELP_STRING "\n\
15886 Multiple breakpoints at one place are permitted, and useful if their\n\
15887 conditions are different.\n\
15888 \n\
15889 Do \"help breakpoints\" for info on other commands dealing with breakpoints."
15890
15891 /* List of subcommands for "catch". */
15892 static struct cmd_list_element *catch_cmdlist;
15893
15894 /* List of subcommands for "tcatch". */
15895 static struct cmd_list_element *tcatch_cmdlist;
15896
15897 void
15898 add_catch_command (char *name, char *docstring,
15899 cmd_sfunc_ftype *sfunc,
15900 completer_ftype *completer,
15901 void *user_data_catch,
15902 void *user_data_tcatch)
15903 {
15904 struct cmd_list_element *command;
15905
15906 command = add_cmd (name, class_breakpoint, NULL, docstring,
15907 &catch_cmdlist);
15908 set_cmd_sfunc (command, sfunc);
15909 set_cmd_context (command, user_data_catch);
15910 set_cmd_completer (command, completer);
15911
15912 command = add_cmd (name, class_breakpoint, NULL, docstring,
15913 &tcatch_cmdlist);
15914 set_cmd_sfunc (command, sfunc);
15915 set_cmd_context (command, user_data_tcatch);
15916 set_cmd_completer (command, completer);
15917 }
15918
15919 static void
15920 save_command (char *arg, int from_tty)
15921 {
15922 printf_unfiltered (_("\"save\" must be followed by "
15923 "the name of a save subcommand.\n"));
15924 help_list (save_cmdlist, "save ", all_commands, gdb_stdout);
15925 }
15926
15927 struct breakpoint *
15928 iterate_over_breakpoints (int (*callback) (struct breakpoint *, void *),
15929 void *data)
15930 {
15931 struct breakpoint *b, *b_tmp;
15932
15933 ALL_BREAKPOINTS_SAFE (b, b_tmp)
15934 {
15935 if ((*callback) (b, data))
15936 return b;
15937 }
15938
15939 return NULL;
15940 }
15941
15942 /* Zero if any of the breakpoint's locations could be a location where
15943 functions have been inlined, nonzero otherwise. */
15944
15945 static int
15946 is_non_inline_function (struct breakpoint *b)
15947 {
15948 /* The shared library event breakpoint is set on the address of a
15949 non-inline function. */
15950 if (b->type == bp_shlib_event)
15951 return 1;
15952
15953 return 0;
15954 }
15955
15956 /* Nonzero if the specified PC cannot be a location where functions
15957 have been inlined. */
15958
15959 int
15960 pc_at_non_inline_function (struct address_space *aspace, CORE_ADDR pc,
15961 const struct target_waitstatus *ws)
15962 {
15963 struct breakpoint *b;
15964 struct bp_location *bl;
15965
15966 ALL_BREAKPOINTS (b)
15967 {
15968 if (!is_non_inline_function (b))
15969 continue;
15970
15971 for (bl = b->loc; bl != NULL; bl = bl->next)
15972 {
15973 if (!bl->shlib_disabled
15974 && bpstat_check_location (bl, aspace, pc, ws))
15975 return 1;
15976 }
15977 }
15978
15979 return 0;
15980 }
15981
15982 /* Remove any references to OBJFILE which is going to be freed. */
15983
15984 void
15985 breakpoint_free_objfile (struct objfile *objfile)
15986 {
15987 struct bp_location **locp, *loc;
15988
15989 ALL_BP_LOCATIONS (loc, locp)
15990 if (loc->symtab != NULL && SYMTAB_OBJFILE (loc->symtab) == objfile)
15991 loc->symtab = NULL;
15992 }
15993
15994 void
15995 initialize_breakpoint_ops (void)
15996 {
15997 static int initialized = 0;
15998
15999 struct breakpoint_ops *ops;
16000
16001 if (initialized)
16002 return;
16003 initialized = 1;
16004
16005 /* The breakpoint_ops structure to be inherit by all kinds of
16006 breakpoints (real breakpoints, i.e., user "break" breakpoints,
16007 internal and momentary breakpoints, etc.). */
16008 ops = &bkpt_base_breakpoint_ops;
16009 *ops = base_breakpoint_ops;
16010 ops->re_set = bkpt_re_set;
16011 ops->insert_location = bkpt_insert_location;
16012 ops->remove_location = bkpt_remove_location;
16013 ops->breakpoint_hit = bkpt_breakpoint_hit;
16014 ops->create_sals_from_location = bkpt_create_sals_from_location;
16015 ops->create_breakpoints_sal = bkpt_create_breakpoints_sal;
16016 ops->decode_location = bkpt_decode_location;
16017
16018 /* The breakpoint_ops structure to be used in regular breakpoints. */
16019 ops = &bkpt_breakpoint_ops;
16020 *ops = bkpt_base_breakpoint_ops;
16021 ops->re_set = bkpt_re_set;
16022 ops->resources_needed = bkpt_resources_needed;
16023 ops->print_it = bkpt_print_it;
16024 ops->print_mention = bkpt_print_mention;
16025 ops->print_recreate = bkpt_print_recreate;
16026
16027 /* Ranged breakpoints. */
16028 ops = &ranged_breakpoint_ops;
16029 *ops = bkpt_breakpoint_ops;
16030 ops->breakpoint_hit = breakpoint_hit_ranged_breakpoint;
16031 ops->resources_needed = resources_needed_ranged_breakpoint;
16032 ops->print_it = print_it_ranged_breakpoint;
16033 ops->print_one = print_one_ranged_breakpoint;
16034 ops->print_one_detail = print_one_detail_ranged_breakpoint;
16035 ops->print_mention = print_mention_ranged_breakpoint;
16036 ops->print_recreate = print_recreate_ranged_breakpoint;
16037
16038 /* Internal breakpoints. */
16039 ops = &internal_breakpoint_ops;
16040 *ops = bkpt_base_breakpoint_ops;
16041 ops->re_set = internal_bkpt_re_set;
16042 ops->check_status = internal_bkpt_check_status;
16043 ops->print_it = internal_bkpt_print_it;
16044 ops->print_mention = internal_bkpt_print_mention;
16045
16046 /* Momentary breakpoints. */
16047 ops = &momentary_breakpoint_ops;
16048 *ops = bkpt_base_breakpoint_ops;
16049 ops->re_set = momentary_bkpt_re_set;
16050 ops->check_status = momentary_bkpt_check_status;
16051 ops->print_it = momentary_bkpt_print_it;
16052 ops->print_mention = momentary_bkpt_print_mention;
16053
16054 /* Momentary breakpoints for bp_longjmp and bp_exception. */
16055 ops = &longjmp_breakpoint_ops;
16056 *ops = momentary_breakpoint_ops;
16057 ops->dtor = longjmp_bkpt_dtor;
16058
16059 /* Probe breakpoints. */
16060 ops = &bkpt_probe_breakpoint_ops;
16061 *ops = bkpt_breakpoint_ops;
16062 ops->insert_location = bkpt_probe_insert_location;
16063 ops->remove_location = bkpt_probe_remove_location;
16064 ops->create_sals_from_location = bkpt_probe_create_sals_from_location;
16065 ops->decode_location = bkpt_probe_decode_location;
16066
16067 /* Watchpoints. */
16068 ops = &watchpoint_breakpoint_ops;
16069 *ops = base_breakpoint_ops;
16070 ops->dtor = dtor_watchpoint;
16071 ops->re_set = re_set_watchpoint;
16072 ops->insert_location = insert_watchpoint;
16073 ops->remove_location = remove_watchpoint;
16074 ops->breakpoint_hit = breakpoint_hit_watchpoint;
16075 ops->check_status = check_status_watchpoint;
16076 ops->resources_needed = resources_needed_watchpoint;
16077 ops->works_in_software_mode = works_in_software_mode_watchpoint;
16078 ops->print_it = print_it_watchpoint;
16079 ops->print_mention = print_mention_watchpoint;
16080 ops->print_recreate = print_recreate_watchpoint;
16081 ops->explains_signal = explains_signal_watchpoint;
16082
16083 /* Masked watchpoints. */
16084 ops = &masked_watchpoint_breakpoint_ops;
16085 *ops = watchpoint_breakpoint_ops;
16086 ops->insert_location = insert_masked_watchpoint;
16087 ops->remove_location = remove_masked_watchpoint;
16088 ops->resources_needed = resources_needed_masked_watchpoint;
16089 ops->works_in_software_mode = works_in_software_mode_masked_watchpoint;
16090 ops->print_it = print_it_masked_watchpoint;
16091 ops->print_one_detail = print_one_detail_masked_watchpoint;
16092 ops->print_mention = print_mention_masked_watchpoint;
16093 ops->print_recreate = print_recreate_masked_watchpoint;
16094
16095 /* Tracepoints. */
16096 ops = &tracepoint_breakpoint_ops;
16097 *ops = base_breakpoint_ops;
16098 ops->re_set = tracepoint_re_set;
16099 ops->breakpoint_hit = tracepoint_breakpoint_hit;
16100 ops->print_one_detail = tracepoint_print_one_detail;
16101 ops->print_mention = tracepoint_print_mention;
16102 ops->print_recreate = tracepoint_print_recreate;
16103 ops->create_sals_from_location = tracepoint_create_sals_from_location;
16104 ops->create_breakpoints_sal = tracepoint_create_breakpoints_sal;
16105 ops->decode_location = tracepoint_decode_location;
16106
16107 /* Probe tracepoints. */
16108 ops = &tracepoint_probe_breakpoint_ops;
16109 *ops = tracepoint_breakpoint_ops;
16110 ops->create_sals_from_location = tracepoint_probe_create_sals_from_location;
16111 ops->decode_location = tracepoint_probe_decode_location;
16112
16113 /* Static tracepoints with marker (`-m'). */
16114 ops = &strace_marker_breakpoint_ops;
16115 *ops = tracepoint_breakpoint_ops;
16116 ops->create_sals_from_location = strace_marker_create_sals_from_location;
16117 ops->create_breakpoints_sal = strace_marker_create_breakpoints_sal;
16118 ops->decode_location = strace_marker_decode_location;
16119
16120 /* Fork catchpoints. */
16121 ops = &catch_fork_breakpoint_ops;
16122 *ops = base_breakpoint_ops;
16123 ops->insert_location = insert_catch_fork;
16124 ops->remove_location = remove_catch_fork;
16125 ops->breakpoint_hit = breakpoint_hit_catch_fork;
16126 ops->print_it = print_it_catch_fork;
16127 ops->print_one = print_one_catch_fork;
16128 ops->print_mention = print_mention_catch_fork;
16129 ops->print_recreate = print_recreate_catch_fork;
16130
16131 /* Vfork catchpoints. */
16132 ops = &catch_vfork_breakpoint_ops;
16133 *ops = base_breakpoint_ops;
16134 ops->insert_location = insert_catch_vfork;
16135 ops->remove_location = remove_catch_vfork;
16136 ops->breakpoint_hit = breakpoint_hit_catch_vfork;
16137 ops->print_it = print_it_catch_vfork;
16138 ops->print_one = print_one_catch_vfork;
16139 ops->print_mention = print_mention_catch_vfork;
16140 ops->print_recreate = print_recreate_catch_vfork;
16141
16142 /* Exec catchpoints. */
16143 ops = &catch_exec_breakpoint_ops;
16144 *ops = base_breakpoint_ops;
16145 ops->dtor = dtor_catch_exec;
16146 ops->insert_location = insert_catch_exec;
16147 ops->remove_location = remove_catch_exec;
16148 ops->breakpoint_hit = breakpoint_hit_catch_exec;
16149 ops->print_it = print_it_catch_exec;
16150 ops->print_one = print_one_catch_exec;
16151 ops->print_mention = print_mention_catch_exec;
16152 ops->print_recreate = print_recreate_catch_exec;
16153
16154 /* Solib-related catchpoints. */
16155 ops = &catch_solib_breakpoint_ops;
16156 *ops = base_breakpoint_ops;
16157 ops->dtor = dtor_catch_solib;
16158 ops->insert_location = insert_catch_solib;
16159 ops->remove_location = remove_catch_solib;
16160 ops->breakpoint_hit = breakpoint_hit_catch_solib;
16161 ops->check_status = check_status_catch_solib;
16162 ops->print_it = print_it_catch_solib;
16163 ops->print_one = print_one_catch_solib;
16164 ops->print_mention = print_mention_catch_solib;
16165 ops->print_recreate = print_recreate_catch_solib;
16166
16167 ops = &dprintf_breakpoint_ops;
16168 *ops = bkpt_base_breakpoint_ops;
16169 ops->re_set = dprintf_re_set;
16170 ops->resources_needed = bkpt_resources_needed;
16171 ops->print_it = bkpt_print_it;
16172 ops->print_mention = bkpt_print_mention;
16173 ops->print_recreate = dprintf_print_recreate;
16174 ops->after_condition_true = dprintf_after_condition_true;
16175 ops->breakpoint_hit = dprintf_breakpoint_hit;
16176 }
16177
16178 /* Chain containing all defined "enable breakpoint" subcommands. */
16179
16180 static struct cmd_list_element *enablebreaklist = NULL;
16181
16182 void
16183 _initialize_breakpoint (void)
16184 {
16185 struct cmd_list_element *c;
16186
16187 initialize_breakpoint_ops ();
16188
16189 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
16190 observer_attach_free_objfile (disable_breakpoints_in_freed_objfile);
16191 observer_attach_memory_changed (invalidate_bp_value_on_memory_change);
16192
16193 breakpoint_objfile_key
16194 = register_objfile_data_with_cleanup (NULL, free_breakpoint_probes);
16195
16196 breakpoint_chain = 0;
16197 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
16198 before a breakpoint is set. */
16199 breakpoint_count = 0;
16200
16201 tracepoint_count = 0;
16202
16203 add_com ("ignore", class_breakpoint, ignore_command, _("\
16204 Set ignore-count of breakpoint number N to COUNT.\n\
16205 Usage is `ignore N COUNT'."));
16206
16207 add_com ("commands", class_breakpoint, commands_command, _("\
16208 Set commands to be executed when a breakpoint is hit.\n\
16209 Give breakpoint number as argument after \"commands\".\n\
16210 With no argument, the targeted breakpoint is the last one set.\n\
16211 The commands themselves follow starting on the next line.\n\
16212 Type a line containing \"end\" to indicate the end of them.\n\
16213 Give \"silent\" as the first line to make the breakpoint silent;\n\
16214 then no output is printed when it is hit, except what the commands print."));
16215
16216 c = add_com ("condition", class_breakpoint, condition_command, _("\
16217 Specify breakpoint number N to break only if COND is true.\n\
16218 Usage is `condition N COND', where N is an integer and COND is an\n\
16219 expression to be evaluated whenever breakpoint N is reached."));
16220 set_cmd_completer (c, condition_completer);
16221
16222 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
16223 Set a temporary breakpoint.\n\
16224 Like \"break\" except the breakpoint is only temporary,\n\
16225 so it will be deleted when hit. Equivalent to \"break\" followed\n\
16226 by using \"enable delete\" on the breakpoint number.\n\
16227 \n"
16228 BREAK_ARGS_HELP ("tbreak")));
16229 set_cmd_completer (c, location_completer);
16230
16231 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
16232 Set a hardware assisted breakpoint.\n\
16233 Like \"break\" except the breakpoint requires hardware support,\n\
16234 some target hardware may not have this support.\n\
16235 \n"
16236 BREAK_ARGS_HELP ("hbreak")));
16237 set_cmd_completer (c, location_completer);
16238
16239 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
16240 Set a temporary hardware assisted breakpoint.\n\
16241 Like \"hbreak\" except the breakpoint is only temporary,\n\
16242 so it will be deleted when hit.\n\
16243 \n"
16244 BREAK_ARGS_HELP ("thbreak")));
16245 set_cmd_completer (c, location_completer);
16246
16247 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
16248 Enable some breakpoints.\n\
16249 Give breakpoint numbers (separated by spaces) as arguments.\n\
16250 With no subcommand, breakpoints are enabled until you command otherwise.\n\
16251 This is used to cancel the effect of the \"disable\" command.\n\
16252 With a subcommand you can enable temporarily."),
16253 &enablelist, "enable ", 1, &cmdlist);
16254
16255 add_com_alias ("en", "enable", class_breakpoint, 1);
16256
16257 add_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
16258 Enable some breakpoints.\n\
16259 Give breakpoint numbers (separated by spaces) as arguments.\n\
16260 This is used to cancel the effect of the \"disable\" command.\n\
16261 May be abbreviated to simply \"enable\".\n"),
16262 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
16263
16264 add_cmd ("once", no_class, enable_once_command, _("\
16265 Enable breakpoints for one hit. Give breakpoint numbers.\n\
16266 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
16267 &enablebreaklist);
16268
16269 add_cmd ("delete", no_class, enable_delete_command, _("\
16270 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
16271 If a breakpoint is hit while enabled in this fashion, it is deleted."),
16272 &enablebreaklist);
16273
16274 add_cmd ("count", no_class, enable_count_command, _("\
16275 Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
16276 If a breakpoint is hit while enabled in this fashion,\n\
16277 the count is decremented; when it reaches zero, the breakpoint is disabled."),
16278 &enablebreaklist);
16279
16280 add_cmd ("delete", no_class, enable_delete_command, _("\
16281 Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
16282 If a breakpoint is hit while enabled in this fashion, it is deleted."),
16283 &enablelist);
16284
16285 add_cmd ("once", no_class, enable_once_command, _("\
16286 Enable breakpoints for one hit. Give breakpoint numbers.\n\
16287 If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
16288 &enablelist);
16289
16290 add_cmd ("count", no_class, enable_count_command, _("\
16291 Enable breakpoints for COUNT hits. Give count and then breakpoint numbers.\n\
16292 If a breakpoint is hit while enabled in this fashion,\n\
16293 the count is decremented; when it reaches zero, the breakpoint is disabled."),
16294 &enablelist);
16295
16296 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
16297 Disable some breakpoints.\n\
16298 Arguments are breakpoint numbers with spaces in between.\n\
16299 To disable all breakpoints, give no argument.\n\
16300 A disabled breakpoint is not forgotten, but has no effect until re-enabled."),
16301 &disablelist, "disable ", 1, &cmdlist);
16302 add_com_alias ("dis", "disable", class_breakpoint, 1);
16303 add_com_alias ("disa", "disable", class_breakpoint, 1);
16304
16305 add_cmd ("breakpoints", class_alias, disable_command, _("\
16306 Disable some breakpoints.\n\
16307 Arguments are breakpoint numbers with spaces in between.\n\
16308 To disable all breakpoints, give no argument.\n\
16309 A disabled breakpoint is not forgotten, but has no effect until re-enabled.\n\
16310 This command may be abbreviated \"disable\"."),
16311 &disablelist);
16312
16313 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
16314 Delete some breakpoints or auto-display expressions.\n\
16315 Arguments are breakpoint numbers with spaces in between.\n\
16316 To delete all breakpoints, give no argument.\n\
16317 \n\
16318 Also a prefix command for deletion of other GDB objects.\n\
16319 The \"unset\" command is also an alias for \"delete\"."),
16320 &deletelist, "delete ", 1, &cmdlist);
16321 add_com_alias ("d", "delete", class_breakpoint, 1);
16322 add_com_alias ("del", "delete", class_breakpoint, 1);
16323
16324 add_cmd ("breakpoints", class_alias, delete_command, _("\
16325 Delete some breakpoints or auto-display expressions.\n\
16326 Arguments are breakpoint numbers with spaces in between.\n\
16327 To delete all breakpoints, give no argument.\n\
16328 This command may be abbreviated \"delete\"."),
16329 &deletelist);
16330
16331 add_com ("clear", class_breakpoint, clear_command, _("\
16332 Clear breakpoint at specified location.\n\
16333 Argument may be a linespec, explicit, or address location as described below.\n\
16334 \n\
16335 With no argument, clears all breakpoints in the line that the selected frame\n\
16336 is executing in.\n"
16337 "\n" LOCATION_HELP_STRING "\n\
16338 See also the \"delete\" command which clears breakpoints by number."));
16339 add_com_alias ("cl", "clear", class_breakpoint, 1);
16340
16341 c = add_com ("break", class_breakpoint, break_command, _("\
16342 Set breakpoint at specified location.\n"
16343 BREAK_ARGS_HELP ("break")));
16344 set_cmd_completer (c, location_completer);
16345
16346 add_com_alias ("b", "break", class_run, 1);
16347 add_com_alias ("br", "break", class_run, 1);
16348 add_com_alias ("bre", "break", class_run, 1);
16349 add_com_alias ("brea", "break", class_run, 1);
16350
16351 if (dbx_commands)
16352 {
16353 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
16354 Break in function/address or break at a line in the current file."),
16355 &stoplist, "stop ", 1, &cmdlist);
16356 add_cmd ("in", class_breakpoint, stopin_command,
16357 _("Break in function or address."), &stoplist);
16358 add_cmd ("at", class_breakpoint, stopat_command,
16359 _("Break at a line in the current file."), &stoplist);
16360 add_com ("status", class_info, breakpoints_info, _("\
16361 Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
16362 The \"Type\" column indicates one of:\n\
16363 \tbreakpoint - normal breakpoint\n\
16364 \twatchpoint - watchpoint\n\
16365 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16366 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16367 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
16368 address and file/line number respectively.\n\
16369 \n\
16370 Convenience variable \"$_\" and default examine address for \"x\"\n\
16371 are set to the address of the last breakpoint listed unless the command\n\
16372 is prefixed with \"server \".\n\n\
16373 Convenience variable \"$bpnum\" contains the number of the last\n\
16374 breakpoint set."));
16375 }
16376
16377 add_info ("breakpoints", breakpoints_info, _("\
16378 Status of specified breakpoints (all user-settable breakpoints if no argument).\n\
16379 The \"Type\" column indicates one of:\n\
16380 \tbreakpoint - normal breakpoint\n\
16381 \twatchpoint - watchpoint\n\
16382 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16383 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16384 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
16385 address and file/line number respectively.\n\
16386 \n\
16387 Convenience variable \"$_\" and default examine address for \"x\"\n\
16388 are set to the address of the last breakpoint listed unless the command\n\
16389 is prefixed with \"server \".\n\n\
16390 Convenience variable \"$bpnum\" contains the number of the last\n\
16391 breakpoint set."));
16392
16393 add_info_alias ("b", "breakpoints", 1);
16394
16395 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
16396 Status of all breakpoints, or breakpoint number NUMBER.\n\
16397 The \"Type\" column indicates one of:\n\
16398 \tbreakpoint - normal breakpoint\n\
16399 \twatchpoint - watchpoint\n\
16400 \tlongjmp - internal breakpoint used to step through longjmp()\n\
16401 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
16402 \tuntil - internal breakpoint used by the \"until\" command\n\
16403 \tfinish - internal breakpoint used by the \"finish\" command\n\
16404 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
16405 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
16406 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
16407 address and file/line number respectively.\n\
16408 \n\
16409 Convenience variable \"$_\" and default examine address for \"x\"\n\
16410 are set to the address of the last breakpoint listed unless the command\n\
16411 is prefixed with \"server \".\n\n\
16412 Convenience variable \"$bpnum\" contains the number of the last\n\
16413 breakpoint set."),
16414 &maintenanceinfolist);
16415
16416 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
16417 Set catchpoints to catch events."),
16418 &catch_cmdlist, "catch ",
16419 0/*allow-unknown*/, &cmdlist);
16420
16421 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
16422 Set temporary catchpoints to catch events."),
16423 &tcatch_cmdlist, "tcatch ",
16424 0/*allow-unknown*/, &cmdlist);
16425
16426 add_catch_command ("fork", _("Catch calls to fork."),
16427 catch_fork_command_1,
16428 NULL,
16429 (void *) (uintptr_t) catch_fork_permanent,
16430 (void *) (uintptr_t) catch_fork_temporary);
16431 add_catch_command ("vfork", _("Catch calls to vfork."),
16432 catch_fork_command_1,
16433 NULL,
16434 (void *) (uintptr_t) catch_vfork_permanent,
16435 (void *) (uintptr_t) catch_vfork_temporary);
16436 add_catch_command ("exec", _("Catch calls to exec."),
16437 catch_exec_command_1,
16438 NULL,
16439 CATCH_PERMANENT,
16440 CATCH_TEMPORARY);
16441 add_catch_command ("load", _("Catch loads of shared libraries.\n\
16442 Usage: catch load [REGEX]\n\
16443 If REGEX is given, only stop for libraries matching the regular expression."),
16444 catch_load_command_1,
16445 NULL,
16446 CATCH_PERMANENT,
16447 CATCH_TEMPORARY);
16448 add_catch_command ("unload", _("Catch unloads of shared libraries.\n\
16449 Usage: catch unload [REGEX]\n\
16450 If REGEX is given, only stop for libraries matching the regular expression."),
16451 catch_unload_command_1,
16452 NULL,
16453 CATCH_PERMANENT,
16454 CATCH_TEMPORARY);
16455
16456 c = add_com ("watch", class_breakpoint, watch_command, _("\
16457 Set a watchpoint for an expression.\n\
16458 Usage: watch [-l|-location] EXPRESSION\n\
16459 A watchpoint stops execution of your program whenever the value of\n\
16460 an expression changes.\n\
16461 If -l or -location is given, this evaluates EXPRESSION and watches\n\
16462 the memory to which it refers."));
16463 set_cmd_completer (c, expression_completer);
16464
16465 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
16466 Set a read watchpoint for an expression.\n\
16467 Usage: rwatch [-l|-location] EXPRESSION\n\
16468 A watchpoint stops execution of your program whenever the value of\n\
16469 an expression is read.\n\
16470 If -l or -location is given, this evaluates EXPRESSION and watches\n\
16471 the memory to which it refers."));
16472 set_cmd_completer (c, expression_completer);
16473
16474 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
16475 Set a watchpoint for an expression.\n\
16476 Usage: awatch [-l|-location] EXPRESSION\n\
16477 A watchpoint stops execution of your program whenever the value of\n\
16478 an expression is either read or written.\n\
16479 If -l or -location is given, this evaluates EXPRESSION and watches\n\
16480 the memory to which it refers."));
16481 set_cmd_completer (c, expression_completer);
16482
16483 add_info ("watchpoints", watchpoints_info, _("\
16484 Status of specified watchpoints (all watchpoints if no argument)."));
16485
16486 /* XXX: cagney/2005-02-23: This should be a boolean, and should
16487 respond to changes - contrary to the description. */
16488 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
16489 &can_use_hw_watchpoints, _("\
16490 Set debugger's willingness to use watchpoint hardware."), _("\
16491 Show debugger's willingness to use watchpoint hardware."), _("\
16492 If zero, gdb will not use hardware for new watchpoints, even if\n\
16493 such is available. (However, any hardware watchpoints that were\n\
16494 created before setting this to nonzero, will continue to use watchpoint\n\
16495 hardware.)"),
16496 NULL,
16497 show_can_use_hw_watchpoints,
16498 &setlist, &showlist);
16499
16500 can_use_hw_watchpoints = 1;
16501
16502 /* Tracepoint manipulation commands. */
16503
16504 c = add_com ("trace", class_breakpoint, trace_command, _("\
16505 Set a tracepoint at specified location.\n\
16506 \n"
16507 BREAK_ARGS_HELP ("trace") "\n\
16508 Do \"help tracepoints\" for info on other tracepoint commands."));
16509 set_cmd_completer (c, location_completer);
16510
16511 add_com_alias ("tp", "trace", class_alias, 0);
16512 add_com_alias ("tr", "trace", class_alias, 1);
16513 add_com_alias ("tra", "trace", class_alias, 1);
16514 add_com_alias ("trac", "trace", class_alias, 1);
16515
16516 c = add_com ("ftrace", class_breakpoint, ftrace_command, _("\
16517 Set a fast tracepoint at specified location.\n\
16518 \n"
16519 BREAK_ARGS_HELP ("ftrace") "\n\
16520 Do \"help tracepoints\" for info on other tracepoint commands."));
16521 set_cmd_completer (c, location_completer);
16522
16523 c = add_com ("strace", class_breakpoint, strace_command, _("\
16524 Set a static tracepoint at location or marker.\n\
16525 \n\
16526 strace [LOCATION] [if CONDITION]\n\
16527 LOCATION may be a linespec, explicit, or address location (described below) \n\
16528 or -m MARKER_ID.\n\n\
16529 If a marker id is specified, probe the marker with that name. With\n\
16530 no LOCATION, uses current execution address of the selected stack frame.\n\
16531 Static tracepoints accept an extra collect action -- ``collect $_sdata''.\n\
16532 This collects arbitrary user data passed in the probe point call to the\n\
16533 tracing library. You can inspect it when analyzing the trace buffer,\n\
16534 by printing the $_sdata variable like any other convenience variable.\n\
16535 \n\
16536 CONDITION is a boolean expression.\n\
16537 \n" LOCATION_HELP_STRING "\n\
16538 Multiple tracepoints at one place are permitted, and useful if their\n\
16539 conditions are different.\n\
16540 \n\
16541 Do \"help breakpoints\" for info on other commands dealing with breakpoints.\n\
16542 Do \"help tracepoints\" for info on other tracepoint commands."));
16543 set_cmd_completer (c, location_completer);
16544
16545 add_info ("tracepoints", tracepoints_info, _("\
16546 Status of specified tracepoints (all tracepoints if no argument).\n\
16547 Convenience variable \"$tpnum\" contains the number of the\n\
16548 last tracepoint set."));
16549
16550 add_info_alias ("tp", "tracepoints", 1);
16551
16552 add_cmd ("tracepoints", class_trace, delete_trace_command, _("\
16553 Delete specified tracepoints.\n\
16554 Arguments are tracepoint numbers, separated by spaces.\n\
16555 No argument means delete all tracepoints."),
16556 &deletelist);
16557 add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
16558
16559 c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
16560 Disable specified tracepoints.\n\
16561 Arguments are tracepoint numbers, separated by spaces.\n\
16562 No argument means disable all tracepoints."),
16563 &disablelist);
16564 deprecate_cmd (c, "disable");
16565
16566 c = add_cmd ("tracepoints", class_trace, enable_trace_command, _("\
16567 Enable specified tracepoints.\n\
16568 Arguments are tracepoint numbers, separated by spaces.\n\
16569 No argument means enable all tracepoints."),
16570 &enablelist);
16571 deprecate_cmd (c, "enable");
16572
16573 add_com ("passcount", class_trace, trace_pass_command, _("\
16574 Set the passcount for a tracepoint.\n\
16575 The trace will end when the tracepoint has been passed 'count' times.\n\
16576 Usage: passcount COUNT TPNUM, where TPNUM may also be \"all\";\n\
16577 if TPNUM is omitted, passcount refers to the last tracepoint defined."));
16578
16579 add_prefix_cmd ("save", class_breakpoint, save_command,
16580 _("Save breakpoint definitions as a script."),
16581 &save_cmdlist, "save ",
16582 0/*allow-unknown*/, &cmdlist);
16583
16584 c = add_cmd ("breakpoints", class_breakpoint, save_breakpoints_command, _("\
16585 Save current breakpoint definitions as a script.\n\
16586 This includes all types of breakpoints (breakpoints, watchpoints,\n\
16587 catchpoints, tracepoints). Use the 'source' command in another debug\n\
16588 session to restore them."),
16589 &save_cmdlist);
16590 set_cmd_completer (c, filename_completer);
16591
16592 c = add_cmd ("tracepoints", class_trace, save_tracepoints_command, _("\
16593 Save current tracepoint definitions as a script.\n\
16594 Use the 'source' command in another debug session to restore them."),
16595 &save_cmdlist);
16596 set_cmd_completer (c, filename_completer);
16597
16598 c = add_com_alias ("save-tracepoints", "save tracepoints", class_trace, 0);
16599 deprecate_cmd (c, "save tracepoints");
16600
16601 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
16602 Breakpoint specific settings\n\
16603 Configure various breakpoint-specific variables such as\n\
16604 pending breakpoint behavior"),
16605 &breakpoint_set_cmdlist, "set breakpoint ",
16606 0/*allow-unknown*/, &setlist);
16607 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
16608 Breakpoint specific settings\n\
16609 Configure various breakpoint-specific variables such as\n\
16610 pending breakpoint behavior"),
16611 &breakpoint_show_cmdlist, "show breakpoint ",
16612 0/*allow-unknown*/, &showlist);
16613
16614 add_setshow_auto_boolean_cmd ("pending", no_class,
16615 &pending_break_support, _("\
16616 Set debugger's behavior regarding pending breakpoints."), _("\
16617 Show debugger's behavior regarding pending breakpoints."), _("\
16618 If on, an unrecognized breakpoint location will cause gdb to create a\n\
16619 pending breakpoint. If off, an unrecognized breakpoint location results in\n\
16620 an error. If auto, an unrecognized breakpoint location results in a\n\
16621 user-query to see if a pending breakpoint should be created."),
16622 NULL,
16623 show_pending_break_support,
16624 &breakpoint_set_cmdlist,
16625 &breakpoint_show_cmdlist);
16626
16627 pending_break_support = AUTO_BOOLEAN_AUTO;
16628
16629 add_setshow_boolean_cmd ("auto-hw", no_class,
16630 &automatic_hardware_breakpoints, _("\
16631 Set automatic usage of hardware breakpoints."), _("\
16632 Show automatic usage of hardware breakpoints."), _("\
16633 If set, the debugger will automatically use hardware breakpoints for\n\
16634 breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
16635 a warning will be emitted for such breakpoints."),
16636 NULL,
16637 show_automatic_hardware_breakpoints,
16638 &breakpoint_set_cmdlist,
16639 &breakpoint_show_cmdlist);
16640
16641 add_setshow_boolean_cmd ("always-inserted", class_support,
16642 &always_inserted_mode, _("\
16643 Set mode for inserting breakpoints."), _("\
16644 Show mode for inserting breakpoints."), _("\
16645 When this mode is on, breakpoints are inserted immediately as soon as\n\
16646 they're created, kept inserted even when execution stops, and removed\n\
16647 only when the user deletes them. When this mode is off (the default),\n\
16648 breakpoints are inserted only when execution continues, and removed\n\
16649 when execution stops."),
16650 NULL,
16651 &show_always_inserted_mode,
16652 &breakpoint_set_cmdlist,
16653 &breakpoint_show_cmdlist);
16654
16655 add_setshow_enum_cmd ("condition-evaluation", class_breakpoint,
16656 condition_evaluation_enums,
16657 &condition_evaluation_mode_1, _("\
16658 Set mode of breakpoint condition evaluation."), _("\
16659 Show mode of breakpoint condition evaluation."), _("\
16660 When this is set to \"host\", breakpoint conditions will be\n\
16661 evaluated on the host's side by GDB. When it is set to \"target\",\n\
16662 breakpoint conditions will be downloaded to the target (if the target\n\
16663 supports such feature) and conditions will be evaluated on the target's side.\n\
16664 If this is set to \"auto\" (default), this will be automatically set to\n\
16665 \"target\" if it supports condition evaluation, otherwise it will\n\
16666 be set to \"gdb\""),
16667 &set_condition_evaluation_mode,
16668 &show_condition_evaluation_mode,
16669 &breakpoint_set_cmdlist,
16670 &breakpoint_show_cmdlist);
16671
16672 add_com ("break-range", class_breakpoint, break_range_command, _("\
16673 Set a breakpoint for an address range.\n\
16674 break-range START-LOCATION, END-LOCATION\n\
16675 where START-LOCATION and END-LOCATION can be one of the following:\n\
16676 LINENUM, for that line in the current file,\n\
16677 FILE:LINENUM, for that line in that file,\n\
16678 +OFFSET, for that number of lines after the current line\n\
16679 or the start of the range\n\
16680 FUNCTION, for the first line in that function,\n\
16681 FILE:FUNCTION, to distinguish among like-named static functions.\n\
16682 *ADDRESS, for the instruction at that address.\n\
16683 \n\
16684 The breakpoint will stop execution of the inferior whenever it executes\n\
16685 an instruction at any address within the [START-LOCATION, END-LOCATION]\n\
16686 range (including START-LOCATION and END-LOCATION)."));
16687
16688 c = add_com ("dprintf", class_breakpoint, dprintf_command, _("\
16689 Set a dynamic printf at specified location.\n\
16690 dprintf location,format string,arg1,arg2,...\n\
16691 location may be a linespec, explicit, or address location.\n"
16692 "\n" LOCATION_HELP_STRING));
16693 set_cmd_completer (c, location_completer);
16694
16695 add_setshow_enum_cmd ("dprintf-style", class_support,
16696 dprintf_style_enums, &dprintf_style, _("\
16697 Set the style of usage for dynamic printf."), _("\
16698 Show the style of usage for dynamic printf."), _("\
16699 This setting chooses how GDB will do a dynamic printf.\n\
16700 If the value is \"gdb\", then the printing is done by GDB to its own\n\
16701 console, as with the \"printf\" command.\n\
16702 If the value is \"call\", the print is done by calling a function in your\n\
16703 program; by default printf(), but you can choose a different function or\n\
16704 output stream by setting dprintf-function and dprintf-channel."),
16705 update_dprintf_commands, NULL,
16706 &setlist, &showlist);
16707
16708 dprintf_function = xstrdup ("printf");
16709 add_setshow_string_cmd ("dprintf-function", class_support,
16710 &dprintf_function, _("\
16711 Set the function to use for dynamic printf"), _("\
16712 Show the function to use for dynamic printf"), NULL,
16713 update_dprintf_commands, NULL,
16714 &setlist, &showlist);
16715
16716 dprintf_channel = xstrdup ("");
16717 add_setshow_string_cmd ("dprintf-channel", class_support,
16718 &dprintf_channel, _("\
16719 Set the channel to use for dynamic printf"), _("\
16720 Show the channel to use for dynamic printf"), NULL,
16721 update_dprintf_commands, NULL,
16722 &setlist, &showlist);
16723
16724 add_setshow_boolean_cmd ("disconnected-dprintf", no_class,
16725 &disconnected_dprintf, _("\
16726 Set whether dprintf continues after GDB disconnects."), _("\
16727 Show whether dprintf continues after GDB disconnects."), _("\
16728 Use this to let dprintf commands continue to hit and produce output\n\
16729 even if GDB disconnects or detaches from the target."),
16730 NULL,
16731 NULL,
16732 &setlist, &showlist);
16733
16734 add_com ("agent-printf", class_vars, agent_printf_command, _("\
16735 agent-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
16736 (target agent only) This is useful for formatted output in user-defined commands."));
16737
16738 automatic_hardware_breakpoints = 1;
16739
16740 observer_attach_about_to_proceed (breakpoint_about_to_proceed);
16741 observer_attach_thread_exit (remove_threaded_breakpoints);
16742 }
This page took 0.435124 seconds and 4 git commands to generate.