1 /* Native-dependent code for AMD64.
3 Copyright 2003 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
26 #include "gdb_assert.h"
28 #include "i386-tdep.h"
29 #include "x86-64-tdep.h"
31 /* The following bits of code help with implementing debugging 32-bit
32 code natively on AMD64. The idea is to define two mappings between
33 the register number as used by GDB and the register set used by the
34 host to represent the general-purpose registers; one for 32-bit
35 code and one for 64-bit code. The mappings are specified by the
36 follwing variables and consist of an array of offsets within the
37 register set indexed by register number, and the number of
38 registers supported by the mapping. We don't need mappings for the
39 floating-point and SSE registers, since the difference between
40 64-bit and 32-bit variants are negligable. The difference in the
41 number of SSE registers is already handled by the target code. */
43 /* General-purpose register mapping for native 32-bit code. */
44 int *amd64_native_gregset32_reg_offset;
45 int amd64_native_gregset32_num_regs = I386_NUM_GREGS;
47 /* General-purpose register mapping for native 64-bit code. */
48 int *amd64_native_gregset64_reg_offset;
49 int amd64_native_gregset64_num_regs = X86_64_NUM_GREGS;
51 /* Return the offset of REGNUM within the appropriate native
52 general-purpose register set. */
55 amd64_native_gregset_reg_offset (int regnum)
57 int *reg_offset = amd64_native_gregset64_reg_offset;
58 int num_regs = amd64_native_gregset64_num_regs;
60 gdb_assert (regnum >= 0);
62 if (gdbarch_ptr_bit (current_gdbarch) == 32)
64 reg_offset = amd64_native_gregset32_reg_offset;
65 num_regs = amd64_native_gregset32_num_regs;
68 if (num_regs > NUM_REGS)
71 if (regnum < num_regs && regnum < NUM_REGS)
72 return reg_offset[regnum];
77 /* Return whether the native general-purpose register set supplies
81 amd64_native_gregset_supplies_p (int regnum)
83 return (amd64_native_gregset_reg_offset (regnum) != -1);
87 /* Supply register REGNUM, whose contents are store in BUF, to
88 REGCACHE. If REGNUM is -1, supply all appropriate registers. */
91 amd64_supply_native_gregset (struct regcache *regcache,
92 const void *gregs, int regnum)
94 const char *regs = gregs;
95 int num_regs = amd64_native_gregset64_num_regs;
98 if (gdbarch_ptr_bit (current_gdbarch) == 32)
99 num_regs = amd64_native_gregset32_num_regs;
101 if (num_regs > NUM_REGS)
104 for (i = 0; i < num_regs; i++)
106 if (regnum == -1 || regnum == i)
108 int offset = amd64_native_gregset_reg_offset (i);
111 regcache_raw_supply (current_regcache, i, regs + offset);
116 /* Collect register REGNUM from REGCACHE and store its contents in
117 GREGS. If REGNUM is -1, collect and store all appropriate
121 amd64_collect_native_gregset (const struct regcache *regcache,
122 void *gregs, int regnum)
125 int num_regs = amd64_native_gregset64_num_regs;
128 if (gdbarch_ptr_bit (current_gdbarch) == 32)
129 num_regs = amd64_native_gregset32_num_regs;
131 if (num_regs > NUM_REGS)
134 for (i = 0; i < num_regs; i++)
136 if (regnum == -1 || regnum == i)
138 int offset = amd64_native_gregset_reg_offset (i);
141 regcache_raw_collect (current_regcache, i, regs + offset);