Commit | Line | Data |
---|---|---|
eb8bc282 AC |
1 | /* User visible, per-frame registers, for GDB, the GNU debugger. |
2 | ||
11bc5fe4 | 3 | Copyright (C) 2002-2020 Free Software Foundation, Inc. |
eb8bc282 AC |
4 | |
5 | Contributed by Red Hat. | |
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 | |
a9762ec7 | 11 | the Free Software Foundation; either version 3 of the License, or |
eb8bc282 AC |
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 | |
a9762ec7 | 20 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
eb8bc282 AC |
21 | |
22 | #include "defs.h" | |
23 | #include "user-regs.h" | |
24 | #include "gdbtypes.h" | |
eb8bc282 | 25 | #include "frame.h" |
f5b95c01 AA |
26 | #include "arch-utils.h" |
27 | #include "command.h" | |
28 | #include "cli/cli-cmds.h" | |
eb8bc282 AC |
29 | |
30 | /* A table of user registers. | |
31 | ||
32 | User registers have regnum's that live above of the range [0 | |
f57d151a UW |
33 | .. gdbarch_num_regs + gdbarch_num_pseudo_regs) |
34 | (which is controlled by the target). | |
eb8bc282 AC |
35 | The target should never see a user register's regnum value. |
36 | ||
37 | Always append, never delete. By doing this, the relative regnum | |
f57d151a UW |
38 | (offset from gdbarch_num_regs + gdbarch_num_pseudo_regs) |
39 | assigned to each user register never changes. */ | |
eb8bc282 AC |
40 | |
41 | struct user_reg | |
42 | { | |
43 | const char *name; | |
123dc839 DJ |
44 | struct value *(*read) (struct frame_info * frame, const void *baton); |
45 | const void *baton; | |
63022984 | 46 | struct user_reg *next; |
eb8bc282 AC |
47 | }; |
48 | ||
8b9740d8 DJ |
49 | /* This structure is named gdb_user_regs instead of user_regs to avoid |
50 | conflicts with any "struct user_regs" in system headers. For instance, | |
51 | on ARM GNU/Linux native builds, nm-linux.h includes <signal.h> includes | |
52 | <sys/ucontext.h> includes <sys/procfs.h> includes <sys/user.h>, which | |
53 | declares "struct user_regs". */ | |
54 | ||
55 | struct gdb_user_regs | |
eb8bc282 | 56 | { |
63022984 AC |
57 | struct user_reg *first; |
58 | struct user_reg **last; | |
eb8bc282 AC |
59 | }; |
60 | ||
61 | static void | |
8b9740d8 | 62 | append_user_reg (struct gdb_user_regs *regs, const char *name, |
123dc839 DJ |
63 | user_reg_read_ftype *read, const void *baton, |
64 | struct user_reg *reg) | |
eb8bc282 | 65 | { |
63022984 AC |
66 | /* The caller is responsible for allocating memory needed to store |
67 | the register. By doing this, the function can operate on a | |
68 | register list stored in the common heap or a specific obstack. */ | |
69 | gdb_assert (reg != NULL); | |
70 | reg->name = name; | |
71 | reg->read = read; | |
123dc839 | 72 | reg->baton = baton; |
63022984 AC |
73 | reg->next = NULL; |
74 | (*regs->last) = reg; | |
75 | regs->last = &(*regs->last)->next; | |
eb8bc282 AC |
76 | } |
77 | ||
78 | /* An array of the builtin user registers. */ | |
79 | ||
3e43a32a MS |
80 | static struct gdb_user_regs builtin_user_regs = { |
81 | NULL, &builtin_user_regs.first | |
82 | }; | |
eb8bc282 AC |
83 | |
84 | void | |
123dc839 DJ |
85 | user_reg_add_builtin (const char *name, user_reg_read_ftype *read, |
86 | const void *baton) | |
eb8bc282 | 87 | { |
123dc839 | 88 | append_user_reg (&builtin_user_regs, name, read, baton, |
70ba0933 | 89 | XNEW (struct user_reg)); |
eb8bc282 AC |
90 | } |
91 | ||
92 | /* Per-architecture user registers. Start with the builtin user | |
93 | registers and then, again, append. */ | |
94 | ||
95 | static struct gdbarch_data *user_regs_data; | |
96 | ||
97 | static void * | |
98 | user_regs_init (struct gdbarch *gdbarch) | |
99 | { | |
63022984 | 100 | struct user_reg *reg; |
5d502164 MS |
101 | struct gdb_user_regs *regs |
102 | = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct gdb_user_regs); | |
103 | ||
63022984 AC |
104 | regs->last = ®s->first; |
105 | for (reg = builtin_user_regs.first; reg != NULL; reg = reg->next) | |
123dc839 | 106 | append_user_reg (regs, reg->name, reg->read, reg->baton, |
63022984 | 107 | GDBARCH_OBSTACK_ZALLOC (gdbarch, struct user_reg)); |
eb8bc282 AC |
108 | return regs; |
109 | } | |
110 | ||
eb8bc282 AC |
111 | void |
112 | user_reg_add (struct gdbarch *gdbarch, const char *name, | |
123dc839 | 113 | user_reg_read_ftype *read, const void *baton) |
eb8bc282 | 114 | { |
19ba03f4 SM |
115 | struct gdb_user_regs *regs |
116 | = (struct gdb_user_regs *) gdbarch_data (gdbarch, user_regs_data); | |
5d502164 | 117 | |
eb8bc282 AC |
118 | if (regs == NULL) |
119 | { | |
120 | /* ULGH, called during architecture initialization. Patch | |
121 | things up. */ | |
19ba03f4 | 122 | regs = (struct gdb_user_regs *) user_regs_init (gdbarch); |
030f20e1 | 123 | deprecated_set_gdbarch_data (gdbarch, user_regs_data, regs); |
eb8bc282 | 124 | } |
123dc839 | 125 | append_user_reg (regs, name, read, baton, |
63022984 | 126 | GDBARCH_OBSTACK_ZALLOC (gdbarch, struct user_reg)); |
eb8bc282 AC |
127 | } |
128 | ||
129 | int | |
130 | user_reg_map_name_to_regnum (struct gdbarch *gdbarch, const char *name, | |
131 | int len) | |
132 | { | |
133 | /* Make life easy, set the len to something reasonable. */ | |
134 | if (len < 0) | |
135 | len = strlen (name); | |
136 | ||
137 | /* Search register name space first - always let an architecture | |
138 | specific register override the user registers. */ | |
139 | { | |
140 | int i; | |
f6efe3f8 | 141 | int maxregs = gdbarch_num_cooked_regs (gdbarch); |
5d502164 | 142 | |
eb8bc282 AC |
143 | for (i = 0; i < maxregs; i++) |
144 | { | |
145 | const char *regname = gdbarch_register_name (gdbarch, i); | |
5d502164 | 146 | |
eb8bc282 AC |
147 | if (regname != NULL && len == strlen (regname) |
148 | && strncmp (regname, name, len) == 0) | |
149 | { | |
150 | return i; | |
151 | } | |
152 | } | |
153 | } | |
154 | ||
155 | /* Search the user name space. */ | |
156 | { | |
19ba03f4 SM |
157 | struct gdb_user_regs *regs |
158 | = (struct gdb_user_regs *) gdbarch_data (gdbarch, user_regs_data); | |
63022984 AC |
159 | struct user_reg *reg; |
160 | int nr; | |
5d502164 | 161 | |
63022984 | 162 | for (nr = 0, reg = regs->first; reg != NULL; reg = reg->next, nr++) |
eb8bc282 | 163 | { |
63022984 AC |
164 | if ((len < 0 && strcmp (reg->name, name)) |
165 | || (len == strlen (reg->name) | |
166 | && strncmp (reg->name, name, len) == 0)) | |
f6efe3f8 | 167 | return gdbarch_num_cooked_regs (gdbarch) + nr; |
eb8bc282 AC |
168 | } |
169 | } | |
170 | ||
171 | return -1; | |
172 | } | |
173 | ||
63022984 AC |
174 | static struct user_reg * |
175 | usernum_to_user_reg (struct gdbarch *gdbarch, int usernum) | |
176 | { | |
19ba03f4 SM |
177 | struct gdb_user_regs *regs |
178 | = (struct gdb_user_regs *) gdbarch_data (gdbarch, user_regs_data); | |
63022984 | 179 | struct user_reg *reg; |
5d502164 | 180 | |
63022984 AC |
181 | for (reg = regs->first; reg != NULL; reg = reg->next) |
182 | { | |
183 | if (usernum == 0) | |
184 | return reg; | |
185 | usernum--; | |
186 | } | |
187 | return NULL; | |
188 | } | |
189 | ||
eb8bc282 AC |
190 | const char * |
191 | user_reg_map_regnum_to_name (struct gdbarch *gdbarch, int regnum) | |
192 | { | |
f6efe3f8 | 193 | int maxregs = gdbarch_num_cooked_regs (gdbarch); |
5d502164 | 194 | |
eb8bc282 AC |
195 | if (regnum < 0) |
196 | return NULL; | |
63022984 | 197 | else if (regnum < maxregs) |
eb8bc282 | 198 | return gdbarch_register_name (gdbarch, regnum); |
63022984 AC |
199 | else |
200 | { | |
201 | struct user_reg *reg = usernum_to_user_reg (gdbarch, regnum - maxregs); | |
202 | if (reg == NULL) | |
203 | return NULL; | |
204 | else | |
205 | return reg->name; | |
206 | } | |
eb8bc282 AC |
207 | } |
208 | ||
209 | struct value * | |
210 | value_of_user_reg (int regnum, struct frame_info *frame) | |
211 | { | |
212 | struct gdbarch *gdbarch = get_frame_arch (frame); | |
f6efe3f8 | 213 | int maxregs = gdbarch_num_cooked_regs (gdbarch); |
63022984 | 214 | struct user_reg *reg = usernum_to_user_reg (gdbarch, regnum - maxregs); |
5d502164 | 215 | |
63022984 | 216 | gdb_assert (reg != NULL); |
123dc839 | 217 | return reg->read (frame, reg->baton); |
eb8bc282 AC |
218 | } |
219 | ||
f5b95c01 | 220 | static void |
4d4589ef | 221 | maintenance_print_user_registers (const char *args, int from_tty) |
f5b95c01 AA |
222 | { |
223 | struct gdbarch *gdbarch = get_current_arch (); | |
224 | struct gdb_user_regs *regs; | |
225 | struct user_reg *reg; | |
226 | int regnum; | |
227 | ||
19ba03f4 | 228 | regs = (struct gdb_user_regs *) gdbarch_data (gdbarch, user_regs_data); |
f6efe3f8 | 229 | regnum = gdbarch_num_cooked_regs (gdbarch); |
f5b95c01 | 230 | |
25dda427 | 231 | fprintf_unfiltered (gdb_stdout, " %-11s %3s\n", "Name", "Nr"); |
f5b95c01 | 232 | for (reg = regs->first; reg != NULL; reg = reg->next, ++regnum) |
25dda427 | 233 | fprintf_unfiltered (gdb_stdout, " %-11s %3d\n", reg->name, regnum); |
f5b95c01 AA |
234 | } |
235 | ||
eb8bc282 AC |
236 | void |
237 | _initialize_user_regs (void) | |
238 | { | |
030f20e1 | 239 | user_regs_data = gdbarch_data_register_post_init (user_regs_init); |
f5b95c01 AA |
240 | |
241 | add_cmd ("user-registers", class_maintenance, | |
242 | maintenance_print_user_registers, | |
89549d7f | 243 | _("List the names of the current user registers."), |
f5b95c01 | 244 | &maintenanceprintlist); |
eb8bc282 | 245 | } |