1 /* Target-dependent code for the i386.
3 Copyright (C) 2001-2024 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 3 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, see <http://www.gnu.org/licenses/>. */
25 #include "expression.h"
26 #include "gdbsupport/x86-xstate.h"
34 /* GDB's i386 target supports both the 32-bit Intel Architecture
35 (IA-32) and the 64-bit AMD x86-64 architecture. Internally it uses
36 a similar register layout for both.
38 - General purpose registers
40 - FPU control registers
42 - SSE control register
44 The general purpose registers for the x86-64 architecture are quite
45 different from IA-32. Therefore, gdbarch_fp0_regnum
46 determines the register number at which the FPU data registers
47 start. The number of FPU data and control registers is the same
48 for both architectures. The number of SSE registers however,
49 differs and is determined by the num_xmm_regs member of `struct
52 /* Convention for returning structures. */
56 pcc_struct_return
, /* Return "short" structures in memory. */
57 reg_struct_return
/* Return "short" structures in registers. */
60 /* i386 architecture specific information. */
61 struct i386_gdbarch_tdep
: gdbarch_tdep_base
63 /* General-purpose registers. */
64 int *gregset_reg_offset
= 0;
65 int gregset_num_regs
= 0;
66 size_t sizeof_gregset
= 0;
68 /* Floating-point registers. */
69 size_t sizeof_fpregset
= 0;
71 /* Register number for %st(0). The register numbers for the other
72 registers follow from this one. Set this to -1 to indicate the
76 /* Number of MMX registers. */
79 /* Register number for %mm0. Set this to -1 to indicate the absence
83 /* Number of pseudo YMM registers. */
86 /* Register number for %ymm0. Set this to -1 to indicate the absence
87 of pseudo YMM register support. */
90 /* Number of AVX512 OpMask registers (K-registers) */
93 /* Register number for %k0. Set this to -1 to indicate the absence
94 of AVX512 OpMask register support. */
97 /* Number of pseudo ZMM registers ($zmm0-$zmm31). */
100 /* Register number for %zmm0. Set this to -1 to indicate the absence
101 of pseudo ZMM register support. */
104 /* Number of byte registers. */
105 int num_byte_regs
= 0;
107 /* Register pseudo number for %al. */
110 /* Number of pseudo word registers. */
111 int num_word_regs
= 0;
113 /* Register number for %ax. */
116 /* Number of pseudo dword registers. */
117 int num_dword_regs
= 0;
119 /* Register number for %eax. Set this to -1 to indicate the absence
120 of pseudo dword register support. */
123 /* Number of core registers. */
124 int num_core_regs
= 0;
126 /* Number of SSE registers. */
127 int num_xmm_regs
= 0;
129 /* Number of SSE registers added in AVX512. */
130 int num_xmm_avx512_regs
= 0;
132 /* Register number of XMM16, the first XMM register added in AVX512. */
133 int xmm16_regnum
= 0;
135 /* Number of YMM registers added in AVX512. */
136 int num_ymm_avx512_regs
= 0;
138 /* Register number of YMM16, the first YMM register added in AVX512. */
139 int ymm16_regnum
= 0;
141 /* Bits of the extended control register 0 (the XFEATURE_ENABLED_MASK
142 register), excluding the x87 bit, which are supported by this GDB. */
146 /* Offset of XCR0 in XSAVE extended state. */
147 int xsave_xcr0_offset
= 0;
149 /* Layout of the XSAVE area extended region. */
150 x86_xsave_layout xsave_layout
;
152 /* Register names. */
153 const char * const *register_names
= nullptr;
155 /* Register number for %ymm0h. Set this to -1 to indicate the absence
156 of upper YMM register support. */
157 int ymm0h_regnum
= 0;
159 /* Upper YMM register names. Only used for tdesc_numbered_register. */
160 const char * const *ymmh_register_names
= nullptr;
162 /* Register number for %ymm16h. Set this to -1 to indicate the absence
163 of support for YMM16-31. */
164 int ymm16h_regnum
= 0;
166 /* YMM16-31 register names. Only used for tdesc_numbered_register. */
167 const char * const *ymm16h_register_names
= nullptr;
169 /* Register number for %zmm0h. Set this to -1 to indicate the absence
170 of ZMM_HI256 register support. */
171 int zmm0h_regnum
= 0;
173 /* OpMask register names. */
174 const char * const *k_register_names
= nullptr;
176 /* ZMM register names. Only used for tdesc_numbered_register. */
177 const char * const *zmmh_register_names
= nullptr;
179 /* XMM16-31 register names. Only used for tdesc_numbered_register. */
180 const char * const *xmm_avx512_register_names
= nullptr;
182 /* YMM16-31 register names. Only used for tdesc_numbered_register. */
183 const char * const *ymm_avx512_register_names
= nullptr;
185 /* Number of PKEYS registers. */
186 int num_pkeys_regs
= 0;
188 /* Register number for PKRU register. */
191 /* PKEYS register names. */
192 const char * const *pkeys_register_names
= nullptr;
194 /* Register number for %fsbase. Set this to -1 to indicate the
195 absence of segment base registers. */
196 int fsbase_regnum
= 0;
198 /* Target description. */
199 const struct target_desc
*tdesc
= nullptr;
201 /* Register group function. */
202 gdbarch_register_reggroup_p_ftype
*register_reggroup_p
= nullptr;
204 /* Offset of saved PC in jmp_buf. */
205 int jb_pc_offset
= 0;
207 /* Convention for returning structures. */
208 enum struct_return struct_return
{};
210 /* Address range where sigtramp lives. */
211 CORE_ADDR sigtramp_start
= 0;
212 CORE_ADDR sigtramp_end
= 0;
214 /* Detect sigtramp. */
215 int (*sigtramp_p
) (const frame_info_ptr
&) = nullptr;
217 /* Get address of sigcontext for sigtramp. */
218 CORE_ADDR (*sigcontext_addr
) (const frame_info_ptr
&) = nullptr;
220 /* Offset of registers in `struct sigcontext'. */
221 int *sc_reg_offset
= 0;
224 /* Offset of saved PC and SP in `struct sigcontext'. Usage of these
225 is deprecated, please use `sc_reg_offset' instead. */
226 int sc_pc_offset
= 0;
227 int sc_sp_offset
= 0;
229 /* ISA-specific data types. */
230 struct type
*i386_mmx_type
= nullptr;
231 struct type
*i386_ymm_type
= nullptr;
232 struct type
*i386_zmm_type
= nullptr;
233 struct type
*i387_ext_type
= nullptr;
235 /* Process record/replay target. */
236 /* The map for registers because the AMD64's registers order
237 in GDB is not same as I386 instructions. */
238 const int *record_regmap
= nullptr;
239 /* Parse intx80 args. */
240 int (*i386_intx80_record
) (struct regcache
*regcache
) = nullptr;
241 /* Parse sysenter args. */
242 int (*i386_sysenter_record
) (struct regcache
*regcache
) = nullptr;
243 /* Parse syscall args. */
244 int (*i386_syscall_record
) (struct regcache
*regcache
) = nullptr;
247 const struct regset
*fpregset
= nullptr;
250 /* Floating-point registers. */
252 /* All FPU control registers (except for FIOFF and FOOFF) are 16-bit
253 (at most) in the FPU, but are zero-extended to 32 bits in GDB's
256 /* Return non-zero if REGNUM matches the FP register and the FP
257 register set is active. */
258 extern int i386_fp_regnum_p (struct gdbarch
*, int);
259 extern int i386_fpc_regnum_p (struct gdbarch
*, int);
261 /* Register numbers of various important registers. */
265 I386_EAX_REGNUM
, /* %eax */
266 I386_ECX_REGNUM
, /* %ecx */
267 I386_EDX_REGNUM
, /* %edx */
268 I386_EBX_REGNUM
, /* %ebx */
269 I386_ESP_REGNUM
, /* %esp */
270 I386_EBP_REGNUM
, /* %ebp */
271 I386_ESI_REGNUM
, /* %esi */
272 I386_EDI_REGNUM
, /* %edi */
273 I386_EIP_REGNUM
, /* %eip */
274 I386_EFLAGS_REGNUM
, /* %eflags */
275 I386_CS_REGNUM
, /* %cs */
276 I386_SS_REGNUM
, /* %ss */
277 I386_DS_REGNUM
, /* %ds */
278 I386_ES_REGNUM
, /* %es */
279 I386_FS_REGNUM
, /* %fs */
280 I386_GS_REGNUM
, /* %gs */
281 I386_ST0_REGNUM
, /* %st(0) */
282 I386_MXCSR_REGNUM
= 40, /* %mxcsr */
283 I386_YMM0H_REGNUM
, /* %ymm0h */
284 I386_YMM7H_REGNUM
= I386_YMM0H_REGNUM
+ 7,
285 /* MPX is deprecated. Yet we keep this to not give the registers below
286 a new number. That could break older gdbservers. */
288 I386_BND3R_REGNUM
= I386_BND0R_REGNUM
+ 3,
290 I386_BNDSTATUS_REGNUM
,
291 I386_K0_REGNUM
, /* %k0 */
292 I386_K7_REGNUM
= I386_K0_REGNUM
+ 7,
293 I386_ZMM0H_REGNUM
, /* %zmm0h */
294 I386_ZMM7H_REGNUM
= I386_ZMM0H_REGNUM
+ 7,
300 /* Register numbers of RECORD_REGMAP. */
302 enum record_i386_regnum
304 X86_RECORD_REAX_REGNUM
,
305 X86_RECORD_RECX_REGNUM
,
306 X86_RECORD_REDX_REGNUM
,
307 X86_RECORD_REBX_REGNUM
,
308 X86_RECORD_RESP_REGNUM
,
309 X86_RECORD_REBP_REGNUM
,
310 X86_RECORD_RESI_REGNUM
,
311 X86_RECORD_REDI_REGNUM
,
312 X86_RECORD_R8_REGNUM
,
313 X86_RECORD_R9_REGNUM
,
314 X86_RECORD_R10_REGNUM
,
315 X86_RECORD_R11_REGNUM
,
316 X86_RECORD_R12_REGNUM
,
317 X86_RECORD_R13_REGNUM
,
318 X86_RECORD_R14_REGNUM
,
319 X86_RECORD_R15_REGNUM
,
320 X86_RECORD_REIP_REGNUM
,
321 X86_RECORD_EFLAGS_REGNUM
,
322 X86_RECORD_CS_REGNUM
,
323 X86_RECORD_SS_REGNUM
,
324 X86_RECORD_DS_REGNUM
,
325 X86_RECORD_ES_REGNUM
,
326 X86_RECORD_FS_REGNUM
,
327 X86_RECORD_GS_REGNUM
,
328 X86_RECORD_XMM0_REGNUM
,
331 #define I386_NUM_GREGS 16
332 #define I386_NUM_XREGS 9
334 #define I386_SSE_NUM_REGS (I386_MXCSR_REGNUM + 1)
335 #define I386_AVX_NUM_REGS (I386_YMM7H_REGNUM + 1)
336 #define I386_AVX512_NUM_REGS (I386_ZMM7H_REGNUM + 1)
337 #define I386_PKEYS_NUM_REGS (I386_PKRU_REGNUM + 1)
338 #define I386_NUM_REGS (I386_GSBASE_REGNUM + 1)
340 /* Size of the largest register. */
341 #define I386_MAX_REGISTER_SIZE 64
343 /* Types for i386-specific registers. */
344 extern struct type
*i387_ext_type (struct gdbarch
*gdbarch
);
346 /* Checks of different registers. */
347 extern int i386_byte_regnum_p (struct gdbarch
*gdbarch
, int regnum
);
348 extern int i386_word_regnum_p (struct gdbarch
*gdbarch
, int regnum
);
349 extern int i386_dword_regnum_p (struct gdbarch
*gdbarch
, int regnum
);
350 extern int i386_xmm_regnum_p (struct gdbarch
*gdbarch
, int regnum
);
351 extern int i386_xmm_avx512_regnum_p (struct gdbarch
* gdbarch
, int regnum
);
352 extern int i386_ymm_regnum_p (struct gdbarch
*gdbarch
, int regnum
);
353 extern int i386_ymm_avx512_regnum_p (struct gdbarch
*gdbarch
, int regnum
);
354 extern int i386_k_regnum_p (struct gdbarch
*gdbarch
, int regnum
);
355 extern int i386_zmm_regnum_p (struct gdbarch
*gdbarch
, int regnum
);
356 extern int i386_zmmh_regnum_p (struct gdbarch
*gdbarch
, int regnum
);
357 extern bool i386_pkru_regnum_p (struct gdbarch
*gdbarch
, int regnum
);
359 extern const char *i386_pseudo_register_name (struct gdbarch
*gdbarch
,
361 extern struct type
*i386_pseudo_register_type (struct gdbarch
*gdbarch
,
364 extern value
*i386_pseudo_register_read_value (gdbarch
*gdbarch
,
365 const frame_info_ptr
&next_frame
,
368 extern void i386_pseudo_register_write (gdbarch
*gdbarch
,
369 const frame_info_ptr
&next_frame
, int regnum
,
370 gdb::array_view
<const gdb_byte
> buf
);
372 extern int i386_ax_pseudo_register_collect (struct gdbarch
*gdbarch
,
373 struct agent_expr
*ax
,
376 /* Segment selectors. */
377 #define I386_SEL_RPL 0x0003 /* Requester's Privilege Level mask. */
378 #define I386_SEL_UPL 0x0003 /* User Privilege Level. */
379 #define I386_SEL_KPL 0x0000 /* Kernel Privilege Level. */
381 /* The length of the longest i386 instruction (according to
382 include/asm-i386/kprobes.h in Linux 2.6. */
383 #define I386_MAX_INSN_LEN (16)
385 /* Functions exported from i386-tdep.c. */
386 extern CORE_ADDR
i386_pe_skip_trampoline_code (const frame_info_ptr
&frame
,
387 CORE_ADDR pc
, char *name
);
388 extern CORE_ADDR
i386_skip_main_prologue (struct gdbarch
*gdbarch
,
391 /* The "push_dummy_call" gdbarch method, optionally with the thiscall
392 calling convention. */
393 extern CORE_ADDR
i386_thiscall_push_dummy_call (struct gdbarch
*gdbarch
,
394 struct value
*function
,
395 struct regcache
*regcache
,
397 int nargs
, struct value
**args
,
399 function_call_return_method
401 CORE_ADDR struct_addr
,
404 /* Return whether the THIS_FRAME corresponds to a sigtramp routine. */
405 extern int i386_sigtramp_p (const frame_info_ptr
&this_frame
);
407 /* Return non-zero if REGNUM is a member of the specified group. */
408 extern int i386_register_reggroup_p (struct gdbarch
*gdbarch
, int regnum
,
409 const struct reggroup
*group
);
411 /* Supply register REGNUM from the general-purpose register set REGSET
412 to register cache REGCACHE. If REGNUM is -1, do this for all
413 registers in REGSET. */
414 extern void i386_supply_gregset (const struct regset
*regset
,
415 struct regcache
*regcache
, int regnum
,
416 const void *gregs
, size_t len
);
418 /* General-purpose register set. */
419 extern const struct regset i386_gregset
;
421 /* Floating-point register set. */
422 extern const struct regset i386_fpregset
;
424 /* Default iterator over core file register note sections. */
426 i386_iterate_over_regset_sections (struct gdbarch
*gdbarch
,
427 iterate_over_regset_sections_cb
*cb
,
429 const struct regcache
*regcache
);
431 typedef buf_displaced_step_copy_insn_closure
432 i386_displaced_step_copy_insn_closure
;
434 extern displaced_step_copy_insn_closure_up i386_displaced_step_copy_insn
435 (struct gdbarch
*gdbarch
, CORE_ADDR from
, CORE_ADDR to
,
436 struct regcache
*regs
);
437 extern void i386_displaced_step_fixup
438 (struct gdbarch
*gdbarch
, displaced_step_copy_insn_closure
*closure
,
439 CORE_ADDR from
, CORE_ADDR to
, regcache
*regs
, bool completed_p
);
441 /* Initialize a basic ELF architecture variant. */
442 extern void i386_elf_init_abi (struct gdbarch_info
, struct gdbarch
*);
444 /* Initialize a SVR4 architecture variant. */
445 extern void i386_svr4_init_abi (struct gdbarch_info
, struct gdbarch
*);
447 /* Convert SVR4 register number REG to the appropriate register number
449 extern int i386_svr4_reg_to_regnum (struct gdbarch
*gdbarch
, int reg
);
451 extern int i386_process_record (struct gdbarch
*gdbarch
,
452 struct regcache
*regcache
, CORE_ADDR addr
);
453 extern const struct target_desc
*i386_target_description (uint64_t xcr0
,
456 /* Functions and variables exported from i386-bsd-tdep.c. */
458 extern void i386bsd_init_abi (struct gdbarch_info
, struct gdbarch
*);
459 extern CORE_ADDR i386obsd_sigtramp_start_addr
;
460 extern CORE_ADDR i386obsd_sigtramp_end_addr
;
461 extern int i386obsd_sc_reg_offset
[];
462 extern int i386bsd_sc_reg_offset
[];
464 /* SystemTap related functions. */
466 extern int i386_stap_is_single_operand (struct gdbarch
*gdbarch
,
469 extern expr::operation_up i386_stap_parse_special_token
470 (struct gdbarch
*gdbarch
, struct stap_parse_info
*p
);
472 #endif /* i386-tdep.h */