* config/ppc-tdep.h (struct gdbarch_tdep): Delete
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 98f5e3b0548519bcb9e1a8f79c330a880cab9fab..1a403ec1ad156a9e2b6344fd4548052c7b030c95 100644 (file)
@@ -1,3 +1,568 @@
+2004-05-04  Jim Blandy  <jimb@redhat.com>
+
+       * config/ppc-tdep.h (struct gdbarch_tdep): Delete
+       'ppc_gplast_regnum' member.
+       (ppc_num_gprs): New enum constant.
+       * ppc-linux-nat.c (ppc_register_u_addr): Use tdep->ppc_gp0_regnum
+       and ppc_num_gprs instead of tdep->ppc_gplast_regnum.
+       * rs6000-nat.c (regmap, fetch_inferior_registers,
+       store_inferior_registers): Same.
+       * rs6000-tdep.c (e500_pseudo_register_read)
+       (e500_pseudo_register_write): Same.
+       (rs6000_gdbarch_init): Don't initialize tdep->ppc_gplast_regnum.
+
+       * config/rs6000/tm-rs6000.h (FPLAST_REGNUM): Delete #definition.
+       * ppc-tdep.h (ppc_num_fprs): New enum constant.
+       * aix-thread.c (fetch_regs_kernel_thread, fill_fprs,
+       store_regs_kernel_thread): Use FP0_REGNUM + ppc_num_fprs, not
+       FPLAST_REGNUM.
+       * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
+       Same.
+       * ppc-linux-nat.c (ppc_register_u_addr): Same.
+       * rs6000-nat.c (regmap, fetch_inferior_registers) 
+       (store_inferior_registers): Same.
+
+       * aix-thread.c (fill_fprs): Fix off-by-one error comparing regno
+       with FPLAST_REGNUM.
+
+2004-05-03  Joel Brobecker  <brobecker@gnat.com>
+
+       * dwarf2read.c (dwarf2_create_include_psymtab): Fix build
+       failure detected by recent versions of GCC.
+       (psymtab_to_symtab_1): No longer use the PST_PRIVATE macro
+       to be consistent with the usage in dwarf2_create_include_psymtab.
+
+2004-05-03  Michael Snyder  <msnyder@redhat.com>
+
+       * mips-tdep.c (mips_gdbarch_init): Fix typo in comment.
+       (heuristic_proc_start): Whitespace cleanup.
+
+2004-05-04  Mark Kettenis  <kettenis@gnu.org>
+
+       * sun3-nat.c: Remove file.
+       * Makefile.in (tm-sun3.h tm-altos.h tm-sun2.h tm-3b1.h): Remove
+       dependencies.
+       (ALLDEPFILES): Remove sun3-nat.c.
+       (sun3-nat.o): Remove dependencies.
+
+       * i386-interix-nat.c, i386-interix-tdep.c,
+       config/i386/nm-interix.h, config/i386/interix.mh,
+       config/i386/interix.mt: Remove files.
+       * Makefile.in (i386-interix-nat.o, i386-interix-tdep.o): Remove
+       dependencies.
+
+2004-05-03  Mark Kettenis  <kettenis@gnu.org>
+
+       * m68k-tdep.h (struct gdbarch_tdep): Add member
+       struct_value_regnum.
+       (m68k_svr4_init_abi): New prototype.
+       * m68k-tdep.c: Include "floatformat.h".  Add comment about all the
+       different calling conventions.
+       (m68k_extract_return_value): Remove code dealing with single-field
+       structs.
+       (m68k_store_return_value): Remove code dealing with single-field
+       structs.  Correctly store return values of 5, 6, 7 or 8 bytes.
+       (m68k_extract_struct_value_address): Remove function.
+       (m68k_svr4_extract_return_value,m68k_svr4_store_return_value)
+       (m68k_reg_struct_return_p, m68k_return_value)
+       (m68k_svr4_return_value): New functions.
+       (m68k_use_struct_convention): Remove function.
+       (m68k_push_dummy_call): Use new struct_value_regnum member of
+       `struct gdbarch_tdep' instead of hardcoded register number to
+       store STRUCT_ADDR.
+       (m68k_svr4_init_abi): New function.
+       (m68k_gdbarch_init): Don't set extract_return_value,
+       store_return_values, deprecated_extract_struct_value_address and
+       use_struct_convention.  Set return_value instead.  Initialize new
+       struct_value_regnum member of `struct gdbarch_tdep'.
+       * m68klinux-tdep.c: Update copyright year.
+       (m68k_linux_extract_return_value, m68k_linux_store_return_value)
+       (m68k_linux_extract_struct_value_address): Remove function.
+       (m68k_linux_init_abi): Don't set extract_return_value,
+       store_return_values, deprecated_extract_struct_value_address and
+       use_struct_convention.  Call m68k_svr4_init_abi but override the
+       new struct_value_regnum member of `struct gdbarch_tdep'.
+       * Makefile.in (m68k-tdep.o): Update dependencies.
+
+2004-05-03  J. Brobecker  <brobecker@gnat.com>
+
+       * dwarf2read.c (line_header): Add new included_p field in
+       field file_names.
+       (partial_die_info): New field has_stmt_list. New field line_offset.
+       (dwarf2_create_include_psymtab): New function.
+       (dwarf2_build_include_psymtabs): New function.
+       (add_file_name): Add forward declaration. Initialize new field.
+       (dwarf_decode_lines): Add new parameter. Enhance this procedure
+       to be able to determine the list of files included by the
+       given unit, and build their associated psymtabs.
+       (dwarf2_build_psymtabs_hard): Build the psymtabs for the included
+       files as well.
+       (psymtab_to_symtab_1): Build the symtabs of all dependencies as well.
+       (read_file_scope): Update call to dwarf_decode_lines.
+       (read_partial_die): Handle DW_AT_stmt_list attributes.
+
+2004-05-02  Michael Chastain  <mec.gnu@mindspring.com>
+
+       Unfix PR gdb/1626.
+       * configure.in: Revert special case for osf5.*.
+       * configure: Regenerate.
+
+2004-05-02  Jim Blandy  <jimb@redhat.com>
+
+       Move the symbol-file-from-memory functions into their own file.
+       * symfile-mem.c, symfile-mem.h: New files.
+       * symfile.c (symbol_file_add_from_bfd): New function.
+       (symbol_file_add): Call symbol_file_add_from_bfd.
+       (symbol_file_add_from_memory, add_symbol_file_from_memory_command):
+       Moved to symfile-mem.c.
+       (_initialize_symfile): Move definition of
+       add-symbol-file-from-memory command to symfile-mem.c.
+       * symfile.h (symbol_file_add_from_bfd): New declaration.
+       * config/i386/linux.mt (TDEPFILES): Add symfile-mem.o.
+       * config/powerpc/linux.mt (TDEPFILES): Same.
+       * Makefile.in (SFILES): Add symfile-mem.c.
+       (symfile_mem_h): New variable.
+       (HFILES_NO_SRCDIR): Add symfile-mem.h.
+       (symfile-mem.o): New rule.
+
+2004-05-01  Andrew Cagney  <cagney@redhat.com>
+
+       * breakpoint.c (insert_bp_location): Use get_frame_id, and
+       frame_find_by_id instead of frame_relative_level.
+       (do_enable_breakpoint): Ditto.
+       * thread.c: Update copyright.
+       (info_threads_command): Ditto, simplify.
+
+       * frame.c (deprecated_generic_get_saved_register): Delete
+       function, moved to "xstormy16-tdep.c".
+       * xstormy16-tdep.c (xstormy16_get_saved_register): Inline
+       deprecated_generic_get_saved_register from "frame.c".
+       (xstormy16_frame_saved_register): Call
+       xstormy16_get_saved_register.
+       * dummy-frame.c (deprecated_find_dummy_frame_regcache): Make
+       static.
+       * dummy-frame.h (deprecated_find_dummy_frame_regcache): Delete.
+       * frame.h (deprecated_generic_get_saved_register): Delete.
+
+2004-05-01  Michael Chastain  <mec.gnu@mindspring.com>
+
+       * dwarfread.c: Update documentation on the state of dwarf-1.
+
+2004-05-01  Andrew Cagney  <cagney@redhat.com>
+
+       * stack.c (select_frame_command): Delete call to
+       frame_relative_level.
+       (print_frame, set_backtrace_limit_command, backtrace_limit_info):
+       Delete #if0 code.
+       (frame_info): Do not print FRAMELESS.
+       (print_block_frame_labels): Replace DEPRECATED_STREQ.
+       (catch_info): Delete #if0 code.
+
+       * frame.c (create_sentinel_frame): Set type to SENTINEL_FRAME.
+       * dummy-frame.c (dummy_frame_this_id): Use get_frame_type, instead
+       of frame_relative_level.
+       * sentinel-frame.c (sentinel_frame_unwinder): Set unwinder's type
+       to SENTINEL_FRAME.
+       * frame.h (enum frame_type): Add SENTINEL_FRAME.
+       * s390-tdep.c (s390_prologue_frame_unwind_cache): Delete calls to
+       frame_relative_level.
+
+       * frame.h (deprecated_set_frame_type): Delete declaration.
+       * frame.c (deprecated_set_frame_type): Delete function, update
+       comments.
+
+       * gdbarch.sh (DEPRECATED_PC_IN_SIGTRAMP): Delete.
+       * gdbarch.h, gdbarch.c: Re-generate.
+       * shnbsd-tdep.c (shnbsd_init_abi): Do not set pc_in_sigtramp.
+       (shnbsd_pc_in_sigtramp): Delete.
+       * i386-interix-tdep.c (i386_interix_init_abi): Do not set
+       pc_in_sigtramp.
+       * hppa-hpux-tdep.c (hppa_hpux_init_abi): Do not set
+       pc_in_sigtramp.
+       * frame.h: Update comments.
+       * ppc-linux-tdep.c: Update comments.
+       * breakpoint.c (bpstat_what): Update comments.
+
+       * Makefile.in (m68klinux-tdep.o, m68klinux-nat.o): Fix
+       m68klinux-tdep.o's dependencies, were previously added to
+       m68klinux-nat.o.
+
+       * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Use pc_in_sigtramp.
+       * alpha-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp.
+       * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
+       * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
+       * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
+
+       * Makefile.in (m68klinux-nat.o): Update dependencies.
+       * m68klinux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
+       (m68k_linux_sigtramp_frame_cache)
+       (m68k_linux_sigtramp_frame_this_id)
+       (m68k_linux_sigtramp_frame_prev_register)
+       (m68k_linux_sigtramp_frame_unwind)
+       (m68k_linux_sigtramp_frame_sniffer)
+       (struct m68k_linux_sigtramp_info, m68k_linux_init_abi): Code from
+       m68k-tdep.h and m68k-tdep.c, add "linux" to function and variable
+       names, use trad-frame.h.
+       * m68k-tdep.h (struct gdbarch_tdep): Delete get_sigtramp_info.
+       (struct m68k_sigtramp_info): Delete.
+       * m68k-tdep.c (m68k_sigtramp_frame_cache)
+       (m68k_sigtramp_frame_this_id, m68k_sigtramp_frame_prev_register)
+       (m68k_sigtramp_frame_unwind, m68k_sigtramp_frame_sniffer)
+       (m68k_gdbarch_init): Delete all the sigtramp code, moved to
+       "m68klinux-tdep.c".
+
+       * infrun.c (check_sigtramp2): Delete check for
+       DEPRECATED_PC_IN_SIGTRAMP and INNER_THAN.
+
+2004-05-01  Mark Kettenis  <kettenis@gnu.org>
+
+       * m68k-tdep.h (m68kbsd_fpreg_offset): New prototype.
+
+2004-05-01  Andrew Cagney  <cagney@redhat.com>
+
+       * frv-linux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
+       (frv_linux_sigtramp_frame_cache)
+       (frv_linux_sigtramp_frame_this_id)
+       (frv_linux_sigtramp_frame_prev_register)
+       (frv_linux_sigtramp_frame_unwind)
+       (frv_linux_sigtramp_frame_sniffer): Copied from frv-tdep.c,
+       include "linux" in function and variable names, directly call
+       frv_linux_pc_in_sigtramp and frv_linux_sigcontext_reg_addr, use
+       the latest trad-frame code.
+       (frv_linux_init_abi): Append frv_linux_sigtramp_frame_sniffer, do
+       not set frv_sigcontext_reg_addr or deprecated_pc_in_sigtramp
+       * Makefile.in (frv-linux-tdep.o): Update dependencies.
+       * frv-tdep.h (frv_set_sigcontext_reg_addr): Delete declaration.
+       * frv-tdep.c (frv_sigtramp_frame_cache)
+       (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
+       (frv_sigtramp_frame_unwind, frv_sigtramp_frame_sniffer): Moved to
+       frv-linux-tdep.c.
+       (frv_gdbarch_init): Do not append a sigtramp sniffer.
+       (struct gdbarch_tdep): Delete sigcontext_reg_addr.
+       (frv_set_sigcontext_reg_addr): Delete function.
+
+       * gdbarch.sh (DEPRECATED_SIGTRAMP_START)
+       (DEPRECATED_SIGTRAMP_END): Delete.
+       * gdbarch.h, gdbarch.c: Re-generate.
+       * arch-utils.c (legacy_pc_in_sigtramp): Simplify.
+       * config/vax/tm-vaxbsd.h: Update copyright.
+       (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
+       (DEPRECATED_IN_SIGTRAMP): Define.
+       * config/m68k/tm-nbsd.h: Update copyright.
+       (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
+       (DEPRECATED_IN_SIGTRAMP): Define.
+
+2004-05-01  Mark Kettenis  <kettenis@gnu.org>
+
+       * dwarf2-frame.c (read_encoded_value): Handle DW_EH_PE_funcrel
+       encondings.  Fixes PR gdb/1628.
+
+       * dwarf2-frame.c (execute_cfa_program): Complain if we encounter a
+       DW_CFA_restore state without a matching DW_CFA_remember_state
+       instead of aborting.  Fixes PR backtrace/1589.
+
+2004-04-30  Joel Brobecker  <brobecker@gnat.com>
+
+       * MAINTAINERS: Add self as AIX maintainer.
+       Update my e-mail address in write-after-approval section.
+
+2004-04-30  Andrew Cagney  <cagney@redhat.com>
+
+       * frame.c (frame_type_from_pc): Delete call to PC_IN_SIGTRAMP.
+       (legacy_get_prev_frame): Ditto.
+
+       * mips-tdep.c (mips_pc_in_sigtramp): Delete.
+       (mips_gdbarch_init): Do not set pc_in_sigtramp.
+       * mipsread.c (sigtramp_address): Delete extern variable.
+       (mipscoff_new_init): Delete reference.
+       * mdebugread.c (sigtramp_address, sigtramp_end): Delete variables.
+       (fixup_sigtramp): Delete function.
+       * config/mips/tm-mips.h (sigtramp_address, sigtramp_end)
+       (fixup_sigtramp): Delete declarations.
+
+       * ppcnbsd-tdep.c (ppcnbsd_init_abi): Do not set
+       deprecated_pc_in_sigtramp.
+       (ppcnbsd_pc_in_sigtramp): Delete function.
+
+2004-05-01  Mark Kettenis  <kettenis@gnu.org>
+
+       * config/m68k/nm-nbsd.h: Tweak comments.
+       * config/m68k/nm-nbsdaout.h: Likewise.
+
+2004-04-30  Andrew Cagney  <cagney@redhat.com>
+
+       * arm-tdep.c (arm_sigtramp_unwind_sniffer): Call
+       legacy_pc_in_sigtramp.
+       * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Ditto.
+
+2004-05-01  Mark Kettenis  <kettenis@gnu.org>
+
+       Add OpenBSD/m68k support.
+       * NEWS (New native configurations): Mention OpenBSD/m68k.
+       * m68kbsd-tdep.c: New file.
+       * m68kbsd-nat.c: New file.
+       * Makefile.in (ALLDEPFILES): Add m68kbsd-nat.c and m68kbsd-tdep.c.
+       (m68kbsd-nat.o, m68kbsd-tdep.o): New dependencies.
+       * configure.host: Add m68k-*-openbsd.
+       * configure.tgt: Add m68k-*-openbsd.
+       * config/m68k/tm-obsd.h: New file.
+       * config/m68k/obsd.mt: New file.
+       * config/m68k/obsd.mh: New file.
+       * config/djgpp/fnchange.lst: Add entries for m68kbsd-nat.c and
+       m68kbsd-tdep.c.
+
+2004-04-30  Andrew Cagney  <cagney@redhat.com>
+
+       * mipsnbsd-tdep.c (mipsnbsd_pc_in_sigtramp): Delete function.
+       (mipsnbsd_init_abi): Do not set pc_in_sigtramp.
+
+2004-04-30  Mark Kettenis  <kettenis@gnu.org>
+
+       * m68k-tdep.c (REMOTE_BPT_VECTOR): Remove define.
+       * config/m68k/tm-nbsd.h (REMOTE_BPT_VECTOR): Remove define.
+
+2004-04-30  Brian Ford  <ford@vss.fsi.com>
+
+       Revert 2004-04-16 change.
+       * i386-tdep.c (i386_gdbarch_init): Fix comment typos.
+       (i386_coff_init_abi): Remove.
+       * i386-tdep.h (i386_coff_init_abi): Remove.
+       * i386-cygwin-tdep.c (i386_cygwin_init_abi): Remove call to above.
+
+2004-04-30  Andrew Cagney  <cagney@redhat.com>
+
+       * blockframe.c (find_pc_partial_function): Delete use of
+       DEPRECATED_PC_IN_SIGTRAMP, DEPRECATED_SIGTRAMP_START and
+       DEPRECATED_SIGTRAMP_END.
+
+       * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Delete.
+       * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Delete.
+       * config/mips/tm-nbsd.h: Delete undef DEPRECATED_IN_SIGTRAMP.
+       * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Delete.
+       * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Delete.
+
+       * defs.h (deprecated_inside_entry_file): Delete declaration.
+       * blockframe.c (deprecated_inside_entry_file): Delete function.
+       (legacy_frame_chain_valid): Delete call.
+       * sh64-tdep.c (sh64_frame_chain): Delete call.
+       * objfiles.h: Update comments.
+       * i386-interix-tdep.c (i386_interix_frame_chain_valid): Delete
+       call.
+       * frame.c (get_prev_frame): Delete call, update comments.
+
+2004-04-30  Brian Ford  <ford@vss.fsi.com>
+
+       * MAINTAINERS (Write After Approval): Add myself.
+
+2004-04-30  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (BELIEVE_PCC_PROMOTION_TYPE): Delete.
+       * gdbarch.h, gdbarch.c: Re-generate.
+       * stabsread.c (define_symbol): Delete BELIEVE_PCC_PROMOTION_TYPE
+       code.
+
+2004-04-30  Andrew Cagney  <cagney@redhat.com>
+
+       * gdb-events.sh (selected_thread_changed)
+       (selected_frame_level_changed, target_changed): Delete.
+       * gdb-events.h, gdb-events.c: Re-generate.
+       * valops.c (value_assign): Update.
+       * stack.c (select_frame_command, up_silently_base)
+       (down_silently_base): Update.
+
+2004-04-29  Andrew Cagney  <cagney@redhat.com>
+
+       * mips-tdep.c (mips_register_type): Re-write, handle 32-bit ABI
+       registers correctly.
+       (print_gp_register_row, mips32_heuristic_proc_desc)
+       (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
+       (mips_o64_push_dummy_call, mips_eabi_push_dummy_call): Eliminate
+       references to mips_isa_regsize.
+
+2004-04-29  Andrew Cagney  <cagney@redhat.com>
+
+       * mips-tdep.c (struct gdbarch_tdep): Delete
+       mips_fp_register_double.
+       (FP_REGISTER_DOUBLE): Delete macro, replace with test for
+       mips_abi_regsize.
+       (mips_gdbarch_init): Do not set mips_fp_register_double.
+       (mips_dump_tdep): Do not print FP_REGISTER_DOUBLE.
+
+2004-04-29  Joel Brobecker  <brobecker@gnat.com>
+
+       Committed by Andrew Cagney.
+        * infrun.c (handle_inferior_event): Rely on frame IDs to detect
+        function calls.
+
+2004-04-29  Andrew Cagney  <cagney@redhat.com>
+
+       * mips-tdep.c (mips_abi_regsize): Replace tdep parameter with
+       gdbarch, use mips_abi, update callers.
+       (mips_stack_argsize): Replace tdep parameter with gdbarch, use
+       mips_abi_regsize, update callers.
+       (struct gdbarch_tdep): Delete mips_default_stack_argsize and
+       mips_default_abi_regsize.
+       (mips_gdbarch_init): Do not set mips_default_stack_argsize and
+       mips_default_abi_regsize.
+
+2004-04-29  Andrew Cagney  <cagney@redhat.com>
+
+       * mips-tdep.c (mips_abi_regsize): Rename mips_saved_regsize.
+       (mips_abi_regsize_string): Rename mips_saved_regsize_string.
+       (struct gdbarch_tdep): Rename mips_default_saved_regsize to
+       mips_default_abi_regsize.
+       (mips_isa_regsize): Rename mips_regisze.
+       * mipsnbsd-tdep.c: Update.
+       * mips-linux-tdep.c: Update.
+       * irix5-nat.c: Update.
+       * mips-tdep.h (mips_isa_regsize): Update.
+
+       * gdb-events.sh (WITH_GDB_EVENTS): Delete macro and references.
+       Delete all disabled code.
+       * gdb-events.h, gdb-events.c: Re-generate.
+       
+2004-04-19  Jerome Guitton  <guitton@gnat.com>
+           Mark Kettenis  <kettenis@gnu.org>
+
+       * i386-tdep.c (i386_skip_prologue): follow the last jump only if
+       the function begins with a branch instruction.
+
+2004-04-29  Mark Kettenis  <kettenis@gnu.org>
+
+       * i386-tdep.c: Fix spelling mistakes.
+
+2004-04-28  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+           Andrew Cagney  <cagney@redhat.com>
+
+       * configure.in (mips-sgi-irix5*): Define _KMEMUSER for
+       <sys/proc.h>.
+       * acconfig.h: Provide default _KMEMUSER value.
+       * config.in, configure: Re-generate.
+       * NEWS: Mention fix.
+
+2004-04-24  Randolph Chung  <tausq@debian.org>
+
+       * configure.host (hppa*-*-linux*): New target.
+       * configure.tgt (hppa*-*-linux*): Likewise.
+       * hppa-tdep.c (hppa_gdbarch_init): Set cannot_fetch_register, move
+       gdbarch_init_osabi() call earlier so that osabi-specific frame
+       unwinders can be registered first.
+       * config/djgpp/fnchange.lst: Add entries for hppa-linux-tdep.c and
+       hppa-linux-nat.c.
+       * config/pa/tm-hppa.h (ISR_REGNUM, PID0_REGNUM, PID1_REGNUM)
+       (PID2_REGNUM, PID3_REGNUM): Add definitions of some register numbers.
+       * config/pa/linux.mh: New file.
+       * config/pa/linux.mt: New file.
+       * config/pa/nm-linux.h: New file.
+       * config/pa/xm-linux.h: New file.
+       * hppa-linux-nat.c: New file.
+       * hppa-linux-tdep.c: New file.
+
+2004-04-28  Randolph Chung  <tausq@debian.org>
+
+       * hppa-tdep.c (hppa32_return_value): Handle both 4- and 8-byte fp
+       return values.
+       (hppa32_push_dummy_call): Fix small struct and floating point argument 
+       passing, and make sure the stack frame is properly aligned.
+
+2004-04-28  Andrew Cagney  <cagney@redhat.com>
+
+       * stack.c (print_stack_frame): Fix description.
+
+       * NEWS: Mention gdb/gdbserver/configure execute permission
+       changed.  PR server/519.
+
+2004-04-28  Andrew Cagney  <cagney@redhat.com>
+
+       * stack.c (print_stack_frame_stub): Delete declaration.
+       (struct print_stack_frame_args, print_stack_frame)
+       (print_frame_info, print_frame): Replace "source" with print what.
+       Replace "print" with "print_level".  Replace "args" with
+       "print_args".
+       * frame.h (show_and_print_stack_frame, print_stack_frame)
+       (print_frame_info): Update declarations.
+       * stack.c (select_and_print_frame, frame_command)
+       (current_frame_command, up_command, down_command): Update calls -
+       use get_selected_frame, pass "enum print_what" for source, do not
+       call frame_relative_level.
+       * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
+       * remote-rdp.c (remote_rdp_open): Ditto.
+       * remote-mips.c (common_open): Ditto.
+       * remote-e7000.c (e7000_start_remote): Ditto.
+       * ocd.c (ocd_start_remote): Ditto.
+       * mi/mi-main.c (mi_cmd_exec_return): Ditto.
+       * infrun.c (normal_stop): Ditto.
+       * inflow.c (kill_command): Ditto.
+       * infcmd.c (finish_command): Ditto.
+       * corelow.c (core_open): Ditto.
+       * tracepoint.c (finish_tfind_command): Ditto.
+       * thread.c (info_threads_command, info_threads_command) 
+       (restore_current_thread, do_captured_thread_select): Ditto.
+       * ada-tasks.c (task_command): Ditto.
+
+2004-04-26  Orjan Friberg <orjanf@axis.com>
+
+       * frame.c: Include "observer.h".
+       (frame_observer_target_changed): New function.
+       (_initialize_frame): Attach target_changed observer.
+       * regcache.c: Include "observer.h".
+       (regcache_observer_target_changed): New function.
+       (_initialize_regcache): Attach target_changed observer.
+       * valops.c: Include "observer.h".
+       (value_assign): Notify target_changed event when modifying register.
+       * Makefile.in (frame.o, regcache.o, valops.o): Add $(observer_h).
+
+2004-04-26  Orjan Friberg <orjanf@axis.com>
+
+       From Paul Koning <pkoning@equallogic.com>:
+       * breakpoint.c (free_valchain): New function.
+       (insert_bp_location, delete_breakpoint): Use free_valchain.
+       (remove_breakpoint): Do not remove the valchain.
+       (bpstat_stop_status): If not stopped by watchpoint, skip
+       watchpoints when generating stop status list.
+       * infrun.c (handle_inferior_event): Make
+       stepped_after_stopped_by_watchpoint a global variable.
+       * remote.c (remote_stopped_data_address): Return watch data
+       address rather than zero if stepped_after_stopped_by_watchpoint is
+       set.
+
+2004-04-25  Michael Chastain  <mec.gnu@mindspring.com>
+
+       Fix PR gdb/1626.
+       * configure.in: Check for curses after termcap.
+       On osf5.*, do not check for ncurses.
+       * configure: Regenerate.
+
+2004-04-25  Mark Kettenis  <kettenis@gnu.org>
+
+       * ppcobsd-nat.c: Include "ppc-tdep.h".
+       * Makefile.in (ppcobsd-nat.o): Update dependencies.
+
+       * stack.c (return_command): Use CHECK_TYPEDEF on the return type.
+       Fixes PR tdep/1623 and PR tdep/1624.
+
+2004-04-24  Michael Chastain  <mec.gnu@mindspring.com>
+
+       * xmodem.h, xmodem.c: Remove files.
+       * Makefile.in: Remove references to xmodem.h, xmodem.c.
+
+2004-04-23  Randolph Chung  <tausq@debian.org>
+
+       * hppa-tdep.c (hppa_stub_unwind_cache, hppa_stub_frame_unwind_cache)
+       (hppa_stub_frame_this_id, hppa_stub_frame_prev_register)
+       (hppa_stub_frame_unwind, hppa_stub_unwind_sniffer): New stub unwinder
+       for handling stackless frames.
+       (hppa_gdbarch_init): Link in hppa_stub_unwind_sniffer. 
+
+2004-04-23  Randolph Chung  <tausq@debian.org>
+
+       * hppa-tdep.c (hppa_frame_cache): Handle the case when frame unwind
+       starts at a pc before the frame is created.
+
+2004-04-23  Joel Brobecker  <brobecker@gnat.com>
+
+       * ChangeLog-2002: Fix year in one of the ChangeLog entries.
+
 2004-04-23  Jerome Guitton  <guitton@gnat.fr>
 
        * rs6000-tdep.c (rs6000_extract_return_value): When extracting a float,
 
        * rs6000-tdep.c (registers_e500, registers_7400): Doc fixes.
 
->>>>>>> 1.5719
 2004-04-19  Daniel Jacobowitz  <drow@mvista.com>
 
        * dwarf2read.c (dwarf2_tmp_obstack, dwarf2_free_tmp_obstack):
This page took 0.041319 seconds and 4 git commands to generate.