* sparc-tdep.c (sparc_supply_rwindow, sparc_collect_rwindow):
Handle StackGhost in 64-bit code. * sparc64-tdep.c (sparc64_frame_prev_register): Handle StackGhost.
This commit is contained in:
parent
5810296be6
commit
f700a3641b
3 changed files with 49 additions and 0 deletions
|
@ -1272,6 +1272,16 @@ sparc_supply_rwindow (struct regcache *regcache, CORE_ADDR sp, int regnum)
|
|||
if (regnum == i || regnum == -1)
|
||||
{
|
||||
target_read_memory (sp + ((i - SPARC_L0_REGNUM) * 8), buf, 8);
|
||||
|
||||
/* Handle StackGhost. */
|
||||
if (i == SPARC_I7_REGNUM)
|
||||
{
|
||||
ULONGEST wcookie = sparc_fetch_wcookie ();
|
||||
ULONGEST i7 = extract_unsigned_integer (buf + offset, 8);
|
||||
|
||||
store_unsigned_integer (buf + offset, 8, i7 ^ wcookie);
|
||||
}
|
||||
|
||||
regcache_raw_supply (regcache, i, buf);
|
||||
}
|
||||
}
|
||||
|
@ -1330,6 +1340,16 @@ sparc_collect_rwindow (const struct regcache *regcache,
|
|||
if (regnum == -1 || regnum == SPARC_SP_REGNUM || regnum == i)
|
||||
{
|
||||
regcache_raw_collect (regcache, i, buf);
|
||||
|
||||
/* Handle StackGhost. */
|
||||
if (i == SPARC_I7_REGNUM)
|
||||
{
|
||||
ULONGEST wcookie = sparc_fetch_wcookie ();
|
||||
ULONGEST i7 = extract_unsigned_integer (buf + offset, 8);
|
||||
|
||||
store_unsigned_integer (buf, 8, i7 ^ wcookie);
|
||||
}
|
||||
|
||||
target_write_memory (sp + ((i - SPARC_L0_REGNUM) * 8), buf, 8);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue