1 /* GNU/Linux/i386 specific low level interface, for the remote server for GDB.
2 Copyright 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2004
3 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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. */
23 #include "linux-low.h"
26 /* Correct for all GNU/Linux targets (for quite some time). */
27 #define GDB_GREGSET_T elf_gregset_t
28 #define GDB_FPREGSET_T elf_fpregset_t
30 #ifndef HAVE_ELF_FPREGSET_T
31 /* Make sure we have said types. Not all platforms bring in <linux/elf.h>
32 via <sys/procfs.h>. */
33 #ifdef HAVE_LINUX_ELF_H
34 #include <linux/elf.h>
38 #include "../gdb_proc_service.h"
40 #include <sys/ptrace.h>
46 #ifndef PTRACE_GET_THREAD_AREA
47 #define PTRACE_GET_THREAD_AREA 25
50 /* This module only supports access to the general purpose registers. */
52 #define i386_num_regs 16
54 /* This stuff comes from i386-linux-nat.c. */
56 /* Mapping between the general-purpose registers in `struct user'
57 format and GDB's register array layout. */
58 static int i386_regmap[] =
60 EAX * 4, ECX * 4, EDX * 4, EBX * 4,
61 UESP * 4, EBP * 4, ESI * 4, EDI * 4,
62 EIP * 4, EFL * 4, CS * 4, SS * 4,
63 DS * 4, ES * 4, FS * 4, GS * 4
66 /* Called by libthread_db. */
69 ps_get_thread_area (const struct ps_prochandle *ph,
70 lwpid_t lwpid, int idx, void **base)
74 if (ptrace (PTRACE_GET_THREAD_AREA, lwpid,
75 (void *) idx, (unsigned long) &desc) < 0)
78 *(int *)base = desc[1];
83 i386_cannot_store_register (int regno)
85 return (regno >= i386_num_regs);
89 i386_cannot_fetch_register (int regno)
91 return (regno >= i386_num_regs);
95 #ifdef HAVE_LINUX_REGSETS
96 #include <sys/procfs.h>
97 #include <sys/ptrace.h>
100 i386_fill_gregset (void *buf)
104 for (i = 0; i < i386_num_regs; i++)
105 collect_register (i, ((char *) buf) + i386_regmap[i]);
107 collect_register_by_name ("orig_eax", ((char *) buf) + ORIG_EAX * 4);
111 i386_store_gregset (const void *buf)
115 for (i = 0; i < i386_num_regs; i++)
116 supply_register (i, ((char *) buf) + i386_regmap[i]);
118 supply_register_by_name ("orig_eax", ((char *) buf) + ORIG_EAX * 4);
122 i386_fill_fpregset (void *buf)
124 i387_cache_to_fsave (buf);
128 i386_store_fpregset (const void *buf)
130 i387_fsave_to_cache (buf);
134 i386_fill_fpxregset (void *buf)
136 i387_cache_to_fxsave (buf);
140 i386_store_fpxregset (const void *buf)
142 i387_fxsave_to_cache (buf);
146 struct regset_info target_regsets[] = {
147 { PTRACE_GETREGS, PTRACE_SETREGS, sizeof (elf_gregset_t),
149 i386_fill_gregset, i386_store_gregset },
150 #ifdef HAVE_PTRACE_GETFPXREGS
151 { PTRACE_GETFPXREGS, PTRACE_SETFPXREGS, sizeof (elf_fpxregset_t),
153 i386_fill_fpxregset, i386_store_fpxregset },
155 { PTRACE_GETFPREGS, PTRACE_SETFPREGS, sizeof (elf_fpregset_t),
157 i386_fill_fpregset, i386_store_fpregset },
158 { 0, 0, -1, -1, NULL, NULL }
161 #endif /* HAVE_LINUX_REGSETS */
163 static const char i386_breakpoint[] = { 0xCC };
164 #define i386_breakpoint_len 1
166 extern int debug_threads;
173 collect_register_by_name ("eip", &pc);
176 fprintf (stderr, "stop pc (before any decrement) is %08lx\n", pc);
181 i386_set_pc (CORE_ADDR newpc)
184 fprintf (stderr, "set pc to %08lx\n", (long) newpc);
185 supply_register_by_name ("eip", &newpc);
189 i386_breakpoint_at (CORE_ADDR pc)
193 read_inferior_memory (pc, &c, 1);
200 struct linux_target_ops the_low_target = {
203 i386_cannot_fetch_register,
204 i386_cannot_store_register,