bfd/
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-x86-64-low.c
1 /* GNU/Linux/x86-64 specific low level interface, for the remote server
2 for GDB.
3 Copyright (C) 2002, 2004, 2005, 2006
4 Free Software Foundation, Inc.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
22
23 #include "server.h"
24 #include "linux-low.h"
25 #include "i387-fp.h"
26
27 #include "gdb_proc_service.h"
28
29 #include <sys/reg.h>
30 #include <sys/procfs.h>
31 #include <sys/ptrace.h>
32
33 /* This definition comes from prctl.h, but some kernels may not have it. */
34 #ifndef PTRACE_ARCH_PRCTL
35 #define PTRACE_ARCH_PRCTL 30
36 #endif
37
38 /* The following definitions come from prctl.h, but may be absent
39 for certain configurations. */
40 #ifndef ARCH_GET_FS
41 #define ARCH_SET_GS 0x1001
42 #define ARCH_SET_FS 0x1002
43 #define ARCH_GET_FS 0x1003
44 #define ARCH_GET_GS 0x1004
45 #endif
46
47 static int x86_64_regmap[] = {
48 RAX * 8, RBX * 8, RCX * 8, RDX * 8,
49 RSI * 8, RDI * 8, RBP * 8, RSP * 8,
50 R8 * 8, R9 * 8, R10 * 8, R11 * 8,
51 R12 * 8, R13 * 8, R14 * 8, R15 * 8,
52 RIP * 8, EFLAGS * 8, CS * 8, SS * 8,
53 DS * 8, ES * 8, FS * 8, GS * 8
54 };
55
56 #define X86_64_NUM_GREGS (sizeof(x86_64_regmap)/sizeof(int))
57
58 /* Called by libthread_db. */
59
60 ps_err_e
61 ps_get_thread_area (const struct ps_prochandle *ph,
62 lwpid_t lwpid, int idx, void **base)
63 {
64 switch (idx)
65 {
66 case FS:
67 if (ptrace (PTRACE_ARCH_PRCTL, lwpid, base, ARCH_GET_FS) == 0)
68 return PS_OK;
69 break;
70 case GS:
71 if (ptrace (PTRACE_ARCH_PRCTL, lwpid, base, ARCH_GET_GS) == 0)
72 return PS_OK;
73 break;
74 default:
75 return PS_BADADDR;
76 }
77 return PS_ERR;
78 }
79
80 static void
81 x86_64_fill_gregset (void *buf)
82 {
83 int i;
84
85 for (i = 0; i < X86_64_NUM_GREGS; i++)
86 collect_register (i, ((char *) buf) + x86_64_regmap[i]);
87 }
88
89 static void
90 x86_64_store_gregset (const void *buf)
91 {
92 int i;
93
94 for (i = 0; i < X86_64_NUM_GREGS; i++)
95 supply_register (i, ((char *) buf) + x86_64_regmap[i]);
96 }
97
98 static void
99 x86_64_fill_fpregset (void *buf)
100 {
101 i387_cache_to_fxsave (buf);
102 }
103
104 static void
105 x86_64_store_fpregset (const void *buf)
106 {
107 i387_fxsave_to_cache (buf);
108 }
109
110 struct regset_info target_regsets[] = {
111 { PTRACE_GETREGS, PTRACE_SETREGS, sizeof (elf_gregset_t),
112 GENERAL_REGS,
113 x86_64_fill_gregset, x86_64_store_gregset },
114 { PTRACE_GETFPREGS, PTRACE_SETFPREGS, sizeof (elf_fpregset_t),
115 FP_REGS,
116 x86_64_fill_fpregset, x86_64_store_fpregset },
117 { 0, 0, -1, -1, NULL, NULL }
118 };
119
120 static const unsigned char x86_64_breakpoint[] = { 0xCC };
121 #define x86_64_breakpoint_len 1
122
123 extern int debug_threads;
124
125 static CORE_ADDR
126 x86_64_get_pc ()
127 {
128 unsigned long pc;
129
130 collect_register_by_name ("rip", &pc);
131
132 if (debug_threads)
133 fprintf (stderr, "stop pc (before any decrement) is %08lx\n", pc);
134 return pc;
135 }
136
137 static void
138 x86_64_set_pc (CORE_ADDR newpc)
139 {
140 if (debug_threads)
141 fprintf (stderr, "set pc to %08lx\n", (long) newpc);
142 supply_register_by_name ("rip", &newpc);
143 }
144
145 static int
146 x86_64_breakpoint_at (CORE_ADDR pc)
147 {
148 unsigned char c;
149
150 read_inferior_memory (pc, &c, 1);
151 if (c == 0xCC)
152 return 1;
153
154 return 0;
155 }
156
157 struct linux_target_ops the_low_target = {
158 -1,
159 NULL,
160 NULL,
161 NULL,
162 x86_64_get_pc,
163 x86_64_set_pc,
164 x86_64_breakpoint,
165 x86_64_breakpoint_len,
166 NULL,
167 1,
168 x86_64_breakpoint_at,
169 };
This page took 0.03355 seconds and 4 git commands to generate.