2003-03-14 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 94a5b56aef2a75e106414c826689ecd7a2a68861..ae39b61c3793d1f692d4004b5be79901008d6e05 100644 (file)
@@ -1,3 +1,966 @@
+2003-03-14  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (get_prev_frame): When a legacy frame, always call
+       legacy_get_prev_frame.  Simplify unwind code using assumption that
+       the unwinder is new.
+       (legacy_get_prev_frame): Handle legacy sentinel frame unwind here.
+       (legacy_frame_p): When no gdbarch_unwind_dummy_id, or
+       SAVED_DUMMY_FRAME_TOS, assume a legacy frame.
+
+2003-03-14  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (get_saved_register): Delete function.
+       * frame.h (get_saved_register): Delete declaration.
+       * xstormy16-tdep.c: Update comment.
+       * regcache.h: Update comments.
+       * sparc-tdep.c (sparc_init_extra_frame_info): Instead of
+       get_saved_register and extract_address, use
+       frame_read_unsigned_register.
+       (sparc_frame_saved_pc): Ditto.
+       (sparc_get_saved_register): Instead of get_saved_register, use
+       frame_register.
+       (sparc_pop_frame): Ditto.
+       * findvar.c: Update comments.
+       (value_of_register): Call frame_register instead of
+       get_saved_register.
+       (value_from_register): Ditto.
+       * config/sparc/tm-sparc.h: Update comment.
+       * breakpoint.c: Update comment.
+
+2003-03-14  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_GET_SAVED_REGISTER): Replace
+       GET_SAVED_REGISTER.
+       * gdbarch.h, gdbarch.c: Re-generate.
+       * frame.h: Update comments.
+       * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
+       * x86-64-tdep.c (x86_64_init_abi): Update.
+       * sparc-tdep.c (sparc_gdbarch_init): Update.
+       * sh-tdep.c (sh_gdbarch_init): Update.
+       * mips-tdep.c (mips_gdbarch_init): Update.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
+       * cris-tdep.c (cris_gdbarch_init): Update.
+       * ia64-tdep.c (ia64_gdbarch_init): Update.
+       * frame.c (frame_register): Update.
+       (get_saved_register): Update.
+       * config/sparc/tm-sparc.h (DEPRECATED_GET_SAVED_REGISTER): Update.
+       
+2003-03-13  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_POP_FRAME): Replace POP_FRAME.
+       * gdbarch.h, gdbarch.c: Regenerate.
+       * valops.c (hand_function_call): Update comment.
+       * stack.c (return_command): Update comment.
+       * config/sparc/tm-sparc.h (DEPRECATED_POP_FRAME): Update.
+       * config/pa/tm-hppa.h (DEPRECATED_POP_FRAME): Update.
+       * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
+       * x86-64-tdep.c (x86_64_init_abi): Update.
+       * vax-tdep.c (vax_gdbarch_init): Update.
+       * v850-tdep.c (v850_gdbarch_init): Update.
+       * sparc-tdep.c (sparc_gdbarch_init): Update.
+       * sh-tdep.c (sh_gdbarch_init): Update.
+       * s390-tdep.c (s390_gdbarch_init): Update.
+       * rs6000-tdep.c (rs6000_gdbarch_init): Update.
+       * ns32k-tdep.c (ns32k_gdbarch_init): Update.
+       * mn10300-tdep.c (mn10300_gdbarch_init): Update.
+       * mips-tdep.c (mips_gdbarch_init): Update.
+       * mcore-tdep.c (mcore_gdbarch_init): Update.
+       * m68k-tdep.c (m68k_gdbarch_init): Update.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
+       * ia64-tdep.c (ia64_gdbarch_init): Update.
+       * i386-tdep.c (i386_gdbarch_init): Update.
+       * hppa-tdep.c (hppa_gdbarch_init): Update.
+       * h8300-tdep.c (h8300_gdbarch_init): Update.
+       * frv-tdep.c (frv_gdbarch_init): Update.
+       * cris-tdep.c (cris_gdbarch_init): Update.
+       * avr-tdep.c (avr_gdbarch_init): Update.
+       * arm-tdep.c (arm_gdbarch_init): Update.
+       * alpha-tdep.c (alpha_gdbarch_init): Update.
+
+2003-03-13  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (legacy_frame_p): New function.
+       (get_prev_frame): Use legacy_frame_p.
+       * frame.h (legacy_frame_p): Declare.
+
+2003-03-13  D. Venkatasubramanian <dvenkat@noida.hcltech.com>
+
+        * MAINTAINERS (write after approval): Alphabetically
+       listing corrected.
+
+2003-03-13  D. Venkatasubramanian <dvenkat@noida.hcltech.com>
+
+        * MAINTAINERS (write after approval): Add myself.
+
+2003-03-12  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (get_prev_frame): Rename the frame parameter to
+       "this_frame".
+       (get_next_frame, legacy_get_prev_frame): Ditto.
+
+2003-03-12  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (get_current_frame): Check target_has_registers before
+       checking target_has_stack.
+       * eval.c (evaluate_subexp_standard): Use get_selected_frame,
+       instead of deprecated_selected_frame.
+       * findvar.c (value_of_register): Pass "frame", not
+       deprecated_selected_frame, to value_of_builtin_reg.
+
+2003-03-12  Andrew Cagney  <cagney@redhat.com>
+
+       * regcache.c (regcache_cooked_write_signed): New function.
+       (regcache_cooked_write_unsigned): New function.
+       (regcache_cooked_read_unsigned): Fix regnum in range assertion.
+       (regcache_cooked_read_signed): Fix regnum in range assertion.
+       * regcache.h (regcache_cooked_write_signed): Declare.
+       (regcache_cooked_write_unsigned): Declare.
+
+2003-03-12  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_FRAME_SAVED_PC): Replace FRAME_SAVED_PC.
+       * gdbarch.h, gdbarch.c: Re-generate.
+       * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
+       * x86-64-tdep.h: Update.
+       * x86-64-tdep.c (x86_64_init_abi): Update.
+       * v850-tdep.c (v850_gdbarch_init): Update.
+       * sparc-tdep.c (sparc_gdbarch_init): Update.
+       * sh-tdep.c (sh_gdbarch_init): Update.
+       * s390-tdep.c (s390_gdbarch_init): Update.
+       * rs6000-tdep.c (rs6000_gdbarch_init): Update.
+       * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
+       * ns32k-tdep.c (ns32k_gdbarch_init): Update.
+       * mn10300-tdep.c (mn10300_gdbarch_init): Update.
+       * mips-tdep.c (mips_gdbarch_init): Update.
+       * mcore-tdep.c (mcore_gdbarch_init): Update.
+       * m68k-tdep.c (m68k_gdbarch_init): Update.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
+       * ia64-tdep.c (ia64_gdbarch_init): Update.
+       * i386-tdep.c (i386_gdbarch_init): Update.
+       * i386-interix-tdep.c (i386_interix_init_abi): Update.
+       * hppa-tdep.c (hppa_gdbarch_init): Update.
+       * h8300-tdep.c (h8300_gdbarch_init): Update.
+       * frv-tdep.c (frv_gdbarch_init): Update.
+       * cris-tdep.c (cris_gdbarch_init): Update.
+       * avr-tdep.c (avr_gdbarch_init): Update.
+       * arm-tdep.c (arm_gdbarch_init): Update.
+       * alpha-tdep.c (alpha_gdbarch_init): Update.
+       * sh-tdep.c (sh_init_extra_frame_info): Update.
+       (sh64_init_extra_frame_info): Update.
+       * ns32knbsd-nat.c (frame_num_args): Update.
+       * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Update.
+       * xstormy16-tdep.c (xstormy16_pop_frame): Update.
+       (xstormy16_frame_chain_valid): Update.
+       * vax-tdep.c (vax_saved_pc_after_call): Update.
+       * v850-tdep.c (v850_frame_chain): Update.
+       (v850_pop_frame): Update.
+       (v850_init_extra_frame_info): Update.
+       * sparc-tdep.c (setup_arbitrary_frame): Update.
+       * ns32k-tdep.c (umax_frame_num_args): Update.
+       * s390-tdep.c (s390_pop_frame_regular): Update.
+       * mn10300-tdep.c (mn10300_frame_chain): Update.
+       (mn10300_pop_frame_regular): Update.
+       (mn10300_init_extra_frame_info): Update.
+       * mips-tdep.c (mips_init_frame_pc_first): Update.
+       (mips_frame_chain): Update.
+       (mips_pop_frame): Update.
+       * mcore-tdep.c (mcore_frame_chain): Update.
+       (mcore_pop_frame): Update.
+       (mcore_init_extra_frame_info): Update.
+       * arch-utils.c (init_frame_pc_default): Update.
+       * m68k-tdep.c (isi_frame_num_args): Update.
+       (delta68_frame_num_args): Update.
+       (news_frame_num_args): Update.
+       * ia64-tdep.c (ia64_pop_frame_regular): Update.
+       * alpha-tdep.c (alpha_init_frame_pc_first): Update.
+       (alpha_frame_chain): Update.
+       (alpha_pop_frame): Update.
+       * hppa-tdep.c (hppa_saved_pc_after_call): Update.
+       (hppa_init_extra_frame_info): Update.
+       (hppa_frame_chain): Update.
+       (hppa_frame_chain_valid): Update.
+       * cris-tdep.c (cris_init_extra_frame_info): Update.
+       * avr-tdep.c (avr_init_extra_frame_info): Update.
+       * arm-tdep.c (arm_frame_chain_valid): Update.
+       (arm_init_extra_frame_info): Update.
+       (arm_pop_frame): Update.
+       * frame.c (frame_pc_unwind): Update.
+       * config/sparc/tm-sparc.h (DEPRECATED_FRAME_SAVED_PC): Update.
+       (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
+       * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
+       * config/pa/tm-hppa.h (DEPRECATED_FRAME_SAVED_PC): Update.
+       * config/m68k/tm-delta68.h (DEPRECATED_FRAME_SAVED_PC): Update.
+       * config/m68k/tm-linux.h (DEPRECATED_FRAME_SAVED_PC): Update.
+       
+2003-03-12  Andrew Cagney  <cagney@redhat.com>
+
+       Eliminate the need for POP_FRAME.
+       * frame.c (do_frame_unwind_register): New function.
+       (frame_pop): When no POP_FRAME, pop the frame using register
+       unwind and a scratch regcache.
+       (frame_saved_regs_pop): Delete function.
+       (trad_frame_unwinder): Update.
+       * d10v-tdep.c (d10v_frame_pop): Delete function.
+       (d10v_frame_unwind): Update.
+       * sentinel-frame.c (sentinel_frame_pop): Delete function.
+       (sentinel_frame_unwinder): Update.
+       * dummy-frame.c (dummy_frame_pop): Delete function.
+       (dummy_frame_unwind): Update.
+       * frame-unwind.h (frame_unwind_pop_ftype): Delete definition.
+       (struct frame_unwind): Update.
+
+2003-03-11  Kevin Buettner  <kevinb@redhat.com>
+
+       * mips-tdep.c (mips_ecoff_reg_to_regnum): Rename to
+       mips_dwarf_dwarf2_ecoff_reg_to_regnum().
+       (mips_dwarf_dwarf2_ecoff_reg_to_regnum, mips_stab_reg_to_regnum):
+       Do range checks on register number obtained from debugging info.
+       (mips_gdbarch_init): Call set_gdbarch_dwarf_reg_to_regnum() and
+       set_gdbarch_dwarf2_reg_to_regnum().  Adjust call of
+       set_gdbarch_ecoff_reg_to_regnum() to account for new name of
+       mapping function.
+       (do_fp_register_row): Fix typo which caused double type to be
+       used when attempting to unpack a float.
+
+2003-03-11  J. Brobecker  <brobecker@gnat.com>
+
+       * breakpoint.c (bpstat_stop_status): Fix a small memory leak.
+
+2003-03-11  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (deprecated_update_frame_pc_hack): Don't assume a next
+       frame.  Problem found by Corinna Vinschen.
+
+2003-03-11  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * doublest.c (floatformat_from_length): Accept also
+       the real size of 'long double' type.
+
+2003-03-10  Daniel Jacobowitz  <drow@mvista.com>
+
+       From Klee Dienes <kdienes@apple.com>:
+       * breakpoint.c (bpstat_copy): Copy the command lines as well
+       as the old value, to match what is freed in bpstat_clear.
+
+2003-03-10  David Carlton  <carlton@math.stanford.edu>
+
+       * minsyms.c (add_minsym_to_hash_table): Replace
+       DEPRECATED_SYMBOL_NAME by SYMBOL_LINKAGE_NAME.
+       (compare_minimal_symbols, compact_minimal_symbols)
+       (install_minimal_symbols, find_solib_trampoline_target): Ditto.
+       (lookup_minimal_symbol_text): Use strcmp on linkage names instead
+       of DEPRECATED_SYMBOL_MATCHES_NAME.
+       (lookup_minimal_symbol_solib_trampoline): Ditto.
+
+2003-03-10  Andrew Cagney  <cagney@redhat.com>
+
+       * regcache.h (regcache_cooked_read_ftype): Define.
+       (regcache_save, regcache_restore): Add a cooked_read parameter.
+       * regcache.c (regcache_save, regcache_restore): Update.
+       (do_cooked_read): New function.
+       (regcache_cpy): Pass do_cooked_read to regcache_save and
+       regcache_restore.
+
+2003-03-10  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_FRAME_SAVED_PC): Replace FRAME_SAVED_PC.
+       * gdbarch.h, gdbarch.c: Re-generate.
+       * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
+       * x86-64-tdep.h: Update.
+       * x86-64-tdep.c (x86_64_init_abi): Update.
+       * v850-tdep.c (v850_gdbarch_init): Update.
+       * sparc-tdep.c (sparc_gdbarch_init): Update.
+       * sh-tdep.c (sh_gdbarch_init): Update.
+       * s390-tdep.c (s390_gdbarch_init): Update.
+       * rs6000-tdep.c (rs6000_gdbarch_init): Update.
+       * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
+       * ns32k-tdep.c (ns32k_gdbarch_init): Update.
+       * mn10300-tdep.c (mn10300_gdbarch_init): Update.
+       * mips-tdep.c (mips_gdbarch_init): Update.
+       * mcore-tdep.c (mcore_gdbarch_init): Update.
+       * m68k-tdep.c (m68k_gdbarch_init): Update.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
+       * ia64-tdep.c (ia64_gdbarch_init): Update.
+       * i386-tdep.c (i386_gdbarch_init): Update.
+       * i386-interix-tdep.c (i386_interix_init_abi): Update.
+       * hppa-tdep.c (hppa_gdbarch_init): Update.
+       * h8300-tdep.c (h8300_gdbarch_init): Update.
+       * frv-tdep.c (frv_gdbarch_init): Update.
+       * cris-tdep.c (cris_gdbarch_init): Update.
+       * avr-tdep.c (avr_gdbarch_init): Update.
+       * arm-tdep.c (arm_gdbarch_init): Update.
+       * alpha-tdep.c (alpha_gdbarch_init): Update.
+       * sh-tdep.c (sh_init_extra_frame_info): Update.
+       (sh64_init_extra_frame_info): Update.
+       * ns32knbsd-nat.c (frame_num_args): Update.
+       * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Update.
+       * xstormy16-tdep.c (xstormy16_pop_frame): Update.
+       (xstormy16_frame_chain_valid): Update.
+       * vax-tdep.c (vax_saved_pc_after_call): Update.
+       * v850-tdep.c (v850_frame_chain): Update.
+       (v850_pop_frame): Update.
+       (v850_init_extra_frame_info): Update.
+       * sparc-tdep.c (setup_arbitrary_frame): Update.
+       * ns32k-tdep.c (umax_frame_num_args): Update.
+       * s390-tdep.c (s390_pop_frame_regular): Update.
+       * mn10300-tdep.c (mn10300_frame_chain): Update.
+       (mn10300_pop_frame_regular): Update.
+       (mn10300_init_extra_frame_info): Update.
+       * mips-tdep.c (mips_init_frame_pc_first): Update.
+       (mips_frame_chain): Update.
+       (mips_pop_frame): Update.
+       * mcore-tdep.c (mcore_frame_chain): Update.
+       (mcore_pop_frame): Update.
+       (mcore_init_extra_frame_info): Update.
+       * arch-utils.c (init_frame_pc_default): Update.
+       * m68k-tdep.c (isi_frame_num_args): Update.
+       (delta68_frame_num_args): Update.
+       (news_frame_num_args): Update.
+       * ia64-tdep.c (ia64_pop_frame_regular): Update.
+       * alpha-tdep.c (alpha_init_frame_pc_first): Update.
+       (alpha_frame_chain): Update.
+       (alpha_pop_frame): Update.
+       * hppa-tdep.c (hppa_saved_pc_after_call): Update.
+       (hppa_init_extra_frame_info): Update.
+       (hppa_frame_chain): Update.
+       (hppa_frame_chain_valid): Update.
+       * cris-tdep.c (cris_init_extra_frame_info): Update.
+       * avr-tdep.c (avr_init_extra_frame_info): Update.
+       * arm-tdep.c (arm_frame_chain_valid): Update.
+       (arm_init_extra_frame_info): Update.
+       (arm_pop_frame): Update.
+       * frame.c (frame_pc_unwind): Update.
+       * config/sparc/tm-sparc.h (DEPRECATED_FRAME_SAVED_PC): Update.
+       (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
+       * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
+       * config/pa/tm-hppa.h (DEPRECATED_FRAME_SAVED_PC): Update.
+       * config/m68k/tm-delta68.h (DEPRECATED_FRAME_SAVED_PC): Update.
+       * config/m68k/tm-linux.h (DEPRECATED_FRAME_SAVED_PC): Update.
+       
+2003-03-10  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (gdbarch_unwind_pc): New method.
+       * gdbarch.h, gdbarch.c: Regenerate.
+       * frame.c (frame_pc_unwind): Rewrite.  Prefer gdbarch_unwind_pc,
+       but use read_pc and FRAME_SAVED_PC as fall backs.
+       (frame_saved_regs_pc_unwind): Delete function.
+       (trad_frame_unwinder): Update.
+       * frame-unwind.h (frame_unwind_pc_ftype): Delete declaration.
+       (struct frame_unwind): Update.
+       * dummy-frame.c (dummy_frame_pc_unwind): Delete function.
+       (dummy_frame_unwind): Update.
+       * sentinel-frame.c (sentinel_frame_pc_unwind): Delete function.
+       (sentinel_frame_unwinder): Update.
+       * d10v-tdep.c (d10v_frame_pc_unwind): Delete function.
+       (d10v_frame_unwind): Update.
+       (d10v_unwind_pc): New function.
+       (d10v_gdbarch_init): Set unwind_pc.
+
+2003-03-10  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.h: Re-generate.
+
+       * d10v-tdep.c (d10v_frame_register_unwind): Correctly unwind the
+       PC.
+       (d10v_frame_pop): Unwind the PC, and not the LR, when restoring
+       the PC register.
+
+2003-03-08  Mark Kettenis  <kettenis@gnu.org>
+
+       * gdbarch.sh (save_dummy_frame_tos): Add comment.
+
+2003-03-08  Andrew Cagney  <cagney@redhat.com>
+
+       * cli-out.c: Update copyright.
+       (cli_out_data): Define typedef.  Use instead of ui_out_data.
+
+2003-03-08  Andrew Cagney  <cagney@redhat.com>
+
+       * valarith.c (value_subscripted_rvalue): Copy the array's REGNO to
+       the result.
+
+2003-03-07  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh: Don't generate two macro definitions when an
+       undefined macro taking no arguments.
+       * gdbarch.h: Regenerate.
+       
+2002-03-07  Michal Ludvig  <mludvig@suse.cz>
+
+       * x86-64-tdep.c (x86_64_save_dummy_frame_tos)
+       (x86_64_unwind_dummy_id): New functions.
+       (x86_64_init_abi): Register these two new functions.
+
+2003-03-07  Michal Ludvig  <mludvig@suse.cz>
+
+       * x86-64-tdep.c (x86_64_function_has_prologue): New function.
+       (x86_64_skip_prologue): Move prologue detection to 
+       separate function.
+       * x86-64-tdep.h (x86_64_function_has_prologue): New prototype.
+
+2003-03-05  Andrew Cagney  <cagney@redhat.com>
+
+       * d10v-tdep.c (d10v_unwind_dummy_id): New function.
+       (d10v_gdbarch_init): Set unwind_dummy_id and save_dummy_frame_tos.
+       * frame.c (get_prev_frame): Restructure the frame ID unwind code
+       to use unwind_dummy_id when a dummy frame.
+       * gdbarch.sh (unwind_dummy_id): New multi-arch method with
+       predicate.
+       * gdbarch.h, gdbarch.c: Regneerate.
+       
+2003-03-05  Andrew Cagney  <cagney@redhat.com>
+
+       * d10v-tdep.c (struct d10v_unwind_cache): Add field "base".
+       (d10v_frame_unwind_cache): Rewrite code computing the base and SP.
+       Do not use d10v_read_sp or d10v_read_fp when obtaining register
+       values.
+
+2003-03-05  Andrew Cagney  <cagney@redhat.com>
+
+       * d10v-tdep.c (struct frame_extra_info): Delete unused structure.
+       (struct d10v_unwind_cache): Delete field "frameless".  Replace
+       "next_addr" with "sp_offset".  Add "r11_offset".
+       (d10v_frame_unwind_cache): Update.
+       (prologue_find_regs): Update.  When "mv r11, sp", save the
+       "sp_offset" in "r11_offset".  Recognize "st rn, @r11", note that
+       RN was saved in r11_offset.
+
+2003-03-05  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (deprecated_update_frame_pc_hack): Also update the the
+       cached PC value in the next frame.
+
+2003-03-05  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.h (struct frame_info): Replace "id_unwind_cache_p" and
+       "id_unwind_cache" with "id".
+       (frame_id_unwind): Delete declaration.
+       * frame.c (frame_id_unwind): Delete function.
+       (get_prev_frame): Call the frame id unwind method directly.  Store
+       the returned next frame's ID value in NEXT_FRAME.  Note that there
+       is a problem with the wrong unwind ID being called with the wrong
+       unwind cache.
+
+2003-03-05  Daniel Jacobowitz  <drow@mvista.com>
+
+       * Makefile.in (FLAGS_TO_PASS): Add LDFLAGS.
+
+2003-03-05  James Ingham <jingham@apple.com>
+           Daniel Jacobowitz  <drow@mvista.com>
+
+       * cp-abi.c: Include "command.h", "gdbcmd.h", and "ui-out.h".
+       (auto_cp_abi): New variable.
+       (current_cp_abi, num_cp_abis): Make static.
+       (CP_ABI_MAX): Define.
+       (cp_abis): Turn into an array.
+       (value_virtual_fn_field): Fix formatting.
+       (switch_to_cp_abi, register_cp_abi): Update.  register_cp_abi now
+       takes a pointer.
+       (set_cp_abi_as_auto_default, set_cp_abi_cmd, show_cp_abi_cmd)
+       (list_cp_abis, _initialize_cp_abi): New functions.
+       * cp-abi.h: Add prototype for set_cp_abi_as_auto_default.  Remove
+       declarations for cp_abis, num_cp_abis, current_cp_abi, and
+       switch_to_cp_abi.  Update prototype for register_cp_abi.
+       * Makefile.in (cp-abi.o): Update dependencies.
+       * minsyms.c (install_minimal_symbols): Call set_cp_abi_as_auto_default
+       instead of switch_to_cp_abi.
+       * gnu-v2-abi.c (_initialize_gnu_v2_abi): Likewise.  Update call to
+       register_cp_abi.
+       * gnu-v3-abi.c (_initialize_gnu_v3_abi): Update call to
+       register_cp_abi.
+       * hpacc-abi.c (_initialize_hpacc_abi): Likewise.
+
+2003-03-05  Daniel Jacobowitz  <drow@mvista.com>
+
+       * dwarf2expr.c (new_dwarf_expr_context): Add (void) to definition.
+       * dwarf2loc.c: Include "regcache.h".
+       (dwarf_expr_read_reg): Rename regnum argument to dwarf_regnum.  Use
+       register_size.
+       * Makefile.in (dwarf2loc.o): Update dependencies.
+
+2003-03-04  Theodore A. Roth  <troth@openavr.org>
+
+       * avr-tdep.c (avr_io_reg_read_command): Fix to handle case when the
+       number of io registers reported by remote target is not a multiple of
+       step.
+
+2003-03-04  David Carlton  <carlton@math.stanford.edu>
+
+       * symtab.c (lookup_partial_symbol): Add linkage_name argument.
+       (lookup_symbol_aux_psymtabs): Update call to
+       lookup_partial_symbol.
+       (lookup_transparent_type, find_main_psymtab)
+       (make_symbol_overload_list): Ditto.
+
+2003-03-04  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * MAINTAINERS (Write after approval): Update my email address.
+
+2003-03-03  Andrew Cagney  <cagney@redhat.com>
+
+       Make MAX_REGISTER_RAW_SIZE and MAX_REGISTER_VIRTUAL_SIZE optional.
+       * gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE): Variable with
+       predicate.  Replace MAX_REGISTER_RAW_SIZE.
+       (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto for
+       MAX_REGISTER_VIRTUAL_SIZE.
+       * regcache.c (legacy_max_register_raw_size): New function.
+       (legacy_max_register_virtual_size): New function.
+       * defs.h (MAX_REGISTER_VIRTUAL_SIZE): Define.
+       (MAX_REGISTER_RAW_SIZE): Define.
+       (legacy_max_register_raw_size): Declare.
+       (legacy_max_register_virtual_size): Declare.
+       * config/sparc/tm-sparc.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
+       (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Update.
+       * config/sparc/tm-sp64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
+       (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto.
+       * config/pa/tm-hppa.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
+       (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto.
+       * config/pa/tm-hppa64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
+       * config/ia64/tm-ia64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
+       * config/i386/tm-ptx.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
+       * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
+       * vax-tdep.c (vax_gdbarch_init): Update.
+       * v850-tdep.c (v850_gdbarch_init): Update.
+       * sparc-tdep.c (sparc_gdbarch_init): Update.
+       * sh-tdep.c (sh_gdbarch_init): Update.
+       * s390-tdep.c (s390_gdbarch_init): Update.
+       * rs6000-tdep.c (rs6000_gdbarch_init): Update.
+       * ns32k-tdep.c (ns32k_gdbarch_init): Update.
+       * mn10300-tdep.c (mn10300_gdbarch_init): Update.
+       * mips-tdep.c (mips_gdbarch_init): Update.
+       * mcore-tdep.c (mcore_gdbarch_init): Update.
+       * m68k-tdep.c (m68k_gdbarch_init): Update.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
+       * ia64-tdep.c (ia64_gdbarch_init): Update.
+       * i386-tdep.c (i386_gdbarch_init): Update.
+       * hppa-tdep.c (hppa_gdbarch_init): Update.
+       * h8300-tdep.c (h8300_gdbarch_init): Update.
+       * frv-tdep.c (frv_gdbarch_init): Update.
+       * cris-tdep.c (cris_gdbarch_init): Update.
+       * avr-tdep.c (avr_gdbarch_init): Update.
+       * arm-tdep.c (arm_gdbarch_init): Update.
+       * alpha-tdep.c (alpha_gdbarch_init): Update.
+       * d10v-tdep.c (d10v_gdbarch_init): Do not set
+       max_register_raw_size or max_register_virtual_size.
+
+2003-03-03  David Carlton  <carlton@math.stanford.edu>
+
+       * symtab.h (DEPRECATED_SYMBOL_MATCHES_NAME): Rename from
+       SYMBOL_MATCHES_NAME, add comment.
+       (SYMBOL_MATCHES_NATURAL_NAME): New.
+       * minsyms.c (lookup_minimal_symbol_solib_trampoline): Replace
+       SYMBOL_MATCHES_NAME with DEPRECATED_SYMBOL_MATCHES_NAME.
+       (lookup_minimal_symbol, lookup_minimal_symbol_text): Ditto.
+       * symtab.c (lookup_partial_symbol): Use
+       SYMBOL_MATCHES_NATURAL_NAME, not SYMBOL_MATCHES_NAME.  Delete
+       unhelpful comment.
+       (lookup_block_symbol): Use SYMBOL_MATCHES_NATURAL_NAME, not
+       SYMBOL_MATCHES_NAME.
+       Fix for PR c++/33.
+
+2003-03-03  David Carlton  <carlton@math.stanford.edu>
+
+       * symtab.h (SYMBOL_MATCHES_REGEXP): Delete.
+       * symtab.c (search_symbols): Replace uses of SYMBOL_MATCHES_REGEXP
+       by regexp matching against SYMBOL_NATURAL_NAME.
+
+2003-03-03  David Carlton  <carlton@math.stanford.edu>
+
+       * linespec.c (find_method): Extract code into collect_methods.
+       (collect_methods): New.
+
+2003-03-02  Mark Kettenis  <kettenis@gnu.org>
+
+       * i386bsd-tdep.c (i386bsd_sigcontext_addr): Use get_next_frame and
+       get_frame_base.
+
+       * i386-tdep.c (i386_pe_skip_trampoline_code): Replace usage of
+       DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
+
+2003-03-02  Stephane Carrez  <stcarrez@nerim.fr>
+
+       * arch-utils.c (generic_register_byte): Fix to use the loop index 
+       and not regnum when summing the size of all registers up to regnum.
+
+2003-03-01  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_FRAME_INIT_SAVED_REGS): Rename
+       FRAME_INIT_SAVED_REGS.
+       * gdbarch.h, gdbarch.c: Regenerate.
+       * stack.c (frame_info): Update.
+       * sh-tdep.c (sh_find_callers_reg, sh64_get_saved_pr): Update.
+       (sh_init_extra_frame_info, sh64_init_extra_frame_info): Update.
+       (sh64_get_saved_register, sh_pop_frame, sh64_pop_frame): Update.
+       * ns32k-tdep.c (ns32k_pop_frame): Update.
+       * mips-tdep.c (mips_pop_frame): Update.
+       * m68hc11-tdep.c (m68hc11_pop_frame): Update.
+       * ia64-tdep.c (ia64_frame_chain): Update.
+       (ia64_frame_saved_pc, ia64_get_saved_register): Update.
+       (ia64_frameless_function_invocation): Update.
+       (ia64_init_extra_frame_info): Update.
+       (ia64_pop_frame_regular): Update.
+       * frame.h (struct frame_info): Update comment.
+       (DEPRECATED_FRAME_INIT_SAVED_REGS): Rename macro.
+       * frame.c (frame_saved_regs_register_unwind): Update.
+       (frame_saved_regs_register_unwind): Update.
+       (deprecated_generic_get_saved_register): Update.
+       * cris-tdep.c: Update comment.
+       * config/sparc/tm-sparc.h (DEPRECATED_FRAME_INIT_SAVED_REGS):
+       Rename macro.
+       * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
+       * x86-64-tdep.c (x86_64_init_abi): Update.
+       * vax-tdep.c (vax_gdbarch_init): Update.
+       * v850-tdep.c (v850_gdbarch_init): Update.
+       * sparc-tdep.c (sparc_gdbarch_init): Update.
+       * sh-tdep.c (sh_gdbarch_init): Update.
+       * s390-tdep.c (s390_gdbarch_init): Update.
+       * rs6000-tdep.c (rs6000_gdbarch_init): Update.
+       * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
+       * ns32k-tdep.c (ns32k_gdbarch_init): Update.
+       * mn10300-tdep.c (mn10300_gdbarch_init): Update.
+       * mips-tdep.c (mips_gdbarch_init): Update.
+       * mcore-tdep.c (mcore_gdbarch_init): Update.
+       * m68k-tdep.c (m68k_gdbarch_init): Update.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
+       * ia64-tdep.c (ia64_gdbarch_init): Update.
+       * i386-tdep.c (i386_gdbarch_init): Update.
+       * frv-tdep.c (frv_gdbarch_init): Update.
+       * avr-tdep.c (avr_gdbarch_init): Update.
+       * arm-tdep.c (arm_gdbarch_init): Update.
+       * alpha-tdep.c (alpha_gdbarch_init): Update.
+       
+2003-03-01  Andrew Cagney  <cagney@redhat.com>
+
+       * main.c (captured_main): Add OPT_WINDOWS and OPT_NOWINDOWS to
+       option enum and switch.  When no windows, set the interpreter to
+       INTERP_CONSOLE.
+       
+2003-03-01  Andrew Cagney  <cagney@redhat.com>
+
+       * main.c (captured_main): Replace magic option characters with an
+       enum.
+
+2003-03-01  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename
+       INIT_EXTRA_FRAME_INFO.
+       * gdbarch.h, gdbarch.c: Regenerate.
+       * arm-tdep.c: Update comments.
+       * sh-tdep.c, mcore-tdep.c, m68hc11-tdep.c: Ditto.
+       * i386-interix-tdep.c, hppa-tdep.c, h8300-tdep.c: Ditto.
+       * frame.h, avr-tdep.c: Ditto.
+       * frame.c (get_prev_frame): DEPRECATED_INIT_EXTRA_FRAME_INFO.
+       (create_new_frame, legacy_get_prev_frame): Ditto.
+       * config/sparc/tm-sparc.h (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename.
+       * config/pa/tm-hppa.h (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename.
+       * xstormy16-tdep.c (xstormy16_gdbarch_init): Initialize
+       deprecated_init_extra_frame_info instead of init_extra_frame_info.
+       * x86-64-tdep.c (x86_64_init_abi): Ditto.
+       * v850-tdep.c (v850_gdbarch_init): Ditto.
+       * sparc-tdep.c (sparc_gdbarch_init): Ditto.
+       * sh-tdep.c (sh_gdbarch_init): Ditto.
+       * s390-tdep.c (s390_gdbarch_init): Ditto.
+       * ppc-linux-tdep.c (ppc_linux_init_abi): Ditto.
+       * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
+       * mips-tdep.c (mips_gdbarch_init): Ditto.
+       * mcore-tdep.c (mcore_gdbarch_init): Ditto.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
+       * ia64-tdep.c (ia64_gdbarch_init): Ditto.
+       * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
+       * hppa-tdep.c (hppa_gdbarch_init): Ditto.
+       * h8300-tdep.c (h8300_gdbarch_init): Ditto.
+       * frv-tdep.c (frv_gdbarch_init): Ditto.
+       * cris-tdep.c (cris_gdbarch_init): Ditto.
+       * avr-tdep.c (avr_gdbarch_init): Ditto.
+       * arm-tdep.c (arm_gdbarch_init): Ditto.
+       * alpha-tdep.c (alpha_gdbarch_init): Ditto.
+       * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
+
+2003-03-01  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (register_type): New function with predicate.
+       (REGISTER_VIRTUAL_TYPE): Change to function with predicate.
+       * gdbarch.h, gdbarch.c: Re-generate.
+       * arch-utils.c (generic_register_byte): Use generic_register_size.
+       (generic_register_size): When available, use
+       gdbarch_register_type.
+       * regcache.c (init_regcache_descr): When available, initialize the
+       register type array using gdbarch_register_type.  If the
+       architecture supplies gdbarch_register_type, do not use the legacy
+       regcache layout.
+       * d10v-tdep.c (d10v_register_type): Replace
+       d10v_register_virtual_type.
+       (d10v_gdbarch_init): Set register_type instead of
+       register_virtual_type.
+
+2003-03-01  Andrew Cagney  <cagney@redhat.com>
+
+       * Makefile.in (ax-gdb.o): Update dependencies.
+       * ax-gdb.c: Include "regcache.h".
+       (gen_expr): Use register_type instead of REGISTER_VIRTUAL_TYPE.
+       * findvar.c (value_of_register): Ditto.
+       * infcmd.c (default_print_registers_info): Ditto.
+
+2003-03-01  Mark Kettenis  <kettenis@gnu.org>
+
+       * i386-linux-tdep.c (find_minsym_and_objfile): Replace usage of
+       DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
+
+2003-03-01  Mark Kettenis  <kettenis@gnu.org>
+
+       * i386-linux-tdep.c (find_minsym_and_objfile): Use strcmp instead
+       of STREQ.
+
+2003-02-28  Daniel Jacobowitz  <drow@mvista.com>
+
+       * Makefile.in (dwarf2loc.o): Update dependencies.
+       * ax-gdb.c (gen_var_ref): Handle LOC_COMPUTED and LOC_COMPUTED_ARG.
+       * dwarf2expr.c (read_uleb128, read_sleb128): Make non-static.
+       * dwarf2expr.h (read_uleb128, read_sleb128): Add prototypes.
+       * dwarf2loc.c: Include "ax.h" and "ax-gdb.h".
+       (locexpr_tracepoint_var_ref): New function.
+       (dwarf2_locexpr_funcs): Add locexpr_tracepoint_var_ref.
+
+2003-02-28  Andrew Cagney  <cagney@redhat.com>
+
+       * regcache.c (register_size): New function.
+       * regcache.h (register_size): Declare
+       * d10v-tdep.c: Use register_size instead of REGISTER_RAW_SIZE, use
+       max_register_size instead of MAX_REGISTER_RAW_SIZE.
+
+2003-02-28  David Carlton  <carlton@math.stanford.edu>
+
+       * linespec.c (decode_compound): Extract code into find_method.
+       (find_method): New.
+
+2003-02-28  J. Brobecker  <brobecker@gnat.com>
+
+       * Makefile.in: Add rules to build and link in observer.o.
+
+2003-02-27  J. Brobecker  <brobecker@gnat.com>
+
+       * observer.c: Minor comments edits.
+
+2003-02-27  J. Brobecker  <brobecker@gnat.com>
+
+       * observer.h, observer.c: New file.
+
+2003-02-27  Andrew Cagney  <cagney@redhat.com>
+
+       * arm-tdep.c (gdb_print_insn_arm): Rename _bfd to just bfd.
+
+2003-02-27  Stephane Carrez  <stcarrez@nerim.fr>
+
+       * m68hc11-tdep.c (M6811_OP_LDX_EXT, M6811_OP_STS_EXT): New defines.
+       (M6812_OP_STS_EXT): Likewise.
+       (m6811_prologue): Use the above to recognize prologue.
+       (m6812_prologue): Likewise.
+
+2003-02-27  David Carlton  <carlton@math.stanford.edu>
+
+       * symfile.c (compare_symbols): Use SYMBOL_NATURAL_NAME, not
+       SYMBOL_PRINT_NAME.
+       (compare_psymbols): Ditto.
+       * symtab.c (lookup_partial_symbol, lookup_block_symbol): Ditto.
+
+2003-02-27  Michael Snyder  <msnyder@redhat.com>
+
+       * f-lang.c (build_fortran_types): New function.
+       (_initialize_f_language): Gdbarch-register built-in fortran types.
+       * doublest.c (extract_floating): Fix warning text.
+
+2003-02-27  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Procedure with
+       predicate.  Replaces PUSH_DUMMY_FRAME.
+       * gdbarch.h, gdbarch.c: Regnerate.
+       * valops.c (hand_function_call): Update.  Call
+       generic_push_dummy_frame directly.
+       * vax-tdep.c (vax_gdbarch_init): Update.
+       * sparc-tdep.c (sparc_gdbarch_init): Update.
+       * ns32k-tdep.c (ns32k_gdbarch_init): Update.
+       * m68k-tdep.c (m68k_gdbarch_init): Update.
+       * hppa-tdep.c (hppa_gdbarch_init): Update.
+       * alpha-tdep.c (alpha_gdbarch_init): Update.
+       * config/sparc/tm-sparc.h (DEPRECATED_PUSH_DUMMY_FRAME): Update.
+       * config/pa/tm-hppa.h (DEPRECATED_PUSH_DUMMY_FRAME): Update.
+       * inferior.h (PUSH_DUMMY_FRAME): Delete definition.
+       * xstormy16-tdep.c (xstormy16_gdbarch_init): Don't set
+       push_dummy_frame to generic_push_dummy_frame.
+       * v850-tdep.c (v850_gdbarch_init): Ditto.
+       * sh-tdep.c (sh_gdbarch_init): Ditto.
+       * s390-tdep.c (s390_gdbarch_init): Ditto.
+       * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
+       * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
+       * mips-tdep.c (mips_gdbarch_init): Ditto.
+       * mcore-tdep.c (mcore_gdbarch_init): Ditto.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
+       * ia64-tdep.c (ia64_gdbarch_init): Ditto.
+       * i386-tdep.c (i386_gdbarch_init): Ditto.
+       * h8300-tdep.c (h8300_gdbarch_init): Ditto.
+       * frv-tdep.c (frv_gdbarch_init): Ditto.
+       * d10v-tdep.c (d10v_gdbarch_init): Ditto.
+       * cris-tdep.c (cris_gdbarch_init): Ditto.
+       * avr-tdep.c (avr_gdbarch_init): Ditto.
+       * arm-tdep.c (arm_gdbarch_init): Ditto.
+       
+2003-02-26  Kevin Buettner  <kevinb@redhat.com>
+
+       * mips-tdep.c (show_mips_abi): New function.
+       (_initialize_mips_tdep): Use show_mips_abi() to implement the
+       command ``show mips abi''.
+
+2003-02-26  Jeff Johnston  <jjohnstn@redhat.com>
+       From Elena Zannoni  <ezannoni@redhat.com>
+       * dbxread.c (process_one_symbol): Only record line 0 if one or 
+       more sline entries have been seen for the function.
+
+2003-02-26  Michael Chastain  <mec@shout.net>
+
+       * configure: Regenerate with autoconf 000227.
+
+2003-02-26  Michael Chastain  <mec@shout.net>
+
+       Close PR build/660.
+       * PROBLEMS (i[3456]86-*-linux*): Note explicit error message
+       for old libc5/glibc.
+       * gdb_thread_db.h: Die if not HAVE_UINTPTR_T.
+
+2003-02-26  Kris Warkentin  <kewarken@qnx.com>
+
+       * defs.h (gdb_osabi): Add GDB_OSABI_QNXNTO.
+       * osabi.c (gdb_osabi_names): Add "QNX Neutrino".
+
+2003-02-26  Michael Chastain  <mec@shout.net>
+
+       * configure.in: New variable HAVE_UINTPTR_T.
+       * configure, config.in: Regenerated.
+
+2003-02-26  Daniel Jacobowitz  <drow@mvista.com>
+
+       Fix PR build/1097.
+       * utils.c (gdb_realpath): Move closing brace outwards one #endif.
+
+2003-02-25  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (get_prev_frame): Add comment on check for
+       inside_entry_func. Only check for inside_entry_file when not a
+       dummy and not a sentinel.  Check that the new frame is not inner
+       to the old frame.
+
+2003-02-25  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (frame_debug): New variable.
+       (_initialize_frame): Add "set/show debug frame" command.
+       (get_prev_frame): When frame_debug, print reason why unwind
+       failed.
+
+2003-02-25  Michael Chastain  <mec@shout.net>
+
+       * PROBLEMS (i[3456]86-*-linux*): Require glibc 2.1.3 or later
+       to avoid uintptr_t definition problems.
+
+2003-02-25  David Carlton  <carlton@math.stanford.edu>
+
+       * symtab.h (SYMBOL_NATURAL_NAME): New macro.
+       (SYMBOL_LINKAGE_NAME): Ditto.
+       (SYMBOL_PRINT_NAME): Use SYMBOL_NATURAL_NAME and
+       SYMBOL_LINKAGE_NAME.
+       (struct general_symbol_info): Expand comment.
+       (DEPRECATED_SYMBOL_NAME): Rename from SYMBOL_NAME.
+       (SYMBOL_MATCHES_NAME): Use DEPRECATED_SYMBOL_NAME.
+       (SYMBOL_MATCHES_REGEXP): Ditto.
+       * symtab.c (symbol_natural_name): New function.
+       * objfiles.h: Replace all uses of SYMBOL_NAME by
+       DEPRECATED_SYMBOL_NAME.
+       * xcoffread.c, valops.c, typeprint.c, tracepoint.c: Ditto.
+       * symtab.c, symmisc.c, symfile.c, stack.c, stabsread.c: Ditto.
+       * somsolib.c, sol-thread.c, rs6000-tdep.c, p-valprint.c: Ditto.
+       * printcmd.c, objfiles.c, objc-lang.c, mipsread.c: Ditto.
+       * minsyms.c, mdebugread.c, linespec.c, jv-lang.c: Ditto.
+       * i386-tdep.c, i386-linux-tdep.c, hpread.c, hppa-tdep.c: Ditto.
+       * gnu-v2-abi.c, f-valprint.c, findvar.c, expprint.c: Ditto.
+       * dwarfread.c, dwarf2read.c, dbxread.c, c-valprint.c: Ditto.
+       * cp-valprint.c, coffread.c, buildsym.c, breakpoint.c: Ditto.
+       * blockframe.c, ax-gdb.c, arm-linux-tdep.c, ada-lang.c: Ditto.
+       * ada-exp.y: Ditto.
+       * ada-exp.y: Update copyright.
+       * sol-thread.c, mipsread.c, jv-lang.c, f-valprint.c: Ditto.
+       * cp-valprint.c: Ditto.
+
+2003-02-25  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * infptrace.c (detach): Do not flag error if ptrace detach fails
+       and errno is set to ESRCH.
+
+2003-02-24  Andrew Cagney  <cagney@redhat.com>
+
+       * infptrace.c (udot_info): Change type of udot_off to long.  Use
+       paddr when printing udot_off's value.
+
+2003-02-24  David Carlton  <carlton@math.stanford.edu>
+
+       * symtab.c (make_symbol_overload_list): Only read in partial
+       symtabs containing a matching partial symbol.
+
+2003-02-24  David Carlton  <carlton@math.stanford.edu>
+
+       * symtab.c (lookup_partial_symbol): Use strcmp_iw_ordered to
+       do the comparison, not strcmp.
+       * symfile.c (compare_psymbols): Ditto.
+       * defs.h: Declare strcmp_iw_ordered.
+       * utils.c (strcmp_iw_ordered): New function.
+
+2003-02-24  Jim Blandy  <jimb@redhat.com>
+
+       * MAINTAINERS (GNU/Linux/x86, linespec, breakpoints, Scheme
+       support, shared libs): Remove my name from here, to better reflect
+       reality.
+
+2003-02-24  Kris Warkentin  <kewarken@qnx.com>
+
+       * target.h: (HAVE_CONTINUABLE_WATCHPOINT): Define.
+       (target_ops): Add to_have_continuable_watchpoint.
+       * target.c (update_current_target): Add INHERIT line for
+       to_have_continuable_watchpoint.
+       * infrun.c: Remove HAVE_CONTINUABLE_WATCHPOINT defines.
+       * config/i386/nm-i386.h, config/i386/nm-i386sco5.h,
+       config/i386/nm-i386sol2.h, config/s390/nm-linux.h,
+       config/sparc/nm-sun4sol2.h: HAVE_CONTINUABLE_WATCHPOINT defined as 1.
+
+2003-02-24  Elena Zannoni  <ezannoni@redhat.com>
+
+       * MAINTAINERS (Core): Drop main.c and top.c. Clarify event loop
+       maintainership.
+
+2003-02-24  Kris Warkentin  <kewarken@qnx.com>
+
+       * solib.c (solib_open): Call target defined search function after
+       failing with solib-search-path.
+       * solist.h (target_so_ops): Add find_and_open_solib function hook and
+       create define TARGET_SO_FIND_AND_OPEN_SOLIB.
+
+2003-02-24  Kris Warkentin  <kewarken@qnx.com>
+
+       * MAINTAINERS: Add myself to Write After section.
+
+2003-02-23  Stephane Carrez  <stcarrez@nerim.fr>
+
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): long double is 64-bit wide.
+
+2003-02-22  Stephane Carrez  <stcarrez@nerim.fr>
+
+       * m68hc11-tdep.c (m68hc11_init_reggroups): New function.
+       (m68hc11_add_reggroups): New function.
+       (m68hc11_register_reggroup_p): New to register hard/soft reggroups.
+       (m68hc11_gdbarch_init): Install the reggroups.
+       (_initialize_m68hc11_tdep): Initialize them.
+
+2003-02-21  James E Wilson  <wilson@tuliptree.org>
+
+       * MAINTAINERS: Update my email address.
+
 2003-02-21  David Carlton  <carlton@math.stanford.edu>
 
        * arm-tdep.c (arm_gdbarch_init): Add break after default label.
This page took 0.036928 seconds and 4 git commands to generate.