*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / user-regs.c
CommitLineData
eb8bc282
AC
1/* User visible, per-frame registers, for GDB, the GNU debugger.
2
3 Copyright 2002 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 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
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
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
34 .. NUM_REGS + NUM_PSEUDO_REGS) (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 NUM_REGS + NUM_PSEUDO_REGS) assigned to each user
39 register never changes. */
40
41struct user_reg
42{
43 const char *name;
44 struct value *(*read) (struct frame_info * frame);
63022984 45 struct user_reg *next;
eb8bc282
AC
46};
47
48struct user_regs
49{
63022984
AC
50 struct user_reg *first;
51 struct user_reg **last;
eb8bc282
AC
52};
53
54static void
63022984
AC
55append_user_reg (struct user_regs *regs, const char *name,
56 user_reg_read_ftype *read, struct user_reg *reg)
eb8bc282 57{
63022984
AC
58 /* The caller is responsible for allocating memory needed to store
59 the register. By doing this, the function can operate on a
60 register list stored in the common heap or a specific obstack. */
61 gdb_assert (reg != NULL);
62 reg->name = name;
63 reg->read = read;
64 reg->next = NULL;
65 (*regs->last) = reg;
66 regs->last = &(*regs->last)->next;
eb8bc282
AC
67}
68
69/* An array of the builtin user registers. */
70
63022984 71static struct user_regs builtin_user_regs = { NULL, &builtin_user_regs.first };
eb8bc282
AC
72
73void
74user_reg_add_builtin (const char *name, user_reg_read_ftype *read)
75{
63022984
AC
76 append_user_reg (&builtin_user_regs, name, read,
77 XMALLOC (struct user_reg));
eb8bc282
AC
78}
79
80/* Per-architecture user registers. Start with the builtin user
81 registers and then, again, append. */
82
83static struct gdbarch_data *user_regs_data;
84
85static void *
86user_regs_init (struct gdbarch *gdbarch)
87{
63022984
AC
88 struct user_reg *reg;
89 struct user_regs *regs = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct user_regs);
90 regs->last = &regs->first;
91 for (reg = builtin_user_regs.first; reg != NULL; reg = reg->next)
92 append_user_reg (regs, reg->name, reg->read,
93 GDBARCH_OBSTACK_ZALLOC (gdbarch, struct user_reg));
eb8bc282
AC
94 return regs;
95}
96
eb8bc282
AC
97void
98user_reg_add (struct gdbarch *gdbarch, const char *name,
99 user_reg_read_ftype *read)
100{
101 struct user_regs *regs = gdbarch_data (gdbarch, user_regs_data);
102 if (regs == NULL)
103 {
104 /* ULGH, called during architecture initialization. Patch
105 things up. */
106 regs = user_regs_init (gdbarch);
107 set_gdbarch_data (gdbarch, user_regs_data, regs);
108 }
63022984
AC
109 append_user_reg (regs, name, read,
110 GDBARCH_OBSTACK_ZALLOC (gdbarch, struct user_reg));
eb8bc282
AC
111}
112
113int
114user_reg_map_name_to_regnum (struct gdbarch *gdbarch, const char *name,
115 int len)
116{
117 /* Make life easy, set the len to something reasonable. */
118 if (len < 0)
119 len = strlen (name);
120
121 /* Search register name space first - always let an architecture
122 specific register override the user registers. */
123 {
124 int i;
125 int maxregs = (gdbarch_num_regs (gdbarch)
126 + gdbarch_num_pseudo_regs (gdbarch));
127 for (i = 0; i < maxregs; i++)
128 {
129 const char *regname = gdbarch_register_name (gdbarch, i);
130 if (regname != NULL && len == strlen (regname)
131 && strncmp (regname, name, len) == 0)
132 {
133 return i;
134 }
135 }
136 }
137
138 /* Search the user name space. */
139 {
140 struct user_regs *regs = gdbarch_data (gdbarch, user_regs_data);
63022984
AC
141 struct user_reg *reg;
142 int nr;
143 for (nr = 0, reg = regs->first; reg != NULL; reg = reg->next, nr++)
eb8bc282 144 {
63022984
AC
145 if ((len < 0 && strcmp (reg->name, name))
146 || (len == strlen (reg->name)
147 && strncmp (reg->name, name, len) == 0))
148 return NUM_REGS + NUM_PSEUDO_REGS + nr;
eb8bc282
AC
149 }
150 }
151
152 return -1;
153}
154
63022984
AC
155static struct user_reg *
156usernum_to_user_reg (struct gdbarch *gdbarch, int usernum)
157{
158 struct user_regs *regs = gdbarch_data (gdbarch, user_regs_data);
159 struct user_reg *reg;
160 for (reg = regs->first; reg != NULL; reg = reg->next)
161 {
162 if (usernum == 0)
163 return reg;
164 usernum--;
165 }
166 return NULL;
167}
168
eb8bc282
AC
169const char *
170user_reg_map_regnum_to_name (struct gdbarch *gdbarch, int regnum)
171{
172 int maxregs = (gdbarch_num_regs (gdbarch)
173 + gdbarch_num_pseudo_regs (gdbarch));
eb8bc282
AC
174 if (regnum < 0)
175 return NULL;
63022984 176 else if (regnum < maxregs)
eb8bc282 177 return gdbarch_register_name (gdbarch, regnum);
63022984
AC
178 else
179 {
180 struct user_reg *reg = usernum_to_user_reg (gdbarch, regnum - maxregs);
181 if (reg == NULL)
182 return NULL;
183 else
184 return reg->name;
185 }
eb8bc282
AC
186}
187
188struct value *
189value_of_user_reg (int regnum, struct frame_info *frame)
190{
191 struct gdbarch *gdbarch = get_frame_arch (frame);
63022984
AC
192 int maxregs = (gdbarch_num_regs (gdbarch)
193 + gdbarch_num_pseudo_regs (gdbarch));
194 struct user_reg *reg = usernum_to_user_reg (gdbarch, regnum - maxregs);
195 gdb_assert (reg != NULL);
196 return reg->read (frame);
eb8bc282
AC
197}
198
199extern initialize_file_ftype _initialize_user_regs; /* -Wmissing-prototypes */
200
201void
202_initialize_user_regs (void)
203{
fcc1c85c 204 user_regs_data = register_gdbarch_data (user_regs_init);
eb8bc282 205}
This page took 0.089553 seconds and 4 git commands to generate.