]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/linux-x86-64-low.c
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / gdb / gdbserver / linux-x86-64-low.c
CommitLineData
58caa3dc
DJ
1/* GNU/Linux/x86-64 specific low level interface, for the remote server
2 for GDB.
6aba47ca 3 Copyright (C) 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
58caa3dc
DJ
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
6f0f660e
EZ
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
58caa3dc
DJ
21
22#include "server.h"
23#include "linux-low.h"
24#include "i387-fp.h"
25
0050a760 26#include "gdb_proc_service.h"
fd500816 27
58caa3dc
DJ
28#include <sys/reg.h>
29#include <sys/procfs.h>
30#include <sys/ptrace.h>
31
fd500816
DJ
32/* This definition comes from prctl.h, but some kernels may not have it. */
33#ifndef PTRACE_ARCH_PRCTL
34#define PTRACE_ARCH_PRCTL 30
35#endif
36
43360365
JB
37/* The following definitions come from prctl.h, but may be absent
38 for certain configurations. */
39#ifndef ARCH_GET_FS
40#define ARCH_SET_GS 0x1001
41#define ARCH_SET_FS 0x1002
42#define ARCH_GET_FS 0x1003
43#define ARCH_GET_GS 0x1004
44#endif
45
09ec9b38 46static int x86_64_regmap[] = {
638c1580
ML
47 RAX * 8, RBX * 8, RCX * 8, RDX * 8,
48 RSI * 8, RDI * 8, RBP * 8, RSP * 8,
49 R8 * 8, R9 * 8, R10 * 8, R11 * 8,
50 R12 * 8, R13 * 8, R14 * 8, R15 * 8,
09ec9b38 51 RIP * 8, EFLAGS * 8, CS * 8, SS * 8,
8695c747
DJ
52 DS * 8, ES * 8, FS * 8, GS * 8,
53 -1, -1, -1, -1, -1, -1, -1, -1,
54 -1, -1, -1, -1, -1, -1, -1, -1,
55 -1, -1, -1, -1, -1, -1, -1, -1,
56 -1, -1, -1, -1, -1, -1, -1, -1, -1,
57 ORIG_RAX * 8
58caa3dc
DJ
58};
59
09ec9b38
ML
60#define X86_64_NUM_GREGS (sizeof(x86_64_regmap)/sizeof(int))
61
fd500816
DJ
62/* Called by libthread_db. */
63
64ps_err_e
65ps_get_thread_area (const struct ps_prochandle *ph,
66 lwpid_t lwpid, int idx, void **base)
67{
68 switch (idx)
69 {
70 case FS:
71 if (ptrace (PTRACE_ARCH_PRCTL, lwpid, base, ARCH_GET_FS) == 0)
72 return PS_OK;
73 break;
74 case GS:
75 if (ptrace (PTRACE_ARCH_PRCTL, lwpid, base, ARCH_GET_GS) == 0)
76 return PS_OK;
77 break;
78 default:
79 return PS_BADADDR;
80 }
81 return PS_ERR;
82}
83
58caa3dc
DJ
84static void
85x86_64_fill_gregset (void *buf)
86{
87 int i;
88
de220d0f 89 for (i = 0; i < X86_64_NUM_GREGS; i++)
8695c747
DJ
90 if (x86_64_regmap[i] != -1)
91 collect_register (i, ((char *) buf) + x86_64_regmap[i]);
58caa3dc
DJ
92}
93
94static void
638c1580 95x86_64_store_gregset (const void *buf)
58caa3dc
DJ
96{
97 int i;
98
de220d0f 99 for (i = 0; i < X86_64_NUM_GREGS; i++)
8695c747
DJ
100 if (x86_64_regmap[i] != -1)
101 supply_register (i, ((char *) buf) + x86_64_regmap[i]);
58caa3dc
DJ
102}
103
104static void
105x86_64_fill_fpregset (void *buf)
106{
107 i387_cache_to_fxsave (buf);
108}
109
110static void
638c1580 111x86_64_store_fpregset (const void *buf)
58caa3dc
DJ
112{
113 i387_fxsave_to_cache (buf);
114}
115
58caa3dc
DJ
116struct regset_info target_regsets[] = {
117 { PTRACE_GETREGS, PTRACE_SETREGS, sizeof (elf_gregset_t),
0d62e5e8 118 GENERAL_REGS,
58caa3dc
DJ
119 x86_64_fill_gregset, x86_64_store_gregset },
120 { PTRACE_GETFPREGS, PTRACE_SETFPREGS, sizeof (elf_fpregset_t),
0d62e5e8 121 FP_REGS,
58caa3dc 122 x86_64_fill_fpregset, x86_64_store_fpregset },
0d62e5e8 123 { 0, 0, -1, -1, NULL, NULL }
58caa3dc 124};
2ec06d2e 125
011a70c2
DJ
126static const unsigned char x86_64_breakpoint[] = { 0xCC };
127#define x86_64_breakpoint_len 1
128
129extern int debug_threads;
130
131static CORE_ADDR
132x86_64_get_pc ()
133{
134 unsigned long pc;
135
136 collect_register_by_name ("rip", &pc);
137
138 if (debug_threads)
139 fprintf (stderr, "stop pc (before any decrement) is %08lx\n", pc);
140 return pc;
141}
142
143static void
144x86_64_set_pc (CORE_ADDR newpc)
145{
146 if (debug_threads)
147 fprintf (stderr, "set pc to %08lx\n", (long) newpc);
148 supply_register_by_name ("rip", &newpc);
149}
150
151static int
152x86_64_breakpoint_at (CORE_ADDR pc)
153{
154 unsigned char c;
155
156 read_inferior_memory (pc, &c, 1);
157 if (c == 0xCC)
158 return 1;
159
160 return 0;
161}
162
2ec06d2e
DJ
163struct linux_target_ops the_low_target = {
164 -1,
165 NULL,
166 NULL,
167 NULL,
011a70c2
DJ
168 x86_64_get_pc,
169 x86_64_set_pc,
170 x86_64_breakpoint,
171 x86_64_breakpoint_len,
172 NULL,
173 1,
174 x86_64_breakpoint_at,
2ec06d2e 175};