1 /* Target-dependent code for NetBSD/Alpha.
2 Copyright 2002 Free Software Foundation, Inc.
3 Contributed by Wasabi Systems, 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 2 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, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
27 #include "solib-svr4.h"
29 #include "alpha-tdep.h"
30 #include "alphabsd-tdep.h"
31 #include "nbsd-tdep.h"
34 fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which,
40 /* Table to map a gdb register number to a trapframe register index. */
41 static const int regmap[] =
52 #define SIZEOF_TRAPFRAME (33 * 8)
54 /* We get everything from one section. */
59 fpregs = core_reg_sect + SIZEOF_TRAPFRAME;
61 if (core_reg_size < (SIZEOF_TRAPFRAME + SIZEOF_STRUCT_FPREG))
63 warning ("Wrong size register set in core file.");
67 /* Integer registers. */
68 for (regno = 0; regno < ALPHA_ZERO_REGNUM; regno++)
69 supply_register (regno, regs + (regmap[regno] * 8));
70 supply_register (ALPHA_ZERO_REGNUM, NULL);
71 supply_register (FP_REGNUM, NULL);
72 supply_register (PC_REGNUM, regs + (28 * 8));
74 /* Floating point registers. */
75 alphabsd_supply_fpreg (fpregs, -1);
79 fetch_elfcore_registers (char *core_reg_sect, unsigned core_reg_size, int which,
84 case 0: /* Integer registers. */
85 if (core_reg_size != SIZEOF_STRUCT_REG)
86 warning ("Wrong size register set in core file.");
88 alphabsd_supply_reg (core_reg_sect, -1);
91 case 2: /* Floating point registers. */
92 if (core_reg_size != SIZEOF_STRUCT_FPREG)
93 warning ("Wrong size FP register set in core file.");
95 alphabsd_supply_fpreg (core_reg_sect, -1);
99 /* Don't know what kind of register request this is; just ignore it. */
104 static struct core_fns alphanbsd_core_fns =
106 bfd_target_unknown_flavour, /* core_flavour */
107 default_check_format, /* check_format */
108 default_core_sniffer, /* core_sniffer */
109 fetch_core_registers, /* core_read_registers */
113 static struct core_fns alphanbsd_elfcore_fns =
115 bfd_target_elf_flavour, /* core_flavour */
116 default_check_format, /* check_format */
117 default_core_sniffer, /* core_sniffer */
118 fetch_elfcore_registers, /* core_read_registers */
122 /* Under NetBSD/alpha, signal handler invocations can be identified by the
123 designated code sequence that is used to return from a signal handler.
124 In particular, the return address of a signal handler points to the
125 following code sequence:
129 lda v0, 295(zero) # __sigreturn14
132 Each instruction has a unique encoding, so we simply attempt to match
133 the instruction the PC is pointing to with any of the above instructions.
134 If there is a hit, we know the offset to the start of the designated
135 sequence and can then check whether we really are executing in the
136 signal trampoline. If not, -1 is returned, otherwise the offset from the
137 start of the return sequence is returned. */
138 static const unsigned char sigtramp_retcode[] =
140 0x00, 0x00, 0x1e, 0xa6, /* ldq a0, 0(sp) */
141 0x10, 0x00, 0xde, 0x23, /* lda sp, 16(sp) */
142 0x27, 0x01, 0x1f, 0x20, /* lda v0, 295(zero) */
143 0x83, 0x00, 0x00, 0x00, /* call_pal callsys */
145 #define RETCODE_NWORDS 4
146 #define RETCODE_SIZE (RETCODE_NWORDS * 4)
149 alphanbsd_sigtramp_offset (CORE_ADDR pc)
151 unsigned char ret[RETCODE_SIZE], w[4];
155 if (read_memory_nobpt (pc, (char *) w, 4) != 0)
158 for (i = 0; i < RETCODE_NWORDS; i++)
160 if (memcmp (w, sigtramp_retcode + (i * 4), 4) == 0)
163 if (i == RETCODE_NWORDS)
169 if (read_memory_nobpt (pc, (char *) ret, sizeof (ret)) != 0)
172 if (memcmp (ret, sigtramp_retcode, RETCODE_SIZE) == 0)
179 alphanbsd_pc_in_sigtramp (CORE_ADDR pc, char *func_name)
181 return (alphanbsd_sigtramp_offset (pc) >= 0);
185 alphanbsd_init_abi (struct gdbarch_info info,
186 struct gdbarch *gdbarch)
188 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
190 set_gdbarch_pc_in_sigtramp (gdbarch, alphanbsd_pc_in_sigtramp);
192 /* NetBSD/alpha does not provide single step support via ptrace(2); we
193 must use software single-stepping. */
194 set_gdbarch_software_single_step (gdbarch, alpha_software_single_step);
196 set_solib_svr4_fetch_link_map_offsets (gdbarch,
197 nbsd_lp64_solib_svr4_fetch_link_map_offsets);
199 tdep->dynamic_sigtramp_offset = alphanbsd_sigtramp_offset;
202 tdep->jb_elt_size = 8;
206 _initialize_alphanbsd_tdep (void)
208 gdbarch_register_osabi (bfd_arch_alpha, GDB_OSABI_NETBSD_ELF,
211 add_core_fns (&alphanbsd_core_fns);
212 add_core_fns (&alphanbsd_elfcore_fns);