gdbserver/linux-low: turn 'regs_info' into a method
[deliverable/binutils-gdb.git] / gdbserver / linux-crisv32-low.cc
CommitLineData
45b134e5 1/* GNU/Linux/CRIS specific low level interface, for the remote server for GDB.
b811d2c2 2 Copyright (C) 1995-2020 Free Software Foundation, Inc.
45b134e5
OF
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
45b134e5
OF
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
45b134e5
OF
18
19#include "server.h"
20#include "linux-low.h"
5826e159 21#include "nat/gdb_ptrace.h"
45b134e5 22
ef0478f6
TBA
23/* Linux target op definitions for the CRIS architecture. */
24
25class crisv32_target : public linux_process_target
26{
27public:
28
aa8d21c9
TBA
29 const regs_info *get_regs_info () override;
30
797bcff5
TBA
31protected:
32
33 void low_arch_setup () override;
ef0478f6
TBA
34};
35
36/* The singleton target ops object. */
37
38static crisv32_target the_crisv32_target;
39
d05b4ac3
UW
40/* Defined in auto-generated file reg-crisv32.c. */
41void init_registers_crisv32 (void);
3aee8918 42extern const struct target_desc *tdesc_crisv32;
d05b4ac3 43
45b134e5
OF
44/* CRISv32 */
45#define cris_num_regs 49
46
8eb3d7b6
RW
47#ifndef PTRACE_GET_THREAD_AREA
48#define PTRACE_GET_THREAD_AREA 25
49#endif
50
45b134e5
OF
51/* Note: Ignoring USP (having the stack pointer in two locations causes trouble
52 without any significant gain). */
53
54/* Locations need to match <include/asm/arch/ptrace.h>. */
55static int cris_regmap[] = {
56 1*4, 2*4, 3*4, 4*4,
57 5*4, 6*4, 7*4, 8*4,
58 9*4, 10*4, 11*4, 12*4,
59 13*4, 14*4, 24*4, 15*4,
60
61 -1, -1, -1, 16*4,
62 -1, 22*4, 23*4, 17*4,
63 -1, -1, 21*4, 20*4,
64 -1, 19*4, -1, 18*4,
65
66 25*4,
67
1b3f6016 68 26*4, -1, -1, 29*4,
45b134e5
OF
69 30*4, 31*4, 32*4, 33*4,
70 34*4, 35*4, 36*4, 37*4,
71 38*4, 39*4, 40*4, -1
1b3f6016 72
45b134e5
OF
73};
74
45b134e5
OF
75static const unsigned short cris_breakpoint = 0xe938;
76#define cris_breakpoint_len 2
77
dd373349
AT
78/* Implementation of linux_target_ops method "sw_breakpoint_from_kind". */
79
80static const gdb_byte *
81cris_sw_breakpoint_from_kind (int kind, int *size)
82{
83 *size = cris_breakpoint_len;
84 return (const gdb_byte *) &cris_breakpoint;
85}
86
45b134e5
OF
87static int
88cris_breakpoint_at (CORE_ADDR where)
89{
90 unsigned short insn;
91
52405d85
TBA
92 the_target->read_memory (where, (unsigned char *) &insn,
93 cris_breakpoint_len);
45b134e5
OF
94 if (insn == cris_breakpoint)
95 return 1;
96
97 /* If necessary, recognize more trap instructions here. GDB only uses the
98 one. */
99 return 0;
100}
101
45b134e5 102static void
442ea881
PA
103cris_write_data_breakpoint (struct regcache *regcache,
104 int bp, unsigned long start, unsigned long end)
45b134e5
OF
105{
106 switch (bp)
107 {
108 case 0:
442ea881
PA
109 supply_register_by_name (regcache, "s3", &start);
110 supply_register_by_name (regcache, "s4", &end);
45b134e5
OF
111 break;
112 case 1:
442ea881
PA
113 supply_register_by_name (regcache, "s5", &start);
114 supply_register_by_name (regcache, "s6", &end);
45b134e5
OF
115 break;
116 case 2:
442ea881
PA
117 supply_register_by_name (regcache, "s7", &start);
118 supply_register_by_name (regcache, "s8", &end);
45b134e5
OF
119 break;
120 case 3:
442ea881
PA
121 supply_register_by_name (regcache, "s9", &start);
122 supply_register_by_name (regcache, "s10", &end);
45b134e5
OF
123 break;
124 case 4:
442ea881
PA
125 supply_register_by_name (regcache, "s11", &start);
126 supply_register_by_name (regcache, "s12", &end);
45b134e5
OF
127 break;
128 case 5:
442ea881
PA
129 supply_register_by_name (regcache, "s13", &start);
130 supply_register_by_name (regcache, "s14", &end);
45b134e5
OF
131 break;
132 }
133}
134
135static int
802e8e6d
PA
136cris_supports_z_point_type (char z_type)
137{
138 switch (z_type)
139 {
140 case Z_PACKET_WRITE_WP:
141 case Z_PACKET_READ_WP:
142 case Z_PACKET_ACCESS_WP:
143 return 1;
144 default:
145 return 0;
146 }
147}
148
149static int
150cris_insert_point (enum raw_bkpt_type type, CORE_ADDR addr,
151 int len, struct raw_breakpoint *bp)
45b134e5
OF
152{
153 int bp;
154 unsigned long bp_ctrl;
155 unsigned long start, end;
156 unsigned long ccs;
442ea881 157 struct regcache *regcache;
1b3f6016 158
0bfdf32f 159 regcache = get_thread_regcache (current_thread, 1);
442ea881 160
45b134e5
OF
161 /* Read watchpoints are set as access watchpoints, because of GDB's
162 inability to deal with pure read watchpoints. */
802e8e6d
PA
163 if (type == raw_bkpt_type_read_wp)
164 type = raw_bkpt_type_access_wp;
45b134e5
OF
165
166 /* Get the configuration register. */
442ea881 167 collect_register_by_name (regcache, "s0", &bp_ctrl);
45b134e5
OF
168
169 /* The watchpoint allocation scheme is the simplest possible.
170 For example, if a region is watched for read and
171 a write watch is requested, a new watchpoint will
172 be used. Also, if a watch for a region that is already
173 covered by one or more existing watchpoints, a new
174 watchpoint will be used. */
1b3f6016 175
45b134e5
OF
176 /* First, find a free data watchpoint. */
177 for (bp = 0; bp < 6; bp++)
178 {
179 /* Each data watchpoint's control registers occupy 2 bits
180 (hence the 3), starting at bit 2 for D0 (hence the 2)
181 with 4 bits between for each watchpoint (yes, the 4). */
1b3f6016 182 if (!(bp_ctrl & (0x3 << (2 + (bp * 4)))))
45b134e5
OF
183 break;
184 }
1b3f6016 185
45b134e5
OF
186 if (bp > 5)
187 {
188 /* We're out of watchpoints. */
189 return -1;
190 }
191
192 /* Configure the control register first. */
802e8e6d 193 if (type == raw_bkpt_type_read_wp || type == raw_bkpt_type_access_wp)
45b134e5
OF
194 {
195 /* Trigger on read. */
196 bp_ctrl |= (1 << (2 + bp * 4));
197 }
802e8e6d 198 if (type == raw_bkpt_type_write_wp || type == raw_bkpt_type_access_wp)
45b134e5
OF
199 {
200 /* Trigger on write. */
201 bp_ctrl |= (2 << (2 + bp * 4));
202 }
1b3f6016 203
45b134e5 204 /* Setup the configuration register. */
442ea881 205 supply_register_by_name (regcache, "s0", &bp_ctrl);
1b3f6016 206
45b134e5
OF
207 /* Setup the range. */
208 start = addr;
209 end = addr + len - 1;
210
211 /* Configure the watchpoint register. */
442ea881 212 cris_write_data_breakpoint (regcache, bp, start, end);
45b134e5 213
442ea881 214 collect_register_by_name (regcache, "ccs", &ccs);
45b134e5
OF
215 /* Set the S1 flag to enable watchpoints. */
216 ccs |= (1 << 19);
442ea881 217 supply_register_by_name (regcache, "ccs", &ccs);
45b134e5
OF
218
219 return 0;
220}
221
222static int
802e8e6d
PA
223cris_remove_point (enum raw_bkpt_type type, CORE_ADDR addr, int len,
224 struct raw_breakpoint *bp)
45b134e5
OF
225{
226 int bp;
227 unsigned long bp_ctrl;
228 unsigned long start, end;
442ea881 229 struct regcache *regcache;
07c04788 230 unsigned long bp_d_regs[12];
1b3f6016 231
0bfdf32f 232 regcache = get_thread_regcache (current_thread, 1);
442ea881 233
45b134e5
OF
234 /* Read watchpoints are set as access watchpoints, because of GDB's
235 inability to deal with pure read watchpoints. */
802e8e6d
PA
236 if (type == raw_bkpt_type_read_wp)
237 type = raw_bkpt_type_access_wp;
1b3f6016 238
45b134e5 239 /* Get the configuration register. */
442ea881 240 collect_register_by_name (regcache, "s0", &bp_ctrl);
45b134e5
OF
241
242 /* Try to find a watchpoint that is configured for the
243 specified range, then check that read/write also matches. */
1b3f6016 244
45b134e5
OF
245 /* Ugly pointer arithmetic, since I cannot rely on a
246 single switch (addr) as there may be several watchpoints with
247 the same start address for example. */
248
45b134e5 249 /* Get all range registers to simplify search. */
442ea881
PA
250 collect_register_by_name (regcache, "s3", &bp_d_regs[0]);
251 collect_register_by_name (regcache, "s4", &bp_d_regs[1]);
252 collect_register_by_name (regcache, "s5", &bp_d_regs[2]);
253 collect_register_by_name (regcache, "s6", &bp_d_regs[3]);
254 collect_register_by_name (regcache, "s7", &bp_d_regs[4]);
255 collect_register_by_name (regcache, "s8", &bp_d_regs[5]);
256 collect_register_by_name (regcache, "s9", &bp_d_regs[6]);
257 collect_register_by_name (regcache, "s10", &bp_d_regs[7]);
258 collect_register_by_name (regcache, "s11", &bp_d_regs[8]);
259 collect_register_by_name (regcache, "s12", &bp_d_regs[9]);
260 collect_register_by_name (regcache, "s13", &bp_d_regs[10]);
261 collect_register_by_name (regcache, "s14", &bp_d_regs[11]);
45b134e5 262
1b3f6016 263 for (bp = 0; bp < 6; bp++)
45b134e5 264 {
1b3f6016 265 if (bp_d_regs[bp * 2] == addr
45b134e5
OF
266 && bp_d_regs[bp * 2 + 1] == (addr + len - 1)) {
267 /* Matching range. */
268 int bitpos = 2 + bp * 4;
269 int rw_bits;
1b3f6016 270
45b134e5
OF
271 /* Read/write bits for this BP. */
272 rw_bits = (bp_ctrl & (0x3 << bitpos)) >> bitpos;
1b3f6016 273
802e8e6d
PA
274 if ((type == raw_bkpt_type_read_wp && rw_bits == 0x1)
275 || (type == raw_bkpt_type_write_wp && rw_bits == 0x2)
276 || (type == raw_bkpt_type_access_wp && rw_bits == 0x3))
45b134e5
OF
277 {
278 /* Read/write matched. */
279 break;
280 }
281 }
282 }
1b3f6016 283
45b134e5
OF
284 if (bp > 5)
285 {
286 /* No watchpoint matched. */
287 return -1;
288 }
1b3f6016 289
45b134e5
OF
290 /* Found a matching watchpoint. Now, deconfigure it by
291 both disabling read/write in bp_ctrl and zeroing its
292 start/end addresses. */
293 bp_ctrl &= ~(3 << (2 + (bp * 4)));
294 /* Setup the configuration register. */
442ea881 295 supply_register_by_name (regcache, "s0", &bp_ctrl);
45b134e5
OF
296
297 start = end = 0;
298 /* Configure the watchpoint register. */
442ea881 299 cris_write_data_breakpoint (regcache, bp, start, end);
45b134e5
OF
300
301 /* Note that we don't clear the S1 flag here. It's done when continuing. */
302 return 0;
303}
304
305static int
306cris_stopped_by_watchpoint (void)
307{
308 unsigned long exs;
0bfdf32f 309 struct regcache *regcache = get_thread_regcache (current_thread, 1);
45b134e5 310
07c04788 311 collect_register_by_name (regcache, "exs", &exs);
45b134e5
OF
312
313 return (((exs & 0xff00) >> 8) == 0xc);
314}
315
316static CORE_ADDR
317cris_stopped_data_address (void)
318{
319 unsigned long eda;
0bfdf32f 320 struct regcache *regcache = get_thread_regcache (current_thread, 1);
45b134e5 321
07c04788 322 collect_register_by_name (regcache, "eda", &eda);
45b134e5
OF
323
324 /* FIXME: Possibly adjust to match watched range. */
325 return eda;
326}
327
8eb3d7b6 328ps_err_e
754653a7 329ps_get_thread_area (struct ps_prochandle *ph,
8eb3d7b6
RW
330 lwpid_t lwpid, int idx, void **base)
331{
332 if (ptrace (PTRACE_GET_THREAD_AREA, lwpid, NULL, base) != 0)
333 return PS_ERR;
334
335 /* IDX is the bias from the thread pointer to the beginning of the
336 thread descriptor. It has to be subtracted due to implementation
337 quirks in libthread_db. */
338 *base = (void *) ((char *) *base - idx);
339 return PS_OK;
340}
341
45b134e5 342static void
07c04788 343cris_fill_gregset (struct regcache *regcache, void *buf)
45b134e5
OF
344{
345 int i;
346
347 for (i = 0; i < cris_num_regs; i++)
348 {
349 if (cris_regmap[i] != -1)
07c04788 350 collect_register (regcache, i, ((char *) buf) + cris_regmap[i]);
45b134e5
OF
351 }
352}
353
354static void
07c04788 355cris_store_gregset (struct regcache *regcache, const void *buf)
45b134e5
OF
356{
357 int i;
358
359 for (i = 0; i < cris_num_regs; i++)
360 {
361 if (cris_regmap[i] != -1)
07c04788 362 supply_register (regcache, i, ((char *) buf) + cris_regmap[i]);
45b134e5
OF
363 }
364}
365
797bcff5
TBA
366void
367crisv32_target::low_arch_setup ()
3aee8918
PA
368{
369 current_process ()->tdesc = tdesc_crisv32;
370}
371
7d00775e
AT
372/* Support for hardware single step. */
373
374static int
375cris_supports_hardware_single_step (void)
376{
377 return 1;
378}
379
3aee8918 380static struct regset_info cris_regsets[] = {
07c04788 381 { PTRACE_GETREGS, PTRACE_SETREGS, 0, cris_num_regs * 4,
45b134e5 382 GENERAL_REGS, cris_fill_gregset, cris_store_gregset },
50bc912a 383 NULL_REGSET
45b134e5
OF
384};
385
3aee8918
PA
386
387static struct regsets_info cris_regsets_info =
388 {
389 cris_regsets, /* regsets */
390 0, /* num_regsets */
391 NULL, /* disabled_regsets */
392 };
393
394static struct usrregs_info cris_usrregs_info =
395 {
396 cris_num_regs,
397 cris_regmap,
398 };
399
aa8d21c9 400static struct regs_info myregs_info =
3aee8918
PA
401 {
402 NULL, /* regset_bitmap */
403 &cris_usrregs_info,
404 &cris_regsets_info
405 };
406
aa8d21c9
TBA
407const regs_info *
408crisv32_target::get_regs_info ()
3aee8918 409{
aa8d21c9 410 return &myregs_info;
3aee8918
PA
411}
412
45b134e5 413struct linux_target_ops the_low_target = {
45b134e5 414 NULL,
1faeff08 415 NULL,
c14dfd32 416 NULL, /* fetch_register */
276d4552
YQ
417 linux_get_pc_32bit,
418 linux_set_pc_32bit,
dd373349
AT
419 NULL, /* breakpoint_kind_from_pc */
420 cris_sw_breakpoint_from_kind,
fa5308bd 421 NULL, /* get_next_pcs */
45b134e5
OF
422 0,
423 cris_breakpoint_at,
802e8e6d 424 cris_supports_z_point_type,
d993e290
PA
425 cris_insert_point,
426 cris_remove_point,
45b134e5
OF
427 cris_stopped_by_watchpoint,
428 cris_stopped_data_address,
7d00775e
AT
429 NULL, /* collect_ptrace_register */
430 NULL, /* supply_ptrace_register */
431 NULL, /* siginfo_fixup */
432 NULL, /* new_process */
04ec7890 433 NULL, /* delete_process */
7d00775e 434 NULL, /* new_thread */
466eecee 435 NULL, /* delete_thread */
7d00775e
AT
436 NULL, /* new_fork */
437 NULL, /* prepare_to_resume */
438 NULL, /* process_qsupported */
439 NULL, /* supports_tracepoints */
440 NULL, /* get_thread_area */
441 NULL, /* install_fast_tracepoint_jump_pad */
442 NULL, /* emit_ops */
443 NULL, /* get_min_fast_tracepoint_insn_len */
444 NULL, /* supports_range_stepping */
445 NULL, /* breakpoint_kind_from_current_state */
446 cris_supports_hardware_single_step,
45b134e5 447};
3aee8918 448
ef0478f6
TBA
449/* The linux target ops object. */
450
451linux_process_target *the_linux_target = &the_crisv32_target;
452
3aee8918
PA
453void
454initialize_low_arch (void)
455{
eddddb9d 456 init_registers_crisv32 ();
3aee8918
PA
457
458 initialize_regsets_info (&cris_regsets_info);
459}
This page took 2.000114 seconds and 4 git commands to generate.