gdbserver/linux-low: turn 'breakpoint_at' into a method
[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
203extern struct linux_target_ops the_low_target;
204
205static int *tic6x_regmap;
206static unsigned int tic6x_breakpoint;
dd373349
AT
207#define tic6x_breakpoint_len 4
208
3ca4edb6 209/* Implementation of target ops method "sw_breakpoint_from_kind". */
dd373349 210
3ca4edb6
TBA
211const gdb_byte *
212tic6x_target::sw_breakpoint_from_kind (int kind, int *size)
dd373349
AT
213{
214 *size = tic6x_breakpoint_len;
215 return (const gdb_byte *) &tic6x_breakpoint;
216}
58dbd541 217
3491a34c
YQ
218static struct usrregs_info tic6x_usrregs_info =
219 {
220 TIC6X_NUM_REGS,
221 NULL, /* Set in tic6x_read_description. */
222 };
3aee8918
PA
223
224static const struct target_desc *
506fe5f4 225tic6x_read_description (enum c6x_feature feature)
58dbd541 226{
506fe5f4
YQ
227 static target_desc *tdescs[C6X_LAST] = { };
228 struct target_desc **tdesc = &tdescs[feature];
58dbd541 229
506fe5f4 230 if (*tdesc == NULL)
58dbd541 231 {
506fe5f4 232 *tdesc = tic6x_create_target_description (feature);
506fe5f4 233 static const char *expedite_regs[] = { "A15", "PC", NULL };
190852c8 234 init_target_desc (*tdesc, expedite_regs);
58dbd541 235 }
506fe5f4
YQ
236
237 return *tdesc;
58dbd541
YQ
238}
239
daca57a7
TBA
240bool
241tic6x_target::low_cannot_fetch_register (int regno)
58dbd541
YQ
242{
243 return (tic6x_regmap[regno] == -1);
244}
245
daca57a7
TBA
246bool
247tic6x_target::low_cannot_store_register (int regno)
58dbd541
YQ
248{
249 return (tic6x_regmap[regno] == -1);
250}
251
bf9ae9d8
TBA
252bool
253tic6x_target::low_supports_breakpoints ()
254{
255 return true;
256}
257
258CORE_ADDR
259tic6x_target::low_get_pc (regcache *regcache)
58dbd541
YQ
260{
261 union tic6x_register pc;
262
263 collect_register_by_name (regcache, "PC", pc.buf);
264 return pc.reg32;
265}
266
bf9ae9d8
TBA
267void
268tic6x_target::low_set_pc (regcache *regcache, CORE_ADDR pc)
58dbd541
YQ
269{
270 union tic6x_register newpc;
271
272 newpc.reg32 = pc;
273 supply_register_by_name (regcache, "PC", newpc.buf);
274}
275
d7146cda
TBA
276bool
277tic6x_target::low_breakpoint_at (CORE_ADDR where)
58dbd541
YQ
278{
279 unsigned int insn;
280
d7146cda 281 read_memory (where, (unsigned char *) &insn, 4);
58dbd541 282 if (insn == tic6x_breakpoint)
d7146cda 283 return true;
58dbd541
YQ
284
285 /* If necessary, recognize more trap instructions here. GDB only uses the
286 one. */
d7146cda 287 return false;
58dbd541
YQ
288}
289
290/* Fetch the thread-local storage pointer for libthread_db. */
291
292ps_err_e
754653a7 293ps_get_thread_area (struct ps_prochandle *ph,
58dbd541
YQ
294 lwpid_t lwpid, int idx, void **base)
295{
296 if (ptrace (PTRACE_GET_THREAD_AREA, lwpid, NULL, base) != 0)
297 return PS_ERR;
298
299 /* IDX is the bias from the thread pointer to the beginning of the
300 thread descriptor. It has to be subtracted due to implementation
301 quirks in libthread_db. */
302 *base = (void *) ((char *) *base - idx);
303
304 return PS_OK;
305}
306
307static void
308tic6x_collect_register (struct regcache *regcache, int regno,
309 union tic6x_register *reg)
310{
311 union tic6x_register tmp_reg;
312
313 collect_register (regcache, regno, &tmp_reg.reg32);
314 reg->reg32 = tmp_reg.reg32;
315}
316
317static void
318tic6x_supply_register (struct regcache *regcache, int regno,
319 const union tic6x_register *reg)
320{
321 int offset = 0;
322
323 supply_register (regcache, regno, reg->buf + offset);
324}
325
326static void
327tic6x_fill_gregset (struct regcache *regcache, void *buf)
328{
3491a34c 329 auto regset = static_cast<union tic6x_register *> (buf);
58dbd541
YQ
330 int i;
331
332 for (i = 0; i < TIC6X_NUM_REGS; i++)
333 if (tic6x_regmap[i] != -1)
334 tic6x_collect_register (regcache, i, regset + tic6x_regmap[i]);
335}
336
337static void
338tic6x_store_gregset (struct regcache *regcache, const void *buf)
339{
3491a34c 340 const auto regset = static_cast<const union tic6x_register *> (buf);
58dbd541
YQ
341 int i;
342
343 for (i = 0; i < TIC6X_NUM_REGS; i++)
344 if (tic6x_regmap[i] != -1)
345 tic6x_supply_register (regcache, i, regset + tic6x_regmap[i]);
346}
347
3aee8918 348static struct regset_info tic6x_regsets[] = {
58dbd541
YQ
349 { PTRACE_GETREGS, PTRACE_SETREGS, 0, TIC6X_NUM_REGS * 4, GENERAL_REGS,
350 tic6x_fill_gregset, tic6x_store_gregset },
50bc912a 351 NULL_REGSET
58dbd541
YQ
352};
353
797bcff5
TBA
354void
355tic6x_target::low_arch_setup ()
3aee8918 356{
506fe5f4
YQ
357 register unsigned int csr asm ("B2");
358 unsigned int cpuid;
359 enum c6x_feature feature = C6X_CORE;
360
361 /* Determine the CPU we're running on to find the register order. */
362 __asm__ ("MVC .S2 CSR,%0" : "=r" (csr) :);
363 cpuid = csr >> 24;
364 switch (cpuid)
365 {
366 case 0x00: /* C62x */
367 case 0x02: /* C67x */
368 tic6x_regmap = tic6x_regmap_c62x;
369 tic6x_breakpoint = 0x0000a122; /* BNOP .S2 0,5 */
370 feature = C6X_CORE;
371 break;
372 case 0x03: /* C67x+ */
373 tic6x_regmap = tic6x_regmap_c64x;
374 tic6x_breakpoint = 0x0000a122; /* BNOP .S2 0,5 */
375 feature = C6X_GP;
376 break;
377 case 0x0c: /* C64x */
378 tic6x_regmap = tic6x_regmap_c64x;
379 tic6x_breakpoint = 0x0000a122; /* BNOP .S2 0,5 */
380 feature = C6X_GP;
381 break;
382 case 0x10: /* C64x+ */
383 case 0x14: /* C674x */
384 case 0x15: /* C66x */
385 tic6x_regmap = tic6x_regmap_c64xp;
386 tic6x_breakpoint = 0x56454314; /* illegal opcode */
387 feature = C6X_C6XP;
388 break;
389 default:
390 error ("Unknown CPU ID 0x%02x", cpuid);
391 }
392 tic6x_usrregs_info.regmap = tic6x_regmap;
393
394 current_process ()->tdesc = tic6x_read_description (feature);
3aee8918
PA
395}
396
7d00775e
AT
397/* Support for hardware single step. */
398
399static int
400tic6x_supports_hardware_single_step (void)
401{
402 return 1;
403}
404
3aee8918
PA
405static struct regsets_info tic6x_regsets_info =
406 {
407 tic6x_regsets, /* regsets */
408 0, /* num_regsets */
409 NULL, /* disabled_regsets */
410 };
411
aa8d21c9 412static struct regs_info myregs_info =
3aee8918
PA
413 {
414 NULL, /* regset_bitmap */
415 &tic6x_usrregs_info,
416 &tic6x_regsets_info
417 };
418
aa8d21c9
TBA
419const regs_info *
420tic6x_target::get_regs_info ()
3aee8918 421{
aa8d21c9 422 return &myregs_info;
3aee8918
PA
423}
424
58dbd541 425struct linux_target_ops the_low_target = {
7d00775e
AT
426 NULL, /* supports_z_point_type */
427 NULL, /* insert_point */
428 NULL, /* remove_point */
429 NULL, /* stopped_by_watchpoint */
430 NULL, /* stopped_data_address */
431 NULL, /* collect_ptrace_register */
432 NULL, /* supply_ptrace_register */
433 NULL, /* siginfo_fixup */
434 NULL, /* new_process */
04ec7890 435 NULL, /* delete_process */
7d00775e 436 NULL, /* new_thread */
466eecee 437 NULL, /* delete_thread */
7d00775e
AT
438 NULL, /* new_fork */
439 NULL, /* prepare_to_resume */
440 NULL, /* process_qsupported */
441 NULL, /* supports_tracepoints */
442 NULL, /* get_thread_area */
443 NULL, /* install_fast_tracepoint_jump_pad */
444 NULL, /* emit_ops */
445 NULL, /* get_min_fast_tracepoint_insn_len */
446 NULL, /* supports_range_stepping */
7d00775e 447 tic6x_supports_hardware_single_step,
58dbd541 448};
3aee8918 449
506fe5f4 450#if GDB_SELF_TEST
268a13a5 451#include "gdbsupport/selftest.h"
506fe5f4
YQ
452
453namespace selftests {
454namespace tdesc {
455static void
456tic6x_tdesc_test ()
457{
458 SELF_CHECK (*tdesc_tic6x_c62x_linux == *tic6x_read_description (C6X_CORE));
459 SELF_CHECK (*tdesc_tic6x_c64x_linux == *tic6x_read_description (C6X_GP));
460 SELF_CHECK (*tdesc_tic6x_c64xp_linux == *tic6x_read_description (C6X_C6XP));
461}
462}
463}
464#endif
465
ef0478f6
TBA
466/* The linux target ops object. */
467
468linux_process_target *the_linux_target = &the_tic6x_target;
469
3aee8918
PA
470void
471initialize_low_arch (void)
472{
506fe5f4 473#if GDB_SELF_TEST
3aee8918
PA
474 /* Initialize the Linux target descriptions. */
475 init_registers_tic6x_c64xp_linux ();
476 init_registers_tic6x_c64x_linux ();
477 init_registers_tic6x_c62x_linux ();
478
506fe5f4
YQ
479 selftests::register_test ("tic6x-tdesc", selftests::tdesc::tic6x_tdesc_test);
480#endif
481
3aee8918
PA
482 initialize_regsets_info (&tic6x_regsets_info);
483}
This page took 0.712482 seconds and 4 git commands to generate.