* Makefile.in (mips-linux-nat.o): Update dependencies.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index b20f0e9ebf65cae3824399ca46fc7faa50d22e11..1c331b7802fbf0f140d8b5d7373a1c595a80d595 100644 (file)
@@ -1,3 +1,265 @@
+2004-02-01  Daniel Jacobowitz  <drow@mvista.com>
+
+       * Makefile.in (mips-linux-nat.o): Update dependencies.
+       * mips-linux-nat.c: Include mips-tdep.h.
+
+2004-02-01  Roland McGrath  <roland@redhat.com>
+
+       * sol-thread.c (sol_thread_xfer_partial): New function.
+       (init_sol_thread_ops): Use that for to_xfer_partial hook.
+       (init_sol_core_ops): Likewise.
+
+       * procfs.c (procfs_xfer_partial): New function.
+       (init_procfs_ops): Use that for procfs_ops.to_xfer_partial.
+       * Makefile.in (procfs.o): Add $(auxv_h) dep.
+
+       * config/nm-linux.h (NATIVE_XFER_AUXV): New macro, uses auxv.c's
+       procfs_xfer_auxv function.
+
+       * procfs.c (procfs_make_note_section): If we can read
+       TARGET_OBJECT_AUXV data, add an NT_AUXV note containing it.
+       * linux-proc.c (linux_make_note_section): Likewise.
+
+       * auxv.h: New file.
+       * auxv.c: New file.
+       * Makefile.in (auxv_h): New variable.
+       (COMMON_OBS): Add auxv.o here.
+       (auxv.o): New target.
+
+       * corelow.c (core_xfer_partial): New function.
+       (init_core_ops): Use it for core_ops.to_xfer_partial.
+
+       * target.h (enum target_object): Add TARGET_OBJECT_AUXV.
+       * inftarg.c (child_xfer_partial): Support it using NATIVE_XFER_AUXV
+       macro if that is defined.
+
+2004-02-01  Daniel Jacobowitz  <drow@mvista.com>
+
+       * breakpoint.c (bpstat_stop_status): Take a ptid_t argument,
+       and check the specified thread for each breakpoint.
+       * breakpoint.h (bpstat_stop_status): Update prototype.
+       * infrun.c (handle_inferior_event): Update calls to
+       bpstat_stop_status.
+
+2004-02-01  Daniel Jacobowitz  <drow@mvista.com>
+
+       * Makefile.in (cli-cmds.o): Add $(readline_h).
+
+2004-02-01  Daniel Jacobowitz  <drow@mvista.com>
+
+       * cli/cli-cmds.c: Include readline.h.
+       (complete_command): Pass the start of the last word to
+       complete_line.
+
+2004-01-31  Daniel Jacobowitz  <drow@mvista.com>
+
+       * breakpoint.c (bpstat_stop_status): Remove not_a_sw_breakpoint
+       argument, and change first argument to a CORE_ADDR.
+       * breakpoint.h (bpstat_stop_status): Update prototype.
+       * infrun.c (adjust_pc_after_break): Add a new comment.
+       (handle_inferior_event): Update calls to bpstat_stop_status.
+
+2004-01-31  Daniel Jacobowitz  <drow@mvista.com>
+
+       * breakpoint.h: Update copyright years.
+
+2004-01-31  Daniel Jacobowitz  <drow@mvista.com>
+
+       * breakpoint.c (software_breakpoint_inserted_here_p): New function.
+       (bpstat_stop_status): Don't decrement PC.
+       * breakpoint.h (software_breakpoint_inserted_here_p): Add
+       prototype.
+       * infrun.c (adjust_pc_after_break): New function.
+       (handle_inferior_event): Call it, early.  Remove later references
+       to DECR_PC_AFTER_BREAK.
+       (normal_stop): Add commentary.
+
+2004-01-31  Daniel Jacobowitz  <drow@mvista.com>
+
+       * breakpoint.c (breakpoint_re_set_one): Add missing chunk of
+       2004-01-27 double-free fix.
+
+2004-01-31  Mark Kettenis  <kettenis@gnu.org>
+
+       * sparc-tdep.c (sparc_fetch_wcookie): New function.
+       (sparc32_frame_prev_register): Handle StackGhost.
+       (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
+
+2004-01-29  Roland McGrath  <roland@redhat.com>
+
+       * configure.in (NEW_PROC_API): Also match solaris2.9 for this test.
+       * configure: Regenerated.
+
+       * procfs.c: Include gdb_string.h for str* decls, otherwise warnings.
+       * Makefile.in (procfs.o): Add dep.
+
+2004-01-28  Andrew Cagney  <cagney@redhat.com>
+
+       * tui/tui-stack.h: Update copyright.
+       (struct frame_info): Add opaque declaration.
+       (tui_update_locator_filename): Rename tuiUpdateLocatorFilename.
+       (tui_show_locator_content): Rename tuiShowLocatorContent.
+       (tui_show_frame_info): Rename tuiShowFrameInfo.
+       * tui/tui-stack.c: Update copyright.  Update references.
+       * tui/tui-winsource.c: Update references.
+       * tui/tui-win.c: Update references.
+       * tui/tui-layout.c: Update references.
+       * tui/tui-hooks.c: Update copyright, update references.
+       * tui/tui.c: Update copyright, update references.
+       * tui/tui-disasm.c: Update references.
+
+2004-01-28  David Carlton  <carlton@kealia.com>
+
+       * dwarf2read.c (add_partial_structure): Use demangled name if
+       namespace equals "".
+
+2004-01-27  Jim Blandy  <jimb@redhat.com>
+
+       Clean up misapplied patch:
+       * dwarf2read.c (determine_prefix): Change one of the two forward
+       declarations for 'determine_prefix_aux' to a declaration for this.
+       (read_func_scope): Use cu->language, not cu_language.  Pass 'cu'
+       argument to 'die_specification'.
+
+       * dwarf2read.c (read_func_scope): Re-indent comment.
+
+2004-01-27  Paul N. Hilfinger  <hilfinger@gnat.com>
+
+       * breakpoint.c (breakpoint_re_set_one): Set b->cond, b->val, and
+       b->exp to NULL after freeing so that error during re-parsing or
+       evaluation of expressions associated with breakpoint don't
+       eventually lead to re-freeing of storage.
+       Committed by Andrew Cagney.
+
+2004-01-27  Andrew Cagney  <cagney@redhat.com>
+
+       * source.c (ambiguous_line_spec): Delete undefined declaration.
+       * m32r-rom.c (m32r_set_board_address): Delete unused function.
+       (m32r_set_server_address, m32r_set_download_path): Ditto.
+       * remote-fileio.c (remote_fileio_to_fio_int): Ditto.
+
+2004-01-27  Daniel Jacobowitz  <drow@mvista.com>
+
+       * dwarf2read.c: Update calls to changed and renamed functions, and
+       references to moved variables.
+
+       (struct dwarf2_cu): Add first_fn, last_fn, cached_fn,
+       language, language_defn, list_in_scope, and ftypes members.
+       (cu_first_fn, cu_last_fn, cu_cached_fn, cu_language)
+       (cu_language_defn, list_in_scope, ftypes, cu_header_offset)
+       (baseaddr): Remove globals.
+
+       (dwarf_attr): Renamed to dwarf2_attr.  Add CU argument.
+       (set_cu_language, die_is_declaration, die_specification)
+       (determine_prefix, determin_prefix_aux, class_name, namespace_name)
+       (dwarf2_linkage_name, dwarf2_name, dwarf2_extension)
+       (dwarf2_get_ref_die_offset, dwarf2_fundamental_type)
+       (initialize_cu_func_list, add_to_cu_func_list): Add CU argument.
+
+       (dwarf2_build_psymtabs_hard): Add local baseaddr.  Initialize
+       cu.list_in_scope.  Don't initialize cu_header_offset.
+       (add_partial_symbol): Add local baseaddr.
+       (psymtab_to_symtab_1): Add local baseaddr.  Use
+       objfile->section_offsets for consistency.  Don't initialize
+       cu_header_offset; do initialize cu.header.offset and
+       cu.list_in_scope.
+       (read_file_scope, read_func_scope, read_lexical_block_scope)
+       (dwarf_decode_lines, new_symbol): Add local baseaddr.
+
+2004-01-27  Michael Chastain  <mec.gnu@mindspring.com>
+
+       * PROBLEMS: Add gdb/1516.
+
+2003-12-29  Robert Millan  <robertmh@gnu.org>
+
+       Patch committed by Andrw Cagney.
+       * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
+       * configure.tgt: Match knetbsd*-gnu.
+
+2004-01-26  Andrew Cagney  <cagney@redhat.com>
+
+       * breakpoint.c (catch_command_1): Delete #ifdef code.
+       (catch_fork_command_1): Delete #ifdef wrapper.
+       (catch_exec_command_1): Ditto.
+       (catch_load_command_1): Ditto.
+       (catch_unload_command_1): Ditto.
+
+       * breakpoint.c (watchpoint_check): Delete #if0ed variable.
+       (catch_breakpoint): Delete #if0ed function.
+       (disable_catch_breakpoint): Ditto.
+       (delete_catch_breakpoint, enable_catch_breakpoint): Ditto.
+       (disable_catch, enable_catch, delete_catch): Ditto.
+
+2004-01-26  Andrew Cagney  <cagney@redhat.com>
+
+       * remote.c (echo_check, quit_flag): Delete variables.
+       (cisco_kernel_mode): Delete variable.
+       (minitelnet_return, tty_input, escape_count): Delete variables.
+       (remote_cisco_mode): Delete variable.
+       (remote_cisco_open, remote_cisco_close): Delete function.
+       (remote_cisco_mourn, remote_cisco_wait): Delete function.
+       (init_remote_cisco_ops): Delete function.
+       (_initialize_remote): Do not install "remote cisco" code.
+       (read_frame): Delete cisco specific code.
+       (remote_info_process): Delete function.
+       (remote_wait): Delete cisco specific code.
+       (remote_cisco_section_offsets): Delete function.
+       (remote_cisco_objfile_relocate): Delete function.
+       (remote_async_wait): Delete cisco specific code.
+       (minitelnet, readtty, readsocket): Delete function.
+
+2004-01-26  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (EXTRACT_STRUCT_VALUE_ADDRESS): Deprecate.  Add
+       comments mentioning extract_returned_value_address.
+       * infcmd.c (print_return_value): Update.  Add comments on
+       extract_returned_value_address.
+       * stack.c (return_command): Add comments on
+       extract_returned_value_address.
+       * values.c: Update comment.
+       * m32r-tdep.c: Update comment.
+       * sparc-tdep.c: Update comment.
+       * ia64-tdep.c (ia64_use_struct_convention): Update comment.
+       * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
+       * sh64-tdep.c (sh64_gdbarch_init): Update.
+       * sh-tdep.c (sh_gdbarch_init): Update.
+       * s390-tdep.c (s390_gdbarch_init): Update.
+       * rs6000-tdep.c (rs6000_gdbarch_init): Update.
+       * m68klinux-tdep.c (m68k_linux_init_abi): Update.
+       * m68k-tdep.c (m68k_gdbarch_init): Update.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
+       * m32r-tdep.c (m32r_gdbarch_init): Update.
+       * ia64-tdep.c (ia64_gdbarch_init): Update.
+       * h8300-tdep.c (h8300_gdbarch_init): Update.
+       * frv-tdep.c (frv_gdbarch_init): Update.
+       * arm-tdep.c (arm_gdbarch_init): Update.
+       * alpha-tdep.c (alpha_gdbarch_init): Update.
+
+2004-01-26  Andrew Cagney  <cagney@redhat.com>
+
+       * dwarf2loc.c (dwarf_expr_frame_base): Use SYMBOL_OPS instead of
+       SYMBOL_LOCATION_FUNCS
+       (dwarf2_loclist_funcs, dwarf2_locexpr_funcs): Change type to
+       "struct symbol_ops".
+       * dwarf2loc.h (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Change
+       type to "struct symbol_ops".
+       * symtab.h (struct symbol_ops): Rename "struct location_funcs".
+       (struct symbol): Replace ".aux_value.loc.funcs" and
+       ".aux_value.loc.baton" with ".ops" and ".aux_value.ptr".
+       (SYMBOL_OBJFILE): Delete macro.
+       (SYMBOL_LOCATION_FUNCS): Delete macro.
+       (SYMBOL_LOCATION_BATON): Update.
+       * dwarf2read.c (dwarf2_symbol_mark_computed): Set SYMBOL_OPS
+       intead of SYMBOL_LOCATION_FUNCS.
+       * ax-gdb.c (gen_var_ref): Ditto.
+       * printcmd.c (address_info): Ditto.
+       * findvar.c (read_var_value): Ditto.
+       (symbol_read_needs_frame): Ditto.
+
+2004-01-26  Andrew Cagney  <cagney@redhat.com>
+
+       * dwarf2read.c (read_func_scope): Document frame-base hack.
+
 2004-01-25  Mark Kettenis  <kettenis@gnu.org>
 
        * infcmd.c (print_return_value): Plug memory leak; delete
This page took 0.026015 seconds and 4 git commands to generate.