2011-02-11 Yao Qi <yao@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-sparc-low.c
CommitLineData
dfb64f85
DJ
1/* Low level interface to ptrace, for the remote server for GDB.
2 Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
7b6bb8da 3 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
dfb64f85
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 3 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, see <http://www.gnu.org/licenses/>. */
19
20#include "server.h"
21#include "linux-low.h"
22
23#include <sys/ptrace.h>
24
25#include "gdb_proc_service.h"
26
27/* The stack pointer is offset from the stack frame by a BIAS of 2047
28 (0x7ff) for 64-bit code. BIAS is likely to be defined on SPARC
29 hosts, so undefine it first. */
30#undef BIAS
31#define BIAS 2047
32
33#ifdef HAVE_SYS_REG_H
34#include <sys/reg.h>
35#endif
36
37#define INSN_SIZE 4
38
39#define SPARC_R_REGS_NUM 32
40#define SPARC_F_REGS_NUM 48
41#define SPARC_CONTROL_REGS_NUM 6
42
493e2a69
MS
43#define sparc_num_regs \
44 (SPARC_R_REGS_NUM + SPARC_F_REGS_NUM + SPARC_CONTROL_REGS_NUM)
dfb64f85
DJ
45
46/* Each offset is multiplied by 8, because of the register size.
47 These offsets apply to the buffer sent/filled by ptrace.
48 Additionally, the array elements order corresponds to the .dat file, and the
49 gdb's registers enumeration order. */
50
51static int sparc_regmap[] = {
52 /* These offsets correspond to GET/SETREGSET. */
493e2a69
MS
53 -1, 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, /* g0 .. g7 */
54 7*8, 8*8, 9*8, 10*8, 11*8, 12*8, 13*8, 14*8, /* o0 .. o5, sp, o7 */
55 -1, -1, -1, -1, -1, -1, -1, -1, /* l0 .. l7 */
56 -1, -1, -1, -1, -1, -1, -1, -1, /* i0 .. i5, fp, i7 */
dfb64f85
DJ
57
58 /* Floating point registers offsets correspond to GET/SETFPREGSET. */
59 0*4, 1*4, 2*4, 3*4, 4*4, 5*4, 6*4, 7*4, /* f0 .. f7 */
60 8*4, 9*4, 10*4, 11*4, 12*4, 13*4, 14*4, 15*4, /* f8 .. f15 */
61 16*4, 17*4, 18*4, 19*4, 20*4, 21*4, 22*4, 23*4, /* f16 .. f23 */
62 24*4, 25*4, 26*4, 27*4, 28*4, 29*4, 30*4, 31*4, /* f24 .. f31 */
63
64 /* F32 offset starts next to f31: 31*4+4 = 16 * 8. */
1b3f6016
PA
65 16*8, 17*8, 18*8, 19*8, 20*8, 21*8, 22*8, 23*8, /* f32 .. f46 */
66 24*8, 25*8, 26*8, 27*8, 28*8, 29*8, 30*8, 31*8, /* f48 .. f62 */
dfb64f85
DJ
67
68 17 *8, /* pc */
69 18 *8, /* npc */
70 16 *8, /* state */
493e2a69
MS
71 /* FSR offset also corresponds to GET/SETFPREGSET, ans is placed
72 next to f62. */
dfb64f85
DJ
73 32 *8, /* fsr */
74 -1, /* fprs */
75 /* Y register is 32-bits length, but gdb takes care of that. */
76 19 *8, /* y */
77
78};
79
80
81struct regs_range_t
82{
83 int regno_start;
84 int regno_end;
85};
86
87static const struct regs_range_t gregs_ranges[] = {
88 { 0, 31 }, /* g0 .. i7 */
89 { 80, 82 }, /* pc .. state */
90 { 84, 85 } /* fprs .. y */
91};
92
93#define N_GREGS_RANGES (sizeof (gregs_ranges) / sizeof (struct regs_range_t))
94
95static const struct regs_range_t fpregs_ranges[] = {
96 { 32, 79 }, /* f0 .. f62 */
97 { 83, 83 } /* fsr */
98};
99
100#define N_FPREGS_RANGES (sizeof (fpregs_ranges) / sizeof (struct regs_range_t))
101
102/* Defined in auto-generated file reg-sparc64.c. */
103void init_registers_sparc64 (void);
104
105static int
106sparc_cannot_store_register (int regno)
107{
108 return (regno >= sparc_num_regs || sparc_regmap[regno] == -1);
109}
110
111static int
112sparc_cannot_fetch_register (int regno)
113{
114 return (regno >= sparc_num_regs || sparc_regmap[regno] == -1);
115}
116
117static void
442ea881 118sparc_fill_gregset_to_stack (struct regcache *regcache, const void *buf)
dfb64f85
DJ
119{
120 int i;
121 CORE_ADDR addr = 0;
122 unsigned char tmp_reg_buf[8];
123 const int l0_regno = find_regno("l0");
124 const int i7_regno = l0_regno + 15;
125
126 /* These registers have to be stored in the stack. */
127 memcpy(&addr, ((char *) buf) + sparc_regmap[find_regno("sp")], sizeof(addr));
128
129 addr += BIAS;
1b3f6016 130
dfb64f85
DJ
131 for (i = l0_regno; i <= i7_regno; i++)
132 {
442ea881 133 collect_register (regcache, i, tmp_reg_buf);
dfb64f85
DJ
134 (*the_target->write_memory) (addr, tmp_reg_buf, sizeof(tmp_reg_buf));
135 addr += sizeof(tmp_reg_buf);
136 }
137}
138
139static void
442ea881 140sparc_fill_gregset (struct regcache *regcache, void *buf)
dfb64f85
DJ
141{
142 int i;
143 int range;
1b3f6016 144
dfb64f85 145 for (range = 0; range < N_GREGS_RANGES; range++)
493e2a69
MS
146 for (i = gregs_ranges[range].regno_start;
147 i <= gregs_ranges[range].regno_end; i++)
dfb64f85 148 if (sparc_regmap[i] != -1)
442ea881 149 collect_register (regcache, i, ((char *) buf) + sparc_regmap[i]);
1b3f6016 150
442ea881 151 sparc_fill_gregset_to_stack (regcache, buf);
dfb64f85
DJ
152}
153
154static void
442ea881 155sparc_fill_fpregset (struct regcache *regcache, void *buf)
dfb64f85
DJ
156{
157 int i;
158 int range;
1b3f6016 159
dfb64f85 160 for (range = 0; range < N_FPREGS_RANGES; range++)
493e2a69
MS
161 for (i = fpregs_ranges[range].regno_start;
162 i <= fpregs_ranges[range].regno_end; i++)
442ea881 163 collect_register (regcache, i, ((char *) buf) + sparc_regmap[i]);
1b3f6016 164
dfb64f85
DJ
165}
166
167static void
442ea881 168sparc_store_gregset_from_stack (struct regcache *regcache, const void *buf)
dfb64f85
DJ
169{
170 int i;
171 CORE_ADDR addr = 0;
172 unsigned char tmp_reg_buf[8];
173 const int l0_regno = find_regno("l0");
174 const int i7_regno = l0_regno + 15;
175
176 /* These registers have to be obtained from the stack. */
177 memcpy(&addr, ((char *) buf) + sparc_regmap[find_regno("sp")], sizeof(addr));
178
179 addr += BIAS;
1b3f6016 180
dfb64f85
DJ
181 for (i = l0_regno; i <= i7_regno; i++)
182 {
183 (*the_target->read_memory) (addr, tmp_reg_buf, sizeof(tmp_reg_buf));
442ea881 184 supply_register (regcache, i, tmp_reg_buf);
dfb64f85
DJ
185 addr += sizeof(tmp_reg_buf);
186 }
187}
188
189static void
442ea881 190sparc_store_gregset (struct regcache *regcache, const void *buf)
dfb64f85
DJ
191{
192 int i;
193 char zerobuf[8];
194 int range;
195
196 memset (zerobuf, 0, sizeof(zerobuf));
1b3f6016 197
dfb64f85 198 for (range = 0; range < N_GREGS_RANGES; range++)
493e2a69
MS
199 for (i = gregs_ranges[range].regno_start;
200 i <= gregs_ranges[range].regno_end; i++)
dfb64f85 201 if (sparc_regmap[i] != -1)
442ea881 202 supply_register (regcache, i, ((char *) buf) + sparc_regmap[i]);
dfb64f85 203 else
442ea881 204 supply_register (regcache, i, zerobuf);
1b3f6016 205
442ea881 206 sparc_store_gregset_from_stack (regcache, buf);
dfb64f85
DJ
207}
208
209static void
442ea881 210sparc_store_fpregset (struct regcache *regcache, const void *buf)
dfb64f85
DJ
211{
212 int i;
213 int range;
1b3f6016 214
dfb64f85 215 for (range = 0; range < N_FPREGS_RANGES; range++)
442ea881
PA
216 for (i = fpregs_ranges[range].regno_start;
217 i <= fpregs_ranges[range].regno_end;
218 i++)
219 supply_register (regcache, i, ((char *) buf) + sparc_regmap[i]);
dfb64f85
DJ
220}
221
222extern int debug_threads;
223
224static CORE_ADDR
442ea881 225sparc_get_pc (struct regcache *regcache)
dfb64f85 226{
442ea881
PA
227 unsigned long pc;
228 collect_register_by_name (regcache, "pc", &pc);
dfb64f85
DJ
229 if (debug_threads)
230 fprintf (stderr, "stop pc is %08lx\n", pc);
231 return pc;
232}
233
493e2a69
MS
234static const unsigned char sparc_breakpoint[INSN_SIZE] = {
235 0x91, 0xd0, 0x20, 0x01
236};
dfb64f85
DJ
237#define sparc_breakpoint_len INSN_SIZE
238
239
240static int
241sparc_breakpoint_at (CORE_ADDR where)
242{
243 unsigned char insn[INSN_SIZE];
244
245 (*the_target->read_memory) (where, (unsigned char *) insn, sizeof(insn));
1b3f6016 246
dfb64f85
DJ
247 if (memcmp(sparc_breakpoint, insn, sizeof(insn)) == 0)
248 return 1;
249
493e2a69
MS
250 /* If necessary, recognize more trap instructions here. GDB only
251 uses TRAP Always. */
dfb64f85
DJ
252
253 return 0;
254}
255
256/* We only place breakpoints in empty marker functions, and thread locking
257 is outside of the function. So rather than importing software single-step,
258 we can just run until exit. */
259static CORE_ADDR
442ea881 260sparc_reinsert_addr (void)
dfb64f85 261{
442ea881 262 struct regcache *regcache = get_thread_regcache (current_inferior, 1);
dfb64f85
DJ
263 CORE_ADDR lr;
264 /* O7 is the equivalent to the 'lr' of other archs. */
442ea881 265 collect_register_by_name (regcache, "o7", &lr);
dfb64f85
DJ
266 return lr;
267}
268
269
270struct regset_info target_regsets[] = {
1570b33e 271 { PTRACE_GETREGS, PTRACE_SETREGS, 0, sizeof (elf_gregset_t),
dfb64f85
DJ
272 GENERAL_REGS,
273 sparc_fill_gregset, sparc_store_gregset },
1570b33e 274 { PTRACE_GETFPREGS, PTRACE_SETFPREGS, 0, sizeof (fpregset_t),
dfb64f85
DJ
275 FP_REGS,
276 sparc_fill_fpregset, sparc_store_fpregset },
1570b33e 277 { 0, 0, 0, -1, -1, NULL, NULL }
dfb64f85
DJ
278};
279
280struct linux_target_ops the_low_target = {
281 init_registers_sparc64,
282 sparc_num_regs,
283 /* No regmap needs to be provided since this impl. doesn't use USRREGS. */
284 NULL,
285 sparc_cannot_fetch_register,
286 sparc_cannot_store_register,
287 sparc_get_pc,
288 /* No sparc_set_pc is needed. */
289 NULL,
290 (const unsigned char *) sparc_breakpoint,
291 sparc_breakpoint_len,
292 sparc_reinsert_addr,
293 0,
294 sparc_breakpoint_at,
295 NULL, NULL, NULL, NULL,
296 NULL, NULL
297};
This page took 0.257882 seconds and 4 git commands to generate.