1 /* Target-dependent code for QNX Neutrino x86.
3 Copyright (C) 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
5 Contributed by QNX Software Systems Ltd.
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 3 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, see <http://www.gnu.org/licenses/>. */
28 #include "gdb_assert.h"
29 #include "gdb_string.h"
31 #include "i386-tdep.h"
32 #include "i387-tdep.h"
35 #include "solib-svr4.h"
37 /* Target vector for QNX NTO x86. */
38 static struct nto_target_ops i386_nto_target
;
41 #define X86_CPU_FXSR (1L << 12)
44 /* Why 13? Look in our /usr/include/x86/context.h header at the
45 x86_cpu_registers structure and you'll see an 'exx' junk register
46 that is just filler. Don't ask me, ask the kernel guys. */
49 /* Mapping between the general-purpose registers in `struct xxx'
50 format and GDB's register cache layout. */
52 /* From <x86/context.h>. */
53 static int i386nto_gregset_reg_offset
[] =
70 /* Given a GDB register number REGNUM, return the offset into
71 Neutrino's register structure or -1 if the register is unknown. */
74 nto_reg_offset (int regnum
)
76 if (regnum
>= 0 && regnum
< ARRAY_SIZE (i386nto_gregset_reg_offset
))
77 return i386nto_gregset_reg_offset
[regnum
];
83 i386nto_supply_gregset (struct regcache
*regcache
, char *gpregs
)
85 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
86 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
88 if(tdep
->gregset
== NULL
)
89 tdep
->gregset
= regset_alloc (gdbarch
, i386_supply_gregset
,
90 i386_collect_gregset
);
92 gdb_assert (tdep
->gregset_reg_offset
== i386nto_gregset_reg_offset
);
93 tdep
->gregset
->supply_regset (tdep
->gregset
, regcache
, -1,
94 gpregs
, NUM_GPREGS
* 4);
98 i386nto_supply_fpregset (struct regcache
*regcache
, char *fpregs
)
100 if (nto_cpuinfo_valid
&& nto_cpuinfo_flags
| X86_CPU_FXSR
)
101 i387_supply_fxsave (regcache
, -1, fpregs
);
103 i387_supply_fsave (regcache
, -1, fpregs
);
107 i386nto_supply_regset (struct regcache
*regcache
, int regset
, char *data
)
111 case NTO_REG_GENERAL
:
112 i386nto_supply_gregset (regcache
, data
);
115 i386nto_supply_fpregset (regcache
, data
);
121 i386nto_regset_id (int regno
)
125 else if (regno
< I386_NUM_GREGS
)
126 return NTO_REG_GENERAL
;
127 else if (regno
< I386_NUM_GREGS
+ I386_NUM_FREGS
)
128 return NTO_REG_FLOAT
;
130 return -1; /* Error. */
134 i386nto_register_area (struct gdbarch
*gdbarch
,
135 int regno
, int regset
, unsigned *off
)
140 if (regset
== NTO_REG_GENERAL
)
143 return NUM_GPREGS
* 4;
145 *off
= nto_reg_offset (regno
);
150 else if (regset
== NTO_REG_FLOAT
)
152 unsigned off_adjust
, regsize
, regset_size
;
154 if (nto_cpuinfo_valid
&& nto_cpuinfo_flags
| X86_CPU_FXSR
)
170 *off
= (regno
- gdbarch_fp0_regnum (gdbarch
)) * regsize
+ off_adjust
;
172 /* Why 10 instead of regsize? GDB only stores 10 bytes per FP
173 register so if we're sending a register back to the target,
174 we only want pdebug to write 10 bytes so as not to clobber
175 the reserved 6 bytes in the fxsave structure. */
181 i386nto_regset_fill (const struct regcache
*regcache
, int regset
, char *data
)
183 if (regset
== NTO_REG_GENERAL
)
187 for (regno
= 0; regno
< NUM_GPREGS
; regno
++)
189 int offset
= nto_reg_offset (regno
);
191 regcache_raw_collect (regcache
, regno
, data
+ offset
);
194 else if (regset
== NTO_REG_FLOAT
)
196 if (nto_cpuinfo_valid
&& nto_cpuinfo_flags
| X86_CPU_FXSR
)
197 i387_collect_fxsave (regcache
, -1, data
);
199 i387_collect_fsave (regcache
, -1, data
);
207 /* Return whether THIS_FRAME corresponds to a QNX Neutrino sigtramp
211 i386nto_sigtramp_p (struct frame_info
*this_frame
)
213 CORE_ADDR pc
= get_frame_pc (this_frame
);
216 find_pc_partial_function (pc
, &name
, NULL
, NULL
);
217 return name
&& strcmp ("__signalstub", name
) == 0;
220 #define I386_NTO_SIGCONTEXT_OFFSET 136
222 /* Assuming THIS_FRAME is a QNX Neutrino sigtramp routine, return the
223 address of the associated sigcontext structure. */
226 i386nto_sigcontext_addr (struct frame_info
*this_frame
)
231 get_frame_register (this_frame
, I386_ESP_REGNUM
, buf
);
232 sp
= extract_unsigned_integer (buf
, 4);
234 return sp
+ I386_NTO_SIGCONTEXT_OFFSET
;
238 init_i386nto_ops (void)
240 i386_nto_target
.regset_id
= i386nto_regset_id
;
241 i386_nto_target
.supply_gregset
= i386nto_supply_gregset
;
242 i386_nto_target
.supply_fpregset
= i386nto_supply_fpregset
;
243 i386_nto_target
.supply_altregset
= nto_dummy_supply_regset
;
244 i386_nto_target
.supply_regset
= i386nto_supply_regset
;
245 i386_nto_target
.register_area
= i386nto_register_area
;
246 i386_nto_target
.regset_fill
= i386nto_regset_fill
;
247 i386_nto_target
.fetch_link_map_offsets
=
248 svr4_ilp32_fetch_link_map_offsets
;
252 i386nto_init_abi (struct gdbarch_info info
, struct gdbarch
*gdbarch
)
254 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
255 static struct target_so_ops nto_svr4_so_ops
;
257 /* Deal with our strange signals. */
258 nto_initialize_signals ();
261 i386_elf_init_abi (info
, gdbarch
);
263 /* Neutrino rewinds to look more normal. Need to override the i386
264 default which is [unfortunately] to decrement the PC. */
265 set_gdbarch_decr_pc_after_break (gdbarch
, 0);
267 tdep
->gregset_reg_offset
= i386nto_gregset_reg_offset
;
268 tdep
->gregset_num_regs
= ARRAY_SIZE (i386nto_gregset_reg_offset
);
269 tdep
->sizeof_gregset
= NUM_GPREGS
* 4;
271 tdep
->sigtramp_p
= i386nto_sigtramp_p
;
272 tdep
->sigcontext_addr
= i386nto_sigcontext_addr
;
273 tdep
->sc_pc_offset
= 56;
274 tdep
->sc_sp_offset
= 68;
276 /* Setjmp()'s return PC saved in EDX (5). */
277 tdep
->jb_pc_offset
= 20; /* 5x32 bit ints in. */
279 set_solib_svr4_fetch_link_map_offsets
280 (gdbarch
, svr4_ilp32_fetch_link_map_offsets
);
282 /* Initialize this lazily, to avoid an initialization order
283 dependency on solib-svr4.c's _initialize routine. */
284 if (nto_svr4_so_ops
.in_dynsym_resolve_code
== NULL
)
286 nto_svr4_so_ops
= svr4_so_ops
;
288 /* Our loader handles solib relocations differently than svr4. */
289 nto_svr4_so_ops
.relocate_section_addresses
290 = nto_relocate_section_addresses
;
292 /* Supply a nice function to find our solibs. */
293 nto_svr4_so_ops
.find_and_open_solib
294 = nto_find_and_open_solib
;
296 /* Our linker code is in libc. */
297 nto_svr4_so_ops
.in_dynsym_resolve_code
298 = nto_in_dynsym_resolve_code
;
300 set_solib_ops (gdbarch
, &nto_svr4_so_ops
);
302 nto_set_target (&i386_nto_target
);
305 /* Provide a prototype to silence -Wmissing-prototypes. */
306 extern initialize_file_ftype _initialize_i386nto_tdep
;
309 _initialize_i386nto_tdep (void)
312 gdbarch_register_osabi (bfd_arch_i386
, 0, GDB_OSABI_QNXNTO
,
314 gdbarch_register_osabi_sniffer (bfd_arch_i386
, bfd_target_elf_flavour
,
315 nto_elf_osabi_sniffer
);