gdbserver/linux-low: turn 'fetch_register' into a method
[deliverable/binutils-gdb.git] / gdbserver / linux-bfin-low.cc
CommitLineData
eb826dc6
MF
1/* GNU/Linux/BFIN specific low level interface, for the remote server for GDB.
2
b811d2c2 3 Copyright (C) 2005-2020 Free Software Foundation, Inc.
eb826dc6
MF
4
5 Contributed by Analog Devices, Inc.
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"
eb826dc6
MF
24#include <asm/ptrace.h>
25
ef0478f6
TBA
26/* Linux target op definitions for the BFIN architecture. */
27
28class bfin_target : public linux_process_target
29{
30public:
31
aa8d21c9
TBA
32 const regs_info *get_regs_info () override;
33
797bcff5
TBA
34protected:
35
36 void low_arch_setup () override;
daca57a7
TBA
37
38 bool low_cannot_fetch_register (int regno) override;
39
40 bool low_cannot_store_register (int regno) override;
ef0478f6
TBA
41};
42
43/* The singleton target ops object. */
44
45static bfin_target the_bfin_target;
46
eb826dc6
MF
47/* Defined in auto-generated file reg-bfin.c. */
48void init_registers_bfin (void);
3aee8918 49extern const struct target_desc *tdesc_bfin;
eb826dc6
MF
50
51static int bfin_regmap[] =
52{
53 PT_R0, PT_R1, PT_R2, PT_R3, PT_R4, PT_R5, PT_R6, PT_R7,
54 PT_P0, PT_P1, PT_P2, PT_P3, PT_P4, PT_P5, PT_USP, PT_FP,
55 PT_I0, PT_I1, PT_I2, PT_I3, PT_M0, PT_M1, PT_M2, PT_M3,
56 PT_B0, PT_B1, PT_B2, PT_B3, PT_L0, PT_L1, PT_L2, PT_L3,
57 PT_A0X, PT_A0W, PT_A1X, PT_A1W, PT_ASTAT, PT_RETS,
58 PT_LC0, PT_LT0, PT_LB0, PT_LC1, PT_LT1, PT_LB1,
59 -1 /* PT_CYCLES */, -1 /* PT_CYCLES2 */,
60 -1 /* PT_USP */, PT_SEQSTAT, PT_SYSCFG, PT_PC, PT_RETX, PT_RETN, PT_RETE,
61 PT_PC,
62};
63
64#define bfin_num_regs ARRAY_SIZE (bfin_regmap)
65
daca57a7
TBA
66bool
67bfin_target::low_cannot_store_register (int regno)
eb826dc6
MF
68{
69 return (regno >= bfin_num_regs);
70}
71
daca57a7
TBA
72bool
73bfin_target::low_cannot_fetch_register (int regno)
eb826dc6
MF
74{
75 return (regno >= bfin_num_regs);
76}
77
eb826dc6 78#define bfin_breakpoint_len 2
dd373349
AT
79static const gdb_byte bfin_breakpoint[bfin_breakpoint_len] = {0xa1, 0x00};
80
81/* Implementation of linux_target_ops method "sw_breakpoint_from_kind". */
82
83static const gdb_byte *
84bfin_sw_breakpoint_from_kind (int kind, int *size)
85{
86 *size = bfin_breakpoint_len;
87 return bfin_breakpoint;
88}
eb826dc6
MF
89
90static int
91bfin_breakpoint_at (CORE_ADDR where)
92{
93 unsigned char insn[bfin_breakpoint_len];
94
95 read_inferior_memory(where, insn, bfin_breakpoint_len);
96 if (insn[0] == bfin_breakpoint[0]
97 && insn[1] == bfin_breakpoint[1])
98 return 1;
99
100 /* If necessary, recognize more trap instructions here. GDB only uses the
101 one. */
102 return 0;
103}
104
797bcff5
TBA
105void
106bfin_target::low_arch_setup ()
3aee8918
PA
107{
108 current_process ()->tdesc = tdesc_bfin;
109}
110
7d00775e
AT
111/* Support for hardware single step. */
112
113static int
114bfin_supports_hardware_single_step (void)
115{
116 return 1;
117}
118
3aee8918
PA
119static struct usrregs_info bfin_usrregs_info =
120 {
121 bfin_num_regs,
122 bfin_regmap,
123 };
124
aa8d21c9 125static struct regs_info myregs_info =
3aee8918
PA
126 {
127 NULL, /* regset_bitmap */
128 &bfin_usrregs_info,
129 };
130
aa8d21c9
TBA
131const regs_info *
132bfin_target::get_regs_info ()
3aee8918 133{
aa8d21c9 134 return &myregs_info;
3aee8918
PA
135}
136
eb826dc6 137struct linux_target_ops the_low_target = {
276d4552
YQ
138 linux_get_pc_32bit,
139 linux_set_pc_32bit,
dd373349
AT
140 NULL, /* breakpoint_kind_from_pc */
141 bfin_sw_breakpoint_from_kind,
fa5308bd 142 NULL, /* get_next_pcs */
eb826dc6
MF
143 2,
144 bfin_breakpoint_at,
7d00775e
AT
145 NULL, /* supports_z_point_type */
146 NULL, /* insert_point */
147 NULL, /* remove_point */
148 NULL, /* stopped_by_watchpoint */
149 NULL, /* stopped_data_address */
150 NULL, /* collect_ptrace_register */
151 NULL, /* supply_ptrace_register */
152 NULL, /* siginfo_fixup */
153 NULL, /* new_process */
04ec7890 154 NULL, /* delete_process */
7d00775e 155 NULL, /* new_thread */
466eecee 156 NULL, /* delete_thread */
7d00775e
AT
157 NULL, /* new_fork */
158 NULL, /* prepare_to_resume */
159 NULL, /* process_qsupported */
160 NULL, /* supports_tracepoints */
161 NULL, /* get_thread_area */
162 NULL, /* install_fast_tracepoint_jump_pad */
163 NULL, /* emit_ops */
164 NULL, /* get_min_fast_tracepoint_insn_len */
165 NULL, /* supports_range_stepping */
166 NULL, /* breakpoint_kind_from_current_state */
167 bfin_supports_hardware_single_step,
eb826dc6 168};
3aee8918 169
ef0478f6
TBA
170/* The linux target ops object. */
171
172linux_process_target *the_linux_target = &the_bfin_target;
3aee8918
PA
173
174void
175initialize_low_arch (void)
176{
177 init_registers_bfin ();
178}
This page took 0.792961 seconds and 4 git commands to generate.