* elf-vxworks.c (elf_vxworks_emit_relocs): Remap weakdef PLT slot
[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
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;
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
55struct gdb_user_regs
eb8bc282 56{
63022984
AC
57 struct user_reg *first;
58 struct user_reg **last;
eb8bc282
AC
59};
60
61static void
8b9740d8 62append_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
8b9740d8 80static struct gdb_user_regs builtin_user_regs = { NULL, &builtin_user_regs.first };
eb8bc282
AC
81
82void
123dc839
DJ
83user_reg_add_builtin (const char *name, user_reg_read_ftype *read,
84 const void *baton)
eb8bc282 85{
123dc839 86 append_user_reg (&builtin_user_regs, name, read, baton,
63022984 87 XMALLOC (struct user_reg));
eb8bc282
AC
88}
89
90/* Per-architecture user registers. Start with the builtin user
91 registers and then, again, append. */
92
93static struct gdbarch_data *user_regs_data;
94
95static void *
96user_regs_init (struct gdbarch *gdbarch)
97{
63022984 98 struct user_reg *reg;
8b9740d8 99 struct gdb_user_regs *regs = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct gdb_user_regs);
63022984
AC
100 regs->last = &regs->first;
101 for (reg = builtin_user_regs.first; reg != NULL; reg = reg->next)
123dc839 102 append_user_reg (regs, reg->name, reg->read, reg->baton,
63022984 103 GDBARCH_OBSTACK_ZALLOC (gdbarch, struct user_reg));
eb8bc282
AC
104 return regs;
105}
106
eb8bc282
AC
107void
108user_reg_add (struct gdbarch *gdbarch, const char *name,
123dc839 109 user_reg_read_ftype *read, const void *baton)
eb8bc282 110{
8b9740d8 111 struct gdb_user_regs *regs = gdbarch_data (gdbarch, user_regs_data);
eb8bc282
AC
112 if (regs == NULL)
113 {
114 /* ULGH, called during architecture initialization. Patch
115 things up. */
116 regs = user_regs_init (gdbarch);
030f20e1 117 deprecated_set_gdbarch_data (gdbarch, user_regs_data, regs);
eb8bc282 118 }
123dc839 119 append_user_reg (regs, name, read, baton,
63022984 120 GDBARCH_OBSTACK_ZALLOC (gdbarch, struct user_reg));
eb8bc282
AC
121}
122
123int
124user_reg_map_name_to_regnum (struct gdbarch *gdbarch, const char *name,
125 int len)
126{
127 /* Make life easy, set the len to something reasonable. */
128 if (len < 0)
129 len = strlen (name);
130
131 /* Search register name space first - always let an architecture
132 specific register override the user registers. */
133 {
134 int i;
135 int maxregs = (gdbarch_num_regs (gdbarch)
136 + gdbarch_num_pseudo_regs (gdbarch));
137 for (i = 0; i < maxregs; i++)
138 {
139 const char *regname = gdbarch_register_name (gdbarch, i);
140 if (regname != NULL && len == strlen (regname)
141 && strncmp (regname, name, len) == 0)
142 {
143 return i;
144 }
145 }
146 }
147
148 /* Search the user name space. */
149 {
8b9740d8 150 struct gdb_user_regs *regs = gdbarch_data (gdbarch, user_regs_data);
63022984
AC
151 struct user_reg *reg;
152 int nr;
153 for (nr = 0, reg = regs->first; reg != NULL; reg = reg->next, nr++)
eb8bc282 154 {
63022984
AC
155 if ((len < 0 && strcmp (reg->name, name))
156 || (len == strlen (reg->name)
157 && strncmp (reg->name, name, len) == 0))
158 return NUM_REGS + NUM_PSEUDO_REGS + nr;
eb8bc282
AC
159 }
160 }
161
162 return -1;
163}
164
63022984
AC
165static struct user_reg *
166usernum_to_user_reg (struct gdbarch *gdbarch, int usernum)
167{
8b9740d8 168 struct gdb_user_regs *regs = gdbarch_data (gdbarch, user_regs_data);
63022984
AC
169 struct user_reg *reg;
170 for (reg = regs->first; reg != NULL; reg = reg->next)
171 {
172 if (usernum == 0)
173 return reg;
174 usernum--;
175 }
176 return NULL;
177}
178
eb8bc282
AC
179const char *
180user_reg_map_regnum_to_name (struct gdbarch *gdbarch, int regnum)
181{
182 int maxregs = (gdbarch_num_regs (gdbarch)
183 + gdbarch_num_pseudo_regs (gdbarch));
eb8bc282
AC
184 if (regnum < 0)
185 return NULL;
63022984 186 else if (regnum < maxregs)
eb8bc282 187 return gdbarch_register_name (gdbarch, regnum);
63022984
AC
188 else
189 {
190 struct user_reg *reg = usernum_to_user_reg (gdbarch, regnum - maxregs);
191 if (reg == NULL)
192 return NULL;
193 else
194 return reg->name;
195 }
eb8bc282
AC
196}
197
198struct value *
199value_of_user_reg (int regnum, struct frame_info *frame)
200{
201 struct gdbarch *gdbarch = get_frame_arch (frame);
63022984
AC
202 int maxregs = (gdbarch_num_regs (gdbarch)
203 + gdbarch_num_pseudo_regs (gdbarch));
204 struct user_reg *reg = usernum_to_user_reg (gdbarch, regnum - maxregs);
205 gdb_assert (reg != NULL);
123dc839 206 return reg->read (frame, reg->baton);
eb8bc282
AC
207}
208
209extern initialize_file_ftype _initialize_user_regs; /* -Wmissing-prototypes */
210
211void
212_initialize_user_regs (void)
213{
030f20e1 214 user_regs_data = gdbarch_data_register_post_init (user_regs_init);
eb8bc282 215}
This page took 0.532995 seconds and 4 git commands to generate.