1 /* GNU/Linux/TILE-Gx specific low level interface, GDBserver.
3 Copyright (C) 2012-2020 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 3 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, see <http://www.gnu.org/licenses/>. */
21 #include "linux-low.h"
24 #include "nat/gdb_ptrace.h"
26 /* Linux target op definitions for the TILE-Gx architecture. */
28 class tile_target
: public linux_process_target
32 const regs_info
*get_regs_info () override
;
34 const gdb_byte
*sw_breakpoint_from_kind (int kind
, int *size
) override
;
38 void low_arch_setup () override
;
40 bool low_cannot_fetch_register (int regno
) override
;
42 bool low_cannot_store_register (int regno
) override
;
44 bool low_supports_breakpoints () override
;
46 CORE_ADDR
low_get_pc (regcache
*regcache
) override
;
48 void low_set_pc (regcache
*regcache
, CORE_ADDR newpc
) override
;
50 bool low_breakpoint_at (CORE_ADDR pc
) override
;
53 /* The singleton target ops object. */
55 static tile_target the_tile_target
;
58 tile_target::low_supports_breakpoints ()
64 tile_target::low_get_pc (regcache
*regcache
)
66 return linux_get_pc_64bit (regcache
);
70 tile_target::low_set_pc (regcache
*regcache
, CORE_ADDR pc
)
72 linux_set_pc_64bit (regcache
, pc
);
75 /* Defined in auto-generated file reg-tilegx.c. */
76 void init_registers_tilegx (void);
77 extern const struct target_desc
*tdesc_tilegx
;
79 /* Defined in auto-generated file reg-tilegx32.c. */
80 void init_registers_tilegx32 (void);
81 extern const struct target_desc
*tdesc_tilegx32
;
83 #define tile_num_regs 65
85 static int tile_regmap
[] =
87 0, 1, 2, 3, 4, 5, 6, 7,
88 8, 9, 10, 11, 12, 13, 14, 15,
89 16, 17, 18, 19, 20, 21, 22, 23,
90 24, 25, 26, 27, 28, 29, 30, 31,
91 32, 33, 34, 35, 36, 37, 38, 39,
92 40, 41, 42, 43, 44, 45, 46, 47,
93 48, 49, 50, 51, 52, 53, 54, 55,
94 -1, -1, -1, -1, -1, -1, -1, -1,
99 tile_target::low_cannot_fetch_register (int regno
)
101 if (regno
>= 0 && regno
< 56)
103 else if (regno
== 64)
110 tile_target::low_cannot_store_register (int regno
)
112 if (regno
>= 0 && regno
< 56)
114 else if (regno
== 64)
120 static uint64_t tile_breakpoint
= 0x400b3cae70166000ULL
;
121 #define tile_breakpoint_len 8
123 /* Implementation of target ops method "sw_breakpoint_from_kind". */
126 tile_target::sw_breakpoint_from_kind (int kind
, int *size
)
128 *size
= tile_breakpoint_len
;
129 return (const gdb_byte
*) &tile_breakpoint
;
133 tile_target::low_breakpoint_at (CORE_ADDR where
)
137 read_memory (where
, (unsigned char *) &insn
, 8);
138 if (insn
== tile_breakpoint
)
141 /* If necessary, recognize more trap instructions here. GDB only uses the
147 tile_fill_gregset (struct regcache
*regcache
, void *buf
)
151 for (i
= 0; i
< tile_num_regs
; i
++)
152 if (tile_regmap
[i
] != -1)
153 collect_register (regcache
, i
, ((uint_reg_t
*) buf
) + tile_regmap
[i
]);
157 tile_store_gregset (struct regcache
*regcache
, const void *buf
)
161 for (i
= 0; i
< tile_num_regs
; i
++)
162 if (tile_regmap
[i
] != -1)
163 supply_register (regcache
, i
, ((uint_reg_t
*) buf
) + tile_regmap
[i
]);
166 static struct regset_info tile_regsets
[] =
168 { PTRACE_GETREGS
, PTRACE_SETREGS
, 0, tile_num_regs
* 8,
169 GENERAL_REGS
, tile_fill_gregset
, tile_store_gregset
},
173 static struct regsets_info tile_regsets_info
=
175 tile_regsets
, /* regsets */
177 NULL
, /* disabled_regsets */
180 static struct usrregs_info tile_usrregs_info
=
186 static struct regs_info myregs_info
=
188 NULL
, /* regset_bitmap */
194 tile_target::get_regs_info ()
200 tile_target::low_arch_setup ()
202 int pid
= pid_of (current_thread
);
203 unsigned int machine
;
204 int is_elf64
= linux_pid_exe_is_elf_64_file (pid
, &machine
);
206 if (sizeof (void *) == 4)
208 error (_("Can't debug 64-bit process with 32-bit GDBserver"));
211 current_process ()->tdesc
= tdesc_tilegx32
;
213 current_process ()->tdesc
= tdesc_tilegx
;
216 /* Support for hardware single step. */
219 tile_supports_hardware_single_step (void)
225 struct linux_target_ops the_low_target
=
227 NULL
, /* supports_tracepoints */
228 NULL
, /* get_thread_area */
229 NULL
, /* install_fast_tracepoint_jump_pad */
231 NULL
, /* get_min_fast_tracepoint_insn_len */
232 NULL
, /* supports_range_stepping */
233 tile_supports_hardware_single_step
,
236 /* The linux target ops object. */
238 linux_process_target
*the_linux_target
= &the_tile_target
;
241 initialize_low_arch (void)
243 init_registers_tilegx32();
244 init_registers_tilegx();
246 initialize_regsets_info (&tile_regsets_info
);