[AArch64] SVE/FPSIMD fixup for big endian
[deliverable/binutils-gdb.git] / gdb / trad-frame.c
1 /* Traditional frame unwind support, for GDB the GNU Debugger.
2
3 Copyright (C) 2003-2020 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 struct 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 struct trad_frame_saved_reg *regs)
53 {
54 int numregs = gdbarch_num_cooked_regs (gdbarch);
55 for (int regnum = 0; regnum < numregs; regnum++)
56 {
57 regs[regnum].realreg = regnum;
58 regs[regnum].addr = -1;
59 regs[regnum].data = nullptr;
60 }
61 }
62
63 struct trad_frame_saved_reg *
64 trad_frame_alloc_saved_regs (struct gdbarch *gdbarch)
65 {
66 int numregs = gdbarch_num_cooked_regs (gdbarch);
67 struct trad_frame_saved_reg *this_saved_regs
68 = FRAME_OBSTACK_CALLOC (numregs, struct trad_frame_saved_reg);
69
70 trad_frame_reset_saved_regs (gdbarch, this_saved_regs);
71 return this_saved_regs;
72 }
73
74 /* A traditional frame is unwound by analysing the function prologue
75 and using the information gathered to track registers. For
76 non-optimized frames, the technique is reliable (just need to check
77 for all potential instruction sequences). */
78
79 struct trad_frame_saved_reg *
80 trad_frame_alloc_saved_regs (struct frame_info *this_frame)
81 {
82 struct gdbarch *gdbarch = get_frame_arch (this_frame);
83
84 return trad_frame_alloc_saved_regs (gdbarch);
85 }
86
87 enum { TF_REG_VALUE = -1, TF_REG_UNKNOWN = -2, TF_REG_VALUE_BYTES = -3 };
88
89 int
90 trad_frame_value_p (struct trad_frame_saved_reg this_saved_regs[], int regnum)
91 {
92 return (this_saved_regs[regnum].realreg == TF_REG_VALUE);
93 }
94
95 int
96 trad_frame_addr_p (struct trad_frame_saved_reg this_saved_regs[], int regnum)
97 {
98 return (this_saved_regs[regnum].realreg >= 0
99 && this_saved_regs[regnum].addr != -1);
100 }
101
102 int
103 trad_frame_realreg_p (struct trad_frame_saved_reg this_saved_regs[],
104 int regnum)
105 {
106 return (this_saved_regs[regnum].realreg >= 0
107 && this_saved_regs[regnum].addr == -1);
108 }
109
110 /* See trad-frame.h. */
111
112 bool
113 trad_frame_value_bytes_p (struct trad_frame_saved_reg this_saved_regs[],
114 int regnum)
115 {
116 return (this_saved_regs[regnum].realreg == TF_REG_VALUE_BYTES
117 && this_saved_regs[regnum].data != nullptr);
118 }
119
120 void
121 trad_frame_set_value (struct trad_frame_saved_reg this_saved_regs[],
122 int regnum, LONGEST val)
123 {
124 /* Make the REALREG invalid, indicating that the ADDR contains the
125 register's value. */
126 this_saved_regs[regnum].realreg = TF_REG_VALUE;
127 this_saved_regs[regnum].addr = val;
128 }
129
130 /* See trad-frame.h. */
131
132 void
133 trad_frame_set_realreg (struct trad_frame_saved_reg this_saved_regs[],
134 int regnum, int realreg)
135 {
136 this_saved_regs[regnum].realreg = realreg;
137 this_saved_regs[regnum].addr = -1;
138 }
139
140 /* See trad-frame.h. */
141
142 void
143 trad_frame_set_addr (struct trad_frame_saved_reg this_saved_regs[],
144 int regnum, CORE_ADDR addr)
145 {
146 this_saved_regs[regnum].realreg = regnum;
147 this_saved_regs[regnum].addr = addr;
148 }
149
150 void
151 trad_frame_set_reg_value (struct trad_frame_cache *this_trad_cache,
152 int regnum, LONGEST val)
153 {
154 /* External interface for users of trad_frame_cache
155 (who cannot access the prev_regs object directly). */
156 trad_frame_set_value (this_trad_cache->prev_regs, regnum, val);
157 }
158
159 void
160 trad_frame_set_reg_realreg (struct trad_frame_cache *this_trad_cache,
161 int regnum, int realreg)
162 {
163 trad_frame_set_realreg (this_trad_cache->prev_regs, regnum, realreg);
164 }
165
166 void
167 trad_frame_set_reg_addr (struct trad_frame_cache *this_trad_cache,
168 int regnum, CORE_ADDR addr)
169 {
170 trad_frame_set_addr (this_trad_cache->prev_regs, regnum, addr);
171 }
172
173 void
174 trad_frame_set_reg_regmap (struct trad_frame_cache *this_trad_cache,
175 const struct regcache_map_entry *regmap,
176 CORE_ADDR addr, size_t size)
177 {
178 struct gdbarch *gdbarch = get_frame_arch (this_trad_cache->this_frame);
179 int offs = 0, count;
180
181 for (; (count = regmap->count) != 0; regmap++)
182 {
183 int regno = regmap->regno;
184 int slot_size = regmap->size;
185
186 if (slot_size == 0 && regno != REGCACHE_MAP_SKIP)
187 slot_size = register_size (gdbarch, regno);
188
189 if (offs + slot_size > size)
190 break;
191
192 if (regno == REGCACHE_MAP_SKIP)
193 offs += count * slot_size;
194 else
195 for (; count--; regno++, offs += slot_size)
196 {
197 /* Mimic the semantics of regcache::transfer_regset if a
198 register slot's size does not match the size of a
199 register.
200
201 If a register slot is larger than a register, assume
202 the register's value is stored in the first N bytes of
203 the slot and ignore the remaining bytes.
204
205 If the register slot is smaller than the register,
206 assume that the slot contains the low N bytes of the
207 register's value. Since trad_frame assumes that
208 registers stored by address are sized according to the
209 register, read the low N bytes and zero-extend them to
210 generate a register value. */
211 if (slot_size >= register_size (gdbarch, regno))
212 trad_frame_set_reg_addr (this_trad_cache, regno, addr + offs);
213 else
214 {
215 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
216 gdb_byte buf[slot_size];
217
218 if (target_read_memory (addr + offs, buf, sizeof buf) == 0)
219 {
220 LONGEST val
221 = extract_unsigned_integer (buf, sizeof buf, byte_order);
222 trad_frame_set_reg_value (this_trad_cache, regno, val);
223 }
224 }
225 }
226 }
227 }
228
229 void
230 trad_frame_set_unknown (struct trad_frame_saved_reg this_saved_regs[],
231 int regnum)
232 {
233 /* Make the REALREG invalid, indicating that the value is not known. */
234 this_saved_regs[regnum].realreg = TF_REG_UNKNOWN;
235 this_saved_regs[regnum].addr = -1;
236 }
237
238 /* See trad-frame.h. */
239
240 void
241 trad_frame_set_value_bytes (struct trad_frame_saved_reg this_saved_regs[],
242 int regnum, const gdb_byte *bytes,
243 size_t size)
244 {
245 this_saved_regs[regnum].realreg = TF_REG_VALUE_BYTES;
246
247 /* Allocate the space and copy the data bytes. */
248 this_saved_regs[regnum].data = FRAME_OBSTACK_CALLOC (size, gdb_byte);
249 memcpy (this_saved_regs[regnum].data, bytes, size);
250 }
251
252 /* See trad-frame.h. */
253
254 void
255 trad_frame_set_reg_value_bytes (struct trad_frame_cache *this_trad_cache,
256 int regnum, const gdb_byte *bytes,
257 size_t size)
258 {
259 /* External interface for users of trad_frame_cache
260 (who cannot access the prev_regs object directly). */
261 trad_frame_set_value_bytes (this_trad_cache->prev_regs, regnum, bytes,
262 size);
263 }
264
265
266
267 struct value *
268 trad_frame_get_prev_register (struct frame_info *this_frame,
269 struct trad_frame_saved_reg this_saved_regs[],
270 int regnum)
271 {
272 if (trad_frame_addr_p (this_saved_regs, regnum))
273 /* The register was saved in memory. */
274 return frame_unwind_got_memory (this_frame, regnum,
275 this_saved_regs[regnum].addr);
276 else if (trad_frame_realreg_p (this_saved_regs, regnum))
277 return frame_unwind_got_register (this_frame, regnum,
278 this_saved_regs[regnum].realreg);
279 else if (trad_frame_value_p (this_saved_regs, regnum))
280 /* The register's value is available. */
281 return frame_unwind_got_constant (this_frame, regnum,
282 this_saved_regs[regnum].addr);
283 else if (trad_frame_value_bytes_p (this_saved_regs, regnum))
284 /* The register's value is available as a sequence of bytes. */
285 return frame_unwind_got_bytes (this_frame, regnum,
286 this_saved_regs[regnum].data);
287 else
288 return frame_unwind_got_optimized (this_frame, regnum);
289 }
290
291 struct value *
292 trad_frame_get_register (struct trad_frame_cache *this_trad_cache,
293 struct frame_info *this_frame,
294 int regnum)
295 {
296 return trad_frame_get_prev_register (this_frame, this_trad_cache->prev_regs,
297 regnum);
298 }
299
300 void
301 trad_frame_set_id (struct trad_frame_cache *this_trad_cache,
302 struct frame_id this_id)
303 {
304 this_trad_cache->this_id = this_id;
305 }
306
307 void
308 trad_frame_get_id (struct trad_frame_cache *this_trad_cache,
309 struct frame_id *this_id)
310 {
311 (*this_id) = this_trad_cache->this_id;
312 }
313
314 void
315 trad_frame_set_this_base (struct trad_frame_cache *this_trad_cache,
316 CORE_ADDR this_base)
317 {
318 this_trad_cache->this_base = this_base;
319 }
320
321 CORE_ADDR
322 trad_frame_get_this_base (struct trad_frame_cache *this_trad_cache)
323 {
324 return this_trad_cache->this_base;
325 }
This page took 0.046733 seconds and 5 git commands to generate.