X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2FChangeLog;h=3050b2911a7c7dfe8f43da8acaaf23cc6fe5a2df;hb=2301df11d5d514524a23fcef26fdad54e0cb8654;hp=03af1e05b3bf2323fc84af08ba2395882f12b7c7;hpb=df2a60d01de0957f7f63592260083c28293e62f8;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 03af1e05b3..3050b2911a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,684 @@ +2007-11-15 Markus Deuling + + * arm-tdep.c (arm_prologue_this_id): Replace LOWEST_PC by its + expression and use get_frame_arch to replace current_gdbarch by frame's + architecture. + * arm-tdep.h (LOWEST_PC): Remove + +2007-11-15 Vladimir Prus + + Apply const qualifier to some users of bp_location. + * breakpoint.h (struct bpstats): Make + the breakpoint_at field point at const bp_location. + * breakpoint.c (bpstat_alloc): Accept const + bp_location. + (breakpoint_here_p, breakpoint_inserted_here_p) + (software_breakpoint_inserted_here_p) + (breakpoint_thread_match, bpstat_stop_status) + (read_memory_nobpt, bpstat_have_active_hw_watchpoints): Use + const bp_location for iteration. + (print_it_typical, print_bp_stop_message): Use + const bp_location variable. + +2007-11-15 Vladimir Prus + + Make mark_breakpoints_out static. + * breakpoint.h (mark_breakpoints_out): Remove + declaration. + * breakpoint.c (mark_breakpoints_out): Make static. + +2007-11-15 Vladimir Prus + + Prevent clear_command from directly modifying breakpoint list. + * Makefile.in (breakpoint_h): Update dependency. + * breakpoint.c (clear_command): Do not remove + breakpoints from breakpoint_chain. Collect breakpoints + to delete in a vector. + * breakpoint.h (breakpoint_p): New typedef for pointer to + breakpoint. Register vector of breakpoint_p. + +2007-11-15 Vladimir Prus + + Remove 'run_cleanup'. + * defs.h (do_run_cleanups, make_run_cleanup): Remove + declarations. + * infcmd.c (run_command_1): Call clear_solib instead + of do_run_cleanups. + * jv-lang.c (java_rerun_cleanup): Remove, for lack of + any use. + * solib.c (solib_cleanup_queued, do_clear_solib): Remove. + (update_solib_lib): Don't setup run cleanup. + (no_shared_libraries): Call clear_solib, not do_clear_solib. + * utils.c (run_cleanup_chain, make_run_cleanup) + (do_run_cleanups): Remove. + +2007-11-15 Vladimir Prus + + Remove CLEAR_SOLIB use. + * corelow.c (core_close): Don't check for CLEAR_SOLIB. + * infcmd.c (attach_command): Likewise. + +2007-11-14 Doug Evans + + * buildsym.c (start_subfile,start_symtab): Doc fixes. + +2007-11-13 Thiago Jung Bauermann + + * tui/tui-data.c (tui_prev_win): Guard against NULL. + +2007-11-12 Markus Deuling + + * gdbarch.sh (gdbarch_alloc): Replace current_gdbarch by gdbarch. Remove + obsolete comment. + (verify_gdbarch, gdbarch_dump): Likewise. + (do_read): Update comment. + (addr_bit, bfd_arch_info, target_desc, long_long_bit, floatformat) + (ptr_bit, name_of_malloc): Replace current_gdbarch by gdbarch. + * gdbarch.{c,h}: Regenerate. + +2007-11-12 Markus Deuling + + * xtensa-tdep.c (ARG_1ST): Replace ARGS_FIRST_REG by its expression. + (ARGS_FIRST_REG): Remove. + (areg_numer): New function. + (xtensa_pseudo_register_read, xtensa_frame_prev_register) + (xtensa_extract_return_value, xtensa_store_return_value) + (xtensa_frame_cache): Replace AREG_NUMBER by areg_number. + (AREG_NUMBER): Remove. + (XTENSA_IS_ENTRY, ARG_NOF, ARG_1ST): Add gdbarch as parameter. + (xtensa_frame_cache): Update use of XTENSA_IS_ENTRY. + (xtensa_push_dummy_call): Update use of ARG_NOF. + (extract_call_winsize): Add gdbarch as parameter. Replace + current_gdbarch by gdbarch. + (xtensa_extract_return_value, xtensa_store_return_value): Update call + of extract_call_winsize. + +2007-11-10 Joel Brobecker + + * NEWS: Add entry for new set/show print frame-args command. + +2007-11-09 Kevin Buettner + + * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Add missing + register number to map. Adjust warning check and error/warning + return value code to match expectations of this function's callers. + +2007-11-09 Joel Brobecker + + * stack.c (print_this_frame_argument_p): Handle arguments passed + by reference properly. + +2007-11-09 Joel Brobecker + + * stack.c (print_frame_arguments_choices): New static global. + (print_frame_arguments): Likewise. + (print_this_frame_argument_p): New function. + (print_frame_args): Print the argument value only when appropriate. + (_initialize_task): Add new "set/show print frame-arguments" command. + +2007-11-09 Luis Machado + + * ppc-linux-nat.c (ppc_linux_insert_watchpoint): Move + saved_dabr_value assignment to the correct position. + +2007-11-09 Markus Deuling + + * arch-utils.c (generic_convert_register_p): Add gdbarch as parameter. + * arch-utils.h (generic_convert_register_p): Likewise. + +2007-11-09 Markus Deuling + + * gdbarch.sh (convert_register_p): Add gdbarch as parameter. + * ia64-tdep.c (ia64_convert_register_p): Likewise. + * i387-tdep.c (i387_convert_register_p): Likewise. + * i387-tdep.h (i387_convert_register_p): Likewise. + * alpha-tdep.c (alpha_convert_register_p): Likewise. + * gdbarch.{c,h}: Regenerate. + + * rs6000-tdep.c (rs6000_convert_register_p): Add gdbarch as parameter. + Replace current_gdbarch by gdbarch. + * mips-tdep.c (mips_convert_register_p): Likewise. + * m68k-tdep.c (m68k_convert_register_p): Likewise. + * i386-tdep.c (i386_convert_register_p): Likewise. + +2007-11-08 Aleksandar Ristovski + + * gdb_string.h: Include . + +2007-11-08 Vladimir Prus + + * breakpoint.c (break_command_1): Remove + pending_bp parameter. + (create_breakpoint): Likewise. + (create_breakpoints): Likewise. Adjust call to + create_breakpoint. + (break_command_1): Likewise. Adjust call to + create_breakpoints. + (do_captured_breakpoint): Adjust call to + create_breakpoints. + (break_command, tbreak_command, hbreak_command) + (stopin_command, stopat_command): Adjust call + to break_command_1. + +2007-11-07 Joseph Myers + Daniel Jacobowitz + + * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Right-align + struct values smaller than one doubleword; left-align those + larger. Pass structs containing a single floating-point value in + registers. + +2007-11-07 Joseph Myers + Daniel Jacobowitz + + * gdbtypes.c (floatformats_ibm_long_double): New. + * gdbtypes.h (floatformats_ibm_long_double): Declare. + * ia64-tdep.c (floatformat_ia64_ext): Update for addition of + split_half field. + * mips-tdep.c (n32n64_floatformat_always_valid, + floatformat_n32n64_long_double_big, floatformats_n32n64_long): + Remove. + (mips_gdbarch_init): Use floatformats_ibm_long_double instead of + floatformats_n32n64_long. + * ppc-linux-tdep.c (ppc_linux_init_abi): Use 128-bit IBM long + double. + * doublest.c (convert_floatformat_to_doublest, + convert_doublest_to_floatformat): Handle split floating-point + formats. + * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Handle IBM long + double arguments. + (ppc64_sysv_abi_push_dummy_call): Likewise. + (do_ppc_sysv_return_value): Handle IBM long double return. + +2007-11-07 Vladimir Prus + + Fix crash when a variable object being deleted + has any of its children deleted previously. + + * varobj.c (delete_variable_1): Don't recurse + into deleted children. + +2007-11-07 Markus Deuling + + * gdbarch.sh (legacy_virtual_frame_pointer): Add gdbarch parameter. + * gdbarch.{c,h}: Regenerate. + * arch-utils.c (legacy_virtual_frame_pointer): Add gdbarch parameter. + Replace current_gdbarch by gdbarch. + * m32c-tdep.c (m32c_virtual_frame_pointer): Likewise. + * mips-tdep.c (mips_virtual_frame_pointer): Likewise. + * spu-tdep.c (spu_virtual_frame_pointer): Likewise. + +2007-11-07 Markus Deuling + + * shnbsd-tdep.c (shnbsd_supply_gregset, shnbsd_collect_gregset): Use + get_regcache_arch to get at the current architecture by regcache. + * xstormy16-tdep.c (xstormy16_frame_prev_register): Use get_frame_arch + to get at the current architecture by frame_info. + * fbsd-nat.c (fbsd_make_corefile_notes): Use get_regcache_arch to get + at the current architecture by regcache. + * gnu-v3-abi.c (gnuv3_skip_trampoline): Use get_frame_arch to get at + the current architecture by frame_info. + (build_gdb_vtable_type): Replace current_gdbarch by gdbarch. + * aix-thread.c (special_register_p): Add gdbarch as parameter. + (fetch_regs_kernel_thread, store_regs_kernel_thread): Add gdbarch to + caller of special_register_p. + +2007-11-07 Markus Deuling + + * infcall.c (call_function_by_hand): Use get_frame_arch to get at the + current architecture by frame_info. + +2007-11-07 Markus Deuling + + * xtensa-tdep.h (SIZEOF_GREGSET, XTENSA_ELF_NGREG) Remove. + +2007-11-07 Markus Deuling + + * s390-nat.c (supply_gregset, fill_gregset): Use get_regcache_arch to + get at the current architecture by regcache. + (SUBOFF): Add gdbarch to macro definition. + +2007-11-07 Markus Deuling + + * gdbarch.sh (breakpoint_from_pc): Add gdbarch parameter. + * gdbarch.{c,h}: Regenerate. + + * xtensa-tdep.c (xtensa_breakpoint_from_pc): Add gdbarch parameter. + Replace current_gdbarch by gdbarch. + * sh-tdep.c (sh_breakpoint_from_pc): Likewise. + * sh64-tdep.c (sh64_breakpoint_from_pc): Likewise. + * score-tdep.c (score_breakpoint_from_pc): Likewise. + * mips-tdep.c (mips_breakpoint_from_pc): Likewise. + * m32r-tdep.c (m32r_breakpoint_from_pc): Likewise. + * iq2000-tdep.c (iq2000_breakpoint_from_pc): Likewise. + * arm-tdep.c (arm_breakpoint_from_pc): Likewise. + + * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Add gdbarch + parameter. + * vax-tdep.c (vax_breakpoint_from_pc): Likewise. + * v850-tdep.c (v850_breakpoint_from_pc): Likewise. + * spu-tdep.c (spu_breakpoint_from_pc): Likewise. + * sparc-tdep.c (sparc_breakpoint_from_pc): Likewise. + * s390-tdep.c (s390_breakpoint_from_pc): Likewise. + * mn10300-tdep.c (mn10300_breakpoint_from_pc): Likewise. + * mt-tdep.c (mt_breakpoint_from_pc): Likewise. + * mep-tdep.c (mep_breakpoint_from_pc): Likewise. + * m88k-tdep.c (m88k_breakpoint_from_pc): Likewise. + * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Likewise. + * m32c-tdep.c (m32c_breakpoint_from_pc): Likewise. + * ia64-tdep.c (ia64_breakpoint_from_pc): Likewise. + * i386-tdep.c (i386_breakpoint_from_pc): Likewise. + * hppa-tdep.c (hppa_breakpoint_from_pc): Likewise. + * h8300-tdep.c (h8300_breakpoint_from_pc): Likewise. + * frv-tdep.c (frv_breakpoint_from_pc): Likewise. + * cris-tdep.c (cris_breakpoint_from_pc): Likewise. + * avr-tdep.c (avr_breakpoint_from_pc): Likewise. + * alpha-tdep.c (alpha_breakpoint_from_pc): Likewise. + * m68k-tdep.c (m68k_local_breakpoint_from_pc): Likewise. + + * rs6000-tdep.c (rs6000_breakpoint_from_pc): Add gdbarch parameter. + Replace current_gdbarch by gdbarch. + (rs6000_software_single_step): Use get_frame_arch to get at the + current architecture by frame_info. Add gdbarch to + rs6000_breakpoint_from_pc call. + +2007-11-07 Markus Deuling + + * frv-tdep.c (frv_register_name, frv_check_watch_resources): Replace + macro CURRENT_VARIANT by its expression. + (CURRENT_VARIANT): Remove. + (frv_check_watch_resources): Add gdbarch parameter. + +2007-11-07 Markus Deuling + + * MAINTAINERS (Write After Approval): Add self. + +2007-11-05 Ulrich Weigand + + * features/rs6000/power-core.xml: Use uint32 as register type. + * features/rs6000/power64-core.xml: Use uint64/uint32 as register type. + * features/rs6000/powerpc-32.c: Regenerate. + * features/rs6000/powerpc-403.c: Regenerate. + * features/rs6000/powerpc-403gc.c: Regenerate. + * features/rs6000/powerpc-505.c: Regenerate. + * features/rs6000/powerpc-602.c: Regenerate. + * features/rs6000/powerpc-603.c: Regenerate. + * features/rs6000/powerpc-604.c: Regenerate. + * features/rs6000/powerpc-64.c: Regenerate. + * features/rs6000/powerpc-7400.c: Regenerate. + * features/rs6000/powerpc-750.c: Regenerate. + * features/rs6000/powerpc-860.c: Regenerate. + * features/rs6000/powerpc-e500.c: Regenerate. + +2007-11-05 Joel Brobecker + + * breakpoint.c (set_raw_breakpoint_without_location): Make static. + +2007-11-05 Joel Brobecker + + * breakpoint.h (create_solib_load_event_breakpoint) + (create_solib_unload_event_breakpoint) + (create_fork_event_catchpoint, create_vfork_event_catchpoint) + (create_exec_event_catchpoint): Delete declaration. + * breakpoint.c (create_solib_load_event_breakpoint) + (solib_load_unload_1, create_solib_unload_event_breakpoint): Delete. + (create_fork_event_catchpoint, create_vfork_event_catchpoint) + (create_exec_event_catchpoint): Make static. + +2007-11-05 Joel Brobecker + + * breakpoint.h (set_breakpoint_sal): Remove declaration. + * breakpoint.c (set_breakpoint_sal): Delete. + +2007-11-05 Joel Brobecker + + * buildsym.c (finish_block): Remove "#if 1"/"#endif" brackets. + (make_blockvector): Likewise. Remove FIXME comment. + +2007-11-05 Luis Machado + + * printcmd.c: (printf_command): Add support for new DFP + modifiers %H, %D and %DD. + * configure.ac: Add check for DECFLOAT printf support. + * configure: Regenerated. + +2007-11-02 Ulrich Weigand + + * gdbtypes.h (struct cplus_struct_type): Remove runtime_ptr member. + (TYPE_RUNTIME_PTR, TYPE_VTABLE, TYPE_HAS_VTABLE, + TYPE_PRIMARY_BASE, TYPE_VIRTUAL_BASE_LIST): Remove macros. + (HP_ACC_VFUNC_START, HP_ACC_VBASE_START, HP_ACC_TYPEINFO_OFFSET, + HP_ACC_TOP_OFFSET_OFFSET): Likewise. + (has_vtable, primary_base_class, virtual_base_list_length, + virtual_base_list_length_skip_primaries, virtual_base_index, + virtual_base_index_skip_primaries, class_index_in_primary_list, + count_virtual_fns): Remove prototypes. + * gdbtypes.c (has_vtable, primary_base_class, current_vbase_list, + virtual_base_list_aux, virtual_base_list, virtual_base_list_length, + virtual_base_list_length_skip_primaries, virtual_base_index, + virtual_base_index_skip_primaries, class_index_in_primary_list, + count_virtual_fns): Remove. + + * cp-valprint.c (cp_print_hpacc_virtual_table_entries): Remove. + (hpacc_vtbl_ptr_name, hpacc_vtbl_ptr_type_name): Remove. + (cp_print_value_fields): Remove support for HP aCC vtables. + (cp_print_value): Likewise. + * c-typeprint.c (c_type_print_base): Likewise. + + * value.h (find_rt_vbase_offset): Remove prototype. + * valops.c (find_rt_vbase_offset): Remove. + (search_struct_method): Remove support for HP aCC vtables. + (find_method_list): Likewise. + +2007-11-02 Ulrich Weigand + + * language.h (struct language_defn): Remove la_builtin_type_vector + and string_char_type members. + * language.c (language_string_char_type): No longer consult + la->string_char_type. + (language_lookup_primitive_type_by_name): No longer consult + current_language->la_builtin_type_vector. + + * language.c (unknown_language_defn, auto_language_defn, + local_language_defn): Adapt initializer. + * ada-lang.c (ada_language_defn): Likewise. + * c-lang.c (c_language_defn, cplus_language_defn, asm_language_defn, + minimal_language_defn): Likewise. + * f-lang.c (f_language_defn): Likewise. + * jv-lang.c (java_language_defn): Likewise. + * m2-lang.c (m2_language_defn): Likewise. + * objc-lang.c (objc_language_defn): Likewise. + * p-lang.c (pascal_language_defn): Likewise. + * scm-lang.c (scm_language_defn): Likewise. + +2007-11-02 Markus Deuling + + * frame.c (frame_id_inner): Add gdbarch parameter. Replace + current_gdbarch by gdbarch. + (frame_find_by_id, get_prev_frame_1): Use get_frame_arch to get at the + current architecture by frame_info. + * frame.h (frame_id_inner): Add gdbarch parameter. + * stack.c (return_command): Use get_frame_arch to get at the current + architecture by frame_info. Update call of frame_id_inner. + * infrun.c (handle_inferior_event): Likewise. + * dummy-frame.c (dummy_frame_push): Use get_regcache_arch to get at the + current architecture by regcache. Update call of frame_id_inner. + +2007-11-02 Markus Deuling + + * gdbarch.sh (register_name): Add gdbarch parameter. + * gdbarch.{c,h}: Regenerate. + + * target-descriptions.c (tdesc_register_name): Add gdbarch parameter. + (tdesc_register_name): Replace current_gdbarch by gdbarch. + * target-descriptions.h (tdesc_register_name): Add gdbarch parameter. + + * xstormy16-tdep.c (xstormy16_register_name): Add gdbarch parameter. + * vax-tdep.c (vax_register_name): Add gdbarch parameter. + * spu-tdep.c (spu_register_name): Add gdbarch parameter. + * s390-tdep.c (s390_register_name): Add gdbarch parameter. + * mt-tdep.c (mt_register_name): Add gdbarch parameter. + (mt_registers_info): Replace current_gdbarch by gdbarch. + (mt_register_reggroup_p): Add gdbarch to mt_register_name call. + * mips-tdep.c (mips_register_name): Add gdbarch parameter. Replace + current_gdbarch by gdbarch. + (mips_register_name): Add gdbarch to tdesc_register_name call. + * mep-tdep.c (mep_register_name): Add gdbarch parameter. Replace + current_gdbarch by gdbarch. + (mep_register_reggroup_p): Add gdbarch to mep_register_name call. + * m32c-tdep.c (m32c_register_name): Add gdbarch parameter. Replace + current_gdbarch by gdbarch. + * m88k-tdep.c (m88k_register_name): Add gdbarch parameter. + * m68k-tdep.c (m68k_register_name): Add gdbarch parameter. + * m32r-tdep.c (m32r_register_name): Add gdbarch parameter. + (m32r_frame_unwind_cache): Use get_frame_arch to get at the current + architecture by frame_info. + * iq2000-tdep.c (iq2000_register_name): Add gdbarch parameter. + * ia64-tdep.c (ia64_register_name): Add gdbarch parameter. + * hppa-tdep.c (hppa32_register_name, hppa64_register_name): Add gdbarch + parameter. + * h8300-tdep.c (h8300_register_name, h8300s_register_name) + (h8300sx_register_name): Add gdbarch parameter. + * cris-tdep.c (cris_register_name, crisv32_register_name): Add + gdbarch parameter. Replace current_gdbarch by gdbarch. + (cris_gdbarch_init): Replace current_gdbarch by gdbarch (comment). + * avr-tdep.c (avr_register_name): Add gdbarch parameter. + * arm-tdep.c (arm_register_name): Add gdbarch paramete + * amd64-tdep.c (amd64_register_name): Add gdbarch parameter. Update + caller. + * amd64-tdep.h (amd64_register_name): Add gdbarch parameter. + * amd64-linux-tdep.c (amd64_linux_register_name): Add gdbarch parameter. + * alpha-tdep.c (alpha_register_name): Add gdbarch parameter. + (alpha_cannot_fetch_register, alpha_cannot_store_register): Update call + of alpha_register_name. + * frv-tdep.c (frv_register_name): Add gdbarch parameter. + * i386-tdep.c (i386_register_name): Add gdbarch parameter. Replace + current_gdbarch by gdbarch. + (i386_register_type): Replace ?current_gdbarch by gdbarch. + * i386-tdep.h (i386_register_name): Add gdbarch parameter. + * i386-linux-tdep.c (i386_linux_register_name): Add gdbarch parameter. + + * m68hc11-tdep.c (m68hc11_register_name): Add gdbarch parameter. + (m68hc11_register_reggroup_p): Add gdbarch to call of + m68hc11_register_name. + * mn10300-tdep.c (mn10300_generic_register_name, am33_register_name) + (am33_2_register_name): Add gdbarch parameter. + (mn10300_frame_unwind_cache): Use get_frame_arch to get at the current + architecture by frame_info. + (mn10300_dump_tdep): Replace current_gdbarch by gdbarch. + * rs6000-tdep.c (rs6000_register_name): Add gdbarch parameter. Replace + current_gdbarch by gdbarch. + * score-tdep.c (score_register_name): Add gdbarch parameter. + (score_return_value, score_push_dummy_call): Replace current_gdbarch + by gdbarch. + * sh64-tdep.c (sh64_register_name): Add gdbarch parameter. + (sh64_compact_reg_base_num, sh64_register_convert_to_virtual) + (sh64_register_convert_to_raw, sh64_fv_reg_base_num) + (sh64_dr_reg_base_num, sh64_fpp_reg_base_num): Add gdbarch parameter + and update caller. Replace current_gdbarch by gdbarch. + (sh64_extract_return_value, sh64_store_return_value): Use + get_regcache_arch to get at the current architecture by regcache. + * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name) + (sh_sh3e_register_name, sh_sh2e_register_name, sh_sh2a_register_name) + (sh_sh2a_nofpu_register_name, sh_sh_dsp_register_name) + (sh_sh3_dsp_register_name, sh_sh4_register_name) + (sh_sh4_nofpu_register_name, sh_sh4al_dsp_register_name): Add gdbarch + parameter. + (fv_reg_base_num, dr_reg_base_num, sh_justify_value_in_reg) + (sh_next_flt_argreg): Add gdbarch parameter and update caller. Replace + current_gdbarch by gdbarch. + (sh_extract_return_value_fpu, sh_store_return_value_fpu): Use + get_regcache_arch to get at the current architecture by regcache. + * sparc-tdep.c (sparc32_register_name): Add gdbarch parameter. + * sparc64-tdep.c (sparc64_register_name): Add gdbarch parameter. + * v850-tdep.c (v850_register_name, v850e_register_name): Add gdbarch + parameter. + (v850_unwind_sp, v850_unwind_pc): Replace current_gdbarch by gdbarch. + * xtensa-tdep.c (xtensa_register_name): Add gdbarch parameter. Replace + current_gdbarch by gdbarch. + (xtensa_pseudo_register_read, xtensa_pseudo_register_write) + (xtensa_frame_prev_register): Add gdbarch parameter to + xtensa_register_name call. + +2007-10-31 Ulrich Weigand + + * ppc-linux-tdep.c (ppc_linux_skip_trampoline_code): Fall back to + find_solib_trampoline_target if PC is not in .plt section. + +2007-10-31 Ulrich Weigand + + * elfread.c (elf_symtab_read): When constructing a solib trampoline + minimal symbol from an undefined dynamic symbol, use proper section. + +2007-10-31 Markus Deuling + + * arm-linux-nat.c (fetch_register, fetch_regs): Use get_regcache_arch + to get at the current architecture by regcache. + +2007-10-30 Markus Deuling + + * libunwind-frame.c (libunwind_frame_sniffer) + libunwind_frame_prev_register, libunwind_sigtramp_frame_sniffer) + (libunwind_frame_cache): Use get_frame_arch to get at the current + architecture by frame_info. + (libunwind_get_reg_special): Replace current_gdbarch by gdbarch. + +2007-10-30 Markus Deuling + + * iq2000-tdep.c (iq2000_frame_prev_register): Use get_frame_arch to get + at the current architecture by frame_info. + +2007-10-30 Markus Deuling + + * inf-child.c (inf_child_fetch_inferior_registers): Use + get_regcache_arch to get at the current architecture by regcache. + +2007-10-30 Markus Deuling + + * inf-ptrace.c (inf_ptrace_fetch_registers) + (inf_ptrace_fetch_register, inf_ptrace_store_register) + (inf_ptrace_store_registers): Use get_regcache_arch to get at the + current architecture by regcache. + +2007-10-30 Markus Deuling + + * hpux-thread.c (hpux_thread_fetch_registers) + (hpux_thread_store_registers): Use get_regcache_arch to get at the + current architecture by regcache. + +2007-10-30 Markus Deuling + + * hppa-tdep.c (hppa_frame_cache): Use get_frame_arch to get at the + current architecture by frame_info. + +2007-10-30 Markus Deuling + + * go32-nat.c (fetch_register, go32_fetch_registers, store_register) + (go32_store_registers): Use get_regcache_arch to get at the current + architecture by regcache. + +2007-10-30 Markus Deuling + + * gdbtypes.c (gdbtypes_post_init): Replace current_gdbarch by gdbarch. + +2007-10-30 Markus Deuling + + * frv-linux-tdep.c (frv_linux_sigtramp_frame_cache): Use get_frame_arch + to get at the current architecture by frame_info. + +2007-10-30 Markus Deuling + + * f-lang.c (build_fortran_types): Replace current_gdbarch by gdbarch. + +2007-10-30 Markus Deuling + + * core-regset.c (fetch_core_registers): Use get_regcache_arch to get at + the current architecture by regcache. + +2007-10-30 Markus Deuling + + * corelow.c (get_core_registers): Use get_regcache_arch to get at the + current architecture by regcache. + +2007-10-30 Markus Deuling + + * bsd-uthread.c (bsd_uthread_fetch_registers) + (bsd_uthread_store_registers): Use get_regcache_arch to get at the + current architecture by regcache. + +2007-10-30 Markus Deuling + + * avr-tdep.c (avr_frame_unwind_cache, avr_frame_prev_register): Use + get_frame_arch to get at the current architecture by frame_info. + +2007-10-30 Markus Deuling + + * arm-tdep.c (arm_get_next_pc): Replace current_gdbarch by gdbarch. + +2007-10-30 Markus Deuling + + * armnbsd-nat.c (arm_supply_gregset, fetch_register, store_register) + (store_regs): Use get_regcache_arch to get at the current architecture + by regcache. + +2007-10-30 Markus Deuling + + * arm-linux-tdep.c (arm_linux_supply_gregset): Use get_regcache_arch + to get at the current architecture by regcache. + +2007-10-30 Markus Deuling + + * alphabsd-nat.c (alphabsd_fetch_inferior_registers) + (alphabsd_store_inferior_registers): Use get_regcache_arch to get at + the current architecture by regcache. + +2007-10-30 Markus Deuling + + * ada-lang.c (ada_language_arch_info): Replace current_gdbarch by + gdbarch. + +2007-10-30 Daniel Jacobowitz + + * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Check the selected + soft float and vector ABIs. Support the generic vector ABI for + AltiVec types. + (do_ppc_sysv_return_value): Likewise. Correct argument types and + casts. + (ppc64_sysv_abi_push_dummy_call): Assert that floating point is + supported. + * ppc-tdep.h (enum powerpc_vector_abi): New. + (struct gdbarch_tdep): Add soft_float and vector_abi. + * rs6000-tdep.c (setpowerpccmdlist, showpowerpccmdlist) + (powerpc_soft_float_global, powerpc_vector_strings) + (powerpc_vector_abi_global, powerpc_vector_abi_string): New. + (rs6000_gdbarch_init): Check for soft-float and vector ABI markings. + (set_powerpc_command, show_powerpc_command, powerpc_set_soft_float) + (powerpc_set_vector_abi): New. + (_initialize_rs6000_tdep): Register "set powerpc" and "show powerpc" + commands. + * Makefile.in (elf_ppc_h): New. + (rs6000-tdep.o): Update. + +2007-10-29 Carlos Eduardo Seo + + * ppc-linux-tdep.c (ppc32_linux_reg_offsets): Corrected + swapped offsets and VRSAVE offset. + (ppc64_linux_reg_offsets): Corrected swapped offsets. + (ppc32_linux_vrregset): Added. + (ppc_linux_regset_from_core_section): Added support for + .reg-ppc-vmx section. + * ppc-tdep.h (ppc_altivec_support_p): Declare. + (ppc_supply_vrregset): Declare. + (ppc_collect_vrregset): Declare. + * rs6000-tdep.c (ppc_altivec_support_p): Added. + (ppc_supply_vrregset): Added. + (ppc_collect_vrregset): Added. + * corelow.c (get_core_registers): Added support for + .reg-ppc-vmx section. + +2007-10-29 Joel Brobecker + + GDB 6.7.1 released. + +2007-10-26 Jim Blandy + + * ax-gdb.h (expr_to_address_and_size): Delete declaration for + deleted function. + + * tracepoint.c (tracepoint_operation): Report the deletion event + after we have unlinked the tracepoint from the list, and use the + proper tracepoint number. + + * ax-gdb.c (expr_to_agent): Delete unused function. + (expr_to_address_and_size): Delete #if 0'd function. + * ax-gdb.h (expr_to_agent): Delete declaration. + + * ax-gdb.c (gen_cast): Remove redundant assignment to + value->type. Doc fix. + + * ax-general.c (gen_traced_pop, gen_int_literal) + (gen_usual_arithmetic): Check for typedefs. + 2007-10-26 Joel Brobecker * parse.c (prefixify_expression): Minor reformatting.