* configure.ac: Switch license to GPLv3.
[deliverable/binutils-gdb.git] / gdb / user-regs.c
CommitLineData
eb8bc282
AC
1/* User visible, per-frame registers, for GDB, the GNU debugger.
2
6aba47ca 3 Copyright (C) 2002, 2003, 2004, 2007 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
11 the Free Software Foundation; either version 2 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, write to the Free Software
197e01b6
EZ
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
eb8bc282
AC
23
24#include "defs.h"
25#include "user-regs.h"
26#include "gdbtypes.h"
27#include "gdb_string.h"
28#include "gdb_assert.h"
29#include "frame.h"
30
31/* A table of user registers.
32
33 User registers have regnum's that live above of the range [0
f57d151a
UW
34 .. gdbarch_num_regs + gdbarch_num_pseudo_regs)
35 (which is controlled by the target).
eb8bc282
AC
36 The target should never see a user register's regnum value.
37
38 Always append, never delete. By doing this, the relative regnum
f57d151a
UW
39 (offset from gdbarch_num_regs + gdbarch_num_pseudo_regs)
40 assigned to each user register never changes. */
eb8bc282
AC
41
42struct user_reg
43{
44 const char *name;
123dc839
DJ
45 struct value *(*read) (struct frame_info * frame, const void *baton);
46 const void *baton;
63022984 47 struct user_reg *next;
eb8bc282
AC
48};
49
8b9740d8
DJ
50/* This structure is named gdb_user_regs instead of user_regs to avoid
51 conflicts with any "struct user_regs" in system headers. For instance,
52 on ARM GNU/Linux native builds, nm-linux.h includes <signal.h> includes
53 <sys/ucontext.h> includes <sys/procfs.h> includes <sys/user.h>, which
54 declares "struct user_regs". */
55
56struct gdb_user_regs
eb8bc282 57{
63022984
AC
58 struct user_reg *first;
59 struct user_reg **last;
eb8bc282
AC
60};
61
62static void
8b9740d8 63append_user_reg (struct gdb_user_regs *regs, const char *name,
123dc839
DJ
64 user_reg_read_ftype *read, const void *baton,
65 struct user_reg *reg)
eb8bc282 66{
63022984
AC
67 /* The caller is responsible for allocating memory needed to store
68 the register. By doing this, the function can operate on a
69 register list stored in the common heap or a specific obstack. */
70 gdb_assert (reg != NULL);
71 reg->name = name;
72 reg->read = read;
123dc839 73 reg->baton = baton;
63022984
AC
74 reg->next = NULL;
75 (*regs->last) = reg;
76 regs->last = &(*regs->last)->next;
eb8bc282
AC
77}
78
79/* An array of the builtin user registers. */
80
8b9740d8 81static struct gdb_user_regs builtin_user_regs = { NULL, &builtin_user_regs.first };
eb8bc282
AC
82
83void
123dc839
DJ
84user_reg_add_builtin (const char *name, user_reg_read_ftype *read,
85 const void *baton)
eb8bc282 86{
123dc839 87 append_user_reg (&builtin_user_regs, name, read, baton,
63022984 88 XMALLOC (struct user_reg));
eb8bc282
AC
89}
90
91/* Per-architecture user registers. Start with the builtin user
92 registers and then, again, append. */
93
94static struct gdbarch_data *user_regs_data;
95
96static void *
97user_regs_init (struct gdbarch *gdbarch)
98{
63022984 99 struct user_reg *reg;
8b9740d8 100 struct gdb_user_regs *regs = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct gdb_user_regs);
63022984
AC
101 regs->last = &regs->first;
102 for (reg = builtin_user_regs.first; reg != NULL; reg = reg->next)
123dc839 103 append_user_reg (regs, reg->name, reg->read, reg->baton,
63022984 104 GDBARCH_OBSTACK_ZALLOC (gdbarch, struct user_reg));
eb8bc282
AC
105 return regs;
106}
107
eb8bc282
AC
108void
109user_reg_add (struct gdbarch *gdbarch, const char *name,
123dc839 110 user_reg_read_ftype *read, const void *baton)
eb8bc282 111{
8b9740d8 112 struct gdb_user_regs *regs = gdbarch_data (gdbarch, user_regs_data);
eb8bc282
AC
113 if (regs == NULL)
114 {
115 /* ULGH, called during architecture initialization. Patch
116 things up. */
117 regs = user_regs_init (gdbarch);
030f20e1 118 deprecated_set_gdbarch_data (gdbarch, user_regs_data, regs);
eb8bc282 119 }
123dc839 120 append_user_reg (regs, name, read, baton,
63022984 121 GDBARCH_OBSTACK_ZALLOC (gdbarch, struct user_reg));
eb8bc282
AC
122}
123
124int
125user_reg_map_name_to_regnum (struct gdbarch *gdbarch, const char *name,
126 int len)
127{
128 /* Make life easy, set the len to something reasonable. */
129 if (len < 0)
130 len = strlen (name);
131
132 /* Search register name space first - always let an architecture
133 specific register override the user registers. */
134 {
135 int i;
136 int maxregs = (gdbarch_num_regs (gdbarch)
137 + gdbarch_num_pseudo_regs (gdbarch));
138 for (i = 0; i < maxregs; i++)
139 {
140 const char *regname = gdbarch_register_name (gdbarch, i);
141 if (regname != NULL && len == strlen (regname)
142 && strncmp (regname, name, len) == 0)
143 {
144 return i;
145 }
146 }
147 }
148
149 /* Search the user name space. */
150 {
8b9740d8 151 struct gdb_user_regs *regs = gdbarch_data (gdbarch, user_regs_data);
63022984
AC
152 struct user_reg *reg;
153 int nr;
154 for (nr = 0, reg = regs->first; reg != NULL; reg = reg->next, nr++)
eb8bc282 155 {
63022984
AC
156 if ((len < 0 && strcmp (reg->name, name))
157 || (len == strlen (reg->name)
158 && strncmp (reg->name, name, len) == 0))
f57d151a
UW
159 return gdbarch_num_regs (current_gdbarch)
160 + gdbarch_num_pseudo_regs (current_gdbarch) + nr;
eb8bc282
AC
161 }
162 }
163
164 return -1;
165}
166
63022984
AC
167static struct user_reg *
168usernum_to_user_reg (struct gdbarch *gdbarch, int usernum)
169{
8b9740d8 170 struct gdb_user_regs *regs = gdbarch_data (gdbarch, user_regs_data);
63022984
AC
171 struct user_reg *reg;
172 for (reg = regs->first; reg != NULL; reg = reg->next)
173 {
174 if (usernum == 0)
175 return reg;
176 usernum--;
177 }
178 return NULL;
179}
180
eb8bc282
AC
181const char *
182user_reg_map_regnum_to_name (struct gdbarch *gdbarch, int regnum)
183{
184 int maxregs = (gdbarch_num_regs (gdbarch)
185 + gdbarch_num_pseudo_regs (gdbarch));
eb8bc282
AC
186 if (regnum < 0)
187 return NULL;
63022984 188 else if (regnum < maxregs)
eb8bc282 189 return gdbarch_register_name (gdbarch, regnum);
63022984
AC
190 else
191 {
192 struct user_reg *reg = usernum_to_user_reg (gdbarch, regnum - maxregs);
193 if (reg == NULL)
194 return NULL;
195 else
196 return reg->name;
197 }
eb8bc282
AC
198}
199
200struct value *
201value_of_user_reg (int regnum, struct frame_info *frame)
202{
203 struct gdbarch *gdbarch = get_frame_arch (frame);
63022984
AC
204 int maxregs = (gdbarch_num_regs (gdbarch)
205 + gdbarch_num_pseudo_regs (gdbarch));
206 struct user_reg *reg = usernum_to_user_reg (gdbarch, regnum - maxregs);
207 gdb_assert (reg != NULL);
123dc839 208 return reg->read (frame, reg->baton);
eb8bc282
AC
209}
210
211extern initialize_file_ftype _initialize_user_regs; /* -Wmissing-prototypes */
212
213void
214_initialize_user_regs (void)
215{
030f20e1 216 user_regs_data = gdbarch_data_register_post_init (user_regs_init);
eb8bc282 217}
This page took 0.420856 seconds and 4 git commands to generate.