gdb/i386-tdep.c - gdb

Global variables defined

Data types defined

Functions defined

Macros defined

Source code

  1. /* Intel 386 target-dependent stuff.

  2.    Copyright (C) 1988-2015 Free Software Foundation, Inc.

  3.    This file is part of GDB.

  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  14. #include "defs.h"
  15. #include "opcode/i386.h"
  16. #include "arch-utils.h"
  17. #include "command.h"
  18. #include "dummy-frame.h"
  19. #include "dwarf2-frame.h"
  20. #include "doublest.h"
  21. #include "frame.h"
  22. #include "frame-base.h"
  23. #include "frame-unwind.h"
  24. #include "inferior.h"
  25. #include "infrun.h"
  26. #include "gdbcmd.h"
  27. #include "gdbcore.h"
  28. #include "gdbtypes.h"
  29. #include "objfiles.h"
  30. #include "osabi.h"
  31. #include "regcache.h"
  32. #include "reggroups.h"
  33. #include "regset.h"
  34. #include "symfile.h"
  35. #include "symtab.h"
  36. #include "target.h"
  37. #include "value.h"
  38. #include "dis-asm.h"
  39. #include "disasm.h"
  40. #include "remote.h"
  41. #include "i386-tdep.h"
  42. #include "i387-tdep.h"
  43. #include "x86-xstate.h"

  44. #include "record.h"
  45. #include "record-full.h"
  46. #include <stdint.h>

  47. #include "features/i386/i386.c"
  48. #include "features/i386/i386-avx.c"
  49. #include "features/i386/i386-mpx.c"
  50. #include "features/i386/i386-avx512.c"
  51. #include "features/i386/i386-mmx.c"

  52. #include "ax.h"
  53. #include "ax-gdb.h"

  54. #include "stap-probe.h"
  55. #include "user-regs.h"
  56. #include "cli/cli-utils.h"
  57. #include "expression.h"
  58. #include "parser-defs.h"
  59. #include <ctype.h>

  60. /* Register names.  */

  61. static const char *i386_register_names[] =
  62. {
  63.   "eax",   "ecx",    "edx",   "ebx",
  64.   "esp",   "ebp",    "esi",   "edi",
  65.   "eip",   "eflags", "cs",    "ss",
  66.   "ds",    "es",     "fs",    "gs",
  67.   "st0",   "st1",    "st2",   "st3",
  68.   "st4",   "st5",    "st6",   "st7",
  69.   "fctrl", "fstat""ftag""fiseg",
  70.   "fioff", "foseg""fooff", "fop",
  71.   "xmm0""xmm1",   "xmm2""xmm3",
  72.   "xmm4""xmm5",   "xmm6""xmm7",
  73.   "mxcsr"
  74. };

  75. static const char *i386_zmm_names[] =
  76. {
  77.   "zmm0""zmm1",   "zmm2""zmm3",
  78.   "zmm4""zmm5",   "zmm6""zmm7"
  79. };

  80. static const char *i386_zmmh_names[] =
  81. {
  82.   "zmm0h""zmm1h",   "zmm2h""zmm3h",
  83.   "zmm4h""zmm5h",   "zmm6h""zmm7h"
  84. };

  85. static const char *i386_k_names[] =
  86. {
  87.   "k0""k1",   "k2""k3",
  88.   "k4""k5",   "k6""k7"
  89. };

  90. static const char *i386_ymm_names[] =
  91. {
  92.   "ymm0""ymm1",   "ymm2""ymm3",
  93.   "ymm4""ymm5",   "ymm6""ymm7",
  94. };

  95. static const char *i386_ymmh_names[] =
  96. {
  97.   "ymm0h""ymm1h",   "ymm2h""ymm3h",
  98.   "ymm4h""ymm5h",   "ymm6h""ymm7h",
  99. };

  100. static const char *i386_mpx_names[] =
  101. {
  102.   "bnd0raw", "bnd1raw", "bnd2raw", "bnd3raw", "bndcfgu", "bndstatus"
  103. };

  104. /* Register names for MPX pseudo-registers.  */

  105. static const char *i386_bnd_names[] =
  106. {
  107.   "bnd0", "bnd1", "bnd2", "bnd3"
  108. };

  109. /* Register names for MMX pseudo-registers.  */

  110. static const char *i386_mmx_names[] =
  111. {
  112.   "mm0", "mm1", "mm2", "mm3",
  113.   "mm4", "mm5", "mm6", "mm7"
  114. };

  115. /* Register names for byte pseudo-registers.  */

  116. static const char *i386_byte_names[] =
  117. {
  118.   "al", "cl", "dl", "bl",
  119.   "ah", "ch", "dh", "bh"
  120. };

  121. /* Register names for word pseudo-registers.  */

  122. static const char *i386_word_names[] =
  123. {
  124.   "ax", "cx", "dx", "bx",
  125.   "", "bp", "si", "di"
  126. };

  127. /* Constant used for reading/writing pseudo registers.  In 64-bit mode, we have
  128.    16 lower ZMM regs that extend corresponding xmm/ymm registers.  In addition,
  129.    we have 16 upper ZMM regs that have to be handled differently.  */

  130. const int num_lower_zmm_regs = 16;

  131. /* MMX register?  */

  132. static int
  133. i386_mmx_regnum_p (struct gdbarch *gdbarch, int regnum)
  134. {
  135.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  136.   int mm0_regnum = tdep->mm0_regnum;

  137.   if (mm0_regnum < 0)
  138.     return 0;

  139.   regnum -= mm0_regnum;
  140.   return regnum >= 0 && regnum < tdep->num_mmx_regs;
  141. }

  142. /* Byte register?  */

  143. int
  144. i386_byte_regnum_p (struct gdbarch *gdbarch, int regnum)
  145. {
  146.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  147.   regnum -= tdep->al_regnum;
  148.   return regnum >= 0 && regnum < tdep->num_byte_regs;
  149. }

  150. /* Word register?  */

  151. int
  152. i386_word_regnum_p (struct gdbarch *gdbarch, int regnum)
  153. {
  154.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  155.   regnum -= tdep->ax_regnum;
  156.   return regnum >= 0 && regnum < tdep->num_word_regs;
  157. }

  158. /* Dword register?  */

  159. int
  160. i386_dword_regnum_p (struct gdbarch *gdbarch, int regnum)
  161. {
  162.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  163.   int eax_regnum = tdep->eax_regnum;

  164.   if (eax_regnum < 0)
  165.     return 0;

  166.   regnum -= eax_regnum;
  167.   return regnum >= 0 && regnum < tdep->num_dword_regs;
  168. }

  169. /* AVX512 register?  */

  170. int
  171. i386_zmmh_regnum_p (struct gdbarch *gdbarch, int regnum)
  172. {
  173.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  174.   int zmm0h_regnum = tdep->zmm0h_regnum;

  175.   if (zmm0h_regnum < 0)
  176.     return 0;

  177.   regnum -= zmm0h_regnum;
  178.   return regnum >= 0 && regnum < tdep->num_zmm_regs;
  179. }

  180. int
  181. i386_zmm_regnum_p (struct gdbarch *gdbarch, int regnum)
  182. {
  183.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  184.   int zmm0_regnum = tdep->zmm0_regnum;

  185.   if (zmm0_regnum < 0)
  186.     return 0;

  187.   regnum -= zmm0_regnum;
  188.   return regnum >= 0 && regnum < tdep->num_zmm_regs;
  189. }

  190. int
  191. i386_k_regnum_p (struct gdbarch *gdbarch, int regnum)
  192. {
  193.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  194.   int k0_regnum = tdep->k0_regnum;

  195.   if (k0_regnum < 0)
  196.     return 0;

  197.   regnum -= k0_regnum;
  198.   return regnum >= 0 && regnum < I387_NUM_K_REGS;
  199. }

  200. static int
  201. i386_ymmh_regnum_p (struct gdbarch *gdbarch, int regnum)
  202. {
  203.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  204.   int ymm0h_regnum = tdep->ymm0h_regnum;

  205.   if (ymm0h_regnum < 0)
  206.     return 0;

  207.   regnum -= ymm0h_regnum;
  208.   return regnum >= 0 && regnum < tdep->num_ymm_regs;
  209. }

  210. /* AVX register?  */

  211. int
  212. i386_ymm_regnum_p (struct gdbarch *gdbarch, int regnum)
  213. {
  214.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  215.   int ymm0_regnum = tdep->ymm0_regnum;

  216.   if (ymm0_regnum < 0)
  217.     return 0;

  218.   regnum -= ymm0_regnum;
  219.   return regnum >= 0 && regnum < tdep->num_ymm_regs;
  220. }

  221. static int
  222. i386_ymmh_avx512_regnum_p (struct gdbarch *gdbarch, int regnum)
  223. {
  224.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  225.   int ymm16h_regnum = tdep->ymm16h_regnum;

  226.   if (ymm16h_regnum < 0)
  227.     return 0;

  228.   regnum -= ymm16h_regnum;
  229.   return regnum >= 0 && regnum < tdep->num_ymm_avx512_regs;
  230. }

  231. int
  232. i386_ymm_avx512_regnum_p (struct gdbarch *gdbarch, int regnum)
  233. {
  234.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  235.   int ymm16_regnum = tdep->ymm16_regnum;

  236.   if (ymm16_regnum < 0)
  237.     return 0;

  238.   regnum -= ymm16_regnum;
  239.   return regnum >= 0 && regnum < tdep->num_ymm_avx512_regs;
  240. }

  241. /* BND register?  */

  242. int
  243. i386_bnd_regnum_p (struct gdbarch *gdbarch, int regnum)
  244. {
  245.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  246.   int bnd0_regnum = tdep->bnd0_regnum;

  247.   if (bnd0_regnum < 0)
  248.     return 0;

  249.   regnum -= bnd0_regnum;
  250.   return regnum >= 0 && regnum < I387_NUM_BND_REGS;
  251. }

  252. /* SSE register?  */

  253. int
  254. i386_xmm_regnum_p (struct gdbarch *gdbarch, int regnum)
  255. {
  256.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  257.   int num_xmm_regs = I387_NUM_XMM_REGS (tdep);

  258.   if (num_xmm_regs == 0)
  259.     return 0;

  260.   regnum -= I387_XMM0_REGNUM (tdep);
  261.   return regnum >= 0 && regnum < num_xmm_regs;
  262. }

  263. /* XMM_512 register?  */

  264. int
  265. i386_xmm_avx512_regnum_p (struct gdbarch *gdbarch, int regnum)
  266. {
  267.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  268.   int num_xmm_avx512_regs = I387_NUM_XMM_AVX512_REGS (tdep);

  269.   if (num_xmm_avx512_regs == 0)
  270.     return 0;

  271.   regnum -= I387_XMM16_REGNUM (tdep);
  272.   return regnum >= 0 && regnum < num_xmm_avx512_regs;
  273. }

  274. static int
  275. i386_mxcsr_regnum_p (struct gdbarch *gdbarch, int regnum)
  276. {
  277.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  278.   if (I387_NUM_XMM_REGS (tdep) == 0)
  279.     return 0;

  280.   return (regnum == I387_MXCSR_REGNUM (tdep));
  281. }

  282. /* FP register?  */

  283. int
  284. i386_fp_regnum_p (struct gdbarch *gdbarch, int regnum)
  285. {
  286.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  287.   if (I387_ST0_REGNUM (tdep) < 0)
  288.     return 0;

  289.   return (I387_ST0_REGNUM (tdep) <= regnum
  290.           && regnum < I387_FCTRL_REGNUM (tdep));
  291. }

  292. int
  293. i386_fpc_regnum_p (struct gdbarch *gdbarch, int regnum)
  294. {
  295.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  296.   if (I387_ST0_REGNUM (tdep) < 0)
  297.     return 0;

  298.   return (I387_FCTRL_REGNUM (tdep) <= regnum
  299.           && regnum < I387_XMM0_REGNUM (tdep));
  300. }

  301. /* BNDr (raw) register?  */

  302. static int
  303. i386_bndr_regnum_p (struct gdbarch *gdbarch, int regnum)
  304. {
  305.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  306.    if (I387_BND0R_REGNUM (tdep) < 0)
  307.      return 0;

  308.   regnum -= tdep->bnd0r_regnum;
  309.   return regnum >= 0 && regnum < I387_NUM_BND_REGS;
  310. }

  311. /* BND control register?  */

  312. static int
  313. i386_mpx_ctrl_regnum_p (struct gdbarch *gdbarch, int regnum)
  314. {
  315.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  316.    if (I387_BNDCFGU_REGNUM (tdep) < 0)
  317.      return 0;

  318.   regnum -= I387_BNDCFGU_REGNUM (tdep);
  319.   return regnum >= 0 && regnum < I387_NUM_MPX_CTRL_REGS;
  320. }

  321. /* Return the name of register REGNUM, or the empty string if it is
  322.    an anonymous register.  */

  323. static const char *
  324. i386_register_name (struct gdbarch *gdbarch, int regnum)
  325. {
  326.   /* Hide the upper YMM registers.  */
  327.   if (i386_ymmh_regnum_p (gdbarch, regnum))
  328.     return "";

  329.   /* Hide the upper YMM16-31 registers.  */
  330.   if (i386_ymmh_avx512_regnum_p (gdbarch, regnum))
  331.     return "";

  332.   /* Hide the upper ZMM registers.  */
  333.   if (i386_zmmh_regnum_p (gdbarch, regnum))
  334.     return "";

  335.   return tdesc_register_name (gdbarch, regnum);
  336. }

  337. /* Return the name of register REGNUM.  */

  338. const char *
  339. i386_pseudo_register_name (struct gdbarch *gdbarch, int regnum)
  340. {
  341.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  342.   if (i386_bnd_regnum_p (gdbarch, regnum))
  343.     return i386_bnd_names[regnum - tdep->bnd0_regnum];
  344.   if (i386_mmx_regnum_p (gdbarch, regnum))
  345.     return i386_mmx_names[regnum - I387_MM0_REGNUM (tdep)];
  346.   else if (i386_ymm_regnum_p (gdbarch, regnum))
  347.     return i386_ymm_names[regnum - tdep->ymm0_regnum];
  348.   else if (i386_zmm_regnum_p (gdbarch, regnum))
  349.     return i386_zmm_names[regnum - tdep->zmm0_regnum];
  350.   else if (i386_byte_regnum_p (gdbarch, regnum))
  351.     return i386_byte_names[regnum - tdep->al_regnum];
  352.   else if (i386_word_regnum_p (gdbarch, regnum))
  353.     return i386_word_names[regnum - tdep->ax_regnum];

  354.   internal_error (__FILE__, __LINE__, _("invalid regnum"));
  355. }

  356. /* Convert a dbx register number REG to the appropriate register
  357.    number used by GDB.  */

  358. static int
  359. i386_dbx_reg_to_regnum (struct gdbarch *gdbarch, int reg)
  360. {
  361.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  362.   /* This implements what GCC calls the "default" register map
  363.      (dbx_register_map[]).  */

  364.   if (reg >= 0 && reg <= 7)
  365.     {
  366.       /* General-purpose registers.  The debug info calls %ebp
  367.          register 4, and %esp register 5.  */
  368.       if (reg == 4)
  369.         return 5;
  370.       else if (reg == 5)
  371.         return 4;
  372.       else return reg;
  373.     }
  374.   else if (reg >= 12 && reg <= 19)
  375.     {
  376.       /* Floating-point registers.  */
  377.       return reg - 12 + I387_ST0_REGNUM (tdep);
  378.     }
  379.   else if (reg >= 21 && reg <= 28)
  380.     {
  381.       /* SSE registers.  */
  382.       int ymm0_regnum = tdep->ymm0_regnum;

  383.       if (ymm0_regnum >= 0
  384.           && i386_xmm_regnum_p (gdbarch, reg))
  385.         return reg - 21 + ymm0_regnum;
  386.       else
  387.         return reg - 21 + I387_XMM0_REGNUM (tdep);
  388.     }
  389.   else if (reg >= 29 && reg <= 36)
  390.     {
  391.       /* MMX registers.  */
  392.       return reg - 29 + I387_MM0_REGNUM (tdep);
  393.     }

  394.   /* This will hopefully provoke a warning.  */
  395.   return gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
  396. }

  397. /* Convert SVR4 register number REG to the appropriate register number
  398.    used by GDB.  */

  399. static int
  400. i386_svr4_reg_to_regnum (struct gdbarch *gdbarch, int reg)
  401. {
  402.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  403.   /* This implements the GCC register map that tries to be compatible
  404.      with the SVR4 C compiler for DWARF (svr4_dbx_register_map[]).  */

  405.   /* The SVR4 register numbering includes %eip and %eflags, and
  406.      numbers the floating point registers differently.  */
  407.   if (reg >= 0 && reg <= 9)
  408.     {
  409.       /* General-purpose registers.  */
  410.       return reg;
  411.     }
  412.   else if (reg >= 11 && reg <= 18)
  413.     {
  414.       /* Floating-point registers.  */
  415.       return reg - 11 + I387_ST0_REGNUM (tdep);
  416.     }
  417.   else if (reg >= 21 && reg <= 36)
  418.     {
  419.       /* The SSE and MMX registers have the same numbers as with dbx.  */
  420.       return i386_dbx_reg_to_regnum (gdbarch, reg);
  421.     }

  422.   switch (reg)
  423.     {
  424.     case 37: return I387_FCTRL_REGNUM (tdep);
  425.     case 38: return I387_FSTAT_REGNUM (tdep);
  426.     case 39: return I387_MXCSR_REGNUM (tdep);
  427.     case 40: return I386_ES_REGNUM;
  428.     case 41: return I386_CS_REGNUM;
  429.     case 42: return I386_SS_REGNUM;
  430.     case 43: return I386_DS_REGNUM;
  431.     case 44: return I386_FS_REGNUM;
  432.     case 45: return I386_GS_REGNUM;
  433.     }

  434.   /* This will hopefully provoke a warning.  */
  435.   return gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
  436. }



  437. /* This is the variable that is set with "set disassembly-flavor", and
  438.    its legitimate values.  */
  439. static const char att_flavor[] = "att";
  440. static const char intel_flavor[] = "intel";
  441. static const char *const valid_flavors[] =
  442. {
  443.   att_flavor,
  444.   intel_flavor,
  445.   NULL
  446. };
  447. static const char *disassembly_flavor = att_flavor;


  448. /* Use the program counter to determine the contents and size of a
  449.    breakpoint instruction.  Return a pointer to a string of bytes that
  450.    encode a breakpoint instruction, store the length of the string in
  451.    *LEN and optionally adjust *PC to point to the correct memory
  452.    location for inserting the breakpoint.

  453.    On the i386 we have a single breakpoint that fits in a single byte
  454.    and can be inserted anywhere.

  455.    This function is 64-bit safe.  */

  456. static const gdb_byte *
  457. i386_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pc, int *len)
  458. {
  459.   static gdb_byte break_insn[] = { 0xcc }; /* int 3 */

  460.   *len = sizeof (break_insn);
  461.   return break_insn;
  462. }

  463. /* Displaced instruction handling.  */

  464. /* Skip the legacy instruction prefixes in INSN.
  465.    Not all prefixes are valid for any particular insn
  466.    but we needn't care, the insn will fault if it's invalid.
  467.    The result is a pointer to the first opcode byte,
  468.    or NULL if we run off the end of the buffer.  */

  469. static gdb_byte *
  470. i386_skip_prefixes (gdb_byte *insn, size_t max_len)
  471. {
  472.   gdb_byte *end = insn + max_len;

  473.   while (insn < end)
  474.     {
  475.       switch (*insn)
  476.         {
  477.         case DATA_PREFIX_OPCODE:
  478.         case ADDR_PREFIX_OPCODE:
  479.         case CS_PREFIX_OPCODE:
  480.         case DS_PREFIX_OPCODE:
  481.         case ES_PREFIX_OPCODE:
  482.         case FS_PREFIX_OPCODE:
  483.         case GS_PREFIX_OPCODE:
  484.         case SS_PREFIX_OPCODE:
  485.         case LOCK_PREFIX_OPCODE:
  486.         case REPE_PREFIX_OPCODE:
  487.         case REPNE_PREFIX_OPCODE:
  488.           ++insn;
  489.           continue;
  490.         default:
  491.           return insn;
  492.         }
  493.     }

  494.   return NULL;
  495. }

  496. static int
  497. i386_absolute_jmp_p (const gdb_byte *insn)
  498. {
  499.   /* jmp far (absolute address in operand).  */
  500.   if (insn[0] == 0xea)
  501.     return 1;

  502.   if (insn[0] == 0xff)
  503.     {
  504.       /* jump near, absolute indirect (/4).  */
  505.       if ((insn[1] & 0x38) == 0x20)
  506.         return 1;

  507.       /* jump far, absolute indirect (/5).  */
  508.       if ((insn[1] & 0x38) == 0x28)
  509.         return 1;
  510.     }

  511.   return 0;
  512. }

  513. /* Return non-zero if INSN is a jump, zero otherwise.  */

  514. static int
  515. i386_jmp_p (const gdb_byte *insn)
  516. {
  517.   /* jump short, relative.  */
  518.   if (insn[0] == 0xeb)
  519.     return 1;

  520.   /* jump near, relative.  */
  521.   if (insn[0] == 0xe9)
  522.     return 1;

  523.   return i386_absolute_jmp_p (insn);
  524. }

  525. static int
  526. i386_absolute_call_p (const gdb_byte *insn)
  527. {
  528.   /* call far, absolute.  */
  529.   if (insn[0] == 0x9a)
  530.     return 1;

  531.   if (insn[0] == 0xff)
  532.     {
  533.       /* Call near, absolute indirect (/2).  */
  534.       if ((insn[1] & 0x38) == 0x10)
  535.         return 1;

  536.       /* Call far, absolute indirect (/3).  */
  537.       if ((insn[1] & 0x38) == 0x18)
  538.         return 1;
  539.     }

  540.   return 0;
  541. }

  542. static int
  543. i386_ret_p (const gdb_byte *insn)
  544. {
  545.   switch (insn[0])
  546.     {
  547.     case 0xc2: /* ret near, pop N bytes.  */
  548.     case 0xc3: /* ret near */
  549.     case 0xca: /* ret far, pop N bytes.  */
  550.     case 0xcb: /* ret far */
  551.     case 0xcf: /* iret */
  552.       return 1;

  553.     default:
  554.       return 0;
  555.     }
  556. }

  557. static int
  558. i386_call_p (const gdb_byte *insn)
  559. {
  560.   if (i386_absolute_call_p (insn))
  561.     return 1;

  562.   /* call near, relative.  */
  563.   if (insn[0] == 0xe8)
  564.     return 1;

  565.   return 0;
  566. }

  567. /* Return non-zero if INSN is a system call, and set *LENGTHP to its
  568.    length in bytes.  Otherwise, return zero.  */

  569. static int
  570. i386_syscall_p (const gdb_byte *insn, int *lengthp)
  571. {
  572.   /* Is it 'int $0x80'?  */
  573.   if ((insn[0] == 0xcd && insn[1] == 0x80)
  574.       /* Or is it 'sysenter'?  */
  575.       || (insn[0] == 0x0f && insn[1] == 0x34)
  576.       /* Or is it 'syscall'?  */
  577.       || (insn[0] == 0x0f && insn[1] == 0x05))
  578.     {
  579.       *lengthp = 2;
  580.       return 1;
  581.     }

  582.   return 0;
  583. }

  584. /* The gdbarch insn_is_call method.  */

  585. static int
  586. i386_insn_is_call (struct gdbarch *gdbarch, CORE_ADDR addr)
  587. {
  588.   gdb_byte buf[I386_MAX_INSN_LEN], *insn;

  589.   read_code (addr, buf, I386_MAX_INSN_LEN);
  590.   insn = i386_skip_prefixes (buf, I386_MAX_INSN_LEN);

  591.   return i386_call_p (insn);
  592. }

  593. /* The gdbarch insn_is_ret method.  */

  594. static int
  595. i386_insn_is_ret (struct gdbarch *gdbarch, CORE_ADDR addr)
  596. {
  597.   gdb_byte buf[I386_MAX_INSN_LEN], *insn;

  598.   read_code (addr, buf, I386_MAX_INSN_LEN);
  599.   insn = i386_skip_prefixes (buf, I386_MAX_INSN_LEN);

  600.   return i386_ret_p (insn);
  601. }

  602. /* The gdbarch insn_is_jump method.  */

  603. static int
  604. i386_insn_is_jump (struct gdbarch *gdbarch, CORE_ADDR addr)
  605. {
  606.   gdb_byte buf[I386_MAX_INSN_LEN], *insn;

  607.   read_code (addr, buf, I386_MAX_INSN_LEN);
  608.   insn = i386_skip_prefixes (buf, I386_MAX_INSN_LEN);

  609.   return i386_jmp_p (insn);
  610. }

  611. /* Some kernels may run one past a syscall insn, so we have to cope.
  612.    Otherwise this is just simple_displaced_step_copy_insn.  */

  613. struct displaced_step_closure *
  614. i386_displaced_step_copy_insn (struct gdbarch *gdbarch,
  615.                                CORE_ADDR from, CORE_ADDR to,
  616.                                struct regcache *regs)
  617. {
  618.   size_t len = gdbarch_max_insn_length (gdbarch);
  619.   gdb_byte *buf = xmalloc (len);

  620.   read_memory (from, buf, len);

  621.   /* GDB may get control back after the insn after the syscall.
  622.      Presumably this is a kernel bug.
  623.      If this is a syscall, make sure there's a nop afterwards.  */
  624.   {
  625.     int syscall_length;
  626.     gdb_byte *insn;

  627.     insn = i386_skip_prefixes (buf, len);
  628.     if (insn != NULL && i386_syscall_p (insn, &syscall_length))
  629.       insn[syscall_length] = NOP_OPCODE;
  630.   }

  631.   write_memory (to, buf, len);

  632.   if (debug_displaced)
  633.     {
  634.       fprintf_unfiltered (gdb_stdlog, "displaced: copy %s->%s: ",
  635.                           paddress (gdbarch, from), paddress (gdbarch, to));
  636.       displaced_step_dump_bytes (gdb_stdlog, buf, len);
  637.     }

  638.   return (struct displaced_step_closure *) buf;
  639. }

  640. /* Fix up the state of registers and memory after having single-stepped
  641.    a displaced instruction.  */

  642. void
  643. i386_displaced_step_fixup (struct gdbarch *gdbarch,
  644.                            struct displaced_step_closure *closure,
  645.                            CORE_ADDR from, CORE_ADDR to,
  646.                            struct regcache *regs)
  647. {
  648.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);

  649.   /* The offset we applied to the instruction's address.
  650.      This could well be negative (when viewed as a signed 32-bit
  651.      value), but ULONGEST won't reflect that, so take care when
  652.      applying it.  */
  653.   ULONGEST insn_offset = to - from;

  654.   /* Since we use simple_displaced_step_copy_insn, our closure is a
  655.      copy of the instruction.  */
  656.   gdb_byte *insn = (gdb_byte *) closure;
  657.   /* The start of the insn, needed in case we see some prefixes.  */
  658.   gdb_byte *insn_start = insn;

  659.   if (debug_displaced)
  660.     fprintf_unfiltered (gdb_stdlog,
  661.                         "displaced: fixup (%s, %s), "
  662.                         "insn = 0x%02x 0x%02x ...\n",
  663.                         paddress (gdbarch, from), paddress (gdbarch, to),
  664.                         insn[0], insn[1]);

  665.   /* The list of issues to contend with here is taken from
  666.      resume_execution in arch/i386/kernel/kprobes.c, Linux 2.6.20.
  667.      Yay for Free Software!  */

  668.   /* Relocate the %eip, if necessary.  */

  669.   /* The instruction recognizers we use assume any leading prefixes
  670.      have been skipped.  */
  671.   {
  672.     /* This is the size of the buffer in closure.  */
  673.     size_t max_insn_len = gdbarch_max_insn_length (gdbarch);
  674.     gdb_byte *opcode = i386_skip_prefixes (insn, max_insn_len);
  675.     /* If there are too many prefixes, just ignore the insn.
  676.        It will fault when run.  */
  677.     if (opcode != NULL)
  678.       insn = opcode;
  679.   }

  680.   /* Except in the case of absolute or indirect jump or call
  681.      instructions, or a return instruction, the new eip is relative to
  682.      the displaced instruction; make it relative.  Well, signal
  683.      handler returns don't need relocation either, but we use the
  684.      value of %eip to recognize those; see below.  */
  685.   if (! i386_absolute_jmp_p (insn)
  686.       && ! i386_absolute_call_p (insn)
  687.       && ! i386_ret_p (insn))
  688.     {
  689.       ULONGEST orig_eip;
  690.       int insn_len;

  691.       regcache_cooked_read_unsigned (regs, I386_EIP_REGNUM, &orig_eip);

  692.       /* A signal trampoline system call changes the %eip, resuming
  693.          execution of the main program after the signal handler has
  694.          returned.  That makes them like 'return' instructions; we
  695.          shouldn't relocate %eip.

  696.          But most system calls don't, and we do need to relocate %eip.

  697.          Our heuristic for distinguishing these cases: if stepping
  698.          over the system call instruction left control directly after
  699.          the instruction, the we relocate --- control almost certainly
  700.          doesn't belong in the displaced copy.  Otherwise, we assume
  701.          the instruction has put control where it belongs, and leave
  702.          it unrelocated.  Goodness help us if there are PC-relative
  703.          system calls.  */
  704.       if (i386_syscall_p (insn, &insn_len)
  705.           && orig_eip != to + (insn - insn_start) + insn_len
  706.           /* GDB can get control back after the insn after the syscall.
  707.              Presumably this is a kernel bug.
  708.              i386_displaced_step_copy_insn ensures its a nop,
  709.              we add one to the length for it.  */
  710.           && orig_eip != to + (insn - insn_start) + insn_len + 1)
  711.         {
  712.           if (debug_displaced)
  713.             fprintf_unfiltered (gdb_stdlog,
  714.                                 "displaced: syscall changed %%eip; "
  715.                                 "not relocating\n");
  716.         }
  717.       else
  718.         {
  719.           ULONGEST eip = (orig_eip - insn_offset) & 0xffffffffUL;

  720.           /* If we just stepped over a breakpoint insn, we don't backup
  721.              the pc on purpose; this is to match behaviour without
  722.              stepping.  */

  723.           regcache_cooked_write_unsigned (regs, I386_EIP_REGNUM, eip);

  724.           if (debug_displaced)
  725.             fprintf_unfiltered (gdb_stdlog,
  726.                                 "displaced: "
  727.                                 "relocated %%eip from %s to %s\n",
  728.                                 paddress (gdbarch, orig_eip),
  729.                                 paddress (gdbarch, eip));
  730.         }
  731.     }

  732.   /* If the instruction was PUSHFL, then the TF bit will be set in the
  733.      pushed value, and should be cleared.  We'll leave this for later,
  734.      since GDB already messes up the TF flag when stepping over a
  735.      pushfl.  */

  736.   /* If the instruction was a call, the return address now atop the
  737.      stack is the address following the copied instruction.  We need
  738.      to make it the address following the original instruction.  */
  739.   if (i386_call_p (insn))
  740.     {
  741.       ULONGEST esp;
  742.       ULONGEST retaddr;
  743.       const ULONGEST retaddr_len = 4;

  744.       regcache_cooked_read_unsigned (regs, I386_ESP_REGNUM, &esp);
  745.       retaddr = read_memory_unsigned_integer (esp, retaddr_len, byte_order);
  746.       retaddr = (retaddr - insn_offset) & 0xffffffffUL;
  747.       write_memory_unsigned_integer (esp, retaddr_len, byte_order, retaddr);

  748.       if (debug_displaced)
  749.         fprintf_unfiltered (gdb_stdlog,
  750.                             "displaced: relocated return addr at %s to %s\n",
  751.                             paddress (gdbarch, esp),
  752.                             paddress (gdbarch, retaddr));
  753.     }
  754. }

  755. static void
  756. append_insns (CORE_ADDR *to, ULONGEST len, const gdb_byte *buf)
  757. {
  758.   target_write_memory (*to, buf, len);
  759.   *to += len;
  760. }

  761. static void
  762. i386_relocate_instruction (struct gdbarch *gdbarch,
  763.                            CORE_ADDR *to, CORE_ADDR oldloc)
  764. {
  765.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  766.   gdb_byte buf[I386_MAX_INSN_LEN];
  767.   int offset = 0, rel32, newrel;
  768.   int insn_length;
  769.   gdb_byte *insn = buf;

  770.   read_memory (oldloc, buf, I386_MAX_INSN_LEN);

  771.   insn_length = gdb_buffered_insn_length (gdbarch, insn,
  772.                                           I386_MAX_INSN_LEN, oldloc);

  773.   /* Get past the prefixes.  */
  774.   insn = i386_skip_prefixes (insn, I386_MAX_INSN_LEN);

  775.   /* Adjust calls with 32-bit relative addresses as push/jump, with
  776.      the address pushed being the location where the original call in
  777.      the user program would return to.  */
  778.   if (insn[0] == 0xe8)
  779.     {
  780.       gdb_byte push_buf[16];
  781.       unsigned int ret_addr;

  782.       /* Where "ret" in the original code will return to.  */
  783.       ret_addr = oldloc + insn_length;
  784.       push_buf[0] = 0x68; /* pushq $...  */
  785.       store_unsigned_integer (&push_buf[1], 4, byte_order, ret_addr);
  786.       /* Push the push.  */
  787.       append_insns (to, 5, push_buf);

  788.       /* Convert the relative call to a relative jump.  */
  789.       insn[0] = 0xe9;

  790.       /* Adjust the destination offset.  */
  791.       rel32 = extract_signed_integer (insn + 1, 4, byte_order);
  792.       newrel = (oldloc - *to) + rel32;
  793.       store_signed_integer (insn + 1, 4, byte_order, newrel);

  794.       if (debug_displaced)
  795.         fprintf_unfiltered (gdb_stdlog,
  796.                             "Adjusted insn rel32=%s at %s to"
  797.                             " rel32=%s at %s\n",
  798.                             hex_string (rel32), paddress (gdbarch, oldloc),
  799.                             hex_string (newrel), paddress (gdbarch, *to));

  800.       /* Write the adjusted jump into its displaced location.  */
  801.       append_insns (to, 5, insn);
  802.       return;
  803.     }

  804.   /* Adjust jumps with 32-bit relative addresses.  Calls are already
  805.      handled above.  */
  806.   if (insn[0] == 0xe9)
  807.     offset = 1;
  808.   /* Adjust conditional jumps.  */
  809.   else if (insn[0] == 0x0f && (insn[1] & 0xf0) == 0x80)
  810.     offset = 2;

  811.   if (offset)
  812.     {
  813.       rel32 = extract_signed_integer (insn + offset, 4, byte_order);
  814.       newrel = (oldloc - *to) + rel32;
  815.       store_signed_integer (insn + offset, 4, byte_order, newrel);
  816.       if (debug_displaced)
  817.         fprintf_unfiltered (gdb_stdlog,
  818.                             "Adjusted insn rel32=%s at %s to"
  819.                             " rel32=%s at %s\n",
  820.                             hex_string (rel32), paddress (gdbarch, oldloc),
  821.                             hex_string (newrel), paddress (gdbarch, *to));
  822.     }

  823.   /* Write the adjusted instructions into their displaced
  824.      location.  */
  825.   append_insns (to, insn_length, buf);
  826. }


  827. #ifdef I386_REGNO_TO_SYMMETRY
  828. #error "The Sequent Symmetry is no longer supported."
  829. #endif

  830. /* According to the System V ABI, the registers %ebp, %ebx, %edi, %esi
  831.    and %esp "belong" to the calling function.  Therefore these
  832.    registers should be saved if they're going to be modified.  */

  833. /* The maximum number of saved registers.  This should include all
  834.    registers mentioned above, and %eip.  */
  835. #define I386_NUM_SAVED_REGS        I386_NUM_GREGS

  836. struct i386_frame_cache
  837. {
  838.   /* Base address.  */
  839.   CORE_ADDR base;
  840.   int base_p;
  841.   LONGEST sp_offset;
  842.   CORE_ADDR pc;

  843.   /* Saved registers.  */
  844.   CORE_ADDR saved_regs[I386_NUM_SAVED_REGS];
  845.   CORE_ADDR saved_sp;
  846.   int saved_sp_reg;
  847.   int pc_in_eax;

  848.   /* Stack space reserved for local variables.  */
  849.   long locals;
  850. };

  851. /* Allocate and initialize a frame cache.  */

  852. static struct i386_frame_cache *
  853. i386_alloc_frame_cache (void)
  854. {
  855.   struct i386_frame_cache *cache;
  856.   int i;

  857.   cache = FRAME_OBSTACK_ZALLOC (struct i386_frame_cache);

  858.   /* Base address.  */
  859.   cache->base_p = 0;
  860.   cache->base = 0;
  861.   cache->sp_offset = -4;
  862.   cache->pc = 0;

  863.   /* Saved registers.  We initialize these to -1 since zero is a valid
  864.      offset (that's where %ebp is supposed to be stored).  */
  865.   for (i = 0; i < I386_NUM_SAVED_REGS; i++)
  866.     cache->saved_regs[i] = -1;
  867.   cache->saved_sp = 0;
  868.   cache->saved_sp_reg = -1;
  869.   cache->pc_in_eax = 0;

  870.   /* Frameless until proven otherwise.  */
  871.   cache->locals = -1;

  872.   return cache;
  873. }

  874. /* If the instruction at PC is a jump, return the address of its
  875.    target.  Otherwise, return PC.  */

  876. static CORE_ADDR
  877. i386_follow_jump (struct gdbarch *gdbarch, CORE_ADDR pc)
  878. {
  879.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  880.   gdb_byte op;
  881.   long delta = 0;
  882.   int data16 = 0;

  883.   if (target_read_code (pc, &op, 1))
  884.     return pc;

  885.   if (op == 0x66)
  886.     {
  887.       data16 = 1;

  888.       op = read_code_unsigned_integer (pc + 1, 1, byte_order);
  889.     }

  890.   switch (op)
  891.     {
  892.     case 0xe9:
  893.       /* Relative jump: if data16 == 0, disp32, else disp16.  */
  894.       if (data16)
  895.         {
  896.           delta = read_memory_integer (pc + 2, 2, byte_order);

  897.           /* Include the size of the jmp instruction (including the
  898.              0x66 prefix).  */
  899.           delta += 4;
  900.         }
  901.       else
  902.         {
  903.           delta = read_memory_integer (pc + 1, 4, byte_order);

  904.           /* Include the size of the jmp instruction.  */
  905.           delta += 5;
  906.         }
  907.       break;
  908.     case 0xeb:
  909.       /* Relative jump, disp8 (ignore data16).  */
  910.       delta = read_memory_integer (pc + data16 + 1, 1, byte_order);

  911.       delta += data16 + 2;
  912.       break;
  913.     }

  914.   return pc + delta;
  915. }

  916. /* Check whether PC points at a prologue for a function returning a
  917.    structure or union.  If so, it updates CACHE and returns the
  918.    address of the first instruction after the code sequence that
  919.    removes the "hidden" argument from the stack or CURRENT_PC,
  920.    whichever is smaller.  Otherwise, return PC.  */

  921. static CORE_ADDR
  922. i386_analyze_struct_return (CORE_ADDR pc, CORE_ADDR current_pc,
  923.                             struct i386_frame_cache *cache)
  924. {
  925.   /* Functions that return a structure or union start with:

  926.         popl %eax             0x58
  927.         xchgl %eax, (%esp)    0x87 0x04 0x24
  928.      or xchgl %eax, 0(%esp)   0x87 0x44 0x24 0x00

  929.      (the System V compiler puts out the second `xchg' instruction,
  930.      and the assembler doesn't try to optimize it, so the 'sib' form
  931.      gets generated).  This sequence is used to get the address of the
  932.      return buffer for a function that returns a structure.  */
  933.   static gdb_byte proto1[3] = { 0x87, 0x04, 0x24 };
  934.   static gdb_byte proto2[4] = { 0x87, 0x44, 0x24, 0x00 };
  935.   gdb_byte buf[4];
  936.   gdb_byte op;

  937.   if (current_pc <= pc)
  938.     return pc;

  939.   if (target_read_code (pc, &op, 1))
  940.     return pc;

  941.   if (op != 0x58)                /* popl %eax */
  942.     return pc;

  943.   if (target_read_code (pc + 1, buf, 4))
  944.     return pc;

  945.   if (memcmp (buf, proto1, 3) != 0 && memcmp (buf, proto2, 4) != 0)
  946.     return pc;

  947.   if (current_pc == pc)
  948.     {
  949.       cache->sp_offset += 4;
  950.       return current_pc;
  951.     }

  952.   if (current_pc == pc + 1)
  953.     {
  954.       cache->pc_in_eax = 1;
  955.       return current_pc;
  956.     }

  957.   if (buf[1] == proto1[1])
  958.     return pc + 4;
  959.   else
  960.     return pc + 5;
  961. }

  962. static CORE_ADDR
  963. i386_skip_probe (CORE_ADDR pc)
  964. {
  965.   /* A function may start with

  966.         pushl constant
  967.         call _probe
  968.         addl $4, %esp

  969.      followed by

  970.         pushl %ebp

  971.      etc.  */
  972.   gdb_byte buf[8];
  973.   gdb_byte op;

  974.   if (target_read_code (pc, &op, 1))
  975.     return pc;

  976.   if (op == 0x68 || op == 0x6a)
  977.     {
  978.       int delta;

  979.       /* Skip past the `pushl' instruction; it has either a one-byte or a
  980.          four-byte operand, depending on the opcode.  */
  981.       if (op == 0x68)
  982.         delta = 5;
  983.       else
  984.         delta = 2;

  985.       /* Read the following 8 bytes, which should be `call _probe' (6
  986.          bytes) followed by `addl $4,%esp' (2 bytes).  */
  987.       read_memory (pc + delta, buf, sizeof (buf));
  988.       if (buf[0] == 0xe8 && buf[6] == 0xc4 && buf[7] == 0x4)
  989.         pc += delta + sizeof (buf);
  990.     }

  991.   return pc;
  992. }

  993. /* GCC 4.1 and later, can put code in the prologue to realign the
  994.    stack pointer.  Check whether PC points to such code, and update
  995.    CACHE accordingly.  Return the first instruction after the code
  996.    sequence or CURRENT_PC, whichever is smaller.  If we don't
  997.    recognize the code, return PC.  */

  998. static CORE_ADDR
  999. i386_analyze_stack_align (CORE_ADDR pc, CORE_ADDR current_pc,
  1000.                           struct i386_frame_cache *cache)
  1001. {
  1002.   /* There are 2 code sequences to re-align stack before the frame
  1003.      gets set up:

  1004.         1. Use a caller-saved saved register:

  1005.                 leal  4(%esp), %reg
  1006.                 andl  $-XXX, %esp
  1007.                 pushl -4(%reg)

  1008.         2. Use a callee-saved saved register:

  1009.                 pushl %reg
  1010.                 leal  8(%esp), %reg
  1011.                 andl  $-XXX, %esp
  1012.                 pushl -4(%reg)

  1013.      "andl $-XXX, %esp" can be either 3 bytes or 6 bytes:

  1014.              0x83 0xe4 0xf0                        andl $-16, %esp
  1015.              0x81 0xe4 0x00 0xff 0xff 0xff        andl $-256, %esp
  1016.    */

  1017.   gdb_byte buf[14];
  1018.   int reg;
  1019.   int offset, offset_and;
  1020.   static int regnums[8] = {
  1021.     I386_EAX_REGNUM,                /* %eax */
  1022.     I386_ECX_REGNUM,                /* %ecx */
  1023.     I386_EDX_REGNUM,                /* %edx */
  1024.     I386_EBX_REGNUM,                /* %ebx */
  1025.     I386_ESP_REGNUM,                /* %esp */
  1026.     I386_EBP_REGNUM,                /* %ebp */
  1027.     I386_ESI_REGNUM,                /* %esi */
  1028.     I386_EDI_REGNUM                /* %edi */
  1029.   };

  1030.   if (target_read_code (pc, buf, sizeof buf))
  1031.     return pc;

  1032.   /* Check caller-saved saved register.  The first instruction has
  1033.      to be "leal 4(%esp), %reg".  */
  1034.   if (buf[0] == 0x8d && buf[2] == 0x24 && buf[3] == 0x4)
  1035.     {
  1036.       /* MOD must be binary 10 and R/M must be binary 100.  */
  1037.       if ((buf[1] & 0xc7) != 0x44)
  1038.         return pc;

  1039.       /* REG has register number.  */
  1040.       reg = (buf[1] >> 3) & 7;
  1041.       offset = 4;
  1042.     }
  1043.   else
  1044.     {
  1045.       /* Check callee-saved saved register.  The first instruction
  1046.          has to be "pushl %reg".  */
  1047.       if ((buf[0] & 0xf8) != 0x50)
  1048.         return pc;

  1049.       /* Get register.  */
  1050.       reg = buf[0] & 0x7;

  1051.       /* The next instruction has to be "leal 8(%esp), %reg".  */
  1052.       if (buf[1] != 0x8d || buf[3] != 0x24 || buf[4] != 0x8)
  1053.         return pc;

  1054.       /* MOD must be binary 10 and R/M must be binary 100.  */
  1055.       if ((buf[2] & 0xc7) != 0x44)
  1056.         return pc;

  1057.       /* REG has register number.  Registers in pushl and leal have to
  1058.          be the same.  */
  1059.       if (reg != ((buf[2] >> 3) & 7))
  1060.         return pc;

  1061.       offset = 5;
  1062.     }

  1063.   /* Rigister can't be %esp nor %ebp.  */
  1064.   if (reg == 4 || reg == 5)
  1065.     return pc;

  1066.   /* The next instruction has to be "andl $-XXX, %esp".  */
  1067.   if (buf[offset + 1] != 0xe4
  1068.       || (buf[offset] != 0x81 && buf[offset] != 0x83))
  1069.     return pc;

  1070.   offset_and = offset;
  1071.   offset += buf[offset] == 0x81 ? 6 : 3;

  1072.   /* The next instruction has to be "pushl -4(%reg)".  8bit -4 is
  1073.      0xfc.  REG must be binary 110 and MOD must be binary 01.  */
  1074.   if (buf[offset] != 0xff
  1075.       || buf[offset + 2] != 0xfc
  1076.       || (buf[offset + 1] & 0xf8) != 0x70)
  1077.     return pc;

  1078.   /* R/M has register.  Registers in leal and pushl have to be the
  1079.      same.  */
  1080.   if (reg != (buf[offset + 1] & 7))
  1081.     return pc;

  1082.   if (current_pc > pc + offset_and)
  1083.     cache->saved_sp_reg = regnums[reg];

  1084.   return min (pc + offset + 3, current_pc);
  1085. }

  1086. /* Maximum instruction length we need to handle.  */
  1087. #define I386_MAX_MATCHED_INSN_LEN        6

  1088. /* Instruction description.  */
  1089. struct i386_insn
  1090. {
  1091.   size_t len;
  1092.   gdb_byte insn[I386_MAX_MATCHED_INSN_LEN];
  1093.   gdb_byte mask[I386_MAX_MATCHED_INSN_LEN];
  1094. };

  1095. /* Return whether instruction at PC matches PATTERN.  */

  1096. static int
  1097. i386_match_pattern (CORE_ADDR pc, struct i386_insn pattern)
  1098. {
  1099.   gdb_byte op;

  1100.   if (target_read_code (pc, &op, 1))
  1101.     return 0;

  1102.   if ((op & pattern.mask[0]) == pattern.insn[0])
  1103.     {
  1104.       gdb_byte buf[I386_MAX_MATCHED_INSN_LEN - 1];
  1105.       int insn_matched = 1;
  1106.       size_t i;

  1107.       gdb_assert (pattern.len > 1);
  1108.       gdb_assert (pattern.len <= I386_MAX_MATCHED_INSN_LEN);

  1109.       if (target_read_code (pc + 1, buf, pattern.len - 1))
  1110.         return 0;

  1111.       for (i = 1; i < pattern.len; i++)
  1112.         {
  1113.           if ((buf[i - 1] & pattern.mask[i]) != pattern.insn[i])
  1114.             insn_matched = 0;
  1115.         }
  1116.       return insn_matched;
  1117.     }
  1118.   return 0;
  1119. }

  1120. /* Search for the instruction at PC in the list INSN_PATTERNS.  Return
  1121.    the first instruction description that matches.  Otherwise, return
  1122.    NULL.  */

  1123. static struct i386_insn *
  1124. i386_match_insn (CORE_ADDR pc, struct i386_insn *insn_patterns)
  1125. {
  1126.   struct i386_insn *pattern;

  1127.   for (pattern = insn_patterns; pattern->len > 0; pattern++)
  1128.     {
  1129.       if (i386_match_pattern (pc, *pattern))
  1130.         return pattern;
  1131.     }

  1132.   return NULL;
  1133. }

  1134. /* Return whether PC points inside a sequence of instructions that
  1135.    matches INSN_PATTERNS.  */

  1136. static int
  1137. i386_match_insn_block (CORE_ADDR pc, struct i386_insn *insn_patterns)
  1138. {
  1139.   CORE_ADDR current_pc;
  1140.   int ix, i;
  1141.   struct i386_insn *insn;

  1142.   insn = i386_match_insn (pc, insn_patterns);
  1143.   if (insn == NULL)
  1144.     return 0;

  1145.   current_pc = pc;
  1146.   ix = insn - insn_patterns;
  1147.   for (i = ix - 1; i >= 0; i--)
  1148.     {
  1149.       current_pc -= insn_patterns[i].len;

  1150.       if (!i386_match_pattern (current_pc, insn_patterns[i]))
  1151.         return 0;
  1152.     }

  1153.   current_pc = pc + insn->len;
  1154.   for (insn = insn_patterns + ix + 1; insn->len > 0; insn++)
  1155.     {
  1156.       if (!i386_match_pattern (current_pc, *insn))
  1157.         return 0;

  1158.       current_pc += insn->len;
  1159.     }

  1160.   return 1;
  1161. }

  1162. /* Some special instructions that might be migrated by GCC into the
  1163.    part of the prologue that sets up the new stack frame.  Because the
  1164.    stack frame hasn't been setup yet, no registers have been saved
  1165.    yet, and only the scratch registers %eax, %ecx and %edx can be
  1166.    touched.  */

  1167. struct i386_insn i386_frame_setup_skip_insns[] =
  1168. {
  1169.   /* Check for `movb imm8, r' and `movl imm32, r'.

  1170.      ??? Should we handle 16-bit operand-sizes here?  */

  1171.   /* `movb imm8, %al' and `movb imm8, %ah' */
  1172.   /* `movb imm8, %cl' and `movb imm8, %ch' */
  1173.   { 2, { 0xb0, 0x00 }, { 0xfa, 0x00 } },
  1174.   /* `movb imm8, %dl' and `movb imm8, %dh' */
  1175.   { 2, { 0xb2, 0x00 }, { 0xfb, 0x00 } },
  1176.   /* `movl imm32, %eax' and `movl imm32, %ecx' */
  1177.   { 5, { 0xb8 }, { 0xfe } },
  1178.   /* `movl imm32, %edx' */
  1179.   { 5, { 0xba }, { 0xff } },

  1180.   /* Check for `mov imm32, r32'.  Note that there is an alternative
  1181.      encoding for `mov m32, %eax'.

  1182.      ??? Should we handle SIB adressing here?
  1183.      ??? Should we handle 16-bit operand-sizes here?  */

  1184.   /* `movl m32, %eax' */
  1185.   { 5, { 0xa1 }, { 0xff } },
  1186.   /* `movl m32, %eax' and `mov; m32, %ecx' */
  1187.   { 6, { 0x89, 0x05 }, {0xff, 0xf7 } },
  1188.   /* `movl m32, %edx' */
  1189.   { 6, { 0x89, 0x15 }, {0xff, 0xff } },

  1190.   /* Check for `xorl r32, r32' and the equivalent `subl r32, r32'.
  1191.      Because of the symmetry, there are actually two ways to encode
  1192.      these instructions; opcode bytes 0x29 and 0x2b for `subl' and
  1193.      opcode bytes 0x31 and 0x33 for `xorl'.  */

  1194.   /* `subl %eax, %eax' */
  1195.   { 2, { 0x29, 0xc0 }, { 0xfd, 0xff } },
  1196.   /* `subl %ecx, %ecx' */
  1197.   { 2, { 0x29, 0xc9 }, { 0xfd, 0xff } },
  1198.   /* `subl %edx, %edx' */
  1199.   { 2, { 0x29, 0xd2 }, { 0xfd, 0xff } },
  1200.   /* `xorl %eax, %eax' */
  1201.   { 2, { 0x31, 0xc0 }, { 0xfd, 0xff } },
  1202.   /* `xorl %ecx, %ecx' */
  1203.   { 2, { 0x31, 0xc9 }, { 0xfd, 0xff } },
  1204.   /* `xorl %edx, %edx' */
  1205.   { 2, { 0x31, 0xd2 }, { 0xfd, 0xff } },
  1206.   { 0 }
  1207. };


  1208. /* Check whether PC points to a no-op instruction.  */
  1209. static CORE_ADDR
  1210. i386_skip_noop (CORE_ADDR pc)
  1211. {
  1212.   gdb_byte op;
  1213.   int check = 1;

  1214.   if (target_read_code (pc, &op, 1))
  1215.     return pc;

  1216.   while (check)
  1217.     {
  1218.       check = 0;
  1219.       /* Ignore `nop' instruction.  */
  1220.       if (op == 0x90)
  1221.         {
  1222.           pc += 1;
  1223.           if (target_read_code (pc, &op, 1))
  1224.             return pc;
  1225.           check = 1;
  1226.         }
  1227.       /* Ignore no-op instruction `mov %edi, %edi'.
  1228.          Microsoft system dlls often start with
  1229.          a `mov %edi,%edi' instruction.
  1230.          The 5 bytes before the function start are
  1231.          filled with `nop' instructions.
  1232.          This pattern can be used for hot-patching:
  1233.          The `mov %edi, %edi' instruction can be replaced by a
  1234.          near jump to the location of the 5 `nop' instructions
  1235.          which can be replaced by a 32-bit jump to anywhere
  1236.          in the 32-bit address space.  */

  1237.       else if (op == 0x8b)
  1238.         {
  1239.           if (target_read_code (pc + 1, &op, 1))
  1240.             return pc;

  1241.           if (op == 0xff)
  1242.             {
  1243.               pc += 2;
  1244.               if (target_read_code (pc, &op, 1))
  1245.                 return pc;

  1246.               check = 1;
  1247.             }
  1248.         }
  1249.     }
  1250.   return pc;
  1251. }

  1252. /* Check whether PC points at a code that sets up a new stack frame.
  1253.    If so, it updates CACHE and returns the address of the first
  1254.    instruction after the sequence that sets up the frame or LIMIT,
  1255.    whichever is smaller.  If we don't recognize the code, return PC.  */

  1256. static CORE_ADDR
  1257. i386_analyze_frame_setup (struct gdbarch *gdbarch,
  1258.                           CORE_ADDR pc, CORE_ADDR limit,
  1259.                           struct i386_frame_cache *cache)
  1260. {
  1261.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  1262.   struct i386_insn *insn;
  1263.   gdb_byte op;
  1264.   int skip = 0;

  1265.   if (limit <= pc)
  1266.     return limit;

  1267.   if (target_read_code (pc, &op, 1))
  1268.     return pc;

  1269.   if (op == 0x55)                /* pushl %ebp */
  1270.     {
  1271.       /* Take into account that we've executed the `pushl %ebp' that
  1272.          starts this instruction sequence.  */
  1273.       cache->saved_regs[I386_EBP_REGNUM] = 0;
  1274.       cache->sp_offset += 4;
  1275.       pc++;

  1276.       /* If that's all, return now.  */
  1277.       if (limit <= pc)
  1278.         return limit;

  1279.       /* Check for some special instructions that might be migrated by
  1280.          GCC into the prologue and skip them.  At this point in the
  1281.          prologue, code should only touch the scratch registers %eax,
  1282.          %ecx and %edx, so while the number of posibilities is sheer,
  1283.          it is limited.

  1284.          Make sure we only skip these instructions if we later see the
  1285.          `movl %esp, %ebp' that actually sets up the frame.  */
  1286.       while (pc + skip < limit)
  1287.         {
  1288.           insn = i386_match_insn (pc + skip, i386_frame_setup_skip_insns);
  1289.           if (insn == NULL)
  1290.             break;

  1291.           skip += insn->len;
  1292.         }

  1293.       /* If that's all, return now.  */
  1294.       if (limit <= pc + skip)
  1295.         return limit;

  1296.       if (target_read_code (pc + skip, &op, 1))
  1297.         return pc + skip;

  1298.       /* The i386 prologue looks like

  1299.          push   %ebp
  1300.          mov    %esp,%ebp
  1301.          sub    $0x10,%esp

  1302.          and a different prologue can be generated for atom.

  1303.          push   %ebp
  1304.          lea    (%esp),%ebp
  1305.          lea    -0x10(%esp),%esp

  1306.          We handle both of them here.  */

  1307.       switch (op)
  1308.         {
  1309.           /* Check for `movl %esp, %ebp' -- can be written in two ways.  */
  1310.         case 0x8b:
  1311.           if (read_code_unsigned_integer (pc + skip + 1, 1, byte_order)
  1312.               != 0xec)
  1313.             return pc;
  1314.           pc += (skip + 2);
  1315.           break;
  1316.         case 0x89:
  1317.           if (read_code_unsigned_integer (pc + skip + 1, 1, byte_order)
  1318.               != 0xe5)
  1319.             return pc;
  1320.           pc += (skip + 2);
  1321.           break;
  1322.         case 0x8d: /* Check for 'lea (%ebp), %ebp'.  */
  1323.           if (read_code_unsigned_integer (pc + skip + 1, 2, byte_order)
  1324.               != 0x242c)
  1325.             return pc;
  1326.           pc += (skip + 3);
  1327.           break;
  1328.         default:
  1329.           return pc;
  1330.         }

  1331.       /* OK, we actually have a frame.  We just don't know how large
  1332.          it is yet.  Set its size to zero.  We'll adjust it if
  1333.          necessary.  We also now commit to skipping the special
  1334.          instructions mentioned before.  */
  1335.       cache->locals = 0;

  1336.       /* If that's all, return now.  */
  1337.       if (limit <= pc)
  1338.         return limit;

  1339.       /* Check for stack adjustment

  1340.             subl $XXX, %esp
  1341.          or
  1342.             lea -XXX(%esp),%esp

  1343.          NOTE: You can't subtract a 16-bit immediate from a 32-bit
  1344.          reg, so we don't have to worry about a data16 prefix.  */
  1345.       if (target_read_code (pc, &op, 1))
  1346.         return pc;
  1347.       if (op == 0x83)
  1348.         {
  1349.           /* `subl' with 8-bit immediate.  */
  1350.           if (read_code_unsigned_integer (pc + 1, 1, byte_order) != 0xec)
  1351.             /* Some instruction starting with 0x83 other than `subl'.  */
  1352.             return pc;

  1353.           /* `subl' with signed 8-bit immediate (though it wouldn't
  1354.              make sense to be negative).  */
  1355.           cache->locals = read_code_integer (pc + 2, 1, byte_order);
  1356.           return pc + 3;
  1357.         }
  1358.       else if (op == 0x81)
  1359.         {
  1360.           /* Maybe it is `subl' with a 32-bit immediate.  */
  1361.           if (read_code_unsigned_integer (pc + 1, 1, byte_order) != 0xec)
  1362.             /* Some instruction starting with 0x81 other than `subl'.  */
  1363.             return pc;

  1364.           /* It is `subl' with a 32-bit immediate.  */
  1365.           cache->locals = read_code_integer (pc + 2, 4, byte_order);
  1366.           return pc + 6;
  1367.         }
  1368.       else if (op == 0x8d)
  1369.         {
  1370.           /* The ModR/M byte is 0x64.  */
  1371.           if (read_code_unsigned_integer (pc + 1, 1, byte_order) != 0x64)
  1372.             return pc;
  1373.           /* 'lea' with 8-bit displacement.  */
  1374.           cache->locals = -1 * read_code_integer (pc + 3, 1, byte_order);
  1375.           return pc + 4;
  1376.         }
  1377.       else
  1378.         {
  1379.           /* Some instruction other than `subl' nor 'lea'.  */
  1380.           return pc;
  1381.         }
  1382.     }
  1383.   else if (op == 0xc8)                /* enter */
  1384.     {
  1385.       cache->locals = read_code_unsigned_integer (pc + 1, 2, byte_order);
  1386.       return pc + 4;
  1387.     }

  1388.   return pc;
  1389. }

  1390. /* Check whether PC points at code that saves registers on the stack.
  1391.    If so, it updates CACHE and returns the address of the first
  1392.    instruction after the register saves or CURRENT_PC, whichever is
  1393.    smaller.  Otherwise, return PC.  */

  1394. static CORE_ADDR
  1395. i386_analyze_register_saves (CORE_ADDR pc, CORE_ADDR current_pc,
  1396.                              struct i386_frame_cache *cache)
  1397. {
  1398.   CORE_ADDR offset = 0;
  1399.   gdb_byte op;
  1400.   int i;

  1401.   if (cache->locals > 0)
  1402.     offset -= cache->locals;
  1403.   for (i = 0; i < 8 && pc < current_pc; i++)
  1404.     {
  1405.       if (target_read_code (pc, &op, 1))
  1406.         return pc;
  1407.       if (op < 0x50 || op > 0x57)
  1408.         break;

  1409.       offset -= 4;
  1410.       cache->saved_regs[op - 0x50] = offset;
  1411.       cache->sp_offset += 4;
  1412.       pc++;
  1413.     }

  1414.   return pc;
  1415. }

  1416. /* Do a full analysis of the prologue at PC and update CACHE
  1417.    accordingly.  Bail out early if CURRENT_PC is reached.  Return the
  1418.    address where the analysis stopped.

  1419.    We handle these cases:

  1420.    The startup sequence can be at the start of the function, or the
  1421.    function can start with a branch to startup code at the end.

  1422.    %ebp can be set up with either the 'enter' instruction, or "pushl
  1423.    %ebp, movl %esp, %ebp" (`enter' is too slow to be useful, but was
  1424.    once used in the System V compiler).

  1425.    Local space is allocated just below the saved %ebp by either the
  1426.    'enter' instruction, or by "subl $<size>, %esp".  'enter' has a
  1427.    16-bit unsigned argument for space to allocate, and the 'addl'
  1428.    instruction could have either a signed byte, or 32-bit immediate.

  1429.    Next, the registers used by this function are pushed.  With the
  1430.    System V compiler they will always be in the order: %edi, %esi,
  1431.    %ebx (and sometimes a harmless bug causes it to also save but not
  1432.    restore %eax); however, the code below is willing to see the pushes
  1433.    in any order, and will handle up to 8 of them.

  1434.    If the setup sequence is at the end of the function, then the next
  1435.    instruction will be a branch back to the start.  */

  1436. static CORE_ADDR
  1437. i386_analyze_prologue (struct gdbarch *gdbarch,
  1438.                        CORE_ADDR pc, CORE_ADDR current_pc,
  1439.                        struct i386_frame_cache *cache)
  1440. {
  1441.   pc = i386_skip_noop (pc);
  1442.   pc = i386_follow_jump (gdbarch, pc);
  1443.   pc = i386_analyze_struct_return (pc, current_pc, cache);
  1444.   pc = i386_skip_probe (pc);
  1445.   pc = i386_analyze_stack_align (pc, current_pc, cache);
  1446.   pc = i386_analyze_frame_setup (gdbarch, pc, current_pc, cache);
  1447.   return i386_analyze_register_saves (pc, current_pc, cache);
  1448. }

  1449. /* Return PC of first real instruction.  */

  1450. static CORE_ADDR
  1451. i386_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR start_pc)
  1452. {
  1453.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);

  1454.   static gdb_byte pic_pat[6] =
  1455.   {
  1456.     0xe8, 0, 0, 0, 0,                /* call 0x0 */
  1457.     0x5b,                        /* popl %ebx */
  1458.   };
  1459.   struct i386_frame_cache cache;
  1460.   CORE_ADDR pc;
  1461.   gdb_byte op;
  1462.   int i;
  1463.   CORE_ADDR func_addr;

  1464.   if (find_pc_partial_function (start_pc, NULL, &func_addr, NULL))
  1465.     {
  1466.       CORE_ADDR post_prologue_pc
  1467.         = skip_prologue_using_sal (gdbarch, func_addr);
  1468.       struct compunit_symtab *cust = find_pc_compunit_symtab (func_addr);

  1469.       /* Clang always emits a line note before the prologue and another
  1470.          one after.  We trust clang to emit usable line notes.  */
  1471.       if (post_prologue_pc
  1472.           && (cust != NULL
  1473.               && COMPUNIT_PRODUCER (cust) != NULL
  1474.               && strncmp (COMPUNIT_PRODUCER (cust), "clang ",
  1475.                           sizeof ("clang ") - 1) == 0))
  1476.         return max (start_pc, post_prologue_pc);
  1477.     }

  1478.   cache.locals = -1;
  1479.   pc = i386_analyze_prologue (gdbarch, start_pc, 0xffffffff, &cache);
  1480.   if (cache.locals < 0)
  1481.     return start_pc;

  1482.   /* Found valid frame setup.  */

  1483.   /* The native cc on SVR4 in -K PIC mode inserts the following code
  1484.      to get the address of the global offset table (GOT) into register
  1485.      %ebx:

  1486.         call        0x0
  1487.         popl    %ebx
  1488.         movl    %ebx,x(%ebp)    (optional)
  1489.         addl    y,%ebx

  1490.      This code is with the rest of the prologue (at the end of the
  1491.      function), so we have to skip it to get to the first real
  1492.      instruction at the start of the function.  */

  1493.   for (i = 0; i < 6; i++)
  1494.     {
  1495.       if (target_read_code (pc + i, &op, 1))
  1496.         return pc;

  1497.       if (pic_pat[i] != op)
  1498.         break;
  1499.     }
  1500.   if (i == 6)
  1501.     {
  1502.       int delta = 6;

  1503.       if (target_read_code (pc + delta, &op, 1))
  1504.         return pc;

  1505.       if (op == 0x89)                /* movl %ebx, x(%ebp) */
  1506.         {
  1507.           op = read_code_unsigned_integer (pc + delta + 1, 1, byte_order);

  1508.           if (op == 0x5d)        /* One byte offset from %ebp.  */
  1509.             delta += 3;
  1510.           else if (op == 0x9d)        /* Four byte offset from %ebp.  */
  1511.             delta += 6;
  1512.           else                        /* Unexpected instruction.  */
  1513.             delta = 0;

  1514.           if (target_read_code (pc + delta, &op, 1))
  1515.             return pc;
  1516.         }

  1517.       /* addl y,%ebx */
  1518.       if (delta > 0 && op == 0x81
  1519.           && read_code_unsigned_integer (pc + delta + 1, 1, byte_order)
  1520.              == 0xc3)
  1521.         {
  1522.           pc += delta + 6;
  1523.         }
  1524.     }

  1525.   /* If the function starts with a branch (to startup code at the end)
  1526.      the last instruction should bring us back to the first
  1527.      instruction of the real code.  */
  1528.   if (i386_follow_jump (gdbarch, start_pc) != start_pc)
  1529.     pc = i386_follow_jump (gdbarch, pc);

  1530.   return pc;
  1531. }

  1532. /* Check that the code pointed to by PC corresponds to a call to
  1533.    __main, skip it if so.  Return PC otherwise.  */

  1534. CORE_ADDR
  1535. i386_skip_main_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
  1536. {
  1537.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  1538.   gdb_byte op;

  1539.   if (target_read_code (pc, &op, 1))
  1540.     return pc;
  1541.   if (op == 0xe8)
  1542.     {
  1543.       gdb_byte buf[4];

  1544.       if (target_read_code (pc + 1, buf, sizeof buf) == 0)
  1545.          {
  1546.           /* Make sure address is computed correctly as a 32bit
  1547.              integer even if CORE_ADDR is 64 bit wide.  */
  1548.            struct bound_minimal_symbol s;
  1549.            CORE_ADDR call_dest;

  1550.           call_dest = pc + 5 + extract_signed_integer (buf, 4, byte_order);
  1551.           call_dest = call_dest & 0xffffffffU;
  1552.            s = lookup_minimal_symbol_by_pc (call_dest);
  1553.            if (s.minsym != NULL
  1554.                && MSYMBOL_LINKAGE_NAME (s.minsym) != NULL
  1555.                && strcmp (MSYMBOL_LINKAGE_NAME (s.minsym), "__main") == 0)
  1556.              pc += 5;
  1557.          }
  1558.     }

  1559.   return pc;
  1560. }

  1561. /* This function is 64-bit safe.  */

  1562. static CORE_ADDR
  1563. i386_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
  1564. {
  1565.   gdb_byte buf[8];

  1566.   frame_unwind_register (next_frame, gdbarch_pc_regnum (gdbarch), buf);
  1567.   return extract_typed_address (buf, builtin_type (gdbarch)->builtin_func_ptr);
  1568. }


  1569. /* Normal frames.  */

  1570. static void
  1571. i386_frame_cache_1 (struct frame_info *this_frame,
  1572.                     struct i386_frame_cache *cache)
  1573. {
  1574.   struct gdbarch *gdbarch = get_frame_arch (this_frame);
  1575.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  1576.   gdb_byte buf[4];
  1577.   int i;

  1578.   cache->pc = get_frame_func (this_frame);

  1579.   /* In principle, for normal frames, %ebp holds the frame pointer,
  1580.      which holds the base address for the current stack frame.
  1581.      However, for functions that don't need it, the frame pointer is
  1582.      optional.  For these "frameless" functions the frame pointer is
  1583.      actually the frame pointer of the calling frame.  Signal
  1584.      trampolines are just a special case of a "frameless" function.
  1585.      They (usually) share their frame pointer with the frame that was
  1586.      in progress when the signal occurred.  */

  1587.   get_frame_register (this_frame, I386_EBP_REGNUM, buf);
  1588.   cache->base = extract_unsigned_integer (buf, 4, byte_order);
  1589.   if (cache->base == 0)
  1590.     {
  1591.       cache->base_p = 1;
  1592.       return;
  1593.     }

  1594.   /* For normal frames, %eip is stored at 4(%ebp).  */
  1595.   cache->saved_regs[I386_EIP_REGNUM] = 4;

  1596.   if (cache->pc != 0)
  1597.     i386_analyze_prologue (gdbarch, cache->pc, get_frame_pc (this_frame),
  1598.                            cache);

  1599.   if (cache->locals < 0)
  1600.     {
  1601.       /* We didn't find a valid frame, which means that CACHE->base
  1602.          currently holds the frame pointer for our calling frame.  If
  1603.          we're at the start of a function, or somewhere half-way its
  1604.          prologue, the function's frame probably hasn't been fully
  1605.          setup yet.  Try to reconstruct the base address for the stack
  1606.          frame by looking at the stack pointer.  For truly "frameless"
  1607.          functions this might work too.  */

  1608.       if (cache->saved_sp_reg != -1)
  1609.         {
  1610.           /* Saved stack pointer has been saved.  */
  1611.           get_frame_register (this_frame, cache->saved_sp_reg, buf);
  1612.           cache->saved_sp = extract_unsigned_integer (buf, 4, byte_order);

  1613.           /* We're halfway aligning the stack.  */
  1614.           cache->base = ((cache->saved_sp - 4) & 0xfffffff0) - 4;
  1615.           cache->saved_regs[I386_EIP_REGNUM] = cache->saved_sp - 4;

  1616.           /* This will be added back below.  */
  1617.           cache->saved_regs[I386_EIP_REGNUM] -= cache->base;
  1618.         }
  1619.       else if (cache->pc != 0
  1620.                || target_read_code (get_frame_pc (this_frame), buf, 1))
  1621.         {
  1622.           /* We're in a known function, but did not find a frame
  1623.              setup.  Assume that the function does not use %ebp.
  1624.              Alternatively, we may have jumped to an invalid
  1625.              address; in that case there is definitely no new
  1626.              frame in %ebp.  */
  1627.           get_frame_register (this_frame, I386_ESP_REGNUM, buf);
  1628.           cache->base = extract_unsigned_integer (buf, 4, byte_order)
  1629.                         + cache->sp_offset;
  1630.         }
  1631.       else
  1632.         /* We're in an unknown function.  We could not find the start
  1633.            of the function to analyze the prologue; our best option is
  1634.            to assume a typical frame layout with the caller's %ebp
  1635.            saved.  */
  1636.         cache->saved_regs[I386_EBP_REGNUM] = 0;
  1637.     }

  1638.   if (cache->saved_sp_reg != -1)
  1639.     {
  1640.       /* Saved stack pointer has been saved (but the SAVED_SP_REG
  1641.          register may be unavailable).  */
  1642.       if (cache->saved_sp == 0
  1643.           && deprecated_frame_register_read (this_frame,
  1644.                                              cache->saved_sp_reg, buf))
  1645.         cache->saved_sp = extract_unsigned_integer (buf, 4, byte_order);
  1646.     }
  1647.   /* Now that we have the base address for the stack frame we can
  1648.      calculate the value of %esp in the calling frame.  */
  1649.   else if (cache->saved_sp == 0)
  1650.     cache->saved_sp = cache->base + 8;

  1651.   /* Adjust all the saved registers such that they contain addresses
  1652.      instead of offsets.  */
  1653.   for (i = 0; i < I386_NUM_SAVED_REGS; i++)
  1654.     if (cache->saved_regs[i] != -1)
  1655.       cache->saved_regs[i] += cache->base;

  1656.   cache->base_p = 1;
  1657. }

  1658. static struct i386_frame_cache *
  1659. i386_frame_cache (struct frame_info *this_frame, void **this_cache)
  1660. {
  1661.   volatile struct gdb_exception ex;
  1662.   struct i386_frame_cache *cache;

  1663.   if (*this_cache)
  1664.     return *this_cache;

  1665.   cache = i386_alloc_frame_cache ();
  1666.   *this_cache = cache;

  1667.   TRY_CATCH (ex, RETURN_MASK_ERROR)
  1668.     {
  1669.       i386_frame_cache_1 (this_frame, cache);
  1670.     }
  1671.   if (ex.reason < 0 && ex.error != NOT_AVAILABLE_ERROR)
  1672.     throw_exception (ex);

  1673.   return cache;
  1674. }

  1675. static void
  1676. i386_frame_this_id (struct frame_info *this_frame, void **this_cache,
  1677.                     struct frame_id *this_id)
  1678. {
  1679.   struct i386_frame_cache *cache = i386_frame_cache (this_frame, this_cache);

  1680.   if (!cache->base_p)
  1681.     (*this_id) = frame_id_build_unavailable_stack (cache->pc);
  1682.   else if (cache->base == 0)
  1683.     {
  1684.       /* This marks the outermost frame.  */
  1685.     }
  1686.   else
  1687.     {
  1688.       /* See the end of i386_push_dummy_call.  */
  1689.       (*this_id) = frame_id_build (cache->base + 8, cache->pc);
  1690.     }
  1691. }

  1692. static enum unwind_stop_reason
  1693. i386_frame_unwind_stop_reason (struct frame_info *this_frame,
  1694.                                void **this_cache)
  1695. {
  1696.   struct i386_frame_cache *cache = i386_frame_cache (this_frame, this_cache);

  1697.   if (!cache->base_p)
  1698.     return UNWIND_UNAVAILABLE;

  1699.   /* This marks the outermost frame.  */
  1700.   if (cache->base == 0)
  1701.     return UNWIND_OUTERMOST;

  1702.   return UNWIND_NO_REASON;
  1703. }

  1704. static struct value *
  1705. i386_frame_prev_register (struct frame_info *this_frame, void **this_cache,
  1706.                           int regnum)
  1707. {
  1708.   struct i386_frame_cache *cache = i386_frame_cache (this_frame, this_cache);

  1709.   gdb_assert (regnum >= 0);

  1710.   /* The System V ABI says that:

  1711.      "The flags register contains the system flags, such as the
  1712.      direction flag and the carry flag.  The direction flag must be
  1713.      set to the forward (that is, zero) direction before entry and
  1714.      upon exit from a function.  Other user flags have no specified
  1715.      role in the standard calling sequence and are not preserved."

  1716.      To guarantee the "upon exit" part of that statement we fake a
  1717.      saved flags register that has its direction flag cleared.

  1718.      Note that GCC doesn't seem to rely on the fact that the direction
  1719.      flag is cleared after a function return; it always explicitly
  1720.      clears the flag before operations where it matters.

  1721.      FIXME: kettenis/20030316: I'm not quite sure whether this is the
  1722.      right thing to do.  The way we fake the flags register here makes
  1723.      it impossible to change it.  */

  1724.   if (regnum == I386_EFLAGS_REGNUM)
  1725.     {
  1726.       ULONGEST val;

  1727.       val = get_frame_register_unsigned (this_frame, regnum);
  1728.       val &= ~(1 << 10);
  1729.       return frame_unwind_got_constant (this_frame, regnum, val);
  1730.     }

  1731.   if (regnum == I386_EIP_REGNUM && cache->pc_in_eax)
  1732.     return frame_unwind_got_register (this_frame, regnum, I386_EAX_REGNUM);

  1733.   if (regnum == I386_ESP_REGNUM
  1734.       && (cache->saved_sp != 0 || cache->saved_sp_reg != -1))
  1735.     {
  1736.       /* If the SP has been saved, but we don't know where, then this
  1737.          means that SAVED_SP_REG register was found unavailable back
  1738.          when we built the cache.  */
  1739.       if (cache->saved_sp == 0)
  1740.         return frame_unwind_got_register (this_frame, regnum,
  1741.                                           cache->saved_sp_reg);
  1742.       else
  1743.         return frame_unwind_got_constant (this_frame, regnum,
  1744.                                           cache->saved_sp);
  1745.     }

  1746.   if (regnum < I386_NUM_SAVED_REGS && cache->saved_regs[regnum] != -1)
  1747.     return frame_unwind_got_memory (this_frame, regnum,
  1748.                                     cache->saved_regs[regnum]);

  1749.   return frame_unwind_got_register (this_frame, regnum, regnum);
  1750. }

  1751. static const struct frame_unwind i386_frame_unwind =
  1752. {
  1753.   NORMAL_FRAME,
  1754.   i386_frame_unwind_stop_reason,
  1755.   i386_frame_this_id,
  1756.   i386_frame_prev_register,
  1757.   NULL,
  1758.   default_frame_sniffer
  1759. };

  1760. /* Normal frames, but in a function epilogue.  */

  1761. /* The epilogue is defined here as the 'ret' instruction, which will
  1762.    follow any instruction such as 'leave' or 'pop %ebp' that destroys
  1763.    the function's stack frame.  */

  1764. static int
  1765. i386_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
  1766. {
  1767.   gdb_byte insn;
  1768.   struct compunit_symtab *cust;

  1769.   cust = find_pc_compunit_symtab (pc);
  1770.   if (cust != NULL && COMPUNIT_EPILOGUE_UNWIND_VALID (cust))
  1771.     return 0;

  1772.   if (target_read_memory (pc, &insn, 1))
  1773.     return 0;        /* Can't read memory at pc.  */

  1774.   if (insn != 0xc3)        /* 'ret' instruction.  */
  1775.     return 0;

  1776.   return 1;
  1777. }

  1778. static int
  1779. i386_epilogue_frame_sniffer (const struct frame_unwind *self,
  1780.                              struct frame_info *this_frame,
  1781.                              void **this_prologue_cache)
  1782. {
  1783.   if (frame_relative_level (this_frame) == 0)
  1784.     return i386_in_function_epilogue_p (get_frame_arch (this_frame),
  1785.                                         get_frame_pc (this_frame));
  1786.   else
  1787.     return 0;
  1788. }

  1789. static struct i386_frame_cache *
  1790. i386_epilogue_frame_cache (struct frame_info *this_frame, void **this_cache)
  1791. {
  1792.   volatile struct gdb_exception ex;
  1793.   struct i386_frame_cache *cache;
  1794.   CORE_ADDR sp;

  1795.   if (*this_cache)
  1796.     return *this_cache;

  1797.   cache = i386_alloc_frame_cache ();
  1798.   *this_cache = cache;

  1799.   TRY_CATCH (ex, RETURN_MASK_ERROR)
  1800.     {
  1801.       cache->pc = get_frame_func (this_frame);

  1802.       /* At this point the stack looks as if we just entered the
  1803.          function, with the return address at the top of the
  1804.          stack.  */
  1805.       sp = get_frame_register_unsigned (this_frame, I386_ESP_REGNUM);
  1806.       cache->base = sp + cache->sp_offset;
  1807.       cache->saved_sp = cache->base + 8;
  1808.       cache->saved_regs[I386_EIP_REGNUM] = cache->base + 4;

  1809.       cache->base_p = 1;
  1810.     }
  1811.   if (ex.reason < 0 && ex.error != NOT_AVAILABLE_ERROR)
  1812.     throw_exception (ex);

  1813.   return cache;
  1814. }

  1815. static enum unwind_stop_reason
  1816. i386_epilogue_frame_unwind_stop_reason (struct frame_info *this_frame,
  1817.                                         void **this_cache)
  1818. {
  1819.   struct i386_frame_cache *cache =
  1820.     i386_epilogue_frame_cache (this_frame, this_cache);

  1821.   if (!cache->base_p)
  1822.     return UNWIND_UNAVAILABLE;

  1823.   return UNWIND_NO_REASON;
  1824. }

  1825. static void
  1826. i386_epilogue_frame_this_id (struct frame_info *this_frame,
  1827.                              void **this_cache,
  1828.                              struct frame_id *this_id)
  1829. {
  1830.   struct i386_frame_cache *cache =
  1831.     i386_epilogue_frame_cache (this_frame, this_cache);

  1832.   if (!cache->base_p)
  1833.     (*this_id) = frame_id_build_unavailable_stack (cache->pc);
  1834.   else
  1835.     (*this_id) = frame_id_build (cache->base + 8, cache->pc);
  1836. }

  1837. static struct value *
  1838. i386_epilogue_frame_prev_register (struct frame_info *this_frame,
  1839.                                    void **this_cache, int regnum)
  1840. {
  1841.   /* Make sure we've initialized the cache.  */
  1842.   i386_epilogue_frame_cache (this_frame, this_cache);

  1843.   return i386_frame_prev_register (this_frame, this_cache, regnum);
  1844. }

  1845. static const struct frame_unwind i386_epilogue_frame_unwind =
  1846. {
  1847.   NORMAL_FRAME,
  1848.   i386_epilogue_frame_unwind_stop_reason,
  1849.   i386_epilogue_frame_this_id,
  1850.   i386_epilogue_frame_prev_register,
  1851.   NULL,
  1852.   i386_epilogue_frame_sniffer
  1853. };


  1854. /* Stack-based trampolines.  */

  1855. /* These trampolines are used on cross x86 targets, when taking the
  1856.    address of a nested function.  When executing these trampolines,
  1857.    no stack frame is set up, so we are in a similar situation as in
  1858.    epilogues and i386_epilogue_frame_this_id can be re-used.  */

  1859. /* Static chain passed in register.  */

  1860. struct i386_insn i386_tramp_chain_in_reg_insns[] =
  1861. {
  1862.   /* `movl imm32, %eax' and `movl imm32, %ecx' */
  1863.   { 5, { 0xb8 }, { 0xfe } },

  1864.   /* `jmp imm32' */
  1865.   { 5, { 0xe9 }, { 0xff } },

  1866.   {0}
  1867. };

  1868. /* Static chain passed on stack (when regparm=3).  */

  1869. struct i386_insn i386_tramp_chain_on_stack_insns[] =
  1870. {
  1871.   /* `push imm32' */
  1872.   { 5, { 0x68 }, { 0xff } },

  1873.   /* `jmp imm32' */
  1874.   { 5, { 0xe9 }, { 0xff } },

  1875.   {0}
  1876. };

  1877. /* Return whether PC points inside a stack trampoline.   */

  1878. static int
  1879. i386_in_stack_tramp_p (CORE_ADDR pc)
  1880. {
  1881.   gdb_byte insn;
  1882.   const char *name;

  1883.   /* A stack trampoline is detected if no name is associated
  1884.     to the current pc and if it points inside a trampoline
  1885.     sequence.  */

  1886.   find_pc_partial_function (pc, &name, NULL, NULL);
  1887.   if (name)
  1888.     return 0;

  1889.   if (target_read_memory (pc, &insn, 1))
  1890.     return 0;

  1891.   if (!i386_match_insn_block (pc, i386_tramp_chain_in_reg_insns)
  1892.       && !i386_match_insn_block (pc, i386_tramp_chain_on_stack_insns))
  1893.     return 0;

  1894.   return 1;
  1895. }

  1896. static int
  1897. i386_stack_tramp_frame_sniffer (const struct frame_unwind *self,
  1898.                                 struct frame_info *this_frame,
  1899.                                 void **this_cache)
  1900. {
  1901.   if (frame_relative_level (this_frame) == 0)
  1902.     return i386_in_stack_tramp_p (get_frame_pc (this_frame));
  1903.   else
  1904.     return 0;
  1905. }

  1906. static const struct frame_unwind i386_stack_tramp_frame_unwind =
  1907. {
  1908.   NORMAL_FRAME,
  1909.   i386_epilogue_frame_unwind_stop_reason,
  1910.   i386_epilogue_frame_this_id,
  1911.   i386_epilogue_frame_prev_register,
  1912.   NULL,
  1913.   i386_stack_tramp_frame_sniffer
  1914. };

  1915. /* Generate a bytecode expression to get the value of the saved PC.  */

  1916. static void
  1917. i386_gen_return_address (struct gdbarch *gdbarch,
  1918.                          struct agent_expr *ax, struct axs_value *value,
  1919.                          CORE_ADDR scope)
  1920. {
  1921.   /* The following sequence assumes the traditional use of the base
  1922.      register.  */
  1923.   ax_reg (ax, I386_EBP_REGNUM);
  1924.   ax_const_l (ax, 4);
  1925.   ax_simple (ax, aop_add);
  1926.   value->type = register_type (gdbarch, I386_EIP_REGNUM);
  1927.   value->kind = axs_lvalue_memory;
  1928. }


  1929. /* Signal trampolines.  */

  1930. static struct i386_frame_cache *
  1931. i386_sigtramp_frame_cache (struct frame_info *this_frame, void **this_cache)
  1932. {
  1933.   struct gdbarch *gdbarch = get_frame_arch (this_frame);
  1934.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  1935.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  1936.   volatile struct gdb_exception ex;
  1937.   struct i386_frame_cache *cache;
  1938.   CORE_ADDR addr;
  1939.   gdb_byte buf[4];

  1940.   if (*this_cache)
  1941.     return *this_cache;

  1942.   cache = i386_alloc_frame_cache ();

  1943.   TRY_CATCH (ex, RETURN_MASK_ERROR)
  1944.     {
  1945.       get_frame_register (this_frame, I386_ESP_REGNUM, buf);
  1946.       cache->base = extract_unsigned_integer (buf, 4, byte_order) - 4;

  1947.       addr = tdep->sigcontext_addr (this_frame);
  1948.       if (tdep->sc_reg_offset)
  1949.         {
  1950.           int i;

  1951.           gdb_assert (tdep->sc_num_regs <= I386_NUM_SAVED_REGS);

  1952.           for (i = 0; i < tdep->sc_num_regs; i++)
  1953.             if (tdep->sc_reg_offset[i] != -1)
  1954.               cache->saved_regs[i] = addr + tdep->sc_reg_offset[i];
  1955.         }
  1956.       else
  1957.         {
  1958.           cache->saved_regs[I386_EIP_REGNUM] = addr + tdep->sc_pc_offset;
  1959.           cache->saved_regs[I386_ESP_REGNUM] = addr + tdep->sc_sp_offset;
  1960.         }

  1961.       cache->base_p = 1;
  1962.     }
  1963.   if (ex.reason < 0 && ex.error != NOT_AVAILABLE_ERROR)
  1964.     throw_exception (ex);

  1965.   *this_cache = cache;
  1966.   return cache;
  1967. }

  1968. static enum unwind_stop_reason
  1969. i386_sigtramp_frame_unwind_stop_reason (struct frame_info *this_frame,
  1970.                                         void **this_cache)
  1971. {
  1972.   struct i386_frame_cache *cache =
  1973.     i386_sigtramp_frame_cache (this_frame, this_cache);

  1974.   if (!cache->base_p)
  1975.     return UNWIND_UNAVAILABLE;

  1976.   return UNWIND_NO_REASON;
  1977. }

  1978. static void
  1979. i386_sigtramp_frame_this_id (struct frame_info *this_frame, void **this_cache,
  1980.                              struct frame_id *this_id)
  1981. {
  1982.   struct i386_frame_cache *cache =
  1983.     i386_sigtramp_frame_cache (this_frame, this_cache);

  1984.   if (!cache->base_p)
  1985.     (*this_id) = frame_id_build_unavailable_stack (get_frame_pc (this_frame));
  1986.   else
  1987.     {
  1988.       /* See the end of i386_push_dummy_call.  */
  1989.       (*this_id) = frame_id_build (cache->base + 8, get_frame_pc (this_frame));
  1990.     }
  1991. }

  1992. static struct value *
  1993. i386_sigtramp_frame_prev_register (struct frame_info *this_frame,
  1994.                                    void **this_cache, int regnum)
  1995. {
  1996.   /* Make sure we've initialized the cache.  */
  1997.   i386_sigtramp_frame_cache (this_frame, this_cache);

  1998.   return i386_frame_prev_register (this_frame, this_cache, regnum);
  1999. }

  2000. static int
  2001. i386_sigtramp_frame_sniffer (const struct frame_unwind *self,
  2002.                              struct frame_info *this_frame,
  2003.                              void **this_prologue_cache)
  2004. {
  2005.   struct gdbarch_tdep *tdep = gdbarch_tdep (get_frame_arch (this_frame));

  2006.   /* We shouldn't even bother if we don't have a sigcontext_addr
  2007.      handler.  */
  2008.   if (tdep->sigcontext_addr == NULL)
  2009.     return 0;

  2010.   if (tdep->sigtramp_p != NULL)
  2011.     {
  2012.       if (tdep->sigtramp_p (this_frame))
  2013.         return 1;
  2014.     }

  2015.   if (tdep->sigtramp_start != 0)
  2016.     {
  2017.       CORE_ADDR pc = get_frame_pc (this_frame);

  2018.       gdb_assert (tdep->sigtramp_end != 0);
  2019.       if (pc >= tdep->sigtramp_start && pc < tdep->sigtramp_end)
  2020.         return 1;
  2021.     }

  2022.   return 0;
  2023. }

  2024. static const struct frame_unwind i386_sigtramp_frame_unwind =
  2025. {
  2026.   SIGTRAMP_FRAME,
  2027.   i386_sigtramp_frame_unwind_stop_reason,
  2028.   i386_sigtramp_frame_this_id,
  2029.   i386_sigtramp_frame_prev_register,
  2030.   NULL,
  2031.   i386_sigtramp_frame_sniffer
  2032. };


  2033. static CORE_ADDR
  2034. i386_frame_base_address (struct frame_info *this_frame, void **this_cache)
  2035. {
  2036.   struct i386_frame_cache *cache = i386_frame_cache (this_frame, this_cache);

  2037.   return cache->base;
  2038. }

  2039. static const struct frame_base i386_frame_base =
  2040. {
  2041.   &i386_frame_unwind,
  2042.   i386_frame_base_address,
  2043.   i386_frame_base_address,
  2044.   i386_frame_base_address
  2045. };

  2046. static struct frame_id
  2047. i386_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
  2048. {
  2049.   CORE_ADDR fp;

  2050.   fp = get_frame_register_unsigned (this_frame, I386_EBP_REGNUM);

  2051.   /* See the end of i386_push_dummy_call.  */
  2052.   return frame_id_build (fp + 8, get_frame_pc (this_frame));
  2053. }

  2054. /* _Decimal128 function return values need 16-byte alignment on the
  2055.    stack.  */

  2056. static CORE_ADDR
  2057. i386_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
  2058. {
  2059.   return sp & -(CORE_ADDR)16;
  2060. }


  2061. /* Figure out where the longjmp will land.  Slurp the args out of the
  2062.    stack.  We expect the first arg to be a pointer to the jmp_buf
  2063.    structure from which we extract the address that we will land at.
  2064.    This address is copied into PC.  This routine returns non-zero on
  2065.    success.  */

  2066. static int
  2067. i386_get_longjmp_target (struct frame_info *frame, CORE_ADDR *pc)
  2068. {
  2069.   gdb_byte buf[4];
  2070.   CORE_ADDR sp, jb_addr;
  2071.   struct gdbarch *gdbarch = get_frame_arch (frame);
  2072.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  2073.   int jb_pc_offset = gdbarch_tdep (gdbarch)->jb_pc_offset;

  2074.   /* If JB_PC_OFFSET is -1, we have no way to find out where the
  2075.      longjmp will land.  */
  2076.   if (jb_pc_offset == -1)
  2077.     return 0;

  2078.   get_frame_register (frame, I386_ESP_REGNUM, buf);
  2079.   sp = extract_unsigned_integer (buf, 4, byte_order);
  2080.   if (target_read_memory (sp + 4, buf, 4))
  2081.     return 0;

  2082.   jb_addr = extract_unsigned_integer (buf, 4, byte_order);
  2083.   if (target_read_memory (jb_addr + jb_pc_offset, buf, 4))
  2084.     return 0;

  2085.   *pc = extract_unsigned_integer (buf, 4, byte_order);
  2086.   return 1;
  2087. }


  2088. /* Check whether TYPE must be 16-byte-aligned when passed as a
  2089.    function argument.  16-byte vectors, _Decimal128 and structures or
  2090.    unions containing such types must be 16-byte-aligned; other
  2091.    arguments are 4-byte-aligned.  */

  2092. static int
  2093. i386_16_byte_align_p (struct type *type)
  2094. {
  2095.   type = check_typedef (type);
  2096.   if ((TYPE_CODE (type) == TYPE_CODE_DECFLOAT
  2097.        || (TYPE_CODE (type) == TYPE_CODE_ARRAY && TYPE_VECTOR (type)))
  2098.       && TYPE_LENGTH (type) == 16)
  2099.     return 1;
  2100.   if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
  2101.     return i386_16_byte_align_p (TYPE_TARGET_TYPE (type));
  2102.   if (TYPE_CODE (type) == TYPE_CODE_STRUCT
  2103.       || TYPE_CODE (type) == TYPE_CODE_UNION)
  2104.     {
  2105.       int i;
  2106.       for (i = 0; i < TYPE_NFIELDS (type); i++)
  2107.         {
  2108.           if (i386_16_byte_align_p (TYPE_FIELD_TYPE (type, i)))
  2109.             return 1;
  2110.         }
  2111.     }
  2112.   return 0;
  2113. }

  2114. /* Implementation for set_gdbarch_push_dummy_code.  */

  2115. static CORE_ADDR
  2116. i386_push_dummy_code (struct gdbarch *gdbarch, CORE_ADDR sp, CORE_ADDR funaddr,
  2117.                       struct value **args, int nargs, struct type *value_type,
  2118.                       CORE_ADDR *real_pc, CORE_ADDR *bp_addr,
  2119.                       struct regcache *regcache)
  2120. {
  2121.   /* Use 0xcc breakpoint - 1 byte.  */
  2122.   *bp_addr = sp - 1;
  2123.   *real_pc = funaddr;

  2124.   /* Keep the stack aligned.  */
  2125.   return sp - 16;
  2126. }

  2127. static CORE_ADDR
  2128. i386_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
  2129.                       struct regcache *regcache, CORE_ADDR bp_addr, int nargs,
  2130.                       struct value **args, CORE_ADDR sp, int struct_return,
  2131.                       CORE_ADDR struct_addr)
  2132. {
  2133.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  2134.   gdb_byte buf[4];
  2135.   int i;
  2136.   int write_pass;
  2137.   int args_space = 0;

  2138.   /* Determine the total space required for arguments and struct
  2139.      return address in a first pass (allowing for 16-byte-aligned
  2140.      arguments), then push arguments in a second pass.  */

  2141.   for (write_pass = 0; write_pass < 2; write_pass++)
  2142.     {
  2143.       int args_space_used = 0;

  2144.       if (struct_return)
  2145.         {
  2146.           if (write_pass)
  2147.             {
  2148.               /* Push value address.  */
  2149.               store_unsigned_integer (buf, 4, byte_order, struct_addr);
  2150.               write_memory (sp, buf, 4);
  2151.               args_space_used += 4;
  2152.             }
  2153.           else
  2154.             args_space += 4;
  2155.         }

  2156.       for (i = 0; i < nargs; i++)
  2157.         {
  2158.           int len = TYPE_LENGTH (value_enclosing_type (args[i]));

  2159.           if (write_pass)
  2160.             {
  2161.               if (i386_16_byte_align_p (value_enclosing_type (args[i])))
  2162.                 args_space_used = align_up (args_space_used, 16);

  2163.               write_memory (sp + args_space_used,
  2164.                             value_contents_all (args[i]), len);
  2165.               /* The System V ABI says that:

  2166.               "An argument's size is increased, if necessary, to make it a
  2167.               multiple of [32-bit] words.  This may require tail padding,
  2168.               depending on the size of the argument."

  2169.               This makes sure the stack stays word-aligned.  */
  2170.               args_space_used += align_up (len, 4);
  2171.             }
  2172.           else
  2173.             {
  2174.               if (i386_16_byte_align_p (value_enclosing_type (args[i])))
  2175.                 args_space = align_up (args_space, 16);
  2176.               args_space += align_up (len, 4);
  2177.             }
  2178.         }

  2179.       if (!write_pass)
  2180.         {
  2181.           sp -= args_space;

  2182.           /* The original System V ABI only requires word alignment,
  2183.              but modern incarnations need 16-byte alignment in order
  2184.              to support SSE.  Since wasting a few bytes here isn't
  2185.              harmful we unconditionally enforce 16-byte alignment.  */
  2186.           sp &= ~0xf;
  2187.         }
  2188.     }

  2189.   /* Store return address.  */
  2190.   sp -= 4;
  2191.   store_unsigned_integer (buf, 4, byte_order, bp_addr);
  2192.   write_memory (sp, buf, 4);

  2193.   /* Finally, update the stack pointer...  */
  2194.   store_unsigned_integer (buf, 4, byte_order, sp);
  2195.   regcache_cooked_write (regcache, I386_ESP_REGNUM, buf);

  2196.   /* ...and fake a frame pointer.  */
  2197.   regcache_cooked_write (regcache, I386_EBP_REGNUM, buf);

  2198.   /* MarkK wrote: This "+ 8" is all over the place:
  2199.      (i386_frame_this_id, i386_sigtramp_frame_this_id,
  2200.      i386_dummy_id).  It's there, since all frame unwinders for
  2201.      a given target have to agree (within a certain margin) on the
  2202.      definition of the stack address of a frame.  Otherwise frame id
  2203.      comparison might not work correctly.  Since DWARF2/GCC uses the
  2204.      stack address *before* the function call as a frame's CFA.  On
  2205.      the i386, when %ebp is used as a frame pointer, the offset
  2206.      between the contents %ebp and the CFA as defined by GCC.  */
  2207.   return sp + 8;
  2208. }

  2209. /* These registers are used for returning integers (and on some
  2210.    targets also for returning `struct' and `union' values when their
  2211.    size and alignment match an integer type).  */
  2212. #define LOW_RETURN_REGNUM        I386_EAX_REGNUM /* %eax */
  2213. #define HIGH_RETURN_REGNUM        I386_EDX_REGNUM /* %edx */

  2214. /* Read, for architecture GDBARCH, a function return value of TYPE
  2215.    from REGCACHE, and copy that into VALBUF.  */

  2216. static void
  2217. i386_extract_return_value (struct gdbarch *gdbarch, struct type *type,
  2218.                            struct regcache *regcache, gdb_byte *valbuf)
  2219. {
  2220.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  2221.   int len = TYPE_LENGTH (type);
  2222.   gdb_byte buf[I386_MAX_REGISTER_SIZE];

  2223.   if (TYPE_CODE (type) == TYPE_CODE_FLT)
  2224.     {
  2225.       if (tdep->st0_regnum < 0)
  2226.         {
  2227.           warning (_("Cannot find floating-point return value."));
  2228.           memset (valbuf, 0, len);
  2229.           return;
  2230.         }

  2231.       /* Floating-point return values can be found in %st(0).  Convert
  2232.          its contents to the desired type.  This is probably not
  2233.          exactly how it would happen on the target itself, but it is
  2234.          the best we can do.  */
  2235.       regcache_raw_read (regcache, I386_ST0_REGNUM, buf);
  2236.       convert_typed_floating (buf, i387_ext_type (gdbarch), valbuf, type);
  2237.     }
  2238.   else
  2239.     {
  2240.       int low_size = register_size (gdbarch, LOW_RETURN_REGNUM);
  2241.       int high_size = register_size (gdbarch, HIGH_RETURN_REGNUM);

  2242.       if (len <= low_size)
  2243.         {
  2244.           regcache_raw_read (regcache, LOW_RETURN_REGNUM, buf);
  2245.           memcpy (valbuf, buf, len);
  2246.         }
  2247.       else if (len <= (low_size + high_size))
  2248.         {
  2249.           regcache_raw_read (regcache, LOW_RETURN_REGNUM, buf);
  2250.           memcpy (valbuf, buf, low_size);
  2251.           regcache_raw_read (regcache, HIGH_RETURN_REGNUM, buf);
  2252.           memcpy (valbuf + low_size, buf, len - low_size);
  2253.         }
  2254.       else
  2255.         internal_error (__FILE__, __LINE__,
  2256.                         _("Cannot extract return value of %d bytes long."),
  2257.                         len);
  2258.     }
  2259. }

  2260. /* Write, for architecture GDBARCH, a function return value of TYPE
  2261.    from VALBUF into REGCACHE.  */

  2262. static void
  2263. i386_store_return_value (struct gdbarch *gdbarch, struct type *type,
  2264.                          struct regcache *regcache, const gdb_byte *valbuf)
  2265. {
  2266.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  2267.   int len = TYPE_LENGTH (type);

  2268.   if (TYPE_CODE (type) == TYPE_CODE_FLT)
  2269.     {
  2270.       ULONGEST fstat;
  2271.       gdb_byte buf[I386_MAX_REGISTER_SIZE];

  2272.       if (tdep->st0_regnum < 0)
  2273.         {
  2274.           warning (_("Cannot set floating-point return value."));
  2275.           return;
  2276.         }

  2277.       /* Returning floating-point values is a bit tricky.  Apart from
  2278.          storing the return value in %st(0), we have to simulate the
  2279.          state of the FPU at function return point.  */

  2280.       /* Convert the value found in VALBUF to the extended
  2281.          floating-point format used by the FPU.  This is probably
  2282.          not exactly how it would happen on the target itself, but
  2283.          it is the best we can do.  */
  2284.       convert_typed_floating (valbuf, type, buf, i387_ext_type (gdbarch));
  2285.       regcache_raw_write (regcache, I386_ST0_REGNUM, buf);

  2286.       /* Set the top of the floating-point register stack to 7.  The
  2287.          actual value doesn't really matter, but 7 is what a normal
  2288.          function return would end up with if the program started out
  2289.          with a freshly initialized FPU.  */
  2290.       regcache_raw_read_unsigned (regcache, I387_FSTAT_REGNUM (tdep), &fstat);
  2291.       fstat |= (7 << 11);
  2292.       regcache_raw_write_unsigned (regcache, I387_FSTAT_REGNUM (tdep), fstat);

  2293.       /* Mark %st(1) through %st(7) as empty.  Since we set the top of
  2294.          the floating-point register stack to 7, the appropriate value
  2295.          for the tag word is 0x3fff.  */
  2296.       regcache_raw_write_unsigned (regcache, I387_FTAG_REGNUM (tdep), 0x3fff);
  2297.     }
  2298.   else
  2299.     {
  2300.       int low_size = register_size (gdbarch, LOW_RETURN_REGNUM);
  2301.       int high_size = register_size (gdbarch, HIGH_RETURN_REGNUM);

  2302.       if (len <= low_size)
  2303.         regcache_raw_write_part (regcache, LOW_RETURN_REGNUM, 0, len, valbuf);
  2304.       else if (len <= (low_size + high_size))
  2305.         {
  2306.           regcache_raw_write (regcache, LOW_RETURN_REGNUM, valbuf);
  2307.           regcache_raw_write_part (regcache, HIGH_RETURN_REGNUM, 0,
  2308.                                    len - low_size, valbuf + low_size);
  2309.         }
  2310.       else
  2311.         internal_error (__FILE__, __LINE__,
  2312.                         _("Cannot store return value of %d bytes long."), len);
  2313.     }
  2314. }


  2315. /* This is the variable that is set with "set struct-convention", and
  2316.    its legitimate values.  */
  2317. static const char default_struct_convention[] = "default";
  2318. static const char pcc_struct_convention[] = "pcc";
  2319. static const char reg_struct_convention[] = "reg";
  2320. static const char *const valid_conventions[] =
  2321. {
  2322.   default_struct_convention,
  2323.   pcc_struct_convention,
  2324.   reg_struct_convention,
  2325.   NULL
  2326. };
  2327. static const char *struct_convention = default_struct_convention;

  2328. /* Return non-zero if TYPE, which is assumed to be a structure,
  2329.    a union type, or an array type, should be returned in registers
  2330.    for architecture GDBARCH.  */

  2331. static int
  2332. i386_reg_struct_return_p (struct gdbarch *gdbarch, struct type *type)
  2333. {
  2334.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  2335.   enum type_code code = TYPE_CODE (type);
  2336.   int len = TYPE_LENGTH (type);

  2337.   gdb_assert (code == TYPE_CODE_STRUCT
  2338.               || code == TYPE_CODE_UNION
  2339.               || code == TYPE_CODE_ARRAY);

  2340.   if (struct_convention == pcc_struct_convention
  2341.       || (struct_convention == default_struct_convention
  2342.           && tdep->struct_return == pcc_struct_return))
  2343.     return 0;

  2344.   /* Structures consisting of a single `float', `double' or 'long
  2345.      double' member are returned in %st(0).  */
  2346.   if (code == TYPE_CODE_STRUCT && TYPE_NFIELDS (type) == 1)
  2347.     {
  2348.       type = check_typedef (TYPE_FIELD_TYPE (type, 0));
  2349.       if (TYPE_CODE (type) == TYPE_CODE_FLT)
  2350.         return (len == 4 || len == 8 || len == 12);
  2351.     }

  2352.   return (len == 1 || len == 2 || len == 4 || len == 8);
  2353. }

  2354. /* Determine, for architecture GDBARCH, how a return value of TYPE
  2355.    should be returned.  If it is supposed to be returned in registers,
  2356.    and READBUF is non-zero, read the appropriate value from REGCACHE,
  2357.    and copy it into READBUF.  If WRITEBUF is non-zero, write the value
  2358.    from WRITEBUF into REGCACHE.  */

  2359. static enum return_value_convention
  2360. i386_return_value (struct gdbarch *gdbarch, struct value *function,
  2361.                    struct type *type, struct regcache *regcache,
  2362.                    gdb_byte *readbuf, const gdb_byte *writebuf)
  2363. {
  2364.   enum type_code code = TYPE_CODE (type);

  2365.   if (((code == TYPE_CODE_STRUCT
  2366.         || code == TYPE_CODE_UNION
  2367.         || code == TYPE_CODE_ARRAY)
  2368.        && !i386_reg_struct_return_p (gdbarch, type))
  2369.       /* Complex double and long double uses the struct return covention.  */
  2370.       || (code == TYPE_CODE_COMPLEX && TYPE_LENGTH (type) == 16)
  2371.       || (code == TYPE_CODE_COMPLEX && TYPE_LENGTH (type) == 24)
  2372.       /* 128-bit decimal float uses the struct return convention.  */
  2373.       || (code == TYPE_CODE_DECFLOAT && TYPE_LENGTH (type) == 16))
  2374.     {
  2375.       /* The System V ABI says that:

  2376.          "A function that returns a structure or union also sets %eax
  2377.          to the value of the original address of the caller's area
  2378.          before it returns.  Thus when the caller receives control
  2379.          again, the address of the returned object resides in register
  2380.          %eax and can be used to access the object."

  2381.          So the ABI guarantees that we can always find the return
  2382.          value just after the function has returned.  */

  2383.       /* Note that the ABI doesn't mention functions returning arrays,
  2384.          which is something possible in certain languages such as Ada.
  2385.          In this case, the value is returned as if it was wrapped in
  2386.          a record, so the convention applied to records also applies
  2387.          to arrays.  */

  2388.       if (readbuf)
  2389.         {
  2390.           ULONGEST addr;

  2391.           regcache_raw_read_unsigned (regcache, I386_EAX_REGNUM, &addr);
  2392.           read_memory (addr, readbuf, TYPE_LENGTH (type));
  2393.         }

  2394.       return RETURN_VALUE_ABI_RETURNS_ADDRESS;
  2395.     }

  2396.   /* This special case is for structures consisting of a single
  2397.      `float', `double' or 'long double' member.  These structures are
  2398.      returned in %st(0).  For these structures, we call ourselves
  2399.      recursively, changing TYPE into the type of the first member of
  2400.      the structure.  Since that should work for all structures that
  2401.      have only one member, we don't bother to check the member's type
  2402.      here.  */
  2403.   if (code == TYPE_CODE_STRUCT && TYPE_NFIELDS (type) == 1)
  2404.     {
  2405.       type = check_typedef (TYPE_FIELD_TYPE (type, 0));
  2406.       return i386_return_value (gdbarch, function, type, regcache,
  2407.                                 readbuf, writebuf);
  2408.     }

  2409.   if (readbuf)
  2410.     i386_extract_return_value (gdbarch, type, regcache, readbuf);
  2411.   if (writebuf)
  2412.     i386_store_return_value (gdbarch, type, regcache, writebuf);

  2413.   return RETURN_VALUE_REGISTER_CONVENTION;
  2414. }


  2415. struct type *
  2416. i387_ext_type (struct gdbarch *gdbarch)
  2417. {
  2418.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  2419.   if (!tdep->i387_ext_type)
  2420.     {
  2421.       tdep->i387_ext_type = tdesc_find_type (gdbarch, "i387_ext");
  2422.       gdb_assert (tdep->i387_ext_type != NULL);
  2423.     }

  2424.   return tdep->i387_ext_type;
  2425. }

  2426. /* Construct type for pseudo BND registers.  We can't use
  2427.    tdesc_find_type since a complement of one value has to be used
  2428.    to describe the upper bound.  */

  2429. static struct type *
  2430. i386_bnd_type (struct gdbarch *gdbarch)
  2431. {
  2432.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);


  2433.   if (!tdep->i386_bnd_type)
  2434.     {
  2435.       struct type *t, *bound_t;
  2436.       const struct builtin_type *bt = builtin_type (gdbarch);

  2437.       /* The type we're building is described bellow:  */
  2438. #if 0
  2439.       struct __bound128
  2440.       {
  2441.         void *lbound;
  2442.         void *ubound;                /* One complement of raw ubound field.  */
  2443.       };
  2444. #endif

  2445.       t = arch_composite_type (gdbarch,
  2446.                                "__gdb_builtin_type_bound128", TYPE_CODE_STRUCT);

  2447.       append_composite_type_field (t, "lbound", bt->builtin_data_ptr);
  2448.       append_composite_type_field (t, "ubound", bt->builtin_data_ptr);

  2449.       TYPE_NAME (t) = "builtin_type_bound128";
  2450.       tdep->i386_bnd_type = t;
  2451.     }

  2452.   return tdep->i386_bnd_type;
  2453. }

  2454. /* Construct vector type for pseudo ZMM registers.  We can't use
  2455.    tdesc_find_type since ZMM isn't described in target description.  */

  2456. static struct type *
  2457. i386_zmm_type (struct gdbarch *gdbarch)
  2458. {
  2459.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  2460.   if (!tdep->i386_zmm_type)
  2461.     {
  2462.       const struct builtin_type *bt = builtin_type (gdbarch);

  2463.       /* The type we're building is this:  */
  2464. #if 0
  2465.       union __gdb_builtin_type_vec512i
  2466.       {
  2467.         int128_t uint128[4];
  2468.         int64_t v4_int64[8];
  2469.         int32_t v8_int32[16];
  2470.         int16_t v16_int16[32];
  2471.         int8_t v32_int8[64];
  2472.         double v4_double[8];
  2473.         float v8_float[16];
  2474.       };
  2475. #endif

  2476.       struct type *t;

  2477.       t = arch_composite_type (gdbarch,
  2478.                                "__gdb_builtin_type_vec512i", TYPE_CODE_UNION);
  2479.       append_composite_type_field (t, "v16_float",
  2480.                                    init_vector_type (bt->builtin_float, 16));
  2481.       append_composite_type_field (t, "v8_double",
  2482.                                    init_vector_type (bt->builtin_double, 8));
  2483.       append_composite_type_field (t, "v64_int8",
  2484.                                    init_vector_type (bt->builtin_int8, 64));
  2485.       append_composite_type_field (t, "v32_int16",
  2486.                                    init_vector_type (bt->builtin_int16, 32));
  2487.       append_composite_type_field (t, "v16_int32",
  2488.                                    init_vector_type (bt->builtin_int32, 16));
  2489.       append_composite_type_field (t, "v8_int64",
  2490.                                    init_vector_type (bt->builtin_int64, 8));
  2491.       append_composite_type_field (t, "v4_int128",
  2492.                                    init_vector_type (bt->builtin_int128, 4));

  2493.       TYPE_VECTOR (t) = 1;
  2494.       TYPE_NAME (t) = "builtin_type_vec512i";
  2495.       tdep->i386_zmm_type = t;
  2496.     }

  2497.   return tdep->i386_zmm_type;
  2498. }

  2499. /* Construct vector type for pseudo YMM registers.  We can't use
  2500.    tdesc_find_type since YMM isn't described in target description.  */

  2501. static struct type *
  2502. i386_ymm_type (struct gdbarch *gdbarch)
  2503. {
  2504.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  2505.   if (!tdep->i386_ymm_type)
  2506.     {
  2507.       const struct builtin_type *bt = builtin_type (gdbarch);

  2508.       /* The type we're building is this: */
  2509. #if 0
  2510.       union __gdb_builtin_type_vec256i
  2511.       {
  2512.         int128_t uint128[2];
  2513.         int64_t v2_int64[4];
  2514.         int32_t v4_int32[8];
  2515.         int16_t v8_int16[16];
  2516.         int8_t v16_int8[32];
  2517.         double v2_double[4];
  2518.         float v4_float[8];
  2519.       };
  2520. #endif

  2521.       struct type *t;

  2522.       t = arch_composite_type (gdbarch,
  2523.                                "__gdb_builtin_type_vec256i", TYPE_CODE_UNION);
  2524.       append_composite_type_field (t, "v8_float",
  2525.                                    init_vector_type (bt->builtin_float, 8));
  2526.       append_composite_type_field (t, "v4_double",
  2527.                                    init_vector_type (bt->builtin_double, 4));
  2528.       append_composite_type_field (t, "v32_int8",
  2529.                                    init_vector_type (bt->builtin_int8, 32));
  2530.       append_composite_type_field (t, "v16_int16",
  2531.                                    init_vector_type (bt->builtin_int16, 16));
  2532.       append_composite_type_field (t, "v8_int32",
  2533.                                    init_vector_type (bt->builtin_int32, 8));
  2534.       append_composite_type_field (t, "v4_int64",
  2535.                                    init_vector_type (bt->builtin_int64, 4));
  2536.       append_composite_type_field (t, "v2_int128",
  2537.                                    init_vector_type (bt->builtin_int128, 2));

  2538.       TYPE_VECTOR (t) = 1;
  2539.       TYPE_NAME (t) = "builtin_type_vec256i";
  2540.       tdep->i386_ymm_type = t;
  2541.     }

  2542.   return tdep->i386_ymm_type;
  2543. }

  2544. /* Construct vector type for MMX registers.  */
  2545. static struct type *
  2546. i386_mmx_type (struct gdbarch *gdbarch)
  2547. {
  2548.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  2549.   if (!tdep->i386_mmx_type)
  2550.     {
  2551.       const struct builtin_type *bt = builtin_type (gdbarch);

  2552.       /* The type we're building is this: */
  2553. #if 0
  2554.       union __gdb_builtin_type_vec64i
  2555.       {
  2556.         int64_t uint64;
  2557.         int32_t v2_int32[2];
  2558.         int16_t v4_int16[4];
  2559.         int8_t v8_int8[8];
  2560.       };
  2561. #endif

  2562.       struct type *t;

  2563.       t = arch_composite_type (gdbarch,
  2564.                                "__gdb_builtin_type_vec64i", TYPE_CODE_UNION);

  2565.       append_composite_type_field (t, "uint64", bt->builtin_int64);
  2566.       append_composite_type_field (t, "v2_int32",
  2567.                                    init_vector_type (bt->builtin_int32, 2));
  2568.       append_composite_type_field (t, "v4_int16",
  2569.                                    init_vector_type (bt->builtin_int16, 4));
  2570.       append_composite_type_field (t, "v8_int8",
  2571.                                    init_vector_type (bt->builtin_int8, 8));

  2572.       TYPE_VECTOR (t) = 1;
  2573.       TYPE_NAME (t) = "builtin_type_vec64i";
  2574.       tdep->i386_mmx_type = t;
  2575.     }

  2576.   return tdep->i386_mmx_type;
  2577. }

  2578. /* Return the GDB type object for the "standard" data type of data in
  2579.    register REGNUM.  */

  2580. struct type *
  2581. i386_pseudo_register_type (struct gdbarch *gdbarch, int regnum)
  2582. {
  2583.   if (i386_bnd_regnum_p (gdbarch, regnum))
  2584.     return i386_bnd_type (gdbarch);
  2585.   if (i386_mmx_regnum_p (gdbarch, regnum))
  2586.     return i386_mmx_type (gdbarch);
  2587.   else if (i386_ymm_regnum_p (gdbarch, regnum))
  2588.     return i386_ymm_type (gdbarch);
  2589.   else if (i386_ymm_avx512_regnum_p (gdbarch, regnum))
  2590.     return i386_ymm_type (gdbarch);
  2591.   else if (i386_zmm_regnum_p (gdbarch, regnum))
  2592.     return i386_zmm_type (gdbarch);
  2593.   else
  2594.     {
  2595.       const struct builtin_type *bt = builtin_type (gdbarch);
  2596.       if (i386_byte_regnum_p (gdbarch, regnum))
  2597.         return bt->builtin_int8;
  2598.       else if (i386_word_regnum_p (gdbarch, regnum))
  2599.         return bt->builtin_int16;
  2600.       else if (i386_dword_regnum_p (gdbarch, regnum))
  2601.         return bt->builtin_int32;
  2602.       else if (i386_k_regnum_p (gdbarch, regnum))
  2603.         return bt->builtin_int64;
  2604.     }

  2605.   internal_error (__FILE__, __LINE__, _("invalid regnum"));
  2606. }

  2607. /* Map a cooked register onto a raw register or memory.  For the i386,
  2608.    the MMX registers need to be mapped onto floating point registers.  */

  2609. static int
  2610. i386_mmx_regnum_to_fp_regnum (struct regcache *regcache, int regnum)
  2611. {
  2612.   struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache));
  2613.   int mmxreg, fpreg;
  2614.   ULONGEST fstat;
  2615.   int tos;

  2616.   mmxreg = regnum - tdep->mm0_regnum;
  2617.   regcache_raw_read_unsigned (regcache, I387_FSTAT_REGNUM (tdep), &fstat);
  2618.   tos = (fstat >> 11) & 0x7;
  2619.   fpreg = (mmxreg + tos) % 8;

  2620.   return (I387_ST0_REGNUM (tdep) + fpreg);
  2621. }

  2622. /* A helper function for us by i386_pseudo_register_read_value and
  2623.    amd64_pseudo_register_read_value.  It does all the work but reads
  2624.    the data into an already-allocated value.  */

  2625. void
  2626. i386_pseudo_register_read_into_value (struct gdbarch *gdbarch,
  2627.                                       struct regcache *regcache,
  2628.                                       int regnum,
  2629.                                       struct value *result_value)
  2630. {
  2631.   gdb_byte raw_buf[MAX_REGISTER_SIZE];
  2632.   enum register_status status;
  2633.   gdb_byte *buf = value_contents_raw (result_value);

  2634.   if (i386_mmx_regnum_p (gdbarch, regnum))
  2635.     {
  2636.       int fpnum = i386_mmx_regnum_to_fp_regnum (regcache, regnum);

  2637.       /* Extract (always little endian).  */
  2638.       status = regcache_raw_read (regcache, fpnum, raw_buf);
  2639.       if (status != REG_VALID)
  2640.         mark_value_bytes_unavailable (result_value, 0,
  2641.                                       TYPE_LENGTH (value_type (result_value)));
  2642.       else
  2643.         memcpy (buf, raw_buf, register_size (gdbarch, regnum));
  2644.     }
  2645.   else
  2646.     {
  2647.       struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  2648.       if (i386_bnd_regnum_p (gdbarch, regnum))
  2649.         {
  2650.           regnum -= tdep->bnd0_regnum;

  2651.           /* Extract (always little endian).  Read lower 128bits.  */
  2652.           status = regcache_raw_read (regcache,
  2653.                                       I387_BND0R_REGNUM (tdep) + regnum,
  2654.                                       raw_buf);
  2655.           if (status != REG_VALID)
  2656.             mark_value_bytes_unavailable (result_value, 0, 16);
  2657.           else
  2658.             {
  2659.               enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
  2660.               LONGEST upper, lower;
  2661.               int size = TYPE_LENGTH (builtin_type (gdbarch)->builtin_data_ptr);

  2662.               lower = extract_unsigned_integer (raw_buf, 8, byte_order);
  2663.               upper = extract_unsigned_integer (raw_buf + 8, 8, byte_order);
  2664.               upper = ~upper;

  2665.               memcpy (buf, &lower, size);
  2666.               memcpy (buf + size, &upper, size);
  2667.             }
  2668.         }
  2669.       else if (i386_k_regnum_p (gdbarch, regnum))
  2670.         {
  2671.           regnum -= tdep->k0_regnum;

  2672.           /* Extract (always little endian).  */
  2673.           status = regcache_raw_read (regcache,
  2674.                                       tdep->k0_regnum + regnum,
  2675.                                       raw_buf);
  2676.           if (status != REG_VALID)
  2677.             mark_value_bytes_unavailable (result_value, 0, 8);
  2678.           else
  2679.             memcpy (buf, raw_buf, 8);
  2680.         }
  2681.       else if (i386_zmm_regnum_p (gdbarch, regnum))
  2682.         {
  2683.           regnum -= tdep->zmm0_regnum;

  2684.           if (regnum < num_lower_zmm_regs)
  2685.             {
  2686.               /* Extract (always little endian).  Read lower 128bits.  */
  2687.               status = regcache_raw_read (regcache,
  2688.                                           I387_XMM0_REGNUM (tdep) + regnum,
  2689.                                           raw_buf);
  2690.               if (status != REG_VALID)
  2691.                 mark_value_bytes_unavailable (result_value, 0, 16);
  2692.               else
  2693.                 memcpy (buf, raw_buf, 16);

  2694.               /* Extract (always little endian).  Read upper 128bits.  */
  2695.               status = regcache_raw_read (regcache,
  2696.                                           tdep->ymm0h_regnum + regnum,
  2697.                                           raw_buf);
  2698.               if (status != REG_VALID)
  2699.                 mark_value_bytes_unavailable (result_value, 16, 16);
  2700.               else
  2701.                 memcpy (buf + 16, raw_buf, 16);
  2702.             }
  2703.           else
  2704.             {
  2705.               /* Extract (always little endian).  Read lower 128bits.  */
  2706.               status = regcache_raw_read (regcache,
  2707.                                           I387_XMM16_REGNUM (tdep) + regnum
  2708.                                           - num_lower_zmm_regs,
  2709.                                           raw_buf);
  2710.               if (status != REG_VALID)
  2711.                 mark_value_bytes_unavailable (result_value, 0, 16);
  2712.               else
  2713.                 memcpy (buf, raw_buf, 16);

  2714.               /* Extract (always little endian).  Read upper 128bits.  */
  2715.               status = regcache_raw_read (regcache,
  2716.                                           I387_YMM16H_REGNUM (tdep) + regnum
  2717.                                           - num_lower_zmm_regs,
  2718.                                           raw_buf);
  2719.               if (status != REG_VALID)
  2720.                 mark_value_bytes_unavailable (result_value, 16, 16);
  2721.               else
  2722.                 memcpy (buf + 16, raw_buf, 16);
  2723.             }

  2724.           /* Read upper 256bits.  */
  2725.           status = regcache_raw_read (regcache,
  2726.                                       tdep->zmm0h_regnum + regnum,
  2727.                                       raw_buf);
  2728.           if (status != REG_VALID)
  2729.             mark_value_bytes_unavailable (result_value, 32, 32);
  2730.           else
  2731.             memcpy (buf + 32, raw_buf, 32);
  2732.         }
  2733.       else if (i386_ymm_regnum_p (gdbarch, regnum))
  2734.         {
  2735.           regnum -= tdep->ymm0_regnum;

  2736.           /* Extract (always little endian).  Read lower 128bits.  */
  2737.           status = regcache_raw_read (regcache,
  2738.                                       I387_XMM0_REGNUM (tdep) + regnum,
  2739.                                       raw_buf);
  2740.           if (status != REG_VALID)
  2741.             mark_value_bytes_unavailable (result_value, 0, 16);
  2742.           else
  2743.             memcpy (buf, raw_buf, 16);
  2744.           /* Read upper 128bits.  */
  2745.           status = regcache_raw_read (regcache,
  2746.                                       tdep->ymm0h_regnum + regnum,
  2747.                                       raw_buf);
  2748.           if (status != REG_VALID)
  2749.             mark_value_bytes_unavailable (result_value, 16, 32);
  2750.           else
  2751.             memcpy (buf + 16, raw_buf, 16);
  2752.         }
  2753.       else if (i386_ymm_avx512_regnum_p (gdbarch, regnum))
  2754.         {
  2755.           regnum -= tdep->ymm16_regnum;
  2756.           /* Extract (always little endian).  Read lower 128bits.  */
  2757.           status = regcache_raw_read (regcache,
  2758.                                       I387_XMM16_REGNUM (tdep) + regnum,
  2759.                                       raw_buf);
  2760.           if (status != REG_VALID)
  2761.             mark_value_bytes_unavailable (result_value, 0, 16);
  2762.           else
  2763.             memcpy (buf, raw_buf, 16);
  2764.           /* Read upper 128bits.  */
  2765.           status = regcache_raw_read (regcache,
  2766.                                       tdep->ymm16h_regnum + regnum,
  2767.                                       raw_buf);
  2768.           if (status != REG_VALID)
  2769.             mark_value_bytes_unavailable (result_value, 16, 16);
  2770.           else
  2771.             memcpy (buf + 16, raw_buf, 16);
  2772.         }
  2773.       else if (i386_word_regnum_p (gdbarch, regnum))
  2774.         {
  2775.           int gpnum = regnum - tdep->ax_regnum;

  2776.           /* Extract (always little endian).  */
  2777.           status = regcache_raw_read (regcache, gpnum, raw_buf);
  2778.           if (status != REG_VALID)
  2779.             mark_value_bytes_unavailable (result_value, 0,
  2780.                                           TYPE_LENGTH (value_type (result_value)));
  2781.           else
  2782.             memcpy (buf, raw_buf, 2);
  2783.         }
  2784.       else if (i386_byte_regnum_p (gdbarch, regnum))
  2785.         {
  2786.           /* Check byte pseudo registers last since this function will
  2787.              be called from amd64_pseudo_register_read, which handles
  2788.              byte pseudo registers differently.  */
  2789.           int gpnum = regnum - tdep->al_regnum;

  2790.           /* Extract (always little endian).  We read both lower and
  2791.              upper registers.  */
  2792.           status = regcache_raw_read (regcache, gpnum % 4, raw_buf);
  2793.           if (status != REG_VALID)
  2794.             mark_value_bytes_unavailable (result_value, 0,
  2795.                                           TYPE_LENGTH (value_type (result_value)));
  2796.           else if (gpnum >= 4)
  2797.             memcpy (buf, raw_buf + 1, 1);
  2798.           else
  2799.             memcpy (buf, raw_buf, 1);
  2800.         }
  2801.       else
  2802.         internal_error (__FILE__, __LINE__, _("invalid regnum"));
  2803.     }
  2804. }

  2805. static struct value *
  2806. i386_pseudo_register_read_value (struct gdbarch *gdbarch,
  2807.                                  struct regcache *regcache,
  2808.                                  int regnum)
  2809. {
  2810.   struct value *result;

  2811.   result = allocate_value (register_type (gdbarch, regnum));
  2812.   VALUE_LVAL (result) = lval_register;
  2813.   VALUE_REGNUM (result) = regnum;

  2814.   i386_pseudo_register_read_into_value (gdbarch, regcache, regnum, result);

  2815.   return result;
  2816. }

  2817. void
  2818. i386_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
  2819.                             int regnum, const gdb_byte *buf)
  2820. {
  2821.   gdb_byte raw_buf[MAX_REGISTER_SIZE];

  2822.   if (i386_mmx_regnum_p (gdbarch, regnum))
  2823.     {
  2824.       int fpnum = i386_mmx_regnum_to_fp_regnum (regcache, regnum);

  2825.       /* Read ...  */
  2826.       regcache_raw_read (regcache, fpnum, raw_buf);
  2827.       /* ... Modify ... (always little endian).  */
  2828.       memcpy (raw_buf, buf, register_size (gdbarch, regnum));
  2829.       /* ... Write.  */
  2830.       regcache_raw_write (regcache, fpnum, raw_buf);
  2831.     }
  2832.   else
  2833.     {
  2834.       struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  2835.       if (i386_bnd_regnum_p (gdbarch, regnum))
  2836.         {
  2837.           ULONGEST upper, lower;
  2838.           int size = TYPE_LENGTH (builtin_type (gdbarch)->builtin_data_ptr);
  2839.           enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());

  2840.           /* New values from input value.  */
  2841.           regnum -= tdep->bnd0_regnum;
  2842.           lower = extract_unsigned_integer (buf, size, byte_order);
  2843.           upper = extract_unsigned_integer (buf + size, size, byte_order);

  2844.           /* Fetching register buffer.  */
  2845.           regcache_raw_read (regcache,
  2846.                              I387_BND0R_REGNUM (tdep) + regnum,
  2847.                              raw_buf);

  2848.           upper = ~upper;

  2849.           /* Set register bits.  */
  2850.           memcpy (raw_buf, &lower, 8);
  2851.           memcpy (raw_buf + 8, &upper, 8);


  2852.           regcache_raw_write (regcache,
  2853.                               I387_BND0R_REGNUM (tdep) + regnum,
  2854.                               raw_buf);
  2855.         }
  2856.       else if (i386_k_regnum_p (gdbarch, regnum))
  2857.         {
  2858.           regnum -= tdep->k0_regnum;

  2859.           regcache_raw_write (regcache,
  2860.                               tdep->k0_regnum + regnum,
  2861.                               buf);
  2862.         }
  2863.       else if (i386_zmm_regnum_p (gdbarch, regnum))
  2864.         {
  2865.           regnum -= tdep->zmm0_regnum;

  2866.           if (regnum < num_lower_zmm_regs)
  2867.             {
  2868.               /* Write lower 128bits.  */
  2869.               regcache_raw_write (regcache,
  2870.                                   I387_XMM0_REGNUM (tdep) + regnum,
  2871.                                   buf);
  2872.               /* Write upper 128bits.  */
  2873.               regcache_raw_write (regcache,
  2874.                                   I387_YMM0_REGNUM (tdep) + regnum,
  2875.                                   buf + 16);
  2876.             }
  2877.           else
  2878.             {
  2879.               /* Write lower 128bits.  */
  2880.               regcache_raw_write (regcache,
  2881.                                   I387_XMM16_REGNUM (tdep) + regnum
  2882.                                   - num_lower_zmm_regs,
  2883.                                   buf);
  2884.               /* Write upper 128bits.  */
  2885.               regcache_raw_write (regcache,
  2886.                                   I387_YMM16H_REGNUM (tdep) + regnum
  2887.                                   - num_lower_zmm_regs,
  2888.                                   buf + 16);
  2889.             }
  2890.           /* Write upper 256bits.  */
  2891.           regcache_raw_write (regcache,
  2892.                               tdep->zmm0h_regnum + regnum,
  2893.                               buf + 32);
  2894.         }
  2895.       else if (i386_ymm_regnum_p (gdbarch, regnum))
  2896.         {
  2897.           regnum -= tdep->ymm0_regnum;

  2898.           /* ... Write lower 128bits.  */
  2899.           regcache_raw_write (regcache,
  2900.                              I387_XMM0_REGNUM (tdep) + regnum,
  2901.                              buf);
  2902.           /* ... Write upper 128bits.  */
  2903.           regcache_raw_write (regcache,
  2904.                              tdep->ymm0h_regnum + regnum,
  2905.                              buf + 16);
  2906.         }
  2907.       else if (i386_ymm_avx512_regnum_p (gdbarch, regnum))
  2908.         {
  2909.           regnum -= tdep->ymm16_regnum;

  2910.           /* ... Write lower 128bits.  */
  2911.           regcache_raw_write (regcache,
  2912.                               I387_XMM16_REGNUM (tdep) + regnum,
  2913.                               buf);
  2914.           /* ... Write upper 128bits.  */
  2915.           regcache_raw_write (regcache,
  2916.                               tdep->ymm16h_regnum + regnum,
  2917.                               buf + 16);
  2918.         }
  2919.       else if (i386_word_regnum_p (gdbarch, regnum))
  2920.         {
  2921.           int gpnum = regnum - tdep->ax_regnum;

  2922.           /* Read ...  */
  2923.           regcache_raw_read (regcache, gpnum, raw_buf);
  2924.           /* ... Modify ... (always little endian).  */
  2925.           memcpy (raw_buf, buf, 2);
  2926.           /* ... Write.  */
  2927.           regcache_raw_write (regcache, gpnum, raw_buf);
  2928.         }
  2929.       else if (i386_byte_regnum_p (gdbarch, regnum))
  2930.         {
  2931.           /* Check byte pseudo registers last since this function will
  2932.              be called from amd64_pseudo_register_read, which handles
  2933.              byte pseudo registers differently.  */
  2934.           int gpnum = regnum - tdep->al_regnum;

  2935.           /* Read ...  We read both lower and upper registers.  */
  2936.           regcache_raw_read (regcache, gpnum % 4, raw_buf);
  2937.           /* ... Modify ... (always little endian).  */
  2938.           if (gpnum >= 4)
  2939.             memcpy (raw_buf + 1, buf, 1);
  2940.           else
  2941.             memcpy (raw_buf, buf, 1);
  2942.           /* ... Write.  */
  2943.           regcache_raw_write (regcache, gpnum % 4, raw_buf);
  2944.         }
  2945.       else
  2946.         internal_error (__FILE__, __LINE__, _("invalid regnum"));
  2947.     }
  2948. }


  2949. /* Return the register number of the register allocated by GCC after
  2950.    REGNUM, or -1 if there is no such register.  */

  2951. static int
  2952. i386_next_regnum (int regnum)
  2953. {
  2954.   /* GCC allocates the registers in the order:

  2955.      %eax, %edx, %ecx, %ebx, %esi, %edi, %ebp, %esp, ...

  2956.      Since storing a variable in %esp doesn't make any sense we return
  2957.      -1 for %ebp and for %esp itself.  */
  2958.   static int next_regnum[] =
  2959.   {
  2960.     I386_EDX_REGNUM,                /* Slot for %eax.  */
  2961.     I386_EBX_REGNUM,                /* Slot for %ecx.  */
  2962.     I386_ECX_REGNUM,                /* Slot for %edx.  */
  2963.     I386_ESI_REGNUM,                /* Slot for %ebx.  */
  2964.     -1, -1,                        /* Slots for %esp and %ebp.  */
  2965.     I386_EDI_REGNUM,                /* Slot for %esi.  */
  2966.     I386_EBP_REGNUM                /* Slot for %edi.  */
  2967.   };

  2968.   if (regnum >= 0 && regnum < sizeof (next_regnum) / sizeof (next_regnum[0]))
  2969.     return next_regnum[regnum];

  2970.   return -1;
  2971. }

  2972. /* Return nonzero if a value of type TYPE stored in register REGNUM
  2973.    needs any special handling.  */

  2974. static int
  2975. i386_convert_register_p (struct gdbarch *gdbarch,
  2976.                          int regnum, struct type *type)
  2977. {
  2978.   int len = TYPE_LENGTH (type);

  2979.   /* Values may be spread across multiple registers.  Most debugging
  2980.      formats aren't expressive enough to specify the locations, so
  2981.      some heuristics is involved.  Right now we only handle types that
  2982.      have a length that is a multiple of the word size, since GCC
  2983.      doesn't seem to put any other types into registers.  */
  2984.   if (len > 4 && len % 4 == 0)
  2985.     {
  2986.       int last_regnum = regnum;

  2987.       while (len > 4)
  2988.         {
  2989.           last_regnum = i386_next_regnum (last_regnum);
  2990.           len -= 4;
  2991.         }

  2992.       if (last_regnum != -1)
  2993.         return 1;
  2994.     }

  2995.   return i387_convert_register_p (gdbarch, regnum, type);
  2996. }

  2997. /* Read a value of type TYPE from register REGNUM in frame FRAME, and
  2998.    return its contents in TO.  */

  2999. static int
  3000. i386_register_to_value (struct frame_info *frame, int regnum,
  3001.                         struct type *type, gdb_byte *to,
  3002.                         int *optimizedp, int *unavailablep)
  3003. {
  3004.   struct gdbarch *gdbarch = get_frame_arch (frame);
  3005.   int len = TYPE_LENGTH (type);

  3006.   if (i386_fp_regnum_p (gdbarch, regnum))
  3007.     return i387_register_to_value (frame, regnum, type, to,
  3008.                                    optimizedp, unavailablep);

  3009.   /* Read a value spread across multiple registers.  */

  3010.   gdb_assert (len > 4 && len % 4 == 0);

  3011.   while (len > 0)
  3012.     {
  3013.       gdb_assert (regnum != -1);
  3014.       gdb_assert (register_size (gdbarch, regnum) == 4);

  3015.       if (!get_frame_register_bytes (frame, regnum, 0,
  3016.                                      register_size (gdbarch, regnum),
  3017.                                      to, optimizedp, unavailablep))
  3018.         return 0;

  3019.       regnum = i386_next_regnum (regnum);
  3020.       len -= 4;
  3021.       to += 4;
  3022.     }

  3023.   *optimizedp = *unavailablep = 0;
  3024.   return 1;
  3025. }

  3026. /* Write the contents FROM of a value of type TYPE into register
  3027.    REGNUM in frame FRAME.  */

  3028. static void
  3029. i386_value_to_register (struct frame_info *frame, int regnum,
  3030.                         struct type *type, const gdb_byte *from)
  3031. {
  3032.   int len = TYPE_LENGTH (type);

  3033.   if (i386_fp_regnum_p (get_frame_arch (frame), regnum))
  3034.     {
  3035.       i387_value_to_register (frame, regnum, type, from);
  3036.       return;
  3037.     }

  3038.   /* Write a value spread across multiple registers.  */

  3039.   gdb_assert (len > 4 && len % 4 == 0);

  3040.   while (len > 0)
  3041.     {
  3042.       gdb_assert (regnum != -1);
  3043.       gdb_assert (register_size (get_frame_arch (frame), regnum) == 4);

  3044.       put_frame_register (frame, regnum, from);
  3045.       regnum = i386_next_regnum (regnum);
  3046.       len -= 4;
  3047.       from += 4;
  3048.     }
  3049. }

  3050. /* Supply register REGNUM from the buffer specified by GREGS and LEN
  3051.    in the general-purpose register set REGSET to register cache
  3052.    REGCACHE.  If REGNUM is -1, do this for all registers in REGSET.  */

  3053. void
  3054. i386_supply_gregset (const struct regset *regset, struct regcache *regcache,
  3055.                      int regnum, const void *gregs, size_t len)
  3056. {
  3057.   struct gdbarch *gdbarch = get_regcache_arch (regcache);
  3058.   const struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  3059.   const gdb_byte *regs = gregs;
  3060.   int i;

  3061.   gdb_assert (len == tdep->sizeof_gregset);

  3062.   for (i = 0; i < tdep->gregset_num_regs; i++)
  3063.     {
  3064.       if ((regnum == i || regnum == -1)
  3065.           && tdep->gregset_reg_offset[i] != -1)
  3066.         regcache_raw_supply (regcache, i, regs + tdep->gregset_reg_offset[i]);
  3067.     }
  3068. }

  3069. /* Collect register REGNUM from the register cache REGCACHE and store
  3070.    it in the buffer specified by GREGS and LEN as described by the
  3071.    general-purpose register set REGSET.  If REGNUM is -1, do this for
  3072.    all registers in REGSET.  */

  3073. static void
  3074. i386_collect_gregset (const struct regset *regset,
  3075.                       const struct regcache *regcache,
  3076.                       int regnum, void *gregs, size_t len)
  3077. {
  3078.   struct gdbarch *gdbarch = get_regcache_arch (regcache);
  3079.   const struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  3080.   gdb_byte *regs = gregs;
  3081.   int i;

  3082.   gdb_assert (len == tdep->sizeof_gregset);

  3083.   for (i = 0; i < tdep->gregset_num_regs; i++)
  3084.     {
  3085.       if ((regnum == i || regnum == -1)
  3086.           && tdep->gregset_reg_offset[i] != -1)
  3087.         regcache_raw_collect (regcache, i, regs + tdep->gregset_reg_offset[i]);
  3088.     }
  3089. }

  3090. /* Supply register REGNUM from the buffer specified by FPREGS and LEN
  3091.    in the floating-point register set REGSET to register cache
  3092.    REGCACHE.  If REGNUM is -1, do this for all registers in REGSET.  */

  3093. static void
  3094. i386_supply_fpregset (const struct regset *regset, struct regcache *regcache,
  3095.                       int regnum, const void *fpregs, size_t len)
  3096. {
  3097.   struct gdbarch *gdbarch = get_regcache_arch (regcache);
  3098.   const struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  3099.   if (len == I387_SIZEOF_FXSAVE)
  3100.     {
  3101.       i387_supply_fxsave (regcache, regnum, fpregs);
  3102.       return;
  3103.     }

  3104.   gdb_assert (len == tdep->sizeof_fpregset);
  3105.   i387_supply_fsave (regcache, regnum, fpregs);
  3106. }

  3107. /* Collect register REGNUM from the register cache REGCACHE and store
  3108.    it in the buffer specified by FPREGS and LEN as described by the
  3109.    floating-point register set REGSET.  If REGNUM is -1, do this for
  3110.    all registers in REGSET.  */

  3111. static void
  3112. i386_collect_fpregset (const struct regset *regset,
  3113.                        const struct regcache *regcache,
  3114.                        int regnum, void *fpregs, size_t len)
  3115. {
  3116.   struct gdbarch *gdbarch = get_regcache_arch (regcache);
  3117.   const struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  3118.   if (len == I387_SIZEOF_FXSAVE)
  3119.     {
  3120.       i387_collect_fxsave (regcache, regnum, fpregs);
  3121.       return;
  3122.     }

  3123.   gdb_assert (len == tdep->sizeof_fpregset);
  3124.   i387_collect_fsave (regcache, regnum, fpregs);
  3125. }

  3126. /* Register set definitions.  */

  3127. const struct regset i386_gregset =
  3128.   {
  3129.     NULL, i386_supply_gregset, i386_collect_gregset
  3130.   };

  3131. const struct regset i386_fpregset =
  3132.   {
  3133.     NULL, i386_supply_fpregset, i386_collect_fpregset
  3134.   };

  3135. /* Default iterator over core file register note sections.  */

  3136. void
  3137. i386_iterate_over_regset_sections (struct gdbarch *gdbarch,
  3138.                                    iterate_over_regset_sections_cb *cb,
  3139.                                    void *cb_data,
  3140.                                    const struct regcache *regcache)
  3141. {
  3142.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  3143.   cb (".reg", tdep->sizeof_gregset, &i386_gregset, NULL, cb_data);
  3144.   if (tdep->sizeof_fpregset)
  3145.     cb (".reg2", tdep->sizeof_fpregset, tdep->fpregset, NULL, cb_data);
  3146. }


  3147. /* Stuff for WIN32 PE style DLL's but is pretty generic really.  */

  3148. CORE_ADDR
  3149. i386_pe_skip_trampoline_code (struct frame_info *frame,
  3150.                               CORE_ADDR pc, char *name)
  3151. {
  3152.   struct gdbarch *gdbarch = get_frame_arch (frame);
  3153.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);

  3154.   /* jmp *(dest) */
  3155.   if (pc && read_memory_unsigned_integer (pc, 2, byte_order) == 0x25ff)
  3156.     {
  3157.       unsigned long indirect =
  3158.         read_memory_unsigned_integer (pc + 2, 4, byte_order);
  3159.       struct minimal_symbol *indsym =
  3160.         indirect ? lookup_minimal_symbol_by_pc (indirect).minsym : 0;
  3161.       const char *symname = indsym ? MSYMBOL_LINKAGE_NAME (indsym) : 0;

  3162.       if (symname)
  3163.         {
  3164.           if (strncmp (symname, "__imp_", 6) == 0
  3165.               || strncmp (symname, "_imp_", 5) == 0)
  3166.             return name ? 1 :
  3167.                    read_memory_unsigned_integer (indirect, 4, byte_order);
  3168.         }
  3169.     }
  3170.   return 0;                        /* Not a trampoline.  */
  3171. }


  3172. /* Return whether the THIS_FRAME corresponds to a sigtramp
  3173.    routine.  */

  3174. int
  3175. i386_sigtramp_p (struct frame_info *this_frame)
  3176. {
  3177.   CORE_ADDR pc = get_frame_pc (this_frame);
  3178.   const char *name;

  3179.   find_pc_partial_function (pc, &name, NULL, NULL);
  3180.   return (name && strcmp ("_sigtramp", name) == 0);
  3181. }


  3182. /* We have two flavours of disassembly.  The machinery on this page
  3183.    deals with switching between those.  */

  3184. static int
  3185. i386_print_insn (bfd_vma pc, struct disassemble_info *info)
  3186. {
  3187.   gdb_assert (disassembly_flavor == att_flavor
  3188.               || disassembly_flavor == intel_flavor);

  3189.   /* FIXME: kettenis/20020915: Until disassembler_options is properly
  3190.      constified, cast to prevent a compiler warning.  */
  3191.   info->disassembler_options = (char *) disassembly_flavor;

  3192.   return print_insn_i386 (pc, info);
  3193. }


  3194. /* There are a few i386 architecture variants that differ only
  3195.    slightly from the generic i386 target.  For now, we don't give them
  3196.    their own source file, but include them here.  As a consequence,
  3197.    they'll always be included.  */

  3198. /* System V Release 4 (SVR4).  */

  3199. /* Return whether THIS_FRAME corresponds to a SVR4 sigtramp
  3200.    routine.  */

  3201. static int
  3202. i386_svr4_sigtramp_p (struct frame_info *this_frame)
  3203. {
  3204.   CORE_ADDR pc = get_frame_pc (this_frame);
  3205.   const char *name;

  3206.   /* The origin of these symbols is currently unknown.  */
  3207.   find_pc_partial_function (pc, &name, NULL, NULL);
  3208.   return (name && (strcmp ("_sigreturn", name) == 0
  3209.                    || strcmp ("sigvechandler", name) == 0));
  3210. }

  3211. /* Assuming THIS_FRAME is for a SVR4 sigtramp routine, return the
  3212.    address of the associated sigcontext (ucontext) structure.  */

  3213. static CORE_ADDR
  3214. i386_svr4_sigcontext_addr (struct frame_info *this_frame)
  3215. {
  3216.   struct gdbarch *gdbarch = get_frame_arch (this_frame);
  3217.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  3218.   gdb_byte buf[4];
  3219.   CORE_ADDR sp;

  3220.   get_frame_register (this_frame, I386_ESP_REGNUM, buf);
  3221.   sp = extract_unsigned_integer (buf, 4, byte_order);

  3222.   return read_memory_unsigned_integer (sp + 8, 4, byte_order);
  3223. }



  3224. /* Implementation of `gdbarch_stap_is_single_operand', as defined in
  3225.    gdbarch.h.  */

  3226. int
  3227. i386_stap_is_single_operand (struct gdbarch *gdbarch, const char *s)
  3228. {
  3229.   return (*s == '$' /* Literal number.  */
  3230.           || (isdigit (*s) && s[1] == '(' && s[2] == '%') /* Displacement.  */
  3231.           || (*s == '(' && s[1] == '%') /* Register indirection.  */
  3232.           || (*s == '%' && isalpha (s[1]))); /* Register access.  */
  3233. }

  3234. /* Helper function for i386_stap_parse_special_token.

  3235.    This function parses operands of the form `-8+3+1(%rbp)', which
  3236.    must be interpreted as `*(-8 + 3 - 1 + (void *) $eax)'.

  3237.    Return 1 if the operand was parsed successfully, zero
  3238.    otherwise.  */

  3239. static int
  3240. i386_stap_parse_special_token_triplet (struct gdbarch *gdbarch,
  3241.                                        struct stap_parse_info *p)
  3242. {
  3243.   const char *s = p->arg;

  3244.   if (isdigit (*s) || *s == '-' || *s == '+')
  3245.     {
  3246.       int got_minus[3];
  3247.       int i;
  3248.       long displacements[3];
  3249.       const char *start;
  3250.       char *regname;
  3251.       int len;
  3252.       struct stoken str;
  3253.       char *endp;

  3254.       got_minus[0] = 0;
  3255.       if (*s == '+')
  3256.         ++s;
  3257.       else if (*s == '-')
  3258.         {
  3259.           ++s;
  3260.           got_minus[0] = 1;
  3261.         }

  3262.       if (!isdigit ((unsigned char) *s))
  3263.         return 0;

  3264.       displacements[0] = strtol (s, &endp, 10);
  3265.       s = endp;

  3266.       if (*s != '+' && *s != '-')
  3267.         {
  3268.           /* We are not dealing with a triplet.  */
  3269.           return 0;
  3270.         }

  3271.       got_minus[1] = 0;
  3272.       if (*s == '+')
  3273.         ++s;
  3274.       else
  3275.         {
  3276.           ++s;
  3277.           got_minus[1] = 1;
  3278.         }

  3279.       if (!isdigit ((unsigned char) *s))
  3280.         return 0;

  3281.       displacements[1] = strtol (s, &endp, 10);
  3282.       s = endp;

  3283.       if (*s != '+' && *s != '-')
  3284.         {
  3285.           /* We are not dealing with a triplet.  */
  3286.           return 0;
  3287.         }

  3288.       got_minus[2] = 0;
  3289.       if (*s == '+')
  3290.         ++s;
  3291.       else
  3292.         {
  3293.           ++s;
  3294.           got_minus[2] = 1;
  3295.         }

  3296.       if (!isdigit ((unsigned char) *s))
  3297.         return 0;

  3298.       displacements[2] = strtol (s, &endp, 10);
  3299.       s = endp;

  3300.       if (*s != '(' || s[1] != '%')
  3301.         return 0;

  3302.       s += 2;
  3303.       start = s;

  3304.       while (isalnum (*s))
  3305.         ++s;

  3306.       if (*s++ != ')')
  3307.         return 0;

  3308.       len = s - start - 1;
  3309.       regname = alloca (len + 1);

  3310.       strncpy (regname, start, len);
  3311.       regname[len] = '\0';

  3312.       if (user_reg_map_name_to_regnum (gdbarch, regname, len) == -1)
  3313.         error (_("Invalid register name `%s' on expression `%s'."),
  3314.                regname, p->saved_arg);

  3315.       for (i = 0; i < 3; i++)
  3316.         {
  3317.           write_exp_elt_opcode (&p->pstate, OP_LONG);
  3318.           write_exp_elt_type
  3319.             (&p->pstate, builtin_type (gdbarch)->builtin_long);
  3320.           write_exp_elt_longcst (&p->pstate, displacements[i]);
  3321.           write_exp_elt_opcode (&p->pstate, OP_LONG);
  3322.           if (got_minus[i])
  3323.             write_exp_elt_opcode (&p->pstate, UNOP_NEG);
  3324.         }

  3325.       write_exp_elt_opcode (&p->pstate, OP_REGISTER);
  3326.       str.ptr = regname;
  3327.       str.length = len;
  3328.       write_exp_string (&p->pstate, str);
  3329.       write_exp_elt_opcode (&p->pstate, OP_REGISTER);

  3330.       write_exp_elt_opcode (&p->pstate, UNOP_CAST);
  3331.       write_exp_elt_type (&p->pstate,
  3332.                           builtin_type (gdbarch)->builtin_data_ptr);
  3333.       write_exp_elt_opcode (&p->pstate, UNOP_CAST);

  3334.       write_exp_elt_opcode (&p->pstate, BINOP_ADD);
  3335.       write_exp_elt_opcode (&p->pstate, BINOP_ADD);
  3336.       write_exp_elt_opcode (&p->pstate, BINOP_ADD);

  3337.       write_exp_elt_opcode (&p->pstate, UNOP_CAST);
  3338.       write_exp_elt_type (&p->pstate,
  3339.                           lookup_pointer_type (p->arg_type));
  3340.       write_exp_elt_opcode (&p->pstate, UNOP_CAST);

  3341.       write_exp_elt_opcode (&p->pstate, UNOP_IND);

  3342.       p->arg = s;

  3343.       return 1;
  3344.     }

  3345.   return 0;
  3346. }

  3347. /* Helper function for i386_stap_parse_special_token.

  3348.    This function parses operands of the form `register base +
  3349.    (register index * size) + offset', as represented in
  3350.    `(%rcx,%rax,8)', or `[OFFSET](BASE_REG,INDEX_REG[,SIZE])'.

  3351.    Return 1 if the operand was parsed successfully, zero
  3352.    otherwise.  */

  3353. static int
  3354. i386_stap_parse_special_token_three_arg_disp (struct gdbarch *gdbarch,
  3355.                                               struct stap_parse_info *p)
  3356. {
  3357.   const char *s = p->arg;

  3358.   if (isdigit (*s) || *s == '(' || *s == '-' || *s == '+')
  3359.     {
  3360.       int offset_minus = 0;
  3361.       long offset = 0;
  3362.       int size_minus = 0;
  3363.       long size = 0;
  3364.       const char *start;
  3365.       char *base;
  3366.       int len_base;
  3367.       char *index;
  3368.       int len_index;
  3369.       struct stoken base_token, index_token;

  3370.       if (*s == '+')
  3371.         ++s;
  3372.       else if (*s == '-')
  3373.         {
  3374.           ++s;
  3375.           offset_minus = 1;
  3376.         }

  3377.       if (offset_minus && !isdigit (*s))
  3378.         return 0;

  3379.       if (isdigit (*s))
  3380.         {
  3381.           char *endp;

  3382.           offset = strtol (s, &endp, 10);
  3383.           s = endp;
  3384.         }

  3385.       if (*s != '(' || s[1] != '%')
  3386.         return 0;

  3387.       s += 2;
  3388.       start = s;

  3389.       while (isalnum (*s))
  3390.         ++s;

  3391.       if (*s != ',' || s[1] != '%')
  3392.         return 0;

  3393.       len_base = s - start;
  3394.       base = alloca (len_base + 1);
  3395.       strncpy (base, start, len_base);
  3396.       base[len_base] = '\0';

  3397.       if (user_reg_map_name_to_regnum (gdbarch, base, len_base) == -1)
  3398.         error (_("Invalid register name `%s' on expression `%s'."),
  3399.                base, p->saved_arg);

  3400.       s += 2;
  3401.       start = s;

  3402.       while (isalnum (*s))
  3403.         ++s;

  3404.       len_index = s - start;
  3405.       index = alloca (len_index + 1);
  3406.       strncpy (index, start, len_index);
  3407.       index[len_index] = '\0';

  3408.       if (user_reg_map_name_to_regnum (gdbarch, index, len_index) == -1)
  3409.         error (_("Invalid register name `%s' on expression `%s'."),
  3410.                index, p->saved_arg);

  3411.       if (*s != ',' && *s != ')')
  3412.         return 0;

  3413.       if (*s == ',')
  3414.         {
  3415.           char *endp;

  3416.           ++s;
  3417.           if (*s == '+')
  3418.             ++s;
  3419.           else if (*s == '-')
  3420.             {
  3421.               ++s;
  3422.               size_minus = 1;
  3423.             }

  3424.           size = strtol (s, &endp, 10);
  3425.           s = endp;

  3426.           if (*s != ')')
  3427.             return 0;
  3428.         }

  3429.       ++s;

  3430.       if (offset)
  3431.         {
  3432.           write_exp_elt_opcode (&p->pstate, OP_LONG);
  3433.           write_exp_elt_type (&p->pstate,
  3434.                               builtin_type (gdbarch)->builtin_long);
  3435.           write_exp_elt_longcst (&p->pstate, offset);
  3436.           write_exp_elt_opcode (&p->pstate, OP_LONG);
  3437.           if (offset_minus)
  3438.             write_exp_elt_opcode (&p->pstate, UNOP_NEG);
  3439.         }

  3440.       write_exp_elt_opcode (&p->pstate, OP_REGISTER);
  3441.       base_token.ptr = base;
  3442.       base_token.length = len_base;
  3443.       write_exp_string (&p->pstate, base_token);
  3444.       write_exp_elt_opcode (&p->pstate, OP_REGISTER);

  3445.       if (offset)
  3446.         write_exp_elt_opcode (&p->pstate, BINOP_ADD);

  3447.       write_exp_elt_opcode (&p->pstate, OP_REGISTER);
  3448.       index_token.ptr = index;
  3449.       index_token.length = len_index;
  3450.       write_exp_string (&p->pstate, index_token);
  3451.       write_exp_elt_opcode (&p->pstate, OP_REGISTER);

  3452.       if (size)
  3453.         {
  3454.           write_exp_elt_opcode (&p->pstate, OP_LONG);
  3455.           write_exp_elt_type (&p->pstate,
  3456.                               builtin_type (gdbarch)->builtin_long);
  3457.           write_exp_elt_longcst (&p->pstate, size);
  3458.           write_exp_elt_opcode (&p->pstate, OP_LONG);
  3459.           if (size_minus)
  3460.             write_exp_elt_opcode (&p->pstate, UNOP_NEG);
  3461.           write_exp_elt_opcode (&p->pstate, BINOP_MUL);
  3462.         }

  3463.       write_exp_elt_opcode (&p->pstate, BINOP_ADD);

  3464.       write_exp_elt_opcode (&p->pstate, UNOP_CAST);
  3465.       write_exp_elt_type (&p->pstate,
  3466.                           lookup_pointer_type (p->arg_type));
  3467.       write_exp_elt_opcode (&p->pstate, UNOP_CAST);

  3468.       write_exp_elt_opcode (&p->pstate, UNOP_IND);

  3469.       p->arg = s;

  3470.       return 1;
  3471.     }

  3472.   return 0;
  3473. }

  3474. /* Implementation of `gdbarch_stap_parse_special_token', as defined in
  3475.    gdbarch.h.  */

  3476. int
  3477. i386_stap_parse_special_token (struct gdbarch *gdbarch,
  3478.                                struct stap_parse_info *p)
  3479. {
  3480.   /* In order to parse special tokens, we use a state-machine that go
  3481.      through every known token and try to get a match.  */
  3482.   enum
  3483.     {
  3484.       TRIPLET,
  3485.       THREE_ARG_DISPLACEMENT,
  3486.       DONE
  3487.     } current_state;

  3488.   current_state = TRIPLET;

  3489.   /* The special tokens to be parsed here are:

  3490.      - `register base + (register index * size) + offset', as represented
  3491.      in `(%rcx,%rax,8)', or `[OFFSET](BASE_REG,INDEX_REG[,SIZE])'.

  3492.      - Operands of the form `-8+3+1(%rbp)', which must be interpreted as
  3493.      `*(-8 + 3 - 1 + (void *) $eax)'.  */

  3494.   while (current_state != DONE)
  3495.     {
  3496.       switch (current_state)
  3497.         {
  3498.         case TRIPLET:
  3499.           if (i386_stap_parse_special_token_triplet (gdbarch, p))
  3500.             return 1;
  3501.           break;

  3502.         case THREE_ARG_DISPLACEMENT:
  3503.           if (i386_stap_parse_special_token_three_arg_disp (gdbarch, p))
  3504.             return 1;
  3505.           break;
  3506.         }

  3507.       /* Advancing to the next state.  */
  3508.       ++current_state;
  3509.     }

  3510.   return 0;
  3511. }



  3512. /* gdbarch gnu_triplet_regexp method.  Both arches are acceptable as GDB always
  3513.    also supplies -m64 or -m32 by gdbarch_gcc_target_options.  */

  3514. static const char *
  3515. i386_gnu_triplet_regexp (struct gdbarch *gdbarch)
  3516. {
  3517.   return "(x86_64|i.86)";
  3518. }



  3519. /* Generic ELF.  */

  3520. void
  3521. i386_elf_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  3522. {
  3523.   static const char *const stap_integer_prefixes[] = { "$", NULL };
  3524.   static const char *const stap_register_prefixes[] = { "%", NULL };
  3525.   static const char *const stap_register_indirection_prefixes[] = { "(",
  3526.                                                                     NULL };
  3527.   static const char *const stap_register_indirection_suffixes[] = { ")",
  3528.                                                                     NULL };

  3529.   /* We typically use stabs-in-ELF with the SVR4 register numbering.  */
  3530.   set_gdbarch_stab_reg_to_regnum (gdbarch, i386_svr4_reg_to_regnum);

  3531.   /* Registering SystemTap handlers.  */
  3532.   set_gdbarch_stap_integer_prefixes (gdbarch, stap_integer_prefixes);
  3533.   set_gdbarch_stap_register_prefixes (gdbarch, stap_register_prefixes);
  3534.   set_gdbarch_stap_register_indirection_prefixes (gdbarch,
  3535.                                           stap_register_indirection_prefixes);
  3536.   set_gdbarch_stap_register_indirection_suffixes (gdbarch,
  3537.                                           stap_register_indirection_suffixes);
  3538.   set_gdbarch_stap_is_single_operand (gdbarch,
  3539.                                       i386_stap_is_single_operand);
  3540.   set_gdbarch_stap_parse_special_token (gdbarch,
  3541.                                         i386_stap_parse_special_token);

  3542.   set_gdbarch_gnu_triplet_regexp (gdbarch, i386_gnu_triplet_regexp);
  3543. }

  3544. /* System V Release 4 (SVR4).  */

  3545. void
  3546. i386_svr4_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  3547. {
  3548.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  3549.   /* System V Release 4 uses ELF.  */
  3550.   i386_elf_init_abi (info, gdbarch);

  3551.   /* System V Release 4 has shared libraries.  */
  3552.   set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);

  3553.   tdep->sigtramp_p = i386_svr4_sigtramp_p;
  3554.   tdep->sigcontext_addr = i386_svr4_sigcontext_addr;
  3555.   tdep->sc_pc_offset = 36 + 14 * 4;
  3556.   tdep->sc_sp_offset = 36 + 17 * 4;

  3557.   tdep->jb_pc_offset = 20;
  3558. }

  3559. /* DJGPP.  */

  3560. static void
  3561. i386_go32_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  3562. {
  3563.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  3564.   /* DJGPP doesn't have any special frames for signal handlers.  */
  3565.   tdep->sigtramp_p = NULL;

  3566.   tdep->jb_pc_offset = 36;

  3567.   /* DJGPP does not support the SSE registers.  */
  3568.   if (! tdesc_has_registers (info.target_desc))
  3569.     tdep->tdesc = tdesc_i386_mmx;

  3570.   /* Native compiler is GCC, which uses the SVR4 register numbering
  3571.      even in COFF and STABS.  See the comment in i386_gdbarch_init,
  3572.      before the calls to set_gdbarch_stab_reg_to_regnum and
  3573.      set_gdbarch_sdb_reg_to_regnum.  */
  3574.   set_gdbarch_stab_reg_to_regnum (gdbarch, i386_svr4_reg_to_regnum);
  3575.   set_gdbarch_sdb_reg_to_regnum (gdbarch, i386_svr4_reg_to_regnum);

  3576.   set_gdbarch_has_dos_based_file_system (gdbarch, 1);

  3577.   set_gdbarch_gnu_triplet_regexp (gdbarch, i386_gnu_triplet_regexp);
  3578. }


  3579. /* i386 register groups.  In addition to the normal groups, add "mmx"
  3580.    and "sse".  */

  3581. static struct reggroup *i386_sse_reggroup;
  3582. static struct reggroup *i386_mmx_reggroup;

  3583. static void
  3584. i386_init_reggroups (void)
  3585. {
  3586.   i386_sse_reggroup = reggroup_new ("sse", USER_REGGROUP);
  3587.   i386_mmx_reggroup = reggroup_new ("mmx", USER_REGGROUP);
  3588. }

  3589. static void
  3590. i386_add_reggroups (struct gdbarch *gdbarch)
  3591. {
  3592.   reggroup_add (gdbarch, i386_sse_reggroup);
  3593.   reggroup_add (gdbarch, i386_mmx_reggroup);
  3594.   reggroup_add (gdbarch, general_reggroup);
  3595.   reggroup_add (gdbarch, float_reggroup);
  3596.   reggroup_add (gdbarch, all_reggroup);
  3597.   reggroup_add (gdbarch, save_reggroup);
  3598.   reggroup_add (gdbarch, restore_reggroup);
  3599.   reggroup_add (gdbarch, vector_reggroup);
  3600.   reggroup_add (gdbarch, system_reggroup);
  3601. }

  3602. int
  3603. i386_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
  3604.                           struct reggroup *group)
  3605. {
  3606.   const struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  3607.   int fp_regnum_p, mmx_regnum_p, xmm_regnum_p, mxcsr_regnum_p,
  3608.       ymm_regnum_p, ymmh_regnum_p, ymm_avx512_regnum_p, ymmh_avx512_regnum_p,
  3609.       bndr_regnum_p, bnd_regnum_p, k_regnum_p, zmm_regnum_p, zmmh_regnum_p,
  3610.       zmm_avx512_regnum_p, mpx_ctrl_regnum_p, xmm_avx512_regnum_p,
  3611.       avx512_p, avx_p, sse_p;

  3612.   /* Don't include pseudo registers, except for MMX, in any register
  3613.      groups.  */
  3614.   if (i386_byte_regnum_p (gdbarch, regnum))
  3615.     return 0;

  3616.   if (i386_word_regnum_p (gdbarch, regnum))
  3617.     return 0;

  3618.   if (i386_dword_regnum_p (gdbarch, regnum))
  3619.     return 0;

  3620.   mmx_regnum_p = i386_mmx_regnum_p (gdbarch, regnum);
  3621.   if (group == i386_mmx_reggroup)
  3622.     return mmx_regnum_p;

  3623.   xmm_regnum_p = i386_xmm_regnum_p (gdbarch, regnum);
  3624.   xmm_avx512_regnum_p = i386_xmm_avx512_regnum_p (gdbarch, regnum);
  3625.   mxcsr_regnum_p = i386_mxcsr_regnum_p (gdbarch, regnum);
  3626.   if (group == i386_sse_reggroup)
  3627.     return xmm_regnum_p || xmm_avx512_regnum_p || mxcsr_regnum_p;

  3628.   ymm_regnum_p = i386_ymm_regnum_p (gdbarch, regnum);
  3629.   ymm_avx512_regnum_p = i386_ymm_avx512_regnum_p (gdbarch, regnum);
  3630.   zmm_regnum_p = i386_zmm_regnum_p (gdbarch, regnum);

  3631.   avx512_p = ((tdep->xcr0 & X86_XSTATE_AVX512_MASK)
  3632.               == X86_XSTATE_AVX512_MASK);
  3633.   avx_p = ((tdep->xcr0 & X86_XSTATE_AVX512_MASK)
  3634.            == X86_XSTATE_AVX_MASK) && !avx512_p;
  3635.   sse_p = ((tdep->xcr0 & X86_XSTATE_AVX512_MASK)
  3636.            == X86_XSTATE_SSE_MASK) && !avx512_p && ! avx_p;

  3637.   if (group == vector_reggroup)
  3638.     return (mmx_regnum_p
  3639.             || (zmm_regnum_p && avx512_p)
  3640.             || ((ymm_regnum_p || ymm_avx512_regnum_p) && avx_p)
  3641.             || ((xmm_regnum_p || xmm_avx512_regnum_p) && sse_p)
  3642.             || mxcsr_regnum_p);

  3643.   fp_regnum_p = (i386_fp_regnum_p (gdbarch, regnum)
  3644.                  || i386_fpc_regnum_p (gdbarch, regnum));
  3645.   if (group == float_reggroup)
  3646.     return fp_regnum_p;

  3647.   /* For "info reg all", don't include upper YMM registers nor XMM
  3648.      registers when AVX is supported.  */
  3649.   ymmh_regnum_p = i386_ymmh_regnum_p (gdbarch, regnum);
  3650.   ymmh_avx512_regnum_p = i386_ymmh_avx512_regnum_p (gdbarch, regnum);
  3651.   zmmh_regnum_p = i386_zmmh_regnum_p (gdbarch, regnum);
  3652.   if (group == all_reggroup
  3653.       && (((xmm_regnum_p || xmm_avx512_regnum_p) && !sse_p)
  3654.           || ((ymm_regnum_p || ymm_avx512_regnum_p) && !avx_p)
  3655.           || ymmh_regnum_p
  3656.           || ymmh_avx512_regnum_p
  3657.           || zmmh_regnum_p))
  3658.     return 0;

  3659.   bnd_regnum_p = i386_bnd_regnum_p (gdbarch, regnum);
  3660.   if (group == all_reggroup
  3661.       && ((bnd_regnum_p && (tdep->xcr0 & X86_XSTATE_MPX_MASK))))
  3662.     return bnd_regnum_p;

  3663.   bndr_regnum_p = i386_bndr_regnum_p (gdbarch, regnum);
  3664.   if (group == all_reggroup
  3665.       && ((bndr_regnum_p && (tdep->xcr0 & X86_XSTATE_MPX_MASK))))
  3666.     return 0;

  3667.   mpx_ctrl_regnum_p = i386_mpx_ctrl_regnum_p (gdbarch, regnum);
  3668.   if (group == all_reggroup
  3669.       && ((mpx_ctrl_regnum_p && (tdep->xcr0 & X86_XSTATE_MPX_MASK))))
  3670.     return mpx_ctrl_regnum_p;

  3671.   if (group == general_reggroup)
  3672.     return (!fp_regnum_p
  3673.             && !mmx_regnum_p
  3674.             && !mxcsr_regnum_p
  3675.             && !xmm_regnum_p
  3676.             && !xmm_avx512_regnum_p
  3677.             && !ymm_regnum_p
  3678.             && !ymmh_regnum_p
  3679.             && !ymm_avx512_regnum_p
  3680.             && !ymmh_avx512_regnum_p
  3681.             && !bndr_regnum_p
  3682.             && !bnd_regnum_p
  3683.             && !mpx_ctrl_regnum_p
  3684.             && !zmm_regnum_p
  3685.             && !zmmh_regnum_p);

  3686.   return default_register_reggroup_p (gdbarch, regnum, group);
  3687. }


  3688. /* Get the ARGIth function argument for the current function.  */

  3689. static CORE_ADDR
  3690. i386_fetch_pointer_argument (struct frame_info *frame, int argi,
  3691.                              struct type *type)
  3692. {
  3693.   struct gdbarch *gdbarch = get_frame_arch (frame);
  3694.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  3695.   CORE_ADDR sp = get_frame_register_unsigned (frame, I386_ESP_REGNUM);
  3696.   return read_memory_unsigned_integer (sp + (4 * (argi + 1)), 4, byte_order);
  3697. }

  3698. #define PREFIX_REPZ        0x01
  3699. #define PREFIX_REPNZ        0x02
  3700. #define PREFIX_LOCK        0x04
  3701. #define PREFIX_DATA        0x08
  3702. #define PREFIX_ADDR        0x10

  3703. /* operand size */
  3704. enum
  3705. {
  3706.   OT_BYTE = 0,
  3707.   OT_WORD,
  3708.   OT_LONG,
  3709.   OT_QUAD,
  3710.   OT_DQUAD,
  3711. };

  3712. /* i386 arith/logic operations */
  3713. enum
  3714. {
  3715.   OP_ADDL,
  3716.   OP_ORL,
  3717.   OP_ADCL,
  3718.   OP_SBBL,
  3719.   OP_ANDL,
  3720.   OP_SUBL,
  3721.   OP_XORL,
  3722.   OP_CMPL,
  3723. };

  3724. struct i386_record_s
  3725. {
  3726.   struct gdbarch *gdbarch;
  3727.   struct regcache *regcache;
  3728.   CORE_ADDR orig_addr;
  3729.   CORE_ADDR addr;
  3730.   int aflag;
  3731.   int dflag;
  3732.   int override;
  3733.   uint8_t modrm;
  3734.   uint8_t mod, reg, rm;
  3735.   int ot;
  3736.   uint8_t rex_x;
  3737.   uint8_t rex_b;
  3738.   int rip_offset;
  3739.   int popl_esp_hack;
  3740.   const int *regmap;
  3741. };

  3742. /* Parse the "modrm" part of the memory address irp->addr points at.
  3743.    Returns -1 if something goes wrong, 0 otherwise.  */

  3744. static int
  3745. i386_record_modrm (struct i386_record_s *irp)
  3746. {
  3747.   struct gdbarch *gdbarch = irp->gdbarch;

  3748.   if (record_read_memory (gdbarch, irp->addr, &irp->modrm, 1))
  3749.     return -1;

  3750.   irp->addr++;
  3751.   irp->mod = (irp->modrm >> 6) & 3;
  3752.   irp->reg = (irp->modrm >> 3) & 7;
  3753.   irp->rm = irp->modrm & 7;

  3754.   return 0;
  3755. }

  3756. /* Extract the memory address that the current instruction writes to,
  3757.    and return it in *ADDR.  Return -1 if something goes wrong.  */

  3758. static int
  3759. i386_record_lea_modrm_addr (struct i386_record_s *irp, uint64_t *addr)
  3760. {
  3761.   struct gdbarch *gdbarch = irp->gdbarch;
  3762.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  3763.   gdb_byte buf[4];
  3764.   ULONGEST offset64;

  3765.   *addr = 0;
  3766.   if (irp->aflag || irp->regmap[X86_RECORD_R8_REGNUM])
  3767.     {
  3768.       /* 32/64 bits */
  3769.       int havesib = 0;
  3770.       uint8_t scale = 0;
  3771.       uint8_t byte;
  3772.       uint8_t index = 0;
  3773.       uint8_t base = irp->rm;

  3774.       if (base == 4)
  3775.         {
  3776.           havesib = 1;
  3777.           if (record_read_memory (gdbarch, irp->addr, &byte, 1))
  3778.             return -1;
  3779.           irp->addr++;
  3780.           scale = (byte >> 6) & 3;
  3781.           index = ((byte >> 3) & 7) | irp->rex_x;
  3782.           base = (byte & 7);
  3783.         }
  3784.       base |= irp->rex_b;

  3785.       switch (irp->mod)
  3786.         {
  3787.         case 0:
  3788.           if ((base & 7) == 5)
  3789.             {
  3790.               base = 0xff;
  3791.               if (record_read_memory (gdbarch, irp->addr, buf, 4))
  3792.                 return -1;
  3793.               irp->addr += 4;
  3794.               *addr = extract_signed_integer (buf, 4, byte_order);
  3795.               if (irp->regmap[X86_RECORD_R8_REGNUM] && !havesib)
  3796.                 *addr += irp->addr + irp->rip_offset;
  3797.             }
  3798.           break;
  3799.         case 1:
  3800.           if (record_read_memory (gdbarch, irp->addr, buf, 1))
  3801.             return -1;
  3802.           irp->addr++;
  3803.           *addr = (int8_t) buf[0];
  3804.           break;
  3805.         case 2:
  3806.           if (record_read_memory (gdbarch, irp->addr, buf, 4))
  3807.             return -1;
  3808.           *addr = extract_signed_integer (buf, 4, byte_order);
  3809.           irp->addr += 4;
  3810.           break;
  3811.         }

  3812.       offset64 = 0;
  3813.       if (base != 0xff)
  3814.         {
  3815.           if (base == 4 && irp->popl_esp_hack)
  3816.             *addr += irp->popl_esp_hack;
  3817.           regcache_raw_read_unsigned (irp->regcache, irp->regmap[base],
  3818.                                       &offset64);
  3819.         }
  3820.       if (irp->aflag == 2)
  3821.         {
  3822.           *addr += offset64;
  3823.         }
  3824.       else
  3825.         *addr = (uint32_t) (offset64 + *addr);

  3826.       if (havesib && (index != 4 || scale != 0))
  3827.         {
  3828.           regcache_raw_read_unsigned (irp->regcache, irp->regmap[index],
  3829.                                       &offset64);
  3830.           if (irp->aflag == 2)
  3831.             *addr += offset64 << scale;
  3832.           else
  3833.             *addr = (uint32_t) (*addr + (offset64 << scale));
  3834.         }

  3835.       if (!irp->aflag)
  3836.         {
  3837.           /* Since we are in 64-bit mode with ADDR32 prefix, zero-extend
  3838.              address from 32-bit to 64-bit.  */
  3839.             *addr = (uint32_t) *addr;
  3840.         }
  3841.     }
  3842.   else
  3843.     {
  3844.       /* 16 bits */
  3845.       switch (irp->mod)
  3846.         {
  3847.         case 0:
  3848.           if (irp->rm == 6)
  3849.             {
  3850.               if (record_read_memory (gdbarch, irp->addr, buf, 2))
  3851.                 return -1;
  3852.               irp->addr += 2;
  3853.               *addr = extract_signed_integer (buf, 2, byte_order);
  3854.               irp->rm = 0;
  3855.               goto no_rm;
  3856.             }
  3857.           break;
  3858.         case 1:
  3859.           if (record_read_memory (gdbarch, irp->addr, buf, 1))
  3860.             return -1;
  3861.           irp->addr++;
  3862.           *addr = (int8_t) buf[0];
  3863.           break;
  3864.         case 2:
  3865.           if (record_read_memory (gdbarch, irp->addr, buf, 2))
  3866.             return -1;
  3867.           irp->addr += 2;
  3868.           *addr = extract_signed_integer (buf, 2, byte_order);
  3869.           break;
  3870.         }

  3871.       switch (irp->rm)
  3872.         {
  3873.         case 0:
  3874.           regcache_raw_read_unsigned (irp->regcache,
  3875.                                       irp->regmap[X86_RECORD_REBX_REGNUM],
  3876.                                       &offset64);
  3877.           *addr = (uint32_t) (*addr + offset64);
  3878.           regcache_raw_read_unsigned (irp->regcache,
  3879.                                       irp->regmap[X86_RECORD_RESI_REGNUM],
  3880.                                       &offset64);
  3881.           *addr = (uint32_t) (*addr + offset64);
  3882.           break;
  3883.         case 1:
  3884.           regcache_raw_read_unsigned (irp->regcache,
  3885.                                       irp->regmap[X86_RECORD_REBX_REGNUM],
  3886.                                       &offset64);
  3887.           *addr = (uint32_t) (*addr + offset64);
  3888.           regcache_raw_read_unsigned (irp->regcache,
  3889.                                       irp->regmap[X86_RECORD_REDI_REGNUM],
  3890.                                       &offset64);
  3891.           *addr = (uint32_t) (*addr + offset64);
  3892.           break;
  3893.         case 2:
  3894.           regcache_raw_read_unsigned (irp->regcache,
  3895.                                       irp->regmap[X86_RECORD_REBP_REGNUM],
  3896.                                       &offset64);
  3897.           *addr = (uint32_t) (*addr + offset64);
  3898.           regcache_raw_read_unsigned (irp->regcache,
  3899.                                       irp->regmap[X86_RECORD_RESI_REGNUM],
  3900.                                       &offset64);
  3901.           *addr = (uint32_t) (*addr + offset64);
  3902.           break;
  3903.         case 3:
  3904.           regcache_raw_read_unsigned (irp->regcache,
  3905.                                       irp->regmap[X86_RECORD_REBP_REGNUM],
  3906.                                       &offset64);
  3907.           *addr = (uint32_t) (*addr + offset64);
  3908.           regcache_raw_read_unsigned (irp->regcache,
  3909.                                       irp->regmap[X86_RECORD_REDI_REGNUM],
  3910.                                       &offset64);
  3911.           *addr = (uint32_t) (*addr + offset64);
  3912.           break;
  3913.         case 4:
  3914.           regcache_raw_read_unsigned (irp->regcache,
  3915.                                       irp->regmap[X86_RECORD_RESI_REGNUM],
  3916.                                       &offset64);
  3917.           *addr = (uint32_t) (*addr + offset64);
  3918.           break;
  3919.         case 5:
  3920.           regcache_raw_read_unsigned (irp->regcache,
  3921.                                       irp->regmap[X86_RECORD_REDI_REGNUM],
  3922.                                       &offset64);
  3923.           *addr = (uint32_t) (*addr + offset64);
  3924.           break;
  3925.         case 6:
  3926.           regcache_raw_read_unsigned (irp->regcache,
  3927.                                       irp->regmap[X86_RECORD_REBP_REGNUM],
  3928.                                       &offset64);
  3929.           *addr = (uint32_t) (*addr + offset64);
  3930.           break;
  3931.         case 7:
  3932.           regcache_raw_read_unsigned (irp->regcache,
  3933.                                       irp->regmap[X86_RECORD_REBX_REGNUM],
  3934.                                       &offset64);
  3935.           *addr = (uint32_t) (*addr + offset64);
  3936.           break;
  3937.         }
  3938.       *addr &= 0xffff;
  3939.     }

  3940. no_rm:
  3941.   return 0;
  3942. }

  3943. /* Record the address and contents of the memory that will be changed
  3944.    by the current instruction.  Return -1 if something goes wrong, 0
  3945.    otherwise.  */

  3946. static int
  3947. i386_record_lea_modrm (struct i386_record_s *irp)
  3948. {
  3949.   struct gdbarch *gdbarch = irp->gdbarch;
  3950.   uint64_t addr;

  3951.   if (irp->override >= 0)
  3952.     {
  3953.       if (record_full_memory_query)
  3954.         {
  3955.           int q;

  3956.           target_terminal_ours ();
  3957.           q = yquery (_("\
  3958. Process record ignores the memory change of instruction at address %s\n\
  3959. because it can't get the value of the segment register.\n\
  3960. Do you want to stop the program?"),
  3961.                       paddress (gdbarch, irp->orig_addr));
  3962.             target_terminal_inferior ();
  3963.             if (q)
  3964.               return -1;
  3965.         }

  3966.       return 0;
  3967.     }

  3968.   if (i386_record_lea_modrm_addr (irp, &addr))
  3969.     return -1;

  3970.   if (record_full_arch_list_add_mem (addr, 1 << irp->ot))
  3971.     return -1;

  3972.   return 0;
  3973. }

  3974. /* Record the effects of a push operation.  Return -1 if something
  3975.    goes wrong, 0 otherwise.  */

  3976. static int
  3977. i386_record_push (struct i386_record_s *irp, int size)
  3978. {
  3979.   ULONGEST addr;

  3980.   if (record_full_arch_list_add_reg (irp->regcache,
  3981.                                      irp->regmap[X86_RECORD_RESP_REGNUM]))
  3982.     return -1;
  3983.   regcache_raw_read_unsigned (irp->regcache,
  3984.                               irp->regmap[X86_RECORD_RESP_REGNUM],
  3985.                               &addr);
  3986.   if (record_full_arch_list_add_mem ((CORE_ADDR) addr - size, size))
  3987.     return -1;

  3988.   return 0;
  3989. }


  3990. /* Defines contents to record.  */
  3991. #define I386_SAVE_FPU_REGS              0xfffd
  3992. #define I386_SAVE_FPU_ENV               0xfffe
  3993. #define I386_SAVE_FPU_ENV_REG_STACK     0xffff

  3994. /* Record the values of the floating point registers which will be
  3995.    changed by the current instruction.  Returns -1 if something is
  3996.    wrong, 0 otherwise.  */

  3997. static int i386_record_floats (struct gdbarch *gdbarch,
  3998.                                struct i386_record_s *ir,
  3999.                                uint32_t iregnum)
  4000. {
  4001.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  4002.   int i;

  4003.   /* Oza: Because of floating point insn push/pop of fpu stack is going to
  4004.      happen.  Currently we store st0-st7 registers, but we need not store all
  4005.      registers all the time, in future we use ftag register and record only
  4006.      those who are not marked as an empty.  */

  4007.   if (I386_SAVE_FPU_REGS == iregnum)
  4008.     {
  4009.       for (i = I387_ST0_REGNUM (tdep); i <= I387_ST0_REGNUM (tdep) + 7; i++)
  4010.         {
  4011.           if (record_full_arch_list_add_reg (ir->regcache, i))
  4012.             return -1;
  4013.         }
  4014.     }
  4015.   else if (I386_SAVE_FPU_ENV == iregnum)
  4016.     {
  4017.       for (i = I387_FCTRL_REGNUM (tdep); i <= I387_FOP_REGNUM (tdep); i++)
  4018.               {
  4019.               if (record_full_arch_list_add_reg (ir->regcache, i))
  4020.                 return -1;
  4021.               }
  4022.     }
  4023.   else if (I386_SAVE_FPU_ENV_REG_STACK == iregnum)
  4024.     {
  4025.       for (i = I387_ST0_REGNUM (tdep); i <= I387_FOP_REGNUM (tdep); i++)
  4026.       {
  4027.         if (record_full_arch_list_add_reg (ir->regcache, i))
  4028.           return -1;
  4029.       }
  4030.     }
  4031.   else if ((iregnum >= I387_ST0_REGNUM (tdep)) &&
  4032.            (iregnum <= I387_FOP_REGNUM (tdep)))
  4033.     {
  4034.       if (record_full_arch_list_add_reg (ir->regcache,iregnum))
  4035.         return -1;
  4036.     }
  4037.   else
  4038.     {
  4039.       /* Parameter error.  */
  4040.       return -1;
  4041.     }
  4042.   if(I386_SAVE_FPU_ENV != iregnum)
  4043.     {
  4044.     for (i = I387_FCTRL_REGNUM (tdep); i <= I387_FOP_REGNUM (tdep); i++)
  4045.       {
  4046.       if (record_full_arch_list_add_reg (ir->regcache, i))
  4047.         return -1;
  4048.       }
  4049.     }
  4050.   return 0;
  4051. }

  4052. /* Parse the current instruction, and record the values of the
  4053.    registers and memory that will be changed by the current
  4054.    instruction.  Returns -1 if something goes wrong, 0 otherwise.  */

  4055. #define I386_RECORD_FULL_ARCH_LIST_ADD_REG(regnum) \
  4056.     record_full_arch_list_add_reg (ir.regcache, ir.regmap[(regnum)])

  4057. int
  4058. i386_process_record (struct gdbarch *gdbarch, struct regcache *regcache,
  4059.                      CORE_ADDR input_addr)
  4060. {
  4061.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  4062.   int prefixes = 0;
  4063.   int regnum = 0;
  4064.   uint32_t opcode;
  4065.   uint8_t opcode8;
  4066.   ULONGEST addr;
  4067.   gdb_byte buf[MAX_REGISTER_SIZE];
  4068.   struct i386_record_s ir;
  4069.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
  4070.   uint8_t rex_w = -1;
  4071.   uint8_t rex_r = 0;

  4072.   memset (&ir, 0, sizeof (struct i386_record_s));
  4073.   ir.regcache = regcache;
  4074.   ir.addr = input_addr;
  4075.   ir.orig_addr = input_addr;
  4076.   ir.aflag = 1;
  4077.   ir.dflag = 1;
  4078.   ir.override = -1;
  4079.   ir.popl_esp_hack = 0;
  4080.   ir.regmap = tdep->record_regmap;
  4081.   ir.gdbarch = gdbarch;

  4082.   if (record_debug > 1)
  4083.     fprintf_unfiltered (gdb_stdlog, "Process record: i386_process_record "
  4084.                                     "addr = %s\n",
  4085.                         paddress (gdbarch, ir.addr));

  4086.   /* prefixes */
  4087.   while (1)
  4088.     {
  4089.       if (record_read_memory (gdbarch, ir.addr, &opcode8, 1))
  4090.         return -1;
  4091.       ir.addr++;
  4092.       switch (opcode8)        /* Instruction prefixes */
  4093.         {
  4094.         case REPE_PREFIX_OPCODE:
  4095.           prefixes |= PREFIX_REPZ;
  4096.           break;
  4097.         case REPNE_PREFIX_OPCODE:
  4098.           prefixes |= PREFIX_REPNZ;
  4099.           break;
  4100.         case LOCK_PREFIX_OPCODE:
  4101.           prefixes |= PREFIX_LOCK;
  4102.           break;
  4103.         case CS_PREFIX_OPCODE:
  4104.           ir.override = X86_RECORD_CS_REGNUM;
  4105.           break;
  4106.         case SS_PREFIX_OPCODE:
  4107.           ir.override = X86_RECORD_SS_REGNUM;
  4108.           break;
  4109.         case DS_PREFIX_OPCODE:
  4110.           ir.override = X86_RECORD_DS_REGNUM;
  4111.           break;
  4112.         case ES_PREFIX_OPCODE:
  4113.           ir.override = X86_RECORD_ES_REGNUM;
  4114.           break;
  4115.         case FS_PREFIX_OPCODE:
  4116.           ir.override = X86_RECORD_FS_REGNUM;
  4117.           break;
  4118.         case GS_PREFIX_OPCODE:
  4119.           ir.override = X86_RECORD_GS_REGNUM;
  4120.           break;
  4121.         case DATA_PREFIX_OPCODE:
  4122.           prefixes |= PREFIX_DATA;
  4123.           break;
  4124.         case ADDR_PREFIX_OPCODE:
  4125.           prefixes |= PREFIX_ADDR;
  4126.           break;
  4127.         case 0x40:        /* i386 inc %eax */
  4128.         case 0x41:        /* i386 inc %ecx */
  4129.         case 0x42:        /* i386 inc %edx */
  4130.         case 0x43:        /* i386 inc %ebx */
  4131.         case 0x44:        /* i386 inc %esp */
  4132.         case 0x45:        /* i386 inc %ebp */
  4133.         case 0x46:        /* i386 inc %esi */
  4134.         case 0x47:        /* i386 inc %edi */
  4135.         case 0x48:        /* i386 dec %eax */
  4136.         case 0x49:        /* i386 dec %ecx */
  4137.         case 0x4a:        /* i386 dec %edx */
  4138.         case 0x4b:        /* i386 dec %ebx */
  4139.         case 0x4c:        /* i386 dec %esp */
  4140.         case 0x4d:        /* i386 dec %ebp */
  4141.         case 0x4e:        /* i386 dec %esi */
  4142.         case 0x4f:        /* i386 dec %edi */
  4143.           if (ir.regmap[X86_RECORD_R8_REGNUM])        /* 64 bit target */
  4144.             {
  4145.                /* REX */
  4146.                rex_w = (opcode8 >> 3) & 1;
  4147.                rex_r = (opcode8 & 0x4) << 1;
  4148.                ir.rex_x = (opcode8 & 0x2) << 2;
  4149.                ir.rex_b = (opcode8 & 0x1) << 3;
  4150.             }
  4151.           else                                        /* 32 bit target */
  4152.             goto out_prefixes;
  4153.           break;
  4154.         default:
  4155.           goto out_prefixes;
  4156.           break;
  4157.         }
  4158.     }
  4159. out_prefixes:
  4160.   if (ir.regmap[X86_RECORD_R8_REGNUM] && rex_w == 1)
  4161.     {
  4162.       ir.dflag = 2;
  4163.     }
  4164.   else
  4165.     {
  4166.       if (prefixes & PREFIX_DATA)
  4167.         ir.dflag ^= 1;
  4168.     }
  4169.   if (prefixes & PREFIX_ADDR)
  4170.     ir.aflag ^= 1;
  4171.   else if (ir.regmap[X86_RECORD_R8_REGNUM])
  4172.     ir.aflag = 2;

  4173.   /* Now check op code.  */
  4174.   opcode = (uint32_t) opcode8;
  4175. reswitch:
  4176.   switch (opcode)
  4177.     {
  4178.     case 0x0f:
  4179.       if (record_read_memory (gdbarch, ir.addr, &opcode8, 1))
  4180.         return -1;
  4181.       ir.addr++;
  4182.       opcode = (uint32_t) opcode8 | 0x0f00;
  4183.       goto reswitch;
  4184.       break;

  4185.     case 0x00:    /* arith & logic */
  4186.     case 0x01:
  4187.     case 0x02:
  4188.     case 0x03:
  4189.     case 0x04:
  4190.     case 0x05:
  4191.     case 0x08:
  4192.     case 0x09:
  4193.     case 0x0a:
  4194.     case 0x0b:
  4195.     case 0x0c:
  4196.     case 0x0d:
  4197.     case 0x10:
  4198.     case 0x11:
  4199.     case 0x12:
  4200.     case 0x13:
  4201.     case 0x14:
  4202.     case 0x15:
  4203.     case 0x18:
  4204.     case 0x19:
  4205.     case 0x1a:
  4206.     case 0x1b:
  4207.     case 0x1c:
  4208.     case 0x1d:
  4209.     case 0x20:
  4210.     case 0x21:
  4211.     case 0x22:
  4212.     case 0x23:
  4213.     case 0x24:
  4214.     case 0x25:
  4215.     case 0x28:
  4216.     case 0x29:
  4217.     case 0x2a:
  4218.     case 0x2b:
  4219.     case 0x2c:
  4220.     case 0x2d:
  4221.     case 0x30:
  4222.     case 0x31:
  4223.     case 0x32:
  4224.     case 0x33:
  4225.     case 0x34:
  4226.     case 0x35:
  4227.     case 0x38:
  4228.     case 0x39:
  4229.     case 0x3a:
  4230.     case 0x3b:
  4231.     case 0x3c:
  4232.     case 0x3d:
  4233.       if (((opcode >> 3) & 7) != OP_CMPL)
  4234.         {
  4235.           if ((opcode & 1) == 0)
  4236.             ir.ot = OT_BYTE;
  4237.           else
  4238.             ir.ot = ir.dflag + OT_WORD;

  4239.           switch ((opcode >> 1) & 3)
  4240.             {
  4241.             case 0:    /* OP Ev, Gv */
  4242.               if (i386_record_modrm (&ir))
  4243.                 return -1;
  4244.               if (ir.mod != 3)
  4245.                 {
  4246.                   if (i386_record_lea_modrm (&ir))
  4247.                     return -1;
  4248.                 }
  4249.               else
  4250.                 {
  4251.                   ir.rm |= ir.rex_b;
  4252.                   if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4253.                     ir.rm &= 0x3;
  4254.                   I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm);
  4255.                 }
  4256.               break;
  4257.             case 1:    /* OP Gv, Ev */
  4258.               if (i386_record_modrm (&ir))
  4259.                 return -1;
  4260.               ir.reg |= rex_r;
  4261.               if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4262.                 ir.reg &= 0x3;
  4263.               I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg);
  4264.               break;
  4265.             case 2:    /* OP A, Iv */
  4266.               I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  4267.               break;
  4268.             }
  4269.         }
  4270.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4271.       break;

  4272.     case 0x80:    /* GRP1 */
  4273.     case 0x81:
  4274.     case 0x82:
  4275.     case 0x83:
  4276.       if (i386_record_modrm (&ir))
  4277.         return -1;

  4278.       if (ir.reg != OP_CMPL)
  4279.         {
  4280.           if ((opcode & 1) == 0)
  4281.             ir.ot = OT_BYTE;
  4282.           else
  4283.             ir.ot = ir.dflag + OT_WORD;

  4284.           if (ir.mod != 3)
  4285.             {
  4286.               if (opcode == 0x83)
  4287.                 ir.rip_offset = 1;
  4288.               else
  4289.                 ir.rip_offset = (ir.ot > OT_LONG) ? 4 : (1 << ir.ot);
  4290.               if (i386_record_lea_modrm (&ir))
  4291.                 return -1;
  4292.             }
  4293.           else
  4294.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
  4295.         }
  4296.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4297.       break;

  4298.     case 0x40:      /* inc */
  4299.     case 0x41:
  4300.     case 0x42:
  4301.     case 0x43:
  4302.     case 0x44:
  4303.     case 0x45:
  4304.     case 0x46:
  4305.     case 0x47:

  4306.     case 0x48:      /* dec */
  4307.     case 0x49:
  4308.     case 0x4a:
  4309.     case 0x4b:
  4310.     case 0x4c:
  4311.     case 0x4d:
  4312.     case 0x4e:
  4313.     case 0x4f:

  4314.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (opcode & 7);
  4315.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4316.       break;

  4317.     case 0xf6:    /* GRP3 */
  4318.     case 0xf7:
  4319.       if ((opcode & 1) == 0)
  4320.         ir.ot = OT_BYTE;
  4321.       else
  4322.         ir.ot = ir.dflag + OT_WORD;
  4323.       if (i386_record_modrm (&ir))
  4324.         return -1;

  4325.       if (ir.mod != 3 && ir.reg == 0)
  4326.         ir.rip_offset = (ir.ot > OT_LONG) ? 4 : (1 << ir.ot);

  4327.       switch (ir.reg)
  4328.         {
  4329.         case 0:    /* test */
  4330.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4331.           break;
  4332.         case 2:    /* not */
  4333.         case 3:    /* neg */
  4334.           if (ir.mod != 3)
  4335.             {
  4336.               if (i386_record_lea_modrm (&ir))
  4337.                 return -1;
  4338.             }
  4339.           else
  4340.             {
  4341.               ir.rm |= ir.rex_b;
  4342.               if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4343.                 ir.rm &= 0x3;
  4344.               I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm);
  4345.             }
  4346.           if (ir.reg == 3/* neg */
  4347.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4348.           break;
  4349.         case 4:    /* mul  */
  4350.         case 5:    /* imul */
  4351.         case 6:    /* div  */
  4352.         case 7:    /* idiv */
  4353.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  4354.           if (ir.ot != OT_BYTE)
  4355.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
  4356.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4357.           break;
  4358.         default:
  4359.           ir.addr -= 2;
  4360.           opcode = opcode << 8 | ir.modrm;
  4361.           goto no_support;
  4362.           break;
  4363.         }
  4364.       break;

  4365.     case 0xfe:    /* GRP4 */
  4366.     case 0xff:    /* GRP5 */
  4367.       if (i386_record_modrm (&ir))
  4368.         return -1;
  4369.       if (ir.reg >= 2 && opcode == 0xfe)
  4370.         {
  4371.           ir.addr -= 2;
  4372.           opcode = opcode << 8 | ir.modrm;
  4373.           goto no_support;
  4374.         }
  4375.       switch (ir.reg)
  4376.         {
  4377.         case 0:    /* inc */
  4378.         case 1:    /* dec */
  4379.           if ((opcode & 1) == 0)
  4380.             ir.ot = OT_BYTE;
  4381.           else
  4382.             ir.ot = ir.dflag + OT_WORD;
  4383.           if (ir.mod != 3)
  4384.             {
  4385.               if (i386_record_lea_modrm (&ir))
  4386.                 return -1;
  4387.             }
  4388.           else
  4389.             {
  4390.               ir.rm |= ir.rex_b;
  4391.               if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4392.                 ir.rm &= 0x3;
  4393.               I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm);
  4394.             }
  4395.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4396.           break;
  4397.         case 2:    /* call */
  4398.           if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
  4399.             ir.dflag = 2;
  4400.           if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
  4401.             return -1;
  4402.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4403.           break;
  4404.         case 3:    /* lcall */
  4405.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_CS_REGNUM);
  4406.           if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
  4407.             return -1;
  4408.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4409.           break;
  4410.         case 4:    /* jmp  */
  4411.         case 5:    /* ljmp */
  4412.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4413.           break;
  4414.         case 6:    /* push */
  4415.           if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
  4416.             ir.dflag = 2;
  4417.           if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
  4418.             return -1;
  4419.           break;
  4420.         default:
  4421.           ir.addr -= 2;
  4422.           opcode = opcode << 8 | ir.modrm;
  4423.           goto no_support;
  4424.           break;
  4425.         }
  4426.       break;

  4427.     case 0x84:    /* test */
  4428.     case 0x85:
  4429.     case 0xa8:
  4430.     case 0xa9:
  4431.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4432.       break;

  4433.     case 0x98:    /* CWDE/CBW */
  4434.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  4435.       break;

  4436.     case 0x99:    /* CDQ/CWD */
  4437.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  4438.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
  4439.       break;

  4440.     case 0x0faf/* imul */
  4441.     case 0x69:
  4442.     case 0x6b:
  4443.       ir.ot = ir.dflag + OT_WORD;
  4444.       if (i386_record_modrm (&ir))
  4445.         return -1;
  4446.       if (opcode == 0x69)
  4447.         ir.rip_offset = (ir.ot > OT_LONG) ? 4 : (1 << ir.ot);
  4448.       else if (opcode == 0x6b)
  4449.         ir.rip_offset = 1;
  4450.       ir.reg |= rex_r;
  4451.       if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4452.         ir.reg &= 0x3;
  4453.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg);
  4454.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4455.       break;

  4456.     case 0x0fc0/* xadd */
  4457.     case 0x0fc1:
  4458.       if ((opcode & 1) == 0)
  4459.         ir.ot = OT_BYTE;
  4460.       else
  4461.         ir.ot = ir.dflag + OT_WORD;
  4462.       if (i386_record_modrm (&ir))
  4463.         return -1;
  4464.       ir.reg |= rex_r;
  4465.       if (ir.mod == 3)
  4466.         {
  4467.           if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4468.             ir.reg &= 0x3;
  4469.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg);
  4470.           if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4471.             ir.rm &= 0x3;
  4472.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm);
  4473.         }
  4474.       else
  4475.         {
  4476.           if (i386_record_lea_modrm (&ir))
  4477.             return -1;
  4478.           if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4479.             ir.reg &= 0x3;
  4480.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg);
  4481.         }
  4482.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4483.       break;

  4484.     case 0x0fb0/* cmpxchg */
  4485.     case 0x0fb1:
  4486.       if ((opcode & 1) == 0)
  4487.         ir.ot = OT_BYTE;
  4488.       else
  4489.         ir.ot = ir.dflag + OT_WORD;
  4490.       if (i386_record_modrm (&ir))
  4491.         return -1;
  4492.       if (ir.mod == 3)
  4493.         {
  4494.           ir.reg |= rex_r;
  4495.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  4496.           if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4497.             ir.reg &= 0x3;
  4498.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg);
  4499.         }
  4500.       else
  4501.         {
  4502.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  4503.           if (i386_record_lea_modrm (&ir))
  4504.             return -1;
  4505.         }
  4506.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4507.       break;

  4508.     case 0x0fc7:    /* cmpxchg8b */
  4509.       if (i386_record_modrm (&ir))
  4510.         return -1;
  4511.       if (ir.mod == 3)
  4512.         {
  4513.           ir.addr -= 2;
  4514.           opcode = opcode << 8 | ir.modrm;
  4515.           goto no_support;
  4516.         }
  4517.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  4518.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
  4519.       if (i386_record_lea_modrm (&ir))
  4520.         return -1;
  4521.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4522.       break;

  4523.     case 0x50:    /* push */
  4524.     case 0x51:
  4525.     case 0x52:
  4526.     case 0x53:
  4527.     case 0x54:
  4528.     case 0x55:
  4529.     case 0x56:
  4530.     case 0x57:
  4531.     case 0x68:
  4532.     case 0x6a:
  4533.       if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
  4534.         ir.dflag = 2;
  4535.       if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
  4536.         return -1;
  4537.       break;

  4538.     case 0x06:    /* push es */
  4539.     case 0x0e:    /* push cs */
  4540.     case 0x16:    /* push ss */
  4541.     case 0x1e:    /* push ds */
  4542.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  4543.         {
  4544.           ir.addr -= 1;
  4545.           goto no_support;
  4546.         }
  4547.       if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
  4548.         return -1;
  4549.       break;

  4550.     case 0x0fa0:    /* push fs */
  4551.     case 0x0fa8:    /* push gs */
  4552.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  4553.         {
  4554.           ir.addr -= 2;
  4555.           goto no_support;
  4556.         }
  4557.       if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
  4558.         return -1;
  4559.       break;

  4560.     case 0x60:    /* pusha */
  4561.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  4562.         {
  4563.           ir.addr -= 1;
  4564.           goto no_support;
  4565.         }
  4566.       if (i386_record_push (&ir, 1 << (ir.dflag + 4)))
  4567.         return -1;
  4568.       break;

  4569.     case 0x58:    /* pop */
  4570.     case 0x59:
  4571.     case 0x5a:
  4572.     case 0x5b:
  4573.     case 0x5c:
  4574.     case 0x5d:
  4575.     case 0x5e:
  4576.     case 0x5f:
  4577.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  4578.       I386_RECORD_FULL_ARCH_LIST_ADD_REG ((opcode & 0x7) | ir.rex_b);
  4579.       break;

  4580.     case 0x61:    /* popa */
  4581.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  4582.         {
  4583.           ir.addr -= 1;
  4584.           goto no_support;
  4585.         }
  4586.       for (regnum = X86_RECORD_REAX_REGNUM;
  4587.            regnum <= X86_RECORD_REDI_REGNUM;
  4588.            regnum++)
  4589.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (regnum);
  4590.       break;

  4591.     case 0x8f:    /* pop */
  4592.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  4593.         ir.ot = ir.dflag ? OT_QUAD : OT_WORD;
  4594.       else
  4595.         ir.ot = ir.dflag + OT_WORD;
  4596.       if (i386_record_modrm (&ir))
  4597.         return -1;
  4598.       if (ir.mod == 3)
  4599.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
  4600.       else
  4601.         {
  4602.           ir.popl_esp_hack = 1 << ir.ot;
  4603.           if (i386_record_lea_modrm (&ir))
  4604.             return -1;
  4605.         }
  4606.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  4607.       break;

  4608.     case 0xc8:    /* enter */
  4609.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REBP_REGNUM);
  4610.       if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
  4611.         ir.dflag = 2;
  4612.       if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
  4613.         return -1;
  4614.       break;

  4615.     case 0xc9:    /* leave */
  4616.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  4617.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REBP_REGNUM);
  4618.       break;

  4619.     case 0x07:    /* pop es */
  4620.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  4621.         {
  4622.           ir.addr -= 1;
  4623.           goto no_support;
  4624.         }
  4625.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  4626.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_ES_REGNUM);
  4627.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4628.       break;

  4629.     case 0x17:    /* pop ss */
  4630.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  4631.         {
  4632.           ir.addr -= 1;
  4633.           goto no_support;
  4634.         }
  4635.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  4636.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_SS_REGNUM);
  4637.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4638.       break;

  4639.     case 0x1f:    /* pop ds */
  4640.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  4641.         {
  4642.           ir.addr -= 1;
  4643.           goto no_support;
  4644.         }
  4645.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  4646.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_DS_REGNUM);
  4647.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4648.       break;

  4649.     case 0x0fa1:    /* pop fs */
  4650.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  4651.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_FS_REGNUM);
  4652.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4653.       break;

  4654.     case 0x0fa9:    /* pop gs */
  4655.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  4656.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_GS_REGNUM);
  4657.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4658.       break;

  4659.     case 0x88:    /* mov */
  4660.     case 0x89:
  4661.     case 0xc6:
  4662.     case 0xc7:
  4663.       if ((opcode & 1) == 0)
  4664.         ir.ot = OT_BYTE;
  4665.       else
  4666.         ir.ot = ir.dflag + OT_WORD;

  4667.       if (i386_record_modrm (&ir))
  4668.         return -1;

  4669.       if (ir.mod != 3)
  4670.         {
  4671.           if (opcode == 0xc6 || opcode == 0xc7)
  4672.             ir.rip_offset = (ir.ot > OT_LONG) ? 4 : (1 << ir.ot);
  4673.           if (i386_record_lea_modrm (&ir))
  4674.             return -1;
  4675.         }
  4676.       else
  4677.         {
  4678.           if (opcode == 0xc6 || opcode == 0xc7)
  4679.             ir.rm |= ir.rex_b;
  4680.           if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4681.             ir.rm &= 0x3;
  4682.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm);
  4683.         }
  4684.       break;

  4685.     case 0x8a:    /* mov */
  4686.     case 0x8b:
  4687.       if ((opcode & 1) == 0)
  4688.         ir.ot = OT_BYTE;
  4689.       else
  4690.         ir.ot = ir.dflag + OT_WORD;
  4691.       if (i386_record_modrm (&ir))
  4692.         return -1;
  4693.       ir.reg |= rex_r;
  4694.       if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4695.         ir.reg &= 0x3;
  4696.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg);
  4697.       break;

  4698.     case 0x8c:    /* mov seg */
  4699.       if (i386_record_modrm (&ir))
  4700.         return -1;
  4701.       if (ir.reg > 5)
  4702.         {
  4703.           ir.addr -= 2;
  4704.           opcode = opcode << 8 | ir.modrm;
  4705.           goto no_support;
  4706.         }

  4707.       if (ir.mod == 3)
  4708.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm);
  4709.       else
  4710.         {
  4711.           ir.ot = OT_WORD;
  4712.           if (i386_record_lea_modrm (&ir))
  4713.             return -1;
  4714.         }
  4715.       break;

  4716.     case 0x8e:    /* mov seg */
  4717.       if (i386_record_modrm (&ir))
  4718.         return -1;
  4719.       switch (ir.reg)
  4720.         {
  4721.         case 0:
  4722.           regnum = X86_RECORD_ES_REGNUM;
  4723.           break;
  4724.         case 2:
  4725.           regnum = X86_RECORD_SS_REGNUM;
  4726.           break;
  4727.         case 3:
  4728.           regnum = X86_RECORD_DS_REGNUM;
  4729.           break;
  4730.         case 4:
  4731.           regnum = X86_RECORD_FS_REGNUM;
  4732.           break;
  4733.         case 5:
  4734.           regnum = X86_RECORD_GS_REGNUM;
  4735.           break;
  4736.         default:
  4737.           ir.addr -= 2;
  4738.           opcode = opcode << 8 | ir.modrm;
  4739.           goto no_support;
  4740.           break;
  4741.         }
  4742.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (regnum);
  4743.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4744.       break;

  4745.     case 0x0fb6:    /* movzbS */
  4746.     case 0x0fb7:    /* movzwS */
  4747.     case 0x0fbe:    /* movsbS */
  4748.     case 0x0fbf:    /* movswS */
  4749.       if (i386_record_modrm (&ir))
  4750.         return -1;
  4751.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg | rex_r);
  4752.       break;

  4753.     case 0x8d:      /* lea */
  4754.       if (i386_record_modrm (&ir))
  4755.         return -1;
  4756.       if (ir.mod == 3)
  4757.         {
  4758.           ir.addr -= 2;
  4759.           opcode = opcode << 8 | ir.modrm;
  4760.           goto no_support;
  4761.         }
  4762.       ir.ot = ir.dflag;
  4763.       ir.reg |= rex_r;
  4764.       if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4765.         ir.reg &= 0x3;
  4766.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg);
  4767.       break;

  4768.     case 0xa0:    /* mov EAX */
  4769.     case 0xa1:

  4770.     case 0xd7:    /* xlat */
  4771.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  4772.       break;

  4773.     case 0xa2:    /* mov EAX */
  4774.     case 0xa3:
  4775.       if (ir.override >= 0)
  4776.         {
  4777.           if (record_full_memory_query)
  4778.             {
  4779.               int q;

  4780.               target_terminal_ours ();
  4781.               q = yquery (_("\
  4782. Process record ignores the memory change of instruction at address %s\n\
  4783. because it can't get the value of the segment register.\n\
  4784. Do you want to stop the program?"),
  4785.                           paddress (gdbarch, ir.orig_addr));
  4786.               target_terminal_inferior ();
  4787.               if (q)
  4788.                 return -1;
  4789.             }
  4790.         }
  4791.       else
  4792.         {
  4793.           if ((opcode & 1) == 0)
  4794.             ir.ot = OT_BYTE;
  4795.           else
  4796.             ir.ot = ir.dflag + OT_WORD;
  4797.           if (ir.aflag == 2)
  4798.             {
  4799.               if (record_read_memory (gdbarch, ir.addr, buf, 8))
  4800.                 return -1;
  4801.               ir.addr += 8;
  4802.               addr = extract_unsigned_integer (buf, 8, byte_order);
  4803.             }
  4804.           else if (ir.aflag)
  4805.             {
  4806.               if (record_read_memory (gdbarch, ir.addr, buf, 4))
  4807.                 return -1;
  4808.               ir.addr += 4;
  4809.               addr = extract_unsigned_integer (buf, 4, byte_order);
  4810.             }
  4811.           else
  4812.             {
  4813.               if (record_read_memory (gdbarch, ir.addr, buf, 2))
  4814.                 return -1;
  4815.               ir.addr += 2;
  4816.               addr = extract_unsigned_integer (buf, 2, byte_order);
  4817.             }
  4818.           if (record_full_arch_list_add_mem (addr, 1 << ir.ot))
  4819.             return -1;
  4820.         }
  4821.       break;

  4822.     case 0xb0:    /* mov R, Ib */
  4823.     case 0xb1:
  4824.     case 0xb2:
  4825.     case 0xb3:
  4826.     case 0xb4:
  4827.     case 0xb5:
  4828.     case 0xb6:
  4829.     case 0xb7:
  4830.       I386_RECORD_FULL_ARCH_LIST_ADD_REG ((ir.regmap[X86_RECORD_R8_REGNUM])
  4831.                                           ? ((opcode & 0x7) | ir.rex_b)
  4832.                                           : ((opcode & 0x7) & 0x3));
  4833.       break;

  4834.     case 0xb8:    /* mov R, Iv */
  4835.     case 0xb9:
  4836.     case 0xba:
  4837.     case 0xbb:
  4838.     case 0xbc:
  4839.     case 0xbd:
  4840.     case 0xbe:
  4841.     case 0xbf:
  4842.       I386_RECORD_FULL_ARCH_LIST_ADD_REG ((opcode & 0x7) | ir.rex_b);
  4843.       break;

  4844.     case 0x91:    /* xchg R, EAX */
  4845.     case 0x92:
  4846.     case 0x93:
  4847.     case 0x94:
  4848.     case 0x95:
  4849.     case 0x96:
  4850.     case 0x97:
  4851.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  4852.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (opcode & 0x7);
  4853.       break;

  4854.     case 0x86:    /* xchg Ev, Gv */
  4855.     case 0x87:
  4856.       if ((opcode & 1) == 0)
  4857.         ir.ot = OT_BYTE;
  4858.       else
  4859.         ir.ot = ir.dflag + OT_WORD;
  4860.       if (i386_record_modrm (&ir))
  4861.         return -1;
  4862.       if (ir.mod == 3)
  4863.         {
  4864.           ir.rm |= ir.rex_b;
  4865.           if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4866.             ir.rm &= 0x3;
  4867.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm);
  4868.         }
  4869.       else
  4870.         {
  4871.           if (i386_record_lea_modrm (&ir))
  4872.             return -1;
  4873.         }
  4874.       ir.reg |= rex_r;
  4875.       if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4876.         ir.reg &= 0x3;
  4877.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg);
  4878.       break;

  4879.     case 0xc4:    /* les Gv */
  4880.     case 0xc5:    /* lds Gv */
  4881.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  4882.         {
  4883.           ir.addr -= 1;
  4884.           goto no_support;
  4885.         }
  4886.       /* FALLTHROUGH */
  4887.     case 0x0fb2:    /* lss Gv */
  4888.     case 0x0fb4:    /* lfs Gv */
  4889.     case 0x0fb5:    /* lgs Gv */
  4890.       if (i386_record_modrm (&ir))
  4891.         return -1;
  4892.       if (ir.mod == 3)
  4893.         {
  4894.           if (opcode > 0xff)
  4895.             ir.addr -= 3;
  4896.           else
  4897.             ir.addr -= 2;
  4898.           opcode = opcode << 8 | ir.modrm;
  4899.           goto no_support;
  4900.         }
  4901.       switch (opcode)
  4902.         {
  4903.         case 0xc4:    /* les Gv */
  4904.           regnum = X86_RECORD_ES_REGNUM;
  4905.           break;
  4906.         case 0xc5:    /* lds Gv */
  4907.           regnum = X86_RECORD_DS_REGNUM;
  4908.           break;
  4909.         case 0x0fb2/* lss Gv */
  4910.           regnum = X86_RECORD_SS_REGNUM;
  4911.           break;
  4912.         case 0x0fb4/* lfs Gv */
  4913.           regnum = X86_RECORD_FS_REGNUM;
  4914.           break;
  4915.         case 0x0fb5/* lgs Gv */
  4916.           regnum = X86_RECORD_GS_REGNUM;
  4917.           break;
  4918.         }
  4919.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (regnum);
  4920.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg | rex_r);
  4921.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4922.       break;

  4923.     case 0xc0:    /* shifts */
  4924.     case 0xc1:
  4925.     case 0xd0:
  4926.     case 0xd1:
  4927.     case 0xd2:
  4928.     case 0xd3:
  4929.       if ((opcode & 1) == 0)
  4930.         ir.ot = OT_BYTE;
  4931.       else
  4932.         ir.ot = ir.dflag + OT_WORD;
  4933.       if (i386_record_modrm (&ir))
  4934.         return -1;
  4935.       if (ir.mod != 3 && (opcode == 0xd2 || opcode == 0xd3))
  4936.         {
  4937.           if (i386_record_lea_modrm (&ir))
  4938.             return -1;
  4939.         }
  4940.       else
  4941.         {
  4942.           ir.rm |= ir.rex_b;
  4943.           if (ir.ot == OT_BYTE && !ir.regmap[X86_RECORD_R8_REGNUM])
  4944.             ir.rm &= 0x3;
  4945.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm);
  4946.         }
  4947.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  4948.       break;

  4949.     case 0x0fa4:
  4950.     case 0x0fa5:
  4951.     case 0x0fac:
  4952.     case 0x0fad:
  4953.       if (i386_record_modrm (&ir))
  4954.         return -1;
  4955.       if (ir.mod == 3)
  4956.         {
  4957.           if (record_full_arch_list_add_reg (ir.regcache, ir.rm))
  4958.             return -1;
  4959.         }
  4960.       else
  4961.         {
  4962.           if (i386_record_lea_modrm (&ir))
  4963.             return -1;
  4964.         }
  4965.       break;

  4966.     case 0xd8:    /* Floats.  */
  4967.     case 0xd9:
  4968.     case 0xda:
  4969.     case 0xdb:
  4970.     case 0xdc:
  4971.     case 0xdd:
  4972.     case 0xde:
  4973.     case 0xdf:
  4974.       if (i386_record_modrm (&ir))
  4975.         return -1;
  4976.       ir.reg |= ((opcode & 7) << 3);
  4977.       if (ir.mod != 3)
  4978.         {
  4979.           /* Memory.  */
  4980.           uint64_t addr64;

  4981.           if (i386_record_lea_modrm_addr (&ir, &addr64))
  4982.             return -1;
  4983.           switch (ir.reg)
  4984.             {
  4985.             case 0x02:
  4986.             case 0x12:
  4987.             case 0x22:
  4988.             case 0x32:
  4989.               /* For fcom, ficom nothing to do.  */
  4990.               break;
  4991.             case 0x03:
  4992.             case 0x13:
  4993.             case 0x23:
  4994.             case 0x33:
  4995.               /* For fcomp, ficomp pop FPU stack, store all.  */
  4996.               if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
  4997.                 return -1;
  4998.               break;
  4999.             case 0x00:
  5000.             case 0x01:
  5001.             case 0x04:
  5002.             case 0x05:
  5003.             case 0x06:
  5004.             case 0x07:
  5005.             case 0x10:
  5006.             case 0x11:
  5007.             case 0x14:
  5008.             case 0x15:
  5009.             case 0x16:
  5010.             case 0x17:
  5011.             case 0x20:
  5012.             case 0x21:
  5013.             case 0x24:
  5014.             case 0x25:
  5015.             case 0x26:
  5016.             case 0x27:
  5017.             case 0x30:
  5018.             case 0x31:
  5019.             case 0x34:
  5020.             case 0x35:
  5021.             case 0x36:
  5022.             case 0x37:
  5023.               /* For fadd, fmul, fsub, fsubr, fdiv, fdivr, fiadd, fimul,
  5024.                  fisub, fisubr, fidiv, fidivr, modR/M.reg is an extension
  5025.                  of code,  always affects st(0) register.  */
  5026.               if (i386_record_floats (gdbarch, &ir, I387_ST0_REGNUM (tdep)))
  5027.                 return -1;
  5028.               break;
  5029.             case 0x08:
  5030.             case 0x0a:
  5031.             case 0x0b:
  5032.             case 0x18:
  5033.             case 0x19:
  5034.             case 0x1a:
  5035.             case 0x1b:
  5036.             case 0x1d:
  5037.             case 0x28:
  5038.             case 0x29:
  5039.             case 0x2a:
  5040.             case 0x2b:
  5041.             case 0x38:
  5042.             case 0x39:
  5043.             case 0x3a:
  5044.             case 0x3b:
  5045.             case 0x3c:
  5046.             case 0x3d:
  5047.               switch (ir.reg & 7)
  5048.                 {
  5049.                 case 0:
  5050.                   /* Handling fld, fild.  */
  5051.                   if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
  5052.                     return -1;
  5053.                   break;
  5054.                 case 1:
  5055.                   switch (ir.reg >> 4)
  5056.                     {
  5057.                     case 0:
  5058.                       if (record_full_arch_list_add_mem (addr64, 4))
  5059.                         return -1;
  5060.                       break;
  5061.                     case 2:
  5062.                       if (record_full_arch_list_add_mem (addr64, 8))
  5063.                         return -1;
  5064.                       break;
  5065.                     case 3:
  5066.                       break;
  5067.                     default:
  5068.                       if (record_full_arch_list_add_mem (addr64, 2))
  5069.                         return -1;
  5070.                       break;
  5071.                     }
  5072.                   break;
  5073.                 default:
  5074.                   switch (ir.reg >> 4)
  5075.                     {
  5076.                     case 0:
  5077.                       if (record_full_arch_list_add_mem (addr64, 4))
  5078.                         return -1;
  5079.                       if (3 == (ir.reg & 7))
  5080.                         {
  5081.                           /* For fstp m32fp.  */
  5082.                           if (i386_record_floats (gdbarch, &ir,
  5083.                                                   I386_SAVE_FPU_REGS))
  5084.                             return -1;
  5085.                         }
  5086.                       break;
  5087.                     case 1:
  5088.                       if (record_full_arch_list_add_mem (addr64, 4))
  5089.                         return -1;
  5090.                       if ((3 == (ir.reg & 7))
  5091.                           || (5 == (ir.reg & 7))
  5092.                           || (7 == (ir.reg & 7)))
  5093.                         {
  5094.                           /* For fstp insn.  */
  5095.                           if (i386_record_floats (gdbarch, &ir,
  5096.                                                   I386_SAVE_FPU_REGS))
  5097.                             return -1;
  5098.                         }
  5099.                       break;
  5100.                     case 2:
  5101.                       if (record_full_arch_list_add_mem (addr64, 8))
  5102.                         return -1;
  5103.                       if (3 == (ir.reg & 7))
  5104.                         {
  5105.                           /* For fstp m64fp.  */
  5106.                           if (i386_record_floats (gdbarch, &ir,
  5107.                                                   I386_SAVE_FPU_REGS))
  5108.                             return -1;
  5109.                         }
  5110.                       break;
  5111.                     case 3:
  5112.                       if ((3 <= (ir.reg & 7)) && (6 <= (ir.reg & 7)))
  5113.                         {
  5114.                           /* For fistp, fbld, fild, fbstp.  */
  5115.                           if (i386_record_floats (gdbarch, &ir,
  5116.                                                   I386_SAVE_FPU_REGS))
  5117.                             return -1;
  5118.                         }
  5119.                       /* Fall through */
  5120.                     default:
  5121.                       if (record_full_arch_list_add_mem (addr64, 2))
  5122.                         return -1;
  5123.                       break;
  5124.                     }
  5125.                   break;
  5126.                 }
  5127.               break;
  5128.             case 0x0c:
  5129.               /* Insn fldenv.  */
  5130.               if (i386_record_floats (gdbarch, &ir,
  5131.                                       I386_SAVE_FPU_ENV_REG_STACK))
  5132.                 return -1;
  5133.               break;
  5134.             case 0x0d:
  5135.               /* Insn fldcw.  */
  5136.               if (i386_record_floats (gdbarch, &ir, I387_FCTRL_REGNUM (tdep)))
  5137.                 return -1;
  5138.               break;
  5139.             case 0x2c:
  5140.               /* Insn frstor.  */
  5141.               if (i386_record_floats (gdbarch, &ir,
  5142.                                       I386_SAVE_FPU_ENV_REG_STACK))
  5143.                 return -1;
  5144.               break;
  5145.             case 0x0e:
  5146.               if (ir.dflag)
  5147.                 {
  5148.                   if (record_full_arch_list_add_mem (addr64, 28))
  5149.                     return -1;
  5150.                 }
  5151.               else
  5152.                 {
  5153.                   if (record_full_arch_list_add_mem (addr64, 14))
  5154.                     return -1;
  5155.                 }
  5156.               break;
  5157.             case 0x0f:
  5158.             case 0x2f:
  5159.               if (record_full_arch_list_add_mem (addr64, 2))
  5160.                 return -1;
  5161.               /* Insn fstp, fbstp.  */
  5162.               if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
  5163.                 return -1;
  5164.               break;
  5165.             case 0x1f:
  5166.             case 0x3e:
  5167.               if (record_full_arch_list_add_mem (addr64, 10))
  5168.                 return -1;
  5169.               break;
  5170.             case 0x2e:
  5171.               if (ir.dflag)
  5172.                 {
  5173.                   if (record_full_arch_list_add_mem (addr64, 28))
  5174.                     return -1;
  5175.                   addr64 += 28;
  5176.                 }
  5177.               else
  5178.                 {
  5179.                   if (record_full_arch_list_add_mem (addr64, 14))
  5180.                     return -1;
  5181.                   addr64 += 14;
  5182.                 }
  5183.               if (record_full_arch_list_add_mem (addr64, 80))
  5184.                 return -1;
  5185.               /* Insn fsave.  */
  5186.               if (i386_record_floats (gdbarch, &ir,
  5187.                                       I386_SAVE_FPU_ENV_REG_STACK))
  5188.                 return -1;
  5189.               break;
  5190.             case 0x3f:
  5191.               if (record_full_arch_list_add_mem (addr64, 8))
  5192.                 return -1;
  5193.               /* Insn fistp.  */
  5194.               if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
  5195.                 return -1;
  5196.               break;
  5197.             default:
  5198.               ir.addr -= 2;
  5199.               opcode = opcode << 8 | ir.modrm;
  5200.               goto no_support;
  5201.               break;
  5202.             }
  5203.         }
  5204.       /* Opcode is an extension of modR/M byte.  */
  5205.       else
  5206.         {
  5207.           switch (opcode)
  5208.             {
  5209.             case 0xd8:
  5210.               if (i386_record_floats (gdbarch, &ir, I387_ST0_REGNUM (tdep)))
  5211.                 return -1;
  5212.               break;
  5213.             case 0xd9:
  5214.               if (0x0c == (ir.modrm >> 4))
  5215.                 {
  5216.                   if ((ir.modrm & 0x0f) <= 7)
  5217.                     {
  5218.                       if (i386_record_floats (gdbarch, &ir,
  5219.                                               I386_SAVE_FPU_REGS))
  5220.                         return -1;
  5221.                     }
  5222.                   else
  5223.                     {
  5224.                       if (i386_record_floats (gdbarch, &ir,
  5225.                                               I387_ST0_REGNUM (tdep)))
  5226.                         return -1;
  5227.                       /* If only st(0) is changing, then we have already
  5228.                          recorded.  */
  5229.                       if ((ir.modrm & 0x0f) - 0x08)
  5230.                         {
  5231.                           if (i386_record_floats (gdbarch, &ir,
  5232.                                                   I387_ST0_REGNUM (tdep) +
  5233.                                                   ((ir.modrm & 0x0f) - 0x08)))
  5234.                             return -1;
  5235.                         }
  5236.                     }
  5237.                 }
  5238.               else
  5239.                 {
  5240.                   switch (ir.modrm)
  5241.                     {
  5242.                     case 0xe0:
  5243.                     case 0xe1:
  5244.                     case 0xf0:
  5245.                     case 0xf5:
  5246.                     case 0xf8:
  5247.                     case 0xfa:
  5248.                     case 0xfc:
  5249.                     case 0xfe:
  5250.                     case 0xff:
  5251.                       if (i386_record_floats (gdbarch, &ir,
  5252.                                               I387_ST0_REGNUM (tdep)))
  5253.                         return -1;
  5254.                       break;
  5255.                     case 0xf1:
  5256.                     case 0xf2:
  5257.                     case 0xf3:
  5258.                     case 0xf4:
  5259.                     case 0xf6:
  5260.                     case 0xf7:
  5261.                     case 0xe8:
  5262.                     case 0xe9:
  5263.                     case 0xea:
  5264.                     case 0xeb:
  5265.                     case 0xec:
  5266.                     case 0xed:
  5267.                     case 0xee:
  5268.                     case 0xf9:
  5269.                     case 0xfb:
  5270.                       if (i386_record_floats (gdbarch, &ir,
  5271.                                               I386_SAVE_FPU_REGS))
  5272.                         return -1;
  5273.                       break;
  5274.                     case 0xfd:
  5275.                       if (i386_record_floats (gdbarch, &ir,
  5276.                                               I387_ST0_REGNUM (tdep)))
  5277.                         return -1;
  5278.                       if (i386_record_floats (gdbarch, &ir,
  5279.                                               I387_ST0_REGNUM (tdep) + 1))
  5280.                         return -1;
  5281.                       break;
  5282.                     }
  5283.                 }
  5284.               break;
  5285.             case 0xda:
  5286.               if (0xe9 == ir.modrm)
  5287.                 {
  5288.                   if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
  5289.                     return -1;
  5290.                 }
  5291.               else if ((0x0c == ir.modrm >> 4) || (0x0d == ir.modrm >> 4))
  5292.                 {
  5293.                   if (i386_record_floats (gdbarch, &ir,
  5294.                                           I387_ST0_REGNUM (tdep)))
  5295.                     return -1;
  5296.                   if (((ir.modrm & 0x0f) > 0) && ((ir.modrm & 0x0f) <= 7))
  5297.                     {
  5298.                       if (i386_record_floats (gdbarch, &ir,
  5299.                                               I387_ST0_REGNUM (tdep) +
  5300.                                               (ir.modrm & 0x0f)))
  5301.                         return -1;
  5302.                     }
  5303.                   else if ((ir.modrm & 0x0f) - 0x08)
  5304.                     {
  5305.                       if (i386_record_floats (gdbarch, &ir,
  5306.                                               I387_ST0_REGNUM (tdep) +
  5307.                                               ((ir.modrm & 0x0f) - 0x08)))
  5308.                         return -1;
  5309.                     }
  5310.                 }
  5311.               break;
  5312.             case 0xdb:
  5313.               if (0xe3 == ir.modrm)
  5314.                 {
  5315.                   if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_ENV))
  5316.                     return -1;
  5317.                 }
  5318.               else if ((0x0c == ir.modrm >> 4) || (0x0d == ir.modrm >> 4))
  5319.                 {
  5320.                   if (i386_record_floats (gdbarch, &ir,
  5321.                                           I387_ST0_REGNUM (tdep)))
  5322.                     return -1;
  5323.                   if (((ir.modrm & 0x0f) > 0) && ((ir.modrm & 0x0f) <= 7))
  5324.                     {
  5325.                       if (i386_record_floats (gdbarch, &ir,
  5326.                                               I387_ST0_REGNUM (tdep) +
  5327.                                               (ir.modrm & 0x0f)))
  5328.                         return -1;
  5329.                     }
  5330.                   else if ((ir.modrm & 0x0f) - 0x08)
  5331.                     {
  5332.                       if (i386_record_floats (gdbarch, &ir,
  5333.                                               I387_ST0_REGNUM (tdep) +
  5334.                                               ((ir.modrm & 0x0f) - 0x08)))
  5335.                         return -1;
  5336.                     }
  5337.                 }
  5338.               break;
  5339.             case 0xdc:
  5340.               if ((0x0c == ir.modrm >> 4)
  5341.                   || (0x0d == ir.modrm >> 4)
  5342.                   || (0x0f == ir.modrm >> 4))
  5343.                 {
  5344.                   if ((ir.modrm & 0x0f) <= 7)
  5345.                     {
  5346.                       if (i386_record_floats (gdbarch, &ir,
  5347.                                               I387_ST0_REGNUM (tdep) +
  5348.                                               (ir.modrm & 0x0f)))
  5349.                         return -1;
  5350.                     }
  5351.                   else
  5352.                     {
  5353.                       if (i386_record_floats (gdbarch, &ir,
  5354.                                               I387_ST0_REGNUM (tdep) +
  5355.                                               ((ir.modrm & 0x0f) - 0x08)))
  5356.                         return -1;
  5357.                     }
  5358.                 }
  5359.               break;
  5360.             case 0xdd:
  5361.               if (0x0c == ir.modrm >> 4)
  5362.                 {
  5363.                   if (i386_record_floats (gdbarch, &ir,
  5364.                                           I387_FTAG_REGNUM (tdep)))
  5365.                     return -1;
  5366.                 }
  5367.               else if ((0x0d == ir.modrm >> 4) || (0x0e == ir.modrm >> 4))
  5368.                 {
  5369.                   if ((ir.modrm & 0x0f) <= 7)
  5370.                     {
  5371.                       if (i386_record_floats (gdbarch, &ir,
  5372.                                               I387_ST0_REGNUM (tdep) +
  5373.                                               (ir.modrm & 0x0f)))
  5374.                         return -1;
  5375.                     }
  5376.                   else
  5377.                     {
  5378.                       if (i386_record_floats (gdbarch, &ir,
  5379.                                               I386_SAVE_FPU_REGS))
  5380.                         return -1;
  5381.                     }
  5382.                 }
  5383.               break;
  5384.             case 0xde:
  5385.               if ((0x0c == ir.modrm >> 4)
  5386.                   || (0x0e == ir.modrm >> 4)
  5387.                   || (0x0f == ir.modrm >> 4)
  5388.                   || (0xd9 == ir.modrm))
  5389.                 {
  5390.                   if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
  5391.                     return -1;
  5392.                 }
  5393.               break;
  5394.             case 0xdf:
  5395.               if (0xe0 == ir.modrm)
  5396.                 {
  5397.                   if (record_full_arch_list_add_reg (ir.regcache,
  5398.                                                      I386_EAX_REGNUM))
  5399.                     return -1;
  5400.                 }
  5401.               else if ((0x0f == ir.modrm >> 4) || (0x0e == ir.modrm >> 4))
  5402.                 {
  5403.                   if (i386_record_floats (gdbarch, &ir, I386_SAVE_FPU_REGS))
  5404.                     return -1;
  5405.                 }
  5406.               break;
  5407.             }
  5408.         }
  5409.       break;
  5410.       /* string ops */
  5411.     case 0xa4:    /* movsS */
  5412.     case 0xa5:
  5413.     case 0xaa:    /* stosS */
  5414.     case 0xab:
  5415.     case 0x6c:    /* insS */
  5416.     case 0x6d:
  5417.       regcache_raw_read_unsigned (ir.regcache,
  5418.                                   ir.regmap[X86_RECORD_RECX_REGNUM],
  5419.                                   &addr);
  5420.       if (addr)
  5421.         {
  5422.           ULONGEST es, ds;

  5423.           if ((opcode & 1) == 0)
  5424.             ir.ot = OT_BYTE;
  5425.           else
  5426.             ir.ot = ir.dflag + OT_WORD;
  5427.           regcache_raw_read_unsigned (ir.regcache,
  5428.                                       ir.regmap[X86_RECORD_REDI_REGNUM],
  5429.                                       &addr);

  5430.           regcache_raw_read_unsigned (ir.regcache,
  5431.                                       ir.regmap[X86_RECORD_ES_REGNUM],
  5432.                                       &es);
  5433.           regcache_raw_read_unsigned (ir.regcache,
  5434.                                       ir.regmap[X86_RECORD_DS_REGNUM],
  5435.                                       &ds);
  5436.           if (ir.aflag && (es != ds))
  5437.             {
  5438.               /* addr += ((uint32_t) read_register (I386_ES_REGNUM)) << 4; */
  5439.               if (record_full_memory_query)
  5440.                 {
  5441.                   int q;

  5442.                   target_terminal_ours ();
  5443.                   q = yquery (_("\
  5444. Process record ignores the memory change of instruction at address %s\n\
  5445. because it can't get the value of the segment register.\n\
  5446. Do you want to stop the program?"),
  5447.                               paddress (gdbarch, ir.orig_addr));
  5448.                   target_terminal_inferior ();
  5449.                   if (q)
  5450.                     return -1;
  5451.                 }
  5452.             }
  5453.           else
  5454.             {
  5455.               if (record_full_arch_list_add_mem (addr, 1 << ir.ot))
  5456.                 return -1;
  5457.             }

  5458.           if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ))
  5459.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
  5460.           if (opcode == 0xa4 || opcode == 0xa5)
  5461.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESI_REGNUM);
  5462.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDI_REGNUM);
  5463.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5464.         }
  5465.       break;

  5466.     case 0xa6:    /* cmpsS */
  5467.     case 0xa7:
  5468.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDI_REGNUM);
  5469.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESI_REGNUM);
  5470.       if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ))
  5471.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
  5472.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5473.       break;

  5474.     case 0xac:    /* lodsS */
  5475.     case 0xad:
  5476.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  5477.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESI_REGNUM);
  5478.       if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ))
  5479.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
  5480.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5481.       break;

  5482.     case 0xae:    /* scasS */
  5483.     case 0xaf:
  5484.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDI_REGNUM);
  5485.       if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ))
  5486.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
  5487.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5488.       break;

  5489.     case 0x6e:    /* outsS */
  5490.     case 0x6f:
  5491.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESI_REGNUM);
  5492.       if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ))
  5493.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
  5494.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5495.       break;

  5496.     case 0xe4:    /* port I/O */
  5497.     case 0xe5:
  5498.     case 0xec:
  5499.     case 0xed:
  5500.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5501.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  5502.       break;

  5503.     case 0xe6:
  5504.     case 0xe7:
  5505.     case 0xee:
  5506.     case 0xef:
  5507.       break;

  5508.       /* control */
  5509.     case 0xc2:    /* ret im */
  5510.     case 0xc3:    /* ret */
  5511.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  5512.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5513.       break;

  5514.     case 0xca:    /* lret im */
  5515.     case 0xcb:    /* lret */
  5516.     case 0xcf:    /* iret */
  5517.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_CS_REGNUM);
  5518.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  5519.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5520.       break;

  5521.     case 0xe8:    /* call im */
  5522.       if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
  5523.         ir.dflag = 2;
  5524.       if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
  5525.         return -1;
  5526.       break;

  5527.     case 0x9a:    /* lcall im */
  5528.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  5529.         {
  5530.           ir.addr -= 1;
  5531.           goto no_support;
  5532.         }
  5533.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_CS_REGNUM);
  5534.       if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
  5535.         return -1;
  5536.       break;

  5537.     case 0xe9:    /* jmp im */
  5538.     case 0xea:    /* ljmp im */
  5539.     case 0xeb:    /* jmp Jb */
  5540.     case 0x70:    /* jcc Jb */
  5541.     case 0x71:
  5542.     case 0x72:
  5543.     case 0x73:
  5544.     case 0x74:
  5545.     case 0x75:
  5546.     case 0x76:
  5547.     case 0x77:
  5548.     case 0x78:
  5549.     case 0x79:
  5550.     case 0x7a:
  5551.     case 0x7b:
  5552.     case 0x7c:
  5553.     case 0x7d:
  5554.     case 0x7e:
  5555.     case 0x7f:
  5556.     case 0x0f80/* jcc Jv */
  5557.     case 0x0f81:
  5558.     case 0x0f82:
  5559.     case 0x0f83:
  5560.     case 0x0f84:
  5561.     case 0x0f85:
  5562.     case 0x0f86:
  5563.     case 0x0f87:
  5564.     case 0x0f88:
  5565.     case 0x0f89:
  5566.     case 0x0f8a:
  5567.     case 0x0f8b:
  5568.     case 0x0f8c:
  5569.     case 0x0f8d:
  5570.     case 0x0f8e:
  5571.     case 0x0f8f:
  5572.       break;

  5573.     case 0x0f90/* setcc Gv */
  5574.     case 0x0f91:
  5575.     case 0x0f92:
  5576.     case 0x0f93:
  5577.     case 0x0f94:
  5578.     case 0x0f95:
  5579.     case 0x0f96:
  5580.     case 0x0f97:
  5581.     case 0x0f98:
  5582.     case 0x0f99:
  5583.     case 0x0f9a:
  5584.     case 0x0f9b:
  5585.     case 0x0f9c:
  5586.     case 0x0f9d:
  5587.     case 0x0f9e:
  5588.     case 0x0f9f:
  5589.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5590.       ir.ot = OT_BYTE;
  5591.       if (i386_record_modrm (&ir))
  5592.         return -1;
  5593.       if (ir.mod == 3)
  5594.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rex_b ? (ir.rm | ir.rex_b)
  5595.                                             : (ir.rm & 0x3));
  5596.       else
  5597.         {
  5598.           if (i386_record_lea_modrm (&ir))
  5599.             return -1;
  5600.         }
  5601.       break;

  5602.     case 0x0f40:    /* cmov Gv, Ev */
  5603.     case 0x0f41:
  5604.     case 0x0f42:
  5605.     case 0x0f43:
  5606.     case 0x0f44:
  5607.     case 0x0f45:
  5608.     case 0x0f46:
  5609.     case 0x0f47:
  5610.     case 0x0f48:
  5611.     case 0x0f49:
  5612.     case 0x0f4a:
  5613.     case 0x0f4b:
  5614.     case 0x0f4c:
  5615.     case 0x0f4d:
  5616.     case 0x0f4e:
  5617.     case 0x0f4f:
  5618.       if (i386_record_modrm (&ir))
  5619.         return -1;
  5620.       ir.reg |= rex_r;
  5621.       if (ir.dflag == OT_BYTE)
  5622.         ir.reg &= 0x3;
  5623.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg);
  5624.       break;

  5625.       /* flags */
  5626.     case 0x9c:    /* pushf */
  5627.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5628.       if (ir.regmap[X86_RECORD_R8_REGNUM] && ir.dflag)
  5629.         ir.dflag = 2;
  5630.       if (i386_record_push (&ir, 1 << (ir.dflag + 1)))
  5631.         return -1;
  5632.       break;

  5633.     case 0x9d:    /* popf */
  5634.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  5635.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5636.       break;

  5637.     case 0x9e:    /* sahf */
  5638.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  5639.         {
  5640.           ir.addr -= 1;
  5641.           goto no_support;
  5642.         }
  5643.       /* FALLTHROUGH */
  5644.     case 0xf5:    /* cmc */
  5645.     case 0xf8:    /* clc */
  5646.     case 0xf9:    /* stc */
  5647.     case 0xfc:    /* cld */
  5648.     case 0xfd:    /* std */
  5649.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5650.       break;

  5651.     case 0x9f:    /* lahf */
  5652.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  5653.         {
  5654.           ir.addr -= 1;
  5655.           goto no_support;
  5656.         }
  5657.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5658.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  5659.       break;

  5660.       /* bit operations */
  5661.     case 0x0fba:    /* bt/bts/btr/btc Gv, im */
  5662.       ir.ot = ir.dflag + OT_WORD;
  5663.       if (i386_record_modrm (&ir))
  5664.         return -1;
  5665.       if (ir.reg < 4)
  5666.         {
  5667.           ir.addr -= 2;
  5668.           opcode = opcode << 8 | ir.modrm;
  5669.           goto no_support;
  5670.         }
  5671.       if (ir.reg != 4)
  5672.         {
  5673.           if (ir.mod == 3)
  5674.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
  5675.           else
  5676.             {
  5677.               if (i386_record_lea_modrm (&ir))
  5678.                 return -1;
  5679.             }
  5680.         }
  5681.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5682.       break;

  5683.     case 0x0fa3:    /* bt Gv, Ev */
  5684.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5685.       break;

  5686.     case 0x0fab:    /* bts */
  5687.     case 0x0fb3:    /* btr */
  5688.     case 0x0fbb:    /* btc */
  5689.       ir.ot = ir.dflag + OT_WORD;
  5690.       if (i386_record_modrm (&ir))
  5691.         return -1;
  5692.       if (ir.mod == 3)
  5693.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
  5694.       else
  5695.         {
  5696.           uint64_t addr64;
  5697.           if (i386_record_lea_modrm_addr (&ir, &addr64))
  5698.             return -1;
  5699.           regcache_raw_read_unsigned (ir.regcache,
  5700.                                       ir.regmap[ir.reg | rex_r],
  5701.                                       &addr);
  5702.           switch (ir.dflag)
  5703.             {
  5704.             case 0:
  5705.               addr64 += ((int16_t) addr >> 4) << 4;
  5706.               break;
  5707.             case 1:
  5708.               addr64 += ((int32_t) addr >> 5) << 5;
  5709.               break;
  5710.             case 2:
  5711.               addr64 += ((int64_t) addr >> 6) << 6;
  5712.               break;
  5713.             }
  5714.           if (record_full_arch_list_add_mem (addr64, 1 << ir.ot))
  5715.             return -1;
  5716.           if (i386_record_lea_modrm (&ir))
  5717.             return -1;
  5718.         }
  5719.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5720.       break;

  5721.     case 0x0fbc:    /* bsf */
  5722.     case 0x0fbd:    /* bsr */
  5723.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg | rex_r);
  5724.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5725.       break;

  5726.       /* bcd */
  5727.     case 0x27:    /* daa */
  5728.     case 0x2f:    /* das */
  5729.     case 0x37:    /* aaa */
  5730.     case 0x3f:    /* aas */
  5731.     case 0xd4:    /* aam */
  5732.     case 0xd5:    /* aad */
  5733.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  5734.         {
  5735.           ir.addr -= 1;
  5736.           goto no_support;
  5737.         }
  5738.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  5739.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5740.       break;

  5741.       /* misc */
  5742.     case 0x90:    /* nop */
  5743.       if (prefixes & PREFIX_LOCK)
  5744.         {
  5745.           ir.addr -= 1;
  5746.           goto no_support;
  5747.         }
  5748.       break;

  5749.     case 0x9b:    /* fwait */
  5750.       if (record_read_memory (gdbarch, ir.addr, &opcode8, 1))
  5751.         return -1;
  5752.       opcode = (uint32_t) opcode8;
  5753.       ir.addr++;
  5754.       goto reswitch;
  5755.       break;

  5756.       /* XXX */
  5757.     case 0xcc:    /* int3 */
  5758.       printf_unfiltered (_("Process record does not support instruction "
  5759.                            "int3.\n"));
  5760.       ir.addr -= 1;
  5761.       goto no_support;
  5762.       break;

  5763.       /* XXX */
  5764.     case 0xcd:    /* int */
  5765.       {
  5766.         int ret;
  5767.         uint8_t interrupt;
  5768.         if (record_read_memory (gdbarch, ir.addr, &interrupt, 1))
  5769.           return -1;
  5770.         ir.addr++;
  5771.         if (interrupt != 0x80
  5772.             || tdep->i386_intx80_record == NULL)
  5773.           {
  5774.             printf_unfiltered (_("Process record does not support "
  5775.                                  "instruction int 0x%02x.\n"),
  5776.                                interrupt);
  5777.             ir.addr -= 2;
  5778.             goto no_support;
  5779.           }
  5780.         ret = tdep->i386_intx80_record (ir.regcache);
  5781.         if (ret)
  5782.           return ret;
  5783.       }
  5784.       break;

  5785.       /* XXX */
  5786.     case 0xce:    /* into */
  5787.       printf_unfiltered (_("Process record does not support "
  5788.                            "instruction into.\n"));
  5789.       ir.addr -= 1;
  5790.       goto no_support;
  5791.       break;

  5792.     case 0xfa:    /* cli */
  5793.     case 0xfb:    /* sti */
  5794.       break;

  5795.     case 0x62:    /* bound */
  5796.       printf_unfiltered (_("Process record does not support "
  5797.                            "instruction bound.\n"));
  5798.       ir.addr -= 1;
  5799.       goto no_support;
  5800.       break;

  5801.     case 0x0fc8:    /* bswap reg */
  5802.     case 0x0fc9:
  5803.     case 0x0fca:
  5804.     case 0x0fcb:
  5805.     case 0x0fcc:
  5806.     case 0x0fcd:
  5807.     case 0x0fce:
  5808.     case 0x0fcf:
  5809.       I386_RECORD_FULL_ARCH_LIST_ADD_REG ((opcode & 7) | ir.rex_b);
  5810.       break;

  5811.     case 0xd6:    /* salc */
  5812.       if (ir.regmap[X86_RECORD_R8_REGNUM])
  5813.         {
  5814.           ir.addr -= 1;
  5815.           goto no_support;
  5816.         }
  5817.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  5818.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5819.       break;

  5820.     case 0xe0:    /* loopnz */
  5821.     case 0xe1:    /* loopz */
  5822.     case 0xe2:    /* loop */
  5823.     case 0xe3:    /* jecxz */
  5824.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
  5825.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5826.       break;

  5827.     case 0x0f30:    /* wrmsr */
  5828.       printf_unfiltered (_("Process record does not support "
  5829.                            "instruction wrmsr.\n"));
  5830.       ir.addr -= 2;
  5831.       goto no_support;
  5832.       break;

  5833.     case 0x0f32:    /* rdmsr */
  5834.       printf_unfiltered (_("Process record does not support "
  5835.                            "instruction rdmsr.\n"));
  5836.       ir.addr -= 2;
  5837.       goto no_support;
  5838.       break;

  5839.     case 0x0f31:    /* rdtsc */
  5840.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  5841.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
  5842.       break;

  5843.     case 0x0f34:    /* sysenter */
  5844.       {
  5845.         int ret;
  5846.         if (ir.regmap[X86_RECORD_R8_REGNUM])
  5847.           {
  5848.             ir.addr -= 2;
  5849.             goto no_support;
  5850.           }
  5851.         if (tdep->i386_sysenter_record == NULL)
  5852.           {
  5853.             printf_unfiltered (_("Process record does not support "
  5854.                                  "instruction sysenter.\n"));
  5855.             ir.addr -= 2;
  5856.             goto no_support;
  5857.           }
  5858.         ret = tdep->i386_sysenter_record (ir.regcache);
  5859.         if (ret)
  5860.           return ret;
  5861.       }
  5862.       break;

  5863.     case 0x0f35:    /* sysexit */
  5864.       printf_unfiltered (_("Process record does not support "
  5865.                            "instruction sysexit.\n"));
  5866.       ir.addr -= 2;
  5867.       goto no_support;
  5868.       break;

  5869.     case 0x0f05:    /* syscall */
  5870.       {
  5871.         int ret;
  5872.         if (tdep->i386_syscall_record == NULL)
  5873.           {
  5874.             printf_unfiltered (_("Process record does not support "
  5875.                                  "instruction syscall.\n"));
  5876.             ir.addr -= 2;
  5877.             goto no_support;
  5878.           }
  5879.         ret = tdep->i386_syscall_record (ir.regcache);
  5880.         if (ret)
  5881.           return ret;
  5882.       }
  5883.       break;

  5884.     case 0x0f07:    /* sysret */
  5885.       printf_unfiltered (_("Process record does not support "
  5886.                            "instruction sysret.\n"));
  5887.       ir.addr -= 2;
  5888.       goto no_support;
  5889.       break;

  5890.     case 0x0fa2:    /* cpuid */
  5891.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  5892.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
  5893.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
  5894.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REBX_REGNUM);
  5895.       break;

  5896.     case 0xf4:    /* hlt */
  5897.       printf_unfiltered (_("Process record does not support "
  5898.                            "instruction hlt.\n"));
  5899.       ir.addr -= 1;
  5900.       goto no_support;
  5901.       break;

  5902.     case 0x0f00:
  5903.       if (i386_record_modrm (&ir))
  5904.         return -1;
  5905.       switch (ir.reg)
  5906.         {
  5907.         case 0/* sldt */
  5908.         case 1/* str  */
  5909.           if (ir.mod == 3)
  5910.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
  5911.           else
  5912.             {
  5913.               ir.ot = OT_WORD;
  5914.               if (i386_record_lea_modrm (&ir))
  5915.                 return -1;
  5916.             }
  5917.           break;
  5918.         case 2/* lldt */
  5919.         case 3/* ltr */
  5920.           break;
  5921.         case 4/* verr */
  5922.         case 5/* verw */
  5923.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5924.           break;
  5925.         default:
  5926.           ir.addr -= 3;
  5927.           opcode = opcode << 8 | ir.modrm;
  5928.           goto no_support;
  5929.           break;
  5930.         }
  5931.       break;

  5932.     case 0x0f01:
  5933.       if (i386_record_modrm (&ir))
  5934.         return -1;
  5935.       switch (ir.reg)
  5936.         {
  5937.         case 0/* sgdt */
  5938.           {
  5939.             uint64_t addr64;

  5940.             if (ir.mod == 3)
  5941.               {
  5942.                 ir.addr -= 3;
  5943.                 opcode = opcode << 8 | ir.modrm;
  5944.                 goto no_support;
  5945.               }
  5946.             if (ir.override >= 0)
  5947.               {
  5948.                 if (record_full_memory_query)
  5949.                   {
  5950.                     int q;

  5951.                     target_terminal_ours ();
  5952.                     q = yquery (_("\
  5953. Process record ignores the memory change of instruction at address %s\n\
  5954. because it can't get the value of the segment register.\n\
  5955. Do you want to stop the program?"),
  5956.                                 paddress (gdbarch, ir.orig_addr));
  5957.                     target_terminal_inferior ();
  5958.                     if (q)
  5959.                       return -1;
  5960.                   }
  5961.               }
  5962.             else
  5963.               {
  5964.                 if (i386_record_lea_modrm_addr (&ir, &addr64))
  5965.                   return -1;
  5966.                 if (record_full_arch_list_add_mem (addr64, 2))
  5967.                   return -1;
  5968.                 addr64 += 2;
  5969.                 if (ir.regmap[X86_RECORD_R8_REGNUM])
  5970.                   {
  5971.                     if (record_full_arch_list_add_mem (addr64, 8))
  5972.                       return -1;
  5973.                   }
  5974.                 else
  5975.                   {
  5976.                     if (record_full_arch_list_add_mem (addr64, 4))
  5977.                       return -1;
  5978.                   }
  5979.               }
  5980.           }
  5981.           break;
  5982.         case 1:
  5983.           if (ir.mod == 3)
  5984.             {
  5985.               switch (ir.rm)
  5986.                 {
  5987.                 case 0/* monitor */
  5988.                   break;
  5989.                 case 1/* mwait */
  5990.                   I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  5991.                   break;
  5992.                 default:
  5993.                   ir.addr -= 3;
  5994.                   opcode = opcode << 8 | ir.modrm;
  5995.                   goto no_support;
  5996.                   break;
  5997.                 }
  5998.             }
  5999.           else
  6000.             {
  6001.               /* sidt */
  6002.               if (ir.override >= 0)
  6003.                 {
  6004.                   if (record_full_memory_query)
  6005.                     {
  6006.                       int q;

  6007.                       target_terminal_ours ();
  6008.                       q = yquery (_("\
  6009. Process record ignores the memory change of instruction at address %s\n\
  6010. because it can't get the value of the segment register.\n\
  6011. Do you want to stop the program?"),
  6012.                                   paddress (gdbarch, ir.orig_addr));
  6013.                       target_terminal_inferior ();
  6014.                       if (q)
  6015.                         return -1;
  6016.                     }
  6017.                 }
  6018.               else
  6019.                 {
  6020.                   uint64_t addr64;

  6021.                   if (i386_record_lea_modrm_addr (&ir, &addr64))
  6022.                     return -1;
  6023.                   if (record_full_arch_list_add_mem (addr64, 2))
  6024.                     return -1;
  6025.                   addr64 += 2;
  6026.                   if (ir.regmap[X86_RECORD_R8_REGNUM])
  6027.                     {
  6028.                       if (record_full_arch_list_add_mem (addr64, 8))
  6029.                         return -1;
  6030.                     }
  6031.                   else
  6032.                     {
  6033.                       if (record_full_arch_list_add_mem (addr64, 4))
  6034.                         return -1;
  6035.                     }
  6036.                 }
  6037.             }
  6038.           break;
  6039.         case 2/* lgdt */
  6040.           if (ir.mod == 3)
  6041.             {
  6042.               /* xgetbv */
  6043.               if (ir.rm == 0)
  6044.                 {
  6045.                   I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  6046.                   I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
  6047.                   break;
  6048.                 }
  6049.               /* xsetbv */
  6050.               else if (ir.rm == 1)
  6051.                 break;
  6052.             }
  6053.         case 3/* lidt */
  6054.           if (ir.mod == 3)
  6055.             {
  6056.               ir.addr -= 3;
  6057.               opcode = opcode << 8 | ir.modrm;
  6058.               goto no_support;
  6059.             }
  6060.           break;
  6061.         case 4/* smsw */
  6062.           if (ir.mod == 3)
  6063.             {
  6064.               if (record_full_arch_list_add_reg (ir.regcache, ir.rm | ir.rex_b))
  6065.                 return -1;
  6066.             }
  6067.           else
  6068.             {
  6069.               ir.ot = OT_WORD;
  6070.               if (i386_record_lea_modrm (&ir))
  6071.                 return -1;
  6072.             }
  6073.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6074.           break;
  6075.         case 6/* lmsw */
  6076.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6077.           break;
  6078.         case 7/* invlpg */
  6079.           if (ir.mod == 3)
  6080.             {
  6081.               if (ir.rm == 0 && ir.regmap[X86_RECORD_R8_REGNUM])
  6082.                 I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_GS_REGNUM);
  6083.               else
  6084.                 {
  6085.                   ir.addr -= 3;
  6086.                   opcode = opcode << 8 | ir.modrm;
  6087.                   goto no_support;
  6088.                 }
  6089.             }
  6090.           else
  6091.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6092.           break;
  6093.         default:
  6094.           ir.addr -= 3;
  6095.           opcode = opcode << 8 | ir.modrm;
  6096.           goto no_support;
  6097.           break;
  6098.         }
  6099.       break;

  6100.     case 0x0f08:    /* invd */
  6101.     case 0x0f09:    /* wbinvd */
  6102.       break;

  6103.     case 0x63:    /* arpl */
  6104.       if (i386_record_modrm (&ir))
  6105.         return -1;
  6106.       if (ir.mod == 3 || ir.regmap[X86_RECORD_R8_REGNUM])
  6107.         {
  6108.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.regmap[X86_RECORD_R8_REGNUM]
  6109.                                               ? (ir.reg | rex_r) : ir.rm);
  6110.         }
  6111.       else
  6112.         {
  6113.           ir.ot = ir.dflag ? OT_LONG : OT_WORD;
  6114.           if (i386_record_lea_modrm (&ir))
  6115.             return -1;
  6116.         }
  6117.       if (!ir.regmap[X86_RECORD_R8_REGNUM])
  6118.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6119.       break;

  6120.     case 0x0f02:    /* lar */
  6121.     case 0x0f03:    /* lsl */
  6122.       if (i386_record_modrm (&ir))
  6123.         return -1;
  6124.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg | rex_r);
  6125.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6126.       break;

  6127.     case 0x0f18:
  6128.       if (i386_record_modrm (&ir))
  6129.         return -1;
  6130.       if (ir.mod == 3 && ir.reg == 3)
  6131.         {
  6132.           ir.addr -= 3;
  6133.           opcode = opcode << 8 | ir.modrm;
  6134.           goto no_support;
  6135.         }
  6136.       break;

  6137.     case 0x0f19:
  6138.     case 0x0f1a:
  6139.     case 0x0f1b:
  6140.     case 0x0f1c:
  6141.     case 0x0f1d:
  6142.     case 0x0f1e:
  6143.     case 0x0f1f:
  6144.       /* nop (multi byte) */
  6145.       break;

  6146.     case 0x0f20:    /* mov reg, crN */
  6147.     case 0x0f22:    /* mov crN, reg */
  6148.       if (i386_record_modrm (&ir))
  6149.         return -1;
  6150.       if ((ir.modrm & 0xc0) != 0xc0)
  6151.         {
  6152.           ir.addr -= 3;
  6153.           opcode = opcode << 8 | ir.modrm;
  6154.           goto no_support;
  6155.         }
  6156.       switch (ir.reg)
  6157.         {
  6158.         case 0:
  6159.         case 2:
  6160.         case 3:
  6161.         case 4:
  6162.         case 8:
  6163.           if (opcode & 2)
  6164.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6165.           else
  6166.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
  6167.           break;
  6168.         default:
  6169.           ir.addr -= 3;
  6170.           opcode = opcode << 8 | ir.modrm;
  6171.           goto no_support;
  6172.           break;
  6173.         }
  6174.       break;

  6175.     case 0x0f21:    /* mov reg, drN */
  6176.     case 0x0f23:    /* mov drN, reg */
  6177.       if (i386_record_modrm (&ir))
  6178.         return -1;
  6179.       if ((ir.modrm & 0xc0) != 0xc0 || ir.reg == 4
  6180.           || ir.reg == 5 || ir.reg >= 8)
  6181.         {
  6182.           ir.addr -= 3;
  6183.           opcode = opcode << 8 | ir.modrm;
  6184.           goto no_support;
  6185.         }
  6186.       if (opcode & 2)
  6187.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6188.       else
  6189.         I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
  6190.       break;

  6191.     case 0x0f06:    /* clts */
  6192.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6193.       break;

  6194.     /* MMX 3DNow! SSE SSE2 SSE3 SSSE3 SSE4 */

  6195.     case 0x0f0d:    /* 3DNow! prefetch */
  6196.       break;

  6197.     case 0x0f0e:    /* 3DNow! femms */
  6198.     case 0x0f77:    /* emms */
  6199.       if (i386_fpc_regnum_p (gdbarch, I387_FTAG_REGNUM(tdep)))
  6200.         goto no_support;
  6201.       record_full_arch_list_add_reg (ir.regcache, I387_FTAG_REGNUM(tdep));
  6202.       break;

  6203.     case 0x0f0f:    /* 3DNow! data */
  6204.       if (i386_record_modrm (&ir))
  6205.         return -1;
  6206.       if (record_read_memory (gdbarch, ir.addr, &opcode8, 1))
  6207.         return -1;
  6208.       ir.addr++;
  6209.       switch (opcode8)
  6210.         {
  6211.         case 0x0c:    /* 3DNow! pi2fw */
  6212.         case 0x0d:    /* 3DNow! pi2fd */
  6213.         case 0x1c:    /* 3DNow! pf2iw */
  6214.         case 0x1d:    /* 3DNow! pf2id */
  6215.         case 0x8a:    /* 3DNow! pfnacc */
  6216.         case 0x8e:    /* 3DNow! pfpnacc */
  6217.         case 0x90:    /* 3DNow! pfcmpge */
  6218.         case 0x94:    /* 3DNow! pfmin */
  6219.         case 0x96:    /* 3DNow! pfrcp */
  6220.         case 0x97:    /* 3DNow! pfrsqrt */
  6221.         case 0x9a:    /* 3DNow! pfsub */
  6222.         case 0x9e:    /* 3DNow! pfadd */
  6223.         case 0xa0:    /* 3DNow! pfcmpgt */
  6224.         case 0xa4:    /* 3DNow! pfmax */
  6225.         case 0xa6:    /* 3DNow! pfrcpit1 */
  6226.         case 0xa7:    /* 3DNow! pfrsqit1 */
  6227.         case 0xaa:    /* 3DNow! pfsubr */
  6228.         case 0xae:    /* 3DNow! pfacc */
  6229.         case 0xb0:    /* 3DNow! pfcmpeq */
  6230.         case 0xb4:    /* 3DNow! pfmul */
  6231.         case 0xb6:    /* 3DNow! pfrcpit2 */
  6232.         case 0xb7:    /* 3DNow! pmulhrw */
  6233.         case 0xbb:    /* 3DNow! pswapd */
  6234.         case 0xbf:    /* 3DNow! pavgusb */
  6235.           if (!i386_mmx_regnum_p (gdbarch, I387_MM0_REGNUM (tdep) + ir.reg))
  6236.             goto no_support_3dnow_data;
  6237.           record_full_arch_list_add_reg (ir.regcache, ir.reg);
  6238.           break;

  6239.         default:
  6240. no_support_3dnow_data:
  6241.           opcode = (opcode << 8) | opcode8;
  6242.           goto no_support;
  6243.           break;
  6244.         }
  6245.       break;

  6246.     case 0x0faa:    /* rsm */
  6247.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6248.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM);
  6249.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM);
  6250.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM);
  6251.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REBX_REGNUM);
  6252.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESP_REGNUM);
  6253.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REBP_REGNUM);
  6254.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RESI_REGNUM);
  6255.       I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDI_REGNUM);
  6256.       break;

  6257.     case 0x0fae:
  6258.       if (i386_record_modrm (&ir))
  6259.         return -1;
  6260.       switch(ir.reg)
  6261.         {
  6262.         case 0:    /* fxsave */
  6263.           {
  6264.             uint64_t tmpu64;

  6265.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6266.             if (i386_record_lea_modrm_addr (&ir, &tmpu64))
  6267.               return -1;
  6268.             if (record_full_arch_list_add_mem (tmpu64, 512))
  6269.               return -1;
  6270.           }
  6271.           break;

  6272.         case 1:    /* fxrstor */
  6273.           {
  6274.             int i;

  6275.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);

  6276.             for (i = I387_MM0_REGNUM (tdep);
  6277.                  i386_mmx_regnum_p (gdbarch, i); i++)
  6278.               record_full_arch_list_add_reg (ir.regcache, i);

  6279.             for (i = I387_XMM0_REGNUM (tdep);
  6280.                  i386_xmm_regnum_p (gdbarch, i); i++)
  6281.               record_full_arch_list_add_reg (ir.regcache, i);

  6282.             if (i386_mxcsr_regnum_p (gdbarch, I387_MXCSR_REGNUM(tdep)))
  6283.               record_full_arch_list_add_reg (ir.regcache,
  6284.                                              I387_MXCSR_REGNUM(tdep));

  6285.             for (i = I387_ST0_REGNUM (tdep);
  6286.                  i386_fp_regnum_p (gdbarch, i); i++)
  6287.               record_full_arch_list_add_reg (ir.regcache, i);

  6288.             for (i = I387_FCTRL_REGNUM (tdep);
  6289.                  i386_fpc_regnum_p (gdbarch, i); i++)
  6290.               record_full_arch_list_add_reg (ir.regcache, i);
  6291.           }
  6292.           break;

  6293.         case 2:    /* ldmxcsr */
  6294.           if (!i386_mxcsr_regnum_p (gdbarch, I387_MXCSR_REGNUM(tdep)))
  6295.             goto no_support;
  6296.           record_full_arch_list_add_reg (ir.regcache, I387_MXCSR_REGNUM(tdep));
  6297.           break;

  6298.         case 3:    /* stmxcsr */
  6299.           ir.ot = OT_LONG;
  6300.           if (i386_record_lea_modrm (&ir))
  6301.             return -1;
  6302.           break;

  6303.         case 5:    /* lfence */
  6304.         case 6:    /* mfence */
  6305.         case 7:    /* sfence clflush */
  6306.           break;

  6307.         default:
  6308.           opcode = (opcode << 8) | ir.modrm;
  6309.           goto no_support;
  6310.           break;
  6311.         }
  6312.       break;

  6313.     case 0x0fc3:    /* movnti */
  6314.       ir.ot = (ir.dflag == 2) ? OT_QUAD : OT_LONG;
  6315.       if (i386_record_modrm (&ir))
  6316.         return -1;
  6317.       if (ir.mod == 3)
  6318.         goto no_support;
  6319.       ir.reg |= rex_r;
  6320.       if (i386_record_lea_modrm (&ir))
  6321.         return -1;
  6322.       break;

  6323.     /* Add prefix to opcode.  */
  6324.     case 0x0f10:
  6325.     case 0x0f11:
  6326.     case 0x0f12:
  6327.     case 0x0f13:
  6328.     case 0x0f14:
  6329.     case 0x0f15:
  6330.     case 0x0f16:
  6331.     case 0x0f17:
  6332.     case 0x0f28:
  6333.     case 0x0f29:
  6334.     case 0x0f2a:
  6335.     case 0x0f2b:
  6336.     case 0x0f2c:
  6337.     case 0x0f2d:
  6338.     case 0x0f2e:
  6339.     case 0x0f2f:
  6340.     case 0x0f38:
  6341.     case 0x0f39:
  6342.     case 0x0f3a:
  6343.     case 0x0f50:
  6344.     case 0x0f51:
  6345.     case 0x0f52:
  6346.     case 0x0f53:
  6347.     case 0x0f54:
  6348.     case 0x0f55:
  6349.     case 0x0f56:
  6350.     case 0x0f57:
  6351.     case 0x0f58:
  6352.     case 0x0f59:
  6353.     case 0x0f5a:
  6354.     case 0x0f5b:
  6355.     case 0x0f5c:
  6356.     case 0x0f5d:
  6357.     case 0x0f5e:
  6358.     case 0x0f5f:
  6359.     case 0x0f60:
  6360.     case 0x0f61:
  6361.     case 0x0f62:
  6362.     case 0x0f63:
  6363.     case 0x0f64:
  6364.     case 0x0f65:
  6365.     case 0x0f66:
  6366.     case 0x0f67:
  6367.     case 0x0f68:
  6368.     case 0x0f69:
  6369.     case 0x0f6a:
  6370.     case 0x0f6b:
  6371.     case 0x0f6c:
  6372.     case 0x0f6d:
  6373.     case 0x0f6e:
  6374.     case 0x0f6f:
  6375.     case 0x0f70:
  6376.     case 0x0f71:
  6377.     case 0x0f72:
  6378.     case 0x0f73:
  6379.     case 0x0f74:
  6380.     case 0x0f75:
  6381.     case 0x0f76:
  6382.     case 0x0f7c:
  6383.     case 0x0f7d:
  6384.     case 0x0f7e:
  6385.     case 0x0f7f:
  6386.     case 0x0fb8:
  6387.     case 0x0fc2:
  6388.     case 0x0fc4:
  6389.     case 0x0fc5:
  6390.     case 0x0fc6:
  6391.     case 0x0fd0:
  6392.     case 0x0fd1:
  6393.     case 0x0fd2:
  6394.     case 0x0fd3:
  6395.     case 0x0fd4:
  6396.     case 0x0fd5:
  6397.     case 0x0fd6:
  6398.     case 0x0fd7:
  6399.     case 0x0fd8:
  6400.     case 0x0fd9:
  6401.     case 0x0fda:
  6402.     case 0x0fdb:
  6403.     case 0x0fdc:
  6404.     case 0x0fdd:
  6405.     case 0x0fde:
  6406.     case 0x0fdf:
  6407.     case 0x0fe0:
  6408.     case 0x0fe1:
  6409.     case 0x0fe2:
  6410.     case 0x0fe3:
  6411.     case 0x0fe4:
  6412.     case 0x0fe5:
  6413.     case 0x0fe6:
  6414.     case 0x0fe7:
  6415.     case 0x0fe8:
  6416.     case 0x0fe9:
  6417.     case 0x0fea:
  6418.     case 0x0feb:
  6419.     case 0x0fec:
  6420.     case 0x0fed:
  6421.     case 0x0fee:
  6422.     case 0x0fef:
  6423.     case 0x0ff0:
  6424.     case 0x0ff1:
  6425.     case 0x0ff2:
  6426.     case 0x0ff3:
  6427.     case 0x0ff4:
  6428.     case 0x0ff5:
  6429.     case 0x0ff6:
  6430.     case 0x0ff7:
  6431.     case 0x0ff8:
  6432.     case 0x0ff9:
  6433.     case 0x0ffa:
  6434.     case 0x0ffb:
  6435.     case 0x0ffc:
  6436.     case 0x0ffd:
  6437.     case 0x0ffe:
  6438.       /* Mask out PREFIX_ADDR.  */
  6439.       switch ((prefixes & ~PREFIX_ADDR))
  6440.         {
  6441.         case PREFIX_REPNZ:
  6442.           opcode |= 0xf20000;
  6443.           break;
  6444.         case PREFIX_DATA:
  6445.           opcode |= 0x660000;
  6446.           break;
  6447.         case PREFIX_REPZ:
  6448.           opcode |= 0xf30000;
  6449.           break;
  6450.         }
  6451. reswitch_prefix_add:
  6452.       switch (opcode)
  6453.         {
  6454.         case 0x0f38:
  6455.         case 0x660f38:
  6456.         case 0xf20f38:
  6457.         case 0x0f3a:
  6458.         case 0x660f3a:
  6459.           if (record_read_memory (gdbarch, ir.addr, &opcode8, 1))
  6460.             return -1;
  6461.           ir.addr++;
  6462.           opcode = (uint32_t) opcode8 | opcode << 8;
  6463.           goto reswitch_prefix_add;
  6464.           break;

  6465.         case 0x0f10:        /* movups */
  6466.         case 0x660f10:      /* movupd */
  6467.         case 0xf30f10:      /* movss */
  6468.         case 0xf20f10:      /* movsd */
  6469.         case 0x0f12:        /* movlps */
  6470.         case 0x660f12:      /* movlpd */
  6471.         case 0xf30f12:      /* movsldup */
  6472.         case 0xf20f12:      /* movddup */
  6473.         case 0x0f14:        /* unpcklps */
  6474.         case 0x660f14:      /* unpcklpd */
  6475.         case 0x0f15:        /* unpckhps */
  6476.         case 0x660f15:      /* unpckhpd */
  6477.         case 0x0f16:        /* movhps */
  6478.         case 0x660f16:      /* movhpd */
  6479.         case 0xf30f16:      /* movshdup */
  6480.         case 0x0f28:        /* movaps */
  6481.         case 0x660f28:      /* movapd */
  6482.         case 0x0f2a:        /* cvtpi2ps */
  6483.         case 0x660f2a:      /* cvtpi2pd */
  6484.         case 0xf30f2a:      /* cvtsi2ss */
  6485.         case 0xf20f2a:      /* cvtsi2sd */
  6486.         case 0x0f2c:        /* cvttps2pi */
  6487.         case 0x660f2c:      /* cvttpd2pi */
  6488.         case 0x0f2d:        /* cvtps2pi */
  6489.         case 0x660f2d:      /* cvtpd2pi */
  6490.         case 0x660f3800:    /* pshufb */
  6491.         case 0x660f3801:    /* phaddw */
  6492.         case 0x660f3802:    /* phaddd */
  6493.         case 0x660f3803:    /* phaddsw */
  6494.         case 0x660f3804:    /* pmaddubsw */
  6495.         case 0x660f3805:    /* phsubw */
  6496.         case 0x660f3806:    /* phsubd */
  6497.         case 0x660f3807:    /* phsubsw */
  6498.         case 0x660f3808:    /* psignb */
  6499.         case 0x660f3809:    /* psignw */
  6500.         case 0x660f380a:    /* psignd */
  6501.         case 0x660f380b:    /* pmulhrsw */
  6502.         case 0x660f3810:    /* pblendvb */
  6503.         case 0x660f3814:    /* blendvps */
  6504.         case 0x660f3815:    /* blendvpd */
  6505.         case 0x660f381c:    /* pabsb */
  6506.         case 0x660f381d:    /* pabsw */
  6507.         case 0x660f381e:    /* pabsd */
  6508.         case 0x660f3820:    /* pmovsxbw */
  6509.         case 0x660f3821:    /* pmovsxbd */
  6510.         case 0x660f3822:    /* pmovsxbq */
  6511.         case 0x660f3823:    /* pmovsxwd */
  6512.         case 0x660f3824:    /* pmovsxwq */
  6513.         case 0x660f3825:    /* pmovsxdq */
  6514.         case 0x660f3828:    /* pmuldq */
  6515.         case 0x660f3829:    /* pcmpeqq */
  6516.         case 0x660f382a:    /* movntdqa */
  6517.         case 0x660f3a08:    /* roundps */
  6518.         case 0x660f3a09:    /* roundpd */
  6519.         case 0x660f3a0a:    /* roundss */
  6520.         case 0x660f3a0b:    /* roundsd */
  6521.         case 0x660f3a0c:    /* blendps */
  6522.         case 0x660f3a0d:    /* blendpd */
  6523.         case 0x660f3a0e:    /* pblendw */
  6524.         case 0x660f3a0f:    /* palignr */
  6525.         case 0x660f3a20:    /* pinsrb */
  6526.         case 0x660f3a21:    /* insertps */
  6527.         case 0x660f3a22:    /* pinsrd pinsrq */
  6528.         case 0x660f3a40:    /* dpps */
  6529.         case 0x660f3a41:    /* dppd */
  6530.         case 0x660f3a42:    /* mpsadbw */
  6531.         case 0x660f3a60:    /* pcmpestrm */
  6532.         case 0x660f3a61:    /* pcmpestri */
  6533.         case 0x660f3a62:    /* pcmpistrm */
  6534.         case 0x660f3a63:    /* pcmpistri */
  6535.         case 0x0f51:        /* sqrtps */
  6536.         case 0x660f51:      /* sqrtpd */
  6537.         case 0xf20f51:      /* sqrtsd */
  6538.         case 0xf30f51:      /* sqrtss */
  6539.         case 0x0f52:        /* rsqrtps */
  6540.         case 0xf30f52:      /* rsqrtss */
  6541.         case 0x0f53:        /* rcpps */
  6542.         case 0xf30f53:      /* rcpss */
  6543.         case 0x0f54:        /* andps */
  6544.         case 0x660f54:      /* andpd */
  6545.         case 0x0f55:        /* andnps */
  6546.         case 0x660f55:      /* andnpd */
  6547.         case 0x0f56:        /* orps */
  6548.         case 0x660f56:      /* orpd */
  6549.         case 0x0f57:        /* xorps */
  6550.         case 0x660f57:      /* xorpd */
  6551.         case 0x0f58:        /* addps */
  6552.         case 0x660f58:      /* addpd */
  6553.         case 0xf20f58:      /* addsd */
  6554.         case 0xf30f58:      /* addss */
  6555.         case 0x0f59:        /* mulps */
  6556.         case 0x660f59:      /* mulpd */
  6557.         case 0xf20f59:      /* mulsd */
  6558.         case 0xf30f59:      /* mulss */
  6559.         case 0x0f5a:        /* cvtps2pd */
  6560.         case 0x660f5a:      /* cvtpd2ps */
  6561.         case 0xf20f5a:      /* cvtsd2ss */
  6562.         case 0xf30f5a:      /* cvtss2sd */
  6563.         case 0x0f5b:        /* cvtdq2ps */
  6564.         case 0x660f5b:      /* cvtps2dq */
  6565.         case 0xf30f5b:      /* cvttps2dq */
  6566.         case 0x0f5c:        /* subps */
  6567.         case 0x660f5c:      /* subpd */
  6568.         case 0xf20f5c:      /* subsd */
  6569.         case 0xf30f5c:      /* subss */
  6570.         case 0x0f5d:        /* minps */
  6571.         case 0x660f5d:      /* minpd */
  6572.         case 0xf20f5d:      /* minsd */
  6573.         case 0xf30f5d:      /* minss */
  6574.         case 0x0f5e:        /* divps */
  6575.         case 0x660f5e:      /* divpd */
  6576.         case 0xf20f5e:      /* divsd */
  6577.         case 0xf30f5e:      /* divss */
  6578.         case 0x0f5f:        /* maxps */
  6579.         case 0x660f5f:      /* maxpd */
  6580.         case 0xf20f5f:      /* maxsd */
  6581.         case 0xf30f5f:      /* maxss */
  6582.         case 0x660f60:      /* punpcklbw */
  6583.         case 0x660f61:      /* punpcklwd */
  6584.         case 0x660f62:      /* punpckldq */
  6585.         case 0x660f63:      /* packsswb */
  6586.         case 0x660f64:      /* pcmpgtb */
  6587.         case 0x660f65:      /* pcmpgtw */
  6588.         case 0x660f66:      /* pcmpgtd */
  6589.         case 0x660f67:      /* packuswb */
  6590.         case 0x660f68:      /* punpckhbw */
  6591.         case 0x660f69:      /* punpckhwd */
  6592.         case 0x660f6a:      /* punpckhdq */
  6593.         case 0x660f6b:      /* packssdw */
  6594.         case 0x660f6c:      /* punpcklqdq */
  6595.         case 0x660f6d:      /* punpckhqdq */
  6596.         case 0x660f6e:      /* movd */
  6597.         case 0x660f6f:      /* movdqa */
  6598.         case 0xf30f6f:      /* movdqu */
  6599.         case 0x660f70:      /* pshufd */
  6600.         case 0xf20f70:      /* pshuflw */
  6601.         case 0xf30f70:      /* pshufhw */
  6602.         case 0x660f74:      /* pcmpeqb */
  6603.         case 0x660f75:      /* pcmpeqw */
  6604.         case 0x660f76:      /* pcmpeqd */
  6605.         case 0x660f7c:      /* haddpd */
  6606.         case 0xf20f7c:      /* haddps */
  6607.         case 0x660f7d:      /* hsubpd */
  6608.         case 0xf20f7d:      /* hsubps */
  6609.         case 0xf30f7e:      /* movq */
  6610.         case 0x0fc2:        /* cmpps */
  6611.         case 0x660fc2:      /* cmppd */
  6612.         case 0xf20fc2:      /* cmpsd */
  6613.         case 0xf30fc2:      /* cmpss */
  6614.         case 0x660fc4:      /* pinsrw */
  6615.         case 0x0fc6:        /* shufps */
  6616.         case 0x660fc6:      /* shufpd */
  6617.         case 0x660fd0:      /* addsubpd */
  6618.         case 0xf20fd0:      /* addsubps */
  6619.         case 0x660fd1:      /* psrlw */
  6620.         case 0x660fd2:      /* psrld */
  6621.         case 0x660fd3:      /* psrlq */
  6622.         case 0x660fd4:      /* paddq */
  6623.         case 0x660fd5:      /* pmullw */
  6624.         case 0xf30fd6:      /* movq2dq */
  6625.         case 0x660fd8:      /* psubusb */
  6626.         case 0x660fd9:      /* psubusw */
  6627.         case 0x660fda:      /* pminub */
  6628.         case 0x660fdb:      /* pand */
  6629.         case 0x660fdc:      /* paddusb */
  6630.         case 0x660fdd:      /* paddusw */
  6631.         case 0x660fde:      /* pmaxub */
  6632.         case 0x660fdf:      /* pandn */
  6633.         case 0x660fe0:      /* pavgb */
  6634.         case 0x660fe1:      /* psraw */
  6635.         case 0x660fe2:      /* psrad */
  6636.         case 0x660fe3:      /* pavgw */
  6637.         case 0x660fe4:      /* pmulhuw */
  6638.         case 0x660fe5:      /* pmulhw */
  6639.         case 0x660fe6:      /* cvttpd2dq */
  6640.         case 0xf20fe6:      /* cvtpd2dq */
  6641.         case 0xf30fe6:      /* cvtdq2pd */
  6642.         case 0x660fe8:      /* psubsb */
  6643.         case 0x660fe9:      /* psubsw */
  6644.         case 0x660fea:      /* pminsw */
  6645.         case 0x660feb:      /* por */
  6646.         case 0x660fec:      /* paddsb */
  6647.         case 0x660fed:      /* paddsw */
  6648.         case 0x660fee:      /* pmaxsw */
  6649.         case 0x660fef:      /* pxor */
  6650.         case 0xf20ff0:      /* lddqu */
  6651.         case 0x660ff1:      /* psllw */
  6652.         case 0x660ff2:      /* pslld */
  6653.         case 0x660ff3:      /* psllq */
  6654.         case 0x660ff4:      /* pmuludq */
  6655.         case 0x660ff5:      /* pmaddwd */
  6656.         case 0x660ff6:      /* psadbw */
  6657.         case 0x660ff8:      /* psubb */
  6658.         case 0x660ff9:      /* psubw */
  6659.         case 0x660ffa:      /* psubd */
  6660.         case 0x660ffb:      /* psubq */
  6661.         case 0x660ffc:      /* paddb */
  6662.         case 0x660ffd:      /* paddw */
  6663.         case 0x660ffe:      /* paddd */
  6664.           if (i386_record_modrm (&ir))
  6665.             return -1;
  6666.           ir.reg |= rex_r;
  6667.           if (!i386_xmm_regnum_p (gdbarch, I387_XMM0_REGNUM (tdep) + ir.reg))
  6668.             goto no_support;
  6669.           record_full_arch_list_add_reg (ir.regcache,
  6670.                                          I387_XMM0_REGNUM (tdep) + ir.reg);
  6671.           if ((opcode & 0xfffffffc) == 0x660f3a60)
  6672.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6673.           break;

  6674.         case 0x0f11:        /* movups */
  6675.         case 0x660f11:      /* movupd */
  6676.         case 0xf30f11:      /* movss */
  6677.         case 0xf20f11:      /* movsd */
  6678.         case 0x0f13:        /* movlps */
  6679.         case 0x660f13:      /* movlpd */
  6680.         case 0x0f17:        /* movhps */
  6681.         case 0x660f17:      /* movhpd */
  6682.         case 0x0f29:        /* movaps */
  6683.         case 0x660f29:      /* movapd */
  6684.         case 0x660f3a14:    /* pextrb */
  6685.         case 0x660f3a15:    /* pextrw */
  6686.         case 0x660f3a16:    /* pextrd pextrq */
  6687.         case 0x660f3a17:    /* extractps */
  6688.         case 0x660f7f:      /* movdqa */
  6689.         case 0xf30f7f:      /* movdqu */
  6690.           if (i386_record_modrm (&ir))
  6691.             return -1;
  6692.           if (ir.mod == 3)
  6693.             {
  6694.               if (opcode == 0x0f13 || opcode == 0x660f13
  6695.                   || opcode == 0x0f17 || opcode == 0x660f17)
  6696.                 goto no_support;
  6697.               ir.rm |= ir.rex_b;
  6698.               if (!i386_xmm_regnum_p (gdbarch,
  6699.                                       I387_XMM0_REGNUM (tdep) + ir.rm))
  6700.                 goto no_support;
  6701.               record_full_arch_list_add_reg (ir.regcache,
  6702.                                              I387_XMM0_REGNUM (tdep) + ir.rm);
  6703.             }
  6704.           else
  6705.             {
  6706.               switch (opcode)
  6707.                 {
  6708.                   case 0x660f3a14:
  6709.                     ir.ot = OT_BYTE;
  6710.                     break;
  6711.                   case 0x660f3a15:
  6712.                     ir.ot = OT_WORD;
  6713.                     break;
  6714.                   case 0x660f3a16:
  6715.                     ir.ot = OT_LONG;
  6716.                     break;
  6717.                   case 0x660f3a17:
  6718.                     ir.ot = OT_QUAD;
  6719.                     break;
  6720.                   default:
  6721.                     ir.ot = OT_DQUAD;
  6722.                     break;
  6723.                 }
  6724.               if (i386_record_lea_modrm (&ir))
  6725.                 return -1;
  6726.             }
  6727.           break;

  6728.         case 0x0f2b:      /* movntps */
  6729.         case 0x660f2b:    /* movntpd */
  6730.         case 0x0fe7:      /* movntq */
  6731.         case 0x660fe7:    /* movntdq */
  6732.           if (ir.mod == 3)
  6733.             goto no_support;
  6734.           if (opcode == 0x0fe7)
  6735.             ir.ot = OT_QUAD;
  6736.           else
  6737.             ir.ot = OT_DQUAD;
  6738.           if (i386_record_lea_modrm (&ir))
  6739.             return -1;
  6740.           break;

  6741.         case 0xf30f2c:      /* cvttss2si */
  6742.         case 0xf20f2c:      /* cvttsd2si */
  6743.         case 0xf30f2d:      /* cvtss2si */
  6744.         case 0xf20f2d:      /* cvtsd2si */
  6745.         case 0xf20f38f0:    /* crc32 */
  6746.         case 0xf20f38f1:    /* crc32 */
  6747.         case 0x0f50:        /* movmskps */
  6748.         case 0x660f50:      /* movmskpd */
  6749.         case 0x0fc5:        /* pextrw */
  6750.         case 0x660fc5:      /* pextrw */
  6751.         case 0x0fd7:        /* pmovmskb */
  6752.         case 0x660fd7:      /* pmovmskb */
  6753.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg | rex_r);
  6754.           break;

  6755.         case 0x0f3800:    /* pshufb */
  6756.         case 0x0f3801:    /* phaddw */
  6757.         case 0x0f3802:    /* phaddd */
  6758.         case 0x0f3803:    /* phaddsw */
  6759.         case 0x0f3804:    /* pmaddubsw */
  6760.         case 0x0f3805:    /* phsubw */
  6761.         case 0x0f3806:    /* phsubd */
  6762.         case 0x0f3807:    /* phsubsw */
  6763.         case 0x0f3808:    /* psignb */
  6764.         case 0x0f3809:    /* psignw */
  6765.         case 0x0f380a:    /* psignd */
  6766.         case 0x0f380b:    /* pmulhrsw */
  6767.         case 0x0f381c:    /* pabsb */
  6768.         case 0x0f381d:    /* pabsw */
  6769.         case 0x0f381e:    /* pabsd */
  6770.         case 0x0f382b:    /* packusdw */
  6771.         case 0x0f3830:    /* pmovzxbw */
  6772.         case 0x0f3831:    /* pmovzxbd */
  6773.         case 0x0f3832:    /* pmovzxbq */
  6774.         case 0x0f3833:    /* pmovzxwd */
  6775.         case 0x0f3834:    /* pmovzxwq */
  6776.         case 0x0f3835:    /* pmovzxdq */
  6777.         case 0x0f3837:    /* pcmpgtq */
  6778.         case 0x0f3838:    /* pminsb */
  6779.         case 0x0f3839:    /* pminsd */
  6780.         case 0x0f383a:    /* pminuw */
  6781.         case 0x0f383b:    /* pminud */
  6782.         case 0x0f383c:    /* pmaxsb */
  6783.         case 0x0f383d:    /* pmaxsd */
  6784.         case 0x0f383e:    /* pmaxuw */
  6785.         case 0x0f383f:    /* pmaxud */
  6786.         case 0x0f3840:    /* pmulld */
  6787.         case 0x0f3841:    /* phminposuw */
  6788.         case 0x0f3a0f:    /* palignr */
  6789.         case 0x0f60:      /* punpcklbw */
  6790.         case 0x0f61:      /* punpcklwd */
  6791.         case 0x0f62:      /* punpckldq */
  6792.         case 0x0f63:      /* packsswb */
  6793.         case 0x0f64:      /* pcmpgtb */
  6794.         case 0x0f65:      /* pcmpgtw */
  6795.         case 0x0f66:      /* pcmpgtd */
  6796.         case 0x0f67:      /* packuswb */
  6797.         case 0x0f68:      /* punpckhbw */
  6798.         case 0x0f69:      /* punpckhwd */
  6799.         case 0x0f6a:      /* punpckhdq */
  6800.         case 0x0f6b:      /* packssdw */
  6801.         case 0x0f6e:      /* movd */
  6802.         case 0x0f6f:      /* movq */
  6803.         case 0x0f70:      /* pshufw */
  6804.         case 0x0f74:      /* pcmpeqb */
  6805.         case 0x0f75:      /* pcmpeqw */
  6806.         case 0x0f76:      /* pcmpeqd */
  6807.         case 0x0fc4:      /* pinsrw */
  6808.         case 0x0fd1:      /* psrlw */
  6809.         case 0x0fd2:      /* psrld */
  6810.         case 0x0fd3:      /* psrlq */
  6811.         case 0x0fd4:      /* paddq */
  6812.         case 0x0fd5:      /* pmullw */
  6813.         case 0xf20fd6:    /* movdq2q */
  6814.         case 0x0fd8:      /* psubusb */
  6815.         case 0x0fd9:      /* psubusw */
  6816.         case 0x0fda:      /* pminub */
  6817.         case 0x0fdb:      /* pand */
  6818.         case 0x0fdc:      /* paddusb */
  6819.         case 0x0fdd:      /* paddusw */
  6820.         case 0x0fde:      /* pmaxub */
  6821.         case 0x0fdf:      /* pandn */
  6822.         case 0x0fe0:      /* pavgb */
  6823.         case 0x0fe1:      /* psraw */
  6824.         case 0x0fe2:      /* psrad */
  6825.         case 0x0fe3:      /* pavgw */
  6826.         case 0x0fe4:      /* pmulhuw */
  6827.         case 0x0fe5:      /* pmulhw */
  6828.         case 0x0fe8:      /* psubsb */
  6829.         case 0x0fe9:      /* psubsw */
  6830.         case 0x0fea:      /* pminsw */
  6831.         case 0x0feb:      /* por */
  6832.         case 0x0fec:      /* paddsb */
  6833.         case 0x0fed:      /* paddsw */
  6834.         case 0x0fee:      /* pmaxsw */
  6835.         case 0x0fef:      /* pxor */
  6836.         case 0x0ff1:      /* psllw */
  6837.         case 0x0ff2:      /* pslld */
  6838.         case 0x0ff3:      /* psllq */
  6839.         case 0x0ff4:      /* pmuludq */
  6840.         case 0x0ff5:      /* pmaddwd */
  6841.         case 0x0ff6:      /* psadbw */
  6842.         case 0x0ff8:      /* psubb */
  6843.         case 0x0ff9:      /* psubw */
  6844.         case 0x0ffa:      /* psubd */
  6845.         case 0x0ffb:      /* psubq */
  6846.         case 0x0ffc:      /* paddb */
  6847.         case 0x0ffd:      /* paddw */
  6848.         case 0x0ffe:      /* paddd */
  6849.           if (i386_record_modrm (&ir))
  6850.             return -1;
  6851.           if (!i386_mmx_regnum_p (gdbarch, I387_MM0_REGNUM (tdep) + ir.reg))
  6852.             goto no_support;
  6853.           record_full_arch_list_add_reg (ir.regcache,
  6854.                                          I387_MM0_REGNUM (tdep) + ir.reg);
  6855.           break;

  6856.         case 0x0f71:    /* psllw */
  6857.         case 0x0f72:    /* pslld */
  6858.         case 0x0f73:    /* psllq */
  6859.           if (i386_record_modrm (&ir))
  6860.             return -1;
  6861.           if (!i386_mmx_regnum_p (gdbarch, I387_MM0_REGNUM (tdep) + ir.rm))
  6862.             goto no_support;
  6863.           record_full_arch_list_add_reg (ir.regcache,
  6864.                                          I387_MM0_REGNUM (tdep) + ir.rm);
  6865.           break;

  6866.         case 0x660f71:    /* psllw */
  6867.         case 0x660f72:    /* pslld */
  6868.         case 0x660f73:    /* psllq */
  6869.           if (i386_record_modrm (&ir))
  6870.             return -1;
  6871.           ir.rm |= ir.rex_b;
  6872.           if (!i386_xmm_regnum_p (gdbarch, I387_XMM0_REGNUM (tdep) + ir.rm))
  6873.             goto no_support;
  6874.           record_full_arch_list_add_reg (ir.regcache,
  6875.                                          I387_XMM0_REGNUM (tdep) + ir.rm);
  6876.           break;

  6877.         case 0x0f7e:      /* movd */
  6878.         case 0x660f7e:    /* movd */
  6879.           if (i386_record_modrm (&ir))
  6880.             return -1;
  6881.           if (ir.mod == 3)
  6882.             I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.rm | ir.rex_b);
  6883.           else
  6884.             {
  6885.               if (ir.dflag == 2)
  6886.                 ir.ot = OT_QUAD;
  6887.               else
  6888.                 ir.ot = OT_LONG;
  6889.               if (i386_record_lea_modrm (&ir))
  6890.                 return -1;
  6891.             }
  6892.           break;

  6893.         case 0x0f7f:    /* movq */
  6894.           if (i386_record_modrm (&ir))
  6895.             return -1;
  6896.           if (ir.mod == 3)
  6897.             {
  6898.               if (!i386_mmx_regnum_p (gdbarch, I387_MM0_REGNUM (tdep) + ir.rm))
  6899.                 goto no_support;
  6900.               record_full_arch_list_add_reg (ir.regcache,
  6901.                                              I387_MM0_REGNUM (tdep) + ir.rm);
  6902.             }
  6903.           else
  6904.             {
  6905.               ir.ot = OT_QUAD;
  6906.               if (i386_record_lea_modrm (&ir))
  6907.                 return -1;
  6908.             }
  6909.           break;

  6910.         case 0xf30fb8:    /* popcnt */
  6911.           if (i386_record_modrm (&ir))
  6912.             return -1;
  6913.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (ir.reg);
  6914.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6915.           break;

  6916.         case 0x660fd6:    /* movq */
  6917.           if (i386_record_modrm (&ir))
  6918.             return -1;
  6919.           if (ir.mod == 3)
  6920.             {
  6921.               ir.rm |= ir.rex_b;
  6922.               if (!i386_xmm_regnum_p (gdbarch,
  6923.                                       I387_XMM0_REGNUM (tdep) + ir.rm))
  6924.                 goto no_support;
  6925.               record_full_arch_list_add_reg (ir.regcache,
  6926.                                              I387_XMM0_REGNUM (tdep) + ir.rm);
  6927.             }
  6928.           else
  6929.             {
  6930.               ir.ot = OT_QUAD;
  6931.               if (i386_record_lea_modrm (&ir))
  6932.                 return -1;
  6933.             }
  6934.           break;

  6935.         case 0x660f3817:    /* ptest */
  6936.         case 0x0f2e:        /* ucomiss */
  6937.         case 0x660f2e:      /* ucomisd */
  6938.         case 0x0f2f:        /* comiss */
  6939.         case 0x660f2f:      /* comisd */
  6940.           I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_EFLAGS_REGNUM);
  6941.           break;

  6942.         case 0x0ff7:    /* maskmovq */
  6943.           regcache_raw_read_unsigned (ir.regcache,
  6944.                                       ir.regmap[X86_RECORD_REDI_REGNUM],
  6945.                                       &addr);
  6946.           if (record_full_arch_list_add_mem (addr, 64))
  6947.             return -1;
  6948.           break;

  6949.         case 0x660ff7:    /* maskmovdqu */
  6950.           regcache_raw_read_unsigned (ir.regcache,
  6951.                                       ir.regmap[X86_RECORD_REDI_REGNUM],
  6952.                                       &addr);
  6953.           if (record_full_arch_list_add_mem (addr, 128))
  6954.             return -1;
  6955.           break;

  6956.         default:
  6957.           goto no_support;
  6958.           break;
  6959.         }
  6960.       break;

  6961.     default:
  6962.       goto no_support;
  6963.       break;
  6964.     }

  6965.   /* In the future, maybe still need to deal with need_dasm.  */
  6966.   I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REIP_REGNUM);
  6967.   if (record_full_arch_list_add_end ())
  6968.     return -1;

  6969.   return 0;

  6970. no_support:
  6971.   printf_unfiltered (_("Process record does not support instruction 0x%02x "
  6972.                        "at address %s.\n"),
  6973.                      (unsigned int) (opcode),
  6974.                      paddress (gdbarch, ir.orig_addr));
  6975.   return -1;
  6976. }

  6977. static const int i386_record_regmap[] =
  6978. {
  6979.   I386_EAX_REGNUM, I386_ECX_REGNUM, I386_EDX_REGNUM, I386_EBX_REGNUM,
  6980.   I386_ESP_REGNUM, I386_EBP_REGNUM, I386_ESI_REGNUM, I386_EDI_REGNUM,
  6981.   0, 0, 0, 0, 0, 0, 0, 0,
  6982.   I386_EIP_REGNUM, I386_EFLAGS_REGNUM, I386_CS_REGNUM, I386_SS_REGNUM,
  6983.   I386_DS_REGNUM, I386_ES_REGNUM, I386_FS_REGNUM, I386_GS_REGNUM
  6984. };

  6985. /* Check that the given address appears suitable for a fast
  6986.    tracepoint, which on x86-64 means that we need an instruction of at
  6987.    least 5 bytes, so that we can overwrite it with a 4-byte-offset
  6988.    jump and not have to worry about program jumps to an address in the
  6989.    middle of the tracepoint jump.  On x86, it may be possible to use
  6990.    4-byte jumps with a 2-byte offset to a trampoline located in the
  6991.    bottom 64 KiB of memory.  Returns 1 if OK, and writes a size
  6992.    of instruction to replace, and 0 if not, plus an explanatory
  6993.    string.  */

  6994. static int
  6995. i386_fast_tracepoint_valid_at (struct gdbarch *gdbarch,
  6996.                                CORE_ADDR addr, int *isize, char **msg)
  6997. {
  6998.   int len, jumplen;
  6999.   static struct ui_file *gdb_null = NULL;

  7000.   /*  Ask the target for the minimum instruction length supported.  */
  7001.   jumplen = target_get_min_fast_tracepoint_insn_len ();

  7002.   if (jumplen < 0)
  7003.     {
  7004.       /* If the target does not support the get_min_fast_tracepoint_insn_len
  7005.          operation, assume that fast tracepoints will always be implemented
  7006.          using 4-byte relative jumps on both x86 and x86-64.  */
  7007.       jumplen = 5;
  7008.     }
  7009.   else if (jumplen == 0)
  7010.     {
  7011.       /* If the target does support get_min_fast_tracepoint_insn_len but
  7012.          returns zero, then the IPA has not loaded yet.  In this case,
  7013.          we optimistically assume that truncated 2-byte relative jumps
  7014.          will be available on x86, and compensate later if this assumption
  7015.          turns out to be incorrect.  On x86-64 architectures, 4-byte relative
  7016.          jumps will always be used.  */
  7017.       jumplen = (register_size (gdbarch, 0) == 8) ? 5 : 4;
  7018.     }

  7019.   /* Dummy file descriptor for the disassembler.  */
  7020.   if (!gdb_null)
  7021.     gdb_null = ui_file_new ();

  7022.   /* Check for fit.  */
  7023.   len = gdb_print_insn (gdbarch, addr, gdb_null, NULL);
  7024.   if (isize)
  7025.     *isize = len;

  7026.   if (len < jumplen)
  7027.     {
  7028.       /* Return a bit of target-specific detail to add to the caller's
  7029.          generic failure message.  */
  7030.       if (msg)
  7031.         *msg = xstrprintf (_("; instruction is only %d bytes long, "
  7032.                              "need at least %d bytes for the jump"),
  7033.                            len, jumplen);
  7034.       return 0;
  7035.     }
  7036.   else
  7037.     {
  7038.       if (msg)
  7039.         *msg = NULL;
  7040.       return 1;
  7041.     }
  7042. }

  7043. static int
  7044. i386_validate_tdesc_p (struct gdbarch_tdep *tdep,
  7045.                        struct tdesc_arch_data *tdesc_data)
  7046. {
  7047.   const struct target_desc *tdesc = tdep->tdesc;
  7048.   const struct tdesc_feature *feature_core;

  7049.   const struct tdesc_feature *feature_sse, *feature_avx, *feature_mpx,
  7050.                              *feature_avx512;
  7051.   int i, num_regs, valid_p;

  7052.   if (! tdesc_has_registers (tdesc))
  7053.     return 0;

  7054.   /* Get core registers.  */
  7055.   feature_core = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.core");
  7056.   if (feature_core == NULL)
  7057.     return 0;

  7058.   /* Get SSE registers.  */
  7059.   feature_sse = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.sse");

  7060.   /* Try AVX registers.  */
  7061.   feature_avx = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.avx");

  7062.   /* Try MPX registers.  */
  7063.   feature_mpx = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.mpx");

  7064.   /* Try AVX512 registers.  */
  7065.   feature_avx512 = tdesc_find_feature (tdesc, "org.gnu.gdb.i386.avx512");

  7066.   valid_p = 1;

  7067.   /* The XCR0 bits.  */
  7068.   if (feature_avx512)
  7069.     {
  7070.       /* AVX512 register description requires AVX register description.  */
  7071.       if (!feature_avx)
  7072.         return 0;

  7073.       tdep->xcr0 = X86_XSTATE_MPX_AVX512_MASK;

  7074.       /* It may have been set by OSABI initialization function.  */
  7075.       if (tdep->k0_regnum < 0)
  7076.         {
  7077.           tdep->k_register_names = i386_k_names;
  7078.           tdep->k0_regnum = I386_K0_REGNUM;
  7079.         }

  7080.       for (i = 0; i < I387_NUM_K_REGS; i++)
  7081.         valid_p &= tdesc_numbered_register (feature_avx512, tdesc_data,
  7082.                                             tdep->k0_regnum + i,
  7083.                                             i386_k_names[i]);

  7084.       if (tdep->num_zmm_regs == 0)
  7085.         {
  7086.           tdep->zmmh_register_names = i386_zmmh_names;
  7087.           tdep->num_zmm_regs = 8;
  7088.           tdep->zmm0h_regnum = I386_ZMM0H_REGNUM;
  7089.         }

  7090.       for (i = 0; i < tdep->num_zmm_regs; i++)
  7091.         valid_p &= tdesc_numbered_register (feature_avx512, tdesc_data,
  7092.                                             tdep->zmm0h_regnum + i,
  7093.                                             tdep->zmmh_register_names[i]);

  7094.       for (i = 0; i < tdep->num_xmm_avx512_regs; i++)
  7095.         valid_p &= tdesc_numbered_register (feature_avx512, tdesc_data,
  7096.                                             tdep->xmm16_regnum + i,
  7097.                                             tdep->xmm_avx512_register_names[i]);

  7098.       for (i = 0; i < tdep->num_ymm_avx512_regs; i++)
  7099.         valid_p &= tdesc_numbered_register (feature_avx512, tdesc_data,
  7100.                                             tdep->ymm16h_regnum + i,
  7101.                                             tdep->ymm16h_register_names[i]);
  7102.     }
  7103.   if (feature_avx)
  7104.     {
  7105.       /* AVX register description requires SSE register description.  */
  7106.       if (!feature_sse)
  7107.         return 0;

  7108.       if (!feature_avx512)
  7109.         tdep->xcr0 = X86_XSTATE_AVX_MASK;

  7110.       /* It may have been set by OSABI initialization function.  */
  7111.       if (tdep->num_ymm_regs == 0)
  7112.         {
  7113.           tdep->ymmh_register_names = i386_ymmh_names;
  7114.           tdep->num_ymm_regs = 8;
  7115.           tdep->ymm0h_regnum = I386_YMM0H_REGNUM;
  7116.         }

  7117.       for (i = 0; i < tdep->num_ymm_regs; i++)
  7118.         valid_p &= tdesc_numbered_register (feature_avx, tdesc_data,
  7119.                                             tdep->ymm0h_regnum + i,
  7120.                                             tdep->ymmh_register_names[i]);
  7121.     }
  7122.   else if (feature_sse)
  7123.     tdep->xcr0 = X86_XSTATE_SSE_MASK;
  7124.   else
  7125.     {
  7126.       tdep->xcr0 = X86_XSTATE_X87_MASK;
  7127.       tdep->num_xmm_regs = 0;
  7128.     }

  7129.   num_regs = tdep->num_core_regs;
  7130.   for (i = 0; i < num_regs; i++)
  7131.     valid_p &= tdesc_numbered_register (feature_core, tdesc_data, i,
  7132.                                         tdep->register_names[i]);

  7133.   if (feature_sse)
  7134.     {
  7135.       /* Need to include %mxcsr, so add one.  */
  7136.       num_regs += tdep->num_xmm_regs + 1;
  7137.       for (; i < num_regs; i++)
  7138.         valid_p &= tdesc_numbered_register (feature_sse, tdesc_data, i,
  7139.                                             tdep->register_names[i]);
  7140.     }

  7141.   if (feature_mpx)
  7142.     {
  7143.       tdep->xcr0 |= X86_XSTATE_MPX_MASK;

  7144.       if (tdep->bnd0r_regnum < 0)
  7145.         {
  7146.           tdep->mpx_register_names = i386_mpx_names;
  7147.           tdep->bnd0r_regnum = I386_BND0R_REGNUM;
  7148.           tdep->bndcfgu_regnum = I386_BNDCFGU_REGNUM;
  7149.         }

  7150.       for (i = 0; i < I387_NUM_MPX_REGS; i++)
  7151.         valid_p &= tdesc_numbered_register (feature_mpx, tdesc_data,
  7152.             I387_BND0R_REGNUM (tdep) + i,
  7153.             tdep->mpx_register_names[i]);
  7154.     }

  7155.   return valid_p;
  7156. }


  7157. static struct gdbarch *
  7158. i386_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
  7159. {
  7160.   struct gdbarch_tdep *tdep;
  7161.   struct gdbarch *gdbarch;
  7162.   struct tdesc_arch_data *tdesc_data;
  7163.   const struct target_desc *tdesc;
  7164.   int mm0_regnum;
  7165.   int ymm0_regnum;
  7166.   int bnd0_regnum;
  7167.   int num_bnd_cooked;
  7168.   int k0_regnum;
  7169.   int zmm0_regnum;

  7170.   /* If there is already a candidate, use it.  */
  7171.   arches = gdbarch_list_lookup_by_info (arches, &info);
  7172.   if (arches != NULL)
  7173.     return arches->gdbarch;

  7174.   /* Allocate space for the new architecture.  */
  7175.   tdep = XCNEW (struct gdbarch_tdep);
  7176.   gdbarch = gdbarch_alloc (&info, tdep);

  7177.   /* General-purpose registers.  */
  7178.   tdep->gregset_reg_offset = NULL;
  7179.   tdep->gregset_num_regs = I386_NUM_GREGS;
  7180.   tdep->sizeof_gregset = 0;

  7181.   /* Floating-point registers.  */
  7182.   tdep->sizeof_fpregset = I387_SIZEOF_FSAVE;
  7183.   tdep->fpregset = &i386_fpregset;

  7184.   /* The default settings include the FPU registers, the MMX registers
  7185.      and the SSE registers.  This can be overridden for a specific ABI
  7186.      by adjusting the members `st0_regnum', `mm0_regnum' and
  7187.      `num_xmm_regs' of `struct gdbarch_tdep', otherwise the registers
  7188.      will show up in the output of "info all-registers".  */

  7189.   tdep->st0_regnum = I386_ST0_REGNUM;

  7190.   /* I386_NUM_XREGS includes %mxcsr, so substract one.  */
  7191.   tdep->num_xmm_regs = I386_NUM_XREGS - 1;

  7192.   tdep->jb_pc_offset = -1;
  7193.   tdep->struct_return = pcc_struct_return;
  7194.   tdep->sigtramp_start = 0;
  7195.   tdep->sigtramp_end = 0;
  7196.   tdep->sigtramp_p = i386_sigtramp_p;
  7197.   tdep->sigcontext_addr = NULL;
  7198.   tdep->sc_reg_offset = NULL;
  7199.   tdep->sc_pc_offset = -1;
  7200.   tdep->sc_sp_offset = -1;

  7201.   tdep->xsave_xcr0_offset = -1;

  7202.   tdep->record_regmap = i386_record_regmap;

  7203.   set_gdbarch_long_long_align_bit (gdbarch, 32);

  7204.   /* The format used for `long double' on almost all i386 targets is
  7205.      the i387 extended floating-point format.  In fact, of all targets
  7206.      in the GCC 2.95 tree, only OSF/1 does it different, and insists
  7207.      on having a `long double' that's not `long' at all.  */
  7208.   set_gdbarch_long_double_format (gdbarch, floatformats_i387_ext);

  7209.   /* Although the i387 extended floating-point has only 80 significant
  7210.      bits, a `long double' actually takes up 96, probably to enforce
  7211.      alignment.  */
  7212.   set_gdbarch_long_double_bit (gdbarch, 96);

  7213.   /* Register numbers of various important registers.  */
  7214.   set_gdbarch_sp_regnum (gdbarch, I386_ESP_REGNUM); /* %esp */
  7215.   set_gdbarch_pc_regnum (gdbarch, I386_EIP_REGNUM); /* %eip */
  7216.   set_gdbarch_ps_regnum (gdbarch, I386_EFLAGS_REGNUM); /* %eflags */
  7217.   set_gdbarch_fp0_regnum (gdbarch, I386_ST0_REGNUM); /* %st(0) */

  7218.   /* NOTE: kettenis/20040418: GCC does have two possible register
  7219.      numbering schemes on the i386: dbx and SVR4.  These schemes
  7220.      differ in how they number %ebp, %esp, %eflags, and the
  7221.      floating-point registers, and are implemented by the arrays
  7222.      dbx_register_map[] and svr4_dbx_register_map in
  7223.      gcc/config/i386.c.  GCC also defines a third numbering scheme in
  7224.      gcc/config/i386.c, which it designates as the "default" register
  7225.      map used in 64bit mode.  This last register numbering scheme is
  7226.      implemented in dbx64_register_map, and is used for AMD64; see
  7227.      amd64-tdep.c.

  7228.      Currently, each GCC i386 target always uses the same register
  7229.      numbering scheme across all its supported debugging formats
  7230.      i.e. SDB (COFF), stabs and DWARF 2.  This is because
  7231.      gcc/sdbout.c, gcc/dbxout.c and gcc/dwarf2out.c all use the
  7232.      DBX_REGISTER_NUMBER macro which is defined by each target's
  7233.      respective config header in a manner independent of the requested
  7234.      output debugging format.

  7235.      This does not match the arrangement below, which presumes that
  7236.      the SDB and stabs numbering schemes differ from the DWARF and
  7237.      DWARF 2 ones.  The reason for this arrangement is that it is
  7238.      likely to get the numbering scheme for the target's
  7239.      default/native debug format right.  For targets where GCC is the
  7240.      native compiler (FreeBSD, NetBSD, OpenBSD, GNU/Linux) or for
  7241.      targets where the native toolchain uses a different numbering
  7242.      scheme for a particular debug format (stabs-in-ELF on Solaris)
  7243.      the defaults below will have to be overridden, like
  7244.      i386_elf_init_abi() does.  */

  7245.   /* Use the dbx register numbering scheme for stabs and COFF.  */
  7246.   set_gdbarch_stab_reg_to_regnum (gdbarch, i386_dbx_reg_to_regnum);
  7247.   set_gdbarch_sdb_reg_to_regnum (gdbarch, i386_dbx_reg_to_regnum);

  7248.   /* Use the SVR4 register numbering scheme for DWARF 2.  */
  7249.   set_gdbarch_dwarf2_reg_to_regnum (gdbarch, i386_svr4_reg_to_regnum);

  7250.   /* We don't set gdbarch_stab_reg_to_regnum, since ECOFF doesn't seem to
  7251.      be in use on any of the supported i386 targets.  */

  7252.   set_gdbarch_print_float_info (gdbarch, i387_print_float_info);

  7253.   set_gdbarch_get_longjmp_target (gdbarch, i386_get_longjmp_target);

  7254.   /* Call dummy code.  */
  7255.   set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
  7256.   set_gdbarch_push_dummy_code (gdbarch, i386_push_dummy_code);
  7257.   set_gdbarch_push_dummy_call (gdbarch, i386_push_dummy_call);
  7258.   set_gdbarch_frame_align (gdbarch, i386_frame_align);

  7259.   set_gdbarch_convert_register_p (gdbarch, i386_convert_register_p);
  7260.   set_gdbarch_register_to_value (gdbarchi386_register_to_value);
  7261.   set_gdbarch_value_to_register (gdbarch, i386_value_to_register);

  7262.   set_gdbarch_return_value (gdbarch, i386_return_value);

  7263.   set_gdbarch_skip_prologue (gdbarch, i386_skip_prologue);

  7264.   /* Stack grows downward.  */
  7265.   set_gdbarch_inner_than (gdbarch, core_addr_lessthan);

  7266.   set_gdbarch_breakpoint_from_pc (gdbarch, i386_breakpoint_from_pc);
  7267.   set_gdbarch_decr_pc_after_break (gdbarch, 1);
  7268.   set_gdbarch_max_insn_length (gdbarch, I386_MAX_INSN_LEN);

  7269.   set_gdbarch_frame_args_skip (gdbarch, 8);

  7270.   set_gdbarch_print_insn (gdbarch, i386_print_insn);

  7271.   set_gdbarch_dummy_id (gdbarch, i386_dummy_id);

  7272.   set_gdbarch_unwind_pc (gdbarch, i386_unwind_pc);

  7273.   /* Add the i386 register groups.  */
  7274.   i386_add_reggroups (gdbarch);
  7275.   tdep->register_reggroup_p = i386_register_reggroup_p;

  7276.   /* Helper for function argument information.  */
  7277.   set_gdbarch_fetch_pointer_argument (gdbarch, i386_fetch_pointer_argument);

  7278.   /* Hook the function epilogue frame unwinder.  This unwinder is
  7279.      appended to the list first, so that it supercedes the DWARF
  7280.      unwinder in function epilogues (where the DWARF unwinder
  7281.      currently fails).  */
  7282.   frame_unwind_append_unwinder (gdbarch, &i386_epilogue_frame_unwind);

  7283.   /* Hook in the DWARF CFI frame unwinder.  This unwinder is appended
  7284.      to the list before the prologue-based unwinders, so that DWARF
  7285.      CFI info will be used if it is available.  */
  7286.   dwarf2_append_unwinders (gdbarch);

  7287.   frame_base_set_default (gdbarch, &i386_frame_base);

  7288.   /* Pseudo registers may be changed by amd64_init_abi.  */
  7289.   set_gdbarch_pseudo_register_read_value (gdbarch,
  7290.                                           i386_pseudo_register_read_value);
  7291.   set_gdbarch_pseudo_register_write (gdbarch, i386_pseudo_register_write);

  7292.   set_tdesc_pseudo_register_type (gdbarch, i386_pseudo_register_type);
  7293.   set_tdesc_pseudo_register_name (gdbarch, i386_pseudo_register_name);

  7294.   /* Override the normal target description method to make the AVX
  7295.      upper halves anonymous.  */
  7296.   set_gdbarch_register_name (gdbarch, i386_register_name);

  7297.   /* Even though the default ABI only includes general-purpose registers,
  7298.      floating-point registers and the SSE registers, we have to leave a
  7299.      gap for the upper AVX, MPX and AVX512 registers.  */
  7300.   set_gdbarch_num_regs (gdbarch, I386_AVX512_NUM_REGS);

  7301.   set_gdbarch_gnu_triplet_regexp (gdbarch, i386_gnu_triplet_regexp);

  7302.   /* Get the x86 target description from INFO.  */
  7303.   tdesc = info.target_desc;
  7304.   if (! tdesc_has_registers (tdesc))
  7305.     tdesc = tdesc_i386;
  7306.   tdep->tdesc = tdesc;

  7307.   tdep->num_core_regs = I386_NUM_GREGS + I387_NUM_REGS;
  7308.   tdep->register_names = i386_register_names;

  7309.   /* No upper YMM registers.  */
  7310.   tdep->ymmh_register_names = NULL;
  7311.   tdep->ymm0h_regnum = -1;

  7312.   /* No upper ZMM registers.  */
  7313.   tdep->zmmh_register_names = NULL;
  7314.   tdep->zmm0h_regnum = -1;

  7315.   /* No high XMM registers.  */
  7316.   tdep->xmm_avx512_register_names = NULL;
  7317.   tdep->xmm16_regnum = -1;

  7318.   /* No upper YMM16-31 registers.  */
  7319.   tdep->ymm16h_register_names = NULL;
  7320.   tdep->ymm16h_regnum = -1;

  7321.   tdep->num_byte_regs = 8;
  7322.   tdep->num_word_regs = 8;
  7323.   tdep->num_dword_regs = 0;
  7324.   tdep->num_mmx_regs = 8;
  7325.   tdep->num_ymm_regs = 0;

  7326.   /* No MPX registers.  */
  7327.   tdep->bnd0r_regnum = -1;
  7328.   tdep->bndcfgu_regnum = -1;

  7329.   /* No AVX512 registers.  */
  7330.   tdep->k0_regnum = -1;
  7331.   tdep->num_zmm_regs = 0;
  7332.   tdep->num_ymm_avx512_regs = 0;
  7333.   tdep->num_xmm_avx512_regs = 0;

  7334.   tdesc_data = tdesc_data_alloc ();

  7335.   set_gdbarch_relocate_instruction (gdbarch, i386_relocate_instruction);

  7336.   set_gdbarch_gen_return_address (gdbarch, i386_gen_return_address);

  7337.   set_gdbarch_insn_is_call (gdbarch, i386_insn_is_call);
  7338.   set_gdbarch_insn_is_ret (gdbarch, i386_insn_is_ret);
  7339.   set_gdbarch_insn_is_jump (gdbarch, i386_insn_is_jump);

  7340.   /* Hook in ABI-specific overrides, if they have been registered.  */
  7341.   info.tdep_info = (void *) tdesc_data;
  7342.   gdbarch_init_osabi (info, gdbarch);

  7343.   if (!i386_validate_tdesc_p (tdep, tdesc_data))
  7344.     {
  7345.       tdesc_data_cleanup (tdesc_data);
  7346.       xfree (tdep);
  7347.       gdbarch_free (gdbarch);
  7348.       return NULL;
  7349.     }

  7350.   num_bnd_cooked = (tdep->bnd0r_regnum > 0 ? I387_NUM_BND_REGS : 0);

  7351.   /* Wire in pseudo registers.  Number of pseudo registers may be
  7352.      changed.  */
  7353.   set_gdbarch_num_pseudo_regs (gdbarch, (tdep->num_byte_regs
  7354.                                          + tdep->num_word_regs
  7355.                                          + tdep->num_dword_regs
  7356.                                          + tdep->num_mmx_regs
  7357.                                          + tdep->num_ymm_regs
  7358.                                          + num_bnd_cooked
  7359.                                          + tdep->num_ymm_avx512_regs
  7360.                                          + tdep->num_zmm_regs));

  7361.   /* Target description may be changed.  */
  7362.   tdesc = tdep->tdesc;

  7363.   tdesc_use_registers (gdbarch, tdesc, tdesc_data);

  7364.   /* Override gdbarch_register_reggroup_p set in tdesc_use_registers.  */
  7365.   set_gdbarch_register_reggroup_p (gdbarch, tdep->register_reggroup_p);

  7366.   /* Make %al the first pseudo-register.  */
  7367.   tdep->al_regnum = gdbarch_num_regs (gdbarch);
  7368.   tdep->ax_regnum = tdep->al_regnum + tdep->num_byte_regs;

  7369.   ymm0_regnum = tdep->ax_regnum + tdep->num_word_regs;
  7370.   if (tdep->num_dword_regs)
  7371.     {
  7372.       /* Support dword pseudo-register if it hasn't been disabled.  */
  7373.       tdep->eax_regnum = ymm0_regnum;
  7374.       ymm0_regnum += tdep->num_dword_regs;
  7375.     }
  7376.   else
  7377.     tdep->eax_regnum = -1;

  7378.   mm0_regnum = ymm0_regnum;
  7379.   if (tdep->num_ymm_regs)
  7380.     {
  7381.       /* Support YMM pseudo-register if it is available.  */
  7382.       tdep->ymm0_regnum = ymm0_regnum;
  7383.       mm0_regnum += tdep->num_ymm_regs;
  7384.     }
  7385.   else
  7386.     tdep->ymm0_regnum = -1;

  7387.   if (tdep->num_ymm_avx512_regs)
  7388.     {
  7389.       /* Support YMM16-31 pseudo registers if available.  */
  7390.       tdep->ymm16_regnum = mm0_regnum;
  7391.       mm0_regnum += tdep->num_ymm_avx512_regs;
  7392.     }
  7393.   else
  7394.     tdep->ymm16_regnum = -1;

  7395.   if (tdep->num_zmm_regs)
  7396.     {
  7397.       /* Support ZMM pseudo-register if it is available.  */
  7398.       tdep->zmm0_regnum = mm0_regnum;
  7399.       mm0_regnum += tdep->num_zmm_regs;
  7400.     }
  7401.   else
  7402.     tdep->zmm0_regnum = -1;

  7403.   bnd0_regnum = mm0_regnum;
  7404.   if (tdep->num_mmx_regs != 0)
  7405.     {
  7406.       /* Support MMX pseudo-register if MMX hasn't been disabled.  */
  7407.       tdep->mm0_regnum = mm0_regnum;
  7408.       bnd0_regnum += tdep->num_mmx_regs;
  7409.     }
  7410.   else
  7411.     tdep->mm0_regnum = -1;

  7412.   if (tdep->bnd0r_regnum > 0)
  7413.       tdep->bnd0_regnum = bnd0_regnum;
  7414.   else
  7415.     tdep-> bnd0_regnum = -1;

  7416.   /* Hook in the legacy prologue-based unwinders last (fallback).  */
  7417.   frame_unwind_append_unwinder (gdbarch, &i386_stack_tramp_frame_unwind);
  7418.   frame_unwind_append_unwinder (gdbarch, &i386_sigtramp_frame_unwind);
  7419.   frame_unwind_append_unwinder (gdbarch, &i386_frame_unwind);

  7420.   /* If we have a register mapping, enable the generic core file
  7421.      support, unless it has already been enabled.  */
  7422.   if (tdep->gregset_reg_offset
  7423.       && !gdbarch_iterate_over_regset_sections_p (gdbarch))
  7424.     set_gdbarch_iterate_over_regset_sections
  7425.       (gdbarch, i386_iterate_over_regset_sections);

  7426.   set_gdbarch_fast_tracepoint_valid_at (gdbarch,
  7427.                                         i386_fast_tracepoint_valid_at);

  7428.   return gdbarch;
  7429. }

  7430. static enum gdb_osabi
  7431. i386_coff_osabi_sniffer (bfd *abfd)
  7432. {
  7433.   if (strcmp (bfd_get_target (abfd), "coff-go32-exe") == 0
  7434.       || strcmp (bfd_get_target (abfd), "coff-go32") == 0)
  7435.     return GDB_OSABI_GO32;

  7436.   return GDB_OSABI_UNKNOWN;
  7437. }


  7438. /* Provide a prototype to silence -Wmissing-prototypes.  */
  7439. void _initialize_i386_tdep (void);

  7440. void
  7441. _initialize_i386_tdep (void)
  7442. {
  7443.   register_gdbarch_init (bfd_arch_i386, i386_gdbarch_init);

  7444.   /* Add the variable that controls the disassembly flavor.  */
  7445.   add_setshow_enum_cmd ("disassembly-flavor", no_class, valid_flavors,
  7446.                         &disassembly_flavor, _("\
  7447. Set the disassembly flavor."), _("\
  7448. Show the disassembly flavor."), _("\
  7449. The valid values are \"att\" and \"intel\", and the default value is \"att\"."),
  7450.                         NULL,
  7451.                         NULL, /* FIXME: i18n: */
  7452.                         &setlist, &showlist);

  7453.   /* Add the variable that controls the convention for returning
  7454.      structs.  */
  7455.   add_setshow_enum_cmd ("struct-convention", no_class, valid_conventions,
  7456.                         &struct_convention, _("\
  7457. Set the convention for returning small structs."), _("\
  7458. Show the convention for returning small structs."), _("\
  7459. Valid values are \"default\", \"pcc\" and \"reg\", and the default value\n\
  7460. is \"default\"."),
  7461.                         NULL,
  7462.                         NULL, /* FIXME: i18n: */
  7463.                         &setlist, &showlist);

  7464.   gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_coff_flavour,
  7465.                                   i386_coff_osabi_sniffer);

  7466.   gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_SVR4,
  7467.                           i386_svr4_init_abi);
  7468.   gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_GO32,
  7469.                           i386_go32_init_abi);

  7470.   /* Initialize the i386-specific register groups.  */
  7471.   i386_init_reggroups ();

  7472.   /* Initialize the standard target descriptions.  */
  7473.   initialize_tdesc_i386 ();
  7474.   initialize_tdesc_i386_mmx ();
  7475.   initialize_tdesc_i386_avx ();
  7476.   initialize_tdesc_i386_mpx ();
  7477.   initialize_tdesc_i386_avx512 ();

  7478.   /* Tell remote stub that we support XML target description.  */
  7479.   register_remote_support_xml ("i386");
  7480. }