1 /* Target-dependent code for OpenBSD/sparc64.
3 Copyright (C) 2004-2013 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "frame-unwind.h"
29 #include "trad-frame.h"
31 #include "gdb_assert.h"
33 #include "obsd-tdep.h"
34 #include "sparc64-tdep.h"
35 #include "solib-svr4.h"
36 #include "bsd-uthread.h"
38 /* OpenBSD uses the traditional NetBSD core file format, even for
39 ports that use ELF. The core files don't use multiple register
40 sets. Instead, the general-purpose and floating-point registers
41 are lumped together in a single section. Unlike on NetBSD, OpenBSD
42 uses a different layout for its general-purpose registers than the
43 layout used for ptrace(2). */
45 /* From <machine/reg.h>. */
46 const struct sparc_gregset sparc64obsd_core_gregset
=
60 sparc64obsd_supply_gregset (const struct regset
*regset
,
61 struct regcache
*regcache
,
62 int regnum
, const void *gregs
, size_t len
)
64 const char *regs
= gregs
;
66 sparc64_supply_gregset (&sparc64obsd_core_gregset
, regcache
, regnum
, regs
);
67 sparc64_supply_fpregset (&sparc64_bsd_fpregset
, regcache
, regnum
, regs
+ 288);
71 /* Signal trampolines. */
73 /* Since OpenBSD 3.2, the sigtramp routine is mapped at a random page
74 in virtual memory. The randomness makes it somewhat tricky to
75 detect it, but fortunately we can rely on the fact that the start
76 of the sigtramp routine is page-aligned. We recognize the
77 trampoline by looking for the code that invokes the sigreturn
78 system call. The offset where we can find that code varies from
81 By the way, the mapping mentioned above is read-only, so you cannot
82 place a breakpoint in the signal trampoline. */
84 /* Default page size. */
85 static const int sparc64obsd_page_size
= 8192;
87 /* Offset for sigreturn(2). */
88 static const int sparc64obsd_sigreturn_offset
[] = {
89 0xf0, /* OpenBSD 3.8 */
90 0xec, /* OpenBSD 3.6 */
91 0xe8, /* OpenBSD 3.2 */
96 sparc64obsd_pc_in_sigtramp (CORE_ADDR pc
, const char *name
)
98 CORE_ADDR start_pc
= (pc
& ~(sparc64obsd_page_size
- 1));
105 for (offset
= sparc64obsd_sigreturn_offset
; *offset
!= -1; offset
++)
107 /* Check for "restore %g0, SYS_sigreturn, %g1". */
108 insn
= sparc_fetch_instruction (start_pc
+ *offset
);
109 if (insn
!= 0x83e82067)
112 /* Check for "t ST_SYSCALL". */
113 insn
= sparc_fetch_instruction (start_pc
+ *offset
+ 8);
114 if (insn
!= 0x91d02000)
123 static struct sparc_frame_cache
*
124 sparc64obsd_frame_cache (struct frame_info
*this_frame
, void **this_cache
)
126 struct sparc_frame_cache
*cache
;
132 cache
= sparc_frame_cache (this_frame
, this_cache
);
133 gdb_assert (cache
== *this_cache
);
135 /* If we couldn't find the frame's function, we're probably dealing
136 with an on-stack signal trampoline. */
139 cache
->pc
= get_frame_pc (this_frame
);
140 cache
->pc
&= ~(sparc64obsd_page_size
- 1);
142 /* Since we couldn't find the frame's function, the cache was
143 initialized under the assumption that we're frameless. */
144 sparc_record_save_insn (cache
);
145 addr
= get_frame_register_unsigned (this_frame
, SPARC_FP_REGNUM
);
151 /* We find the appropriate instance of `struct sigcontext' at a
152 fixed offset in the signal frame. */
153 addr
= cache
->base
+ 128 + 16;
154 cache
->saved_regs
= sparc64nbsd_sigcontext_saved_regs (addr
, this_frame
);
160 sparc64obsd_frame_this_id (struct frame_info
*this_frame
, void **this_cache
,
161 struct frame_id
*this_id
)
163 struct sparc_frame_cache
*cache
=
164 sparc64obsd_frame_cache (this_frame
, this_cache
);
166 (*this_id
) = frame_id_build (cache
->base
, cache
->pc
);
169 static struct value
*
170 sparc64obsd_frame_prev_register (struct frame_info
*this_frame
,
171 void **this_cache
, int regnum
)
173 struct sparc_frame_cache
*cache
=
174 sparc64obsd_frame_cache (this_frame
, this_cache
);
176 return trad_frame_get_prev_register (this_frame
, cache
->saved_regs
, regnum
);
180 sparc64obsd_sigtramp_frame_sniffer (const struct frame_unwind
*self
,
181 struct frame_info
*this_frame
,
184 CORE_ADDR pc
= get_frame_pc (this_frame
);
187 find_pc_partial_function (pc
, &name
, NULL
, NULL
);
188 if (sparc64obsd_pc_in_sigtramp (pc
, name
))
194 static const struct frame_unwind sparc64obsd_frame_unwind
=
197 default_frame_unwind_stop_reason
,
198 sparc64obsd_frame_this_id
,
199 sparc64obsd_frame_prev_register
,
201 sparc64obsd_sigtramp_frame_sniffer
204 /* Kernel debugging support. */
206 static struct sparc_frame_cache
*
207 sparc64obsd_trapframe_cache (struct frame_info
*this_frame
, void **this_cache
)
209 struct sparc_frame_cache
*cache
;
210 CORE_ADDR sp
, trapframe_addr
;
216 cache
= sparc_frame_cache (this_frame
, this_cache
);
217 gdb_assert (cache
== *this_cache
);
219 sp
= get_frame_register_unsigned (this_frame
, SPARC_SP_REGNUM
);
220 trapframe_addr
= sp
+ BIAS
+ 176;
222 cache
->saved_regs
= trad_frame_alloc_saved_regs (this_frame
);
224 cache
->saved_regs
[SPARC64_STATE_REGNUM
].addr
= trapframe_addr
;
225 cache
->saved_regs
[SPARC64_PC_REGNUM
].addr
= trapframe_addr
+ 8;
226 cache
->saved_regs
[SPARC64_NPC_REGNUM
].addr
= trapframe_addr
+ 16;
228 for (regnum
= SPARC_G0_REGNUM
; regnum
<= SPARC_I7_REGNUM
; regnum
++)
229 cache
->saved_regs
[regnum
].addr
=
230 trapframe_addr
+ 48 + (regnum
- SPARC_G0_REGNUM
) * 8;
236 sparc64obsd_trapframe_this_id (struct frame_info
*this_frame
,
237 void **this_cache
, struct frame_id
*this_id
)
239 struct sparc_frame_cache
*cache
=
240 sparc64obsd_trapframe_cache (this_frame
, this_cache
);
242 (*this_id
) = frame_id_build (cache
->base
, cache
->pc
);
245 static struct value
*
246 sparc64obsd_trapframe_prev_register (struct frame_info
*this_frame
,
247 void **this_cache
, int regnum
)
249 struct sparc_frame_cache
*cache
=
250 sparc64obsd_trapframe_cache (this_frame
, this_cache
);
252 return trad_frame_get_prev_register (this_frame
, cache
->saved_regs
, regnum
);
256 sparc64obsd_trapframe_sniffer (const struct frame_unwind
*self
,
257 struct frame_info
*this_frame
,
264 /* Check whether we are in privileged mode, and bail out if we're not. */
265 pstate
= get_frame_register_unsigned (this_frame
, SPARC64_PSTATE_REGNUM
);
266 if ((pstate
& SPARC64_PSTATE_PRIV
) == 0)
269 pc
= get_frame_address_in_block (this_frame
);
270 find_pc_partial_function (pc
, &name
, NULL
, NULL
);
271 if (name
&& strcmp (name
, "Lslowtrap_reenter") == 0)
277 static const struct frame_unwind sparc64obsd_trapframe_unwind
=
280 default_frame_unwind_stop_reason
,
281 sparc64obsd_trapframe_this_id
,
282 sparc64obsd_trapframe_prev_register
,
284 sparc64obsd_trapframe_sniffer
288 /* Threads support. */
290 /* Offset wthin the thread structure where we can find %fp and %i7. */
291 #define SPARC64OBSD_UTHREAD_FP_OFFSET 232
292 #define SPARC64OBSD_UTHREAD_PC_OFFSET 240
295 sparc64obsd_supply_uthread (struct regcache
*regcache
,
296 int regnum
, CORE_ADDR addr
)
298 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
299 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
300 CORE_ADDR fp
, fp_addr
= addr
+ SPARC64OBSD_UTHREAD_FP_OFFSET
;
303 gdb_assert (regnum
>= -1);
305 fp
= read_memory_unsigned_integer (fp_addr
, 8, byte_order
);
306 if (regnum
== SPARC_SP_REGNUM
|| regnum
== -1)
308 store_unsigned_integer (buf
, 8, byte_order
, fp
);
309 regcache_raw_supply (regcache
, SPARC_SP_REGNUM
, buf
);
311 if (regnum
== SPARC_SP_REGNUM
)
315 if (regnum
== SPARC64_PC_REGNUM
|| regnum
== SPARC64_NPC_REGNUM
318 CORE_ADDR i7
, i7_addr
= addr
+ SPARC64OBSD_UTHREAD_PC_OFFSET
;
320 i7
= read_memory_unsigned_integer (i7_addr
, 8, byte_order
);
321 if (regnum
== SPARC64_PC_REGNUM
|| regnum
== -1)
323 store_unsigned_integer (buf
, 8, byte_order
, i7
+ 8);
324 regcache_raw_supply (regcache
, SPARC64_PC_REGNUM
, buf
);
326 if (regnum
== SPARC64_NPC_REGNUM
|| regnum
== -1)
328 store_unsigned_integer (buf
, 8, byte_order
, i7
+ 12);
329 regcache_raw_supply (regcache
, SPARC64_NPC_REGNUM
, buf
);
332 if (regnum
== SPARC64_PC_REGNUM
|| regnum
== SPARC64_NPC_REGNUM
)
336 sparc_supply_rwindow (regcache
, fp
, regnum
);
340 sparc64obsd_collect_uthread(const struct regcache
*regcache
,
341 int regnum
, CORE_ADDR addr
)
343 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
344 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
348 gdb_assert (regnum
>= -1);
350 if (regnum
== SPARC_SP_REGNUM
|| regnum
== -1)
352 CORE_ADDR fp_addr
= addr
+ SPARC64OBSD_UTHREAD_FP_OFFSET
;
354 regcache_raw_collect (regcache
, SPARC_SP_REGNUM
, buf
);
355 write_memory (fp_addr
,buf
, 8);
358 if (regnum
== SPARC64_PC_REGNUM
|| regnum
== -1)
360 CORE_ADDR i7
, i7_addr
= addr
+ SPARC64OBSD_UTHREAD_PC_OFFSET
;
362 regcache_raw_collect (regcache
, SPARC64_PC_REGNUM
, buf
);
363 i7
= extract_unsigned_integer (buf
, 8, byte_order
) - 8;
364 write_memory_unsigned_integer (i7_addr
, 8, byte_order
, i7
);
366 if (regnum
== SPARC64_PC_REGNUM
)
370 regcache_raw_collect (regcache
, SPARC_SP_REGNUM
, buf
);
371 sp
= extract_unsigned_integer (buf
, 8, byte_order
);
372 sparc_collect_rwindow (regcache
, sp
, regnum
);
377 sparc64obsd_init_abi (struct gdbarch_info info
, struct gdbarch
*gdbarch
)
379 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
381 tdep
->gregset
= regset_alloc (gdbarch
, sparc64obsd_supply_gregset
, NULL
);
382 tdep
->sizeof_gregset
= 832;
384 /* Make sure we can single-step "new" syscalls. */
385 tdep
->step_trap
= sparcnbsd_step_trap
;
387 frame_unwind_append_unwinder (gdbarch
, &sparc64obsd_frame_unwind
);
388 frame_unwind_append_unwinder (gdbarch
, &sparc64obsd_trapframe_unwind
);
390 sparc64_init_abi (info
, gdbarch
);
392 /* OpenBSD/sparc64 has SVR4-style shared libraries. */
393 set_solib_svr4_fetch_link_map_offsets
394 (gdbarch
, svr4_lp64_fetch_link_map_offsets
);
395 set_gdbarch_skip_solib_resolver (gdbarch
, obsd_skip_solib_resolver
);
397 /* OpenBSD provides a user-level threads implementation. */
398 bsd_uthread_set_supply_uthread (gdbarch
, sparc64obsd_supply_uthread
);
399 bsd_uthread_set_collect_uthread (gdbarch
, sparc64obsd_collect_uthread
);
403 /* Provide a prototype to silence -Wmissing-prototypes. */
404 void _initialize_sparc64obsd_tdep (void);
407 _initialize_sparc64obsd_tdep (void)
409 gdbarch_register_osabi (bfd_arch_sparc
, bfd_mach_sparc_v9
,
410 GDB_OSABI_OPENBSD_ELF
, sparc64obsd_init_abi
);