* NEWS: Document target described register support for PowerPC.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index d909550151ea631f193e9fcd4f58e19f4fb644a3..38a3993053ec8c1aebf11c8a1e232578a2ca7b1c 100644 (file)
@@ -1,3 +1,572 @@
+2007-10-15  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * NEWS: Document target described register support for PowerPC.
+       * ppc-tdep.h: Remove ppc_spr constants.
+       (struct gdbarch_tdep): Remove regs, ppc_sr0_regnum, and
+       ppc_builtin_type_vec128 members.
+       (PPC_R0_REGNUM, PPC_F0_REGNUM, PPC_PC_REGNUM, PPC_MSR_REGNUM)
+       (PPC_CR_REGNUM, PPC_LR_REGNUM, PPC_CTR_REGNUM, PPC_XER_REGNUM)
+       (PPC_FPSCR_REGNUM, PPC_MQ_REGNUM, PPC_SPE_UPPER_GP0_REGNUM)
+       (PPC_SPE_ACC_REGNUM, PPC_SPE_FSCR_REGNUM, PPC_VR0_REGNUM)
+       (PPC_VSCR_REGNUM, PPC_VRSAVE_REGNUM, PPC_NUM_REGS): New constants.
+       * rs6000-tdep.c: Include preparsed descriptions.
+       (init_sim_regno_table): Do not iterate over pseudo registers.
+       Look up segment registers by name.  Use sim_spr_register_name
+       for SPRs.
+       (rs6000_register_sim_regno): Call init_sim_regno_table here.
+       (rs6000_builtin_type_vec128): Delete.
+       (rs6000_register_name): Only handle SPE pseudo registers and upper
+       halves.  Call tdesc_register_name for everything else.
+       (rs6000_register_type): Delete.  Replace with...
+       (rs6000_pseudo_register_type): ...this new function.  Only handle
+       SPE pseudo registers.
+       (rs6000_register_reggroup_p): Delete.  Replace with...
+       (rs6000_pseudo_register_reggroup_p): ...this new function.  Only
+       handle SPE pseudo registers.
+       (rs6000_convert_register_p): Use ppc_fp0_regnum instead of
+       "struct reg".
+       (rs6000_register_to_value, rs6000_value_to_register): Remove check
+       of reg->fpr.
+       (e500_register_reggroup_p): Delete.
+       (STR, R, R4, R8, R16, F, P8, R32, R64, R0, A4, S, S4, SN4, S64)
+       (COMMON_UISA_REGS, PPC_UISA_SPRS, PPC_UISA_NOFP_SPRS)
+       (PPC_SEGMENT_REGS, PPC_OEA_SPRS, PPC_ALTIVEC_REGS, PPC_SPE_GP_REGS)
+       (PPC_SPE_UPPER_GP_REGS, PPC_EV_PSEUDO_REGS): Delete macros.
+       (registers_powerpc, registers_403, registers_403GC, registers_505)
+       (registers_860, registers_601, registers_602, registers_603)
+       (registers_604, registers_750, registers_7400, registers_e500): Delete
+       variables.
+       (struct variant): Delete nregs, npregs, num_tot_regs, and regs.  Add
+       tdesc.
+       (tot_num_registers, num_registers, num_pseudo_registers): Delete.
+       (variants): Delete outdated comment.  Use standard target descriptions
+       instead of "struct reg" arrays.
+       (init_variants): Delete.
+       (rs6000_gdbarch_init): Do not guess word size from the BFD
+       architecture if we have a target description.  Select a variant
+       before creating a new architecture.  Use the variant's target
+       description if the target did not define a register layout.
+       Validate target-supplied registers.  Reject mismatches.  Use
+       fixed register numbers and new constants instead of magic
+       numbers.  Call set_gdbarch_ps_regnum.  Call tdesc_use_registers.
+       (_initialize_rs6000_tdep): Initialize the preparsed target
+       descriptions.
+       * target-descriptions.c (tdesc_predefined_types): Add int128 and
+       uint128.
+       (tdesc_find_register_early): New function.
+       (tdesc_numbered_register): Use it.
+       (tdesc_register_size): New function.
+       (tdesc_use_registers): Take a target_desc argument.  Do not use
+       gdbarch_target_desc.
+       * target-descriptions.h (tdesc_use_registers): Update prototype
+       and comment.
+       (tdesc_register_size): New prototype.
+       * Makefile.in (powerpc_32_c, powerpc_403_c, powerpc_403gc_c)
+       (powerpc_505_c, powerpc_601_c, powerpc_602_c, powerpc_603_c)
+       (powerpc_604_c, powerpc_64_c, powerpc_7400_c, powerpc_750_c)
+       (powerpc_860_c, powerpc_e500_c, rs6000_c): New macros.
+       (rs6000-tdep.o): Update.
+       * arm-tdep.c (arm_gdbarch_init): Update call to tdesc_use_registers.
+       * m68k-tdep.c (m68k_gdbarch_init): Likewise.
+       * mips-tdep.c (mips_gdbarch_init): Likewise.
+
+2007-10-15  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
+       features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
+       features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
+       features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
+       features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
+       features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
+       features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c: New
+       generated files.
+
+2007-10-15  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * features/rs6000/power-altivec.xml, features/rs6000/power-core.xml,
+       features/rs6000/power-fpu.xml, features/rs6000/power-oea.xml,
+       features/rs6000/power-spe.xml, features/rs6000/power64-core.xml: New
+       feature descriptions for standard PowerPC register sets.
+
+       * features/rs6000/powerpc-32.xml, features/rs6000/powerpc-403.xml,
+       features/rs6000/powerpc-403gc.xml, features/rs6000/powerpc-505.xml,
+       features/rs6000/powerpc-601.xml, features/rs6000/powerpc-602.xml,
+       features/rs6000/powerpc-603.xml, features/rs6000/powerpc-604.xml,
+       features/rs6000/powerpc-64.xml, features/rs6000/powerpc-7400.xml,
+       features/rs6000/powerpc-750.xml, features/rs6000/powerpc-860.xml,
+       features/rs6000/powerpc-e500.xml, features/rs6000/rs6000.xml: New
+       target descriptions for PowerPC processors.
+
+2007-10-15  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * target-descriptions.c (tdesc_predefined_types): New.
+       (tdesc_named_type): Use it.
+       (tdesc_type_id, maint_print_c_tdesc_cmd): New functions.
+       (_intialize_target_descriptions): Register "maint print c-tdesc".
+       * features/Makefile (XMLTOC, CFILES, GDB): New macros.
+       (cfiles, %.c): New rules.
+       * features/arm-with-iwmmxt.c, features/mips-linux.c,
+       features/mips64-linux.c: New generated files.
+
+       * arm-linux-nat.c: Include preparsed description instead of
+       "xml-support.h".
+       (super_xfer_partial, arm_linux_xfer_partial): Remove.
+       (arm_linux_read_description): New function.
+       (_initialize_arm_linux_nat): Set to_read_description instead of
+       to_xfer_partial.  Initialize preparsed description.
+       * config/arm/linux.mh (TDEP_XML): Delete.
+       * mips-linux-nat.c: Include preparsed descriptions instead of
+       "xml-support.h".
+       (super_xfer_partial, mips_linux_xfer_partial): Remove.
+       (mips_linux_read_description): New function.
+       (_initialize_mips_linux_nat): Set to_read_description instead of
+       to_xfer_partial.  Initialize preparsed description.
+       * config/mips/linux.mh (TDEP_XML): Delete.
+       * Makefile.in (XMLFILES): Remove $(TDEP_XML).
+       (features_headers, arm_with_iwmmxt_c, mips_linux_c)
+       (mips64_linux_c): New macros.
+       (arm-linux-nat.o, mips-linux-nat.o): Update.
+
+2007-10-15  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * cp-abi.c (set_cp_abi_as_auto_default): ARI fix:
+       Replace xasprintf by xstrprintf.
+       symfile-mem.c (add_vsyscall_page): Ditto.
+
+2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * ia64-linux-nat.c (ia64_register_addr): Add gdbarch parameter,
+       replacing use of global current_gdbarch.
+       (ia64_cannot_fetch_register, ia64_cannot_store_register): Likewise.
+       (ia64_linux_fetch_register, ia64_linux_store_register): Update callers.
+
+       * ia64-tdep.c (SIGCONTEXT_REGISTER_ADDRESS): Remove macro.
+       (ia64_sigtramp_frame_init_saved_regs): Add next_frame parameter,
+       replace uses of SIGCONTEXT_REGISTER_ADDRESS.
+       (ia64_sigtramp_frame_cache): Update caller.
+
+2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbarch.sh (deprecated_use_struct_convention): Remove.
+       (extract_return_value, store_return_value): Remove.
+       (return_value): Remove default implementation.
+       * gdbarch.c, gdbarch.h: Regenerate.
+
+       * stack.c (return_command): Remove compatibility hack.
+       * arch-utils.c (legacy_return_value): Remove.
+       * arch-utils.h (legacy_return_value): Likewise.
+
+       * arch-utils.c (always_use_struct_convention): Remove.
+       * arch-utils.h (always_use_struct_convention): Likewise.
+       * value.c (generic_use_struct_convention): Remove.
+       * defs.h (generic_use_struct_convention): Likewise.
+
+2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * avr-tdep.c (avr_return_value): New function.
+       (avr_gdbarch_init): Call set_gdbarch_return_value instead of
+       set_gdbarch_extract_return_value.
+
+       * fvr-tdep.c (frv_return_value): New function.
+       (frv_gdbarch_init): Call set_gdbarch_return_value instead of
+       set_gdbarch_extract_return_value, set_gdbarch_store_return_value,
+       and set_gdbarch_deprecated_use_struct_convention.
+
+       * ia64-tdep.c (ia64_use_struct_convention): Make static.
+       Add check for structure, union, or array types.
+       (ia64_extract_return_value): Make static.
+       (ia64_store_return_value): Make static.  Support multi-word values.
+       (ia64_return_value): New function.
+       (ia64_gdbarch_init): Call set_gdbarch_return_value instead of
+       set_gdbarch_extract_return_value, set_gdbarch_store_return_value,
+       and set_gdbarch_deprecated_use_struct_convention.
+
+2007-10-12  Joel Brobecker  <brobecker@adacore.com>
+
+       * solib-target.c (solib_target_parse_libraries)
+       [HAVEHAVE_LIBEXPAT not defined]: Fix thinko in return type.
+
+2007-10-12  Jim Blandy  <jimb@codesourcery.com>
+
+       * serial.h (struct serial_ops): Document read_prim to return zero
+       at EOF.
+       * ser-base.c (do_ser_base_readchar): Return SERIAL_EOF when
+       read_prim returns zero, not SERIAL_TIMEOUT.
+
+2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * alpha-mdebug-tdep.c: Include "gdb_string.h".
+       (find_proc_desc): Add fix-up code for setjmp procedure descriptor.
+       * mdebugread.c (parse_procedure): Remove setjmp fix-up code.
+       * Makefile.in (alpha-mdebug-tdep.o): Update dependencies.
+
+       * config/alpha/alpha.mt (DEPRECATED_TM_FILE): Remove.
+       * config/alpha/alpha-linux.mt (DEPRECATED_TM_FILE): Remove.
+       * config/alpha/alpha-osf1.mt (DEPRECATED_TM_FILE): Remove.
+       * config/alpha/fbsd.mt (DEPRECATED_TM_FILE): Remove.
+       * config/alpha/tm-alpha.h: Remove file.
+
+2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * breakpoint.c (breakpoint_sals_to_pc): Do not check for
+       DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE.
+
+       * config/pa/tm-hppa.h: Delete file.
+       * config/pa/hppa64.mt: Do not set DEPRECATED_TM_FILE.
+       * config/pa/hppahpux.mt: Likewise.
+       * config/pa/hppa.mt: Likewise.
+       * config/pa/linux.mt: Likewise.
+       * hppa-tdep.c (hppa_pc_requires_run_before_use): Delete.
+
+2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/arm/nm-nbsdaout.h: Remove file.
+       * config/nm-nbsdaout.h: Likewise.
+       * config/nm-nbsd.h: Likewise.
+
+2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * block.h (struct block): Remove "gcc_compile_flag" member.
+       (BLOCK_GCC_COMPILED): Remove.
+       * block.c (allocate_block): Do not clear BLOCK_GCC_COMPILED.
+       * buildsym.c (finish_block): Do not set it.
+       * symmisc.c (dump_symtab_1): Do not dump it.
+
+       * value.h (using_struct_return): Remove "gcc_p" argument.
+       * value.c (using_struct_return): Likewise.
+       * eval.c (evaluate_subexp_standard): Adapt callers.
+       * infcall.c (call_function_by_hand): Likewise.
+       * stack.c (return_command): Likewise.
+       * sparc-tdep.c (sparc32_push_dummy_code): Likewise.
+
+       * gdbarch.sh (push_dummy_code): Remove "using_gcc" parameter.
+       * gdbarch.c, gdbarch.h: Regenerate.
+       * cris-tdep.c (cris_push_dummy_code): Adapt prototype.
+       * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Likewise.
+       * sparc-tdep.c (sparc32_push_dummy_code): Likewise.
+       * infcall.c (generic_push_dummy_code, push_dummy_code): Likewise.
+       (push_dummy_code, call_function_by_hand): Adapt callers.
+
+2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * infcmd.c (print_return_value): Remove STRUCT_RETURN argument.
+       (finish_command_continuation, finish_command): Adapt callers.
+
+2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * infcall.c (call_function_by_hand): Remove special handling
+       for HP aCC compiled code.
+
+2007-10-12  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * cris-tdep.c (cris_push_dummy_call): Support arguments passed by
+       reference.  Fix endianness bugs.
+       (cris_reg_struct_has_address): Remove.
+       (cris_gdbarch_init): Remove set_gdbarch_deprecated_reg_struct_has_addr
+       and set_gdbarch_deprecated_use_struct_convention calls.
+
+       * gdbarch.sh (deprecated_reg_struct_has_addr): Remove.
+       * gdbarch.c, gdbarch.h: Regenerate.
+       * infcall.c (call_function_by_hand): Remove handling of
+       deprecated_reg_struct_has_addr.
+
+2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
+           Kazu Hirata  <kazu@codesourcery.com>
+
+       * breakpoint.c (do_enable_breakpoint): Delay enabling until after
+       checking watchpoint resources.
+
+2007-10-11  Kazu Hirata  <kazu@codesourcery.com>
+
+       * memattr.c (inaccessible_by_default): Change the initial
+       value to 1.
+
+2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       PR gdb/2280
+       * coffread.c (read_one_sym): Check for read errors.
+
+2007-10-11  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * linux-nat.c (lin_lwp_attach_lwp): Use "Linux kernel 2.6.19"
+       instead of "Linux 2.6.19" in comment.
+       (linux_xfer_partial): Use "GNU/Linux target" instead of 
+       "Linux target" in comment.
+       * m68klinux-tdep.c (m68k_linux_inferior_created): Likewise.
+       (m68k_linux_get_sigtramp_info): Likewise.
+
+2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * MAINTAINERS (language support): List Joel and Paul as
+       Ada maintainers.
+
+2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * dbxread.c (process_one_symbol): Remove VARIABLES_INSIDE_BLOCK
+       checks.
+       * config/arm/embed.mt, config/arm/linux.mt, config/arm/wince.mt: Do
+       not set DEPRECATED_TM_FILE.
+       * config/arm/tm-arm.h: Delete file.
+
+2007-10-11  Luis Machado  <luisgpm@br.ibm.com>
+
+       * MAINTAINERS (Write After Approval): Add self.
+
+2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * buildsym.c (record_line): Remove empty lines followed by
+       end-of-sequence markers.
+
+2007-10-11  Kazu Hirata  <kazu@codesourcery.com>
+
+       * configure.tgt: Recognize fido-*-elf.
+
+2007-10-10  Joel Brobecker  <brobecker@adacore.com>
+
+       GDB 6.7 released.
+
+2007-10-10  Markus Deuling  <deuling@de.ibm.com>
+
+       * stack.c (print_frame_args, frame_info, return_command): Use
+       get_regcache_arch or get_frame_arch to get at the current architecture
+       by regcache or by frame, respectively.
+
+2007-10-10  Markus Deuling  <deuling@de.ibm.com>
+
+       * rs6000-nat.c (fetch_register, store_register)
+       (rs6000_fetch_inferior_registers, rs6000_store_inferior_registers): Use
+       get_regcache_arch to get at the current architecture by regcache.
+
+       * rs6000-tdep.c (rs6000_push_dummy_call, rs6000_return_value)
+       (rs6000_register_reggroup_p, e500_move_ev_registe, rs6000_unwind_pc)
+       (rs6000_unwind_dummy_id, rs6000_frame_cache, rs6000_dump_tdep): Replace
+       current_gdbarch by gdbarch.
+       (rs6000_skip_trampoline_code, rs6000_register_to_value)
+       (rs6000_value_to_register): Use get_frame_arch to get at the current
+       architecture by frame_info.
+
+2007-10-10  Markus Deuling  <deuling@de.ibm.com>
+
+       * sparc-tdep.c (sparc_supply_rwindow, sparc_collect_rwindow): Use
+       get_regcache_arch to get at the current architecture by regcache.
+
+       * sparc64-tdep.c (sparc64_supply_gregset, sparc64_collect_gregset)
+       (sparc64_supply_fpregset, sparc64_collect_fpregset): Use
+       get_regcache_arch to get at the current architecture by regcache.
+
+       * sparc64nbsd-nat. (sparc64nbsd_supply_gregset)
+       (sparc64nbsd_collect_gregset, sparc64nbsd_supply_fpregset)
+       (sparc64nbsd_collect_fpregset): Use get_regcache_arch to get at the
+       current architecture by regcache.
+
+2007-10-10  Markus Deuling  <deuling@de.ibm.com>
+
+       * remote-mips.c (mips_wait, mips_fetch_registers)
+       (mips_store_registers): Use get_regcache_arch to get at the
+       current architecture by regcache.
+
+       * mipsnbsd-tdep.c (mipsnbsd_supply_reg, mipsnbsd_fill_reg)
+       (mipsnbsd_supply_fpreg, mipsnbsd_fill_fpreg): Use get_regcache_arch to
+       get at the current architecture by regcache.
+       (mipsnbsd_sigtramp_offset): Use get_frame_arch to get at the current
+       architecture by frame_info.
+
+       * mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers)
+       (mipsnbsd_store_inferior_registers): Use get_regcache_arch to get at
+       the current architecture by regcache.
+
+       * mips-linux-tdep.c (mips_linux_get_longjmp_target)
+       (mips64_linux_get_longjmp_target, mips_linux_o32_sigframe_init)
+       (mips_linux_n32n64_sigframe_init): Use get_frame_arch to get at the
+       current architecture by frame_info.
+       (supply_32bit_reg, mips_supply_gregset, mips_fill_gregset)
+       (mips_supply_fpregset, mips_fill_fpregset, supply_64bit_reg)
+       (mips64_supply_gregset, mips64_fill_gregset, mips64_supply_fpregset)
+       (mips64_fill_fpregset, mips_linux_write_pc): Use get_regcache_arch to
+       get at the current architecture by regcache.
+
+       * mips-linux-nat.c (mips_linux_register_addr)
+       (mips64_linux_register_addr): Replace current_gdbarch by gdbarch.
+       (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset)
+       (mips64_linux_regsets_fetch_registers)
+       (mips64_linux_regsets_store_registers): Use get_regcache_arch to get at
+       the current architecture by regcache.
+
+       * mips64obsd-tdep.c (mips64obsd_sigframe_init): Use get_frame_arch to
+       get at the current architecture by frame_info.
+
+2007-10-10  Markus Deuling  <deuling@de.ibm.com>
+
+       * mips-tdep.c (mips_xfer_register): Use get_regcache_arch to get at the
+       current architecture by regcache.
+       (mips2_fp_compat, mips32_next_pc, mips16_scan_prologue)
+       (mips_insn16_frame_cache, mips32_scan_prologue, mips_insn32_frame_cache)
+       (mips_stub_frame_cache, mips_read_fp_register_single)
+       (mips_read_fp_register_double, mips_print_fp_register)
+       (mips_print_register, print_gp_register_row): Use get_frame_arch to get
+       at the current architecture by frame_info.
+       (mips_register_reggroup_p, mips_pseudo_register_read, mips_unwind_sp)
+       (mips_pseudo_register_write, mips_register_type, mips_unwind_pc)
+       (mips_unwind_dummy_id, mips_eabi_push_dummy_call)
+       (mips_n32n64_push_dummy_call, mips_n32n64_return_value)
+       (mips_o32_push_dummy_call, mips_o32_return_value)
+       (mips_o64_push_dummy_call, mips_o64_return_value)
+       (mips_print_registers_info, mips_dump_tdep): Replace current_gdbarch by
+       gdbarch.
+
+2007-10-10  Markus Deuling  <deuling@de.ibm.com>
+
+       * xtensa-tdep.c (xtensa_register_type, xtensa_pseudo_register_read)
+       (xtensa_pseudo_register_write, xtensa_register_reggroup_p)
+       (xtensa_unwind_pc, xtensa_unwind_dummy_id, xtensa_push_dummy_call)
+       (xtensa_dump_tdep): Replace current_gdbarch by gdbarch.
+       (xtensa_register_write_masked, xtensa_register_read_masked)
+       (xtensa_supply_gregset, xtensa_store_return_value)
+       (xtensa_extract_return_value): Use get_regcache_arch to get at the
+       current architecture by regcache.
+       (xtensa_frame_cache, call0_frame_get_reg_at_entry, call0_frame_cache)
+       (xtensa_frame_prev_register): Use get_frame_arch to get at the current
+       architecture by frame_info.
+
+2007-10-10  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * arm-tdep.c (struct arm_prologue_cache): Remove frameoffset.
+       (thumb_analyze_prologue): Move pv_area_store_would_trash call
+       out of loop.  Do not set cache->frameoffset.
+       (arm_scan_prologue): Use prologue-value mechanism.  Do not set
+       frameoffset.  Simplify framesize.
+       (arm_make_prologue_cache, arm_normal_frame_base): Do not use
+       frameoffset.
+       * arm-tdep.h (enum gdb_regnum): Add ARM_IP_REGNUM.
+
+2007-10-10  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * target.c (update_current_target): Call setup_target_debug.
+       (push_target): Do not call it here.
+
+2007-10-09  Michael Snyder  <msnyder@specifix.com>
+
+       * MAINTAINERS: Update my email address.
+
+2007-10-09  Markus Deuling  <deuling@de.ibm.com>
+
+       * xtensa-tdep.c: Replace following current-gdbarch based macros by
+       their expression:
+       (xtensa_pseudo_register_read)
+       (xtensa_pseudo_register_write): XTENSA_TARGET_FLAGS.
+       (ARG_NOF, ARG_1ST, xtensa_extract_return_value)
+       (xtensa_store_return_value, xtensa_push_dummy_call): CALL_ABI.
+       (xtensa_pseudo_register_read)
+       (xtensa_pseudo_register_write): ISA_USE_WINDOWED_REGISTERS.
+       (xtensa_breakpoint_from_pc): ISA_USE_DENSITY_INSTRUCTIONS.
+       (xtensa_register_type, xtensa_supply_gregset, xtensa_frame_cache)
+       (xtensa_frame_prev_register): NUM_AREGS.
+       (xtensa_pseudo_register_read, xtensa_pseudo_register_write,
+       (xtensa_supply_gregset, xtensa_frame_cache, xtensa_frame_prev_register,
+       (xtensa_extract_return_value, xtensa_store_return_value): WB_REGNUM.
+       (xtensa_supply_gregset, xtensa_frame_cache)
+       (xtensa_frame_prev_register): WS_REGNUM.
+       (xtensa_supply_gregset): LBEG_REGNUM, LEND_REGNUM, LCOUNT_REGNUM,
+       SAR_REGNUM, EXCCAUSE_REGNUM, EXCVADDR_REGNUM
+       (xtensa_register_name, xtensa_register_type, xtensa_reg_to_regnum)
+       (xtensa_pseudo_register_read, xtensa_pseudo_register_write)
+       (xtensa_register_reggroup_p): REGMAP.
+       (call0_track_op): LITBASE_REGNUM.
+       (xtensa_register_type, xtensa_reg_to_regnum, call0_frame_cache):A0_BASE
+       (xtensa_supply_gregset, call0_frame_get_reg_at_entry)
+       (xtensa_frame_prev_register, AREG_NUMBER)
+       (xtensa_register_type): AR_BASE.
+       (xtensa_pseudo_register_read, xtensa_pseudo_register_write): FP_ALIAS.
+       (AREG_NUMBER): AREGS_MASK, WB_MASK, A0_REGNUM.
+       (ARG_1ST, xtensa_pseudo_register_read, xtensa_pseudo_register_write)
+       (xtensa_frame_cache, xtensa_frame_prev_register)
+       (xtensa_extract_return_value, xtensa_store_return_value)
+       (xtensa_push_dummy_call, call0_frame_cache): A0_REGNUM.
+       (xtensa_register_type, xtensa_pseudo_register_read, xtensa_frame_cache)
+       (xtensa_pseudo_register_write, xtensa_unwind_dummy_id)
+       (xtensa_frame_prev_register, xtensa_push_dummy_call)
+       (call0_frame_cache): A1_REGNUM.
+       (xtensa_extract_return_value, xtensa_store_return_value): A2_REGNUM.
+       (xtensa_push_dummy_call): A4_REGNUM.
+       (ARGS_FIRST_REG): A6_REGNUM.
+       (xtensa_pseudo_register_read, xtensa_pseudo_register_write)
+       (xtensa_frame_prev_register): A15_REGNUM.
+       * xtensa-tdep.h: Delete current_gdbarch based macros after replacing
+       them in the appropriate source file:
+       XTENSA_TARGET_FLAGS, SPILL_LOCATION, SPILL_SIZE, CALL_ABI, NUM_AREGS,
+       ISA_USE_WINDOWED_REGISTERS, ISA_USE_DENSITY_INSTRUCTIONS, WB_REGNUM,
+       ISA_USE_EXCEPTIONS, ISA_USE_EXT_L32R, DEBUG_DATA_VADDR_TRAP_COUNT,
+       DEBUG_INST_VADDR_TRAP_COUNT, ISA_MAX_INSN_SIZE, DEBUG_NUM_IBREAKS,
+       DEBUG_NUM_DBREAKS, WS_REGNUM, LBEG_REGNUM, LEND_REGNUM, SAR_REGNUM,
+       REGMAP, LITBASE_REGNUM, DEBUGCAUSE_REGNUM, EXCCAUSE_REGNUM, AR_BASE,
+       EXCVADDR_REGNUM, NUM_IBREAKS, REGMAP_BYTES, NUM_CONTEXTS, FP_ALIAS,
+       FP_LAYOUT, FP_LAYOUT_BYTES, GREGMAP, AREGS_MASK, WB_MASK, A0_REGNUM,
+       A1_REGNUM, A2_REGNUM, A3_REGNUM, A4_REGNUM, A5_REGNUM, A6_REGNUM,
+       A7_REGNUM, A8_REGNUM, A9_REGNUM, A10_REGNUM, A11_REGNUM, A12_REGNUM,
+       A13_REGNUM, A14_REGNUM, A15_REGNUM.
+
+2007-10-09  Markus Deuling  <deuling@de.ibm.com>
+
+       * h8300-tdep.c (h8300_frame_cache): Use get_frame_arch to get at
+       the current architecture by frame_info.
+       (h8300_frame_prev_register
+       (h8300_print_register): Replace current_gdbarch by gdbarch.
+       (h8300_print_registers_info, h8300_register_type)
+       (h8300_register_type): Likewise.
+
+2007-10-09  Markus Deuling  <deuling@de.ibm.com>
+
+       * i386-linux-nat.c (fetch_register): Use get_regcache_arch to get at
+       the current architecture by regcache.
+       (store_register, supply_gregset, fill_gregset, i386_linux_resume)
+       (i386_linux_fetch_inferior_registers)
+       (i386_linux_store_inferior_registers): Likewise.
+       * i386gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Likewise.
+       * i386-nto-tdep.c (i386nto_supply_gregset): Likewise.
+       * i386v4-nat.c (supply_fpregset, fill_fpregset): Likewise.
+       * i386-tdep.c (i386_unwind_pc): Replace current_gdbarch by gdbarch.
+       (i386_extract_return_value, i386_store_return_value): Likewise.
+       * i386-tdep.c (i386_frame_prev_register): Use get_frame_arch to get at
+       the current architecture by frame_info.
+       (i386_sigtramp_frame_cache, i386_get_longjmp_target)
+       (i386_register_to_value, i386_value_to_register): Likewise.
+
+2007-10-09  Markus Deuling  <deuling@de.ibm.com>
+
+       * monitor.c (monitor_supply_register): Use get_regcache_arch to get at
+       the current architecture by regcache.
+       (monitor_store_register, monitor_store_registers): Likewise.
+
+2007-10-09  Markus Deuling  <deuling@de.ibm.com>
+
+       * dbug-rom.c (dbug_supply_register): Use get_regcache_arch to get at
+       the current architecture by regcache.
+
+2007-10-09  Markus Deuling  <deuling@de.ibm.com>
+
+       * arch-utils.c (legacy_return_value): Replace current_gdbarch by
+       gdbarch.
+
+2007-10-09  Markus Deuling  <deuling@de.ibm.com>
+
+       * frame.c (frame_pc_unwind): Use get_frame_arch to get at the current
+       architecture by frame.
+       (frame_save_as_regcache, frame_register_unwind, get_prev_frame_1)
+       (inside_main_func, frame_sp_unwind): Likewise.
+
+2007-10-09  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * solib-svr4.c (enable_break): Add the dynamic linker also if
+       auxv succeeds.
+
+2007-10-09  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
+
+       * MAINTAINERS (Write After Approval): Add self.
+
+2007-10-09  Pedro Alves  <pedro_alves@portugalmail.pt>
+
+       * stabsread.c (read_huge_number): Initialize local variable to 0.
+
 2007-10-09  Pierre Muller  <muller@ics.u-strasbg.fr>
 
         * p-lang.h (pascal_main_name): Add declaration.
This page took 0.028898 seconds and 4 git commands to generate.