1 /* Target-dependent code for PowerPC systems running NetBSD.
3 Copyright 2002, 2003, 2004 Free Software Foundation, Inc.
5 Contributed by Wasabi Systems, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
28 #include "breakpoint.h"
33 #include "ppcnbsd-tdep.h"
34 #include "nbsd-tdep.h"
35 #include "tramp-frame.h"
36 #include "trad-frame.h"
37 #include "gdb_assert.h"
38 #include "solib-svr4.h"
40 #define REG_FIXREG_OFFSET(x) ((x) * 4)
41 #define REG_LR_OFFSET (32 * 4)
42 #define REG_CR_OFFSET (33 * 4)
43 #define REG_XER_OFFSET (34 * 4)
44 #define REG_CTR_OFFSET (35 * 4)
45 #define REG_PC_OFFSET (36 * 4)
46 #define SIZEOF_STRUCT_REG (37 * 4)
48 #define FPREG_FPR_OFFSET(x) ((x) * 8)
49 #define FPREG_FPSCR_OFFSET (32 * 8)
50 #define SIZEOF_STRUCT_FPREG (33 * 8)
53 ppcnbsd_supply_reg (char *regs
, int regno
)
55 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
58 for (i
= 0; i
< ppc_num_gprs
; i
++)
60 if (regno
== tdep
->ppc_gp0_regnum
+ i
|| regno
== -1)
61 regcache_raw_supply (current_regcache
, tdep
->ppc_gp0_regnum
+ i
,
62 regs
+ REG_FIXREG_OFFSET (i
));
65 if (regno
== tdep
->ppc_lr_regnum
|| regno
== -1)
66 regcache_raw_supply (current_regcache
, tdep
->ppc_lr_regnum
,
67 regs
+ REG_LR_OFFSET
);
69 if (regno
== tdep
->ppc_cr_regnum
|| regno
== -1)
70 regcache_raw_supply (current_regcache
, tdep
->ppc_cr_regnum
,
71 regs
+ REG_CR_OFFSET
);
73 if (regno
== tdep
->ppc_xer_regnum
|| regno
== -1)
74 regcache_raw_supply (current_regcache
, tdep
->ppc_xer_regnum
,
75 regs
+ REG_XER_OFFSET
);
77 if (regno
== tdep
->ppc_ctr_regnum
|| regno
== -1)
78 regcache_raw_supply (current_regcache
, tdep
->ppc_ctr_regnum
,
79 regs
+ REG_CTR_OFFSET
);
81 if (regno
== PC_REGNUM
|| regno
== -1)
82 regcache_raw_supply (current_regcache
, PC_REGNUM
,
83 regs
+ REG_PC_OFFSET
);
87 ppcnbsd_fill_reg (char *regs
, int regno
)
89 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
92 for (i
= 0; i
< ppc_num_gprs
; i
++)
94 if (regno
== tdep
->ppc_gp0_regnum
+ i
|| regno
== -1)
95 regcache_raw_collect (current_regcache
, tdep
->ppc_gp0_regnum
+ i
,
96 regs
+ REG_FIXREG_OFFSET (i
));
99 if (regno
== tdep
->ppc_lr_regnum
|| regno
== -1)
100 regcache_raw_collect (current_regcache
, tdep
->ppc_lr_regnum
,
101 regs
+ REG_LR_OFFSET
);
103 if (regno
== tdep
->ppc_cr_regnum
|| regno
== -1)
104 regcache_raw_collect (current_regcache
, tdep
->ppc_cr_regnum
,
105 regs
+ REG_CR_OFFSET
);
107 if (regno
== tdep
->ppc_xer_regnum
|| regno
== -1)
108 regcache_raw_collect (current_regcache
, tdep
->ppc_xer_regnum
,
109 regs
+ REG_XER_OFFSET
);
111 if (regno
== tdep
->ppc_ctr_regnum
|| regno
== -1)
112 regcache_raw_collect (current_regcache
, tdep
->ppc_ctr_regnum
,
113 regs
+ REG_CTR_OFFSET
);
115 if (regno
== PC_REGNUM
|| regno
== -1)
116 regcache_raw_collect (current_regcache
, PC_REGNUM
, regs
+ REG_PC_OFFSET
);
120 ppcnbsd_supply_fpreg (char *fpregs
, int regno
)
122 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
125 /* FIXME: jimb/2004-05-05: Some PPC variants don't have floating
126 point registers. Traditionally, GDB's register set has still
127 listed the floating point registers for such machines, so this
128 code is harmless. However, the new E500 port actually omits the
129 floating point registers entirely from the register set --- they
130 don't even have register numbers assigned to them.
132 It's not clear to me how best to update this code, so this assert
133 will alert the first person to encounter the NetBSD/E500
134 combination to the problem. */
135 gdb_assert (ppc_floating_point_unit_p (current_gdbarch
));
137 for (i
= 0; i
< ppc_num_fprs
; i
++)
139 if (regno
== tdep
->ppc_fp0_regnum
+ i
|| regno
== -1)
140 regcache_raw_supply (current_regcache
, tdep
->ppc_fp0_regnum
+ i
,
141 fpregs
+ FPREG_FPR_OFFSET (i
));
144 if (regno
== tdep
->ppc_fpscr_regnum
|| regno
== -1)
145 regcache_raw_supply (current_regcache
, tdep
->ppc_fpscr_regnum
,
146 fpregs
+ FPREG_FPSCR_OFFSET
);
150 ppcnbsd_fill_fpreg (char *fpregs
, int regno
)
152 struct gdbarch_tdep
*tdep
= gdbarch_tdep (current_gdbarch
);
155 /* FIXME: jimb/2004-05-05: Some PPC variants don't have floating
156 point registers. Traditionally, GDB's register set has still
157 listed the floating point registers for such machines, so this
158 code is harmless. However, the new E500 port actually omits the
159 floating point registers entirely from the register set --- they
160 don't even have register numbers assigned to them.
162 It's not clear to me how best to update this code, so this assert
163 will alert the first person to encounter the NetBSD/E500
164 combination to the problem. */
165 gdb_assert (ppc_floating_point_unit_p (current_gdbarch
));
167 for (i
= 0; i
< ppc_num_fprs
; i
++)
169 if (regno
== tdep
->ppc_fp0_regnum
+ i
|| regno
== -1)
170 regcache_raw_collect (current_regcache
, tdep
->ppc_fp0_regnum
+ i
,
171 fpregs
+ FPREG_FPR_OFFSET (i
));
174 if (regno
== tdep
->ppc_fpscr_regnum
|| regno
== -1)
175 regcache_raw_collect (current_regcache
, tdep
->ppc_fpscr_regnum
,
176 fpregs
+ FPREG_FPSCR_OFFSET
);
180 fetch_core_registers (char *core_reg_sect
, unsigned core_reg_size
, int which
,
185 /* We get everything from one section. */
189 regs
= core_reg_sect
;
190 fpregs
= core_reg_sect
+ SIZEOF_STRUCT_REG
;
192 /* Integer registers. */
193 ppcnbsd_supply_reg (regs
, -1);
195 /* Floating point registers. */
196 ppcnbsd_supply_fpreg (fpregs
, -1);
200 fetch_elfcore_registers (char *core_reg_sect
, unsigned core_reg_size
, int which
,
205 case 0: /* Integer registers. */
206 if (core_reg_size
!= SIZEOF_STRUCT_REG
)
207 warning (_("Wrong size register set in core file."));
209 ppcnbsd_supply_reg (core_reg_sect
, -1);
212 case 2: /* Floating point registers. */
213 if (core_reg_size
!= SIZEOF_STRUCT_FPREG
)
214 warning (_("Wrong size FP register set in core file."));
216 ppcnbsd_supply_fpreg (core_reg_sect
, -1);
220 /* Don't know what kind of register request this is; just ignore it. */
225 static struct core_fns ppcnbsd_core_fns
=
227 bfd_target_unknown_flavour
, /* core_flavour */
228 default_check_format
, /* check_format */
229 default_core_sniffer
, /* core_sniffer */
230 fetch_core_registers
, /* core_read_registers */
234 static struct core_fns ppcnbsd_elfcore_fns
=
236 bfd_target_elf_flavour
, /* core_flavour */
237 default_check_format
, /* check_format */
238 default_core_sniffer
, /* core_sniffer */
239 fetch_elfcore_registers
, /* core_read_registers */
243 /* NetBSD is confused. It appears that 1.5 was using the correct SVr4
244 convention but, 1.6 switched to the below broken convention. For
245 the moment use the broken convention. Ulgh!. */
247 static enum return_value_convention
248 ppcnbsd_return_value (struct gdbarch
*gdbarch
, struct type
*valtype
,
249 struct regcache
*regcache
, void *readbuf
,
250 const void *writebuf
)
252 if ((TYPE_CODE (valtype
) == TYPE_CODE_STRUCT
253 || TYPE_CODE (valtype
) == TYPE_CODE_UNION
)
254 && !((TYPE_LENGTH (valtype
) == 16 || TYPE_LENGTH (valtype
) == 8)
255 && TYPE_VECTOR (valtype
))
256 && !(TYPE_LENGTH (valtype
) == 1
257 || TYPE_LENGTH (valtype
) == 2
258 || TYPE_LENGTH (valtype
) == 4
259 || TYPE_LENGTH (valtype
) == 8))
260 return RETURN_VALUE_STRUCT_CONVENTION
;
262 return ppc_sysv_abi_broken_return_value (gdbarch
, valtype
, regcache
,
267 ppcnbsd_sigtramp_cache_init (const struct tramp_frame
*self
,
268 struct frame_info
*next_frame
,
269 struct trad_frame_cache
*this_cache
,
275 struct gdbarch
*gdbarch
= get_frame_arch (next_frame
);
276 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
278 base
= frame_unwind_register_unsigned (next_frame
, SP_REGNUM
);
279 offset
= base
+ 0x18 + 2 * tdep
->wordsize
;
280 for (i
= 0; i
< ppc_num_gprs
; i
++)
282 int regnum
= i
+ tdep
->ppc_gp0_regnum
;
283 trad_frame_set_reg_addr (this_cache
, regnum
, offset
);
284 offset
+= tdep
->wordsize
;
286 trad_frame_set_reg_addr (this_cache
, tdep
->ppc_lr_regnum
, offset
);
287 offset
+= tdep
->wordsize
;
288 trad_frame_set_reg_addr (this_cache
, tdep
->ppc_cr_regnum
, offset
);
289 offset
+= tdep
->wordsize
;
290 trad_frame_set_reg_addr (this_cache
, tdep
->ppc_xer_regnum
, offset
);
291 offset
+= tdep
->wordsize
;
292 trad_frame_set_reg_addr (this_cache
, tdep
->ppc_ctr_regnum
, offset
);
293 offset
+= tdep
->wordsize
;
294 trad_frame_set_reg_addr (this_cache
, PC_REGNUM
, offset
); /* SRR0? */
295 offset
+= tdep
->wordsize
;
297 /* Construct the frame ID using the function start. */
298 trad_frame_set_id (this_cache
, frame_id_build (base
, func
));
301 /* Given the NEXT frame, examine the instructions at and around this
302 frame's resume address (aka PC) to see of they look like a signal
303 trampoline. Return the address of the trampolines first
304 instruction, or zero if it isn't a signal trampoline. */
306 static const struct tramp_frame ppcnbsd_sigtramp
= {
310 { 0x38610018, -1 }, /* addi r3,r1,24 */
311 { 0x38000127, -1 }, /* li r0,295 */
312 { 0x44000002, -1 }, /* sc */
313 { 0x38000001, -1 }, /* li r0,1 */
314 { 0x44000002, -1 }, /* sc */
315 { TRAMP_SENTINEL_INSN
, -1 }
317 ppcnbsd_sigtramp_cache_init
321 ppcnbsd_init_abi (struct gdbarch_info info
,
322 struct gdbarch
*gdbarch
)
324 /* For NetBSD, this is an on again, off again thing. Some systems
325 do use the broken struct convention, and some don't. */
326 set_gdbarch_return_value (gdbarch
, ppcnbsd_return_value
);
327 set_solib_svr4_fetch_link_map_offsets (gdbarch
,
328 nbsd_ilp32_solib_svr4_fetch_link_map_offsets
);
329 tramp_frame_prepend_unwinder (gdbarch
, &ppcnbsd_sigtramp
);
333 _initialize_ppcnbsd_tdep (void)
335 gdbarch_register_osabi (bfd_arch_powerpc
, 0, GDB_OSABI_NETBSD_ELF
,
338 deprecated_add_core_fns (&ppcnbsd_core_fns
);
339 deprecated_add_core_fns (&ppcnbsd_elfcore_fns
);