binutils-gdb/gdb
Pedro Alves f6ac5f3d63 Convert struct target_ops to C++
I.e., use C++ virtual methods and inheritance instead of tables of
function pointers.

Unfortunately, there's no way to do a smooth transition.  ALL native
targets in the tree must be converted at the same time.  I've tested
all I could with cross compilers and with help from GCC compile farm,
but naturally I haven't been able to test many of the ports.  Still, I
made a best effort to port everything over, and while I expect some
build problems due to typos and such, which should be trivial to fix,
I don't expect any design problems.

* Implementation notes:

- The flattened current_target is gone.  References to current_target
  or current_target.beneath are replaced with references to
  target_stack (the top of the stack) directly.

- To keep "set debug target" working, this adds a new debug_stratum
  layer that sits on top of the stack, prints the debug, and delegates
  to the target beneath.

  In addition, this makes the shortname and longname properties of
  target_ops be virtual methods instead of data fields, and makes the
  debug target defer those to the target beneath.  This is so that
  debug code sprinkled around that does "if (debugtarget) ..."  can
  transparently print the name of the target beneath.

  A patch later in the series actually splits out the
  shortname/longname methods to a separate structure, but I preferred
  to keep that chance separate as it is associated with changing a bit
  the design of how targets are registered and open.

- Since you can't check whether a C++ virtual method is overridden,
  the old method of checking whether a target_ops implements a method
  by comparing the function pointer must be replaced with something
  else.

  Some cases are fixed by adding a parallel "can_do_foo" target_ops
  methods.  E.g.,:

    +  for (t = target_stack; t != NULL; t = t->beneath)
	 {
    -      if (t->to_create_inferior != NULL)
    +      if (t->can_create_inferior ())
	    break;
	 }

  Others are fixed by changing void return type to bool or int return
  type, and have the default implementation return false or -1, to
  indicate lack of support.

- make-target-delegates was adjusted to generate C++ classes and
  methods.

  It needed tweaks to grok "virtual" in front of the target method
  name, and for the fact that methods are no longer function pointers.
  (In particular, the current code parsing the return type was simple
  because it could simply parse up until the '(' in '(*to_foo)'.

  It now generates a couple C++ classes that inherit target_ops:
  dummy_target and debug_target.

  Since we need to generate the class declarations as well, i.e., we
  need to emit methods twice, we now generate the code in two passes.

- The core_target global is renamed to avoid conflict with the
  "core_target" class.

- ctf/tfile targets

  init_tracefile_ops is replaced by a base class that is inherited by
  both ctf and tfile.

- bsd-uthread

  The bsd_uthread_ops_hack hack is gone.  It's not needed because
  nothing was extending a target created by bsd_uthread_target.

- remote/extended-remote targets

  This is a first pass, just enough to C++ify target_ops.

  A later pass will convert more free functions to methods, and make
  remote_state be truly per remote instance, allowing multiple
  simultaneous instances of remote targets.

- inf-child/"native" is converted to an actual base class
  (inf_child_target), that is inherited by all native targets.

- GNU/Linux

  The old weird double-target linux_ops mechanism in linux-nat.c, is
  gone, replaced by adding a few virtual methods to linux-nat.h's
  target_ops, called low_XXX, that the concrete linux-nat
  implementations override.  Sort of like gdbserver's
  linux_target_ops, but simpler, for requiring only one
  target_ops-like hierarchy, which spares implementing the same method
  twice when we need to forward the method to a low implementation.
  The low target simply reimplements the target_ops method directly in
  that case.

  There are a few remaining linux-nat.c hooks that would be better
  converted to low_ methods like above too.  E.g.:

   linux_nat_set_new_thread (t, x86_linux_new_thread);
   linux_nat_set_new_fork (t, x86_linux_new_fork);
   linux_nat_set_forget_process

  That'll be done in a follow up patch.

- We can no longer use functions like x86_use_watchpoints to install
  custom methods on an arbitrary base target.

  The patch replaces instances of such a pattern with template mixins.
  For example memory_breakpoint_target defined in target.h, or
  x86_nat_target in x86-nat.h.

- linux_trad_target, MIPS and Alpha GNU/Linux

  The code in the new linux-nat-trad.h/c files which was split off of
  inf-ptrace.h/c recently, is converted to a C++ base class, and used
  by the MIPS and Alpha GNU/Linux ports.

- BSD targets

  The

    $architecture x NetBSD/OpenBSD/FreeBSD

  support matrix complicates things a bit.  There's common BSD target
  code, and there's common architecture-specific code shared between
  the different BSDs.  Currently, all that is stiched together to form
  a final target, via the i386bsd_target, x86bsd_target,
  fbsd_nat_add_target functions etc.

  This introduces new fbsd_nat_target, obsd_nat_target and
  nbsd_nat_target classes that serve as base/prototype target for the
  corresponding BSD variant.

  And introduces generic i386/AMD64 BSD targets, to be used as
  template mixin to build a final target.  Similarly, a generic SPARC
  target is added, used by both BSD and Linux ports.

- bsd_kvm_add_target, BSD libkvm target

  I considered making bsd_kvm_supply_pcb a virtual method, and then
  have each port inherit bsd_kvm_target and override that method, but
  that was resulting in lots of unjustified churn, so I left the
  function pointer mechanism alone.

gdb/ChangeLog:
2018-05-02  Pedro Alves  <palves@redhat.com>
	    John Baldwin  <jhb@freebsd.org>

	* target.h (enum strata) <debug_stratum>: New.
	(struct target_ops) <all delegation methods>: Replace by C++
	virtual methods, and drop "to_" prefix.  All references updated
	throughout.
	<to_shortname, to_longname, to_doc, to_data,
	to_have_steppable_watchpoint, to_have_continuable_watchpoint,
	to_has_thread_control, to_attach_no_wait>: Delete, replaced by
	virtual methods.  All references updated throughout.
	<can_attach, supports_terminal_ours, can_create_inferior,
	get_thread_control_capabilities, attach_no_wait>: New
	virtual methods.
	<insert_breakpoint, remove_breakpoint>: Now
	TARGET_DEFAULT_NORETURN methods.
	<info_proc>: Now returns bool.
	<to_magic>: Delete.
	(OPS_MAGIC): Delete.
	(current_target): Delete.  All references replaced by references
	to ...
	(target_stack): ... this.  New.
	(target_shortname, target_longname): Adjust.
	(target_can_run): Now a function declaration.
	(default_child_has_all_memory, default_child_has_memory)
	(default_child_has_stack, default_child_has_registers)
	(default_child_has_execution): Remove target_ops parameter.
	(complete_target_initialization): Delete.
	(memory_breakpoint_target): New template class.
	(test_target_ops): Refactor as a C++ class with virtual methods.
	* make-target-delegates (NAME_PART): Tighten.
	(POINTER_PART, CP_SYMBOL): New.
	(SIMPLE_RETURN_PART): Reimplement.
	(VEC_RETURN_PART): Expect less.
	(RETURN_PART, VIRTUAL_PART): New.
	(METHOD): Adjust to C++ virtual methods.
	(scan_target_h): Remove reference to C99.
	(dname): Output "target_ops::" prefix.
	(write_function_header): Adjust to output a C++ class method.
	(write_declaration): New.
	(write_delegator): Adjust to output a C++ class method.
	(tdname): Output "dummy_target::" prefix.
	(write_tdefault, write_debugmethod): Adjust to output a C++ class
	method.
	(tdefault_names, debug_names): Delete.
	(return_types, tdefaults, styles, argtypes_array): New.
	(top level): All methods are delegators.
	(print_class): New.
	(top level): Print dummy_target and debug_target classes.
	* target-delegates.c: Regenerate.
	* target-debug.h (target_debug_print_enum_info_proc_what)
	(target_debug_print_thread_control_capabilities)
	(target_debug_print_thread_info_p): New.
	* target.c (dummy_target): Delete.
	(the_dummy_target, the_debug_target): New.
	(target_stack): Now extern.
	(set_targetdebug): Push/unpush debug target.
	(default_child_has_all_memory, default_child_has_memory)
	(default_child_has_stack, default_child_has_registers)
	(default_child_has_execution): Remove target_ops parameter.
	(complete_target_initialization): Delete.
	(add_target_with_completer): No longer call
	complete_target_initialization.
	(target_supports_terminal_ours): Use regular delegation.
	(update_current_target): Delete.
	(push_target): No longer check magic number.  Don't call
	update_current_target.
	(unpush_target): Don't call update_current_target.
	(target_is_pushed): No longer check magic number.
	(target_require_runnable): Skip for all stratums over
	process_stratum.
	(target_ops::info_proc): New.
	(target_info_proc): Use find_target_at and
	find_default_run_target.
	(target_supports_disable_randomization): Use regular delegation.
	(target_get_osdata): Use find_target_at.
	(target_ops::open, target_ops::close, target_ops::can_attach)
	(target_ops::attach, target_ops::can_create_inferior)
	(target_ops::create_inferior, target_ops::can_run)
	(target_can_run): New.
	(default_fileio_target): Use regular delegation.
	(target_ops::fileio_open, target_ops::fileio_pwrite)
	(target_ops::fileio_pread, target_ops::fileio_fstat)
	(target_ops::fileio_close, target_ops::fileio_unlink)
	(target_ops::fileio_readlink): New.
	(target_fileio_open_1, target_fileio_unlink)
	(target_fileio_readlink): Always call the target method.  Handle
	FILEIO_ENOSYS.
	(return_zero, return_zero_has_execution): Delete.
	(init_dummy_target): Delete.
	(dummy_target::dummy_target, dummy_target::shortname)
	(dummy_target::longname, dummy_target::doc)
	(debug_target::debug_target, debug_target::shortname)
	(debug_target::longname, debug_target::doc): New.
	(target_supports_delete_record): Use regular delegation.
	(setup_target_debug): Delete.
	(maintenance_print_target_stack): Skip debug_stratum.
	(initialize_targets): Instantiate the_dummy_target and
	the_debug_target.
	* auxv.c (target_auxv_parse): Remove 'ops' parameter.  Adjust to
	use target_stack.
	(target_auxv_search, fprint_target_auxv): Adjust.
	(info_auxv_command): Adjust to use target_stack.
	* auxv.h (target_auxv_parse): Remove 'ops' parameter.
	* exceptions.c (print_flush): Handle a NULL target_stack.
	* regcache.c (target_ops_no_register): Refactor as class with
	virtual methods.

	* exec.c (exec_target): New class.
	(exec_ops): Now an exec_target.
	(exec_open, exec_close_1, exec_get_section_table)
	(exec_xfer_partial, exec_files_info, exec_has_memory)
	(exec_make_note_section): Refactor as exec_target methods.
	(exec_file_clear, ignore, exec_remove_breakpoint, init_exec_ops):
	Delete.
	(exec_target::find_memory_regions): New.
	(_initialize_exec): Don't call init_exec_ops.
	* gdbcore.h (exec_file_clear): Delete.

	* corefile.c (core_target): Delete.
	(core_file_command): Adjust.
	* corelow.c (core_target): New class.
	(the_core_target): New.
	(core_close): Remove target_ops parameter.
	(core_close_cleanup): Adjust.
	(core_target::close): New.
	(core_open, core_detach, get_core_registers, core_files_info)
	(core_xfer_partial, core_thread_alive, core_read_description)
	(core_pid_to_str, core_thread_name, core_has_memory)
	(core_has_stack, core_has_registers, core_info_proc): Rework as
	core_target methods.
	(ignore, core_remove_breakpoint, init_core_ops): Delete.
	(_initialize_corelow): Initialize the_core_target.
	* gdbcore.h (core_target): Delete.
	(the_core_target): New.

	* ctf.c: (ctf_target): New class.
	(ctf_ops): Now a ctf_target.
	(ctf_open, ctf_close, ctf_files_info, ctf_fetch_registers)
	(ctf_xfer_partial, ctf_get_trace_state_variable_value)
	(ctf_trace_find, ctf_traceframe_info): Refactor as ctf_target
	methods.
	(init_ctf_ops): Delete.
	(_initialize_ctf): Don't call it.
	* tracefile-tfile.c (tfile_target): New class.
	(tfile_ops): Now a tfile_target.
	(tfile_open, tfile_close, tfile_files_info)
	(tfile_get_tracepoint_status, tfile_trace_find)
	(tfile_fetch_registers, tfile_xfer_partial)
	(tfile_get_trace_state_variable_value, tfile_traceframe_info):
	Refactor as tfile_target methods.
	(tfile_xfer_partial_features): Remove target_ops parameter.
	(init_tfile_ops): Delete.
	(_initialize_tracefile_tfile): Don't call it.
	* tracefile.c (tracefile_has_all_memory, tracefile_has_memory)
	(tracefile_has_stack, tracefile_has_registers)
	(tracefile_thread_alive, tracefile_get_trace_status): Refactor as
	tracefile_target methods.
	(init_tracefile_ops): Delete.
	(tracefile_target::tracefile_target): New.
	* tracefile.h: Include "target.h".
	(tracefile_target): New class.
	(init_tracefile_ops): Delete.

	* spu-multiarch.c (spu_multiarch_target): New class.
	(spu_ops): Now a spu_multiarch_target.
	(spu_thread_architecture, spu_region_ok_for_hw_watchpoint)
	(spu_fetch_registers, spu_store_registers, spu_xfer_partial)
	(spu_search_memory, spu_mourn_inferior): Refactor as
	spu_multiarch_target methods.
	(init_spu_ops): Delete.
	(_initialize_spu_multiarch): Remove references to init_spu_ops,
	complete_target_initialization.

	* ravenscar-thread.c (ravenscar_thread_target): New class.
	(ravenscar_ops): Now a ravenscar_thread_target.
	(ravenscar_resume, ravenscar_wait, ravenscar_update_thread_list)
	(ravenscar_thread_alive, ravenscar_pid_to_str)
	(ravenscar_fetch_registers, ravenscar_store_registers)
	(ravenscar_prepare_to_store, ravenscar_stopped_by_sw_breakpoint)
	(ravenscar_stopped_by_hw_breakpoint)
	(ravenscar_stopped_by_watchpoint, ravenscar_stopped_data_address)
	(ravenscar_mourn_inferior, ravenscar_core_of_thread)
	(ravenscar_get_ada_task_ptid): Refactor as ravenscar_thread_target
	methods.
	(init_ravenscar_thread_ops): Delete.
	(_initialize_ravenscar): Remove references to
	init_ravenscar_thread_ops and complete_target_initialization.

	* bsd-uthread.c (bsd_uthread_ops_hack): Delete.
	(bsd_uthread_target): New class.
	(bsd_uthread_ops): Now a bsd_uthread_target.
	(bsd_uthread_activate): Adjust to refer to bsd_uthread_ops.
	(bsd_uthread_close, bsd_uthread_mourn_inferior)
	(bsd_uthread_fetch_registers, bsd_uthread_store_registers)
	(bsd_uthread_wait, bsd_uthread_resume, bsd_uthread_thread_alive)
	(bsd_uthread_update_thread_list, bsd_uthread_extra_thread_info)
	(bsd_uthread_pid_to_str): Refactor as bsd_uthread_target methods.
	(bsd_uthread_target): Delete function.
	(_initialize_bsd_uthread): Remove reference to
	complete_target_initialization.

	* bfd-target.c (target_bfd_data): Delete.  Fields folded into ...
	(target_bfd): ... this new class.
	(target_bfd_xfer_partial, target_bfd_get_section_table)
	(target_bfd_close): Refactor as target_bfd methods.
	(target_bfd::~target_bfd): New.
	(target_bfd_reopen): Adjust.
	(target_bfd::close): New.

	* record-btrace.c (record_btrace_target): New class.
	(record_btrace_ops): Now a record_btrace_target.
	(record_btrace_open, record_btrace_stop_recording)
	(record_btrace_disconnect, record_btrace_close)
	(record_btrace_async, record_btrace_info)
	(record_btrace_insn_history, record_btrace_insn_history_range)
	(record_btrace_insn_history_from, record_btrace_call_history)
	(record_btrace_call_history_range)
	(record_btrace_call_history_from, record_btrace_record_method)
	(record_btrace_is_replaying, record_btrace_will_replay)
	(record_btrace_xfer_partial, record_btrace_insert_breakpoint)
	(record_btrace_remove_breakpoint, record_btrace_fetch_registers)
	(record_btrace_store_registers, record_btrace_prepare_to_store)
	(record_btrace_to_get_unwinder)
	(record_btrace_to_get_tailcall_unwinder, record_btrace_resume)
	(record_btrace_commit_resume, record_btrace_wait)
	(record_btrace_stop, record_btrace_can_execute_reverse)
	(record_btrace_stopped_by_sw_breakpoint)
	(record_btrace_supports_stopped_by_sw_breakpoint)
	(record_btrace_stopped_by_hw_breakpoint)
	(record_btrace_supports_stopped_by_hw_breakpoint)
	(record_btrace_update_thread_list, record_btrace_thread_alive)
	(record_btrace_goto_begin, record_btrace_goto_end)
	(record_btrace_goto, record_btrace_stop_replaying_all)
	(record_btrace_execution_direction)
	(record_btrace_prepare_to_generate_core)
	(record_btrace_done_generating_core): Refactor as
	record_btrace_target methods.
	(init_record_btrace_ops): Delete.
	(_initialize_record_btrace): Remove reference to
	init_record_btrace_ops.
	* record-full.c (RECORD_FULL_IS_REPLAY): Adjust to always refer to
	the execution_direction global.
	(record_full_base_target, record_full_target)
	(record_full_core_target): New classes.
	(record_full_ops): Now a record_full_target.
	(record_full_core_ops): Now a record_full_core_target.
	(record_full_target::detach, record_full_target::disconnect)
	(record_full_core_target::disconnect)
	(record_full_target::mourn_inferior, record_full_target::kill):
	New.
	(record_full_open, record_full_close, record_full_async): Refactor
	as methods of the record_full_base_target class.
	(record_full_resume, record_full_commit_resume): Refactor
	as methods of the record_full_target class.
	(record_full_wait, record_full_stopped_by_watchpoint)
	(record_full_stopped_data_address)
	(record_full_stopped_by_sw_breakpoint)
	(record_full_supports_stopped_by_sw_breakpoint)
	(record_full_stopped_by_hw_breakpoint)
	(record_full_supports_stopped_by_hw_breakpoint): Refactor as
	methods of the record_full_base_target class.
	(record_full_store_registers, record_full_xfer_partial)
	(record_full_insert_breakpoint, record_full_remove_breakpoint):
	Refactor as methods of the record_full_target class.
	(record_full_can_execute_reverse, record_full_get_bookmark)
	(record_full_goto_bookmark, record_full_execution_direction)
	(record_full_record_method, record_full_info, record_full_delete)
	(record_full_is_replaying, record_full_will_replay)
	(record_full_goto_begin, record_full_goto_end, record_full_goto)
	(record_full_stop_replaying): Refactor as methods of the
	record_full_base_target class.
	(record_full_core_resume, record_full_core_kill)
	(record_full_core_fetch_registers)
	(record_full_core_prepare_to_store)
	(record_full_core_store_registers, record_full_core_xfer_partial)
	(record_full_core_insert_breakpoint)
	(record_full_core_remove_breakpoint)
	(record_full_core_has_execution): Refactor
	as methods of the record_full_core_target class.
	(record_full_base_target::supports_delete_record): New.
	(init_record_full_ops): Delete.
	(init_record_full_core_ops): Delete.
	(record_full_save): Refactor as method of the
	record_full_base_target class.
	(_initialize_record_full): Remove references to
	init_record_full_ops and init_record_full_core_ops.

	* remote.c (remote_target, extended_remote_target): New classes.
	(remote_ops): Now a remote_target.
	(extended_remote_ops): Now an extended_remote_target.
	(remote_insert_fork_catchpoint, remote_remove_fork_catchpoint)
	(remote_insert_vfork_catchpoint, remote_remove_vfork_catchpoint)
	(remote_insert_exec_catchpoint, remote_remove_exec_catchpoint)
	(remote_pass_signals, remote_set_syscall_catchpoint)
	(remote_program_signals, )
	(remote_thread_always_alive): Remove target_ops parameter.
	(remote_thread_alive, remote_thread_name)
	(remote_update_thread_list, remote_threads_extra_info)
	(remote_static_tracepoint_marker_at)
	(remote_static_tracepoint_markers_by_strid)
	(remote_get_ada_task_ptid, remote_close, remote_start_remote)
	(remote_open): Refactor as methods of remote_target.
	(extended_remote_open, extended_remote_detach)
	(extended_remote_attach, extended_remote_post_attach):
	(extended_remote_supports_disable_randomization)
	(extended_remote_create_inferior): : Refactor as method of
	extended_remote_target.
	(remote_set_permissions, remote_open_1, remote_detach)
	(remote_follow_fork, remote_follow_exec, remote_disconnect)
	(remote_resume, remote_commit_resume, remote_stop)
	(remote_interrupt, remote_pass_ctrlc, remote_terminal_inferior)
	(remote_terminal_ours, remote_wait, remote_fetch_registers)
	(remote_prepare_to_store, remote_store_registers)
	(remote_flash_erase, remote_flash_done, remote_files_info)
	(remote_kill, remote_mourn, remote_insert_breakpoint)
	(remote_remove_breakpoint, remote_insert_watchpoint)
	(remote_watchpoint_addr_within_range)
	(remote_remove_watchpoint, remote_region_ok_for_hw_watchpoint)
	(remote_check_watch_resources, remote_stopped_by_sw_breakpoint)
	(remote_supports_stopped_by_sw_breakpoint)
	(remote_stopped_by_hw_breakpoint)
	(remote_supports_stopped_by_hw_breakpoint)
	(remote_stopped_by_watchpoint, remote_stopped_data_address)
	(remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
	(remote_verify_memory): Refactor as methods of remote_target.
	(remote_write_qxfer, remote_read_qxfer): Remove target_ops
	parameter.
	(remote_xfer_partial, remote_get_memory_xfer_limit)
	(remote_search_memory, remote_rcmd, remote_memory_map)
	(remote_pid_to_str, remote_get_thread_local_address)
	(remote_get_tib_address, remote_read_description): Refactor as
	methods of remote_target.
	(remote_target::fileio_open, remote_target::fileio_pwrite)
	(remote_target::fileio_pread, remote_target::fileio_close): New.
	(remote_hostio_readlink, remote_hostio_fstat)
	(remote_filesystem_is_local, remote_can_execute_reverse)
	(remote_supports_non_stop, remote_supports_disable_randomization)
	(remote_supports_multi_process, remote_supports_cond_breakpoints)
	(remote_supports_enable_disable_tracepoint)
	(remote_supports_string_tracing)
	(remote_can_run_breakpoint_commands, remote_trace_init)
	(remote_download_tracepoint, remote_can_download_tracepoint)
	(remote_download_trace_state_variable, remote_enable_tracepoint)
	(remote_disable_tracepoint, remote_trace_set_readonly_regions)
	(remote_trace_start, remote_get_trace_status)
	(remote_get_tracepoint_status, remote_trace_stop)
	(remote_trace_find, remote_get_trace_state_variable_value)
	(remote_save_trace_data, remote_get_raw_trace_data)
	(remote_set_disconnected_tracing, remote_core_of_thread)
	(remote_set_circular_trace_buffer, remote_traceframe_info)
	(remote_get_min_fast_tracepoint_insn_len)
	(remote_set_trace_buffer_size, remote_set_trace_notes)
	(remote_use_agent, remote_can_use_agent, remote_enable_btrace)
	(remote_disable_btrace, remote_teardown_btrace)
	(remote_read_btrace, remote_btrace_conf)
	(remote_augmented_libraries_svr4_read, remote_load)
	(remote_pid_to_exec_file, remote_can_do_single_step)
	(remote_execution_direction, remote_thread_handle_to_thread_info):
	Refactor as methods of remote_target.
	(init_remote_ops, init_extended_remote_ops): Delete.
	(remote_can_async_p, remote_is_async_p, remote_async)
	(remote_thread_events, remote_upload_tracepoints)
	(remote_upload_trace_state_variables): Refactor as methods of
	remote_target.
	(_initialize_remote): Remove references to init_remote_ops and
	init_extended_remote_ops.

	* remote-sim.c (gdbsim_target): New class.
	(gdbsim_fetch_register, gdbsim_store_register, gdbsim_kill)
	(gdbsim_load, gdbsim_create_inferior, gdbsim_open, gdbsim_close)
	(gdbsim_detach, gdbsim_resume, gdbsim_interrupt)
	(gdbsim_wait, gdbsim_prepare_to_store, gdbsim_xfer_partial)
	(gdbsim_files_info, gdbsim_mourn_inferior, gdbsim_thread_alive)
	(gdbsim_pid_to_str, gdbsim_has_all_memory, gdbsim_has_memory):
	Refactor as methods of gdbsim_target.
	(gdbsim_ops): Now a gdbsim_target.
	(init_gdbsim_ops): Delete.
	(gdbsim_cntrl_c): Adjust.
	(_initialize_remote_sim): Remove reference to init_gdbsim_ops.

	* amd64-linux-nat.c (amd64_linux_nat_target): New class.
	(the_amd64_linux_nat_target): New.
	(amd64_linux_fetch_inferior_registers)
	(amd64_linux_store_inferior_registers): Refactor as methods of
	amd64_linux_nat_target.
	(_initialize_amd64_linux_nat): Adjust.  Set linux_target.
	* i386-linux-nat.c: Don't include "linux-nat.h".
	(i386_linux_nat_target): New class.
	(the_i386_linux_nat_target): New.
	(i386_linux_fetch_inferior_registers)
	(i386_linux_store_inferior_registers, i386_linux_resume): Refactor
	as methods of i386_linux_nat_target.
	(_initialize_i386_linux_nat): Adjust.  Set linux_target.
	* inf-child.c (inf_child_ops): Delete.
	(inf_child_fetch_inferior_registers)
	(inf_child_store_inferior_registers): Delete.
	(inf_child_post_attach, inf_child_prepare_to_store): Refactor as
	methods of inf_child_target.
	(inf_child_target::supports_terminal_ours)
	(inf_child_target::terminal_init)
	(inf_child_target::terminal_inferior)
	(inf_child_target::terminal_ours_for_output)
	(inf_child_target::terminal_ours, inf_child_target::interrupt)
	(inf_child_target::pass_ctrlc, inf_child_target::terminal_info):
	New.
	(inf_child_open, inf_child_disconnect, inf_child_close)
	(inf_child_mourn_inferior, inf_child_maybe_unpush_target)
	(inf_child_post_startup_inferior, inf_child_can_run)
	(inf_child_pid_to_exec_file): Refactor as methods of
	inf_child_target.
	(inf_child_follow_fork): Delete.
	(inf_child_target::can_create_inferior)
	(inf_child_target::can_attach): New.
	(inf_child_target::has_all_memory, inf_child_target::has_memory)
	(inf_child_target::has_stack, inf_child_target::has_registers)
	(inf_child_target::has_execution): New.
	(inf_child_fileio_open, inf_child_fileio_pwrite)
	(inf_child_fileio_pread, inf_child_fileio_fstat)
	(inf_child_fileio_close, inf_child_fileio_unlink)
	(inf_child_fileio_readlink, inf_child_use_agent)
	(inf_child_can_use_agent): Refactor as methods of
	inf_child_target.
	(return_zero, inf_child_target): Delete.
	(inf_child_target::inf_child_target): New.
	* inf-child.h: Include "target.h".
	(inf_child_target): Delete function prototype.
	(inf_child_target): New class.
	(inf_child_open_target, inf_child_mourn_inferior)
	(inf_child_maybe_unpush_target): Delete.
	* inf-ptrace.c (inf_ptrace_target::~inf_ptrace_target): New.
	(inf_ptrace_follow_fork, inf_ptrace_insert_fork_catchpoint)
	(inf_ptrace_remove_fork_catchpoint, inf_ptrace_create_inferior)
	(inf_ptrace_post_startup_inferior, inf_ptrace_mourn_inferior)
	(inf_ptrace_attach, inf_ptrace_post_attach, inf_ptrace_detach)
	(inf_ptrace_detach_success, inf_ptrace_kill, inf_ptrace_resume)
	(inf_ptrace_wait, inf_ptrace_xfer_partial)
	(inf_ptrace_thread_alive, inf_ptrace_files_info)
	(inf_ptrace_pid_to_str, inf_ptrace_auxv_parse): Refactor as
	methods of inf_ptrace_target.
	(inf_ptrace_target): Delete function.
	* inf-ptrace.h: Include "inf-child.h".
	(inf_ptrace_target): Delete function declaration.
	(inf_ptrace_target): New class.
	(inf_ptrace_trad_target, inf_ptrace_detach_success): Delete.
	* linux-nat.c (linux_target): New.
	(linux_ops, linux_ops_saved, super_xfer_partial): Delete.
	(linux_nat_target::~linux_nat_target): New.
	(linux_child_post_attach, linux_child_post_startup_inferior)
	(linux_child_follow_fork, linux_child_insert_fork_catchpoint)
	(linux_child_remove_fork_catchpoint)
	(linux_child_insert_vfork_catchpoint)
	(linux_child_remove_vfork_catchpoint)
	(linux_child_insert_exec_catchpoint)
	(linux_child_remove_exec_catchpoint)
	(linux_child_set_syscall_catchpoint, linux_nat_pass_signals)
	(linux_nat_create_inferior, linux_nat_attach, linux_nat_detach)
	(linux_nat_resume, linux_nat_stopped_by_watchpoint)
	(linux_nat_stopped_data_address)
	(linux_nat_stopped_by_sw_breakpoint)
	(linux_nat_supports_stopped_by_sw_breakpoint)
	(linux_nat_stopped_by_hw_breakpoint)
	(linux_nat_supports_stopped_by_hw_breakpoint, linux_nat_wait)
	(linux_nat_kill, linux_nat_mourn_inferior)
	(linux_nat_xfer_partial, linux_nat_thread_alive)
	(linux_nat_update_thread_list, linux_nat_pid_to_str)
	(linux_nat_thread_name, linux_child_pid_to_exec_file)
	(linux_child_static_tracepoint_markers_by_strid)
	(linux_nat_is_async_p, linux_nat_can_async_p)
	(linux_nat_supports_non_stop, linux_nat_always_non_stop_p)
	(linux_nat_supports_multi_process)
	(linux_nat_supports_disable_randomization, linux_nat_async)
	(linux_nat_stop, linux_nat_close, linux_nat_thread_address_space)
	(linux_nat_core_of_thread, linux_nat_filesystem_is_local)
	(linux_nat_fileio_open, linux_nat_fileio_readlink)
	(linux_nat_fileio_unlink, linux_nat_thread_events): Refactor as
	methods of linux_nat_target.
	(linux_nat_wait_1, linux_xfer_siginfo, linux_proc_xfer_partial)
	(linux_proc_xfer_spu, linux_nat_xfer_osdata): Remove target_ops
	parameter.
	(check_stopped_by_watchpoint): Adjust.
	(linux_xfer_partial): Delete.
	(linux_target_install_ops, linux_target, linux_nat_add_target):
	Delete.
	(linux_nat_target::linux_nat_target): New.
	* linux-nat.h: Include "inf-ptrace.h".
	(linux_nat_target): New.
	(linux_target, linux_target_install_ops, linux_nat_add_target):
	Delete function declarations.
	(linux_target): Declare global.
	* linux-thread-db.c (thread_db_target): New.
	(thread_db_target::thread_db_target): New.
	(thread_db_ops): Delete.
	(the_thread_db_target): New.
	(thread_db_detach, thread_db_wait, thread_db_mourn_inferior)
	(thread_db_update_thread_list, thread_db_pid_to_str)
	(thread_db_extra_thread_info)
	(thread_db_thread_handle_to_thread_info)
	(thread_db_get_thread_local_address, thread_db_get_ada_task_ptid)
	(thread_db_resume): Refactor as methods of thread_db_target.
	(init_thread_db_ops): Delete.
	(_initialize_thread_db): Remove reference to init_thread_db_ops.
	* x86-linux-nat.c: Don't include "linux-nat.h".
	(super_post_startup_inferior): Delete.
	(x86_linux_nat_target::~x86_linux_nat_target): New.
	(x86_linux_child_post_startup_inferior)
	(x86_linux_read_description, x86_linux_enable_btrace)
	(x86_linux_disable_btrace, x86_linux_teardown_btrace)
	(x86_linux_read_btrace, x86_linux_btrace_conf): Refactor as
	methods of x86_linux_nat_target.
	(x86_linux_create_target): Delete.  Bits folded ...
	(x86_linux_add_target): ... here.  Now takes a linux_nat_target
	pointer.
	* x86-linux-nat.h: Include "linux-nat.h" and "x86-nat.h".
	(x86_linux_nat_target): New class.
	(x86_linux_create_target): Delete.
	(x86_linux_add_target): Now takes a linux_nat_target pointer.
	* x86-nat.c (x86_insert_watchpoint, x86_remove_watchpoint)
	(x86_region_ok_for_watchpoint, x86_stopped_data_address)
	(x86_stopped_by_watchpoint, x86_insert_hw_breakpoint)
	(x86_remove_hw_breakpoint, x86_can_use_hw_breakpoint)
	(x86_stopped_by_hw_breakpoint): Remove target_ops parameter and
	make extern.
	(x86_use_watchpoints): Delete.
	* x86-nat.h: Include "breakpoint.h" and "target.h".
	(x86_use_watchpoints): Delete.
	(x86_can_use_hw_breakpoint, x86_region_ok_for_hw_watchpoint)
	(x86_stopped_by_watchpoint, x86_stopped_data_address)
	(x86_insert_watchpoint, x86_remove_watchpoint)
	(x86_insert_hw_breakpoint, x86_remove_hw_breakpoint)
	(x86_stopped_by_hw_breakpoint): New declarations.
	(x86_nat_target): New template class.

	* ppc-linux-nat.c (ppc_linux_nat_target): New class.
	(the_ppc_linux_nat_target): New.
	(ppc_linux_fetch_inferior_registers)
	(ppc_linux_can_use_hw_breakpoint)
	(ppc_linux_region_ok_for_hw_watchpoint)
	(ppc_linux_ranged_break_num_registers)
	(ppc_linux_insert_hw_breakpoint, ppc_linux_remove_hw_breakpoint)
	(ppc_linux_insert_mask_watchpoint)
	(ppc_linux_remove_mask_watchpoint)
	(ppc_linux_can_accel_watchpoint_condition)
	(ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint)
	(ppc_linux_stopped_data_address, ppc_linux_stopped_by_watchpoint)
	(ppc_linux_watchpoint_addr_within_range)
	(ppc_linux_masked_watch_num_registers)
	(ppc_linux_store_inferior_registers, ppc_linux_auxv_parse)
	(ppc_linux_read_description): Refactor as methods of
	ppc_linux_nat_target.
	(_initialize_ppc_linux_nat): Adjust.  Set linux_target.

	* procfs.c (procfs_xfer_partial): Delete forward declaration.
	(procfs_target): New class.
	(the_procfs_target): New.
	(procfs_target): Delete function.
	(procfs_auxv_parse, procfs_attach, procfs_detach)
	(procfs_fetch_registers, procfs_store_registers, procfs_wait)
	(procfs_xfer_partial, procfs_resume, procfs_pass_signals)
	(procfs_files_info, procfs_kill_inferior, procfs_mourn_inferior)
	(procfs_create_inferior, procfs_update_thread_list)
	(procfs_thread_alive, procfs_pid_to_str)
	(procfs_can_use_hw_breakpoint, procfs_stopped_by_watchpoint)
	(procfs_stopped_data_address, procfs_insert_watchpoint)
	(procfs_remove_watchpoint, procfs_region_ok_for_hw_watchpoint)
	(proc_find_memory_regions, procfs_info_proc)
	(procfs_make_note_section): Refactor as methods of procfs_target.
	(_initialize_procfs): Adjust.
	* sol-thread.c (sol_thread_target): New class.
	(sol_thread_ops): Now a sol_thread_target.
	(sol_thread_detach, sol_thread_resume, sol_thread_wait)
	(sol_thread_fetch_registers, sol_thread_store_registers)
	(sol_thread_xfer_partial, sol_thread_mourn_inferior)
	(sol_thread_alive, solaris_pid_to_str, sol_update_thread_list)
	(sol_get_ada_task_ptid): Refactor as methods of sol_thread_target.
	(init_sol_thread_ops): Delete.
	(_initialize_sol_thread): Adjust.  Remove references to
	init_sol_thread_ops and complete_target_initialization.

	* windows-nat.c (windows_nat_target): New class.
	(windows_fetch_inferior_registers)
	(windows_store_inferior_registers, windows_resume, windows_wait)
	(windows_attach, windows_detach, windows_pid_to_exec_file)
	(windows_files_info, windows_create_inferior)
	(windows_mourn_inferior, windows_interrupt, windows_kill_inferior)
	(windows_close, windows_pid_to_str, windows_xfer_partial)
	(windows_get_tib_address, windows_get_ada_task_ptid)
	(windows_thread_name, windows_thread_alive): Refactor as
	windows_nat_target methods.
	(do_initial_windows_stuff): Adjust.
	(windows_target): Delete function.
	(_initialize_windows_nat): Adjust.

	* darwin-nat.c (darwin_resume, darwin_wait_to, darwin_interrupt)
	(darwin_mourn_inferior, darwin_kill_inferior)
	(darwin_create_inferior, darwin_attach, darwin_detach)
	(darwin_pid_to_str, darwin_thread_alive, darwin_xfer_partial)
	(darwin_pid_to_exec_file, darwin_get_ada_task_ptid)
	(darwin_supports_multi_process): Refactor as darwin_nat_target
	methods.
	(darwin_resume_to, darwin_files_info): Delete.
	(_initialize_darwin_inferior): Rename to ...
	(_initialize_darwin_nat): ... this.  Adjust to C++ification.
	* darwin-nat.h: Include "inf-child.h".
	(darwin_nat_target): New class.
	(darwin_complete_target): Delete.
	* i386-darwin-nat.c (i386_darwin_nat_target): New class.
	(darwin_target): New.
	(i386_darwin_fetch_inferior_registers)
	(i386_darwin_store_inferior_registers): Refactor as methods of
	darwin_nat_target.
	(darwin_complete_target): Delete, with ...
	(_initialize_i386_darwin_nat): ... bits factored out here.

	* alpha-linux-nat.c (alpha_linux_nat_target): New class.
	(the_alpha_linux_nat_target): New.
	(alpha_linux_register_u_offset): Refactor as
	alpha_linux_nat_target method.
	(_initialize_alpha_linux_nat): Adjust.
	* linux-nat-trad.c (inf_ptrace_register_u_offset): Delete.
	(inf_ptrace_fetch_register, inf_ptrace_fetch_registers)
	(inf_ptrace_store_register, inf_ptrace_store_registers): Refact as
	methods of linux_nat_trad_target.
	(linux_trad_target): Delete.
	* linux-nat-trad.h (linux_trad_target): Delete function.
	(linux_nat_trad_target): New class.
	* mips-linux-nat.c (mips_linux_nat_target): New class.
	(super_fetch_registers, super_store_registers, super_close):
	Delete.
	(the_mips_linux_nat_target): New.
	(mips64_linux_regsets_fetch_registers)
	(mips64_linux_regsets_store_registers)
	(mips64_linux_fetch_registers, mips64_linux_store_registers)
	(mips_linux_register_u_offset, mips_linux_read_description)
	(mips_linux_can_use_hw_breakpoint)
	(mips_linux_stopped_by_watchpoint)
	(mips_linux_stopped_data_address)
	(mips_linux_region_ok_for_hw_watchpoint)
	(mips_linux_insert_watchpoint, mips_linux_remove_watchpoint)
	(mips_linux_close): Refactor as methods of mips_linux_nat.
	(_initialize_mips_linux_nat): Adjust to C++ification.

	* aix-thread.c (aix_thread_target): New class.
	(aix_thread_ops): Now an aix_thread_target.
	(aix_thread_detach, aix_thread_resume, aix_thread_wait)
	(aix_thread_fetch_registers, aix_thread_store_registers)
	(aix_thread_xfer_partial, aix_thread_mourn_inferior)
	(aix_thread_thread_alive, aix_thread_pid_to_str)
	(aix_thread_extra_thread_info, aix_thread_get_ada_task_ptid):
	Refactor as methods of aix_thread_target.
	(init_aix_thread_ops): Delete.
	(_initialize_aix_thread): Remove references to init_aix_thread_ops
	and complete_target_initialization.
	* rs6000-nat.c (rs6000_xfer_shared_libraries): Delete.
	(rs6000_nat_target): New class.
	(the_rs6000_nat_target): New.
	(rs6000_fetch_inferior_registers, rs6000_store_inferior_registers)
	(rs6000_xfer_partial, rs6000_wait, rs6000_create_inferior)
	(rs6000_xfer_shared_libraries): Refactor as rs6000_nat_target methods.
	(super_create_inferior): Delete.
	(_initialize_rs6000_nat): Adjust to C++ification.

	* arm-linux-nat.c (arm_linux_nat_target): New class.
	(the_arm_linux_nat_target): New.
	(arm_linux_fetch_inferior_registers)
	(arm_linux_store_inferior_registers, arm_linux_read_description)
	(arm_linux_can_use_hw_breakpoint, arm_linux_insert_hw_breakpoint)
	(arm_linux_remove_hw_breakpoint)
	(arm_linux_region_ok_for_hw_watchpoint)
	(arm_linux_insert_watchpoint, arm_linux_remove_watchpoint)
	(arm_linux_stopped_data_address, arm_linux_stopped_by_watchpoint)
	(arm_linux_watchpoint_addr_within_range): Refactor as methods of
	arm_linux_nat_target.
	(_initialize_arm_linux_nat): Adjust to C++ification.

	* aarch64-linux-nat.c (aarch64_linux_nat_target): New class.
	(the_aarch64_linux_nat_target): New.
	(aarch64_linux_fetch_inferior_registers)
	(aarch64_linux_store_inferior_registers)
	(aarch64_linux_child_post_startup_inferior)
	(aarch64_linux_read_description)
	(aarch64_linux_can_use_hw_breakpoint)
	(aarch64_linux_insert_hw_breakpoint)
	(aarch64_linux_remove_hw_breakpoint)
	(aarch64_linux_insert_watchpoint, aarch64_linux_remove_watchpoint)
	(aarch64_linux_region_ok_for_hw_watchpoint)
	(aarch64_linux_stopped_data_address)
	(aarch64_linux_stopped_by_watchpoint)
	(aarch64_linux_watchpoint_addr_within_range)
	(aarch64_linux_can_do_single_step): Refactor as methods of
	aarch64_linux_nat_target.
	(super_post_startup_inferior): Delete.
	(_initialize_aarch64_linux_nat): Adjust to C++ification.

	* hppa-linux-nat.c (hppa_linux_nat_target): New class.
	(the_hppa_linux_nat_target): New.
	(hppa_linux_fetch_inferior_registers)
	(hppa_linux_store_inferior_registers): Refactor as methods of
	hppa_linux_nat_target.
	(_initialize_hppa_linux_nat): Adjust to C++ification.

	* ia64-linux-nat.c (ia64_linux_nat_target): New class.
	(the_ia64_linux_nat_target): New.
	(ia64_linux_insert_watchpoint, ia64_linux_remove_watchpoint)
	(ia64_linux_stopped_data_address)
	(ia64_linux_stopped_by_watchpoint, ia64_linux_fetch_registers)
	(ia64_linux_store_registers, ia64_linux_xfer_partial): Refactor as
	ia64_linux_nat_target methods.
	(super_xfer_partial): Delete.
	(_initialize_ia64_linux_nat): Adjust to C++ification.

	* m32r-linux-nat.c (m32r_linux_nat_target): New class.
	(the_m32r_linux_nat_target): New.
	(m32r_linux_fetch_inferior_registers)
	(m32r_linux_store_inferior_registers): Refactor as
	m32r_linux_nat_target methods.
	(_initialize_m32r_linux_nat): Adjust to C++ification.

	* m68k-linux-nat.c (m68k_linux_nat_target): New class.
	(the_m68k_linux_nat_target): New.
	(m68k_linux_fetch_inferior_registers)
	(m68k_linux_store_inferior_registers): Refactor as
	m68k_linux_nat_target methods.
	(_initialize_m68k_linux_nat): Adjust to C++ification.

	* s390-linux-nat.c (s390_linux_nat_target): New class.
	(the_s390_linux_nat_target): New.
	(s390_linux_fetch_inferior_registers)
	(s390_linux_store_inferior_registers, s390_stopped_by_watchpoint)
	(s390_insert_watchpoint, s390_remove_watchpoint)
	(s390_can_use_hw_breakpoint, s390_insert_hw_breakpoint)
	(s390_remove_hw_breakpoint, s390_region_ok_for_hw_watchpoint)
	(s390_auxv_parse, s390_read_description): Refactor as methods of
	s390_linux_nat_target.
	(_initialize_s390_nat): Adjust to C++ification.

	* sparc-linux-nat.c (sparc_linux_nat_target): New class.
	(the_sparc_linux_nat_target): New.
	(_initialize_sparc_linux_nat): Adjust to C++ification.
	* sparc-nat.c (sparc_fetch_inferior_registers)
	(sparc_store_inferior_registers): Remove target_ops parameter.
	* sparc-nat.h (sparc_fetch_inferior_registers)
	(sparc_store_inferior_registers): Remove target_ops parameter.
	* sparc64-linux-nat.c (sparc64_linux_nat_target): New class.
	(the_sparc64_linux_nat_target): New.
	(_initialize_sparc64_linux_nat): Adjust to C++ification.

	* spu-linux-nat.c (spu_linux_nat_target): New class.
	(the_spu_linux_nat_target): New.
	(spu_child_post_startup_inferior, spu_child_post_attach)
	(spu_child_wait, spu_fetch_inferior_registers)
	(spu_store_inferior_registers, spu_xfer_partial)
	(spu_can_use_hw_breakpoint): Refactor as spu_linux_nat_target
	methods.
	(_initialize_spu_nat): Adjust to C++ification.

	* tilegx-linux-nat.c (tilegx_linux_nat_target): New class.
	(the_tilegx_linux_nat_target): New.
	(fetch_inferior_registers, store_inferior_registers):
	Refactor as methods.
	(_initialize_tile_linux_nat): Adjust to C++ification.

	* xtensa-linux-nat.c (xtensa_linux_nat_target): New class.
	(the_xtensa_linux_nat_target): New.
	(xtensa_linux_fetch_inferior_registers)
	(xtensa_linux_store_inferior_registers): Refactor as
	xtensa_linux_nat_target methods.
	(_initialize_xtensa_linux_nat): Adjust to C++ification.

	* fbsd-nat.c (USE_SIGTRAP_SIGINFO): Delete.
	(fbsd_pid_to_exec_file, fbsd_find_memory_regions)
	(fbsd_find_memory_regions, fbsd_info_proc, fbsd_xfer_partial)
	(fbsd_thread_alive, fbsd_pid_to_str, fbsd_thread_name)
	(fbsd_update_thread_list, fbsd_resume, fbsd_wait)
	(fbsd_stopped_by_sw_breakpoint)
	(fbsd_supports_stopped_by_sw_breakpoint, fbsd_follow_fork)
	(fbsd_insert_fork_catchpoint, fbsd_remove_fork_catchpoint)
	(fbsd_insert_vfork_catchpoint, fbsd_remove_vfork_catchpoint)
	(fbsd_post_startup_inferior, fbsd_post_attach)
	(fbsd_insert_exec_catchpoint, fbsd_remove_exec_catchpoint)
	(fbsd_set_syscall_catchpoint)
	(super_xfer_partial, super_resume, super_wait)
	(fbsd_supports_stopped_by_hw_breakpoint): Delete.
	(fbsd_handle_debug_trap): Remove target_ops parameter.
	(fbsd_nat_add_target): Delete.
	* fbsd-nat.h: Include "inf-ptrace.h".
	(fbsd_nat_add_target): Delete.
	(USE_SIGTRAP_SIGINFO): Define.
	(fbsd_nat_target): New class.

	* amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers)
	(amd64bsd_store_inferior_registers): Remove target_ops parameter.
	(amd64bsd_target): Delete.
	* amd64-bsd-nat.h: New file.
	* amd64-fbsd-nat.c: Include "amd64-bsd-nat.h" instead of
	"x86-bsd-nat.h".
	(amd64_fbsd_nat_target): New class.
	(the_amd64_fbsd_nat_target): New.
	(amd64fbsd_read_description): Refactor as method of
	amd64_fbsd_nat_target.
	(amd64_fbsd_nat_target::supports_stopped_by_hw_breakpoint): New.
	(_initialize_amd64fbsd_nat): Adjust to C++ification.
	* amd64-nat.h (amd64bsd_target): Delete function declaration.
	* i386-bsd-nat.c (i386bsd_fetch_inferior_registers)
	(i386bsd_store_inferior_registers): Remove target_ops parameter.
	(i386bsd_target): Delete.
	* i386-bsd-nat.h (i386bsd_target): Delete function declaration.
	(i386bsd_fetch_inferior_registers)
	(i386bsd_store_inferior_registers): Declare.
	(i386_bsd_nat_target): New class.
	* i386-fbsd-nat.c (i386_fbsd_nat_target): New class.
	(the_i386_fbsd_nat_target): New.
	(i386fbsd_resume, i386fbsd_read_description): Refactor as
	i386_fbsd_nat_target methods.
	(i386_fbsd_nat_target::supports_stopped_by_hw_breakpoint): New.
	(_initialize_i386fbsd_nat): Adjust to C++ification.
	* x86-bsd-nat.c (super_mourn_inferior): Delete.
	(x86bsd_mourn_inferior, x86bsd_target): Delete.
	(_initialize_x86_bsd_nat): Adjust to C++ification.
	* x86-bsd-nat.h: Include "x86-nat.h".
	(x86bsd_target): Delete declaration.
	(x86bsd_nat_target): New class.

	* aarch64-fbsd-nat.c (aarch64_fbsd_nat_target): New class.
	(the_aarch64_fbsd_nat_target): New.
	(aarch64_fbsd_fetch_inferior_registers)
	(aarch64_fbsd_store_inferior_registers): Refactor as methods of
	aarch64_fbsd_nat_target.
	(_initialize_aarch64_fbsd_nat): Adjust to C++ification.
	* alpha-bsd-nat.c (alpha_bsd_nat_target): New class.
	(the_alpha_bsd_nat_target): New.
	(alphabsd_fetch_inferior_registers)
	(alphabsd_store_inferior_registers): Refactor as
	alpha_bsd_nat_target methods.
	(_initialize_alphabsd_nat): Refactor as methods of
	alpha_bsd_nat_target.
	* amd64-nbsd-nat.c: Include "amd64-bsd-nat.h".
	(the_amd64_nbsd_nat_target): New.
	(_initialize_amd64nbsd_nat): Adjust to C++ification.
	* amd64-obsd-nat.c: Include "amd64-bsd-nat.h".
	(the_amd64_obsd_nat_target): New.
	(_initialize_amd64obsd_nat): Adjust to C++ification.
	* arm-fbsd-nat.c (arm_fbsd_nat_target): New.
	(the_arm_fbsd_nat_target): New.
	(arm_fbsd_fetch_inferior_registers)
	(arm_fbsd_store_inferior_registers, arm_fbsd_read_description):
	(_initialize_arm_fbsd_nat): Refactor as methods of
	arm_fbsd_nat_target.
	(_initialize_arm_fbsd_nat): Adjust to C++ification.
	* arm-nbsd-nat.c (arm_netbsd_nat_target): New class.
	(the_arm_netbsd_nat_target): New.
	(armnbsd_fetch_registers, armnbsd_store_registers): Refactor as
	arm_netbsd_nat_target.
	(_initialize_arm_netbsd_nat): Adjust to C++ification.
	* hppa-nbsd-nat.c (hppa_nbsd_nat_target): New class.
	(the_hppa_nbsd_nat_target): New.
	(hppanbsd_fetch_registers, hppanbsd_store_registers): Refactor as
	hppa_nbsd_nat_target methods.
	(_initialize_hppanbsd_nat): Adjust to C++ification.
	* hppa-obsd-nat.c (hppa_obsd_nat_target): New class.
	(the_hppa_obsd_nat_target): New.
	(hppaobsd_fetch_registers, hppaobsd_store_registers): Refactor as
	methods of hppa_obsd_nat_target.
	(_initialize_hppaobsd_nat): Adjust to C++ification.  Use
	add_target.
	* i386-nbsd-nat.c (the_i386_nbsd_nat_target): New.
	(_initialize_i386nbsd_nat): Adjust to C++ification.  Use
	add_target.
	* i386-obsd-nat.c (the_i386_obsd_nat_target): New.
	(_initialize_i386obsd_nat): Use add_target.
	* m68k-bsd-nat.c (m68k_bsd_nat_target): New class.
	(the_m68k_bsd_nat_target): New.
	(m68kbsd_fetch_inferior_registers)
	(m68kbsd_store_inferior_registers): Refactor as methods of
	m68k_bsd_nat_target.
	(_initialize_m68kbsd_nat): Adjust to C++ification.
	* mips-fbsd-nat.c (mips_fbsd_nat_target): New class.
	(the_mips_fbsd_nat_target): New.
	(mips_fbsd_fetch_inferior_registers)
	(mips_fbsd_store_inferior_registers): Refactor as methods of
	mips_fbsd_nat_target.
	(_initialize_mips_fbsd_nat): Adjust to C++ification.  Use
	add_target.
	* mips-nbsd-nat.c (mips_nbsd_nat_target): New class.
	(the_mips_nbsd_nat_target): New.
	(mipsnbsd_fetch_inferior_registers)
	(mipsnbsd_store_inferior_registers): Refactor as methods of
	mips_nbsd_nat_target.
	(_initialize_mipsnbsd_nat): Adjust to C++ification.
	* mips64-obsd-nat.c (mips64_obsd_nat_target): New class.
	(the_mips64_obsd_nat_target): New.
	(mips64obsd_fetch_inferior_registers)
	(mips64obsd_store_inferior_registers): Refactor as methods of
	mips64_obsd_nat_target.
	(_initialize_mips64obsd_nat): Adjust to C++ification.  Use
	add_target.
	* nbsd-nat.c (nbsd_pid_to_exec_file): Refactor as method of
	nbsd_nat_target.
	* nbsd-nat.h: Include "inf-ptrace.h".
	(nbsd_nat_target): New class.
	* obsd-nat.c (obsd_pid_to_str, obsd_update_thread_list)
	(obsd_wait): Refactor as methods of obsd_nat_target.
	(obsd_add_target): Delete.
	* obsd-nat.h: Include "inf-ptrace.h".
	(obsd_nat_target): New class.
	* ppc-fbsd-nat.c (ppc_fbsd_nat_target): New class.
	(the_ppc_fbsd_nat_target): New.
	(ppcfbsd_fetch_inferior_registers)
	(ppcfbsd_store_inferior_registers): Refactor as methods of
	ppc_fbsd_nat_target.
	(_initialize_ppcfbsd_nat): Adjust to C++ification.  Use
	add_target.
	* ppc-nbsd-nat.c (ppc_nbsd_nat_target): New class.
	(the_ppc_nbsd_nat_target): New.
	(ppcnbsd_fetch_inferior_registers)
	(ppcnbsd_store_inferior_registers): Refactor as methods of
	ppc_nbsd_nat_target.
	(_initialize_ppcnbsd_nat): Adjust to C++ification.
	* ppc-obsd-nat.c (ppc_obsd_nat_target): New class.
	(the_ppc_obsd_nat_target): New.
	(ppcobsd_fetch_registers, ppcobsd_store_registers): Refactor as
	methods of ppc_obsd_nat_target.
	(_initialize_ppcobsd_nat): Adjust to C++ification.  Use
	add_target.
	* sh-nbsd-nat.c (sh_nbsd_nat_target): New class.
	(the_sh_nbsd_nat_target): New.
	(shnbsd_fetch_inferior_registers)
	(shnbsd_store_inferior_registers): Refactor as methods of
	sh_nbsd_nat_target.
	(_initialize_shnbsd_nat): Adjust to C++ification.
	* sparc-nat.c (sparc_xfer_wcookie): Make extern.
	(inf_ptrace_xfer_partial): Delete.
	(sparc_xfer_partial, sparc_target): Delete.
	* sparc-nat.h (sparc_fetch_inferior_registers)
	(sparc_store_inferior_registers, sparc_xfer_wcookie): Declare.
	(sparc_target): Delete function declaration.
	(sparc_target): New template class.
	* sparc-nbsd-nat.c (the_sparc_nbsd_nat_target): New.
	(_initialize_sparcnbsd_nat): Adjust to C++ification.
	* sparc64-fbsd-nat.c (the_sparc64_fbsd_nat_target): New.
	(_initialize_sparc64fbsd_nat): Adjust to C++ification.  Use
	add_target.
	* sparc64-nbsd-nat.c (the_sparc64_nbsd_nat_target): New.
	(_initialize_sparc64nbsd_nat): Adjust to C++ification.
	* sparc64-obsd-nat.c (the_sparc64_obsd_nat_target): New.
	(_initialize_sparc64obsd_nat): Adjust to C++ification.  Use
	add_target.
	* vax-bsd-nat.c (vax_bsd_nat_target): New class.
	(the_vax_bsd_nat_target): New.
	(vaxbsd_fetch_inferior_registers)
	(vaxbsd_store_inferior_registers): Refactor as vax_bsd_nat_target
	methods.
	(_initialize_vaxbsd_nat): Adjust to C++ification.

	* bsd-kvm.c (bsd_kvm_target): New class.
	(bsd_kvm_ops): Now a bsd_kvm_target.
	(bsd_kvm_open, bsd_kvm_close, bsd_kvm_xfer_partial)
	(bsd_kvm_files_info, bsd_kvm_fetch_registers)
	(bsd_kvm_thread_alive, bsd_kvm_pid_to_str): Refactor as methods of
	bsd_kvm_target.
	(bsd_kvm_return_one): Delete.
	(bsd_kvm_add_target): Adjust to C++ification.

	* nto-procfs.c (nto_procfs_target, nto_procfs_target_native)
	(nto_procfs_target_procfs): New classes.
	(procfs_open_1, procfs_thread_alive, procfs_update_thread_list)
	(procfs_files_info, procfs_pid_to_exec_file, procfs_attach)
	(procfs_post_attach, procfs_wait, procfs_fetch_registers)
	(procfs_xfer_partial, procfs_detach, procfs_insert_breakpoint)
	(procfs_remove_breakpoint, procfs_insert_hw_breakpoint)
	(procfs_remove_hw_breakpoint, procfs_resume)
	(procfs_mourn_inferior, procfs_create_inferior, procfs_interrupt)
	(procfs_kill_inferior, procfs_store_registers)
	(procfs_pass_signals, procfs_pid_to_str, procfs_can_run): Refactor
	as methods of nto_procfs_target.
	(nto_procfs_ops): Now an nto_procfs_target_procfs.
	(nto_native_ops): Delete.
	(procfs_open, procfs_native_open): Delete.
	(nto_native_ops): Now an nto_procfs_target_native.
	(init_procfs_targets): Adjust to C++ification.
	(procfs_can_use_hw_breakpoint, procfs_remove_hw_watchpoint)
	(procfs_insert_hw_watchpoint, procfs_stopped_by_watchpoint):
	Refactor as methods of nto_procfs_target.

	* go32-nat.c (go32_nat_target): New class.
	(the_go32_nat_target): New.
	(go32_attach, go32_resume, go32_wait, go32_fetch_registers)
	(go32_store_registers, go32_xfer_partial, go32_files_info)
	(go32_kill_inferior, go32_create_inferior, go32_mourn_inferior)
	(go32_terminal_init, go32_terminal_info, go32_terminal_inferior)
	(go32_terminal_ours, go32_pass_ctrlc, go32_thread_alive)
	(go32_pid_to_str): Refactor as methods of go32_nat_target.
	(go32_target): Delete.
	(_initialize_go32_nat): Adjust to C++ification.

	* gnu-nat.c (gnu_wait, gnu_resume, gnu_kill_inferior)
	(gnu_mourn_inferior, gnu_create_inferior, gnu_attach, gnu_detach)
	(gnu_stop, gnu_thread_alive, gnu_xfer_partial)
	(gnu_find_memory_regions, gnu_pid_to_str): Refactor as methods of
	gnu_nat_target.
	(gnu_target): Delete.
	* gnu-nat.h (gnu_target): Delete.
	(gnu_nat_target): New class.
	* i386-gnu-nat.c (gnu_base_target): New.
	(i386_gnu_nat_target): New class.
	(the_i386_gnu_nat_target): New.
	(_initialize_i386gnu_nat): Adjust to C++ification.

gdb/testsuite/ChangeLog:
2018-05-02  Pedro Alves  <palves@redhat.com>

	* gdb.base/breakpoint-in-ro-region.exp: Adjust to to_resume and
	to_log_command renames.
	* gdb.base/sss-bp-on-user-bp-2.exp: Likewise.
2018-05-03 00:48:36 +01:00
..
arch Explicitly specify common tdesc.h for use with aarch64.h 2018-02-27 16:30:40 +00:00
cli Add gdb::string_view 2018-04-09 14:20:46 -04:00
common Introduce ref_ptr::new_reference 2018-04-30 11:33:11 -06:00
compile Add libcc1 v1 compatibility to C compile feature 2018-04-27 12:36:19 -07:00
config Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
contrib Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
data-directory Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
doc Handle var_zuinteger and var_zuinteger_unlimited from Python 2018-05-02 10:31:55 -06:00
features Remove xml file references from target descriptions 2018-04-18 20:49:37 +01:00
gdbserver Enable -Wsuggest-override 2018-04-27 12:53:14 -06:00
gnulib Add silent Makefile rules 2018-03-16 16:30:25 -04:00
guile Remove a cleanup from scm-frame.c 2018-04-23 17:50:19 -06:00
mi Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
nat Implement "to_stopped_by_hw_breakpoint" for x86 debug registers. 2018-03-03 21:25:33 -08:00
po
python Handle var_zuinteger and var_zuinteger_unlimited from Python 2018-05-02 10:31:55 -06:00
regformats Create xml from target descriptions 2018-04-18 20:44:39 +01:00
stubs Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
syscalls Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
system-gdbinit Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
target Per-inferior target_terminal state, fix PR gdb/13211, more 2018-01-30 14:55:18 +00:00
testsuite Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
tui Convert observers to C++ 2018-03-19 09:37:49 -06:00
unittests Adapt and integrate string_view tests 2018-04-09 14:20:47 -04:00
.dir-locals.el Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
.gitignore Convert observers to C++ 2018-03-19 09:37:49 -06:00
aarch32-linux-nat.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch32-linux-nat.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch64-fbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
aarch64-fbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch64-fbsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch64-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
aarch64-linux-tdep.c Don't pass -m64 to libcc1 on aarch64-linux. 2018-01-17 12:48:52 +00:00
aarch64-linux-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch64-newlib-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aarch64-tdep.c Enable -Wsuggest-override 2018-04-27 12:53:14 -06:00
aarch64-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
acinclude.m4 Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
aclocal.m4 Remove ioctl-based procfs support on Solaris 2017-11-30 16:05:30 +01:00
acx_configure_dir.m4 Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ada-exp.y gdb: PR mi/20395: Fix -var-update for registers in frames 1 and up 2018-01-21 15:46:51 +00:00
ada-lang.c Change streq to return bool 2018-04-05 07:39:36 -06:00
ada-lang.h Remove references to ada_name_for_lookup (deleted) 2018-02-14 05:48:48 -05:00
ada-lex.l Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ada-operator.def Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ada-tasks.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
ada-typeprint.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ada-valprint.c (Ada) Fix print of array using non-contiguous enumeration indexes 2018-01-07 23:56:36 -05:00
ada-varobj.c Change varobj to use value_ref_ptr 2018-04-06 15:44:48 -06:00
addrmap.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
addrmap.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
agent.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
aix-thread.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
alpha-bsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
alpha-bsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
alpha-bsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
alpha-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
alpha-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
alpha-mdebug-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
alpha-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
alpha-obsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
alpha-tdep.c Introduce a gdb_ref_ptr specialization for struct value 2018-04-06 15:44:46 -06:00
alpha-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-bsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
amd64-bsd-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
amd64-darwin-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-darwin-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-dicos-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-fbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
amd64-fbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
amd64-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-linux-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-nat.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
amd64-nbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
amd64-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-obsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
amd64-obsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-sol2-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-tdep.c infrun: step through indirect branch thunks 2018-04-13 10:44:47 +02:00
amd64-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-windows-nat.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
amd64-windows-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
annotate.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
annotate.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arc-newlib-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arc-tdep.c Remove long_long_align_bit gdbarch attribute 2018-04-30 11:25:32 -06:00
arc-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arch-utils.c Add initial type alignment support 2018-04-30 11:25:30 -06:00
arch-utils.h Add initial type alignment support 2018-04-30 11:25:30 -06:00
arm-bsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-fbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
arm-fbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-fbsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
arm-linux-tdep.c Don't pass -m32 to libcc1 on arm-linux 2018-01-19 09:16:45 +00:00
arm-linux-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-nbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
arm-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-obsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-symbian-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-tdep.c Enable -Wsuggest-override 2018-04-27 12:53:14 -06:00
arm-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arm-wince-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
auto-load.c Iterate by index in auto_load_safe_path_vec_update 2018-04-10 16:50:59 -04:00
auto-load.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
auxv.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
auxv.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
avr-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ax-gdb.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ax-gdb.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ax-general.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ax.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ax_cxx_compile_stdcxx.m4 Update ax_cv_cxx_compile_cxx.m4 2018-04-09 14:09:24 -04:00
bcache.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bcache.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bfd-target.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
bfd-target.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bfin-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bfin-tdep.c class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value 2018-02-21 11:20:03 +00:00
bfin-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
block.c New class allocate_on_obstack 2018-02-16 16:20:58 +00:00
block.h Fix regresssion(internal-error) printing subprogram argument (PR gdb/22670) 2018-01-05 16:07:00 +00:00
blockframe.c Eliminate find_pc_partial_function_gnu_ifunc 2018-04-26 13:07:25 +01:00
break-catch-sig.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-catch-syscall.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
break-catch-throw.c Remove some is_mi_like_p from breakpoint code 2018-04-30 12:59:05 -06:00
breakpoint.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
breakpoint.h Fix setting breakpoints on ifunc functions after they're already resolved 2018-04-26 13:06:21 +01:00
bsd-kvm.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
bsd-kvm.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bsd-uthread.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
bsd-uthread.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
btrace.c btrace: set/show record btrace cpu 2018-04-13 11:35:55 +02:00
btrace.h btrace: set/show record btrace cpu 2018-04-13 11:35:55 +02:00
build-id.c Use std::string to simplify build_id_to_debug_bfd 2018-03-08 18:57:53 -05:00
build-id.h Make find_separate_debug_file* return std::string 2018-03-08 18:56:23 -05:00
buildsym.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
buildsym.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
c-exp.y Handle alignof and _Alignof 2018-04-30 11:25:31 -06:00
c-lang.c Handle alignof and _Alignof 2018-04-30 11:25:31 -06:00
c-lang.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
c-typeprint.c C++-ify typedef hash 2018-03-27 10:09:25 -06:00
c-valprint.c Fix regresssion(internal-error) printing subprogram argument (PR gdb/22670) 2018-01-05 16:07:00 +00:00
c-varobj.c Change varobj to use value_ref_ptr 2018-04-06 15:44:48 -06:00
ChangeLog Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ChangeLog-3.x
ChangeLog-1990
ChangeLog-1991
ChangeLog-1992
ChangeLog-1993
ChangeLog-1994
ChangeLog-1995
ChangeLog-1996
ChangeLog-1997
ChangeLog-1998
ChangeLog-1999
ChangeLog-2000
ChangeLog-2001
ChangeLog-2002
ChangeLog-2003
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008
ChangeLog-2009
ChangeLog-2010
ChangeLog-2011
ChangeLog-2012
ChangeLog-2013
ChangeLog-2014
ChangeLog-2015
ChangeLog-2016
ChangeLog-2017 Yearly rotation of the gdb/ChangeLog file 2018-01-02 07:38:05 +04:00
charset-list.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
charset.c C++ify charsets 2018-03-02 23:22:09 -05:00
charset.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cli-out.c Remove cli_ui_out::out_field_fmt 2018-04-24 07:34:03 -06:00
cli-out.h Reindent cli-out.h 2018-04-24 07:34:03 -06:00
coff-pe-read.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
coff-pe-read.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
coffread.c Make find_separate_debug_file* return std::string 2018-03-08 18:56:23 -05:00
command.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
complaints.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
complaints.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
completer.c Change streq to return bool 2018-04-05 07:39:36 -06:00
completer.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
config.in Per-inferior target_terminal state, fix PR gdb/13211, more 2018-01-30 14:55:18 +00:00
configure Enable -Wsuggest-override 2018-04-27 12:53:14 -06:00
configure.ac Add common/ dir in build directories 2018-02-19 09:37:24 +00:00
configure.host gdb: Remove OpenBSD/m88k support 2018-04-16 13:16:22 +01:00
configure.nat Make inf_ptrace_trad Linux-only, move to separate file 2018-05-03 00:47:32 +01:00
configure.tgt gdb: Remove support for SH-5/SH64 2018-04-16 13:20:15 +01:00
continuations.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
continuations.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
CONTRIBUTE
COPYING
copying.awk Constify add_info 2017-11-07 13:59:09 -07:00
copying.c Constify add_info 2017-11-07 13:59:09 -07:00
copyright.py Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
corefile.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
corelow.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
cp-abi.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cp-abi.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cp-name-parser.y Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cp-namespace.c Fix regresssion(internal-error) printing subprogram argument (PR gdb/22670) 2018-01-05 16:07:00 +00:00
cp-support.c Fix regresssion(internal-error) printing subprogram argument (PR gdb/22670) 2018-01-05 16:07:00 +00:00
cp-support.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cp-valprint.c Fix infinite recursion when printing static member with typedef 2018-04-02 12:53:43 -05:00
cris-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cris-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cris-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ctf.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ctf.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
d-exp.y gdb: New API for tracking innermost block 2018-01-21 15:15:47 +00:00
d-lang.c problem looking up some symbols when they have a linkage name 2018-03-27 09:57:16 -04:00
d-lang.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
d-namespace.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
d-valprint.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
darwin-nat-info.c Remove a use of is_mi_like_p from darwin-nat-info.c 2018-04-30 12:59:06 -06:00
darwin-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
darwin-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
dbxread.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dcache.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dcache.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
debug.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
defs.h Make "set osabi none" really work (PR 22980) 2018-04-07 13:23:28 -04:00
demangle.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dicos-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dicos-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dictionary.c language_get_symbol_name_matcher -> get_symbol_name_matcher 2018-01-10 23:12:48 +00:00
dictionary.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disable-implicit-rules.mk Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disasm-selftests.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disasm.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disasm.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dtrace-probe.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dummy-frame.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
dummy-frame.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dwarf-index-common.c Move DWARF index-related things to a separate file 2018-03-27 10:07:47 -04:00
dwarf-index-common.h Move DWARF index-related things to a separate file 2018-03-27 10:07:47 -04:00
dwarf-index-write.c Fix -D_GLIBCXX_DEBUG gdb-add-index regression 2018-04-12 22:31:39 +02:00
dwarf2-frame-tailcall.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dwarf2-frame-tailcall.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dwarf2-frame.c Enable -Wsuggest-override 2018-04-27 12:53:14 -06:00
dwarf2-frame.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dwarf2expr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dwarf2expr.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dwarf2loc.c Use new_reference for struct value 2018-04-30 11:33:11 -06:00
dwarf2loc.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dwarf2read.c Add initial type alignment support 2018-04-30 11:25:30 -06:00
dwarf2read.h Make dwarf2_per_objfile::all_type_units an std::vector 2018-04-07 13:53:44 -04:00
elfread.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
eval.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
event-loop.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
event-loop.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
event-top.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
event-top.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
exc_request.defs
exceptions.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
exceptions.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
exec.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
exec.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
expprint.c Handle alignof and _Alignof 2018-04-30 11:25:31 -06:00
expression.h Add inclusive range support for Rust 2018-04-27 13:20:13 -06:00
extension-priv.h Change frame_filter_flags to use DEF_ENUM_FLAGS_TYPE 2018-02-26 09:37:03 -07:00
extension.c C++-ify typedef hash 2018-03-27 10:09:25 -06:00
extension.h C++-ify typedef hash 2018-03-27 10:09:25 -06:00
f-exp.y gdb: New API for tracking innermost block 2018-01-21 15:15:47 +00:00
f-lang.c problem looking up some symbols when they have a linkage name 2018-03-27 09:57:16 -04:00
f-lang.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
f-typeprint.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
f-valprint.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
fbsd-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
fbsd-tdep.c Use the correct value for the offset of 'kve_protection'. 2018-01-12 12:05:50 -08:00
fbsd-tdep.h Support 'info proc' for FreeBSD process core dumps. 2018-01-09 13:35:17 -08:00
filename-seen-cache.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
filename-seen-cache.h Add include guard to filename-seen-cache.h 2018-03-26 15:31:11 -04:00
filesystem.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
filesystem.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
findcmd.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
findvar.c Introduce a gdb_ref_ptr specialization for struct value 2018-04-06 15:44:46 -06:00
fork-child.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
frame-base.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
frame-base.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
frame-unwind.c Fix GDB crash after Quit thrown from unwinder sniffer 2018-02-14 18:59:00 +00:00
frame-unwind.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
frame.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
frame.h Class readonly_detached_regcache 2018-02-21 11:20:03 +00:00
frv-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
frv-tdep.c class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value 2018-02-21 11:20:03 +00:00
frv-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ft32-tdep.c Remove some $ARCH_read_pc and $ARCH_write_pc 2018-02-06 17:31:33 +00:00
ft32-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore.in Improve gcore shell quoting and portability 2018-03-01 17:28:59 -05:00
gdb-code-style.el Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb-demangle.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb-dlfcn.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb-dlfcn.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb-gdb.gdb.in
gdb-gdb.py Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb-stabs.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb.gdb
gdb_bfd.c Remove new_bfd_ref 2018-04-30 11:33:11 -06:00
gdb_bfd.h Remove new_bfd_ref 2018-04-30 11:33:11 -06:00
gdb_buildall.sh Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_curses.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_expat.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_indent.sh
gdb_mbuild.sh Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_obstack.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_obstack.h New class allocate_on_obstack 2018-02-16 16:20:58 +00:00
gdb_proc_service.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_regex.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_regex.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_select.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_usleep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_usleep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_vfork.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_wchar.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdbarch-selftests.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
gdbarch.c Remove long_long_align_bit gdbarch attribute 2018-04-30 11:25:32 -06:00
gdbarch.h Remove long_long_align_bit gdbarch attribute 2018-04-30 11:25:32 -06:00
gdbarch.sh Remove long_long_align_bit gdbarch attribute 2018-04-30 11:25:32 -06:00
gdbcmd.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdbcore.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
gdbthread.h Replace finish_thread_state_cleanup with a RAII class 2018-04-10 14:49:30 +01:00
gdbtypes.c Add initial type alignment support 2018-04-30 11:25:30 -06:00
gdbtypes.h Add initial type alignment support 2018-04-30 11:25:30 -06:00
glibc-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
glibc-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gnu-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
gnu-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
gnu-v2-abi.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gnu-v3-abi.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
go-exp.y gdb: New API for tracking innermost block 2018-01-21 15:15:47 +00:00
go-lang.c problem looking up some symbols when they have a linkage name 2018-03-27 09:57:16 -04:00
go-lang.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
go-typeprint.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
go-valprint.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
go32-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
gregset.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
h8300-tdep.c class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value 2018-02-21 11:20:03 +00:00
hppa-bsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hppa-bsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hppa-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
hppa-linux-offsets.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hppa-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hppa-nbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
hppa-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hppa-obsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
hppa-obsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hppa-tdep.c Pass readable_regcache to gdbarch method read_pc 2018-02-21 11:20:03 +00:00
hppa-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-bsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
i386-bsd-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
i386-bsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-cygwin-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-darwin-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
i386-darwin-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-darwin-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-dicos-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-fbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
i386-fbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-fbsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-gnu-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
i386-gnu-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-go32-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
i386-linux-nat.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-linux-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-nbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
i386-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-nto-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-obsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
i386-obsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-sol2-nat.c More procfs.c simplification 2018-05-03 00:47:01 +01:00
i386-sol2-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-tdep.c Remove long_long_align_bit gdbarch attribute 2018-04-30 11:25:32 -06:00
i386-tdep.h class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value 2018-02-21 11:20:03 +00:00
i386-v4-nat.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i386-windows-nat.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i387-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
i387-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ia64-libunwind-tdep.c Fix ia64 GDB build 2018-03-12 09:15:39 +00:00
ia64-libunwind-tdep.h Fix ia64 GDB build 2018-03-12 09:15:39 +00:00
ia64-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ia64-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ia64-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ia64-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ia64-vms-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
inf-child.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
inf-child.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
inf-loop.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
inf-loop.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
inf-ptrace.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
inf-ptrace.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
infcall.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
infcall.h Calling ifunc functions when target has no debug info but resolver has 2018-04-26 13:04:48 +01:00
infcmd.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
inferior.c Enable 'set print inferior-events' and improve detach/fork/kill/exit messages 2018-04-24 15:46:15 -04:00
inferior.h Enable 'set print inferior-events' and improve detach/fork/kill/exit messages 2018-04-24 15:46:15 -04:00
inflow.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
inflow.h Per-inferior target_terminal state, fix PR gdb/13211, more 2018-01-30 14:55:18 +00:00
infrun.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
infrun.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
inline-frame.c Use an std::vector for inline_states 2018-04-09 15:40:45 -04:00
inline-frame.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
interps.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
interps.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
iq2000-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-reader.in Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit.c Remove long_long_align_bit gdbarch attribute 2018-04-30 11:25:32 -06:00
jit.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
language.c problem looking up some symbols when they have a linkage name 2018-03-27 09:57:16 -04:00
language.h problem looking up some symbols when they have a linkage name 2018-03-27 09:57:16 -04:00
libiberty.m4 Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
libmcheck.m4 Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
linespec.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
linespec.h Remove unnecessary include from linespec.h 2018-04-05 07:39:37 -06:00
linux-fork.c Class readonly_detached_regcache 2018-02-21 11:20:03 +00:00
linux-fork.h Remove args from target detach 2018-01-19 11:47:24 -05:00
linux-nat-trad.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
linux-nat-trad.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
linux-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
linux-record.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
linux-record.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
linux-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
linux-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
linux-thread-db.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
lm32-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
location.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
location.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
m2-exp.y gdb: New API for tracking innermost block 2018-01-21 15:15:47 +00:00
m2-lang.c problem looking up some symbols when they have a linkage name 2018-03-27 09:57:16 -04:00
m2-lang.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
m2-typeprint.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
m2-valprint.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
m32c-tdep.c class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value 2018-02-21 11:20:03 +00:00
m32r-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
m32r-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
m32r-tdep.c Remove some $ARCH_read_pc and $ARCH_write_pc 2018-02-06 17:31:33 +00:00
m32r-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
m68hc11-tdep.c Introduce a gdb_ref_ptr specialization for struct value 2018-04-06 15:44:46 -06:00
m68k-bsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
m68k-bsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
m68k-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
m68k-linux-tdep.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
m68k-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
m68k-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
machoread.c Change machoread.c to use std::vector 2018-03-23 10:04:57 -06:00
macrocmd.c Remove cleanups from macro_define_command 2018-02-08 11:46:56 -07:00
macroexp.c Use std::string in maybe_expand 2018-02-08 11:46:56 -07:00
macroexp.h Return unique_xmalloc_ptr from macro scope functions 2018-02-08 11:46:55 -07:00
macroscope.c Return unique_xmalloc_ptr from macro scope functions 2018-02-08 11:46:55 -07:00
macroscope.h Return unique_xmalloc_ptr from macro scope functions 2018-02-08 11:46:55 -07:00
macrotab.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
macrotab.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
main.c Create new common/pathstuff.[ch] 2018-02-28 11:34:39 -05:00
main.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
maint.c Fix prefix of maint set/show per-command 2018-02-13 00:33:04 -05:00
maint.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
MAINTAINERS gdb: Remove support for SH-5/SH64 2018-04-16 13:20:15 +01:00
make-target-delegates Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
Makefile.in Fix race when building ada-lex.c 2018-04-29 11:57:38 -04:00
mdebugread.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mdebugread.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mem-break.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
memattr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
memattr.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
memory-map.c Replace VEC(gdb_xml_value_s) with std::vector 2018-01-07 09:38:16 -05:00
memory-map.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
memrange.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
memrange.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mep-tdep.c Introduce a gdb_ref_ptr specialization for struct value 2018-04-06 15:44:46 -06:00
microblaze-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
microblaze-tdep.c Remove some $ARCH_read_pc and $ARCH_write_pc 2018-02-06 17:31:33 +00:00
microblaze-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mingw-hdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
minidebug.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
minsyms.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
minsyms.h Fix stepping past GNU ifunc resolvers (introduce lookup_msym_prefer) 2018-04-26 13:08:47 +01:00
mips-fbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
mips-fbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips-fbsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
mips-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips-linux-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips-nbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
mips-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips-nbsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips-sde-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips-tdep.c MIPS: Don't use a 32-bit BFD architecture with a 64-bit ABI 2018-02-26 19:43:17 +00:00
mips-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips64-obsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
mips64-obsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mipsread.c Change read_alphacoff_dynamic_symtab to use gdb::byte_vector 2018-04-03 12:03:33 -06:00
mn10300-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mn10300-tdep.c Remove some $ARCH_read_pc and $ARCH_write_pc 2018-02-06 17:31:33 +00:00
mn10300-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
moxie-tdep.c Remove some $ARCH_read_pc and $ARCH_write_pc 2018-02-06 17:31:33 +00:00
moxie-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
msg.defs
msg_reply.defs
msp430-tdep.c class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value 2018-02-21 11:20:03 +00:00
namespace.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
namespace.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
nbsd-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nbsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nds32-tdep.c class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value 2018-02-21 11:20:03 +00:00
nds32-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
NEWS Expose type alignment on gdb.Type 2018-04-30 11:25:31 -06:00
nios2-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nios2-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nios2-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
notify.defs
nto-procfs.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
nto-tdep.c Create new common/pathstuff.[ch] 2018-02-28 11:34:39 -05:00
nto-tdep.h Change openp et al to use a unique_xmalloc_ptr 2018-02-14 08:09:53 -07:00
objc-lang.c More use of std::vector in linespec.c 2018-04-05 07:39:37 -06:00
objc-lang.h More use of std::vector in linespec.c 2018-04-05 07:39:37 -06:00
objfile-flags.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
objfiles.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
objfiles.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
obsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
obsd-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
obsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
obsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
observable.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
observable.h Convert observers to C++ 2018-03-19 09:37:49 -06:00
opencl-lang.c Introduce a gdb_ref_ptr specialization for struct value 2018-04-06 15:44:46 -06:00
or1k-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
or1k-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
osabi.c Fix generation of x86-64 gdbarch with osabi none (PR 22979) 2018-04-07 13:34:59 -04:00
osabi.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
osdata.c Make target_read_alloc & al return vectors 2018-04-07 13:19:12 -04:00
osdata.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
p-exp.y gdb: New API for tracking innermost block 2018-01-21 15:15:47 +00:00
p-lang.c problem looking up some symbols when they have a linkage name 2018-03-27 09:57:16 -04:00
p-lang.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
p-typeprint.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
p-valprint.c Fix regresssion(internal-error) printing subprogram argument (PR gdb/22670) 2018-01-05 16:07:00 +00:00
parse.c Add inclusive range support for Rust 2018-04-27 13:20:13 -06:00
parser-defs.h gdb: PR mi/20395: Fix -var-update for registers in frames 1 and up 2018-01-21 15:46:51 +00:00
posix-hdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-fbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ppc-fbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-fbsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ppc-linux-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ppc-linux-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-nbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ppc-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-nbsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-obsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ppc-obsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-obsd-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-ravenscar-thread.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-ravenscar-thread.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-sysv-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ppc-tdep.h PowerPC PLT stub matching 2018-01-26 16:13:03 +10:30
ppc64-tdep.c PowerPC PLT stub matching 2018-01-26 16:13:03 +10:30
ppc64-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
printcmd.c Change last_examine_value to value_ref_ptr 2018-04-06 15:44:47 -06:00
probe.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
probe.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
PROBLEMS
proc-api.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
proc-events.c proc-events.c: fix compilation on Solaris 2018-04-29 12:05:10 -04:00
proc-flags.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
proc-service.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
proc-service.list Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
proc-utils.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
proc-why.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
process_reply.defs
procfs.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
procfs.h More procfs.c simplification 2018-05-03 00:47:01 +01:00
producer.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
producer.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
progspace-and-thread.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
progspace-and-thread.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
progspace.c Defer breakpoint reset when cloning progspace for fork child 2018-04-07 13:51:59 -04:00
progspace.h Make program_space::deleted_solibs a vector of std::string 2018-03-02 23:22:09 -05:00
prologue-value.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
prologue-value.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
psympriv.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
psymtab.c Change openp et al to use a unique_xmalloc_ptr 2018-02-14 08:09:53 -07:00
psymtab.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ptrace.m4 Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ravenscar-thread.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
ravenscar-thread.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
README Target FP: Make use of MPFR if available 2017-11-22 13:53:43 +01:00
record-btrace.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
record-btrace.h btrace: set/show record btrace cpu 2018-04-13 11:35:55 +02:00
record-full.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
record-full.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
record.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
record.h Pass inferior down to target_detach and to_detach 2018-01-19 11:47:57 -05:00
regcache-dump.c Move register_dump to regcache-dump.c 2018-02-21 11:20:03 +00:00
regcache.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
regcache.h Move register_dump to regcache-dump.c 2018-02-21 11:20:03 +00:00
reggroups.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
reggroups.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
registry.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
registry.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
regset.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
remote-fileio.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
remote-fileio.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
remote-notif.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
remote-notif.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
remote-sim.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
remote.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
remote.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
reply_mig_hack.awk Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
reverse.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
riscv-tdep.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
riscv-tdep.h gdb/riscv: Remove 'Contributed by....' comments 2018-03-06 19:12:46 +00:00
rl78-tdep.c class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value 2018-02-21 11:20:03 +00:00
rs6000-aix-tdep.c Use gdb::byte_vector when reading section data 2018-03-12 08:24:17 -06:00
rs6000-aix-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
rs6000-lynx178-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
rs6000-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
rs6000-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
rs6000-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
rust-exp.y rust: Fix null deref when casting (PR 23124) 2018-04-30 23:02:01 -06:00
rust-lang.c Remove rust_type_alignment 2018-04-30 11:25:32 -06:00
rust-lang.h Convert Rust to use discriminated unions 2018-02-26 09:21:08 -07:00
rx-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
s390-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
s390-linux-tdep.c s390: Fix gdb.base/all-architectures.exp with --enable-targets=all 2018-01-30 17:10:08 +01:00
s390-linux-tdep.h s390: Fix gdb.base/all-architectures.exp with --enable-targets=all 2018-01-30 17:10:08 +01:00
s390-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
s390-tdep.h s390: Fix gdb.base/all-architectures.exp with --enable-targets=all 2018-01-30 17:10:08 +01:00
score-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
score-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
selftest-arch.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
selftest-arch.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sentinel-frame.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sentinel-frame.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-base.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-base.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-event.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-event.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-go32.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-mingw.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-pipe.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-tcp.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-tcp.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-unix.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ser-unix.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
serial.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
serial.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sh-linux-tdep.c gdb: Remove support for SH-5/SH64 2018-04-16 13:20:15 +01:00
sh-nbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sh-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sh-tdep.c gdb: Remove support for SH-5/SH64 2018-04-16 13:20:15 +01:00
sh-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
silent-rules.mk Add silent Makefile rules 2018-03-16 16:30:25 -04:00
sim-regno.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
skip.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
skip.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sol-thread.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sol2-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sol2-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-aix.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
solib-aix.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-darwin.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
solib-darwin.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-dsbt.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
solib-frv.c Change target_read_string to use unique_xmalloc_ptr 2018-03-30 13:22:58 -06:00
solib-spu.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
solib-spu.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-svr4.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
solib-svr4.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-target.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
solib-target.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
solib.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solist.h Constify target_so_ops::bfd_open 2018-02-14 08:09:53 -07:00
source.c Use scoped_fd in more places 2018-03-08 22:00:08 -07:00
source.h Change openp et al to use a unique_xmalloc_ptr 2018-02-14 08:09:53 -07:00
sparc-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sparc-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sparc-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sparc-nbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sparc-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc-obsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc-ravenscar-thread.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc-ravenscar-thread.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc-sol2-nat.c More procfs.c simplification 2018-05-03 00:47:01 +01:00
sparc-sol2-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sparc-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-fbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sparc64-fbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sparc64-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-nat.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-nbsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sparc64-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-obsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sparc64-obsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-sol2-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sparc64-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sparc64-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
spu-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
spu-multiarch.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
spu-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
spu-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stabsread.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stabsread.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stack.c Introduce a gdb_ref_ptr specialization for struct value 2018-04-06 15:44:46 -06:00
stack.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stap-probe.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stap-probe.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
std-operator.def Handle alignof and _Alignof 2018-04-30 11:25:31 -06:00
std-regs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stub-termcap.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
symfile-add-flags.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
symfile-debug.c Convert observers to C++ 2018-03-19 09:37:49 -06:00
symfile-mem.c Remove new_bfd_ref 2018-04-30 11:33:11 -06:00
symfile.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
symfile.h Remove make_cleanup_free_section_addr_info 2018-03-16 14:22:13 -06:00
symmisc.c For PPC64/ELFv1: Introduce mst_data_gnu_ifunc 2018-04-26 13:09:16 +01:00
symtab.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
symtab.h For PPC64/ELFv1: Introduce mst_data_gnu_ifunc 2018-04-26 13:09:16 +01:00
target-dcache.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
target-dcache.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
target-debug.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
target-delegates.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
target-descriptions.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
target-descriptions.h Commonise tdesc types and makes use of them in gdbserver tdesc 2018-04-18 14:00:39 +01:00
target-float.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
target-float.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
target-memory.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
target.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
target.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
terminal.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thread-fsm.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thread-fsm.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
thread.c Improve on-line help for thread_apply_command and thread_apply_all_command. 2018-04-20 23:15:18 +02:00
tic6x-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
tic6x-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
tic6x-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
tid-parse.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
tid-parse.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
tilegx-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
tilegx-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
tilegx-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
tilegx-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
top.c [Ada/ravenscar] error during "continue" after task/thread switch 2018-04-30 18:13:23 -04:00
top.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
tracefile-tfile.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
tracefile.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
tracefile.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
tracepoint.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
tracepoint.h Remove VEC(tsv_s), use std::vector instead 2018-04-09 15:16:19 -04:00
trad-frame.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
trad-frame.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
tramp-frame.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
tramp-frame.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
transform.m4 Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
typeprint.c C++-ify typedef hash 2018-03-27 10:09:25 -06:00
typeprint.h C++-ify typedef hash 2018-03-27 10:09:25 -06:00
ui-file.c Implement write_async_safe for mi_console_file (PR 22299) 2018-04-07 13:48:06 -04:00
ui-file.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ui-out.c Make do_is_mi_like_p const. 2018-04-30 12:59:03 -06:00
ui-out.h Make do_is_mi_like_p const. 2018-04-30 12:59:03 -06:00
unwind_stop_reasons.def Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
user-regs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
user-regs.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
utils.c Implement write_async_safe for mi_console_file (PR 22299) 2018-04-07 13:48:06 -04:00
utils.h Implement write_async_safe for mi_console_file (PR 22299) 2018-04-07 13:48:06 -04:00
v850-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
valarith.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
valops.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
valprint.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
valprint.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
value.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
value.h Use new_reference for struct value 2018-04-30 11:33:11 -06:00
varobj-iter.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
varobj.c Change Python code to use new_reference 2018-04-30 11:33:12 -06:00
varobj.h Change varobj to use value_ref_ptr 2018-04-06 15:44:48 -06:00
vax-bsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
vax-nbsd-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vax-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vax-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
version.in Bump version to 8.1.50.DATE-git. 2018-01-05 08:08:09 +04:00
warning.m4 Enable -Wsuggest-override 2018-04-27 12:53:14 -06:00
windows-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
windows-nat.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
windows-tdep.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
windows-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
x86-bsd-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
x86-bsd-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
x86-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
x86-linux-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
x86-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
x86-nat.h Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
x86-tdep.c infrun: step through indirect branch thunks 2018-04-13 10:44:47 +02:00
x86-tdep.h infrun: step through indirect branch thunks 2018-04-13 10:44:47 +02:00
xcoffread.c Remove make_cleanup_free_section_addr_info 2018-03-16 14:22:13 -06:00
xcoffread.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
xml-support.c Make target_read_alloc & al return vectors 2018-04-07 13:19:12 -04:00
xml-support.h Make target_read_alloc & al return vectors 2018-04-07 13:19:12 -04:00
xml-syscall.c Make target_read_alloc & al return vectors 2018-04-07 13:19:12 -04:00
xml-syscall.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
xml-tdesc.c Create xml from target descriptions 2018-04-18 20:44:39 +01:00
xml-tdesc.h Create xml from target descriptions 2018-04-18 20:44:39 +01:00
xstormy16-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
xtensa-config.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
xtensa-linux-nat.c Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
xtensa-linux-tdep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
xtensa-tdep.c class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value 2018-02-21 11:20:03 +00:00
xtensa-tdep.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
xtensa-xtregs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
yy-remap.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

		     README for GDB release

This is GDB, the GNU source-level debugger.

A summary of new features is in the file `gdb/NEWS'.

Check the GDB home page at http://www.gnu.org/software/gdb/ for up to
date release information, mailing list links and archives, etc.

The file `gdb/PROBLEMS' contains information on problems identified
late in the release cycle.  GDB's bug tracking data base at
http://www.gnu.org/software/gdb/bugs/ contains a more complete list of
bugs.


Unpacking and Installation -- quick overview
==========================

   The release is provided as a gzipped tar file called
'gdb-VERSION.tar.gz', where VERSION is the version of GDB.

   The GDB debugger sources, the generic GNU include
files, the BFD ("binary file description") library, the readline
library, and other libraries all have directories of their own
underneath the gdb-VERSION directory.  The idea is that a variety of GNU
tools can share a common copy of these things.  Be aware of variation
over time--for example don't try to build GDB with a copy of bfd from
a release other than the GDB release (such as a binutils release),
especially if the releases are more than a few weeks apart.
Configuration scripts and makefiles exist to cruise up and down this
directory tree and automatically build all the pieces in the right
order.

   When you unpack the gdb-VERSION.tar.gz file, it will create a
source directory called `gdb-VERSION'.

You can build GDB right in the source directory:

      cd gdb-VERSION
      ./configure
      make
      cp gdb/gdb /usr/local/bin/gdb	(or wherever you want)

However, we recommend that an empty directory be used instead.
This way you do not clutter your source tree with binary files
and will be able to create different builds with different 
configuration options.

You can build GDB in any empty build directory:

      mkdir build
      cd build
      <full path to your sources>/gdb-VERSION/configure
      make
      cp gdb/gdb /usr/local/bin/gdb	(or wherever you want)

(Building GDB with DJGPP tools for MS-DOS/MS-Windows is slightly
different; see the file gdb-VERSION/gdb/config/djgpp/README for details.)

   This will configure and build all the libraries as well as GDB.  If
`configure' can't determine your system type, specify one as its
argument, e.g., `./configure sun4' or `./configure decstation'.

   Make sure that your 'configure' line ends in 'gdb-VERSION/configure':

      /berman/migchain/source/gdb-VERSION/configure      # RIGHT
      /berman/migchain/source/gdb-VERSION/gdb/configure  # WRONG

   The GDB package contains several subdirectories, such as 'gdb',
'bfd', and 'readline'.  If your 'configure' line ends in
'gdb-VERSION/gdb/configure', then you are configuring only the gdb
subdirectory, not the whole GDB package.  This leads to build errors
such as:

      make: *** No rule to make target `../bfd/bfd.h', needed by `gdb.o'.  Stop.

   If you get other compiler errors during this stage, see the `Reporting
Bugs' section below; there are a few known problems.

   GDB requires an ISO C (ANSI C) compiler.  If you do not have an ISO
C compiler for your system, you may be able to download and install
the GNU CC compiler.  It is available via anonymous FTP from the
directory `ftp://ftp.gnu.org/pub/gnu/gcc'.  GDB also requires an ISO
C standard library.  The GDB remote server, GDBserver, builds with some
non-ISO standard libraries - e.g. for Windows CE.

   GDB uses Expat, an XML parsing library, to implement some target-specific
features.  Expat will be linked in if it is available at build time, or
those features will be disabled.  The latest version of Expat should be
available from `http://expat.sourceforge.net'.

   GDB uses GNU MPFR, a library for multiple-precision floating-point
computation with correct rounding, to emulate target floating-point
arithmetic during expression evaluation when the target uses different
floating-point formats than the host.  MPFR will be linked in if it is
available at build time.  If GNU MPFR it is not available, GDB will fall
back to using host floating-point arithmetic.  The latest version of
GNU MPFR should be available from `http://www.mpfr.org'.

   GDB can be used as a cross-debugger, running on a machine of one
type while debugging a program running on a machine of another type.
See below.


More Documentation
******************

   All the documentation for GDB comes as part of the machine-readable
distribution.  The documentation is written in Texinfo format, which
is a documentation system that uses a single source file to produce
both on-line information and a printed manual.  You can use one of the
Info formatting commands to create the on-line version of the
documentation and TeX (or `texi2roff') to typeset the printed version.

   GDB includes an already formatted copy of the on-line Info version
of this manual in the `gdb/doc' subdirectory.  The main Info file is
`gdb-VERSION/gdb/doc/gdb.info', and it refers to subordinate files
matching `gdb.info*' in the same directory.  If necessary, you can
print out these files, or read them with any editor; but they are
easier to read using the `info' subsystem in GNU Emacs or the
standalone `info' program, available as part of the GNU Texinfo
distribution.

   If you want to format these Info files yourself, you need one of the
Info formatting programs, such as `texinfo-format-buffer' or
`makeinfo'.

   If you have `makeinfo' installed, and are in the top level GDB
source directory (`gdb-VERSION'), you can make the Info file by
typing:

      cd gdb/doc
      make info

   If you want to typeset and print copies of this manual, you need
TeX, a program to print its DVI output files, and `texinfo.tex', the
Texinfo definitions file.  This file is included in the GDB
distribution, in the directory `gdb-VERSION/texinfo'.

   TeX is a typesetting program; it does not print files directly, but
produces output files called DVI files.  To print a typeset document,
you need a program to print DVI files.  If your system has TeX
installed, chances are it has such a program.  The precise command to
use depends on your system; `lpr -d' is common; another (for PostScript
devices) is `dvips'.  The DVI print command may require a file name
without any extension or a `.dvi' extension.

   TeX also requires a macro definitions file called `texinfo.tex'. 
This file tells TeX how to typeset a document written in Texinfo
format.  On its own, TeX cannot read, much less typeset a Texinfo file.
 `texinfo.tex' is distributed with GDB and is located in the
`gdb-VERSION/texinfo' directory.

   If you have TeX and a DVI printer program installed, you can typeset
and print this manual.  First switch to the `gdb' subdirectory of
the main source directory (for example, to `gdb-VERSION/gdb') and then type:

      make doc/gdb.dvi

   If you prefer to have the manual in PDF format, type this from the
`gdb/doc' subdirectory of the main source directory:

      make gdb.pdf

For this to work, you will need the PDFTeX package to be installed.


Installing GDB
**************

   GDB comes with a `configure' script that automates the process of
preparing GDB for installation; you can then use `make' to build the
`gdb' program.

   The GDB distribution includes all the source code you need for GDB in
a single directory.  That directory contains:

`gdb-VERSION/{COPYING,COPYING.LIB}'
     Standard GNU license files.  Please read them.

`gdb-VERSION/bfd'
     source for the Binary File Descriptor library

`gdb-VERSION/config*'
     script for configuring GDB, along with other support files

`gdb-VERSION/gdb'
     the source specific to GDB itself

`gdb-VERSION/include'
     GNU include files

`gdb-VERSION/libiberty'
     source for the `-liberty' free software library

`gdb-VERSION/opcodes'
     source for the library of opcode tables and disassemblers

`gdb-VERSION/readline'
     source for the GNU command-line interface
     NOTE:  The readline library is compiled for use by GDB, but will
     not be installed on your system when "make install" is issued.

`gdb-VERSION/sim'
     source for some simulators (ARM, D10V, SPARC, M32R, MIPS, PPC, V850, etc)

`gdb-VERSION/texinfo'
     The `texinfo.tex' file, which you need in order to make a printed
     manual using TeX.

`gdb-VERSION/etc'
     Coding standards, useful files for editing GDB, and other
     miscellanea.

   Note: the following instructions are for building GDB on Unix or
Unix-like systems.  Instructions for building with DJGPP for
MS-DOS/MS-Windows are in the file gdb/config/djgpp/README.

   The simplest way to configure and build GDB is to run `configure'
from the `gdb-VERSION' directory.

   First switch to the `gdb-VERSION' source directory if you are
not already in it; then run `configure'.

   For example:

      cd gdb-VERSION
      ./configure
      make

   Running `configure' followed by `make' builds the `bfd',
`readline', `mmalloc', and `libiberty' libraries, then `gdb' itself.
The configured source files, and the binaries, are left in the
corresponding source directories.

   `configure' is a Bourne-shell (`/bin/sh') script; if your system
does not recognize this automatically when you run a different shell,
you may need to run `sh' on it explicitly:

      sh configure

   If you run `configure' from a directory that contains source
directories for multiple libraries or programs, `configure' creates
configuration files for every directory level underneath (unless
you tell it not to, with the `--norecursion' option).

   You can install `gdb' anywhere; it has no hardwired paths. However,
you should make sure that the shell on your path (named by the `SHELL'
environment variable) is publicly readable.  Remember that GDB uses the
shell to start your program--some systems refuse to let GDB debug child
processes whose programs are not readable.


Compiling GDB in another directory
==================================

   If you want to run GDB versions for several host or target machines,
you need a different `gdb' compiled for each combination of host and
target.  `configure' is designed to make this easy by allowing you to
generate each configuration in a separate subdirectory, rather than in
the source directory.  If your `make' program handles the `VPATH'
feature correctly (GNU `make' and SunOS 'make' are two that should),
running `make' in each of these directories builds the `gdb' program
specified there.

   To build `gdb' in a separate directory, run `configure' with the
`--srcdir' option to specify where to find the source. (You also need
to specify a path to find `configure' itself from your working
directory.  If the path to `configure' would be the same as the
argument to `--srcdir', you can leave out the `--srcdir' option; it
will be assumed.)

   For example, you can build GDB in a separate
directory for a Sun 4 like this:

     cd gdb-VERSION
     mkdir ../gdb-sun4
     cd ../gdb-sun4
     ../gdb-VERSION/configure
     make

   When `configure' builds a configuration using a remote source
directory, it creates a tree for the binaries with the same structure
(and using the same names) as the tree under the source directory.  In
the example, you'd find the Sun 4 library `libiberty.a' in the
directory `gdb-sun4/libiberty', and GDB itself in `gdb-sun4/gdb'.

   One popular reason to build several GDB configurations in separate
directories is to configure GDB for cross-compiling (where GDB runs on
one machine--the host--while debugging programs that run on another
machine--the target).  You specify a cross-debugging target by giving
the `--target=TARGET' option to `configure'.

   When you run `make' to build a program or library, you must run it
in a configured directory--whatever directory you were in when you
called `configure' (or one of its subdirectories).

   The `Makefile' that `configure' generates in each source directory
also runs recursively.  If you type `make' in a source directory such
as `gdb-VERSION' (or in a separate configured directory configured with
`--srcdir=PATH/gdb-VERSION'), you will build all the required libraries,
and then build GDB.

   When you have multiple hosts or targets configured in separate
directories, you can run `make' on them in parallel (for example, if
they are NFS-mounted on each of the hosts); they will not interfere
with each other.


Specifying names for hosts and targets
======================================

   The specifications used for hosts and targets in the `configure'
script are based on a three-part naming scheme, but some short
predefined aliases are also supported.  The full naming scheme encodes
three pieces of information in the following pattern:

     ARCHITECTURE-VENDOR-OS

   For example, you can use the alias `sun4' as a HOST argument or in a
`--target=TARGET' option.  The equivalent full name is
`sparc-sun-sunos4'.

   The `configure' script accompanying GDB does not provide any query
facility to list all supported host and target names or aliases. 
`configure' calls the Bourne shell script `config.sub' to map
abbreviations to full names; you can read the script, if you wish, or
you can use it to test your guesses on abbreviations--for example:

     % sh config.sub sun4
     sparc-sun-sunos4.1.1
     % sh config.sub sun3
     m68k-sun-sunos4.1.1
     % sh config.sub decstation
     mips-dec-ultrix4.2
     % sh config.sub hp300bsd
     m68k-hp-bsd
     % sh config.sub i386v
     i386-pc-sysv
     % sh config.sub i786v
     Invalid configuration `i786v': machine `i786v' not recognized

`config.sub' is also distributed in the GDB source directory.


`configure' options
===================

   Here is a summary of the `configure' options and arguments that are
most often useful for building GDB.  `configure' also has several other
options not listed here.  *note : (configure.info)What Configure Does,
for a full explanation of `configure'.

     configure [--help]
               [--prefix=DIR]
               [--srcdir=PATH]
               [--norecursion] [--rm]
	       [--enable-build-warnings]
               [--target=TARGET]
	       [--host=HOST]
	       [HOST]

You may introduce options with a single `-' rather than `--' if you
prefer; but you may abbreviate option names if you use `--'.

`--help'
     Display a quick summary of how to invoke `configure'.

`-prefix=DIR'
     Configure the source to install programs and files under directory
     `DIR'.

`--srcdir=PATH'
     *Warning: using this option requires GNU `make', or another `make'
     that compatibly implements the `VPATH' feature.*
     Use this option to make configurations in directories separate
     from the GDB source directories.  Among other things, you can use
     this to build (or maintain) several configurations simultaneously,
     in separate directories.  `configure' writes configuration
     specific files in the current directory, but arranges for them to
     use the source in the directory PATH.  `configure' will create
     directories under the working directory in parallel to the source
     directories below PATH.

`--host=HOST'
     Configure GDB to run on the specified HOST.

     There is no convenient way to generate a list of all available
     hosts.

`HOST ...'
     Same as `--host=HOST'.  If you omit this, GDB will guess; it's
     quite accurate.

`--norecursion'
     Configure only the directory level where `configure' is executed;
     do not propagate configuration to subdirectories.

`--rm'
     Remove the configuration that the other arguments specify.

`--enable-build-warnings'
     When building the GDB sources, ask the compiler to warn about any
     code which looks even vaguely suspicious.  You should only using
     this feature if you're compiling with GNU CC.  It passes the
     following flags:
	-Wimplicit
	-Wreturn-type
	-Wcomment
	-Wtrigraphs
	-Wformat
	-Wparentheses
	-Wpointer-arith

`--enable-werror'
     Treat compiler warnings as werrors.  Use this only with GCC.  It
     adds the -Werror flag to the compiler, which will fail the
     compilation if the compiler outputs any warning messages.

`--target=TARGET'
     Configure GDB for cross-debugging programs running on the specified
     TARGET.  Without this option, GDB is configured to debug programs
     that run on the same machine (HOST) as GDB itself.

     There is no convenient way to generate a list of all available
     targets.

`--with-gdb-datadir=PATH'
     Set the GDB-specific data directory.  GDB will look here for
     certain supporting files or scripts.  This defaults to the `gdb'
     subdirectory of `datadir' (which can be set using `--datadir').

`--with-relocated-sources=DIR'
     Sets up the default source path substitution rule so that
     directory names recorded in debug information will be
     automatically adjusted for any directory under DIR.  DIR should
     be a subdirectory of GDB's configured prefix, the one mentioned
     in the `--prefix' or `--exec-prefix' options to configure.  This
     option is useful if GDB is supposed to be moved to a different
     place after it is built.

`--enable-64-bit-bfd'
     Enable 64-bit support in BFD on 32-bit hosts.

`--disable-gdbmi'
     Build GDB without the GDB/MI machine interface.

`--enable-tui'
     Build GDB with the text-mode full-screen user interface (TUI).
     Requires a curses library (ncurses and cursesX are also
     supported).

`--enable-gdbtk'
     Build GDB with the gdbtk GUI interface.  Requires TCL/Tk to be
     installed.

`--with-libunwind-ia64'
     Use the libunwind library for unwinding function call stack on ia64
     target platforms.
     See http://www.nongnu.org/libunwind/index.html for details.

`--with-curses'
     Use the curses library instead of the termcap library, for
     text-mode terminal operations.

`--enable-profiling' Enable profiling of GDB itself.  Necessary if you
     want to use the "maint set profile" command for profiling GDB.
     Requires the functions `monstartup' and `_mcleanup' to be present
     in the standard C library used to build GDB, and also requires a
     compiler that supports the `-pg' option.

`--with-system-readline'
     Use the readline library installed on the host, rather than the
     library supplied as part of GDB tarball.

`--with-expat'
     Build GDB with the libexpat library.  (Done by default if
     libexpat is installed and found at configure time.)  This library
     is used to read XML files supplied with GDB.  If it is
     unavailable, some features, such as remote protocol memory maps,
     target descriptions, and shared library lists, that are based on
     XML files, will not be available in GDB.  If your host does not
     have libexpat installed, you can  get the latest version from
     http://expat.sourceforge.net.

`--with-mpfr'
     Build GDB with the GNU MPFR library.  (Done by default if
     GNU MPFR is installed and found at configure time.)  This library
     is used to emulate target floating-point arithmetic during expression
     evaluation when the target uses different floating-point formats than
     the host.  If GNU MPFR is not available, GDB will fall back to using
     host floating-point arithmetic.  If your host does not have GNU MPFR
     installed, you can get the latest version from http://www.mpfr.org.

`--with-python[=PATH]'
     Build GDB with Python scripting support.  (Done by default if
     libpython is present and found at configure time.)  Python makes
     GDB scripting much more powerful than the restricted CLI
     scripting language.  If your host does not have Python installed,
     you can find it on http://www.python.org/download/.  The oldest
     version of Python supported by GDB is 2.4.  The optional argument
     PATH says where to find the Python headers and libraries; the
     configure script will look in PATH/include for headers and in
     PATH/lib for the libraries.

`--without-included-regex'
     Don't use the regex library included with GDB (as part of the
     libiberty library).  This is the default on hosts with version 2
     of the GNU C library.

`--with-sysroot=DIR'
     Use DIR as the default system root directory for libraries whose
     file names begin with `/lib' or `/usr/lib'.  (The value of DIR
     can be modified at run time by using the "set sysroot" command.)
     If DIR is under the GDB configured prefix (set with `--prefix' or
     `--exec-prefix' options), the default system root will be
     automatically adjusted if and when GDB is moved to a different
     location.

`--with-system-gdbinit=FILE'
     Configure GDB to automatically load a system-wide init file.
     FILE should be an absolute file name.  If FILE is in a directory
     under the configured prefix, and GDB is moved to another location
     after being built, the location of the system-wide init file will
     be adjusted accordingly. 

`configure' accepts other options, for compatibility with configuring
other GNU tools recursively; but these are the only options that affect
GDB or its supporting libraries.


Remote debugging
=================

   The files m68k-stub.c, i386-stub.c, and sparc-stub.c are examples
of remote stubs to be used with remote.c.  They are designed to run
standalone on an m68k, i386, or SPARC cpu and communicate properly
with the remote.c stub over a serial line.

   The directory gdb/gdbserver/ contains `gdbserver', a program that
allows remote debugging for Unix applications.  GDBserver is only
supported for some native configurations, including Sun 3, Sun 4, and
Linux.
The file gdb/gdbserver/README includes further notes on GDBserver; in
particular, it explains how to build GDBserver for cross-debugging
(where GDBserver runs on the target machine, which is of a different
architecture than the host machine running GDB).

   There are a number of remote interfaces for talking to existing ROM
monitors and other hardware:

	remote-mips.c	 MIPS remote debugging protocol
	remote-sds.c	 PowerPC SDS monitor
	remote-sim.c	 Generalized simulator protocol


Reporting Bugs in GDB
=====================

   There are several ways of reporting bugs in GDB.  The prefered
method is to use the World Wide Web:

      http://www.gnu.org/software/gdb/bugs/

As an alternative, the bug report can be submitted, via e-mail, to the
address "bug-gdb@gnu.org".

   When submitting a bug, please include the GDB version number, and
how you configured it (e.g., "sun4" or "mach386 host,
i586-intel-synopsys target").  Since GDB now supports so many
different configurations, it is important that you be precise about
this.  If at all possible, you should include the actual banner
that GDB prints when it starts up, or failing that, the actual
configure command that you used when configuring GDB.

   For more information on how/whether to report bugs, see the
Reporting Bugs chapter of the GDB manual (gdb/doc/gdb.texinfo).


Graphical interface to GDB -- X Windows, MS Windows
==========================

   Several graphical interfaces to GDB are available.  You should
check:

	http://www.gnu.org/software/gdb/links/

for an up-to-date list.

   Emacs users will very likely enjoy the Grand Unified Debugger mode;
try typing `M-x gdb RET'.


Writing Code for GDB
=====================

   There is information about writing code for GDB in the file
`CONTRIBUTE' and at the website:

	http://www.gnu.org/software/gdb/

in particular in the wiki.

   If you are pondering writing anything but a short patch, especially
take note of the information about copyrights and copyright assignment.
It can take quite a while to get all the paperwork done, so
we encourage you to start that process as soon as you decide you are
planning to work on something, or at least well ahead of when you
think you will be ready to submit the patches.


GDB Testsuite
=============

   Included with the GDB distribution is a DejaGNU based testsuite
that can either be used to test your newly built GDB, or for
regression testing a GDB with local modifications.

   Running the testsuite requires the prior installation of DejaGNU,
which is generally available via ftp.  The directory
ftp://sources.redhat.com/pub/dejagnu/ will contain a recent snapshot.
Once DejaGNU is installed, you can run the tests in one of the
following ways:

  (1)	cd gdb-VERSION
	make check-gdb

or

  (2)	cd gdb-VERSION/gdb
	make check

or

  (3)	cd gdb-VERSION/gdb/testsuite
	make site.exp	(builds the site specific file)
	runtest -tool gdb GDB=../gdb    (or GDB=<somepath> as appropriate)

When using a `make'-based method, you can use the Makefile variable
`RUNTESTFLAGS' to pass flags to `runtest', e.g.:

	make RUNTESTFLAGS=--directory=gdb.cp check

If you use GNU make, you can use its `-j' option to run the testsuite
in parallel.  This can greatly reduce the amount of time it takes for
the testsuite to run.  In this case, if you set `RUNTESTFLAGS' then,
by default, the tests will be run serially even under `-j'.  You can
override this and force a parallel run by setting the `make' variable
`FORCE_PARALLEL' to any non-empty value.  Note that the parallel `make
check' assumes that you want to run the entire testsuite, so it is not
compatible with some dejagnu options, like `--directory'.

The last method gives you slightly more control in case of problems
with building one or more test executables or if you are using the
testsuite `standalone', without it being part of the GDB source tree.

See the DejaGNU documentation for further details.


Copyright and License Notices
=============================

Most files maintained by the GDB Project contain a copyright notice
as well as a license notice, usually at the start of the file.

To reduce the length of copyright notices, consecutive years in the
copyright notice can be combined into a single range.  For instance,
the following list of copyright years...

    1986, 1988, 1989, 1991-1993, 1999, 2000, 2007, 2008, 2009, 2010, 2011

... is abbreviated into:

    1986, 1988-1989, 1991-1993, 1999-2000, 2007-2011

Every year of each range, inclusive, is a copyrightable year that
could be listed individually.


(this is for editing this file with GNU emacs)
Local Variables:
mode: text
End: