2008-10-18 03:43:47 +08:00
|
|
|
/* Reverse execution and reverse debugging.
|
|
|
|
|
2015-01-01 17:32:14 +08:00
|
|
|
Copyright (C) 2006-2015 Free Software Foundation, Inc.
|
2008-10-18 03:43:47 +08:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
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
|
2009-03-18 16:51:11 +08:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2008-10-18 03:43:47 +08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2009-03-18 16:51:11 +08:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2008-10-18 03:43:47 +08:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "target.h"
|
|
|
|
#include "top.h"
|
|
|
|
#include "cli/cli-cmds.h"
|
|
|
|
#include "cli/cli-decode.h"
|
2011-02-22 02:13:17 +08:00
|
|
|
#include "cli/cli-utils.h"
|
2008-10-18 03:43:47 +08:00
|
|
|
#include "inferior.h"
|
Add new infrun.h header.
Move infrun.c declarations out of inferior.h to a new infrun.h file.
Tested by building on:
i686-w64-mingw32, enable-targets=all
x86_64-linux, enable-targets=all
i586-pc-msdosdjgpp
And also grepped the whole tree for each symbol moved to find where
infrun.h might be necessary.
gdb/
2014-05-22 Pedro Alves <palves@redhat.com>
* inferior.h (debug_infrun, debug_displaced, stop_on_solib_events)
(sync_execution, sched_multi, step_stop_if_no_debug, non_stop)
(disable_randomization, enum exec_direction_kind)
(execution_direction, stop_registers, start_remote)
(clear_proceed_status, proceed, resume, user_visible_resume_ptid)
(wait_for_inferior, normal_stop, get_last_target_status)
(prepare_for_detach, fetch_inferior_event, init_wait_for_inferior)
(insert_step_resume_breakpoint_at_sal)
(follow_inferior_reset_breakpoints, stepping_past_instruction_at)
(set_step_info, print_stop_event, signal_stop_state)
(signal_print_state, signal_pass_state, signal_stop_update)
(signal_print_update, signal_pass_update)
(update_signals_program_target, clear_exit_convenience_vars)
(displaced_step_dump_bytes, update_observer_mode)
(signal_catch_update, gdb_signal_from_command): Move
declarations ...
* infrun.h: ... to this new file.
* amd64-tdep.c: Include infrun.h.
* annotate.c: Include infrun.h.
* arch-utils.c: Include infrun.h.
* arm-linux-tdep.c: Include infrun.h.
* arm-tdep.c: Include infrun.h.
* break-catch-sig.c: Include infrun.h.
* breakpoint.c: Include infrun.h.
* common/agent.c: Include infrun.h instead of inferior.h.
* corelow.c: Include infrun.h.
* event-top.c: Include infrun.h.
* go32-nat.c: Include infrun.h.
* i386-tdep.c: Include infrun.h.
* inf-loop.c: Include infrun.h.
* infcall.c: Include infrun.h.
* infcmd.c: Include infrun.h.
* infrun.c: Include infrun.h.
* linux-fork.c: Include infrun.h.
* linux-nat.c: Include infrun.h.
* linux-thread-db.c: Include infrun.h.
* monitor.c: Include infrun.h.
* nto-tdep.c: Include infrun.h.
* procfs.c: Include infrun.h.
* record-btrace.c: Include infrun.h.
* record-full.c: Include infrun.h.
* remote-m32r-sdi.c: Include infrun.h.
* remote-mips.c: Include infrun.h.
* remote-notif.c: Include infrun.h.
* remote-sim.c: Include infrun.h.
* remote.c: Include infrun.h.
* reverse.c: Include infrun.h.
* rs6000-tdep.c: Include infrun.h.
* s390-linux-tdep.c: Include infrun.h.
* solib-irix.c: Include infrun.h.
* solib-osf.c: Include infrun.h.
* solib-svr4.c: Include infrun.h.
* target.c: Include infrun.h.
* top.c: Include infrun.h.
* windows-nat.c: Include infrun.h.
* mi/mi-interp.c: Include infrun.h.
* mi/mi-main.c: Include infrun.h.
* python/py-threadevent.c: Include infrun.h.
2014-05-22 19:29:11 +08:00
|
|
|
#include "infrun.h"
|
2009-11-21 01:23:38 +08:00
|
|
|
#include "regcache.h"
|
2008-10-18 03:43:47 +08:00
|
|
|
|
|
|
|
/* User interface:
|
|
|
|
reverse-step, reverse-next etc. */
|
|
|
|
|
2008-10-18 09:12:49 +08:00
|
|
|
static void
|
|
|
|
exec_direction_default (void *notused)
|
2008-10-18 03:43:47 +08:00
|
|
|
{
|
|
|
|
/* Return execution direction to default state. */
|
|
|
|
execution_direction = EXEC_FORWARD;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* exec_reverse_once -- accepts an arbitrary gdb command (string),
|
|
|
|
and executes it with exec-direction set to 'reverse'.
|
|
|
|
|
|
|
|
Used to implement reverse-next etc. commands. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
exec_reverse_once (char *cmd, char *args, int from_tty)
|
|
|
|
{
|
|
|
|
char *reverse_command;
|
|
|
|
enum exec_direction_kind dir = execution_direction;
|
|
|
|
struct cleanup *old_chain;
|
|
|
|
|
|
|
|
if (dir == EXEC_REVERSE)
|
|
|
|
error (_("Already in reverse mode. Use '%s' or 'set exec-dir forward'."),
|
|
|
|
cmd);
|
|
|
|
|
|
|
|
if (!target_can_execute_reverse)
|
|
|
|
error (_("Target %s does not support this command."), target_shortname);
|
|
|
|
|
|
|
|
reverse_command = xstrprintf ("%s %s", cmd, args ? args : "");
|
|
|
|
old_chain = make_cleanup (exec_direction_default, NULL);
|
|
|
|
make_cleanup (xfree, reverse_command);
|
|
|
|
execution_direction = EXEC_REVERSE;
|
|
|
|
execute_command (reverse_command, from_tty);
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reverse_step (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
exec_reverse_once ("step", args, from_tty);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reverse_stepi (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
exec_reverse_once ("stepi", args, from_tty);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reverse_next (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
exec_reverse_once ("next", args, from_tty);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reverse_nexti (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
exec_reverse_once ("nexti", args, from_tty);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reverse_continue (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
exec_reverse_once ("continue", args, from_tty);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reverse_finish (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
exec_reverse_once ("finish", args, from_tty);
|
|
|
|
}
|
|
|
|
|
2009-11-21 01:23:38 +08:00
|
|
|
/* Data structures for a bookmark list. */
|
|
|
|
|
|
|
|
struct bookmark {
|
|
|
|
struct bookmark *next;
|
|
|
|
int number;
|
|
|
|
CORE_ADDR pc;
|
|
|
|
struct symtab_and_line sal;
|
|
|
|
gdb_byte *opaque_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct bookmark *bookmark_chain;
|
|
|
|
static int bookmark_count;
|
|
|
|
|
|
|
|
#define ALL_BOOKMARKS(B) for ((B) = bookmark_chain; (B); (B) = (B)->next)
|
|
|
|
|
|
|
|
#define ALL_BOOKMARKS_SAFE(B,TMP) \
|
|
|
|
for ((B) = bookmark_chain; \
|
|
|
|
(B) ? ((TMP) = (B)->next, 1) : 0; \
|
|
|
|
(B) = (TMP))
|
|
|
|
|
|
|
|
/* save_bookmark_command -- implement "bookmark" command.
|
|
|
|
Call target method to get a bookmark identifier.
|
|
|
|
Insert bookmark identifier into list.
|
|
|
|
|
|
|
|
Identifier will be a malloc string (gdb_byte *).
|
|
|
|
Up to us to free it as required. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
save_bookmark_command (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
/* Get target's idea of a bookmark. */
|
|
|
|
gdb_byte *bookmark_id = target_get_bookmark (args, from_tty);
|
|
|
|
struct bookmark *b, *b1;
|
|
|
|
struct gdbarch *gdbarch = get_regcache_arch (get_current_regcache ());
|
|
|
|
|
|
|
|
/* CR should not cause another identical bookmark. */
|
|
|
|
dont_repeat ();
|
|
|
|
|
|
|
|
if (bookmark_id == NULL)
|
|
|
|
error (_("target_get_bookmark failed."));
|
|
|
|
|
|
|
|
/* Set up a bookmark struct. */
|
Replace some xmalloc-family functions with XNEW-family ones
This patch is part of the make-gdb-buildable-in-C++ effort. The idea is
to change some calls to the xmalloc family of functions to calls to the
equivalents in the XNEW family. This avoids adding an explicit cast, so
it keeps the code a bit more readable. Some of them also map relatively
well to a C++ equivalent (XNEW (struct foo) -> new foo), so it will be
possible to do scripted replacements if needed.
I only changed calls that were obviously allocating memory for one or
multiple "objects". Allocation of variable sizes (such as strings or
buffer handling) will be for later (and won't use XNEW).
- xmalloc (sizeof (struct foo)) -> XNEW (struct foo)
- xmalloc (num * sizeof (struct foo)) -> XNEWVEC (struct foo, num)
- xcalloc (1, sizeof (struct foo)) -> XCNEW (struct foo)
- xcalloc (num, sizeof (struct foo)) -> XCNEWVEC (struct foo, num)
- xrealloc (p, num * sizeof (struct foo) -> XRESIZEVEC (struct foo, p, num)
- obstack_alloc (ob, sizeof (struct foo)) -> XOBNEW (ob, struct foo)
- obstack_alloc (ob, num * sizeof (struct foo)) -> XOBNEWVEC (ob, struct foo, num)
- alloca (sizeof (struct foo)) -> XALLOCA (struct foo)
- alloca (num * sizeof (struct foo)) -> XALLOCAVEC (struct foo, num)
Some instances of xmalloc followed by memset to zero the buffer were
replaced by XCNEW or XCNEWVEC.
I regtested on x86-64, Ubuntu 14.04, but the patch touches many
architecture-specific files. For those I'll have to rely on the
buildbot or people complaining that I broke their gdb.
gdb/ChangeLog:
* aarch64-linux-nat.c (aarch64_add_process): Likewise.
* aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
* ada-exp.y (write_ambiguous_var): Likewise.
* ada-lang.c (resolve_subexp): Likewise.
(user_select_syms): Likewise.
(assign_aggregate): Likewise.
(ada_evaluate_subexp): Likewise.
(cache_symbol): Likewise.
* addrmap.c (allocate_key): Likewise.
(addrmap_create_mutable): Likewise.
* aix-thread.c (sync_threadlists): Likewise.
* alpha-tdep.c (alpha_push_dummy_call): Likewise.
(alpha_gdbarch_init): Likewise.
* amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
* arm-linux-nat.c (arm_linux_add_process): Likewise.
* arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
* arm-tdep.c (push_stack_item): Likewise.
(arm_displaced_step_copy_insn): Likewise.
(arm_gdbarch_init): Likewise.
(_initialize_arm_tdep): Likewise.
* avr-tdep.c (push_stack_item): Likewise.
* ax-general.c (new_agent_expr): Likewise.
* block.c (block_initialize_namespace): Likewise.
* breakpoint.c (alloc_counted_command_line): Likewise.
(update_dprintf_command_list): Likewise.
(parse_breakpoint_sals): Likewise.
(decode_static_tracepoint_spec): Likewise.
(until_break_command): Likewise.
(clear_command): Likewise.
(update_global_location_list): Likewise.
(get_breakpoint_objfile_data) Likewise.
* btrace.c (ftrace_new_function): Likewise.
(btrace_set_insn_history): Likewise.
(btrace_set_call_history): Likewise.
* buildsym.c (add_symbol_to_list): Likewise.
(record_pending_block): Likewise.
(start_subfile): Likewise.
(start_buildsym_compunit): Likewise.
(push_subfile): Likewise.
(end_symtab_get_static_block): Likewise.
(buildsym_init): Likewise.
* cli/cli-cmds.c (source_command): Likewise.
* cli/cli-decode.c (add_cmd): Likewise.
* cli/cli-script.c (build_command_line): Likewise.
(setup_user_args): Likewise.
(realloc_body_list): Likewise.
(process_next_line): Likewise.
(copy_command_lines): Likewise.
* cli/cli-setshow.c (do_set_command): Likewise.
* coff-pe-read.c (read_pe_exported_syms): Likewise.
* coffread.c (coff_locate_sections): Likewise.
(coff_symtab_read): Likewise.
(coff_read_struct_type): Likewise.
* common/cleanups.c (make_my_cleanup2): Likewise.
* common/common-exceptions.c (throw_it): Likewise.
* common/filestuff.c (make_cleanup_close): Likewise.
* common/format.c (parse_format_string): Likewise.
* common/queue.h (DEFINE_QUEUE_P): Likewise.
* compile/compile-object-load.c (munmap_list_add): Likewise.
(compile_object_load): Likewise.
* compile/compile-object-run.c (compile_object_run): Likewise.
* compile/compile.c (append_args): Likewise.
* corefile.c (specify_exec_file_hook): Likewise.
* cp-support.c (make_symbol_overload_list): Likewise.
* cris-tdep.c (push_stack_item): Likewise.
(cris_gdbarch_init): Likewise.
* ctf.c (ctf_trace_file_writer_new): Likewise.
* dbxread.c (init_header_files): Likewise.
(add_new_header_file): Likewise.
(init_bincl_list): Likewise.
(dbx_end_psymtab): Likewise.
(start_psymtab): Likewise.
(dbx_end_psymtab): Likewise.
* dcache.c (dcache_init): Likewise.
* dictionary.c (dict_create_hashed): Likewise.
(dict_create_hashed_expandable): Likewise.
(dict_create_linear): Likewise.
(dict_create_linear_expandable): Likewise.
* dtrace-probe.c (dtrace_process_dof_probe): Likewise.
* dummy-frame.c (register_dummy_frame_dtor): Likewise.
* dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
* dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
(decode_frame_entry_1): Likewise.
* dwarf2expr.c (new_dwarf_expr_context): Likewise.
* dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
* dwarf2read.c (dwarf2_has_info): Likewise.
(create_signatured_type_table_from_index): Likewise.
(dwarf2_read_index): Likewise.
(dw2_get_file_names_reader): Likewise.
(create_all_type_units): Likewise.
(read_cutu_die_from_dwo): Likewise.
(init_tu_and_read_dwo_dies): Likewise.
(init_cutu_and_read_dies): Likewise.
(create_all_comp_units): Likewise.
(queue_comp_unit): Likewise.
(inherit_abstract_dies): Likewise.
(read_call_site_scope): Likewise.
(dwarf2_add_field): Likewise.
(dwarf2_add_typedef): Likewise.
(dwarf2_add_member_fn): Likewise.
(attr_to_dynamic_prop): Likewise.
(abbrev_table_alloc_abbrev): Likewise.
(abbrev_table_read_table): Likewise.
(add_include_dir): Likewise.
(add_file_name): Likewise.
(dwarf_decode_line_header): Likewise.
(dwarf2_const_value_attr): Likewise.
(dwarf_alloc_block): Likewise.
(parse_macro_definition): Likewise.
(set_die_type): Likewise.
(write_psymtabs_to_index): Likewise.
(create_cus_from_index): Likewise.
(dwarf2_create_include_psymtab): Likewise.
(process_psymtab_comp_unit_reader): Likewise.
(build_type_psymtab_dependencies): Likewise.
(read_comp_units_from_section): Likewise.
(compute_compunit_symtab_includes): Likewise.
(create_dwo_unit_in_dwp_v1): Likewise.
(create_dwo_unit_in_dwp_v2): Likewise.
(read_func_scope): Likewise.
(process_structure_scope): Likewise.
(mark_common_block_symbol_computed): Likewise.
(load_partial_dies): Likewise.
(dwarf2_symbol_mark_computed): Likewise.
* elfread.c (elf_symfile_segments): Likewise.
(elf_read_minimal_symbols): Likewise.
* environ.c (make_environ): Likewise.
* eval.c (evaluate_subexp_standard): Likewise.
* event-loop.c (create_file_handler): Likewise.
(create_async_signal_handler): Likewise.
(create_async_event_handler): Likewise.
(create_timer): Likewise.
* exec.c (build_section_table): Likewise.
* fbsd-nat.c (fbsd_remember_child): Likewise.
* fork-child.c (fork_inferior): Likewise.
* frv-tdep.c (new_variant): Likewise.
* gdbarch.sh (gdbarch_alloc): Likewise.
(append_name): Likewise.
* gdbtypes.c (rank_function): Likewise.
(copy_type_recursive): Likewise.
(add_dyn_prop): Likewise.
* gnu-nat.c (make_proc): Likewise.
(make_inf): Likewise.
(gnu_write_inferior): Likewise.
* gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
(build_std_type_info_type): Likewise.
* guile/scm-param.c (compute_enum_list): Likewise.
* guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
* guile/scm-value.c (gdbscm_value_call): Likewise.
* h8300-tdep.c (h8300_gdbarch_init): Likewise.
* hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
(read_unwind_info): Likewise.
* ia64-tdep.c (ia64_gdbarch_init): Likewise.
* infcall.c (dummy_frame_context_saver_setup): Likewise.
(call_function_by_hand_dummy): Likewise.
* infcmd.c (step_once): Likewise.
(finish_forward): Likewise.
(attach_command): Likewise.
(notice_new_inferior): Likewise.
* inferior.c (add_inferior_silent): Likewise.
* infrun.c (add_displaced_stepping_state): Likewise.
(save_infcall_control_state): Likewise.
(save_inferior_ptid): Likewise.
(_initialize_infrun): Likewise.
* jit.c (bfd_open_from_target_memory): Likewise.
(jit_gdbarch_data_init): Likewise.
* language.c (add_language): Likewise.
* linespec.c (decode_line_2): Likewise.
* linux-nat.c (add_to_pid_list): Likewise.
(add_initial_lwp): Likewise.
* linux-thread-db.c (add_thread_db_info): Likewise.
(record_thread): Likewise.
(info_auto_load_libthread_db): Likewise.
* m32c-tdep.c (m32c_gdbarch_init): Likewise.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
* m68k-tdep.c (m68k_gdbarch_init): Likewise.
* m88k-tdep.c (m88k_analyze_prologue): Likewise.
* macrocmd.c (macro_define_command): Likewise.
* macroexp.c (gather_arguments): Likewise.
* macroscope.c (sal_macro_scope): Likewise.
* macrotab.c (new_macro_table): Likewise.
* mdebugread.c (push_parse_stack): Likewise.
(parse_partial_symbols): Likewise.
(parse_symbol): Likewise.
(psymtab_to_symtab_1): Likewise.
(new_block): Likewise.
(new_psymtab): Likewise.
(mdebug_build_psymtabs): Likewise.
(add_pending): Likewise.
(elfmdebug_build_psymtabs): Likewise.
* mep-tdep.c (mep_gdbarch_init): Likewise.
* mi/mi-main.c (mi_execute_command): Likewise.
* mi/mi-parse.c (mi_parse_argv): Likewise.
* minidebug.c (lzma_open): Likewise.
* minsyms.c (terminate_minimal_symbol_table): Likewise.
* mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
* mips-tdep.c (mips_gdbarch_init): Likewise.
* mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
* msp430-tdep.c (msp430_gdbarch_init): Likewise.
* mt-tdep.c (mt_registers_info): Likewise.
* nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
* nat/linux-btrace.c (linux_enable_bts): Likewise.
(linux_enable_pt): Likewise.
* nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
(linux_xfer_osdata_processgroups): Likewise.
* nios2-tdep.c (nios2_gdbarch_init): Likewise.
* nto-procfs.c (procfs_meminfo): Likewise.
* objc-lang.c (start_msglist): Likewise.
(selectors_info): Likewise.
(classes_info): Likewise.
(find_methods): Likewise.
* objfiles.c (allocate_objfile): Likewise.
(update_section_map): Likewise.
* osabi.c (gdbarch_register_osabi): Likewise.
(gdbarch_register_osabi_sniffer): Likewise.
* parse.c (start_arglist): Likewise.
* ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
(hwdebug_insert_point): Likewise.
* printcmd.c (display_command): Likewise.
(ui_printf): Likewise.
* procfs.c (create_procinfo): Likewise.
(load_syscalls): Likewise.
(proc_get_LDT_entry): Likewise.
(proc_update_threads): Likewise.
* prologue-value.c (make_pv_area): Likewise.
(pv_area_store): Likewise.
* psymtab.c (extend_psymbol_list): Likewise.
(init_psymbol_list): Likewise.
(allocate_psymtab): Likewise.
* python/py-inferior.c (add_thread_object): Likewise.
* python/py-param.c (compute_enum_values): Likewise.
* python/py-value.c (valpy_call): Likewise.
* python/py-varobj.c (py_varobj_iter_next): Likewise.
* python/python.c (ensure_python_env): Likewise.
* record-btrace.c (record_btrace_start_replaying): Likewise.
* record-full.c (record_full_reg_alloc): Likewise.
(record_full_mem_alloc): Likewise.
(record_full_end_alloc): Likewise.
(record_full_core_xfer_partial): Likewise.
* regcache.c (get_thread_arch_aspace_regcache): Likewise.
* remote-fileio.c (remote_fileio_init_fd_map): Likewise.
* remote-notif.c (remote_notif_state_allocate): Likewise.
* remote.c (demand_private_info): Likewise.
(remote_notif_stop_alloc_reply): Likewise.
(remote_enable_btrace): Likewise.
* reverse.c (save_bookmark_command): Likewise.
* rl78-tdep.c (rl78_gdbarch_init): Likewise.
* rx-tdep.c (rx_gdbarch_init): Likewise.
* s390-linux-nat.c (s390_insert_watchpoint): Likewise.
* ser-go32.c (dos_get_tty_state): Likewise.
(dos_copy_tty_state): Likewise.
* ser-mingw.c (ser_windows_open): Likewise.
(ser_console_wait_handle): Likewise.
(ser_console_get_tty_state): Likewise.
(make_pipe_state): Likewise.
(net_windows_open): Likewise.
* ser-unix.c (hardwire_get_tty_state): Likewise.
(hardwire_copy_tty_state): Likewise.
* solib-aix.c (solib_aix_new_lm_info): Likewise.
* solib-dsbt.c (dsbt_current_sos): Likewise.
(dsbt_relocate_main_executable): Likewise.
* solib-frv.c (frv_current_sos): Likewise.
(frv_relocate_main_executable): Likewise.
* solib-spu.c (spu_bfd_fopen): Likewise.
* solib-svr4.c (lm_info_read): Likewise.
(svr4_copy_library_list): Likewise.
(svr4_default_sos): Likewise.
* source.c (find_source_lines): Likewise.
(line_info): Likewise.
(add_substitute_path_rule): Likewise.
* spu-linux-nat.c (spu_bfd_open): Likewise.
* spu-tdep.c (info_spu_dma_cmdlist): Likewise.
* stabsread.c (dbx_lookup_type): Likewise.
(read_type): Likewise.
(read_member_functions): Likewise.
(read_struct_fields): Likewise.
(read_baseclasses): Likewise.
(read_args): Likewise.
(_initialize_stabsread): Likewise.
* stack.c (func_command): Likewise.
* stap-probe.c (handle_stap_probe): Likewise.
* symfile.c (addrs_section_sort): Likewise.
(addr_info_make_relative): Likewise.
(load_section_callback): Likewise.
(add_symbol_file_command): Likewise.
(init_filename_language_table): Likewise.
* symtab.c (create_filename_seen_cache): Likewise.
(sort_search_symbols_remove_dups): Likewise.
(search_symbols): Likewise.
* target.c (make_cleanup_restore_target_terminal): Likewise.
* thread.c (new_thread): Likewise.
(enable_thread_stack_temporaries): Likewise.
(make_cleanup_restore_current_thread): Likewise.
(thread_apply_all_command): Likewise.
* tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
* top.c (gdb_readline_wrapper): Likewise.
* tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
* tracepoint.c (trace_find_line_command): Likewise.
(all_tracepoint_actions_and_cleanup): Likewise.
(make_cleanup_restore_current_traceframe): Likewise.
(get_uploaded_tp): Likewise.
(get_uploaded_tsv): Likewise.
* tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
(tui_alloc_win_info): Likewise.
(tui_alloc_content): Likewise.
(tui_add_content_elements): Likewise.
* tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
(tui_set_disassem_content): Likewise.
* ui-file.c (ui_file_new): Likewise.
(stdio_file_new): Likewise.
(tee_file_new): Likewise.
* utils.c (make_cleanup_restore_integer): Likewise.
(add_internal_problem_command): Likewise.
* v850-tdep.c (v850_gdbarch_init): Likewise.
* valops.c (find_oload_champ): Likewise.
* value.c (allocate_value_lazy): Likewise.
(record_latest_value): Likewise.
(create_internalvar): Likewise.
* varobj.c (install_variable): Likewise.
(new_variable): Likewise.
(new_root_variable): Likewise.
(cppush): Likewise.
(_initialize_varobj): Likewise.
* windows-nat.c (windows_make_so): Likewise.
* x86-nat.c (x86_add_process): Likewise.
* xcoffread.c (arrange_linetable): Likewise.
(allocate_include_entry): Likewise.
(process_linenos): Likewise.
(SYMBOL_DUP): Likewise.
(xcoff_start_psymtab): Likewise.
(xcoff_end_psymtab): Likewise.
* xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
* xtensa-tdep.c (xtensa_register_type): Likewise.
* gdbarch.c: Regenerate.
* gdbarch.h: Regenerate.
gdb/gdbserver/ChangeLog:
* ax.c (gdb_parse_agent_expr): Likewise.
(compile_bytecodes): Likewise.
* dll.c (loaded_dll): Likewise.
* event-loop.c (append_callback_event): Likewise.
(create_file_handler): Likewise.
(create_file_event): Likewise.
* hostio.c (handle_open): Likewise.
* inferiors.c (add_thread): Likewise.
(add_process): Likewise.
* linux-aarch64-low.c (aarch64_linux_new_process): Likewise.
* linux-arm-low.c (arm_new_process): Likewise.
(arm_new_thread): Likewise.
* linux-low.c (add_to_pid_list): Likewise.
(linux_add_process): Likewise.
(handle_extended_wait): Likewise.
(add_lwp): Likewise.
(enqueue_one_deferred_signal): Likewise.
(enqueue_pending_signal): Likewise.
(linux_resume_one_lwp_throw): Likewise.
(linux_resume_one_thread): Likewise.
(linux_read_memory): Likewise.
(linux_write_memory): Likewise.
* linux-mips-low.c (mips_linux_new_process): Likewise.
(mips_linux_new_thread): Likewise.
(mips_add_watchpoint): Likewise.
* linux-x86-low.c (initialize_low_arch): Likewise.
* lynx-low.c (lynx_add_process): Likewise.
* mem-break.c (set_raw_breakpoint_at): Likewise.
(set_breakpoint): Likewise.
(add_condition_to_breakpoint): Likewise.
(add_commands_to_breakpoint): Likewise.
(clone_agent_expr): Likewise.
(clone_one_breakpoint): Likewise.
* regcache.c (new_register_cache): Likewise.
* remote-utils.c (look_up_one_symbol): Likewise.
* server.c (queue_stop_reply): Likewise.
(start_inferior): Likewise.
(queue_stop_reply_callback): Likewise.
(handle_target_event): Likewise.
* spu-low.c (fetch_ppc_memory): Likewise.
(store_ppc_memory): Likewise.
* target.c (set_target_ops): Likewise.
* thread-db.c (thread_db_load_search): Likewise.
(try_thread_db_load_1): Likewise.
* tracepoint.c (add_tracepoint): Likewise.
(add_tracepoint_action): Likewise.
(create_trace_state_variable): Likewise.
(cmd_qtdpsrc): Likewise.
(cmd_qtro): Likewise.
(add_while_stepping_state): Likewise.
* win32-low.c (child_add_thread): Likewise.
(get_image_name): Likewise.
2015-08-27 05:16:07 +08:00
|
|
|
b = XCNEW (struct bookmark);
|
2009-11-21 01:23:38 +08:00
|
|
|
b->number = ++bookmark_count;
|
|
|
|
init_sal (&b->sal);
|
|
|
|
b->pc = regcache_read_pc (get_current_regcache ());
|
|
|
|
b->sal = find_pc_line (b->pc, 0);
|
|
|
|
b->sal.pspace = get_frame_program_space (get_current_frame ());
|
|
|
|
b->opaque_data = bookmark_id;
|
|
|
|
b->next = NULL;
|
|
|
|
|
|
|
|
/* Add this bookmark to the end of the chain, so that a list
|
|
|
|
of bookmarks will come out in order of increasing numbers. */
|
|
|
|
|
|
|
|
b1 = bookmark_chain;
|
|
|
|
if (b1 == 0)
|
|
|
|
bookmark_chain = b;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (b1->next)
|
|
|
|
b1 = b1->next;
|
|
|
|
b1->next = b;
|
|
|
|
}
|
|
|
|
printf_filtered (_("Saved bookmark %d at %s\n"), b->number,
|
|
|
|
paddress (gdbarch, b->sal.pc));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement "delete bookmark" command. */
|
|
|
|
|
|
|
|
static int
|
2011-02-20 03:10:48 +08:00
|
|
|
delete_one_bookmark (int num)
|
2009-11-21 01:23:38 +08:00
|
|
|
{
|
2011-02-20 03:10:48 +08:00
|
|
|
struct bookmark *b1, *b;
|
|
|
|
|
|
|
|
/* Find bookmark with corresponding number. */
|
|
|
|
ALL_BOOKMARKS (b)
|
|
|
|
if (b->number == num)
|
|
|
|
break;
|
2009-11-21 01:23:38 +08:00
|
|
|
|
|
|
|
/* Special case, first item in list. */
|
|
|
|
if (b == bookmark_chain)
|
|
|
|
bookmark_chain = b->next;
|
|
|
|
|
2011-07-05 12:35:00 +08:00
|
|
|
/* Find bookmark preceding "marked" one, so we can unlink. */
|
2009-11-21 01:23:38 +08:00
|
|
|
if (b)
|
|
|
|
{
|
|
|
|
ALL_BOOKMARKS (b1)
|
|
|
|
if (b1->next == b)
|
|
|
|
{
|
|
|
|
/* Found designated bookmark. Unlink and delete. */
|
|
|
|
b1->next = b->next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
xfree (b->opaque_data);
|
|
|
|
xfree (b);
|
|
|
|
return 1; /* success */
|
|
|
|
}
|
|
|
|
return 0; /* failure */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
delete_all_bookmarks (void)
|
|
|
|
{
|
|
|
|
struct bookmark *b, *b1;
|
|
|
|
|
|
|
|
ALL_BOOKMARKS_SAFE (b, b1)
|
|
|
|
{
|
|
|
|
xfree (b->opaque_data);
|
|
|
|
xfree (b);
|
|
|
|
}
|
|
|
|
bookmark_chain = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
delete_bookmark_command (char *args, int from_tty)
|
|
|
|
{
|
2011-02-20 03:10:48 +08:00
|
|
|
int num;
|
2011-03-11 02:33:59 +08:00
|
|
|
struct get_number_or_range_state state;
|
2009-11-21 01:23:38 +08:00
|
|
|
|
|
|
|
if (bookmark_chain == NULL)
|
|
|
|
{
|
|
|
|
warning (_("No bookmarks."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args == NULL || args[0] == '\0')
|
|
|
|
{
|
|
|
|
if (from_tty && !query (_("Delete all bookmarks? ")))
|
|
|
|
return;
|
|
|
|
delete_all_bookmarks ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-11 02:33:59 +08:00
|
|
|
init_number_or_range (&state, args);
|
|
|
|
while (!state.finished)
|
2011-02-20 03:10:48 +08:00
|
|
|
{
|
2011-03-11 02:33:59 +08:00
|
|
|
num = get_number_or_range (&state);
|
2011-02-20 03:10:48 +08:00
|
|
|
if (!delete_one_bookmark (num))
|
|
|
|
/* Not found. */
|
|
|
|
warning (_("No bookmark #%d."), num);
|
|
|
|
}
|
2009-11-21 01:23:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement "goto-bookmark" command. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
goto_bookmark_command (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
struct bookmark *b;
|
|
|
|
unsigned long num;
|
2014-02-22 14:42:12 +08:00
|
|
|
char *p = args;
|
2009-11-21 01:23:38 +08:00
|
|
|
|
|
|
|
if (args == NULL || args[0] == '\0')
|
|
|
|
error (_("Command requires an argument."));
|
|
|
|
|
2015-03-06 17:42:06 +08:00
|
|
|
if (startswith (args, "start")
|
|
|
|
|| startswith (args, "begin")
|
|
|
|
|| startswith (args, "end"))
|
2009-11-21 01:23:38 +08:00
|
|
|
{
|
|
|
|
/* Special case. Give target opportunity to handle. */
|
2013-04-19 23:32:56 +08:00
|
|
|
target_goto_bookmark ((gdb_byte *) args, from_tty);
|
2009-11-21 01:23:38 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args[0] == '\'' || args[0] == '\"')
|
|
|
|
{
|
|
|
|
/* Special case -- quoted string. Pass on to target. */
|
|
|
|
if (args[strlen (args) - 1] != args[0])
|
|
|
|
error (_("Unbalanced quotes: %s"), args);
|
2013-04-19 23:32:56 +08:00
|
|
|
target_goto_bookmark ((gdb_byte *) args, from_tty);
|
2009-11-21 01:23:38 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* General case. Bookmark identified by bookmark number. */
|
2011-02-20 03:10:48 +08:00
|
|
|
num = get_number (&args);
|
2014-02-22 14:42:12 +08:00
|
|
|
|
|
|
|
if (num == 0)
|
|
|
|
error (_("goto-bookmark: invalid bookmark number '%s'."), p);
|
|
|
|
|
2009-11-21 01:23:38 +08:00
|
|
|
ALL_BOOKMARKS (b)
|
|
|
|
if (b->number == num)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (b)
|
|
|
|
{
|
|
|
|
/* Found. Send to target method. */
|
|
|
|
target_goto_bookmark (b->opaque_data, from_tty);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Not found. */
|
2014-02-22 14:42:12 +08:00
|
|
|
error (_("goto-bookmark: no bookmark found for '%s'."), p);
|
2009-11-21 01:23:38 +08:00
|
|
|
}
|
|
|
|
|
2011-02-20 03:10:48 +08:00
|
|
|
static int
|
|
|
|
bookmark_1 (int bnum)
|
|
|
|
{
|
|
|
|
struct gdbarch *gdbarch = get_regcache_arch (get_current_regcache ());
|
|
|
|
struct bookmark *b;
|
|
|
|
int matched = 0;
|
|
|
|
|
|
|
|
ALL_BOOKMARKS (b)
|
|
|
|
{
|
|
|
|
if (bnum == -1 || bnum == b->number)
|
|
|
|
{
|
|
|
|
printf_filtered (" %d %s '%s'\n",
|
|
|
|
b->number,
|
|
|
|
paddress (gdbarch, b->pc),
|
|
|
|
b->opaque_data);
|
|
|
|
matched++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bnum > 0 && matched == 0)
|
|
|
|
printf_filtered ("No bookmark #%d\n", bnum);
|
|
|
|
|
|
|
|
return matched;
|
|
|
|
}
|
|
|
|
|
2009-11-21 01:23:38 +08:00
|
|
|
/* Implement "info bookmarks" command. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
bookmarks_info (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
int bnum = -1;
|
|
|
|
|
|
|
|
if (!bookmark_chain)
|
2011-02-20 03:10:48 +08:00
|
|
|
printf_filtered (_("No bookmarks.\n"));
|
|
|
|
else if (args == NULL || *args == '\0')
|
|
|
|
bookmark_1 (-1);
|
|
|
|
else
|
2011-03-11 02:33:59 +08:00
|
|
|
{
|
|
|
|
struct get_number_or_range_state state;
|
|
|
|
|
|
|
|
init_number_or_range (&state, args);
|
|
|
|
while (!state.finished)
|
|
|
|
{
|
|
|
|
bnum = get_number_or_range (&state);
|
|
|
|
bookmark_1 (bnum);
|
|
|
|
}
|
|
|
|
}
|
2009-11-21 01:23:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-21 Pedro Alves <pedro@codesorcery.com>
Silence a few -Wmissing-prototypes warnings.
PR build/9877:
* amd64-nat.c: Include "amd64-nat.h".
* fork-child.c (_initialize_fork_child): Ditto.
* gcore.c (_initialize_gcore): Ditto.
* inf-ptrace.c: Include "inf-ptrace.h".
(inf_ptrace_store_registers): Make it static.
* linux-nat.c (linux_nat_terminal_ours): Make it static.
(_initialize_linux_nat): Declare before definition.
* linux-tdep.c: Include "linux-tdep.h".
* linux-thread-db.c (_initialize_thread_db): Declare before
definition.
* proc-service.c (_initialize_proc_service): Ditto.
* remote.c (remote_send_printf): Make it static.
* solib.c: Include "solib.h".
* symfile-mem.c (_initialize_symfile_mem): Declare before
definition.
* ada-lang.c (ada_la_decode, ada_match_name)
(ada_suppress_symbol_printing, ada_is_array_type)
(ada_value_ptr_subscript, ada_array_length)
(ada_to_static_fixed_value): Make them static.
(_initialize_ada_language): Declare before definition.
* ada-tasks.c (ada_get_task_number, ada_get_environment_task)
(ada_task_list_changed, ada_new_objfile_observer): Make them
static.
(_initialize_tasks): Declare before definition.
* addrmap.c (_initialize_addrmap): Declare before definition.
* auxv.c (default_auxv_parse): Make it static.
* bfd-target.c (target_bfd_xfer_partial, target_bfd_xclose): Make
them static.
* breakpoint.c (remove_sal): Add line break.
(expand_line_sal_maybe): Make it static.
* cp-name-parser.y: Include "cp-support.h".
* cp-valprint.c (cp_find_class_member): Make it static.
* eval.c (value_f90_subarray): Ditto.
* exceptions.c (print_any_exception): Ditto.
* findcmd.c (_initialize_mem_search): Declare before definition.
* frame.c (frame_observer_target_changed): Make it static.
* gnu-v3-abi.c (gnuv3_find_method_in): Make it static.
* inf-child.c: Include "inf-child.h".
* inferior.h (valid_inferior_id): Rename to ...
(valid_gdb_inferior_id): ... this.
* infrun.c (infrun_thread_stop_requested, siginfo_make_value):
Make them static.
* jv-lang.c (java_language_arch_info): Make it static.
* m2-typeprint.c (m2_get_discrete_bounds): Ditto.
* osdata.c (info_osdata_command): Make it static.
* regcache.c (regcache_observer_target_changed): Make it static.
* reverse.c (_initialize_reverse): Declare before definition.
* stabsread.c (cleanup_undefined_types_noname)
(cleanup_undefined_types_1): Make them static.
* symfile.c (place_section): Make it static.
* symtab.c (find_pc_sect_psymtab_closer): Make it static.
* target-descriptions.c (_initialize_target_descriptions): Declare
before definition.
* target.c (default_get_ada_task_ptid, find_default_can_async_p)
(find_default_is_async_p, find_default_supports_non_stop): Make
them static.
(target_supports_non_stop): Add prototype.
(dummy_pid_to_str): Make it static.
* utils.c (_initialize_utils): Declare before definition.
* ada-exp.y (_initialize_ada_exp): Declare before definition.
* solib-svr4.c (HAS_LM_DYNAMIC_FROM_LINK_MAP): Add a prototype.
* target.h (struct target_ops): Add a prototype to the
to_can_execute_reverse callback.
* macroscope.c (_initialize_macroscope): Declare before definition.
* cp-namespace.c (_initialize_cp_namespace): Declare before definition.
* python/python.c (_initialize_python): Declare before definition.
* tui/tui-command.c: Include "tui/tui-command.h".
* tui/tui-data.c (init_content_element, init_win_info): Make them
static.
* tui/tui-disasm.c: Include "tui/tui-disasm.h".
* tui/tui-interp.c (_initialize_tui_interp): Declare before
definition.
* tui/tui-layout.c: Include "tui/tui-layout.h".
(_initialize_tui_layout): Declare before definition.
* tui/tui-regs.c: Include "tui/tui-regs.h".
(tui_display_reg_element_at_line): Make it static.
(_initialize_tui_regs): Declare before definition.
* tui/tui-stack.c (_initialize_tui_stack): Declare before
definition.
* tui/tui-win.c: Include "tui/tui-win.h".
(_initialize_tui_win): Declare before definition.
(tui_sigwinch_handler): Make it static. Wrap in ifdef SIGWINCH.
* tui/tui-win.h (tui_sigwinch_handler): Delete declaration.
(tui_get_cmd_list): Add a prototype.
* tui/tui-windata.c: Include tui-windata.h.
* tui/tui-wingeneral.c (box_win): Make it static.
* cli/cli-logging.c (show_logging_command): Make it static.
(_initialize_cli_logging): Declare before definition.
* mi/mi-common.c (_initialize_gdb_mi_common): Declare before
definition.
2009-02-22 00:14:50 +08:00
|
|
|
/* Provide a prototype to silence -Wmissing-prototypes. */
|
|
|
|
extern initialize_file_ftype _initialize_reverse;
|
|
|
|
|
2008-10-18 03:43:47 +08:00
|
|
|
void
|
|
|
|
_initialize_reverse (void)
|
|
|
|
{
|
|
|
|
add_com ("reverse-step", class_run, reverse_step, _("\
|
|
|
|
Step program backward until it reaches the beginning of another source line.\n\
|
|
|
|
Argument N means do this N times (or till program stops for another reason).")
|
|
|
|
);
|
|
|
|
add_com_alias ("rs", "reverse-step", class_alias, 1);
|
|
|
|
|
|
|
|
add_com ("reverse-next", class_run, reverse_next, _("\
|
|
|
|
Step program backward, proceeding through subroutine calls.\n\
|
|
|
|
Like the \"reverse-step\" command as long as subroutine calls do not happen;\n\
|
|
|
|
when they do, the call is treated as one instruction.\n\
|
|
|
|
Argument N means do this N times (or till program stops for another reason).")
|
|
|
|
);
|
|
|
|
add_com_alias ("rn", "reverse-next", class_alias, 1);
|
|
|
|
|
|
|
|
add_com ("reverse-stepi", class_run, reverse_stepi, _("\
|
|
|
|
Step backward exactly one instruction.\n\
|
|
|
|
Argument N means do this N times (or till program stops for another reason).")
|
|
|
|
);
|
|
|
|
add_com_alias ("rsi", "reverse-stepi", class_alias, 0);
|
|
|
|
|
|
|
|
add_com ("reverse-nexti", class_run, reverse_nexti, _("\
|
|
|
|
Step backward one instruction, but proceed through called subroutines.\n\
|
|
|
|
Argument N means do this N times (or till program stops for another reason).")
|
|
|
|
);
|
|
|
|
add_com_alias ("rni", "reverse-nexti", class_alias, 0);
|
|
|
|
|
|
|
|
add_com ("reverse-continue", class_run, reverse_continue, _("\
|
|
|
|
Continue program being debugged but run it in reverse.\n\
|
|
|
|
If proceeding from breakpoint, a number N may be used as an argument,\n\
|
|
|
|
which means to set the ignore count of that breakpoint to N - 1 (so that\n\
|
|
|
|
the breakpoint won't break until the Nth time it is reached)."));
|
|
|
|
add_com_alias ("rc", "reverse-continue", class_alias, 0);
|
|
|
|
|
|
|
|
add_com ("reverse-finish", class_run, reverse_finish, _("\
|
|
|
|
Execute backward until just before selected stack frame is called."));
|
2009-11-21 01:23:38 +08:00
|
|
|
|
|
|
|
add_com ("bookmark", class_bookmark, save_bookmark_command, _("\
|
|
|
|
Set a bookmark in the program's execution history.\n\
|
|
|
|
A bookmark represents a point in the execution history \n\
|
|
|
|
that can be returned to at a later point in the debug session."));
|
|
|
|
add_info ("bookmarks", bookmarks_info, _("\
|
|
|
|
Status of user-settable bookmarks.\n\
|
|
|
|
Bookmarks are user-settable markers representing a point in the \n\
|
|
|
|
execution history that can be returned to later in the same debug \n\
|
|
|
|
session."));
|
|
|
|
add_cmd ("bookmark", class_bookmark, delete_bookmark_command, _("\
|
|
|
|
Delete a bookmark from the bookmark list.\n\
|
2011-02-20 03:10:48 +08:00
|
|
|
Argument is a bookmark number or numbers,\n\
|
|
|
|
or no argument to delete all bookmarks.\n"),
|
2009-11-21 01:23:38 +08:00
|
|
|
&deletelist);
|
|
|
|
add_com ("goto-bookmark", class_bookmark, goto_bookmark_command, _("\
|
|
|
|
Go to an earlier-bookmarked point in the program's execution history.\n\
|
|
|
|
Argument is the bookmark number of a bookmark saved earlier by using \n\
|
|
|
|
the 'bookmark' command, or the special arguments:\n\
|
|
|
|
start (beginning of recording)\n\
|
|
|
|
end (end of recording)\n"));
|
2008-10-18 03:43:47 +08:00
|
|
|
}
|