1 /* GNU/Linux/CRIS specific low level interface, for the remote server for GDB.
2 Copyright (C) 1995-2020 Free Software Foundation, Inc.
4 This file is part of GDB.
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
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
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.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "linux-low.h"
21 #include "nat/gdb_ptrace.h"
23 /* Linux target op definitions for the CRIS architecture. */
25 class cris_target
: public linux_process_target
29 const regs_info
*get_regs_info () override
;
31 const gdb_byte
*sw_breakpoint_from_kind (int kind
, int *size
) override
;
35 void low_arch_setup () override
;
37 bool low_cannot_fetch_register (int regno
) override
;
39 bool low_cannot_store_register (int regno
) override
;
41 bool low_supports_breakpoints () override
;
43 CORE_ADDR
low_get_pc (regcache
*regcache
) override
;
45 void low_set_pc (regcache
*regcache
, CORE_ADDR newpc
) override
;
47 bool low_breakpoint_at (CORE_ADDR pc
) override
;
50 /* The singleton target ops object. */
52 static cris_target the_cris_target
;
55 cris_target::low_supports_breakpoints ()
61 cris_target::low_get_pc (regcache
*regcache
)
63 return linux_get_pc_32bit (regcache
);
67 cris_target::low_set_pc (regcache
*regcache
, CORE_ADDR pc
)
69 linux_set_pc_32bit (regcache
, pc
);
72 /* Defined in auto-generated file reg-cris.c. */
73 void init_registers_cris (void);
74 extern const struct target_desc
*tdesc_cris
;
77 #define cris_num_regs 32
79 /* Locations need to match <include/asm/arch/ptrace.h>. */
80 static int cris_regmap
[] = {
81 15*4, 14*4, 13*4, 12*4,
94 cris_target::low_cannot_store_register (int regno
)
96 if (cris_regmap
[regno
] == -1)
99 return (regno
>= cris_num_regs
);
103 cris_target::low_cannot_fetch_register (int regno
)
105 if (cris_regmap
[regno
] == -1)
108 return (regno
>= cris_num_regs
);
111 static const unsigned short cris_breakpoint
= 0xe938;
112 #define cris_breakpoint_len 2
114 /* Implementation of target ops method "sw_breakpoint_from_kind". */
117 cris_target::sw_breakpoint_from_kind (int kind
, int *size
)
119 *size
= cris_breakpoint_len
;
120 return (const gdb_byte
*) &cris_breakpoint
;
124 cris_target::low_breakpoint_at (CORE_ADDR where
)
128 read_memory (where
, (unsigned char *) &insn
, cris_breakpoint_len
);
129 if (insn
== cris_breakpoint
)
132 /* If necessary, recognize more trap instructions here. GDB only uses the
138 cris_target::low_arch_setup ()
140 current_process ()->tdesc
= tdesc_cris
;
143 static struct usrregs_info cris_usrregs_info
=
149 static struct regs_info myregs_info
=
151 NULL
, /* regset_bitmap */
156 cris_target::get_regs_info ()
161 /* The linux target ops object. */
163 linux_process_target
*the_linux_target
= &the_cris_target
;
166 initialize_low_arch (void)
168 init_registers_cris ();