* sparc-tdep.c (sparc_frame_cache): Adjust cached frame base

address for 64-bit code.
(sparc_unwind_dummy_id): Likewise.
* sparc64-tdep.c (sparc64_frame_prev_register): Adjust for new
frame base address convention.
(sparc64_push_dummy_call): Likewise.
* sparc64nbsd-tdep.c: Update copyright year.
(sparc64nbsd_sigcontext_frame_cache): Adjust cached frame base
address for 64-bit code.
(sparc64nbsd_init_abi): Tweak comment.
* sparc64obsd-tdep.c: Update copyright year.
(sparc64obsd_frame_cache): Adjust cached frame base address for
64-bit code.
(sparc64obsd_init_abi): Tweak comment.
This commit is contained in:
Mark Kettenis
2005-03-09 22:08:13 +00:00
parent e5a8e242a8
commit 5b2d44a05d
5 changed files with 37 additions and 11 deletions

View File

@@ -526,7 +526,7 @@ sparc64_frame_prev_register (struct frame_info *next_frame, void **this_cache,
{
*optimizedp = 0;
*lvalp = lval_memory;
*addrp = cache->base + BIAS + (regnum - SPARC_L0_REGNUM) * 8;
*addrp = cache->base + (regnum - SPARC_L0_REGNUM) * 8;
*realnump = -1;
if (valuep)
{
@@ -572,7 +572,7 @@ sparc64_frame_base_address (struct frame_info *next_frame, void **this_cache)
struct sparc_frame_cache *cache =
sparc64_frame_cache (next_frame, this_cache);
return cache->base + BIAS;
return cache->base;
}
static const struct frame_base sparc64_frame_base =
@@ -973,7 +973,7 @@ sparc64_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
/* Finally, update the stack pointer. */
regcache_cooked_write_unsigned (regcache, SPARC_SP_REGNUM, sp);
return sp;
return sp + BIAS;
}