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