* acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 0499e908ffd5cd574eeedd30cd9c09b03f55146f..9e93ecba5c1daa874692861acb1c84754791262e 100644 (file)
@@ -1,3 +1,813 @@
+2002-04-14  Andrew Cagney  <ac131313@redhat.com>
+
+       * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
+       * aclocal.m4, configure: Re-generate.
+       Fix PR gdb/391.
+       
+2002-04-14  Elena Zannoni  <ezannoni@redhat.com>
+
+        * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
+        instead of tm_print_insn.
+
+2002-04-14  Elena Zannoni  <ezannoni@redhat.com>
+
+       * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
+
+2002-04-14  Andrew Cagney  <ac131313@redhat.com>
+
+       * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
+       * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
+       (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
+
+2002-04-12  Don Howard  <dhoward@redhat.com>
+
+       * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
+       max_user_call_depth.
+       (init_cmd_lists): Initialize the new value;
+       * cli/cli-script.c (execute_user_command): Limit the call depth of
+       user defined commands.  This avoids a core-dump when user commands
+       are infinitly recursive.
+
+2002-04-12  Kevin Buettner  <kevinb@redhat.com>
+
+       * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
+       * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
+       from tdep struct instead of DEFAULT_LR_SAVE.
+       (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
+       * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
+       * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
+
+2002-04-12  Michael Snyder  <msnyder@redhat.com>
+
+       * Remote.c: Spelling fix.
+       * gcore.c (default_derive_heap_segment): Use bfd_section_name.
+       If no symbol found for "sbrk", try "_sbrk".
+       (make_output_phdrs): Use bfd_section_name.
+       (gcore_copy_callback): Use bfd_section_name.
+       * eval.c: Indentation fix-ups.
+       * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
+       in case it gets applied to an address that is already
+       in the instruction space.
+       * cli/cli-decode.c (help_list): Allow long lines to wrap.
+       * symfile.c: Fix indentation, long lines.
+       * source.c: White space fix-up.
+
+2002-04-12  Andrew Cagney  <cagney@redhat.com>
+
+       * defs.h (read_relative_register_raw_bytes): Delete declaration.
+       * frame.c (frame_register_read): New function.  Return non-zero on
+       success.
+       (read_relative_register_raw_bytes_for_frame): Delete.
+       (read_relative_register_raw_bytes): Delete.
+       * frame.h (frame_register_read): Declare.
+       * d30v-tdep.c: Update Copyright.  Use frame_register_read.
+       * sh-tdep.c: Ditto.
+       * infcmd.c (do_registers_info): Ditto.
+       * hppa-tdep.c: Ditto.
+       * rs6000-tdep.c: Ditto.
+       * h8500-tdep.c: Ditto.
+       * mips-tdep.c: Ditto.
+       * h8300-tdep.c: Ditto.
+       * z8k-tdep.c: Ditto.
+
+2002-04-12  Kevin Buettner  <kevinb@redhat.com>
+
+       From Jimi X <jimix@watson.ibm.com>:
+       * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
+       64-bit SysV ABI.
+
+2002-04-12  Kevin Buettner  <kevinb@redhat.com>
+
+       From Jimi X <jimix@watson.ibm.com>:
+       * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
+       bfd info.
+
+2002-04-12  Kevin Buettner  <kevinb@redhat.com>
+
+       From Jimi X <jimix@watson.ibm.com>:
+       * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
+       register sets for these processor variants.
+
+2002-04-11  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdbserver/linux-low.c (usr_store_inferior_registers): Support
+       registers which are allowed to fail to store.
+       * gdbserver/linux-low.h (linux_target_ops): Likewise.
+       * gdbserver/linux-ppc-low.c (ppc_regmap): Support FPSCR.
+       (ppc_cannot_store_register): FPSCR may not be storable.
+       * regformats/reg-ppc.dat: Support FPSCR.
+
+2002-04-11  Kevin Buettner  <kevinb@redhat.com>
+
+       * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
+       * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
+       Add fpscr as an invalid/unfetchable register.
+       * ppc-linux-nat.c (ppc_register_u_addr, store_register)
+       (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
+       (fill_fpregset): Add support for register fpscr.
+       (fetch_ppc_registers, store_ppc_registers, supply_gregset)
+       (fill_gregset): Account for the fact that register ``mq'' might
+       not exist.
+       * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
+       (registers_power): Add fpscr to register set at slot 71.
+       (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
+       exist on most PPC architectures.  Initialize ppc_fpscr_regnum.
+
+2002-04-11  Michael Snyder  <msnyder@redhat.com>
+
+       * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
+       * configure: Regenerate.
+       * config.in: Regenerate.
+       * acconfig.h: Add define for _SYSCALL32.
+       * core-sol2.c: Remove #define _SYSCALL32.
+       * solib-legacy.c: Remove #define _SYSCALL32.
+
+2002-04-10  Andrew Cagney  <ac131313@redhat.com>
+
+       * stack.c (select_frame): Cleanup internal error message, do not
+       use %p.
+
+2002-04-10  Andrew Cagney  <ac131313@redhat.com>
+
+       * stack.c (select_frame): Check that selected_frame and the
+       specified level are as expected.
+       * blockframe.c (get_prev_frame): Set the `level' from next_frame.
+       Update copyright.
+       * frame.h (struct frame_info): Add field `level'.  Update
+       copyright.
+       Work-in-progress PR gdb/464.
+
+2002-04-10  Andrew Cagney  <ac131313@redhat.com>
+
+       * maint.c (maint_print_section_info): Rename print_section_info.
+       (print_bfd_section_info, print_objfile_section_info): Update.
+       * inferior.h (struct gdbarch): Add opaque declaration.
+       * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
+       * gdbarch.h: Regenerate.
+
+2002-04-10  Michal Ludvig  <mludvig@suse.cz>
+
+       * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
+       (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
+       (kernel_u_size): Added.
+       * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
+       (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
+
+2002-04-04  Jim Ingham  <jingham@apple.com>
+       * valarith.c (find_size_for_pointer_math): New function, either returns
+       the size for a pointer's target, returns 1 for void *, or errors for
+       incomplete types.
+       (value_add, value_sub): use find_size_for_pointer_math.
+
+2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
+
+       * linux-low.c (linux_look_up_symbols): New hook.
+       (linux_target_ops): Add linux_look_up_symbols.
+       * remote-utils.c (decode_address): New function.
+       (look_up_one_symbol): New function.
+       * server.c (handle_query): Call target look_up_symbols hook.
+       * server.h (look_up_one_symbol): Add prototype.
+       * target.h (struct target_ops): Add look_up_symbols hook.
+
+2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdbserver/server.h: Include <string.h> if HAVE_STRING_H.
+       * ChangeLog: Correct paths in last ChangeLog entry.
+
+2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdbserver/linux-low.h: Remove obsolete prototypes.
+       (struct linux_target_ops): New.
+       (extern the_low_target): New.
+       * gdbserver/linux-low.c (num_regs, regmap): Remove declarations.
+       (register_addr): Use the_low_target explicitly.
+       (fetch_register): Likewise.
+       (usr_fetch_inferior_registers): Likewise.
+       (usr_store_inferior_registers): Likewise.
+       * gdbserver/linux-arm-low.c (num_regs): Remove.
+       (arm_num_regs): Define.
+       (arm_regmap): Renamed from regmap, made static.
+       (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
+       made static.
+       (arm_cannot_store_register): Renamed from cannot_store_register,
+       made static.
+       (the_low_target): New.
+       * gdbserver/linux-i386-low.c (num_regs): Remove.
+       (i386_num_regs): Define.
+       (i386_regmap): Renamed from regmap, made static.
+       (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
+       made static.
+       (i386_cannot_store_register): Renamed from cannot_store_register,
+       made static.
+       (the_low_target): New.
+       * gdbserver/linux-ia64-low.c (num_regs): Remove.
+       (ia64_num_regs): Define.
+       (ia64_regmap): Renamed from regmap, made static.
+       (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
+       made static.
+       (ia64_cannot_store_register): Renamed from cannot_store_register,
+       made static.
+       (the_low_target): New.
+       * gdbserver/linux-m68k-low.c (num_regs): Remove.
+       (m68k_num_regs): Define.
+       (m68k_regmap): Renamed from regmap, made static.
+       (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
+       made static.
+       (m68k_cannot_store_register): Renamed from cannot_store_register,
+       made static.
+       (the_low_target): New.
+       * gdbserver/linux-mips-low.c (num_regs): Remove.
+       (mips_num_regs): Define.
+       (mips_regmap): Renamed from regmap, made static.
+       (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
+       made static.
+       (mips_cannot_store_register): Renamed from cannot_store_register,
+       made static.
+       (the_low_target): New.
+       * gdbserver/linux-ppc-low.c (num_regs): Remove.
+       (ppc_num_regs): Define.
+       (ppc_regmap): Renamed from regmap, made static.
+       (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
+       made static.
+       (ppc_cannot_store_register): Renamed from cannot_store_register,
+       made static.
+       (the_low_target): New.
+       * gdbserver/linux-s390-low.c (num_regs): Remove.
+       (s390_num_regs): Define.
+       (s390_regmap): Renamed from regmap, made static.
+       (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
+       made static.
+       (s390_cannot_store_register): Renamed from cannot_store_register,
+       made static.
+       (the_low_target): New.
+       * gdbserver/linux-sh-low.c (num_regs): Remove.
+       (sh_num_regs): Define.
+       (sh_regmap): Renamed from regmap, made static.
+       (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
+       made static.
+       (sh_cannot_store_register): Renamed from cannot_store_register,
+       made static.
+       (the_low_target): New.
+       * gdbserver/linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
+       (the_low_target): New.
+
+2002-04-09  Andrew Cagney  <ac131313@redhat.com>
+
+       * frame.c (read_relative_register_raw_bytes_for_frame): Do not
+       override FP_REGNUM with frame->fp.  Update copyright.
+       * parse.c (num_std_regs, std_regs): Delete.
+       (target_map_name_to_register): Do not search std_regs.  Update
+       function description.
+       * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
+       declarations.  Update copyright.
+       Fix PR gdb/251.
+       
+2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdbserver/Makefile.in: Add stamp-h target.
+       * gdbserver/configure.in: Create stamp-h.
+       * gdbserver/configure: Regenerated.
+
+2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdbserver/inferiors.c: New file.
+       * gdbserver/target.c: New file.
+       * gdbserver/target.h: New file.
+       * gdbserver/Makefile.in:  Add target.o and inferiors.o.  Update
+       dependencies.
+       * gdbserver/linux-low.c (inferior_pid): New static variable,
+       moved from server.c.
+       (linux_create_inferior): Renamed from create_inferior.
+       Call add_inferior.  Return 0 on success instead of a PID.
+       (linux_attach): Renamed from myattach.
+       (linux_kill): Renamed from kill_inferior.  Call clear_inferiors ().
+       (linux_thread_alive): Renamed from mythread_alive.
+       (linux_wait): Renamed from mywait.  Call clear_inferiors () if the
+       child dies.
+       (linux_resume): Renamed from myresume.  Add missing ``return 0''.
+       (regsets_store_inferior_registers): Correct error message.
+       Add missing ``return 0''.
+       (linux_fetch_registers): Renamed from fetch_inferior_registers.
+       (linux_store_registers): Renamed from store_inferior_registers.
+       (linux_read_memory): Renamed from read_inferior_memory.
+       (linux_write_memory): Renamed from write_inferior_memory.
+       (linux_target_ops): New structure.
+       (initialize_low): Call set_target_ops ().
+       * gdbserver/remote-utils.c (unhexify): New function.
+       (hexify): New function.
+       (input_interrupt): Send signals to ``signal_pid''.
+       * gdbserver/server.c (inferior_pid): Remove.
+       (start_inferior): Update create_inferior call.
+       (attach_inferior): Call add_inferior.
+       (handle_query): New function.
+       (main): Call handle_query for `q' packets.
+       * gdbserver/server.h: Include "target.h".  Remove obsolete prototypes.
+       Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
+
+2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdbserver/Makefile.in: Add WARN_CFLAGS.  Update configury
+       dependencies.
+       * gdbserver/configure.in: Check for <string.h>
+       * gdbserver/configure: Regenerate.
+       * gdbserver/config.in: Regenerate.
+       * gdbserver/gdbreplay.c: Include needed system headers.
+       (remote_open): Remove strchr prototype.
+       * gdbserver/linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
+       * gdbserver/regcache.c (supply_register): Change buf argument to const void *.
+       (supply_register_by_name): Likewise.
+       (collect_register): Change buf argument to void *.
+       (collect_register_by_name): Likewise.
+       * gdbserver/regcache.h: Add missing prototypes.
+       * gdbserver/remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
+       * gdbserver/server.c (handle_query): New function.
+       (attached): New static variable, moved out of main.
+       (main): Quiet longjmp clobber warnings.
+       * gdbserver/server.h: Add ATTR_NORETURN and ATTR_FORMAT.  Update prototypes.
+       * gdbserver/utils.c (error): Remove NORETURN.
+       (fatal): Likewise.
+
+2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
+
+       * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
+       after the last symbol in a block.
+
+2002-04-09  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
+       is non zero as a found symbol.
+
+2002-04-08  Andrew Cagney  <ac131313@redhat.com>
+
+       * findvar.c: Include "builtin-regs.h".
+       (value_of_register): Call value_of_builtin_reg when applicable.
+       * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
+       (target_map_name_to_register): Call
+       builtin_reg_map_name_to_regnum.
+       * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
+       (COMMON_OBS): Add builtin-regs.o and std-regs.o.
+       (builtin_regs_h): Define.
+       (builtin-regs.o): New target.
+       (findvar.o): Add $(builtin_regs_h).
+       * builtin-regs.c, builtin-regs.h: New files.
+       * std-regs.c: New file.
+       Partial fix for PR gdb/251.
+
+2002-04-08  Kevin Buettner  <kevinb@redhat.com>
+
+       * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
+       it's no longer required.
+
+2002-04-08  Andrew Cagney  <ac131313@redhat.com>
+
+       * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
+
+2002-04-08  Kevin Buettner  <kevinb@redhat.com>
+
+       From Jimi X <jimix@watson.ibm.com>:
+       * rs6000-tdep.c (rs6000_software_single_step): Use
+       rs6000_breakpoint_from_pc() to fetch breakpoint instruction
+       and size.  Use target_insert_breakpoint() and
+       target_remove_breakpoint() to insert and remove breakpoints
+       instead of explicit memory reads and writes.
+
+2002-04-08  Kevin Buettner  <kevinb@redhat.com>
+
+       * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
+       * rs6000-tdep.c (rs6000_push_arguments): Eliminate
+       ELF_OBJECT_FORMAT ifdef.
+
+2002-04-08  Kevin Buettner  <kevinb@redhat.com>
+
+       From Jimi X <jimix@watson.ibm.com>:
+       * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
+
+2002-04-08  Kevin Buettner  <kevinb@redhat.com>
+
+       From Jimi X <jimix@watson.ibm.com>:
+       * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
+       definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
+
+2002-04-07  Mark Kettenis  <kettenis@gnu.org>
+
+       * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
+       s/asprintf/xasprintf/.
+       (fbsd_make_corefile_notes): s/strdup/xstrdup/.
+
+2002-04-07  Andrew Cagney  <ac131313@redhat.com>
+
+       I believe Jeff Law denies responsability for this one:
+       * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
+       * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
+       * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
+       Work-around for PR gdb/366.
+
+2002-04-07  Elena Zannoni  <ezannoni@redhat.com>
+
+       * remote-e7000.c (write_small, e7000_read_inferior_memory,
+       e7000_read_inferior_memory_large, e7000_insert_breakpoint,
+       e7000_remove_breakpoint): Use paddr_nz() to print addresses.
+
+2002-04-07  Elena Zannoni  <ezannoni@redhat.com>
+
+       * sh-tdep.c (sh_fp_frame_init_saved_regs,
+       sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
+       information.
+
+2002-04-07  Andrew Cagney  <ac131313@redhat.com>
+
+       * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
+       maintainer.
+
+2002-04-07  Andrew Cagney  <ac131313@redhat.com>
+
+       * README (Reporting Bugs in GDB): Document the bug web page as the
+       prefered way of submitting bugs.
+       Fix PR gdb/402.
+
+2002-04-06  Andrew Cagney  <ac131313@redhat.com>
+
+       * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
+       -1.  Update comment.
+       * gdbarch.h, gdbarch.c: Re-generate.
+
+2002-04-07  Andreas Schwab  <schwab@suse.de>
+
+       * m68klinux-nat.c (fill_fpregset): Properly pass address of
+       buffer to regcache_collect.
+
+2002-04-06  Andrew Cagney  <ac131313@redhat.com>
+
+       * gdbarch.sh (PS_REGNUM): Add.  Document.  Default to -1.
+       * gdbarch.c, gdbarch.h: Re-generate.
+
+2002-04-06  Andrew Cagney  <ac131313@redhat.com>
+
+       * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
+       declaration.  Fix -Werror.
+
+2002-04-05  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
+       * gdbarch.c: Regenerate.
+
+2002-04-05  Michael Snyder  <msnyder@redhat.com>
+
+       * breakpoint.c (clear_command): Rewrite middle section to
+       combine two loops with identical control conditions.
+       Add a cleanup to eliminate a memory leak.
+       * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
+
+2002-04-05  H.J. Lu  (hjl@gnu.org)
+
+       * solib-svr4.c (bkpt_names): Add "__start".
+
+2002-04-04  Andrew Cagney  <ac131313@redhat.com>
+
+       * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
+       as test for 64 bit target.
+
+2002-04-05  Andrew Cagney  <ac131313@redhat.com>
+
+       * h8500-tdep.c (h8500_write_fp): Delete function.
+       * dwarf2cfi.c (cfi_write_fp): Document as not used.
+       * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
+       * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
+       * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
+       * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
+       (s390_write_fp):
+       * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
+       * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
+       * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
+       (d10v_write_fp): Delete function.
+       * inferior.h (write_fp, generic_target_write_fp): Delete
+       declarations.
+       * regcache.c (generic_target_write_fp): Delete function.
+       (write_fp): Delete function.
+       * gdbarch.sh (TARGET_WRITE_FP): Delete.
+       * gdbarch.h, gdbarch.c: Regenerate.
+       * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
+       * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
+       (sparc64_write_fp): Delete declaration.
+       * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
+       (h8500_write_fp): Delete declaration.
+
+2002-04-04  Andrew Cagney  <ac131313@redhat.com>
+
+       * sparc-tdep.c (sparc64_write_fp): Delete.
+       (sparc_push_dummy_frame): Replace write_fp call with code to store
+       the FP directly.
+       (sparc_gdbarch_init): Do not initialize write_fp.
+
+2002-04-05  Kevin Buettner  <kevinb@redhat.com>
+
+       * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
+       clause.
+
+2002-03-29  Jim Blandy  <jimb@redhat.com>
+
+       * stack.c (get_selected_block): Add new argument `addr_in_block',
+       used to return the exact code address we used to select the block,
+       not just the block.
+       * blockframe.c (get_frame_block, get_current_block): Same.
+       * frame.h (get_frame_block, get_current_block,
+       get_selected_block): Update declarations.
+       * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
+       linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
+
+2002-04-05  Michael Snyder  <msnyder@redhat.com>
+
+       * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
+       warning message.
+
+2002-04-05  J. Brobecker  <brobecker@gnat.com>
+
+       * utils.c (xfullpath): New function.
+       * defs.h (xfullpath): Add declaration.
+       * source.c (openp): Use xfullpath in place of gdb_realpath to
+       avoid resolving the basename part of filenames when the
+       associated file is a symbolic link. This fixes a potential
+       inconsistency between the filenames known to GDB and the
+       filenames it prints in the annotations.
+       * symtab.c (lookup_symtab): Use the new xfullpath function, in order
+       to be able to match a filename with either the real filename, or
+       the name of any symbolic link to this file.
+       (lookup_partial_symtab): Ditto.
+
+2002-04-04  Michael Snyder  <msnyder@redhat.com>
+
+       * breakpoint.c: Add support for hardware breakpoints in overlays.
+       (overlay_events_enabled): New state variable.
+       (insert_breakpoints): Use overlay_events_enabled to decide
+       whether to attempt to set a breakpoint at the overlay load addr.
+       Handle bp_hardware_breakpoint as well as bp_breakpoint.
+       (remove_breakpoint): Use overlay_events_enabled to decide
+       whether breakpoints need to be removed from overlay load addr.
+       Handle bp_hardware_breakpoint as well as bp_breakpoint.
+       (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
+       (create_overlay_event_breakpoint, enable_overlay_breakpoints, 
+       disable_overlay_breakpoints): Update overlay_events_enabled.
+
+2002-04-04  Daniel Jacobowitz  <drow@mvista.com>
+
+       * dwarf2read.c (struct function_range): New.
+       (cu_first_fn, cu_last_fn, cu_cached_fn): New.
+       (check_cu_functions): New.
+       (read_file_scope): Initialize global function lists.
+       Call dwarf_decode_line after processing children.
+       (read_func_scope): Add to global function list.
+       (dwarf_decode_lines): Call check_cu_functions everywhere
+       record_line is called.  Call record_line with a linenumber
+       of 0 to mark sequence ends.
+
+2002-04-04  Michal Ludvig  <mludvig@suse.cz>
+
+       * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI 
+       change sync with glibc.
+
+2002-04-03  Jim Blandy  <jimb@redhat.com>
+
+       * configure.in: Call AC_C_INLINE.
+       * configure: Regenerated.
+       
+2002-04-01  Daniel Jacobowitz  <drow@mvista.com>
+
+       * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
+       and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
+
+2002-03-31  Mark Kettenis  <kettenis@gnu.org>
+
+       * NEWS: Mention gcore support on FreeBSD/i386.
+
+       * fbsd-proc.c: New file.
+       * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
+       * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
+
+       * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
+       while statement.
+
+2002-03-29  Jim Blandy  <jimb@redhat.com>
+
+       * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
+       unescaped newlines in string literals, but newer ones don't.  So
+       escape them.
+
+2002-03-26  Michael Snyder  <msnyder@redhat.com>
+           Andrew Cagney <cagney@redhat.com>
+
+       * cli/cli-dump.c: New file.  Dump memory to file, 
+       restore file to memory.
+       * cli/cli-dump.h: New file.
+       * Makefile.in: Add rules, dependencies for cli-dump.o.
+       * NEWS: Mention new commands.
+
+2002-03-28  Michael Snyder  <msnyder@redhat.com>
+
+       * symfile.c (symbol_file_add): Move test for null symbols to later.
+
+2002-03-27  Andrew Cagney  <ac131313@redhat.com>
+
+       From veksler at il.ibm.com:
+       * utils.c (gdb_realpath): If canonicalize_file_name fails, return
+       the xstrduped original path.
+       Fix PR gdb/417.
+
+2002-03-27  Michael Snyder  <msnyder@redhat.com>
+
+       * breakpoint.c (_initialize_breakpoint): Clean up help string.
+       * infcmd.c (_initialize_infcmd): Ditto.
+       * language.c (_initialize_language): Ditto.
+       * symfile.c (_initialize_symfile): Ditto.
+       * top.c (_init_main): Ditto.
+       * cli/cli-cmds.c (init_cli_cmds): Ditto.
+
+2002-03-27  Elena Zannoni  <ezannoni@redhat.com>
+
+       * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
+       vector registers handling.
+       (skip_prologue): Handle new AltiVec instructions.  Fill in new
+       fields of frame data.
+       (frame_get_saved_regs): Fill in information for AltiVec registers.
+
+2002-03-27  Jim Blandy  <jimb@redhat.com>
+
+       * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
+       a function; leave this macro here to invoke that function.
+       (symbol_init_mangled_name): Declaration for that function.
+       * symtab.c (symbol_init_mangled_name): New function.
+
+2002-03-27  Andrew Cagney  <ac131313@redhat.com>
+
+       * valarith.c: Replace strerror with safe_strerror.
+       * tracepoint.c: Ditto.
+       * lin-lwp.c: Ditto.
+       * go32-nat.c: Ditto.
+       * inflow.c: Ditto.
+       * gnu-nat.c: Ditto.
+
+2002-03-27  Andreas Schwab  <schwab@suse.de>
+
+       * event-top.c (command_line_handler): Remove useless if.
+
+2002-03-27  Andreas Jaeger  <aj@suse.de>
+
+       * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
+       comment.
+
+2002-03-27  Michal Ludvig  <mludvig@suse.cz>
+
+       * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
+       (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
+       * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
+       (x86_64_linux_dr_get_status, supply_gregset),
+       (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
+       * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
+       (x86_64_register_info_table): Add.
+       (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
+       (x86_64_register_raw_size, x86_64_register_virtual_type),
+       (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
+       general x86_64_register_info_table.
+       (i386_gdbarch_init): gdbarch_register_bytes is now set
+       dynamicaly during initialization.
+       * regformats/reg-x86-64.dat: Synced with changes to registers above.
+       * gdbserver/linux-x86-64-low.c: Ditto.
+
+2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdbserver/server.c (main): Call target_signal_to_host_p
+       and target_signal_to_host on signals received from the remote.
+       * gdbserver/remote-utils.c (prepare_resume_reply): Call
+       target_signal_from_host on signals sent to the remote.
+       * gdbserver/server.h: Add prototypes.  Include "gdb/signals.h".
+       * gdbserver/Makefile.in: Add signals.o.  Add -I${INCLUDE_DIR}.
+
+2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
+
+       * signals/signals.c: Include "server.h" in gdbserver build.
+       (target_signal_from_name): Don't use STREQ.
+       (_initialize_signals): Likewise.  Don't include function in
+       gdbserver build.
+
+2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
+
+       * signals.c: Moved to...
+       * signals/signals.c: Here.
+       * Makefile (signals.o): Update.
+
+2002-03-26  Jeff Law (law@redhat.com)
+
+       * somread.c (som_symtab_read): Remove some commented out code and
+       updated related comments.  Do not set the minimal symbol table to
+       mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
+       in a dynamic executable.
+       * hppa-tdep.c (find_proc_framesize): Sanely handle the case
+       where we are unable to find the minimal symbol for the given
+       PC value.
+
+2002-03-25  Jeff Law (law@redhat.com)
+
+       * linux-proc.c (read_mapping): Scan up to end of line for filename.
+
+2002-03-25  Michal Ludvig  <mludvig@suse.cz>
+
+       * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
+
+2002-03-23  Andrew Cagney  <ac131313@redhat.com>
+
+       * command.h: Update copyright.
+       (struct cmd_list_element): Replace definition with opaque
+       declaration.
+       (enum cmd_types): Document that it will eventually be moved to
+       cli/cli-decode.h
+       (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
+       (MALLOCED_REPLACEMENT): Delete macro.
+       * Makefile.in (cli_decode_h): Add $(command_h).
+       (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
+       * top.c: Include "cli/cli-decode.h".
+       * completer.c: Include "cli/cli-decode.h".
+       * maint.c: Include "cli/cli-decode.h".
+       * cli/cli-decode.h: Include "command.h".
+       (enum command_class): Delete.
+       (enum cmd_types): Comment out.
+       (enum cmd_auto_boolean): Delete.
+       (enum var_types): Delete.
+
+2002-03-23  Andrew Cagney  <ac131313@redhat.com>
+
+       * cli/cli-decode.c: Include "gdb_assert.h".
+       (add_set_or_show_cmd): New static function.
+       (add_set_cmd): Rewrite.  Use add_set_or_show_cmd.
+       (add_show_from_set): Rewrite. Use add_set_or_show_cmd.  Don't copy
+       all fields, such as func, from the set command.
+
+2002-03-23  Andrew Cagney  <ac131313@redhat.com>
+
+       * MAINTAINERS (sh-elf): Change warning flag to -w.
+
+2002-03-23  Andrew Cagney  <cagney@redhat.com>
+
+       * defs.h (error): Add printf format attribute.
+       * thread-db.c (thread_from_lwp): Fix error format string.
+       * stack.c (parse_frame_specification): Ditto.
+       * cli/cli-decode.c (undef_cmd_error): Ditto.
+       * scm-lang.c (scm_lookup_name): Ditto.
+       * tracepoint.c (trace_error): Ditto.
+       * remote-utils.c (usage): Ditto.
+       * remote.c (compare_sections_command): Ditto.
+       Fix PR gdb/328.
+
+2002-03-22  Andrew Cagney  <ac131313@redhat.com>
+
+       * gdbtypes.c (append_composite_type_field): New function.
+       (init_composite_type): New function.
+       * gdbtypes.h (append_composite_type_field): Declare.
+       (init_composite_type): Ditto.
+
+2002-03-22  Elena Zannoni  <ezannoni@redhat.com>
+
+        * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
+        function.
+       * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
+        * rs6000-tdep.c (rs6000_gdbarch_init): Use different
+        structure returning convention for SYSV ABI case, but not
+        for GNU/Linux, FreeBSD, or NetBSD.
+
+2002-03-22  Daniel Jacobowitz  <drow@mvista.com>
+
+       * symtab.h (lookup_block_symbol): Add mangled_name argument
+       to prototype.
+
+       * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
+       with new mangled_name argument.
+       * linespec.c (decode_line_1): Likewise.
+       * valops (value_of_this): Likewise.
+       * symtab.c (lookup_transparent_type): Likewise.
+       (lookup_symbol_aux): Likewise.  Accept new mangled_name argument.
+       (lookup_symbol): If we are given a mangled name, pass it down
+       to lookup_symbol_aux.
+       (lookup_block_symbol): If we are given a mangled name to check
+       against, only return symbols which match it.
+
+2002-03-22  Christopher Faylor  <cgf@redhat.com>
+
+       * win32-nat.c (child_create_inferior): Check for proper shell to use
+       here, in case the user changes it on the fly.
+       (_initialize_inftarg): Remove shell path considerations.
+
+2002-03-21  Elena Zannoni  <ezannoni@redhat.com>
+
+       * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
+       for gdbarch_max_register_raw_size and max_register_virtual_size.
+       Adjust copyright year.
+
+2002-03-21  Daniel Jacobowitz  <drow@mvista.com>
+
+        * dbxread.c (process_one_symbol): Extend the first N_SLINE
+        in a function to cover the entire beginning of the function
+        as well if it does not already.
+
 2002-03-21  Tom Rix  <trix@redhat.com>
 
        * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
        * gdbserver/remote-utils.c (remote_open): Don't call
        getprotobyname, we're all using TCP here so just use
        IPPROTO_TCP.
-       * gdbserver/gdbreplay.c (remote_open): Ditto.   
+       * gdbserver/gdbreplay.c (remote_open): Ditto.
 
 2002-03-20  Martin M. Hunt  <hunt@redhat.com>
-       
+
        * regcache.c (_initialize_regcache): No need to call
        build_regcache() at this time; it gets called whenever
        the gdbarch changes.
 
        * gdbserver/remote-util.c (remote_open): Print remote-side's
        IP address when remote debugging over the network.
-                
+
 2002-03-12  David O'Brien  <obrien@FreeBSD.org>
 
        * config/sparc/fbsd.mh: Fix copyright.
 2002-03-10  Michal Ludvig  <mludvig@suse.cz>
 
        * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
-       * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here 
+       * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
        from x86-64-tdep.h
 
 2002-03-10  Daniel Jacobowitz  <drow@mvista.com>
        * symfile.c (symfile_bfd_open): Ditto.
        * solib.c (solib_map_sections): Ditto.
        Fix PR gdb/354.
-       
+
 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
 
        * remote.c (_initialize_remote): By default, disable ``e'' and
        * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
        * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
        Fix PR gdb/378.
-       
+
 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
 
        * lin-thread.c: Delete file.
         * config.in, configure: Regenerated.
         * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
        defined use canonicalize_file_name.
-        
+
 2002-02-23  Michael Chastain  <mec@shout.net>
 
        * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
 
 2002-02-13  Michael Snyder  <msnyder@redhat.com>
 
+       * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
+
        * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
        (default_gcore_mach): Just return 0, work around a problem in bfd.
        (default_gcore_target): OK to return NULL if exec_bfd is null.
This page took 0.039851 seconds and 4 git commands to generate.