2004-03-22 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / i386-tdep.h
... / ...
CommitLineData
1/* Target-dependent code for the i386.
2
3 Copyright 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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.
11
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.
16
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. */
21
22#ifndef I386_TDEP_H
23#define I386_TDEP_H
24
25struct frame_info;
26struct gdbarch;
27struct reggroup;
28struct regset;
29struct regcache;
30
31/* GDB's i386 target supports both the 32-bit Intel Architecture
32 (IA-32) and the 64-bit AMD x86-64 architecture. Internally it uses
33 a similar register layout for both.
34
35 - General purpose registers
36 - FPU data registers
37 - FPU control registers
38 - SSE data registers
39 - SSE control register
40
41 The general purpose registers for the x86-64 architecture are quite
42 different from IA-32. Therefore, the FP0_REGNUM target macro
43 determines the register number at which the FPU data registers
44 start. The number of FPU data and control registers is the same
45 for both architectures. The number of SSE registers however,
46 differs and is determined by the num_xmm_regs member of `struct
47 gdbarch_tdep'. */
48
49/* Convention for returning structures. */
50
51enum struct_return
52{
53 pcc_struct_return, /* Return "short" structures in memory. */
54 reg_struct_return /* Return "short" structures in registers. */
55};
56
57/* i386 architecture specific information. */
58struct gdbarch_tdep
59{
60 /* General-purpose registers. */
61 struct regset *gregset;
62 int *gregset_reg_offset;
63 int gregset_num_regs;
64 size_t sizeof_gregset;
65
66 /* Floating-point registers. */
67 struct regset *fpregset;
68 size_t sizeof_fpregset;
69
70 /* Register number for %st(0). The register numbers for the other
71 registers follow from this one. Set this to -1 to indicate the
72 absence of an FPU. */
73 int st0_regnum;
74
75 /* Register number for %mm0. Set this to -1 to indicate the absence
76 of MMX support. */
77 int mm0_regnum;
78
79 /* Number of SSE registers. */
80 int num_xmm_regs;
81
82 /* Offset of saved PC in jmp_buf. */
83 int jb_pc_offset;
84
85 /* Convention for returning structures. */
86 enum struct_return struct_return;
87
88 /* Address range where sigtramp lives. */
89 CORE_ADDR sigtramp_start;
90 CORE_ADDR sigtramp_end;
91
92 /* Get address of sigcontext for sigtramp. */
93 CORE_ADDR (*sigcontext_addr) (struct frame_info *);
94
95 /* Offset of registers in `struct sigcontext'. */
96 int *sc_reg_offset;
97 int sc_num_regs;
98
99 /* Offset of saved PC and SP in `struct sigcontext'. Usage of these
100 is deprecated, please use `sc_reg_offset' instead. */
101 int sc_pc_offset;
102 int sc_sp_offset;
103};
104
105/* Floating-point registers. */
106
107/* All FPU control regusters (except for FIOFF and FOOFF) are 16-bit
108 (at most) in the FPU, but are zero-extended to 32 bits in GDB's
109 register cache. */
110
111/* "Generic" floating point control register. */
112#define FPC_REGNUM (FP0_REGNUM + 8)
113
114/* FPU control word. */
115#define FCTRL_REGNUM FPC_REGNUM
116
117/* FPU status word. */
118#define FSTAT_REGNUM (FPC_REGNUM + 1)
119
120/* FPU register tag word. */
121#define FTAG_REGNUM (FPC_REGNUM + 2)
122
123/* FPU instruction's code segment selector, called "FPU Instruction
124 Pointer Selector" in the IA-32 manuals. */
125#define FISEG_REGNUM (FPC_REGNUM + 3)
126
127/* FPU instruction's offset within segment. */
128#define FIOFF_REGNUM (FPC_REGNUM + 4)
129
130/* FPU operand's data segment. */
131#define FOSEG_REGNUM (FPC_REGNUM + 5)
132
133/* FPU operand's offset within segment */
134#define FOOFF_REGNUM (FPC_REGNUM + 6)
135
136/* FPU opcode, bottom eleven bits. */
137#define FOP_REGNUM (FPC_REGNUM + 7)
138
139/* Return non-zero if REGNUM matches the FP register and the FP
140 register set is active. */
141extern int i386_fp_regnum_p (int regnum);
142extern int i386_fpc_regnum_p (int regnum);
143
144/* SSE registers. */
145
146/* First SSE data register. */
147#define XMM0_REGNUM (FPC_REGNUM + 8)
148
149/* SSE control/status register. */
150#define MXCSR_REGNUM \
151 (XMM0_REGNUM + gdbarch_tdep (current_gdbarch)->num_xmm_regs)
152
153/* Register numbers of various important registers. */
154
155enum i386_regnum
156{
157 I386_EAX_REGNUM, /* %eax */
158 I386_ECX_REGNUM, /* %ecx */
159 I386_EDX_REGNUM, /* %edx */
160 I386_EBX_REGNUM, /* %ebx */
161 I386_ESP_REGNUM, /* %esp */
162 I386_EBP_REGNUM, /* %ebp */
163 I386_ESI_REGNUM, /* %esi */
164 I386_EDI_REGNUM, /* %edi */
165 I386_EIP_REGNUM, /* %eip */
166 I386_EFLAGS_REGNUM, /* %eflags */
167 I386_CS_REGNUM, /* %cs */
168 I386_SS_REGNUM, /* %ss */
169 I386_DS_REGNUM, /* %ds */
170 I386_ES_REGNUM, /* %es */
171 I386_FS_REGNUM, /* %fs */
172 I386_GS_REGNUM, /* %gs */
173 I386_ST0_REGNUM /* %st(0) */
174};
175
176#define I386_NUM_GREGS 16
177#define I386_NUM_FREGS 16
178#define I386_NUM_XREGS 9
179
180#define I386_SSE_NUM_REGS (I386_NUM_GREGS + I386_NUM_FREGS \
181 + I386_NUM_XREGS)
182
183/* Size of the largest register. */
184#define I386_MAX_REGISTER_SIZE 16
185
186/* Functions exported from i386-tdep.c. */
187extern CORE_ADDR i386_pe_skip_trampoline_code (CORE_ADDR pc, char *name);
188extern int i386_frameless_signal_p (struct frame_info *frame);
189
190/* Return the name of register REG. */
191extern char const *i386_register_name (int reg);
192
193/* Return non-zero if REGNUM is a member of the specified group. */
194extern int i386_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
195 struct reggroup *group);
196
197/* Supply register REGNUM from the general-purpose register set REGSET
198 to register cache REGCACHE. If REGNUM is -1, do this for all
199 registers in REGSET. */
200extern void i386_supply_gregset (const struct regset *regset,
201 struct regcache *regcache, int regnum,
202 const void *gregs, size_t len);
203
204/* Return the appropriate register set for the core section identified
205 by SECT_NAME and SECT_SIZE. */
206extern const struct regset *
207 i386_regset_from_core_section (struct gdbarch *gdbarch,
208 const char *sect_name, size_t sect_size);
209
210/* Initialize a basic ELF architecture variant. */
211extern void i386_elf_init_abi (struct gdbarch_info, struct gdbarch *);
212
213/* Initialize a SVR4 architecture variant. */
214extern void i386_svr4_init_abi (struct gdbarch_info, struct gdbarch *);
215\f
216
217/* Functions and variables exported from i386bsd-tdep.c. */
218
219extern void i386bsd_init_abi (struct gdbarch_info, struct gdbarch *);
220extern int i386bsd_pc_in_sigtramp (CORE_ADDR pc, char *name);
221extern CORE_ADDR i386bsd_sigtramp_start (CORE_ADDR pc);
222extern CORE_ADDR i386bsd_sigtramp_end (CORE_ADDR pc);
223extern CORE_ADDR i386fbsd_sigtramp_start_addr;
224extern CORE_ADDR i386fbsd_sigtramp_end_addr;
225extern CORE_ADDR i386obsd_sigtramp_start_addr;
226extern CORE_ADDR i386obsd_sigtramp_end_addr;
227extern int i386fbsd4_sc_reg_offset[];
228extern int i386fbsd_sc_reg_offset[];
229extern int i386nbsd_sc_reg_offset[];
230extern int i386obsd_sc_reg_offset[];
231extern int i386bsd_sc_reg_offset[];
232
233#endif /* i386-tdep.h */
This page took 0.023004 seconds and 4 git commands to generate.