diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2004-08-13 20:59:34 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2004-08-13 20:59:34 +0000 |
commit | b750e62e178d69b14b5aef913092d3a5d7ef037d (patch) | |
tree | e388a49a361c30c2b852814c7d5f2b39dbc8405a /gnu/usr.bin/binutils | |
parent | bd5a687fd9ff58e964fba5f7fcf59f4219ffa09c (diff) |
Adjust sigtramp recognition for (not so recent) changes on sparc64.
Diffstat (limited to 'gnu/usr.bin/binutils')
-rw-r--r-- | gnu/usr.bin/binutils/gdb/sparc64obsd-tdep.c | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/gnu/usr.bin/binutils/gdb/sparc64obsd-tdep.c b/gnu/usr.bin/binutils/gdb/sparc64obsd-tdep.c index 190a46be1fa..760522f254f 100644 --- a/gnu/usr.bin/binutils/gdb/sparc64obsd-tdep.c +++ b/gnu/usr.bin/binutils/gdb/sparc64obsd-tdep.c @@ -74,30 +74,40 @@ sparc64obsd_supply_gregset (const struct regset *regset, The signal trampoline will be mapped at an address that is page aligned. We recognize the signal trampoline by the looking for the - sigreturn system call. */ + sigreturn system call. The offset where we can find the code that + makes this system call varies from release to release. For OpenBSD + 3.6 and later releases we can find the code at offset 0xec. For + OpenBSD 3.5 and earlier releases, we find it at offset 0xe8. */ static const int sparc64obsd_page_size = 8192; +static const int sparc64obsd_sigreturn_offset[] = { 0xec, 0xe8, -1 }; static int sparc64obsd_pc_in_sigtramp (CORE_ADDR pc, char *name) { CORE_ADDR start_pc = (pc & ~(sparc64obsd_page_size - 1)); unsigned long insn; + const int *offset; if (name) return 0; - /* Check for "restore %g0, SYS_sigreturn, %g1". */ - insn = sparc_fetch_instruction (start_pc + 0xe8); - if (insn != 0x83e82067) - return 0; + for (offset = sparc64obsd_sigreturn_offset; *offset != -1; offset++) + { + /* Check for "restore %g0, SYS_sigreturn, %g1". */ + insn = sparc_fetch_instruction (start_pc + *offset); + if (insn != 0x83e82067) + continue; - /* Check for "t ST_SYSCALL". */ - insn = sparc_fetch_instruction (start_pc + 0xf0); - if (insn != 0x91d02000) - return 0; + /* Check for "t ST_SYSCALL". */ + insn = sparc_fetch_instruction (start_pc + *offset + 8); + if (insn != 0x91d02000) + continue; + + return 1; + } - return 1; + return 0; } static struct sparc_frame_cache * |