* config/i386/linux.mt (TDEPFILES): Remove solib-legacy.o.
[deliverable/binutils-gdb.git] / gdb / i386-tdep.c
CommitLineData
c906108c 1/* Intel 386 target-dependent stuff.
349c5d5f
AC
2
3 Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
931aecf5
AC
4 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
5 Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
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.
c906108c 13
c5aa993b
JM
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.
c906108c 18
c5aa993b
JM
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. */
c906108c
SS
23
24#include "defs.h"
acd5c798
MK
25#include "arch-utils.h"
26#include "command.h"
27#include "dummy-frame.h"
6405b0a6 28#include "dwarf2-frame.h"
acd5c798
MK
29#include "doublest.h"
30#include "floatformat.h"
c906108c 31#include "frame.h"
acd5c798
MK
32#include "frame-base.h"
33#include "frame-unwind.h"
c906108c 34#include "inferior.h"
acd5c798 35#include "gdbcmd.h"
c906108c 36#include "gdbcore.h"
dfe01d39 37#include "objfiles.h"
acd5c798
MK
38#include "osabi.h"
39#include "regcache.h"
40#include "reggroups.h"
473f17b0 41#include "regset.h"
c0d1d883 42#include "symfile.h"
c906108c 43#include "symtab.h"
acd5c798 44#include "target.h"
fd0407d6 45#include "value.h"
a89aa300 46#include "dis-asm.h"
acd5c798 47
3d261580 48#include "gdb_assert.h"
acd5c798 49#include "gdb_string.h"
3d261580 50
d2a7c97a 51#include "i386-tdep.h"
61113f8b 52#include "i387-tdep.h"
d2a7c97a 53
fc633446
MK
54/* Names of the registers. The first 10 registers match the register
55 numbering scheme used by GCC for stabs and DWARF. */
c40e1eab 56
fc633446
MK
57static char *i386_register_names[] =
58{
59 "eax", "ecx", "edx", "ebx",
60 "esp", "ebp", "esi", "edi",
61 "eip", "eflags", "cs", "ss",
62 "ds", "es", "fs", "gs",
63 "st0", "st1", "st2", "st3",
64 "st4", "st5", "st6", "st7",
65 "fctrl", "fstat", "ftag", "fiseg",
66 "fioff", "foseg", "fooff", "fop",
67 "xmm0", "xmm1", "xmm2", "xmm3",
68 "xmm4", "xmm5", "xmm6", "xmm7",
69 "mxcsr"
70};
71
1cb97e17 72static const int i386_num_register_names = ARRAY_SIZE (i386_register_names);
c40e1eab 73
28fc6740
AC
74/* MMX registers. */
75
76static char *i386_mmx_names[] =
77{
78 "mm0", "mm1", "mm2", "mm3",
79 "mm4", "mm5", "mm6", "mm7"
80};
c40e1eab 81
1cb97e17 82static const int i386_num_mmx_regs = ARRAY_SIZE (i386_mmx_names);
c40e1eab 83
28fc6740 84static int
5716833c 85i386_mmx_regnum_p (struct gdbarch *gdbarch, int regnum)
28fc6740 86{
5716833c
MK
87 int mm0_regnum = gdbarch_tdep (gdbarch)->mm0_regnum;
88
89 if (mm0_regnum < 0)
90 return 0;
91
92 return (regnum >= mm0_regnum && regnum < mm0_regnum + i386_num_mmx_regs);
28fc6740
AC
93}
94
5716833c 95/* SSE register? */
23a34459 96
5716833c
MK
97static int
98i386_sse_regnum_p (struct gdbarch *gdbarch, int regnum)
23a34459 99{
5716833c
MK
100 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
101
102#define I387_ST0_REGNUM tdep->st0_regnum
103#define I387_NUM_XMM_REGS tdep->num_xmm_regs
104
105 if (I387_NUM_XMM_REGS == 0)
106 return 0;
107
108 return (I387_XMM0_REGNUM <= regnum && regnum < I387_MXCSR_REGNUM);
109
110#undef I387_ST0_REGNUM
111#undef I387_NUM_XMM_REGS
23a34459
AC
112}
113
5716833c
MK
114static int
115i386_mxcsr_regnum_p (struct gdbarch *gdbarch, int regnum)
23a34459 116{
5716833c
MK
117 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
118
119#define I387_ST0_REGNUM tdep->st0_regnum
120#define I387_NUM_XMM_REGS tdep->num_xmm_regs
121
122 if (I387_NUM_XMM_REGS == 0)
123 return 0;
124
125 return (regnum == I387_MXCSR_REGNUM);
126
127#undef I387_ST0_REGNUM
128#undef I387_NUM_XMM_REGS
23a34459
AC
129}
130
5716833c
MK
131#define I387_ST0_REGNUM (gdbarch_tdep (current_gdbarch)->st0_regnum)
132#define I387_MM0_REGNUM (gdbarch_tdep (current_gdbarch)->mm0_regnum)
133#define I387_NUM_XMM_REGS (gdbarch_tdep (current_gdbarch)->num_xmm_regs)
134
135/* FP register? */
23a34459
AC
136
137int
5716833c 138i386_fp_regnum_p (int regnum)
23a34459 139{
5716833c
MK
140 if (I387_ST0_REGNUM < 0)
141 return 0;
142
143 return (I387_ST0_REGNUM <= regnum && regnum < I387_FCTRL_REGNUM);
23a34459
AC
144}
145
146int
5716833c 147i386_fpc_regnum_p (int regnum)
23a34459 148{
5716833c
MK
149 if (I387_ST0_REGNUM < 0)
150 return 0;
151
152 return (I387_FCTRL_REGNUM <= regnum && regnum < I387_XMM0_REGNUM);
23a34459
AC
153}
154
fc633446
MK
155/* Return the name of register REG. */
156
fa88f677 157const char *
fc633446
MK
158i386_register_name (int reg)
159{
5716833c
MK
160 if (i386_mmx_regnum_p (current_gdbarch, reg))
161 return i386_mmx_names[reg - I387_MM0_REGNUM];
fc633446 162
70913449
MK
163 if (reg >= 0 && reg < i386_num_register_names)
164 return i386_register_names[reg];
165
c40e1eab 166 return NULL;
fc633446
MK
167}
168
408752b0
JB
169
170/* FIXME: jimb/2004-04-01: I don't think these functions are right.
171 For a given platform, GCC always uses the same register numbering
172 in both STABS and Dwarf2: gcc/dbxout.c and gcc/dwarf2out.c both use
173 the DBX_REGISTER_NUMBER macro, as defined by the config headers.
174 If you compile a program so that its variables are allocated to
175 floating-point registers, first with STABS and again with Dwarf 2,
176 you'll see that the variable's register numbers are the same in
177 each case.
178
179 GCC does use (at least) two different register numberings on the
180 i386; they differ in how they number %ebp, %esp, %eflags, and the
181 floating-point registers. And it has a third numbering for "64bit
182 mode", which I assume is x86_64. But it always uses a given
183 numbering in both STABS and Dwarf.
184
185 This does not match the arrangement we have below, which presumes
186 that STABS and Dwarf numberings are different, and does some
187 strange mixing and matching (e.g., registering the Dwarf 2 function
188 as the STABS function for "Generic i386 ELF") to get close enough
189 to the right effect on the platforms we care about.
190
191 If we wanted to match GCC, we should have two separate register
192 number translation functions (we handle x86_64 in a separate tdep
193 file altogether), one corresponding to each of GCC's i386 register
194 maps. And for a given platform, we would register one of them as
195 both the STABS and Dwarf 2 functions.
196
197 However, we don't aspire to match GCC; we aspire to match the
198 native system's tools. I don't have access to lots of different
199 native compilers and debuggers to verify that GCC is matching their
200 behavior in this regard. Is it sufficient to argue that we at
201 least want to match GNU's compiler, and say we'll fix bugs relative
202 to native tools as they're reported? */
203
204
85540d8c
MK
205/* Convert stabs register number REG to the appropriate register
206 number used by GDB. */
207
8201327c 208static int
85540d8c
MK
209i386_stab_reg_to_regnum (int reg)
210{
211 /* This implements what GCC calls the "default" register map. */
212 if (reg >= 0 && reg <= 7)
213 {
9872ad24
JB
214 /* General-purpose registers. The debug info calls %ebp
215 register 4, and %esp register 5. */
216 if (reg == 4)
217 return 5;
218 else if (reg == 5)
219 return 4;
220 else return reg;
85540d8c
MK
221 }
222 else if (reg >= 12 && reg <= 19)
223 {
224 /* Floating-point registers. */
5716833c 225 return reg - 12 + I387_ST0_REGNUM;
85540d8c
MK
226 }
227 else if (reg >= 21 && reg <= 28)
228 {
229 /* SSE registers. */
5716833c 230 return reg - 21 + I387_XMM0_REGNUM;
85540d8c
MK
231 }
232 else if (reg >= 29 && reg <= 36)
233 {
234 /* MMX registers. */
5716833c 235 return reg - 29 + I387_MM0_REGNUM;
85540d8c
MK
236 }
237
238 /* This will hopefully provoke a warning. */
239 return NUM_REGS + NUM_PSEUDO_REGS;
240}
241
8201327c 242/* Convert DWARF register number REG to the appropriate register
85540d8c
MK
243 number used by GDB. */
244
8201327c 245static int
85540d8c
MK
246i386_dwarf_reg_to_regnum (int reg)
247{
248 /* The DWARF register numbering includes %eip and %eflags, and
249 numbers the floating point registers differently. */
250 if (reg >= 0 && reg <= 9)
251 {
acd5c798 252 /* General-purpose registers. */
85540d8c
MK
253 return reg;
254 }
255 else if (reg >= 11 && reg <= 18)
256 {
257 /* Floating-point registers. */
5716833c 258 return reg - 11 + I387_ST0_REGNUM;
85540d8c
MK
259 }
260 else if (reg >= 21)
261 {
262 /* The SSE and MMX registers have identical numbers as in stabs. */
263 return i386_stab_reg_to_regnum (reg);
264 }
265
266 /* This will hopefully provoke a warning. */
267 return NUM_REGS + NUM_PSEUDO_REGS;
268}
5716833c
MK
269
270#undef I387_ST0_REGNUM
271#undef I387_MM0_REGNUM
272#undef I387_NUM_XMM_REGS
fc338970 273\f
917317f4 274
fc338970
MK
275/* This is the variable that is set with "set disassembly-flavor", and
276 its legitimate values. */
53904c9e
AC
277static const char att_flavor[] = "att";
278static const char intel_flavor[] = "intel";
279static const char *valid_flavors[] =
c5aa993b 280{
c906108c
SS
281 att_flavor,
282 intel_flavor,
283 NULL
284};
53904c9e 285static const char *disassembly_flavor = att_flavor;
acd5c798 286\f
c906108c 287
acd5c798
MK
288/* Use the program counter to determine the contents and size of a
289 breakpoint instruction. Return a pointer to a string of bytes that
290 encode a breakpoint instruction, store the length of the string in
291 *LEN and optionally adjust *PC to point to the correct memory
292 location for inserting the breakpoint.
c906108c 293
acd5c798
MK
294 On the i386 we have a single breakpoint that fits in a single byte
295 and can be inserted anywhere.
c906108c 296
acd5c798
MK
297 This function is 64-bit safe. */
298
299static const unsigned char *
300i386_breakpoint_from_pc (CORE_ADDR *pc, int *len)
c906108c 301{
acd5c798
MK
302 static unsigned char break_insn[] = { 0xcc }; /* int 3 */
303
304 *len = sizeof (break_insn);
305 return break_insn;
c906108c 306}
fc338970 307\f
acd5c798
MK
308#ifdef I386_REGNO_TO_SYMMETRY
309#error "The Sequent Symmetry is no longer supported."
310#endif
c906108c 311
acd5c798
MK
312/* According to the System V ABI, the registers %ebp, %ebx, %edi, %esi
313 and %esp "belong" to the calling function. Therefore these
314 registers should be saved if they're going to be modified. */
c906108c 315
acd5c798
MK
316/* The maximum number of saved registers. This should include all
317 registers mentioned above, and %eip. */
a3386186 318#define I386_NUM_SAVED_REGS I386_NUM_GREGS
acd5c798
MK
319
320struct i386_frame_cache
c906108c 321{
acd5c798
MK
322 /* Base address. */
323 CORE_ADDR base;
324 CORE_ADDR sp_offset;
325 CORE_ADDR pc;
326
fd13a04a
AC
327 /* Saved registers. */
328 CORE_ADDR saved_regs[I386_NUM_SAVED_REGS];
acd5c798
MK
329 CORE_ADDR saved_sp;
330 int pc_in_eax;
331
332 /* Stack space reserved for local variables. */
333 long locals;
334};
335
336/* Allocate and initialize a frame cache. */
337
338static struct i386_frame_cache *
fd13a04a 339i386_alloc_frame_cache (void)
acd5c798
MK
340{
341 struct i386_frame_cache *cache;
342 int i;
343
344 cache = FRAME_OBSTACK_ZALLOC (struct i386_frame_cache);
345
346 /* Base address. */
347 cache->base = 0;
348 cache->sp_offset = -4;
349 cache->pc = 0;
350
fd13a04a
AC
351 /* Saved registers. We initialize these to -1 since zero is a valid
352 offset (that's where %ebp is supposed to be stored). */
353 for (i = 0; i < I386_NUM_SAVED_REGS; i++)
354 cache->saved_regs[i] = -1;
acd5c798
MK
355 cache->saved_sp = 0;
356 cache->pc_in_eax = 0;
357
358 /* Frameless until proven otherwise. */
359 cache->locals = -1;
360
361 return cache;
362}
c906108c 363
acd5c798
MK
364/* If the instruction at PC is a jump, return the address of its
365 target. Otherwise, return PC. */
c906108c 366
acd5c798
MK
367static CORE_ADDR
368i386_follow_jump (CORE_ADDR pc)
369{
370 unsigned char op;
371 long delta = 0;
372 int data16 = 0;
c906108c 373
acd5c798
MK
374 op = read_memory_unsigned_integer (pc, 1);
375 if (op == 0x66)
c906108c 376 {
c906108c 377 data16 = 1;
acd5c798 378 op = read_memory_unsigned_integer (pc + 1, 1);
c906108c
SS
379 }
380
acd5c798 381 switch (op)
c906108c
SS
382 {
383 case 0xe9:
fc338970 384 /* Relative jump: if data16 == 0, disp32, else disp16. */
c906108c
SS
385 if (data16)
386 {
acd5c798 387 delta = read_memory_integer (pc + 2, 2);
c906108c 388
fc338970
MK
389 /* Include the size of the jmp instruction (including the
390 0x66 prefix). */
acd5c798 391 delta += 4;
c906108c
SS
392 }
393 else
394 {
acd5c798 395 delta = read_memory_integer (pc + 1, 4);
c906108c 396
acd5c798
MK
397 /* Include the size of the jmp instruction. */
398 delta += 5;
c906108c
SS
399 }
400 break;
401 case 0xeb:
fc338970 402 /* Relative jump, disp8 (ignore data16). */
acd5c798 403 delta = read_memory_integer (pc + data16 + 1, 1);
c906108c 404
acd5c798 405 delta += data16 + 2;
c906108c
SS
406 break;
407 }
c906108c 408
acd5c798
MK
409 return pc + delta;
410}
fc338970 411
acd5c798
MK
412/* Check whether PC points at a prologue for a function returning a
413 structure or union. If so, it updates CACHE and returns the
414 address of the first instruction after the code sequence that
415 removes the "hidden" argument from the stack or CURRENT_PC,
416 whichever is smaller. Otherwise, return PC. */
c906108c 417
acd5c798
MK
418static CORE_ADDR
419i386_analyze_struct_return (CORE_ADDR pc, CORE_ADDR current_pc,
420 struct i386_frame_cache *cache)
c906108c 421{
acd5c798
MK
422 /* Functions that return a structure or union start with:
423
424 popl %eax 0x58
425 xchgl %eax, (%esp) 0x87 0x04 0x24
426 or xchgl %eax, 0(%esp) 0x87 0x44 0x24 0x00
427
428 (the System V compiler puts out the second `xchg' instruction,
429 and the assembler doesn't try to optimize it, so the 'sib' form
430 gets generated). This sequence is used to get the address of the
431 return buffer for a function that returns a structure. */
432 static unsigned char proto1[3] = { 0x87, 0x04, 0x24 };
433 static unsigned char proto2[4] = { 0x87, 0x44, 0x24, 0x00 };
434 unsigned char buf[4];
c906108c
SS
435 unsigned char op;
436
acd5c798
MK
437 if (current_pc <= pc)
438 return pc;
439
440 op = read_memory_unsigned_integer (pc, 1);
c906108c 441
acd5c798
MK
442 if (op != 0x58) /* popl %eax */
443 return pc;
c906108c 444
acd5c798
MK
445 read_memory (pc + 1, buf, 4);
446 if (memcmp (buf, proto1, 3) != 0 && memcmp (buf, proto2, 4) != 0)
447 return pc;
c906108c 448
acd5c798 449 if (current_pc == pc)
c906108c 450 {
acd5c798
MK
451 cache->sp_offset += 4;
452 return current_pc;
c906108c
SS
453 }
454
acd5c798 455 if (current_pc == pc + 1)
c906108c 456 {
acd5c798
MK
457 cache->pc_in_eax = 1;
458 return current_pc;
459 }
460
461 if (buf[1] == proto1[1])
462 return pc + 4;
463 else
464 return pc + 5;
465}
466
467static CORE_ADDR
468i386_skip_probe (CORE_ADDR pc)
469{
470 /* A function may start with
fc338970 471
acd5c798
MK
472 pushl constant
473 call _probe
474 addl $4, %esp
fc338970 475
acd5c798
MK
476 followed by
477
478 pushl %ebp
fc338970 479
acd5c798
MK
480 etc. */
481 unsigned char buf[8];
482 unsigned char op;
fc338970 483
acd5c798
MK
484 op = read_memory_unsigned_integer (pc, 1);
485
486 if (op == 0x68 || op == 0x6a)
487 {
488 int delta;
c906108c 489
acd5c798
MK
490 /* Skip past the `pushl' instruction; it has either a one-byte or a
491 four-byte operand, depending on the opcode. */
c906108c 492 if (op == 0x68)
acd5c798 493 delta = 5;
c906108c 494 else
acd5c798 495 delta = 2;
c906108c 496
acd5c798
MK
497 /* Read the following 8 bytes, which should be `call _probe' (6
498 bytes) followed by `addl $4,%esp' (2 bytes). */
499 read_memory (pc + delta, buf, sizeof (buf));
c906108c 500 if (buf[0] == 0xe8 && buf[6] == 0xc4 && buf[7] == 0x4)
acd5c798 501 pc += delta + sizeof (buf);
c906108c
SS
502 }
503
acd5c798
MK
504 return pc;
505}
506
507/* Check whether PC points at a code that sets up a new stack frame.
508 If so, it updates CACHE and returns the address of the first
509 instruction after the sequence that sets removes the "hidden"
510 argument from the stack or CURRENT_PC, whichever is smaller.
511 Otherwise, return PC. */
512
513static CORE_ADDR
514i386_analyze_frame_setup (CORE_ADDR pc, CORE_ADDR current_pc,
515 struct i386_frame_cache *cache)
516{
517 unsigned char op;
26604a34 518 int skip = 0;
acd5c798
MK
519
520 if (current_pc <= pc)
521 return current_pc;
522
523 op = read_memory_unsigned_integer (pc, 1);
524
c906108c 525 if (op == 0x55) /* pushl %ebp */
c5aa993b 526 {
acd5c798
MK
527 /* Take into account that we've executed the `pushl %ebp' that
528 starts this instruction sequence. */
fd13a04a 529 cache->saved_regs[I386_EBP_REGNUM] = 0;
acd5c798
MK
530 cache->sp_offset += 4;
531
532 /* If that's all, return now. */
533 if (current_pc <= pc + 1)
534 return current_pc;
535
acd5c798 536 op = read_memory_unsigned_integer (pc + 1, 1);
26604a34
MK
537
538 /* Check for some special instructions that might be migrated
539 by GCC into the prologue. We check for
540
541 xorl %ebx, %ebx
542 xorl %ecx, %ecx
543 xorl %edx, %edx
7270b6ed 544 xorl %eax, %eax
26604a34
MK
545
546 and the equivalent
547
548 subl %ebx, %ebx
549 subl %ecx, %ecx
550 subl %edx, %edx
7270b6ed 551 subl %eax, %eax
26604a34 552
5daa5b4e
MK
553 Because of the symmetry, there are actually two ways to
554 encode these instructions; with opcode bytes 0x29 and 0x2b
555 for `subl' and opcode bytes 0x31 and 0x33 for `xorl'.
556
26604a34
MK
557 Make sure we only skip these instructions if we later see the
558 `movl %esp, %ebp' that actually sets up the frame. */
5daa5b4e 559 while (op == 0x29 || op == 0x2b || op == 0x31 || op == 0x33)
26604a34
MK
560 {
561 op = read_memory_unsigned_integer (pc + skip + 2, 1);
562 switch (op)
563 {
564 case 0xdb: /* %ebx */
565 case 0xc9: /* %ecx */
566 case 0xd2: /* %edx */
7270b6ed 567 case 0xc0: /* %eax */
26604a34
MK
568 skip += 2;
569 break;
570 default:
571 return pc + 1;
572 }
573
574 op = read_memory_unsigned_integer (pc + skip + 1, 1);
575 }
576
577 /* Check for `movl %esp, %ebp' -- can be written in two ways. */
acd5c798 578 switch (op)
c906108c
SS
579 {
580 case 0x8b:
26604a34 581 if (read_memory_unsigned_integer (pc + skip + 2, 1) != 0xec)
acd5c798 582 return pc + 1;
c906108c
SS
583 break;
584 case 0x89:
26604a34 585 if (read_memory_unsigned_integer (pc + skip + 2, 1) != 0xe5)
acd5c798 586 return pc + 1;
c906108c
SS
587 break;
588 default:
acd5c798 589 return pc + 1;
c906108c 590 }
acd5c798 591
26604a34
MK
592 /* OK, we actually have a frame. We just don't know how large
593 it is yet. Set its size to zero. We'll adjust it if
594 necessary. We also now commit to skipping the special
595 instructions mentioned before. */
acd5c798 596 cache->locals = 0;
26604a34 597 pc += skip;
acd5c798
MK
598
599 /* If that's all, return now. */
600 if (current_pc <= pc + 3)
601 return current_pc;
602
fc338970
MK
603 /* Check for stack adjustment
604
acd5c798 605 subl $XXX, %esp
fc338970
MK
606
607 NOTE: You can't subtract a 16 bit immediate from a 32 bit
608 reg, so we don't have to worry about a data16 prefix. */
acd5c798 609 op = read_memory_unsigned_integer (pc + 3, 1);
c906108c
SS
610 if (op == 0x83)
611 {
fc338970 612 /* `subl' with 8 bit immediate. */
acd5c798 613 if (read_memory_unsigned_integer (pc + 4, 1) != 0xec)
fc338970 614 /* Some instruction starting with 0x83 other than `subl'. */
acd5c798
MK
615 return pc + 3;
616
617 /* `subl' with signed byte immediate (though it wouldn't make
618 sense to be negative). */
619 cache->locals = read_memory_integer (pc + 5, 1);
620 return pc + 6;
c906108c
SS
621 }
622 else if (op == 0x81)
623 {
fc338970 624 /* Maybe it is `subl' with a 32 bit immedediate. */
acd5c798 625 if (read_memory_unsigned_integer (pc + 4, 1) != 0xec)
fc338970 626 /* Some instruction starting with 0x81 other than `subl'. */
acd5c798
MK
627 return pc + 3;
628
fc338970 629 /* It is `subl' with a 32 bit immediate. */
acd5c798
MK
630 cache->locals = read_memory_integer (pc + 5, 4);
631 return pc + 9;
c906108c
SS
632 }
633 else
634 {
acd5c798
MK
635 /* Some instruction other than `subl'. */
636 return pc + 3;
c906108c
SS
637 }
638 }
acd5c798 639 else if (op == 0xc8) /* enter $XXX */
c906108c 640 {
acd5c798
MK
641 cache->locals = read_memory_unsigned_integer (pc + 1, 2);
642 return pc + 4;
c906108c 643 }
21d0e8a4 644
acd5c798 645 return pc;
21d0e8a4
MK
646}
647
acd5c798
MK
648/* Check whether PC points at code that saves registers on the stack.
649 If so, it updates CACHE and returns the address of the first
650 instruction after the register saves or CURRENT_PC, whichever is
651 smaller. Otherwise, return PC. */
6bff26de
MK
652
653static CORE_ADDR
acd5c798
MK
654i386_analyze_register_saves (CORE_ADDR pc, CORE_ADDR current_pc,
655 struct i386_frame_cache *cache)
6bff26de 656{
99ab4326
MK
657 CORE_ADDR offset = 0;
658 unsigned char op;
659 int i;
c0d1d883 660
99ab4326
MK
661 if (cache->locals > 0)
662 offset -= cache->locals;
663 for (i = 0; i < 8 && pc < current_pc; i++)
664 {
665 op = read_memory_unsigned_integer (pc, 1);
666 if (op < 0x50 || op > 0x57)
667 break;
0d17c81d 668
99ab4326
MK
669 offset -= 4;
670 cache->saved_regs[op - 0x50] = offset;
671 cache->sp_offset += 4;
672 pc++;
6bff26de
MK
673 }
674
acd5c798 675 return pc;
22797942
AC
676}
677
acd5c798
MK
678/* Do a full analysis of the prologue at PC and update CACHE
679 accordingly. Bail out early if CURRENT_PC is reached. Return the
680 address where the analysis stopped.
ed84f6c1 681
fc338970
MK
682 We handle these cases:
683
684 The startup sequence can be at the start of the function, or the
685 function can start with a branch to startup code at the end.
686
687 %ebp can be set up with either the 'enter' instruction, or "pushl
688 %ebp, movl %esp, %ebp" (`enter' is too slow to be useful, but was
689 once used in the System V compiler).
690
691 Local space is allocated just below the saved %ebp by either the
692 'enter' instruction, or by "subl $<size>, %esp". 'enter' has a 16
693 bit unsigned argument for space to allocate, and the 'addl'
694 instruction could have either a signed byte, or 32 bit immediate.
695
696 Next, the registers used by this function are pushed. With the
697 System V compiler they will always be in the order: %edi, %esi,
698 %ebx (and sometimes a harmless bug causes it to also save but not
699 restore %eax); however, the code below is willing to see the pushes
700 in any order, and will handle up to 8 of them.
701
702 If the setup sequence is at the end of the function, then the next
703 instruction will be a branch back to the start. */
c906108c 704
acd5c798
MK
705static CORE_ADDR
706i386_analyze_prologue (CORE_ADDR pc, CORE_ADDR current_pc,
707 struct i386_frame_cache *cache)
c906108c 708{
acd5c798
MK
709 pc = i386_follow_jump (pc);
710 pc = i386_analyze_struct_return (pc, current_pc, cache);
711 pc = i386_skip_probe (pc);
712 pc = i386_analyze_frame_setup (pc, current_pc, cache);
713 return i386_analyze_register_saves (pc, current_pc, cache);
c906108c
SS
714}
715
fc338970 716/* Return PC of first real instruction. */
c906108c 717
3a1e71e3 718static CORE_ADDR
acd5c798 719i386_skip_prologue (CORE_ADDR start_pc)
c906108c 720{
c5aa993b 721 static unsigned char pic_pat[6] =
acd5c798
MK
722 {
723 0xe8, 0, 0, 0, 0, /* call 0x0 */
724 0x5b, /* popl %ebx */
c5aa993b 725 };
acd5c798
MK
726 struct i386_frame_cache cache;
727 CORE_ADDR pc;
728 unsigned char op;
729 int i;
c5aa993b 730
acd5c798
MK
731 cache.locals = -1;
732 pc = i386_analyze_prologue (start_pc, 0xffffffff, &cache);
733 if (cache.locals < 0)
734 return start_pc;
c5aa993b 735
acd5c798 736 /* Found valid frame setup. */
c906108c 737
fc338970
MK
738 /* The native cc on SVR4 in -K PIC mode inserts the following code
739 to get the address of the global offset table (GOT) into register
acd5c798
MK
740 %ebx:
741
fc338970
MK
742 call 0x0
743 popl %ebx
744 movl %ebx,x(%ebp) (optional)
745 addl y,%ebx
746
c906108c
SS
747 This code is with the rest of the prologue (at the end of the
748 function), so we have to skip it to get to the first real
749 instruction at the start of the function. */
c5aa993b 750
c906108c
SS
751 for (i = 0; i < 6; i++)
752 {
acd5c798 753 op = read_memory_unsigned_integer (pc + i, 1);
c5aa993b 754 if (pic_pat[i] != op)
c906108c
SS
755 break;
756 }
757 if (i == 6)
758 {
acd5c798
MK
759 int delta = 6;
760
761 op = read_memory_unsigned_integer (pc + delta, 1);
c906108c 762
c5aa993b 763 if (op == 0x89) /* movl %ebx, x(%ebp) */
c906108c 764 {
acd5c798
MK
765 op = read_memory_unsigned_integer (pc + delta + 1, 1);
766
fc338970 767 if (op == 0x5d) /* One byte offset from %ebp. */
acd5c798 768 delta += 3;
fc338970 769 else if (op == 0x9d) /* Four byte offset from %ebp. */
acd5c798 770 delta += 6;
fc338970 771 else /* Unexpected instruction. */
acd5c798
MK
772 delta = 0;
773
774 op = read_memory_unsigned_integer (pc + delta, 1);
c906108c 775 }
acd5c798 776
c5aa993b 777 /* addl y,%ebx */
acd5c798
MK
778 if (delta > 0 && op == 0x81
779 && read_memory_unsigned_integer (pc + delta + 1, 1) == 0xc3);
c906108c 780 {
acd5c798 781 pc += delta + 6;
c906108c
SS
782 }
783 }
c5aa993b 784
acd5c798 785 return i386_follow_jump (pc);
c906108c
SS
786}
787
acd5c798 788/* This function is 64-bit safe. */
93924b6b 789
acd5c798
MK
790static CORE_ADDR
791i386_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
93924b6b 792{
acd5c798
MK
793 char buf[8];
794
795 frame_unwind_register (next_frame, PC_REGNUM, buf);
796 return extract_typed_address (buf, builtin_type_void_func_ptr);
93924b6b 797}
acd5c798 798\f
93924b6b 799
acd5c798 800/* Normal frames. */
c5aa993b 801
acd5c798
MK
802static struct i386_frame_cache *
803i386_frame_cache (struct frame_info *next_frame, void **this_cache)
a7769679 804{
acd5c798 805 struct i386_frame_cache *cache;
c0d1d883 806 char buf[4];
acd5c798
MK
807 int i;
808
809 if (*this_cache)
810 return *this_cache;
811
fd13a04a 812 cache = i386_alloc_frame_cache ();
acd5c798
MK
813 *this_cache = cache;
814
815 /* In principle, for normal frames, %ebp holds the frame pointer,
816 which holds the base address for the current stack frame.
817 However, for functions that don't need it, the frame pointer is
818 optional. For these "frameless" functions the frame pointer is
819 actually the frame pointer of the calling frame. Signal
820 trampolines are just a special case of a "frameless" function.
821 They (usually) share their frame pointer with the frame that was
822 in progress when the signal occurred. */
823
824 frame_unwind_register (next_frame, I386_EBP_REGNUM, buf);
825 cache->base = extract_unsigned_integer (buf, 4);
826 if (cache->base == 0)
827 return cache;
828
829 /* For normal frames, %eip is stored at 4(%ebp). */
fd13a04a 830 cache->saved_regs[I386_EIP_REGNUM] = 4;
acd5c798
MK
831
832 cache->pc = frame_func_unwind (next_frame);
833 if (cache->pc != 0)
834 i386_analyze_prologue (cache->pc, frame_pc_unwind (next_frame), cache);
835
836 if (cache->locals < 0)
837 {
838 /* We didn't find a valid frame, which means that CACHE->base
839 currently holds the frame pointer for our calling frame. If
840 we're at the start of a function, or somewhere half-way its
841 prologue, the function's frame probably hasn't been fully
842 setup yet. Try to reconstruct the base address for the stack
843 frame by looking at the stack pointer. For truly "frameless"
844 functions this might work too. */
845
846 frame_unwind_register (next_frame, I386_ESP_REGNUM, buf);
847 cache->base = extract_unsigned_integer (buf, 4) + cache->sp_offset;
848 }
849
850 /* Now that we have the base address for the stack frame we can
851 calculate the value of %esp in the calling frame. */
852 cache->saved_sp = cache->base + 8;
a7769679 853
acd5c798
MK
854 /* Adjust all the saved registers such that they contain addresses
855 instead of offsets. */
856 for (i = 0; i < I386_NUM_SAVED_REGS; i++)
fd13a04a
AC
857 if (cache->saved_regs[i] != -1)
858 cache->saved_regs[i] += cache->base;
acd5c798
MK
859
860 return cache;
a7769679
MK
861}
862
3a1e71e3 863static void
acd5c798
MK
864i386_frame_this_id (struct frame_info *next_frame, void **this_cache,
865 struct frame_id *this_id)
c906108c 866{
acd5c798
MK
867 struct i386_frame_cache *cache = i386_frame_cache (next_frame, this_cache);
868
869 /* This marks the outermost frame. */
870 if (cache->base == 0)
871 return;
872
3e210248 873 /* See the end of i386_push_dummy_call. */
acd5c798
MK
874 (*this_id) = frame_id_build (cache->base + 8, cache->pc);
875}
876
877static void
878i386_frame_prev_register (struct frame_info *next_frame, void **this_cache,
879 int regnum, int *optimizedp,
880 enum lval_type *lvalp, CORE_ADDR *addrp,
881 int *realnump, void *valuep)
882{
883 struct i386_frame_cache *cache = i386_frame_cache (next_frame, this_cache);
884
885 gdb_assert (regnum >= 0);
886
887 /* The System V ABI says that:
888
889 "The flags register contains the system flags, such as the
890 direction flag and the carry flag. The direction flag must be
891 set to the forward (that is, zero) direction before entry and
892 upon exit from a function. Other user flags have no specified
893 role in the standard calling sequence and are not preserved."
894
895 To guarantee the "upon exit" part of that statement we fake a
896 saved flags register that has its direction flag cleared.
897
898 Note that GCC doesn't seem to rely on the fact that the direction
899 flag is cleared after a function return; it always explicitly
900 clears the flag before operations where it matters.
901
902 FIXME: kettenis/20030316: I'm not quite sure whether this is the
903 right thing to do. The way we fake the flags register here makes
904 it impossible to change it. */
905
906 if (regnum == I386_EFLAGS_REGNUM)
907 {
908 *optimizedp = 0;
909 *lvalp = not_lval;
910 *addrp = 0;
911 *realnump = -1;
912 if (valuep)
913 {
914 ULONGEST val;
c5aa993b 915
acd5c798 916 /* Clear the direction flag. */
f837910f
MK
917 val = frame_unwind_register_unsigned (next_frame,
918 I386_EFLAGS_REGNUM);
acd5c798
MK
919 val &= ~(1 << 10);
920 store_unsigned_integer (valuep, 4, val);
921 }
922
923 return;
924 }
1211c4e4 925
acd5c798 926 if (regnum == I386_EIP_REGNUM && cache->pc_in_eax)
c906108c 927 {
acd5c798
MK
928 frame_register_unwind (next_frame, I386_EAX_REGNUM,
929 optimizedp, lvalp, addrp, realnump, valuep);
930 return;
931 }
932
933 if (regnum == I386_ESP_REGNUM && cache->saved_sp)
934 {
935 *optimizedp = 0;
936 *lvalp = not_lval;
937 *addrp = 0;
938 *realnump = -1;
939 if (valuep)
c906108c 940 {
acd5c798
MK
941 /* Store the value. */
942 store_unsigned_integer (valuep, 4, cache->saved_sp);
c906108c 943 }
acd5c798 944 return;
c906108c 945 }
acd5c798 946
fd13a04a
AC
947 if (regnum < I386_NUM_SAVED_REGS && cache->saved_regs[regnum] != -1)
948 {
949 *optimizedp = 0;
950 *lvalp = lval_memory;
951 *addrp = cache->saved_regs[regnum];
952 *realnump = -1;
953 if (valuep)
954 {
955 /* Read the value in from memory. */
956 read_memory (*addrp, valuep,
957 register_size (current_gdbarch, regnum));
958 }
959 return;
960 }
961
962 frame_register_unwind (next_frame, regnum,
963 optimizedp, lvalp, addrp, realnump, valuep);
acd5c798
MK
964}
965
966static const struct frame_unwind i386_frame_unwind =
967{
968 NORMAL_FRAME,
969 i386_frame_this_id,
970 i386_frame_prev_register
971};
972
973static const struct frame_unwind *
336d1bba 974i386_frame_sniffer (struct frame_info *next_frame)
acd5c798
MK
975{
976 return &i386_frame_unwind;
977}
978\f
979
980/* Signal trampolines. */
981
982static struct i386_frame_cache *
983i386_sigtramp_frame_cache (struct frame_info *next_frame, void **this_cache)
984{
985 struct i386_frame_cache *cache;
986 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
987 CORE_ADDR addr;
988 char buf[4];
989
990 if (*this_cache)
991 return *this_cache;
992
fd13a04a 993 cache = i386_alloc_frame_cache ();
acd5c798
MK
994
995 frame_unwind_register (next_frame, I386_ESP_REGNUM, buf);
996 cache->base = extract_unsigned_integer (buf, 4) - 4;
997
998 addr = tdep->sigcontext_addr (next_frame);
a3386186
MK
999 if (tdep->sc_reg_offset)
1000 {
1001 int i;
1002
1003 gdb_assert (tdep->sc_num_regs <= I386_NUM_SAVED_REGS);
1004
1005 for (i = 0; i < tdep->sc_num_regs; i++)
1006 if (tdep->sc_reg_offset[i] != -1)
fd13a04a 1007 cache->saved_regs[i] = addr + tdep->sc_reg_offset[i];
a3386186
MK
1008 }
1009 else
1010 {
fd13a04a
AC
1011 cache->saved_regs[I386_EIP_REGNUM] = addr + tdep->sc_pc_offset;
1012 cache->saved_regs[I386_ESP_REGNUM] = addr + tdep->sc_sp_offset;
a3386186 1013 }
acd5c798
MK
1014
1015 *this_cache = cache;
1016 return cache;
1017}
1018
1019static void
1020i386_sigtramp_frame_this_id (struct frame_info *next_frame, void **this_cache,
1021 struct frame_id *this_id)
1022{
1023 struct i386_frame_cache *cache =
1024 i386_sigtramp_frame_cache (next_frame, this_cache);
1025
3e210248 1026 /* See the end of i386_push_dummy_call. */
acd5c798
MK
1027 (*this_id) = frame_id_build (cache->base + 8, frame_pc_unwind (next_frame));
1028}
1029
1030static void
1031i386_sigtramp_frame_prev_register (struct frame_info *next_frame,
1032 void **this_cache,
1033 int regnum, int *optimizedp,
1034 enum lval_type *lvalp, CORE_ADDR *addrp,
1035 int *realnump, void *valuep)
1036{
1037 /* Make sure we've initialized the cache. */
1038 i386_sigtramp_frame_cache (next_frame, this_cache);
1039
1040 i386_frame_prev_register (next_frame, this_cache, regnum,
1041 optimizedp, lvalp, addrp, realnump, valuep);
c906108c 1042}
c0d1d883 1043
acd5c798
MK
1044static const struct frame_unwind i386_sigtramp_frame_unwind =
1045{
1046 SIGTRAMP_FRAME,
1047 i386_sigtramp_frame_this_id,
1048 i386_sigtramp_frame_prev_register
1049};
1050
1051static const struct frame_unwind *
336d1bba 1052i386_sigtramp_frame_sniffer (struct frame_info *next_frame)
acd5c798 1053{
911bc6ee 1054 struct gdbarch_tdep *tdep = gdbarch_tdep (get_frame_arch (next_frame));
acd5c798 1055
911bc6ee
MK
1056 /* We shouldn't even bother if we don't have a sigcontext_addr
1057 handler. */
1058 if (tdep->sigcontext_addr == NULL)
1c3545ae
MK
1059 return NULL;
1060
911bc6ee
MK
1061 if (tdep->sigtramp_p != NULL)
1062 {
1063 if (tdep->sigtramp_p (next_frame))
1064 return &i386_sigtramp_frame_unwind;
1065 }
1066
1067 if (tdep->sigtramp_start != 0)
1068 {
1069 CORE_ADDR pc = frame_pc_unwind (next_frame);
1070
1071 gdb_assert (tdep->sigtramp_end != 0);
1072 if (pc >= tdep->sigtramp_start && pc < tdep->sigtramp_end)
1073 return &i386_sigtramp_frame_unwind;
1074 }
acd5c798
MK
1075
1076 return NULL;
1077}
1078\f
1079
1080static CORE_ADDR
1081i386_frame_base_address (struct frame_info *next_frame, void **this_cache)
1082{
1083 struct i386_frame_cache *cache = i386_frame_cache (next_frame, this_cache);
1084
1085 return cache->base;
1086}
1087
1088static const struct frame_base i386_frame_base =
1089{
1090 &i386_frame_unwind,
1091 i386_frame_base_address,
1092 i386_frame_base_address,
1093 i386_frame_base_address
1094};
1095
acd5c798
MK
1096static struct frame_id
1097i386_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
1098{
1099 char buf[4];
1100 CORE_ADDR fp;
1101
1102 frame_unwind_register (next_frame, I386_EBP_REGNUM, buf);
1103 fp = extract_unsigned_integer (buf, 4);
1104
3e210248 1105 /* See the end of i386_push_dummy_call. */
acd5c798 1106 return frame_id_build (fp + 8, frame_pc_unwind (next_frame));
c0d1d883 1107}
fc338970 1108\f
c906108c 1109
fc338970
MK
1110/* Figure out where the longjmp will land. Slurp the args out of the
1111 stack. We expect the first arg to be a pointer to the jmp_buf
8201327c 1112 structure from which we extract the address that we will land at.
28bcfd30 1113 This address is copied into PC. This routine returns non-zero on
acd5c798
MK
1114 success.
1115
1116 This function is 64-bit safe. */
c906108c 1117
8201327c
MK
1118static int
1119i386_get_longjmp_target (CORE_ADDR *pc)
c906108c 1120{
28bcfd30 1121 char buf[8];
c906108c 1122 CORE_ADDR sp, jb_addr;
8201327c 1123 int jb_pc_offset = gdbarch_tdep (current_gdbarch)->jb_pc_offset;
f9d3c2a8 1124 int len = TYPE_LENGTH (builtin_type_void_func_ptr);
c906108c 1125
8201327c
MK
1126 /* If JB_PC_OFFSET is -1, we have no way to find out where the
1127 longjmp will land. */
1128 if (jb_pc_offset == -1)
c906108c
SS
1129 return 0;
1130
f837910f
MK
1131 /* Don't use I386_ESP_REGNUM here, since this function is also used
1132 for AMD64. */
1133 regcache_cooked_read (current_regcache, SP_REGNUM, buf);
1134 sp = extract_typed_address (buf, builtin_type_void_data_ptr);
28bcfd30 1135 if (target_read_memory (sp + len, buf, len))
c906108c
SS
1136 return 0;
1137
f837910f 1138 jb_addr = extract_typed_address (buf, builtin_type_void_data_ptr);
28bcfd30 1139 if (target_read_memory (jb_addr + jb_pc_offset, buf, len))
8201327c 1140 return 0;
c906108c 1141
f9d3c2a8 1142 *pc = extract_typed_address (buf, builtin_type_void_func_ptr);
c906108c
SS
1143 return 1;
1144}
fc338970 1145\f
c906108c 1146
3a1e71e3 1147static CORE_ADDR
6a65450a
AC
1148i386_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
1149 struct regcache *regcache, CORE_ADDR bp_addr, int nargs,
1150 struct value **args, CORE_ADDR sp, int struct_return,
1151 CORE_ADDR struct_addr)
22f8ba57 1152{
acd5c798
MK
1153 char buf[4];
1154 int i;
1155
1156 /* Push arguments in reverse order. */
1157 for (i = nargs - 1; i >= 0; i--)
22f8ba57 1158 {
acd5c798
MK
1159 int len = TYPE_LENGTH (VALUE_ENCLOSING_TYPE (args[i]));
1160
1161 /* The System V ABI says that:
1162
1163 "An argument's size is increased, if necessary, to make it a
1164 multiple of [32-bit] words. This may require tail padding,
1165 depending on the size of the argument."
1166
1167 This makes sure the stack says word-aligned. */
1168 sp -= (len + 3) & ~3;
1169 write_memory (sp, VALUE_CONTENTS_ALL (args[i]), len);
1170 }
22f8ba57 1171
acd5c798
MK
1172 /* Push value address. */
1173 if (struct_return)
1174 {
22f8ba57 1175 sp -= 4;
fbd9dcd3 1176 store_unsigned_integer (buf, 4, struct_addr);
22f8ba57
MK
1177 write_memory (sp, buf, 4);
1178 }
1179
acd5c798
MK
1180 /* Store return address. */
1181 sp -= 4;
6a65450a 1182 store_unsigned_integer (buf, 4, bp_addr);
acd5c798
MK
1183 write_memory (sp, buf, 4);
1184
1185 /* Finally, update the stack pointer... */
1186 store_unsigned_integer (buf, 4, sp);
1187 regcache_cooked_write (regcache, I386_ESP_REGNUM, buf);
1188
1189 /* ...and fake a frame pointer. */
1190 regcache_cooked_write (regcache, I386_EBP_REGNUM, buf);
1191
3e210248
AC
1192 /* MarkK wrote: This "+ 8" is all over the place:
1193 (i386_frame_this_id, i386_sigtramp_frame_this_id,
1194 i386_unwind_dummy_id). It's there, since all frame unwinders for
1195 a given target have to agree (within a certain margin) on the
1196 defenition of the stack address of a frame. Otherwise
1197 frame_id_inner() won't work correctly. Since DWARF2/GCC uses the
1198 stack address *before* the function call as a frame's CFA. On
1199 the i386, when %ebp is used as a frame pointer, the offset
1200 between the contents %ebp and the CFA as defined by GCC. */
1201 return sp + 8;
22f8ba57
MK
1202}
1203
1a309862
MK
1204/* These registers are used for returning integers (and on some
1205 targets also for returning `struct' and `union' values when their
ef9dff19 1206 size and alignment match an integer type). */
acd5c798
MK
1207#define LOW_RETURN_REGNUM I386_EAX_REGNUM /* %eax */
1208#define HIGH_RETURN_REGNUM I386_EDX_REGNUM /* %edx */
1a309862 1209
c5e656c1
MK
1210/* Read, for architecture GDBARCH, a function return value of TYPE
1211 from REGCACHE, and copy that into VALBUF. */
1a309862 1212
3a1e71e3 1213static void
c5e656c1
MK
1214i386_extract_return_value (struct gdbarch *gdbarch, struct type *type,
1215 struct regcache *regcache, void *valbuf)
c906108c 1216{
c5e656c1 1217 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1a309862 1218 int len = TYPE_LENGTH (type);
00f8375e 1219 char buf[I386_MAX_REGISTER_SIZE];
1a309862 1220
1e8d0a7b 1221 if (TYPE_CODE (type) == TYPE_CODE_FLT)
c906108c 1222 {
5716833c 1223 if (tdep->st0_regnum < 0)
1a309862
MK
1224 {
1225 warning ("Cannot find floating-point return value.");
1226 memset (valbuf, 0, len);
ef9dff19 1227 return;
1a309862
MK
1228 }
1229
c6ba6f0d
MK
1230 /* Floating-point return values can be found in %st(0). Convert
1231 its contents to the desired type. This is probably not
1232 exactly how it would happen on the target itself, but it is
1233 the best we can do. */
acd5c798 1234 regcache_raw_read (regcache, I386_ST0_REGNUM, buf);
00f8375e 1235 convert_typed_floating (buf, builtin_type_i387_ext, valbuf, type);
c906108c
SS
1236 }
1237 else
c5aa993b 1238 {
f837910f
MK
1239 int low_size = register_size (current_gdbarch, LOW_RETURN_REGNUM);
1240 int high_size = register_size (current_gdbarch, HIGH_RETURN_REGNUM);
d4f3574e
SS
1241
1242 if (len <= low_size)
00f8375e 1243 {
0818c12a 1244 regcache_raw_read (regcache, LOW_RETURN_REGNUM, buf);
00f8375e
MK
1245 memcpy (valbuf, buf, len);
1246 }
d4f3574e
SS
1247 else if (len <= (low_size + high_size))
1248 {
0818c12a 1249 regcache_raw_read (regcache, LOW_RETURN_REGNUM, buf);
00f8375e 1250 memcpy (valbuf, buf, low_size);
0818c12a 1251 regcache_raw_read (regcache, HIGH_RETURN_REGNUM, buf);
c8048956 1252 memcpy ((char *) valbuf + low_size, buf, len - low_size);
d4f3574e
SS
1253 }
1254 else
8e65ff28
AC
1255 internal_error (__FILE__, __LINE__,
1256 "Cannot extract return value of %d bytes long.", len);
c906108c
SS
1257 }
1258}
1259
c5e656c1
MK
1260/* Write, for architecture GDBARCH, a function return value of TYPE
1261 from VALBUF into REGCACHE. */
ef9dff19 1262
3a1e71e3 1263static void
c5e656c1
MK
1264i386_store_return_value (struct gdbarch *gdbarch, struct type *type,
1265 struct regcache *regcache, const void *valbuf)
ef9dff19 1266{
c5e656c1 1267 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
ef9dff19
MK
1268 int len = TYPE_LENGTH (type);
1269
5716833c
MK
1270 /* Define I387_ST0_REGNUM such that we use the proper definitions
1271 for the architecture. */
1272#define I387_ST0_REGNUM I386_ST0_REGNUM
1273
1e8d0a7b 1274 if (TYPE_CODE (type) == TYPE_CODE_FLT)
ef9dff19 1275 {
3d7f4f49 1276 ULONGEST fstat;
5716833c 1277 char buf[I386_MAX_REGISTER_SIZE];
ccb945b8 1278
5716833c 1279 if (tdep->st0_regnum < 0)
ef9dff19
MK
1280 {
1281 warning ("Cannot set floating-point return value.");
1282 return;
1283 }
1284
635b0cc1
MK
1285 /* Returning floating-point values is a bit tricky. Apart from
1286 storing the return value in %st(0), we have to simulate the
1287 state of the FPU at function return point. */
1288
c6ba6f0d
MK
1289 /* Convert the value found in VALBUF to the extended
1290 floating-point format used by the FPU. This is probably
1291 not exactly how it would happen on the target itself, but
1292 it is the best we can do. */
1293 convert_typed_floating (valbuf, type, buf, builtin_type_i387_ext);
acd5c798 1294 regcache_raw_write (regcache, I386_ST0_REGNUM, buf);
ccb945b8 1295
635b0cc1
MK
1296 /* Set the top of the floating-point register stack to 7. The
1297 actual value doesn't really matter, but 7 is what a normal
1298 function return would end up with if the program started out
1299 with a freshly initialized FPU. */
5716833c 1300 regcache_raw_read_unsigned (regcache, I387_FSTAT_REGNUM, &fstat);
ccb945b8 1301 fstat |= (7 << 11);
5716833c 1302 regcache_raw_write_unsigned (regcache, I387_FSTAT_REGNUM, fstat);
ccb945b8 1303
635b0cc1
MK
1304 /* Mark %st(1) through %st(7) as empty. Since we set the top of
1305 the floating-point register stack to 7, the appropriate value
1306 for the tag word is 0x3fff. */
5716833c 1307 regcache_raw_write_unsigned (regcache, I387_FTAG_REGNUM, 0x3fff);
ef9dff19
MK
1308 }
1309 else
1310 {
f837910f
MK
1311 int low_size = register_size (current_gdbarch, LOW_RETURN_REGNUM);
1312 int high_size = register_size (current_gdbarch, HIGH_RETURN_REGNUM);
ef9dff19
MK
1313
1314 if (len <= low_size)
3d7f4f49 1315 regcache_raw_write_part (regcache, LOW_RETURN_REGNUM, 0, len, valbuf);
ef9dff19
MK
1316 else if (len <= (low_size + high_size))
1317 {
3d7f4f49
MK
1318 regcache_raw_write (regcache, LOW_RETURN_REGNUM, valbuf);
1319 regcache_raw_write_part (regcache, HIGH_RETURN_REGNUM, 0,
1320 len - low_size, (char *) valbuf + low_size);
ef9dff19
MK
1321 }
1322 else
8e65ff28
AC
1323 internal_error (__FILE__, __LINE__,
1324 "Cannot store return value of %d bytes long.", len);
ef9dff19 1325 }
5716833c
MK
1326
1327#undef I387_ST0_REGNUM
ef9dff19 1328}
fc338970 1329\f
ef9dff19 1330
8201327c
MK
1331/* This is the variable that is set with "set struct-convention", and
1332 its legitimate values. */
1333static const char default_struct_convention[] = "default";
1334static const char pcc_struct_convention[] = "pcc";
1335static const char reg_struct_convention[] = "reg";
1336static const char *valid_conventions[] =
1337{
1338 default_struct_convention,
1339 pcc_struct_convention,
1340 reg_struct_convention,
1341 NULL
1342};
1343static const char *struct_convention = default_struct_convention;
1344
c5e656c1
MK
1345/* Return non-zero if TYPE, which is assumed to be a structure or
1346 union type, should be returned in registers for architecture
1347 GDBARCH. */
1348
8201327c 1349static int
c5e656c1 1350i386_reg_struct_return_p (struct gdbarch *gdbarch, struct type *type)
8201327c 1351{
c5e656c1
MK
1352 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1353 enum type_code code = TYPE_CODE (type);
1354 int len = TYPE_LENGTH (type);
8201327c 1355
c5e656c1
MK
1356 gdb_assert (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION);
1357
1358 if (struct_convention == pcc_struct_convention
1359 || (struct_convention == default_struct_convention
1360 && tdep->struct_return == pcc_struct_return))
1361 return 0;
1362
1363 return (len == 1 || len == 2 || len == 4 || len == 8);
1364}
1365
1366/* Determine, for architecture GDBARCH, how a return value of TYPE
1367 should be returned. If it is supposed to be returned in registers,
1368 and READBUF is non-zero, read the appropriate value from REGCACHE,
1369 and copy it into READBUF. If WRITEBUF is non-zero, write the value
1370 from WRITEBUF into REGCACHE. */
1371
1372static enum return_value_convention
1373i386_return_value (struct gdbarch *gdbarch, struct type *type,
1374 struct regcache *regcache, void *readbuf,
1375 const void *writebuf)
1376{
1377 enum type_code code = TYPE_CODE (type);
1378
1379 if ((code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION)
1380 && !i386_reg_struct_return_p (gdbarch, type))
1381 return RETURN_VALUE_STRUCT_CONVENTION;
1382
1383 /* This special case is for structures consisting of a single
1384 `float' or `double' member. These structures are returned in
1385 %st(0). For these structures, we call ourselves recursively,
1386 changing TYPE into the type of the first member of the structure.
1387 Since that should work for all structures that have only one
1388 member, we don't bother to check the member's type here. */
1389 if (code == TYPE_CODE_STRUCT && TYPE_NFIELDS (type) == 1)
1390 {
1391 type = check_typedef (TYPE_FIELD_TYPE (type, 0));
1392 return i386_return_value (gdbarch, type, regcache, readbuf, writebuf);
1393 }
1394
1395 if (readbuf)
1396 i386_extract_return_value (gdbarch, type, regcache, readbuf);
1397 if (writebuf)
1398 i386_store_return_value (gdbarch, type, regcache, writebuf);
8201327c 1399
c5e656c1 1400 return RETURN_VALUE_REGISTER_CONVENTION;
8201327c
MK
1401}
1402\f
1403
d7a0d72c
MK
1404/* Return the GDB type object for the "standard" data type of data in
1405 register REGNUM. Perhaps %esi and %edi should go here, but
1406 potentially they could be used for things other than address. */
1407
3a1e71e3 1408static struct type *
4e259f09 1409i386_register_type (struct gdbarch *gdbarch, int regnum)
d7a0d72c 1410{
acd5c798
MK
1411 if (regnum == I386_EIP_REGNUM
1412 || regnum == I386_EBP_REGNUM || regnum == I386_ESP_REGNUM)
d7a0d72c
MK
1413 return lookup_pointer_type (builtin_type_void);
1414
23a34459 1415 if (i386_fp_regnum_p (regnum))
c6ba6f0d 1416 return builtin_type_i387_ext;
d7a0d72c 1417
5716833c 1418 if (i386_sse_regnum_p (gdbarch, regnum))
3139facc 1419 return builtin_type_vec128i;
d7a0d72c 1420
5716833c 1421 if (i386_mmx_regnum_p (gdbarch, regnum))
28fc6740
AC
1422 return builtin_type_vec64i;
1423
d7a0d72c
MK
1424 return builtin_type_int;
1425}
1426
28fc6740 1427/* Map a cooked register onto a raw register or memory. For the i386,
acd5c798 1428 the MMX registers need to be mapped onto floating point registers. */
28fc6740
AC
1429
1430static int
c86c27af 1431i386_mmx_regnum_to_fp_regnum (struct regcache *regcache, int regnum)
28fc6740 1432{
5716833c
MK
1433 struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache));
1434 int mmxreg, fpreg;
28fc6740
AC
1435 ULONGEST fstat;
1436 int tos;
c86c27af 1437
5716833c
MK
1438 /* Define I387_ST0_REGNUM such that we use the proper definitions
1439 for REGCACHE's architecture. */
1440#define I387_ST0_REGNUM tdep->st0_regnum
1441
1442 mmxreg = regnum - tdep->mm0_regnum;
1443 regcache_raw_read_unsigned (regcache, I387_FSTAT_REGNUM, &fstat);
28fc6740 1444 tos = (fstat >> 11) & 0x7;
5716833c
MK
1445 fpreg = (mmxreg + tos) % 8;
1446
1447 return (I387_ST0_REGNUM + fpreg);
c86c27af 1448
5716833c 1449#undef I387_ST0_REGNUM
28fc6740
AC
1450}
1451
1452static void
1453i386_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
1454 int regnum, void *buf)
1455{
5716833c 1456 if (i386_mmx_regnum_p (gdbarch, regnum))
28fc6740 1457 {
d9d9c31f 1458 char mmx_buf[MAX_REGISTER_SIZE];
c86c27af
MK
1459 int fpnum = i386_mmx_regnum_to_fp_regnum (regcache, regnum);
1460
28fc6740 1461 /* Extract (always little endian). */
c86c27af 1462 regcache_raw_read (regcache, fpnum, mmx_buf);
f837910f 1463 memcpy (buf, mmx_buf, register_size (gdbarch, regnum));
28fc6740
AC
1464 }
1465 else
1466 regcache_raw_read (regcache, regnum, buf);
1467}
1468
1469static void
1470i386_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
1471 int regnum, const void *buf)
1472{
5716833c 1473 if (i386_mmx_regnum_p (gdbarch, regnum))
28fc6740 1474 {
d9d9c31f 1475 char mmx_buf[MAX_REGISTER_SIZE];
c86c27af
MK
1476 int fpnum = i386_mmx_regnum_to_fp_regnum (regcache, regnum);
1477
28fc6740
AC
1478 /* Read ... */
1479 regcache_raw_read (regcache, fpnum, mmx_buf);
1480 /* ... Modify ... (always little endian). */
f837910f 1481 memcpy (mmx_buf, buf, register_size (gdbarch, regnum));
28fc6740
AC
1482 /* ... Write. */
1483 regcache_raw_write (regcache, fpnum, mmx_buf);
1484 }
1485 else
1486 regcache_raw_write (regcache, regnum, buf);
1487}
ff2e87ac
AC
1488\f
1489
ff2e87ac
AC
1490/* Return the register number of the register allocated by GCC after
1491 REGNUM, or -1 if there is no such register. */
1492
1493static int
1494i386_next_regnum (int regnum)
1495{
1496 /* GCC allocates the registers in the order:
1497
1498 %eax, %edx, %ecx, %ebx, %esi, %edi, %ebp, %esp, ...
1499
1500 Since storing a variable in %esp doesn't make any sense we return
1501 -1 for %ebp and for %esp itself. */
1502 static int next_regnum[] =
1503 {
1504 I386_EDX_REGNUM, /* Slot for %eax. */
1505 I386_EBX_REGNUM, /* Slot for %ecx. */
1506 I386_ECX_REGNUM, /* Slot for %edx. */
1507 I386_ESI_REGNUM, /* Slot for %ebx. */
1508 -1, -1, /* Slots for %esp and %ebp. */
1509 I386_EDI_REGNUM, /* Slot for %esi. */
1510 I386_EBP_REGNUM /* Slot for %edi. */
1511 };
1512
de5b9bb9 1513 if (regnum >= 0 && regnum < sizeof (next_regnum) / sizeof (next_regnum[0]))
ff2e87ac 1514 return next_regnum[regnum];
28fc6740 1515
ff2e87ac
AC
1516 return -1;
1517}
1518
1519/* Return nonzero if a value of type TYPE stored in register REGNUM
1520 needs any special handling. */
d7a0d72c 1521
3a1e71e3 1522static int
ff2e87ac 1523i386_convert_register_p (int regnum, struct type *type)
d7a0d72c 1524{
de5b9bb9
MK
1525 int len = TYPE_LENGTH (type);
1526
ff2e87ac
AC
1527 /* Values may be spread across multiple registers. Most debugging
1528 formats aren't expressive enough to specify the locations, so
1529 some heuristics is involved. Right now we only handle types that
de5b9bb9
MK
1530 have a length that is a multiple of the word size, since GCC
1531 doesn't seem to put any other types into registers. */
1532 if (len > 4 && len % 4 == 0)
1533 {
1534 int last_regnum = regnum;
1535
1536 while (len > 4)
1537 {
1538 last_regnum = i386_next_regnum (last_regnum);
1539 len -= 4;
1540 }
1541
1542 if (last_regnum != -1)
1543 return 1;
1544 }
ff2e87ac 1545
23a34459 1546 return i386_fp_regnum_p (regnum);
d7a0d72c
MK
1547}
1548
ff2e87ac
AC
1549/* Read a value of type TYPE from register REGNUM in frame FRAME, and
1550 return its contents in TO. */
ac27f131 1551
3a1e71e3 1552static void
ff2e87ac
AC
1553i386_register_to_value (struct frame_info *frame, int regnum,
1554 struct type *type, void *to)
ac27f131 1555{
de5b9bb9
MK
1556 int len = TYPE_LENGTH (type);
1557 char *buf = to;
1558
ff2e87ac
AC
1559 /* FIXME: kettenis/20030609: What should we do if REGNUM isn't
1560 available in FRAME (i.e. if it wasn't saved)? */
3d261580 1561
ff2e87ac 1562 if (i386_fp_regnum_p (regnum))
8d7f6b4a 1563 {
d532c08f
MK
1564 i387_register_to_value (frame, regnum, type, to);
1565 return;
8d7f6b4a 1566 }
ff2e87ac 1567
de5b9bb9
MK
1568 /* Read a value spread accross multiple registers. */
1569
1570 gdb_assert (len > 4 && len % 4 == 0);
3d261580 1571
de5b9bb9
MK
1572 while (len > 0)
1573 {
1574 gdb_assert (regnum != -1);
1575 gdb_assert (register_size (current_gdbarch, regnum) == 4);
d532c08f 1576
f837910f 1577 get_frame_register (frame, regnum, buf);
de5b9bb9
MK
1578 regnum = i386_next_regnum (regnum);
1579 len -= 4;
1580 buf += 4;
1581 }
ac27f131
MK
1582}
1583
ff2e87ac
AC
1584/* Write the contents FROM of a value of type TYPE into register
1585 REGNUM in frame FRAME. */
ac27f131 1586
3a1e71e3 1587static void
ff2e87ac
AC
1588i386_value_to_register (struct frame_info *frame, int regnum,
1589 struct type *type, const void *from)
ac27f131 1590{
de5b9bb9
MK
1591 int len = TYPE_LENGTH (type);
1592 const char *buf = from;
1593
ff2e87ac 1594 if (i386_fp_regnum_p (regnum))
c6ba6f0d 1595 {
d532c08f
MK
1596 i387_value_to_register (frame, regnum, type, from);
1597 return;
1598 }
3d261580 1599
de5b9bb9
MK
1600 /* Write a value spread accross multiple registers. */
1601
1602 gdb_assert (len > 4 && len % 4 == 0);
ff2e87ac 1603
de5b9bb9
MK
1604 while (len > 0)
1605 {
1606 gdb_assert (regnum != -1);
1607 gdb_assert (register_size (current_gdbarch, regnum) == 4);
d532c08f 1608
de5b9bb9
MK
1609 put_frame_register (frame, regnum, buf);
1610 regnum = i386_next_regnum (regnum);
1611 len -= 4;
1612 buf += 4;
1613 }
ac27f131 1614}
ff2e87ac 1615\f
473f17b0
MK
1616/* Supply register REGNUM from the general-purpose register set REGSET
1617 to register cache REGCACHE. If REGNUM is -1, do this for all
1618 registers in REGSET. */
ff2e87ac 1619
20187ed5 1620void
473f17b0
MK
1621i386_supply_gregset (const struct regset *regset, struct regcache *regcache,
1622 int regnum, const void *gregs, size_t len)
1623{
1624 const struct gdbarch_tdep *tdep = regset->descr;
1625 const char *regs = gregs;
1626 int i;
1627
1628 gdb_assert (len == tdep->sizeof_gregset);
1629
1630 for (i = 0; i < tdep->gregset_num_regs; i++)
1631 {
1632 if ((regnum == i || regnum == -1)
1633 && tdep->gregset_reg_offset[i] != -1)
1634 regcache_raw_supply (regcache, i, regs + tdep->gregset_reg_offset[i]);
1635 }
1636}
1637
1638/* Supply register REGNUM from the floating-point register set REGSET
1639 to register cache REGCACHE. If REGNUM is -1, do this for all
1640 registers in REGSET. */
1641
1642static void
1643i386_supply_fpregset (const struct regset *regset, struct regcache *regcache,
1644 int regnum, const void *fpregs, size_t len)
1645{
1646 const struct gdbarch_tdep *tdep = regset->descr;
1647
66a72d25
MK
1648 if (len == I387_SIZEOF_FXSAVE)
1649 {
1650 i387_supply_fxsave (regcache, regnum, fpregs);
1651 return;
1652 }
1653
473f17b0
MK
1654 gdb_assert (len == tdep->sizeof_fpregset);
1655 i387_supply_fsave (regcache, regnum, fpregs);
1656}
8446b36a
MK
1657
1658/* Return the appropriate register set for the core section identified
1659 by SECT_NAME and SECT_SIZE. */
1660
1661const struct regset *
1662i386_regset_from_core_section (struct gdbarch *gdbarch,
1663 const char *sect_name, size_t sect_size)
1664{
1665 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1666
1667 if (strcmp (sect_name, ".reg") == 0 && sect_size == tdep->sizeof_gregset)
1668 {
1669 if (tdep->gregset == NULL)
1670 {
1671 tdep->gregset = XMALLOC (struct regset);
1672 tdep->gregset->descr = tdep;
1673 tdep->gregset->supply_regset = i386_supply_gregset;
1674 }
1675 return tdep->gregset;
1676 }
1677
66a72d25
MK
1678 if ((strcmp (sect_name, ".reg2") == 0 && sect_size == tdep->sizeof_fpregset)
1679 || (strcmp (sect_name, ".reg-xfp") == 0
1680 && sect_size == I387_SIZEOF_FXSAVE))
8446b36a
MK
1681 {
1682 if (tdep->fpregset == NULL)
1683 {
1684 tdep->fpregset = XMALLOC (struct regset);
1685 tdep->fpregset->descr = tdep;
1686 tdep->fpregset->supply_regset = i386_supply_fpregset;
1687 }
1688 return tdep->fpregset;
1689 }
1690
1691 return NULL;
1692}
473f17b0 1693\f
fc338970 1694
c906108c 1695#ifdef STATIC_TRANSFORM_NAME
fc338970
MK
1696/* SunPRO encodes the static variables. This is not related to C++
1697 mangling, it is done for C too. */
c906108c
SS
1698
1699char *
fba45db2 1700sunpro_static_transform_name (char *name)
c906108c
SS
1701{
1702 char *p;
1703 if (IS_STATIC_TRANSFORM_NAME (name))
1704 {
fc338970
MK
1705 /* For file-local statics there will be a period, a bunch of
1706 junk (the contents of which match a string given in the
c5aa993b
JM
1707 N_OPT), a period and the name. For function-local statics
1708 there will be a bunch of junk (which seems to change the
1709 second character from 'A' to 'B'), a period, the name of the
1710 function, and the name. So just skip everything before the
1711 last period. */
c906108c
SS
1712 p = strrchr (name, '.');
1713 if (p != NULL)
1714 name = p + 1;
1715 }
1716 return name;
1717}
1718#endif /* STATIC_TRANSFORM_NAME */
fc338970 1719\f
c906108c 1720
fc338970 1721/* Stuff for WIN32 PE style DLL's but is pretty generic really. */
c906108c
SS
1722
1723CORE_ADDR
1cce71eb 1724i386_pe_skip_trampoline_code (CORE_ADDR pc, char *name)
c906108c 1725{
fc338970 1726 if (pc && read_memory_unsigned_integer (pc, 2) == 0x25ff) /* jmp *(dest) */
c906108c 1727 {
c5aa993b 1728 unsigned long indirect = read_memory_unsigned_integer (pc + 2, 4);
c906108c 1729 struct minimal_symbol *indsym =
fc338970 1730 indirect ? lookup_minimal_symbol_by_pc (indirect) : 0;
645dd519 1731 char *symname = indsym ? SYMBOL_LINKAGE_NAME (indsym) : 0;
c906108c 1732
c5aa993b 1733 if (symname)
c906108c 1734 {
c5aa993b
JM
1735 if (strncmp (symname, "__imp_", 6) == 0
1736 || strncmp (symname, "_imp_", 5) == 0)
c906108c
SS
1737 return name ? 1 : read_memory_unsigned_integer (indirect, 4);
1738 }
1739 }
fc338970 1740 return 0; /* Not a trampoline. */
c906108c 1741}
fc338970
MK
1742\f
1743
911bc6ee
MK
1744/* Return whether the frame preciding NEXT_FRAME corresponds to a
1745 sigtramp routine. */
8201327c
MK
1746
1747static int
911bc6ee 1748i386_sigtramp_p (struct frame_info *next_frame)
8201327c 1749{
911bc6ee
MK
1750 CORE_ADDR pc = frame_pc_unwind (next_frame);
1751 char *name;
1752
1753 find_pc_partial_function (pc, &name, NULL, NULL);
8201327c
MK
1754 return (name && strcmp ("_sigtramp", name) == 0);
1755}
1756\f
1757
fc338970
MK
1758/* We have two flavours of disassembly. The machinery on this page
1759 deals with switching between those. */
c906108c
SS
1760
1761static int
a89aa300 1762i386_print_insn (bfd_vma pc, struct disassemble_info *info)
c906108c 1763{
5e3397bb
MK
1764 gdb_assert (disassembly_flavor == att_flavor
1765 || disassembly_flavor == intel_flavor);
1766
1767 /* FIXME: kettenis/20020915: Until disassembler_options is properly
1768 constified, cast to prevent a compiler warning. */
1769 info->disassembler_options = (char *) disassembly_flavor;
1770 info->mach = gdbarch_bfd_arch_info (current_gdbarch)->mach;
1771
1772 return print_insn_i386 (pc, info);
7a292a7a 1773}
fc338970 1774\f
3ce1502b 1775
8201327c
MK
1776/* There are a few i386 architecture variants that differ only
1777 slightly from the generic i386 target. For now, we don't give them
1778 their own source file, but include them here. As a consequence,
1779 they'll always be included. */
3ce1502b 1780
8201327c 1781/* System V Release 4 (SVR4). */
3ce1502b 1782
911bc6ee
MK
1783/* Return whether the frame preciding NEXT_FRAME corresponds to a SVR4
1784 sigtramp routine. */
1785
8201327c 1786static int
911bc6ee 1787i386_svr4_sigtramp_p (struct frame_info *next_frame)
d2a7c97a 1788{
911bc6ee
MK
1789 CORE_ADDR pc = frame_pc_unwind (next_frame);
1790 char *name;
1791
acd5c798
MK
1792 /* UnixWare uses _sigacthandler. The origin of the other symbols is
1793 currently unknown. */
911bc6ee 1794 find_pc_partial_function (pc, &name, NULL, NULL);
8201327c
MK
1795 return (name && (strcmp ("_sigreturn", name) == 0
1796 || strcmp ("_sigacthandler", name) == 0
1797 || strcmp ("sigvechandler", name) == 0));
1798}
d2a7c97a 1799
acd5c798
MK
1800/* Assuming NEXT_FRAME is for a frame following a SVR4 sigtramp
1801 routine, return the address of the associated sigcontext (ucontext)
1802 structure. */
3ce1502b 1803
3a1e71e3 1804static CORE_ADDR
acd5c798 1805i386_svr4_sigcontext_addr (struct frame_info *next_frame)
8201327c 1806{
acd5c798
MK
1807 char buf[4];
1808 CORE_ADDR sp;
3ce1502b 1809
acd5c798
MK
1810 frame_unwind_register (next_frame, I386_ESP_REGNUM, buf);
1811 sp = extract_unsigned_integer (buf, 4);
21d0e8a4 1812
acd5c798 1813 return read_memory_unsigned_integer (sp + 8, 4);
8201327c
MK
1814}
1815\f
3ce1502b 1816
8201327c 1817/* Generic ELF. */
d2a7c97a 1818
8201327c
MK
1819void
1820i386_elf_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
1821{
1822 /* We typically use stabs-in-ELF with the DWARF register numbering. */
1823 set_gdbarch_stab_reg_to_regnum (gdbarch, i386_dwarf_reg_to_regnum);
1824}
3ce1502b 1825
8201327c 1826/* System V Release 4 (SVR4). */
3ce1502b 1827
8201327c
MK
1828void
1829i386_svr4_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
1830{
1831 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3ce1502b 1832
8201327c
MK
1833 /* System V Release 4 uses ELF. */
1834 i386_elf_init_abi (info, gdbarch);
3ce1502b 1835
dfe01d39
MK
1836 /* System V Release 4 has shared libraries. */
1837 set_gdbarch_in_solib_call_trampoline (gdbarch, in_plt_section);
1838 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
1839
911bc6ee 1840 tdep->sigtramp_p = i386_svr4_sigtramp_p;
21d0e8a4 1841 tdep->sigcontext_addr = i386_svr4_sigcontext_addr;
acd5c798
MK
1842 tdep->sc_pc_offset = 36 + 14 * 4;
1843 tdep->sc_sp_offset = 36 + 17 * 4;
3ce1502b 1844
8201327c 1845 tdep->jb_pc_offset = 20;
3ce1502b
MK
1846}
1847
8201327c 1848/* DJGPP. */
3ce1502b 1849
3a1e71e3 1850static void
8201327c 1851i386_go32_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
3ce1502b 1852{
8201327c 1853 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3ce1502b 1854
911bc6ee
MK
1855 /* DJGPP doesn't have any special frames for signal handlers. */
1856 tdep->sigtramp_p = NULL;
3ce1502b 1857
8201327c 1858 tdep->jb_pc_offset = 36;
3ce1502b
MK
1859}
1860
8201327c 1861/* NetWare. */
3ce1502b 1862
3a1e71e3 1863static void
8201327c 1864i386_nw_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
3ce1502b 1865{
8201327c 1866 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3ce1502b 1867
8201327c 1868 tdep->jb_pc_offset = 24;
d2a7c97a 1869}
8201327c 1870\f
2acceee2 1871
38c968cf
AC
1872/* i386 register groups. In addition to the normal groups, add "mmx"
1873 and "sse". */
1874
1875static struct reggroup *i386_sse_reggroup;
1876static struct reggroup *i386_mmx_reggroup;
1877
1878static void
1879i386_init_reggroups (void)
1880{
1881 i386_sse_reggroup = reggroup_new ("sse", USER_REGGROUP);
1882 i386_mmx_reggroup = reggroup_new ("mmx", USER_REGGROUP);
1883}
1884
1885static void
1886i386_add_reggroups (struct gdbarch *gdbarch)
1887{
1888 reggroup_add (gdbarch, i386_sse_reggroup);
1889 reggroup_add (gdbarch, i386_mmx_reggroup);
1890 reggroup_add (gdbarch, general_reggroup);
1891 reggroup_add (gdbarch, float_reggroup);
1892 reggroup_add (gdbarch, all_reggroup);
1893 reggroup_add (gdbarch, save_reggroup);
1894 reggroup_add (gdbarch, restore_reggroup);
1895 reggroup_add (gdbarch, vector_reggroup);
1896 reggroup_add (gdbarch, system_reggroup);
1897}
1898
1899int
1900i386_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
1901 struct reggroup *group)
1902{
5716833c
MK
1903 int sse_regnum_p = (i386_sse_regnum_p (gdbarch, regnum)
1904 || i386_mxcsr_regnum_p (gdbarch, regnum));
38c968cf
AC
1905 int fp_regnum_p = (i386_fp_regnum_p (regnum)
1906 || i386_fpc_regnum_p (regnum));
5716833c 1907 int mmx_regnum_p = (i386_mmx_regnum_p (gdbarch, regnum));
acd5c798 1908
38c968cf
AC
1909 if (group == i386_mmx_reggroup)
1910 return mmx_regnum_p;
1911 if (group == i386_sse_reggroup)
1912 return sse_regnum_p;
1913 if (group == vector_reggroup)
1914 return (mmx_regnum_p || sse_regnum_p);
1915 if (group == float_reggroup)
1916 return fp_regnum_p;
1917 if (group == general_reggroup)
1918 return (!fp_regnum_p && !mmx_regnum_p && !sse_regnum_p);
acd5c798 1919
38c968cf
AC
1920 return default_register_reggroup_p (gdbarch, regnum, group);
1921}
38c968cf 1922\f
acd5c798 1923
f837910f
MK
1924/* Get the ARGIth function argument for the current function. */
1925
42c466d7 1926static CORE_ADDR
143985b7
AF
1927i386_fetch_pointer_argument (struct frame_info *frame, int argi,
1928 struct type *type)
1929{
f837910f
MK
1930 CORE_ADDR sp = get_frame_register_unsigned (frame, I386_ESP_REGNUM);
1931 return read_memory_unsigned_integer (sp + (4 * (argi + 1)), 4);
143985b7
AF
1932}
1933
1934\f
3a1e71e3 1935static struct gdbarch *
a62cc96e
AC
1936i386_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1937{
cd3c07fc 1938 struct gdbarch_tdep *tdep;
a62cc96e
AC
1939 struct gdbarch *gdbarch;
1940
4be87837
DJ
1941 /* If there is already a candidate, use it. */
1942 arches = gdbarch_list_lookup_by_info (arches, &info);
1943 if (arches != NULL)
1944 return arches->gdbarch;
a62cc96e
AC
1945
1946 /* Allocate space for the new architecture. */
1947 tdep = XMALLOC (struct gdbarch_tdep);
1948 gdbarch = gdbarch_alloc (&info, tdep);
1949
473f17b0
MK
1950 /* General-purpose registers. */
1951 tdep->gregset = NULL;
1952 tdep->gregset_reg_offset = NULL;
1953 tdep->gregset_num_regs = I386_NUM_GREGS;
1954 tdep->sizeof_gregset = 0;
1955
1956 /* Floating-point registers. */
1957 tdep->fpregset = NULL;
1958 tdep->sizeof_fpregset = I387_SIZEOF_FSAVE;
1959
5716833c
MK
1960 /* The default settings include the FPU registers, the MMX registers
1961 and the SSE registers. This can be overidden for a specific ABI
1962 by adjusting the members `st0_regnum', `mm0_regnum' and
1963 `num_xmm_regs' of `struct gdbarch_tdep', otherwise the registers
1964 will show up in the output of "info all-registers". Ideally we
1965 should try to autodetect whether they are available, such that we
1966 can prevent "info all-registers" from displaying registers that
1967 aren't available.
1968
1969 NOTE: kevinb/2003-07-13: ... if it's a choice between printing
1970 [the SSE registers] always (even when they don't exist) or never
1971 showing them to the user (even when they do exist), I prefer the
1972 former over the latter. */
1973
1974 tdep->st0_regnum = I386_ST0_REGNUM;
1975
1976 /* The MMX registers are implemented as pseudo-registers. Put off
1977 caclulating the register number for %mm0 until we know the number
1978 of raw registers. */
1979 tdep->mm0_regnum = 0;
1980
1981 /* I386_NUM_XREGS includes %mxcsr, so substract one. */
49ed40de 1982 tdep->num_xmm_regs = I386_NUM_XREGS - 1;
d2a7c97a 1983
8201327c
MK
1984 tdep->jb_pc_offset = -1;
1985 tdep->struct_return = pcc_struct_return;
8201327c
MK
1986 tdep->sigtramp_start = 0;
1987 tdep->sigtramp_end = 0;
911bc6ee 1988 tdep->sigtramp_p = i386_sigtramp_p;
21d0e8a4 1989 tdep->sigcontext_addr = NULL;
a3386186 1990 tdep->sc_reg_offset = NULL;
8201327c 1991 tdep->sc_pc_offset = -1;
21d0e8a4 1992 tdep->sc_sp_offset = -1;
8201327c 1993
896fb97d
MK
1994 /* The format used for `long double' on almost all i386 targets is
1995 the i387 extended floating-point format. In fact, of all targets
1996 in the GCC 2.95 tree, only OSF/1 does it different, and insists
1997 on having a `long double' that's not `long' at all. */
1998 set_gdbarch_long_double_format (gdbarch, &floatformat_i387_ext);
21d0e8a4 1999
66da5fd8 2000 /* Although the i387 extended floating-point has only 80 significant
896fb97d
MK
2001 bits, a `long double' actually takes up 96, probably to enforce
2002 alignment. */
2003 set_gdbarch_long_double_bit (gdbarch, 96);
2004
49ed40de
KB
2005 /* The default ABI includes general-purpose registers,
2006 floating-point registers, and the SSE registers. */
2007 set_gdbarch_num_regs (gdbarch, I386_SSE_NUM_REGS);
acd5c798
MK
2008 set_gdbarch_register_name (gdbarch, i386_register_name);
2009 set_gdbarch_register_type (gdbarch, i386_register_type);
21d0e8a4 2010
acd5c798
MK
2011 /* Register numbers of various important registers. */
2012 set_gdbarch_sp_regnum (gdbarch, I386_ESP_REGNUM); /* %esp */
2013 set_gdbarch_pc_regnum (gdbarch, I386_EIP_REGNUM); /* %eip */
2014 set_gdbarch_ps_regnum (gdbarch, I386_EFLAGS_REGNUM); /* %eflags */
2015 set_gdbarch_fp0_regnum (gdbarch, I386_ST0_REGNUM); /* %st(0) */
356a6b3e
MK
2016
2017 /* Use the "default" register numbering scheme for stabs and COFF. */
2018 set_gdbarch_stab_reg_to_regnum (gdbarch, i386_stab_reg_to_regnum);
2019 set_gdbarch_sdb_reg_to_regnum (gdbarch, i386_stab_reg_to_regnum);
2020
2021 /* Use the DWARF register numbering scheme for DWARF and DWARF 2. */
2022 set_gdbarch_dwarf_reg_to_regnum (gdbarch, i386_dwarf_reg_to_regnum);
2023 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, i386_dwarf_reg_to_regnum);
2024
2025 /* We don't define ECOFF_REG_TO_REGNUM, since ECOFF doesn't seem to
2026 be in use on any of the supported i386 targets. */
2027
61113f8b
MK
2028 set_gdbarch_print_float_info (gdbarch, i387_print_float_info);
2029
8201327c 2030 set_gdbarch_get_longjmp_target (gdbarch, i386_get_longjmp_target);
96297dab 2031
a62cc96e 2032 /* Call dummy code. */
acd5c798 2033 set_gdbarch_push_dummy_call (gdbarch, i386_push_dummy_call);
a62cc96e 2034
ff2e87ac
AC
2035 set_gdbarch_convert_register_p (gdbarch, i386_convert_register_p);
2036 set_gdbarch_register_to_value (gdbarch, i386_register_to_value);
2037 set_gdbarch_value_to_register (gdbarch, i386_value_to_register);
b6197528 2038
c5e656c1 2039 set_gdbarch_return_value (gdbarch, i386_return_value);
8201327c 2040
93924b6b
MK
2041 set_gdbarch_skip_prologue (gdbarch, i386_skip_prologue);
2042
2043 /* Stack grows downward. */
2044 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
2045
2046 set_gdbarch_breakpoint_from_pc (gdbarch, i386_breakpoint_from_pc);
2047 set_gdbarch_decr_pc_after_break (gdbarch, 1);
42fdc8df 2048
42fdc8df 2049 set_gdbarch_frame_args_skip (gdbarch, 8);
8201327c 2050
28fc6740 2051 /* Wire in the MMX registers. */
0f751ff2 2052 set_gdbarch_num_pseudo_regs (gdbarch, i386_num_mmx_regs);
28fc6740
AC
2053 set_gdbarch_pseudo_register_read (gdbarch, i386_pseudo_register_read);
2054 set_gdbarch_pseudo_register_write (gdbarch, i386_pseudo_register_write);
2055
5e3397bb
MK
2056 set_gdbarch_print_insn (gdbarch, i386_print_insn);
2057
acd5c798 2058 set_gdbarch_unwind_dummy_id (gdbarch, i386_unwind_dummy_id);
acd5c798
MK
2059
2060 set_gdbarch_unwind_pc (gdbarch, i386_unwind_pc);
2061
38c968cf
AC
2062 /* Add the i386 register groups. */
2063 i386_add_reggroups (gdbarch);
2064 set_gdbarch_register_reggroup_p (gdbarch, i386_register_reggroup_p);
2065
143985b7
AF
2066 /* Helper for function argument information. */
2067 set_gdbarch_fetch_pointer_argument (gdbarch, i386_fetch_pointer_argument);
2068
6405b0a6 2069 /* Hook in the DWARF CFI frame unwinder. */
336d1bba 2070 frame_unwind_append_sniffer (gdbarch, dwarf2_frame_sniffer);
6405b0a6 2071
acd5c798 2072 frame_base_set_default (gdbarch, &i386_frame_base);
6c0e89ed 2073
3ce1502b 2074 /* Hook in ABI-specific overrides, if they have been registered. */
4be87837 2075 gdbarch_init_osabi (info, gdbarch);
3ce1502b 2076
336d1bba
AC
2077 frame_unwind_append_sniffer (gdbarch, i386_sigtramp_frame_sniffer);
2078 frame_unwind_append_sniffer (gdbarch, i386_frame_sniffer);
acd5c798 2079
8446b36a
MK
2080 /* If we have a register mapping, enable the generic core file
2081 support, unless it has already been enabled. */
2082 if (tdep->gregset_reg_offset
2083 && !gdbarch_regset_from_core_section_p (gdbarch))
2084 set_gdbarch_regset_from_core_section (gdbarch,
2085 i386_regset_from_core_section);
2086
5716833c
MK
2087 /* Unless support for MMX has been disabled, make %mm0 the first
2088 pseudo-register. */
2089 if (tdep->mm0_regnum == 0)
2090 tdep->mm0_regnum = gdbarch_num_regs (gdbarch);
2091
a62cc96e
AC
2092 return gdbarch;
2093}
2094
8201327c
MK
2095static enum gdb_osabi
2096i386_coff_osabi_sniffer (bfd *abfd)
2097{
762c5349
MK
2098 if (strcmp (bfd_get_target (abfd), "coff-go32-exe") == 0
2099 || strcmp (bfd_get_target (abfd), "coff-go32") == 0)
8201327c
MK
2100 return GDB_OSABI_GO32;
2101
2102 return GDB_OSABI_UNKNOWN;
2103}
2104
2105static enum gdb_osabi
2106i386_nlm_osabi_sniffer (bfd *abfd)
2107{
2108 return GDB_OSABI_NETWARE;
2109}
2110\f
2111
28e9e0f0
MK
2112/* Provide a prototype to silence -Wmissing-prototypes. */
2113void _initialize_i386_tdep (void);
2114
c906108c 2115void
fba45db2 2116_initialize_i386_tdep (void)
c906108c 2117{
a62cc96e
AC
2118 register_gdbarch_init (bfd_arch_i386, i386_gdbarch_init);
2119
fc338970 2120 /* Add the variable that controls the disassembly flavor. */
917317f4
JM
2121 {
2122 struct cmd_list_element *new_cmd;
7a292a7a 2123
917317f4
JM
2124 new_cmd = add_set_enum_cmd ("disassembly-flavor", no_class,
2125 valid_flavors,
1ed2a135 2126 &disassembly_flavor,
fc338970
MK
2127 "\
2128Set the disassembly flavor, the valid values are \"att\" and \"intel\", \
c906108c 2129and the default value is \"att\".",
917317f4 2130 &setlist);
917317f4
JM
2131 add_show_from_set (new_cmd, &showlist);
2132 }
8201327c
MK
2133
2134 /* Add the variable that controls the convention for returning
2135 structs. */
2136 {
2137 struct cmd_list_element *new_cmd;
2138
2139 new_cmd = add_set_enum_cmd ("struct-convention", no_class,
5e3397bb 2140 valid_conventions,
8201327c
MK
2141 &struct_convention, "\
2142Set the convention for returning small structs, valid values \
2143are \"default\", \"pcc\" and \"reg\", and the default value is \"default\".",
2144 &setlist);
2145 add_show_from_set (new_cmd, &showlist);
2146 }
2147
2148 gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_coff_flavour,
2149 i386_coff_osabi_sniffer);
2150 gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_nlm_flavour,
2151 i386_nlm_osabi_sniffer);
2152
05816f70 2153 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_SVR4,
8201327c 2154 i386_svr4_init_abi);
05816f70 2155 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_GO32,
8201327c 2156 i386_go32_init_abi);
05816f70 2157 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_NETWARE,
8201327c 2158 i386_nw_init_abi);
38c968cf
AC
2159
2160 /* Initialize the i386 specific register groups. */
2161 i386_init_reggroups ();
c906108c 2162}
This page took 0.473799 seconds and 4 git commands to generate.