]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/linux-x86-64-low.c
This commit was manufactured by cvs2svn to create branch
[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.
3 Copyright 2002
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., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23#include "server.h"
24#include "linux-low.h"
25#include "i387-fp.h"
26
27#include <sys/reg.h>
28#include <sys/procfs.h>
29#include <sys/ptrace.h>
30
09ec9b38 31static int x86_64_regmap[] = {
638c1580
ML
32 RAX * 8, RBX * 8, RCX * 8, RDX * 8,
33 RSI * 8, RDI * 8, RBP * 8, RSP * 8,
34 R8 * 8, R9 * 8, R10 * 8, R11 * 8,
35 R12 * 8, R13 * 8, R14 * 8, R15 * 8,
09ec9b38 36 RIP * 8, EFLAGS * 8, CS * 8, SS * 8,
638c1580 37 DS * 8, ES * 8, FS * 8, GS * 8
58caa3dc
DJ
38};
39
09ec9b38
ML
40#define X86_64_NUM_GREGS (sizeof(x86_64_regmap)/sizeof(int))
41
58caa3dc
DJ
42static void
43x86_64_fill_gregset (void *buf)
44{
45 int i;
46
de220d0f 47 for (i = 0; i < X86_64_NUM_GREGS; i++)
2ec06d2e 48 collect_register (i, ((char *) buf) + x86_64_regmap[i]);
58caa3dc
DJ
49}
50
51static void
638c1580 52x86_64_store_gregset (const void *buf)
58caa3dc
DJ
53{
54 int i;
55
de220d0f 56 for (i = 0; i < X86_64_NUM_GREGS; i++)
2ec06d2e 57 supply_register (i, ((char *) buf) + x86_64_regmap[i]);
58caa3dc
DJ
58}
59
60static void
61x86_64_fill_fpregset (void *buf)
62{
63 i387_cache_to_fxsave (buf);
64}
65
66static void
638c1580 67x86_64_store_fpregset (const void *buf)
58caa3dc
DJ
68{
69 i387_fxsave_to_cache (buf);
70}
71
58caa3dc
DJ
72struct regset_info target_regsets[] = {
73 { PTRACE_GETREGS, PTRACE_SETREGS, sizeof (elf_gregset_t),
0d62e5e8 74 GENERAL_REGS,
58caa3dc
DJ
75 x86_64_fill_gregset, x86_64_store_gregset },
76 { PTRACE_GETFPREGS, PTRACE_SETFPREGS, sizeof (elf_fpregset_t),
0d62e5e8 77 FP_REGS,
58caa3dc 78 x86_64_fill_fpregset, x86_64_store_fpregset },
0d62e5e8 79 { 0, 0, -1, -1, NULL, NULL }
58caa3dc 80};
2ec06d2e
DJ
81
82struct linux_target_ops the_low_target = {
83 -1,
84 NULL,
85 NULL,
86 NULL,
87};