]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/i386-tdep.c
2011-03-02 Michael Snyder <msnyder@vmware.com>
[thirdparty/binutils-gdb.git] / gdb / i386-tdep.c
CommitLineData
c906108c 1/* Intel 386 target-dependent stuff.
349c5d5f 2
6aba47ca 3 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4c38e0a4 4 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
7b6bb8da 5 2010, 2011 Free Software 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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 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 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
1903f0e6 23#include "opcode/i386.h"
acd5c798
MK
24#include "arch-utils.h"
25#include "command.h"
26#include "dummy-frame.h"
6405b0a6 27#include "dwarf2-frame.h"
acd5c798 28#include "doublest.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"
e6bb342a 35#include "gdbtypes.h"
dfe01d39 36#include "objfiles.h"
acd5c798
MK
37#include "osabi.h"
38#include "regcache.h"
39#include "reggroups.h"
473f17b0 40#include "regset.h"
c0d1d883 41#include "symfile.h"
c906108c 42#include "symtab.h"
acd5c798 43#include "target.h"
fd0407d6 44#include "value.h"
a89aa300 45#include "dis-asm.h"
7a697b8d 46#include "disasm.h"
c8d5aac9 47#include "remote.h"
acd5c798 48
3d261580 49#include "gdb_assert.h"
acd5c798 50#include "gdb_string.h"
3d261580 51
d2a7c97a 52#include "i386-tdep.h"
61113f8b 53#include "i387-tdep.h"
c131fcee 54#include "i386-xstate.h"
d2a7c97a 55
7ad10968
HZ
56#include "record.h"
57#include <stdint.h>
58
90884b2b 59#include "features/i386/i386.c"
c131fcee 60#include "features/i386/i386-avx.c"
3a13a53b 61#include "features/i386/i386-mmx.c"
90884b2b 62
c4fc7f1b 63/* Register names. */
c40e1eab 64
90884b2b 65static const char *i386_register_names[] =
fc633446
MK
66{
67 "eax", "ecx", "edx", "ebx",
68 "esp", "ebp", "esi", "edi",
69 "eip", "eflags", "cs", "ss",
70 "ds", "es", "fs", "gs",
71 "st0", "st1", "st2", "st3",
72 "st4", "st5", "st6", "st7",
73 "fctrl", "fstat", "ftag", "fiseg",
74 "fioff", "foseg", "fooff", "fop",
75 "xmm0", "xmm1", "xmm2", "xmm3",
76 "xmm4", "xmm5", "xmm6", "xmm7",
77 "mxcsr"
78};
79
c131fcee
L
80static const char *i386_ymm_names[] =
81{
82 "ymm0", "ymm1", "ymm2", "ymm3",
83 "ymm4", "ymm5", "ymm6", "ymm7",
84};
85
86static const char *i386_ymmh_names[] =
87{
88 "ymm0h", "ymm1h", "ymm2h", "ymm3h",
89 "ymm4h", "ymm5h", "ymm6h", "ymm7h",
90};
91
c4fc7f1b 92/* Register names for MMX pseudo-registers. */
28fc6740 93
90884b2b 94static const char *i386_mmx_names[] =
28fc6740
AC
95{
96 "mm0", "mm1", "mm2", "mm3",
97 "mm4", "mm5", "mm6", "mm7"
98};
c40e1eab 99
1ba53b71
L
100/* Register names for byte pseudo-registers. */
101
102static const char *i386_byte_names[] =
103{
104 "al", "cl", "dl", "bl",
105 "ah", "ch", "dh", "bh"
106};
107
108/* Register names for word pseudo-registers. */
109
110static const char *i386_word_names[] =
111{
112 "ax", "cx", "dx", "bx",
9cad29ac 113 "", "bp", "si", "di"
1ba53b71
L
114};
115
116/* MMX register? */
c40e1eab 117
28fc6740 118static int
5716833c 119i386_mmx_regnum_p (struct gdbarch *gdbarch, int regnum)
28fc6740 120{
1ba53b71
L
121 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
122 int mm0_regnum = tdep->mm0_regnum;
5716833c
MK
123
124 if (mm0_regnum < 0)
125 return 0;
126
1ba53b71
L
127 regnum -= mm0_regnum;
128 return regnum >= 0 && regnum < tdep->num_mmx_regs;
129}
130
131/* Byte register? */
132
133int
134i386_byte_regnum_p (struct gdbarch *gdbarch, int regnum)
135{
136 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
137
138 regnum -= tdep->al_regnum;
139 return regnum >= 0 && regnum < tdep->num_byte_regs;
140}
141
142/* Word register? */
143
144int
145i386_word_regnum_p (struct gdbarch *gdbarch, int regnum)
146{
147 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
148
149 regnum -= tdep->ax_regnum;
150 return regnum >= 0 && regnum < tdep->num_word_regs;
151}
152
153/* Dword register? */
154
155int
156i386_dword_regnum_p (struct gdbarch *gdbarch, int regnum)
157{
158 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
159 int eax_regnum = tdep->eax_regnum;
160
161 if (eax_regnum < 0)
162 return 0;
163
164 regnum -= eax_regnum;
165 return regnum >= 0 && regnum < tdep->num_dword_regs;
28fc6740
AC
166}
167
9191d390 168static int
c131fcee
L
169i386_ymmh_regnum_p (struct gdbarch *gdbarch, int regnum)
170{
171 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
172 int ymm0h_regnum = tdep->ymm0h_regnum;
173
174 if (ymm0h_regnum < 0)
175 return 0;
176
177 regnum -= ymm0h_regnum;
178 return regnum >= 0 && regnum < tdep->num_ymm_regs;
179}
180
181/* AVX register? */
182
183int
184i386_ymm_regnum_p (struct gdbarch *gdbarch, int regnum)
185{
186 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
187 int ymm0_regnum = tdep->ymm0_regnum;
188
189 if (ymm0_regnum < 0)
190 return 0;
191
192 regnum -= ymm0_regnum;
193 return regnum >= 0 && regnum < tdep->num_ymm_regs;
194}
195
5716833c 196/* SSE register? */
23a34459 197
c131fcee
L
198int
199i386_xmm_regnum_p (struct gdbarch *gdbarch, int regnum)
23a34459 200{
5716833c 201 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
c131fcee 202 int num_xmm_regs = I387_NUM_XMM_REGS (tdep);
5716833c 203
c131fcee 204 if (num_xmm_regs == 0)
5716833c
MK
205 return 0;
206
c131fcee
L
207 regnum -= I387_XMM0_REGNUM (tdep);
208 return regnum >= 0 && regnum < num_xmm_regs;
23a34459
AC
209}
210
5716833c
MK
211static int
212i386_mxcsr_regnum_p (struct gdbarch *gdbarch, int regnum)
23a34459 213{
5716833c
MK
214 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
215
20a6ec49 216 if (I387_NUM_XMM_REGS (tdep) == 0)
5716833c
MK
217 return 0;
218
20a6ec49 219 return (regnum == I387_MXCSR_REGNUM (tdep));
23a34459
AC
220}
221
5716833c 222/* FP register? */
23a34459
AC
223
224int
20a6ec49 225i386_fp_regnum_p (struct gdbarch *gdbarch, int regnum)
23a34459 226{
20a6ec49
MD
227 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
228
229 if (I387_ST0_REGNUM (tdep) < 0)
5716833c
MK
230 return 0;
231
20a6ec49
MD
232 return (I387_ST0_REGNUM (tdep) <= regnum
233 && regnum < I387_FCTRL_REGNUM (tdep));
23a34459
AC
234}
235
236int
20a6ec49 237i386_fpc_regnum_p (struct gdbarch *gdbarch, int regnum)
23a34459 238{
20a6ec49
MD
239 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
240
241 if (I387_ST0_REGNUM (tdep) < 0)
5716833c
MK
242 return 0;
243
20a6ec49
MD
244 return (I387_FCTRL_REGNUM (tdep) <= regnum
245 && regnum < I387_XMM0_REGNUM (tdep));
23a34459
AC
246}
247
c131fcee
L
248/* Return the name of register REGNUM, or the empty string if it is
249 an anonymous register. */
250
251static const char *
252i386_register_name (struct gdbarch *gdbarch, int regnum)
253{
254 /* Hide the upper YMM registers. */
255 if (i386_ymmh_regnum_p (gdbarch, regnum))
256 return "";
257
258 return tdesc_register_name (gdbarch, regnum);
259}
260
30b0e2d8 261/* Return the name of register REGNUM. */
fc633446 262
1ba53b71 263const char *
90884b2b 264i386_pseudo_register_name (struct gdbarch *gdbarch, int regnum)
fc633446 265{
1ba53b71
L
266 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
267 if (i386_mmx_regnum_p (gdbarch, regnum))
268 return i386_mmx_names[regnum - I387_MM0_REGNUM (tdep)];
c131fcee
L
269 else if (i386_ymm_regnum_p (gdbarch, regnum))
270 return i386_ymm_names[regnum - tdep->ymm0_regnum];
1ba53b71
L
271 else if (i386_byte_regnum_p (gdbarch, regnum))
272 return i386_byte_names[regnum - tdep->al_regnum];
273 else if (i386_word_regnum_p (gdbarch, regnum))
274 return i386_word_names[regnum - tdep->ax_regnum];
275
276 internal_error (__FILE__, __LINE__, _("invalid regnum"));
fc633446
MK
277}
278
c4fc7f1b 279/* Convert a dbx register number REG to the appropriate register
85540d8c
MK
280 number used by GDB. */
281
8201327c 282static int
d3f73121 283i386_dbx_reg_to_regnum (struct gdbarch *gdbarch, int reg)
85540d8c 284{
20a6ec49
MD
285 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
286
c4fc7f1b
MK
287 /* This implements what GCC calls the "default" register map
288 (dbx_register_map[]). */
289
85540d8c
MK
290 if (reg >= 0 && reg <= 7)
291 {
9872ad24
JB
292 /* General-purpose registers. The debug info calls %ebp
293 register 4, and %esp register 5. */
294 if (reg == 4)
295 return 5;
296 else if (reg == 5)
297 return 4;
298 else return reg;
85540d8c
MK
299 }
300 else if (reg >= 12 && reg <= 19)
301 {
302 /* Floating-point registers. */
20a6ec49 303 return reg - 12 + I387_ST0_REGNUM (tdep);
85540d8c
MK
304 }
305 else if (reg >= 21 && reg <= 28)
306 {
307 /* SSE registers. */
c131fcee
L
308 int ymm0_regnum = tdep->ymm0_regnum;
309
310 if (ymm0_regnum >= 0
311 && i386_xmm_regnum_p (gdbarch, reg))
312 return reg - 21 + ymm0_regnum;
313 else
314 return reg - 21 + I387_XMM0_REGNUM (tdep);
85540d8c
MK
315 }
316 else if (reg >= 29 && reg <= 36)
317 {
318 /* MMX registers. */
20a6ec49 319 return reg - 29 + I387_MM0_REGNUM (tdep);
85540d8c
MK
320 }
321
322 /* This will hopefully provoke a warning. */
d3f73121 323 return gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
85540d8c
MK
324}
325
c4fc7f1b
MK
326/* Convert SVR4 register number REG to the appropriate register number
327 used by GDB. */
85540d8c 328
8201327c 329static int
d3f73121 330i386_svr4_reg_to_regnum (struct gdbarch *gdbarch, int reg)
85540d8c 331{
20a6ec49
MD
332 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
333
c4fc7f1b
MK
334 /* This implements the GCC register map that tries to be compatible
335 with the SVR4 C compiler for DWARF (svr4_dbx_register_map[]). */
336
337 /* The SVR4 register numbering includes %eip and %eflags, and
85540d8c
MK
338 numbers the floating point registers differently. */
339 if (reg >= 0 && reg <= 9)
340 {
acd5c798 341 /* General-purpose registers. */
85540d8c
MK
342 return reg;
343 }
344 else if (reg >= 11 && reg <= 18)
345 {
346 /* Floating-point registers. */
20a6ec49 347 return reg - 11 + I387_ST0_REGNUM (tdep);
85540d8c 348 }
c6f4c129 349 else if (reg >= 21 && reg <= 36)
85540d8c 350 {
c4fc7f1b 351 /* The SSE and MMX registers have the same numbers as with dbx. */
d3f73121 352 return i386_dbx_reg_to_regnum (gdbarch, reg);
85540d8c
MK
353 }
354
c6f4c129
JB
355 switch (reg)
356 {
20a6ec49
MD
357 case 37: return I387_FCTRL_REGNUM (tdep);
358 case 38: return I387_FSTAT_REGNUM (tdep);
359 case 39: return I387_MXCSR_REGNUM (tdep);
c6f4c129
JB
360 case 40: return I386_ES_REGNUM;
361 case 41: return I386_CS_REGNUM;
362 case 42: return I386_SS_REGNUM;
363 case 43: return I386_DS_REGNUM;
364 case 44: return I386_FS_REGNUM;
365 case 45: return I386_GS_REGNUM;
366 }
367
85540d8c 368 /* This will hopefully provoke a warning. */
d3f73121 369 return gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
85540d8c 370}
5716833c 371
fc338970 372\f
917317f4 373
fc338970
MK
374/* This is the variable that is set with "set disassembly-flavor", and
375 its legitimate values. */
53904c9e
AC
376static const char att_flavor[] = "att";
377static const char intel_flavor[] = "intel";
378static const char *valid_flavors[] =
c5aa993b 379{
c906108c
SS
380 att_flavor,
381 intel_flavor,
382 NULL
383};
53904c9e 384static const char *disassembly_flavor = att_flavor;
acd5c798 385\f
c906108c 386
acd5c798
MK
387/* Use the program counter to determine the contents and size of a
388 breakpoint instruction. Return a pointer to a string of bytes that
389 encode a breakpoint instruction, store the length of the string in
390 *LEN and optionally adjust *PC to point to the correct memory
391 location for inserting the breakpoint.
c906108c 392
acd5c798
MK
393 On the i386 we have a single breakpoint that fits in a single byte
394 and can be inserted anywhere.
c906108c 395
acd5c798 396 This function is 64-bit safe. */
63c0089f
MK
397
398static const gdb_byte *
67d57894 399i386_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pc, int *len)
c906108c 400{
63c0089f
MK
401 static gdb_byte break_insn[] = { 0xcc }; /* int 3 */
402
acd5c798
MK
403 *len = sizeof (break_insn);
404 return break_insn;
c906108c 405}
237fc4c9
PA
406\f
407/* Displaced instruction handling. */
408
1903f0e6
DE
409/* Skip the legacy instruction prefixes in INSN.
410 Not all prefixes are valid for any particular insn
411 but we needn't care, the insn will fault if it's invalid.
412 The result is a pointer to the first opcode byte,
413 or NULL if we run off the end of the buffer. */
414
415static gdb_byte *
416i386_skip_prefixes (gdb_byte *insn, size_t max_len)
417{
418 gdb_byte *end = insn + max_len;
419
420 while (insn < end)
421 {
422 switch (*insn)
423 {
424 case DATA_PREFIX_OPCODE:
425 case ADDR_PREFIX_OPCODE:
426 case CS_PREFIX_OPCODE:
427 case DS_PREFIX_OPCODE:
428 case ES_PREFIX_OPCODE:
429 case FS_PREFIX_OPCODE:
430 case GS_PREFIX_OPCODE:
431 case SS_PREFIX_OPCODE:
432 case LOCK_PREFIX_OPCODE:
433 case REPE_PREFIX_OPCODE:
434 case REPNE_PREFIX_OPCODE:
435 ++insn;
436 continue;
437 default:
438 return insn;
439 }
440 }
441
442 return NULL;
443}
237fc4c9
PA
444
445static int
1903f0e6 446i386_absolute_jmp_p (const gdb_byte *insn)
237fc4c9 447{
1777feb0 448 /* jmp far (absolute address in operand). */
237fc4c9
PA
449 if (insn[0] == 0xea)
450 return 1;
451
452 if (insn[0] == 0xff)
453 {
1777feb0 454 /* jump near, absolute indirect (/4). */
237fc4c9
PA
455 if ((insn[1] & 0x38) == 0x20)
456 return 1;
457
1777feb0 458 /* jump far, absolute indirect (/5). */
237fc4c9
PA
459 if ((insn[1] & 0x38) == 0x28)
460 return 1;
461 }
462
463 return 0;
464}
465
466static int
1903f0e6 467i386_absolute_call_p (const gdb_byte *insn)
237fc4c9 468{
1777feb0 469 /* call far, absolute. */
237fc4c9
PA
470 if (insn[0] == 0x9a)
471 return 1;
472
473 if (insn[0] == 0xff)
474 {
1777feb0 475 /* Call near, absolute indirect (/2). */
237fc4c9
PA
476 if ((insn[1] & 0x38) == 0x10)
477 return 1;
478
1777feb0 479 /* Call far, absolute indirect (/3). */
237fc4c9
PA
480 if ((insn[1] & 0x38) == 0x18)
481 return 1;
482 }
483
484 return 0;
485}
486
487static int
1903f0e6 488i386_ret_p (const gdb_byte *insn)
237fc4c9
PA
489{
490 switch (insn[0])
491 {
1777feb0 492 case 0xc2: /* ret near, pop N bytes. */
237fc4c9 493 case 0xc3: /* ret near */
1777feb0 494 case 0xca: /* ret far, pop N bytes. */
237fc4c9
PA
495 case 0xcb: /* ret far */
496 case 0xcf: /* iret */
497 return 1;
498
499 default:
500 return 0;
501 }
502}
503
504static int
1903f0e6 505i386_call_p (const gdb_byte *insn)
237fc4c9
PA
506{
507 if (i386_absolute_call_p (insn))
508 return 1;
509
1777feb0 510 /* call near, relative. */
237fc4c9
PA
511 if (insn[0] == 0xe8)
512 return 1;
513
514 return 0;
515}
516
237fc4c9
PA
517/* Return non-zero if INSN is a system call, and set *LENGTHP to its
518 length in bytes. Otherwise, return zero. */
1903f0e6 519
237fc4c9 520static int
b55078be 521i386_syscall_p (const gdb_byte *insn, int *lengthp)
237fc4c9
PA
522{
523 if (insn[0] == 0xcd)
524 {
525 *lengthp = 2;
526 return 1;
527 }
528
529 return 0;
530}
531
b55078be
DE
532/* Some kernels may run one past a syscall insn, so we have to cope.
533 Otherwise this is just simple_displaced_step_copy_insn. */
534
535struct displaced_step_closure *
536i386_displaced_step_copy_insn (struct gdbarch *gdbarch,
537 CORE_ADDR from, CORE_ADDR to,
538 struct regcache *regs)
539{
540 size_t len = gdbarch_max_insn_length (gdbarch);
541 gdb_byte *buf = xmalloc (len);
542
543 read_memory (from, buf, len);
544
545 /* GDB may get control back after the insn after the syscall.
546 Presumably this is a kernel bug.
547 If this is a syscall, make sure there's a nop afterwards. */
548 {
549 int syscall_length;
550 gdb_byte *insn;
551
552 insn = i386_skip_prefixes (buf, len);
553 if (insn != NULL && i386_syscall_p (insn, &syscall_length))
554 insn[syscall_length] = NOP_OPCODE;
555 }
556
557 write_memory (to, buf, len);
558
559 if (debug_displaced)
560 {
561 fprintf_unfiltered (gdb_stdlog, "displaced: copy %s->%s: ",
562 paddress (gdbarch, from), paddress (gdbarch, to));
563 displaced_step_dump_bytes (gdb_stdlog, buf, len);
564 }
565
566 return (struct displaced_step_closure *) buf;
567}
568
237fc4c9
PA
569/* Fix up the state of registers and memory after having single-stepped
570 a displaced instruction. */
1903f0e6 571
237fc4c9
PA
572void
573i386_displaced_step_fixup (struct gdbarch *gdbarch,
574 struct displaced_step_closure *closure,
575 CORE_ADDR from, CORE_ADDR to,
576 struct regcache *regs)
577{
e17a4113
UW
578 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
579
237fc4c9
PA
580 /* The offset we applied to the instruction's address.
581 This could well be negative (when viewed as a signed 32-bit
582 value), but ULONGEST won't reflect that, so take care when
583 applying it. */
584 ULONGEST insn_offset = to - from;
585
586 /* Since we use simple_displaced_step_copy_insn, our closure is a
587 copy of the instruction. */
588 gdb_byte *insn = (gdb_byte *) closure;
1903f0e6
DE
589 /* The start of the insn, needed in case we see some prefixes. */
590 gdb_byte *insn_start = insn;
237fc4c9
PA
591
592 if (debug_displaced)
593 fprintf_unfiltered (gdb_stdlog,
5af949e3 594 "displaced: fixup (%s, %s), "
237fc4c9 595 "insn = 0x%02x 0x%02x ...\n",
5af949e3
UW
596 paddress (gdbarch, from), paddress (gdbarch, to),
597 insn[0], insn[1]);
237fc4c9
PA
598
599 /* The list of issues to contend with here is taken from
600 resume_execution in arch/i386/kernel/kprobes.c, Linux 2.6.20.
601 Yay for Free Software! */
602
603 /* Relocate the %eip, if necessary. */
604
1903f0e6
DE
605 /* The instruction recognizers we use assume any leading prefixes
606 have been skipped. */
607 {
608 /* This is the size of the buffer in closure. */
609 size_t max_insn_len = gdbarch_max_insn_length (gdbarch);
610 gdb_byte *opcode = i386_skip_prefixes (insn, max_insn_len);
611 /* If there are too many prefixes, just ignore the insn.
612 It will fault when run. */
613 if (opcode != NULL)
614 insn = opcode;
615 }
616
237fc4c9
PA
617 /* Except in the case of absolute or indirect jump or call
618 instructions, or a return instruction, the new eip is relative to
619 the displaced instruction; make it relative. Well, signal
620 handler returns don't need relocation either, but we use the
621 value of %eip to recognize those; see below. */
622 if (! i386_absolute_jmp_p (insn)
623 && ! i386_absolute_call_p (insn)
624 && ! i386_ret_p (insn))
625 {
626 ULONGEST orig_eip;
b55078be 627 int insn_len;
237fc4c9
PA
628
629 regcache_cooked_read_unsigned (regs, I386_EIP_REGNUM, &orig_eip);
630
631 /* A signal trampoline system call changes the %eip, resuming
632 execution of the main program after the signal handler has
633 returned. That makes them like 'return' instructions; we
634 shouldn't relocate %eip.
635
636 But most system calls don't, and we do need to relocate %eip.
637
638 Our heuristic for distinguishing these cases: if stepping
639 over the system call instruction left control directly after
640 the instruction, the we relocate --- control almost certainly
641 doesn't belong in the displaced copy. Otherwise, we assume
642 the instruction has put control where it belongs, and leave
643 it unrelocated. Goodness help us if there are PC-relative
644 system calls. */
645 if (i386_syscall_p (insn, &insn_len)
b55078be
DE
646 && orig_eip != to + (insn - insn_start) + insn_len
647 /* GDB can get control back after the insn after the syscall.
648 Presumably this is a kernel bug.
649 i386_displaced_step_copy_insn ensures its a nop,
650 we add one to the length for it. */
651 && orig_eip != to + (insn - insn_start) + insn_len + 1)
237fc4c9
PA
652 {
653 if (debug_displaced)
654 fprintf_unfiltered (gdb_stdlog,
655 "displaced: syscall changed %%eip; "
656 "not relocating\n");
657 }
658 else
659 {
660 ULONGEST eip = (orig_eip - insn_offset) & 0xffffffffUL;
661
1903f0e6
DE
662 /* If we just stepped over a breakpoint insn, we don't backup
663 the pc on purpose; this is to match behaviour without
664 stepping. */
237fc4c9
PA
665
666 regcache_cooked_write_unsigned (regs, I386_EIP_REGNUM, eip);
667
668 if (debug_displaced)
669 fprintf_unfiltered (gdb_stdlog,
670 "displaced: "
5af949e3
UW
671 "relocated %%eip from %s to %s\n",
672 paddress (gdbarch, orig_eip),
673 paddress (gdbarch, eip));
237fc4c9
PA
674 }
675 }
676
677 /* If the instruction was PUSHFL, then the TF bit will be set in the
678 pushed value, and should be cleared. We'll leave this for later,
679 since GDB already messes up the TF flag when stepping over a
680 pushfl. */
681
682 /* If the instruction was a call, the return address now atop the
683 stack is the address following the copied instruction. We need
684 to make it the address following the original instruction. */
685 if (i386_call_p (insn))
686 {
687 ULONGEST esp;
688 ULONGEST retaddr;
689 const ULONGEST retaddr_len = 4;
690
691 regcache_cooked_read_unsigned (regs, I386_ESP_REGNUM, &esp);
b75f0b83 692 retaddr = read_memory_unsigned_integer (esp, retaddr_len, byte_order);
237fc4c9 693 retaddr = (retaddr - insn_offset) & 0xffffffffUL;
e17a4113 694 write_memory_unsigned_integer (esp, retaddr_len, byte_order, retaddr);
237fc4c9
PA
695
696 if (debug_displaced)
697 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
698 "displaced: relocated return addr at %s to %s\n",
699 paddress (gdbarch, esp),
700 paddress (gdbarch, retaddr));
237fc4c9
PA
701 }
702}
dde08ee1
PA
703
704static void
705append_insns (CORE_ADDR *to, ULONGEST len, const gdb_byte *buf)
706{
707 target_write_memory (*to, buf, len);
708 *to += len;
709}
710
711static void
712i386_relocate_instruction (struct gdbarch *gdbarch,
713 CORE_ADDR *to, CORE_ADDR oldloc)
714{
715 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
716 gdb_byte buf[I386_MAX_INSN_LEN];
717 int offset = 0, rel32, newrel;
718 int insn_length;
719 gdb_byte *insn = buf;
720
721 read_memory (oldloc, buf, I386_MAX_INSN_LEN);
722
723 insn_length = gdb_buffered_insn_length (gdbarch, insn,
724 I386_MAX_INSN_LEN, oldloc);
725
726 /* Get past the prefixes. */
727 insn = i386_skip_prefixes (insn, I386_MAX_INSN_LEN);
728
729 /* Adjust calls with 32-bit relative addresses as push/jump, with
730 the address pushed being the location where the original call in
731 the user program would return to. */
732 if (insn[0] == 0xe8)
733 {
734 gdb_byte push_buf[16];
735 unsigned int ret_addr;
736
737 /* Where "ret" in the original code will return to. */
738 ret_addr = oldloc + insn_length;
1777feb0 739 push_buf[0] = 0x68; /* pushq $... */
dde08ee1
PA
740 memcpy (&push_buf[1], &ret_addr, 4);
741 /* Push the push. */
742 append_insns (to, 5, push_buf);
743
744 /* Convert the relative call to a relative jump. */
745 insn[0] = 0xe9;
746
747 /* Adjust the destination offset. */
748 rel32 = extract_signed_integer (insn + 1, 4, byte_order);
749 newrel = (oldloc - *to) + rel32;
750 store_signed_integer (insn + 1, 4, newrel, byte_order);
751
752 /* Write the adjusted jump into its displaced location. */
753 append_insns (to, 5, insn);
754 return;
755 }
756
757 /* Adjust jumps with 32-bit relative addresses. Calls are already
758 handled above. */
759 if (insn[0] == 0xe9)
760 offset = 1;
761 /* Adjust conditional jumps. */
762 else if (insn[0] == 0x0f && (insn[1] & 0xf0) == 0x80)
763 offset = 2;
764
765 if (offset)
766 {
767 rel32 = extract_signed_integer (insn + offset, 4, byte_order);
768 newrel = (oldloc - *to) + rel32;
769 store_signed_integer (insn + offset, 4, newrel, byte_order);
770 if (debug_displaced)
771 fprintf_unfiltered (gdb_stdlog,
772 "Adjusted insn rel32=0x%s at 0x%s to"
773 " rel32=0x%s at 0x%s\n",
774 hex_string (rel32), paddress (gdbarch, oldloc),
775 hex_string (newrel), paddress (gdbarch, *to));
776 }
777
778 /* Write the adjusted instructions into their displaced
779 location. */
780 append_insns (to, insn_length, buf);
781}
782
fc338970 783\f
acd5c798
MK
784#ifdef I386_REGNO_TO_SYMMETRY
785#error "The Sequent Symmetry is no longer supported."
786#endif
c906108c 787
acd5c798
MK
788/* According to the System V ABI, the registers %ebp, %ebx, %edi, %esi
789 and %esp "belong" to the calling function. Therefore these
790 registers should be saved if they're going to be modified. */
c906108c 791
acd5c798
MK
792/* The maximum number of saved registers. This should include all
793 registers mentioned above, and %eip. */
a3386186 794#define I386_NUM_SAVED_REGS I386_NUM_GREGS
acd5c798
MK
795
796struct i386_frame_cache
c906108c 797{
acd5c798
MK
798 /* Base address. */
799 CORE_ADDR base;
772562f8 800 LONGEST sp_offset;
acd5c798
MK
801 CORE_ADDR pc;
802
fd13a04a
AC
803 /* Saved registers. */
804 CORE_ADDR saved_regs[I386_NUM_SAVED_REGS];
acd5c798 805 CORE_ADDR saved_sp;
e0c62198 806 int saved_sp_reg;
acd5c798
MK
807 int pc_in_eax;
808
809 /* Stack space reserved for local variables. */
810 long locals;
811};
812
813/* Allocate and initialize a frame cache. */
814
815static struct i386_frame_cache *
fd13a04a 816i386_alloc_frame_cache (void)
acd5c798
MK
817{
818 struct i386_frame_cache *cache;
819 int i;
820
821 cache = FRAME_OBSTACK_ZALLOC (struct i386_frame_cache);
822
823 /* Base address. */
824 cache->base = 0;
825 cache->sp_offset = -4;
826 cache->pc = 0;
827
fd13a04a
AC
828 /* Saved registers. We initialize these to -1 since zero is a valid
829 offset (that's where %ebp is supposed to be stored). */
830 for (i = 0; i < I386_NUM_SAVED_REGS; i++)
831 cache->saved_regs[i] = -1;
acd5c798 832 cache->saved_sp = 0;
e0c62198 833 cache->saved_sp_reg = -1;
acd5c798
MK
834 cache->pc_in_eax = 0;
835
836 /* Frameless until proven otherwise. */
837 cache->locals = -1;
838
839 return cache;
840}
c906108c 841
acd5c798
MK
842/* If the instruction at PC is a jump, return the address of its
843 target. Otherwise, return PC. */
c906108c 844
acd5c798 845static CORE_ADDR
e17a4113 846i386_follow_jump (struct gdbarch *gdbarch, CORE_ADDR pc)
acd5c798 847{
e17a4113 848 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
63c0089f 849 gdb_byte op;
acd5c798
MK
850 long delta = 0;
851 int data16 = 0;
c906108c 852
8defab1a 853 target_read_memory (pc, &op, 1);
acd5c798 854 if (op == 0x66)
c906108c 855 {
c906108c 856 data16 = 1;
e17a4113 857 op = read_memory_unsigned_integer (pc + 1, 1, byte_order);
c906108c
SS
858 }
859
acd5c798 860 switch (op)
c906108c
SS
861 {
862 case 0xe9:
fc338970 863 /* Relative jump: if data16 == 0, disp32, else disp16. */
c906108c
SS
864 if (data16)
865 {
e17a4113 866 delta = read_memory_integer (pc + 2, 2, byte_order);
c906108c 867
fc338970
MK
868 /* Include the size of the jmp instruction (including the
869 0x66 prefix). */
acd5c798 870 delta += 4;
c906108c
SS
871 }
872 else
873 {
e17a4113 874 delta = read_memory_integer (pc + 1, 4, byte_order);
c906108c 875
acd5c798
MK
876 /* Include the size of the jmp instruction. */
877 delta += 5;
c906108c
SS
878 }
879 break;
880 case 0xeb:
fc338970 881 /* Relative jump, disp8 (ignore data16). */
e17a4113 882 delta = read_memory_integer (pc + data16 + 1, 1, byte_order);
c906108c 883
acd5c798 884 delta += data16 + 2;
c906108c
SS
885 break;
886 }
c906108c 887
acd5c798
MK
888 return pc + delta;
889}
fc338970 890
acd5c798
MK
891/* Check whether PC points at a prologue for a function returning a
892 structure or union. If so, it updates CACHE and returns the
893 address of the first instruction after the code sequence that
894 removes the "hidden" argument from the stack or CURRENT_PC,
895 whichever is smaller. Otherwise, return PC. */
c906108c 896
acd5c798
MK
897static CORE_ADDR
898i386_analyze_struct_return (CORE_ADDR pc, CORE_ADDR current_pc,
899 struct i386_frame_cache *cache)
c906108c 900{
acd5c798
MK
901 /* Functions that return a structure or union start with:
902
903 popl %eax 0x58
904 xchgl %eax, (%esp) 0x87 0x04 0x24
905 or xchgl %eax, 0(%esp) 0x87 0x44 0x24 0x00
906
907 (the System V compiler puts out the second `xchg' instruction,
908 and the assembler doesn't try to optimize it, so the 'sib' form
909 gets generated). This sequence is used to get the address of the
910 return buffer for a function that returns a structure. */
63c0089f
MK
911 static gdb_byte proto1[3] = { 0x87, 0x04, 0x24 };
912 static gdb_byte proto2[4] = { 0x87, 0x44, 0x24, 0x00 };
913 gdb_byte buf[4];
914 gdb_byte op;
c906108c 915
acd5c798
MK
916 if (current_pc <= pc)
917 return pc;
918
8defab1a 919 target_read_memory (pc, &op, 1);
c906108c 920
acd5c798
MK
921 if (op != 0x58) /* popl %eax */
922 return pc;
c906108c 923
8defab1a 924 target_read_memory (pc + 1, buf, 4);
acd5c798
MK
925 if (memcmp (buf, proto1, 3) != 0 && memcmp (buf, proto2, 4) != 0)
926 return pc;
c906108c 927
acd5c798 928 if (current_pc == pc)
c906108c 929 {
acd5c798
MK
930 cache->sp_offset += 4;
931 return current_pc;
c906108c
SS
932 }
933
acd5c798 934 if (current_pc == pc + 1)
c906108c 935 {
acd5c798
MK
936 cache->pc_in_eax = 1;
937 return current_pc;
938 }
939
940 if (buf[1] == proto1[1])
941 return pc + 4;
942 else
943 return pc + 5;
944}
945
946static CORE_ADDR
947i386_skip_probe (CORE_ADDR pc)
948{
949 /* A function may start with
fc338970 950
acd5c798
MK
951 pushl constant
952 call _probe
953 addl $4, %esp
fc338970 954
acd5c798
MK
955 followed by
956
957 pushl %ebp
fc338970 958
acd5c798 959 etc. */
63c0089f
MK
960 gdb_byte buf[8];
961 gdb_byte op;
fc338970 962
8defab1a 963 target_read_memory (pc, &op, 1);
acd5c798
MK
964
965 if (op == 0x68 || op == 0x6a)
966 {
967 int delta;
c906108c 968
acd5c798
MK
969 /* Skip past the `pushl' instruction; it has either a one-byte or a
970 four-byte operand, depending on the opcode. */
c906108c 971 if (op == 0x68)
acd5c798 972 delta = 5;
c906108c 973 else
acd5c798 974 delta = 2;
c906108c 975
acd5c798
MK
976 /* Read the following 8 bytes, which should be `call _probe' (6
977 bytes) followed by `addl $4,%esp' (2 bytes). */
978 read_memory (pc + delta, buf, sizeof (buf));
c906108c 979 if (buf[0] == 0xe8 && buf[6] == 0xc4 && buf[7] == 0x4)
acd5c798 980 pc += delta + sizeof (buf);
c906108c
SS
981 }
982
acd5c798
MK
983 return pc;
984}
985
92dd43fa
MK
986/* GCC 4.1 and later, can put code in the prologue to realign the
987 stack pointer. Check whether PC points to such code, and update
988 CACHE accordingly. Return the first instruction after the code
989 sequence or CURRENT_PC, whichever is smaller. If we don't
990 recognize the code, return PC. */
991
992static CORE_ADDR
993i386_analyze_stack_align (CORE_ADDR pc, CORE_ADDR current_pc,
994 struct i386_frame_cache *cache)
995{
e0c62198
L
996 /* There are 2 code sequences to re-align stack before the frame
997 gets set up:
998
999 1. Use a caller-saved saved register:
1000
1001 leal 4(%esp), %reg
1002 andl $-XXX, %esp
1003 pushl -4(%reg)
1004
1005 2. Use a callee-saved saved register:
1006
1007 pushl %reg
1008 leal 8(%esp), %reg
1009 andl $-XXX, %esp
1010 pushl -4(%reg)
1011
1012 "andl $-XXX, %esp" can be either 3 bytes or 6 bytes:
1013
1014 0x83 0xe4 0xf0 andl $-16, %esp
1015 0x81 0xe4 0x00 0xff 0xff 0xff andl $-256, %esp
1016 */
1017
1018 gdb_byte buf[14];
1019 int reg;
1020 int offset, offset_and;
1021 static int regnums[8] = {
1022 I386_EAX_REGNUM, /* %eax */
1023 I386_ECX_REGNUM, /* %ecx */
1024 I386_EDX_REGNUM, /* %edx */
1025 I386_EBX_REGNUM, /* %ebx */
1026 I386_ESP_REGNUM, /* %esp */
1027 I386_EBP_REGNUM, /* %ebp */
1028 I386_ESI_REGNUM, /* %esi */
1029 I386_EDI_REGNUM /* %edi */
92dd43fa 1030 };
92dd43fa 1031
e0c62198
L
1032 if (target_read_memory (pc, buf, sizeof buf))
1033 return pc;
1034
1035 /* Check caller-saved saved register. The first instruction has
1036 to be "leal 4(%esp), %reg". */
1037 if (buf[0] == 0x8d && buf[2] == 0x24 && buf[3] == 0x4)
1038 {
1039 /* MOD must be binary 10 and R/M must be binary 100. */
1040 if ((buf[1] & 0xc7) != 0x44)
1041 return pc;
1042
1043 /* REG has register number. */
1044 reg = (buf[1] >> 3) & 7;
1045 offset = 4;
1046 }
1047 else
1048 {
1049 /* Check callee-saved saved register. The first instruction
1050 has to be "pushl %reg". */
1051 if ((buf[0] & 0xf8) != 0x50)
1052 return pc;
1053
1054 /* Get register. */
1055 reg = buf[0] & 0x7;
1056
1057 /* The next instruction has to be "leal 8(%esp), %reg". */
1058 if (buf[1] != 0x8d || buf[3] != 0x24 || buf[4] != 0x8)
1059 return pc;
1060
1061 /* MOD must be binary 10 and R/M must be binary 100. */
1062 if ((buf[2] & 0xc7) != 0x44)
1063 return pc;
1064
1065 /* REG has register number. Registers in pushl and leal have to
1066 be the same. */
1067 if (reg != ((buf[2] >> 3) & 7))
1068 return pc;
1069
1070 offset = 5;
1071 }
1072
1073 /* Rigister can't be %esp nor %ebp. */
1074 if (reg == 4 || reg == 5)
1075 return pc;
1076
1077 /* The next instruction has to be "andl $-XXX, %esp". */
1078 if (buf[offset + 1] != 0xe4
1079 || (buf[offset] != 0x81 && buf[offset] != 0x83))
1080 return pc;
1081
1082 offset_and = offset;
1083 offset += buf[offset] == 0x81 ? 6 : 3;
1084
1085 /* The next instruction has to be "pushl -4(%reg)". 8bit -4 is
1086 0xfc. REG must be binary 110 and MOD must be binary 01. */
1087 if (buf[offset] != 0xff
1088 || buf[offset + 2] != 0xfc
1089 || (buf[offset + 1] & 0xf8) != 0x70)
1090 return pc;
1091
1092 /* R/M has register. Registers in leal and pushl have to be the
1093 same. */
1094 if (reg != (buf[offset + 1] & 7))
92dd43fa
MK
1095 return pc;
1096
e0c62198
L
1097 if (current_pc > pc + offset_and)
1098 cache->saved_sp_reg = regnums[reg];
92dd43fa 1099
e0c62198 1100 return min (pc + offset + 3, current_pc);
92dd43fa
MK
1101}
1102
37bdc87e 1103/* Maximum instruction length we need to handle. */
237fc4c9 1104#define I386_MAX_MATCHED_INSN_LEN 6
37bdc87e
MK
1105
1106/* Instruction description. */
1107struct i386_insn
1108{
1109 size_t len;
237fc4c9
PA
1110 gdb_byte insn[I386_MAX_MATCHED_INSN_LEN];
1111 gdb_byte mask[I386_MAX_MATCHED_INSN_LEN];
37bdc87e
MK
1112};
1113
1114/* Search for the instruction at PC in the list SKIP_INSNS. Return
1115 the first instruction description that matches. Otherwise, return
1116 NULL. */
1117
1118static struct i386_insn *
1119i386_match_insn (CORE_ADDR pc, struct i386_insn *skip_insns)
1120{
1121 struct i386_insn *insn;
63c0089f 1122 gdb_byte op;
37bdc87e 1123
8defab1a 1124 target_read_memory (pc, &op, 1);
37bdc87e
MK
1125
1126 for (insn = skip_insns; insn->len > 0; insn++)
1127 {
1128 if ((op & insn->mask[0]) == insn->insn[0])
1129 {
237fc4c9 1130 gdb_byte buf[I386_MAX_MATCHED_INSN_LEN - 1];
613e8135 1131 int insn_matched = 1;
37bdc87e
MK
1132 size_t i;
1133
1134 gdb_assert (insn->len > 1);
237fc4c9 1135 gdb_assert (insn->len <= I386_MAX_MATCHED_INSN_LEN);
37bdc87e 1136
8defab1a 1137 target_read_memory (pc + 1, buf, insn->len - 1);
37bdc87e
MK
1138 for (i = 1; i < insn->len; i++)
1139 {
1140 if ((buf[i - 1] & insn->mask[i]) != insn->insn[i])
613e8135 1141 insn_matched = 0;
37bdc87e 1142 }
613e8135
MK
1143
1144 if (insn_matched)
1145 return insn;
37bdc87e
MK
1146 }
1147 }
1148
1149 return NULL;
1150}
1151
1152/* Some special instructions that might be migrated by GCC into the
1153 part of the prologue that sets up the new stack frame. Because the
1154 stack frame hasn't been setup yet, no registers have been saved
1155 yet, and only the scratch registers %eax, %ecx and %edx can be
1156 touched. */
1157
1158struct i386_insn i386_frame_setup_skip_insns[] =
1159{
1777feb0 1160 /* Check for `movb imm8, r' and `movl imm32, r'.
37bdc87e
MK
1161
1162 ??? Should we handle 16-bit operand-sizes here? */
1163
1164 /* `movb imm8, %al' and `movb imm8, %ah' */
1165 /* `movb imm8, %cl' and `movb imm8, %ch' */
1166 { 2, { 0xb0, 0x00 }, { 0xfa, 0x00 } },
1167 /* `movb imm8, %dl' and `movb imm8, %dh' */
1168 { 2, { 0xb2, 0x00 }, { 0xfb, 0x00 } },
1169 /* `movl imm32, %eax' and `movl imm32, %ecx' */
1170 { 5, { 0xb8 }, { 0xfe } },
1171 /* `movl imm32, %edx' */
1172 { 5, { 0xba }, { 0xff } },
1173
1174 /* Check for `mov imm32, r32'. Note that there is an alternative
1175 encoding for `mov m32, %eax'.
1176
1177 ??? Should we handle SIB adressing here?
1178 ??? Should we handle 16-bit operand-sizes here? */
1179
1180 /* `movl m32, %eax' */
1181 { 5, { 0xa1 }, { 0xff } },
1182 /* `movl m32, %eax' and `mov; m32, %ecx' */
1183 { 6, { 0x89, 0x05 }, {0xff, 0xf7 } },
1184 /* `movl m32, %edx' */
1185 { 6, { 0x89, 0x15 }, {0xff, 0xff } },
1186
1187 /* Check for `xorl r32, r32' and the equivalent `subl r32, r32'.
1188 Because of the symmetry, there are actually two ways to encode
1189 these instructions; opcode bytes 0x29 and 0x2b for `subl' and
1190 opcode bytes 0x31 and 0x33 for `xorl'. */
1191
1192 /* `subl %eax, %eax' */
1193 { 2, { 0x29, 0xc0 }, { 0xfd, 0xff } },
1194 /* `subl %ecx, %ecx' */
1195 { 2, { 0x29, 0xc9 }, { 0xfd, 0xff } },
1196 /* `subl %edx, %edx' */
1197 { 2, { 0x29, 0xd2 }, { 0xfd, 0xff } },
1198 /* `xorl %eax, %eax' */
1199 { 2, { 0x31, 0xc0 }, { 0xfd, 0xff } },
1200 /* `xorl %ecx, %ecx' */
1201 { 2, { 0x31, 0xc9 }, { 0xfd, 0xff } },
1202 /* `xorl %edx, %edx' */
1203 { 2, { 0x31, 0xd2 }, { 0xfd, 0xff } },
1204 { 0 }
1205};
1206
e11481da
PM
1207
1208/* Check whether PC points to a no-op instruction. */
1209static CORE_ADDR
1210i386_skip_noop (CORE_ADDR pc)
1211{
1212 gdb_byte op;
1213 int check = 1;
1214
8defab1a 1215 target_read_memory (pc, &op, 1);
e11481da
PM
1216
1217 while (check)
1218 {
1219 check = 0;
1220 /* Ignore `nop' instruction. */
1221 if (op == 0x90)
1222 {
1223 pc += 1;
8defab1a 1224 target_read_memory (pc, &op, 1);
e11481da
PM
1225 check = 1;
1226 }
1227 /* Ignore no-op instruction `mov %edi, %edi'.
1228 Microsoft system dlls often start with
1229 a `mov %edi,%edi' instruction.
1230 The 5 bytes before the function start are
1231 filled with `nop' instructions.
1232 This pattern can be used for hot-patching:
1233 The `mov %edi, %edi' instruction can be replaced by a
1234 near jump to the location of the 5 `nop' instructions
1235 which can be replaced by a 32-bit jump to anywhere
1236 in the 32-bit address space. */
1237
1238 else if (op == 0x8b)
1239 {
8defab1a 1240 target_read_memory (pc + 1, &op, 1);
e11481da
PM
1241 if (op == 0xff)
1242 {
1243 pc += 2;
8defab1a 1244 target_read_memory (pc, &op, 1);
e11481da
PM
1245 check = 1;
1246 }
1247 }
1248 }
1249 return pc;
1250}
1251
acd5c798
MK
1252/* Check whether PC points at a code that sets up a new stack frame.
1253 If so, it updates CACHE and returns the address of the first
37bdc87e
MK
1254 instruction after the sequence that sets up the frame or LIMIT,
1255 whichever is smaller. If we don't recognize the code, return PC. */
acd5c798
MK
1256
1257static CORE_ADDR
e17a4113
UW
1258i386_analyze_frame_setup (struct gdbarch *gdbarch,
1259 CORE_ADDR pc, CORE_ADDR limit,
acd5c798
MK
1260 struct i386_frame_cache *cache)
1261{
e17a4113 1262 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
37bdc87e 1263 struct i386_insn *insn;
63c0089f 1264 gdb_byte op;
26604a34 1265 int skip = 0;
acd5c798 1266
37bdc87e
MK
1267 if (limit <= pc)
1268 return limit;
acd5c798 1269
8defab1a 1270 target_read_memory (pc, &op, 1);
acd5c798 1271
c906108c 1272 if (op == 0x55) /* pushl %ebp */
c5aa993b 1273 {
acd5c798
MK
1274 /* Take into account that we've executed the `pushl %ebp' that
1275 starts this instruction sequence. */
fd13a04a 1276 cache->saved_regs[I386_EBP_REGNUM] = 0;
acd5c798 1277 cache->sp_offset += 4;
37bdc87e 1278 pc++;
acd5c798
MK
1279
1280 /* If that's all, return now. */
37bdc87e
MK
1281 if (limit <= pc)
1282 return limit;
26604a34 1283
b4632131 1284 /* Check for some special instructions that might be migrated by
37bdc87e
MK
1285 GCC into the prologue and skip them. At this point in the
1286 prologue, code should only touch the scratch registers %eax,
1287 %ecx and %edx, so while the number of posibilities is sheer,
1288 it is limited.
5daa5b4e 1289
26604a34
MK
1290 Make sure we only skip these instructions if we later see the
1291 `movl %esp, %ebp' that actually sets up the frame. */
37bdc87e 1292 while (pc + skip < limit)
26604a34 1293 {
37bdc87e
MK
1294 insn = i386_match_insn (pc + skip, i386_frame_setup_skip_insns);
1295 if (insn == NULL)
1296 break;
b4632131 1297
37bdc87e 1298 skip += insn->len;
26604a34
MK
1299 }
1300
37bdc87e
MK
1301 /* If that's all, return now. */
1302 if (limit <= pc + skip)
1303 return limit;
1304
8defab1a 1305 target_read_memory (pc + skip, &op, 1);
37bdc87e 1306
26604a34 1307 /* Check for `movl %esp, %ebp' -- can be written in two ways. */
acd5c798 1308 switch (op)
c906108c
SS
1309 {
1310 case 0x8b:
e17a4113
UW
1311 if (read_memory_unsigned_integer (pc + skip + 1, 1, byte_order)
1312 != 0xec)
37bdc87e 1313 return pc;
c906108c
SS
1314 break;
1315 case 0x89:
e17a4113
UW
1316 if (read_memory_unsigned_integer (pc + skip + 1, 1, byte_order)
1317 != 0xe5)
37bdc87e 1318 return pc;
c906108c
SS
1319 break;
1320 default:
37bdc87e 1321 return pc;
c906108c 1322 }
acd5c798 1323
26604a34
MK
1324 /* OK, we actually have a frame. We just don't know how large
1325 it is yet. Set its size to zero. We'll adjust it if
1326 necessary. We also now commit to skipping the special
1327 instructions mentioned before. */
acd5c798 1328 cache->locals = 0;
37bdc87e 1329 pc += (skip + 2);
acd5c798
MK
1330
1331 /* If that's all, return now. */
37bdc87e
MK
1332 if (limit <= pc)
1333 return limit;
acd5c798 1334
fc338970
MK
1335 /* Check for stack adjustment
1336
acd5c798 1337 subl $XXX, %esp
fc338970 1338
fd35795f 1339 NOTE: You can't subtract a 16-bit immediate from a 32-bit
fc338970 1340 reg, so we don't have to worry about a data16 prefix. */
8defab1a 1341 target_read_memory (pc, &op, 1);
c906108c
SS
1342 if (op == 0x83)
1343 {
fd35795f 1344 /* `subl' with 8-bit immediate. */
e17a4113 1345 if (read_memory_unsigned_integer (pc + 1, 1, byte_order) != 0xec)
fc338970 1346 /* Some instruction starting with 0x83 other than `subl'. */
37bdc87e 1347 return pc;
acd5c798 1348
37bdc87e
MK
1349 /* `subl' with signed 8-bit immediate (though it wouldn't
1350 make sense to be negative). */
e17a4113 1351 cache->locals = read_memory_integer (pc + 2, 1, byte_order);
37bdc87e 1352 return pc + 3;
c906108c
SS
1353 }
1354 else if (op == 0x81)
1355 {
fd35795f 1356 /* Maybe it is `subl' with a 32-bit immediate. */
e17a4113 1357 if (read_memory_unsigned_integer (pc + 1, 1, byte_order) != 0xec)
fc338970 1358 /* Some instruction starting with 0x81 other than `subl'. */
37bdc87e 1359 return pc;
acd5c798 1360
fd35795f 1361 /* It is `subl' with a 32-bit immediate. */
e17a4113 1362 cache->locals = read_memory_integer (pc + 2, 4, byte_order);
37bdc87e 1363 return pc + 6;
c906108c
SS
1364 }
1365 else
1366 {
acd5c798 1367 /* Some instruction other than `subl'. */
37bdc87e 1368 return pc;
c906108c
SS
1369 }
1370 }
37bdc87e 1371 else if (op == 0xc8) /* enter */
c906108c 1372 {
e17a4113 1373 cache->locals = read_memory_unsigned_integer (pc + 1, 2, byte_order);
acd5c798 1374 return pc + 4;
c906108c 1375 }
21d0e8a4 1376
acd5c798 1377 return pc;
21d0e8a4
MK
1378}
1379
acd5c798
MK
1380/* Check whether PC points at code that saves registers on the stack.
1381 If so, it updates CACHE and returns the address of the first
1382 instruction after the register saves or CURRENT_PC, whichever is
1383 smaller. Otherwise, return PC. */
6bff26de
MK
1384
1385static CORE_ADDR
acd5c798
MK
1386i386_analyze_register_saves (CORE_ADDR pc, CORE_ADDR current_pc,
1387 struct i386_frame_cache *cache)
6bff26de 1388{
99ab4326 1389 CORE_ADDR offset = 0;
63c0089f 1390 gdb_byte op;
99ab4326 1391 int i;
c0d1d883 1392
99ab4326
MK
1393 if (cache->locals > 0)
1394 offset -= cache->locals;
1395 for (i = 0; i < 8 && pc < current_pc; i++)
1396 {
8defab1a 1397 target_read_memory (pc, &op, 1);
99ab4326
MK
1398 if (op < 0x50 || op > 0x57)
1399 break;
0d17c81d 1400
99ab4326
MK
1401 offset -= 4;
1402 cache->saved_regs[op - 0x50] = offset;
1403 cache->sp_offset += 4;
1404 pc++;
6bff26de
MK
1405 }
1406
acd5c798 1407 return pc;
22797942
AC
1408}
1409
acd5c798
MK
1410/* Do a full analysis of the prologue at PC and update CACHE
1411 accordingly. Bail out early if CURRENT_PC is reached. Return the
1412 address where the analysis stopped.
ed84f6c1 1413
fc338970
MK
1414 We handle these cases:
1415
1416 The startup sequence can be at the start of the function, or the
1417 function can start with a branch to startup code at the end.
1418
1419 %ebp can be set up with either the 'enter' instruction, or "pushl
1420 %ebp, movl %esp, %ebp" (`enter' is too slow to be useful, but was
1421 once used in the System V compiler).
1422
1423 Local space is allocated just below the saved %ebp by either the
fd35795f
MK
1424 'enter' instruction, or by "subl $<size>, %esp". 'enter' has a
1425 16-bit unsigned argument for space to allocate, and the 'addl'
1426 instruction could have either a signed byte, or 32-bit immediate.
fc338970
MK
1427
1428 Next, the registers used by this function are pushed. With the
1429 System V compiler they will always be in the order: %edi, %esi,
1430 %ebx (and sometimes a harmless bug causes it to also save but not
1431 restore %eax); however, the code below is willing to see the pushes
1432 in any order, and will handle up to 8 of them.
1433
1434 If the setup sequence is at the end of the function, then the next
1435 instruction will be a branch back to the start. */
c906108c 1436
acd5c798 1437static CORE_ADDR
e17a4113
UW
1438i386_analyze_prologue (struct gdbarch *gdbarch,
1439 CORE_ADDR pc, CORE_ADDR current_pc,
acd5c798 1440 struct i386_frame_cache *cache)
c906108c 1441{
e11481da 1442 pc = i386_skip_noop (pc);
e17a4113 1443 pc = i386_follow_jump (gdbarch, pc);
acd5c798
MK
1444 pc = i386_analyze_struct_return (pc, current_pc, cache);
1445 pc = i386_skip_probe (pc);
92dd43fa 1446 pc = i386_analyze_stack_align (pc, current_pc, cache);
e17a4113 1447 pc = i386_analyze_frame_setup (gdbarch, pc, current_pc, cache);
acd5c798 1448 return i386_analyze_register_saves (pc, current_pc, cache);
c906108c
SS
1449}
1450
fc338970 1451/* Return PC of first real instruction. */
c906108c 1452
3a1e71e3 1453static CORE_ADDR
6093d2eb 1454i386_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR start_pc)
c906108c 1455{
e17a4113
UW
1456 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1457
63c0089f 1458 static gdb_byte pic_pat[6] =
acd5c798
MK
1459 {
1460 0xe8, 0, 0, 0, 0, /* call 0x0 */
1461 0x5b, /* popl %ebx */
c5aa993b 1462 };
acd5c798
MK
1463 struct i386_frame_cache cache;
1464 CORE_ADDR pc;
63c0089f 1465 gdb_byte op;
acd5c798 1466 int i;
c5aa993b 1467
acd5c798 1468 cache.locals = -1;
e17a4113 1469 pc = i386_analyze_prologue (gdbarch, start_pc, 0xffffffff, &cache);
acd5c798
MK
1470 if (cache.locals < 0)
1471 return start_pc;
c5aa993b 1472
acd5c798 1473 /* Found valid frame setup. */
c906108c 1474
fc338970
MK
1475 /* The native cc on SVR4 in -K PIC mode inserts the following code
1476 to get the address of the global offset table (GOT) into register
acd5c798
MK
1477 %ebx:
1478
fc338970
MK
1479 call 0x0
1480 popl %ebx
1481 movl %ebx,x(%ebp) (optional)
1482 addl y,%ebx
1483
c906108c
SS
1484 This code is with the rest of the prologue (at the end of the
1485 function), so we have to skip it to get to the first real
1486 instruction at the start of the function. */
c5aa993b 1487
c906108c
SS
1488 for (i = 0; i < 6; i++)
1489 {
8defab1a 1490 target_read_memory (pc + i, &op, 1);
c5aa993b 1491 if (pic_pat[i] != op)
c906108c
SS
1492 break;
1493 }
1494 if (i == 6)
1495 {
acd5c798
MK
1496 int delta = 6;
1497
8defab1a 1498 target_read_memory (pc + delta, &op, 1);
c906108c 1499
c5aa993b 1500 if (op == 0x89) /* movl %ebx, x(%ebp) */
c906108c 1501 {
e17a4113 1502 op = read_memory_unsigned_integer (pc + delta + 1, 1, byte_order);
acd5c798 1503
fc338970 1504 if (op == 0x5d) /* One byte offset from %ebp. */
acd5c798 1505 delta += 3;
fc338970 1506 else if (op == 0x9d) /* Four byte offset from %ebp. */
acd5c798 1507 delta += 6;
fc338970 1508 else /* Unexpected instruction. */
acd5c798
MK
1509 delta = 0;
1510
8defab1a 1511 target_read_memory (pc + delta, &op, 1);
c906108c 1512 }
acd5c798 1513
c5aa993b 1514 /* addl y,%ebx */
acd5c798 1515 if (delta > 0 && op == 0x81
e17a4113
UW
1516 && read_memory_unsigned_integer (pc + delta + 1, 1, byte_order)
1517 == 0xc3)
c906108c 1518 {
acd5c798 1519 pc += delta + 6;
c906108c
SS
1520 }
1521 }
c5aa993b 1522
e63bbc88
MK
1523 /* If the function starts with a branch (to startup code at the end)
1524 the last instruction should bring us back to the first
1525 instruction of the real code. */
e17a4113
UW
1526 if (i386_follow_jump (gdbarch, start_pc) != start_pc)
1527 pc = i386_follow_jump (gdbarch, pc);
e63bbc88
MK
1528
1529 return pc;
c906108c
SS
1530}
1531
4309257c
PM
1532/* Check that the code pointed to by PC corresponds to a call to
1533 __main, skip it if so. Return PC otherwise. */
1534
1535CORE_ADDR
1536i386_skip_main_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
1537{
e17a4113 1538 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
4309257c
PM
1539 gdb_byte op;
1540
1541 target_read_memory (pc, &op, 1);
1542 if (op == 0xe8)
1543 {
1544 gdb_byte buf[4];
1545
1546 if (target_read_memory (pc + 1, buf, sizeof buf) == 0)
1547 {
1548 /* Make sure address is computed correctly as a 32bit
1549 integer even if CORE_ADDR is 64 bit wide. */
1550 struct minimal_symbol *s;
e17a4113 1551 CORE_ADDR call_dest;
4309257c 1552
e17a4113 1553 call_dest = pc + 5 + extract_signed_integer (buf, 4, byte_order);
4309257c
PM
1554 call_dest = call_dest & 0xffffffffU;
1555 s = lookup_minimal_symbol_by_pc (call_dest);
1556 if (s != NULL
1557 && SYMBOL_LINKAGE_NAME (s) != NULL
1558 && strcmp (SYMBOL_LINKAGE_NAME (s), "__main") == 0)
1559 pc += 5;
1560 }
1561 }
1562
1563 return pc;
1564}
1565
acd5c798 1566/* This function is 64-bit safe. */
93924b6b 1567
acd5c798
MK
1568static CORE_ADDR
1569i386_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
93924b6b 1570{
63c0089f 1571 gdb_byte buf[8];
acd5c798 1572
875f8d0e 1573 frame_unwind_register (next_frame, gdbarch_pc_regnum (gdbarch), buf);
0dfff4cb 1574 return extract_typed_address (buf, builtin_type (gdbarch)->builtin_func_ptr);
93924b6b 1575}
acd5c798 1576\f
93924b6b 1577
acd5c798 1578/* Normal frames. */
c5aa993b 1579
acd5c798 1580static struct i386_frame_cache *
10458914 1581i386_frame_cache (struct frame_info *this_frame, void **this_cache)
a7769679 1582{
e17a4113
UW
1583 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1584 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
acd5c798 1585 struct i386_frame_cache *cache;
63c0089f 1586 gdb_byte buf[4];
acd5c798
MK
1587 int i;
1588
1589 if (*this_cache)
1590 return *this_cache;
1591
fd13a04a 1592 cache = i386_alloc_frame_cache ();
acd5c798
MK
1593 *this_cache = cache;
1594
1595 /* In principle, for normal frames, %ebp holds the frame pointer,
1596 which holds the base address for the current stack frame.
1597 However, for functions that don't need it, the frame pointer is
1598 optional. For these "frameless" functions the frame pointer is
1599 actually the frame pointer of the calling frame. Signal
1600 trampolines are just a special case of a "frameless" function.
1601 They (usually) share their frame pointer with the frame that was
1602 in progress when the signal occurred. */
1603
10458914 1604 get_frame_register (this_frame, I386_EBP_REGNUM, buf);
e17a4113 1605 cache->base = extract_unsigned_integer (buf, 4, byte_order);
acd5c798
MK
1606 if (cache->base == 0)
1607 return cache;
1608
1609 /* For normal frames, %eip is stored at 4(%ebp). */
fd13a04a 1610 cache->saved_regs[I386_EIP_REGNUM] = 4;
acd5c798 1611
10458914 1612 cache->pc = get_frame_func (this_frame);
acd5c798 1613 if (cache->pc != 0)
e17a4113
UW
1614 i386_analyze_prologue (gdbarch, cache->pc, get_frame_pc (this_frame),
1615 cache);
acd5c798 1616
e0c62198 1617 if (cache->saved_sp_reg != -1)
92dd43fa 1618 {
e0c62198
L
1619 /* Saved stack pointer has been saved. */
1620 get_frame_register (this_frame, cache->saved_sp_reg, buf);
e17a4113 1621 cache->saved_sp = extract_unsigned_integer (buf, 4, byte_order);
92dd43fa
MK
1622 }
1623
acd5c798
MK
1624 if (cache->locals < 0)
1625 {
1626 /* We didn't find a valid frame, which means that CACHE->base
1627 currently holds the frame pointer for our calling frame. If
1628 we're at the start of a function, or somewhere half-way its
1629 prologue, the function's frame probably hasn't been fully
1630 setup yet. Try to reconstruct the base address for the stack
1631 frame by looking at the stack pointer. For truly "frameless"
1632 functions this might work too. */
1633
e0c62198 1634 if (cache->saved_sp_reg != -1)
92dd43fa
MK
1635 {
1636 /* We're halfway aligning the stack. */
1637 cache->base = ((cache->saved_sp - 4) & 0xfffffff0) - 4;
1638 cache->saved_regs[I386_EIP_REGNUM] = cache->saved_sp - 4;
1639
1640 /* This will be added back below. */
1641 cache->saved_regs[I386_EIP_REGNUM] -= cache->base;
1642 }
7618e12b
DJ
1643 else if (cache->pc != 0
1644 || target_read_memory (get_frame_pc (this_frame), buf, 1))
92dd43fa 1645 {
7618e12b
DJ
1646 /* We're in a known function, but did not find a frame
1647 setup. Assume that the function does not use %ebp.
1648 Alternatively, we may have jumped to an invalid
1649 address; in that case there is definitely no new
1650 frame in %ebp. */
10458914 1651 get_frame_register (this_frame, I386_ESP_REGNUM, buf);
e17a4113
UW
1652 cache->base = extract_unsigned_integer (buf, 4, byte_order)
1653 + cache->sp_offset;
92dd43fa 1654 }
7618e12b
DJ
1655 else
1656 /* We're in an unknown function. We could not find the start
1657 of the function to analyze the prologue; our best option is
1658 to assume a typical frame layout with the caller's %ebp
1659 saved. */
1660 cache->saved_regs[I386_EBP_REGNUM] = 0;
acd5c798
MK
1661 }
1662
1663 /* Now that we have the base address for the stack frame we can
1664 calculate the value of %esp in the calling frame. */
92dd43fa
MK
1665 if (cache->saved_sp == 0)
1666 cache->saved_sp = cache->base + 8;
a7769679 1667
acd5c798
MK
1668 /* Adjust all the saved registers such that they contain addresses
1669 instead of offsets. */
1670 for (i = 0; i < I386_NUM_SAVED_REGS; i++)
fd13a04a
AC
1671 if (cache->saved_regs[i] != -1)
1672 cache->saved_regs[i] += cache->base;
acd5c798
MK
1673
1674 return cache;
a7769679
MK
1675}
1676
3a1e71e3 1677static void
10458914 1678i386_frame_this_id (struct frame_info *this_frame, void **this_cache,
acd5c798 1679 struct frame_id *this_id)
c906108c 1680{
10458914 1681 struct i386_frame_cache *cache = i386_frame_cache (this_frame, this_cache);
acd5c798
MK
1682
1683 /* This marks the outermost frame. */
1684 if (cache->base == 0)
1685 return;
1686
3e210248 1687 /* See the end of i386_push_dummy_call. */
acd5c798
MK
1688 (*this_id) = frame_id_build (cache->base + 8, cache->pc);
1689}
1690
10458914
DJ
1691static struct value *
1692i386_frame_prev_register (struct frame_info *this_frame, void **this_cache,
1693 int regnum)
acd5c798 1694{
10458914 1695 struct i386_frame_cache *cache = i386_frame_cache (this_frame, this_cache);
acd5c798
MK
1696
1697 gdb_assert (regnum >= 0);
1698
1699 /* The System V ABI says that:
1700
1701 "The flags register contains the system flags, such as the
1702 direction flag and the carry flag. The direction flag must be
1703 set to the forward (that is, zero) direction before entry and
1704 upon exit from a function. Other user flags have no specified
1705 role in the standard calling sequence and are not preserved."
1706
1707 To guarantee the "upon exit" part of that statement we fake a
1708 saved flags register that has its direction flag cleared.
1709
1710 Note that GCC doesn't seem to rely on the fact that the direction
1711 flag is cleared after a function return; it always explicitly
1712 clears the flag before operations where it matters.
1713
1714 FIXME: kettenis/20030316: I'm not quite sure whether this is the
1715 right thing to do. The way we fake the flags register here makes
1716 it impossible to change it. */
1717
1718 if (regnum == I386_EFLAGS_REGNUM)
1719 {
10458914 1720 ULONGEST val;
c5aa993b 1721
10458914
DJ
1722 val = get_frame_register_unsigned (this_frame, regnum);
1723 val &= ~(1 << 10);
1724 return frame_unwind_got_constant (this_frame, regnum, val);
acd5c798 1725 }
1211c4e4 1726
acd5c798 1727 if (regnum == I386_EIP_REGNUM && cache->pc_in_eax)
10458914 1728 return frame_unwind_got_register (this_frame, regnum, I386_EAX_REGNUM);
acd5c798
MK
1729
1730 if (regnum == I386_ESP_REGNUM && cache->saved_sp)
10458914 1731 return frame_unwind_got_constant (this_frame, regnum, cache->saved_sp);
acd5c798 1732
fd13a04a 1733 if (regnum < I386_NUM_SAVED_REGS && cache->saved_regs[regnum] != -1)
10458914
DJ
1734 return frame_unwind_got_memory (this_frame, regnum,
1735 cache->saved_regs[regnum]);
fd13a04a 1736
10458914 1737 return frame_unwind_got_register (this_frame, regnum, regnum);
acd5c798
MK
1738}
1739
1740static const struct frame_unwind i386_frame_unwind =
1741{
1742 NORMAL_FRAME,
1743 i386_frame_this_id,
10458914
DJ
1744 i386_frame_prev_register,
1745 NULL,
1746 default_frame_sniffer
acd5c798 1747};
06da04c6
MS
1748
1749/* Normal frames, but in a function epilogue. */
1750
1751/* The epilogue is defined here as the 'ret' instruction, which will
1752 follow any instruction such as 'leave' or 'pop %ebp' that destroys
1753 the function's stack frame. */
1754
1755static int
1756i386_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
1757{
1758 gdb_byte insn;
1759
1760 if (target_read_memory (pc, &insn, 1))
1761 return 0; /* Can't read memory at pc. */
1762
1763 if (insn != 0xc3) /* 'ret' instruction. */
1764 return 0;
1765
1766 return 1;
1767}
1768
1769static int
1770i386_epilogue_frame_sniffer (const struct frame_unwind *self,
1771 struct frame_info *this_frame,
1772 void **this_prologue_cache)
1773{
1774 if (frame_relative_level (this_frame) == 0)
1775 return i386_in_function_epilogue_p (get_frame_arch (this_frame),
1776 get_frame_pc (this_frame));
1777 else
1778 return 0;
1779}
1780
1781static struct i386_frame_cache *
1782i386_epilogue_frame_cache (struct frame_info *this_frame, void **this_cache)
1783{
1784 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1785 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1786 struct i386_frame_cache *cache;
1787 gdb_byte buf[4];
1788
1789 if (*this_cache)
1790 return *this_cache;
1791
1792 cache = i386_alloc_frame_cache ();
1793 *this_cache = cache;
1794
1795 /* Cache base will be %esp plus cache->sp_offset (-4). */
1796 get_frame_register (this_frame, I386_ESP_REGNUM, buf);
1797 cache->base = extract_unsigned_integer (buf, 4,
1798 byte_order) + cache->sp_offset;
1799
1800 /* Cache pc will be the frame func. */
1801 cache->pc = get_frame_pc (this_frame);
1802
1803 /* The saved %esp will be at cache->base plus 8. */
1804 cache->saved_sp = cache->base + 8;
1805
1806 /* The saved %eip will be at cache->base plus 4. */
1807 cache->saved_regs[I386_EIP_REGNUM] = cache->base + 4;
1808
1809 return cache;
1810}
1811
1812static void
1813i386_epilogue_frame_this_id (struct frame_info *this_frame,
1814 void **this_cache,
1815 struct frame_id *this_id)
1816{
1817 struct i386_frame_cache *cache = i386_epilogue_frame_cache (this_frame,
1818 this_cache);
1819
1820 (*this_id) = frame_id_build (cache->base + 8, cache->pc);
1821}
1822
1823static const struct frame_unwind i386_epilogue_frame_unwind =
1824{
1825 NORMAL_FRAME,
1826 i386_epilogue_frame_this_id,
1827 i386_frame_prev_register,
1828 NULL,
1829 i386_epilogue_frame_sniffer
1830};
acd5c798
MK
1831\f
1832
1833/* Signal trampolines. */
1834
1835static struct i386_frame_cache *
10458914 1836i386_sigtramp_frame_cache (struct frame_info *this_frame, void **this_cache)
acd5c798 1837{
e17a4113
UW
1838 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1839 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1840 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
acd5c798 1841 struct i386_frame_cache *cache;
acd5c798 1842 CORE_ADDR addr;
63c0089f 1843 gdb_byte buf[4];
acd5c798
MK
1844
1845 if (*this_cache)
1846 return *this_cache;
1847
fd13a04a 1848 cache = i386_alloc_frame_cache ();
acd5c798 1849
10458914 1850 get_frame_register (this_frame, I386_ESP_REGNUM, buf);
e17a4113 1851 cache->base = extract_unsigned_integer (buf, 4, byte_order) - 4;
acd5c798 1852
10458914 1853 addr = tdep->sigcontext_addr (this_frame);
a3386186
MK
1854 if (tdep->sc_reg_offset)
1855 {
1856 int i;
1857
1858 gdb_assert (tdep->sc_num_regs <= I386_NUM_SAVED_REGS);
1859
1860 for (i = 0; i < tdep->sc_num_regs; i++)
1861 if (tdep->sc_reg_offset[i] != -1)
fd13a04a 1862 cache->saved_regs[i] = addr + tdep->sc_reg_offset[i];
a3386186
MK
1863 }
1864 else
1865 {
fd13a04a
AC
1866 cache->saved_regs[I386_EIP_REGNUM] = addr + tdep->sc_pc_offset;
1867 cache->saved_regs[I386_ESP_REGNUM] = addr + tdep->sc_sp_offset;
a3386186 1868 }
acd5c798
MK
1869
1870 *this_cache = cache;
1871 return cache;
1872}
1873
1874static void
10458914 1875i386_sigtramp_frame_this_id (struct frame_info *this_frame, void **this_cache,
acd5c798
MK
1876 struct frame_id *this_id)
1877{
1878 struct i386_frame_cache *cache =
10458914 1879 i386_sigtramp_frame_cache (this_frame, this_cache);
acd5c798 1880
3e210248 1881 /* See the end of i386_push_dummy_call. */
10458914 1882 (*this_id) = frame_id_build (cache->base + 8, get_frame_pc (this_frame));
acd5c798
MK
1883}
1884
10458914
DJ
1885static struct value *
1886i386_sigtramp_frame_prev_register (struct frame_info *this_frame,
1887 void **this_cache, int regnum)
acd5c798
MK
1888{
1889 /* Make sure we've initialized the cache. */
10458914 1890 i386_sigtramp_frame_cache (this_frame, this_cache);
acd5c798 1891
10458914 1892 return i386_frame_prev_register (this_frame, this_cache, regnum);
c906108c 1893}
c0d1d883 1894
10458914
DJ
1895static int
1896i386_sigtramp_frame_sniffer (const struct frame_unwind *self,
1897 struct frame_info *this_frame,
1898 void **this_prologue_cache)
acd5c798 1899{
10458914 1900 struct gdbarch_tdep *tdep = gdbarch_tdep (get_frame_arch (this_frame));
acd5c798 1901
911bc6ee
MK
1902 /* We shouldn't even bother if we don't have a sigcontext_addr
1903 handler. */
1904 if (tdep->sigcontext_addr == NULL)
10458914 1905 return 0;
1c3545ae 1906
911bc6ee
MK
1907 if (tdep->sigtramp_p != NULL)
1908 {
10458914
DJ
1909 if (tdep->sigtramp_p (this_frame))
1910 return 1;
911bc6ee
MK
1911 }
1912
1913 if (tdep->sigtramp_start != 0)
1914 {
10458914 1915 CORE_ADDR pc = get_frame_pc (this_frame);
911bc6ee
MK
1916
1917 gdb_assert (tdep->sigtramp_end != 0);
1918 if (pc >= tdep->sigtramp_start && pc < tdep->sigtramp_end)
10458914 1919 return 1;
911bc6ee 1920 }
acd5c798 1921
10458914 1922 return 0;
acd5c798 1923}
10458914
DJ
1924
1925static const struct frame_unwind i386_sigtramp_frame_unwind =
1926{
1927 SIGTRAMP_FRAME,
1928 i386_sigtramp_frame_this_id,
1929 i386_sigtramp_frame_prev_register,
1930 NULL,
1931 i386_sigtramp_frame_sniffer
1932};
acd5c798
MK
1933\f
1934
1935static CORE_ADDR
10458914 1936i386_frame_base_address (struct frame_info *this_frame, void **this_cache)
acd5c798 1937{
10458914 1938 struct i386_frame_cache *cache = i386_frame_cache (this_frame, this_cache);
acd5c798
MK
1939
1940 return cache->base;
1941}
1942
1943static const struct frame_base i386_frame_base =
1944{
1945 &i386_frame_unwind,
1946 i386_frame_base_address,
1947 i386_frame_base_address,
1948 i386_frame_base_address
1949};
1950
acd5c798 1951static struct frame_id
10458914 1952i386_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
acd5c798 1953{
acd5c798
MK
1954 CORE_ADDR fp;
1955
10458914 1956 fp = get_frame_register_unsigned (this_frame, I386_EBP_REGNUM);
acd5c798 1957
3e210248 1958 /* See the end of i386_push_dummy_call. */
10458914 1959 return frame_id_build (fp + 8, get_frame_pc (this_frame));
c0d1d883 1960}
fc338970 1961\f
c906108c 1962
fc338970
MK
1963/* Figure out where the longjmp will land. Slurp the args out of the
1964 stack. We expect the first arg to be a pointer to the jmp_buf
8201327c 1965 structure from which we extract the address that we will land at.
28bcfd30 1966 This address is copied into PC. This routine returns non-zero on
436675d3 1967 success. */
c906108c 1968
8201327c 1969static int
60ade65d 1970i386_get_longjmp_target (struct frame_info *frame, CORE_ADDR *pc)
c906108c 1971{
436675d3 1972 gdb_byte buf[4];
c906108c 1973 CORE_ADDR sp, jb_addr;
20a6ec49 1974 struct gdbarch *gdbarch = get_frame_arch (frame);
e17a4113 1975 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
20a6ec49 1976 int jb_pc_offset = gdbarch_tdep (gdbarch)->jb_pc_offset;
c906108c 1977
8201327c
MK
1978 /* If JB_PC_OFFSET is -1, we have no way to find out where the
1979 longjmp will land. */
1980 if (jb_pc_offset == -1)
c906108c
SS
1981 return 0;
1982
436675d3 1983 get_frame_register (frame, I386_ESP_REGNUM, buf);
e17a4113 1984 sp = extract_unsigned_integer (buf, 4, byte_order);
436675d3 1985 if (target_read_memory (sp + 4, buf, 4))
c906108c
SS
1986 return 0;
1987
e17a4113 1988 jb_addr = extract_unsigned_integer (buf, 4, byte_order);
436675d3 1989 if (target_read_memory (jb_addr + jb_pc_offset, buf, 4))
8201327c 1990 return 0;
c906108c 1991
e17a4113 1992 *pc = extract_unsigned_integer (buf, 4, byte_order);
c906108c
SS
1993 return 1;
1994}
fc338970 1995\f
c906108c 1996
7ccc1c74
JM
1997/* Check whether TYPE must be 16-byte-aligned when passed as a
1998 function argument. 16-byte vectors, _Decimal128 and structures or
1999 unions containing such types must be 16-byte-aligned; other
2000 arguments are 4-byte-aligned. */
2001
2002static int
2003i386_16_byte_align_p (struct type *type)
2004{
2005 type = check_typedef (type);
2006 if ((TYPE_CODE (type) == TYPE_CODE_DECFLOAT
2007 || (TYPE_CODE (type) == TYPE_CODE_ARRAY && TYPE_VECTOR (type)))
2008 && TYPE_LENGTH (type) == 16)
2009 return 1;
2010 if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
2011 return i386_16_byte_align_p (TYPE_TARGET_TYPE (type));
2012 if (TYPE_CODE (type) == TYPE_CODE_STRUCT
2013 || TYPE_CODE (type) == TYPE_CODE_UNION)
2014 {
2015 int i;
2016 for (i = 0; i < TYPE_NFIELDS (type); i++)
2017 {
2018 if (i386_16_byte_align_p (TYPE_FIELD_TYPE (type, i)))
2019 return 1;
2020 }
2021 }
2022 return 0;
2023}
2024
3a1e71e3 2025static CORE_ADDR
7d9b040b 2026i386_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
6a65450a
AC
2027 struct regcache *regcache, CORE_ADDR bp_addr, int nargs,
2028 struct value **args, CORE_ADDR sp, int struct_return,
2029 CORE_ADDR struct_addr)
22f8ba57 2030{
e17a4113 2031 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
63c0089f 2032 gdb_byte buf[4];
acd5c798 2033 int i;
7ccc1c74
JM
2034 int write_pass;
2035 int args_space = 0;
acd5c798 2036
7ccc1c74
JM
2037 /* Determine the total space required for arguments and struct
2038 return address in a first pass (allowing for 16-byte-aligned
2039 arguments), then push arguments in a second pass. */
2040
2041 for (write_pass = 0; write_pass < 2; write_pass++)
22f8ba57 2042 {
7ccc1c74
JM
2043 int args_space_used = 0;
2044 int have_16_byte_aligned_arg = 0;
2045
2046 if (struct_return)
2047 {
2048 if (write_pass)
2049 {
2050 /* Push value address. */
e17a4113 2051 store_unsigned_integer (buf, 4, byte_order, struct_addr);
7ccc1c74
JM
2052 write_memory (sp, buf, 4);
2053 args_space_used += 4;
2054 }
2055 else
2056 args_space += 4;
2057 }
2058
2059 for (i = 0; i < nargs; i++)
2060 {
2061 int len = TYPE_LENGTH (value_enclosing_type (args[i]));
acd5c798 2062
7ccc1c74
JM
2063 if (write_pass)
2064 {
2065 if (i386_16_byte_align_p (value_enclosing_type (args[i])))
2066 args_space_used = align_up (args_space_used, 16);
acd5c798 2067
7ccc1c74
JM
2068 write_memory (sp + args_space_used,
2069 value_contents_all (args[i]), len);
2070 /* The System V ABI says that:
acd5c798 2071
7ccc1c74
JM
2072 "An argument's size is increased, if necessary, to make it a
2073 multiple of [32-bit] words. This may require tail padding,
2074 depending on the size of the argument."
22f8ba57 2075
7ccc1c74
JM
2076 This makes sure the stack stays word-aligned. */
2077 args_space_used += align_up (len, 4);
2078 }
2079 else
2080 {
2081 if (i386_16_byte_align_p (value_enclosing_type (args[i])))
2082 {
2083 args_space = align_up (args_space, 16);
2084 have_16_byte_aligned_arg = 1;
2085 }
2086 args_space += align_up (len, 4);
2087 }
2088 }
2089
2090 if (!write_pass)
2091 {
2092 if (have_16_byte_aligned_arg)
2093 args_space = align_up (args_space, 16);
2094 sp -= args_space;
2095 }
22f8ba57
MK
2096 }
2097
acd5c798
MK
2098 /* Store return address. */
2099 sp -= 4;
e17a4113 2100 store_unsigned_integer (buf, 4, byte_order, bp_addr);
acd5c798
MK
2101 write_memory (sp, buf, 4);
2102
2103 /* Finally, update the stack pointer... */
e17a4113 2104 store_unsigned_integer (buf, 4, byte_order, sp);
acd5c798
MK
2105 regcache_cooked_write (regcache, I386_ESP_REGNUM, buf);
2106
2107 /* ...and fake a frame pointer. */
2108 regcache_cooked_write (regcache, I386_EBP_REGNUM, buf);
2109
3e210248
AC
2110 /* MarkK wrote: This "+ 8" is all over the place:
2111 (i386_frame_this_id, i386_sigtramp_frame_this_id,
10458914 2112 i386_dummy_id). It's there, since all frame unwinders for
3e210248 2113 a given target have to agree (within a certain margin) on the
a45ae3ed
UW
2114 definition of the stack address of a frame. Otherwise frame id
2115 comparison might not work correctly. Since DWARF2/GCC uses the
3e210248
AC
2116 stack address *before* the function call as a frame's CFA. On
2117 the i386, when %ebp is used as a frame pointer, the offset
2118 between the contents %ebp and the CFA as defined by GCC. */
2119 return sp + 8;
22f8ba57
MK
2120}
2121
1a309862
MK
2122/* These registers are used for returning integers (and on some
2123 targets also for returning `struct' and `union' values when their
ef9dff19 2124 size and alignment match an integer type). */
acd5c798
MK
2125#define LOW_RETURN_REGNUM I386_EAX_REGNUM /* %eax */
2126#define HIGH_RETURN_REGNUM I386_EDX_REGNUM /* %edx */
1a309862 2127
c5e656c1
MK
2128/* Read, for architecture GDBARCH, a function return value of TYPE
2129 from REGCACHE, and copy that into VALBUF. */
1a309862 2130
3a1e71e3 2131static void
c5e656c1 2132i386_extract_return_value (struct gdbarch *gdbarch, struct type *type,
63c0089f 2133 struct regcache *regcache, gdb_byte *valbuf)
c906108c 2134{
c5e656c1 2135 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1a309862 2136 int len = TYPE_LENGTH (type);
63c0089f 2137 gdb_byte buf[I386_MAX_REGISTER_SIZE];
1a309862 2138
1e8d0a7b 2139 if (TYPE_CODE (type) == TYPE_CODE_FLT)
c906108c 2140 {
5716833c 2141 if (tdep->st0_regnum < 0)
1a309862 2142 {
8a3fe4f8 2143 warning (_("Cannot find floating-point return value."));
1a309862 2144 memset (valbuf, 0, len);
ef9dff19 2145 return;
1a309862
MK
2146 }
2147
c6ba6f0d
MK
2148 /* Floating-point return values can be found in %st(0). Convert
2149 its contents to the desired type. This is probably not
2150 exactly how it would happen on the target itself, but it is
2151 the best we can do. */
acd5c798 2152 regcache_raw_read (regcache, I386_ST0_REGNUM, buf);
27067745 2153 convert_typed_floating (buf, i387_ext_type (gdbarch), valbuf, type);
c906108c
SS
2154 }
2155 else
c5aa993b 2156 {
875f8d0e
UW
2157 int low_size = register_size (gdbarch, LOW_RETURN_REGNUM);
2158 int high_size = register_size (gdbarch, HIGH_RETURN_REGNUM);
d4f3574e
SS
2159
2160 if (len <= low_size)
00f8375e 2161 {
0818c12a 2162 regcache_raw_read (regcache, LOW_RETURN_REGNUM, buf);
00f8375e
MK
2163 memcpy (valbuf, buf, len);
2164 }
d4f3574e
SS
2165 else if (len <= (low_size + high_size))
2166 {
0818c12a 2167 regcache_raw_read (regcache, LOW_RETURN_REGNUM, buf);
00f8375e 2168 memcpy (valbuf, buf, low_size);
0818c12a 2169 regcache_raw_read (regcache, HIGH_RETURN_REGNUM, buf);
63c0089f 2170 memcpy (valbuf + low_size, buf, len - low_size);
d4f3574e
SS
2171 }
2172 else
8e65ff28 2173 internal_error (__FILE__, __LINE__,
1777feb0
MS
2174 _("Cannot extract return value of %d bytes long."),
2175 len);
c906108c
SS
2176 }
2177}
2178
c5e656c1
MK
2179/* Write, for architecture GDBARCH, a function return value of TYPE
2180 from VALBUF into REGCACHE. */
ef9dff19 2181
3a1e71e3 2182static void
c5e656c1 2183i386_store_return_value (struct gdbarch *gdbarch, struct type *type,
63c0089f 2184 struct regcache *regcache, const gdb_byte *valbuf)
ef9dff19 2185{
c5e656c1 2186 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
ef9dff19
MK
2187 int len = TYPE_LENGTH (type);
2188
1e8d0a7b 2189 if (TYPE_CODE (type) == TYPE_CODE_FLT)
ef9dff19 2190 {
3d7f4f49 2191 ULONGEST fstat;
63c0089f 2192 gdb_byte buf[I386_MAX_REGISTER_SIZE];
ccb945b8 2193
5716833c 2194 if (tdep->st0_regnum < 0)
ef9dff19 2195 {
8a3fe4f8 2196 warning (_("Cannot set floating-point return value."));
ef9dff19
MK
2197 return;
2198 }
2199
635b0cc1
MK
2200 /* Returning floating-point values is a bit tricky. Apart from
2201 storing the return value in %st(0), we have to simulate the
2202 state of the FPU at function return point. */
2203
c6ba6f0d
MK
2204 /* Convert the value found in VALBUF to the extended
2205 floating-point format used by the FPU. This is probably
2206 not exactly how it would happen on the target itself, but
2207 it is the best we can do. */
27067745 2208 convert_typed_floating (valbuf, type, buf, i387_ext_type (gdbarch));
acd5c798 2209 regcache_raw_write (regcache, I386_ST0_REGNUM, buf);
ccb945b8 2210
635b0cc1
MK
2211 /* Set the top of the floating-point register stack to 7. The
2212 actual value doesn't really matter, but 7 is what a normal
2213 function return would end up with if the program started out
2214 with a freshly initialized FPU. */
20a6ec49 2215 regcache_raw_read_unsigned (regcache, I387_FSTAT_REGNUM (tdep), &fstat);
ccb945b8 2216 fstat |= (7 << 11);
20a6ec49 2217 regcache_raw_write_unsigned (regcache, I387_FSTAT_REGNUM (tdep), fstat);
ccb945b8 2218
635b0cc1
MK
2219 /* Mark %st(1) through %st(7) as empty. Since we set the top of
2220 the floating-point register stack to 7, the appropriate value
2221 for the tag word is 0x3fff. */
20a6ec49 2222 regcache_raw_write_unsigned (regcache, I387_FTAG_REGNUM (tdep), 0x3fff);
ef9dff19
MK
2223 }
2224 else
2225 {
875f8d0e
UW
2226 int low_size = register_size (gdbarch, LOW_RETURN_REGNUM);
2227 int high_size = register_size (gdbarch, HIGH_RETURN_REGNUM);
ef9dff19
MK
2228
2229 if (len <= low_size)
3d7f4f49 2230 regcache_raw_write_part (regcache, LOW_RETURN_REGNUM, 0, len, valbuf);
ef9dff19
MK
2231 else if (len <= (low_size + high_size))
2232 {
3d7f4f49
MK
2233 regcache_raw_write (regcache, LOW_RETURN_REGNUM, valbuf);
2234 regcache_raw_write_part (regcache, HIGH_RETURN_REGNUM, 0,
63c0089f 2235 len - low_size, valbuf + low_size);
ef9dff19
MK
2236 }
2237 else
8e65ff28 2238 internal_error (__FILE__, __LINE__,
e2e0b3e5 2239 _("Cannot store return value of %d bytes long."), len);
ef9dff19
MK
2240 }
2241}
fc338970 2242\f
ef9dff19 2243
8201327c
MK
2244/* This is the variable that is set with "set struct-convention", and
2245 its legitimate values. */
2246static const char default_struct_convention[] = "default";
2247static const char pcc_struct_convention[] = "pcc";
2248static const char reg_struct_convention[] = "reg";
2249static const char *valid_conventions[] =
2250{
2251 default_struct_convention,
2252 pcc_struct_convention,
2253 reg_struct_convention,
2254 NULL
2255};
2256static const char *struct_convention = default_struct_convention;
2257
0e4377e1
JB
2258/* Return non-zero if TYPE, which is assumed to be a structure,
2259 a union type, or an array type, should be returned in registers
2260 for architecture GDBARCH. */
c5e656c1 2261
8201327c 2262static int
c5e656c1 2263i386_reg_struct_return_p (struct gdbarch *gdbarch, struct type *type)
8201327c 2264{
c5e656c1
MK
2265 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2266 enum type_code code = TYPE_CODE (type);
2267 int len = TYPE_LENGTH (type);
8201327c 2268
0e4377e1
JB
2269 gdb_assert (code == TYPE_CODE_STRUCT
2270 || code == TYPE_CODE_UNION
2271 || code == TYPE_CODE_ARRAY);
c5e656c1
MK
2272
2273 if (struct_convention == pcc_struct_convention
2274 || (struct_convention == default_struct_convention
2275 && tdep->struct_return == pcc_struct_return))
2276 return 0;
2277
9edde48e
MK
2278 /* Structures consisting of a single `float', `double' or 'long
2279 double' member are returned in %st(0). */
2280 if (code == TYPE_CODE_STRUCT && TYPE_NFIELDS (type) == 1)
2281 {
2282 type = check_typedef (TYPE_FIELD_TYPE (type, 0));
2283 if (TYPE_CODE (type) == TYPE_CODE_FLT)
2284 return (len == 4 || len == 8 || len == 12);
2285 }
2286
c5e656c1
MK
2287 return (len == 1 || len == 2 || len == 4 || len == 8);
2288}
2289
2290/* Determine, for architecture GDBARCH, how a return value of TYPE
2291 should be returned. If it is supposed to be returned in registers,
2292 and READBUF is non-zero, read the appropriate value from REGCACHE,
2293 and copy it into READBUF. If WRITEBUF is non-zero, write the value
2294 from WRITEBUF into REGCACHE. */
2295
2296static enum return_value_convention
c055b101
CV
2297i386_return_value (struct gdbarch *gdbarch, struct type *func_type,
2298 struct type *type, struct regcache *regcache,
2299 gdb_byte *readbuf, const gdb_byte *writebuf)
c5e656c1
MK
2300{
2301 enum type_code code = TYPE_CODE (type);
2302
5daa78cc
TJB
2303 if (((code == TYPE_CODE_STRUCT
2304 || code == TYPE_CODE_UNION
2305 || code == TYPE_CODE_ARRAY)
2306 && !i386_reg_struct_return_p (gdbarch, type))
2307 /* 128-bit decimal float uses the struct return convention. */
2308 || (code == TYPE_CODE_DECFLOAT && TYPE_LENGTH (type) == 16))
31db7b6c
MK
2309 {
2310 /* The System V ABI says that:
2311
2312 "A function that returns a structure or union also sets %eax
2313 to the value of the original address of the caller's area
2314 before it returns. Thus when the caller receives control
2315 again, the address of the returned object resides in register
2316 %eax and can be used to access the object."
2317
2318 So the ABI guarantees that we can always find the return
2319 value just after the function has returned. */
2320
0e4377e1
JB
2321 /* Note that the ABI doesn't mention functions returning arrays,
2322 which is something possible in certain languages such as Ada.
2323 In this case, the value is returned as if it was wrapped in
2324 a record, so the convention applied to records also applies
2325 to arrays. */
2326
31db7b6c
MK
2327 if (readbuf)
2328 {
2329 ULONGEST addr;
2330
2331 regcache_raw_read_unsigned (regcache, I386_EAX_REGNUM, &addr);
2332 read_memory (addr, readbuf, TYPE_LENGTH (type));
2333 }
2334
2335 return RETURN_VALUE_ABI_RETURNS_ADDRESS;
2336 }
c5e656c1
MK
2337
2338 /* This special case is for structures consisting of a single
9edde48e
MK
2339 `float', `double' or 'long double' member. These structures are
2340 returned in %st(0). For these structures, we call ourselves
2341 recursively, changing TYPE into the type of the first member of
2342 the structure. Since that should work for all structures that
2343 have only one member, we don't bother to check the member's type
2344 here. */
c5e656c1
MK
2345 if (code == TYPE_CODE_STRUCT && TYPE_NFIELDS (type) == 1)
2346 {
2347 type = check_typedef (TYPE_FIELD_TYPE (type, 0));
c055b101
CV
2348 return i386_return_value (gdbarch, func_type, type, regcache,
2349 readbuf, writebuf);
c5e656c1
MK
2350 }
2351
2352 if (readbuf)
2353 i386_extract_return_value (gdbarch, type, regcache, readbuf);
2354 if (writebuf)
2355 i386_store_return_value (gdbarch, type, regcache, writebuf);
8201327c 2356
c5e656c1 2357 return RETURN_VALUE_REGISTER_CONVENTION;
8201327c
MK
2358}
2359\f
2360
27067745
UW
2361struct type *
2362i387_ext_type (struct gdbarch *gdbarch)
2363{
2364 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2365
2366 if (!tdep->i387_ext_type)
90884b2b
L
2367 {
2368 tdep->i387_ext_type = tdesc_find_type (gdbarch, "i387_ext");
2369 gdb_assert (tdep->i387_ext_type != NULL);
2370 }
27067745
UW
2371
2372 return tdep->i387_ext_type;
2373}
2374
c131fcee
L
2375/* Construct vector type for pseudo YMM registers. We can't use
2376 tdesc_find_type since YMM isn't described in target description. */
2377
2378static struct type *
2379i386_ymm_type (struct gdbarch *gdbarch)
2380{
2381 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2382
2383 if (!tdep->i386_ymm_type)
2384 {
2385 const struct builtin_type *bt = builtin_type (gdbarch);
2386
2387 /* The type we're building is this: */
2388#if 0
2389 union __gdb_builtin_type_vec256i
2390 {
2391 int128_t uint128[2];
2392 int64_t v2_int64[4];
2393 int32_t v4_int32[8];
2394 int16_t v8_int16[16];
2395 int8_t v16_int8[32];
2396 double v2_double[4];
2397 float v4_float[8];
2398 };
2399#endif
2400
2401 struct type *t;
2402
2403 t = arch_composite_type (gdbarch,
2404 "__gdb_builtin_type_vec256i", TYPE_CODE_UNION);
2405 append_composite_type_field (t, "v8_float",
2406 init_vector_type (bt->builtin_float, 8));
2407 append_composite_type_field (t, "v4_double",
2408 init_vector_type (bt->builtin_double, 4));
2409 append_composite_type_field (t, "v32_int8",
2410 init_vector_type (bt->builtin_int8, 32));
2411 append_composite_type_field (t, "v16_int16",
2412 init_vector_type (bt->builtin_int16, 16));
2413 append_composite_type_field (t, "v8_int32",
2414 init_vector_type (bt->builtin_int32, 8));
2415 append_composite_type_field (t, "v4_int64",
2416 init_vector_type (bt->builtin_int64, 4));
2417 append_composite_type_field (t, "v2_int128",
2418 init_vector_type (bt->builtin_int128, 2));
2419
2420 TYPE_VECTOR (t) = 1;
0c5acf93 2421 TYPE_NAME (t) = "builtin_type_vec256i";
c131fcee
L
2422 tdep->i386_ymm_type = t;
2423 }
2424
2425 return tdep->i386_ymm_type;
2426}
2427
794ac428 2428/* Construct vector type for MMX registers. */
90884b2b 2429static struct type *
794ac428
UW
2430i386_mmx_type (struct gdbarch *gdbarch)
2431{
2432 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2433
2434 if (!tdep->i386_mmx_type)
2435 {
df4df182
UW
2436 const struct builtin_type *bt = builtin_type (gdbarch);
2437
794ac428
UW
2438 /* The type we're building is this: */
2439#if 0
2440 union __gdb_builtin_type_vec64i
2441 {
2442 int64_t uint64;
2443 int32_t v2_int32[2];
2444 int16_t v4_int16[4];
2445 int8_t v8_int8[8];
2446 };
2447#endif
2448
2449 struct type *t;
2450
e9bb382b
UW
2451 t = arch_composite_type (gdbarch,
2452 "__gdb_builtin_type_vec64i", TYPE_CODE_UNION);
df4df182
UW
2453
2454 append_composite_type_field (t, "uint64", bt->builtin_int64);
794ac428 2455 append_composite_type_field (t, "v2_int32",
df4df182 2456 init_vector_type (bt->builtin_int32, 2));
794ac428 2457 append_composite_type_field (t, "v4_int16",
df4df182 2458 init_vector_type (bt->builtin_int16, 4));
794ac428 2459 append_composite_type_field (t, "v8_int8",
df4df182 2460 init_vector_type (bt->builtin_int8, 8));
794ac428 2461
876cecd0 2462 TYPE_VECTOR (t) = 1;
794ac428
UW
2463 TYPE_NAME (t) = "builtin_type_vec64i";
2464 tdep->i386_mmx_type = t;
2465 }
2466
2467 return tdep->i386_mmx_type;
2468}
2469
d7a0d72c 2470/* Return the GDB type object for the "standard" data type of data in
1777feb0 2471 register REGNUM. */
d7a0d72c 2472
3a1e71e3 2473static struct type *
90884b2b 2474i386_pseudo_register_type (struct gdbarch *gdbarch, int regnum)
d7a0d72c 2475{
1ba53b71
L
2476 if (i386_mmx_regnum_p (gdbarch, regnum))
2477 return i386_mmx_type (gdbarch);
c131fcee
L
2478 else if (i386_ymm_regnum_p (gdbarch, regnum))
2479 return i386_ymm_type (gdbarch);
1ba53b71
L
2480 else
2481 {
2482 const struct builtin_type *bt = builtin_type (gdbarch);
2483 if (i386_byte_regnum_p (gdbarch, regnum))
2484 return bt->builtin_int8;
2485 else if (i386_word_regnum_p (gdbarch, regnum))
2486 return bt->builtin_int16;
2487 else if (i386_dword_regnum_p (gdbarch, regnum))
2488 return bt->builtin_int32;
2489 }
2490
2491 internal_error (__FILE__, __LINE__, _("invalid regnum"));
d7a0d72c
MK
2492}
2493
28fc6740 2494/* Map a cooked register onto a raw register or memory. For the i386,
acd5c798 2495 the MMX registers need to be mapped onto floating point registers. */
28fc6740
AC
2496
2497static int
c86c27af 2498i386_mmx_regnum_to_fp_regnum (struct regcache *regcache, int regnum)
28fc6740 2499{
5716833c
MK
2500 struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache));
2501 int mmxreg, fpreg;
28fc6740
AC
2502 ULONGEST fstat;
2503 int tos;
c86c27af 2504
5716833c 2505 mmxreg = regnum - tdep->mm0_regnum;
20a6ec49 2506 regcache_raw_read_unsigned (regcache, I387_FSTAT_REGNUM (tdep), &fstat);
28fc6740 2507 tos = (fstat >> 11) & 0x7;
5716833c
MK
2508 fpreg = (mmxreg + tos) % 8;
2509
20a6ec49 2510 return (I387_ST0_REGNUM (tdep) + fpreg);
28fc6740
AC
2511}
2512
1ba53b71 2513void
28fc6740 2514i386_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
42835c2b 2515 int regnum, gdb_byte *buf)
28fc6740 2516{
1ba53b71
L
2517 gdb_byte raw_buf[MAX_REGISTER_SIZE];
2518
5716833c 2519 if (i386_mmx_regnum_p (gdbarch, regnum))
28fc6740 2520 {
c86c27af
MK
2521 int fpnum = i386_mmx_regnum_to_fp_regnum (regcache, regnum);
2522
28fc6740 2523 /* Extract (always little endian). */
1ba53b71
L
2524 regcache_raw_read (regcache, fpnum, raw_buf);
2525 memcpy (buf, raw_buf, register_size (gdbarch, regnum));
28fc6740
AC
2526 }
2527 else
1ba53b71
L
2528 {
2529 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2530
c131fcee
L
2531 if (i386_ymm_regnum_p (gdbarch, regnum))
2532 {
2533 regnum -= tdep->ymm0_regnum;
2534
1777feb0 2535 /* Extract (always little endian). Read lower 128bits. */
c131fcee
L
2536 regcache_raw_read (regcache,
2537 I387_XMM0_REGNUM (tdep) + regnum,
2538 raw_buf);
2539 memcpy (buf, raw_buf, 16);
2540 /* Read upper 128bits. */
2541 regcache_raw_read (regcache,
2542 tdep->ymm0h_regnum + regnum,
2543 raw_buf);
2544 memcpy (buf + 16, raw_buf, 16);
2545 }
2546 else if (i386_word_regnum_p (gdbarch, regnum))
1ba53b71
L
2547 {
2548 int gpnum = regnum - tdep->ax_regnum;
2549
2550 /* Extract (always little endian). */
2551 regcache_raw_read (regcache, gpnum, raw_buf);
2552 memcpy (buf, raw_buf, 2);
2553 }
2554 else if (i386_byte_regnum_p (gdbarch, regnum))
2555 {
2556 /* Check byte pseudo registers last since this function will
2557 be called from amd64_pseudo_register_read, which handles
2558 byte pseudo registers differently. */
2559 int gpnum = regnum - tdep->al_regnum;
2560
2561 /* Extract (always little endian). We read both lower and
2562 upper registers. */
2563 regcache_raw_read (regcache, gpnum % 4, raw_buf);
2564 if (gpnum >= 4)
2565 memcpy (buf, raw_buf + 1, 1);
2566 else
2567 memcpy (buf, raw_buf, 1);
2568 }
2569 else
2570 internal_error (__FILE__, __LINE__, _("invalid regnum"));
2571 }
28fc6740
AC
2572}
2573
1ba53b71 2574void
28fc6740 2575i386_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
42835c2b 2576 int regnum, const gdb_byte *buf)
28fc6740 2577{
1ba53b71
L
2578 gdb_byte raw_buf[MAX_REGISTER_SIZE];
2579
5716833c 2580 if (i386_mmx_regnum_p (gdbarch, regnum))
28fc6740 2581 {
c86c27af
MK
2582 int fpnum = i386_mmx_regnum_to_fp_regnum (regcache, regnum);
2583
28fc6740 2584 /* Read ... */
1ba53b71 2585 regcache_raw_read (regcache, fpnum, raw_buf);
28fc6740 2586 /* ... Modify ... (always little endian). */
1ba53b71 2587 memcpy (raw_buf, buf, register_size (gdbarch, regnum));
28fc6740 2588 /* ... Write. */
1ba53b71 2589 regcache_raw_write (regcache, fpnum, raw_buf);
28fc6740
AC
2590 }
2591 else
1ba53b71
L
2592 {
2593 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2594
c131fcee
L
2595 if (i386_ymm_regnum_p (gdbarch, regnum))
2596 {
2597 regnum -= tdep->ymm0_regnum;
2598
2599 /* ... Write lower 128bits. */
2600 regcache_raw_write (regcache,
2601 I387_XMM0_REGNUM (tdep) + regnum,
2602 buf);
2603 /* ... Write upper 128bits. */
2604 regcache_raw_write (regcache,
2605 tdep->ymm0h_regnum + regnum,
2606 buf + 16);
2607 }
2608 else if (i386_word_regnum_p (gdbarch, regnum))
1ba53b71
L
2609 {
2610 int gpnum = regnum - tdep->ax_regnum;
2611
2612 /* Read ... */
2613 regcache_raw_read (regcache, gpnum, raw_buf);
2614 /* ... Modify ... (always little endian). */
2615 memcpy (raw_buf, buf, 2);
2616 /* ... Write. */
2617 regcache_raw_write (regcache, gpnum, raw_buf);
2618 }
2619 else if (i386_byte_regnum_p (gdbarch, regnum))
2620 {
2621 /* Check byte pseudo registers last since this function will
2622 be called from amd64_pseudo_register_read, which handles
2623 byte pseudo registers differently. */
2624 int gpnum = regnum - tdep->al_regnum;
2625
2626 /* Read ... We read both lower and upper registers. */
2627 regcache_raw_read (regcache, gpnum % 4, raw_buf);
2628 /* ... Modify ... (always little endian). */
2629 if (gpnum >= 4)
2630 memcpy (raw_buf + 1, buf, 1);
2631 else
2632 memcpy (raw_buf, buf, 1);
2633 /* ... Write. */
2634 regcache_raw_write (regcache, gpnum % 4, raw_buf);
2635 }
2636 else
2637 internal_error (__FILE__, __LINE__, _("invalid regnum"));
2638 }
28fc6740 2639}
ff2e87ac
AC
2640\f
2641
ff2e87ac
AC
2642/* Return the register number of the register allocated by GCC after
2643 REGNUM, or -1 if there is no such register. */
2644
2645static int
2646i386_next_regnum (int regnum)
2647{
2648 /* GCC allocates the registers in the order:
2649
2650 %eax, %edx, %ecx, %ebx, %esi, %edi, %ebp, %esp, ...
2651
2652 Since storing a variable in %esp doesn't make any sense we return
2653 -1 for %ebp and for %esp itself. */
2654 static int next_regnum[] =
2655 {
2656 I386_EDX_REGNUM, /* Slot for %eax. */
2657 I386_EBX_REGNUM, /* Slot for %ecx. */
2658 I386_ECX_REGNUM, /* Slot for %edx. */
2659 I386_ESI_REGNUM, /* Slot for %ebx. */
2660 -1, -1, /* Slots for %esp and %ebp. */
2661 I386_EDI_REGNUM, /* Slot for %esi. */
2662 I386_EBP_REGNUM /* Slot for %edi. */
2663 };
2664
de5b9bb9 2665 if (regnum >= 0 && regnum < sizeof (next_regnum) / sizeof (next_regnum[0]))
ff2e87ac 2666 return next_regnum[regnum];
28fc6740 2667
ff2e87ac
AC
2668 return -1;
2669}
2670
2671/* Return nonzero if a value of type TYPE stored in register REGNUM
2672 needs any special handling. */
d7a0d72c 2673
3a1e71e3 2674static int
1777feb0
MS
2675i386_convert_register_p (struct gdbarch *gdbarch,
2676 int regnum, struct type *type)
d7a0d72c 2677{
de5b9bb9
MK
2678 int len = TYPE_LENGTH (type);
2679
ff2e87ac
AC
2680 /* Values may be spread across multiple registers. Most debugging
2681 formats aren't expressive enough to specify the locations, so
2682 some heuristics is involved. Right now we only handle types that
de5b9bb9
MK
2683 have a length that is a multiple of the word size, since GCC
2684 doesn't seem to put any other types into registers. */
2685 if (len > 4 && len % 4 == 0)
2686 {
2687 int last_regnum = regnum;
2688
2689 while (len > 4)
2690 {
2691 last_regnum = i386_next_regnum (last_regnum);
2692 len -= 4;
2693 }
2694
2695 if (last_regnum != -1)
2696 return 1;
2697 }
ff2e87ac 2698
0abe36f5 2699 return i387_convert_register_p (gdbarch, regnum, type);
d7a0d72c
MK
2700}
2701
ff2e87ac
AC
2702/* Read a value of type TYPE from register REGNUM in frame FRAME, and
2703 return its contents in TO. */
ac27f131 2704
3a1e71e3 2705static void
ff2e87ac 2706i386_register_to_value (struct frame_info *frame, int regnum,
42835c2b 2707 struct type *type, gdb_byte *to)
ac27f131 2708{
20a6ec49 2709 struct gdbarch *gdbarch = get_frame_arch (frame);
de5b9bb9 2710 int len = TYPE_LENGTH (type);
de5b9bb9 2711
ff2e87ac
AC
2712 /* FIXME: kettenis/20030609: What should we do if REGNUM isn't
2713 available in FRAME (i.e. if it wasn't saved)? */
3d261580 2714
20a6ec49 2715 if (i386_fp_regnum_p (gdbarch, regnum))
8d7f6b4a 2716 {
d532c08f
MK
2717 i387_register_to_value (frame, regnum, type, to);
2718 return;
8d7f6b4a 2719 }
ff2e87ac 2720
fd35795f 2721 /* Read a value spread across multiple registers. */
de5b9bb9
MK
2722
2723 gdb_assert (len > 4 && len % 4 == 0);
3d261580 2724
de5b9bb9
MK
2725 while (len > 0)
2726 {
2727 gdb_assert (regnum != -1);
20a6ec49 2728 gdb_assert (register_size (gdbarch, regnum) == 4);
d532c08f 2729
42835c2b 2730 get_frame_register (frame, regnum, to);
de5b9bb9
MK
2731 regnum = i386_next_regnum (regnum);
2732 len -= 4;
42835c2b 2733 to += 4;
de5b9bb9 2734 }
ac27f131
MK
2735}
2736
ff2e87ac
AC
2737/* Write the contents FROM of a value of type TYPE into register
2738 REGNUM in frame FRAME. */
ac27f131 2739
3a1e71e3 2740static void
ff2e87ac 2741i386_value_to_register (struct frame_info *frame, int regnum,
42835c2b 2742 struct type *type, const gdb_byte *from)
ac27f131 2743{
de5b9bb9 2744 int len = TYPE_LENGTH (type);
de5b9bb9 2745
20a6ec49 2746 if (i386_fp_regnum_p (get_frame_arch (frame), regnum))
c6ba6f0d 2747 {
d532c08f
MK
2748 i387_value_to_register (frame, regnum, type, from);
2749 return;
2750 }
3d261580 2751
fd35795f 2752 /* Write a value spread across multiple registers. */
de5b9bb9
MK
2753
2754 gdb_assert (len > 4 && len % 4 == 0);
ff2e87ac 2755
de5b9bb9
MK
2756 while (len > 0)
2757 {
2758 gdb_assert (regnum != -1);
875f8d0e 2759 gdb_assert (register_size (get_frame_arch (frame), regnum) == 4);
d532c08f 2760
42835c2b 2761 put_frame_register (frame, regnum, from);
de5b9bb9
MK
2762 regnum = i386_next_regnum (regnum);
2763 len -= 4;
42835c2b 2764 from += 4;
de5b9bb9 2765 }
ac27f131 2766}
ff2e87ac 2767\f
7fdafb5a
MK
2768/* Supply register REGNUM from the buffer specified by GREGS and LEN
2769 in the general-purpose register set REGSET to register cache
2770 REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
ff2e87ac 2771
20187ed5 2772void
473f17b0
MK
2773i386_supply_gregset (const struct regset *regset, struct regcache *regcache,
2774 int regnum, const void *gregs, size_t len)
2775{
9ea75c57 2776 const struct gdbarch_tdep *tdep = gdbarch_tdep (regset->arch);
156cdbee 2777 const gdb_byte *regs = gregs;
473f17b0
MK
2778 int i;
2779
2780 gdb_assert (len == tdep->sizeof_gregset);
2781
2782 for (i = 0; i < tdep->gregset_num_regs; i++)
2783 {
2784 if ((regnum == i || regnum == -1)
2785 && tdep->gregset_reg_offset[i] != -1)
2786 regcache_raw_supply (regcache, i, regs + tdep->gregset_reg_offset[i]);
2787 }
2788}
2789
7fdafb5a
MK
2790/* Collect register REGNUM from the register cache REGCACHE and store
2791 it in the buffer specified by GREGS and LEN as described by the
2792 general-purpose register set REGSET. If REGNUM is -1, do this for
2793 all registers in REGSET. */
2794
2795void
2796i386_collect_gregset (const struct regset *regset,
2797 const struct regcache *regcache,
2798 int regnum, void *gregs, size_t len)
2799{
2800 const struct gdbarch_tdep *tdep = gdbarch_tdep (regset->arch);
156cdbee 2801 gdb_byte *regs = gregs;
7fdafb5a
MK
2802 int i;
2803
2804 gdb_assert (len == tdep->sizeof_gregset);
2805
2806 for (i = 0; i < tdep->gregset_num_regs; i++)
2807 {
2808 if ((regnum == i || regnum == -1)
2809 && tdep->gregset_reg_offset[i] != -1)
2810 regcache_raw_collect (regcache, i, regs + tdep->gregset_reg_offset[i]);
2811 }
2812}
2813
2814/* Supply register REGNUM from the buffer specified by FPREGS and LEN
2815 in the floating-point register set REGSET to register cache
2816 REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
473f17b0
MK
2817
2818static void
2819i386_supply_fpregset (const struct regset *regset, struct regcache *regcache,
2820 int regnum, const void *fpregs, size_t len)
2821{
9ea75c57 2822 const struct gdbarch_tdep *tdep = gdbarch_tdep (regset->arch);
473f17b0 2823
66a72d25
MK
2824 if (len == I387_SIZEOF_FXSAVE)
2825 {
2826 i387_supply_fxsave (regcache, regnum, fpregs);
2827 return;
2828 }
2829
473f17b0
MK
2830 gdb_assert (len == tdep->sizeof_fpregset);
2831 i387_supply_fsave (regcache, regnum, fpregs);
2832}
8446b36a 2833
2f305df1
MK
2834/* Collect register REGNUM from the register cache REGCACHE and store
2835 it in the buffer specified by FPREGS and LEN as described by the
2836 floating-point register set REGSET. If REGNUM is -1, do this for
2837 all registers in REGSET. */
7fdafb5a
MK
2838
2839static void
2840i386_collect_fpregset (const struct regset *regset,
2841 const struct regcache *regcache,
2842 int regnum, void *fpregs, size_t len)
2843{
2844 const struct gdbarch_tdep *tdep = gdbarch_tdep (regset->arch);
2845
2846 if (len == I387_SIZEOF_FXSAVE)
2847 {
2848 i387_collect_fxsave (regcache, regnum, fpregs);
2849 return;
2850 }
2851
2852 gdb_assert (len == tdep->sizeof_fpregset);
2853 i387_collect_fsave (regcache, regnum, fpregs);
2854}
2855
c131fcee
L
2856/* Similar to i386_supply_fpregset, but use XSAVE extended state. */
2857
2858static void
2859i386_supply_xstateregset (const struct regset *regset,
2860 struct regcache *regcache, int regnum,
2861 const void *xstateregs, size_t len)
2862{
c131fcee
L
2863 i387_supply_xsave (regcache, regnum, xstateregs);
2864}
2865
2866/* Similar to i386_collect_fpregset , but use XSAVE extended state. */
2867
2868static void
2869i386_collect_xstateregset (const struct regset *regset,
2870 const struct regcache *regcache,
2871 int regnum, void *xstateregs, size_t len)
2872{
c131fcee
L
2873 i387_collect_xsave (regcache, regnum, xstateregs, 1);
2874}
2875
8446b36a
MK
2876/* Return the appropriate register set for the core section identified
2877 by SECT_NAME and SECT_SIZE. */
2878
2879const struct regset *
2880i386_regset_from_core_section (struct gdbarch *gdbarch,
2881 const char *sect_name, size_t sect_size)
2882{
2883 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2884
2885 if (strcmp (sect_name, ".reg") == 0 && sect_size == tdep->sizeof_gregset)
2886 {
2887 if (tdep->gregset == NULL)
7fdafb5a
MK
2888 tdep->gregset = regset_alloc (gdbarch, i386_supply_gregset,
2889 i386_collect_gregset);
8446b36a
MK
2890 return tdep->gregset;
2891 }
2892
66a72d25
MK
2893 if ((strcmp (sect_name, ".reg2") == 0 && sect_size == tdep->sizeof_fpregset)
2894 || (strcmp (sect_name, ".reg-xfp") == 0
2895 && sect_size == I387_SIZEOF_FXSAVE))
8446b36a
MK
2896 {
2897 if (tdep->fpregset == NULL)
7fdafb5a
MK
2898 tdep->fpregset = regset_alloc (gdbarch, i386_supply_fpregset,
2899 i386_collect_fpregset);
8446b36a
MK
2900 return tdep->fpregset;
2901 }
2902
c131fcee
L
2903 if (strcmp (sect_name, ".reg-xstate") == 0)
2904 {
2905 if (tdep->xstateregset == NULL)
2906 tdep->xstateregset = regset_alloc (gdbarch,
2907 i386_supply_xstateregset,
2908 i386_collect_xstateregset);
2909
2910 return tdep->xstateregset;
2911 }
2912
8446b36a
MK
2913 return NULL;
2914}
473f17b0 2915\f
fc338970 2916
fc338970 2917/* Stuff for WIN32 PE style DLL's but is pretty generic really. */
c906108c
SS
2918
2919CORE_ADDR
e17a4113
UW
2920i386_pe_skip_trampoline_code (struct frame_info *frame,
2921 CORE_ADDR pc, char *name)
c906108c 2922{
e17a4113
UW
2923 struct gdbarch *gdbarch = get_frame_arch (frame);
2924 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2925
2926 /* jmp *(dest) */
2927 if (pc && read_memory_unsigned_integer (pc, 2, byte_order) == 0x25ff)
c906108c 2928 {
e17a4113
UW
2929 unsigned long indirect =
2930 read_memory_unsigned_integer (pc + 2, 4, byte_order);
c906108c 2931 struct minimal_symbol *indsym =
fc338970 2932 indirect ? lookup_minimal_symbol_by_pc (indirect) : 0;
645dd519 2933 char *symname = indsym ? SYMBOL_LINKAGE_NAME (indsym) : 0;
c906108c 2934
c5aa993b 2935 if (symname)
c906108c 2936 {
c5aa993b
JM
2937 if (strncmp (symname, "__imp_", 6) == 0
2938 || strncmp (symname, "_imp_", 5) == 0)
e17a4113
UW
2939 return name ? 1 :
2940 read_memory_unsigned_integer (indirect, 4, byte_order);
c906108c
SS
2941 }
2942 }
fc338970 2943 return 0; /* Not a trampoline. */
c906108c 2944}
fc338970
MK
2945\f
2946
10458914
DJ
2947/* Return whether the THIS_FRAME corresponds to a sigtramp
2948 routine. */
8201327c 2949
4bd207ef 2950int
10458914 2951i386_sigtramp_p (struct frame_info *this_frame)
8201327c 2952{
10458914 2953 CORE_ADDR pc = get_frame_pc (this_frame);
911bc6ee
MK
2954 char *name;
2955
2956 find_pc_partial_function (pc, &name, NULL, NULL);
8201327c
MK
2957 return (name && strcmp ("_sigtramp", name) == 0);
2958}
2959\f
2960
fc338970
MK
2961/* We have two flavours of disassembly. The machinery on this page
2962 deals with switching between those. */
c906108c
SS
2963
2964static int
a89aa300 2965i386_print_insn (bfd_vma pc, struct disassemble_info *info)
c906108c 2966{
5e3397bb
MK
2967 gdb_assert (disassembly_flavor == att_flavor
2968 || disassembly_flavor == intel_flavor);
2969
2970 /* FIXME: kettenis/20020915: Until disassembler_options is properly
2971 constified, cast to prevent a compiler warning. */
2972 info->disassembler_options = (char *) disassembly_flavor;
5e3397bb
MK
2973
2974 return print_insn_i386 (pc, info);
7a292a7a 2975}
fc338970 2976\f
3ce1502b 2977
8201327c
MK
2978/* There are a few i386 architecture variants that differ only
2979 slightly from the generic i386 target. For now, we don't give them
2980 their own source file, but include them here. As a consequence,
2981 they'll always be included. */
3ce1502b 2982
8201327c 2983/* System V Release 4 (SVR4). */
3ce1502b 2984
10458914
DJ
2985/* Return whether THIS_FRAME corresponds to a SVR4 sigtramp
2986 routine. */
911bc6ee 2987
8201327c 2988static int
10458914 2989i386_svr4_sigtramp_p (struct frame_info *this_frame)
d2a7c97a 2990{
10458914 2991 CORE_ADDR pc = get_frame_pc (this_frame);
911bc6ee
MK
2992 char *name;
2993
acd5c798
MK
2994 /* UnixWare uses _sigacthandler. The origin of the other symbols is
2995 currently unknown. */
911bc6ee 2996 find_pc_partial_function (pc, &name, NULL, NULL);
8201327c
MK
2997 return (name && (strcmp ("_sigreturn", name) == 0
2998 || strcmp ("_sigacthandler", name) == 0
2999 || strcmp ("sigvechandler", name) == 0));
3000}
d2a7c97a 3001
10458914
DJ
3002/* Assuming THIS_FRAME is for a SVR4 sigtramp routine, return the
3003 address of the associated sigcontext (ucontext) structure. */
3ce1502b 3004
3a1e71e3 3005static CORE_ADDR
10458914 3006i386_svr4_sigcontext_addr (struct frame_info *this_frame)
8201327c 3007{
e17a4113
UW
3008 struct gdbarch *gdbarch = get_frame_arch (this_frame);
3009 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
63c0089f 3010 gdb_byte buf[4];
acd5c798 3011 CORE_ADDR sp;
3ce1502b 3012
10458914 3013 get_frame_register (this_frame, I386_ESP_REGNUM, buf);
e17a4113 3014 sp = extract_unsigned_integer (buf, 4, byte_order);
21d0e8a4 3015
e17a4113 3016 return read_memory_unsigned_integer (sp + 8, 4, byte_order);
8201327c
MK
3017}
3018\f
3ce1502b 3019
8201327c 3020/* Generic ELF. */
d2a7c97a 3021
8201327c
MK
3022void
3023i386_elf_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
3024{
c4fc7f1b
MK
3025 /* We typically use stabs-in-ELF with the SVR4 register numbering. */
3026 set_gdbarch_stab_reg_to_regnum (gdbarch, i386_svr4_reg_to_regnum);
8201327c 3027}
3ce1502b 3028
8201327c 3029/* System V Release 4 (SVR4). */
3ce1502b 3030
8201327c
MK
3031void
3032i386_svr4_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
3033{
3034 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3ce1502b 3035
8201327c
MK
3036 /* System V Release 4 uses ELF. */
3037 i386_elf_init_abi (info, gdbarch);
3ce1502b 3038
dfe01d39 3039 /* System V Release 4 has shared libraries. */
dfe01d39
MK
3040 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
3041
911bc6ee 3042 tdep->sigtramp_p = i386_svr4_sigtramp_p;
21d0e8a4 3043 tdep->sigcontext_addr = i386_svr4_sigcontext_addr;
acd5c798
MK
3044 tdep->sc_pc_offset = 36 + 14 * 4;
3045 tdep->sc_sp_offset = 36 + 17 * 4;
3ce1502b 3046
8201327c 3047 tdep->jb_pc_offset = 20;
3ce1502b
MK
3048}
3049
8201327c 3050/* DJGPP. */
3ce1502b 3051
3a1e71e3 3052static void
8201327c 3053i386_go32_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
3ce1502b 3054{
8201327c 3055 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3ce1502b 3056
911bc6ee
MK
3057 /* DJGPP doesn't have any special frames for signal handlers. */
3058 tdep->sigtramp_p = NULL;
3ce1502b 3059
8201327c 3060 tdep->jb_pc_offset = 36;
15430fc0
EZ
3061
3062 /* DJGPP does not support the SSE registers. */
3a13a53b
L
3063 if (! tdesc_has_registers (info.target_desc))
3064 tdep->tdesc = tdesc_i386_mmx;
3d22076f
EZ
3065
3066 /* Native compiler is GCC, which uses the SVR4 register numbering
3067 even in COFF and STABS. See the comment in i386_gdbarch_init,
3068 before the calls to set_gdbarch_stab_reg_to_regnum and
3069 set_gdbarch_sdb_reg_to_regnum. */
3070 set_gdbarch_stab_reg_to_regnum (gdbarch, i386_svr4_reg_to_regnum);
3071 set_gdbarch_sdb_reg_to_regnum (gdbarch, i386_svr4_reg_to_regnum);
ab38a727
PA
3072
3073 set_gdbarch_has_dos_based_file_system (gdbarch, 1);
3ce1502b 3074}
8201327c 3075\f
2acceee2 3076
38c968cf
AC
3077/* i386 register groups. In addition to the normal groups, add "mmx"
3078 and "sse". */
3079
3080static struct reggroup *i386_sse_reggroup;
3081static struct reggroup *i386_mmx_reggroup;
3082
3083static void
3084i386_init_reggroups (void)
3085{
3086 i386_sse_reggroup = reggroup_new ("sse", USER_REGGROUP);
3087 i386_mmx_reggroup = reggroup_new ("mmx", USER_REGGROUP);
3088}
3089
3090static void
3091i386_add_reggroups (struct gdbarch *gdbarch)
3092{
3093 reggroup_add (gdbarch, i386_sse_reggroup);
3094 reggroup_add (gdbarch, i386_mmx_reggroup);
3095 reggroup_add (gdbarch, general_reggroup);
3096 reggroup_add (gdbarch, float_reggroup);
3097 reggroup_add (gdbarch, all_reggroup);
3098 reggroup_add (gdbarch, save_reggroup);
3099 reggroup_add (gdbarch, restore_reggroup);
3100 reggroup_add (gdbarch, vector_reggroup);
3101 reggroup_add (gdbarch, system_reggroup);
3102}
3103
3104int
3105i386_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
3106 struct reggroup *group)
3107{
c131fcee
L
3108 const struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3109 int fp_regnum_p, mmx_regnum_p, xmm_regnum_p, mxcsr_regnum_p,
3110 ymm_regnum_p, ymmh_regnum_p;
acd5c798 3111
1ba53b71
L
3112 /* Don't include pseudo registers, except for MMX, in any register
3113 groups. */
c131fcee 3114 if (i386_byte_regnum_p (gdbarch, regnum))
1ba53b71
L
3115 return 0;
3116
c131fcee 3117 if (i386_word_regnum_p (gdbarch, regnum))
1ba53b71
L
3118 return 0;
3119
c131fcee 3120 if (i386_dword_regnum_p (gdbarch, regnum))
1ba53b71
L
3121 return 0;
3122
3123 mmx_regnum_p = i386_mmx_regnum_p (gdbarch, regnum);
38c968cf
AC
3124 if (group == i386_mmx_reggroup)
3125 return mmx_regnum_p;
1ba53b71 3126
c131fcee
L
3127 xmm_regnum_p = i386_xmm_regnum_p (gdbarch, regnum);
3128 mxcsr_regnum_p = i386_mxcsr_regnum_p (gdbarch, regnum);
38c968cf 3129 if (group == i386_sse_reggroup)
c131fcee
L
3130 return xmm_regnum_p || mxcsr_regnum_p;
3131
3132 ymm_regnum_p = i386_ymm_regnum_p (gdbarch, regnum);
38c968cf 3133 if (group == vector_reggroup)
c131fcee
L
3134 return (mmx_regnum_p
3135 || ymm_regnum_p
3136 || mxcsr_regnum_p
3137 || (xmm_regnum_p
3138 && ((tdep->xcr0 & I386_XSTATE_AVX_MASK)
3139 == I386_XSTATE_SSE_MASK)));
1ba53b71
L
3140
3141 fp_regnum_p = (i386_fp_regnum_p (gdbarch, regnum)
3142 || i386_fpc_regnum_p (gdbarch, regnum));
38c968cf
AC
3143 if (group == float_reggroup)
3144 return fp_regnum_p;
1ba53b71 3145
c131fcee
L
3146 /* For "info reg all", don't include upper YMM registers nor XMM
3147 registers when AVX is supported. */
3148 ymmh_regnum_p = i386_ymmh_regnum_p (gdbarch, regnum);
3149 if (group == all_reggroup
3150 && ((xmm_regnum_p
3151 && (tdep->xcr0 & I386_XSTATE_AVX))
3152 || ymmh_regnum_p))
3153 return 0;
3154
38c968cf 3155 if (group == general_reggroup)
1ba53b71
L
3156 return (!fp_regnum_p
3157 && !mmx_regnum_p
c131fcee
L
3158 && !mxcsr_regnum_p
3159 && !xmm_regnum_p
3160 && !ymm_regnum_p
3161 && !ymmh_regnum_p);
acd5c798 3162
38c968cf
AC
3163 return default_register_reggroup_p (gdbarch, regnum, group);
3164}
38c968cf 3165\f
acd5c798 3166
f837910f
MK
3167/* Get the ARGIth function argument for the current function. */
3168
42c466d7 3169static CORE_ADDR
143985b7
AF
3170i386_fetch_pointer_argument (struct frame_info *frame, int argi,
3171 struct type *type)
3172{
e17a4113
UW
3173 struct gdbarch *gdbarch = get_frame_arch (frame);
3174 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f837910f 3175 CORE_ADDR sp = get_frame_register_unsigned (frame, I386_ESP_REGNUM);
e17a4113 3176 return read_memory_unsigned_integer (sp + (4 * (argi + 1)), 4, byte_order);
143985b7
AF
3177}
3178
514f746b
AR
3179static void
3180i386_skip_permanent_breakpoint (struct regcache *regcache)
3181{
3182 CORE_ADDR current_pc = regcache_read_pc (regcache);
3183
3184 /* On i386, breakpoint is exactly 1 byte long, so we just
3185 adjust the PC in the regcache. */
3186 current_pc += 1;
3187 regcache_write_pc (regcache, current_pc);
3188}
3189
3190
7ad10968
HZ
3191#define PREFIX_REPZ 0x01
3192#define PREFIX_REPNZ 0x02
3193#define PREFIX_LOCK 0x04
3194#define PREFIX_DATA 0x08
3195#define PREFIX_ADDR 0x10
473f17b0 3196
7ad10968
HZ
3197/* operand size */
3198enum
3199{
3200 OT_BYTE = 0,
3201 OT_WORD,
3202 OT_LONG,
cf648174 3203 OT_QUAD,
a3c4230a 3204 OT_DQUAD,
7ad10968 3205};
473f17b0 3206
7ad10968
HZ
3207/* i386 arith/logic operations */
3208enum
3209{
3210 OP_ADDL,
3211 OP_ORL,
3212 OP_ADCL,
3213 OP_SBBL,
3214 OP_ANDL,
3215 OP_SUBL,
3216 OP_XORL,
3217 OP_CMPL,
3218};
5716833c 3219
7ad10968
HZ
3220struct i386_record_s
3221{
cf648174 3222 struct gdbarch *gdbarch;
7ad10968 3223 struct regcache *regcache;
df61f520 3224 CORE_ADDR orig_addr;
7ad10968
HZ
3225 CORE_ADDR addr;
3226 int aflag;
3227 int dflag;
3228 int override;
3229 uint8_t modrm;
3230 uint8_t mod, reg, rm;
3231 int ot;
cf648174
HZ
3232 uint8_t rex_x;
3233 uint8_t rex_b;
3234 int rip_offset;
3235 int popl_esp_hack;
3236 const int *regmap;
7ad10968 3237};
5716833c 3238
7ad10968 3239/* Parse "modrm" part in current memory address that irp->addr point to
1777feb0 3240 Return -1 if something wrong. */
5716833c 3241
7ad10968
HZ
3242static int
3243i386_record_modrm (struct i386_record_s *irp)
3244{
cf648174 3245 struct gdbarch *gdbarch = irp->gdbarch;
5af949e3 3246
7ad10968
HZ
3247 if (target_read_memory (irp->addr, &irp->modrm, 1))
3248 {
3249 if (record_debug)
3250 printf_unfiltered (_("Process record: error reading memory at "
5af949e3
UW
3251 "addr %s len = 1.\n"),
3252 paddress (gdbarch, irp->addr));
7ad10968
HZ
3253 return -1;
3254 }
3255 irp->addr++;
3256 irp->mod = (irp->modrm >> 6) & 3;
3257 irp->reg = (irp->modrm >> 3) & 7;
3258 irp->rm = irp->modrm & 7;
5716833c 3259
7ad10968
HZ
3260 return 0;
3261}
d2a7c97a 3262
7ad10968
HZ
3263/* Get the memory address that current instruction write to and set it to
3264 the argument "addr".
1777feb0 3265 Return -1 if something wrong. */
8201327c 3266
7ad10968 3267static int
cf648174 3268i386_record_lea_modrm_addr (struct i386_record_s *irp, uint64_t *addr)
7ad10968 3269{
cf648174 3270 struct gdbarch *gdbarch = irp->gdbarch;
60a1502a
MS
3271 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3272 gdb_byte buf[4];
3273 ULONGEST offset64;
21d0e8a4 3274
7ad10968
HZ
3275 *addr = 0;
3276 if (irp->aflag)
3277 {
3278 /* 32 bits */
3279 int havesib = 0;
3280 uint8_t scale = 0;
648d0c8b 3281 uint8_t byte;
7ad10968
HZ
3282 uint8_t index = 0;
3283 uint8_t base = irp->rm;
896fb97d 3284
7ad10968
HZ
3285 if (base == 4)
3286 {
3287 havesib = 1;
648d0c8b 3288 if (target_read_memory (irp->addr, &byte, 1))
7ad10968
HZ
3289 {
3290 if (record_debug)
3291 printf_unfiltered (_("Process record: error reading memory "
5af949e3
UW
3292 "at addr %s len = 1.\n"),
3293 paddress (gdbarch, irp->addr));
7ad10968
HZ
3294 return -1;
3295 }
3296 irp->addr++;
648d0c8b
MS
3297 scale = (byte >> 6) & 3;
3298 index = ((byte >> 3) & 7) | irp->rex_x;
3299 base = (byte & 7);
7ad10968 3300 }
cf648174 3301 base |= irp->rex_b;
21d0e8a4 3302
7ad10968
HZ
3303 switch (irp->mod)
3304 {
3305 case 0:
3306 if ((base & 7) == 5)
3307 {
3308 base = 0xff;
60a1502a 3309 if (target_read_memory (irp->addr, buf, 4))
7ad10968
HZ
3310 {
3311 if (record_debug)
3312 printf_unfiltered (_("Process record: error reading "
5af949e3
UW
3313 "memory at addr %s len = 4.\n"),
3314 paddress (gdbarch, irp->addr));
7ad10968
HZ
3315 return -1;
3316 }
3317 irp->addr += 4;
60a1502a 3318 *addr = extract_signed_integer (buf, 4, byte_order);
cf648174
HZ
3319 if (irp->regmap[X86_RECORD_R8_REGNUM] && !havesib)
3320 *addr += irp->addr + irp->rip_offset;
7ad10968 3321 }
7ad10968
HZ
3322 break;
3323 case 1:
60a1502a 3324 if (target_read_memory (irp->addr, buf, 1))
7ad10968
HZ
3325 {
3326 if (record_debug)
3327 printf_unfiltered (_("Process record: error reading memory "
5af949e3
UW
3328 "at addr %s len = 1.\n"),
3329 paddress (gdbarch, irp->addr));
7ad10968
HZ
3330 return -1;
3331 }
3332 irp->addr++;
60a1502a 3333 *addr = (int8_t) buf[0];
7ad10968
HZ
3334 break;
3335 case 2:
60a1502a 3336 if (target_read_memory (irp->addr, buf, 4))
7ad10968
HZ
3337 {
3338 if (record_debug)
3339 printf_unfiltered (_("Process record: error reading memory "
5af949e3
UW
3340 "at addr %s len = 4.\n"),
3341 paddress (gdbarch, irp->addr));
7ad10968
HZ
3342 return -1;
3343 }
60a1502a 3344 *addr = extract_signed_integer (buf, 4, byte_order);
7ad10968
HZ
3345 irp->addr += 4;
3346 break;
3347 }
356a6b3e 3348
60a1502a 3349 offset64 = 0;
7ad10968 3350 if (base != 0xff)
cf648174
HZ
3351 {
3352 if (base == 4 && irp->popl_esp_hack)
3353 *addr += irp->popl_esp_hack;
3354 regcache_raw_read_unsigned (irp->regcache, irp->regmap[base],
60a1502a 3355 &offset64);
7ad10968 3356 }
cf648174
HZ
3357 if (irp->aflag == 2)
3358 {
60a1502a 3359 *addr += offset64;
cf648174
HZ
3360 }
3361 else
60a1502a 3362 *addr = (uint32_t) (offset64 + *addr);
c4fc7f1b 3363
7ad10968
HZ
3364 if (havesib && (index != 4 || scale != 0))
3365 {
cf648174 3366 regcache_raw_read_unsigned (irp->regcache, irp->regmap[index],
60a1502a 3367 &offset64);
cf648174 3368 if (irp->aflag == 2)
60a1502a 3369 *addr += offset64 << scale;
cf648174 3370 else
60a1502a 3371 *addr = (uint32_t) (*addr + (offset64 << scale));
7ad10968
HZ
3372 }
3373 }
3374 else
3375 {
3376 /* 16 bits */
3377 switch (irp->mod)
3378 {
3379 case 0:
3380 if (irp->rm == 6)
3381 {
60a1502a 3382 if (target_read_memory (irp->addr, buf, 2))
7ad10968
HZ
3383 {
3384 if (record_debug)
3385 printf_unfiltered (_("Process record: error reading "
5af949e3
UW
3386 "memory at addr %s len = 2.\n"),
3387 paddress (gdbarch, irp->addr));
7ad10968
HZ
3388 return -1;
3389 }
3390 irp->addr += 2;
60a1502a 3391 *addr = extract_signed_integer (buf, 2, byte_order);
7ad10968
HZ
3392 irp->rm = 0;
3393 goto no_rm;
3394 }
7ad10968
HZ
3395 break;
3396 case 1:
60a1502a 3397 if (target_read_memory (irp->addr, buf, 1))
7ad10968
HZ
3398 {
3399 if (record_debug)
3400 printf_unfiltered (_("Process record: error reading memory "
5af949e3
UW
3401 "at addr %s len = 1.\n"),
3402 paddress (gdbarch, irp->addr));
7ad10968
HZ
3403 return -1;
3404 }
3405 irp->addr++;
60a1502a 3406 *addr = (int8_t) buf[0];
7ad10968
HZ
3407 break;
3408 case 2:
60a1502a 3409 if (target_read_memory (irp->addr, buf, 2))
7ad10968
HZ
3410 {
3411 if (record_debug)
3412 printf_unfiltered (_("Process record: error reading memory "
5af949e3
UW
3413 "at addr %s len = 2.\n"),
3414 paddress (gdbarch, irp->addr));
7ad10968
HZ
3415 return -1;
3416 }
3417 irp->addr += 2;
60a1502a 3418 *addr = extract_signed_integer (buf, 2, byte_order);
7ad10968
HZ
3419 break;
3420 }
c4fc7f1b 3421
7ad10968
HZ
3422 switch (irp->rm)
3423 {
3424 case 0:
cf648174
HZ
3425 regcache_raw_read_unsigned (irp->regcache,
3426 irp->regmap[X86_RECORD_REBX_REGNUM],
60a1502a
MS
3427 &offset64);
3428 *addr = (uint32_t) (*addr + offset64);
cf648174
HZ
3429 regcache_raw_read_unsigned (irp->regcache,
3430 irp->regmap[X86_RECORD_RESI_REGNUM],
60a1502a
MS
3431 &offset64);
3432 *addr = (uint32_t) (*addr + offset64);
7ad10968
HZ
3433 break;
3434 case 1:
cf648174
HZ
3435 regcache_raw_read_unsigned (irp->regcache,
3436 irp->regmap[X86_RECORD_REBX_REGNUM],
60a1502a
MS
3437 &offset64);
3438 *addr = (uint32_t) (*addr + offset64);
cf648174
HZ
3439 regcache_raw_read_unsigned (irp->regcache,
3440 irp->regmap[X86_RECORD_REDI_REGNUM],
60a1502a
MS
3441 &offset64);
3442 *addr = (uint32_t) (*addr + offset64);
7ad10968
HZ
3443 break;
3444 case 2:
cf648174
HZ
3445 regcache_raw_read_unsigned (irp->regcache,
3446 irp->regmap[X86_RECORD_REBP_REGNUM],
60a1502a
MS
3447 &offset64);
3448 *addr = (uint32_t) (*addr + offset64);
cf648174
HZ
3449 regcache_raw_read_unsigned (irp->regcache,
3450 irp->regmap[X86_RECORD_RESI_REGNUM],
60a1502a
MS
3451 &offset64);
3452 *addr = (uint32_t) (*addr + offset64);
7ad10968
HZ
3453 break;
3454 case 3:
cf648174
HZ
3455 regcache_raw_read_unsigned (irp->regcache,
3456 irp->regmap[X86_RECORD_REBP_REGNUM],
60a1502a
MS
3457 &offset64);
3458 *addr = (uint32_t) (*addr + offset64);
cf648174
HZ
3459 regcache_raw_read_unsigned (irp->regcache,
3460 irp->regmap[X86_RECORD_REDI_REGNUM],
60a1502a
MS
3461 &offset64);
3462 *addr = (uint32_t) (*addr + offset64);
7ad10968
HZ
3463 break;
3464 case 4:
cf648174
HZ
3465 regcache_raw_read_unsigned (irp->regcache,
3466 irp->regmap[X86_RECORD_RESI_REGNUM],
60a1502a
MS
3467 &offset64);
3468 *addr = (uint32_t) (*addr + offset64);
7ad10968
HZ
3469 break;
3470 case 5:
cf648174
HZ
3471 regcache_raw_read_unsigned (irp->regcache,
3472 irp->regmap[X86_RECORD_REDI_REGNUM],
60a1502a
MS
3473 &offset64);
3474 *addr = (uint32_t) (*addr + offset64);
7ad10968
HZ
3475 break;
3476 case 6:
cf648174
HZ
3477 regcache_raw_read_unsigned (irp->regcache,
3478 irp->regmap[X86_RECORD_REBP_REGNUM],
60a1502a
MS
3479 &offset64);
3480 *addr = (uint32_t) (*addr + offset64);
7ad10968
HZ
3481 break;
3482 case 7:
cf648174
HZ
3483 regcache_raw_read_unsigned (irp->regcache,
3484 irp->regmap[X86_RECORD_REBX_REGNUM],
60a1502a
MS
3485 &offset64);
3486 *addr = (uint32_t) (*addr + offset64);
7ad10968
HZ
3487 break;
3488 }
3489 *addr &= 0xffff;
3490 }
c4fc7f1b 3491
01fe1b41 3492 no_rm:
7ad10968
HZ
3493 return 0;
3494}
c4fc7f1b 3495
7ad10968
HZ
3496/* Record the value of the memory that willbe changed in current instruction
3497 to "record_arch_list".
1777feb0 3498 Return -1 if something wrong. */
356a6b3e 3499
7ad10968
HZ
3500static int
3501i386_record_lea_modrm (struct i386_record_s *irp)
3502{
cf648174
HZ
3503 struct gdbarch *gdbarch = irp->gdbarch;
3504 uint64_t addr;
356a6b3e 3505
d7877f7e 3506 if (irp->override >= 0)
7ad10968 3507 {
bb08c432
HZ
3508 if (record_memory_query)
3509 {
3510 int q;
3511
3512 target_terminal_ours ();
3513 q = yquery (_("\
3514Process record ignores the memory change of instruction at address %s\n\
3515because it can't get the value of the segment register.\n\
3516Do you want to stop the program?"),
3517 paddress (gdbarch, irp->orig_addr));
3518 target_terminal_inferior ();
3519 if (q)
3520 return -1;
3521 }
3522
7ad10968
HZ
3523 return 0;
3524 }
61113f8b 3525
7ad10968
HZ
3526 if (i386_record_lea_modrm_addr (irp, &addr))
3527 return -1;
96297dab 3528
7ad10968
HZ
3529 if (record_arch_list_add_mem (addr, 1 << irp->ot))
3530 return -1;
a62cc96e 3531
7ad10968
HZ
3532 return 0;
3533}
b6197528 3534
cf648174 3535/* Record the push operation to "record_arch_list".
1777feb0 3536 Return -1 if something wrong. */
cf648174
HZ
3537
3538static int
3539i386_record_push (struct i386_record_s *irp, int size)
3540{
648d0c8b 3541 ULONGEST addr;
cf648174
HZ
3542
3543 if (record_arch_list_add_reg (irp->regcache,
3544 irp->regmap[X86_RECORD_RESP_REGNUM]))
3545 return -1;
3546 regcache_raw_read_unsigned (irp->regcache,
3547 irp->regmap[X86_RECORD_RESP_REGNUM],
648d0c8b
MS
3548 &addr);
3549 if (record_arch_list_add_mem ((CORE_ADDR) addr - size, size))
cf648174
HZ
3550 return -1;
3551
3552 return 0;
3553}
3554
0289bdd7
MS
3555
3556/* Defines contents to record. */
3557#define I386_SAVE_FPU_REGS 0xfffd
3558#define I386_SAVE_FPU_ENV 0xfffe
3559#define I386_SAVE_FPU_ENV_REG_STACK 0xffff
3560
1777feb0
MS
3561/* Record the value of floating point registers which will be changed
3562 by the current instruction to "record_arch_list". Return -1 if
3563 something is wrong. */
0289bdd7
MS
3564
3565static int i386_record_floats (struct gdbarch *gdbarch,
3566 struct i386_record_s *ir,
3567 uint32_t iregnum)
3568{
3569 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3570 int i;
3571
3572 /* Oza: Because of floating point insn push/pop of fpu stack is going to
3573 happen. Currently we store st0-st7 registers, but we need not store all
3574 registers all the time, in future we use ftag register and record only
3575 those who are not marked as an empty. */
3576
3577 if (I386_SAVE_FPU_REGS == iregnum)
3578 {
3579 for (i = I387_ST0_REGNUM (tdep); i <= I387_ST0_REGNUM (tdep) + 7; i++)
3580 {
3581 if (record_arch_list_add_reg (ir->regcache, i))
3582 return -1;
3583 }
3584 }
3585 else if (I386_SAVE_FPU_ENV == iregnum)
3586 {
3587 for (i = I387_FCTRL_REGNUM (tdep); i <= I387_FOP_REGNUM (tdep); i++)
3588 {
3589 if (record_arch_list_add_reg (ir->regcache, i))
3590 return -1;
3591 }
3592 }
3593 else if (I386_SAVE_FPU_ENV_REG_STACK == iregnum)
3594 {
3595 for (i = I387_ST0_REGNUM (tdep); i <= I387_FOP_REGNUM (tdep); i++)
3596 {
3597 if (record_arch_list_add_reg (ir->regcache, i))
3598 return -1;
3599 }
3600 }
3601 else if ((iregnum >= I387_ST0_REGNUM (tdep)) &&
3602 (iregnum <= I387_FOP_REGNUM (tdep)))
3603 {
3604 if (record_arch_list_add_reg (ir->regcache,iregnum))
3605 return -1;
3606 }
3607 else
3608 {
3609 /* Parameter error. */
3610 return -1;
3611 }
3612 if(I386_SAVE_FPU_ENV != iregnum)
3613 {
3614 for (i = I387_FCTRL_REGNUM (tdep); i <= I387_FOP_REGNUM (tdep); i++)
3615 {
3616 if (record_arch_list_add_reg (ir->regcache, i))
3617 return -1;
3618 }
3619 }
3620 return 0;
3621}
3622
7ad10968
HZ
3623/* Parse the current instruction and record the values of the registers and
3624 memory that will be changed in current instruction to "record_arch_list".
1777feb0 3625 Return -1 if something wrong. */
8201327c 3626
cf648174
HZ
3627#define I386_RECORD_ARCH_LIST_ADD_REG(regnum) \
3628 record_arch_list_add_reg (ir.regcache, ir.regmap[(regnum)])
3629
a6b808b4 3630int
7ad10968 3631i386_process_record (struct gdbarch *gdbarch, struct regcache *regcache,
648d0c8b 3632 CORE_ADDR input_addr)
7ad10968 3633{
60a1502a 3634 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7ad10968 3635 int prefixes = 0;
580879fc 3636 int regnum = 0;
425b824a
MS
3637 uint32_t opcode;
3638 uint8_t opcode8;
648d0c8b 3639 ULONGEST addr;
60a1502a 3640 gdb_byte buf[MAX_REGISTER_SIZE];
7ad10968 3641 struct i386_record_s ir;
0289bdd7 3642 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
cf648174
HZ
3643 int rex = 0;
3644 uint8_t rex_w = -1;
3645 uint8_t rex_r = 0;
7ad10968 3646
8408d274 3647 memset (&ir, 0, sizeof (struct i386_record_s));
7ad10968 3648 ir.regcache = regcache;
648d0c8b
MS
3649 ir.addr = input_addr;
3650 ir.orig_addr = input_addr;
7ad10968
HZ
3651 ir.aflag = 1;
3652 ir.dflag = 1;
cf648174
HZ
3653 ir.override = -1;
3654 ir.popl_esp_hack = 0;
a3c4230a 3655 ir.regmap = tdep->record_regmap;
cf648174 3656 ir.gdbarch = gdbarch;
7ad10968
HZ
3657
3658 if (record_debug > 1)
3659 fprintf_unfiltered (gdb_stdlog, "Process record: i386_process_record "
5af949e3
UW
3660 "addr = %s\n",
3661 paddress (gdbarch, ir.addr));
7ad10968
HZ
3662
3663 /* prefixes */
3664 while (1)
3665 {
425b824a 3666 if (target_read_memory (ir.addr, &opcode8, 1))
7ad10968
HZ
3667 {
3668 if (record_debug)
3669 printf_unfiltered (_("Process record: error reading memory at "
5af949e3
UW
3670 "addr %s len = 1.\n"),
3671 paddress (gdbarch, ir.addr));
7ad10968
HZ
3672 return -1;
3673 }
3674 ir.addr++;
425b824a 3675 switch (opcode8) /* Instruction prefixes */
7ad10968 3676 {
01fe1b41 3677 case REPE_PREFIX_OPCODE:
7ad10968
HZ
3678 prefixes |= PREFIX_REPZ;
3679 break;
01fe1b41 3680 case REPNE_PREFIX_OPCODE:
7ad10968
HZ
3681 prefixes |= PREFIX_REPNZ;
3682 break;
01fe1b41 3683 case LOCK_PREFIX_OPCODE:
7ad10968
HZ
3684 prefixes |= PREFIX_LOCK;
3685 break;
01fe1b41 3686 case CS_PREFIX_OPCODE:
cf648174 3687 ir.override = X86_RECORD_CS_REGNUM;
7ad10968 3688 break;
01fe1b41 3689 case SS_PREFIX_OPCODE:
cf648174 3690 ir.override = X86_RECORD_SS_REGNUM;
7ad10968 3691 break;
01fe1b41 3692 case DS_PREFIX_OPCODE:
cf648174 3693 ir.override = X86_RECORD_DS_REGNUM;
7ad10968 3694 break;
01fe1b41 3695 case ES_PREFIX_OPCODE:
cf648174 3696 ir.override = X86_RECORD_ES_REGNUM;
7ad10968 3697 break;
01fe1b41 3698 case FS_PREFIX_OPCODE:
cf648174 3699 ir.override = X86_RECORD_FS_REGNUM;
7ad10968 3700 break;
01fe1b41 3701 case GS_PREFIX_OPCODE:
cf648174 3702 ir.override = X86_RECORD_GS_REGNUM;
7ad10968 3703 break;
01fe1b41 3704 case DATA_PREFIX_OPCODE:
7ad10968
HZ
3705 prefixes |= PREFIX_DATA;
3706 break;
01fe1b41 3707 case ADDR_PREFIX_OPCODE:
7ad10968
HZ
3708 prefixes |= PREFIX_ADDR;
3709 break;
d691bec7
MS
3710 case 0x40: /* i386 inc %eax */
3711 case 0x41: /* i386 inc %ecx */
3712 case 0x42: /* i386 inc %edx */
3713 case 0x43: /* i386 inc %ebx */
3714 case 0x44: /* i386 inc %esp */
3715 case 0x45: /* i386 inc %ebp */
3716 case 0x46: /* i386 inc %esi */
3717 case 0x47: /* i386 inc %edi */
3718 case 0x48: /* i386 dec %eax */
3719 case 0x49: /* i386 dec %ecx */
3720 case 0x4a: /* i386 dec %edx */
3721 case 0x4b: /* i386 dec %ebx */
3722 case 0x4c: /* i386 dec %esp */
3723 case 0x4d: /* i386 dec %ebp */
3724 case 0x4e: /* i386 dec %esi */
3725 case 0x4f: /* i386 dec %edi */
3726 if (ir.regmap[X86_RECORD_R8_REGNUM]) /* 64 bit target */
cf648174
HZ
3727 {
3728 /* REX */
3729 rex = 1;
425b824a
MS
3730 rex_w = (opcode8 >> 3) & 1;
3731 rex_r = (opcode8 & 0x4) << 1;
3732 ir.rex_x = (opcode8 & 0x2) << 2;
3733 ir.rex_b = (opcode8 & 0x1) << 3;
cf648174 3734 }
d691bec7
MS
3735 else /* 32 bit target */
3736 goto out_prefixes;
cf648174 3737 break;
7ad10968
HZ
3738 default:
3739 goto out_prefixes;
3740 break;
3741 }
3742 }
01fe1b41 3743 out_prefixes:
cf648174
HZ
3744 if (ir.regmap[X86_RECORD_R8_REGNUM] && rex_w == 1)
3745 {
3746 ir.dflag = 2;
3747 }
3748 else
3749 {
3750 if (prefixes & PREFIX_DATA)
3751 ir.dflag ^= 1;
3752 }
7ad10968
HZ
3753 if (prefixes & PREFIX_ADDR)
3754 ir.aflag ^= 1;
cf648174
HZ
3755 else if (ir.regmap[X86_RECORD_R8_REGNUM])
3756 ir.aflag = 2;
7ad10968 3757
1777feb0 3758 /* Now check op code. */
425b824a 3759 opcode = (uint32_t) opcode8;
01fe1b41 3760 reswitch:
7ad10968
HZ
3761 switch (opcode)
3762 {
3763 case 0x0f:
425b824a 3764 if (target_read_memory (ir.addr, &opcode8, 1))
7ad10968
HZ
3765 {
3766 if (record_debug)
3767 printf_unfiltered (_("Process record: error reading memory at "
5af949e3
UW
3768 "addr %s len = 1.\n"),
3769 paddress (gdbarch, ir.addr));
7ad10968
HZ
3770 return -1;
3771 }
3772 ir.addr++;
a3c4230a 3773 opcode = (uint32_t) opcode8 | 0x0f00;
7ad10968
HZ
3774 goto reswitch;
3775 break;
93924b6b 3776
a38bba38 3777 case 0x00: /* arith & logic */
7ad10968
HZ
3778 case 0x01:
3779 case 0x02:
3780 case 0x03:
3781 case 0x04:
3782 case 0x05:
3783 case 0x08:
3784 case 0x09:
3785 case 0x0a:
3786 case 0x0b:
3787 case 0x0c:
3788 case 0x0d:
3789 case 0x10:
3790 case 0x11:
3791 case 0x12:
3792 case 0x13:
3793 case 0x14:
3794 case 0x15:
3795 case 0x18:
3796 case 0x19:
3797 case 0x1a:
3798 case 0x1b:
3799 case 0x1c:
3800 case 0x1d:
3801 case 0x20:
3802 case 0x21:
3803 case 0x22:
3804 case 0x23:
3805 case 0x24:
3806 case 0x25:
3807 case 0x28:
3808 case 0x29:
3809 case 0x2a:
3810 case 0x2b:
3811 case 0x2c:
3812 case 0x2d:
3813 case 0x30:
3814 case 0x31:
3815 case 0x32:
3816 case 0x33:
3817 case 0x34:
3818 case 0x35:
3819 case 0x38:
3820 case 0x39:
3821 case 0x3a:
3822 case 0x3b:
3823 case 0x3c:
3824 case 0x3d:
3825 if (((opcode >> 3) & 7) != OP_CMPL)
3826 {
3827 if ((opcode & 1) == 0)
3828 ir.ot = OT_BYTE;
3829 else
3830 ir.ot = ir.dflag + OT_WORD;
93924b6b 3831
7ad10968
HZ
3832 switch ((opcode >> 1) & 3)
3833 {
a38bba38 3834 case 0: /* OP Ev, Gv */
7ad10968
HZ
3835 if (i386_record_modrm (&ir))
3836 return -1;
3837 if (ir.mod != 3)
3838 {
3839 if (i386_record_lea_modrm (&ir))
3840 return -1;
3841 }
3842 else
3843 {
cf648174
HZ
3844 ir.rm |= ir.rex_b;
3845 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 3846 ir.rm &= 0x3;
cf648174 3847 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm);
7ad10968
HZ
3848 }
3849 break;
a38bba38 3850 case 1: /* OP Gv, Ev */
7ad10968
HZ
3851 if (i386_record_modrm (&ir))
3852 return -1;
cf648174
HZ
3853 ir.reg |= rex_r;
3854 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 3855 ir.reg &= 0x3;
cf648174 3856 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg);
7ad10968 3857 break;
a38bba38 3858 case 2: /* OP A, Iv */
cf648174 3859 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
7ad10968
HZ
3860 break;
3861 }
3862 }
cf648174 3863 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 3864 break;
42fdc8df 3865
a38bba38 3866 case 0x80: /* GRP1 */
7ad10968
HZ
3867 case 0x81:
3868 case 0x82:
3869 case 0x83:
3870 if (i386_record_modrm (&ir))
3871 return -1;
8201327c 3872
7ad10968
HZ
3873 if (ir.reg != OP_CMPL)
3874 {
3875 if ((opcode & 1) == 0)
3876 ir.ot = OT_BYTE;
3877 else
3878 ir.ot = ir.dflag + OT_WORD;
28fc6740 3879
7ad10968
HZ
3880 if (ir.mod != 3)
3881 {
cf648174
HZ
3882 if (opcode == 0x83)
3883 ir.rip_offset = 1;
3884 else
3885 ir.rip_offset = (ir.ot > OT_LONG) ? 4 : (1 << ir.ot);
7ad10968
HZ
3886 if (i386_record_lea_modrm (&ir))
3887 return -1;
3888 }
3889 else
cf648174 3890 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
7ad10968 3891 }
cf648174 3892 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 3893 break;
5e3397bb 3894
a38bba38 3895 case 0x40: /* inc */
7ad10968
HZ
3896 case 0x41:
3897 case 0x42:
3898 case 0x43:
3899 case 0x44:
3900 case 0x45:
3901 case 0x46:
3902 case 0x47:
a38bba38
MS
3903
3904 case 0x48: /* dec */
7ad10968
HZ
3905 case 0x49:
3906 case 0x4a:
3907 case 0x4b:
3908 case 0x4c:
3909 case 0x4d:
3910 case 0x4e:
3911 case 0x4f:
a38bba38 3912
cf648174
HZ
3913 I386_RECORD_ARCH_LIST_ADD_REG (opcode & 7);
3914 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 3915 break;
acd5c798 3916
a38bba38 3917 case 0xf6: /* GRP3 */
7ad10968
HZ
3918 case 0xf7:
3919 if ((opcode & 1) == 0)
3920 ir.ot = OT_BYTE;
3921 else
3922 ir.ot = ir.dflag + OT_WORD;
3923 if (i386_record_modrm (&ir))
3924 return -1;
acd5c798 3925
cf648174
HZ
3926 if (ir.mod != 3 && ir.reg == 0)
3927 ir.rip_offset = (ir.ot > OT_LONG) ? 4 : (1 << ir.ot);
3928
7ad10968
HZ
3929 switch (ir.reg)
3930 {
a38bba38 3931 case 0: /* test */
cf648174 3932 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 3933 break;
a38bba38
MS
3934 case 2: /* not */
3935 case 3: /* neg */
7ad10968
HZ
3936 if (ir.mod != 3)
3937 {
3938 if (i386_record_lea_modrm (&ir))
3939 return -1;
3940 }
3941 else
3942 {
cf648174
HZ
3943 ir.rm |= ir.rex_b;
3944 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 3945 ir.rm &= 0x3;
cf648174 3946 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm);
7ad10968 3947 }
a38bba38 3948 if (ir.reg == 3) /* neg */
cf648174 3949 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 3950 break;
a38bba38
MS
3951 case 4: /* mul */
3952 case 5: /* imul */
3953 case 6: /* div */
3954 case 7: /* idiv */
cf648174 3955 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
7ad10968 3956 if (ir.ot != OT_BYTE)
cf648174
HZ
3957 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
3958 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
3959 break;
3960 default:
3961 ir.addr -= 2;
3962 opcode = opcode << 8 | ir.modrm;
3963 goto no_support;
3964 break;
3965 }
3966 break;
3967
a38bba38
MS
3968 case 0xfe: /* GRP4 */
3969 case 0xff: /* GRP5 */
7ad10968
HZ
3970 if (i386_record_modrm (&ir))
3971 return -1;
3972 if (ir.reg >= 2 && opcode == 0xfe)
3973 {
3974 ir.addr -= 2;
3975 opcode = opcode << 8 | ir.modrm;
3976 goto no_support;
3977 }
7ad10968
HZ
3978 switch (ir.reg)
3979 {
a38bba38
MS
3980 case 0: /* inc */
3981 case 1: /* dec */
cf648174
HZ
3982 if ((opcode & 1) == 0)
3983 ir.ot = OT_BYTE;
3984 else
3985 ir.ot = ir.dflag + OT_WORD;
7ad10968
HZ
3986 if (ir.mod != 3)
3987 {
3988 if (i386_record_lea_modrm (&ir))
3989 return -1;
3990 }
3991 else
3992 {
cf648174
HZ
3993 ir.rm |= ir.rex_b;
3994 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 3995 ir.rm &= 0x3;
cf648174 3996 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm);
7ad10968 3997 }
cf648174 3998 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 3999 break;
a38bba38 4000 case 2: /* call */
cf648174
HZ
4001 if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
4002 ir.dflag = 2;
4003 if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
7ad10968 4004 return -1;
cf648174 4005 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 4006 break;
a38bba38 4007 case 3: /* lcall */
cf648174
HZ
4008 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_CS_REGNUM);
4009 if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
7ad10968 4010 return -1;
cf648174 4011 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 4012 break;
a38bba38
MS
4013 case 4: /* jmp */
4014 case 5: /* ljmp */
cf648174
HZ
4015 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
4016 break;
a38bba38 4017 case 6: /* push */
cf648174
HZ
4018 if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
4019 ir.dflag = 2;
4020 if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
4021 return -1;
7ad10968
HZ
4022 break;
4023 default:
4024 ir.addr -= 2;
4025 opcode = opcode << 8 | ir.modrm;
4026 goto no_support;
4027 break;
4028 }
4029 break;
4030
a38bba38 4031 case 0x84: /* test */
7ad10968
HZ
4032 case 0x85:
4033 case 0xa8:
4034 case 0xa9:
cf648174 4035 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4036 break;
4037
a38bba38 4038 case 0x98: /* CWDE/CBW */
cf648174 4039 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
7ad10968
HZ
4040 break;
4041
a38bba38 4042 case 0x99: /* CDQ/CWD */
cf648174
HZ
4043 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
4044 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
7ad10968
HZ
4045 break;
4046
a38bba38 4047 case 0x0faf: /* imul */
7ad10968
HZ
4048 case 0x69:
4049 case 0x6b:
4050 ir.ot = ir.dflag + OT_WORD;
4051 if (i386_record_modrm (&ir))
4052 return -1;
cf648174
HZ
4053 if (opcode == 0x69)
4054 ir.rip_offset = (ir.ot > OT_LONG) ? 4 : (1 << ir.ot);
4055 else if (opcode == 0x6b)
4056 ir.rip_offset = 1;
4057 ir.reg |= rex_r;
4058 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 4059 ir.reg &= 0x3;
cf648174
HZ
4060 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg);
4061 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4062 break;
4063
a38bba38 4064 case 0x0fc0: /* xadd */
7ad10968
HZ
4065 case 0x0fc1:
4066 if ((opcode & 1) == 0)
4067 ir.ot = OT_BYTE;
4068 else
4069 ir.ot = ir.dflag + OT_WORD;
4070 if (i386_record_modrm (&ir))
4071 return -1;
cf648174 4072 ir.reg |= rex_r;
7ad10968
HZ
4073 if (ir.mod == 3)
4074 {
cf648174 4075 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 4076 ir.reg &= 0x3;
cf648174
HZ
4077 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg);
4078 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 4079 ir.rm &= 0x3;
cf648174 4080 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm);
7ad10968
HZ
4081 }
4082 else
4083 {
4084 if (i386_record_lea_modrm (&ir))
4085 return -1;
cf648174 4086 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 4087 ir.reg &= 0x3;
cf648174 4088 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg);
7ad10968 4089 }
cf648174 4090 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4091 break;
4092
a38bba38 4093 case 0x0fb0: /* cmpxchg */
7ad10968
HZ
4094 case 0x0fb1:
4095 if ((opcode & 1) == 0)
4096 ir.ot = OT_BYTE;
4097 else
4098 ir.ot = ir.dflag + OT_WORD;
4099 if (i386_record_modrm (&ir))
4100 return -1;
4101 if (ir.mod == 3)
4102 {
cf648174
HZ
4103 ir.reg |= rex_r;
4104 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
4105 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 4106 ir.reg &= 0x3;
cf648174 4107 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg);
7ad10968
HZ
4108 }
4109 else
4110 {
cf648174 4111 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
7ad10968
HZ
4112 if (i386_record_lea_modrm (&ir))
4113 return -1;
4114 }
cf648174 4115 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4116 break;
4117
a38bba38 4118 case 0x0fc7: /* cmpxchg8b */
7ad10968
HZ
4119 if (i386_record_modrm (&ir))
4120 return -1;
4121 if (ir.mod == 3)
4122 {
4123 ir.addr -= 2;
4124 opcode = opcode << 8 | ir.modrm;
4125 goto no_support;
4126 }
cf648174
HZ
4127 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
4128 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
7ad10968
HZ
4129 if (i386_record_lea_modrm (&ir))
4130 return -1;
cf648174 4131 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4132 break;
4133
a38bba38 4134 case 0x50: /* push */
7ad10968
HZ
4135 case 0x51:
4136 case 0x52:
4137 case 0x53:
4138 case 0x54:
4139 case 0x55:
4140 case 0x56:
4141 case 0x57:
4142 case 0x68:
4143 case 0x6a:
cf648174
HZ
4144 if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
4145 ir.dflag = 2;
4146 if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
4147 return -1;
4148 break;
4149
a38bba38
MS
4150 case 0x06: /* push es */
4151 case 0x0e: /* push cs */
4152 case 0x16: /* push ss */
4153 case 0x1e: /* push ds */
cf648174
HZ
4154 if (ir.regmap[X86_RECORD_R8_REGNUM])
4155 {
4156 ir.addr -= 1;
4157 goto no_support;
4158 }
4159 if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
4160 return -1;
4161 break;
4162
a38bba38
MS
4163 case 0x0fa0: /* push fs */
4164 case 0x0fa8: /* push gs */
cf648174
HZ
4165 if (ir.regmap[X86_RECORD_R8_REGNUM])
4166 {
4167 ir.addr -= 2;
4168 goto no_support;
4169 }
4170 if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
7ad10968 4171 return -1;
cf648174
HZ
4172 break;
4173
a38bba38 4174 case 0x60: /* pusha */
cf648174
HZ
4175 if (ir.regmap[X86_RECORD_R8_REGNUM])
4176 {
4177 ir.addr -= 1;
4178 goto no_support;
4179 }
4180 if (i386_record_push (&ir, 1 << (ir.dflag + 4)))
7ad10968
HZ
4181 return -1;
4182 break;
4183
a38bba38 4184 case 0x58: /* pop */
7ad10968
HZ
4185 case 0x59:
4186 case 0x5a:
4187 case 0x5b:
4188 case 0x5c:
4189 case 0x5d:
4190 case 0x5e:
4191 case 0x5f:
cf648174
HZ
4192 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
4193 I386_RECORD_ARCH_LIST_ADD_REG ((opcode & 0x7) | ir.rex_b);
7ad10968
HZ
4194 break;
4195
a38bba38 4196 case 0x61: /* popa */
cf648174
HZ
4197 if (ir.regmap[X86_RECORD_R8_REGNUM])
4198 {
4199 ir.addr -= 1;
4200 goto no_support;
7ad10968 4201 }
425b824a
MS
4202 for (regnum = X86_RECORD_REAX_REGNUM;
4203 regnum <= X86_RECORD_REDI_REGNUM;
4204 regnum++)
4205 I386_RECORD_ARCH_LIST_ADD_REG (regnum);
7ad10968
HZ
4206 break;
4207
a38bba38 4208 case 0x8f: /* pop */
cf648174
HZ
4209 if (ir.regmap[X86_RECORD_R8_REGNUM])
4210 ir.ot = ir.dflag ? OT_QUAD : OT_WORD;
4211 else
4212 ir.ot = ir.dflag + OT_WORD;
7ad10968
HZ
4213 if (i386_record_modrm (&ir))
4214 return -1;
4215 if (ir.mod == 3)
cf648174 4216 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
7ad10968
HZ
4217 else
4218 {
cf648174 4219 ir.popl_esp_hack = 1 << ir.ot;
7ad10968
HZ
4220 if (i386_record_lea_modrm (&ir))
4221 return -1;
4222 }
cf648174 4223 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
7ad10968
HZ
4224 break;
4225
a38bba38 4226 case 0xc8: /* enter */
cf648174
HZ
4227 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REBP_REGNUM);
4228 if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
4229 ir.dflag = 2;
4230 if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
7ad10968
HZ
4231 return -1;
4232 break;
4233
a38bba38 4234 case 0xc9: /* leave */
cf648174
HZ
4235 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
4236 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REBP_REGNUM);
7ad10968
HZ
4237 break;
4238
a38bba38 4239 case 0x07: /* pop es */
cf648174
HZ
4240 if (ir.regmap[X86_RECORD_R8_REGNUM])
4241 {
4242 ir.addr -= 1;
4243 goto no_support;
4244 }
4245 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
4246 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_ES_REGNUM);
4247 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4248 break;
4249
a38bba38 4250 case 0x17: /* pop ss */
cf648174
HZ
4251 if (ir.regmap[X86_RECORD_R8_REGNUM])
4252 {
4253 ir.addr -= 1;
4254 goto no_support;
4255 }
4256 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
4257 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_SS_REGNUM);
4258 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4259 break;
4260
a38bba38 4261 case 0x1f: /* pop ds */
cf648174
HZ
4262 if (ir.regmap[X86_RECORD_R8_REGNUM])
4263 {
4264 ir.addr -= 1;
4265 goto no_support;
4266 }
4267 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
4268 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_DS_REGNUM);
4269 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4270 break;
4271
a38bba38 4272 case 0x0fa1: /* pop fs */
cf648174
HZ
4273 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
4274 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_FS_REGNUM);
4275 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4276 break;
4277
a38bba38 4278 case 0x0fa9: /* pop gs */
cf648174
HZ
4279 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
4280 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_GS_REGNUM);
4281 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4282 break;
4283
a38bba38 4284 case 0x88: /* mov */
7ad10968
HZ
4285 case 0x89:
4286 case 0xc6:
4287 case 0xc7:
4288 if ((opcode & 1) == 0)
4289 ir.ot = OT_BYTE;
4290 else
4291 ir.ot = ir.dflag + OT_WORD;
4292
4293 if (i386_record_modrm (&ir))
4294 return -1;
4295
4296 if (ir.mod != 3)
4297 {
cf648174
HZ
4298 if (opcode == 0xc6 || opcode == 0xc7)
4299 ir.rip_offset = (ir.ot > OT_LONG) ? 4 : (1 << ir.ot);
7ad10968
HZ
4300 if (i386_record_lea_modrm (&ir))
4301 return -1;
4302 }
4303 else
4304 {
cf648174
HZ
4305 if (opcode == 0xc6 || opcode == 0xc7)
4306 ir.rm |= ir.rex_b;
4307 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 4308 ir.rm &= 0x3;
cf648174 4309 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm);
7ad10968 4310 }
7ad10968 4311 break;
cf648174 4312
a38bba38 4313 case 0x8a: /* mov */
7ad10968
HZ
4314 case 0x8b:
4315 if ((opcode & 1) == 0)
4316 ir.ot = OT_BYTE;
4317 else
4318 ir.ot = ir.dflag + OT_WORD;
7ad10968
HZ
4319 if (i386_record_modrm (&ir))
4320 return -1;
cf648174
HZ
4321 ir.reg |= rex_r;
4322 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 4323 ir.reg &= 0x3;
cf648174
HZ
4324 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg);
4325 break;
7ad10968 4326
a38bba38 4327 case 0x8c: /* mov seg */
cf648174 4328 if (i386_record_modrm (&ir))
7ad10968 4329 return -1;
cf648174
HZ
4330 if (ir.reg > 5)
4331 {
4332 ir.addr -= 2;
4333 opcode = opcode << 8 | ir.modrm;
4334 goto no_support;
4335 }
4336
4337 if (ir.mod == 3)
4338 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm);
4339 else
4340 {
4341 ir.ot = OT_WORD;
4342 if (i386_record_lea_modrm (&ir))
4343 return -1;
4344 }
7ad10968
HZ
4345 break;
4346
a38bba38 4347 case 0x8e: /* mov seg */
7ad10968
HZ
4348 if (i386_record_modrm (&ir))
4349 return -1;
7ad10968
HZ
4350 switch (ir.reg)
4351 {
4352 case 0:
425b824a 4353 regnum = X86_RECORD_ES_REGNUM;
7ad10968
HZ
4354 break;
4355 case 2:
425b824a 4356 regnum = X86_RECORD_SS_REGNUM;
7ad10968
HZ
4357 break;
4358 case 3:
425b824a 4359 regnum = X86_RECORD_DS_REGNUM;
7ad10968
HZ
4360 break;
4361 case 4:
425b824a 4362 regnum = X86_RECORD_FS_REGNUM;
7ad10968
HZ
4363 break;
4364 case 5:
425b824a 4365 regnum = X86_RECORD_GS_REGNUM;
7ad10968
HZ
4366 break;
4367 default:
4368 ir.addr -= 2;
4369 opcode = opcode << 8 | ir.modrm;
4370 goto no_support;
4371 break;
4372 }
425b824a 4373 I386_RECORD_ARCH_LIST_ADD_REG (regnum);
cf648174 4374 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4375 break;
4376
a38bba38
MS
4377 case 0x0fb6: /* movzbS */
4378 case 0x0fb7: /* movzwS */
4379 case 0x0fbe: /* movsbS */
4380 case 0x0fbf: /* movswS */
7ad10968
HZ
4381 if (i386_record_modrm (&ir))
4382 return -1;
cf648174 4383 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg | rex_r);
7ad10968
HZ
4384 break;
4385
a38bba38 4386 case 0x8d: /* lea */
7ad10968
HZ
4387 if (i386_record_modrm (&ir))
4388 return -1;
4389 if (ir.mod == 3)
4390 {
4391 ir.addr -= 2;
4392 opcode = opcode << 8 | ir.modrm;
4393 goto no_support;
4394 }
7ad10968 4395 ir.ot = ir.dflag;
cf648174
HZ
4396 ir.reg |= rex_r;
4397 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 4398 ir.reg &= 0x3;
cf648174 4399 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg);
7ad10968
HZ
4400 break;
4401
a38bba38 4402 case 0xa0: /* mov EAX */
7ad10968 4403 case 0xa1:
a38bba38
MS
4404
4405 case 0xd7: /* xlat */
cf648174 4406 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
7ad10968
HZ
4407 break;
4408
a38bba38 4409 case 0xa2: /* mov EAX */
7ad10968 4410 case 0xa3:
d7877f7e 4411 if (ir.override >= 0)
cf648174 4412 {
bb08c432
HZ
4413 if (record_memory_query)
4414 {
4415 int q;
4416
4417 target_terminal_ours ();
4418 q = yquery (_("\
4419Process record ignores the memory change of instruction at address %s\n\
4420because it can't get the value of the segment register.\n\
4421Do you want to stop the program?"),
4422 paddress (gdbarch, ir.orig_addr));
4423 target_terminal_inferior ();
4424 if (q)
4425 return -1;
4426 }
cf648174
HZ
4427 }
4428 else
4429 {
4430 if ((opcode & 1) == 0)
4431 ir.ot = OT_BYTE;
4432 else
4433 ir.ot = ir.dflag + OT_WORD;
4434 if (ir.aflag == 2)
4435 {
60a1502a 4436 if (target_read_memory (ir.addr, buf, 8))
cf648174
HZ
4437 {
4438 if (record_debug)
4439 printf_unfiltered (_("Process record: error reading "
4440 "memory at addr 0x%s len = 8.\n"),
4441 paddress (gdbarch, ir.addr));
4442 return -1;
4443 }
4444 ir.addr += 8;
60a1502a 4445 addr = extract_unsigned_integer (buf, 8, byte_order);
cf648174
HZ
4446 }
4447 else if (ir.aflag)
4448 {
60a1502a 4449 if (target_read_memory (ir.addr, buf, 4))
cf648174
HZ
4450 {
4451 if (record_debug)
4452 printf_unfiltered (_("Process record: error reading "
4453 "memory at addr 0x%s len = 4.\n"),
4454 paddress (gdbarch, ir.addr));
4455 return -1;
4456 }
4457 ir.addr += 4;
60a1502a 4458 addr = extract_unsigned_integer (buf, 4, byte_order);
cf648174
HZ
4459 }
4460 else
4461 {
60a1502a 4462 if (target_read_memory (ir.addr, buf, 2))
cf648174
HZ
4463 {
4464 if (record_debug)
4465 printf_unfiltered (_("Process record: error reading "
4466 "memory at addr 0x%s len = 2.\n"),
4467 paddress (gdbarch, ir.addr));
4468 return -1;
4469 }
4470 ir.addr += 2;
60a1502a 4471 addr = extract_unsigned_integer (buf, 2, byte_order);
cf648174 4472 }
648d0c8b 4473 if (record_arch_list_add_mem (addr, 1 << ir.ot))
cf648174
HZ
4474 return -1;
4475 }
7ad10968
HZ
4476 break;
4477
a38bba38 4478 case 0xb0: /* mov R, Ib */
7ad10968
HZ
4479 case 0xb1:
4480 case 0xb2:
4481 case 0xb3:
4482 case 0xb4:
4483 case 0xb5:
4484 case 0xb6:
4485 case 0xb7:
cf648174
HZ
4486 I386_RECORD_ARCH_LIST_ADD_REG ((ir.regmap[X86_RECORD_R8_REGNUM])
4487 ? ((opcode & 0x7) | ir.rex_b)
4488 : ((opcode & 0x7) & 0x3));
7ad10968
HZ
4489 break;
4490
a38bba38 4491 case 0xb8: /* mov R, Iv */
7ad10968
HZ
4492 case 0xb9:
4493 case 0xba:
4494 case 0xbb:
4495 case 0xbc:
4496 case 0xbd:
4497 case 0xbe:
4498 case 0xbf:
cf648174 4499 I386_RECORD_ARCH_LIST_ADD_REG ((opcode & 0x7) | ir.rex_b);
7ad10968
HZ
4500 break;
4501
a38bba38 4502 case 0x91: /* xchg R, EAX */
7ad10968
HZ
4503 case 0x92:
4504 case 0x93:
4505 case 0x94:
4506 case 0x95:
4507 case 0x96:
4508 case 0x97:
cf648174
HZ
4509 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
4510 I386_RECORD_ARCH_LIST_ADD_REG (opcode & 0x7);
7ad10968
HZ
4511 break;
4512
a38bba38 4513 case 0x86: /* xchg Ev, Gv */
7ad10968
HZ
4514 case 0x87:
4515 if ((opcode & 1) == 0)
4516 ir.ot = OT_BYTE;
4517 else
4518 ir.ot = ir.dflag + OT_WORD;
7ad10968
HZ
4519 if (i386_record_modrm (&ir))
4520 return -1;
7ad10968
HZ
4521 if (ir.mod == 3)
4522 {
86839d38 4523 ir.rm |= ir.rex_b;
cf648174
HZ
4524 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
4525 ir.rm &= 0x3;
4526 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm);
7ad10968
HZ
4527 }
4528 else
4529 {
4530 if (i386_record_lea_modrm (&ir))
4531 return -1;
4532 }
cf648174
HZ
4533 ir.reg |= rex_r;
4534 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 4535 ir.reg &= 0x3;
cf648174 4536 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg);
7ad10968
HZ
4537 break;
4538
a38bba38
MS
4539 case 0xc4: /* les Gv */
4540 case 0xc5: /* lds Gv */
cf648174
HZ
4541 if (ir.regmap[X86_RECORD_R8_REGNUM])
4542 {
4543 ir.addr -= 1;
4544 goto no_support;
4545 }
d3f323f3 4546 /* FALLTHROUGH */
a38bba38
MS
4547 case 0x0fb2: /* lss Gv */
4548 case 0x0fb4: /* lfs Gv */
4549 case 0x0fb5: /* lgs Gv */
7ad10968
HZ
4550 if (i386_record_modrm (&ir))
4551 return -1;
4552 if (ir.mod == 3)
4553 {
4554 if (opcode > 0xff)
4555 ir.addr -= 3;
4556 else
4557 ir.addr -= 2;
4558 opcode = opcode << 8 | ir.modrm;
4559 goto no_support;
4560 }
7ad10968
HZ
4561 switch (opcode)
4562 {
a38bba38 4563 case 0xc4: /* les Gv */
425b824a 4564 regnum = X86_RECORD_ES_REGNUM;
7ad10968 4565 break;
a38bba38 4566 case 0xc5: /* lds Gv */
425b824a 4567 regnum = X86_RECORD_DS_REGNUM;
7ad10968 4568 break;
a38bba38 4569 case 0x0fb2: /* lss Gv */
425b824a 4570 regnum = X86_RECORD_SS_REGNUM;
7ad10968 4571 break;
a38bba38 4572 case 0x0fb4: /* lfs Gv */
425b824a 4573 regnum = X86_RECORD_FS_REGNUM;
7ad10968 4574 break;
a38bba38 4575 case 0x0fb5: /* lgs Gv */
425b824a 4576 regnum = X86_RECORD_GS_REGNUM;
7ad10968
HZ
4577 break;
4578 }
425b824a 4579 I386_RECORD_ARCH_LIST_ADD_REG (regnum);
cf648174
HZ
4580 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg | rex_r);
4581 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4582 break;
4583
a38bba38 4584 case 0xc0: /* shifts */
7ad10968
HZ
4585 case 0xc1:
4586 case 0xd0:
4587 case 0xd1:
4588 case 0xd2:
4589 case 0xd3:
4590 if ((opcode & 1) == 0)
4591 ir.ot = OT_BYTE;
4592 else
4593 ir.ot = ir.dflag + OT_WORD;
7ad10968
HZ
4594 if (i386_record_modrm (&ir))
4595 return -1;
7ad10968
HZ
4596 if (ir.mod != 3 && (opcode == 0xd2 || opcode == 0xd3))
4597 {
4598 if (i386_record_lea_modrm (&ir))
4599 return -1;
4600 }
4601 else
4602 {
cf648174
HZ
4603 ir.rm |= ir.rex_b;
4604 if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
7ad10968 4605 ir.rm &= 0x3;
cf648174 4606 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm);
7ad10968 4607 }
cf648174 4608 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
4609 break;
4610
4611 case 0x0fa4:
4612 case 0x0fa5:
4613 case 0x0fac:
4614 case 0x0fad:
4615 if (i386_record_modrm (&ir))
4616 return -1;
4617 if (ir.mod == 3)
4618 {
4619 if (record_arch_list_add_reg (ir.regcache, ir.rm))
4620 return -1;
4621 }
4622 else
4623 {
4624 if (i386_record_lea_modrm (&ir))
4625 return -1;
4626 }
4627 break;
4628
a38bba38 4629 case 0xd8: /* Floats. */
7ad10968
HZ
4630 case 0xd9:
4631 case 0xda:
4632 case 0xdb:
4633 case 0xdc:
4634 case 0xdd:
4635 case 0xde:
4636 case 0xdf:
4637 if (i386_record_modrm (&ir))
4638 return -1;
4639 ir.reg |= ((opcode & 7) << 3);
4640 if (ir.mod != 3)
4641 {
1777feb0 4642 /* Memory. */
955db0c0 4643 uint64_t addr64;
7ad10968 4644
955db0c0 4645 if (i386_record_lea_modrm_addr (&ir, &addr64))
7ad10968
HZ
4646 return -1;
4647 switch (ir.reg)
4648 {
7ad10968 4649 case 0x02:
0289bdd7
MS
4650 case 0x12:
4651 case 0x22:
4652 case 0x32:
4653 /* For fcom, ficom nothing to do. */
4654 break;
7ad10968 4655 case 0x03:
0289bdd7
MS
4656 case 0x13:
4657 case 0x23:
4658 case 0x33:
4659 /* For fcomp, ficomp pop FPU stack, store all. */
4660 if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
4661 return -1;
4662 break;
4663 case 0x00:
4664 case 0x01:
7ad10968
HZ
4665 case 0x04:
4666 case 0x05:
4667 case 0x06:
4668 case 0x07:
4669 case 0x10:
4670 case 0x11:
7ad10968
HZ
4671 case 0x14:
4672 case 0x15:
4673 case 0x16:
4674 case 0x17:
4675 case 0x20:
4676 case 0x21:
7ad10968
HZ
4677 case 0x24:
4678 case 0x25:
4679 case 0x26:
4680 case 0x27:
4681 case 0x30:
4682 case 0x31:
7ad10968
HZ
4683 case 0x34:
4684 case 0x35:
4685 case 0x36:
4686 case 0x37:
0289bdd7
MS
4687 /* For fadd, fmul, fsub, fsubr, fdiv, fdivr, fiadd, fimul,
4688 fisub, fisubr, fidiv, fidivr, modR/M.reg is an extension
4689 of code, always affects st(0) register. */
4690 if (i386_record_floats (gdbarch, &ir, I387_ST0_REGNUM (tdep)))
4691 return -1;
7ad10968
HZ
4692 break;
4693 case 0x08:
4694 case 0x0a:
4695 case 0x0b:
4696 case 0x18:
4697 case 0x19:
4698 case 0x1a:
4699 case 0x1b:
0289bdd7 4700 case 0x1d:
7ad10968
HZ
4701 case 0x28:
4702 case 0x29:
4703 case 0x2a:
4704 case 0x2b:
4705 case 0x38:
4706 case 0x39:
4707 case 0x3a:
4708 case 0x3b:
0289bdd7
MS
4709 case 0x3c:
4710 case 0x3d:
7ad10968
HZ
4711 switch (ir.reg & 7)
4712 {
4713 case 0:
0289bdd7
MS
4714 /* Handling fld, fild. */
4715 if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
4716 return -1;
7ad10968
HZ
4717 break;
4718 case 1:
4719 switch (ir.reg >> 4)
4720 {
4721 case 0:
955db0c0 4722 if (record_arch_list_add_mem (addr64, 4))
7ad10968
HZ
4723 return -1;
4724 break;
4725 case 2:
955db0c0 4726 if (record_arch_list_add_mem (addr64, 8))
7ad10968
HZ
4727 return -1;
4728 break;
4729 case 3:
0289bdd7 4730 break;
7ad10968 4731 default:
955db0c0 4732 if (record_arch_list_add_mem (addr64, 2))
7ad10968
HZ
4733 return -1;
4734 break;
4735 }
4736 break;
4737 default:
4738 switch (ir.reg >> 4)
4739 {
4740 case 0:
955db0c0 4741 if (record_arch_list_add_mem (addr64, 4))
0289bdd7
MS
4742 return -1;
4743 if (3 == (ir.reg & 7))
4744 {
4745 /* For fstp m32fp. */
4746 if (i386_record_floats (gdbarch, &ir,
4747 I386_SAVE_FPU_REGS))
4748 return -1;
4749 }
4750 break;
7ad10968 4751 case 1:
955db0c0 4752 if (record_arch_list_add_mem (addr64, 4))
7ad10968 4753 return -1;
0289bdd7
MS
4754 if ((3 == (ir.reg & 7))
4755 || (5 == (ir.reg & 7))
4756 || (7 == (ir.reg & 7)))
4757 {
4758 /* For fstp insn. */
4759 if (i386_record_floats (gdbarch, &ir,
4760 I386_SAVE_FPU_REGS))
4761 return -1;
4762 }
7ad10968
HZ
4763 break;
4764 case 2:
955db0c0 4765 if (record_arch_list_add_mem (addr64, 8))
7ad10968 4766 return -1;
0289bdd7
MS
4767 if (3 == (ir.reg & 7))
4768 {
4769 /* For fstp m64fp. */
4770 if (i386_record_floats (gdbarch, &ir,
4771 I386_SAVE_FPU_REGS))
4772 return -1;
4773 }
7ad10968
HZ
4774 break;
4775 case 3:
0289bdd7
MS
4776 if ((3 <= (ir.reg & 7)) && (6 <= (ir.reg & 7)))
4777 {
4778 /* For fistp, fbld, fild, fbstp. */
4779 if (i386_record_floats (gdbarch, &ir,
4780 I386_SAVE_FPU_REGS))
4781 return -1;
4782 }
4783 /* Fall through */
7ad10968 4784 default:
955db0c0 4785 if (record_arch_list_add_mem (addr64, 2))
7ad10968
HZ
4786 return -1;
4787 break;
4788 }
4789 break;
4790 }
4791 break;
4792 case 0x0c:
0289bdd7
MS
4793 /* Insn fldenv. */
4794 if (i386_record_floats (gdbarch, &ir,
4795 I386_SAVE_FPU_ENV_REG_STACK))
4796 return -1;
4797 break;
7ad10968 4798 case 0x0d:
0289bdd7
MS
4799 /* Insn fldcw. */
4800 if (i386_record_floats (gdbarch, &ir, I387_FCTRL_REGNUM (tdep)))
4801 return -1;
4802 break;
7ad10968 4803 case 0x2c:
0289bdd7
MS
4804 /* Insn frstor. */
4805 if (i386_record_floats (gdbarch, &ir,
4806 I386_SAVE_FPU_ENV_REG_STACK))
4807 return -1;
7ad10968
HZ
4808 break;
4809 case 0x0e:
4810 if (ir.dflag)
4811 {
955db0c0 4812 if (record_arch_list_add_mem (addr64, 28))
7ad10968
HZ
4813 return -1;
4814 }
4815 else
4816 {
955db0c0 4817 if (record_arch_list_add_mem (addr64, 14))
7ad10968
HZ
4818 return -1;
4819 }
4820 break;
4821 case 0x0f:
4822 case 0x2f:
955db0c0 4823 if (record_arch_list_add_mem (addr64, 2))
7ad10968 4824 return -1;
0289bdd7
MS
4825 /* Insn fstp, fbstp. */
4826 if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
4827 return -1;
7ad10968
HZ
4828 break;
4829 case 0x1f:
4830 case 0x3e:
955db0c0 4831 if (record_arch_list_add_mem (addr64, 10))
7ad10968
HZ
4832 return -1;
4833 break;
4834 case 0x2e:
4835 if (ir.dflag)
4836 {
955db0c0 4837 if (record_arch_list_add_mem (addr64, 28))
7ad10968 4838 return -1;
955db0c0 4839 addr64 += 28;
7ad10968
HZ
4840 }
4841 else
4842 {
955db0c0 4843 if (record_arch_list_add_mem (addr64, 14))
7ad10968 4844 return -1;
955db0c0 4845 addr64 += 14;
7ad10968 4846 }
955db0c0 4847 if (record_arch_list_add_mem (addr64, 80))
7ad10968 4848 return -1;
0289bdd7
MS
4849 /* Insn fsave. */
4850 if (i386_record_floats (gdbarch, &ir,
4851 I386_SAVE_FPU_ENV_REG_STACK))
4852 return -1;
7ad10968
HZ
4853 break;
4854 case 0x3f:
955db0c0 4855 if (record_arch_list_add_mem (addr64, 8))
7ad10968 4856 return -1;
0289bdd7
MS
4857 /* Insn fistp. */
4858 if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
4859 return -1;
7ad10968
HZ
4860 break;
4861 default:
4862 ir.addr -= 2;
4863 opcode = opcode << 8 | ir.modrm;
4864 goto no_support;
4865 break;
4866 }
4867 }
0289bdd7
MS
4868 /* Opcode is an extension of modR/M byte. */
4869 else
4870 {
4871 switch (opcode)
4872 {
4873 case 0xd8:
4874 if (i386_record_floats (gdbarch, &ir, I387_ST0_REGNUM (tdep)))
4875 return -1;
4876 break;
4877 case 0xd9:
4878 if (0x0c == (ir.modrm >> 4))
4879 {
4880 if ((ir.modrm & 0x0f) <= 7)
4881 {
4882 if (i386_record_floats (gdbarch, &ir,
4883 I386_SAVE_FPU_REGS))
4884 return -1;
4885 }
4886 else
4887 {
4888 if (i386_record_floats (gdbarch, &ir,
4889 I387_ST0_REGNUM (tdep)))
4890 return -1;
4891 /* If only st(0) is changing, then we have already
4892 recorded. */
4893 if ((ir.modrm & 0x0f) - 0x08)
4894 {
4895 if (i386_record_floats (gdbarch, &ir,
4896 I387_ST0_REGNUM (tdep) +
4897 ((ir.modrm & 0x0f) - 0x08)))
4898 return -1;
4899 }
4900 }
4901 }
4902 else
4903 {
4904 switch (ir.modrm)
4905 {
4906 case 0xe0:
4907 case 0xe1:
4908 case 0xf0:
4909 case 0xf5:
4910 case 0xf8:
4911 case 0xfa:
4912 case 0xfc:
4913 case 0xfe:
4914 case 0xff:
4915 if (i386_record_floats (gdbarch, &ir,
4916 I387_ST0_REGNUM (tdep)))
4917 return -1;
4918 break;
4919 case 0xf1:
4920 case 0xf2:
4921 case 0xf3:
4922 case 0xf4:
4923 case 0xf6:
4924 case 0xf7:
4925 case 0xe8:
4926 case 0xe9:
4927 case 0xea:
4928 case 0xeb:
4929 case 0xec:
4930 case 0xed:
4931 case 0xee:
4932 case 0xf9:
4933 case 0xfb:
4934 if (i386_record_floats (gdbarch, &ir,
4935 I386_SAVE_FPU_REGS))
4936 return -1;
4937 break;
4938 case 0xfd:
4939 if (i386_record_floats (gdbarch, &ir,
4940 I387_ST0_REGNUM (tdep)))
4941 return -1;
4942 if (i386_record_floats (gdbarch, &ir,
4943 I387_ST0_REGNUM (tdep) + 1))
4944 return -1;
4945 break;
4946 }
4947 }
4948 break;
4949 case 0xda:
4950 if (0xe9 == ir.modrm)
4951 {
4952 if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
4953 return -1;
4954 }
4955 else if ((0x0c == ir.modrm >> 4) || (0x0d == ir.modrm >> 4))
4956 {
4957 if (i386_record_floats (gdbarch, &ir,
4958 I387_ST0_REGNUM (tdep)))
4959 return -1;
4960 if (((ir.modrm & 0x0f) > 0) && ((ir.modrm & 0x0f) <= 7))
4961 {
4962 if (i386_record_floats (gdbarch, &ir,
4963 I387_ST0_REGNUM (tdep) +
4964 (ir.modrm & 0x0f)))
4965 return -1;
4966 }
4967 else if ((ir.modrm & 0x0f) - 0x08)
4968 {
4969 if (i386_record_floats (gdbarch, &ir,
4970 I387_ST0_REGNUM (tdep) +
4971 ((ir.modrm & 0x0f) - 0x08)))
4972 return -1;
4973 }
4974 }
4975 break;
4976 case 0xdb:
4977 if (0xe3 == ir.modrm)
4978 {
4979 if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_ENV))
4980 return -1;
4981 }
4982 else if ((0x0c == ir.modrm >> 4) || (0x0d == ir.modrm >> 4))
4983 {
4984 if (i386_record_floats (gdbarch, &ir,
4985 I387_ST0_REGNUM (tdep)))
4986 return -1;
4987 if (((ir.modrm & 0x0f) > 0) && ((ir.modrm & 0x0f) <= 7))
4988 {
4989 if (i386_record_floats (gdbarch, &ir,
4990 I387_ST0_REGNUM (tdep) +
4991 (ir.modrm & 0x0f)))
4992 return -1;
4993 }
4994 else if ((ir.modrm & 0x0f) - 0x08)
4995 {
4996 if (i386_record_floats (gdbarch, &ir,
4997 I387_ST0_REGNUM (tdep) +
4998 ((ir.modrm & 0x0f) - 0x08)))
4999 return -1;
5000 }
5001 }
5002 break;
5003 case 0xdc:
5004 if ((0x0c == ir.modrm >> 4)
5005 || (0x0d == ir.modrm >> 4)
5006 || (0x0f == ir.modrm >> 4))
5007 {
5008 if ((ir.modrm & 0x0f) <= 7)
5009 {
5010 if (i386_record_floats (gdbarch, &ir,
5011 I387_ST0_REGNUM (tdep) +
5012 (ir.modrm & 0x0f)))
5013 return -1;
5014 }
5015 else
5016 {
5017 if (i386_record_floats (gdbarch, &ir,
5018 I387_ST0_REGNUM (tdep) +
5019 ((ir.modrm & 0x0f) - 0x08)))
5020 return -1;
5021 }
5022 }
5023 break;
5024 case 0xdd:
5025 if (0x0c == ir.modrm >> 4)
5026 {
5027 if (i386_record_floats (gdbarch, &ir,
5028 I387_FTAG_REGNUM (tdep)))
5029 return -1;
5030 }
5031 else if ((0x0d == ir.modrm >> 4) || (0x0e == ir.modrm >> 4))
5032 {
5033 if ((ir.modrm & 0x0f) <= 7)
5034 {
5035 if (i386_record_floats (gdbarch, &ir,
5036 I387_ST0_REGNUM (tdep) +
5037 (ir.modrm & 0x0f)))
5038 return -1;
5039 }
5040 else
5041 {
5042 if (i386_record_floats (gdbarch, &ir,
5043 I386_SAVE_FPU_REGS))
5044 return -1;
5045 }
5046 }
5047 break;
5048 case 0xde:
5049 if ((0x0c == ir.modrm >> 4)
5050 || (0x0e == ir.modrm >> 4)
5051 || (0x0f == ir.modrm >> 4)
5052 || (0xd9 == ir.modrm))
5053 {
5054 if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
5055 return -1;
5056 }
5057 break;
5058 case 0xdf:
5059 if (0xe0 == ir.modrm)
5060 {
5061 if (record_arch_list_add_reg (ir.regcache, I386_EAX_REGNUM))
5062 return -1;
5063 }
5064 else if ((0x0f == ir.modrm >> 4) || (0x0e == ir.modrm >> 4))
5065 {
5066 if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
5067 return -1;
5068 }
5069 break;
5070 }
5071 }
7ad10968 5072 break;
7ad10968 5073 /* string ops */
a38bba38 5074 case 0xa4: /* movsS */
7ad10968 5075 case 0xa5:
a38bba38 5076 case 0xaa: /* stosS */
7ad10968 5077 case 0xab:
a38bba38 5078 case 0x6c: /* insS */
7ad10968 5079 case 0x6d:
cf648174 5080 regcache_raw_read_unsigned (ir.regcache,
77d7dc92 5081 ir.regmap[X86_RECORD_RECX_REGNUM],
648d0c8b
MS
5082 &addr);
5083 if (addr)
cf648174 5084 {
77d7dc92
HZ
5085 ULONGEST es, ds;
5086
5087 if ((opcode & 1) == 0)
5088 ir.ot = OT_BYTE;
5089 else
5090 ir.ot = ir.dflag + OT_WORD;
cf648174
HZ
5091 regcache_raw_read_unsigned (ir.regcache,
5092 ir.regmap[X86_RECORD_REDI_REGNUM],
648d0c8b 5093 &addr);
77d7dc92 5094
d7877f7e
HZ
5095 regcache_raw_read_unsigned (ir.regcache,
5096 ir.regmap[X86_RECORD_ES_REGNUM],
5097 &es);
5098 regcache_raw_read_unsigned (ir.regcache,
5099 ir.regmap[X86_RECORD_DS_REGNUM],
5100 &ds);
5101 if (ir.aflag && (es != ds))
77d7dc92
HZ
5102 {
5103 /* addr += ((uint32_t) read_register (I386_ES_REGNUM)) << 4; */
bb08c432
HZ
5104 if (record_memory_query)
5105 {
5106 int q;
5107
5108 target_terminal_ours ();
5109 q = yquery (_("\
5110Process record ignores the memory change of instruction at address %s\n\
5111because it can't get the value of the segment register.\n\
5112Do you want to stop the program?"),
5113 paddress (gdbarch, ir.orig_addr));
5114 target_terminal_inferior ();
5115 if (q)
5116 return -1;
5117 }
df61f520
HZ
5118 }
5119 else
5120 {
648d0c8b 5121 if (record_arch_list_add_mem (addr, 1 << ir.ot))
df61f520 5122 return -1;
77d7dc92
HZ
5123 }
5124
5125 if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ))
5126 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
77d7dc92
HZ
5127 if (opcode == 0xa4 || opcode == 0xa5)
5128 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESI_REGNUM);
5129 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDI_REGNUM);
5130 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
5131 }
cf648174 5132 break;
7ad10968 5133
a38bba38 5134 case 0xa6: /* cmpsS */
cf648174
HZ
5135 case 0xa7:
5136 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDI_REGNUM);
5137 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESI_REGNUM);
5138 if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ))
5139 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
5140 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5141 break;
5142
a38bba38 5143 case 0xac: /* lodsS */
7ad10968 5144 case 0xad:
cf648174
HZ
5145 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
5146 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESI_REGNUM);
7ad10968 5147 if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ))
cf648174
HZ
5148 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
5149 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5150 break;
5151
a38bba38 5152 case 0xae: /* scasS */
7ad10968 5153 case 0xaf:
cf648174 5154 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDI_REGNUM);
7ad10968 5155 if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ))
cf648174
HZ
5156 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
5157 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5158 break;
5159
a38bba38 5160 case 0x6e: /* outsS */
cf648174
HZ
5161 case 0x6f:
5162 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESI_REGNUM);
7ad10968 5163 if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ))
cf648174
HZ
5164 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
5165 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5166 break;
5167
a38bba38 5168 case 0xe4: /* port I/O */
7ad10968
HZ
5169 case 0xe5:
5170 case 0xec:
5171 case 0xed:
cf648174
HZ
5172 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
5173 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
7ad10968
HZ
5174 break;
5175
5176 case 0xe6:
5177 case 0xe7:
5178 case 0xee:
5179 case 0xef:
5180 break;
5181
5182 /* control */
a38bba38
MS
5183 case 0xc2: /* ret im */
5184 case 0xc3: /* ret */
cf648174
HZ
5185 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
5186 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
5187 break;
5188
a38bba38
MS
5189 case 0xca: /* lret im */
5190 case 0xcb: /* lret */
5191 case 0xcf: /* iret */
cf648174
HZ
5192 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_CS_REGNUM);
5193 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
5194 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5195 break;
5196
a38bba38 5197 case 0xe8: /* call im */
cf648174
HZ
5198 if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
5199 ir.dflag = 2;
5200 if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
5201 return -1;
7ad10968
HZ
5202 break;
5203
a38bba38 5204 case 0x9a: /* lcall im */
cf648174
HZ
5205 if (ir.regmap[X86_RECORD_R8_REGNUM])
5206 {
5207 ir.addr -= 1;
5208 goto no_support;
5209 }
5210 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_CS_REGNUM);
5211 if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
5212 return -1;
7ad10968
HZ
5213 break;
5214
a38bba38
MS
5215 case 0xe9: /* jmp im */
5216 case 0xea: /* ljmp im */
5217 case 0xeb: /* jmp Jb */
5218 case 0x70: /* jcc Jb */
7ad10968
HZ
5219 case 0x71:
5220 case 0x72:
5221 case 0x73:
5222 case 0x74:
5223 case 0x75:
5224 case 0x76:
5225 case 0x77:
5226 case 0x78:
5227 case 0x79:
5228 case 0x7a:
5229 case 0x7b:
5230 case 0x7c:
5231 case 0x7d:
5232 case 0x7e:
5233 case 0x7f:
a38bba38 5234 case 0x0f80: /* jcc Jv */
7ad10968
HZ
5235 case 0x0f81:
5236 case 0x0f82:
5237 case 0x0f83:
5238 case 0x0f84:
5239 case 0x0f85:
5240 case 0x0f86:
5241 case 0x0f87:
5242 case 0x0f88:
5243 case 0x0f89:
5244 case 0x0f8a:
5245 case 0x0f8b:
5246 case 0x0f8c:
5247 case 0x0f8d:
5248 case 0x0f8e:
5249 case 0x0f8f:
5250 break;
5251
a38bba38 5252 case 0x0f90: /* setcc Gv */
7ad10968
HZ
5253 case 0x0f91:
5254 case 0x0f92:
5255 case 0x0f93:
5256 case 0x0f94:
5257 case 0x0f95:
5258 case 0x0f96:
5259 case 0x0f97:
5260 case 0x0f98:
5261 case 0x0f99:
5262 case 0x0f9a:
5263 case 0x0f9b:
5264 case 0x0f9c:
5265 case 0x0f9d:
5266 case 0x0f9e:
5267 case 0x0f9f:
cf648174 5268 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5269 ir.ot = OT_BYTE;
5270 if (i386_record_modrm (&ir))
5271 return -1;
5272 if (ir.mod == 3)
cf648174
HZ
5273 I386_RECORD_ARCH_LIST_ADD_REG (ir.rex_b ? (ir.rm | ir.rex_b)
5274 : (ir.rm & 0x3));
7ad10968
HZ
5275 else
5276 {
5277 if (i386_record_lea_modrm (&ir))
5278 return -1;
5279 }
5280 break;
5281
a38bba38 5282 case 0x0f40: /* cmov Gv, Ev */
7ad10968
HZ
5283 case 0x0f41:
5284 case 0x0f42:
5285 case 0x0f43:
5286 case 0x0f44:
5287 case 0x0f45:
5288 case 0x0f46:
5289 case 0x0f47:
5290 case 0x0f48:
5291 case 0x0f49:
5292 case 0x0f4a:
5293 case 0x0f4b:
5294 case 0x0f4c:
5295 case 0x0f4d:
5296 case 0x0f4e:
5297 case 0x0f4f:
5298 if (i386_record_modrm (&ir))
5299 return -1;
cf648174 5300 ir.reg |= rex_r;
7ad10968
HZ
5301 if (ir.dflag == OT_BYTE)
5302 ir.reg &= 0x3;
cf648174 5303 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg);
7ad10968
HZ
5304 break;
5305
5306 /* flags */
a38bba38 5307 case 0x9c: /* pushf */
cf648174
HZ
5308 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
5309 if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
5310 ir.dflag = 2;
5311 if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
5312 return -1;
7ad10968
HZ
5313 break;
5314
a38bba38 5315 case 0x9d: /* popf */
cf648174
HZ
5316 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
5317 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5318 break;
5319
a38bba38 5320 case 0x9e: /* sahf */
cf648174
HZ
5321 if (ir.regmap[X86_RECORD_R8_REGNUM])
5322 {
5323 ir.addr -= 1;
5324 goto no_support;
5325 }
d3f323f3 5326 /* FALLTHROUGH */
a38bba38
MS
5327 case 0xf5: /* cmc */
5328 case 0xf8: /* clc */
5329 case 0xf9: /* stc */
5330 case 0xfc: /* cld */
5331 case 0xfd: /* std */
cf648174 5332 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5333 break;
5334
a38bba38 5335 case 0x9f: /* lahf */
cf648174
HZ
5336 if (ir.regmap[X86_RECORD_R8_REGNUM])
5337 {
5338 ir.addr -= 1;
5339 goto no_support;
5340 }
5341 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
5342 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
7ad10968
HZ
5343 break;
5344
5345 /* bit operations */
a38bba38 5346 case 0x0fba: /* bt/bts/btr/btc Gv, im */
7ad10968
HZ
5347 ir.ot = ir.dflag + OT_WORD;
5348 if (i386_record_modrm (&ir))
5349 return -1;
5350 if (ir.reg < 4)
5351 {
cf648174 5352 ir.addr -= 2;
7ad10968
HZ
5353 opcode = opcode << 8 | ir.modrm;
5354 goto no_support;
5355 }
cf648174 5356 if (ir.reg != 4)
7ad10968 5357 {
cf648174
HZ
5358 if (ir.mod == 3)
5359 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
7ad10968
HZ
5360 else
5361 {
cf648174 5362 if (i386_record_lea_modrm (&ir))
7ad10968
HZ
5363 return -1;
5364 }
5365 }
cf648174 5366 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5367 break;
5368
a38bba38 5369 case 0x0fa3: /* bt Gv, Ev */
cf648174
HZ
5370 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
5371 break;
5372
a38bba38
MS
5373 case 0x0fab: /* bts */
5374 case 0x0fb3: /* btr */
5375 case 0x0fbb: /* btc */
cf648174
HZ
5376 ir.ot = ir.dflag + OT_WORD;
5377 if (i386_record_modrm (&ir))
5378 return -1;
5379 if (ir.mod == 3)
5380 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
5381 else
5382 {
955db0c0
MS
5383 uint64_t addr64;
5384 if (i386_record_lea_modrm_addr (&ir, &addr64))
cf648174
HZ
5385 return -1;
5386 regcache_raw_read_unsigned (ir.regcache,
5387 ir.regmap[ir.reg | rex_r],
648d0c8b 5388 &addr);
cf648174
HZ
5389 switch (ir.dflag)
5390 {
5391 case 0:
648d0c8b 5392 addr64 += ((int16_t) addr >> 4) << 4;
cf648174
HZ
5393 break;
5394 case 1:
648d0c8b 5395 addr64 += ((int32_t) addr >> 5) << 5;
cf648174
HZ
5396 break;
5397 case 2:
648d0c8b 5398 addr64 += ((int64_t) addr >> 6) << 6;
cf648174
HZ
5399 break;
5400 }
955db0c0 5401 if (record_arch_list_add_mem (addr64, 1 << ir.ot))
cf648174
HZ
5402 return -1;
5403 if (i386_record_lea_modrm (&ir))
5404 return -1;
5405 }
5406 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5407 break;
5408
a38bba38
MS
5409 case 0x0fbc: /* bsf */
5410 case 0x0fbd: /* bsr */
cf648174
HZ
5411 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg | rex_r);
5412 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5413 break;
5414
5415 /* bcd */
a38bba38
MS
5416 case 0x27: /* daa */
5417 case 0x2f: /* das */
5418 case 0x37: /* aaa */
5419 case 0x3f: /* aas */
5420 case 0xd4: /* aam */
5421 case 0xd5: /* aad */
cf648174
HZ
5422 if (ir.regmap[X86_RECORD_R8_REGNUM])
5423 {
5424 ir.addr -= 1;
5425 goto no_support;
5426 }
5427 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
5428 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5429 break;
5430
5431 /* misc */
a38bba38 5432 case 0x90: /* nop */
7ad10968
HZ
5433 if (prefixes & PREFIX_LOCK)
5434 {
5435 ir.addr -= 1;
5436 goto no_support;
5437 }
5438 break;
5439
a38bba38 5440 case 0x9b: /* fwait */
425b824a 5441 if (target_read_memory (ir.addr, &opcode8, 1))
0289bdd7
MS
5442 {
5443 if (record_debug)
5444 printf_unfiltered (_("Process record: error reading memory at "
5445 "addr 0x%s len = 1.\n"),
5446 paddress (gdbarch, ir.addr));
5447 return -1;
5448 }
425b824a 5449 opcode = (uint32_t) opcode8;
0289bdd7
MS
5450 ir.addr++;
5451 goto reswitch;
7ad10968
HZ
5452 break;
5453
7ad10968 5454 /* XXX */
a38bba38 5455 case 0xcc: /* int3 */
a3c4230a 5456 printf_unfiltered (_("Process record does not support instruction "
7ad10968
HZ
5457 "int3.\n"));
5458 ir.addr -= 1;
5459 goto no_support;
5460 break;
5461
7ad10968 5462 /* XXX */
a38bba38 5463 case 0xcd: /* int */
7ad10968
HZ
5464 {
5465 int ret;
425b824a
MS
5466 uint8_t interrupt;
5467 if (target_read_memory (ir.addr, &interrupt, 1))
7ad10968
HZ
5468 {
5469 if (record_debug)
5470 printf_unfiltered (_("Process record: error reading memory "
5af949e3
UW
5471 "at addr %s len = 1.\n"),
5472 paddress (gdbarch, ir.addr));
7ad10968
HZ
5473 return -1;
5474 }
5475 ir.addr++;
425b824a 5476 if (interrupt != 0x80
a3c4230a 5477 || tdep->i386_intx80_record == NULL)
7ad10968 5478 {
a3c4230a 5479 printf_unfiltered (_("Process record does not support "
7ad10968 5480 "instruction int 0x%02x.\n"),
425b824a 5481 interrupt);
7ad10968
HZ
5482 ir.addr -= 2;
5483 goto no_support;
5484 }
a3c4230a 5485 ret = tdep->i386_intx80_record (ir.regcache);
7ad10968
HZ
5486 if (ret)
5487 return ret;
5488 }
5489 break;
5490
7ad10968 5491 /* XXX */
a38bba38 5492 case 0xce: /* into */
a3c4230a 5493 printf_unfiltered (_("Process record does not support "
7ad10968
HZ
5494 "instruction into.\n"));
5495 ir.addr -= 1;
5496 goto no_support;
5497 break;
5498
a38bba38
MS
5499 case 0xfa: /* cli */
5500 case 0xfb: /* sti */
7ad10968
HZ
5501 break;
5502
a38bba38 5503 case 0x62: /* bound */
a3c4230a 5504 printf_unfiltered (_("Process record does not support "
7ad10968
HZ
5505 "instruction bound.\n"));
5506 ir.addr -= 1;
5507 goto no_support;
5508 break;
5509
a38bba38 5510 case 0x0fc8: /* bswap reg */
7ad10968
HZ
5511 case 0x0fc9:
5512 case 0x0fca:
5513 case 0x0fcb:
5514 case 0x0fcc:
5515 case 0x0fcd:
5516 case 0x0fce:
5517 case 0x0fcf:
cf648174 5518 I386_RECORD_ARCH_LIST_ADD_REG ((opcode & 7) | ir.rex_b);
7ad10968
HZ
5519 break;
5520
a38bba38 5521 case 0xd6: /* salc */
cf648174
HZ
5522 if (ir.regmap[X86_RECORD_R8_REGNUM])
5523 {
5524 ir.addr -= 1;
5525 goto no_support;
5526 }
5527 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
5528 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5529 break;
5530
a38bba38
MS
5531 case 0xe0: /* loopnz */
5532 case 0xe1: /* loopz */
5533 case 0xe2: /* loop */
5534 case 0xe3: /* jecxz */
cf648174
HZ
5535 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
5536 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5537 break;
5538
a38bba38 5539 case 0x0f30: /* wrmsr */
a3c4230a 5540 printf_unfiltered (_("Process record does not support "
7ad10968
HZ
5541 "instruction wrmsr.\n"));
5542 ir.addr -= 2;
5543 goto no_support;
5544 break;
5545
a38bba38 5546 case 0x0f32: /* rdmsr */
a3c4230a 5547 printf_unfiltered (_("Process record does not support "
7ad10968
HZ
5548 "instruction rdmsr.\n"));
5549 ir.addr -= 2;
5550 goto no_support;
5551 break;
5552
a38bba38 5553 case 0x0f31: /* rdtsc */
f8c4f480
HZ
5554 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
5555 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
7ad10968
HZ
5556 break;
5557
a38bba38 5558 case 0x0f34: /* sysenter */
7ad10968
HZ
5559 {
5560 int ret;
cf648174
HZ
5561 if (ir.regmap[X86_RECORD_R8_REGNUM])
5562 {
5563 ir.addr -= 2;
5564 goto no_support;
5565 }
a3c4230a 5566 if (tdep->i386_sysenter_record == NULL)
7ad10968 5567 {
a3c4230a 5568 printf_unfiltered (_("Process record does not support "
7ad10968
HZ
5569 "instruction sysenter.\n"));
5570 ir.addr -= 2;
5571 goto no_support;
5572 }
a3c4230a 5573 ret = tdep->i386_sysenter_record (ir.regcache);
7ad10968
HZ
5574 if (ret)
5575 return ret;
5576 }
5577 break;
5578
a38bba38 5579 case 0x0f35: /* sysexit */
a3c4230a 5580 printf_unfiltered (_("Process record does not support "
7ad10968
HZ
5581 "instruction sysexit.\n"));
5582 ir.addr -= 2;
5583 goto no_support;
5584 break;
5585
a38bba38 5586 case 0x0f05: /* syscall */
cf648174
HZ
5587 {
5588 int ret;
a3c4230a 5589 if (tdep->i386_syscall_record == NULL)
cf648174 5590 {
a3c4230a 5591 printf_unfiltered (_("Process record does not support "
cf648174
HZ
5592 "instruction syscall.\n"));
5593 ir.addr -= 2;
5594 goto no_support;
5595 }
a3c4230a 5596 ret = tdep->i386_syscall_record (ir.regcache);
cf648174
HZ
5597 if (ret)
5598 return ret;
5599 }
5600 break;
5601
a38bba38 5602 case 0x0f07: /* sysret */
a3c4230a 5603 printf_unfiltered (_("Process record does not support "
cf648174
HZ
5604 "instruction sysret.\n"));
5605 ir.addr -= 2;
5606 goto no_support;
5607 break;
5608
a38bba38 5609 case 0x0fa2: /* cpuid */
cf648174
HZ
5610 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
5611 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
5612 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
5613 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REBX_REGNUM);
7ad10968
HZ
5614 break;
5615
a38bba38 5616 case 0xf4: /* hlt */
a3c4230a 5617 printf_unfiltered (_("Process record does not support "
7ad10968
HZ
5618 "instruction hlt.\n"));
5619 ir.addr -= 1;
5620 goto no_support;
5621 break;
5622
5623 case 0x0f00:
5624 if (i386_record_modrm (&ir))
5625 return -1;
5626 switch (ir.reg)
5627 {
a38bba38
MS
5628 case 0: /* sldt */
5629 case 1: /* str */
7ad10968 5630 if (ir.mod == 3)
cf648174 5631 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
7ad10968
HZ
5632 else
5633 {
5634 ir.ot = OT_WORD;
5635 if (i386_record_lea_modrm (&ir))
5636 return -1;
5637 }
5638 break;
a38bba38
MS
5639 case 2: /* lldt */
5640 case 3: /* ltr */
7ad10968 5641 break;
a38bba38
MS
5642 case 4: /* verr */
5643 case 5: /* verw */
cf648174 5644 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5645 break;
5646 default:
5647 ir.addr -= 3;
5648 opcode = opcode << 8 | ir.modrm;
5649 goto no_support;
5650 break;
5651 }
5652 break;
5653
5654 case 0x0f01:
5655 if (i386_record_modrm (&ir))
5656 return -1;
5657 switch (ir.reg)
5658 {
a38bba38 5659 case 0: /* sgdt */
7ad10968 5660 {
955db0c0 5661 uint64_t addr64;
7ad10968
HZ
5662
5663 if (ir.mod == 3)
5664 {
5665 ir.addr -= 3;
5666 opcode = opcode << 8 | ir.modrm;
5667 goto no_support;
5668 }
d7877f7e 5669 if (ir.override >= 0)
7ad10968 5670 {
bb08c432
HZ
5671 if (record_memory_query)
5672 {
5673 int q;
5674
5675 target_terminal_ours ();
5676 q = yquery (_("\
5677Process record ignores the memory change of instruction at address %s\n\
5678because it can't get the value of the segment register.\n\
5679Do you want to stop the program?"),
5680 paddress (gdbarch, ir.orig_addr));
5681 target_terminal_inferior ();
5682 if (q)
5683 return -1;
5684 }
7ad10968
HZ
5685 }
5686 else
5687 {
955db0c0 5688 if (i386_record_lea_modrm_addr (&ir, &addr64))
7ad10968 5689 return -1;
955db0c0 5690 if (record_arch_list_add_mem (addr64, 2))
7ad10968 5691 return -1;
955db0c0 5692 addr64 += 2;
cf648174
HZ
5693 if (ir.regmap[X86_RECORD_R8_REGNUM])
5694 {
955db0c0 5695 if (record_arch_list_add_mem (addr64, 8))
cf648174
HZ
5696 return -1;
5697 }
5698 else
5699 {
955db0c0 5700 if (record_arch_list_add_mem (addr64, 4))
cf648174
HZ
5701 return -1;
5702 }
7ad10968
HZ
5703 }
5704 }
5705 break;
5706 case 1:
5707 if (ir.mod == 3)
5708 {
5709 switch (ir.rm)
5710 {
a38bba38 5711 case 0: /* monitor */
7ad10968 5712 break;
a38bba38 5713 case 1: /* mwait */
cf648174 5714 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5715 break;
5716 default:
5717 ir.addr -= 3;
5718 opcode = opcode << 8 | ir.modrm;
5719 goto no_support;
5720 break;
5721 }
5722 }
5723 else
5724 {
5725 /* sidt */
d7877f7e 5726 if (ir.override >= 0)
7ad10968 5727 {
bb08c432
HZ
5728 if (record_memory_query)
5729 {
5730 int q;
5731
5732 target_terminal_ours ();
5733 q = yquery (_("\
5734Process record ignores the memory change of instruction at address %s\n\
5735because it can't get the value of the segment register.\n\
5736Do you want to stop the program?"),
5737 paddress (gdbarch, ir.orig_addr));
5738 target_terminal_inferior ();
5739 if (q)
5740 return -1;
5741 }
7ad10968
HZ
5742 }
5743 else
5744 {
955db0c0 5745 uint64_t addr64;
7ad10968 5746
955db0c0 5747 if (i386_record_lea_modrm_addr (&ir, &addr64))
7ad10968 5748 return -1;
955db0c0 5749 if (record_arch_list_add_mem (addr64, 2))
7ad10968 5750 return -1;
955db0c0 5751 addr64 += 2;
cf648174
HZ
5752 if (ir.regmap[X86_RECORD_R8_REGNUM])
5753 {
955db0c0 5754 if (record_arch_list_add_mem (addr64, 8))
cf648174
HZ
5755 return -1;
5756 }
5757 else
5758 {
955db0c0 5759 if (record_arch_list_add_mem (addr64, 4))
cf648174
HZ
5760 return -1;
5761 }
7ad10968
HZ
5762 }
5763 }
5764 break;
a38bba38 5765 case 2: /* lgdt */
3800e645
MS
5766 if (ir.mod == 3)
5767 {
5768 /* xgetbv */
5769 if (ir.rm == 0)
5770 {
5771 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
5772 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
5773 break;
5774 }
5775 /* xsetbv */
5776 else if (ir.rm == 1)
5777 break;
5778 }
a38bba38 5779 case 3: /* lidt */
7ad10968
HZ
5780 if (ir.mod == 3)
5781 {
5782 ir.addr -= 3;
5783 opcode = opcode << 8 | ir.modrm;
5784 goto no_support;
5785 }
5786 break;
a38bba38 5787 case 4: /* smsw */
7ad10968
HZ
5788 if (ir.mod == 3)
5789 {
cf648174 5790 if (record_arch_list_add_reg (ir.regcache, ir.rm | ir.rex_b))
7ad10968
HZ
5791 return -1;
5792 }
5793 else
5794 {
5795 ir.ot = OT_WORD;
5796 if (i386_record_lea_modrm (&ir))
5797 return -1;
5798 }
cf648174 5799 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 5800 break;
a38bba38 5801 case 6: /* lmsw */
cf648174
HZ
5802 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
5803 break;
a38bba38 5804 case 7: /* invlpg */
cf648174
HZ
5805 if (ir.mod == 3)
5806 {
5807 if (ir.rm == 0 && ir.regmap[X86_RECORD_R8_REGNUM])
5808 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_GS_REGNUM);
5809 else
5810 {
5811 ir.addr -= 3;
5812 opcode = opcode << 8 | ir.modrm;
5813 goto no_support;
5814 }
5815 }
5816 else
5817 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
5818 break;
5819 default:
5820 ir.addr -= 3;
5821 opcode = opcode << 8 | ir.modrm;
5822 goto no_support;
7ad10968
HZ
5823 break;
5824 }
5825 break;
5826
a38bba38
MS
5827 case 0x0f08: /* invd */
5828 case 0x0f09: /* wbinvd */
7ad10968
HZ
5829 break;
5830
a38bba38 5831 case 0x63: /* arpl */
7ad10968
HZ
5832 if (i386_record_modrm (&ir))
5833 return -1;
cf648174
HZ
5834 if (ir.mod == 3 || ir.regmap[X86_RECORD_R8_REGNUM])
5835 {
5836 I386_RECORD_ARCH_LIST_ADD_REG (ir.regmap[X86_RECORD_R8_REGNUM]
5837 ? (ir.reg | rex_r) : ir.rm);
5838 }
7ad10968 5839 else
cf648174
HZ
5840 {
5841 ir.ot = ir.dflag ? OT_LONG : OT_WORD;
5842 if (i386_record_lea_modrm (&ir))
5843 return -1;
5844 }
5845 if (!ir.regmap[X86_RECORD_R8_REGNUM])
5846 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5847 break;
5848
a38bba38
MS
5849 case 0x0f02: /* lar */
5850 case 0x0f03: /* lsl */
7ad10968
HZ
5851 if (i386_record_modrm (&ir))
5852 return -1;
cf648174
HZ
5853 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg | rex_r);
5854 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5855 break;
5856
5857 case 0x0f18:
cf648174
HZ
5858 if (i386_record_modrm (&ir))
5859 return -1;
5860 if (ir.mod == 3 && ir.reg == 3)
5861 {
5862 ir.addr -= 3;
5863 opcode = opcode << 8 | ir.modrm;
5864 goto no_support;
5865 }
7ad10968
HZ
5866 break;
5867
7ad10968
HZ
5868 case 0x0f19:
5869 case 0x0f1a:
5870 case 0x0f1b:
5871 case 0x0f1c:
5872 case 0x0f1d:
5873 case 0x0f1e:
5874 case 0x0f1f:
a38bba38 5875 /* nop (multi byte) */
7ad10968
HZ
5876 break;
5877
a38bba38
MS
5878 case 0x0f20: /* mov reg, crN */
5879 case 0x0f22: /* mov crN, reg */
7ad10968
HZ
5880 if (i386_record_modrm (&ir))
5881 return -1;
5882 if ((ir.modrm & 0xc0) != 0xc0)
5883 {
cf648174 5884 ir.addr -= 3;
7ad10968
HZ
5885 opcode = opcode << 8 | ir.modrm;
5886 goto no_support;
5887 }
5888 switch (ir.reg)
5889 {
5890 case 0:
5891 case 2:
5892 case 3:
5893 case 4:
5894 case 8:
5895 if (opcode & 2)
cf648174 5896 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 5897 else
cf648174 5898 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
7ad10968
HZ
5899 break;
5900 default:
cf648174 5901 ir.addr -= 3;
7ad10968
HZ
5902 opcode = opcode << 8 | ir.modrm;
5903 goto no_support;
5904 break;
5905 }
5906 break;
5907
a38bba38
MS
5908 case 0x0f21: /* mov reg, drN */
5909 case 0x0f23: /* mov drN, reg */
7ad10968
HZ
5910 if (i386_record_modrm (&ir))
5911 return -1;
5912 if ((ir.modrm & 0xc0) != 0xc0 || ir.reg == 4
5913 || ir.reg == 5 || ir.reg >= 8)
5914 {
cf648174 5915 ir.addr -= 3;
7ad10968
HZ
5916 opcode = opcode << 8 | ir.modrm;
5917 goto no_support;
5918 }
5919 if (opcode & 2)
cf648174 5920 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968 5921 else
cf648174 5922 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
7ad10968
HZ
5923 break;
5924
a38bba38 5925 case 0x0f06: /* clts */
cf648174 5926 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
7ad10968
HZ
5927 break;
5928
a3c4230a
HZ
5929 /* MMX 3DNow! SSE SSE2 SSE3 SSSE3 SSE4 */
5930
5931 case 0x0f0d: /* 3DNow! prefetch */
5932 break;
5933
5934 case 0x0f0e: /* 3DNow! femms */
5935 case 0x0f77: /* emms */
5936 if (i386_fpc_regnum_p (gdbarch, I387_FTAG_REGNUM(tdep)))
5937 goto no_support;
5938 record_arch_list_add_reg (ir.regcache, I387_FTAG_REGNUM(tdep));
5939 break;
5940
5941 case 0x0f0f: /* 3DNow! data */
5942 if (i386_record_modrm (&ir))
5943 return -1;
5944 if (target_read_memory (ir.addr, &opcode8, 1))
5945 {
5946 printf_unfiltered (_("Process record: error reading memory at "
5947 "addr %s len = 1.\n"),
5948 paddress (gdbarch, ir.addr));
5949 return -1;
5950 }
5951 ir.addr++;
5952 switch (opcode8)
5953 {
5954 case 0x0c: /* 3DNow! pi2fw */
5955 case 0x0d: /* 3DNow! pi2fd */
5956 case 0x1c: /* 3DNow! pf2iw */
5957 case 0x1d: /* 3DNow! pf2id */
5958 case 0x8a: /* 3DNow! pfnacc */
5959 case 0x8e: /* 3DNow! pfpnacc */
5960 case 0x90: /* 3DNow! pfcmpge */
5961 case 0x94: /* 3DNow! pfmin */
5962 case 0x96: /* 3DNow! pfrcp */
5963 case 0x97: /* 3DNow! pfrsqrt */
5964 case 0x9a: /* 3DNow! pfsub */
5965 case 0x9e: /* 3DNow! pfadd */
5966 case 0xa0: /* 3DNow! pfcmpgt */
5967 case 0xa4: /* 3DNow! pfmax */
5968 case 0xa6: /* 3DNow! pfrcpit1 */
5969 case 0xa7: /* 3DNow! pfrsqit1 */
5970 case 0xaa: /* 3DNow! pfsubr */
5971 case 0xae: /* 3DNow! pfacc */
5972 case 0xb0: /* 3DNow! pfcmpeq */
5973 case 0xb4: /* 3DNow! pfmul */
5974 case 0xb6: /* 3DNow! pfrcpit2 */
5975 case 0xb7: /* 3DNow! pmulhrw */
5976 case 0xbb: /* 3DNow! pswapd */
5977 case 0xbf: /* 3DNow! pavgusb */
5978 if (!i386_mmx_regnum_p (gdbarch, I387_MM0_REGNUM (tdep) + ir.reg))
5979 goto no_support_3dnow_data;
5980 record_arch_list_add_reg (ir.regcache, ir.reg);
5981 break;
5982
5983 default:
5984no_support_3dnow_data:
5985 opcode = (opcode << 8) | opcode8;
5986 goto no_support;
5987 break;
5988 }
5989 break;
5990
5991 case 0x0faa: /* rsm */
5992 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
5993 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
5994 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
5995 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
5996 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REBX_REGNUM);
5997 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
5998 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REBP_REGNUM);
5999 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_RESI_REGNUM);
6000 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REDI_REGNUM);
6001 break;
6002
6003 case 0x0fae:
6004 if (i386_record_modrm (&ir))
6005 return -1;
6006 switch(ir.reg)
6007 {
6008 case 0: /* fxsave */
6009 {
6010 uint64_t tmpu64;
6011
6012 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
6013 if (i386_record_lea_modrm_addr (&ir, &tmpu64))
6014 return -1;
6015 if (record_arch_list_add_mem (tmpu64, 512))
6016 return -1;
6017 }
6018 break;
6019
6020 case 1: /* fxrstor */
6021 {
6022 int i;
6023
6024 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
6025
6026 for (i = I387_MM0_REGNUM (tdep);
6027 i386_mmx_regnum_p (gdbarch, i); i++)
6028 record_arch_list_add_reg (ir.regcache, i);
6029
6030 for (i = I387_XMM0_REGNUM (tdep);
c131fcee 6031 i386_xmm_regnum_p (gdbarch, i); i++)
a3c4230a
HZ
6032 record_arch_list_add_reg (ir.regcache, i);
6033
6034 if (i386_mxcsr_regnum_p (gdbarch, I387_MXCSR_REGNUM(tdep)))
6035 record_arch_list_add_reg (ir.regcache, I387_MXCSR_REGNUM(tdep));
6036
6037 for (i = I387_ST0_REGNUM (tdep);
6038 i386_fp_regnum_p (gdbarch, i); i++)
6039 record_arch_list_add_reg (ir.regcache, i);
6040
6041 for (i = I387_FCTRL_REGNUM (tdep);
6042 i386_fpc_regnum_p (gdbarch, i); i++)
6043 record_arch_list_add_reg (ir.regcache, i);
6044 }
6045 break;
6046
6047 case 2: /* ldmxcsr */
6048 if (!i386_mxcsr_regnum_p (gdbarch, I387_MXCSR_REGNUM(tdep)))
6049 goto no_support;
6050 record_arch_list_add_reg (ir.regcache, I387_MXCSR_REGNUM(tdep));
6051 break;
6052
6053 case 3: /* stmxcsr */
6054 ir.ot = OT_LONG;
6055 if (i386_record_lea_modrm (&ir))
6056 return -1;
6057 break;
6058
6059 case 5: /* lfence */
6060 case 6: /* mfence */
6061 case 7: /* sfence clflush */
6062 break;
6063
6064 default:
6065 opcode = (opcode << 8) | ir.modrm;
6066 goto no_support;
6067 break;
6068 }
6069 break;
6070
6071 case 0x0fc3: /* movnti */
6072 ir.ot = (ir.dflag == 2) ? OT_QUAD : OT_LONG;
6073 if (i386_record_modrm (&ir))
6074 return -1;
6075 if (ir.mod == 3)
6076 goto no_support;
6077 ir.reg |= rex_r;
6078 if (i386_record_lea_modrm (&ir))
6079 return -1;
6080 break;
6081
6082 /* Add prefix to opcode. */
6083 case 0x0f10:
6084 case 0x0f11:
6085 case 0x0f12:
6086 case 0x0f13:
6087 case 0x0f14:
6088 case 0x0f15:
6089 case 0x0f16:
6090 case 0x0f17:
6091 case 0x0f28:
6092 case 0x0f29:
6093 case 0x0f2a:
6094 case 0x0f2b:
6095 case 0x0f2c:
6096 case 0x0f2d:
6097 case 0x0f2e:
6098 case 0x0f2f:
6099 case 0x0f38:
6100 case 0x0f39:
6101 case 0x0f3a:
6102 case 0x0f50:
6103 case 0x0f51:
6104 case 0x0f52:
6105 case 0x0f53:
6106 case 0x0f54:
6107 case 0x0f55:
6108 case 0x0f56:
6109 case 0x0f57:
6110 case 0x0f58:
6111 case 0x0f59:
6112 case 0x0f5a:
6113 case 0x0f5b:
6114 case 0x0f5c:
6115 case 0x0f5d:
6116 case 0x0f5e:
6117 case 0x0f5f:
6118 case 0x0f60:
6119 case 0x0f61:
6120 case 0x0f62:
6121 case 0x0f63:
6122 case 0x0f64:
6123 case 0x0f65:
6124 case 0x0f66:
6125 case 0x0f67:
6126 case 0x0f68:
6127 case 0x0f69:
6128 case 0x0f6a:
6129 case 0x0f6b:
6130 case 0x0f6c:
6131 case 0x0f6d:
6132 case 0x0f6e:
6133 case 0x0f6f:
6134 case 0x0f70:
6135 case 0x0f71:
6136 case 0x0f72:
6137 case 0x0f73:
6138 case 0x0f74:
6139 case 0x0f75:
6140 case 0x0f76:
6141 case 0x0f7c:
6142 case 0x0f7d:
6143 case 0x0f7e:
6144 case 0x0f7f:
6145 case 0x0fb8:
6146 case 0x0fc2:
6147 case 0x0fc4:
6148 case 0x0fc5:
6149 case 0x0fc6:
6150 case 0x0fd0:
6151 case 0x0fd1:
6152 case 0x0fd2:
6153 case 0x0fd3:
6154 case 0x0fd4:
6155 case 0x0fd5:
6156 case 0x0fd6:
6157 case 0x0fd7:
6158 case 0x0fd8:
6159 case 0x0fd9:
6160 case 0x0fda:
6161 case 0x0fdb:
6162 case 0x0fdc:
6163 case 0x0fdd:
6164 case 0x0fde:
6165 case 0x0fdf:
6166 case 0x0fe0:
6167 case 0x0fe1:
6168 case 0x0fe2:
6169 case 0x0fe3:
6170 case 0x0fe4:
6171 case 0x0fe5:
6172 case 0x0fe6:
6173 case 0x0fe7:
6174 case 0x0fe8:
6175 case 0x0fe9:
6176 case 0x0fea:
6177 case 0x0feb:
6178 case 0x0fec:
6179 case 0x0fed:
6180 case 0x0fee:
6181 case 0x0fef:
6182 case 0x0ff0:
6183 case 0x0ff1:
6184 case 0x0ff2:
6185 case 0x0ff3:
6186 case 0x0ff4:
6187 case 0x0ff5:
6188 case 0x0ff6:
6189 case 0x0ff7:
6190 case 0x0ff8:
6191 case 0x0ff9:
6192 case 0x0ffa:
6193 case 0x0ffb:
6194 case 0x0ffc:
6195 case 0x0ffd:
6196 case 0x0ffe:
6197 switch (prefixes)
6198 {
6199 case PREFIX_REPNZ:
6200 opcode |= 0xf20000;
6201 break;
6202 case PREFIX_DATA:
6203 opcode |= 0x660000;
6204 break;
6205 case PREFIX_REPZ:
6206 opcode |= 0xf30000;
6207 break;
6208 }
6209reswitch_prefix_add:
6210 switch (opcode)
6211 {
6212 case 0x0f38:
6213 case 0x660f38:
6214 case 0xf20f38:
6215 case 0x0f3a:
6216 case 0x660f3a:
6217 if (target_read_memory (ir.addr, &opcode8, 1))
6218 {
6219 printf_unfiltered (_("Process record: error reading memory at "
6220 "addr %s len = 1.\n"),
6221 paddress (gdbarch, ir.addr));
6222 return -1;
6223 }
6224 ir.addr++;
6225 opcode = (uint32_t) opcode8 | opcode << 8;
6226 goto reswitch_prefix_add;
6227 break;
6228
6229 case 0x0f10: /* movups */
6230 case 0x660f10: /* movupd */
6231 case 0xf30f10: /* movss */
6232 case 0xf20f10: /* movsd */
6233 case 0x0f12: /* movlps */
6234 case 0x660f12: /* movlpd */
6235 case 0xf30f12: /* movsldup */
6236 case 0xf20f12: /* movddup */
6237 case 0x0f14: /* unpcklps */
6238 case 0x660f14: /* unpcklpd */
6239 case 0x0f15: /* unpckhps */
6240 case 0x660f15: /* unpckhpd */
6241 case 0x0f16: /* movhps */
6242 case 0x660f16: /* movhpd */
6243 case 0xf30f16: /* movshdup */
6244 case 0x0f28: /* movaps */
6245 case 0x660f28: /* movapd */
6246 case 0x0f2a: /* cvtpi2ps */
6247 case 0x660f2a: /* cvtpi2pd */
6248 case 0xf30f2a: /* cvtsi2ss */
6249 case 0xf20f2a: /* cvtsi2sd */
6250 case 0x0f2c: /* cvttps2pi */
6251 case 0x660f2c: /* cvttpd2pi */
6252 case 0x0f2d: /* cvtps2pi */
6253 case 0x660f2d: /* cvtpd2pi */
6254 case 0x660f3800: /* pshufb */
6255 case 0x660f3801: /* phaddw */
6256 case 0x660f3802: /* phaddd */
6257 case 0x660f3803: /* phaddsw */
6258 case 0x660f3804: /* pmaddubsw */
6259 case 0x660f3805: /* phsubw */
6260 case 0x660f3806: /* phsubd */
4f7d61a8 6261 case 0x660f3807: /* phsubsw */
a3c4230a
HZ
6262 case 0x660f3808: /* psignb */
6263 case 0x660f3809: /* psignw */
6264 case 0x660f380a: /* psignd */
6265 case 0x660f380b: /* pmulhrsw */
6266 case 0x660f3810: /* pblendvb */
6267 case 0x660f3814: /* blendvps */
6268 case 0x660f3815: /* blendvpd */
6269 case 0x660f381c: /* pabsb */
6270 case 0x660f381d: /* pabsw */
6271 case 0x660f381e: /* pabsd */
6272 case 0x660f3820: /* pmovsxbw */
6273 case 0x660f3821: /* pmovsxbd */
6274 case 0x660f3822: /* pmovsxbq */
6275 case 0x660f3823: /* pmovsxwd */
6276 case 0x660f3824: /* pmovsxwq */
6277 case 0x660f3825: /* pmovsxdq */
6278 case 0x660f3828: /* pmuldq */
6279 case 0x660f3829: /* pcmpeqq */
6280 case 0x660f382a: /* movntdqa */
6281 case 0x660f3a08: /* roundps */
6282 case 0x660f3a09: /* roundpd */
6283 case 0x660f3a0a: /* roundss */
6284 case 0x660f3a0b: /* roundsd */
6285 case 0x660f3a0c: /* blendps */
6286 case 0x660f3a0d: /* blendpd */
6287 case 0x660f3a0e: /* pblendw */
6288 case 0x660f3a0f: /* palignr */
6289 case 0x660f3a20: /* pinsrb */
6290 case 0x660f3a21: /* insertps */
6291 case 0x660f3a22: /* pinsrd pinsrq */
6292 case 0x660f3a40: /* dpps */
6293 case 0x660f3a41: /* dppd */
6294 case 0x660f3a42: /* mpsadbw */
6295 case 0x660f3a60: /* pcmpestrm */
6296 case 0x660f3a61: /* pcmpestri */
6297 case 0x660f3a62: /* pcmpistrm */
6298 case 0x660f3a63: /* pcmpistri */
6299 case 0x0f51: /* sqrtps */
6300 case 0x660f51: /* sqrtpd */
6301 case 0xf20f51: /* sqrtsd */
6302 case 0xf30f51: /* sqrtss */
6303 case 0x0f52: /* rsqrtps */
6304 case 0xf30f52: /* rsqrtss */
6305 case 0x0f53: /* rcpps */
6306 case 0xf30f53: /* rcpss */
6307 case 0x0f54: /* andps */
6308 case 0x660f54: /* andpd */
6309 case 0x0f55: /* andnps */
6310 case 0x660f55: /* andnpd */
6311 case 0x0f56: /* orps */
6312 case 0x660f56: /* orpd */
6313 case 0x0f57: /* xorps */
6314 case 0x660f57: /* xorpd */
6315 case 0x0f58: /* addps */
6316 case 0x660f58: /* addpd */
6317 case 0xf20f58: /* addsd */
6318 case 0xf30f58: /* addss */
6319 case 0x0f59: /* mulps */
6320 case 0x660f59: /* mulpd */
6321 case 0xf20f59: /* mulsd */
6322 case 0xf30f59: /* mulss */
6323 case 0x0f5a: /* cvtps2pd */
6324 case 0x660f5a: /* cvtpd2ps */
6325 case 0xf20f5a: /* cvtsd2ss */
6326 case 0xf30f5a: /* cvtss2sd */
6327 case 0x0f5b: /* cvtdq2ps */
6328 case 0x660f5b: /* cvtps2dq */
6329 case 0xf30f5b: /* cvttps2dq */
6330 case 0x0f5c: /* subps */
6331 case 0x660f5c: /* subpd */
6332 case 0xf20f5c: /* subsd */
6333 case 0xf30f5c: /* subss */
6334 case 0x0f5d: /* minps */
6335 case 0x660f5d: /* minpd */
6336 case 0xf20f5d: /* minsd */
6337 case 0xf30f5d: /* minss */
6338 case 0x0f5e: /* divps */
6339 case 0x660f5e: /* divpd */
6340 case 0xf20f5e: /* divsd */
6341 case 0xf30f5e: /* divss */
6342 case 0x0f5f: /* maxps */
6343 case 0x660f5f: /* maxpd */
6344 case 0xf20f5f: /* maxsd */
6345 case 0xf30f5f: /* maxss */
6346 case 0x660f60: /* punpcklbw */
6347 case 0x660f61: /* punpcklwd */
6348 case 0x660f62: /* punpckldq */
6349 case 0x660f63: /* packsswb */
6350 case 0x660f64: /* pcmpgtb */
6351 case 0x660f65: /* pcmpgtw */
56d2815c 6352 case 0x660f66: /* pcmpgtd */
a3c4230a
HZ
6353 case 0x660f67: /* packuswb */
6354 case 0x660f68: /* punpckhbw */
6355 case 0x660f69: /* punpckhwd */
6356 case 0x660f6a: /* punpckhdq */
6357 case 0x660f6b: /* packssdw */
6358 case 0x660f6c: /* punpcklqdq */
6359 case 0x660f6d: /* punpckhqdq */
6360 case 0x660f6e: /* movd */
6361 case 0x660f6f: /* movdqa */
6362 case 0xf30f6f: /* movdqu */
6363 case 0x660f70: /* pshufd */
6364 case 0xf20f70: /* pshuflw */
6365 case 0xf30f70: /* pshufhw */
6366 case 0x660f74: /* pcmpeqb */
6367 case 0x660f75: /* pcmpeqw */
56d2815c 6368 case 0x660f76: /* pcmpeqd */
a3c4230a
HZ
6369 case 0x660f7c: /* haddpd */
6370 case 0xf20f7c: /* haddps */
6371 case 0x660f7d: /* hsubpd */
6372 case 0xf20f7d: /* hsubps */
6373 case 0xf30f7e: /* movq */
6374 case 0x0fc2: /* cmpps */
6375 case 0x660fc2: /* cmppd */
6376 case 0xf20fc2: /* cmpsd */
6377 case 0xf30fc2: /* cmpss */
6378 case 0x660fc4: /* pinsrw */
6379 case 0x0fc6: /* shufps */
6380 case 0x660fc6: /* shufpd */
6381 case 0x660fd0: /* addsubpd */
6382 case 0xf20fd0: /* addsubps */
6383 case 0x660fd1: /* psrlw */
6384 case 0x660fd2: /* psrld */
6385 case 0x660fd3: /* psrlq */
6386 case 0x660fd4: /* paddq */
6387 case 0x660fd5: /* pmullw */
6388 case 0xf30fd6: /* movq2dq */
6389 case 0x660fd8: /* psubusb */
6390 case 0x660fd9: /* psubusw */
6391 case 0x660fda: /* pminub */
6392 case 0x660fdb: /* pand */
6393 case 0x660fdc: /* paddusb */
6394 case 0x660fdd: /* paddusw */
6395 case 0x660fde: /* pmaxub */
6396 case 0x660fdf: /* pandn */
6397 case 0x660fe0: /* pavgb */
6398 case 0x660fe1: /* psraw */
6399 case 0x660fe2: /* psrad */
6400 case 0x660fe3: /* pavgw */
6401 case 0x660fe4: /* pmulhuw */
6402 case 0x660fe5: /* pmulhw */
6403 case 0x660fe6: /* cvttpd2dq */
6404 case 0xf20fe6: /* cvtpd2dq */
6405 case 0xf30fe6: /* cvtdq2pd */
6406 case 0x660fe8: /* psubsb */
6407 case 0x660fe9: /* psubsw */
6408 case 0x660fea: /* pminsw */
6409 case 0x660feb: /* por */
6410 case 0x660fec: /* paddsb */
6411 case 0x660fed: /* paddsw */
6412 case 0x660fee: /* pmaxsw */
6413 case 0x660fef: /* pxor */
4f7d61a8 6414 case 0xf20ff0: /* lddqu */
a3c4230a
HZ
6415 case 0x660ff1: /* psllw */
6416 case 0x660ff2: /* pslld */
6417 case 0x660ff3: /* psllq */
6418 case 0x660ff4: /* pmuludq */
6419 case 0x660ff5: /* pmaddwd */
6420 case 0x660ff6: /* psadbw */
6421 case 0x660ff8: /* psubb */
6422 case 0x660ff9: /* psubw */
56d2815c 6423 case 0x660ffa: /* psubd */
a3c4230a
HZ
6424 case 0x660ffb: /* psubq */
6425 case 0x660ffc: /* paddb */
6426 case 0x660ffd: /* paddw */
56d2815c 6427 case 0x660ffe: /* paddd */
a3c4230a
HZ
6428 if (i386_record_modrm (&ir))
6429 return -1;
6430 ir.reg |= rex_r;
c131fcee 6431 if (!i386_xmm_regnum_p (gdbarch, I387_XMM0_REGNUM (tdep) + ir.reg))
a3c4230a
HZ
6432 goto no_support;
6433 record_arch_list_add_reg (ir.regcache,
6434 I387_XMM0_REGNUM (tdep) + ir.reg);
6435 if ((opcode & 0xfffffffc) == 0x660f3a60)
6436 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
6437 break;
6438
6439 case 0x0f11: /* movups */
6440 case 0x660f11: /* movupd */
6441 case 0xf30f11: /* movss */
6442 case 0xf20f11: /* movsd */
6443 case 0x0f13: /* movlps */
6444 case 0x660f13: /* movlpd */
6445 case 0x0f17: /* movhps */
6446 case 0x660f17: /* movhpd */
6447 case 0x0f29: /* movaps */
6448 case 0x660f29: /* movapd */
6449 case 0x660f3a14: /* pextrb */
6450 case 0x660f3a15: /* pextrw */
6451 case 0x660f3a16: /* pextrd pextrq */
6452 case 0x660f3a17: /* extractps */
6453 case 0x660f7f: /* movdqa */
6454 case 0xf30f7f: /* movdqu */
6455 if (i386_record_modrm (&ir))
6456 return -1;
6457 if (ir.mod == 3)
6458 {
6459 if (opcode == 0x0f13 || opcode == 0x660f13
6460 || opcode == 0x0f17 || opcode == 0x660f17)
6461 goto no_support;
6462 ir.rm |= ir.rex_b;
1777feb0
MS
6463 if (!i386_xmm_regnum_p (gdbarch,
6464 I387_XMM0_REGNUM (tdep) + ir.rm))
a3c4230a
HZ
6465 goto no_support;
6466 record_arch_list_add_reg (ir.regcache,
6467 I387_XMM0_REGNUM (tdep) + ir.rm);
6468 }
6469 else
6470 {
6471 switch (opcode)
6472 {
6473 case 0x660f3a14:
6474 ir.ot = OT_BYTE;
6475 break;
6476 case 0x660f3a15:
6477 ir.ot = OT_WORD;
6478 break;
6479 case 0x660f3a16:
6480 ir.ot = OT_LONG;
6481 break;
6482 case 0x660f3a17:
6483 ir.ot = OT_QUAD;
6484 break;
6485 default:
6486 ir.ot = OT_DQUAD;
6487 break;
6488 }
6489 if (i386_record_lea_modrm (&ir))
6490 return -1;
6491 }
6492 break;
6493
6494 case 0x0f2b: /* movntps */
6495 case 0x660f2b: /* movntpd */
6496 case 0x0fe7: /* movntq */
6497 case 0x660fe7: /* movntdq */
6498 if (ir.mod == 3)
6499 goto no_support;
6500 if (opcode == 0x0fe7)
6501 ir.ot = OT_QUAD;
6502 else
6503 ir.ot = OT_DQUAD;
6504 if (i386_record_lea_modrm (&ir))
6505 return -1;
6506 break;
6507
6508 case 0xf30f2c: /* cvttss2si */
6509 case 0xf20f2c: /* cvttsd2si */
6510 case 0xf30f2d: /* cvtss2si */
6511 case 0xf20f2d: /* cvtsd2si */
6512 case 0xf20f38f0: /* crc32 */
6513 case 0xf20f38f1: /* crc32 */
6514 case 0x0f50: /* movmskps */
6515 case 0x660f50: /* movmskpd */
6516 case 0x0fc5: /* pextrw */
6517 case 0x660fc5: /* pextrw */
6518 case 0x0fd7: /* pmovmskb */
6519 case 0x660fd7: /* pmovmskb */
6520 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg | rex_r);
6521 break;
6522
6523 case 0x0f3800: /* pshufb */
6524 case 0x0f3801: /* phaddw */
6525 case 0x0f3802: /* phaddd */
6526 case 0x0f3803: /* phaddsw */
6527 case 0x0f3804: /* pmaddubsw */
6528 case 0x0f3805: /* phsubw */
6529 case 0x0f3806: /* phsubd */
4f7d61a8 6530 case 0x0f3807: /* phsubsw */
a3c4230a
HZ
6531 case 0x0f3808: /* psignb */
6532 case 0x0f3809: /* psignw */
6533 case 0x0f380a: /* psignd */
6534 case 0x0f380b: /* pmulhrsw */
6535 case 0x0f381c: /* pabsb */
6536 case 0x0f381d: /* pabsw */
6537 case 0x0f381e: /* pabsd */
6538 case 0x0f382b: /* packusdw */
6539 case 0x0f3830: /* pmovzxbw */
6540 case 0x0f3831: /* pmovzxbd */
6541 case 0x0f3832: /* pmovzxbq */
6542 case 0x0f3833: /* pmovzxwd */
6543 case 0x0f3834: /* pmovzxwq */
6544 case 0x0f3835: /* pmovzxdq */
6545 case 0x0f3837: /* pcmpgtq */
6546 case 0x0f3838: /* pminsb */
6547 case 0x0f3839: /* pminsd */
6548 case 0x0f383a: /* pminuw */
6549 case 0x0f383b: /* pminud */
6550 case 0x0f383c: /* pmaxsb */
6551 case 0x0f383d: /* pmaxsd */
6552 case 0x0f383e: /* pmaxuw */
6553 case 0x0f383f: /* pmaxud */
6554 case 0x0f3840: /* pmulld */
6555 case 0x0f3841: /* phminposuw */
6556 case 0x0f3a0f: /* palignr */
6557 case 0x0f60: /* punpcklbw */
6558 case 0x0f61: /* punpcklwd */
6559 case 0x0f62: /* punpckldq */
6560 case 0x0f63: /* packsswb */
6561 case 0x0f64: /* pcmpgtb */
6562 case 0x0f65: /* pcmpgtw */
56d2815c 6563 case 0x0f66: /* pcmpgtd */
a3c4230a
HZ
6564 case 0x0f67: /* packuswb */
6565 case 0x0f68: /* punpckhbw */
6566 case 0x0f69: /* punpckhwd */
6567 case 0x0f6a: /* punpckhdq */
6568 case 0x0f6b: /* packssdw */
6569 case 0x0f6e: /* movd */
6570 case 0x0f6f: /* movq */
6571 case 0x0f70: /* pshufw */
6572 case 0x0f74: /* pcmpeqb */
6573 case 0x0f75: /* pcmpeqw */
56d2815c 6574 case 0x0f76: /* pcmpeqd */
a3c4230a
HZ
6575 case 0x0fc4: /* pinsrw */
6576 case 0x0fd1: /* psrlw */
6577 case 0x0fd2: /* psrld */
6578 case 0x0fd3: /* psrlq */
6579 case 0x0fd4: /* paddq */
6580 case 0x0fd5: /* pmullw */
6581 case 0xf20fd6: /* movdq2q */
6582 case 0x0fd8: /* psubusb */
6583 case 0x0fd9: /* psubusw */
6584 case 0x0fda: /* pminub */
6585 case 0x0fdb: /* pand */
6586 case 0x0fdc: /* paddusb */
6587 case 0x0fdd: /* paddusw */
6588 case 0x0fde: /* pmaxub */
6589 case 0x0fdf: /* pandn */
6590 case 0x0fe0: /* pavgb */
6591 case 0x0fe1: /* psraw */
6592 case 0x0fe2: /* psrad */
6593 case 0x0fe3: /* pavgw */
6594 case 0x0fe4: /* pmulhuw */
6595 case 0x0fe5: /* pmulhw */
6596 case 0x0fe8: /* psubsb */
6597 case 0x0fe9: /* psubsw */
6598 case 0x0fea: /* pminsw */
6599 case 0x0feb: /* por */
6600 case 0x0fec: /* paddsb */
6601 case 0x0fed: /* paddsw */
6602 case 0x0fee: /* pmaxsw */
6603 case 0x0fef: /* pxor */
6604 case 0x0ff1: /* psllw */
6605 case 0x0ff2: /* pslld */
6606 case 0x0ff3: /* psllq */
6607 case 0x0ff4: /* pmuludq */
6608 case 0x0ff5: /* pmaddwd */
6609 case 0x0ff6: /* psadbw */
6610 case 0x0ff8: /* psubb */
6611 case 0x0ff9: /* psubw */
56d2815c 6612 case 0x0ffa: /* psubd */
a3c4230a
HZ
6613 case 0x0ffb: /* psubq */
6614 case 0x0ffc: /* paddb */
6615 case 0x0ffd: /* paddw */
56d2815c 6616 case 0x0ffe: /* paddd */
a3c4230a
HZ
6617 if (i386_record_modrm (&ir))
6618 return -1;
6619 if (!i386_mmx_regnum_p (gdbarch, I387_MM0_REGNUM (tdep) + ir.reg))
6620 goto no_support;
6621 record_arch_list_add_reg (ir.regcache,
6622 I387_MM0_REGNUM (tdep) + ir.reg);
6623 break;
6624
6625 case 0x0f71: /* psllw */
6626 case 0x0f72: /* pslld */
6627 case 0x0f73: /* psllq */
6628 if (i386_record_modrm (&ir))
6629 return -1;
6630 if (!i386_mmx_regnum_p (gdbarch, I387_MM0_REGNUM (tdep) + ir.rm))
6631 goto no_support;
6632 record_arch_list_add_reg (ir.regcache,
6633 I387_MM0_REGNUM (tdep) + ir.rm);
6634 break;
6635
6636 case 0x660f71: /* psllw */
6637 case 0x660f72: /* pslld */
6638 case 0x660f73: /* psllq */
6639 if (i386_record_modrm (&ir))
6640 return -1;
6641 ir.rm |= ir.rex_b;
c131fcee 6642 if (!i386_xmm_regnum_p (gdbarch, I387_XMM0_REGNUM (tdep) + ir.rm))
a3c4230a
HZ
6643 goto no_support;
6644 record_arch_list_add_reg (ir.regcache,
6645 I387_XMM0_REGNUM (tdep) + ir.rm);
6646 break;
6647
6648 case 0x0f7e: /* movd */
6649 case 0x660f7e: /* movd */
6650 if (i386_record_modrm (&ir))
6651 return -1;
6652 if (ir.mod == 3)
6653 I386_RECORD_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
6654 else
6655 {
6656 if (ir.dflag == 2)
6657 ir.ot = OT_QUAD;
6658 else
6659 ir.ot = OT_LONG;
6660 if (i386_record_lea_modrm (&ir))
6661 return -1;
6662 }
6663 break;
6664
6665 case 0x0f7f: /* movq */
6666 if (i386_record_modrm (&ir))
6667 return -1;
6668 if (ir.mod == 3)
6669 {
6670 if (!i386_mmx_regnum_p (gdbarch, I387_MM0_REGNUM (tdep) + ir.rm))
6671 goto no_support;
6672 record_arch_list_add_reg (ir.regcache,
6673 I387_MM0_REGNUM (tdep) + ir.rm);
6674 }
6675 else
6676 {
6677 ir.ot = OT_QUAD;
6678 if (i386_record_lea_modrm (&ir))
6679 return -1;
6680 }
6681 break;
6682
6683 case 0xf30fb8: /* popcnt */
6684 if (i386_record_modrm (&ir))
6685 return -1;
6686 I386_RECORD_ARCH_LIST_ADD_REG (ir.reg);
6687 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
6688 break;
6689
6690 case 0x660fd6: /* movq */
6691 if (i386_record_modrm (&ir))
6692 return -1;
6693 if (ir.mod == 3)
6694 {
6695 ir.rm |= ir.rex_b;
1777feb0
MS
6696 if (!i386_xmm_regnum_p (gdbarch,
6697 I387_XMM0_REGNUM (tdep) + ir.rm))
a3c4230a
HZ
6698 goto no_support;
6699 record_arch_list_add_reg (ir.regcache,
6700 I387_XMM0_REGNUM (tdep) + ir.rm);
6701 }
6702 else
6703 {
6704 ir.ot = OT_QUAD;
6705 if (i386_record_lea_modrm (&ir))
6706 return -1;
6707 }
6708 break;
6709
6710 case 0x660f3817: /* ptest */
6711 case 0x0f2e: /* ucomiss */
6712 case 0x660f2e: /* ucomisd */
6713 case 0x0f2f: /* comiss */
6714 case 0x660f2f: /* comisd */
6715 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
6716 break;
6717
6718 case 0x0ff7: /* maskmovq */
6719 regcache_raw_read_unsigned (ir.regcache,
6720 ir.regmap[X86_RECORD_REDI_REGNUM],
6721 &addr);
6722 if (record_arch_list_add_mem (addr, 64))
6723 return -1;
6724 break;
6725
6726 case 0x660ff7: /* maskmovdqu */
6727 regcache_raw_read_unsigned (ir.regcache,
6728 ir.regmap[X86_RECORD_REDI_REGNUM],
6729 &addr);
6730 if (record_arch_list_add_mem (addr, 128))
6731 return -1;
6732 break;
6733
6734 default:
6735 goto no_support;
6736 break;
6737 }
6738 break;
7ad10968
HZ
6739
6740 default:
7ad10968
HZ
6741 goto no_support;
6742 break;
6743 }
6744
cf648174
HZ
6745 /* In the future, maybe still need to deal with need_dasm. */
6746 I386_RECORD_ARCH_LIST_ADD_REG (X86_RECORD_REIP_REGNUM);
7ad10968
HZ
6747 if (record_arch_list_add_end ())
6748 return -1;
6749
6750 return 0;
6751
01fe1b41 6752 no_support:
a3c4230a
HZ
6753 printf_unfiltered (_("Process record does not support instruction 0x%02x "
6754 "at address %s.\n"),
6755 (unsigned int) (opcode),
6756 paddress (gdbarch, ir.orig_addr));
7ad10968
HZ
6757 return -1;
6758}
6759
cf648174
HZ
6760static const int i386_record_regmap[] =
6761{
6762 I386_EAX_REGNUM, I386_ECX_REGNUM, I386_EDX_REGNUM, I386_EBX_REGNUM,
6763 I386_ESP_REGNUM, I386_EBP_REGNUM, I386_ESI_REGNUM, I386_EDI_REGNUM,
6764 0, 0, 0, 0, 0, 0, 0, 0,
6765 I386_EIP_REGNUM, I386_EFLAGS_REGNUM, I386_CS_REGNUM, I386_SS_REGNUM,
6766 I386_DS_REGNUM, I386_ES_REGNUM, I386_FS_REGNUM, I386_GS_REGNUM
6767};
6768
7a697b8d
SS
6769/* Check that the given address appears suitable for a fast
6770 tracepoint, which on x86 means that we need an instruction of at
6771 least 5 bytes, so that we can overwrite it with a 4-byte-offset
6772 jump and not have to worry about program jumps to an address in the
6773 middle of the tracepoint jump. Returns 1 if OK, and writes a size
6774 of instruction to replace, and 0 if not, plus an explanatory
6775 string. */
6776
6777static int
6778i386_fast_tracepoint_valid_at (struct gdbarch *gdbarch,
6779 CORE_ADDR addr, int *isize, char **msg)
6780{
6781 int len, jumplen;
6782 static struct ui_file *gdb_null = NULL;
6783
6784 /* This is based on the target agent using a 4-byte relative jump.
6785 Alternate future possibilities include 8-byte offset for x86-84,
6786 or 3-byte jumps if the program has trampoline space close by. */
6787 jumplen = 5;
6788
6789 /* Dummy file descriptor for the disassembler. */
6790 if (!gdb_null)
6791 gdb_null = ui_file_new ();
6792
6793 /* Check for fit. */
6794 len = gdb_print_insn (gdbarch, addr, gdb_null, NULL);
6795 if (len < jumplen)
6796 {
6797 /* Return a bit of target-specific detail to add to the caller's
6798 generic failure message. */
6799 if (msg)
1777feb0
MS
6800 *msg = xstrprintf (_("; instruction is only %d bytes long, "
6801 "need at least %d bytes for the jump"),
7a697b8d
SS
6802 len, jumplen);
6803 return 0;
6804 }
6805
6806 if (isize)
6807 *isize = len;
6808 if (msg)
6809 *msg = NULL;
6810 return 1;
6811}
6812
90884b2b
L
6813static int
6814i386_validate_tdesc_p (struct gdbarch_tdep *tdep,
6815 struct tdesc_arch_data *tdesc_data)
6816{
6817 const struct target_desc *tdesc = tdep->tdesc;
c131fcee
L
6818 const struct tdesc_feature *feature_core;
6819 const struct tdesc_feature *feature_sse, *feature_avx;
90884b2b
L
6820 int i, num_regs, valid_p;
6821
6822 if (! tdesc_has_registers (tdesc))
6823 return 0;
6824
6825 /* Get core registers. */
6826 feature_core = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.core");
3a13a53b
L
6827 if (feature_core == NULL)
6828 return 0;
90884b2b
L
6829
6830 /* Get SSE registers. */
c131fcee 6831 feature_sse = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.sse");
90884b2b 6832
c131fcee
L
6833 /* Try AVX registers. */
6834 feature_avx = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.avx");
6835
90884b2b
L
6836 valid_p = 1;
6837
c131fcee
L
6838 /* The XCR0 bits. */
6839 if (feature_avx)
6840 {
3a13a53b
L
6841 /* AVX register description requires SSE register description. */
6842 if (!feature_sse)
6843 return 0;
6844
c131fcee
L
6845 tdep->xcr0 = I386_XSTATE_AVX_MASK;
6846
6847 /* It may have been set by OSABI initialization function. */
6848 if (tdep->num_ymm_regs == 0)
6849 {
6850 tdep->ymmh_register_names = i386_ymmh_names;
6851 tdep->num_ymm_regs = 8;
6852 tdep->ymm0h_regnum = I386_YMM0H_REGNUM;
6853 }
6854
6855 for (i = 0; i < tdep->num_ymm_regs; i++)
6856 valid_p &= tdesc_numbered_register (feature_avx, tdesc_data,
6857 tdep->ymm0h_regnum + i,
6858 tdep->ymmh_register_names[i]);
6859 }
3a13a53b 6860 else if (feature_sse)
c131fcee 6861 tdep->xcr0 = I386_XSTATE_SSE_MASK;
3a13a53b
L
6862 else
6863 {
6864 tdep->xcr0 = I386_XSTATE_X87_MASK;
6865 tdep->num_xmm_regs = 0;
6866 }
c131fcee 6867
90884b2b
L
6868 num_regs = tdep->num_core_regs;
6869 for (i = 0; i < num_regs; i++)
6870 valid_p &= tdesc_numbered_register (feature_core, tdesc_data, i,
6871 tdep->register_names[i]);
6872
3a13a53b
L
6873 if (feature_sse)
6874 {
6875 /* Need to include %mxcsr, so add one. */
6876 num_regs += tdep->num_xmm_regs + 1;
6877 for (; i < num_regs; i++)
6878 valid_p &= tdesc_numbered_register (feature_sse, tdesc_data, i,
6879 tdep->register_names[i]);
6880 }
90884b2b
L
6881
6882 return valid_p;
6883}
6884
7ad10968
HZ
6885\f
6886static struct gdbarch *
6887i386_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
6888{
6889 struct gdbarch_tdep *tdep;
6890 struct gdbarch *gdbarch;
90884b2b
L
6891 struct tdesc_arch_data *tdesc_data;
6892 const struct target_desc *tdesc;
1ba53b71 6893 int mm0_regnum;
c131fcee 6894 int ymm0_regnum;
7ad10968
HZ
6895
6896 /* If there is already a candidate, use it. */
6897 arches = gdbarch_list_lookup_by_info (arches, &info);
6898 if (arches != NULL)
6899 return arches->gdbarch;
6900
6901 /* Allocate space for the new architecture. */
6902 tdep = XCALLOC (1, struct gdbarch_tdep);
6903 gdbarch = gdbarch_alloc (&info, tdep);
6904
6905 /* General-purpose registers. */
6906 tdep->gregset = NULL;
6907 tdep->gregset_reg_offset = NULL;
6908 tdep->gregset_num_regs = I386_NUM_GREGS;
6909 tdep->sizeof_gregset = 0;
6910
6911 /* Floating-point registers. */
6912 tdep->fpregset = NULL;
6913 tdep->sizeof_fpregset = I387_SIZEOF_FSAVE;
6914
c131fcee
L
6915 tdep->xstateregset = NULL;
6916
7ad10968
HZ
6917 /* The default settings include the FPU registers, the MMX registers
6918 and the SSE registers. This can be overridden for a specific ABI
6919 by adjusting the members `st0_regnum', `mm0_regnum' and
6920 `num_xmm_regs' of `struct gdbarch_tdep', otherwise the registers
3a13a53b 6921 will show up in the output of "info all-registers". */
7ad10968
HZ
6922
6923 tdep->st0_regnum = I386_ST0_REGNUM;
6924
7ad10968
HZ
6925 /* I386_NUM_XREGS includes %mxcsr, so substract one. */
6926 tdep->num_xmm_regs = I386_NUM_XREGS - 1;
6927
6928 tdep->jb_pc_offset = -1;
6929 tdep->struct_return = pcc_struct_return;
6930 tdep->sigtramp_start = 0;
6931 tdep->sigtramp_end = 0;
6932 tdep->sigtramp_p = i386_sigtramp_p;
6933 tdep->sigcontext_addr = NULL;
6934 tdep->sc_reg_offset = NULL;
6935 tdep->sc_pc_offset = -1;
6936 tdep->sc_sp_offset = -1;
6937
c131fcee
L
6938 tdep->xsave_xcr0_offset = -1;
6939
cf648174
HZ
6940 tdep->record_regmap = i386_record_regmap;
6941
7ad10968
HZ
6942 /* The format used for `long double' on almost all i386 targets is
6943 the i387 extended floating-point format. In fact, of all targets
6944 in the GCC 2.95 tree, only OSF/1 does it different, and insists
6945 on having a `long double' that's not `long' at all. */
6946 set_gdbarch_long_double_format (gdbarch, floatformats_i387_ext);
6947
6948 /* Although the i387 extended floating-point has only 80 significant
6949 bits, a `long double' actually takes up 96, probably to enforce
6950 alignment. */
6951 set_gdbarch_long_double_bit (gdbarch, 96);
6952
7ad10968
HZ
6953 /* Register numbers of various important registers. */
6954 set_gdbarch_sp_regnum (gdbarch, I386_ESP_REGNUM); /* %esp */
6955 set_gdbarch_pc_regnum (gdbarch, I386_EIP_REGNUM); /* %eip */
6956 set_gdbarch_ps_regnum (gdbarch, I386_EFLAGS_REGNUM); /* %eflags */
6957 set_gdbarch_fp0_regnum (gdbarch, I386_ST0_REGNUM); /* %st(0) */
6958
6959 /* NOTE: kettenis/20040418: GCC does have two possible register
6960 numbering schemes on the i386: dbx and SVR4. These schemes
6961 differ in how they number %ebp, %esp, %eflags, and the
6962 floating-point registers, and are implemented by the arrays
6963 dbx_register_map[] and svr4_dbx_register_map in
6964 gcc/config/i386.c. GCC also defines a third numbering scheme in
6965 gcc/config/i386.c, which it designates as the "default" register
6966 map used in 64bit mode. This last register numbering scheme is
6967 implemented in dbx64_register_map, and is used for AMD64; see
6968 amd64-tdep.c.
6969
6970 Currently, each GCC i386 target always uses the same register
6971 numbering scheme across all its supported debugging formats
6972 i.e. SDB (COFF), stabs and DWARF 2. This is because
6973 gcc/sdbout.c, gcc/dbxout.c and gcc/dwarf2out.c all use the
6974 DBX_REGISTER_NUMBER macro which is defined by each target's
6975 respective config header in a manner independent of the requested
6976 output debugging format.
6977
6978 This does not match the arrangement below, which presumes that
6979 the SDB and stabs numbering schemes differ from the DWARF and
6980 DWARF 2 ones. The reason for this arrangement is that it is
6981 likely to get the numbering scheme for the target's
6982 default/native debug format right. For targets where GCC is the
6983 native compiler (FreeBSD, NetBSD, OpenBSD, GNU/Linux) or for
6984 targets where the native toolchain uses a different numbering
6985 scheme for a particular debug format (stabs-in-ELF on Solaris)
6986 the defaults below will have to be overridden, like
6987 i386_elf_init_abi() does. */
6988
6989 /* Use the dbx register numbering scheme for stabs and COFF. */
6990 set_gdbarch_stab_reg_to_regnum (gdbarch, i386_dbx_reg_to_regnum);
6991 set_gdbarch_sdb_reg_to_regnum (gdbarch, i386_dbx_reg_to_regnum);
6992
6993 /* Use the SVR4 register numbering scheme for DWARF 2. */
6994 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, i386_svr4_reg_to_regnum);
6995
6996 /* We don't set gdbarch_stab_reg_to_regnum, since ECOFF doesn't seem to
6997 be in use on any of the supported i386 targets. */
6998
6999 set_gdbarch_print_float_info (gdbarch, i387_print_float_info);
7000
7001 set_gdbarch_get_longjmp_target (gdbarch, i386_get_longjmp_target);
7002
7003 /* Call dummy code. */
7004 set_gdbarch_push_dummy_call (gdbarch, i386_push_dummy_call);
7005
7006 set_gdbarch_convert_register_p (gdbarch, i386_convert_register_p);
7007 set_gdbarch_register_to_value (gdbarch, i386_register_to_value);
7008 set_gdbarch_value_to_register (gdbarch, i386_value_to_register);
7009
7010 set_gdbarch_return_value (gdbarch, i386_return_value);
7011
7012 set_gdbarch_skip_prologue (gdbarch, i386_skip_prologue);
7013
7014 /* Stack grows downward. */
7015 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
7016
7017 set_gdbarch_breakpoint_from_pc (gdbarch, i386_breakpoint_from_pc);
7018 set_gdbarch_decr_pc_after_break (gdbarch, 1);
7019 set_gdbarch_max_insn_length (gdbarch, I386_MAX_INSN_LEN);
7020
7021 set_gdbarch_frame_args_skip (gdbarch, 8);
7022
7ad10968
HZ
7023 set_gdbarch_print_insn (gdbarch, i386_print_insn);
7024
7025 set_gdbarch_dummy_id (gdbarch, i386_dummy_id);
7026
7027 set_gdbarch_unwind_pc (gdbarch, i386_unwind_pc);
7028
7029 /* Add the i386 register groups. */
7030 i386_add_reggroups (gdbarch);
90884b2b 7031 tdep->register_reggroup_p = i386_register_reggroup_p;
38c968cf 7032
143985b7
AF
7033 /* Helper for function argument information. */
7034 set_gdbarch_fetch_pointer_argument (gdbarch, i386_fetch_pointer_argument);
7035
06da04c6
MS
7036 /* Hook the function epilogue frame unwinder. This unwinder is
7037 appended to the list first, so that it supercedes the Dwarf
7038 unwinder in function epilogues (where the Dwarf unwinder
7039 currently fails). */
7040 frame_unwind_append_unwinder (gdbarch, &i386_epilogue_frame_unwind);
7041
7042 /* Hook in the DWARF CFI frame unwinder. This unwinder is appended
7043 to the list before the prologue-based unwinders, so that Dwarf
7044 CFI info will be used if it is available. */
10458914 7045 dwarf2_append_unwinders (gdbarch);
6405b0a6 7046
acd5c798 7047 frame_base_set_default (gdbarch, &i386_frame_base);
6c0e89ed 7048
1ba53b71 7049 /* Pseudo registers may be changed by amd64_init_abi. */
90884b2b
L
7050 set_gdbarch_pseudo_register_read (gdbarch, i386_pseudo_register_read);
7051 set_gdbarch_pseudo_register_write (gdbarch, i386_pseudo_register_write);
7052
7053 set_tdesc_pseudo_register_type (gdbarch, i386_pseudo_register_type);
7054 set_tdesc_pseudo_register_name (gdbarch, i386_pseudo_register_name);
7055
c131fcee
L
7056 /* Override the normal target description method to make the AVX
7057 upper halves anonymous. */
7058 set_gdbarch_register_name (gdbarch, i386_register_name);
7059
7060 /* Even though the default ABI only includes general-purpose registers,
7061 floating-point registers and the SSE registers, we have to leave a
7062 gap for the upper AVX registers. */
7063 set_gdbarch_num_regs (gdbarch, I386_AVX_NUM_REGS);
90884b2b
L
7064
7065 /* Get the x86 target description from INFO. */
7066 tdesc = info.target_desc;
7067 if (! tdesc_has_registers (tdesc))
7068 tdesc = tdesc_i386;
7069 tdep->tdesc = tdesc;
7070
7071 tdep->num_core_regs = I386_NUM_GREGS + I387_NUM_REGS;
7072 tdep->register_names = i386_register_names;
7073
c131fcee
L
7074 /* No upper YMM registers. */
7075 tdep->ymmh_register_names = NULL;
7076 tdep->ymm0h_regnum = -1;
7077
1ba53b71
L
7078 tdep->num_byte_regs = 8;
7079 tdep->num_word_regs = 8;
7080 tdep->num_dword_regs = 0;
7081 tdep->num_mmx_regs = 8;
c131fcee 7082 tdep->num_ymm_regs = 0;
1ba53b71 7083
90884b2b
L
7084 tdesc_data = tdesc_data_alloc ();
7085
dde08ee1
PA
7086 set_gdbarch_relocate_instruction (gdbarch, i386_relocate_instruction);
7087
3ce1502b 7088 /* Hook in ABI-specific overrides, if they have been registered. */
90884b2b 7089 info.tdep_info = (void *) tdesc_data;
4be87837 7090 gdbarch_init_osabi (info, gdbarch);
3ce1502b 7091
c131fcee
L
7092 if (!i386_validate_tdesc_p (tdep, tdesc_data))
7093 {
7094 tdesc_data_cleanup (tdesc_data);
7095 xfree (tdep);
7096 gdbarch_free (gdbarch);
7097 return NULL;
7098 }
7099
1ba53b71
L
7100 /* Wire in pseudo registers. Number of pseudo registers may be
7101 changed. */
7102 set_gdbarch_num_pseudo_regs (gdbarch, (tdep->num_byte_regs
7103 + tdep->num_word_regs
7104 + tdep->num_dword_regs
c131fcee
L
7105 + tdep->num_mmx_regs
7106 + tdep->num_ymm_regs));
1ba53b71 7107
90884b2b
L
7108 /* Target description may be changed. */
7109 tdesc = tdep->tdesc;
7110
90884b2b
L
7111 tdesc_use_registers (gdbarch, tdesc, tdesc_data);
7112
7113 /* Override gdbarch_register_reggroup_p set in tdesc_use_registers. */
7114 set_gdbarch_register_reggroup_p (gdbarch, tdep->register_reggroup_p);
7115
1ba53b71
L
7116 /* Make %al the first pseudo-register. */
7117 tdep->al_regnum = gdbarch_num_regs (gdbarch);
7118 tdep->ax_regnum = tdep->al_regnum + tdep->num_byte_regs;
7119
c131fcee 7120 ymm0_regnum = tdep->ax_regnum + tdep->num_word_regs;
1ba53b71
L
7121 if (tdep->num_dword_regs)
7122 {
1c6272a6 7123 /* Support dword pseudo-register if it hasn't been disabled. */
c131fcee
L
7124 tdep->eax_regnum = ymm0_regnum;
7125 ymm0_regnum += tdep->num_dword_regs;
1ba53b71
L
7126 }
7127 else
7128 tdep->eax_regnum = -1;
7129
c131fcee
L
7130 mm0_regnum = ymm0_regnum;
7131 if (tdep->num_ymm_regs)
7132 {
1c6272a6 7133 /* Support YMM pseudo-register if it is available. */
c131fcee
L
7134 tdep->ymm0_regnum = ymm0_regnum;
7135 mm0_regnum += tdep->num_ymm_regs;
7136 }
7137 else
7138 tdep->ymm0_regnum = -1;
7139
1ba53b71
L
7140 if (tdep->num_mmx_regs != 0)
7141 {
1c6272a6 7142 /* Support MMX pseudo-register if MMX hasn't been disabled. */
1ba53b71
L
7143 tdep->mm0_regnum = mm0_regnum;
7144 }
7145 else
7146 tdep->mm0_regnum = -1;
7147
06da04c6 7148 /* Hook in the legacy prologue-based unwinders last (fallback). */
10458914
DJ
7149 frame_unwind_append_unwinder (gdbarch, &i386_sigtramp_frame_unwind);
7150 frame_unwind_append_unwinder (gdbarch, &i386_frame_unwind);
acd5c798 7151
8446b36a
MK
7152 /* If we have a register mapping, enable the generic core file
7153 support, unless it has already been enabled. */
7154 if (tdep->gregset_reg_offset
7155 && !gdbarch_regset_from_core_section_p (gdbarch))
7156 set_gdbarch_regset_from_core_section (gdbarch,
7157 i386_regset_from_core_section);
7158
514f746b
AR
7159 set_gdbarch_skip_permanent_breakpoint (gdbarch,
7160 i386_skip_permanent_breakpoint);
7161
7a697b8d
SS
7162 set_gdbarch_fast_tracepoint_valid_at (gdbarch,
7163 i386_fast_tracepoint_valid_at);
7164
a62cc96e
AC
7165 return gdbarch;
7166}
7167
8201327c
MK
7168static enum gdb_osabi
7169i386_coff_osabi_sniffer (bfd *abfd)
7170{
762c5349
MK
7171 if (strcmp (bfd_get_target (abfd), "coff-go32-exe") == 0
7172 || strcmp (bfd_get_target (abfd), "coff-go32") == 0)
8201327c
MK
7173 return GDB_OSABI_GO32;
7174
7175 return GDB_OSABI_UNKNOWN;
7176}
8201327c
MK
7177\f
7178
28e9e0f0
MK
7179/* Provide a prototype to silence -Wmissing-prototypes. */
7180void _initialize_i386_tdep (void);
7181
c906108c 7182void
fba45db2 7183_initialize_i386_tdep (void)
c906108c 7184{
a62cc96e
AC
7185 register_gdbarch_init (bfd_arch_i386, i386_gdbarch_init);
7186
fc338970 7187 /* Add the variable that controls the disassembly flavor. */
7ab04401
AC
7188 add_setshow_enum_cmd ("disassembly-flavor", no_class, valid_flavors,
7189 &disassembly_flavor, _("\
7190Set the disassembly flavor."), _("\
7191Show the disassembly flavor."), _("\
7192The valid values are \"att\" and \"intel\", and the default value is \"att\"."),
7193 NULL,
7194 NULL, /* FIXME: i18n: */
7195 &setlist, &showlist);
8201327c
MK
7196
7197 /* Add the variable that controls the convention for returning
7198 structs. */
7ab04401
AC
7199 add_setshow_enum_cmd ("struct-convention", no_class, valid_conventions,
7200 &struct_convention, _("\
7201Set the convention for returning small structs."), _("\
7202Show the convention for returning small structs."), _("\
7203Valid values are \"default\", \"pcc\" and \"reg\", and the default value\n\
7204is \"default\"."),
7205 NULL,
7206 NULL, /* FIXME: i18n: */
7207 &setlist, &showlist);
8201327c
MK
7208
7209 gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_coff_flavour,
7210 i386_coff_osabi_sniffer);
8201327c 7211
05816f70 7212 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_SVR4,
8201327c 7213 i386_svr4_init_abi);
05816f70 7214 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_GO32,
8201327c 7215 i386_go32_init_abi);
38c968cf 7216
209bd28e 7217 /* Initialize the i386-specific register groups. */
38c968cf 7218 i386_init_reggroups ();
90884b2b
L
7219
7220 /* Initialize the standard target descriptions. */
7221 initialize_tdesc_i386 ();
3a13a53b 7222 initialize_tdesc_i386_mmx ();
c131fcee 7223 initialize_tdesc_i386_avx ();
c8d5aac9
L
7224
7225 /* Tell remote stub that we support XML target description. */
7226 register_remote_support_xml ("i386");
c906108c 7227}