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