GDB (xrefs)
/tmp/gdb-8.1/gdb/user-regs.c
Go to the documentation of this file.
1 /* User visible, per-frame registers, for GDB, the GNU debugger.
2 
3  Copyright (C) 2002-2018 Free Software Foundation, Inc.
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
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 "defs.h"
23 #include "user-regs.h"
24 #include "gdbtypes.h"
25 #include "frame.h"
26 #include "arch-utils.h"
27 #include "command.h"
28 #include "cli/cli-cmds.h"
29 
30 /* A table of user registers.
31 
32  User registers have regnum's that live above of the range [0
33  .. gdbarch_num_regs + gdbarch_num_pseudo_regs)
34  (which is controlled by the target).
35  The target should never see a user register's regnum value.
36 
37  Always append, never delete. By doing this, the relative regnum
38  (offset from gdbarch_num_regs + gdbarch_num_pseudo_regs)
39  assigned to each user register never changes. */
40 
41 struct user_reg
42 {
43  const char *name;
44  struct value *(*read) (struct frame_info * frame, const void *baton);
45  const void *baton;
46  struct user_reg *next;
47 };
48 
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 
56 {
57  struct user_reg *first;
58  struct user_reg **last;
59 };
60 
61 static void
62 append_user_reg (struct gdb_user_regs *regs, const char *name,
63  user_reg_read_ftype *read, const void *baton,
64  struct user_reg *reg)
65 {
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;
72  reg->baton = baton;
73  reg->next = NULL;
74  (*regs->last) = reg;
75  regs->last = &(*regs->last)->next;
76 }
77 
78 /* An array of the builtin user registers. */
79 
82 };
83 
84 void
86  const void *baton)
87 {
89  XNEW (struct user_reg));
90 }
91 
92 /* Per-architecture user registers. Start with the builtin user
93  registers and then, again, append. */
94 
96 
97 static void *
99 {
100  struct user_reg *reg;
101  struct gdb_user_regs *regs
103 
104  regs->last = &regs->first;
105  for (reg = builtin_user_regs.first; reg != NULL; reg = reg->next)
106  append_user_reg (regs, reg->name, reg->read, reg->baton,
108  return regs;
109 }
110 
111 void
112 user_reg_add (struct gdbarch *gdbarch, const char *name,
113  user_reg_read_ftype *read, const void *baton)
114 {
115  struct gdb_user_regs *regs
117 
118  if (regs == NULL)
119  {
120  /* ULGH, called during architecture initialization. Patch
121  things up. */
122  regs = (struct gdb_user_regs *) user_regs_init (gdbarch);
124  }
125  append_user_reg (regs, name, read, baton,
127 }
128 
129 int
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;
141  int maxregs = (gdbarch_num_regs (gdbarch)
143 
144  for (i = 0; i < maxregs; i++)
145  {
146  const char *regname = gdbarch_register_name (gdbarch, i);
147 
148  if (regname != NULL && len == strlen (regname)
149  && strncmp (regname, name, len) == 0)
150  {
151  return i;
152  }
153  }
154  }
155 
156  /* Search the user name space. */
157  {
158  struct gdb_user_regs *regs
160  struct user_reg *reg;
161  int nr;
162 
163  for (nr = 0, reg = regs->first; reg != NULL; reg = reg->next, nr++)
164  {
165  if ((len < 0 && strcmp (reg->name, name))
166  || (len == strlen (reg->name)
167  && strncmp (reg->name, name, len) == 0))
168  return gdbarch_num_regs (gdbarch)
170  }
171  }
172 
173  return -1;
174 }
175 
176 static struct user_reg *
177 usernum_to_user_reg (struct gdbarch *gdbarch, int usernum)
178 {
179  struct gdb_user_regs *regs
181  struct user_reg *reg;
182 
183  for (reg = regs->first; reg != NULL; reg = reg->next)
184  {
185  if (usernum == 0)
186  return reg;
187  usernum--;
188  }
189  return NULL;
190 }
191 
192 const char *
194 {
195  int maxregs = (gdbarch_num_regs (gdbarch)
197 
198  if (regnum < 0)
199  return NULL;
200  else if (regnum < maxregs)
202  else
203  {
204  struct user_reg *reg = usernum_to_user_reg (gdbarch, regnum - maxregs);
205  if (reg == NULL)
206  return NULL;
207  else
208  return reg->name;
209  }
210 }
211 
212 struct value *
213 value_of_user_reg (int regnum, struct frame_info *frame)
214 {
215  struct gdbarch *gdbarch = get_frame_arch (frame);
216  int maxregs = (gdbarch_num_regs (gdbarch)
218  struct user_reg *reg = usernum_to_user_reg (gdbarch, regnum - maxregs);
219 
220  gdb_assert (reg != NULL);
221  return reg->read (frame, reg->baton);
222 }
223 
224 static void
225 maintenance_print_user_registers (const char *args, int from_tty)
226 {
227  struct gdbarch *gdbarch = get_current_arch ();
228  struct gdb_user_regs *regs;
229  struct user_reg *reg;
230  int regnum;
231 
232  regs = (struct gdb_user_regs *) gdbarch_data (gdbarch, user_regs_data);
234 
235  fprintf_unfiltered (gdb_stdout, " %-11s %3s\n", "Name", "Nr");
236  for (reg = regs->first; reg != NULL; reg = reg->next, ++regnum)
237  fprintf_unfiltered (gdb_stdout, " %-11s %3d\n", reg->name, regnum);
238 }
239 
240 void
242 {
244 
245  add_cmd ("user-registers", class_maintenance,
247  _("List the names of the current user registers.\n"),
249 }
const char * user_reg_map_regnum_to_name(struct gdbarch *gdbarch, int regnum)
Definition: user-regs.c:193
ssize_t read(int fd, void *buf, size_t count)
Definition: expect-read1.c:26
struct user_reg * next
Definition: user-regs.c:46
struct value *() user_reg_read_ftype(struct frame_info *frame, const void *baton)
Definition: user-regs.h:59
const char * name
Definition: regdef.h:25
void _initialize_user_regs(void)
Definition: user-regs.c:241
static void append_user_reg(struct gdb_user_regs *regs, const char *name, user_reg_read_ftype *read, const void *baton, struct user_reg *reg)
Definition: user-regs.c:62
struct cmd_list_element * add_cmd(const char *name, enum command_class theclass, const char *doc, struct cmd_list_element **list)
Definition: cli-decode.c:262
int gdbarch_num_regs(struct gdbarch *gdbarch)
Definition: gdbarch.c:2039
#define _(String)
Definition: gdb_locale.h:35
#define GDBARCH_OBSTACK_ZALLOC(GDBARCH, TYPE)
Definition: gdbarch.h:1709
const void * baton
Definition: user-regs.c:45
static struct gdb_user_regs builtin_user_regs
Definition: user-regs.c:80
#define XNEW(T)
Definition: poison.h:109
int gdbarch_num_pseudo_regs(struct gdbarch *gdbarch)
Definition: gdbarch.c:2057
const char *const name
Definition: aarch64-tdep.c:76
static struct user_reg * usernum_to_user_reg(struct gdbarch *gdbarch, int usernum)
Definition: user-regs.c:177
static void * user_regs_init(struct gdbarch *gdbarch)
Definition: user-regs.c:98
void fprintf_unfiltered(struct ui_file *stream, const char *format,...)
Definition: utils.c:2018
static struct gdbarch_data * user_regs_data
Definition: user-regs.c:95
struct gdbarch * get_current_arch(void)
Definition: arch-utils.c:798
const char * gdbarch_register_name(struct gdbarch *gdbarch, int regnr)
Definition: gdbarch.c:2282
int regnum
Definition: aarch64-tdep.c:77
int user_reg_map_name_to_regnum(struct gdbarch *gdbarch, const char *name, int len)
Definition: user-regs.c:130
struct cmd_list_element * maintenanceprintlist
Definition: cli-cmds.c:143
Definition: regdef.h:22
#define gdb_assert(expr)
Definition: gdb_assert.h:32
Definition: value.c:169
const char * name
Definition: user-regs.c:43
void user_reg_add_builtin(const char *name, user_reg_read_ftype *read, const void *baton)
Definition: user-regs.c:85
static void maintenance_print_user_registers(const char *args, int from_tty)
Definition: user-regs.c:225
struct user_reg ** last
Definition: user-regs.c:58
void deprecated_set_gdbarch_data(struct gdbarch *gdbarch, struct gdbarch_data *data, void *pointer)
Definition: gdbarch.c:5155
struct user_reg * first
Definition: user-regs.c:57
void user_reg_add(struct gdbarch *gdbarch, const char *name, user_reg_read_ftype *read, const void *baton)
Definition: user-regs.c:112
struct value * value_of_user_reg(int regnum, struct frame_info *frame)
Definition: user-regs.c:213
struct gdbarch_data * gdbarch_data_register_post_init(gdbarch_data_post_init_ftype *post_init)
Definition: gdbarch.c:5136
struct gdbarch * get_frame_arch(struct frame_info *this_frame)
Definition: frame.c:2691
#define gdb_stdout
Definition: utils.h:340