]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdbserver/linux-m68k-low.cc
gdb+gdbserver/Linux: Remove USE_SIGTRAP_SIGINFO fallback
[thirdparty/binutils-gdb.git] / gdbserver / linux-m68k-low.cc
CommitLineData
0a30fbc4 1/* GNU/Linux/m68k specific low level interface, for the remote server for GDB.
1d506c26 2 Copyright (C) 1995-2024 Free Software Foundation, Inc.
0a30fbc4
DJ
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
0a30fbc4
DJ
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/>. */
0a30fbc4 18
58caa3dc 19#include "linux-low.h"
0a30fbc4 20
ef0478f6
TBA
21/* Linux target op definitions for the m68k architecture. */
22
23class m68k_target : public linux_process_target
24{
25public:
26
aa8d21c9
TBA
27 const regs_info *get_regs_info () override;
28
3ca4edb6
TBA
29 const gdb_byte *sw_breakpoint_from_kind (int kind, int *size) override;
30
797bcff5
TBA
31protected:
32
33 void low_arch_setup () override;
daca57a7
TBA
34
35 bool low_cannot_fetch_register (int regno) override;
36
37 bool low_cannot_store_register (int regno) override;
bf9ae9d8
TBA
38
39 bool low_supports_breakpoints () override;
40
41 CORE_ADDR low_get_pc (regcache *regcache) override;
42
43 void low_set_pc (regcache *regcache, CORE_ADDR newpc) override;
d4807ea2
TBA
44
45 int low_decr_pc_after_break () override;
d7146cda
TBA
46
47 bool low_breakpoint_at (CORE_ADDR pc) override;
ef0478f6
TBA
48};
49
50/* The singleton target ops object. */
51
52static m68k_target the_m68k_target;
53
bf9ae9d8
TBA
54bool
55m68k_target::low_supports_breakpoints ()
56{
57 return true;
58}
59
60CORE_ADDR
61m68k_target::low_get_pc (regcache *regcache)
62{
63 return linux_get_pc_32bit (regcache);
64}
65
66void
67m68k_target::low_set_pc (regcache *regcache, CORE_ADDR pc)
68{
69 linux_set_pc_32bit (regcache, pc);
70}
71
d4807ea2
TBA
72int
73m68k_target::low_decr_pc_after_break ()
74{
75 return 2;
76}
77
d05b4ac3
UW
78/* Defined in auto-generated file reg-m68k.c. */
79void init_registers_m68k (void);
3aee8918 80extern const struct target_desc *tdesc_m68k;
d05b4ac3 81
0a30fbc4
DJ
82#ifdef HAVE_SYS_REG_H
83#include <sys/reg.h>
84#endif
85
4c0711e0 86#define m68k_num_regs 29
db1d3e1b 87#define m68k_num_gregs 18
0a30fbc4
DJ
88
89/* This table must line up with REGISTER_NAMES in tm-m68k.h */
2ec06d2e 90static int m68k_regmap[] =
0a30fbc4
DJ
91{
92#ifdef PT_D0
93 PT_D0 * 4, PT_D1 * 4, PT_D2 * 4, PT_D3 * 4,
94 PT_D4 * 4, PT_D5 * 4, PT_D6 * 4, PT_D7 * 4,
95 PT_A0 * 4, PT_A1 * 4, PT_A2 * 4, PT_A3 * 4,
96 PT_A4 * 4, PT_A5 * 4, PT_A6 * 4, PT_USP * 4,
97 PT_SR * 4, PT_PC * 4,
98#else
99 14 * 4, 0 * 4, 1 * 4, 2 * 4, 3 * 4, 4 * 4, 5 * 4, 6 * 4,
100 7 * 4, 8 * 4, 9 * 4, 10 * 4, 11 * 4, 12 * 4, 13 * 4, 15 * 4,
101 17 * 4, 18 * 4,
102#endif
103#ifdef PT_FP0
104 PT_FP0 * 4, PT_FP1 * 4, PT_FP2 * 4, PT_FP3 * 4,
105 PT_FP4 * 4, PT_FP5 * 4, PT_FP6 * 4, PT_FP7 * 4,
106 PT_FPCR * 4, PT_FPSR * 4, PT_FPIAR * 4
107#else
108 21 * 4, 24 * 4, 27 * 4, 30 * 4, 33 * 4, 36 * 4,
109 39 * 4, 42 * 4, 45 * 4, 46 * 4, 47 * 4
110#endif
111};
112
daca57a7
TBA
113bool
114m68k_target::low_cannot_store_register (int regno)
0a30fbc4 115{
2ec06d2e 116 return (regno >= m68k_num_regs);
0a30fbc4
DJ
117}
118
daca57a7
TBA
119bool
120m68k_target::low_cannot_fetch_register (int regno)
0a30fbc4 121{
2ec06d2e 122 return (regno >= m68k_num_regs);
0a30fbc4 123}
2ec06d2e 124
e9d25b98 125#ifdef HAVE_PTRACE_GETREGS
db1d3e1b 126#include <sys/procfs.h>
5826e159 127#include "nat/gdb_ptrace.h"
db1d3e1b
AS
128
129static void
442ea881 130m68k_fill_gregset (struct regcache *regcache, void *buf)
db1d3e1b
AS
131{
132 int i;
133
134 for (i = 0; i < m68k_num_gregs; i++)
442ea881 135 collect_register (regcache, i, (char *) buf + m68k_regmap[i]);
db1d3e1b
AS
136}
137
138static void
442ea881 139m68k_store_gregset (struct regcache *regcache, const void *buf)
db1d3e1b
AS
140{
141 int i;
142
143 for (i = 0; i < m68k_num_gregs; i++)
442ea881 144 supply_register (regcache, i, (const char *) buf + m68k_regmap[i]);
db1d3e1b
AS
145}
146
147static void
442ea881 148m68k_fill_fpregset (struct regcache *regcache, void *buf)
db1d3e1b
AS
149{
150 int i;
151
152 for (i = m68k_num_gregs; i < m68k_num_regs; i++)
442ea881
PA
153 collect_register (regcache, i, ((char *) buf
154 + (m68k_regmap[i] - m68k_regmap[m68k_num_gregs])));
db1d3e1b
AS
155}
156
157static void
442ea881 158m68k_store_fpregset (struct regcache *regcache, const void *buf)
db1d3e1b
AS
159{
160 int i;
161
162 for (i = m68k_num_gregs; i < m68k_num_regs; i++)
442ea881 163 supply_register (regcache, i, ((const char *) buf
db1d3e1b
AS
164 + (m68k_regmap[i] - m68k_regmap[m68k_num_gregs])));
165}
166
e9d25b98 167#endif /* HAVE_PTRACE_GETREGS */
db1d3e1b 168
3aee8918 169static struct regset_info m68k_regsets[] = {
e9d25b98 170#ifdef HAVE_PTRACE_GETREGS
1570b33e 171 { PTRACE_GETREGS, PTRACE_SETREGS, 0, sizeof (elf_gregset_t),
db1d3e1b
AS
172 GENERAL_REGS,
173 m68k_fill_gregset, m68k_store_gregset },
1570b33e 174 { PTRACE_GETFPREGS, PTRACE_SETFPREGS, 0, sizeof (elf_fpregset_t),
db1d3e1b
AS
175 FP_REGS,
176 m68k_fill_fpregset, m68k_store_fpregset },
e9d25b98 177#endif /* HAVE_PTRACE_GETREGS */
50bc912a 178 NULL_REGSET
db1d3e1b
AS
179};
180
dd373349 181static const gdb_byte m68k_breakpoint[] = { 0x4E, 0x4F };
db1d3e1b
AS
182#define m68k_breakpoint_len 2
183
3ca4edb6 184/* Implementation of target ops method "sw_breakpoint_from_kind". */
dd373349 185
3ca4edb6
TBA
186const gdb_byte *
187m68k_target::sw_breakpoint_from_kind (int kind, int *size)
dd373349
AT
188{
189 *size = m68k_breakpoint_len;
190 return m68k_breakpoint;
191}
192
d7146cda
TBA
193bool
194m68k_target::low_breakpoint_at (CORE_ADDR pc)
db1d3e1b
AS
195{
196 unsigned char c[2];
197
198 read_inferior_memory (pc, c, 2);
199 if (c[0] == 0x4E && c[1] == 0x4F)
d7146cda 200 return true;
db1d3e1b 201
d7146cda 202 return false;
db1d3e1b
AS
203}
204
fea36a59
MK
205#include <asm/ptrace.h>
206
28d3cf85 207#ifdef PTRACE_GET_THREAD_AREA
fea36a59
MK
208/* Fetch the thread-local storage pointer for libthread_db. */
209
210ps_err_e
754653a7 211ps_get_thread_area (struct ps_prochandle *ph,
fea36a59
MK
212 lwpid_t lwpid, int idx, void **base)
213{
214 if (ptrace (PTRACE_GET_THREAD_AREA, lwpid, NULL, base) != 0)
215 return PS_ERR;
216
217 /* IDX is the bias from the thread pointer to the beginning of the
218 thread descriptor. It has to be subtracted due to implementation
219 quirks in libthread_db. */
220 *base = (void *) ((char *)*base - idx);
221
222 return PS_OK;
223}
28d3cf85 224#endif /* PTRACE_GET_THREAD_AREA */
fea36a59 225
3aee8918
PA
226static struct regsets_info m68k_regsets_info =
227 {
228 m68k_regsets, /* regsets */
229 0, /* num_regsets */
230 NULL, /* disabled_regsets */
231 };
232
233static struct usrregs_info m68k_usrregs_info =
234 {
235 m68k_num_regs,
236 m68k_regmap,
237 };
238
aa8d21c9 239static struct regs_info myregs_info =
3aee8918
PA
240 {
241 NULL, /* regset_bitmap */
242 &m68k_usrregs_info,
243 &m68k_regsets_info
244 };
245
aa8d21c9
TBA
246const regs_info *
247m68k_target::get_regs_info ()
3aee8918 248{
aa8d21c9 249 return &myregs_info;
3aee8918
PA
250}
251
797bcff5
TBA
252void
253m68k_target::low_arch_setup ()
3aee8918
PA
254{
255 current_process ()->tdesc = tdesc_m68k;
256}
257
ef0478f6
TBA
258/* The linux target ops object. */
259
260linux_process_target *the_linux_target = &the_m68k_target;
261
3aee8918
PA
262void
263initialize_low_arch (void)
264{
265 /* Initialize the Linux target descriptions. */
266 init_registers_m68k ();
267
268 initialize_regsets_info (&m68k_regsets_info);
269}