Refactor struct trad_frame_saved_regs
[deliverable/binutils-gdb.git] / gdb / trad-frame.c
1 /* Traditional frame unwind support, for GDB the GNU Debugger.
2
3 Copyright (C) 2003-2021 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21 #include "frame.h"
22 #include "trad-frame.h"
23 #include "regcache.h"
24 #include "frame-unwind.h"
25 #include "target.h"
26 #include "value.h"
27 #include "gdbarch.h"
28
29 struct trad_frame_cache
30 {
31 struct frame_info *this_frame;
32 CORE_ADDR this_base;
33 trad_frame_saved_reg *prev_regs;
34 struct frame_id this_id;
35 };
36
37 struct trad_frame_cache *
38 trad_frame_cache_zalloc (struct frame_info *this_frame)
39 {
40 struct trad_frame_cache *this_trad_cache;
41
42 this_trad_cache = FRAME_OBSTACK_ZALLOC (struct trad_frame_cache);
43 this_trad_cache->prev_regs = trad_frame_alloc_saved_regs (this_frame);
44 this_trad_cache->this_frame = this_frame;
45 return this_trad_cache;
46 }
47
48 /* See trad-frame.h. */
49
50 void
51 trad_frame_reset_saved_regs (struct gdbarch *gdbarch,
52 trad_frame_saved_reg *regs)
53 {
54 int numregs = gdbarch_num_cooked_regs (gdbarch);
55
56 for (int regnum = 0; regnum < numregs; regnum++)
57 regs[regnum].set_realreg (regnum);
58 }
59
60 trad_frame_saved_reg *
61 trad_frame_alloc_saved_regs (struct gdbarch *gdbarch)
62 {
63 gdb_static_assert (std::is_trivially_default_constructible<trad_frame_saved_reg>::value);
64
65 int numregs = gdbarch_num_cooked_regs (gdbarch);
66 trad_frame_saved_reg *this_saved_regs
67 = FRAME_OBSTACK_CALLOC (numregs, trad_frame_saved_reg);
68
69 trad_frame_reset_saved_regs (gdbarch, this_saved_regs);
70 return this_saved_regs;
71 }
72
73 /* A traditional frame is unwound by analysing the function prologue
74 and using the information gathered to track registers. For
75 non-optimized frames, the technique is reliable (just need to check
76 for all potential instruction sequences). */
77
78 trad_frame_saved_reg *
79 trad_frame_alloc_saved_regs (struct frame_info *this_frame)
80 {
81 struct gdbarch *gdbarch = get_frame_arch (this_frame);
82
83 return trad_frame_alloc_saved_regs (gdbarch);
84 }
85
86 int
87 trad_frame_value_p (trad_frame_saved_reg this_saved_regs[], int regnum)
88 {
89 return this_saved_regs[regnum].is_value ();
90 }
91
92 int
93 trad_frame_addr_p (trad_frame_saved_reg this_saved_regs[], int regnum)
94 {
95 return this_saved_regs[regnum].is_addr ();
96 }
97
98 int
99 trad_frame_realreg_p (trad_frame_saved_reg this_saved_regs[],
100 int regnum)
101 {
102 return this_saved_regs[regnum].is_realreg ();
103 }
104
105 /* See trad-frame.h. */
106
107 bool
108 trad_frame_value_bytes_p (trad_frame_saved_reg this_saved_regs[],
109 int regnum)
110 {
111 return this_saved_regs[regnum].is_value_bytes ();
112 }
113
114 void
115 trad_frame_set_value (trad_frame_saved_reg this_saved_regs[],
116 int regnum, LONGEST val)
117 {
118 this_saved_regs[regnum].set_value (val);
119 }
120
121 /* See trad-frame.h. */
122
123 void
124 trad_frame_set_realreg (trad_frame_saved_reg this_saved_regs[],
125 int regnum, int realreg)
126 {
127 this_saved_regs[regnum].set_realreg (realreg);
128 }
129
130 /* See trad-frame.h. */
131
132 void
133 trad_frame_set_addr (trad_frame_saved_reg this_saved_regs[],
134 int regnum, CORE_ADDR addr)
135 {
136 this_saved_regs[regnum].set_addr (addr);
137 }
138
139 void
140 trad_frame_set_reg_value (struct trad_frame_cache *this_trad_cache,
141 int regnum, LONGEST val)
142 {
143 /* External interface for users of trad_frame_cache
144 (who cannot access the prev_regs object directly). */
145 trad_frame_set_value (this_trad_cache->prev_regs, regnum, val);
146 }
147
148 void
149 trad_frame_set_reg_realreg (struct trad_frame_cache *this_trad_cache,
150 int regnum, int realreg)
151 {
152 trad_frame_set_realreg (this_trad_cache->prev_regs, regnum, realreg);
153 }
154
155 void
156 trad_frame_set_reg_addr (struct trad_frame_cache *this_trad_cache,
157 int regnum, CORE_ADDR addr)
158 {
159 trad_frame_set_addr (this_trad_cache->prev_regs, regnum, addr);
160 }
161
162 void
163 trad_frame_set_reg_regmap (struct trad_frame_cache *this_trad_cache,
164 const struct regcache_map_entry *regmap,
165 CORE_ADDR addr, size_t size)
166 {
167 struct gdbarch *gdbarch = get_frame_arch (this_trad_cache->this_frame);
168 int offs = 0, count;
169
170 for (; (count = regmap->count) != 0; regmap++)
171 {
172 int regno = regmap->regno;
173 int slot_size = regmap->size;
174
175 if (slot_size == 0 && regno != REGCACHE_MAP_SKIP)
176 slot_size = register_size (gdbarch, regno);
177
178 if (offs + slot_size > size)
179 break;
180
181 if (regno == REGCACHE_MAP_SKIP)
182 offs += count * slot_size;
183 else
184 for (; count--; regno++, offs += slot_size)
185 {
186 /* Mimic the semantics of regcache::transfer_regset if a
187 register slot's size does not match the size of a
188 register.
189
190 If a register slot is larger than a register, assume
191 the register's value is stored in the first N bytes of
192 the slot and ignore the remaining bytes.
193
194 If the register slot is smaller than the register,
195 assume that the slot contains the low N bytes of the
196 register's value. Since trad_frame assumes that
197 registers stored by address are sized according to the
198 register, read the low N bytes and zero-extend them to
199 generate a register value. */
200 if (slot_size >= register_size (gdbarch, regno))
201 trad_frame_set_reg_addr (this_trad_cache, regno, addr + offs);
202 else
203 {
204 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
205 gdb_byte buf[slot_size];
206
207 if (target_read_memory (addr + offs, buf, sizeof buf) == 0)
208 {
209 LONGEST val
210 = extract_unsigned_integer (buf, sizeof buf, byte_order);
211 trad_frame_set_reg_value (this_trad_cache, regno, val);
212 }
213 }
214 }
215 }
216 }
217
218 void
219 trad_frame_set_unknown (trad_frame_saved_reg this_saved_regs[],
220 int regnum)
221 {
222 this_saved_regs[regnum].set_unknown ();
223 }
224
225 /* See trad-frame.h. */
226
227 void
228 trad_frame_set_value_bytes (trad_frame_saved_reg this_saved_regs[],
229 int regnum, const gdb_byte *bytes,
230 size_t size)
231 {
232 /* Allocate the space and copy the data bytes. */
233 gdb_byte *data = FRAME_OBSTACK_CALLOC (size, gdb_byte);
234 memcpy (data, bytes, size);
235 this_saved_regs[regnum].set_value_bytes (data);
236 }
237
238 /* See trad-frame.h. */
239
240 void
241 trad_frame_set_reg_value_bytes (struct trad_frame_cache *this_trad_cache,
242 int regnum, const gdb_byte *bytes,
243 size_t size)
244 {
245 /* External interface for users of trad_frame_cache
246 (who cannot access the prev_regs object directly). */
247 trad_frame_set_value_bytes (this_trad_cache->prev_regs, regnum, bytes,
248 size);
249 }
250
251
252
253 struct value *
254 trad_frame_get_prev_register (struct frame_info *this_frame,
255 trad_frame_saved_reg this_saved_regs[],
256 int regnum)
257 {
258 if (trad_frame_addr_p (this_saved_regs, regnum))
259 /* The register was saved in memory. */
260 return frame_unwind_got_memory (this_frame, regnum,
261 this_saved_regs[regnum].addr ());
262 else if (trad_frame_realreg_p (this_saved_regs, regnum))
263 return frame_unwind_got_register (this_frame, regnum,
264 this_saved_regs[regnum].realreg ());
265 else if (trad_frame_value_p (this_saved_regs, regnum))
266 /* The register's value is available. */
267 return frame_unwind_got_constant (this_frame, regnum,
268 this_saved_regs[regnum].value ());
269 else if (trad_frame_value_bytes_p (this_saved_regs, regnum))
270 /* The register's value is available as a sequence of bytes. */
271 return frame_unwind_got_bytes (this_frame, regnum,
272 this_saved_regs[regnum].value_bytes ());
273 else
274 return frame_unwind_got_optimized (this_frame, regnum);
275 }
276
277 struct value *
278 trad_frame_get_register (struct trad_frame_cache *this_trad_cache,
279 struct frame_info *this_frame,
280 int regnum)
281 {
282 return trad_frame_get_prev_register (this_frame, this_trad_cache->prev_regs,
283 regnum);
284 }
285
286 void
287 trad_frame_set_id (struct trad_frame_cache *this_trad_cache,
288 struct frame_id this_id)
289 {
290 this_trad_cache->this_id = this_id;
291 }
292
293 void
294 trad_frame_get_id (struct trad_frame_cache *this_trad_cache,
295 struct frame_id *this_id)
296 {
297 (*this_id) = this_trad_cache->this_id;
298 }
299
300 void
301 trad_frame_set_this_base (struct trad_frame_cache *this_trad_cache,
302 CORE_ADDR this_base)
303 {
304 this_trad_cache->this_base = this_base;
305 }
306
307 CORE_ADDR
308 trad_frame_get_this_base (struct trad_frame_cache *this_trad_cache)
309 {
310 return this_trad_cache->this_base;
311 }
This page took 0.037585 seconds and 4 git commands to generate.