]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/i386-tdep.c
* x86-64-tdep.h (x86_64_num_regs, x86_64_num_gregs): Remove
[thirdparty/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,
4be87837 4 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23#include "defs.h"
acd5c798
MK
24#include "arch-utils.h"
25#include "command.h"
26#include "dummy-frame.h"
27#include "doublest.h"
28#include "floatformat.h"
c906108c 29#include "frame.h"
acd5c798
MK
30#include "frame-base.h"
31#include "frame-unwind.h"
c906108c 32#include "inferior.h"
acd5c798 33#include "gdbcmd.h"
c906108c 34#include "gdbcore.h"
dfe01d39 35#include "objfiles.h"
acd5c798
MK
36#include "osabi.h"
37#include "regcache.h"
38#include "reggroups.h"
c0d1d883 39#include "symfile.h"
c906108c 40#include "symtab.h"
acd5c798 41#include "target.h"
fd0407d6 42#include "value.h"
acd5c798 43
3d261580 44#include "gdb_assert.h"
acd5c798 45#include "gdb_string.h"
3d261580 46
d2a7c97a 47#include "i386-tdep.h"
61113f8b 48#include "i387-tdep.h"
d2a7c97a 49
acd5c798
MK
50/* Register numbers of various important registers. */
51
52#define I386_EAX_REGNUM 0 /* %eax */
53#define I386_EDX_REGNUM 2 /* %edx */
54#define I386_ESP_REGNUM 4 /* %esp */
55#define I386_EBP_REGNUM 5 /* %ebp */
56#define I386_EIP_REGNUM 8 /* %eip */
57#define I386_EFLAGS_REGNUM 9 /* %eflags */
58#define I386_ST0_REGNUM 16 /* %st(0) */
59
fc633446
MK
60/* Names of the registers. The first 10 registers match the register
61 numbering scheme used by GCC for stabs and DWARF. */
c40e1eab 62
fc633446
MK
63static char *i386_register_names[] =
64{
65 "eax", "ecx", "edx", "ebx",
66 "esp", "ebp", "esi", "edi",
67 "eip", "eflags", "cs", "ss",
68 "ds", "es", "fs", "gs",
69 "st0", "st1", "st2", "st3",
70 "st4", "st5", "st6", "st7",
71 "fctrl", "fstat", "ftag", "fiseg",
72 "fioff", "foseg", "fooff", "fop",
73 "xmm0", "xmm1", "xmm2", "xmm3",
74 "xmm4", "xmm5", "xmm6", "xmm7",
75 "mxcsr"
76};
77
c40e1eab
MK
78static const int i386_num_register_names =
79 (sizeof (i386_register_names) / sizeof (*i386_register_names));
80
28fc6740
AC
81/* MMX registers. */
82
83static char *i386_mmx_names[] =
84{
85 "mm0", "mm1", "mm2", "mm3",
86 "mm4", "mm5", "mm6", "mm7"
87};
c40e1eab
MK
88
89static const int i386_num_mmx_regs =
90 (sizeof (i386_mmx_names) / sizeof (i386_mmx_names[0]));
91
92#define MM0_REGNUM NUM_REGS
28fc6740
AC
93
94static int
c40e1eab 95i386_mmx_regnum_p (int regnum)
28fc6740 96{
c40e1eab
MK
97 return (regnum >= MM0_REGNUM
98 && regnum < MM0_REGNUM + i386_num_mmx_regs);
28fc6740
AC
99}
100
23a34459
AC
101/* FP register? */
102
103int
104i386_fp_regnum_p (int regnum)
105{
106 return (regnum < NUM_REGS
c40e1eab 107 && (FP0_REGNUM && FP0_REGNUM <= regnum && regnum < FPC_REGNUM));
23a34459
AC
108}
109
110int
111i386_fpc_regnum_p (int regnum)
112{
113 return (regnum < NUM_REGS
c40e1eab 114 && (FPC_REGNUM <= regnum && regnum < XMM0_REGNUM));
23a34459
AC
115}
116
117/* SSE register? */
118
119int
120i386_sse_regnum_p (int regnum)
121{
122 return (regnum < NUM_REGS
c40e1eab 123 && (XMM0_REGNUM <= regnum && regnum < MXCSR_REGNUM));
23a34459
AC
124}
125
126int
127i386_mxcsr_regnum_p (int regnum)
128{
129 return (regnum < NUM_REGS
c40e1eab 130 && regnum == MXCSR_REGNUM);
23a34459
AC
131}
132
fc633446
MK
133/* Return the name of register REG. */
134
fa88f677 135const char *
fc633446
MK
136i386_register_name (int reg)
137{
c40e1eab
MK
138 if (reg >= 0 && reg < i386_num_register_names)
139 return i386_register_names[reg];
140
23a34459 141 if (i386_mmx_regnum_p (reg))
28fc6740 142 return i386_mmx_names[reg - MM0_REGNUM];
fc633446 143
c40e1eab 144 return NULL;
fc633446
MK
145}
146
85540d8c
MK
147/* Convert stabs register number REG to the appropriate register
148 number used by GDB. */
149
8201327c 150static int
85540d8c
MK
151i386_stab_reg_to_regnum (int reg)
152{
153 /* This implements what GCC calls the "default" register map. */
154 if (reg >= 0 && reg <= 7)
155 {
acd5c798 156 /* General-purpose registers. */
85540d8c
MK
157 return reg;
158 }
159 else if (reg >= 12 && reg <= 19)
160 {
161 /* Floating-point registers. */
162 return reg - 12 + FP0_REGNUM;
163 }
164 else if (reg >= 21 && reg <= 28)
165 {
166 /* SSE registers. */
167 return reg - 21 + XMM0_REGNUM;
168 }
169 else if (reg >= 29 && reg <= 36)
170 {
171 /* MMX registers. */
7d12f766 172 return reg - 29 + MM0_REGNUM;
85540d8c
MK
173 }
174
175 /* This will hopefully provoke a warning. */
176 return NUM_REGS + NUM_PSEUDO_REGS;
177}
178
8201327c 179/* Convert DWARF register number REG to the appropriate register
85540d8c
MK
180 number used by GDB. */
181
8201327c 182static int
85540d8c
MK
183i386_dwarf_reg_to_regnum (int reg)
184{
185 /* The DWARF register numbering includes %eip and %eflags, and
186 numbers the floating point registers differently. */
187 if (reg >= 0 && reg <= 9)
188 {
acd5c798 189 /* General-purpose registers. */
85540d8c
MK
190 return reg;
191 }
192 else if (reg >= 11 && reg <= 18)
193 {
194 /* Floating-point registers. */
195 return reg - 11 + FP0_REGNUM;
196 }
197 else if (reg >= 21)
198 {
199 /* The SSE and MMX registers have identical numbers as in stabs. */
200 return i386_stab_reg_to_regnum (reg);
201 }
202
203 /* This will hopefully provoke a warning. */
204 return NUM_REGS + NUM_PSEUDO_REGS;
205}
fc338970 206\f
917317f4 207
fc338970
MK
208/* This is the variable that is set with "set disassembly-flavor", and
209 its legitimate values. */
53904c9e
AC
210static const char att_flavor[] = "att";
211static const char intel_flavor[] = "intel";
212static const char *valid_flavors[] =
c5aa993b 213{
c906108c
SS
214 att_flavor,
215 intel_flavor,
216 NULL
217};
53904c9e 218static const char *disassembly_flavor = att_flavor;
acd5c798 219\f
c906108c 220
acd5c798
MK
221/* Use the program counter to determine the contents and size of a
222 breakpoint instruction. Return a pointer to a string of bytes that
223 encode a breakpoint instruction, store the length of the string in
224 *LEN and optionally adjust *PC to point to the correct memory
225 location for inserting the breakpoint.
c906108c 226
acd5c798
MK
227 On the i386 we have a single breakpoint that fits in a single byte
228 and can be inserted anywhere.
c906108c 229
acd5c798
MK
230 This function is 64-bit safe. */
231
232static const unsigned char *
233i386_breakpoint_from_pc (CORE_ADDR *pc, int *len)
c906108c 234{
acd5c798
MK
235 static unsigned char break_insn[] = { 0xcc }; /* int 3 */
236
237 *len = sizeof (break_insn);
238 return break_insn;
c906108c 239}
fc338970 240\f
acd5c798
MK
241#ifdef I386_REGNO_TO_SYMMETRY
242#error "The Sequent Symmetry is no longer supported."
243#endif
c906108c 244
acd5c798
MK
245/* According to the System V ABI, the registers %ebp, %ebx, %edi, %esi
246 and %esp "belong" to the calling function. Therefore these
247 registers should be saved if they're going to be modified. */
c906108c 248
acd5c798
MK
249/* The maximum number of saved registers. This should include all
250 registers mentioned above, and %eip. */
251#define I386_NUM_SAVED_REGS 9
252
253struct i386_frame_cache
c906108c 254{
acd5c798
MK
255 /* Base address. */
256 CORE_ADDR base;
257 CORE_ADDR sp_offset;
258 CORE_ADDR pc;
259
260 /* Saved registers. */
261 CORE_ADDR saved_regs[I386_NUM_SAVED_REGS];
262 CORE_ADDR saved_sp;
263 int pc_in_eax;
264
265 /* Stack space reserved for local variables. */
266 long locals;
267};
268
269/* Allocate and initialize a frame cache. */
270
271static struct i386_frame_cache *
272i386_alloc_frame_cache (void)
273{
274 struct i386_frame_cache *cache;
275 int i;
276
277 cache = FRAME_OBSTACK_ZALLOC (struct i386_frame_cache);
278
279 /* Base address. */
280 cache->base = 0;
281 cache->sp_offset = -4;
282 cache->pc = 0;
283
284 /* Saved registers. We initialize these to -1 since zero is a valid
285 offset (that's where %ebp is supposed to be stored). */
286 for (i = 0; i < I386_NUM_SAVED_REGS; i++)
287 cache->saved_regs[i] = -1;
288 cache->saved_sp = 0;
289 cache->pc_in_eax = 0;
290
291 /* Frameless until proven otherwise. */
292 cache->locals = -1;
293
294 return cache;
295}
c906108c 296
acd5c798
MK
297/* If the instruction at PC is a jump, return the address of its
298 target. Otherwise, return PC. */
c906108c 299
acd5c798
MK
300static CORE_ADDR
301i386_follow_jump (CORE_ADDR pc)
302{
303 unsigned char op;
304 long delta = 0;
305 int data16 = 0;
c906108c 306
acd5c798
MK
307 op = read_memory_unsigned_integer (pc, 1);
308 if (op == 0x66)
c906108c 309 {
c906108c 310 data16 = 1;
acd5c798 311 op = read_memory_unsigned_integer (pc + 1, 1);
c906108c
SS
312 }
313
acd5c798 314 switch (op)
c906108c
SS
315 {
316 case 0xe9:
fc338970 317 /* Relative jump: if data16 == 0, disp32, else disp16. */
c906108c
SS
318 if (data16)
319 {
acd5c798 320 delta = read_memory_integer (pc + 2, 2);
c906108c 321
fc338970
MK
322 /* Include the size of the jmp instruction (including the
323 0x66 prefix). */
acd5c798 324 delta += 4;
c906108c
SS
325 }
326 else
327 {
acd5c798 328 delta = read_memory_integer (pc + 1, 4);
c906108c 329
acd5c798
MK
330 /* Include the size of the jmp instruction. */
331 delta += 5;
c906108c
SS
332 }
333 break;
334 case 0xeb:
fc338970 335 /* Relative jump, disp8 (ignore data16). */
acd5c798 336 delta = read_memory_integer (pc + data16 + 1, 1);
c906108c 337
acd5c798 338 delta += data16 + 2;
c906108c
SS
339 break;
340 }
c906108c 341
acd5c798
MK
342 return pc + delta;
343}
fc338970 344
acd5c798
MK
345/* Check whether PC points at a prologue for a function returning a
346 structure or union. If so, it updates CACHE and returns the
347 address of the first instruction after the code sequence that
348 removes the "hidden" argument from the stack or CURRENT_PC,
349 whichever is smaller. Otherwise, return PC. */
c906108c 350
acd5c798
MK
351static CORE_ADDR
352i386_analyze_struct_return (CORE_ADDR pc, CORE_ADDR current_pc,
353 struct i386_frame_cache *cache)
c906108c 354{
acd5c798
MK
355 /* Functions that return a structure or union start with:
356
357 popl %eax 0x58
358 xchgl %eax, (%esp) 0x87 0x04 0x24
359 or xchgl %eax, 0(%esp) 0x87 0x44 0x24 0x00
360
361 (the System V compiler puts out the second `xchg' instruction,
362 and the assembler doesn't try to optimize it, so the 'sib' form
363 gets generated). This sequence is used to get the address of the
364 return buffer for a function that returns a structure. */
365 static unsigned char proto1[3] = { 0x87, 0x04, 0x24 };
366 static unsigned char proto2[4] = { 0x87, 0x44, 0x24, 0x00 };
367 unsigned char buf[4];
c906108c
SS
368 unsigned char op;
369
acd5c798
MK
370 if (current_pc <= pc)
371 return pc;
372
373 op = read_memory_unsigned_integer (pc, 1);
c906108c 374
acd5c798
MK
375 if (op != 0x58) /* popl %eax */
376 return pc;
c906108c 377
acd5c798
MK
378 read_memory (pc + 1, buf, 4);
379 if (memcmp (buf, proto1, 3) != 0 && memcmp (buf, proto2, 4) != 0)
380 return pc;
c906108c 381
acd5c798 382 if (current_pc == pc)
c906108c 383 {
acd5c798
MK
384 cache->sp_offset += 4;
385 return current_pc;
c906108c
SS
386 }
387
acd5c798 388 if (current_pc == pc + 1)
c906108c 389 {
acd5c798
MK
390 cache->pc_in_eax = 1;
391 return current_pc;
392 }
393
394 if (buf[1] == proto1[1])
395 return pc + 4;
396 else
397 return pc + 5;
398}
399
400static CORE_ADDR
401i386_skip_probe (CORE_ADDR pc)
402{
403 /* A function may start with
fc338970 404
acd5c798
MK
405 pushl constant
406 call _probe
407 addl $4, %esp
fc338970 408
acd5c798
MK
409 followed by
410
411 pushl %ebp
fc338970 412
acd5c798
MK
413 etc. */
414 unsigned char buf[8];
415 unsigned char op;
fc338970 416
acd5c798
MK
417 op = read_memory_unsigned_integer (pc, 1);
418
419 if (op == 0x68 || op == 0x6a)
420 {
421 int delta;
c906108c 422
acd5c798
MK
423 /* Skip past the `pushl' instruction; it has either a one-byte or a
424 four-byte operand, depending on the opcode. */
c906108c 425 if (op == 0x68)
acd5c798 426 delta = 5;
c906108c 427 else
acd5c798 428 delta = 2;
c906108c 429
acd5c798
MK
430 /* Read the following 8 bytes, which should be `call _probe' (6
431 bytes) followed by `addl $4,%esp' (2 bytes). */
432 read_memory (pc + delta, buf, sizeof (buf));
c906108c 433 if (buf[0] == 0xe8 && buf[6] == 0xc4 && buf[7] == 0x4)
acd5c798 434 pc += delta + sizeof (buf);
c906108c
SS
435 }
436
acd5c798
MK
437 return pc;
438}
439
440/* Check whether PC points at a code that sets up a new stack frame.
441 If so, it updates CACHE and returns the address of the first
442 instruction after the sequence that sets removes the "hidden"
443 argument from the stack or CURRENT_PC, whichever is smaller.
444 Otherwise, return PC. */
445
446static CORE_ADDR
447i386_analyze_frame_setup (CORE_ADDR pc, CORE_ADDR current_pc,
448 struct i386_frame_cache *cache)
449{
450 unsigned char op;
451
452 if (current_pc <= pc)
453 return current_pc;
454
455 op = read_memory_unsigned_integer (pc, 1);
456
c906108c 457 if (op == 0x55) /* pushl %ebp */
c5aa993b 458 {
acd5c798
MK
459 /* Take into account that we've executed the `pushl %ebp' that
460 starts this instruction sequence. */
461 cache->saved_regs[I386_EBP_REGNUM] = 0;
462 cache->sp_offset += 4;
463
464 /* If that's all, return now. */
465 if (current_pc <= pc + 1)
466 return current_pc;
467
468 /* Check for `movl %esp, %ebp' -- can be written in two ways. */
469 op = read_memory_unsigned_integer (pc + 1, 1);
470 switch (op)
c906108c
SS
471 {
472 case 0x8b:
acd5c798
MK
473 if (read_memory_unsigned_integer (pc + 2, 1) != 0xec)
474 return pc + 1;
c906108c
SS
475 break;
476 case 0x89:
acd5c798
MK
477 if (read_memory_unsigned_integer (pc + 2, 1) != 0xe5)
478 return pc + 1;
c906108c
SS
479 break;
480 default:
acd5c798 481 return pc + 1;
c906108c 482 }
acd5c798
MK
483
484 /* OK, we actually have a frame. We just don't know how large it is
485 yet. Set its size to zero. We'll adjust it if necessary. */
486 cache->locals = 0;
487
488 /* If that's all, return now. */
489 if (current_pc <= pc + 3)
490 return current_pc;
491
fc338970
MK
492 /* Check for stack adjustment
493
acd5c798 494 subl $XXX, %esp
fc338970
MK
495
496 NOTE: You can't subtract a 16 bit immediate from a 32 bit
497 reg, so we don't have to worry about a data16 prefix. */
acd5c798 498 op = read_memory_unsigned_integer (pc + 3, 1);
c906108c
SS
499 if (op == 0x83)
500 {
fc338970 501 /* `subl' with 8 bit immediate. */
acd5c798 502 if (read_memory_unsigned_integer (pc + 4, 1) != 0xec)
fc338970 503 /* Some instruction starting with 0x83 other than `subl'. */
acd5c798
MK
504 return pc + 3;
505
506 /* `subl' with signed byte immediate (though it wouldn't make
507 sense to be negative). */
508 cache->locals = read_memory_integer (pc + 5, 1);
509 return pc + 6;
c906108c
SS
510 }
511 else if (op == 0x81)
512 {
fc338970 513 /* Maybe it is `subl' with a 32 bit immedediate. */
acd5c798 514 if (read_memory_unsigned_integer (pc + 4, 1) != 0xec)
fc338970 515 /* Some instruction starting with 0x81 other than `subl'. */
acd5c798
MK
516 return pc + 3;
517
fc338970 518 /* It is `subl' with a 32 bit immediate. */
acd5c798
MK
519 cache->locals = read_memory_integer (pc + 5, 4);
520 return pc + 9;
c906108c
SS
521 }
522 else
523 {
acd5c798
MK
524 /* Some instruction other than `subl'. */
525 return pc + 3;
c906108c
SS
526 }
527 }
acd5c798 528 else if (op == 0xc8) /* enter $XXX */
c906108c 529 {
acd5c798
MK
530 cache->locals = read_memory_unsigned_integer (pc + 1, 2);
531 return pc + 4;
c906108c 532 }
21d0e8a4 533
acd5c798 534 return pc;
21d0e8a4
MK
535}
536
acd5c798
MK
537/* Check whether PC points at code that saves registers on the stack.
538 If so, it updates CACHE and returns the address of the first
539 instruction after the register saves or CURRENT_PC, whichever is
540 smaller. Otherwise, return PC. */
6bff26de
MK
541
542static CORE_ADDR
acd5c798
MK
543i386_analyze_register_saves (CORE_ADDR pc, CORE_ADDR current_pc,
544 struct i386_frame_cache *cache)
6bff26de 545{
acd5c798 546 if (cache->locals >= 0)
267bf4bb 547 {
acd5c798
MK
548 CORE_ADDR offset;
549 unsigned char op;
550 int i;
c0d1d883 551
acd5c798
MK
552 offset = - 4 - cache->locals;
553 for (i = 0; i < 8 && pc < current_pc; i++)
554 {
555 op = read_memory_unsigned_integer (pc, 1);
556 if (op < 0x50 || op > 0x57)
557 break;
0d17c81d 558
acd5c798
MK
559 cache->saved_regs[op - 0x50] = offset;
560 offset -= 4;
561 pc++;
562 }
6bff26de
MK
563 }
564
acd5c798 565 return pc;
22797942
AC
566}
567
acd5c798
MK
568/* Do a full analysis of the prologue at PC and update CACHE
569 accordingly. Bail out early if CURRENT_PC is reached. Return the
570 address where the analysis stopped.
ed84f6c1 571
fc338970
MK
572 We handle these cases:
573
574 The startup sequence can be at the start of the function, or the
575 function can start with a branch to startup code at the end.
576
577 %ebp can be set up with either the 'enter' instruction, or "pushl
578 %ebp, movl %esp, %ebp" (`enter' is too slow to be useful, but was
579 once used in the System V compiler).
580
581 Local space is allocated just below the saved %ebp by either the
582 'enter' instruction, or by "subl $<size>, %esp". 'enter' has a 16
583 bit unsigned argument for space to allocate, and the 'addl'
584 instruction could have either a signed byte, or 32 bit immediate.
585
586 Next, the registers used by this function are pushed. With the
587 System V compiler they will always be in the order: %edi, %esi,
588 %ebx (and sometimes a harmless bug causes it to also save but not
589 restore %eax); however, the code below is willing to see the pushes
590 in any order, and will handle up to 8 of them.
591
592 If the setup sequence is at the end of the function, then the next
593 instruction will be a branch back to the start. */
c906108c 594
acd5c798
MK
595static CORE_ADDR
596i386_analyze_prologue (CORE_ADDR pc, CORE_ADDR current_pc,
597 struct i386_frame_cache *cache)
c906108c 598{
acd5c798
MK
599 pc = i386_follow_jump (pc);
600 pc = i386_analyze_struct_return (pc, current_pc, cache);
601 pc = i386_skip_probe (pc);
602 pc = i386_analyze_frame_setup (pc, current_pc, cache);
603 return i386_analyze_register_saves (pc, current_pc, cache);
c906108c
SS
604}
605
fc338970 606/* Return PC of first real instruction. */
c906108c 607
3a1e71e3 608static CORE_ADDR
acd5c798 609i386_skip_prologue (CORE_ADDR start_pc)
c906108c 610{
c5aa993b 611 static unsigned char pic_pat[6] =
acd5c798
MK
612 {
613 0xe8, 0, 0, 0, 0, /* call 0x0 */
614 0x5b, /* popl %ebx */
c5aa993b 615 };
acd5c798
MK
616 struct i386_frame_cache cache;
617 CORE_ADDR pc;
618 unsigned char op;
619 int i;
c5aa993b 620
acd5c798
MK
621 cache.locals = -1;
622 pc = i386_analyze_prologue (start_pc, 0xffffffff, &cache);
623 if (cache.locals < 0)
624 return start_pc;
c5aa993b 625
acd5c798 626 /* Found valid frame setup. */
c906108c 627
fc338970
MK
628 /* The native cc on SVR4 in -K PIC mode inserts the following code
629 to get the address of the global offset table (GOT) into register
acd5c798
MK
630 %ebx:
631
fc338970
MK
632 call 0x0
633 popl %ebx
634 movl %ebx,x(%ebp) (optional)
635 addl y,%ebx
636
c906108c
SS
637 This code is with the rest of the prologue (at the end of the
638 function), so we have to skip it to get to the first real
639 instruction at the start of the function. */
c5aa993b 640
c906108c
SS
641 for (i = 0; i < 6; i++)
642 {
acd5c798 643 op = read_memory_unsigned_integer (pc + i, 1);
c5aa993b 644 if (pic_pat[i] != op)
c906108c
SS
645 break;
646 }
647 if (i == 6)
648 {
acd5c798
MK
649 int delta = 6;
650
651 op = read_memory_unsigned_integer (pc + delta, 1);
c906108c 652
c5aa993b 653 if (op == 0x89) /* movl %ebx, x(%ebp) */
c906108c 654 {
acd5c798
MK
655 op = read_memory_unsigned_integer (pc + delta + 1, 1);
656
fc338970 657 if (op == 0x5d) /* One byte offset from %ebp. */
acd5c798 658 delta += 3;
fc338970 659 else if (op == 0x9d) /* Four byte offset from %ebp. */
acd5c798 660 delta += 6;
fc338970 661 else /* Unexpected instruction. */
acd5c798
MK
662 delta = 0;
663
664 op = read_memory_unsigned_integer (pc + delta, 1);
c906108c 665 }
acd5c798 666
c5aa993b 667 /* addl y,%ebx */
acd5c798
MK
668 if (delta > 0 && op == 0x81
669 && read_memory_unsigned_integer (pc + delta + 1, 1) == 0xc3);
c906108c 670 {
acd5c798 671 pc += delta + 6;
c906108c
SS
672 }
673 }
c5aa993b 674
acd5c798 675 return i386_follow_jump (pc);
c906108c
SS
676}
677
acd5c798 678/* This function is 64-bit safe. */
93924b6b 679
acd5c798
MK
680static CORE_ADDR
681i386_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
93924b6b 682{
acd5c798
MK
683 char buf[8];
684
685 frame_unwind_register (next_frame, PC_REGNUM, buf);
686 return extract_typed_address (buf, builtin_type_void_func_ptr);
93924b6b 687}
acd5c798 688\f
93924b6b 689
acd5c798 690/* Normal frames. */
c5aa993b 691
acd5c798
MK
692static struct i386_frame_cache *
693i386_frame_cache (struct frame_info *next_frame, void **this_cache)
a7769679 694{
acd5c798 695 struct i386_frame_cache *cache;
c0d1d883 696 char buf[4];
acd5c798
MK
697 int i;
698
699 if (*this_cache)
700 return *this_cache;
701
702 cache = i386_alloc_frame_cache ();
703 *this_cache = cache;
704
705 /* In principle, for normal frames, %ebp holds the frame pointer,
706 which holds the base address for the current stack frame.
707 However, for functions that don't need it, the frame pointer is
708 optional. For these "frameless" functions the frame pointer is
709 actually the frame pointer of the calling frame. Signal
710 trampolines are just a special case of a "frameless" function.
711 They (usually) share their frame pointer with the frame that was
712 in progress when the signal occurred. */
713
714 frame_unwind_register (next_frame, I386_EBP_REGNUM, buf);
715 cache->base = extract_unsigned_integer (buf, 4);
716 if (cache->base == 0)
717 return cache;
718
719 /* For normal frames, %eip is stored at 4(%ebp). */
720 cache->saved_regs[I386_EIP_REGNUM] = 4;
721
722 cache->pc = frame_func_unwind (next_frame);
723 if (cache->pc != 0)
724 i386_analyze_prologue (cache->pc, frame_pc_unwind (next_frame), cache);
725
726 if (cache->locals < 0)
727 {
728 /* We didn't find a valid frame, which means that CACHE->base
729 currently holds the frame pointer for our calling frame. If
730 we're at the start of a function, or somewhere half-way its
731 prologue, the function's frame probably hasn't been fully
732 setup yet. Try to reconstruct the base address for the stack
733 frame by looking at the stack pointer. For truly "frameless"
734 functions this might work too. */
735
736 frame_unwind_register (next_frame, I386_ESP_REGNUM, buf);
737 cache->base = extract_unsigned_integer (buf, 4) + cache->sp_offset;
738 }
739
740 /* Now that we have the base address for the stack frame we can
741 calculate the value of %esp in the calling frame. */
742 cache->saved_sp = cache->base + 8;
a7769679 743
acd5c798
MK
744 /* Adjust all the saved registers such that they contain addresses
745 instead of offsets. */
746 for (i = 0; i < I386_NUM_SAVED_REGS; i++)
747 if (cache->saved_regs[i] != -1)
748 cache->saved_regs[i] += cache->base;
749
750 return cache;
a7769679
MK
751}
752
3a1e71e3 753static void
acd5c798
MK
754i386_frame_this_id (struct frame_info *next_frame, void **this_cache,
755 struct frame_id *this_id)
c906108c 756{
acd5c798
MK
757 struct i386_frame_cache *cache = i386_frame_cache (next_frame, this_cache);
758
759 /* This marks the outermost frame. */
760 if (cache->base == 0)
761 return;
762
763 (*this_id) = frame_id_build (cache->base + 8, cache->pc);
764}
765
766static void
767i386_frame_prev_register (struct frame_info *next_frame, void **this_cache,
768 int regnum, int *optimizedp,
769 enum lval_type *lvalp, CORE_ADDR *addrp,
770 int *realnump, void *valuep)
771{
772 struct i386_frame_cache *cache = i386_frame_cache (next_frame, this_cache);
773
774 gdb_assert (regnum >= 0);
775
776 /* The System V ABI says that:
777
778 "The flags register contains the system flags, such as the
779 direction flag and the carry flag. The direction flag must be
780 set to the forward (that is, zero) direction before entry and
781 upon exit from a function. Other user flags have no specified
782 role in the standard calling sequence and are not preserved."
783
784 To guarantee the "upon exit" part of that statement we fake a
785 saved flags register that has its direction flag cleared.
786
787 Note that GCC doesn't seem to rely on the fact that the direction
788 flag is cleared after a function return; it always explicitly
789 clears the flag before operations where it matters.
790
791 FIXME: kettenis/20030316: I'm not quite sure whether this is the
792 right thing to do. The way we fake the flags register here makes
793 it impossible to change it. */
794
795 if (regnum == I386_EFLAGS_REGNUM)
796 {
797 *optimizedp = 0;
798 *lvalp = not_lval;
799 *addrp = 0;
800 *realnump = -1;
801 if (valuep)
802 {
803 ULONGEST val;
c5aa993b 804
acd5c798
MK
805 /* Clear the direction flag. */
806 frame_unwind_unsigned_register (next_frame, PS_REGNUM, &val);
807 val &= ~(1 << 10);
808 store_unsigned_integer (valuep, 4, val);
809 }
810
811 return;
812 }
1211c4e4 813
acd5c798 814 if (regnum == I386_EIP_REGNUM && cache->pc_in_eax)
c906108c 815 {
acd5c798
MK
816 frame_register_unwind (next_frame, I386_EAX_REGNUM,
817 optimizedp, lvalp, addrp, realnump, valuep);
818 return;
819 }
820
821 if (regnum == I386_ESP_REGNUM && cache->saved_sp)
822 {
823 *optimizedp = 0;
824 *lvalp = not_lval;
825 *addrp = 0;
826 *realnump = -1;
827 if (valuep)
c906108c 828 {
acd5c798
MK
829 /* Store the value. */
830 store_unsigned_integer (valuep, 4, cache->saved_sp);
c906108c 831 }
acd5c798 832 return;
c906108c 833 }
acd5c798
MK
834
835 if (regnum < I386_NUM_SAVED_REGS && cache->saved_regs[regnum] != -1)
836 {
837 *optimizedp = 0;
838 *lvalp = lval_memory;
839 *addrp = cache->saved_regs[regnum];
840 *realnump = -1;
841 if (valuep)
842 {
843 /* Read the value in from memory. */
844 read_memory (*addrp, valuep,
845 register_size (current_gdbarch, regnum));
846 }
847 return;
848 }
849
850 frame_register_unwind (next_frame, regnum,
851 optimizedp, lvalp, addrp, realnump, valuep);
852}
853
854static const struct frame_unwind i386_frame_unwind =
855{
856 NORMAL_FRAME,
857 i386_frame_this_id,
858 i386_frame_prev_register
859};
860
861static const struct frame_unwind *
862i386_frame_p (CORE_ADDR pc)
863{
864 return &i386_frame_unwind;
865}
866\f
867
868/* Signal trampolines. */
869
870static struct i386_frame_cache *
871i386_sigtramp_frame_cache (struct frame_info *next_frame, void **this_cache)
872{
873 struct i386_frame_cache *cache;
874 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
875 CORE_ADDR addr;
876 char buf[4];
877
878 if (*this_cache)
879 return *this_cache;
880
881 cache = i386_alloc_frame_cache ();
882
883 frame_unwind_register (next_frame, I386_ESP_REGNUM, buf);
884 cache->base = extract_unsigned_integer (buf, 4) - 4;
885
886 addr = tdep->sigcontext_addr (next_frame);
887 cache->saved_regs[I386_EIP_REGNUM] = addr + tdep->sc_pc_offset;
888 cache->saved_regs[I386_ESP_REGNUM] = addr + tdep->sc_sp_offset;
889
890 *this_cache = cache;
891 return cache;
892}
893
894static void
895i386_sigtramp_frame_this_id (struct frame_info *next_frame, void **this_cache,
896 struct frame_id *this_id)
897{
898 struct i386_frame_cache *cache =
899 i386_sigtramp_frame_cache (next_frame, this_cache);
900
901 (*this_id) = frame_id_build (cache->base + 8, frame_pc_unwind (next_frame));
902}
903
904static void
905i386_sigtramp_frame_prev_register (struct frame_info *next_frame,
906 void **this_cache,
907 int regnum, int *optimizedp,
908 enum lval_type *lvalp, CORE_ADDR *addrp,
909 int *realnump, void *valuep)
910{
911 /* Make sure we've initialized the cache. */
912 i386_sigtramp_frame_cache (next_frame, this_cache);
913
914 i386_frame_prev_register (next_frame, this_cache, regnum,
915 optimizedp, lvalp, addrp, realnump, valuep);
c906108c 916}
c0d1d883 917
acd5c798
MK
918static const struct frame_unwind i386_sigtramp_frame_unwind =
919{
920 SIGTRAMP_FRAME,
921 i386_sigtramp_frame_this_id,
922 i386_sigtramp_frame_prev_register
923};
924
925static const struct frame_unwind *
926i386_sigtramp_frame_p (CORE_ADDR pc)
927{
928 char *name;
929
930 find_pc_partial_function (pc, &name, NULL, NULL);
931 if (PC_IN_SIGTRAMP (pc, name))
932 return &i386_sigtramp_frame_unwind;
933
934 return NULL;
935}
936\f
937
938static CORE_ADDR
939i386_frame_base_address (struct frame_info *next_frame, void **this_cache)
940{
941 struct i386_frame_cache *cache = i386_frame_cache (next_frame, this_cache);
942
943 return cache->base;
944}
945
946static const struct frame_base i386_frame_base =
947{
948 &i386_frame_unwind,
949 i386_frame_base_address,
950 i386_frame_base_address,
951 i386_frame_base_address
952};
953
c0d1d883 954static void
acd5c798 955i386_save_dummy_frame_tos (CORE_ADDR sp)
c0d1d883 956{
acd5c798
MK
957 generic_save_dummy_frame_tos (sp + 8);
958}
959
960static struct frame_id
961i386_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
962{
963 char buf[4];
964 CORE_ADDR fp;
965
966 frame_unwind_register (next_frame, I386_EBP_REGNUM, buf);
967 fp = extract_unsigned_integer (buf, 4);
968
969 return frame_id_build (fp + 8, frame_pc_unwind (next_frame));
c0d1d883 970}
fc338970 971\f
c906108c 972
fc338970
MK
973/* Figure out where the longjmp will land. Slurp the args out of the
974 stack. We expect the first arg to be a pointer to the jmp_buf
8201327c 975 structure from which we extract the address that we will land at.
28bcfd30 976 This address is copied into PC. This routine returns non-zero on
acd5c798
MK
977 success.
978
979 This function is 64-bit safe. */
c906108c 980
8201327c
MK
981static int
982i386_get_longjmp_target (CORE_ADDR *pc)
c906108c 983{
28bcfd30 984 char buf[8];
c906108c 985 CORE_ADDR sp, jb_addr;
8201327c 986 int jb_pc_offset = gdbarch_tdep (current_gdbarch)->jb_pc_offset;
f9d3c2a8 987 int len = TYPE_LENGTH (builtin_type_void_func_ptr);
c906108c 988
8201327c
MK
989 /* If JB_PC_OFFSET is -1, we have no way to find out where the
990 longjmp will land. */
991 if (jb_pc_offset == -1)
c906108c
SS
992 return 0;
993
8201327c 994 sp = read_register (SP_REGNUM);
28bcfd30 995 if (target_read_memory (sp + len, buf, len))
c906108c
SS
996 return 0;
997
f9d3c2a8 998 jb_addr = extract_typed_address (buf, builtin_type_void_func_ptr);
28bcfd30 999 if (target_read_memory (jb_addr + jb_pc_offset, buf, len))
8201327c 1000 return 0;
c906108c 1001
f9d3c2a8 1002 *pc = extract_typed_address (buf, builtin_type_void_func_ptr);
c906108c
SS
1003 return 1;
1004}
fc338970 1005\f
c906108c 1006
3a1e71e3 1007static CORE_ADDR
acd5c798
MK
1008i386_push_dummy_call (struct gdbarch *gdbarch, struct regcache *regcache,
1009 CORE_ADDR dummy_addr, int nargs, struct value **args,
1010 CORE_ADDR sp, int struct_return, CORE_ADDR struct_addr)
22f8ba57 1011{
acd5c798
MK
1012 char buf[4];
1013 int i;
1014
1015 /* Push arguments in reverse order. */
1016 for (i = nargs - 1; i >= 0; i--)
22f8ba57 1017 {
acd5c798
MK
1018 int len = TYPE_LENGTH (VALUE_ENCLOSING_TYPE (args[i]));
1019
1020 /* The System V ABI says that:
1021
1022 "An argument's size is increased, if necessary, to make it a
1023 multiple of [32-bit] words. This may require tail padding,
1024 depending on the size of the argument."
1025
1026 This makes sure the stack says word-aligned. */
1027 sp -= (len + 3) & ~3;
1028 write_memory (sp, VALUE_CONTENTS_ALL (args[i]), len);
1029 }
22f8ba57 1030
acd5c798
MK
1031 /* Push value address. */
1032 if (struct_return)
1033 {
22f8ba57 1034 sp -= 4;
fbd9dcd3 1035 store_unsigned_integer (buf, 4, struct_addr);
22f8ba57
MK
1036 write_memory (sp, buf, 4);
1037 }
1038
acd5c798
MK
1039 /* Store return address. */
1040 sp -= 4;
1041 store_unsigned_integer (buf, 4, dummy_addr);
1042 write_memory (sp, buf, 4);
1043
1044 /* Finally, update the stack pointer... */
1045 store_unsigned_integer (buf, 4, sp);
1046 regcache_cooked_write (regcache, I386_ESP_REGNUM, buf);
1047
1048 /* ...and fake a frame pointer. */
1049 regcache_cooked_write (regcache, I386_EBP_REGNUM, buf);
1050
22f8ba57
MK
1051 return sp;
1052}
1053
1a309862
MK
1054/* These registers are used for returning integers (and on some
1055 targets also for returning `struct' and `union' values when their
ef9dff19 1056 size and alignment match an integer type). */
acd5c798
MK
1057#define LOW_RETURN_REGNUM I386_EAX_REGNUM /* %eax */
1058#define HIGH_RETURN_REGNUM I386_EDX_REGNUM /* %edx */
1a309862
MK
1059
1060/* Extract from an array REGBUF containing the (raw) register state, a
1061 function return value of TYPE, and copy that, in virtual format,
1062 into VALBUF. */
1063
3a1e71e3 1064static void
00f8375e 1065i386_extract_return_value (struct type *type, struct regcache *regcache,
ebba8386 1066 void *dst)
c906108c 1067{
ebba8386 1068 bfd_byte *valbuf = dst;
1a309862 1069 int len = TYPE_LENGTH (type);
00f8375e 1070 char buf[I386_MAX_REGISTER_SIZE];
1a309862 1071
1e8d0a7b
MK
1072 if (TYPE_CODE (type) == TYPE_CODE_STRUCT
1073 && TYPE_NFIELDS (type) == 1)
3df1b9b4 1074 {
00f8375e 1075 i386_extract_return_value (TYPE_FIELD_TYPE (type, 0), regcache, valbuf);
3df1b9b4
MK
1076 return;
1077 }
1e8d0a7b
MK
1078
1079 if (TYPE_CODE (type) == TYPE_CODE_FLT)
c906108c 1080 {
94ea66b3 1081 if (FP0_REGNUM < 0)
1a309862
MK
1082 {
1083 warning ("Cannot find floating-point return value.");
1084 memset (valbuf, 0, len);
ef9dff19 1085 return;
1a309862
MK
1086 }
1087
c6ba6f0d
MK
1088 /* Floating-point return values can be found in %st(0). Convert
1089 its contents to the desired type. This is probably not
1090 exactly how it would happen on the target itself, but it is
1091 the best we can do. */
acd5c798 1092 regcache_raw_read (regcache, I386_ST0_REGNUM, buf);
00f8375e 1093 convert_typed_floating (buf, builtin_type_i387_ext, valbuf, type);
c906108c
SS
1094 }
1095 else
c5aa993b 1096 {
d4f3574e
SS
1097 int low_size = REGISTER_RAW_SIZE (LOW_RETURN_REGNUM);
1098 int high_size = REGISTER_RAW_SIZE (HIGH_RETURN_REGNUM);
1099
1100 if (len <= low_size)
00f8375e 1101 {
0818c12a 1102 regcache_raw_read (regcache, LOW_RETURN_REGNUM, buf);
00f8375e
MK
1103 memcpy (valbuf, buf, len);
1104 }
d4f3574e
SS
1105 else if (len <= (low_size + high_size))
1106 {
0818c12a 1107 regcache_raw_read (regcache, LOW_RETURN_REGNUM, buf);
00f8375e 1108 memcpy (valbuf, buf, low_size);
0818c12a 1109 regcache_raw_read (regcache, HIGH_RETURN_REGNUM, buf);
00f8375e 1110 memcpy (valbuf + low_size, buf, len - low_size);
d4f3574e
SS
1111 }
1112 else
8e65ff28
AC
1113 internal_error (__FILE__, __LINE__,
1114 "Cannot extract return value of %d bytes long.", len);
c906108c
SS
1115 }
1116}
1117
ef9dff19
MK
1118/* Write into the appropriate registers a function return value stored
1119 in VALBUF of type TYPE, given in virtual format. */
1120
3a1e71e3 1121static void
3d7f4f49
MK
1122i386_store_return_value (struct type *type, struct regcache *regcache,
1123 const void *valbuf)
ef9dff19
MK
1124{
1125 int len = TYPE_LENGTH (type);
1126
1e8d0a7b
MK
1127 if (TYPE_CODE (type) == TYPE_CODE_STRUCT
1128 && TYPE_NFIELDS (type) == 1)
3df1b9b4 1129 {
3d7f4f49 1130 i386_store_return_value (TYPE_FIELD_TYPE (type, 0), regcache, valbuf);
3df1b9b4
MK
1131 return;
1132 }
1e8d0a7b
MK
1133
1134 if (TYPE_CODE (type) == TYPE_CODE_FLT)
ef9dff19 1135 {
3d7f4f49 1136 ULONGEST fstat;
c6ba6f0d 1137 char buf[FPU_REG_RAW_SIZE];
ccb945b8 1138
94ea66b3 1139 if (FP0_REGNUM < 0)
ef9dff19
MK
1140 {
1141 warning ("Cannot set floating-point return value.");
1142 return;
1143 }
1144
635b0cc1
MK
1145 /* Returning floating-point values is a bit tricky. Apart from
1146 storing the return value in %st(0), we have to simulate the
1147 state of the FPU at function return point. */
1148
c6ba6f0d
MK
1149 /* Convert the value found in VALBUF to the extended
1150 floating-point format used by the FPU. This is probably
1151 not exactly how it would happen on the target itself, but
1152 it is the best we can do. */
1153 convert_typed_floating (valbuf, type, buf, builtin_type_i387_ext);
acd5c798 1154 regcache_raw_write (regcache, I386_ST0_REGNUM, buf);
ccb945b8 1155
635b0cc1
MK
1156 /* Set the top of the floating-point register stack to 7. The
1157 actual value doesn't really matter, but 7 is what a normal
1158 function return would end up with if the program started out
1159 with a freshly initialized FPU. */
3d7f4f49 1160 regcache_raw_read_unsigned (regcache, FSTAT_REGNUM, &fstat);
ccb945b8 1161 fstat |= (7 << 11);
3d7f4f49 1162 regcache_raw_write_unsigned (regcache, FSTAT_REGNUM, fstat);
ccb945b8 1163
635b0cc1
MK
1164 /* Mark %st(1) through %st(7) as empty. Since we set the top of
1165 the floating-point register stack to 7, the appropriate value
1166 for the tag word is 0x3fff. */
3d7f4f49 1167 regcache_raw_write_unsigned (regcache, FTAG_REGNUM, 0x3fff);
ef9dff19
MK
1168 }
1169 else
1170 {
1171 int low_size = REGISTER_RAW_SIZE (LOW_RETURN_REGNUM);
1172 int high_size = REGISTER_RAW_SIZE (HIGH_RETURN_REGNUM);
1173
1174 if (len <= low_size)
3d7f4f49 1175 regcache_raw_write_part (regcache, LOW_RETURN_REGNUM, 0, len, valbuf);
ef9dff19
MK
1176 else if (len <= (low_size + high_size))
1177 {
3d7f4f49
MK
1178 regcache_raw_write (regcache, LOW_RETURN_REGNUM, valbuf);
1179 regcache_raw_write_part (regcache, HIGH_RETURN_REGNUM, 0,
1180 len - low_size, (char *) valbuf + low_size);
ef9dff19
MK
1181 }
1182 else
8e65ff28
AC
1183 internal_error (__FILE__, __LINE__,
1184 "Cannot store return value of %d bytes long.", len);
ef9dff19
MK
1185 }
1186}
f7af9647 1187
751f1375
MK
1188/* Extract from REGCACHE, which contains the (raw) register state, the
1189 address in which a function should return its structure value, as a
1190 CORE_ADDR. */
f7af9647 1191
3a1e71e3 1192static CORE_ADDR
00f8375e 1193i386_extract_struct_value_address (struct regcache *regcache)
f7af9647 1194{
acd5c798 1195 char buf[4];
751f1375 1196
acd5c798
MK
1197 regcache_cooked_read (regcache, I386_EAX_REGNUM, buf);
1198 return extract_unsigned_integer (buf, 4);
f7af9647 1199}
fc338970 1200\f
ef9dff19 1201
8201327c
MK
1202/* This is the variable that is set with "set struct-convention", and
1203 its legitimate values. */
1204static const char default_struct_convention[] = "default";
1205static const char pcc_struct_convention[] = "pcc";
1206static const char reg_struct_convention[] = "reg";
1207static const char *valid_conventions[] =
1208{
1209 default_struct_convention,
1210 pcc_struct_convention,
1211 reg_struct_convention,
1212 NULL
1213};
1214static const char *struct_convention = default_struct_convention;
1215
1216static int
1217i386_use_struct_convention (int gcc_p, struct type *type)
1218{
1219 enum struct_return struct_return;
1220
1221 if (struct_convention == default_struct_convention)
1222 struct_return = gdbarch_tdep (current_gdbarch)->struct_return;
1223 else if (struct_convention == pcc_struct_convention)
1224 struct_return = pcc_struct_return;
1225 else
1226 struct_return = reg_struct_return;
1227
1228 return generic_use_struct_convention (struct_return == reg_struct_return,
1229 type);
1230}
1231\f
1232
d7a0d72c
MK
1233/* Return the GDB type object for the "standard" data type of data in
1234 register REGNUM. Perhaps %esi and %edi should go here, but
1235 potentially they could be used for things other than address. */
1236
3a1e71e3 1237static struct type *
4e259f09 1238i386_register_type (struct gdbarch *gdbarch, int regnum)
d7a0d72c 1239{
acd5c798
MK
1240 if (regnum == I386_EIP_REGNUM
1241 || regnum == I386_EBP_REGNUM || regnum == I386_ESP_REGNUM)
d7a0d72c
MK
1242 return lookup_pointer_type (builtin_type_void);
1243
23a34459 1244 if (i386_fp_regnum_p (regnum))
c6ba6f0d 1245 return builtin_type_i387_ext;
d7a0d72c 1246
23a34459 1247 if (i386_sse_regnum_p (regnum))
3139facc 1248 return builtin_type_vec128i;
d7a0d72c 1249
23a34459 1250 if (i386_mmx_regnum_p (regnum))
28fc6740
AC
1251 return builtin_type_vec64i;
1252
d7a0d72c
MK
1253 return builtin_type_int;
1254}
1255
28fc6740 1256/* Map a cooked register onto a raw register or memory. For the i386,
acd5c798 1257 the MMX registers need to be mapped onto floating point registers. */
28fc6740
AC
1258
1259static int
c86c27af 1260i386_mmx_regnum_to_fp_regnum (struct regcache *regcache, int regnum)
28fc6740
AC
1261{
1262 int mmxi;
1263 ULONGEST fstat;
1264 int tos;
1265 int fpi;
c86c27af 1266
28fc6740
AC
1267 mmxi = regnum - MM0_REGNUM;
1268 regcache_raw_read_unsigned (regcache, FSTAT_REGNUM, &fstat);
1269 tos = (fstat >> 11) & 0x7;
1270 fpi = (mmxi + tos) % 8;
c86c27af 1271
28fc6740
AC
1272 return (FP0_REGNUM + fpi);
1273}
1274
1275static void
1276i386_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
1277 int regnum, void *buf)
1278{
23a34459 1279 if (i386_mmx_regnum_p (regnum))
28fc6740 1280 {
d9d9c31f 1281 char mmx_buf[MAX_REGISTER_SIZE];
c86c27af
MK
1282 int fpnum = i386_mmx_regnum_to_fp_regnum (regcache, regnum);
1283
28fc6740 1284 /* Extract (always little endian). */
c86c27af 1285 regcache_raw_read (regcache, fpnum, mmx_buf);
28fc6740
AC
1286 memcpy (buf, mmx_buf, REGISTER_RAW_SIZE (regnum));
1287 }
1288 else
1289 regcache_raw_read (regcache, regnum, buf);
1290}
1291
1292static void
1293i386_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
1294 int regnum, const void *buf)
1295{
23a34459 1296 if (i386_mmx_regnum_p (regnum))
28fc6740 1297 {
d9d9c31f 1298 char mmx_buf[MAX_REGISTER_SIZE];
c86c27af
MK
1299 int fpnum = i386_mmx_regnum_to_fp_regnum (regcache, regnum);
1300
28fc6740
AC
1301 /* Read ... */
1302 regcache_raw_read (regcache, fpnum, mmx_buf);
1303 /* ... Modify ... (always little endian). */
1304 memcpy (mmx_buf, buf, REGISTER_RAW_SIZE (regnum));
1305 /* ... Write. */
1306 regcache_raw_write (regcache, fpnum, mmx_buf);
1307 }
1308 else
1309 regcache_raw_write (regcache, regnum, buf);
1310}
1311
d7a0d72c
MK
1312/* Return true iff register REGNUM's virtual format is different from
1313 its raw format. Note that this definition assumes that the host
1314 supports IEEE 32-bit floats, since it doesn't say that SSE
1315 registers need conversion. Even if we can't find a counterexample,
1316 this is still sloppy. */
1317
3a1e71e3 1318static int
d7a0d72c
MK
1319i386_register_convertible (int regnum)
1320{
23a34459 1321 return i386_fp_regnum_p (regnum);
d7a0d72c
MK
1322}
1323
ac27f131 1324/* Convert data from raw format for register REGNUM in buffer FROM to
3d261580 1325 virtual format with type TYPE in buffer TO. */
ac27f131 1326
3a1e71e3 1327static void
ac27f131
MK
1328i386_register_convert_to_virtual (int regnum, struct type *type,
1329 char *from, char *to)
1330{
23a34459 1331 gdb_assert (i386_fp_regnum_p (regnum));
3d261580
MK
1332
1333 /* We only support floating-point values. */
8d7f6b4a
MK
1334 if (TYPE_CODE (type) != TYPE_CODE_FLT)
1335 {
1336 warning ("Cannot convert floating-point register value "
1337 "to non-floating-point type.");
1338 memset (to, 0, TYPE_LENGTH (type));
1339 return;
1340 }
3d261580 1341
c6ba6f0d
MK
1342 /* Convert to TYPE. This should be a no-op if TYPE is equivalent to
1343 the extended floating-point format used by the FPU. */
1344 convert_typed_floating (from, builtin_type_i387_ext, to, type);
ac27f131
MK
1345}
1346
1347/* Convert data from virtual format with type TYPE in buffer FROM to
3d261580 1348 raw format for register REGNUM in buffer TO. */
ac27f131 1349
3a1e71e3 1350static void
ac27f131
MK
1351i386_register_convert_to_raw (struct type *type, int regnum,
1352 char *from, char *to)
1353{
23a34459 1354 gdb_assert (i386_fp_regnum_p (regnum));
c6ba6f0d
MK
1355
1356 /* We only support floating-point values. */
1357 if (TYPE_CODE (type) != TYPE_CODE_FLT)
1358 {
1359 warning ("Cannot convert non-floating-point type "
1360 "to floating-point register value.");
1361 memset (to, 0, TYPE_LENGTH (type));
1362 return;
1363 }
3d261580 1364
c6ba6f0d
MK
1365 /* Convert from TYPE. This should be a no-op if TYPE is equivalent
1366 to the extended floating-point format used by the FPU. */
1367 convert_typed_floating (from, type, to, builtin_type_i387_ext);
ac27f131 1368}
ac27f131 1369\f
fc338970 1370
c906108c 1371#ifdef STATIC_TRANSFORM_NAME
fc338970
MK
1372/* SunPRO encodes the static variables. This is not related to C++
1373 mangling, it is done for C too. */
c906108c
SS
1374
1375char *
fba45db2 1376sunpro_static_transform_name (char *name)
c906108c
SS
1377{
1378 char *p;
1379 if (IS_STATIC_TRANSFORM_NAME (name))
1380 {
fc338970
MK
1381 /* For file-local statics there will be a period, a bunch of
1382 junk (the contents of which match a string given in the
c5aa993b
JM
1383 N_OPT), a period and the name. For function-local statics
1384 there will be a bunch of junk (which seems to change the
1385 second character from 'A' to 'B'), a period, the name of the
1386 function, and the name. So just skip everything before the
1387 last period. */
c906108c
SS
1388 p = strrchr (name, '.');
1389 if (p != NULL)
1390 name = p + 1;
1391 }
1392 return name;
1393}
1394#endif /* STATIC_TRANSFORM_NAME */
fc338970 1395\f
c906108c 1396
fc338970 1397/* Stuff for WIN32 PE style DLL's but is pretty generic really. */
c906108c
SS
1398
1399CORE_ADDR
1cce71eb 1400i386_pe_skip_trampoline_code (CORE_ADDR pc, char *name)
c906108c 1401{
fc338970 1402 if (pc && read_memory_unsigned_integer (pc, 2) == 0x25ff) /* jmp *(dest) */
c906108c 1403 {
c5aa993b 1404 unsigned long indirect = read_memory_unsigned_integer (pc + 2, 4);
c906108c 1405 struct minimal_symbol *indsym =
fc338970 1406 indirect ? lookup_minimal_symbol_by_pc (indirect) : 0;
645dd519 1407 char *symname = indsym ? SYMBOL_LINKAGE_NAME (indsym) : 0;
c906108c 1408
c5aa993b 1409 if (symname)
c906108c 1410 {
c5aa993b
JM
1411 if (strncmp (symname, "__imp_", 6) == 0
1412 || strncmp (symname, "_imp_", 5) == 0)
c906108c
SS
1413 return name ? 1 : read_memory_unsigned_integer (indirect, 4);
1414 }
1415 }
fc338970 1416 return 0; /* Not a trampoline. */
c906108c 1417}
fc338970
MK
1418\f
1419
8201327c
MK
1420/* Return non-zero if PC and NAME show that we are in a signal
1421 trampoline. */
1422
1423static int
1424i386_pc_in_sigtramp (CORE_ADDR pc, char *name)
1425{
1426 return (name && strcmp ("_sigtramp", name) == 0);
1427}
1428\f
1429
fc338970
MK
1430/* We have two flavours of disassembly. The machinery on this page
1431 deals with switching between those. */
c906108c
SS
1432
1433static int
5e3397bb 1434i386_print_insn (bfd_vma pc, disassemble_info *info)
c906108c 1435{
5e3397bb
MK
1436 gdb_assert (disassembly_flavor == att_flavor
1437 || disassembly_flavor == intel_flavor);
1438
1439 /* FIXME: kettenis/20020915: Until disassembler_options is properly
1440 constified, cast to prevent a compiler warning. */
1441 info->disassembler_options = (char *) disassembly_flavor;
1442 info->mach = gdbarch_bfd_arch_info (current_gdbarch)->mach;
1443
1444 return print_insn_i386 (pc, info);
7a292a7a 1445}
fc338970 1446\f
3ce1502b 1447
8201327c
MK
1448/* There are a few i386 architecture variants that differ only
1449 slightly from the generic i386 target. For now, we don't give them
1450 their own source file, but include them here. As a consequence,
1451 they'll always be included. */
3ce1502b 1452
8201327c 1453/* System V Release 4 (SVR4). */
3ce1502b 1454
8201327c
MK
1455static int
1456i386_svr4_pc_in_sigtramp (CORE_ADDR pc, char *name)
d2a7c97a 1457{
acd5c798
MK
1458 /* UnixWare uses _sigacthandler. The origin of the other symbols is
1459 currently unknown. */
8201327c
MK
1460 return (name && (strcmp ("_sigreturn", name) == 0
1461 || strcmp ("_sigacthandler", name) == 0
1462 || strcmp ("sigvechandler", name) == 0));
1463}
d2a7c97a 1464
acd5c798
MK
1465/* Assuming NEXT_FRAME is for a frame following a SVR4 sigtramp
1466 routine, return the address of the associated sigcontext (ucontext)
1467 structure. */
3ce1502b 1468
3a1e71e3 1469static CORE_ADDR
acd5c798 1470i386_svr4_sigcontext_addr (struct frame_info *next_frame)
8201327c 1471{
acd5c798
MK
1472 char buf[4];
1473 CORE_ADDR sp;
3ce1502b 1474
acd5c798
MK
1475 frame_unwind_register (next_frame, I386_ESP_REGNUM, buf);
1476 sp = extract_unsigned_integer (buf, 4);
21d0e8a4 1477
acd5c798 1478 return read_memory_unsigned_integer (sp + 8, 4);
8201327c
MK
1479}
1480\f
3ce1502b 1481
8201327c 1482/* DJGPP. */
d2a7c97a 1483
8201327c
MK
1484static int
1485i386_go32_pc_in_sigtramp (CORE_ADDR pc, char *name)
1486{
1487 /* DJGPP doesn't have any special frames for signal handlers. */
1488 return 0;
1489}
1490\f
d2a7c97a 1491
8201327c 1492/* Generic ELF. */
d2a7c97a 1493
8201327c
MK
1494void
1495i386_elf_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
1496{
1497 /* We typically use stabs-in-ELF with the DWARF register numbering. */
1498 set_gdbarch_stab_reg_to_regnum (gdbarch, i386_dwarf_reg_to_regnum);
1499}
3ce1502b 1500
8201327c 1501/* System V Release 4 (SVR4). */
3ce1502b 1502
8201327c
MK
1503void
1504i386_svr4_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
1505{
1506 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3ce1502b 1507
8201327c
MK
1508 /* System V Release 4 uses ELF. */
1509 i386_elf_init_abi (info, gdbarch);
3ce1502b 1510
dfe01d39
MK
1511 /* System V Release 4 has shared libraries. */
1512 set_gdbarch_in_solib_call_trampoline (gdbarch, in_plt_section);
1513 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
1514
8201327c 1515 set_gdbarch_pc_in_sigtramp (gdbarch, i386_svr4_pc_in_sigtramp);
21d0e8a4 1516 tdep->sigcontext_addr = i386_svr4_sigcontext_addr;
acd5c798
MK
1517 tdep->sc_pc_offset = 36 + 14 * 4;
1518 tdep->sc_sp_offset = 36 + 17 * 4;
3ce1502b 1519
8201327c 1520 tdep->jb_pc_offset = 20;
3ce1502b
MK
1521}
1522
8201327c 1523/* DJGPP. */
3ce1502b 1524
3a1e71e3 1525static void
8201327c 1526i386_go32_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
3ce1502b 1527{
8201327c 1528 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3ce1502b 1529
8201327c 1530 set_gdbarch_pc_in_sigtramp (gdbarch, i386_go32_pc_in_sigtramp);
3ce1502b 1531
8201327c 1532 tdep->jb_pc_offset = 36;
3ce1502b
MK
1533}
1534
8201327c 1535/* NetWare. */
3ce1502b 1536
3a1e71e3 1537static void
8201327c 1538i386_nw_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
3ce1502b 1539{
8201327c 1540 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3ce1502b 1541
8201327c 1542 tdep->jb_pc_offset = 24;
d2a7c97a 1543}
8201327c 1544\f
2acceee2 1545
38c968cf
AC
1546/* i386 register groups. In addition to the normal groups, add "mmx"
1547 and "sse". */
1548
1549static struct reggroup *i386_sse_reggroup;
1550static struct reggroup *i386_mmx_reggroup;
1551
1552static void
1553i386_init_reggroups (void)
1554{
1555 i386_sse_reggroup = reggroup_new ("sse", USER_REGGROUP);
1556 i386_mmx_reggroup = reggroup_new ("mmx", USER_REGGROUP);
1557}
1558
1559static void
1560i386_add_reggroups (struct gdbarch *gdbarch)
1561{
1562 reggroup_add (gdbarch, i386_sse_reggroup);
1563 reggroup_add (gdbarch, i386_mmx_reggroup);
1564 reggroup_add (gdbarch, general_reggroup);
1565 reggroup_add (gdbarch, float_reggroup);
1566 reggroup_add (gdbarch, all_reggroup);
1567 reggroup_add (gdbarch, save_reggroup);
1568 reggroup_add (gdbarch, restore_reggroup);
1569 reggroup_add (gdbarch, vector_reggroup);
1570 reggroup_add (gdbarch, system_reggroup);
1571}
1572
1573int
1574i386_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
1575 struct reggroup *group)
1576{
1577 int sse_regnum_p = (i386_sse_regnum_p (regnum)
1578 || i386_mxcsr_regnum_p (regnum));
1579 int fp_regnum_p = (i386_fp_regnum_p (regnum)
1580 || i386_fpc_regnum_p (regnum));
1581 int mmx_regnum_p = (i386_mmx_regnum_p (regnum));
acd5c798 1582
38c968cf
AC
1583 if (group == i386_mmx_reggroup)
1584 return mmx_regnum_p;
1585 if (group == i386_sse_reggroup)
1586 return sse_regnum_p;
1587 if (group == vector_reggroup)
1588 return (mmx_regnum_p || sse_regnum_p);
1589 if (group == float_reggroup)
1590 return fp_regnum_p;
1591 if (group == general_reggroup)
1592 return (!fp_regnum_p && !mmx_regnum_p && !sse_regnum_p);
acd5c798 1593
38c968cf
AC
1594 return default_register_reggroup_p (gdbarch, regnum, group);
1595}
38c968cf 1596\f
acd5c798 1597
3a1e71e3 1598static struct gdbarch *
a62cc96e
AC
1599i386_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1600{
cd3c07fc 1601 struct gdbarch_tdep *tdep;
a62cc96e
AC
1602 struct gdbarch *gdbarch;
1603
4be87837
DJ
1604 /* If there is already a candidate, use it. */
1605 arches = gdbarch_list_lookup_by_info (arches, &info);
1606 if (arches != NULL)
1607 return arches->gdbarch;
a62cc96e
AC
1608
1609 /* Allocate space for the new architecture. */
1610 tdep = XMALLOC (struct gdbarch_tdep);
1611 gdbarch = gdbarch_alloc (&info, tdep);
1612
8201327c 1613 /* The i386 default settings don't include the SSE registers.
356a6b3e
MK
1614 FIXME: kettenis/20020614: They do include the FPU registers for
1615 now, which probably is not quite right. */
8201327c 1616 tdep->num_xmm_regs = 0;
d2a7c97a 1617
8201327c
MK
1618 tdep->jb_pc_offset = -1;
1619 tdep->struct_return = pcc_struct_return;
8201327c
MK
1620 tdep->sigtramp_start = 0;
1621 tdep->sigtramp_end = 0;
21d0e8a4 1622 tdep->sigcontext_addr = NULL;
8201327c 1623 tdep->sc_pc_offset = -1;
21d0e8a4 1624 tdep->sc_sp_offset = -1;
8201327c 1625
896fb97d
MK
1626 /* The format used for `long double' on almost all i386 targets is
1627 the i387 extended floating-point format. In fact, of all targets
1628 in the GCC 2.95 tree, only OSF/1 does it different, and insists
1629 on having a `long double' that's not `long' at all. */
1630 set_gdbarch_long_double_format (gdbarch, &floatformat_i387_ext);
21d0e8a4 1631
66da5fd8 1632 /* Although the i387 extended floating-point has only 80 significant
896fb97d
MK
1633 bits, a `long double' actually takes up 96, probably to enforce
1634 alignment. */
1635 set_gdbarch_long_double_bit (gdbarch, 96);
1636
acd5c798
MK
1637 /* The default ABI includes general-purpose registers and
1638 floating-point registers. */
356a6b3e 1639 set_gdbarch_num_regs (gdbarch, I386_NUM_GREGS + I386_NUM_FREGS);
acd5c798
MK
1640 set_gdbarch_register_name (gdbarch, i386_register_name);
1641 set_gdbarch_register_type (gdbarch, i386_register_type);
21d0e8a4 1642
acd5c798
MK
1643 /* Register numbers of various important registers. */
1644 set_gdbarch_sp_regnum (gdbarch, I386_ESP_REGNUM); /* %esp */
1645 set_gdbarch_pc_regnum (gdbarch, I386_EIP_REGNUM); /* %eip */
1646 set_gdbarch_ps_regnum (gdbarch, I386_EFLAGS_REGNUM); /* %eflags */
1647 set_gdbarch_fp0_regnum (gdbarch, I386_ST0_REGNUM); /* %st(0) */
356a6b3e
MK
1648
1649 /* Use the "default" register numbering scheme for stabs and COFF. */
1650 set_gdbarch_stab_reg_to_regnum (gdbarch, i386_stab_reg_to_regnum);
1651 set_gdbarch_sdb_reg_to_regnum (gdbarch, i386_stab_reg_to_regnum);
1652
1653 /* Use the DWARF register numbering scheme for DWARF and DWARF 2. */
1654 set_gdbarch_dwarf_reg_to_regnum (gdbarch, i386_dwarf_reg_to_regnum);
1655 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, i386_dwarf_reg_to_regnum);
1656
1657 /* We don't define ECOFF_REG_TO_REGNUM, since ECOFF doesn't seem to
1658 be in use on any of the supported i386 targets. */
1659
61113f8b
MK
1660 set_gdbarch_print_float_info (gdbarch, i387_print_float_info);
1661
8201327c 1662 set_gdbarch_get_longjmp_target (gdbarch, i386_get_longjmp_target);
96297dab 1663
a62cc96e 1664 /* Call dummy code. */
acd5c798 1665 set_gdbarch_push_dummy_call (gdbarch, i386_push_dummy_call);
a62cc96e 1666
b6197528
MK
1667 set_gdbarch_register_convertible (gdbarch, i386_register_convertible);
1668 set_gdbarch_register_convert_to_virtual (gdbarch,
1669 i386_register_convert_to_virtual);
1670 set_gdbarch_register_convert_to_raw (gdbarch, i386_register_convert_to_raw);
1671
00f8375e 1672 set_gdbarch_extract_return_value (gdbarch, i386_extract_return_value);
3d7f4f49 1673 set_gdbarch_store_return_value (gdbarch, i386_store_return_value);
00f8375e 1674 set_gdbarch_extract_struct_value_address (gdbarch,
fc08ec52 1675 i386_extract_struct_value_address);
8201327c
MK
1676 set_gdbarch_use_struct_convention (gdbarch, i386_use_struct_convention);
1677
93924b6b
MK
1678 set_gdbarch_skip_prologue (gdbarch, i386_skip_prologue);
1679
1680 /* Stack grows downward. */
1681 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
1682
1683 set_gdbarch_breakpoint_from_pc (gdbarch, i386_breakpoint_from_pc);
1684 set_gdbarch_decr_pc_after_break (gdbarch, 1);
1685 set_gdbarch_function_start_offset (gdbarch, 0);
42fdc8df 1686
42fdc8df 1687 set_gdbarch_frame_args_skip (gdbarch, 8);
54299a1d 1688 set_gdbarch_frame_num_args (gdbarch, frame_num_args_unknown);
8201327c
MK
1689 set_gdbarch_pc_in_sigtramp (gdbarch, i386_pc_in_sigtramp);
1690
28fc6740 1691 /* Wire in the MMX registers. */
0f751ff2 1692 set_gdbarch_num_pseudo_regs (gdbarch, i386_num_mmx_regs);
28fc6740
AC
1693 set_gdbarch_pseudo_register_read (gdbarch, i386_pseudo_register_read);
1694 set_gdbarch_pseudo_register_write (gdbarch, i386_pseudo_register_write);
1695
5e3397bb
MK
1696 set_gdbarch_print_insn (gdbarch, i386_print_insn);
1697
acd5c798
MK
1698 set_gdbarch_unwind_dummy_id (gdbarch, i386_unwind_dummy_id);
1699 set_gdbarch_save_dummy_frame_tos (gdbarch, i386_save_dummy_frame_tos);
1700
1701 set_gdbarch_unwind_pc (gdbarch, i386_unwind_pc);
1702
38c968cf
AC
1703 /* Add the i386 register groups. */
1704 i386_add_reggroups (gdbarch);
1705 set_gdbarch_register_reggroup_p (gdbarch, i386_register_reggroup_p);
1706
acd5c798 1707 frame_base_set_default (gdbarch, &i386_frame_base);
6c0e89ed 1708
3ce1502b 1709 /* Hook in ABI-specific overrides, if they have been registered. */
4be87837 1710 gdbarch_init_osabi (info, gdbarch);
3ce1502b 1711
acd5c798
MK
1712 frame_unwind_append_predicate (gdbarch, i386_sigtramp_frame_p);
1713 frame_unwind_append_predicate (gdbarch, i386_frame_p);
1714
a62cc96e
AC
1715 return gdbarch;
1716}
1717
8201327c
MK
1718static enum gdb_osabi
1719i386_coff_osabi_sniffer (bfd *abfd)
1720{
762c5349
MK
1721 if (strcmp (bfd_get_target (abfd), "coff-go32-exe") == 0
1722 || strcmp (bfd_get_target (abfd), "coff-go32") == 0)
8201327c
MK
1723 return GDB_OSABI_GO32;
1724
1725 return GDB_OSABI_UNKNOWN;
1726}
1727
1728static enum gdb_osabi
1729i386_nlm_osabi_sniffer (bfd *abfd)
1730{
1731 return GDB_OSABI_NETWARE;
1732}
1733\f
1734
28e9e0f0
MK
1735/* Provide a prototype to silence -Wmissing-prototypes. */
1736void _initialize_i386_tdep (void);
1737
c906108c 1738void
fba45db2 1739_initialize_i386_tdep (void)
c906108c 1740{
a62cc96e
AC
1741 register_gdbarch_init (bfd_arch_i386, i386_gdbarch_init);
1742
fc338970 1743 /* Add the variable that controls the disassembly flavor. */
917317f4
JM
1744 {
1745 struct cmd_list_element *new_cmd;
7a292a7a 1746
917317f4
JM
1747 new_cmd = add_set_enum_cmd ("disassembly-flavor", no_class,
1748 valid_flavors,
1ed2a135 1749 &disassembly_flavor,
fc338970
MK
1750 "\
1751Set the disassembly flavor, the valid values are \"att\" and \"intel\", \
c906108c 1752and the default value is \"att\".",
917317f4 1753 &setlist);
917317f4
JM
1754 add_show_from_set (new_cmd, &showlist);
1755 }
8201327c
MK
1756
1757 /* Add the variable that controls the convention for returning
1758 structs. */
1759 {
1760 struct cmd_list_element *new_cmd;
1761
1762 new_cmd = add_set_enum_cmd ("struct-convention", no_class,
5e3397bb 1763 valid_conventions,
8201327c
MK
1764 &struct_convention, "\
1765Set the convention for returning small structs, valid values \
1766are \"default\", \"pcc\" and \"reg\", and the default value is \"default\".",
1767 &setlist);
1768 add_show_from_set (new_cmd, &showlist);
1769 }
1770
1771 gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_coff_flavour,
1772 i386_coff_osabi_sniffer);
1773 gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_nlm_flavour,
1774 i386_nlm_osabi_sniffer);
1775
05816f70 1776 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_SVR4,
8201327c 1777 i386_svr4_init_abi);
05816f70 1778 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_GO32,
8201327c 1779 i386_go32_init_abi);
05816f70 1780 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_NETWARE,
8201327c 1781 i386_nw_init_abi);
38c968cf
AC
1782
1783 /* Initialize the i386 specific register groups. */
1784 i386_init_reggroups ();
c906108c 1785}