1 |
1181 |
sfurman |
/* Target-dependent code for GDB, the GNU debugger.
|
2 |
|
|
Copyright 2001, 2002
|
3 |
|
|
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 |
|
|
|
25 |
|
|
#include "osabi.h"
|
26 |
|
|
|
27 |
|
|
/* GDB's i386 target supports both the 32-bit Intel Architecture
|
28 |
|
|
(IA-32) and the 64-bit AMD x86-64 architecture. Internally it uses
|
29 |
|
|
a similar register layout for both.
|
30 |
|
|
|
31 |
|
|
- General purpose registers
|
32 |
|
|
- FPU data registers
|
33 |
|
|
- FPU control registers
|
34 |
|
|
- SSE data registers
|
35 |
|
|
- SSE control register
|
36 |
|
|
|
37 |
|
|
The general purpose registers for the x86-64 architecture are quite
|
38 |
|
|
different from IA-32. Therefore, the FP0_REGNUM target macro
|
39 |
|
|
determines the register number at which the FPU data registers
|
40 |
|
|
start. The number of FPU data and control registers is the same
|
41 |
|
|
for both architectures. The number of SSE registers however,
|
42 |
|
|
differs and is determined by the num_xmm_regs member of `struct
|
43 |
|
|
gdbarch_tdep'. */
|
44 |
|
|
|
45 |
|
|
/* Convention for returning structures. */
|
46 |
|
|
|
47 |
|
|
enum struct_return
|
48 |
|
|
{
|
49 |
|
|
pcc_struct_return, /* Return "short" structures in memory. */
|
50 |
|
|
reg_struct_return /* Return "short" structures in registers. */
|
51 |
|
|
};
|
52 |
|
|
|
53 |
|
|
/* i386 architecture specific information. */
|
54 |
|
|
struct gdbarch_tdep
|
55 |
|
|
{
|
56 |
|
|
/* ABI. */
|
57 |
|
|
enum gdb_osabi osabi;
|
58 |
|
|
|
59 |
|
|
/* Number of SSE registers. */
|
60 |
|
|
int num_xmm_regs;
|
61 |
|
|
|
62 |
|
|
/* Offset of saved PC in jmp_buf. */
|
63 |
|
|
int jb_pc_offset;
|
64 |
|
|
|
65 |
|
|
/* Convention for returning structures. */
|
66 |
|
|
enum struct_return struct_return;
|
67 |
|
|
|
68 |
|
|
/* Address range where sigtramp lives. */
|
69 |
|
|
CORE_ADDR sigtramp_start;
|
70 |
|
|
CORE_ADDR sigtramp_end;
|
71 |
|
|
|
72 |
|
|
/* Get address of sigcontext for sigtramp. */
|
73 |
|
|
CORE_ADDR (*sigcontext_addr) (struct frame_info *);
|
74 |
|
|
|
75 |
|
|
/* Offset of saved PC and SP in `struct sigcontext'. */
|
76 |
|
|
int sc_pc_offset;
|
77 |
|
|
int sc_sp_offset;
|
78 |
|
|
};
|
79 |
|
|
|
80 |
|
|
/* Floating-point registers. */
|
81 |
|
|
|
82 |
|
|
#define FPU_REG_RAW_SIZE 10
|
83 |
|
|
|
84 |
|
|
/* All FPU control regusters (except for FIOFF and FOOFF) are 16-bit
|
85 |
|
|
(at most) in the FPU, but are zero-extended to 32 bits in GDB's
|
86 |
|
|
register cache. */
|
87 |
|
|
|
88 |
|
|
/* "Generic" floating point control register. */
|
89 |
|
|
#define FPC_REGNUM (FP0_REGNUM + 8)
|
90 |
|
|
|
91 |
|
|
/* FPU control word. */
|
92 |
|
|
#define FCTRL_REGNUM FPC_REGNUM
|
93 |
|
|
|
94 |
|
|
/* FPU status word. */
|
95 |
|
|
#define FSTAT_REGNUM (FPC_REGNUM + 1)
|
96 |
|
|
|
97 |
|
|
/* FPU register tag word. */
|
98 |
|
|
#define FTAG_REGNUM (FPC_REGNUM + 2)
|
99 |
|
|
|
100 |
|
|
/* FPU instruction's code segment selector, called "FPU Instruction
|
101 |
|
|
Pointer Selector" in the IA-32 manuals. */
|
102 |
|
|
#define FISEG_REGNUM (FPC_REGNUM + 3)
|
103 |
|
|
|
104 |
|
|
/* FPU instruction's offset within segment. */
|
105 |
|
|
#define FIOFF_REGNUM (FPC_REGNUM + 4)
|
106 |
|
|
|
107 |
|
|
/* FPU operand's data segment. */
|
108 |
|
|
#define FOSEG_REGNUM (FPC_REGNUM + 5)
|
109 |
|
|
|
110 |
|
|
/* FPU operand's offset within segment */
|
111 |
|
|
#define FOOFF_REGNUM (FPC_REGNUM + 6)
|
112 |
|
|
|
113 |
|
|
/* FPU opcode, bottom eleven bits. */
|
114 |
|
|
#define FOP_REGNUM (FPC_REGNUM + 7)
|
115 |
|
|
|
116 |
|
|
/* Return non-zero if N corresponds to a FPU data registers. */
|
117 |
|
|
#define FP_REGNUM_P(n) (FP0_REGNUM && FP0_REGNUM <= (n) && (n) < FPC_REGNUM)
|
118 |
|
|
|
119 |
|
|
/* Return non-zero if N corresponds to a FPU control register. */
|
120 |
|
|
#define FPC_REGNUM_P(n) (FPC_REGNUM <= (n) && (n) < XMM0_REGNUM)
|
121 |
|
|
|
122 |
|
|
/* SSE registers. */
|
123 |
|
|
|
124 |
|
|
/* First SSE data register. */
|
125 |
|
|
#define XMM0_REGNUM (FPC_REGNUM + 8)
|
126 |
|
|
|
127 |
|
|
/* SSE control/status register. */
|
128 |
|
|
#define MXCSR_REGNUM \
|
129 |
|
|
(XMM0_REGNUM + gdbarch_tdep (current_gdbarch)->num_xmm_regs)
|
130 |
|
|
|
131 |
|
|
/* Return non-zero if N corresponds to a SSE data register. */
|
132 |
|
|
#define SSE_REGNUM_P(n) (XMM0_REGNUM <= (n) && (n) < MXCSR_REGNUM)
|
133 |
|
|
|
134 |
|
|
/* FIXME: kettenis/2001-11-24: Obsolete macro's. */
|
135 |
|
|
#define FCS_REGNUM FISEG_REGNUM
|
136 |
|
|
#define FCOFF_REGNUM FIOFF_REGNUM
|
137 |
|
|
#define FDS_REGNUM FOSEG_REGNUM
|
138 |
|
|
#define FDOFF_REGNUM FOOFF_REGNUM
|
139 |
|
|
#define IS_FP_REGNUM(n) FP_REGNUM_P (n)
|
140 |
|
|
#define IS_FPU_CTRL_REGNUM(n) FPC_REGNUM_P (n)
|
141 |
|
|
#define IS_SSE_REGNUM(n) SSE_REGNUM_P (n)
|
142 |
|
|
|
143 |
|
|
#define I386_NUM_GREGS 16
|
144 |
|
|
#define I386_NUM_FREGS 16
|
145 |
|
|
#define I386_NUM_XREGS 9
|
146 |
|
|
|
147 |
|
|
#define I386_SSE_NUM_REGS (I386_NUM_GREGS + I386_NUM_FREGS \
|
148 |
|
|
+ I386_NUM_XREGS)
|
149 |
|
|
|
150 |
|
|
/* Sizes of individual register sets. These cover the entire register
|
151 |
|
|
file, so summing up the sizes of those portions actually present
|
152 |
|
|
yields REGISTER_BYTES. */
|
153 |
|
|
#define I386_SIZEOF_GREGS (I386_NUM_GREGS * 4)
|
154 |
|
|
#define I386_SIZEOF_FREGS (8 * 10 + 8 * 4)
|
155 |
|
|
#define I386_SIZEOF_XREGS (8 * 16 + 4)
|
156 |
|
|
|
157 |
|
|
#define I386_SSE_SIZEOF_REGS (I386_SIZEOF_GREGS + I386_SIZEOF_FREGS \
|
158 |
|
|
+ I386_SIZEOF_XREGS)
|
159 |
|
|
|
160 |
|
|
/* Size of the largest register. */
|
161 |
|
|
#define I386_MAX_REGISTER_SIZE 16
|
162 |
|
|
|
163 |
|
|
/* Functions exported from i386-tdep.c. */
|
164 |
|
|
extern CORE_ADDR i386_pe_skip_trampoline_code (CORE_ADDR pc, char *name);
|
165 |
|
|
|
166 |
|
|
/* Return the name of register REG. */
|
167 |
|
|
extern char const *i386_register_name (int reg);
|
168 |
|
|
|
169 |
|
|
/* Initialize a basic ELF architecture variant. */
|
170 |
|
|
extern void i386_elf_init_abi (struct gdbarch_info, struct gdbarch *);
|
171 |
|
|
|
172 |
|
|
/* Initialize a SVR4 architecture variant. */
|
173 |
|
|
extern void i386_svr4_init_abi (struct gdbarch_info, struct gdbarch *);
|
174 |
|
|
|
175 |
|
|
/* Functions exported from i386bsd-tdep.c. */
|
176 |
|
|
|
177 |
|
|
extern CORE_ADDR i386bsd_sigcontext_addr (struct frame_info *frame);
|
178 |
|
|
extern void i386bsd_init_abi (struct gdbarch_info, struct gdbarch *);
|
179 |
|
|
|
180 |
|
|
#endif /* i386-tdep.h */
|