mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
* gdbarch.sh (target_gdbarch): New global variable.
(deprecated_current_gdbarch_select_hack): Set it. * gdbarch.c, gdbarch.h: Regenerate. * arch-utils.c (gdbarch_update_p): Use target_gdbarch instead of current_gdbarch. * target-descriptions.c (target_find_description): Likewise. * arm-tdep.c (arm_update_current_architecture): Likewise. (show_fp_model, arm_show_abi, arm_show_fallback_mode, arm_show_force_mode): Likewise. * mips-tdep.c (show_mask_address, show_mipsfpu_command, show_mips_abi): Likewise. * mep-tdep.c (me_module_register_set, current_me_module): Likewise. * target.c (target_translate_tls_address): Use target_gdbarch instead of current_gdbarch. * remote.c (struct packet_reg): Likewise. (get_remote_arch_state, packet_reg_from_regnum, packet_reg_from_pnum, remote_check_symbols, remote_wait, remote_address_masked, remote_insert_breakpoint, remote_insert_hw_breakpoint, remote_read_description): Likewise. * remote-m32r-sdi.c (m32r_resume, m32r_wait): Likewise. * remote-mips.c (mips_open, mips_common_breakpoint): Likewise. * cris-tdep.c (cris_can_use_hardware_watchpoint): Likewise. * solib.c (solib_open, solib_map_sections, solib_read_symbols, solib_add, info_sharedlibrary_command, solib_address, solib_create_inferior_hook, in_solib_dynsym_resolve_code, solib_global_lookup): Likewise. * solib-frv.c (enable_break2, frv_relocate_main_executable): Likewise. * solib-irix.c (irix_current_sos, irix_open_symbol_file_object): Likewise. * solib-sunos.c (sunos_solib_create_inferior_hook): Likewise. * solib-svr4.c (exec_entry_point, enable_break, svr4_free_so, set_solib_svr4_fetch_link_map_offsets, svr4_fetch_link_map_offsets): Likewise. * nto-tdep.c (nto_find_and_open_solib, nto_init_solib_absolute_prefix, nto_truncate_ptr): Likewise. * mips-linux-tdep.c (mips_linux_in_dynsym_stub): Likewise.
This commit is contained in:
@@ -481,7 +481,7 @@ m32r_resume (ptid_t ptid, int step, enum target_signal sig)
|
||||
else
|
||||
{
|
||||
buf[0] = SDI_WRITE_MEMORY;
|
||||
if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
|
||||
if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG)
|
||||
store_long_parameter (buf + 1, pc_addr);
|
||||
else
|
||||
store_long_parameter (buf + 1, pc_addr - 1);
|
||||
@@ -521,7 +521,7 @@ m32r_resume (ptid_t ptid, int step, enum target_signal sig)
|
||||
continue;
|
||||
|
||||
/* Set PBP. */
|
||||
if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
|
||||
if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG)
|
||||
send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8000 + 4 * i, 4,
|
||||
0x00000006);
|
||||
else
|
||||
@@ -548,7 +548,7 @@ m32r_resume (ptid_t ptid, int step, enum target_signal sig)
|
||||
store_long_parameter (buf + 5, 4);
|
||||
if ((bp_addr & 2) == 0 && bp_addr != (pc_addr & 0xfffffffc))
|
||||
{
|
||||
if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
|
||||
if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG)
|
||||
{
|
||||
buf[9] = dbt_bp_entry[0];
|
||||
buf[10] = dbt_bp_entry[1];
|
||||
@@ -565,7 +565,7 @@ m32r_resume (ptid_t ptid, int step, enum target_signal sig)
|
||||
}
|
||||
else
|
||||
{
|
||||
if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
|
||||
if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG)
|
||||
{
|
||||
if ((bp_addr & 2) == 0)
|
||||
{
|
||||
@@ -612,7 +612,7 @@ m32r_resume (ptid_t ptid, int step, enum target_signal sig)
|
||||
continue;
|
||||
|
||||
/* DBC register */
|
||||
if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
|
||||
if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG)
|
||||
{
|
||||
switch (ab_type[i])
|
||||
{
|
||||
@@ -754,7 +754,7 @@ m32r_wait (ptid_t ptid, struct target_waitstatus *status)
|
||||
if (last_pc_addr != 0xffffffff)
|
||||
{
|
||||
buf[0] = SDI_WRITE_MEMORY;
|
||||
if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
|
||||
if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG)
|
||||
store_long_parameter (buf + 1, last_pc_addr);
|
||||
else
|
||||
store_long_parameter (buf + 1, last_pc_addr - 1);
|
||||
@@ -783,7 +783,7 @@ m32r_wait (ptid_t ptid, struct target_waitstatus *status)
|
||||
address, we have to take care of it later. */
|
||||
if ((pc_addr & 0x2) != 0)
|
||||
{
|
||||
if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
|
||||
if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG)
|
||||
{
|
||||
if ((bp_data[i][2] & 0x80) != 0)
|
||||
{
|
||||
@@ -845,7 +845,7 @@ m32r_wait (ptid_t ptid, struct target_waitstatus *status)
|
||||
c = serial_readchar (sdi_desc, SDI_TIMEOUT);
|
||||
if (c != '-' && recv_data (buf, 4) != -1)
|
||||
{
|
||||
if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
|
||||
if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG)
|
||||
{
|
||||
if ((buf[3] & 0x1) == 0x1)
|
||||
hit_watchpoint_addr = ab_address[i];
|
||||
|
||||
Reference in New Issue
Block a user