Sort includes for files gdb/[a-f]*.[chyl].
[deliverable/binutils-gdb.git] / gdb / breakpoint.h
1 /* Data structures associated with breakpoints in GDB.
2 Copyright (C) 1992-2019 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 #if !defined (BREAKPOINT_H)
20 #define BREAKPOINT_H 1
21
22 #include <vector>
23
24 /* Local non-gdb includes. */
25 #include "ax.h"
26 #include "cli/cli-script.h"
27 #include "command.h"
28 #include "common/array-view.h"
29 #include "common/break-common.h"
30 #include "common/vec.h"
31 #include "frame.h"
32 #include "location.h"
33 #include "probe.h"
34 #include "value.h"
35
36 struct block;
37 struct gdbpy_breakpoint_object;
38 struct gdbscm_breakpoint_object;
39 struct number_or_range_parser;
40 struct thread_info;
41 struct bpstats;
42 struct bp_location;
43 struct linespec_result;
44 struct linespec_sals;
45 struct inferior;
46
47 /* Why are we removing the breakpoint from the target? */
48
49 enum remove_bp_reason
50 {
51 /* A regular remove. Remove the breakpoint and forget everything
52 about it. */
53 REMOVE_BREAKPOINT,
54
55 /* Detach the breakpoints from a fork child. */
56 DETACH_BREAKPOINT,
57 };
58
59 /* This is the maximum number of bytes a breakpoint instruction can
60 take. Feel free to increase it. It's just used in a few places to
61 size arrays that should be independent of the target
62 architecture. */
63
64 #define BREAKPOINT_MAX 16
65 \f
66
67 /* Type of breakpoint. */
68
69 enum bptype
70 {
71 bp_none = 0, /* Eventpoint has been deleted */
72 bp_breakpoint, /* Normal breakpoint */
73 bp_hardware_breakpoint, /* Hardware assisted breakpoint */
74 bp_single_step, /* Software single-step */
75 bp_until, /* used by until command */
76 bp_finish, /* used by finish command */
77 bp_watchpoint, /* Watchpoint */
78 bp_hardware_watchpoint, /* Hardware assisted watchpoint */
79 bp_read_watchpoint, /* read watchpoint, (hardware assisted) */
80 bp_access_watchpoint, /* access watchpoint, (hardware assisted) */
81 bp_longjmp, /* secret breakpoint to find longjmp() */
82 bp_longjmp_resume, /* secret breakpoint to escape longjmp() */
83
84 /* Breakpoint placed to the same location(s) like bp_longjmp but used to
85 protect against stale DUMMY_FRAME. Multiple bp_longjmp_call_dummy and
86 one bp_call_dummy are chained together by related_breakpoint for each
87 DUMMY_FRAME. */
88 bp_longjmp_call_dummy,
89
90 /* An internal breakpoint that is installed on the unwinder's
91 debug hook. */
92 bp_exception,
93 /* An internal breakpoint that is set at the point where an
94 exception will land. */
95 bp_exception_resume,
96
97 /* Used by wait_for_inferior for stepping over subroutine calls,
98 and for skipping prologues. */
99 bp_step_resume,
100
101 /* Used by wait_for_inferior for stepping over signal
102 handlers. */
103 bp_hp_step_resume,
104
105 /* Used to detect when a watchpoint expression has gone out of
106 scope. These breakpoints are usually not visible to the user.
107
108 This breakpoint has some interesting properties:
109
110 1) There's always a 1:1 mapping between watchpoints
111 on local variables and watchpoint_scope breakpoints.
112
113 2) It automatically deletes itself and the watchpoint it's
114 associated with when hit.
115
116 3) It can never be disabled. */
117 bp_watchpoint_scope,
118
119 /* The breakpoint at the end of a call dummy. See bp_longjmp_call_dummy it
120 is chained with by related_breakpoint. */
121 bp_call_dummy,
122
123 /* A breakpoint set on std::terminate, that is used to catch
124 otherwise uncaught exceptions thrown during an inferior call. */
125 bp_std_terminate,
126
127 /* Some dynamic linkers (HP, maybe Solaris) can arrange for special
128 code in the inferior to run when significant events occur in the
129 dynamic linker (for example a library is loaded or unloaded).
130
131 By placing a breakpoint in this magic code GDB will get control
132 when these significant events occur. GDB can then re-examine
133 the dynamic linker's data structures to discover any newly loaded
134 dynamic libraries. */
135 bp_shlib_event,
136
137 /* Some multi-threaded systems can arrange for a location in the
138 inferior to be executed when certain thread-related events occur
139 (such as thread creation or thread death).
140
141 By placing a breakpoint at one of these locations, GDB will get
142 control when these events occur. GDB can then update its thread
143 lists etc. */
144
145 bp_thread_event,
146
147 /* On the same principal, an overlay manager can arrange to call a
148 magic location in the inferior whenever there is an interesting
149 change in overlay status. GDB can update its overlay tables
150 and fiddle with breakpoints in overlays when this breakpoint
151 is hit. */
152
153 bp_overlay_event,
154
155 /* Master copies of longjmp breakpoints. These are always installed
156 as soon as an objfile containing longjmp is loaded, but they are
157 always disabled. While necessary, temporary clones of bp_longjmp
158 type will be created and enabled. */
159
160 bp_longjmp_master,
161
162 /* Master copies of std::terminate breakpoints. */
163 bp_std_terminate_master,
164
165 /* Like bp_longjmp_master, but for exceptions. */
166 bp_exception_master,
167
168 bp_catchpoint,
169
170 bp_tracepoint,
171 bp_fast_tracepoint,
172 bp_static_tracepoint,
173
174 /* A dynamic printf stops at the given location, does a formatted
175 print, then automatically continues. (Although this is sort of
176 like a macro packaging up standard breakpoint functionality,
177 GDB doesn't have a way to construct types of breakpoint from
178 elements of behavior.) */
179 bp_dprintf,
180
181 /* Event for JIT compiled code generation or deletion. */
182 bp_jit_event,
183
184 /* Breakpoint is placed at the STT_GNU_IFUNC resolver. When hit GDB
185 inserts new bp_gnu_ifunc_resolver_return at the caller.
186 bp_gnu_ifunc_resolver is still being kept here as a different thread
187 may still hit it before bp_gnu_ifunc_resolver_return is hit by the
188 original thread. */
189 bp_gnu_ifunc_resolver,
190
191 /* On its hit GDB now know the resolved address of the target
192 STT_GNU_IFUNC function. Associated bp_gnu_ifunc_resolver can be
193 deleted now and the breakpoint moved to the target function entry
194 point. */
195 bp_gnu_ifunc_resolver_return,
196 };
197
198 /* States of enablement of breakpoint. */
199
200 enum enable_state
201 {
202 bp_disabled, /* The eventpoint is inactive, and cannot
203 trigger. */
204 bp_enabled, /* The eventpoint is active, and can
205 trigger. */
206 bp_call_disabled, /* The eventpoint has been disabled while a
207 call into the inferior is "in flight",
208 because some eventpoints interfere with
209 the implementation of a call on some
210 targets. The eventpoint will be
211 automatically enabled and reset when the
212 call "lands" (either completes, or stops
213 at another eventpoint). */
214 };
215
216
217 /* Disposition of breakpoint. Ie: what to do after hitting it. */
218
219 enum bpdisp
220 {
221 disp_del, /* Delete it */
222 disp_del_at_next_stop, /* Delete at next stop,
223 whether hit or not */
224 disp_disable, /* Disable it */
225 disp_donttouch /* Leave it alone */
226 };
227
228 /* Status of breakpoint conditions used when synchronizing
229 conditions with the target. */
230
231 enum condition_status
232 {
233 condition_unchanged = 0,
234 condition_modified,
235 condition_updated
236 };
237
238 /* Information used by targets to insert and remove breakpoints. */
239
240 struct bp_target_info
241 {
242 /* Address space at which the breakpoint was placed. */
243 struct address_space *placed_address_space;
244
245 /* Address at which the breakpoint was placed. This is normally
246 the same as REQUESTED_ADDRESS, except when adjustment happens in
247 gdbarch_breakpoint_from_pc. The most common form of adjustment
248 is stripping an alternate ISA marker from the PC which is used
249 to determine the type of breakpoint to insert. */
250 CORE_ADDR placed_address;
251
252 /* Address at which the breakpoint was requested. */
253 CORE_ADDR reqstd_address;
254
255 /* If this is a ranged breakpoint, then this field contains the
256 length of the range that will be watched for execution. */
257 int length;
258
259 /* If the breakpoint lives in memory and reading that memory would
260 give back the breakpoint, instead of the original contents, then
261 the original contents are cached here. Only SHADOW_LEN bytes of
262 this buffer are valid, and only when the breakpoint is inserted. */
263 gdb_byte shadow_contents[BREAKPOINT_MAX];
264
265 /* The length of the data cached in SHADOW_CONTENTS. */
266 int shadow_len;
267
268 /* The breakpoint's kind. It is used in 'kind' parameter in Z
269 packets. */
270 int kind;
271
272 /* Conditions the target should evaluate if it supports target-side
273 breakpoint conditions. These are non-owning pointers. */
274 std::vector<agent_expr *> conditions;
275
276 /* Commands the target should evaluate if it supports target-side
277 breakpoint commands. These are non-owning pointers. */
278 std::vector<agent_expr *> tcommands;
279
280 /* Flag that is true if the breakpoint should be left in place even
281 when GDB is not connected. */
282 int persist;
283 };
284
285 /* GDB maintains two types of information about each breakpoint (or
286 watchpoint, or other related event). The first type corresponds
287 to struct breakpoint; this is a relatively high-level structure
288 which contains the source location(s), stopping conditions, user
289 commands to execute when the breakpoint is hit, and so forth.
290
291 The second type of information corresponds to struct bp_location.
292 Each breakpoint has one or (eventually) more locations associated
293 with it, which represent target-specific and machine-specific
294 mechanisms for stopping the program. For instance, a watchpoint
295 expression may require multiple hardware watchpoints in order to
296 catch all changes in the value of the expression being watched. */
297
298 enum bp_loc_type
299 {
300 bp_loc_software_breakpoint,
301 bp_loc_hardware_breakpoint,
302 bp_loc_hardware_watchpoint,
303 bp_loc_other /* Miscellaneous... */
304 };
305
306 class bp_location
307 {
308 public:
309 bp_location () = default;
310
311 bp_location (breakpoint *owner);
312
313 virtual ~bp_location ();
314
315 /* Chain pointer to the next breakpoint location for
316 the same parent breakpoint. */
317 bp_location *next = NULL;
318
319 /* The reference count. */
320 int refc = 0;
321
322 /* Type of this breakpoint location. */
323 bp_loc_type loc_type {};
324
325 /* Each breakpoint location must belong to exactly one higher-level
326 breakpoint. This pointer is NULL iff this bp_location is no
327 longer attached to a breakpoint. For example, when a breakpoint
328 is deleted, its locations may still be found in the
329 moribund_locations list, or if we had stopped for it, in
330 bpstats. */
331 breakpoint *owner = NULL;
332
333 /* Conditional. Break only if this expression's value is nonzero.
334 Unlike string form of condition, which is associated with
335 breakpoint, this is associated with location, since if breakpoint
336 has several locations, the evaluation of expression can be
337 different for different locations. Only valid for real
338 breakpoints; a watchpoint's conditional expression is stored in
339 the owner breakpoint object. */
340 expression_up cond;
341
342 /* Conditional expression in agent expression
343 bytecode form. This is used for stub-side breakpoint
344 condition evaluation. */
345 agent_expr_up cond_bytecode;
346
347 /* Signals that the condition has changed since the last time
348 we updated the global location list. This means the condition
349 needs to be sent to the target again. This is used together
350 with target-side breakpoint conditions.
351
352 condition_unchanged: It means there has been no condition changes.
353
354 condition_modified: It means this location had its condition modified.
355
356 condition_updated: It means we already marked all the locations that are
357 duplicates of this location and thus we don't need to call
358 force_breakpoint_reinsertion (...) for this location. */
359
360 condition_status condition_changed {};
361
362 agent_expr_up cmd_bytecode;
363
364 /* Signals that breakpoint conditions and/or commands need to be
365 re-synched with the target. This has no use other than
366 target-side breakpoints. */
367 bool needs_update = false;
368
369 /* This location's address is in an unloaded solib, and so this
370 location should not be inserted. It will be automatically
371 enabled when that solib is loaded. */
372 bool shlib_disabled = false;
373
374 /* Is this particular location enabled. */
375 bool enabled = false;
376
377 /* Nonzero if this breakpoint is now inserted. */
378 bool inserted = false;
379
380 /* Nonzero if this is a permanent breakpoint. There is a breakpoint
381 instruction hard-wired into the target's code. Don't try to
382 write another breakpoint instruction on top of it, or restore its
383 value. Step over it using the architecture's
384 gdbarch_skip_permanent_breakpoint method. */
385 bool permanent = false;
386
387 /* Nonzero if this is not the first breakpoint in the list
388 for the given address. location of tracepoint can _never_
389 be duplicated with other locations of tracepoints and other
390 kinds of breakpoints, because two locations at the same
391 address may have different actions, so both of these locations
392 should be downloaded and so that `tfind N' always works. */
393 bool duplicate = false;
394
395 /* If we someday support real thread-specific breakpoints, then
396 the breakpoint location will need a thread identifier. */
397
398 /* Data for specific breakpoint types. These could be a union, but
399 simplicity is more important than memory usage for breakpoints. */
400
401 /* Architecture associated with this location's address. May be
402 different from the breakpoint architecture. */
403 struct gdbarch *gdbarch = NULL;
404
405 /* The program space associated with this breakpoint location
406 address. Note that an address space may be represented in more
407 than one program space (e.g. each uClinux program will be given
408 its own program space, but there will only be one address space
409 for all of them), but we must not insert more than one location
410 at the same address in the same address space. */
411 program_space *pspace = NULL;
412
413 /* Note that zero is a perfectly valid code address on some platforms
414 (for example, the mn10200 (OBSOLETE) and mn10300 simulators). NULL
415 is not a special value for this field. Valid for all types except
416 bp_loc_other. */
417 CORE_ADDR address = 0;
418
419 /* For hardware watchpoints, the size of the memory region being
420 watched. For hardware ranged breakpoints, the size of the
421 breakpoint range. */
422 int length = 0;
423
424 /* Type of hardware watchpoint. */
425 target_hw_bp_type watchpoint_type {};
426
427 /* For any breakpoint type with an address, this is the section
428 associated with the address. Used primarily for overlay
429 debugging. */
430 obj_section *section = NULL;
431
432 /* Address at which breakpoint was requested, either by the user or
433 by GDB for internal breakpoints. This will usually be the same
434 as ``address'' (above) except for cases in which
435 ADJUST_BREAKPOINT_ADDRESS has computed a different address at
436 which to place the breakpoint in order to comply with a
437 processor's architectual constraints. */
438 CORE_ADDR requested_address = 0;
439
440 /* An additional address assigned with this location. This is currently
441 only used by STT_GNU_IFUNC resolver breakpoints to hold the address
442 of the resolver function. */
443 CORE_ADDR related_address = 0;
444
445 /* If the location comes from a probe point, this is the probe associated
446 with it. */
447 bound_probe probe {};
448
449 char *function_name = NULL;
450
451 /* Details of the placed breakpoint, when inserted. */
452 bp_target_info target_info {};
453
454 /* Similarly, for the breakpoint at an overlay's LMA, if necessary. */
455 bp_target_info overlay_target_info {};
456
457 /* In a non-stop mode, it's possible that we delete a breakpoint,
458 but as we do that, some still running thread hits that breakpoint.
459 For that reason, we need to keep locations belonging to deleted
460 breakpoints for a bit, so that don't report unexpected SIGTRAP.
461 We can't keep such locations forever, so we use a heuristic --
462 after we process certain number of inferior events since
463 breakpoint was deleted, we retire all locations of that breakpoint.
464 This variable keeps a number of events still to go, when
465 it becomes 0 this location is retired. */
466 int events_till_retirement = 0;
467
468 /* Line number which was used to place this location.
469
470 Breakpoint placed into a comment keeps it's user specified line number
471 despite ADDRESS resolves into a different line number. */
472
473 int line_number = 0;
474
475 /* Symtab which was used to place this location. This is used
476 to find the corresponding source file name. */
477
478 struct symtab *symtab = NULL;
479
480 /* The symbol found by the location parser, if any. This may be used to
481 ascertain when an event location was set at a different location than
482 the one originally selected by parsing, e.g., inlined symbols. */
483 const struct symbol *symbol = NULL;
484
485 /* Similarly, the minimal symbol found by the location parser, if
486 any. This may be used to ascertain if the location was
487 originally set on a GNU ifunc symbol. */
488 const minimal_symbol *msymbol = NULL;
489
490 /* The objfile the symbol or minimal symbol were found in. */
491 const struct objfile *objfile = NULL;
492 };
493
494 /* The possible return values for print_bpstat, print_it_normal,
495 print_it_done, print_it_noop. */
496 enum print_stop_action
497 {
498 /* We printed nothing or we need to do some more analysis. */
499 PRINT_UNKNOWN = -1,
500
501 /* We printed something, and we *do* desire that something to be
502 followed by a location. */
503 PRINT_SRC_AND_LOC,
504
505 /* We printed something, and we do *not* desire that something to be
506 followed by a location. */
507 PRINT_SRC_ONLY,
508
509 /* We already printed all we needed to print, don't print anything
510 else. */
511 PRINT_NOTHING
512 };
513
514 /* This structure is a collection of function pointers that, if available,
515 will be called instead of the performing the default action for this
516 bptype. */
517
518 struct breakpoint_ops
519 {
520 /* Allocate a location for this breakpoint. */
521 struct bp_location * (*allocate_location) (struct breakpoint *);
522
523 /* Reevaluate a breakpoint. This is necessary after symbols change
524 (e.g., an executable or DSO was loaded, or the inferior just
525 started). */
526 void (*re_set) (struct breakpoint *self);
527
528 /* Insert the breakpoint or watchpoint or activate the catchpoint.
529 Return 0 for success, 1 if the breakpoint, watchpoint or
530 catchpoint type is not supported, -1 for failure. */
531 int (*insert_location) (struct bp_location *);
532
533 /* Remove the breakpoint/catchpoint that was previously inserted
534 with the "insert" method above. Return 0 for success, 1 if the
535 breakpoint, watchpoint or catchpoint type is not supported,
536 -1 for failure. */
537 int (*remove_location) (struct bp_location *, enum remove_bp_reason reason);
538
539 /* Return true if it the target has stopped due to hitting
540 breakpoint location BL. This function does not check if we
541 should stop, only if BL explains the stop. ASPACE is the address
542 space in which the event occurred, BP_ADDR is the address at
543 which the inferior stopped, and WS is the target_waitstatus
544 describing the event. */
545 int (*breakpoint_hit) (const struct bp_location *bl,
546 const address_space *aspace,
547 CORE_ADDR bp_addr,
548 const struct target_waitstatus *ws);
549
550 /* Check internal conditions of the breakpoint referred to by BS.
551 If we should not stop for this breakpoint, set BS->stop to 0. */
552 void (*check_status) (struct bpstats *bs);
553
554 /* Tell how many hardware resources (debug registers) are needed
555 for this breakpoint. If this function is not provided, then
556 the breakpoint or watchpoint needs one debug register. */
557 int (*resources_needed) (const struct bp_location *);
558
559 /* Tell whether we can downgrade from a hardware watchpoint to a software
560 one. If not, the user will not be able to enable the watchpoint when
561 there are not enough hardware resources available. */
562 int (*works_in_software_mode) (const struct breakpoint *);
563
564 /* The normal print routine for this breakpoint, called when we
565 hit it. */
566 enum print_stop_action (*print_it) (struct bpstats *bs);
567
568 /* Display information about this breakpoint, for "info
569 breakpoints". */
570 void (*print_one) (struct breakpoint *, struct bp_location **);
571
572 /* Display extra information about this breakpoint, below the normal
573 breakpoint description in "info breakpoints".
574
575 In the example below, the "address range" line was printed
576 by print_one_detail_ranged_breakpoint.
577
578 (gdb) info breakpoints
579 Num Type Disp Enb Address What
580 2 hw breakpoint keep y in main at test-watch.c:70
581 address range: [0x10000458, 0x100004c7]
582
583 */
584 void (*print_one_detail) (const struct breakpoint *, struct ui_out *);
585
586 /* Display information about this breakpoint after setting it
587 (roughly speaking; this is called from "mention"). */
588 void (*print_mention) (struct breakpoint *);
589
590 /* Print to FP the CLI command that recreates this breakpoint. */
591 void (*print_recreate) (struct breakpoint *, struct ui_file *fp);
592
593 /* Create SALs from location, storing the result in linespec_result.
594
595 For an explanation about the arguments, see the function
596 `create_sals_from_location_default'.
597
598 This function is called inside `create_breakpoint'. */
599 void (*create_sals_from_location) (const struct event_location *location,
600 struct linespec_result *canonical,
601 enum bptype type_wanted);
602
603 /* This method will be responsible for creating a breakpoint given its SALs.
604 Usually, it just calls `create_breakpoints_sal' (for ordinary
605 breakpoints). However, there may be some special cases where we might
606 need to do some tweaks, e.g., see
607 `strace_marker_create_breakpoints_sal'.
608
609 This function is called inside `create_breakpoint'. */
610 void (*create_breakpoints_sal) (struct gdbarch *,
611 struct linespec_result *,
612 gdb::unique_xmalloc_ptr<char>,
613 gdb::unique_xmalloc_ptr<char>,
614 enum bptype, enum bpdisp, int, int,
615 int, const struct breakpoint_ops *,
616 int, int, int, unsigned);
617
618 /* Given the location (second parameter), this method decodes it and
619 returns the SAL locations related to it. For ordinary
620 breakpoints, it calls `decode_line_full'. If SEARCH_PSPACE is
621 not NULL, symbol search is restricted to just that program space.
622
623 This function is called inside `location_to_sals'. */
624 std::vector<symtab_and_line> (*decode_location)
625 (struct breakpoint *b,
626 const struct event_location *location,
627 struct program_space *search_pspace);
628
629 /* Return true if this breakpoint explains a signal. See
630 bpstat_explains_signal. */
631 int (*explains_signal) (struct breakpoint *, enum gdb_signal);
632
633 /* Called after evaluating the breakpoint's condition,
634 and only if it evaluated true. */
635 void (*after_condition_true) (struct bpstats *bs);
636 };
637
638 /* Helper for breakpoint_ops->print_recreate implementations. Prints
639 the "thread" or "task" condition of B, and then a newline.
640
641 Necessary because most breakpoint implementations accept
642 thread/task conditions at the end of the spec line, like "break foo
643 thread 1", which needs outputting before any breakpoint-type
644 specific extra command necessary for B's recreation. */
645 extern void print_recreate_thread (struct breakpoint *b, struct ui_file *fp);
646
647 enum watchpoint_triggered
648 {
649 /* This watchpoint definitely did not trigger. */
650 watch_triggered_no = 0,
651
652 /* Some hardware watchpoint triggered, and it might have been this
653 one, but we do not know which it was. */
654 watch_triggered_unknown,
655
656 /* This hardware watchpoint definitely did trigger. */
657 watch_triggered_yes
658 };
659
660 /* Some targets (e.g., embedded PowerPC) need two debug registers to set
661 a watchpoint over a memory region. If this flag is true, GDB will use
662 only one register per watchpoint, thus assuming that all acesses that
663 modify a memory location happen at its starting address. */
664
665 extern int target_exact_watchpoints;
666
667 /* Note that the ->silent field is not currently used by any commands
668 (though the code is in there if it was to be, and set_raw_breakpoint
669 does set it to 0). I implemented it because I thought it would be
670 useful for a hack I had to put in; I'm going to leave it in because
671 I can see how there might be times when it would indeed be useful */
672
673 /* This is for all kinds of breakpoints. */
674
675 struct breakpoint
676 {
677 virtual ~breakpoint ();
678
679 /* Methods associated with this breakpoint. */
680 const breakpoint_ops *ops = NULL;
681
682 breakpoint *next = NULL;
683 /* Type of breakpoint. */
684 bptype type = bp_none;
685 /* Zero means disabled; remember the info but don't break here. */
686 enum enable_state enable_state = bp_enabled;
687 /* What to do with this breakpoint after we hit it. */
688 bpdisp disposition = disp_del;
689 /* Number assigned to distinguish breakpoints. */
690 int number = 0;
691
692 /* Location(s) associated with this high-level breakpoint. */
693 bp_location *loc = NULL;
694
695 /* True means a silent breakpoint (don't print frame info if we stop
696 here). */
697 bool silent = false;
698 /* True means display ADDR_STRING to the user verbatim. */
699 bool display_canonical = false;
700 /* Number of stops at this breakpoint that should be continued
701 automatically before really stopping. */
702 int ignore_count = 0;
703
704 /* Number of stops at this breakpoint before it will be
705 disabled. */
706 int enable_count = 0;
707
708 /* Chain of command lines to execute when this breakpoint is
709 hit. */
710 counted_command_line commands;
711 /* Stack depth (address of frame). If nonzero, break only if fp
712 equals this. */
713 struct frame_id frame_id = null_frame_id;
714
715 /* The program space used to set the breakpoint. This is only set
716 for breakpoints which are specific to a program space; for
717 non-thread-specific ordinary breakpoints this is NULL. */
718 program_space *pspace = NULL;
719
720 /* Location we used to set the breakpoint. */
721 event_location_up location;
722
723 /* The filter that should be passed to decode_line_full when
724 re-setting this breakpoint. This may be NULL, but otherwise is
725 allocated with xmalloc. */
726 char *filter = NULL;
727
728 /* For a ranged breakpoint, the location we used to find the end of
729 the range. */
730 event_location_up location_range_end;
731
732 /* Architecture we used to set the breakpoint. */
733 struct gdbarch *gdbarch = NULL;
734 /* Language we used to set the breakpoint. */
735 enum language language = language_unknown;
736 /* Input radix we used to set the breakpoint. */
737 int input_radix = 0;
738 /* String form of the breakpoint condition (malloc'd), or NULL if
739 there is no condition. */
740 char *cond_string = NULL;
741
742 /* String form of extra parameters, or NULL if there are none.
743 Malloc'd. */
744 char *extra_string = NULL;
745
746 /* Holds the address of the related watchpoint_scope breakpoint when
747 using watchpoints on local variables (might the concept of a
748 related breakpoint be useful elsewhere, if not just call it the
749 watchpoint_scope breakpoint or something like that. FIXME). */
750 breakpoint *related_breakpoint = NULL;
751
752 /* Thread number for thread-specific breakpoint, or -1 if don't
753 care. */
754 int thread = -1;
755
756 /* Ada task number for task-specific breakpoint, or 0 if don't
757 care. */
758 int task = 0;
759
760 /* Count of the number of times this breakpoint was taken, dumped
761 with the info, but not used for anything else. Useful for seeing
762 how many times you hit a break prior to the program aborting, so
763 you can back up to just before the abort. */
764 int hit_count = 0;
765
766 /* Is breakpoint's condition not yet parsed because we found no
767 location initially so had no context to parse the condition
768 in. */
769 int condition_not_parsed = 0;
770
771 /* With a Python scripting enabled GDB, store a reference to the
772 Python object that has been associated with this breakpoint.
773 This is always NULL for a GDB that is not script enabled. It can
774 sometimes be NULL for enabled GDBs as not all breakpoint types
775 are tracked by the scripting language API. */
776 gdbpy_breakpoint_object *py_bp_object = NULL;
777
778 /* Same as py_bp_object, but for Scheme. */
779 gdbscm_breakpoint_object *scm_bp_object = NULL;
780 };
781
782 /* An instance of this type is used to represent a watchpoint. */
783
784 struct watchpoint : public breakpoint
785 {
786 ~watchpoint () override;
787
788 /* String form of exp to use for displaying to the user (malloc'd),
789 or NULL if none. */
790 char *exp_string;
791 /* String form to use for reparsing of EXP (malloc'd) or NULL. */
792 char *exp_string_reparse;
793
794 /* The expression we are watching, or NULL if not a watchpoint. */
795 expression_up exp;
796 /* The largest block within which it is valid, or NULL if it is
797 valid anywhere (e.g. consists just of global symbols). */
798 const struct block *exp_valid_block;
799 /* The conditional expression if any. */
800 expression_up cond_exp;
801 /* The largest block within which it is valid, or NULL if it is
802 valid anywhere (e.g. consists just of global symbols). */
803 const struct block *cond_exp_valid_block;
804 /* Value of the watchpoint the last time we checked it, or NULL when
805 we do not know the value yet or the value was not readable. VAL
806 is never lazy. */
807 value_ref_ptr val;
808 /* Nonzero if VAL is valid. If VAL_VALID is set but VAL is NULL,
809 then an error occurred reading the value. */
810 int val_valid;
811
812 /* When watching the location of a bitfield, contains the offset and size of
813 the bitfield. Otherwise contains 0. */
814 int val_bitpos;
815 int val_bitsize;
816
817 /* Holds the frame address which identifies the frame this
818 watchpoint should be evaluated in, or `null' if the watchpoint
819 should be evaluated on the outermost frame. */
820 struct frame_id watchpoint_frame;
821
822 /* Holds the thread which identifies the frame this watchpoint
823 should be considered in scope for, or `null_ptid' if the
824 watchpoint should be evaluated in all threads. */
825 ptid_t watchpoint_thread;
826
827 /* For hardware watchpoints, the triggered status according to the
828 hardware. */
829 enum watchpoint_triggered watchpoint_triggered;
830
831 /* Whether this watchpoint is exact (see
832 target_exact_watchpoints). */
833 int exact;
834
835 /* The mask address for a masked hardware watchpoint. */
836 CORE_ADDR hw_wp_mask;
837 };
838
839 /* Given a function FUNC (struct breakpoint *B, void *DATA) and
840 USER_DATA, call FUNC for every known breakpoint passing USER_DATA
841 as argument.
842
843 If FUNC returns 1, the loop stops and the current
844 'struct breakpoint' being processed is returned. If FUNC returns
845 zero, the loop continues.
846
847 This function returns either a 'struct breakpoint' pointer or NULL.
848 It was based on BFD's bfd_sections_find_if function. */
849
850 extern struct breakpoint *breakpoint_find_if
851 (int (*func) (struct breakpoint *b, void *d), void *user_data);
852
853 /* Return true if BPT is either a software breakpoint or a hardware
854 breakpoint. */
855
856 extern int is_breakpoint (const struct breakpoint *bpt);
857
858 /* Returns true if BPT is really a watchpoint. */
859
860 extern int is_watchpoint (const struct breakpoint *bpt);
861
862 /* An instance of this type is used to represent all kinds of
863 tracepoints. */
864
865 struct tracepoint : public breakpoint
866 {
867 /* Number of times this tracepoint should single-step and collect
868 additional data. */
869 long step_count;
870
871 /* Number of times this tracepoint should be hit before
872 disabling/ending. */
873 int pass_count;
874
875 /* The number of the tracepoint on the target. */
876 int number_on_target;
877
878 /* The total space taken by all the trace frames for this
879 tracepoint. */
880 ULONGEST traceframe_usage;
881
882 /* The static tracepoint marker id, if known. */
883 std::string static_trace_marker_id;
884
885 /* LTTng/UST allow more than one marker with the same ID string,
886 although it unadvised because it confuses tools. When setting
887 static tracepoints by marker ID, this will record the index in
888 the array of markers we found for the given marker ID for which
889 this static tracepoint corresponds. When resetting breakpoints,
890 we will use this index to try to find the same marker again. */
891 int static_trace_marker_id_idx;
892 };
893
894 \f
895 /* The following stuff is an abstract data type "bpstat" ("breakpoint
896 status"). This provides the ability to determine whether we have
897 stopped at a breakpoint, and what we should do about it. */
898
899 typedef struct bpstats *bpstat;
900
901 /* Clears a chain of bpstat, freeing storage
902 of each. */
903 extern void bpstat_clear (bpstat *);
904
905 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
906 is part of the bpstat is copied as well. */
907 extern bpstat bpstat_copy (bpstat);
908
909 /* Build the (raw) bpstat chain for the stop information given by ASPACE,
910 BP_ADDR, and WS. Returns the head of the bpstat chain. */
911
912 extern bpstat build_bpstat_chain (const address_space *aspace,
913 CORE_ADDR bp_addr,
914 const struct target_waitstatus *ws);
915
916 /* Get a bpstat associated with having just stopped at address
917 BP_ADDR in thread PTID. STOP_CHAIN may be supplied as a previously
918 computed stop chain or NULL, in which case the stop chain will be
919 computed using build_bpstat_chain.
920
921 Determine whether we stopped at a breakpoint, etc, or whether we
922 don't understand this stop. Result is a chain of bpstat's such
923 that:
924
925 if we don't understand the stop, the result is a null pointer.
926
927 if we understand why we stopped, the result is not null.
928
929 Each element of the chain refers to a particular breakpoint or
930 watchpoint at which we have stopped. (We may have stopped for
931 several reasons concurrently.)
932
933 Each element of the chain has valid next, breakpoint_at,
934 commands, FIXME??? fields. */
935
936 extern bpstat bpstat_stop_status (const address_space *aspace,
937 CORE_ADDR pc, thread_info *thread,
938 const struct target_waitstatus *ws,
939 bpstat stop_chain = NULL);
940 \f
941 /* This bpstat_what stuff tells wait_for_inferior what to do with a
942 breakpoint (a challenging task).
943
944 The enum values order defines priority-like order of the actions.
945 Once you've decided that some action is appropriate, you'll never
946 go back and decide something of a lower priority is better. Each
947 of these actions is mutually exclusive with the others. That
948 means, that if you find yourself adding a new action class here and
949 wanting to tell GDB that you have two simultaneous actions to
950 handle, something is wrong, and you probably don't actually need a
951 new action type.
952
953 Note that a step resume breakpoint overrides another breakpoint of
954 signal handling (see comment in wait_for_inferior at where we set
955 the step_resume breakpoint). */
956
957 enum bpstat_what_main_action
958 {
959 /* Perform various other tests; that is, this bpstat does not
960 say to perform any action (e.g. failed watchpoint and nothing
961 else). */
962 BPSTAT_WHAT_KEEP_CHECKING,
963
964 /* Remove breakpoints, single step once, then put them back in and
965 go back to what we were doing. It's possible that this should
966 be removed from the main_action and put into a separate field,
967 to more cleanly handle
968 BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE. */
969 BPSTAT_WHAT_SINGLE,
970
971 /* Set longjmp_resume breakpoint, remove all other breakpoints,
972 and continue. The "remove all other breakpoints" part is
973 required if we are also stepping over another breakpoint as
974 well as doing the longjmp handling. */
975 BPSTAT_WHAT_SET_LONGJMP_RESUME,
976
977 /* Clear longjmp_resume breakpoint, then handle as
978 BPSTAT_WHAT_KEEP_CHECKING. */
979 BPSTAT_WHAT_CLEAR_LONGJMP_RESUME,
980
981 /* Clear step resume breakpoint, and keep checking. */
982 BPSTAT_WHAT_STEP_RESUME,
983
984 /* Rather than distinguish between noisy and silent stops here, it
985 might be cleaner to have bpstat_print make that decision (also
986 taking into account stop_print_frame and source_only). But the
987 implications are a bit scary (interaction with auto-displays,
988 etc.), so I won't try it. */
989
990 /* Stop silently. */
991 BPSTAT_WHAT_STOP_SILENT,
992
993 /* Stop and print. */
994 BPSTAT_WHAT_STOP_NOISY,
995
996 /* Clear step resume breakpoint, and keep checking. High-priority
997 step-resume breakpoints are used when even if there's a user
998 breakpoint at the current PC when we set the step-resume
999 breakpoint, we don't want to re-handle any breakpoint other
1000 than the step-resume when it's hit; instead we want to move
1001 past the breakpoint. This is used in the case of skipping
1002 signal handlers. */
1003 BPSTAT_WHAT_HP_STEP_RESUME,
1004 };
1005
1006 /* An enum indicating the kind of "stack dummy" stop. This is a bit
1007 of a misnomer because only one kind of truly a stack dummy. */
1008 enum stop_stack_kind
1009 {
1010 /* We didn't stop at a stack dummy breakpoint. */
1011 STOP_NONE = 0,
1012
1013 /* Stopped at a stack dummy. */
1014 STOP_STACK_DUMMY,
1015
1016 /* Stopped at std::terminate. */
1017 STOP_STD_TERMINATE
1018 };
1019
1020 struct bpstat_what
1021 {
1022 enum bpstat_what_main_action main_action;
1023
1024 /* Did we hit a call dummy breakpoint? This only goes with a
1025 main_action of BPSTAT_WHAT_STOP_SILENT or
1026 BPSTAT_WHAT_STOP_NOISY (the concept of continuing from a call
1027 dummy without popping the frame is not a useful one). */
1028 enum stop_stack_kind call_dummy;
1029
1030 /* Used for BPSTAT_WHAT_SET_LONGJMP_RESUME and
1031 BPSTAT_WHAT_CLEAR_LONGJMP_RESUME. True if we are handling a
1032 longjmp, false if we are handling an exception. */
1033 int is_longjmp;
1034 };
1035
1036 /* Tell what to do about this bpstat. */
1037 struct bpstat_what bpstat_what (bpstat);
1038
1039 /* Run breakpoint event callbacks associated with the breakpoints that
1040 triggered. */
1041 extern void bpstat_run_callbacks (bpstat bs_head);
1042
1043 /* Find the bpstat associated with a breakpoint. NULL otherwise. */
1044 bpstat bpstat_find_breakpoint (bpstat, struct breakpoint *);
1045
1046 /* Nonzero if a signal that we got in target_wait() was due to
1047 circumstances explained by the bpstat; the signal is therefore not
1048 random. */
1049 extern int bpstat_explains_signal (bpstat, enum gdb_signal);
1050
1051 /* Nonzero is this bpstat causes a stop. */
1052 extern int bpstat_causes_stop (bpstat);
1053
1054 /* Nonzero if we should step constantly (e.g. watchpoints on machines
1055 without hardware support). This isn't related to a specific bpstat,
1056 just to things like whether watchpoints are set. */
1057 extern int bpstat_should_step (void);
1058
1059 /* Print a message indicating what happened. Returns nonzero to
1060 say that only the source line should be printed after this (zero
1061 return means print the frame as well as the source line). */
1062 extern enum print_stop_action bpstat_print (bpstat, int);
1063
1064 /* Put in *NUM the breakpoint number of the first breakpoint we are
1065 stopped at. *BSP upon return is a bpstat which points to the
1066 remaining breakpoints stopped at (but which is not guaranteed to be
1067 good for anything but further calls to bpstat_num).
1068
1069 Return 0 if passed a bpstat which does not indicate any breakpoints.
1070 Return -1 if stopped at a breakpoint that has been deleted since
1071 we set it.
1072 Return 1 otherwise. */
1073 extern int bpstat_num (bpstat *, int *);
1074
1075 /* Perform actions associated with the stopped inferior. Actually, we
1076 just use this for breakpoint commands. Perhaps other actions will
1077 go here later, but this is executed at a late time (from the
1078 command loop). */
1079 extern void bpstat_do_actions (void);
1080
1081 /* Modify all entries of STOP_BPSTAT of INFERIOR_PTID so that the actions will
1082 not be performed. */
1083 extern void bpstat_clear_actions (void);
1084
1085 /* Implementation: */
1086
1087 /* Values used to tell the printing routine how to behave for this
1088 bpstat. */
1089 enum bp_print_how
1090 {
1091 /* This is used when we want to do a normal printing of the reason
1092 for stopping. The output will depend on the type of eventpoint
1093 we are dealing with. This is the default value, most commonly
1094 used. */
1095 print_it_normal,
1096 /* This is used when nothing should be printed for this bpstat
1097 entry. */
1098 print_it_noop,
1099 /* This is used when everything which needs to be printed has
1100 already been printed. But we still want to print the frame. */
1101 print_it_done
1102 };
1103
1104 struct bpstats
1105 {
1106 bpstats ();
1107 bpstats (struct bp_location *bl, bpstat **bs_link_pointer);
1108 ~bpstats ();
1109
1110 bpstats (const bpstats &);
1111 bpstats &operator= (const bpstats &) = delete;
1112
1113 /* Linked list because there can be more than one breakpoint at
1114 the same place, and a bpstat reflects the fact that all have
1115 been hit. */
1116 bpstat next;
1117
1118 /* Location that caused the stop. Locations are refcounted, so
1119 this will never be NULL. Note that this location may end up
1120 detached from a breakpoint, but that does not necessary mean
1121 that the struct breakpoint is gone. E.g., consider a
1122 watchpoint with a condition that involves an inferior function
1123 call. Watchpoint locations are recreated often (on resumes,
1124 hence on infcalls too). Between creating the bpstat and after
1125 evaluating the watchpoint condition, this location may hence
1126 end up detached from its original owner watchpoint, even though
1127 the watchpoint is still listed. If it's condition evaluates as
1128 true, we still want this location to cause a stop, and we will
1129 still need to know which watchpoint it was originally attached.
1130 What this means is that we should not (in most cases) follow
1131 the `bpstat->bp_location->owner' link, but instead use the
1132 `breakpoint_at' field below. */
1133 struct bp_location *bp_location_at;
1134
1135 /* Breakpoint that caused the stop. This is nullified if the
1136 breakpoint ends up being deleted. See comments on
1137 `bp_location_at' above for why do we need this field instead of
1138 following the location's owner. */
1139 struct breakpoint *breakpoint_at;
1140
1141 /* The associated command list. */
1142 counted_command_line commands;
1143
1144 /* Old value associated with a watchpoint. */
1145 value_ref_ptr old_val;
1146
1147 /* Nonzero if this breakpoint tells us to print the frame. */
1148 char print;
1149
1150 /* Nonzero if this breakpoint tells us to stop. */
1151 char stop;
1152
1153 /* Tell bpstat_print and print_bp_stop_message how to print stuff
1154 associated with this element of the bpstat chain. */
1155 enum bp_print_how print_it;
1156 };
1157
1158 enum inf_context
1159 {
1160 inf_starting,
1161 inf_running,
1162 inf_exited,
1163 inf_execd
1164 };
1165
1166 /* The possible return values for breakpoint_here_p.
1167 We guarantee that zero always means "no breakpoint here". */
1168 enum breakpoint_here
1169 {
1170 no_breakpoint_here = 0,
1171 ordinary_breakpoint_here,
1172 permanent_breakpoint_here
1173 };
1174 \f
1175
1176 /* Prototypes for breakpoint-related functions. */
1177
1178 /* Return 1 if there's a program/permanent breakpoint planted in
1179 memory at ADDRESS, return 0 otherwise. */
1180
1181 extern int program_breakpoint_here_p (struct gdbarch *gdbarch, CORE_ADDR address);
1182
1183 extern enum breakpoint_here breakpoint_here_p (const address_space *,
1184 CORE_ADDR);
1185
1186 /* Return true if an enabled breakpoint exists in the range defined by
1187 ADDR and LEN, in ASPACE. */
1188 extern int breakpoint_in_range_p (const address_space *aspace,
1189 CORE_ADDR addr, ULONGEST len);
1190
1191 extern int moribund_breakpoint_here_p (const address_space *, CORE_ADDR);
1192
1193 extern int breakpoint_inserted_here_p (const address_space *,
1194 CORE_ADDR);
1195
1196 extern int software_breakpoint_inserted_here_p (const address_space *,
1197 CORE_ADDR);
1198
1199 /* Return non-zero iff there is a hardware breakpoint inserted at
1200 PC. */
1201 extern int hardware_breakpoint_inserted_here_p (const address_space *,
1202 CORE_ADDR);
1203
1204 /* Check whether any location of BP is inserted at PC. */
1205
1206 extern int breakpoint_has_location_inserted_here (struct breakpoint *bp,
1207 const address_space *aspace,
1208 CORE_ADDR pc);
1209
1210 extern int single_step_breakpoint_inserted_here_p (const address_space *,
1211 CORE_ADDR);
1212
1213 /* Returns true if there's a hardware watchpoint or access watchpoint
1214 inserted in the range defined by ADDR and LEN. */
1215 extern int hardware_watchpoint_inserted_in_range (const address_space *,
1216 CORE_ADDR addr,
1217 ULONGEST len);
1218
1219 /* Returns true if {ASPACE1,ADDR1} and {ASPACE2,ADDR2} represent the
1220 same breakpoint location. In most targets, this can only be true
1221 if ASPACE1 matches ASPACE2. On targets that have global
1222 breakpoints, the address space doesn't really matter. */
1223
1224 extern int breakpoint_address_match (const address_space *aspace1,
1225 CORE_ADDR addr1,
1226 const address_space *aspace2,
1227 CORE_ADDR addr2);
1228
1229 extern void until_break_command (const char *, int, int);
1230
1231 /* Initialize a struct bp_location. */
1232
1233 extern void update_breakpoint_locations
1234 (struct breakpoint *b,
1235 struct program_space *filter_pspace,
1236 gdb::array_view<const symtab_and_line> sals,
1237 gdb::array_view<const symtab_and_line> sals_end);
1238
1239 extern void breakpoint_re_set (void);
1240
1241 extern void breakpoint_re_set_thread (struct breakpoint *);
1242
1243 extern void delete_breakpoint (struct breakpoint *);
1244
1245 struct breakpoint_deleter
1246 {
1247 void operator() (struct breakpoint *b) const
1248 {
1249 delete_breakpoint (b);
1250 }
1251 };
1252
1253 typedef std::unique_ptr<struct breakpoint, breakpoint_deleter> breakpoint_up;
1254
1255 extern breakpoint_up set_momentary_breakpoint
1256 (struct gdbarch *, struct symtab_and_line, struct frame_id, enum bptype);
1257
1258 extern breakpoint_up set_momentary_breakpoint_at_pc
1259 (struct gdbarch *, CORE_ADDR pc, enum bptype type);
1260
1261 extern struct breakpoint *clone_momentary_breakpoint (struct breakpoint *bpkt);
1262
1263 extern void set_ignore_count (int, int, int);
1264
1265 extern void breakpoint_init_inferior (enum inf_context);
1266
1267 extern void breakpoint_auto_delete (bpstat);
1268
1269 typedef void (*walk_bp_location_callback) (struct bp_location *, void *);
1270
1271 extern void iterate_over_bp_locations (walk_bp_location_callback);
1272
1273 /* Return the chain of command lines to execute when this breakpoint
1274 is hit. */
1275 extern struct command_line *breakpoint_commands (struct breakpoint *b);
1276
1277 /* Return a string image of DISP. The string is static, and thus should
1278 NOT be deallocated after use. */
1279 const char *bpdisp_text (enum bpdisp disp);
1280
1281 extern void break_command (const char *, int);
1282
1283 extern void hbreak_command_wrapper (const char *, int);
1284 extern void thbreak_command_wrapper (const char *, int);
1285 extern void rbreak_command_wrapper (const char *, int);
1286 extern void watch_command_wrapper (const char *, int, int);
1287 extern void awatch_command_wrapper (const char *, int, int);
1288 extern void rwatch_command_wrapper (const char *, int, int);
1289 extern void tbreak_command (const char *, int);
1290
1291 extern struct breakpoint_ops base_breakpoint_ops;
1292 extern struct breakpoint_ops bkpt_breakpoint_ops;
1293 extern struct breakpoint_ops tracepoint_breakpoint_ops;
1294 extern struct breakpoint_ops dprintf_breakpoint_ops;
1295
1296 extern void initialize_breakpoint_ops (void);
1297
1298 /* Arguments to pass as context to some catch command handlers. */
1299 #define CATCH_PERMANENT ((void *) (uintptr_t) 0)
1300 #define CATCH_TEMPORARY ((void *) (uintptr_t) 1)
1301
1302 /* Like add_cmd, but add the command to both the "catch" and "tcatch"
1303 lists, and pass some additional user data to the command
1304 function. */
1305
1306 extern void
1307 add_catch_command (const char *name, const char *docstring,
1308 cmd_const_sfunc_ftype *sfunc,
1309 completer_ftype *completer,
1310 void *user_data_catch,
1311 void *user_data_tcatch);
1312
1313 /* Initialize a breakpoint struct for Ada exception catchpoints. */
1314
1315 extern void
1316 init_ada_exception_breakpoint (struct breakpoint *b,
1317 struct gdbarch *gdbarch,
1318 struct symtab_and_line sal,
1319 const char *addr_string,
1320 const struct breakpoint_ops *ops,
1321 int tempflag,
1322 int enabled,
1323 int from_tty);
1324
1325 extern void init_catchpoint (struct breakpoint *b,
1326 struct gdbarch *gdbarch, int tempflag,
1327 const char *cond_string,
1328 const struct breakpoint_ops *ops);
1329
1330 /* Add breakpoint B on the breakpoint list, and notify the user, the
1331 target and breakpoint_created observers of its existence. If
1332 INTERNAL is non-zero, the breakpoint number will be allocated from
1333 the internal breakpoint count. If UPDATE_GLL is non-zero,
1334 update_global_location_list will be called. */
1335
1336 extern void install_breakpoint (int internal, std::unique_ptr<breakpoint> &&b,
1337 int update_gll);
1338
1339 /* Flags that can be passed down to create_breakpoint, etc., to affect
1340 breakpoint creation in several ways. */
1341
1342 enum breakpoint_create_flags
1343 {
1344 /* We're adding a breakpoint to our tables that is already
1345 inserted in the target. */
1346 CREATE_BREAKPOINT_FLAGS_INSERTED = 1 << 0
1347 };
1348
1349 /* Set a breakpoint. This function is shared between CLI and MI functions
1350 for setting a breakpoint at LOCATION.
1351
1352 This function has two major modes of operations, selected by the
1353 PARSE_EXTRA parameter.
1354
1355 If PARSE_EXTRA is zero, LOCATION is just the breakpoint's location,
1356 with condition, thread, and extra string specified by the COND_STRING,
1357 THREAD, and EXTRA_STRING parameters.
1358
1359 If PARSE_EXTRA is non-zero, this function will attempt to extract
1360 the condition, thread, and extra string from EXTRA_STRING, ignoring
1361 the similarly named parameters.
1362
1363 If INTERNAL is non-zero, the breakpoint number will be allocated
1364 from the internal breakpoint count.
1365
1366 Returns true if any breakpoint was created; false otherwise. */
1367
1368 extern int create_breakpoint (struct gdbarch *gdbarch,
1369 const struct event_location *location,
1370 const char *cond_string, int thread,
1371 const char *extra_string,
1372 int parse_extra,
1373 int tempflag, enum bptype wanted_type,
1374 int ignore_count,
1375 enum auto_boolean pending_break_support,
1376 const struct breakpoint_ops *ops,
1377 int from_tty,
1378 int enabled,
1379 int internal, unsigned flags);
1380
1381 extern void insert_breakpoints (void);
1382
1383 extern int remove_breakpoints (void);
1384
1385 extern int remove_breakpoints_inf (inferior *inf);
1386
1387 /* This function can be used to update the breakpoint package's state
1388 after an exec() system call has been executed.
1389
1390 This function causes the following:
1391
1392 - All eventpoints are marked "not inserted".
1393 - All eventpoints with a symbolic address are reset such that
1394 the symbolic address must be reevaluated before the eventpoints
1395 can be reinserted.
1396 - The solib breakpoints are explicitly removed from the breakpoint
1397 list.
1398 - A step-resume breakpoint, if any, is explicitly removed from the
1399 breakpoint list.
1400 - All eventpoints without a symbolic address are removed from the
1401 breakpoint list. */
1402 extern void update_breakpoints_after_exec (void);
1403
1404 /* This function can be used to physically remove hardware breakpoints
1405 and watchpoints from the specified traced inferior process, without
1406 modifying the breakpoint package's state. This can be useful for
1407 those targets which support following the processes of a fork() or
1408 vfork() system call, when one of the resulting two processes is to
1409 be detached and allowed to run free.
1410
1411 It is an error to use this function on the process whose id is
1412 inferior_ptid. */
1413 extern int detach_breakpoints (ptid_t ptid);
1414
1415 /* This function is called when program space PSPACE is about to be
1416 deleted. It takes care of updating breakpoints to not reference
1417 this PSPACE anymore. */
1418 extern void breakpoint_program_space_exit (struct program_space *pspace);
1419
1420 extern void set_longjmp_breakpoint (struct thread_info *tp,
1421 struct frame_id frame);
1422 extern void delete_longjmp_breakpoint (int thread);
1423
1424 /* Mark all longjmp breakpoints from THREAD for later deletion. */
1425 extern void delete_longjmp_breakpoint_at_next_stop (int thread);
1426
1427 extern struct breakpoint *set_longjmp_breakpoint_for_call_dummy (void);
1428 extern void check_longjmp_breakpoint_for_call_dummy (struct thread_info *tp);
1429
1430 extern void enable_overlay_breakpoints (void);
1431 extern void disable_overlay_breakpoints (void);
1432
1433 extern void set_std_terminate_breakpoint (void);
1434 extern void delete_std_terminate_breakpoint (void);
1435
1436 /* These functions respectively disable or reenable all currently
1437 enabled watchpoints. When disabled, the watchpoints are marked
1438 call_disabled. When re-enabled, they are marked enabled.
1439
1440 The intended client of these functions is call_function_by_hand.
1441
1442 The inferior must be stopped, and all breakpoints removed, when
1443 these functions are used.
1444
1445 The need for these functions is that on some targets (e.g., HP-UX),
1446 gdb is unable to unwind through the dummy frame that is pushed as
1447 part of the implementation of a call command. Watchpoints can
1448 cause the inferior to stop in places where this frame is visible,
1449 and that can cause execution control to become very confused.
1450
1451 Note that if a user sets breakpoints in an interactively called
1452 function, the call_disabled watchpoints will have been re-enabled
1453 when the first such breakpoint is reached. However, on targets
1454 that are unable to unwind through the call dummy frame, watches
1455 of stack-based storage may then be deleted, because gdb will
1456 believe that their watched storage is out of scope. (Sigh.) */
1457 extern void disable_watchpoints_before_interactive_call_start (void);
1458
1459 extern void enable_watchpoints_after_interactive_call_stop (void);
1460
1461 /* These functions disable and re-enable all breakpoints during
1462 inferior startup. They are intended to be called from solib
1463 code where necessary. This is needed on platforms where the
1464 main executable is relocated at some point during startup
1465 processing, making breakpoint addresses invalid.
1466
1467 If additional breakpoints are created after the routine
1468 disable_breakpoints_before_startup but before the routine
1469 enable_breakpoints_after_startup was called, they will also
1470 be marked as disabled. */
1471 extern void disable_breakpoints_before_startup (void);
1472 extern void enable_breakpoints_after_startup (void);
1473
1474 /* For script interpreters that need to define breakpoint commands
1475 after they've already read the commands into a struct
1476 command_line. */
1477 extern enum command_control_type commands_from_control_command
1478 (const char *arg, struct command_line *cmd);
1479
1480 extern void clear_breakpoint_hit_counts (void);
1481
1482 extern struct breakpoint *get_breakpoint (int num);
1483
1484 /* The following are for displays, which aren't really breakpoints,
1485 but here is as good a place as any for them. */
1486
1487 extern void disable_current_display (void);
1488
1489 extern void do_displays (void);
1490
1491 extern void disable_display (int);
1492
1493 extern void clear_displays (void);
1494
1495 extern void disable_breakpoint (struct breakpoint *);
1496
1497 extern void enable_breakpoint (struct breakpoint *);
1498
1499 extern void breakpoint_set_commands (struct breakpoint *b,
1500 counted_command_line &&commands);
1501
1502 extern void breakpoint_set_silent (struct breakpoint *b, int silent);
1503
1504 extern void breakpoint_set_thread (struct breakpoint *b, int thread);
1505
1506 extern void breakpoint_set_task (struct breakpoint *b, int task);
1507
1508 /* Clear the "inserted" flag in all breakpoints. */
1509 extern void mark_breakpoints_out (void);
1510
1511 extern struct breakpoint *create_jit_event_breakpoint (struct gdbarch *,
1512 CORE_ADDR);
1513
1514 extern struct breakpoint *create_solib_event_breakpoint (struct gdbarch *,
1515 CORE_ADDR);
1516
1517 /* Create an solib event breakpoint at ADDRESS in the current program
1518 space, and immediately try to insert it. Returns a pointer to the
1519 breakpoint on success. Deletes the new breakpoint and returns NULL
1520 if inserting the breakpoint fails. */
1521 extern struct breakpoint *create_and_insert_solib_event_breakpoint
1522 (struct gdbarch *gdbarch, CORE_ADDR address);
1523
1524 extern struct breakpoint *create_thread_event_breakpoint (struct gdbarch *,
1525 CORE_ADDR);
1526
1527 extern void remove_jit_event_breakpoints (void);
1528
1529 extern void remove_solib_event_breakpoints (void);
1530
1531 /* Mark solib event breakpoints of the current program space with
1532 delete at next stop disposition. */
1533 extern void remove_solib_event_breakpoints_at_next_stop (void);
1534
1535 extern void disable_breakpoints_in_shlibs (void);
1536
1537 /* This function returns TRUE if ep is a catchpoint. */
1538 extern int is_catchpoint (struct breakpoint *);
1539
1540 /* Shared helper function (MI and CLI) for creating and installing
1541 a shared object event catchpoint. */
1542 extern void add_solib_catchpoint (const char *arg, int is_load, int is_temp,
1543 int enabled);
1544
1545 /* Create and insert a new software single step breakpoint for the
1546 current thread. May be called multiple times; each time will add a
1547 new location to the set of potential addresses the next instruction
1548 is at. */
1549 extern void insert_single_step_breakpoint (struct gdbarch *,
1550 const address_space *,
1551 CORE_ADDR);
1552
1553 /* Insert all software single step breakpoints for the current frame.
1554 Return true if any software single step breakpoints are inserted,
1555 otherwise, return false. */
1556 extern int insert_single_step_breakpoints (struct gdbarch *);
1557
1558 /* Check if any hardware watchpoints have triggered, according to the
1559 target. */
1560 int watchpoints_triggered (struct target_waitstatus *);
1561
1562 /* Helper for transparent breakpoint hiding for memory read and write
1563 routines.
1564
1565 Update one of READBUF or WRITEBUF with either the shadows
1566 (READBUF), or the breakpoint instructions (WRITEBUF) of inserted
1567 breakpoints at the memory range defined by MEMADDR and extending
1568 for LEN bytes. If writing, then WRITEBUF is a copy of WRITEBUF_ORG
1569 on entry.*/
1570 extern void breakpoint_xfer_memory (gdb_byte *readbuf, gdb_byte *writebuf,
1571 const gdb_byte *writebuf_org,
1572 ULONGEST memaddr, LONGEST len);
1573
1574 /* Return true if breakpoints should be inserted now. That'll be the
1575 case if either:
1576
1577 - the target has global breakpoints.
1578
1579 - "breakpoint always-inserted" is on, and the target has
1580 execution.
1581
1582 - threads are executing.
1583 */
1584 extern int breakpoints_should_be_inserted_now (void);
1585
1586 /* Called each time new event from target is processed.
1587 Retires previously deleted breakpoint locations that
1588 in our opinion won't ever trigger. */
1589 extern void breakpoint_retire_moribund (void);
1590
1591 /* Set break condition of breakpoint B to EXP. */
1592 extern void set_breakpoint_condition (struct breakpoint *b, const char *exp,
1593 int from_tty);
1594
1595 /* Checks if we are catching syscalls or not.
1596 Returns 0 if not, greater than 0 if we are. */
1597 extern int catch_syscall_enabled (void);
1598
1599 /* Checks if we are catching syscalls with the specific
1600 syscall_number. Used for "filtering" the catchpoints.
1601 Returns 0 if not, greater than 0 if we are. */
1602 extern int catching_syscall_number (int syscall_number);
1603
1604 /* Return a tracepoint with the given number if found. */
1605 extern struct tracepoint *get_tracepoint (int num);
1606
1607 extern struct tracepoint *get_tracepoint_by_number_on_target (int num);
1608
1609 /* Find a tracepoint by parsing a number in the supplied string. */
1610 extern struct tracepoint *
1611 get_tracepoint_by_number (const char **arg,
1612 number_or_range_parser *parser);
1613
1614 /* Return a vector of all tracepoints currently defined. */
1615 extern std::vector<breakpoint *> all_tracepoints (void);
1616
1617 extern int is_tracepoint (const struct breakpoint *b);
1618
1619 /* Return a vector of all static tracepoints defined at ADDR. */
1620 extern std::vector<breakpoint *> static_tracepoints_here (CORE_ADDR addr);
1621
1622 /* Create an instance of this to start registering breakpoint numbers
1623 for a later "commands" command. */
1624
1625 class scoped_rbreak_breakpoints
1626 {
1627 public:
1628
1629 scoped_rbreak_breakpoints ();
1630 ~scoped_rbreak_breakpoints ();
1631
1632 DISABLE_COPY_AND_ASSIGN (scoped_rbreak_breakpoints);
1633 };
1634
1635 /* Breakpoint iterator function.
1636
1637 Calls a callback function once for each breakpoint, so long as the
1638 callback function returns false. If the callback function returns
1639 true, the iteration will end and the current breakpoint will be
1640 returned. This can be useful for implementing a search for a
1641 breakpoint with arbitrary attributes, or for applying an operation
1642 to every breakpoint. */
1643 extern struct breakpoint *iterate_over_breakpoints (int (*) (struct breakpoint *,
1644 void *), void *);
1645
1646 /* Nonzero if the specified PC cannot be a location where functions
1647 have been inlined. */
1648
1649 extern int pc_at_non_inline_function (const address_space *aspace,
1650 CORE_ADDR pc,
1651 const struct target_waitstatus *ws);
1652
1653 extern int user_breakpoint_p (struct breakpoint *);
1654
1655 /* Return true if this breakpoint is pending, false if not. */
1656 extern int pending_breakpoint_p (struct breakpoint *);
1657
1658 /* Attempt to determine architecture of location identified by SAL. */
1659 extern struct gdbarch *get_sal_arch (struct symtab_and_line sal);
1660
1661 extern void breakpoint_free_objfile (struct objfile *objfile);
1662
1663 extern const char *ep_parse_optional_if_clause (const char **arg);
1664
1665 /* Print the "Thread ID hit" part of "Thread ID hit Breakpoint N" to
1666 UIOUT iff debugging multiple threads. */
1667 extern void maybe_print_thread_hit_breakpoint (struct ui_out *uiout);
1668
1669 /* Print the specified breakpoint. */
1670 extern void print_breakpoint (breakpoint *bp);
1671
1672 /* Command element for the 'commands' command. */
1673 extern cmd_list_element *commands_cmd_element;
1674
1675 #endif /* !defined (BREAKPOINT_H) */
This page took 0.062383 seconds and 5 git commands to generate.