1999-04-16 01:35:26 +00:00
|
|
|
/* Data structures associated with tracepoints in GDB.
|
2009-01-03 05:58:08 +00:00
|
|
|
Copyright (C) 1997, 1998, 1999, 2000, 2007, 2008, 2009
|
2008-01-01 22:53:26 +00:00
|
|
|
Free Software Foundation, Inc.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
1999-07-07 20:19:36 +00:00
|
|
|
This file is part of GDB.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
1999-07-07 20:19:36 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 18:08:50 +00:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-07-07 20:19:36 +00:00
|
|
|
(at your option) any later version.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
1999-07-07 20:19:36 +00:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
1999-07-07 20:19:36 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 18:08:50 +00:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
#if !defined (TRACEPOINT_H)
|
|
|
|
#define TRACEPOINT_H 1
|
|
|
|
|
|
|
|
/* The data structure for an action: */
|
1999-07-07 20:19:36 +00:00
|
|
|
struct action_line
|
|
|
|
{
|
|
|
|
struct action_line *next;
|
|
|
|
char *action;
|
|
|
|
};
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
/* The data structure for a tracepoint: */
|
|
|
|
|
|
|
|
struct tracepoint
|
1999-07-07 20:19:36 +00:00
|
|
|
{
|
|
|
|
struct tracepoint *next;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2001-08-02 11:58:29 +00:00
|
|
|
int enabled_p;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
#if 0
|
2005-01-14 03:59:19 +00:00
|
|
|
/* Type of tracepoint. (MVS FIXME: needed?) */
|
1999-07-07 20:19:36 +00:00
|
|
|
enum tptype type;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* What to do with this tracepoint after we hit it
|
|
|
|
MVS FIXME: needed?). */
|
1999-07-07 20:19:36 +00:00
|
|
|
enum tpdisp disposition;
|
1999-04-16 01:35:26 +00:00
|
|
|
#endif
|
1999-07-07 20:19:36 +00:00
|
|
|
/* Number assigned to distinguish tracepoints. */
|
|
|
|
int number;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* Address to trace at, or NULL if not an instruction tracepoint.
|
|
|
|
(MVS ?) */
|
1999-07-07 20:19:36 +00:00
|
|
|
CORE_ADDR address;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* Line number of this address.
|
|
|
|
Only matters if address is non-NULL. */
|
1999-07-07 20:19:36 +00:00
|
|
|
int line_number;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* Source file name of this address.
|
|
|
|
Only matters if address is non-NULL. */
|
1999-07-07 20:19:36 +00:00
|
|
|
char *source_file;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
1999-07-07 20:19:36 +00:00
|
|
|
/* Number of times this tracepoint should single-step
|
2005-01-14 03:59:19 +00:00
|
|
|
and collect additional data. */
|
1999-07-07 20:19:36 +00:00
|
|
|
long step_count;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* Number of times this tracepoint should be hit before
|
|
|
|
disabling/ending. */
|
1999-07-07 20:19:36 +00:00
|
|
|
int pass_count;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* Chain of action lines to execute when this tracepoint is hit. */
|
1999-07-07 20:19:36 +00:00
|
|
|
struct action_line *actions;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
1999-07-07 20:19:36 +00:00
|
|
|
/* Conditional (MVS ?). */
|
|
|
|
struct expression *cond;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* String we used to set the tracepoint (malloc'd).
|
|
|
|
Only matters if address is non-NULL. */
|
1999-07-07 20:19:36 +00:00
|
|
|
char *addr_string;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
1999-07-07 20:19:36 +00:00
|
|
|
/* Language we used to set the tracepoint. */
|
|
|
|
enum language language;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
1999-07-07 20:19:36 +00:00
|
|
|
/* Input radix we used to set the tracepoint. */
|
|
|
|
int input_radix;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
1999-07-07 20:19:36 +00:00
|
|
|
/* Count of the number of times this tracepoint was taken, dumped
|
|
|
|
with the info, but not used for anything else. Useful for
|
|
|
|
seeing how many times you hit a tracepoint prior to the program
|
|
|
|
aborting, so you can back up to just before the abort. */
|
|
|
|
int hit_count;
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* Thread number for thread-specific tracepoint,
|
|
|
|
or -1 if don't care. */
|
1999-07-07 20:19:36 +00:00
|
|
|
int thread;
|
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* BFD section, in case of overlays: no, I don't know if
|
|
|
|
tracepoints are really gonna work with overlays. */
|
* breakpoint.h (struct bp_location): Change type of section
member to "struct obj_section *".
* tracepoint.h (struct tracepoint): Likewise.
* symtab.h (struct general_symbol_info): Replace bfd_section
member with obj_section.
(struct symtab_and_line): Change type of section member to
"struct obj_section *".
(SYMBOL_BFD_SECTION): Remove macro, replace by ...
(SYMBOL_OBJ_SECTION): ... this.
* minsym.c (prim_record_minimal_symbol_and_info): Record symbol
section as obj_section instead of bfd_section.
* ada-lang.c (ada_decode_symbol): Use gsymbol->obj_section
directly instead of looking of obj_section from bfd_section.
* objfiles.h (find_pc_sect_section): Remove.
* objfiles.c (find_pc_sect_section): Remove.
(find_pc_section): Inline find_pc_sect_section code.
* symfile.h (find_pc_overlay): Return struct obj_section *.
(find_pc_mapped_section): Likewise.
(section_is_overlay, section_is_mapped): Change type of section
argument to struct obj_section *.
(pc_in_mapped_range, pc_in_unmapped_range): Likewise.
(overlay_mapped_address, overlay_unmapped_address): Likewise.
(symbol_overlayed_address): Likewise.
* symtab.h (symbol_overlayed_address): Likewise.
* symfile.c (overlay_is_mapped): Remove.
(section_is_mapped): Inline overlay_is_mapped code. Update.
(overlay_invalidate_all): Update.
(section_is_overlay): Change section argument to type
"struct obj_section *". Use bfd_ methods.
(pc_in_unmapped_range): Likewise. Handle relocated sections.
(pc_in_mapped_range): Likewise. Handle relocated sections.
(sections_overlap): Likewise.
(overlay_unmapped_address): Likewise.
(overlay_mapped_address): Likewise.
(symbol_overlayed_address): Likewise.
(find_pc_overlay): Return struct obj_section *.
(find_pc_mapped_section): Likewise.
(list_overlays_command): Update.
(map_overlay_command, unmap_overlay_command): Update.
(simple_overlay_update): Update.
* block.h (blockvector_for_pc_sect): Change section argument
to type "struct obj_section *".
(block_for_pc_sect): Likewise.
* block.c (blockvector_for_pc_sect): Change section argument
to type "struct obj_section *".
(block_for_pc_sect): Likewise.
* symtab.h (find_pc_sect_function, find_pc_sect_psymtab,
find_pc_sect_symtab, find_pc_sect_psymbol, find_pc_sect_line,
lookup_minimal_symbol_by_pc_section, find_function_start_pc): Likewise.
(matching_bfd_sections): Rename to ...
(matching_obj_sections): ... this. Update argument types.
* blockframe.c (find_pc_sect_function): Likewise.
* breakpoint.c (describe_other_breakpoints): Likewise.
(breakpoint_has_pc, check_duplicates_for): Likewise.
* minsyms.c (lookup_minimal_symbol_by_pc_section_1): Likewise.
(lookup_minimal_symbol_by_pc_section): Likewise.
* symtab.c (find_pc_sect_psymtab_closer): Likewise.
(find_pc_sect_psymtab, find_pc_sect_psymbol, find_pc_sect_symtab,
find_pc_sect_line, find_function_start_pc): Likewise.
(matching_bfd_sections): Rename to ...
(matching_obj_sections): ... this. Update argument types.
* blockframe.c (find_pc_partial_function): Update to section
type changes. No longer call find_pc_sect_section.
(cache_pc_function_section): Change to type "struct obj_section *".
* breakpoint.c (resolve_sal_pc): Update to section type changes.
* exec.c (xfer_memory): Likewise.
* findvar.c (read_var_value): Likewise.
* infcmd.c (jump_command): Likewise.
* linespec.c (minsym_found): Likewise.
* maint.c (maintenance_translate_address): Likewise.
* minsyms.c (lookup_minimal_symbol_by_pc_section_1): Likewise.
(lookup_solib_trampoline_symbol_by_pc): Likewise.
* parse.c (write_exp_msymbol): Likewise.
* printcmd.c (build_address_symbolic): Likewise.
(address_info, sym_info): Likewise.
* symmisc.c (dump_msymbols, print_symbol): Likewise.
* symtab.c (fixup_section): Likewise.
(fixup_symbol_section, fixup_psymbol_section): Likewise.
(find_pc_line, find_function_start_sal): Likewise.
* target.c (memory_xfer_partial): Likewise.
* hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline): Likewise.
* spu-tdep.c (spu_overlay_update): Likewise.
2008-09-05 11:37:18 +00:00
|
|
|
struct obj_section *section;
|
1999-07-07 20:19:36 +00:00
|
|
|
};
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
enum actionline_type
|
1999-07-07 20:19:36 +00:00
|
|
|
{
|
|
|
|
BADLINE = -1,
|
|
|
|
GENERIC = 0,
|
|
|
|
END = 1,
|
|
|
|
STEPPING = 2
|
|
|
|
};
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* The tracepoint chain of all tracepoints. */
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
extern struct tracepoint *tracepoint_chain;
|
|
|
|
|
|
|
|
extern unsigned long trace_running_p;
|
|
|
|
|
2005-01-14 03:59:19 +00:00
|
|
|
/* A hook used to notify the UI of tracepoint operations. */
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2004-04-21 Andrew Cagney <cagney@redhat.com>
* annotate.h (deprecated_annotate_starting_hook)
(deprecated_annotate_stopped_hook)
(deprecated_annotate_exited_hook)
(deprecated_annotate_signal_hook)
(deprecated_annotate_signalled_hook): Deprecate.
* tracepoint.h (deprecated_create_tracepoint_hook)
(deprecated_delete_tracepoint_hook)
(deprecated_modify_tracepoint_hook)
(deprecated_trace_find_hook)
(deprecated_trace_start_stop_hook): Deprecate.
* target.h (deprecated_target_new_objfile_hook): Deprecate.
* remote.h (deprecated_target_resume_hook)
(deprecated_target_wait_loop_hook): Deprecate.
* gdbcore.h (deprecated_exec_file_display_hook)
(deprecated_file_changed_hook): Deprecate.
* frame.h (deprecated_selected_frame_level_changed_hook): Deprecate.
* defs.h (deprecated_modify_breakpoint_hook)
(deprecated_command_loop_hook, deprecated_show_load_progress)
(deprecated_print_frame_info_listing_hook)
(deprecated_query_hook, deprecated_warning_hook)
(deprecated_flush_hook, deprecated_create_breakpoint_hook)
(deprecated_delete_breakpoint_hook)
(deprecated_interactive_hook, deprecated_registers_changed_hook)
(deprecated_readline_begin_hook, deprecated_readline_hook)
(deprecated_readline_end_hook, deprecated_register_changed_hook)
(deprecated_memory_changed_hook, deprecated_init_ui_hook)
(deprecated_context_hook, deprecated_target_wait_hook)
(deprecated_attach_hook, deprecated_detach_hook)
(deprecated_call_command_hook, deprecated_set_hook)
(deprecated_error_hook, deprecated_error_begin_hook)
(deprecated_ui_load_progress_hook): Deprecate.
* valops.c, uw-thread.c, utils.c, tui/tui-io.c: Update.
* tui/tui-hooks.c, tracepoint.c, top.c, thread-db.c: Update.
* target.c, symfile.c, stack.c, sol-thread.c, rs6000-nat.c: Update.
* remote.c, remote-mips.c, regcache.c, mi/mi-interp.c: Update.
* main.c, interps.c, infcmd.c, hpux-thread.c, frame.c: Update.
* exec.c, dsrec.c, d10v-tdep.c, corefile.c, complaints.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, breakpoint.c: Update.
* annotate.c, aix-thread.c: Update.
2004-04-21 23:52:21 +00:00
|
|
|
void (*deprecated_create_tracepoint_hook) (struct tracepoint *);
|
|
|
|
void (*deprecated_delete_tracepoint_hook) (struct tracepoint *);
|
|
|
|
void (*deprecated_modify_tracepoint_hook) (struct tracepoint *);
|
|
|
|
void (*deprecated_trace_find_hook) (char *arg, int from_tty);
|
|
|
|
void (*deprecated_trace_start_stop_hook) (int start, int from_tty);
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2000-05-28 01:12:42 +00:00
|
|
|
struct tracepoint *get_tracepoint_by_number (char **, int, int);
|
|
|
|
int get_traceframe_number (void);
|
|
|
|
void free_actions (struct tracepoint *);
|
|
|
|
enum actionline_type validate_actionline (char **, struct tracepoint *);
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Walk the following statement or block through all tracepoints.
|
2005-01-14 03:59:19 +00:00
|
|
|
ALL_TRACEPOINTS_SAFE does so even if the statment deletes the
|
|
|
|
current breakpoint. */
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
#define ALL_TRACEPOINTS(t) for (t = tracepoint_chain; t; t = t->next)
|
|
|
|
|
|
|
|
#define ALL_TRACEPOINTS_SAFE(t,tmp) \
|
|
|
|
for (t = tracepoint_chain; \
|
|
|
|
t ? (tmp = t->next, 1) : 0;\
|
|
|
|
t = tmp)
|
2005-01-14 03:59:19 +00:00
|
|
|
#endif /* TRACEPOINT_H */
|