Update comments to TERNOP_SLICE
[deliverable/binutils-gdb.git] / gdb / i386-nto-tdep.c
1 /* Target-dependent code for QNX Neutrino x86.
2
3 Copyright (C) 2003-2014 Free Software Foundation, Inc.
4
5 Contributed by QNX Software Systems Ltd.
6
7 This file is part of GDB.
8
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.
13
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.
18
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/>. */
21
22 #include "defs.h"
23 #include "frame.h"
24 #include "osabi.h"
25 #include "regcache.h"
26 #include "target.h"
27
28 #include "gdb_assert.h"
29 #include <string.h>
30
31 #include "i386-tdep.h"
32 #include "i387-tdep.h"
33 #include "nto-tdep.h"
34 #include "solib.h"
35 #include "solib-svr4.h"
36
37 #ifndef X86_CPU_FXSR
38 #define X86_CPU_FXSR (1L << 12)
39 #endif
40
41 /* Why 13? Look in our /usr/include/x86/context.h header at the
42 x86_cpu_registers structure and you'll see an 'exx' junk register
43 that is just filler. Don't ask me, ask the kernel guys. */
44 #define NUM_GPREGS 13
45
46 /* Mapping between the general-purpose registers in `struct xxx'
47 format and GDB's register cache layout. */
48
49 /* From <x86/context.h>. */
50 static int i386nto_gregset_reg_offset[] =
51 {
52 7 * 4, /* %eax */
53 6 * 4, /* %ecx */
54 5 * 4, /* %edx */
55 4 * 4, /* %ebx */
56 11 * 4, /* %esp */
57 2 * 4, /* %epb */
58 1 * 4, /* %esi */
59 0 * 4, /* %edi */
60 8 * 4, /* %eip */
61 10 * 4, /* %eflags */
62 9 * 4, /* %cs */
63 12 * 4, /* %ss */
64 -1 /* filler */
65 };
66
67 /* Given a GDB register number REGNUM, return the offset into
68 Neutrino's register structure or -1 if the register is unknown. */
69
70 static int
71 nto_reg_offset (int regnum)
72 {
73 if (regnum >= 0 && regnum < ARRAY_SIZE (i386nto_gregset_reg_offset))
74 return i386nto_gregset_reg_offset[regnum];
75
76 return -1;
77 }
78
79 static void
80 i386nto_supply_gregset (struct regcache *regcache, char *gpregs)
81 {
82 struct gdbarch *gdbarch = get_regcache_arch (regcache);
83 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
84
85 gdb_assert (tdep->gregset_reg_offset == i386nto_gregset_reg_offset);
86 i386_gregset.supply_regset (&i386_gregset, regcache, -1,
87 gpregs, NUM_GPREGS * 4);
88 }
89
90 static void
91 i386nto_supply_fpregset (struct regcache *regcache, char *fpregs)
92 {
93 if (nto_cpuinfo_valid && nto_cpuinfo_flags | X86_CPU_FXSR)
94 i387_supply_fxsave (regcache, -1, fpregs);
95 else
96 i387_supply_fsave (regcache, -1, fpregs);
97 }
98
99 static void
100 i386nto_supply_regset (struct regcache *regcache, int regset, char *data)
101 {
102 switch (regset)
103 {
104 case NTO_REG_GENERAL:
105 i386nto_supply_gregset (regcache, data);
106 break;
107 case NTO_REG_FLOAT:
108 i386nto_supply_fpregset (regcache, data);
109 break;
110 }
111 }
112
113 static int
114 i386nto_regset_id (int regno)
115 {
116 if (regno == -1)
117 return NTO_REG_END;
118 else if (regno < I386_NUM_GREGS)
119 return NTO_REG_GENERAL;
120 else if (regno < I386_NUM_GREGS + I387_NUM_REGS)
121 return NTO_REG_FLOAT;
122 else if (regno < I386_SSE_NUM_REGS)
123 return NTO_REG_FLOAT; /* We store xmm registers in fxsave_area. */
124
125 return -1; /* Error. */
126 }
127
128 static int
129 i386nto_register_area (struct gdbarch *gdbarch,
130 int regno, int regset, unsigned *off)
131 {
132 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
133
134 *off = 0;
135 if (regset == NTO_REG_GENERAL)
136 {
137 if (regno == -1)
138 return NUM_GPREGS * 4;
139
140 *off = nto_reg_offset (regno);
141 if (*off == -1)
142 return 0;
143 return 4;
144 }
145 else if (regset == NTO_REG_FLOAT)
146 {
147 unsigned off_adjust, regsize, regset_size, regno_base;
148 /* The following are flags indicating number in our fxsave_area. */
149 int first_four = (regno >= I387_FCTRL_REGNUM (tdep)
150 && regno <= I387_FISEG_REGNUM (tdep));
151 int second_four = (regno > I387_FISEG_REGNUM (tdep)
152 && regno <= I387_FOP_REGNUM (tdep));
153 int st_reg = (regno >= I387_ST0_REGNUM (tdep)
154 && regno < I387_ST0_REGNUM (tdep) + 8);
155 int xmm_reg = (regno >= I387_XMM0_REGNUM (tdep)
156 && regno < I387_MXCSR_REGNUM (tdep));
157
158 if (nto_cpuinfo_valid && nto_cpuinfo_flags | X86_CPU_FXSR)
159 {
160 off_adjust = 32;
161 regsize = 16;
162 regset_size = 512;
163 /* fxsave_area structure. */
164 if (first_four)
165 {
166 /* fpu_control_word, fpu_status_word, fpu_tag_word, fpu_operand
167 registers. */
168 regsize = 2; /* Two bytes each. */
169 off_adjust = 0;
170 regno_base = I387_FCTRL_REGNUM (tdep);
171 }
172 else if (second_four)
173 {
174 /* fpu_ip, fpu_cs, fpu_op, fpu_ds registers. */
175 regsize = 4;
176 off_adjust = 8;
177 regno_base = I387_FISEG_REGNUM (tdep) + 1;
178 }
179 else if (st_reg)
180 {
181 /* ST registers. */
182 regsize = 16;
183 off_adjust = 32;
184 regno_base = I387_ST0_REGNUM (tdep);
185 }
186 else if (xmm_reg)
187 {
188 /* XMM registers. */
189 regsize = 16;
190 off_adjust = 160;
191 regno_base = I387_XMM0_REGNUM (tdep);
192 }
193 else if (regno == I387_MXCSR_REGNUM (tdep))
194 {
195 regsize = 4;
196 off_adjust = 24;
197 regno_base = I387_MXCSR_REGNUM (tdep);
198 }
199 else
200 {
201 /* Whole regset. */
202 gdb_assert (regno == -1);
203 off_adjust = 0;
204 regno_base = 0;
205 regsize = regset_size;
206 }
207 }
208 else
209 {
210 regset_size = 108;
211 /* fsave_area structure. */
212 if (first_four || second_four)
213 {
214 /* fpu_control_word, ... , fpu_ds registers. */
215 regsize = 4;
216 off_adjust = 0;
217 regno_base = I387_FCTRL_REGNUM (tdep);
218 }
219 else if (st_reg)
220 {
221 /* One of ST registers. */
222 regsize = 10;
223 off_adjust = 7 * 4;
224 regno_base = I387_ST0_REGNUM (tdep);
225 }
226 else
227 {
228 /* Whole regset. */
229 gdb_assert (regno == -1);
230 off_adjust = 0;
231 regno_base = 0;
232 regsize = regset_size;
233 }
234 }
235
236 if (regno != -1)
237 *off = off_adjust + (regno - regno_base) * regsize;
238 else
239 *off = 0;
240 return regsize;
241 }
242 return -1;
243 }
244
245 static int
246 i386nto_regset_fill (const struct regcache *regcache, int regset, char *data)
247 {
248 if (regset == NTO_REG_GENERAL)
249 {
250 int regno;
251
252 for (regno = 0; regno < NUM_GPREGS; regno++)
253 {
254 int offset = nto_reg_offset (regno);
255 if (offset != -1)
256 regcache_raw_collect (regcache, regno, data + offset);
257 }
258 }
259 else if (regset == NTO_REG_FLOAT)
260 {
261 if (nto_cpuinfo_valid && nto_cpuinfo_flags | X86_CPU_FXSR)
262 i387_collect_fxsave (regcache, -1, data);
263 else
264 i387_collect_fsave (regcache, -1, data);
265 }
266 else
267 return -1;
268
269 return 0;
270 }
271
272 /* Return whether THIS_FRAME corresponds to a QNX Neutrino sigtramp
273 routine. */
274
275 static int
276 i386nto_sigtramp_p (struct frame_info *this_frame)
277 {
278 CORE_ADDR pc = get_frame_pc (this_frame);
279 const char *name;
280
281 find_pc_partial_function (pc, &name, NULL, NULL);
282 return name && strcmp ("__signalstub", name) == 0;
283 }
284
285 /* Assuming THIS_FRAME is a QNX Neutrino sigtramp routine, return the
286 address of the associated sigcontext structure. */
287
288 static CORE_ADDR
289 i386nto_sigcontext_addr (struct frame_info *this_frame)
290 {
291 struct gdbarch *gdbarch = get_frame_arch (this_frame);
292 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
293 gdb_byte buf[4];
294 CORE_ADDR ptrctx;
295
296 /* We store __ucontext_t addr in EDI register. */
297 get_frame_register (this_frame, I386_EDI_REGNUM, buf);
298 ptrctx = extract_unsigned_integer (buf, 4, byte_order);
299 ptrctx += 24 /* Context pointer is at this offset. */;
300
301 return ptrctx;
302 }
303
304 static void
305 init_i386nto_ops (void)
306 {
307 nto_regset_id = i386nto_regset_id;
308 nto_supply_gregset = i386nto_supply_gregset;
309 nto_supply_fpregset = i386nto_supply_fpregset;
310 nto_supply_altregset = nto_dummy_supply_regset;
311 nto_supply_regset = i386nto_supply_regset;
312 nto_register_area = i386nto_register_area;
313 nto_regset_fill = i386nto_regset_fill;
314 nto_fetch_link_map_offsets =
315 svr4_ilp32_fetch_link_map_offsets;
316 }
317
318 static void
319 i386nto_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
320 {
321 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
322 static struct target_so_ops nto_svr4_so_ops;
323
324 /* Deal with our strange signals. */
325 nto_initialize_signals ();
326
327 /* NTO uses ELF. */
328 i386_elf_init_abi (info, gdbarch);
329
330 /* Neutrino rewinds to look more normal. Need to override the i386
331 default which is [unfortunately] to decrement the PC. */
332 set_gdbarch_decr_pc_after_break (gdbarch, 0);
333
334 tdep->gregset_reg_offset = i386nto_gregset_reg_offset;
335 tdep->gregset_num_regs = ARRAY_SIZE (i386nto_gregset_reg_offset);
336 tdep->sizeof_gregset = NUM_GPREGS * 4;
337
338 tdep->sigtramp_p = i386nto_sigtramp_p;
339 tdep->sigcontext_addr = i386nto_sigcontext_addr;
340 tdep->sc_reg_offset = i386nto_gregset_reg_offset;
341 tdep->sc_num_regs = ARRAY_SIZE (i386nto_gregset_reg_offset);
342
343 /* Setjmp()'s return PC saved in EDX (5). */
344 tdep->jb_pc_offset = 20; /* 5x32 bit ints in. */
345
346 set_solib_svr4_fetch_link_map_offsets
347 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
348
349 /* Initialize this lazily, to avoid an initialization order
350 dependency on solib-svr4.c's _initialize routine. */
351 if (nto_svr4_so_ops.in_dynsym_resolve_code == NULL)
352 {
353 nto_svr4_so_ops = svr4_so_ops;
354
355 /* Our loader handles solib relocations differently than svr4. */
356 nto_svr4_so_ops.relocate_section_addresses
357 = nto_relocate_section_addresses;
358
359 /* Supply a nice function to find our solibs. */
360 nto_svr4_so_ops.find_and_open_solib
361 = nto_find_and_open_solib;
362
363 /* Our linker code is in libc. */
364 nto_svr4_so_ops.in_dynsym_resolve_code
365 = nto_in_dynsym_resolve_code;
366 }
367 set_solib_ops (gdbarch, &nto_svr4_so_ops);
368 }
369
370 /* Provide a prototype to silence -Wmissing-prototypes. */
371 extern initialize_file_ftype _initialize_i386nto_tdep;
372
373 void
374 _initialize_i386nto_tdep (void)
375 {
376 init_i386nto_ops ();
377 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_QNXNTO,
378 i386nto_init_abi);
379 gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_elf_flavour,
380 nto_elf_osabi_sniffer);
381 }
This page took 0.056749 seconds and 4 git commands to generate.