* rs6000-aix-tdep.c: Include "regcache.h", "regset.h", and
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index bcf8526348cc934f3a183d099060d53fae18857c..d30267b12532f1b3bb7accc1471e0b9b09944859 100644 (file)
@@ -1,3 +1,964 @@
+2007-04-28  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * rs6000-aix-tdep.c: Include "regcache.h", "regset.h", and
+       "gdb_string.h".
+       (rs6000_aix32_reg_offsets, rs6000_aix64_reg_offsets): New variables.
+       (rs6000_aix_supply_regset, rs6000_aix_collect_regset): New functions.
+       (rs6000_aix32_regset, rs6000_aix64_regset): New variables.
+       (rs6000_aix_regset_from_core_section): New function.
+       (rs6000_aix_init_osabi): Register it.
+       (_initialize_rs6000_aix_tdep): Register GDB_OSABI_AIX osabi and
+       sniffer for bfd_arch_powerpc as well as bfd_arch_rs6000. 
+       * rs6000-nat.c (CoreRegs): Do not define type.
+       (fetch_core_registers, rs6000_core_fns): Remove.
+       (_initialize_core_rs6000): Do not register it.  Rename to ...
+       (_initialize_rs6000_nat): ... this.
+       * Makefile.in (rs6000-aix-tdep.o): Update dependencies.
+
+2007-04-27  Kevin Buettner  <kevinb@redhat.com>
+
+       * dwarf2expr.c (unsigned_address_type): Add forward declaration.
+       (dwarf2_read_address): Sign extend return address as required by
+       target architecture.
+
+2007-04-27  Kevin Buettner  <kevinb@redhat.com>
+
+       * solib-frv.c (lm_base): Bail out if the main executable has
+       not been relocated.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * alpha-linux-tdep.c (alpha_linux_supply_fpregset): Correct location
+       of FPCR register in fpregset.
+
+2007-04-27  Maciej W. Rozycki  <macro@mips.com>
+
+       * Makefile.in (gdbtk-wrapper.o): Update dependencies.
+       (gdbtk-varobj.o, gdbtk-cmds.o, gdbtk-stack.o): Likewise.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/rs6000/nm-rs6000.h (CHILD_SPECIAL_WAITSTATUS): Remove.
+       * rs6000-nat.c (rs6000_wait): New function.
+       (_initialize_core_rs6000): Install it as to_wait target method.
+       * target.c (store_waitstatus): Don't check CHILD_SPECIAL_WAITSTATUS.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/rs6000/nm-rs6000.h (TARGET_CREATE_INFERIOR_HOOK): Remove.
+       * fork-child.c (fork_inferior): Don't call TARGET_CREATE_INFERIOR_HOOK.
+       * rs6000-nat.c (super_create_inferior): New variable.
+       (rs6000_create_inferior): Make static.  Adapt argument list.  Call
+       original version of create_inferior via super_create_inferior.
+       (_initialize_core_rs6000): Install to_create_inferior target method.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * aix-thread.c (aix_thread_xfer_memory): Replace by ...
+       (aix_thread_xfer_partial): ... this.
+       (init_aix_thread_ops): Install to_xfer_partial instead
+       of deprecated_xfer_memory target method.
+
+       * config/powerpc/aix.mh (NATDEPFILES): Remove infptrace.o
+       and inftarg.o, add inf-ptrace.o.
+       * config/rs6000/nm-rs6000.h (FETCH_INFERIOR_REGISTERS,
+       CHILD_XFER_MEMORY, KERNEL_U_SIZE, kernel_u_size): Remove.
+       * rs6000-nat.c: Include "inf-ptrace.h" and "gdb_stdint.h".
+       (fetch_inferior_registers): Rename to ...
+       (rs6000_fetch_inferior_registers): ... this.  Make static.
+       (store_inferior_registers): Rename to ...
+       (rs6000_store_inferior_registers): ... this.  Make static.
+       (read_word, child_xfer_memory): Remove.
+       (rs6000_xfer_partial): New function.
+       (kernel_u_size): Remove.
+       (_initialize_core_rs6000): Add inf_ptrace-based target.
+       * Makefile.in (rs6000-nat.o): Update dependencies.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * inf-ptrace.c: Include "gdb_stdint.h".
+       (inf_ptrace_xfer_partial): Use "uintptr_t" instead of "long" as 
+       intermediate type when casting CORE_ADDR to PTRACE_TYPE_ARG3.
+       (inf_ptrace_fetch_register): Add intermediate cast to "uintptr_t"
+       before casting CORE_ADDR to PTRACE_TYPE_ARG3.
+       (inf_ptrace_store_register): Likewise.
+       * Makefile.in (inf-ptrace.o): Update dependencies.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * configure.host (rs6000-*-*): Merge with powerpc-*-aix* rules.
+       * configure.tgt (rs6000-*-*): Likewise.
+       * config/rs6000/aix4.mh: Delete file.
+       * config/rs6000/aix4.mt: Delete file.
+       * config/rs6000/rs6000.mh: Delete file.
+       * config/rs6000/rs6000.mt: Delete file.
+
+       * config/powerpc/nm-aix.h: Delete file.
+       * config/powerpc/aix.mh (NAT_FILE): Set to config/rs6000/nm-rs6000.h.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * aix-thread.c (fill_sprs32): Change argument types to "uint32_t *".
+       Remove obsolete part of comment.
+       (store_regs_user_thread): Use uint32_t temporaries when calling
+       fill_sprs32.
+       (store_regs_kernel_thread): Likewise.  Add assertion to verify
+       correct size of struct ptsprs members.
+       (aix_thread_xfer_memory): Fix type of myaddr.
+       (aix_thread_extra_thread_info): Fix compiler warning.
+       * rs6000-nat.c (rs6000_ptrace64): Change type of buf to "void *".
+       (fetch_register, store_register): Adapt callers.
+
+2007-04-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * vec.h (vec_free): Rename to vec_free_.  Adapt users.
+
+2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * alpha-linux-tdep.c: Include "gdb_string.h", "regset.h",
+       and "regcache.h".
+       (alpha_linux_supply_gregset, alpha_linux_supply_fpregset): New.
+       (alpha_linux_gregset, alpha_linux_fpregset): New variables.
+       (alpha_linux_regset_from_core_section): New function.
+       (alpha_linux_init_abi): Install it.
+       * alpha-linux-nat.c: Do not include "gdbcore.h".  Include
+       "alpha-tdep.h", <sys/ptrace.h>, <alpha/ptrace.h>,
+       <sys/procfs.h>, and "gregset.h".
+       (ALPHA_REGSET_BASE, ALPHA_REGSET_UNIQUE, ALPHA_UNIQUE_PTRACE_ADDR):
+       Move from config/alpha/nm-linux.h.
+       (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): Copy
+       from alpha-nat.c.
+       (alpha_linux_register_u_offset): Inline register_addr from alpha-nat.c.
+       * alpha-nat.c: Remove #ifdef __linux__ section.
+       (fetch_elf_core_registers, alpha_elf_core_fns): Remove.
+       (_initialize_core_alpha): Do not register alpha_elf_core_fns.
+       (ALPHA_UNIQUE_PTRACE_ADDR, ALPHA_REGSET_UNIQUE): Define unconditionally.
+       (ALPHA_REGSET_BASE): Move from config/alpha/nm-osf.h.
+       * config/alpha/alpha-linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       (NATDEPFILES): Remove alpha-nat.o.
+       * config/alpha/nm-linux.h: Delete file.
+       * config/alpha/nm-osf.h (ALPHA_REGSET_BASE): Move to alpha-nat.c.
+       * Makefile.in (alpha-linux-nat.o): Update dependencies.
+       (alpha-linux-tdep.o): Likewise.
+
+2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * mips-linux-nat.c: No longer include "gdbcore.h".
+       (mips_linux_register_addr): Move from mips-linux-tdep.c.
+       (mips64_linux_register_addr): Likewise.
+       (mips_linux_register_u_offset): Call mips_linux_register_addr or
+       mips64_linux_register_addr instead of register_addr.
+       * mips-linux-tdep.c (mips_linux_register_addr,
+       mips64_linux_register_addr): Move to mips-linux-nat.c.
+       (register_addr): Remove.
+       (register_addr_data, init_register_addr_data): Remove.
+       (_initialize_mips_linux_tdep): Do not initialize register_addr_data.
+       (set_mips_linux_register_addr): Remove.
+       (mips_linux_init_abi): Do not call set_mips_linux_register_addr.
+       * Makefile.in (mips-linux-nat.o): Update dependencies.
+
+2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * linux-nat.c (linux_register_u_offset): Remove.
+       (linux_target_install_ops): New function.
+       (linux_target): Use it.
+       (linux_trad_target): New function.
+       * linux-nat.h (linux_trad_target): Declare.
+
+       * alpha-linux-nat.c: Include "gdbcore.h".
+       (alpha_linux_register_u_offset): New function.
+       (_initialize_alpha_linux_nat): Use linux_trad_target.
+
+       * mips-linux-nat.c: Include "gdbcore.h".
+       (mips_linux_register_u_offset): New function.
+       (_initialize_mips_linux_nat): Use linux_trad_target.
+
+       * config/arm/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/arm/nm-linux.h: Delete file.
+
+       * config/i386/nm-linux64.h (FETCH_INFERIOR_REGISTERS): Remove.
+       * config/i386/nm-linux.h (FETCH_INFERIOR_REGISTERS): Remove.
+
+       * config/ia64/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/ia64/nm-linux.h: Delete file.
+
+       * config/m32r/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/m32r/nm-linux.h: Delete file.
+
+       * config/m68k/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/m68k/nm-linux.h: Delete file.
+
+       * config/pa/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/pa/nm-linux.h: Delete file.
+
+       * config/powerpc/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/powerpc/ppc64-linux.mh (NAT_FILE): Likewise.
+       * config/powerpc/nm-linux.h: Delete file.
+
+       * config/s390/s390.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/s390/nm-linux.h: Delete file.
+
+       * config/sparc/linux.mh (NAT_FILE): Set to config/nm-linux.h.
+       * config/sparc/linux64.mh (NAT_FILE): Likewise.
+       * config/sparc/nm-linux.h: Delete file.
+
+       * Makefile.in (alpha-linux-nat.o): Update dependencies.
+       (mips-linux-nat.o): Likewise.
+
+2007-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * core-aout.c: Delete file.
+       * Makefile.in (ALLDEPFILES): Remove core-aout.c.
+       (core-aout.o): Delete rule.
+       * gdbcore.h (kernel_u_addr, KERNEL_U_ADDR): Remove.
+
+       * config/alpha/nm-linux.h (U_REGS_OFFSET): Remove.
+
+       * arm-linux-nat.c (arm_linux_kernel_u_size): Remove.
+       * config/arm/nm-linux.h (U_REGS_OFFSET, KERNEL_U_SIZE,
+       KERNEL_U_ADDR): Remove.
+
+       * i386-linux-nat.c (register_u_addr, kernel_u_size): Remove.
+       (cannot_fetch_register, cannot_store_register): Remove.
+       (fetch_register): Inline cannot_fetch_register and register_addr.
+       (store_register): Inline cannot_store_register and register_addr.
+       * config/i386/linux.mh (NATDEPFILES): Remove core-aout.o.
+       * config/i386/nm-linux.h (KERNEL_U_SIZE, KERNEL_U_ADDR,
+       REGISTER_U_ADDR, CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER):
+       Remove.
+
+       * m68klinux-nat.c (m68k_linux_register_u_addr, kernel_u_size): Remove.
+       (fetch_register): Inline register_addr.
+       (store_register): Inline register_addr.
+       * config/m68k/linux.mh (NATDEPFILES): Remove core-aout.o.
+       * config/m68k/nm-linux.h (KERNEL_U_SIZE, KERNEL_U_ADDR,
+       U_REGS_OFFSET, REGISTER_U_ADDR): Remove.
+
+       * config/mips/nm-irix5.h (REGISTER_U_ADDR): Remove.
+       * config/mips/nm-linux.h (KERNEL_U_SIZE, U_REGS_OFFSET,
+       REGISTER_U_ADDR): Remove.
+
+       * hppa-linux-nat.c (register_addr): Rename to ...
+       (hppa_linux_register_addr): ... this.  Make static.
+       (fetch_register, store_register): Adapt callers.
+       * config/pa/nm-linux.h (U_REGS_OFFSET): Remove.
+
+       * ppc-linux-nat.c (kernel_u_size): Remove.
+       * config/powerpc/nm-linux.h (KERNEL_U_SIZE, KERNEL_U_ADDR): Remove.
+
+       * vax-nat.c (vax_kernel_u_addr, vax_register_u_addr): Make static.
+       * config/vax/vax.mh (NATDEPFILES): Remove core-aout.o.
+       (NAT_FILE): Remove.
+       * config/vax/nm-vax.h: Delete file.
+
+2007-04-20  Mark Shinwell  <shinwell@codesourcery.com>
+
+       * MAINTAINERS (Write After Approval): Add myself.
+
+2007-04-20  Mark Shinwell  <shinwell@codesourcery.com>
+
+       * Makefile.in: Adjust dependencies of m68klinux-tdep.c.
+       * m68klinux-tdep.c (m68k_uclinux_sigcontext_reg_offset): New.
+       (m68k_linux_sigcontext_reg_offset): Fix typo.
+       (target_is_uclinux): New.
+       (m68k_linux_inferior_created): New.
+       (m68k_linux_get_sigtramp_info):  Check for uClinux or
+       normal Linux.  Use m68k_uclinux_sigcontext_reg_offset for
+       uClinux.
+       (_initialize_m68k_linux_tdep): Register
+       m68k_linux_inferior_created.
+
+2007-04-19  Pedro Alves  <pedro_alves@portugalmail.pt>
+
+       * win32-nat.c (win32_detach): Remove delete_command call.
+       Resume inferior with win32_resume instead of win32_continue.
+
+2007-04-19  Jerome Guitton  <guitton@adacore.com>
+
+       * ser-mingw.c (fd_is_file): New function.
+       (file_select_thread): New function.
+       (ser_console_wait_handle): Add special handling for files.
+
+2007-04-18  Denis Pilat  <denis.pilat@st.com>
+
+       * dwarf2read.c (read_subrange_type): Use DW_ATE_signed default type
+       when missing from DW_TAG_subrange_type.  Remove the handling of null
+       return from die_type.
+
+2007-04-18  Maciej W. Rozycki  <macro@mips.com>
+
+       * mips-tdep.c (mips_eabi_push_dummy_call): Revert the last
+       change to rearrange some brackets.
+       (mips_n32n64_push_dummy_call): Likewise.
+       (mips_o32_push_dummy_call): Likewise.
+       (mips_o64_push_dummy_call): Likewise.
+
+2007-04-18  Denis Pilat  <denis.pilat@st.com>
+
+       * infcmd.c (post_create_inferior): Start with a call to 
+       target_terminal_ours.
+
+2007-04-17  Maciej W. Rozycki  <macro@mips.com>
+
+       * mips-tdep.c (mips_eabi_push_dummy_call): Rearrange some
+       brackets.
+       (mips_n32n64_push_dummy_call): Likewise.  Reformat some
+       expressions.
+       (mips_o32_push_dummy_call): Likewise.
+       (mips_o64_push_dummy_call): Likewise.
+
+2007-04-17  Maciej W. Rozycki  <macro@mips.com>
+
+       * mips-tdep.c (mips_n32n64_push_dummy_call): Fix a typo in a
+       comment.
+
+2007-04-17  Maciej W. Rozycki  <macro@mips.com>
+
+       * mips-tdep.c (mips_n32n64_push_dummy_call): Fix a typo in a
+       comment.
+       (mips_o32_push_dummy_call): Likewise.
+
+2007-04-17  Andreas Schwab  <schwab@suse.de>
+
+       * symtab.c (skip_prologue_using_sal): Allow the end of the prologue
+       sal to be bigger than the end of the function.
+
+2007-04-17  Maciej W. Rozycki  <macro@mips.com>
+            Nigel Stephens  <nigel@mips.com>
+
+       * mips-tdep.c (mips_o32_push_dummy_call): Take account of
+       argument alignment requirements when calculating stack space
+       required.  When aligning an arg register to eight bytes
+       boundary, align stack_offset too.  Write floating-point
+       arguments to the appropriate integer register if need go there.
+       (mips_o64_push_dummy_call): Likewise.
+
+2007-04-14  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbarch.sh (software_single_step): Remove "insert_breakpoints_p" and
+       "sig" arguments, add "regcache" argument.
+       * gdbarch.c, gdbarch.h: Regenerate.
+
+       * infrun.c (resume): Update SOFTWARE_SINGLE_STEP call arguments.
+       (handle_inferior_event): Call remove_single_step_breakpoints directly
+       instead of calling SOFTWARE_SINGLE_STEP to remove breakpoints.
+
+       * alpha-tdep.c (alpha_software_single_step): Update argument list.
+       Remove handling of !insert_breakpoints_p case.
+       * arm-tdep.c (arm_software_single_step): Likewise.
+       * cris-tdep.c (cris_software_single_step): Likewise.
+       * mips-tdep.c (mips_software_single_step): Likewise.
+       * rs6000-tdep.c (rs6000_software_single_step): Likewise.
+       * sparc-tdep.c (sparc_software_single_step): Likewise.
+       * spu-tdep.c (spu_software_single_step): Likewise.
+
+       * alpha-tdep.h (alpha_software_single_step): Update prototype.
+       * mips-tdep.h (mips_software_single_step): Likewise.
+       * rs6000-tdep.h (rs6000_software_single_step): Likewise.
+       * sparc-tdep.h (sparc_software_single_step): Likewise.
+
+2007-04-14  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * alpha-tdep.c (alpha_software_single_step): Do not call write_pc
+       when removing single-step breakpoints.
+
+2007-04-14  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * varobj.h (varobj_set_frozen): New
+       (varobj_get_frozen): New.
+       (varobj_update): New parameter explicit.
+       * varobj.c (struct varobj): New fields frozen
+       and not_fetched.
+       (varobj_set_frozen, varobj_get_frozen): New.
+       (install_new_value): Don't fetch values for 
+       frozen variable object, or children thereof.  Allow
+       a frozen variable object to have non-fetched value.
+       (varobj_update): Allow updating child variables.
+       Don't traverse frozen children.
+       (new_variable): Initialize the frozen field.
+       (c_value_of_variable): Return NULL for frozen
+       variable without any value yet. 
+       * mi/mi-cmd-var.c (varobj_update_one): New parameter
+       'explicit'.
+       (mi_cmd_var_create): Output the 'frozen' field,
+       as soon as testsuite is adjusted to expect that field.
+       (mi_cmd_var_set_frozen): New.
+       (mi_cmd_var_update): Pass the 'explicit' parameter to
+       varobj_update_one.
+       * mi/mi-cmds.c (mi_cmds): Register '-var-set-frozen'.
+       * mi/mi-cmds.h (mi_cmd_var_set_frozen): Declare.
+       
+2007-04-13  Paul Brook  <paul@codesourcery.com>
+
+       * target-descriptions.c (tdesc_named_type): Add ieee_single and
+       ieee_double.
+       * doc/gdb.texinfo: Document ieee_single and ieee_double target types.
+
+2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * mips-mdebug-tdep.c, mips-mdebug-tdep.h, ocd.c, ocd.h, ppc-bdm.c,
+       remote-e7000.c, remote-hms.c, remote-utils.c, remote-utils.h,
+       scm-exp.c, scm-lang.c, scm-lang.h, scm-tags.h, scm-valprint.c,
+       ser-e7kpc.c, sh3-rom.c, stop-gdb.c: Delete.
+       * Makefile.in: Remove references to deleted files.
+       * README: Do not mention deleted ROM monitor interfaces.
+       * defs.h (enum language): Delete language_scm.
+       * expprint.c (print_subexp_standard): Do not handle OP_EXPRSTRING.
+       (dump_subexp_body_standard): Likewise.
+       * parse.c (operator_length_standard): Likewise.
+       * expression.h (enum exp_opcode): Delete OP_EXPRSTRING.
+       * remote-mips.c: Do not include remote-utils.h.
+       * remote-sim.c: Likewise.  Use remote_debug instead of sr_get_debug
+       throughout.
+       * value.c: Do not include scm-lang.h.
+       (unpack_long): Delete scm_unpack call.
+       * config/h8300/h8300.mt, config/mips/embed.mt,
+       config/powerpc/ppc-eabi.mt, config/powerpc/ppc-sim.mt,
+       config/sh/embed.mt, config/sh/linux.mt: Remove references to
+       deleted files.
+       * NEWS: Mention removed files.
+
+2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * symfile.c (add_psymbol_with_dem_name_to_list): Remove.
+       * symfile.h (add_psymbol_with_dem_name_to_list): Remove prototype.
+
+2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * NEWS: Mention removal of HP aCC support.
+
+2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * solib-svr4.c (IGNORE_FIRST_LINK_MAP_ENTRY): Do not ignore the
+       first entry for static executables.
+       (breakpoint_addr): Delete unused variable.
+       (elf_locate_base): Search for _r_debug in static executables.
+       (enable_break): Do not set breakpoint_addr.  Scan solib_break_names
+       also.
+
+2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * breakpoint.c (update_breakpoints_after_exec, print_it_typical)
+       (bpstat_what, print_one_breakpoint, allocate_bp_location)
+       (mention): Remove bp_through_sigtramp support.
+       * breakpoint.h (enum bptype): Remove bp_through_sigtramp.
+
+2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * breakpoint.c (bpstat_what): Give step-resume higher priority than
+       shlib events.
+
+2007-04-13  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * infrun.c: Doc fixes.
+       (handle_inferior_event): Clarify debug message.
+       (insert_step_resume_breakpoint_at_sal): Print a debug message.
+
+2007-04-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * configure.tgt (arm-*-nto*, sh-*-nto*): Remove.
+
+2007-04-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/m68k/tm-monitor.h: Delete file.
+       * config/m68k/monitor.mt (DEPRECATED_TM_FILE): Remove.
+       * m68k-tdep.c (m68k_gdbarch_init): set_gdbarch_decr_pc_after_break
+       call moved to ...
+       * m68kbsd-tdep.c (m68kbsd_init_abi): ... here and ...
+       * m68klinux-tdep.c (m68k_linux_init_abi): ... here.
+
+2007-04-12  Luis Machado  <luisgpm@br.ibm.com>
+
+       * gdbarch.sh (software_single_step): Change the return type
+       from void to int and reformatted some comments to <= 80
+       columns.
+       * gdbarch.c, gdbarch.h: Regenerated.
+       * alpha-tdep.c (alpha_software_single_step): Likewise.
+       * alpha-tdep.h (alpha_software_single_step): Likewise.
+       * arm-tdep.c (arm_software_single_step): Likewise.
+       * cris-tdep.c (cris_software_single_step): Likewise.
+       * mips-tdep.c (mips_software_single_step): Likewise.
+       * mips-tdep.h (mips_software_single_step): Likewise.
+       * rs6000-tdep.c (rs6000_software_single_step): Likewise.
+       * rs6000-tdep.h (rs6000_software_single_step): Likewise.
+       * sparc-tdep.c (sparc_software_single_step): Likewise.
+       * sparc-tdep.h (sparc_software_single_step): Likewise.
+       * spu-tdep.c (spu_software_single_step): Likewise.
+       * infrun.c (resume): Check the return value from SOFTWARE_SINGLE_STEP
+       and act accordingly.
+
+2007-04-11  Steve Ellcey  <sje@cup.hp.com>
+
+       * configure.ac (build_warnings): Add -Wno-char-subscripts.
+       * configure: Regenerate.
+       * doc/gdbint.texinfo (warning flags): Add -Wno-char-subscripts.
+
+2007-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * libunwind-frame.c (LIBUNWIND_SO): Use major version number for `.so'.
+
+2007-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * gdbtypes.h (TYPE_FLAG_STUB_SUPPORTED, TYPE_STUB_SUPPORTED): New
+       macros.
+       (TYPE_IS_OPAQUE): Empty vs. opaque structures are now
+       distinct on the TYPE_STUB_SUPPORTED debug targets.
+       * dwarf2read.c (read_structure_type): Set TYPE_FLAG_STUB_SUPPORTED.
+
+2007-04-11  Joel Brobecker  <brobecker@adacore.com>
+
+       * sparc-tdep.c (X_RS2): New macro.
+       (sparc_skip_stack_check): New function.
+       (sparc_analyze_prologue): Adjust PC past stack probing
+       sequence if necessary.
+
+2007-04-10  Andreas Schwab  <schwab@suse.de>
+
+       * rs6000-tdep.c (rs6000_dwarf2_reg_to_regnum): Decode 64 as CR
+       register.
+
+2007-04-10  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * breakpoint.c (gdb_breakpoint_query): Really return an
+       enum gdb_rc.
+       (gdb_breakpoint): Likewise.
+       * thread.c (gdb_list_thread_ids): Likewise.
+       (gdb_thread_select): Likewise.
+       * mi/mi-main.c (mi_cmd_thread_select): Expect an enum gdb_rc.
+       (mi_cmd_thread_list_ids): Remove bogus initialization.
+
+2007-04-10  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * Makefile.in (SFILES): Remove hpacc-abi.c.
+       (COMMON_OBS): Remove hpacc-abi.o.
+       (ALLDEPFILES): Remove hpread.c and $(HPREAD_SOURCE).
+       (hpacc-abi.o, hpread.o): Delete rules.
+       * somread.c: Delete extern declarations from hpread.c.
+       (som_symfile_read): Do not call do_pxdb or hpread_build_psymtabs.
+       (som_symfile_finish): Do not call hpread_symfile_finish.
+       (som_symfile_init): Do not call hpread_symfile_init.
+       * config/pa/hppa64.mt (TDEPFILES): Remove hpread.o.
+       * config/pa/hppahpux.mt (TDEPFILES): Likewise.
+       * hpacc-abi.c, hpread.c: Deleted.
+
+2007-04-10  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * solib-svr4.c (enable_break): Simplify return value.
+       (svr4_solib_create_inferior_hook): Do not warn if enable_break fails.
+
+2007-04-10  Andreas Schwab  <schwab@suse.de>
+
+       * solib-svr4.h (struct link_map_offsets): Remove l_addr_size,
+       l_ld_size, l_next_size, l_prev_size, l_name_size.
+
+       * solib-svr4.c (LM_ADDR_FROM_LINK_MAP): Use extract_typed_address
+       to extract addresses from link map.
+       (LM_DYNAMIC_FROM_LINK_MAP): Likewise.
+       (LM_NEXT): Likewise.
+       (LM_NAME): Likewise.
+       (IGNORE_FIRST_LINK_MAP_ENTRY): Likewise.
+       (elf_locate_base): Likewise.
+       (open_symbol_file_object): Likewise.
+       (svr4_fetch_objfile_link_map): Likewise.
+       (SOLIB_EXTRACT_ADDRESS): Remove unused macro.
+       (HAS_LM_DYNAMIC_FROM_LINK_MAP): Test l_ld_offset instead of
+       l_ld_size.
+        (svr4_ilp32_fetch_link_map_offsets): Don't set removed members.
+       (svr4_lp64_fetch_link_map_offsets): Likewise.
+
+       * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Don't set
+       removed members.  Set l_ld_offset to -1 if not present.
+
+2007-04-08  Vladimir Prus  <vladimir@codesourcery.com>
+        
+       Pass stderr of program run with "target remote |"
+        via gdb_stderr.
+       * serial.c (serial_open): Set error_fd to -1.
+       * serial.h (struct serial): New field error_fd.
+       (struct serial_opts): New field avail.
+       * ser-pipe.c (pipe_open): Create another pair
+       of sockets.  Pass stderr to gdb.
+       * ser-mingw.c (pipe_windows_open): Pass
+       PEX_STDERR_TO_PIPE to pex_run.  Initialize
+       sd->error_fd.
+       (pipe_avail): New.
+       (_initialize_ser_windows): Hook pipe_avail.
+       * ser-base.c (generic_readchar): Check if there's
+       anything in stderr channel and route that to gdb_stderr.
+
+2007-04-03  Pedro Alves  <pedro_alves@portugalmail.pt>
+
+       * dbxread.c (read_ofile_symtab): Move current_objfile
+       clearing to after end_stabs.
+
+2007-04-01  Andreas Schwab  <schwab@suse.de>
+
+       * rs6000-tdep.c (rs6000_convert_from_func_ptr_addr): Use parameter
+       gdbarch instead of current_gdbarch.
+
+2007-04-01  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * varobj.c (varobj_create): Keep varobj value
+       NULL when evaluating the type.
+       
+2007-03-31  Pedro Alves  <pedro_alves@portugalmail.pt>
+
+       * NEWS: Mention new Windows CE support.
+
+2007-03-30  Pedro Alves  <pedro_alves@portugalmail.pt>
+
+       * configure.tgt: Move mips*-*-pe and sh*-*-pe to 
+       the obsoletion stanza.
+       * NEWS: Mention deleted targets.
+
+       * config/sh/tm-wince.h: Remove.
+       * config/sh/wince.mt: Remove.
+       * config/mips/tm-wince.h: Remove.
+       * config/mips/wince.mt: Remove.
+
+       * wince.c: Remove.
+       * wince-stub.c: Remove.
+       * wince-stub.h: Remove.
+       * Makefile.in (wince.o): Remove rule.
+       (wince-stub.o): Likewise.
+
+       * mips-tdep.c (mips_next_pc): Make static.
+       * mips-tdep.h (mips_next_pc): Remove declaration.
+       * arm-tdep.c (arm_pc_is_thumb): Make static.
+       (thumb_get_next_pc): Likewise.
+       (arm_get_next_pc): Likewise.
+       * arm-tdep.h (arm_pc_is_thumb_dummy): Remove declaration.
+       (arm_pc_is_thumb): Likewise.
+       (thumb_get_next_pc): Likewise.
+       (arm_get_next_pc): Likewise.
+
+2007-03-30  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * MAINTAINERS: Remove d10v entry.
+       * Makefile.in (SFILES): Remove dwarfread.c.
+       (COMMON_OBS): Remove dwarfread.o.
+       (gdb_sim_d10v_h, abug-rom.o, cpu32bug-rom.o, d10v-tdep.o, dwarfread.o)
+       (remote-est.o, rom68k-rom.o): Delete.
+       * NEWS: Mention removal of d10v, target abug, target cpu32bug,
+       target est, target rom68k, and DWARF 1.
+       * configure.tgt: Mark d10v as removed.
+       * dwarf2read.c: Doc update.
+       * elfread.c (struct elfinfo): Remove dboffset, dbsize, lnoffset,
+       and lnsize.
+       (elf_locate_sections): Do not set them.
+       (elf_symfile_read): Do not call dwarf_build_psymtabs.
+       * symfile.h (dwarf_build_psymtabs): Delete prototype.
+       * config/m68k/monitor.mt (TDEPFILES): Prune.
+       * abug-rom.c, cpu32bug-rom.c, d10v-tdep.c, dwarfread.c,
+       remote-est.c, rom68k-rom.c, config/d10v/d10v.mt: Delete.
+
+2007-03-30  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * doublest.c (convert_floatformat_to_doublest): Use
+       floatformat_classify.
+       (floatformat_is_nan): Rename to...
+       (floatformat_classify): ...this.  Return more information.
+       * doublest.h (enum float_kind): New.
+       (floatformat_is_nan): Replace prototype...
+       (floatformat_classify): ...with this one.
+       * valprint.c (print_floating): Use floatformat_classify.  Handle
+       infinity.
+
+2007-03-30  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * README: Mention ISO C library requirement.
+
+2007-03-30  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * Makefile.in (SFILES): Remove nlmread.c.
+       (COMMON_OBS): Remove nlmread.o.
+       (nlmread.o): Delete rule.
+       * README: Delete reference to remote-st.c.
+       * acinclude.m4 (CY_AC_TCL_LYNX_POSIX): Delete.
+       * defs.h (enum gdb_osabi): Delete GDB_OSABI_NETWARE and
+       GDB_OSABI_LYNXOS.
+       * i386-tdep.c (i386_nw_init_abi, i386_nlm_osabi_sniffer): Delete.
+       (_initialize_i386_tdep): Do not reference them.
+       * nlmread.c: Delete file.
+       * osabi.c (gdb_osabi_names): Remove NetWare and LynxOS.
+       * target.c: Doc update.
+       * thread.c: Delete commented include.
+       * config/alpha/tm-alpha.h: Doc update.
+
+2007-03-30  Chris Dearman  <chris@mips.com>
+
+       * utils.c (string_to_core_addr): Comment typo.
+
+2007-03-30  Chris Dearman  <chris@mips.com>
+
+       * mips-tdep.c: Comment typo.
+
+2007-03-29  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/alpha/nm-osf.h (PTRACE_XFER_TYPE): Remove.
+       * config/mips/nm-linux.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Remove.
+       * config/sparc/nm-linux.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Remove.
+       * config/powerpc/nm-ppc64-linux.h: Remove file.
+       * config/powerpc/ppc64-linux.mh (NATDEPFILES): Set to nm-linux.h.
+       * inferior.h (PTRACE_ARG3_TYPE): Do not define.
+       (call_ptrace): Change type of third argument to PTRACE_TYPE_ARG3.
+       * infptrace.c (call_ptrace): Likewise.
+       * m68klinux-nat.c (PTRACE_XFER_TYPE): Do not define.
+       (fetch_register): Replace PTRACE_ARG3_TYPE by PTRACE_TYPE_ARG3
+       and PTRACE_XFER_TYPE by PTRACE_TYPE_RET.
+       (store_register): Likewise.
+
+2007-03-29  Joel Brobecker  <brobecker@adacore.com>
+
+       * Makefile.in (varobj.o): Add missing dependency.
+
+2007-03-29  Michael Snyder  <msnyder@access-company.com>
+
+       * MAINTAINERS: Update my email address.
+
+2007-03-29  Joel Brobecker  <brobecker@adacore.com>
+
+       Add support for exception handling with multiple versions of
+       the Ada runtime:
+       * ada-lang.c: Update general comments on how Ada exception catchpoints
+       are implemented.
+       (raise_sym_name, raise_unhandled_sym_name, raise_assert_sym_name)
+       (__gnat_raise_nodefer_with_msg): Delete.
+       (ada_unhandled_exception_name_addr_ftype): New type.
+       (exception_support_info): New type.
+       (ada_unhandled_exception_name_addr): Add forward declaration.
+       (ada_unhandled_exception_name_addr_from_raise): Likewise.
+       (default_exception_support_info): New constant.
+       (exception_support_info_fallback): Likewise.
+       (exception_info): New global variable.
+       (ada_exception_support_info_sniffer): New function.
+       (ada_executable_changed_observer): Likewise.
+       (ada_unhandled_exception_name_addr_from_raise): Renamed from
+       ada_unhandled_exception_name_addr.
+       (ada_unhandled_exception_name_addr): Reimplement to match the
+       latest Ada runtime implementation.
+       (error_breakpoint_runtime_sym_not_found): Delete.
+       (ada_exception_sym_name): Get the exception sym name from
+       exception_info rather than hardcoding it.
+       (ada_exception_sal): Add call to ada_exception_support_info_sniffer.
+       Update error handling.
+       * Makefile.in (ada-lang.o): Add dependency on observer.h.
+
+2007-03-29  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * Makefile.in (coff_solib_h, coff-solib.o, i386v-nat.o, lynx-nat.o)
+       (remote-st.o, uw-thread.o): Delete.
+       (HFILES_NO_SRCDIR, ALLDEPFILES): Update.
+       * configure.host: Move hppa*-*-hiux*, i[34567]86-ncr-*,
+       i[34567]86-*-dgux*, i[34567]86-*-lynxos*, i[34567]86-*-sco3.2v5*,
+       i[34567]86-*-sco3.2v4*, i[34567]86-*-sco*, i[34567]86-*-sysv4.2*,
+       i[34567]86-*-sysv4*, i[34567]86-*-sysv5*, i[34567]86-*-unixware2*,
+       i[34567]86-*-unixware*, i[34567]86-*-sysv*, i[34567]86-*-isc*, and
+       rs6000-*-lynxos* to an obsoletion stanza.
+       * configure.tgt: Move hppa*-*-hiux*, i[34567]86-ncr-*,
+       i[34567]86-*-lynxos*, m68*-cisco*-*, m68*-tandem-*, m68*-*-os68k*,
+       and rs6000-*-lynxos* to an obsoletion stanza.  Do not mention
+       i[34567]86-*-netware*.
+       * NEWS: Mention deleted targets.
+
+       * coff-solib.c, coff-solib.h, i386v-nat.c, lynx-nat.c, remote-st.c,
+       uw-thread.c, config/nm-lynx.h, config/i386/i386sco.mh,
+       config/i386/i386sco4.mh, config/i386/i386sco5.mh, config/i386/i386v.mh,
+       config/i386/i386v4.mh, config/i386/i386v42mp.mh,
+       config/i386/ncr3000.mh, config/i386/ncr3000.mt,
+       config/i386/nm-i386sco.h, config/i386/nm-i386sco4.h,
+       config/i386/nm-i386sco5.h, config/i386/nm-i386v.h,
+       config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h,
+       config/m68k/cisco.mt, config/m68k/os68k.mt, config/m68k/st2000.mt,
+       config/m68k/tm-cisco.h, config/m68k/tm-os68k.h,
+       config/rs6000/rs6000lynx.mh, config/rs6000/rs6000lynx.mt,
+       config/rs6000/tm-rs6000ly.h: Delete files.
+
+2007-03-29  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * defs.h (deprecated_registers_changed_hook): Delete declaration.
+       * interps.c (clear_interpreter_hooks): Do not clear
+       deprecated_registers_changed_hook.
+       * regcache.c (registers_changed): Do not call it.
+       * top.c (deprecated_registers_changed_hook): Do not define it.
+       * mi/mi-interp.c (mi_command_loop): Do not clear it.
+       * tui/tui-hooks.c (tui_install_hooks): Do not install it.
+       (tui_remove_hooks): Do not remove it.
+       (tui_selected_frame_level_changed_hook): Check for negative level.
+       Use get_selected_frame.
+       (tui_registers_changed_hook): Deleted.
+
+2007-03-29  Joel Brobecker  <brobecker@adacore.com>
+
+       * stabsread.c (add_undefined_type): Add extra parameter.
+       Now handles nameless types separately.
+       (struct nat): New type.
+       (noname_undefs, noname_undefs_allocated, noname_undefs_length):
+       New static variables.
+       (read_type): Update calls to add_undefined_type.
+       (add_undefined_type_noname): New function.
+       (add_undefined_type_1): Renames from add_undefined_type.
+       (cleanup_undefined_types_noname): New function.
+       (cleanup_undefined_types_1): Renames cleanup_undefined_types.
+       (cleanup_undefined_types): New handles nameless types separately.
+       (_initialize_stabsread): Initialize our new static constants.
+
+2007-03-29  Denis Pilat  <denis.pilat@st.com>
+
+       * configure.ac: Test for signal.h.
+       * configure, config.in: Regenerate.
+
+2007-03-29  Denis Pilat  <denis.pilat@st.com>
+
+       * stack.c (print_stack_frame): Always use LOC_AND_ADDRESS in MI output.
+       * infrun.c (normal_stop): Remove MI specific frame printing treatment.
+
+2007-03-29  Pedro Alves  <pedro_alves@portugalmail.pt>
+
+       * arm-wince-tdep.c: New.
+       * config/arm/wince.mt (DEPRECATED_TM_FILE): Use tm-arm.h.
+       (MT_CFLAGS): Delete.
+       (TM_CLIBS): Delete.
+       (TDEPFILES): Add arm-wince-tdep.o, corelow.o, solib.o,
+       solib-legacy.o, solib-svr4.o, and remove wince.o.
+       * configure.tgt (arm*-*-mingw32ce*): Add.
+       * signals/signals.c [HAVE_SIGNAL_H]: Check.
+       (do_target_signal_to_host): Silence 'not used' warning.
+       * config/arm/tm-wince.h: Remove.
+
+2007-03-28  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * arch-utils.c (legacy_pc_in_sigtramp): Remove.
+       * arch-utils.h (legacy_pc_in_sigtramp): Remove.
+
+       * config/ia64/linux.mt (DEPRECATED_TM_FILE): Remove.
+       * config/ia64/tm-linux.h: Remove file.
+       * ia64-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp callback.
+       * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Use it instead of
+       legacy_pc_in_sigtramp.
+       (ia64_gdbarch_init): Initialize tdep->pc_in_sigtramp.
+       * ia64-linux-tdep.c (ia64_linux_pc_in_sigtramp): Make static.
+       Remove func_name argument.
+       (ia64_linux_init_abi): Install it as tdep->pc_in_sigtramp.
+
+       * infrun.c (HAVE_STEPPABLE_WATCHPOINT): Do not redefine.
+       * target.c (update_current_target): Add to_have_steppable_watchpoint.
+       * target.h (struct target_ops):  Add to_have_steppable_watchpoint.
+       (HAVE_STEPPABLE_WATCHPOINT): Define.
+
+       * config/ia64/linux.mh (NATDEPFILES): Remove core-aout.o.
+       * config/ia64/nm-linux.h (KERNEL_U_ADDR, U_REGS_OFFSET,
+       CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER,
+       TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_STEPPABLE_WATCHPOINT,
+       STOPPED_BY_WATCHPOINT, target_stopped_data_address,
+       target_insert_watchpoint, target_remove_watchpoint): Remove.
+       (FETCH_INFERIOR_REGISTERS): Define.
+       * ia64-linux-nat.c (ia64_register_addr): Make static.
+       (ia64_cannot_fetch_register, ia64_cannot_store_register): Likewise.
+       (ia64_linux_insert_watchpoint): Make static.  Remove ptid_p argument.
+       (ia64_linux_remove_watchpoint): Likewise.  Add type argument.
+       (ia64_linux_stopped_data_address): Make static.  Add target_ops.
+       (ia64_linux_stopped_by_watchpoint): Make static.
+       (ia64_linux_can_use_hw_breakpoint): New function.
+       (ia64_linux_fetch_register, ia64_linux_fetch_registers): Likewise.
+       (ia64_linux_store_register, ia64_linux_store_registers): Likewise.
+       (_initialize_ia64_linux_nat): Install register and watchpoint ops.
+
+2007-03-28  Pedro Alves  <pedro_alves@portugalmail.pt>
+
+       * linespec.c: Include language.h.
+       (find_methods): Add language parameter.  Call
+       lookup_symbol_in_language.  Pass language down.
+       (add_matching_methods): Likewise.  Call
+       lookup_symbol_in_language.
+       (add_constructors): Likewise.
+       (find_method): Pass sym_class to collect_methods.
+       (collect_methods): Add sym_class parameter.  Pass language
+       down.
+       * symtab.c (lookup_symbol): Rename to ...
+       (lookup_symbol_in_language): ... this.  Add language
+       parameter.  Use passed language instead of current_language.
+       (lookup_symbol): New as wrapper around
+       lookup_symbol_in_language.
+       (lookup_symbol_aux): Add language parameter.  Use passed
+       language instead of current_language.
+       (search_symbols): Indent.
+       * symtab.h (enum language): Forward declare.
+       (lookup_symbol_in_language): Declare.
+       (lookup_symbol): Update description.
+       * ada-lang.h (lookup_symbol_in_language): Remove declaration.
+       * ada-lang.c (restore_language): Remove.
+       (lookup_symbol_in_language): Remove.
+
+2007-03-27  Pedro Alves  <pedro_alves@portugalmail.pt>
+
+       * breakpoint.c (bpstat_num): Add int *num parameter.
+       * breakpoint.h (bpstat_num): Likewise.
+       * infcmd.c (continue_command): Adjust to new bpstat_num
+       interface.
+       (program_info): Likewise.
+
+2007-03-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/sh/tm-sh.h: Remove file.
+       * config/sh/embed.mt (DEPRECATED_TM_FILE): Remove.
+       * config/sh/linux.mt (DEPRECATED_TM_FILE): Remove.
+       * config/sh/nbsd.mt (DEPRECATED_TM_FILE): Remove.
+       * config/sh/tm-wince.h: Do not include "sh/tm-sh.h".
+
+2007-03-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/sh/tm-sh.h (DEPRECATED_BIG_REMOTE_BREAKPOINT,
+       DEPRECATED_LITTLE_REMOTE_BREAKPOINT): Remove.
+       * remote.c: Remove code under #ifdef DEPRECATED_REMOTE_BREAKPOINT,
+       DEPRECATED_BIG_REMOTE_BREAKPOINT, DEPRECATED_LITTLE_REMOTE_BREAKPOINT.
+       * sh-tdep.c (sh_breakpoint_from_pc): Return remote breakpoint
+       sequence if target_shortname is "remote".
+
+2007-03-27  Anton Blanchard  <anton@samba.org>
+
+       * rs6000-tdep.c (rs6000_frame_cache): Use tdep->lr_frame_offset
+       instead of wordsize when looking for the LR in a stack frame.
+
+2007-03-27  Andreas Schwab  <schwab@suse.de>
+           Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * dwarf2-frame.c (dwarf2_frame_eh_frame_regnum): Rename to...
+       (dwarf2_frame_adjust_regnum): ...this.  Make static.  Add eh_frame_p
+       argument.  Update all callers.
+       (struct dwarf2_frame_ops): Replace eh_frame_regnum with adjust_regnum.
+       (dwarf2_frame_set_eh_frame_regnum): Rename to...
+       (dwarf2_frame_set_adjust_regnum): ...this.  Update argument type.
+       * dwarf2frame.h (dwarf2_frame_set_eh_frame_regnum): Rename to...
+       (dwarf2_frame_set_adjust_regnum): ...this.
+       (dwarf2_frame_eh_frame_regnum): Delete prototype.
+       * rs6000-tdep.c: Include "dwarf2-frame.h".
+       (rs6000_adjust_frame_regnum): Define.
+       (rs6000_gdbarch_init): Enable use of DWARF CFI frame unwinder.
+       Register rs6000_adjust_frame_regnum.
+
+       * Makefile.in (rs6000-tdep.o): Update dependencies.
+
+2007-03-27  Brooks Moses  <brooks.moses@codesourcery.com>
+
+       * Makefile.in: Add support for a "pdf" target.
+
+2007-03-27  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * amd64-tdep.c (amd64_init_frame_cache): New function.
+       (amd64_alloc_frame_cache, amd64_skip_prologue): Use it.
+
+2007-03-26  Nigel Stephens  <nigel@mips.com>
+            Maciej W. Rozycki  <macro@mips.com>
+
+       * ui-out.c (ui_out_field_core_addr): Truncate address to
+       TARGET_ADDR_BIT size before printing.
+
+2007-03-22  Nigel Stephens  <nigel@mips.com>
+            Maciej W. Rozycki  <macro@mips.com>
+
+       * remote-mips.c (mips_xfer_memory): Update prototype.
+
 2007-03-22  Joel Brobecker  <brobecker@adacore.com>
 
        * symfile.h: #include "symtab.h"
        * ax-general.c (ax_const_l): Select proper opcode for the given
        value.
 
-2007-01-04  Vladimir Prus  <vladimir@codesourcery.com>
+2007-01-05  Vladimir Prus  <vladimir@codesourcery.com>
 
        * varobj.c (c_value_of_root): Don't select frame if variable
        object is out of scope.
 
-2007-01-06  Nick Roberts  <nickrob@snap.net.nz>
+2007-01-05  Nick Roberts  <nickrob@snap.net.nz>
 
        * varobj.c (struct varobj): New member print_value.
        (install_new_value): Compare last printed value with current one
This page took 0.052089 seconds and 4 git commands to generate.