1999-04-16 03:35:26 +02:00
|
|
|
/* Annotation routines for GDB.
|
2005-12-17 23:34:03 +01:00
|
|
|
Copyright (C) 1986, 1989, 1990, 1991, 1992, 1994, 1998, 1999, 2000
|
2001-03-06 09:22:02 +01:00
|
|
|
Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02: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
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02: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 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-12-17 23:34:03 +01:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
#include "symtab.h"
|
|
|
|
#include "gdbtypes.h"
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern void breakpoints_changed (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-11-02 05:44:47 +01:00
|
|
|
extern void annotate_ignore_count_change (void);
|
2000-05-28 03:12:42 +02:00
|
|
|
extern void annotate_breakpoint (int);
|
|
|
|
extern void annotate_catchpoint (int);
|
|
|
|
extern void annotate_watchpoint (int);
|
|
|
|
extern void annotate_starting (void);
|
|
|
|
extern void annotate_stopped (void);
|
|
|
|
extern void annotate_exited (int);
|
|
|
|
extern void annotate_signalled (void);
|
|
|
|
extern void annotate_signal_name (void);
|
|
|
|
extern void annotate_signal_name_end (void);
|
|
|
|
extern void annotate_signal_string (void);
|
|
|
|
extern void annotate_signal_string_end (void);
|
|
|
|
extern void annotate_signal (void);
|
|
|
|
|
|
|
|
extern void annotate_breakpoints_headers (void);
|
|
|
|
extern void annotate_field (int);
|
|
|
|
extern void annotate_breakpoints_table (void);
|
|
|
|
extern void annotate_record (void);
|
|
|
|
extern void annotate_breakpoints_table_end (void);
|
|
|
|
|
|
|
|
extern void annotate_frames_invalid (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
struct type;
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern void annotate_field_begin (struct type *);
|
|
|
|
extern void annotate_field_name_end (void);
|
|
|
|
extern void annotate_field_value (void);
|
|
|
|
extern void annotate_field_end (void);
|
|
|
|
|
|
|
|
extern void annotate_quit (void);
|
|
|
|
extern void annotate_error (void);
|
|
|
|
extern void annotate_error_begin (void);
|
|
|
|
|
|
|
|
extern void annotate_value_history_begin (int, struct type *);
|
|
|
|
extern void annotate_value_begin (struct type *);
|
|
|
|
extern void annotate_value_history_value (void);
|
|
|
|
extern void annotate_value_history_end (void);
|
|
|
|
extern void annotate_value_end (void);
|
|
|
|
|
|
|
|
extern void annotate_display_begin (void);
|
|
|
|
extern void annotate_display_number_end (void);
|
|
|
|
extern void annotate_display_format (void);
|
|
|
|
extern void annotate_display_expression (void);
|
|
|
|
extern void annotate_display_expression_end (void);
|
|
|
|
extern void annotate_display_value (void);
|
|
|
|
extern void annotate_display_end (void);
|
|
|
|
|
|
|
|
extern void annotate_arg_begin (void);
|
|
|
|
extern void annotate_arg_name_end (void);
|
|
|
|
extern void annotate_arg_value (struct type *);
|
|
|
|
extern void annotate_arg_end (void);
|
|
|
|
|
|
|
|
extern void annotate_source (char *, int, int, int, CORE_ADDR);
|
|
|
|
|
|
|
|
extern void annotate_frame_begin (int, CORE_ADDR);
|
|
|
|
extern void annotate_function_call (void);
|
|
|
|
extern void annotate_signal_handler_caller (void);
|
|
|
|
extern void annotate_frame_address (void);
|
|
|
|
extern void annotate_frame_address_end (void);
|
|
|
|
extern void annotate_frame_function_name (void);
|
|
|
|
extern void annotate_frame_args (void);
|
|
|
|
extern void annotate_frame_source_begin (void);
|
|
|
|
extern void annotate_frame_source_file (void);
|
|
|
|
extern void annotate_frame_source_file_end (void);
|
|
|
|
extern void annotate_frame_source_line (void);
|
|
|
|
extern void annotate_frame_source_end (void);
|
|
|
|
extern void annotate_frame_where (void);
|
|
|
|
extern void annotate_frame_end (void);
|
|
|
|
|
|
|
|
extern void annotate_array_section_begin (int, struct type *);
|
|
|
|
extern void annotate_elt_rep (unsigned int);
|
|
|
|
extern void annotate_elt_rep_end (void);
|
|
|
|
extern void annotate_elt (void);
|
|
|
|
extern void annotate_array_section_end (void);
|
1999-04-16 03:35:26 +02: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-22 01:52:21 +02:00
|
|
|
extern void (*deprecated_annotate_starting_hook) (void);
|
|
|
|
extern void (*deprecated_annotate_stopped_hook) (void);
|
|
|
|
extern void (*deprecated_annotate_signalled_hook) (void);
|
|
|
|
extern void (*deprecated_annotate_signal_hook) (void);
|
|
|
|
extern void (*deprecated_annotate_exited_hook) (void);
|