gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdbserver / linux-tic6x-low.cc
CommitLineData
58dbd541
YQ
1/* Target dependent code for GDB on TI C6x systems.
2
b811d2c2 3 Copyright (C) 2010-2020 Free Software Foundation, Inc.
58dbd541
YQ
4 Contributed by Andrew Jenner <andrew@codesourcery.com>
5 Contributed by Yao Qi <yao@codesourcery.com>
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22#include "server.h"
23#include "linux-low.h"
506fe5f4
YQ
24#include "arch/tic6x.h"
25#include "tdesc.h"
58dbd541 26
5826e159 27#include "nat/gdb_ptrace.h"
58dbd541
YQ
28#include <endian.h>
29
30#include "gdb_proc_service.h"
31
32#ifndef PTRACE_GET_THREAD_AREA
33#define PTRACE_GET_THREAD_AREA 25
34#endif
35
36/* There are at most 69 registers accessible in ptrace. */
37#define TIC6X_NUM_REGS 69
38
39#include <asm/ptrace.h>
40
ef0478f6
TBA
41/* Linux target op definitions for the TI C6x architecture. */
42
43class tic6x_target : public linux_process_target
44{
45public:
46
aa8d21c9
TBA
47 const regs_info *get_regs_info () override;
48
3ca4edb6
TBA
49 const gdb_byte *sw_breakpoint_from_kind (int kind, int *size) override;
50
797bcff5
TBA
51protected:
52
53 void low_arch_setup () override;
daca57a7
TBA
54
55 bool low_cannot_fetch_register (int regno) override;
56
57 bool low_cannot_store_register (int regno) override;
bf9ae9d8
TBA
58
59 bool low_supports_breakpoints () override;
60
61 CORE_ADDR low_get_pc (regcache *regcache) override;
62
63 void low_set_pc (regcache *regcache, CORE_ADDR newpc) override;
d7146cda
TBA
64
65 bool low_breakpoint_at (CORE_ADDR pc) override;
ef0478f6
TBA
66};
67
68/* The singleton target ops object. */
69
70static tic6x_target the_tic6x_target;
71
58dbd541
YQ
72/* Defined in auto-generated file tic6x-c64xp-linux.c. */
73void init_registers_tic6x_c64xp_linux (void);
3aee8918
PA
74extern const struct target_desc *tdesc_tic6x_c64xp_linux;
75
58dbd541
YQ
76/* Defined in auto-generated file tic6x-c64x-linux.c. */
77void init_registers_tic6x_c64x_linux (void);
3aee8918
PA
78extern const struct target_desc *tdesc_tic6x_c64x_linux;
79
58dbd541
YQ
80/* Defined in auto-generated file tic62x-c6xp-linux.c. */
81void init_registers_tic6x_c62x_linux (void);
3aee8918 82extern const struct target_desc *tdesc_tic6x_c62x_linux;
58dbd541
YQ
83
84union tic6x_register
85{
86 unsigned char buf[4];
87
88 int reg32;
89};
90
91/* Return the ptrace ``address'' of register REGNO. */
92
93#if __BYTE_ORDER == __BIG_ENDIAN
94static int tic6x_regmap_c64xp[] = {
95 /* A0 - A15 */
96 53, 52, 55, 54, 57, 56, 59, 58,
97 61, 60, 63, 62, 65, 64, 67, 66,
98 /* B0 - B15 */
99 23, 22, 25, 24, 27, 26, 29, 28,
100 31, 30, 33, 32, 35, 34, 69, 68,
101 /* CSR PC */
102 5, 4,
103 /* A16 - A31 */
104 37, 36, 39, 38, 41, 40, 43, 42,
105 45, 44, 47, 46, 49, 48, 51, 50,
106 /* B16 - B31 */
107 7, 6, 9, 8, 11, 10, 13, 12,
108 15, 14, 17, 16, 19, 18, 21, 20,
109 /* TSR, ILC, RILC */
110 1, 2, 3
111};
112
113static int tic6x_regmap_c64x[] = {
114 /* A0 - A15 */
115 51, 50, 53, 52, 55, 54, 57, 56,
116 59, 58, 61, 60, 63, 62, 65, 64,
117 /* B0 - B15 */
118 21, 20, 23, 22, 25, 24, 27, 26,
119 29, 28, 31, 30, 33, 32, 67, 66,
120 /* CSR PC */
121 3, 2,
122 /* A16 - A31 */
123 35, 34, 37, 36, 39, 38, 41, 40,
124 43, 42, 45, 44, 47, 46, 49, 48,
125 /* B16 - B31 */
126 5, 4, 7, 6, 9, 8, 11, 10,
127 13, 12, 15, 14, 17, 16, 19, 18,
128 -1, -1, -1
129};
130
131static int tic6x_regmap_c62x[] = {
132 /* A0 - A15 */
133 19, 18, 21, 20, 23, 22, 25, 24,
134 27, 26, 29, 28, 31, 30, 33, 32,
135 /* B0 - B15 */
136 5, 4, 7, 6, 9, 8, 11, 10,
137 13, 12, 15, 14, 17, 16, 35, 34,
138 /* CSR, PC */
139 3, 2,
140 -1, -1, -1, -1, -1, -1, -1, -1,
141 -1, -1, -1, -1, -1, -1, -1, -1,
142 -1, -1, -1, -1, -1, -1, -1, -1,
143 -1, -1, -1, -1, -1, -1, -1, -1,
144 -1, -1, -1
145};
146
147#else
148static int tic6x_regmap_c64xp[] = {
149 /* A0 - A15 */
150 52, 53, 54, 55, 56, 57, 58, 59,
151 60, 61, 62, 63, 64, 65, 66, 67,
152 /* B0 - B15 */
153 22, 23, 24, 25, 26, 27, 28, 29,
154 30, 31, 32, 33, 34, 35, 68, 69,
155 /* CSR PC */
156 4, 5,
157 /* A16 - A31 */
158 36, 37, 38, 39, 40, 41, 42, 43,
159 44, 45, 46, 47, 48, 49, 50, 51,
160 /* B16 -B31 */
161 6, 7, 8, 9, 10, 11, 12, 13,
162 14, 15, 16, 17, 18, 19, 20, 31,
163 /* TSR, ILC, RILC */
164 0, 3, 2
165};
166
167static int tic6x_regmap_c64x[] = {
168 /* A0 - A15 */
169 50, 51, 52, 53, 54, 55, 56, 57,
170 58, 59, 60, 61, 62, 63, 64, 65,
171 /* B0 - B15 */
172 20, 21, 22, 23, 24, 25, 26, 27,
173 28, 29, 30, 31, 32, 33, 66, 67,
174 /* CSR PC */
175 2, 3,
176 /* A16 - A31 */
177 34, 35, 36, 37, 38, 39, 40, 41,
178 42, 43, 44, 45, 46, 47, 48, 49,
179 /* B16 - B31 */
180 4, 5, 6, 7, 8, 9, 10, 11,
181 12, 13, 14, 15, 16, 17, 18, 19,
182 -1, -1, -1
183};
184
185static int tic6x_regmap_c62x[] = {
186 /* A0 - A15 */
187 18, 19, 20, 21, 22, 23, 24, 25,
188 26, 27, 28, 29, 30, 31, 32, 33,
189 /* B0 - B15 */
190 4, 5, 6, 7, 8, 9, 10, 11,
191 12, 13, 14, 15, 16, 17, 34, 35,
192 /* CSR PC */
193 2, 3,
194 -1, -1, -1, -1, -1, -1, -1, -1,
195 -1, -1, -1, -1, -1, -1, -1, -1,
196 -1, -1, -1, -1, -1, -1, -1, -1,
197 -1, -1, -1, -1, -1, -1, -1, -1,
198 -1, -1, -1
199};
200
201#endif
202
58dbd541
YQ
203static int *tic6x_regmap;
204static unsigned int tic6x_breakpoint;
dd373349
AT
205#define tic6x_breakpoint_len 4
206
3ca4edb6 207/* Implementation of target ops method "sw_breakpoint_from_kind". */
dd373349 208
3ca4edb6
TBA
209const gdb_byte *
210tic6x_target::sw_breakpoint_from_kind (int kind, int *size)
dd373349
AT
211{
212 *size = tic6x_breakpoint_len;
213 return (const gdb_byte *) &tic6x_breakpoint;
214}
58dbd541 215
3491a34c
YQ
216static struct usrregs_info tic6x_usrregs_info =
217 {
218 TIC6X_NUM_REGS,
219 NULL, /* Set in tic6x_read_description. */
220 };
3aee8918
PA
221
222static const struct target_desc *
506fe5f4 223tic6x_read_description (enum c6x_feature feature)
58dbd541 224{
506fe5f4
YQ
225 static target_desc *tdescs[C6X_LAST] = { };
226 struct target_desc **tdesc = &tdescs[feature];
58dbd541 227
506fe5f4 228 if (*tdesc == NULL)
58dbd541 229 {
506fe5f4 230 *tdesc = tic6x_create_target_description (feature);
506fe5f4 231 static const char *expedite_regs[] = { "A15", "PC", NULL };
190852c8 232 init_target_desc (*tdesc, expedite_regs);
58dbd541 233 }
506fe5f4
YQ
234
235 return *tdesc;
58dbd541
YQ
236}
237
daca57a7
TBA
238bool
239tic6x_target::low_cannot_fetch_register (int regno)
58dbd541
YQ
240{
241 return (tic6x_regmap[regno] == -1);
242}
243
daca57a7
TBA
244bool
245tic6x_target::low_cannot_store_register (int regno)
58dbd541
YQ
246{
247 return (tic6x_regmap[regno] == -1);
248}
249
bf9ae9d8
TBA
250bool
251tic6x_target::low_supports_breakpoints ()
252{
253 return true;
254}
255
256CORE_ADDR
257tic6x_target::low_get_pc (regcache *regcache)
58dbd541
YQ
258{
259 union tic6x_register pc;
260
261 collect_register_by_name (regcache, "PC", pc.buf);
262 return pc.reg32;
263}
264
bf9ae9d8
TBA
265void
266tic6x_target::low_set_pc (regcache *regcache, CORE_ADDR pc)
58dbd541
YQ
267{
268 union tic6x_register newpc;
269
270 newpc.reg32 = pc;
271 supply_register_by_name (regcache, "PC", newpc.buf);
272}
273
d7146cda
TBA
274bool
275tic6x_target::low_breakpoint_at (CORE_ADDR where)
58dbd541
YQ
276{
277 unsigned int insn;
278
d7146cda 279 read_memory (where, (unsigned char *) &insn, 4);
58dbd541 280 if (insn == tic6x_breakpoint)
d7146cda 281 return true;
58dbd541
YQ
282
283 /* If necessary, recognize more trap instructions here. GDB only uses the
284 one. */
d7146cda 285 return false;
58dbd541
YQ
286}
287
288/* Fetch the thread-local storage pointer for libthread_db. */
289
290ps_err_e
754653a7 291ps_get_thread_area (struct ps_prochandle *ph,
58dbd541
YQ
292 lwpid_t lwpid, int idx, void **base)
293{
294 if (ptrace (PTRACE_GET_THREAD_AREA, lwpid, NULL, base) != 0)
295 return PS_ERR;
296
297 /* IDX is the bias from the thread pointer to the beginning of the
298 thread descriptor. It has to be subtracted due to implementation
299 quirks in libthread_db. */
300 *base = (void *) ((char *) *base - idx);
301
302 return PS_OK;
303}
304
305static void
306tic6x_collect_register (struct regcache *regcache, int regno,
307 union tic6x_register *reg)
308{
309 union tic6x_register tmp_reg;
310
311 collect_register (regcache, regno, &tmp_reg.reg32);
312 reg->reg32 = tmp_reg.reg32;
313}
314
315static void
316tic6x_supply_register (struct regcache *regcache, int regno,
317 const union tic6x_register *reg)
318{
319 int offset = 0;
320
321 supply_register (regcache, regno, reg->buf + offset);
322}
323
324static void
325tic6x_fill_gregset (struct regcache *regcache, void *buf)
326{
3491a34c 327 auto regset = static_cast<union tic6x_register *> (buf);
58dbd541
YQ
328 int i;
329
330 for (i = 0; i < TIC6X_NUM_REGS; i++)
331 if (tic6x_regmap[i] != -1)
332 tic6x_collect_register (regcache, i, regset + tic6x_regmap[i]);
333}
334
335static void
336tic6x_store_gregset (struct regcache *regcache, const void *buf)
337{
3491a34c 338 const auto regset = static_cast<const union tic6x_register *> (buf);
58dbd541
YQ
339 int i;
340
341 for (i = 0; i < TIC6X_NUM_REGS; i++)
342 if (tic6x_regmap[i] != -1)
343 tic6x_supply_register (regcache, i, regset + tic6x_regmap[i]);
344}
345
3aee8918 346static struct regset_info tic6x_regsets[] = {
58dbd541
YQ
347 { PTRACE_GETREGS, PTRACE_SETREGS, 0, TIC6X_NUM_REGS * 4, GENERAL_REGS,
348 tic6x_fill_gregset, tic6x_store_gregset },
50bc912a 349 NULL_REGSET
58dbd541
YQ
350};
351
797bcff5
TBA
352void
353tic6x_target::low_arch_setup ()
3aee8918 354{
506fe5f4
YQ
355 register unsigned int csr asm ("B2");
356 unsigned int cpuid;
357 enum c6x_feature feature = C6X_CORE;
358
359 /* Determine the CPU we're running on to find the register order. */
360 __asm__ ("MVC .S2 CSR,%0" : "=r" (csr) :);
361 cpuid = csr >> 24;
362 switch (cpuid)
363 {
364 case 0x00: /* C62x */
365 case 0x02: /* C67x */
366 tic6x_regmap = tic6x_regmap_c62x;
367 tic6x_breakpoint = 0x0000a122; /* BNOP .S2 0,5 */
368 feature = C6X_CORE;
369 break;
370 case 0x03: /* C67x+ */
371 tic6x_regmap = tic6x_regmap_c64x;
372 tic6x_breakpoint = 0x0000a122; /* BNOP .S2 0,5 */
373 feature = C6X_GP;
374 break;
375 case 0x0c: /* C64x */
376 tic6x_regmap = tic6x_regmap_c64x;
377 tic6x_breakpoint = 0x0000a122; /* BNOP .S2 0,5 */
378 feature = C6X_GP;
379 break;
380 case 0x10: /* C64x+ */
381 case 0x14: /* C674x */
382 case 0x15: /* C66x */
383 tic6x_regmap = tic6x_regmap_c64xp;
384 tic6x_breakpoint = 0x56454314; /* illegal opcode */
385 feature = C6X_C6XP;
386 break;
387 default:
388 error ("Unknown CPU ID 0x%02x", cpuid);
389 }
390 tic6x_usrregs_info.regmap = tic6x_regmap;
391
392 current_process ()->tdesc = tic6x_read_description (feature);
3aee8918
PA
393}
394
395static struct regsets_info tic6x_regsets_info =
396 {
397 tic6x_regsets, /* regsets */
398 0, /* num_regsets */
399 NULL, /* disabled_regsets */
400 };
401
aa8d21c9 402static struct regs_info myregs_info =
3aee8918
PA
403 {
404 NULL, /* regset_bitmap */
405 &tic6x_usrregs_info,
406 &tic6x_regsets_info
407 };
408
aa8d21c9
TBA
409const regs_info *
410tic6x_target::get_regs_info ()
3aee8918 411{
aa8d21c9 412 return &myregs_info;
3aee8918
PA
413}
414
506fe5f4 415#if GDB_SELF_TEST
268a13a5 416#include "gdbsupport/selftest.h"
506fe5f4
YQ
417
418namespace selftests {
419namespace tdesc {
420static void
421tic6x_tdesc_test ()
422{
423 SELF_CHECK (*tdesc_tic6x_c62x_linux == *tic6x_read_description (C6X_CORE));
424 SELF_CHECK (*tdesc_tic6x_c64x_linux == *tic6x_read_description (C6X_GP));
425 SELF_CHECK (*tdesc_tic6x_c64xp_linux == *tic6x_read_description (C6X_C6XP));
426}
427}
428}
429#endif
430
ef0478f6
TBA
431/* The linux target ops object. */
432
433linux_process_target *the_linux_target = &the_tic6x_target;
434
3aee8918
PA
435void
436initialize_low_arch (void)
437{
506fe5f4 438#if GDB_SELF_TEST
3aee8918
PA
439 /* Initialize the Linux target descriptions. */
440 init_registers_tic6x_c64xp_linux ();
441 init_registers_tic6x_c64x_linux ();
442 init_registers_tic6x_c62x_linux ();
443
506fe5f4
YQ
444 selftests::register_test ("tic6x-tdesc", selftests::tdesc::tic6x_tdesc_test);
445#endif
446
3aee8918
PA
447 initialize_regsets_info (&tic6x_regsets_info);
448}
This page took 0.707813 seconds and 4 git commands to generate.