2007-10-08 Markus Deuling <deuling@de.ibm.com>
* hppa-tdep.c (hppa_stub_unwind_sniffer, hppa_dump_tdep): Replace current_gdbarch by gdbarch. * hppa-linux-nat.c (fetch_register, store_register) (hppa_linux_fetch_inferior_registers) (hppa_linux_store_inferior_registers): Use get_regcache_arch or get_frame_arch to get at the current architecture by regcache or by frame, respectively. * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code (hppa_hpux_unwind_adjust_stub): Likewise. * hppa-hpux-nat.c (hppa_hpux_fetch_register, hppa_hpux_store_register) (hppa_hpux_fetch_inferior_registers) (hppa_hpux_store_inferior_registers): Likewise.
This commit is contained in:
parent
7fbe2eba67
commit
464963c92c
5 changed files with 53 additions and 24 deletions
|
@ -1,3 +1,18 @@
|
||||||
|
2007-10-08 Markus Deuling <deuling@de.ibm.com>
|
||||||
|
|
||||||
|
* hppa-tdep.c (hppa_stub_unwind_sniffer, hppa_dump_tdep): Replace
|
||||||
|
current_gdbarch by gdbarch.
|
||||||
|
* hppa-linux-nat.c (fetch_register, store_register)
|
||||||
|
(hppa_linux_fetch_inferior_registers)
|
||||||
|
(hppa_linux_store_inferior_registers): Use get_regcache_arch or
|
||||||
|
get_frame_arch to get at the current architecture by regcache or by
|
||||||
|
frame, respectively.
|
||||||
|
* hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code
|
||||||
|
(hppa_hpux_unwind_adjust_stub): Likewise.
|
||||||
|
* hppa-hpux-nat.c (hppa_hpux_fetch_register, hppa_hpux_store_register)
|
||||||
|
(hppa_hpux_fetch_inferior_registers)
|
||||||
|
(hppa_hpux_store_inferior_registers): Likewise.
|
||||||
|
|
||||||
2007-10-08 Markus Deuling <deuling@de.ibm.com>
|
2007-10-08 Markus Deuling <deuling@de.ibm.com>
|
||||||
|
|
||||||
* cris-tdep.c (cris_sigcontext_addr, cris_sigtramp_frame_unwind_cache)
|
* cris-tdep.c (cris_sigcontext_addr, cris_sigtramp_frame_unwind_cache)
|
||||||
|
|
|
@ -87,6 +87,7 @@ hppa_hpux_save_state_offset (struct regcache *regcache, int regnum)
|
||||||
static void
|
static void
|
||||||
hppa_hpux_fetch_register (struct regcache *regcache, int regnum)
|
hppa_hpux_fetch_register (struct regcache *regcache, int regnum)
|
||||||
{
|
{
|
||||||
|
struct gdbarch *gdbarch = get_regcache_arch (regcache);
|
||||||
CORE_ADDR addr;
|
CORE_ADDR addr;
|
||||||
size_t size;
|
size_t size;
|
||||||
PTRACE_TYPE_RET *buf;
|
PTRACE_TYPE_RET *buf;
|
||||||
|
@ -97,7 +98,7 @@ hppa_hpux_fetch_register (struct regcache *regcache, int regnum)
|
||||||
|
|
||||||
/* This isn't really an address, but ptrace thinks of it as one. */
|
/* This isn't really an address, but ptrace thinks of it as one. */
|
||||||
addr = hppa_hpux_save_state_offset (regcache, regnum);
|
addr = hppa_hpux_save_state_offset (regcache, regnum);
|
||||||
size = register_size (current_gdbarch, regnum);
|
size = register_size (gdbarch, regnum);
|
||||||
|
|
||||||
gdb_assert (size == 4 || size == 8);
|
gdb_assert (size == 4 || size == 8);
|
||||||
buf = alloca (size);
|
buf = alloca (size);
|
||||||
|
@ -108,7 +109,7 @@ hppa_hpux_fetch_register (struct regcache *regcache, int regnum)
|
||||||
|
|
||||||
if (ttrace (TT_LWP_RUREGS, pid, lwp, addr, size, (uintptr_t)buf) == -1)
|
if (ttrace (TT_LWP_RUREGS, pid, lwp, addr, size, (uintptr_t)buf) == -1)
|
||||||
error (_("Couldn't read register %s (#%d): %s"),
|
error (_("Couldn't read register %s (#%d): %s"),
|
||||||
gdbarch_register_name (current_gdbarch, regnum),
|
gdbarch_register_name (gdbarch, regnum),
|
||||||
regnum, safe_strerror (errno));
|
regnum, safe_strerror (errno));
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
@ -122,7 +123,7 @@ hppa_hpux_fetch_register (struct regcache *regcache, int regnum)
|
||||||
buf[i] = ptrace (PT_RUREGS, pid, (PTRACE_TYPE_ARG3) addr, 0, 0);
|
buf[i] = ptrace (PT_RUREGS, pid, (PTRACE_TYPE_ARG3) addr, 0, 0);
|
||||||
if (errno != 0)
|
if (errno != 0)
|
||||||
error (_("Couldn't read register %s (#%d): %s"),
|
error (_("Couldn't read register %s (#%d): %s"),
|
||||||
gdbarch_register_name (current_gdbarch, regnum),
|
gdbarch_register_name (gdbarch, regnum),
|
||||||
regnum, safe_strerror (errno));
|
regnum, safe_strerror (errno));
|
||||||
|
|
||||||
addr += sizeof (PTRACE_TYPE_RET);
|
addr += sizeof (PTRACE_TYPE_RET);
|
||||||
|
@ -145,7 +146,9 @@ static void
|
||||||
hppa_hpux_fetch_inferior_registers (struct regcache *regcache, int regnum)
|
hppa_hpux_fetch_inferior_registers (struct regcache *regcache, int regnum)
|
||||||
{
|
{
|
||||||
if (regnum == -1)
|
if (regnum == -1)
|
||||||
for (regnum = 0; regnum < gdbarch_num_regs (current_gdbarch); regnum++)
|
for (regnum = 0;
|
||||||
|
regnum < gdbarch_num_regs (get_regcache_arch (regcache));
|
||||||
|
regnum++)
|
||||||
hppa_hpux_fetch_register (regcache, regnum);
|
hppa_hpux_fetch_register (regcache, regnum);
|
||||||
else
|
else
|
||||||
hppa_hpux_fetch_register (regcache, regnum);
|
hppa_hpux_fetch_register (regcache, regnum);
|
||||||
|
@ -156,7 +159,8 @@ hppa_hpux_fetch_inferior_registers (struct regcache *regcache, int regnum)
|
||||||
static void
|
static void
|
||||||
hppa_hpux_store_register (struct regcache *regcache, int regnum)
|
hppa_hpux_store_register (struct regcache *regcache, int regnum)
|
||||||
{
|
{
|
||||||
CORE_ADDR addr;
|
struct gdbarch *gdbarch = get_regcache_arch (regcache);
|
||||||
|
CORE_ADDR addr
|
||||||
size_t size;
|
size_t size;
|
||||||
PTRACE_TYPE_RET *buf;
|
PTRACE_TYPE_RET *buf;
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
|
@ -165,7 +169,7 @@ hppa_hpux_store_register (struct regcache *regcache, int regnum)
|
||||||
|
|
||||||
/* This isn't really an address, but ptrace thinks of it as one. */
|
/* This isn't really an address, but ptrace thinks of it as one. */
|
||||||
addr = hppa_hpux_save_state_offset (regcache, regnum);
|
addr = hppa_hpux_save_state_offset (regcache, regnum);
|
||||||
size = register_size (current_gdbarch, regnum);
|
size = register_size (gdbarch, regnum);
|
||||||
|
|
||||||
gdb_assert (size == 4 || size == 8);
|
gdb_assert (size == 4 || size == 8);
|
||||||
buf = alloca (size);
|
buf = alloca (size);
|
||||||
|
@ -187,7 +191,7 @@ hppa_hpux_store_register (struct regcache *regcache, int regnum)
|
||||||
|
|
||||||
if (ttrace (TT_LWP_WUREGS, pid, lwp, addr, size, (uintptr_t)buf) == -1)
|
if (ttrace (TT_LWP_WUREGS, pid, lwp, addr, size, (uintptr_t)buf) == -1)
|
||||||
error (_("Couldn't write register %s (#%d): %s"),
|
error (_("Couldn't write register %s (#%d): %s"),
|
||||||
gdbarch_register_name (current_gdbarch, regnum),
|
gdbarch_register_name (gdbarch, regnum),
|
||||||
regnum, safe_strerror (errno));
|
regnum, safe_strerror (errno));
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
@ -201,7 +205,7 @@ hppa_hpux_store_register (struct regcache *regcache, int regnum)
|
||||||
ptrace (PT_WUREGS, pid, (PTRACE_TYPE_ARG3) addr, buf[i], 0);
|
ptrace (PT_WUREGS, pid, (PTRACE_TYPE_ARG3) addr, buf[i], 0);
|
||||||
if (errno != 0)
|
if (errno != 0)
|
||||||
error (_("Couldn't write register %s (#%d): %s"),
|
error (_("Couldn't write register %s (#%d): %s"),
|
||||||
gdbarch_register_name (current_gdbarch, regnum),
|
gdbarch_register_name (gdbarch, regnum),
|
||||||
regnum, safe_strerror (errno));
|
regnum, safe_strerror (errno));
|
||||||
|
|
||||||
addr += sizeof (PTRACE_TYPE_RET);
|
addr += sizeof (PTRACE_TYPE_RET);
|
||||||
|
@ -217,7 +221,9 @@ static void
|
||||||
hppa_hpux_store_inferior_registers (struct regcache *regcache, int regnum)
|
hppa_hpux_store_inferior_registers (struct regcache *regcache, int regnum)
|
||||||
{
|
{
|
||||||
if (regnum == -1)
|
if (regnum == -1)
|
||||||
for (regnum = 0; regnum < gdbarch_num_regs (current_gdbarch); regnum++)
|
for (regnum = 0;
|
||||||
|
regnum < gdbarch_num_regs (get_regcache_arch (regcache));
|
||||||
|
regnum++)
|
||||||
hppa_hpux_store_register (regcache, regnum);
|
hppa_hpux_store_register (regcache, regnum);
|
||||||
else
|
else
|
||||||
hppa_hpux_store_register (regcache, regnum);
|
hppa_hpux_store_register (regcache, regnum);
|
||||||
|
|
|
@ -299,6 +299,7 @@ hppa_hpux_in_solib_return_trampoline (CORE_ADDR pc, char *name)
|
||||||
static CORE_ADDR
|
static CORE_ADDR
|
||||||
hppa_hpux_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
|
hppa_hpux_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
|
||||||
{
|
{
|
||||||
|
struct gdbarch *gdbarch = get_frame_arch (frame);
|
||||||
long orig_pc = pc;
|
long orig_pc = pc;
|
||||||
long prev_inst, curr_inst, loc;
|
long prev_inst, curr_inst, loc;
|
||||||
struct minimal_symbol *msym;
|
struct minimal_symbol *msym;
|
||||||
|
@ -315,13 +316,13 @@ hppa_hpux_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
|
||||||
itself. Bit 31 has meaning too, but only for MPE. */
|
itself. Bit 31 has meaning too, but only for MPE. */
|
||||||
if (pc & 0x2)
|
if (pc & 0x2)
|
||||||
pc = (CORE_ADDR) read_memory_integer
|
pc = (CORE_ADDR) read_memory_integer
|
||||||
(pc & ~0x3, gdbarch_ptr_bit (current_gdbarch) / 8);
|
(pc & ~0x3, gdbarch_ptr_bit (gdbarch) / 8);
|
||||||
}
|
}
|
||||||
if (pc == hppa_symbol_address("$$dyncall_external"))
|
if (pc == hppa_symbol_address("$$dyncall_external"))
|
||||||
{
|
{
|
||||||
pc = (CORE_ADDR) get_frame_register_unsigned (frame, 22);
|
pc = (CORE_ADDR) get_frame_register_unsigned (frame, 22);
|
||||||
pc = (CORE_ADDR) read_memory_integer
|
pc = (CORE_ADDR) read_memory_integer
|
||||||
(pc & ~0x3, gdbarch_ptr_bit (current_gdbarch) / 8);
|
(pc & ~0x3, gdbarch_ptr_bit (gdbarch) / 8);
|
||||||
}
|
}
|
||||||
else if (pc == hppa_symbol_address("_sr4export"))
|
else if (pc == hppa_symbol_address("_sr4export"))
|
||||||
pc = (CORE_ADDR) get_frame_register_unsigned (frame, 22);
|
pc = (CORE_ADDR) get_frame_register_unsigned (frame, 22);
|
||||||
|
@ -517,7 +518,7 @@ hppa_hpux_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
|
||||||
{
|
{
|
||||||
return (read_memory_integer
|
return (read_memory_integer
|
||||||
(get_frame_register_unsigned (frame, HPPA_SP_REGNUM) - 24,
|
(get_frame_register_unsigned (frame, HPPA_SP_REGNUM) - 24,
|
||||||
gdbarch_ptr_bit (current_gdbarch) / 8)) & ~0x3;
|
gdbarch_ptr_bit (gdbarch) / 8)) & ~0x3;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* What about be,n 0(sr0,%rp)? It's just another way we return to
|
/* What about be,n 0(sr0,%rp)? It's just another way we return to
|
||||||
|
@ -530,7 +531,7 @@ hppa_hpux_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
|
||||||
mtsp %r1,%sr0 if we want to do sanity checking. */
|
mtsp %r1,%sr0 if we want to do sanity checking. */
|
||||||
return (read_memory_integer
|
return (read_memory_integer
|
||||||
(get_frame_register_unsigned (frame, HPPA_SP_REGNUM) - 24,
|
(get_frame_register_unsigned (frame, HPPA_SP_REGNUM) - 24,
|
||||||
gdbarch_ptr_bit (current_gdbarch) / 8)) & ~0x3;
|
gdbarch_ptr_bit (gdbarch) / 8)) & ~0x3;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Haven't found the branch yet, but we're still in the stub.
|
/* Haven't found the branch yet, but we're still in the stub.
|
||||||
|
@ -1422,6 +1423,7 @@ static void
|
||||||
hppa_hpux_unwind_adjust_stub (struct frame_info *next_frame, CORE_ADDR base,
|
hppa_hpux_unwind_adjust_stub (struct frame_info *next_frame, CORE_ADDR base,
|
||||||
struct trad_frame_saved_reg *saved_regs)
|
struct trad_frame_saved_reg *saved_regs)
|
||||||
{
|
{
|
||||||
|
struct gdbarch *gdbarch = get_frame_arch (next_frame);
|
||||||
int optimized, realreg;
|
int optimized, realreg;
|
||||||
enum lval_type lval;
|
enum lval_type lval;
|
||||||
CORE_ADDR addr;
|
CORE_ADDR addr;
|
||||||
|
@ -1441,14 +1443,14 @@ hppa_hpux_unwind_adjust_stub (struct frame_info *next_frame, CORE_ADDR base,
|
||||||
if (u && u->stub_unwind.stub_type == EXPORT)
|
if (u && u->stub_unwind.stub_type == EXPORT)
|
||||||
{
|
{
|
||||||
stubpc = read_memory_integer
|
stubpc = read_memory_integer
|
||||||
(base - 24, gdbarch_ptr_bit (current_gdbarch) / 8);
|
(base - 24, gdbarch_ptr_bit (gdbarch) / 8);
|
||||||
trad_frame_set_value (saved_regs, HPPA_PCOQ_HEAD_REGNUM, stubpc);
|
trad_frame_set_value (saved_regs, HPPA_PCOQ_HEAD_REGNUM, stubpc);
|
||||||
}
|
}
|
||||||
else if (hppa_symbol_address ("__gcc_plt_call")
|
else if (hppa_symbol_address ("__gcc_plt_call")
|
||||||
== get_pc_function_start (val))
|
== get_pc_function_start (val))
|
||||||
{
|
{
|
||||||
stubpc = read_memory_integer
|
stubpc = read_memory_integer
|
||||||
(base - 8, gdbarch_ptr_bit (current_gdbarch) / 8);
|
(base - 8, gdbarch_ptr_bit (gdbarch) / 8);
|
||||||
trad_frame_set_value (saved_regs, HPPA_PCOQ_HEAD_REGNUM, stubpc);
|
trad_frame_set_value (saved_regs, HPPA_PCOQ_HEAD_REGNUM, stubpc);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -216,10 +216,11 @@ static const int greg_map[] =
|
||||||
static void
|
static void
|
||||||
fetch_register (struct regcache *regcache, int regno)
|
fetch_register (struct regcache *regcache, int regno)
|
||||||
{
|
{
|
||||||
|
struct gdbarch *gdbarch = get_regcache_arch (regcache);
|
||||||
int tid;
|
int tid;
|
||||||
int val;
|
int val;
|
||||||
|
|
||||||
if (gdbarch_cannot_fetch_register (current_gdbarch, regno))
|
if (gdbarch_cannot_fetch_register (gdbarch, regno))
|
||||||
{
|
{
|
||||||
regcache_raw_supply (regcache, regno, NULL);
|
regcache_raw_supply (regcache, regno, NULL);
|
||||||
return;
|
return;
|
||||||
|
@ -234,7 +235,7 @@ fetch_register (struct regcache *regcache, int regno)
|
||||||
val = ptrace (PTRACE_PEEKUSER, tid, hppa_linux_register_addr (regno, 0), 0);
|
val = ptrace (PTRACE_PEEKUSER, tid, hppa_linux_register_addr (regno, 0), 0);
|
||||||
if (errno != 0)
|
if (errno != 0)
|
||||||
error (_("Couldn't read register %s (#%d): %s."),
|
error (_("Couldn't read register %s (#%d): %s."),
|
||||||
gdbarch_register_name (current_gdbarch, regno),
|
gdbarch_register_name (gdbarch, regno),
|
||||||
regno, safe_strerror (errno));
|
regno, safe_strerror (errno));
|
||||||
|
|
||||||
regcache_raw_supply (regcache, regno, &val);
|
regcache_raw_supply (regcache, regno, &val);
|
||||||
|
@ -245,10 +246,11 @@ fetch_register (struct regcache *regcache, int regno)
|
||||||
static void
|
static void
|
||||||
store_register (const struct regcache *regcache, int regno)
|
store_register (const struct regcache *regcache, int regno)
|
||||||
{
|
{
|
||||||
|
struct gdbarch *gdbarch = get_regcache_arch (regcache);
|
||||||
int tid;
|
int tid;
|
||||||
int val;
|
int val;
|
||||||
|
|
||||||
if (gdbarch_cannot_store_register (current_gdbarch, regno))
|
if (gdbarch_cannot_store_register (gdbarch, regno))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* GNU/Linux LWP ID's are process ID's. */
|
/* GNU/Linux LWP ID's are process ID's. */
|
||||||
|
@ -261,7 +263,7 @@ store_register (const struct regcache *regcache, int regno)
|
||||||
ptrace (PTRACE_POKEUSER, tid, hppa_linux_register_addr (regno, 0), val);
|
ptrace (PTRACE_POKEUSER, tid, hppa_linux_register_addr (regno, 0), val);
|
||||||
if (errno != 0)
|
if (errno != 0)
|
||||||
error (_("Couldn't write register %s (#%d): %s."),
|
error (_("Couldn't write register %s (#%d): %s."),
|
||||||
gdbarch_register_name (current_gdbarch, regno),
|
gdbarch_register_name (gdbarch, regno),
|
||||||
regno, safe_strerror (errno));
|
regno, safe_strerror (errno));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -274,7 +276,9 @@ hppa_linux_fetch_inferior_registers (struct regcache *regcache, int regno)
|
||||||
{
|
{
|
||||||
if (-1 == regno)
|
if (-1 == regno)
|
||||||
{
|
{
|
||||||
for (regno = 0; regno < gdbarch_num_regs (current_gdbarch); regno++)
|
for (regno = 0;
|
||||||
|
regno < gdbarch_num_regs (get_regcache_arch (regcache));
|
||||||
|
regno++)
|
||||||
fetch_register (regcache, regno);
|
fetch_register (regcache, regno);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -292,7 +296,9 @@ hppa_linux_store_inferior_registers (struct regcache *regcache, int regno)
|
||||||
{
|
{
|
||||||
if (-1 == regno)
|
if (-1 == regno)
|
||||||
{
|
{
|
||||||
for (regno = 0; regno < gdbarch_num_regs (current_gdbarch); regno++)
|
for (regno = 0;
|
||||||
|
regno < gdbarch_num_regs (get_regcache_arch (regcache));
|
||||||
|
regno++)
|
||||||
store_register (regcache, regno);
|
store_register (regcache, regno);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -2461,7 +2461,7 @@ hppa_stub_unwind_sniffer (struct frame_info *next_frame)
|
||||||
if (pc == 0
|
if (pc == 0
|
||||||
|| (tdep->in_solib_call_trampoline != NULL
|
|| (tdep->in_solib_call_trampoline != NULL
|
||||||
&& tdep->in_solib_call_trampoline (pc, NULL))
|
&& tdep->in_solib_call_trampoline (pc, NULL))
|
||||||
|| gdbarch_in_solib_return_trampoline (current_gdbarch, pc, NULL))
|
|| gdbarch_in_solib_return_trampoline (gdbarch, pc, NULL))
|
||||||
return &hppa_stub_frame_unwind;
|
return &hppa_stub_frame_unwind;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -3195,9 +3195,9 @@ hppa_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
hppa_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file)
|
hppa_dump_tdep (struct gdbarch *gdbarch, struct ui_file *file)
|
||||||
{
|
{
|
||||||
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
||||||
|
|
||||||
fprintf_unfiltered (file, "bytes_per_address = %d\n",
|
fprintf_unfiltered (file, "bytes_per_address = %d\n",
|
||||||
tdep->bytes_per_address);
|
tdep->bytes_per_address);
|
||||||
|
|
Loading…
Reference in a new issue