Commit | Line | Data |
---|---|---|
45b134e5 | 1 | /* GNU/Linux/CRIS specific low level interface, for the remote server for GDB. |
b811d2c2 | 2 | Copyright (C) 1995-2020 Free Software Foundation, Inc. |
45b134e5 OF |
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 |
45b134e5 OF |
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/>. */ |
45b134e5 OF |
18 | |
19 | #include "server.h" | |
20 | #include "linux-low.h" | |
5826e159 | 21 | #include "nat/gdb_ptrace.h" |
45b134e5 | 22 | |
ef0478f6 TBA |
23 | /* Linux target op definitions for the CRIS architecture. */ |
24 | ||
25 | class cris_target : public linux_process_target | |
26 | { | |
27 | public: | |
28 | ||
aa8d21c9 TBA |
29 | const regs_info *get_regs_info () override; |
30 | ||
3ca4edb6 TBA |
31 | const gdb_byte *sw_breakpoint_from_kind (int kind, int *size) override; |
32 | ||
797bcff5 TBA |
33 | protected: |
34 | ||
35 | void low_arch_setup () override; | |
daca57a7 TBA |
36 | |
37 | bool low_cannot_fetch_register (int regno) override; | |
38 | ||
39 | bool low_cannot_store_register (int regno) override; | |
bf9ae9d8 TBA |
40 | |
41 | bool low_supports_breakpoints () override; | |
42 | ||
43 | CORE_ADDR low_get_pc (regcache *regcache) override; | |
44 | ||
45 | void low_set_pc (regcache *regcache, CORE_ADDR newpc) override; | |
d7146cda TBA |
46 | |
47 | bool low_breakpoint_at (CORE_ADDR pc) override; | |
ef0478f6 TBA |
48 | }; |
49 | ||
50 | /* The singleton target ops object. */ | |
51 | ||
52 | static cris_target the_cris_target; | |
53 | ||
bf9ae9d8 TBA |
54 | bool |
55 | cris_target::low_supports_breakpoints () | |
56 | { | |
57 | return true; | |
58 | } | |
59 | ||
60 | CORE_ADDR | |
61 | cris_target::low_get_pc (regcache *regcache) | |
62 | { | |
63 | return linux_get_pc_32bit (regcache); | |
64 | } | |
65 | ||
66 | void | |
67 | cris_target::low_set_pc (regcache *regcache, CORE_ADDR pc) | |
68 | { | |
69 | linux_set_pc_32bit (regcache, pc); | |
70 | } | |
71 | ||
d05b4ac3 UW |
72 | /* Defined in auto-generated file reg-cris.c. */ |
73 | void init_registers_cris (void); | |
3aee8918 | 74 | extern const struct target_desc *tdesc_cris; |
d05b4ac3 | 75 | |
45b134e5 OF |
76 | /* CRISv10 */ |
77 | #define cris_num_regs 32 | |
78 | ||
79 | /* Locations need to match <include/asm/arch/ptrace.h>. */ | |
80 | static int cris_regmap[] = { | |
81 | 15*4, 14*4, 13*4, 12*4, | |
82 | 11*4, 10*4, 9*4, 8*4, | |
83 | 7*4, 6*4, 5*4, 4*4, | |
84 | 3*4, 2*4, 23*4, 19*4, | |
85 | ||
86 | -1, -1, -1, -1, | |
87 | -1, 17*4, -1, 16*4, | |
88 | -1, -1, -1, 18*4, | |
89 | -1, 17*4, -1, -1 | |
1b3f6016 | 90 | |
45b134e5 OF |
91 | }; |
92 | ||
daca57a7 TBA |
93 | bool |
94 | cris_target::low_cannot_store_register (int regno) | |
45b134e5 OF |
95 | { |
96 | if (cris_regmap[regno] == -1) | |
daca57a7 | 97 | return true; |
1b3f6016 | 98 | |
45b134e5 OF |
99 | return (regno >= cris_num_regs); |
100 | } | |
101 | ||
daca57a7 TBA |
102 | bool |
103 | cris_target::low_cannot_fetch_register (int regno) | |
45b134e5 OF |
104 | { |
105 | if (cris_regmap[regno] == -1) | |
daca57a7 | 106 | return true; |
45b134e5 OF |
107 | |
108 | return (regno >= cris_num_regs); | |
109 | } | |
110 | ||
45b134e5 OF |
111 | static const unsigned short cris_breakpoint = 0xe938; |
112 | #define cris_breakpoint_len 2 | |
113 | ||
3ca4edb6 | 114 | /* Implementation of target ops method "sw_breakpoint_from_kind". */ |
dd373349 | 115 | |
3ca4edb6 TBA |
116 | const gdb_byte * |
117 | cris_target::sw_breakpoint_from_kind (int kind, int *size) | |
dd373349 AT |
118 | { |
119 | *size = cris_breakpoint_len; | |
120 | return (const gdb_byte *) &cris_breakpoint; | |
121 | } | |
122 | ||
d7146cda TBA |
123 | bool |
124 | cris_target::low_breakpoint_at (CORE_ADDR where) | |
45b134e5 OF |
125 | { |
126 | unsigned short insn; | |
127 | ||
d7146cda | 128 | read_memory (where, (unsigned char *) &insn, cris_breakpoint_len); |
45b134e5 | 129 | if (insn == cris_breakpoint) |
d7146cda | 130 | return true; |
45b134e5 OF |
131 | |
132 | /* If necessary, recognize more trap instructions here. GDB only uses the | |
133 | one. */ | |
d7146cda | 134 | return false; |
45b134e5 OF |
135 | } |
136 | ||
797bcff5 TBA |
137 | void |
138 | cris_target::low_arch_setup () | |
3aee8918 PA |
139 | { |
140 | current_process ()->tdesc = tdesc_cris; | |
141 | } | |
142 | ||
143 | static struct usrregs_info cris_usrregs_info = | |
144 | { | |
145 | cris_num_regs, | |
146 | cris_regmap, | |
147 | }; | |
148 | ||
aa8d21c9 | 149 | static struct regs_info myregs_info = |
3aee8918 PA |
150 | { |
151 | NULL, /* regset_bitmap */ | |
152 | &cris_usrregs_info, | |
153 | }; | |
154 | ||
aa8d21c9 TBA |
155 | const regs_info * |
156 | cris_target::get_regs_info () | |
3aee8918 | 157 | { |
aa8d21c9 | 158 | return &myregs_info; |
3aee8918 PA |
159 | } |
160 | ||
45b134e5 | 161 | struct linux_target_ops the_low_target = { |
45b134e5 | 162 | }; |
3aee8918 | 163 | |
ef0478f6 TBA |
164 | /* The linux target ops object. */ |
165 | ||
166 | linux_process_target *the_linux_target = &the_cris_target; | |
167 | ||
3aee8918 PA |
168 | void |
169 | initialize_low_arch (void) | |
170 | { | |
171 | init_registers_cris (); | |
172 | } |