2002-04-04 Jim Ingham <jingham@apple.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 69c438959b83282551020d4fd487beea0025bd78..2ead05ff63f021819854e518771676d091a1383a 100644 (file)
@@ -1,3 +1,309 @@
+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".
This page took 0.026181 seconds and 4 git commands to generate.