2003-07-16 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / x86-64-linux-nat.c
1 /* Native-dependent code for GNU/Linux x86-64.
2
3 Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
4
5 Contributed by Jiri Smid, SuSE Labs.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
23
24 #include "defs.h"
25 #include "inferior.h"
26 #include "gdbcore.h"
27 #include "regcache.h"
28
29 #include "gdb_assert.h"
30 #include "gdb_string.h"
31 #include <sys/ptrace.h>
32 #include <sys/debugreg.h>
33 #include <sys/syscall.h>
34 #include <sys/procfs.h>
35 #include <sys/reg.h>
36
37 /* Prototypes for supply_gregset etc. */
38 #include "gregset.h"
39
40 #include "x86-64-tdep.h"
41 #include "x86-64-linux-tdep.h"
42
43 /* Which ptrace request retrieves which registers?
44 These apply to the corresponding SET requests as well. */
45
46 #define GETREGS_SUPPLIES(regno) \
47 (0 <= (regno) && (regno) < X86_64_NUM_GREGS)
48
49 #define GETFPREGS_SUPPLIES(regno) \
50 (FP0_REGNUM <= (regno) && (regno) <= MXCSR_REGNUM)
51 \f
52
53 /* Transfering the general-purpose registers between GDB, inferiors
54 and core files. */
55
56 /* Fill GDB's register array with the general-purpose register values
57 in *GREGSETP. */
58
59 void
60 supply_gregset (elf_gregset_t *gregsetp)
61 {
62 x86_64_linux_supply_gregset ((char *) gregsetp);
63 }
64
65 /* Fill register REGNO (if it is a general-purpose register) in
66 *GREGSETPS with the value in GDB's register array. If REGNO is -1,
67 do this for all registers. */
68
69 void
70 fill_gregset (elf_gregset_t *gregsetp, int regno)
71 {
72 x86_64_linux_fill_gregset ((char *) gregsetp, regno);
73 }
74
75 /* Fetch all general-purpose registers from process/thread TID and
76 store their values in GDB's register array. */
77
78 static void
79 fetch_regs (int tid)
80 {
81 elf_gregset_t regs;
82
83 if (ptrace (PTRACE_GETREGS, tid, 0, (long) &regs) < 0)
84 perror_with_name ("Couldn't get registers");
85
86 supply_gregset (&regs);
87 }
88
89 /* Store all valid general-purpose registers in GDB's register array
90 into the process/thread specified by TID. */
91
92 static void
93 store_regs (int tid, int regno)
94 {
95 elf_gregset_t regs;
96
97 if (ptrace (PTRACE_GETREGS, tid, 0, (long) &regs) < 0)
98 perror_with_name ("Couldn't get registers");
99
100 fill_gregset (&regs, regno);
101
102 if (ptrace (PTRACE_SETREGS, tid, 0, (long) &regs) < 0)
103 perror_with_name ("Couldn't write registers");
104 }
105 \f
106
107 /* Transfering floating-point registers between GDB, inferiors and cores. */
108
109 /* Fill GDB's register array with the floating-point and SSE register
110 values in *FPREGSETP. */
111
112 void
113 supply_fpregset (elf_fpregset_t *fpregsetp)
114 {
115 x86_64_supply_fxsave ((char *) fpregsetp);
116 }
117
118 /* Fill register REGNUM (if it is a floating-point or SSE register) in
119 *FPREGSETP with the value in GDB's register array. If REGNUM is
120 -1, do this for all registers. */
121
122 void
123 fill_fpregset (elf_fpregset_t *fpregsetp, int regnum)
124 {
125 x86_64_fill_fxsave ((char *) fpregsetp, regnum);
126 }
127
128 /* Fetch all floating-point registers from process/thread TID and store
129 thier values in GDB's register array. */
130
131 static void
132 fetch_fpregs (int tid)
133 {
134 elf_fpregset_t fpregs;
135
136 if (ptrace (PTRACE_GETFPREGS, tid, 0, (long) &fpregs) < 0)
137 perror_with_name ("Couldn't get floating point status");
138
139 supply_fpregset (&fpregs);
140 }
141
142 /* Store all valid floating-point registers in GDB's register array
143 into the process/thread specified by TID. */
144
145 static void
146 store_fpregs (int tid, int regno)
147 {
148 elf_fpregset_t fpregs;
149
150 if (ptrace (PTRACE_GETFPREGS, tid, 0, (long) &fpregs) < 0)
151 perror_with_name ("Couldn't get floating point status");
152
153 fill_fpregset (&fpregs, regno);
154
155 if (ptrace (PTRACE_SETFPREGS, tid, 0, (long) &fpregs) < 0)
156 perror_with_name ("Couldn't write floating point status");
157 }
158 \f
159
160 /* Transferring arbitrary registers between GDB and inferior. */
161
162 /* Fetch register REGNO from the child process. If REGNO is -1, do
163 this for all registers (including the floating point and SSE
164 registers). */
165
166 void
167 fetch_inferior_registers (int regno)
168 {
169 int tid;
170
171 /* GNU/Linux LWP ID's are process ID's. */
172 tid = TIDGET (inferior_ptid);
173 if (tid == 0)
174 tid = PIDGET (inferior_ptid); /* Not a threaded program. */
175
176 if (regno == -1)
177 {
178 fetch_regs (tid);
179 fetch_fpregs (tid);
180 return;
181 }
182
183 if (GETREGS_SUPPLIES (regno))
184 {
185 fetch_regs (tid);
186 return;
187 }
188
189 if (GETFPREGS_SUPPLIES (regno))
190 {
191 fetch_fpregs (tid);
192 return;
193 }
194
195 internal_error (__FILE__, __LINE__,
196 "Got request for bad register number %d.", regno);
197 }
198
199 /* Store register REGNO back into the child process. If REGNO is -1,
200 do this for all registers (including the floating-point and SSE
201 registers). */
202
203 void
204 store_inferior_registers (int regno)
205 {
206 int tid;
207
208 /* GNU/Linux LWP ID's are process ID's. */
209 tid = TIDGET (inferior_ptid);
210 if (tid == 0)
211 tid = PIDGET (inferior_ptid); /* Not a threaded program. */
212
213 if (regno == -1)
214 {
215 store_regs (tid, regno);
216 store_fpregs (tid, regno);
217 return;
218 }
219
220 if (GETREGS_SUPPLIES (regno))
221 {
222 store_regs (tid, regno);
223 return;
224 }
225
226 if (GETFPREGS_SUPPLIES (regno))
227 {
228 store_fpregs (tid, regno);
229 return;
230 }
231
232 internal_error (__FILE__, __LINE__,
233 "Got request to store bad register number %d.", regno);
234 }
235 \f
236
237 static unsigned long
238 x86_64_linux_dr_get (int regnum)
239 {
240 int tid;
241 unsigned long value;
242
243 /* FIXME: kettenis/2001-01-29: It's not clear what we should do with
244 multi-threaded processes here. For now, pretend there is just
245 one thread. */
246 tid = PIDGET (inferior_ptid);
247
248 /* FIXME: kettenis/2001-03-27: Calling perror_with_name if the
249 ptrace call fails breaks debugging remote targets. The correct
250 way to fix this is to add the hardware breakpoint and watchpoint
251 stuff to the target vectore. For now, just return zero if the
252 ptrace call fails. */
253 errno = 0;
254 value = ptrace (PT_READ_U, tid,
255 offsetof (struct user, u_debugreg[regnum]), 0);
256 if (errno != 0)
257 #if 0
258 perror_with_name ("Couldn't read debug register");
259 #else
260 return 0;
261 #endif
262
263 return value;
264 }
265
266 static void
267 x86_64_linux_dr_set (int regnum, unsigned long value)
268 {
269 int tid;
270
271 /* FIXME: kettenis/2001-01-29: It's not clear what we should do with
272 multi-threaded processes here. For now, pretend there is just
273 one thread. */
274 tid = PIDGET (inferior_ptid);
275
276 errno = 0;
277 ptrace (PT_WRITE_U, tid, offsetof (struct user, u_debugreg[regnum]), value);
278 if (errno != 0)
279 perror_with_name ("Couldn't write debug register");
280 }
281
282 void
283 x86_64_linux_dr_set_control (unsigned long control)
284 {
285 x86_64_linux_dr_set (DR_CONTROL, control);
286 }
287
288 void
289 x86_64_linux_dr_set_addr (int regnum, CORE_ADDR addr)
290 {
291 gdb_assert (regnum >= 0 && regnum <= DR_LASTADDR - DR_FIRSTADDR);
292
293 x86_64_linux_dr_set (DR_FIRSTADDR + regnum, addr);
294 }
295
296 void
297 x86_64_linux_dr_reset_addr (int regnum)
298 {
299 gdb_assert (regnum >= 0 && regnum <= DR_LASTADDR - DR_FIRSTADDR);
300
301 x86_64_linux_dr_set (DR_FIRSTADDR + regnum, 0L);
302 }
303
304 unsigned long
305 x86_64_linux_dr_get_status (void)
306 {
307 return x86_64_linux_dr_get (DR_STATUS);
308 }
This page took 0.034845 seconds and 4 git commands to generate.