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