* breakpoint.h (struct breakpoint): New member GDBARCH.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index b15d269db6d169fa8c405557f22f9a299b2f5e56..4e80a6659cc17ba272d36d815779703d0fe1cabc 100644 (file)
@@ -1,3 +1,875 @@
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * breakpoint.h (struct breakpoint): New member GDBARCH.
+       * breakpoint.c: Include "arch-utils.h".
+       (set_raw_breakpoint_without_location): Add GDBARCH parameter.
+       Use it to set breakpoint architecture.
+       (set_raw_breakpoint): Add GDBARCH parameter.
+       (create_internal_breakpoint): Likewise.
+       (create_catchpoint): Likewise.
+       (create_fork_vfork_event_catchpoint): Likewise.
+       (create_breakpoint): Likewise.
+       (create_breakpoints): Likewise.
+       (break_command_really): Likewise.
+       (create_ada_exception_breakpoint): Likewise.
+       Update local callers to pass architecture:
+       (create_internal_breakpoint): Update.
+       (create_overlay_event_breakpoint): Update.
+       (create_longjmp_master_breakpoint): Update.
+       (create_thread_event_breakpoint): Update.
+       (create_solib_event_breakpoint): Update.
+       (create_catchpoint): Update.
+       (create_fork_vfork_event_catchpoint): Update.
+       (set_momentary_breakpoint): Update.
+       (clone_momentary_breakpoint): Update.
+       (create_breakpoint): Update.
+       (create_breakpoints): Update.
+       (break_command_really): Update.
+       (break_command_1): Update.
+       (set_breakpoint): Update.
+       (watch_command_1): Update.
+       (catch_fork_command_1): Update.
+       (catch_exec_commnd_1): Update.
+       (handle_gnu_v3_exceptions): Update.
+       (create_ada_exception_breakpoint): Update.
+       (catch_ada_exception_command): Update.
+       (catch_assert_command): Update.
+       (trace_command): Update.
+
+       * breakpoint.h (struct bp_location): New member GDBARCH.
+       * breakpoint.c (get_sal_arch): New function.
+       (set_raw_breakpoint): Set location architecture.
+       (add_location_to_breakpoint): Likewise.
+       (clone_momentary_breakpoint): Likewise.
+       (watch_command_1): Likewise.
+       (update_watchpoint): Likewise.
+       (bp_loc_is_permanent): Use location architecture instead of
+       current_gdbarch.
+       (adjust_breakpoint_address): Add GDBARCH parameter; use it
+       instead of current_gdbarch.
+       Update callers of adjust_breakpoint_address to pass
+       breakpoint location architecture:
+       (set_raw_breakpoint): Update.
+       (watch_command_1): Update.
+
+       * tracepoint.c: (collect_symbol): Add GDBARCH parameter, use instead
+       of current_gdbarch.
+       (add_local_symbols): Add GDBARCH parameter.  Pass to collect_symbol.
+       (encode_actions): Pass tracepoint architecture to add_local_symbols
+       (encode_actions): Use tracepoint architecture instead of
+       current_gdbarch.  Pass it to add_local_symbols and collect_symbol.
+
+       * breakpoint.h (struct breakpoint_ops): Replace last_addr parameter
+       of print_one callback with last_loc.
+       * breakpoint.c (print_one_breakpoint_location): Replace last_addr
+       parameter with last_loc.
+       (print_one_breakpoint): Likewise.
+       (do_captured_breakpoint_query): Update call.
+       (breakpoint_1): Pass last_loc instead of last_addr to
+       print_one_breakpoint.  Pass last location architecture instead of
+       current_gdbarch to set_next_address.
+       Update all implementations of the print_one callback:
+       * breakpoint.c (print_one_catch_fork): Update.
+       (print_one_catch_vfork): Update.
+       (print_one_catch_exec): Update.
+       (print_one_exception_catchpoint): Update.
+       * ada-lang.c (print_one_exception): Update.
+       (print_one_catch_exception): Update.
+       (print_one_catch_exception_unhandled): Update.
+       (print_one_catch_assert): Update.
+
+       * breakpoint.c (print_one_breakpoint_location): Add PRINT_ADDRESS_BITS
+       parameter.  Use it instead of gdbarch_addr_bit (current_gdbarch).
+       (print_one_breakpoint): Add PRINT_ADDRESS_BITS parameter and pass it
+       to print_one_breakpoint_location.
+       (breakpoint_address_bits): New function.
+       (do_captured_breakpoint_query): Compute number of address bits to print
+       and pass it to print_one_breakpoint.
+       (breakpoint_1): Likewise.  Use it instead of current_gdbarch.
+
+       * breakpoint.h (create_thread_event_breakpoint): Add GDBARCH.
+       * breakpoint.c (create_thread_event_breakpoint): Likewise.
+       Update callers to create_thread_event_breakpoint:
+       * aix-thread.c (pd_enable): Update.
+       * linux-thread-db.c (enable_thread_event): Update.
+
+       * breakpoint.h (create_solib_event_breakpoint): Add GDBARCH.
+       * breakpoint.c (create_solib_event_breakpoint): Likewise.
+       Update callers to create_solib_event_breakpoint:
+       * solib-frv.c (enable_break, enable_break2): Update.
+       * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
+       * solib-som.c (som_solib_create_inferior_hook): Update.
+       * solib-darwin.c (darwin_solib_create_inferior_hook): Update.
+       * solib-svr4.c (enable_break): Update.
+
+       * breakpoint.h (insert_single_step_breakpoint): Add GDBARCH.
+       * breakpoint.c (insert_single_step_breakpoint): Likewise.
+       Update callers to insert_single_step_breakpoint:
+       * alpha-tdep.c (alpha_software_single_step): Update.
+       * arm-linux-tdep.c (arm_linux_software_single_step): Update.
+       * arm-tdep.c (arm_software_single_step): Update.
+       * cris-tdep.c (cris_software_single_step): Update.
+       * rs6000-aix-tdep.c (rs6000_software_single_step): Update.
+       * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Update.
+       * sparc-tdep.c (sparc_software_single_step): Update.
+       * spu-tdep.c (spu_software_single_step): Update.
+       * mips-tdep.c (deal_with_atomic_sequence): Add GDBARCH parameter.
+       Pass it to insert_single_step_breakpoint.
+       (mips_software_single_step): Pass architecture to
+       deal_with_atomic_sequence and insert_single_step_breakpoint.
+
+       * breakpoint.h (deprecated_insert_raw_breakpoint): Add GDBARCH.
+       (deprecated_remove_raw_breakpoint): Likewise.
+       * breakpoint.c (deprecated_insert_raw_breakpoint): Add GDBARCH.
+       (deprecated_remove_raw_breakpoint): Likewise.
+       Update callers to deprecated_insert_raw_breakpoint and
+       deprecated_remove_raw_breakpoint:
+       * breakpoint.c (single_step_gdbarch): New static variable.
+       (insert_single_step_breakpoint): Pass GDBARCH parameter to
+       deprecated_insert_raw_breakpoint.  Store it in single_step_gdbarch.
+       (remove_single_step_breakpoints): Pass architecture stored in
+       single_step_gdbarch to deprecated_remove_raw_breakpoint.
+       * rs6000-nat.c (exec_one_dummy_insn): Update.
+       * solib-irix.c (enable_break, disable_break): Update.
+       * procfs.c (procfs_mourn_inferior): Update.
+       (remove_dbx_link_breakpoint): Update.
+
+       * breakpoint.h (set_breakpoint): Add GDBARCH parameter.
+       (set_momentary_breakpoint, set_momentary_breakpoint_at_pc): Likewise.
+       * breakpoint.c (set_breakpoint): Add GDBARCH parameter.
+       (set_momentary_breakpoint, set_momentary_breakpoint_at_pc): Likewise.
+       Update callers to set_breakpoint, set_momentary_breakpoint and
+       set_momentary_breakpoint_at_pc:
+       * breakpoint.c (set_momentary_breakpoint_at_pc): Update.
+       (until_break_command): Update.
+       * infcall.c (call_function_by_hand): Update.
+       * infcmd.c (finish_backward, finish_forward): Update.
+       * infrun.c (insert_step_resume_breakpoint_at_sal): Add GDBARCH
+       parameter.  Pass it to set_momentary_breakpoint.
+       (insert_longjmp_resume_breakpoint): Add GDBARCH parameter.
+       Pass it to set_momentary_breakpoint_at_pc.
+       (handle_inferior_event): Update.
+       (insert_step_resume_breakpoint_at_frame): Update.
+       (insert_step_resume_breakpoint_at_caller): Update..
+       * mi/mi-cmd-break.c: Include "arch-utils.h".
+       (mi_cmd_break_insert): Update.
+
+       * target.h (struct target_ops): Add GDBARCH parameter to
+       to_insert_breakpoint, to_remove_breakpoint, to_insert_hw_breakpoint,
+       and to_remove_hw_breakpoint members.
+       (target_insert_breakpoint, target_remove_breakpoint,
+       target_insert_hw_breakpoint, target_remove_hw_breakpoint): Add GDBARCH
+       parameter, pass to target routine.
+       (memory_remove_breakpoint, memory_insert_breakpoint): Add GDBARCH
+       parameter.
+       * target.c (debug_to_insert_breakpoint, debug_to_remove_breakpoint,
+       debug_to_insert_hw_breakpoint, debug_to_remove_hw_breakpoint): Add
+       GDBARCH parameter, pass to target routine.
+       (update_current_target): Update function signature.
+       * breakpoint.c (insert_bp_location, remove_breakpoint,
+       deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint):
+       Pass architecture to target_ routines.
+       Update all implementations of the target breakpoint routines to take
+       GDBARCH parameter and use it instead of GDBARCH as appropriate:
+       * corelow.c (ignore): Update.
+       * exec.c (ignore): Update.
+       * mem-break.c (memory_insert_breakpoint): Update.
+       (memory_remove_breakpoint): Update.
+       * monitor.c (monitor_insert_breakpoint): Update.
+       (monitor_remove_breakpoint): Update.
+       * record.c (record_insert_breakpoint): Update.
+       (record_beneath_to_insert_breakpoint): Update.
+       (record_remove_breakpoint): Update.
+       (record_beneath_to_remove_breakpoint): Update.
+       * remote.c (remote_insert_breakpoint): Update.
+       (remote_remove_breakpoint): Update.
+       (remote_insert_hw_breakpoint): Update.
+       (remote_remove_hw_breakpoint): Update.
+       * remote-m32r-sdi.c (m32r_insert_breakpoint): Update.
+       (m32r_remove_breakpoint): Update.
+       * remote-mips.c (mips_insert_breakpoint): Update.
+       (mips_remove_breakpoint): Update.
+       * i386-nat.c (i386_insert_hw_breakpoint): Update.
+       (i386_remove_hw_breakpoint): Update.
+       * nto-procfs.c (procfs_insert_breakpoint):  Update.
+       (procfs_remove_breakpoint): Update.
+       (procfs_insert_hw_breakpoint): Update.
+       (procfs_remove_hw_breakpoint): Update.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * frame.h (frame_unwind_arch): New.
+       (frame_unwind_caller_arch): Likewise.
+       * frame-unwind.h (frame_prev_arch_ftype): New type.
+       (struct frame_unwind): New member prev_arch.
+       * frame.c (struct frame_info): New member prev_arch.
+       (frame_unwind_arch): New function.
+       (frame_unwind_caller_arch): Likewise..
+       (get_frame_arch): Reimplement in terms of frame_unwind_arch.
+       * sentinel-frame.c (sentinel_frame_prev_arch): New function.
+       (sentinel_frame_unwinder): Install it.
+
+       * frame.c (frame_pc_unwind): Use frame_unwind_arch instead
+       of get_frame_arch.
+       (frame_unwind_register_value): Likewise.
+       (frame_unwind_register_signed): Likewise.
+       (frame_unwind_register_unsigned): Likewise.
+       * frame-unwind.c (frame_unwind_got_optimized): Likewise.
+       (frame_unwind_got_register): Likewise.
+       (frame_unwind_got_constant): Likewise.
+       (frame_unwind_got_bytes): Likewise.
+       (frame_unwind_got_address): Likewise.
+
+       * frame.h (enum frame_type): New value ARCH_FRAME.
+       * frame.c (fprint_frame_type): Handle ARCH_FRAME.
+       * stack.c (print_frame_info): Likewise.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * target.h (struct target_ops): New member to_thread_architecture.
+       (target_thread_architecture): New macro.
+       * target.c (update_current_target): Inherit to_thread_architecture.
+       (default_thread_architecture): New function.
+       (debug_to_thread_architecture): New function.
+       (setup_target_debug): Handle to_thread_architecture.
+
+       * regcache.h (get_thread_arch_regcache): New.
+       * regcache.c (struct regcache_list): New data type.
+       (current_regcache): Hold regcache list instead of single regcache.
+       (current_thread_ptid, current_thread_arch): New static variables.
+       (get_thread_arch_regcache): New function.
+       (get_thread_regcache): Use it.  Call target_thread_architecture.
+       (regcache_thread_ptid_changed): Update to current_regcache changes.
+       (registers_changed): Likewise.  Reset current_thread_arch and
+       current_thread_ptid.
+
+       * remote.c (remote_wait): Access target registers in target_gdbarch.
+       * linux-nat.c (linux_nat_do_thread_registers): Likewise.
+       * proc-service.c (ps_lgetregs, ps_lsetregs): Likewise.
+       (ps_lgetfpregs, ps_lsetfpregs): Likewise.
+       * sol-thread.c (ps_lgetregs, ps_lsetregs): Likewise.
+       (ps_lgetfpregs, ps_lsetfpregs): Likewise.
+       * solib-svr4.c (enable_break): Likewise.
+       (svr4_relocate_main_executable): Likewise.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * python/python-internal.h (struct language_defn): Declare.
+       (python_gdbarch, python_language): Likewise.
+       (ensure_python_env): Add prototype.
+       (make_cleanup_py_restore_gil): Remove prototype.
+
+       * python/python.c: Include "arch-utils.h", "value.h" and "language.h".
+       (python_gdbarch, python_language): New global variables.
+       (struct python_env): New data type.
+       (ensure_python_env, restore_python_env): New functions.
+       (eval_python_from_control_command): Call ensure_python_env to
+       install current architecture and language.
+       (python_command, gdbpy_new_objfile): Likewise.
+       * python/python-cmd.c: Include "arch-utils.h" and "language.h".
+       (cmdpy_destroyer, cmdpy_function, cmdpy_completer): Call
+       ensure_python_env.
+       * python/python-type.c (clean_up_objfile_types): Likewise.
+       * python/python-objfile.c: Include "language.h".
+       (clean_up_objfile): Call ensure_python_env.
+       * python/python-prettyprint.c (apply_val_pretty_printer): Likewise.
+       (apply_varobj_pretty_printer): Do not call PyGILState_Ensure.
+       * varobj.c (varobj_ensure_python_env): New helper function.
+       (varobj_get_display_hint, update_dynamic_varobj_children,
+       install_default_visualizer, varobj_set_visualizer, free_variable,
+       value_get_print_value): Call it.
+       (value_get_print_value): Add varobj argument instead of pretty
+       printer argument.  Update all callers.
+
+       * python/python-utils.c (py_gil_restore, make_cleanup_py_restore_gil):
+       Remove.
+
+       * value.h (internal_function_fn): Add GDBARCH and LANGUAGE argument.
+       (call_internal_function): Likewise.
+       * value.c (call_internal_function): Likewise.  Pass to handler.
+       * eval.c (evaluate_subexp_standard): Update call.
+       * python/python-function.c: Include "language.h".
+       (fnpy_call): Add GDBARCH and LANGAUAGE arguments and call
+       make_cleanup_python_env.
+
+       * python/python-value.c (builtin_type_pyint, builtin_type_pyfloat,
+       builtin_type_pylong, builtin_type_pybool, builtin_type_pychar,
+       valpy_str): Use python_gdbarch and python_language instead of
+       current_gdbarch and current_language.
+       * python/python-type.c (typy_lookup_typename): Likewise.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * arch-utils.c (selected_byte_order): Return target_byte_order_user.
+       (show_endian): Use target_byte_order_user if specified; otherwise
+       use get_current_arch () instead of current_gdbarch.
+       (show_architecture): Use set_architecture_string if specified;
+       otherwise use get_current_arch () instead of current_gdbarch.
+       (get_current_arch): New function.
+       * arch-utils.h (get_current_arch): Add prototype.
+
+       * osabi.c (show_osabi): Use get_current_arch () instead of
+       current_gdbarch.
+
+       * findcmd.c: Include "arch-utils.h".
+       (parse_find_args): Add BIG_P argument.  Use it instead of byte order
+       of current_gdbarch.
+       (find_command): Use get_current_arch () instead of current_gdbarch.
+       Pass byte order to parse_find_args.
+
+       * maint.c: Include "arch-utils.h".
+       (maintenance_print_architecture): Use get_current_arch () instead
+       of current_gdbarch.
+
+       * reggroups.c: Include "arch-utils.h".
+       (maintenance_print_reggroups): Use get_current_arch () instead
+       of current_gdbarch.
+
+       * symfile.c: Include "arch-utils.h".
+       (overlay_load_command): Use get_current_arch () instead of
+       current_gdbarch.
+
+       * value.c: Include "arch-utils.h".
+       (show_convenience): Use get_current_arch () instead of
+       current_gdbarch.
+
+       * tui/tui-regs.c: Include "arch-utils.h".
+       (tui_reg_next_command): Use get_current_arch () instead of
+       current_gdbarch.
+
+       * mi/mi-main.c: Include "arch-utils.h".
+       (mi_cmd_data_read_memory): Use get_current_arch () instead of
+       current_gdbarch.
+
+       * parse.c: Include "arch-utils.h".
+       (parse_exp_in_context): Use get_current_arch () instead of
+       current_gdbarch.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbtypes.c (make_pointer_type, make_reference_type,
+       smash_to_memberptr_type, lookup_array_range_type, check_stub_method):
+       Use type architecture instead of current_gdbarch.
+
+       * gdbtypes.h (address_space_name_to_int, address_space_int_to_name):
+       Add GDBARCH paramter.
+       * gdbtypes.c (address_space_name_to_int, address_space_int_to_name):
+       Add GDBARCH parameter.   Use it instead of current_gdbarch.
+       * c-typeprint.c (c_type_print_modifier): Update call.
+       * parse.c (push_type_address_space): Likewise.
+
+       * findvar.c (extract_typed_address, store_typed_address): Use type
+       architecture instead of current_gdbarch.
+
+       * value.c (value_as_address, unpack_field_as_long): Use type architecture
+       instead of current_gdbarch.
+
+       * doublest.c (floatformat_from_length): Add GDBARCH argument.  Use it
+       instead of current_gdbarch.
+       (floatformat_from_type): Pass type architecture.
+
+       * infcall.c (find_function_addr): Use type architecture instead
+       of current_gdbarch.
+
+       * valarith.c (value_bitstring_subscript, value_x_binop, value_neg,
+       value_bit_index): Use type architecture instead of current_gdbarch.
+       * valops.c (value_cast, value_slice): Likewise.
+
+       * value.h (modify_field): Add TYPE argument.
+       * value.c (modify_field): Add TYPE argument.  Use type architecture
+       instead of current_gdbarch.
+       (set_internalvar_component): Likewise.
+       * eval.c (evaluate_struct_tuple): Update call.
+       * valops.c (value_assign): Likewise.
+       * ada-lang.c (modify_general_field): Likewise.  Add TYPE argument.
+       (make_array_descriptor): Update calls.
+       (move_bits): Add BITS_BIG_ENDIAN_P argument.  Use it instead of
+       current_gdbarch.
+       (ada_value_assign, value_assign_to_component): Update calls.
+       (decode_packed_array, ada_value_primitive_packed_val, ada_value_assign,
+       value_assign_to_component): Use type arch instead of current_gdbarch.
+
+       * printcmd.c (float_type_from_length): Remove GDBARCH argument,
+       use type architecture instead.
+       (print_scalar_formatted, printf_command): Update calls.  Use type
+       architecture instead of current_gdbarch.
+       * valprint.c (val_print_type_code_int): Use type architecture
+       instead of current_gdbarch.
+       * varobj.c (value_get_print_value): Likewise.
+       * python/python-prettyprint.c (print_string_repr): Add GDBARCH
+       argument.  Use it instead of current_gdbarch.
+       (apply_val_pretty_printer): Update call.
+
+       * ada-valprint.c (ada_val_print_1): Use type architecture instead
+       of current_gdbarch.
+       * c-valprint.c (print_function_pointer_address): Add GDBARCH argument.
+       Use it instead of current_gdbarch.
+       (c_val_print): Update calls passing type architecture.
+       * f-valprint.c (f_val_print): Use type architecture instead of
+       current_gdbarch.
+       * jv-valprint (java_value_print): Likewise.
+       * m2-valprint.c (print_function_pointer_address): Add GDBARCH argument.
+       Use it instead of current_gdbarch.
+       (print_unpacked_pointer): Update calls passing type architecture.
+       * scm-valprint.c (scm_scmval_print): Use type architecture instead of
+       current_gdbarch.
+
+       * gnu-v3-abi.c (get_class_arch): Remove.
+       (gnuv3_rtti_type): Use get_type_arch instead of get_class_arch.  Remove
+       special-case check for Java classes.
+       (gnuv3_virtual_fn_field, gnuv3_baseclass_offset, gnuv3_print_method_ptr,
+       gnuv3_method_ptr_size, gnuv3_make_method_ptr, gnuv3_method_ptr_to_value):
+       Use get_type_arch instead of get_class_arch.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbtypes.h (TYPE_OBJFILE_OWNED, TYPE_OWNER): New macros.
+       (TYPE_OBJFILE, TYPE_ALLOC, TYPE_ZALLOC): Reimplement.
+       (alloc_type_arch): Add prototype.
+       (alloc_type_copy): Likewise.
+       (get_type_arch): Likewise.
+       (arch_type): Likewise.
+       (arch_integer_type): Likewise.
+       (arch_character_type): Likewise.
+       (arch_boolean_type): Likewise.
+       (init_float_type): Remove, replace by ...
+       (arch_float_type): ... this.
+       (init_complex_type): Remove, replace by ...
+       (arch_complex_type): ... this.
+       (init_flags_type): Remove, replace by ...
+       (arch_flags_type): ... this.
+       (init_composite_type): Remove, replace by ...
+       (arch_composite_type): ... this.
+
+       * gdbtypes.c (alloc_type): No longer support NULL objfile.
+       (init_type): Likewise.
+       (alloc_type_arch): New function.
+       (alloc_type_copy): New function.
+       (get_type_arch): New function.
+
+       (smash_type): Preserve type ownership information.
+       (make_pointer_type, make_reference_type, make_function_type,
+       smash_to_memberptr_type, smash_to_method_type): No longer
+       preserve OBJFILE across smash_type calls.
+       (make_pointer_type, make_reference_type, make_function_type,
+       lookup_memberptr_type, lookup_methodptr_type, allocate_stub_method,
+       create_range_type, create_array_type, create_set_type, copy_type):
+       Use alloc_type_copy when allocating types.
+       (check_typedef): Use alloc_type_arch.
+       (copy_type_recursive): Likewise.  Preserve type ownership data
+       after copying type.
+       (recursive_dump_type): Dump type ownership data.
+       (alloc_type_instance): Update type ownership check.
+       (copy_type, copy_type_recursive): Likewise.
+
+       (arch_type): New function.
+       (arch_integer_type): Likewise.
+       (arch_character_type): Likewise.
+       (arch_boolean_type): Likewise.
+       (init_float_type): Remove, replace by ...
+       (arch_float_type): ... this.
+       (init_complex_type): Remove, replace by ...
+       (arch_complex_type): ... this.
+       (init_flags_type): Remove, replace by ...
+       (arch_flags_type): ... this.
+       (append_flags_type_flag): Move down.
+       (init_composite_type): Remove, replace by ...
+       (arch_composite_type): ... this.
+       (append_composite_type_field_aligned,
+       append_composite_type_field): Move down.
+
+       * gdbarch.c (gdbtypes_post_init): Allocate all types
+       using per-architecture routines.
+       * ada-lang.c (ada_language_arch_info): Likewise.
+       * f-lang.c (build_fortran_types): Likewise.
+       * jv-lang.c (build_java_types): Likewise.
+       * m2-lang.c (build_m2_types): Likewise.
+       * scm-lang.c (build_scm_types): Likewise.
+
+       * ada-lang.c (ada_type_of_array): Use alloc_type_copy.
+       (packed_array_type): Likewise.
+       (ada_template_to_fixed_record_type_1): Likewise.
+       (template_to_static_fixed_type): Likewise.
+       (to_record_with_fixed_variant_part): Likewise.
+       (to_fixed_variant_branch_type): Likewise.
+       (to_fixed_array_type): Likewise.
+       (to_fixed_range_type): Likewise.
+       (empty_record): Use type instead of objfile argument.
+       Use alloc_type_copy.
+       (to_fixed_variant_branch_type): Update call to empty_record.
+       * jv-lang.c (type_from_class): Use alloc_type_arch.
+
+       * arm-tdep.c (arm_ext_type): Allocate per-architecture type.
+       * i386-tdep.c (i386_eflags_type, i386_mxcsr_type, i387_ext_type,
+       i386_mmx_type, i386_sse_type): Likewise.
+       * ia64-tdep.c (ia64_ext_type): Likewise.
+       * m32c-tdep.c (make_types): Likewise.
+       * m68k-tdep.c (m68k_ps_type, m68881_ext_type): Likewise.
+       * rs6000-tdep.c (rs6000_builtin_type_vec64,
+       rs6000_builtin_type_vec128): Likewise.
+       * sparc-tdep.c (sparc_psr_type, sparc_fsr_type): Likewise.
+       * sparc64-tdep.c (sparc64_pstate_type, sparc64_fsr_type,
+       sparc64_fprs_type): Likewise.
+       * spu-tdep.c (spu_builtin_type_vec128): Likewise.
+       * xtensa-tdep.c (xtensa_register_type): Likewise.
+       * linux-tdep.c (linux_get_siginfo_type): Likewise.
+       * target-descriptions.c (tdesc_gdb_type): Likewise.
+       * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * i386-tdep.h (struct gdbarch_tdep): Add i386_eflags_type and
+       i386_mxcsr_type members.
+       (i386_eflags_type): Make into function.
+       (i386_mxcsr_type): Likewise.
+       * i386-tdep.c (i386_eflags_type): Make into function.
+       (i386_mxcsr_type): Likewise.
+       (i386_register_type): Update uses.
+       (i386_init_types): Remove.
+       (_initialize_i386_tdep): Do not call it.
+       * amd64-tdep.c (amd64_register_type): Update uses.
+
+       * m68k-tdep.h (struct gdbarch_tdep): Add m68k_ps_type member.
+       * m68k-tdep.c (m68k_ps_type): Make into function.
+       (m68k_register_type): Update use.
+       (m68k_init_types): Remove.
+       (_initialize_m68k_tdep): Do not call it.
+
+       * sparc-tdep.h (struct gdbarch_tdep): Add sparc_psr_type,
+       sparc_fsr_type, sparc64_pstate_type, sparc64_fsr_type, and
+       sparc64_fprs_type members.
+       * sparc-tdep.c (sparc_psr_type): Make into function.
+       (sparc_fsr_type): Likewise.
+       (sparc32_register_type): Update uses.
+       (sparc_init_types): Remove.
+       (_initialize_sparc_tdep): Do not call it.
+       * sparc64-tdep.c (sparc64_pstate_type): Make into function.
+       (sparc64_fsr_type): Likewise.
+       (sparc64_fprs_type): Likewise.
+       (sparc64_register_type): Update uses.
+       (sparc64_init_types): Remove.
+       (_initialize_sparc64_tdep): Likewise.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbtypes.h (builtin_type_ieee_single, builtin_type_ieee_double,
+       builtin_type_i387_ext, builtin_type_m68881_ext, builtin_type_arm_ext,
+       builtin_type_ia64_spill, builtin_type_ia64_quad): Remove.
+       (init_float_type, init_complex_type): Add prototypes.
+       * gdbtypes.c (builtin_type_ieee_single, builtin_type_ieee_double,
+       builtin_type_i387_ext, builtin_type_m68881_ext, builtin_type_arm_ext,
+       builtin_type_ia64_spill, builtin_type_ia64_quad): Remove.
+       (_initialize_gdbtypes): Do not initialize them.
+       (build_flt): Rename to ...
+       (init_float_type): ... this.  Make global.
+       (build_complex): Rename to ...
+       (init_complex_type): ... this.  Make global.  Remove BIT argument.
+       (gdbtypes_post_init): Update calls.
+
+       * ada-lang.c (ada_language_arch_info): Use init_float_type.
+       * jv-lang.c (build_java_types): Likewise.
+       * m2-lang.c (build_m2_types): Likewise.
+       * f-lang.c (build_fortran_types): Use init_float_type and
+       init_complex_type.
+
+       * target-descriptions.c (tdesc_gdb_type): Call init_float_type instead
+       of using builtin_type_ieee_single, builtin_type_ieee_double, or
+       builtin_type_arm_ext.
+
+       * ia64-tdep.h (struct gdbarch_tdep): Add ia64_ext_type member.
+       * ia64-tdep.c (builtin_type_ia64_ext): Remove.
+       (_initialize_ia64_tdep): Do not initialize it.
+       (floatformat_valid, floatformat_ia64_ext, floatformats_ia64_ext):
+       Move up.
+       (ia64_ext_type): New function.
+       (ia64_register_reggroup_p, ia64_convert_register_p,
+       ia64_register_to_value, ia64_value_to_register,
+       ia64_extract_return_value, ia64_store_return_value): Use ia64_ext_type
+       instead of builtin_type_ia64_ext.
+
+       * i386-tdep.h (struct gdbarch_tdep): Add i387_ext_type member.
+       (i387_ext_type): Add prototype.
+       * i386-tdep.c (i387_ext_type): New function.
+       (i386_extract_return_value, i386_store_return_value,
+       i386_register_type): Use it instead of builtin_type_i387_ext.
+       * amd64-tdep.c (amd64_register_type): Likewise.
+       * i387-tdep.c (print_i387_value, i387_register_to_value,
+       i387_value_to_register): Likewise.
+       (print_i387_value, print_i387_ext): Add GDBARCH argument.
+       (print_i387_ext, i387_print_float_info): Pass to subroutines.
+
+       * m68k-tdep.h (struct gdbarch_tdep): Add m68881_ext_type member.
+       * m68k-tdep.c (m68881_ext_type): New function.
+       (m68k_register_type, m68k_convert_register_p): Use it instead
+       of builtin_type_m68881_ext.
+
+       * arm-tdep.h (struct gdbarch_tdep): Add arm_ext_type member.
+       * arm-tdep.c (arm_ext_type): New function.
+       (arm_register_type): Use it instead of builtin_type_arm_ext.
+
+       * alpha-tdep.c (alpha_register_type): Use builtin types
+       instead of builtin_type_ieee_double.
+
+       * mips-tdep.c (mips_float_register_type, mips_double_register_type):
+       Remove.
+       (mips_register_type): Use builtin types instead of
+       builtin_type_ieee_single and builtin_type_ieee_double.
+       (mips_print_fp_register): Use builtin types instead of
+       mips_float_register_type and mips_double_register_type.
+
+       * hppa-tdep.c (hppa32_register_type, hppa64_register_type):
+       Use builtin types instead of builtin_type_ieee_single and
+       builtin_type_ieee_double.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbtypes.h (builtin_type_int0, builtin_type_int8, builtin_type_uint8,
+       builtin_type_int16, builtin_type_uint16, builtin_type_int32,
+       builtin_type_uint32, builtin_type_int64, builtin_type_uint64,
+       builtin_type_int128, builtin_type_uint128): Remove.
+       (struct builtin_type): New members builtin_int0, builtin_int8,
+       builtin_uint8, builtin_int16, builtin_uint16, builtin_int32,
+       builtin_uint32, builtin_int64, builtin_uint64, builtin_int128,
+       and builtin_uint128.
+       * gdbtypes.c (builtin_type_int0, builtin_type_int8, builtin_type_uint8,
+       builtin_type_int16, builtin_type_uint16, builtin_type_int32,
+       builtin_type_uint32, builtin_type_int64, builtin_type_uint64,
+       builtin_type_int128, builtin_type_uint128): Remove.
+       (_initialize_gdbtypes): Do not initialize them.
+       (gdbtypes_post_init): Initialize fixed-size integer types.
+
+       * dwarf2expr.c (unsigned_address_type, signed_address_type): Add
+       GDBARCH argument.  Return platform-specific type.
+       (dwarf2_read_address, execute_stack_op): Update calls.
+
+       * target-descriptions.c (tdesc_gdb_type): Use platform-specific types
+       instead of global builtin_int_... variables.
+       * mi/mi-main.c (mi_cmd_data_read_memory): Likewise.
+       * printcmd.c (do_examine): Likewise.
+       * jv-exp.y (parse_number): Likewise.
+
+       * alpha-tdep.c (alpha_register_type, alpha_push_dummy_call,
+       alpha_store_return_value): Likewise.
+       * amd64-linux-tdep.c (amd64_linux_register_type): Likewise.
+       * amd64-tdep.c (amd64_register_type): Likewise.
+       * arm-tdep.c (arm_register_type): Likewise.
+       * avr-tdep.c (avr_register_type): Likewise.
+       * cris-tdep.c (cris_register_type, crisv32_register_type): Likewise.
+       * frv-tdep.c (frv_register_type): Likewise.
+       * h8300-tdep.c h8300_register_type): Likewise.
+       * hppa-tdep.c (hppa64_push_dummy_call, hppa32_register_type,
+       hppa64_register_type): Likewise.
+       * i386-tdep.c (i386_mmx_type, i386_sse_type): Likewise.
+       * iq2000-tdep.c (iq2000_register_type): Likewise.
+       * lm32-tdep.c (lm32_register_type, lm32_push_dummy_call): Likewise.
+       * m32r-tdep.c (m32r_register_type): Likewise.
+       * m68hc11-tdep.c (m68hc11_register_type, m68hc11_pseudo_register_read,
+       m68hc11_pseudo_register_write): Likewise.
+       * m68k-tdep.c (m68k_register_type): Likewise.
+       * m88k-tdep.c (m88k_register_type, m88k_store_arguments): Likewise.
+       * mep-tdep.c (mep_register_type): Likewise.
+       * mips-tdep.c (mips_register_type, mips_pseudo_register_type,
+       mips_print_fp_register): Likewise.
+       * moxie-tdep.c (moxie_register_type): Likewise.
+       * mt-tdep.c (mt_copro_register_type, mt_register_type): Likewise.
+       * rs6000-tdep.c (rs6000_builtin_type_vec64,
+       rs6000_builtin_type_vec128): Likewise.
+       * score-tdep.c (score_register_type): Likewise.
+       * sparc-tdep.c (sparc32_register_type, sparc32_store_arguments):
+       Likewise.
+       * sparc64-tdep.c (sparc64_register_type, sparc64_store_arguments):
+       Likewise.
+       * spu-tdep.c (spu_builtin_type_vec128, spu_register_type): Likewise.
+       * v850-tdep.c (v850_register_type): Likewise.
+       * xstormy16-tdep.c (xstormy16_register_type): Likewise.
+       * xtensa-tdep.c (xtensa_register_type): Likewise.
+
+       * mt-tdep.c (struct gdbarch_tdep): New data structure.
+       (mt_gdbarch_init): Alloc TDEP structures.
+       (mt_register_type): Cache coprocessor type in TDEP instead of
+       static global variable.
+
+       * xtensa-tdep.h (struct gdbarch_tdep): Add type_entries member.
+       * xtensa-tdep.c (type_entries): Remove.
+       (xtensa_register_type): Cache fixed-size types in TDEP instead
+       of in global variable.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbtypes.h (builtin_type_true_char): Remove.
+       (builtin_type_true_unsigned_char): Likewise.
+       (struct builtin_type): Add builtin_true_char and
+       builtin_true_unsigned_char members.
+       * gdbtypes.c (builtin_type_true_char): Remove.
+       (builtin_type_true_unsigned_char): Likewise.
+       (_initialize_gdbtypes): Do not initialize them.
+       (gdbtypes_post_init): Initialize builtin_true_char and
+       builtin_true_unsigned_char members of builtin_type.
+
+       * printcmd.c (print_scalar_formatted): Use builtin_type
+       members instead of builtin_type_true_char and
+       builtin_type_true_unsigned_char.
+       * ada-valprint.c (ada_val_print_1): Likewise.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbtypes.h (builtin_type_void): Remove.
+       * gdbtypes.c (builtin_type_void): Remove.
+       (_initialize_gdbtypes): Do not initialize it.
+
+       (safe_parse_type): Add GDBARCH argument.  Use it to construct
+       void return type.
+       (check_stub_method): Update call.
+
+       * infcall.c (call_function_by_hand): Use platform-specific type
+       instead of builtin_type_void.
+       * valops.c (value_cast): Use input void type instead of
+       builtin_type_void.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * ada-lang.c (assign_component): Use platform-specific integer type
+       instead of builtin_type_int32 type.
+       (ada_evaluate_subexp) [OP_ATR_SIZE]: Likewise.
+
+       * ax-gdb.c (gen_expr) [UNOP_NEG]: Use platform-specific integer type
+       instead of builtin_type_int8 type.
+       * valarith.c (value_x_unop): Likewise.
+       * python/python-value.c (valpy_absolute): Avoid reference to
+       builtin_type_int8 type.
+
+       * eval.c (evaluate_subexp_standard): Use platform-specific integer
+       type instead of builtin_type_int8 as EVAL_SKIP return value type.
+       * ada-lang.c (ada_evaluate_subexp): Likewise.
+       * jv-lang.c (evaluate_subexp_java): Likewise.
+       * m2-lang.c (evaluate_subexp_modula2): Likewise.
+       * scm-lang.c (evaluate_exp): Likewise.
+
+       * value.h (value_bitstring): Add INDEX_TYPE argument.
+       * valops.c (value_bitstring): Add INDEX_TYPE argument, use it instead
+       of builtin_type_int32 as base range type.
+       * eval.c (evaluate_subexp_standard): Update value_bitstring call.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbtypes.c (lookup_array_range_type): Add prototype.
+       (lookup_string_range_type): Likewise.
+       * gdbtypes.c (lookup_array_range_type): New function.
+       (lookup_string_range_type): Likewise.
+
+       * ax-gdb.c (gen_repeat): Use lookup_array_range_type.
+       * parse.c (follow_types): Likewise.
+       * jv-lang.c (java_array_type): Likewise.
+       * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
+       * mt-tdep.c (mt_register_type): Likewise.
+       * sh-tdep.c (sh_sh4_build_float_register_type): Likewise.
+       * sh64-tdep.c (sh64_build_float_register_type): Likewise.
+       * value.c (allocate_repeat_value): Likewise.
+       * valops.c (value_array, value_cstring): Likewise.
+       * valops.c (value_string): Use lookup_string_range_type.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * m2-typeprint.c (m2_print_bounds, m2_is_long_set_of_type): Remove
+       redundant check for NULL TYPE_TARGET_TYPE.
+       * m2-valprint.c (m2_print_long_set): Likewise.
+       * p-valprint.c (pascal_type_print_base): Likewise.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * printcmd.c (next_gdbarch): New static variable.
+       (set_next_address, do_examine, x_command): Set it.
+       (decode_format): Use 'a' size to indicate width of an address.
+       (do_examine): Add GDBARCH argument.  Handle 'a' size.
+       (x_command): Pass architecture to do_examine.
+       Error if called without argument the first time.  
+       (do_one_display): Pass architecture to do_examine.
+
+       (examine_i_type, examine_b_type, examine_h_type, examine_w_type,
+       examine_g_type): Remove.
+       (_initialize_printcmd): Do not initialize them.
+       (do_examine): Use builin_type_int... instead of examine_..._type.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * gdbtypes.h (struct builtin_type): Add internal_fn member.
+       * gdbtypes.c (gdbtypes_post_init): Initialize it.
+       * value.c (internal_fn_type): Remove.
+       (_initialize_values): Do not initialize it.
+
+       * value.c (struct internalvar): Add enum internalvar_kind type and
+       kind member.  Restructure union internalvar_data type.  Remove type,
+       canonical, and make_value members.
+       (init_if_undefined_command): Update for data structure changes.
+       (create_internalvar): Likewise.
+       (create_internalvar_type_lazy): Likewise.
+       (get_internalvar_integer): Likewise.
+       (get_internalvar_function): Likewise.
+       (set_internalvar_component): Likewise.
+       (set_internalvar): Likewise.
+       (set_internalvar_integer): Likewise.
+       (set_internalvar_function): Likewise.
+       (clear_internalvar): Likewise.
+       (add_internal_function): Likewise.
+       (preserve_one_internalvar): New function.
+       (preserve_values): Call it.
+
+       * value.h (value_of_internalvar): Add GDBARCH parameter.
+       (internalvar_make_value): Likewise.
+       * value.c (value_of_internalvar): Add GDBARCH parameter.  Pass it to
+       make_value callback.  Use it to generate per-architecture result value
+       types for internal variables with no pre-defined type.  Update for data
+       structure changes.
+       (show_convenience): Pass architecture to value_of_internalvar.
+       * eval.c (evaluate_subexp_standard): Likewise.
+       * infrun.c (siginfo_make_value): Add GDBARCH parameter.  Use it
+       instead of current frame architecture.  Return per-architecture type.
+
+       * value.h (set_internalvar_string): Add prototype.
+       * value.c (set_internalvar_string): New function.
+       * tracepoint.c (set_traceframe_context): Use it.
+
+2009-07-02  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * jv-lang.h (java_int_type, java_byte_type, java_short_type,
+       java_long_type, java_boolean_type, java_char_type, java_float_type,
+       java_double_type, java_void_type): Remove.
+       (struct builtin_java_type): New data type.
+       (builtin_java_type): Add prototype.
+       (java_primitive_type): Add GDBARCH argument.
+       (java_primitive_type_from_name): Likewise.
+       (type_from_class): Likewise.
+
+       * jv-lang.c (java_int_type, java_byte_type, java_short_type,
+       java_long_type, java_boolean_type, java_char_type, java_float_type,
+       java_double_type, java_void_type): Remove.
+
+       (build_java_types, builtin_java_type): New functions.
+       (java_type_data): New static variable.
+       (_initialize_java_language): Initialize it.  No longer initialize
+       global types.
+       (java_language_arch_info): Use per-architecture types.
+
+       (java_primitive_type): Add GDBARCH argument.  Return per-architecture
+       type instead of refering to global variable.
+       (java_primitive_type_from_name): Add GDBARCH argument.
+       (java_primitive_type_name): New function.
+       (java_demangled_signature_length): Use it instead of
+       java_primitive_type_from_name.
+       (java_demangled_signature_copy): Likewise.
+
+       (type_from_class): Add GDBARCH argument.  Pass to java_link_class_type,
+       java_primitive_type, and recursive type_from_class call.
+       (java_link_class_type): Add GDBARCH argument.  Pass to type_from_class
+       calls.  Use per-architecture types instead of global types.
+
+       * jv-exp.y (parse_java_type): New define.
+       Use per-architecture types instead of global types througout.
+
+       * jv-valprint.c (java_value_print): Pass architecture to
+       type_from_class and java_primitive_type_from_name.  Use per-
+       architecture types instead of global types.
+
 2009-07-01  Doug Evans  <dje@google.com>
 
        * NEWS: Mention biarch amd64-linux gdbserver and hardware watchpoint
This page took 0.036848 seconds and 4 git commands to generate.