Do not pass NULL to memcpy
[deliverable/binutils-gdb.git] / gdb / dwarf2-frame.c
CommitLineData
cfc14b3a
MK
1/* Frame unwinder for frames with DWARF Call Frame Information.
2
e2882c85 3 Copyright (C) 2003-2018 Free Software Foundation, Inc.
cfc14b3a
MK
4
5 Contributed by Mark Kettenis.
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
cfc14b3a
MK
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
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
cfc14b3a
MK
21
22#include "defs.h"
23#include "dwarf2expr.h"
fa8f86ff 24#include "dwarf2.h"
cfc14b3a
MK
25#include "frame.h"
26#include "frame-base.h"
27#include "frame-unwind.h"
28#include "gdbcore.h"
29#include "gdbtypes.h"
30#include "symtab.h"
31#include "objfiles.h"
32#include "regcache.h"
f2da6b3a 33#include "value.h"
0b722aec 34#include "record.h"
cfc14b3a 35
6896c0c7 36#include "complaints.h"
cfc14b3a 37#include "dwarf2-frame.h"
3c3bb058 38#include "dwarf2read.h"
9f6f94ff
TT
39#include "ax.h"
40#include "dwarf2loc.h"
111c6489 41#include "dwarf2-frame-tailcall.h"
1c90d9f0
YQ
42#if GDB_SELF_TEST
43#include "selftest.h"
44#include "selftest-arch.h"
45#endif
cfc14b3a 46
ae0d2f24
UW
47struct comp_unit;
48
cfc14b3a
MK
49/* Call Frame Information (CFI). */
50
51/* Common Information Entry (CIE). */
52
53struct dwarf2_cie
54{
ae0d2f24
UW
55 /* Computation Unit for this CIE. */
56 struct comp_unit *unit;
57
cfc14b3a
MK
58 /* Offset into the .debug_frame section where this CIE was found.
59 Used to identify this CIE. */
60 ULONGEST cie_pointer;
61
62 /* Constant that is factored out of all advance location
63 instructions. */
64 ULONGEST code_alignment_factor;
65
66 /* Constants that is factored out of all offset instructions. */
67 LONGEST data_alignment_factor;
68
69 /* Return address column. */
70 ULONGEST return_address_register;
71
72 /* Instruction sequence to initialize a register set. */
f664829e
DE
73 const gdb_byte *initial_instructions;
74 const gdb_byte *end;
cfc14b3a 75
303b6f5d
DJ
76 /* Saved augmentation, in case it's needed later. */
77 char *augmentation;
78
cfc14b3a 79 /* Encoding of addresses. */
852483bc 80 gdb_byte encoding;
cfc14b3a 81
ae0d2f24
UW
82 /* Target address size in bytes. */
83 int addr_size;
84
0963b4bd 85 /* Target pointer size in bytes. */
8da614df
CV
86 int ptr_size;
87
7131cb6e
RH
88 /* True if a 'z' augmentation existed. */
89 unsigned char saw_z_augmentation;
90
56c987f6
AO
91 /* True if an 'S' augmentation existed. */
92 unsigned char signal_frame;
93
303b6f5d
DJ
94 /* The version recorded in the CIE. */
95 unsigned char version;
2dc7f7b3
TT
96
97 /* The segment size. */
98 unsigned char segment_size;
b01c8410 99};
303b6f5d 100
b01c8410
PP
101struct dwarf2_cie_table
102{
103 int num_entries;
104 struct dwarf2_cie **entries;
cfc14b3a
MK
105};
106
107/* Frame Description Entry (FDE). */
108
109struct dwarf2_fde
110{
111 /* CIE for this FDE. */
112 struct dwarf2_cie *cie;
113
114 /* First location associated with this FDE. */
115 CORE_ADDR initial_location;
116
117 /* Number of bytes of program instructions described by this FDE. */
118 CORE_ADDR address_range;
119
120 /* Instruction sequence. */
f664829e
DE
121 const gdb_byte *instructions;
122 const gdb_byte *end;
cfc14b3a 123
4bf8967c
AS
124 /* True if this FDE is read from a .eh_frame instead of a .debug_frame
125 section. */
126 unsigned char eh_frame_p;
b01c8410 127};
4bf8967c 128
b01c8410
PP
129struct dwarf2_fde_table
130{
131 int num_entries;
132 struct dwarf2_fde **entries;
cfc14b3a
MK
133};
134
ae0d2f24
UW
135/* A minimal decoding of DWARF2 compilation units. We only decode
136 what's needed to get to the call frame information. */
137
138struct comp_unit
139{
140 /* Keep the bfd convenient. */
141 bfd *abfd;
142
143 struct objfile *objfile;
144
ae0d2f24 145 /* Pointer to the .debug_frame section loaded into memory. */
d521ce57 146 const gdb_byte *dwarf_frame_buffer;
ae0d2f24
UW
147
148 /* Length of the loaded .debug_frame section. */
c098b58b 149 bfd_size_type dwarf_frame_size;
ae0d2f24
UW
150
151 /* Pointer to the .debug_frame section. */
152 asection *dwarf_frame_section;
153
154 /* Base for DW_EH_PE_datarel encodings. */
155 bfd_vma dbase;
156
157 /* Base for DW_EH_PE_textrel encodings. */
158 bfd_vma tbase;
159};
160
ac56253d
TT
161static struct dwarf2_fde *dwarf2_frame_find_fde (CORE_ADDR *pc,
162 CORE_ADDR *out_offset);
4fc771b8
DJ
163
164static int dwarf2_frame_adjust_regnum (struct gdbarch *gdbarch, int regnum,
165 int eh_frame_p);
ae0d2f24
UW
166
167static CORE_ADDR read_encoded_value (struct comp_unit *unit, gdb_byte encoding,
0d45f56e 168 int ptr_len, const gdb_byte *buf,
ae0d2f24
UW
169 unsigned int *bytes_read_ptr,
170 CORE_ADDR func_base);
cfc14b3a
MK
171\f
172
3c3bb058
AB
173/* See dwarf2-frame.h. */
174int dwarf2_frame_unwinders_enabled_p = 1;
175
cfc14b3a
MK
176/* Store the length the expression for the CFA in the `cfa_reg' field,
177 which is unused in that case. */
178#define cfa_exp_len cfa_reg
179
afe37d6b
YQ
180dwarf2_frame_state::dwarf2_frame_state (CORE_ADDR pc_, struct dwarf2_cie *cie)
181 : pc (pc_), data_align (cie->data_alignment_factor),
182 code_align (cie->code_alignment_factor),
183 retaddr_column (cie->return_address_register)
cfc14b3a 184{
afe37d6b 185}
cfc14b3a
MK
186\f
187
188/* Helper functions for execute_stack_op. */
189
190static CORE_ADDR
192ca6d8 191read_addr_from_reg (struct frame_info *this_frame, int reg)
cfc14b3a 192{
4a4e5149 193 struct gdbarch *gdbarch = get_frame_arch (this_frame);
0fde2c53 194 int regnum = dwarf_reg_to_regnum_or_error (gdbarch, reg);
f2da6b3a 195
2ed3c037 196 return address_from_register (regnum, this_frame);
cfc14b3a
MK
197}
198
a6a5a945
LM
199/* Execute the required actions for both the DW_CFA_restore and
200DW_CFA_restore_extended instructions. */
201static void
202dwarf2_restore_rule (struct gdbarch *gdbarch, ULONGEST reg_num,
203 struct dwarf2_frame_state *fs, int eh_frame_p)
204{
205 ULONGEST reg;
206
207 gdb_assert (fs->initial.reg);
208 reg = dwarf2_frame_adjust_regnum (gdbarch, reg_num, eh_frame_p);
1c90d9f0 209 fs->regs.alloc_regs (reg + 1);
a6a5a945
LM
210
211 /* Check if this register was explicitly initialized in the
212 CIE initial instructions. If not, default the rule to
213 UNSPECIFIED. */
214 if (reg < fs->initial.num_regs)
215 fs->regs.reg[reg] = fs->initial.reg[reg];
216 else
217 fs->regs.reg[reg].how = DWARF2_FRAME_REG_UNSPECIFIED;
218
219 if (fs->regs.reg[reg].how == DWARF2_FRAME_REG_UNSPECIFIED)
0fde2c53
DE
220 {
221 int regnum = dwarf_reg_to_regnum (gdbarch, reg);
222
b98664d3 223 complaint (_("\
a6a5a945 224incomplete CFI data; DW_CFA_restore unspecified\n\
5af949e3 225register %s (#%d) at %s"),
0fde2c53
DE
226 gdbarch_register_name (gdbarch, regnum), regnum,
227 paddress (gdbarch, fs->pc));
228 }
a6a5a945
LM
229}
230
192ca6d8 231class dwarf_expr_executor : public dwarf_expr_context
9e8b7a03 232{
192ca6d8
TT
233 public:
234
235 struct frame_info *this_frame;
236
632e107b 237 CORE_ADDR read_addr_from_reg (int reg) override
192ca6d8
TT
238 {
239 return ::read_addr_from_reg (this_frame, reg);
240 }
241
632e107b 242 struct value *get_reg_value (struct type *type, int reg) override
192ca6d8
TT
243 {
244 struct gdbarch *gdbarch = get_frame_arch (this_frame);
245 int regnum = dwarf_reg_to_regnum_or_error (gdbarch, reg);
246
247 return value_from_register (type, regnum, this_frame);
248 }
249
632e107b 250 void read_mem (gdb_byte *buf, CORE_ADDR addr, size_t len) override
192ca6d8
TT
251 {
252 read_memory (addr, buf, len);
253 }
befbff86 254
632e107b 255 void get_frame_base (const gdb_byte **start, size_t *length) override
befbff86
TT
256 {
257 invalid ("DW_OP_fbreg");
258 }
259
260 void push_dwarf_reg_entry_value (enum call_site_parameter_kind kind,
261 union call_site_parameter_u kind_u,
632e107b 262 int deref_size) override
befbff86 263 {
216f72a1 264 invalid ("DW_OP_entry_value");
befbff86
TT
265 }
266
632e107b 267 CORE_ADDR get_object_address () override
befbff86
TT
268 {
269 invalid ("DW_OP_push_object_address");
270 }
271
632e107b 272 CORE_ADDR get_frame_cfa () override
befbff86
TT
273 {
274 invalid ("DW_OP_call_frame_cfa");
275 }
276
632e107b 277 CORE_ADDR get_tls_address (CORE_ADDR offset) override
befbff86
TT
278 {
279 invalid ("DW_OP_form_tls_address");
280 }
281
632e107b 282 void dwarf_call (cu_offset die_offset) override
befbff86
TT
283 {
284 invalid ("DW_OP_call*");
285 }
286
a6b786da
KB
287 struct value *dwarf_variable_value (sect_offset sect_off) override
288 {
289 invalid ("DW_OP_GNU_variable_value");
290 }
291
632e107b 292 CORE_ADDR get_addr_index (unsigned int index) override
befbff86
TT
293 {
294 invalid ("DW_OP_GNU_addr_index");
295 }
296
297 private:
298
299 void invalid (const char *op) ATTRIBUTE_NORETURN
300 {
301 error (_("%s is invalid in this context"), op);
302 }
9e8b7a03
JK
303};
304
cfc14b3a 305static CORE_ADDR
0d45f56e 306execute_stack_op (const gdb_byte *exp, ULONGEST len, int addr_size,
ac56253d
TT
307 CORE_ADDR offset, struct frame_info *this_frame,
308 CORE_ADDR initial, int initial_in_stack_memory)
cfc14b3a 309{
cfc14b3a
MK
310 CORE_ADDR result;
311
192ca6d8 312 dwarf_expr_executor ctx;
eb115069 313 scoped_value_mark free_values;
4a227398 314
192ca6d8 315 ctx.this_frame = this_frame;
718b9626
TT
316 ctx.gdbarch = get_frame_arch (this_frame);
317 ctx.addr_size = addr_size;
318 ctx.ref_addr_size = -1;
319 ctx.offset = offset;
cfc14b3a 320
595d2e30
TT
321 ctx.push_address (initial, initial_in_stack_memory);
322 ctx.eval (exp, len);
cfc14b3a 323
718b9626 324 if (ctx.location == DWARF_VALUE_MEMORY)
595d2e30 325 result = ctx.fetch_address (0);
718b9626 326 else if (ctx.location == DWARF_VALUE_REGISTER)
192ca6d8 327 result = ctx.read_addr_from_reg (value_as_long (ctx.fetch (0)));
f2c7657e 328 else
cec03d70
TT
329 {
330 /* This is actually invalid DWARF, but if we ever do run across
331 it somehow, we might as well support it. So, instead, report
332 it as unimplemented. */
3e43a32a
MS
333 error (_("\
334Not implemented: computing unwound register using explicit value operator"));
cec03d70 335 }
cfc14b3a 336
cfc14b3a
MK
337 return result;
338}
339\f
340
111c6489
JK
341/* Execute FDE program from INSN_PTR possibly up to INSN_END or up to inferior
342 PC. Modify FS state accordingly. Return current INSN_PTR where the
343 execution has stopped, one can resume it on the next call. */
344
345static const gdb_byte *
0d45f56e 346execute_cfa_program (struct dwarf2_fde *fde, const gdb_byte *insn_ptr,
9f6f94ff
TT
347 const gdb_byte *insn_end, struct gdbarch *gdbarch,
348 CORE_ADDR pc, struct dwarf2_frame_state *fs)
cfc14b3a 349{
ae0d2f24 350 int eh_frame_p = fde->eh_frame_p;
507a579c 351 unsigned int bytes_read;
e17a4113 352 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
cfc14b3a
MK
353
354 while (insn_ptr < insn_end && fs->pc <= pc)
355 {
852483bc 356 gdb_byte insn = *insn_ptr++;
9fccedf7
DE
357 uint64_t utmp, reg;
358 int64_t offset;
cfc14b3a
MK
359
360 if ((insn & 0xc0) == DW_CFA_advance_loc)
361 fs->pc += (insn & 0x3f) * fs->code_align;
362 else if ((insn & 0xc0) == DW_CFA_offset)
363 {
364 reg = insn & 0x3f;
4fc771b8 365 reg = dwarf2_frame_adjust_regnum (gdbarch, reg, eh_frame_p);
f664829e 366 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
cfc14b3a 367 offset = utmp * fs->data_align;
1c90d9f0 368 fs->regs.alloc_regs (reg + 1);
05cbe71a 369 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_OFFSET;
cfc14b3a
MK
370 fs->regs.reg[reg].loc.offset = offset;
371 }
372 else if ((insn & 0xc0) == DW_CFA_restore)
373 {
cfc14b3a 374 reg = insn & 0x3f;
a6a5a945 375 dwarf2_restore_rule (gdbarch, reg, fs, eh_frame_p);
cfc14b3a
MK
376 }
377 else
378 {
379 switch (insn)
380 {
381 case DW_CFA_set_loc:
ae0d2f24 382 fs->pc = read_encoded_value (fde->cie->unit, fde->cie->encoding,
8da614df 383 fde->cie->ptr_size, insn_ptr,
ae0d2f24
UW
384 &bytes_read, fde->initial_location);
385 /* Apply the objfile offset for relocatable objects. */
386 fs->pc += ANOFFSET (fde->cie->unit->objfile->section_offsets,
387 SECT_OFF_TEXT (fde->cie->unit->objfile));
cfc14b3a
MK
388 insn_ptr += bytes_read;
389 break;
390
391 case DW_CFA_advance_loc1:
e17a4113 392 utmp = extract_unsigned_integer (insn_ptr, 1, byte_order);
cfc14b3a
MK
393 fs->pc += utmp * fs->code_align;
394 insn_ptr++;
395 break;
396 case DW_CFA_advance_loc2:
e17a4113 397 utmp = extract_unsigned_integer (insn_ptr, 2, byte_order);
cfc14b3a
MK
398 fs->pc += utmp * fs->code_align;
399 insn_ptr += 2;
400 break;
401 case DW_CFA_advance_loc4:
e17a4113 402 utmp = extract_unsigned_integer (insn_ptr, 4, byte_order);
cfc14b3a
MK
403 fs->pc += utmp * fs->code_align;
404 insn_ptr += 4;
405 break;
406
407 case DW_CFA_offset_extended:
f664829e 408 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
4fc771b8 409 reg = dwarf2_frame_adjust_regnum (gdbarch, reg, eh_frame_p);
f664829e 410 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
cfc14b3a 411 offset = utmp * fs->data_align;
1c90d9f0 412 fs->regs.alloc_regs (reg + 1);
05cbe71a 413 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_OFFSET;
cfc14b3a
MK
414 fs->regs.reg[reg].loc.offset = offset;
415 break;
416
417 case DW_CFA_restore_extended:
f664829e 418 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
a6a5a945 419 dwarf2_restore_rule (gdbarch, reg, fs, eh_frame_p);
cfc14b3a
MK
420 break;
421
422 case DW_CFA_undefined:
f664829e 423 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
4fc771b8 424 reg = dwarf2_frame_adjust_regnum (gdbarch, reg, eh_frame_p);
1c90d9f0 425 fs->regs.alloc_regs (reg + 1);
05cbe71a 426 fs->regs.reg[reg].how = DWARF2_FRAME_REG_UNDEFINED;
cfc14b3a
MK
427 break;
428
429 case DW_CFA_same_value:
f664829e 430 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
4fc771b8 431 reg = dwarf2_frame_adjust_regnum (gdbarch, reg, eh_frame_p);
1c90d9f0 432 fs->regs.alloc_regs (reg + 1);
05cbe71a 433 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAME_VALUE;
cfc14b3a
MK
434 break;
435
436 case DW_CFA_register:
f664829e 437 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
4fc771b8 438 reg = dwarf2_frame_adjust_regnum (gdbarch, reg, eh_frame_p);
f664829e 439 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
4fc771b8 440 utmp = dwarf2_frame_adjust_regnum (gdbarch, utmp, eh_frame_p);
1c90d9f0 441 fs->regs.alloc_regs (reg + 1);
05cbe71a 442 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_REG;
cfc14b3a
MK
443 fs->regs.reg[reg].loc.reg = utmp;
444 break;
445
446 case DW_CFA_remember_state:
447 {
448 struct dwarf2_frame_state_reg_info *new_rs;
449
1c90d9f0 450 new_rs = new dwarf2_frame_state_reg_info (fs->regs);
cfc14b3a
MK
451 fs->regs.prev = new_rs;
452 }
453 break;
454
455 case DW_CFA_restore_state:
456 {
457 struct dwarf2_frame_state_reg_info *old_rs = fs->regs.prev;
458
50ea7769
MK
459 if (old_rs == NULL)
460 {
b98664d3 461 complaint (_("\
5af949e3
UW
462bad CFI data; mismatched DW_CFA_restore_state at %s"),
463 paddress (gdbarch, fs->pc));
50ea7769
MK
464 }
465 else
1c90d9f0 466 fs->regs = std::move (*old_rs);
cfc14b3a
MK
467 }
468 break;
469
470 case DW_CFA_def_cfa:
f664829e
DE
471 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
472 fs->regs.cfa_reg = reg;
473 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
303b6f5d
DJ
474
475 if (fs->armcc_cfa_offsets_sf)
476 utmp *= fs->data_align;
477
2fd481e1
PP
478 fs->regs.cfa_offset = utmp;
479 fs->regs.cfa_how = CFA_REG_OFFSET;
cfc14b3a
MK
480 break;
481
482 case DW_CFA_def_cfa_register:
f664829e
DE
483 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
484 fs->regs.cfa_reg = dwarf2_frame_adjust_regnum (gdbarch, reg,
2fd481e1
PP
485 eh_frame_p);
486 fs->regs.cfa_how = CFA_REG_OFFSET;
cfc14b3a
MK
487 break;
488
489 case DW_CFA_def_cfa_offset:
f664829e 490 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
303b6f5d
DJ
491
492 if (fs->armcc_cfa_offsets_sf)
493 utmp *= fs->data_align;
494
2fd481e1 495 fs->regs.cfa_offset = utmp;
cfc14b3a
MK
496 /* cfa_how deliberately not set. */
497 break;
498
a8504492
MK
499 case DW_CFA_nop:
500 break;
501
cfc14b3a 502 case DW_CFA_def_cfa_expression:
f664829e
DE
503 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
504 fs->regs.cfa_exp_len = utmp;
2fd481e1
PP
505 fs->regs.cfa_exp = insn_ptr;
506 fs->regs.cfa_how = CFA_EXP;
507 insn_ptr += fs->regs.cfa_exp_len;
cfc14b3a
MK
508 break;
509
510 case DW_CFA_expression:
f664829e 511 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
4fc771b8 512 reg = dwarf2_frame_adjust_regnum (gdbarch, reg, eh_frame_p);
1c90d9f0 513 fs->regs.alloc_regs (reg + 1);
f664829e 514 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
b348037f
YQ
515 fs->regs.reg[reg].loc.exp.start = insn_ptr;
516 fs->regs.reg[reg].loc.exp.len = utmp;
05cbe71a 517 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_EXP;
cfc14b3a
MK
518 insn_ptr += utmp;
519 break;
520
a8504492 521 case DW_CFA_offset_extended_sf:
f664829e 522 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
4fc771b8 523 reg = dwarf2_frame_adjust_regnum (gdbarch, reg, eh_frame_p);
f664829e 524 insn_ptr = safe_read_sleb128 (insn_ptr, insn_end, &offset);
f6da8dd8 525 offset *= fs->data_align;
1c90d9f0 526 fs->regs.alloc_regs (reg + 1);
05cbe71a 527 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_OFFSET;
a8504492
MK
528 fs->regs.reg[reg].loc.offset = offset;
529 break;
530
46ea248b 531 case DW_CFA_val_offset:
f664829e 532 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
1c90d9f0 533 fs->regs.alloc_regs (reg + 1);
f664829e 534 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
46ea248b
AO
535 offset = utmp * fs->data_align;
536 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_VAL_OFFSET;
537 fs->regs.reg[reg].loc.offset = offset;
538 break;
539
540 case DW_CFA_val_offset_sf:
f664829e 541 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
1c90d9f0 542 fs->regs.alloc_regs (reg + 1);
f664829e 543 insn_ptr = safe_read_sleb128 (insn_ptr, insn_end, &offset);
46ea248b
AO
544 offset *= fs->data_align;
545 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_VAL_OFFSET;
546 fs->regs.reg[reg].loc.offset = offset;
547 break;
548
549 case DW_CFA_val_expression:
f664829e 550 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
1c90d9f0 551 fs->regs.alloc_regs (reg + 1);
f664829e 552 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
b348037f
YQ
553 fs->regs.reg[reg].loc.exp.start = insn_ptr;
554 fs->regs.reg[reg].loc.exp.len = utmp;
46ea248b
AO
555 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_VAL_EXP;
556 insn_ptr += utmp;
557 break;
558
a8504492 559 case DW_CFA_def_cfa_sf:
f664829e
DE
560 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
561 fs->regs.cfa_reg = dwarf2_frame_adjust_regnum (gdbarch, reg,
2fd481e1 562 eh_frame_p);
f664829e 563 insn_ptr = safe_read_sleb128 (insn_ptr, insn_end, &offset);
2fd481e1
PP
564 fs->regs.cfa_offset = offset * fs->data_align;
565 fs->regs.cfa_how = CFA_REG_OFFSET;
a8504492
MK
566 break;
567
568 case DW_CFA_def_cfa_offset_sf:
f664829e 569 insn_ptr = safe_read_sleb128 (insn_ptr, insn_end, &offset);
2fd481e1 570 fs->regs.cfa_offset = offset * fs->data_align;
a8504492 571 /* cfa_how deliberately not set. */
cfc14b3a
MK
572 break;
573
574 case DW_CFA_GNU_args_size:
575 /* Ignored. */
f664829e 576 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
cfc14b3a
MK
577 break;
578
58894217 579 case DW_CFA_GNU_negative_offset_extended:
f664829e 580 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &reg);
4fc771b8 581 reg = dwarf2_frame_adjust_regnum (gdbarch, reg, eh_frame_p);
507a579c
PA
582 insn_ptr = safe_read_uleb128 (insn_ptr, insn_end, &utmp);
583 offset = utmp * fs->data_align;
1c90d9f0 584 fs->regs.alloc_regs (reg + 1);
58894217
JK
585 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_OFFSET;
586 fs->regs.reg[reg].loc.offset = -offset;
587 break;
588
cfc14b3a 589 default:
b41c5a85
JW
590 if (insn >= DW_CFA_lo_user && insn <= DW_CFA_hi_user)
591 {
592 /* Handle vendor-specific CFI for different architectures. */
593 if (!gdbarch_execute_dwarf_cfa_vendor_op (gdbarch, insn, fs))
594 error (_("Call Frame Instruction op %d in vendor extension "
595 "space is not handled on this architecture."),
596 insn);
597 }
598 else
599 internal_error (__FILE__, __LINE__,
600 _("Unknown CFI encountered."));
cfc14b3a
MK
601 }
602 }
603 }
604
111c6489
JK
605 if (fs->initial.reg == NULL)
606 {
607 /* Don't allow remember/restore between CIE and FDE programs. */
1c90d9f0 608 delete fs->regs.prev;
111c6489
JK
609 fs->regs.prev = NULL;
610 }
611
612 return insn_ptr;
cfc14b3a 613}
1c90d9f0
YQ
614
615#if GDB_SELF_TEST
616
617namespace selftests {
618
619/* Unit test to function execute_cfa_program. */
620
621static void
622execute_cfa_program_test (struct gdbarch *gdbarch)
623{
624 struct dwarf2_fde fde;
625 struct dwarf2_cie cie;
626
627 memset (&fde, 0, sizeof fde);
628 memset (&cie, 0, sizeof cie);
629
630 cie.data_alignment_factor = -4;
631 cie.code_alignment_factor = 2;
632 fde.cie = &cie;
633
634 dwarf2_frame_state fs (0, fde.cie);
635
636 gdb_byte insns[] =
637 {
638 DW_CFA_def_cfa, 1, 4, /* DW_CFA_def_cfa: r1 ofs 4 */
639 DW_CFA_offset | 0x2, 1, /* DW_CFA_offset: r2 at cfa-4 */
640 DW_CFA_remember_state,
641 DW_CFA_restore_state,
642 };
643
644 const gdb_byte *insn_end = insns + sizeof (insns);
645 const gdb_byte *out = execute_cfa_program (&fde, insns, insn_end, gdbarch,
646 0, &fs);
647
648 SELF_CHECK (out == insn_end);
649 SELF_CHECK (fs.pc == 0);
650
651 /* The instructions above only use r1 and r2, but the register numbers
652 used are adjusted by dwarf2_frame_adjust_regnum. */
653 auto r1 = dwarf2_frame_adjust_regnum (gdbarch, 1, fde.eh_frame_p);
654 auto r2 = dwarf2_frame_adjust_regnum (gdbarch, 2, fde.eh_frame_p);
655
656 SELF_CHECK (fs.regs.num_regs == (std::max (r1, r2) + 1));
657
658 SELF_CHECK (fs.regs.reg[r2].how == DWARF2_FRAME_REG_SAVED_OFFSET);
659 SELF_CHECK (fs.regs.reg[r2].loc.offset == -4);
660
661 for (auto i = 0; i < fs.regs.num_regs; i++)
662 if (i != r2)
663 SELF_CHECK (fs.regs.reg[i].how == DWARF2_FRAME_REG_UNSPECIFIED);
664
665 SELF_CHECK (fs.regs.cfa_reg == 1);
666 SELF_CHECK (fs.regs.cfa_offset == 4);
667 SELF_CHECK (fs.regs.cfa_how == CFA_REG_OFFSET);
668 SELF_CHECK (fs.regs.cfa_exp == NULL);
669 SELF_CHECK (fs.regs.prev == NULL);
670}
671
672} // namespace selftests
673#endif /* GDB_SELF_TEST */
674
8f22cb90 675\f
cfc14b3a 676
8f22cb90 677/* Architecture-specific operations. */
cfc14b3a 678
8f22cb90
MK
679/* Per-architecture data key. */
680static struct gdbarch_data *dwarf2_frame_data;
681
682struct dwarf2_frame_ops
683{
684 /* Pre-initialize the register state REG for register REGNUM. */
aff37fc1
DM
685 void (*init_reg) (struct gdbarch *, int, struct dwarf2_frame_state_reg *,
686 struct frame_info *);
3ed09a32 687
4a4e5149 688 /* Check whether the THIS_FRAME is a signal trampoline. */
3ed09a32 689 int (*signal_frame_p) (struct gdbarch *, struct frame_info *);
4bf8967c 690
4fc771b8
DJ
691 /* Convert .eh_frame register number to DWARF register number, or
692 adjust .debug_frame register number. */
693 int (*adjust_regnum) (struct gdbarch *, int, int);
cfc14b3a
MK
694};
695
8f22cb90
MK
696/* Default architecture-specific register state initialization
697 function. */
698
699static void
700dwarf2_frame_default_init_reg (struct gdbarch *gdbarch, int regnum,
aff37fc1 701 struct dwarf2_frame_state_reg *reg,
4a4e5149 702 struct frame_info *this_frame)
8f22cb90
MK
703{
704 /* If we have a register that acts as a program counter, mark it as
705 a destination for the return address. If we have a register that
706 serves as the stack pointer, arrange for it to be filled with the
707 call frame address (CFA). The other registers are marked as
708 unspecified.
709
710 We copy the return address to the program counter, since many
711 parts in GDB assume that it is possible to get the return address
712 by unwinding the program counter register. However, on ISA's
713 with a dedicated return address register, the CFI usually only
714 contains information to unwind that return address register.
715
716 The reason we're treating the stack pointer special here is
717 because in many cases GCC doesn't emit CFI for the stack pointer
718 and implicitly assumes that it is equal to the CFA. This makes
719 some sense since the DWARF specification (version 3, draft 8,
720 p. 102) says that:
721
722 "Typically, the CFA is defined to be the value of the stack
723 pointer at the call site in the previous frame (which may be
724 different from its value on entry to the current frame)."
725
726 However, this isn't true for all platforms supported by GCC
727 (e.g. IBM S/390 and zSeries). Those architectures should provide
728 their own architecture-specific initialization function. */
05cbe71a 729
ad010def 730 if (regnum == gdbarch_pc_regnum (gdbarch))
8f22cb90 731 reg->how = DWARF2_FRAME_REG_RA;
ad010def 732 else if (regnum == gdbarch_sp_regnum (gdbarch))
8f22cb90
MK
733 reg->how = DWARF2_FRAME_REG_CFA;
734}
05cbe71a 735
8f22cb90 736/* Return a default for the architecture-specific operations. */
05cbe71a 737
8f22cb90 738static void *
030f20e1 739dwarf2_frame_init (struct obstack *obstack)
8f22cb90
MK
740{
741 struct dwarf2_frame_ops *ops;
742
030f20e1 743 ops = OBSTACK_ZALLOC (obstack, struct dwarf2_frame_ops);
8f22cb90
MK
744 ops->init_reg = dwarf2_frame_default_init_reg;
745 return ops;
746}
05cbe71a 747
8f22cb90
MK
748/* Set the architecture-specific register state initialization
749 function for GDBARCH to INIT_REG. */
750
751void
752dwarf2_frame_set_init_reg (struct gdbarch *gdbarch,
753 void (*init_reg) (struct gdbarch *, int,
aff37fc1
DM
754 struct dwarf2_frame_state_reg *,
755 struct frame_info *))
8f22cb90 756{
9a3c8263
SM
757 struct dwarf2_frame_ops *ops
758 = (struct dwarf2_frame_ops *) gdbarch_data (gdbarch, dwarf2_frame_data);
8f22cb90 759
8f22cb90
MK
760 ops->init_reg = init_reg;
761}
762
763/* Pre-initialize the register state REG for register REGNUM. */
05cbe71a
MK
764
765static void
766dwarf2_frame_init_reg (struct gdbarch *gdbarch, int regnum,
aff37fc1 767 struct dwarf2_frame_state_reg *reg,
4a4e5149 768 struct frame_info *this_frame)
05cbe71a 769{
9a3c8263
SM
770 struct dwarf2_frame_ops *ops
771 = (struct dwarf2_frame_ops *) gdbarch_data (gdbarch, dwarf2_frame_data);
8f22cb90 772
4a4e5149 773 ops->init_reg (gdbarch, regnum, reg, this_frame);
05cbe71a 774}
3ed09a32
DJ
775
776/* Set the architecture-specific signal trampoline recognition
777 function for GDBARCH to SIGNAL_FRAME_P. */
778
779void
780dwarf2_frame_set_signal_frame_p (struct gdbarch *gdbarch,
781 int (*signal_frame_p) (struct gdbarch *,
782 struct frame_info *))
783{
9a3c8263
SM
784 struct dwarf2_frame_ops *ops
785 = (struct dwarf2_frame_ops *) gdbarch_data (gdbarch, dwarf2_frame_data);
3ed09a32
DJ
786
787 ops->signal_frame_p = signal_frame_p;
788}
789
790/* Query the architecture-specific signal frame recognizer for
4a4e5149 791 THIS_FRAME. */
3ed09a32
DJ
792
793static int
794dwarf2_frame_signal_frame_p (struct gdbarch *gdbarch,
4a4e5149 795 struct frame_info *this_frame)
3ed09a32 796{
9a3c8263
SM
797 struct dwarf2_frame_ops *ops
798 = (struct dwarf2_frame_ops *) gdbarch_data (gdbarch, dwarf2_frame_data);
3ed09a32
DJ
799
800 if (ops->signal_frame_p == NULL)
801 return 0;
4a4e5149 802 return ops->signal_frame_p (gdbarch, this_frame);
3ed09a32 803}
4bf8967c 804
4fc771b8
DJ
805/* Set the architecture-specific adjustment of .eh_frame and .debug_frame
806 register numbers. */
4bf8967c
AS
807
808void
4fc771b8
DJ
809dwarf2_frame_set_adjust_regnum (struct gdbarch *gdbarch,
810 int (*adjust_regnum) (struct gdbarch *,
811 int, int))
4bf8967c 812{
9a3c8263
SM
813 struct dwarf2_frame_ops *ops
814 = (struct dwarf2_frame_ops *) gdbarch_data (gdbarch, dwarf2_frame_data);
4bf8967c 815
4fc771b8 816 ops->adjust_regnum = adjust_regnum;
4bf8967c
AS
817}
818
4fc771b8
DJ
819/* Translate a .eh_frame register to DWARF register, or adjust a .debug_frame
820 register. */
4bf8967c 821
4fc771b8 822static int
3e43a32a
MS
823dwarf2_frame_adjust_regnum (struct gdbarch *gdbarch,
824 int regnum, int eh_frame_p)
4bf8967c 825{
9a3c8263
SM
826 struct dwarf2_frame_ops *ops
827 = (struct dwarf2_frame_ops *) gdbarch_data (gdbarch, dwarf2_frame_data);
4bf8967c 828
4fc771b8 829 if (ops->adjust_regnum == NULL)
4bf8967c 830 return regnum;
4fc771b8 831 return ops->adjust_regnum (gdbarch, regnum, eh_frame_p);
4bf8967c 832}
303b6f5d
DJ
833
834static void
835dwarf2_frame_find_quirks (struct dwarf2_frame_state *fs,
836 struct dwarf2_fde *fde)
837{
43f3e411 838 struct compunit_symtab *cust;
303b6f5d 839
43f3e411
DE
840 cust = find_pc_compunit_symtab (fs->pc);
841 if (cust == NULL)
303b6f5d
DJ
842 return;
843
43f3e411 844 if (producer_is_realview (COMPUNIT_PRODUCER (cust)))
a6c727b2
DJ
845 {
846 if (fde->cie->version == 1)
847 fs->armcc_cfa_offsets_sf = 1;
848
849 if (fde->cie->version == 1)
850 fs->armcc_cfa_offsets_reversed = 1;
851
852 /* The reversed offset problem is present in some compilers
853 using DWARF3, but it was eventually fixed. Check the ARM
854 defined augmentations, which are in the format "armcc" followed
855 by a list of one-character options. The "+" option means
856 this problem is fixed (no quirk needed). If the armcc
857 augmentation is missing, the quirk is needed. */
858 if (fde->cie->version == 3
61012eef 859 && (!startswith (fde->cie->augmentation, "armcc")
a6c727b2
DJ
860 || strchr (fde->cie->augmentation + 5, '+') == NULL))
861 fs->armcc_cfa_offsets_reversed = 1;
862
863 return;
864 }
303b6f5d 865}
8f22cb90
MK
866\f
867
a8fd5589
TT
868/* See dwarf2-frame.h. */
869
870int
871dwarf2_fetch_cfa_info (struct gdbarch *gdbarch, CORE_ADDR pc,
872 struct dwarf2_per_cu_data *data,
873 int *regnum_out, LONGEST *offset_out,
874 CORE_ADDR *text_offset_out,
875 const gdb_byte **cfa_start_out,
876 const gdb_byte **cfa_end_out)
9f6f94ff 877{
9f6f94ff 878 struct dwarf2_fde *fde;
22e048c9 879 CORE_ADDR text_offset;
afe37d6b 880 CORE_ADDR pc1 = pc;
9f6f94ff
TT
881
882 /* Find the correct FDE. */
afe37d6b 883 fde = dwarf2_frame_find_fde (&pc1, &text_offset);
9f6f94ff
TT
884 if (fde == NULL)
885 error (_("Could not compute CFA; needed to translate this expression"));
886
afe37d6b 887 dwarf2_frame_state fs (pc1, fde->cie);
9f6f94ff
TT
888
889 /* Check for "quirks" - known bugs in producers. */
890 dwarf2_frame_find_quirks (&fs, fde);
891
892 /* First decode all the insns in the CIE. */
893 execute_cfa_program (fde, fde->cie->initial_instructions,
894 fde->cie->end, gdbarch, pc, &fs);
895
896 /* Save the initialized register set. */
897 fs.initial = fs.regs;
9f6f94ff
TT
898
899 /* Then decode the insns in the FDE up to our target PC. */
900 execute_cfa_program (fde, fde->instructions, fde->end, gdbarch, pc, &fs);
901
902 /* Calculate the CFA. */
903 switch (fs.regs.cfa_how)
904 {
905 case CFA_REG_OFFSET:
906 {
0fde2c53 907 int regnum = dwarf_reg_to_regnum_or_error (gdbarch, fs.regs.cfa_reg);
a8fd5589
TT
908
909 *regnum_out = regnum;
910 if (fs.armcc_cfa_offsets_reversed)
911 *offset_out = -fs.regs.cfa_offset;
912 else
913 *offset_out = fs.regs.cfa_offset;
914 return 1;
9f6f94ff 915 }
9f6f94ff
TT
916
917 case CFA_EXP:
a8fd5589
TT
918 *text_offset_out = text_offset;
919 *cfa_start_out = fs.regs.cfa_exp;
920 *cfa_end_out = fs.regs.cfa_exp + fs.regs.cfa_exp_len;
921 return 0;
9f6f94ff
TT
922
923 default:
924 internal_error (__FILE__, __LINE__, _("Unknown CFA rule."));
925 }
926}
927
928\f
8f22cb90
MK
929struct dwarf2_frame_cache
930{
931 /* DWARF Call Frame Address. */
932 CORE_ADDR cfa;
933
8fbca658
PA
934 /* Set if the return address column was marked as unavailable
935 (required non-collected memory or registers to compute). */
936 int unavailable_retaddr;
937
0228dfb9
DJ
938 /* Set if the return address column was marked as undefined. */
939 int undefined_retaddr;
940
8f22cb90
MK
941 /* Saved registers, indexed by GDB register number, not by DWARF
942 register number. */
943 struct dwarf2_frame_state_reg *reg;
8d5a9abc
MK
944
945 /* Return address register. */
946 struct dwarf2_frame_state_reg retaddr_reg;
ae0d2f24
UW
947
948 /* Target address size in bytes. */
949 int addr_size;
ac56253d
TT
950
951 /* The .text offset. */
952 CORE_ADDR text_offset;
111c6489 953
1ec56e88
PA
954 /* True if we already checked whether this frame is the bottom frame
955 of a virtual tail call frame chain. */
956 int checked_tailcall_bottom;
957
111c6489
JK
958 /* If not NULL then this frame is the bottom frame of a TAILCALL_FRAME
959 sequence. If NULL then it is a normal case with no TAILCALL_FRAME
960 involved. Non-bottom frames of a virtual tail call frames chain use
961 dwarf2_tailcall_frame_unwind unwinder so this field does not apply for
962 them. */
963 void *tailcall_cache;
1ec56e88
PA
964
965 /* The number of bytes to subtract from TAILCALL_FRAME frames frame
966 base to get the SP, to simulate the return address pushed on the
967 stack. */
968 LONGEST entry_cfa_sp_offset;
969 int entry_cfa_sp_offset_p;
8f22cb90 970};
05cbe71a 971
b9362cc7 972static struct dwarf2_frame_cache *
4a4e5149 973dwarf2_frame_cache (struct frame_info *this_frame, void **this_cache)
cfc14b3a 974{
4a4e5149 975 struct gdbarch *gdbarch = get_frame_arch (this_frame);
ad010def
UW
976 const int num_regs = gdbarch_num_regs (gdbarch)
977 + gdbarch_num_pseudo_regs (gdbarch);
cfc14b3a 978 struct dwarf2_frame_cache *cache;
cfc14b3a 979 struct dwarf2_fde *fde;
111c6489 980 CORE_ADDR entry_pc;
111c6489 981 const gdb_byte *instr;
cfc14b3a
MK
982
983 if (*this_cache)
9a3c8263 984 return (struct dwarf2_frame_cache *) *this_cache;
cfc14b3a
MK
985
986 /* Allocate a new cache. */
987 cache = FRAME_OBSTACK_ZALLOC (struct dwarf2_frame_cache);
988 cache->reg = FRAME_OBSTACK_CALLOC (num_regs, struct dwarf2_frame_state_reg);
8fbca658 989 *this_cache = cache;
cfc14b3a 990
cfc14b3a
MK
991 /* Unwind the PC.
992
4a4e5149 993 Note that if the next frame is never supposed to return (i.e. a call
cfc14b3a 994 to abort), the compiler might optimize away the instruction at
4a4e5149 995 its return address. As a result the return address will
cfc14b3a 996 point at some random instruction, and the CFI for that
e4e9607c 997 instruction is probably worthless to us. GCC's unwinder solves
cfc14b3a
MK
998 this problem by substracting 1 from the return address to get an
999 address in the middle of a presumed call instruction (or the
1000 instruction in the associated delay slot). This should only be
1001 done for "normal" frames and not for resume-type frames (signal
e4e9607c 1002 handlers, sentinel frames, dummy frames). The function
ad1193e7 1003 get_frame_address_in_block does just this. It's not clear how
e4e9607c
MK
1004 reliable the method is though; there is the potential for the
1005 register state pre-call being different to that on return. */
afe37d6b 1006 CORE_ADDR pc1 = get_frame_address_in_block (this_frame);
cfc14b3a
MK
1007
1008 /* Find the correct FDE. */
afe37d6b 1009 fde = dwarf2_frame_find_fde (&pc1, &cache->text_offset);
cfc14b3a
MK
1010 gdb_assert (fde != NULL);
1011
afe37d6b
YQ
1012 /* Allocate and initialize the frame state. */
1013 struct dwarf2_frame_state fs (pc1, fde->cie);
1014
ae0d2f24 1015 cache->addr_size = fde->cie->addr_size;
cfc14b3a 1016
303b6f5d 1017 /* Check for "quirks" - known bugs in producers. */
afe37d6b 1018 dwarf2_frame_find_quirks (&fs, fde);
303b6f5d 1019
cfc14b3a 1020 /* First decode all the insns in the CIE. */
ae0d2f24 1021 execute_cfa_program (fde, fde->cie->initial_instructions,
0c92d8c1 1022 fde->cie->end, gdbarch,
afe37d6b 1023 get_frame_address_in_block (this_frame), &fs);
cfc14b3a
MK
1024
1025 /* Save the initialized register set. */
afe37d6b 1026 fs.initial = fs.regs;
cfc14b3a 1027
111c6489
JK
1028 if (get_frame_func_if_available (this_frame, &entry_pc))
1029 {
1030 /* Decode the insns in the FDE up to the entry PC. */
1031 instr = execute_cfa_program (fde, fde->instructions, fde->end, gdbarch,
afe37d6b 1032 entry_pc, &fs);
111c6489 1033
afe37d6b
YQ
1034 if (fs.regs.cfa_how == CFA_REG_OFFSET
1035 && (dwarf_reg_to_regnum (gdbarch, fs.regs.cfa_reg)
111c6489
JK
1036 == gdbarch_sp_regnum (gdbarch)))
1037 {
afe37d6b 1038 cache->entry_cfa_sp_offset = fs.regs.cfa_offset;
1ec56e88 1039 cache->entry_cfa_sp_offset_p = 1;
111c6489
JK
1040 }
1041 }
1042 else
1043 instr = fde->instructions;
1044
cfc14b3a 1045 /* Then decode the insns in the FDE up to our target PC. */
111c6489 1046 execute_cfa_program (fde, instr, fde->end, gdbarch,
afe37d6b 1047 get_frame_address_in_block (this_frame), &fs);
cfc14b3a 1048
492d29ea 1049 TRY
cfc14b3a 1050 {
8fbca658 1051 /* Calculate the CFA. */
afe37d6b 1052 switch (fs.regs.cfa_how)
8fbca658
PA
1053 {
1054 case CFA_REG_OFFSET:
afe37d6b
YQ
1055 cache->cfa = read_addr_from_reg (this_frame, fs.regs.cfa_reg);
1056 if (fs.armcc_cfa_offsets_reversed)
1057 cache->cfa -= fs.regs.cfa_offset;
8fbca658 1058 else
afe37d6b 1059 cache->cfa += fs.regs.cfa_offset;
8fbca658
PA
1060 break;
1061
1062 case CFA_EXP:
1063 cache->cfa =
afe37d6b 1064 execute_stack_op (fs.regs.cfa_exp, fs.regs.cfa_exp_len,
8fbca658
PA
1065 cache->addr_size, cache->text_offset,
1066 this_frame, 0, 0);
1067 break;
1068
1069 default:
1070 internal_error (__FILE__, __LINE__, _("Unknown CFA rule."));
1071 }
1072 }
492d29ea 1073 CATCH (ex, RETURN_MASK_ERROR)
8fbca658
PA
1074 {
1075 if (ex.error == NOT_AVAILABLE_ERROR)
1076 {
1077 cache->unavailable_retaddr = 1;
1078 return cache;
1079 }
cfc14b3a 1080
8fbca658 1081 throw_exception (ex);
cfc14b3a 1082 }
492d29ea 1083 END_CATCH
cfc14b3a 1084
05cbe71a 1085 /* Initialize the register state. */
3e2c4033
AC
1086 {
1087 int regnum;
e4e9607c 1088
3e2c4033 1089 for (regnum = 0; regnum < num_regs; regnum++)
4a4e5149 1090 dwarf2_frame_init_reg (gdbarch, regnum, &cache->reg[regnum], this_frame);
3e2c4033
AC
1091 }
1092
1093 /* Go through the DWARF2 CFI generated table and save its register
79c4cb80
MK
1094 location information in the cache. Note that we don't skip the
1095 return address column; it's perfectly all right for it to
0fde2c53 1096 correspond to a real register. */
3e2c4033
AC
1097 {
1098 int column; /* CFI speak for "register number". */
e4e9607c 1099
afe37d6b 1100 for (column = 0; column < fs.regs.num_regs; column++)
3e2c4033 1101 {
3e2c4033 1102 /* Use the GDB register number as the destination index. */
0fde2c53 1103 int regnum = dwarf_reg_to_regnum (gdbarch, column);
3e2c4033 1104
0fde2c53 1105 /* Protect against a target returning a bad register. */
3e2c4033
AC
1106 if (regnum < 0 || regnum >= num_regs)
1107 continue;
1108
1109 /* NOTE: cagney/2003-09-05: CFI should specify the disposition
e4e9607c
MK
1110 of all debug info registers. If it doesn't, complain (but
1111 not too loudly). It turns out that GCC assumes that an
3e2c4033
AC
1112 unspecified register implies "same value" when CFI (draft
1113 7) specifies nothing at all. Such a register could equally
1114 be interpreted as "undefined". Also note that this check
e4e9607c
MK
1115 isn't sufficient; it only checks that all registers in the
1116 range [0 .. max column] are specified, and won't detect
3e2c4033 1117 problems when a debug info register falls outside of the
e4e9607c 1118 table. We need a way of iterating through all the valid
3e2c4033 1119 DWARF2 register numbers. */
afe37d6b 1120 if (fs.regs.reg[column].how == DWARF2_FRAME_REG_UNSPECIFIED)
f059bf6f
AC
1121 {
1122 if (cache->reg[regnum].how == DWARF2_FRAME_REG_UNSPECIFIED)
b98664d3 1123 complaint (_("\
5af949e3 1124incomplete CFI data; unspecified registers (e.g., %s) at %s"),
f059bf6f 1125 gdbarch_register_name (gdbarch, regnum),
afe37d6b 1126 paddress (gdbarch, fs.pc));
f059bf6f 1127 }
35889917 1128 else
afe37d6b 1129 cache->reg[regnum] = fs.regs.reg[column];
3e2c4033
AC
1130 }
1131 }
cfc14b3a 1132
8d5a9abc
MK
1133 /* Eliminate any DWARF2_FRAME_REG_RA rules, and save the information
1134 we need for evaluating DWARF2_FRAME_REG_RA_OFFSET rules. */
35889917
MK
1135 {
1136 int regnum;
1137
1138 for (regnum = 0; regnum < num_regs; regnum++)
1139 {
8d5a9abc
MK
1140 if (cache->reg[regnum].how == DWARF2_FRAME_REG_RA
1141 || cache->reg[regnum].how == DWARF2_FRAME_REG_RA_OFFSET)
35889917 1142 {
05cbe71a 1143 struct dwarf2_frame_state_reg *retaddr_reg =
afe37d6b 1144 &fs.regs.reg[fs.retaddr_column];
05cbe71a 1145
d4f10bf2
MK
1146 /* It seems rather bizarre to specify an "empty" column as
1147 the return adress column. However, this is exactly
1148 what GCC does on some targets. It turns out that GCC
1149 assumes that the return address can be found in the
1150 register corresponding to the return address column.
8d5a9abc
MK
1151 Incidentally, that's how we should treat a return
1152 address column specifying "same value" too. */
afe37d6b 1153 if (fs.retaddr_column < fs.regs.num_regs
05cbe71a
MK
1154 && retaddr_reg->how != DWARF2_FRAME_REG_UNSPECIFIED
1155 && retaddr_reg->how != DWARF2_FRAME_REG_SAME_VALUE)
8d5a9abc
MK
1156 {
1157 if (cache->reg[regnum].how == DWARF2_FRAME_REG_RA)
1158 cache->reg[regnum] = *retaddr_reg;
1159 else
1160 cache->retaddr_reg = *retaddr_reg;
1161 }
35889917
MK
1162 else
1163 {
8d5a9abc
MK
1164 if (cache->reg[regnum].how == DWARF2_FRAME_REG_RA)
1165 {
afe37d6b 1166 cache->reg[regnum].loc.reg = fs.retaddr_column;
8d5a9abc
MK
1167 cache->reg[regnum].how = DWARF2_FRAME_REG_SAVED_REG;
1168 }
1169 else
1170 {
afe37d6b 1171 cache->retaddr_reg.loc.reg = fs.retaddr_column;
8d5a9abc
MK
1172 cache->retaddr_reg.how = DWARF2_FRAME_REG_SAVED_REG;
1173 }
35889917
MK
1174 }
1175 }
1176 }
1177 }
cfc14b3a 1178
afe37d6b
YQ
1179 if (fs.retaddr_column < fs.regs.num_regs
1180 && fs.regs.reg[fs.retaddr_column].how == DWARF2_FRAME_REG_UNDEFINED)
0228dfb9
DJ
1181 cache->undefined_retaddr = 1;
1182
cfc14b3a
MK
1183 return cache;
1184}
1185
8fbca658
PA
1186static enum unwind_stop_reason
1187dwarf2_frame_unwind_stop_reason (struct frame_info *this_frame,
1188 void **this_cache)
1189{
1190 struct dwarf2_frame_cache *cache
1191 = dwarf2_frame_cache (this_frame, this_cache);
1192
1193 if (cache->unavailable_retaddr)
1194 return UNWIND_UNAVAILABLE;
1195
1196 if (cache->undefined_retaddr)
1197 return UNWIND_OUTERMOST;
1198
1199 return UNWIND_NO_REASON;
1200}
1201
cfc14b3a 1202static void
4a4e5149 1203dwarf2_frame_this_id (struct frame_info *this_frame, void **this_cache,
cfc14b3a
MK
1204 struct frame_id *this_id)
1205{
1206 struct dwarf2_frame_cache *cache =
4a4e5149 1207 dwarf2_frame_cache (this_frame, this_cache);
cfc14b3a 1208
8fbca658 1209 if (cache->unavailable_retaddr)
5ce0145d
PA
1210 (*this_id) = frame_id_build_unavailable_stack (get_frame_func (this_frame));
1211 else if (cache->undefined_retaddr)
8fbca658 1212 return;
5ce0145d
PA
1213 else
1214 (*this_id) = frame_id_build (cache->cfa, get_frame_func (this_frame));
93d42b30
DJ
1215}
1216
4a4e5149
DJ
1217static struct value *
1218dwarf2_frame_prev_register (struct frame_info *this_frame, void **this_cache,
1219 int regnum)
93d42b30 1220{
4a4e5149 1221 struct gdbarch *gdbarch = get_frame_arch (this_frame);
93d42b30 1222 struct dwarf2_frame_cache *cache =
4a4e5149
DJ
1223 dwarf2_frame_cache (this_frame, this_cache);
1224 CORE_ADDR addr;
1225 int realnum;
cfc14b3a 1226
1ec56e88
PA
1227 /* Check whether THIS_FRAME is the bottom frame of a virtual tail
1228 call frame chain. */
1229 if (!cache->checked_tailcall_bottom)
1230 {
1231 cache->checked_tailcall_bottom = 1;
1232 dwarf2_tailcall_sniffer_first (this_frame, &cache->tailcall_cache,
1233 (cache->entry_cfa_sp_offset_p
1234 ? &cache->entry_cfa_sp_offset : NULL));
1235 }
1236
111c6489
JK
1237 /* Non-bottom frames of a virtual tail call frames chain use
1238 dwarf2_tailcall_frame_unwind unwinder so this code does not apply for
1239 them. If dwarf2_tailcall_prev_register_first does not have specific value
1240 unwind the register, tail call frames are assumed to have the register set
1241 of the top caller. */
1242 if (cache->tailcall_cache)
1243 {
1244 struct value *val;
1245
1246 val = dwarf2_tailcall_prev_register_first (this_frame,
1247 &cache->tailcall_cache,
1248 regnum);
1249 if (val)
1250 return val;
1251 }
1252
cfc14b3a
MK
1253 switch (cache->reg[regnum].how)
1254 {
05cbe71a 1255 case DWARF2_FRAME_REG_UNDEFINED:
3e2c4033 1256 /* If CFI explicitly specified that the value isn't defined,
e4e9607c 1257 mark it as optimized away; the value isn't available. */
4a4e5149 1258 return frame_unwind_got_optimized (this_frame, regnum);
cfc14b3a 1259
05cbe71a 1260 case DWARF2_FRAME_REG_SAVED_OFFSET:
4a4e5149
DJ
1261 addr = cache->cfa + cache->reg[regnum].loc.offset;
1262 return frame_unwind_got_memory (this_frame, regnum, addr);
cfc14b3a 1263
05cbe71a 1264 case DWARF2_FRAME_REG_SAVED_REG:
0fde2c53
DE
1265 realnum = dwarf_reg_to_regnum_or_error
1266 (gdbarch, cache->reg[regnum].loc.reg);
4a4e5149 1267 return frame_unwind_got_register (this_frame, regnum, realnum);
cfc14b3a 1268
05cbe71a 1269 case DWARF2_FRAME_REG_SAVED_EXP:
b348037f
YQ
1270 addr = execute_stack_op (cache->reg[regnum].loc.exp.start,
1271 cache->reg[regnum].loc.exp.len,
ac56253d
TT
1272 cache->addr_size, cache->text_offset,
1273 this_frame, cache->cfa, 1);
4a4e5149 1274 return frame_unwind_got_memory (this_frame, regnum, addr);
cfc14b3a 1275
46ea248b 1276 case DWARF2_FRAME_REG_SAVED_VAL_OFFSET:
4a4e5149
DJ
1277 addr = cache->cfa + cache->reg[regnum].loc.offset;
1278 return frame_unwind_got_constant (this_frame, regnum, addr);
46ea248b
AO
1279
1280 case DWARF2_FRAME_REG_SAVED_VAL_EXP:
b348037f
YQ
1281 addr = execute_stack_op (cache->reg[regnum].loc.exp.start,
1282 cache->reg[regnum].loc.exp.len,
ac56253d
TT
1283 cache->addr_size, cache->text_offset,
1284 this_frame, cache->cfa, 1);
4a4e5149 1285 return frame_unwind_got_constant (this_frame, regnum, addr);
46ea248b 1286
05cbe71a 1287 case DWARF2_FRAME_REG_UNSPECIFIED:
3e2c4033
AC
1288 /* GCC, in its infinite wisdom decided to not provide unwind
1289 information for registers that are "same value". Since
1290 DWARF2 (3 draft 7) doesn't define such behavior, said
1291 registers are actually undefined (which is different to CFI
1292 "undefined"). Code above issues a complaint about this.
1293 Here just fudge the books, assume GCC, and that the value is
1294 more inner on the stack. */
4a4e5149 1295 return frame_unwind_got_register (this_frame, regnum, regnum);
3e2c4033 1296
05cbe71a 1297 case DWARF2_FRAME_REG_SAME_VALUE:
4a4e5149 1298 return frame_unwind_got_register (this_frame, regnum, regnum);
cfc14b3a 1299
05cbe71a 1300 case DWARF2_FRAME_REG_CFA:
4a4e5149 1301 return frame_unwind_got_address (this_frame, regnum, cache->cfa);
35889917 1302
ea7963f0 1303 case DWARF2_FRAME_REG_CFA_OFFSET:
4a4e5149
DJ
1304 addr = cache->cfa + cache->reg[regnum].loc.offset;
1305 return frame_unwind_got_address (this_frame, regnum, addr);
ea7963f0 1306
8d5a9abc 1307 case DWARF2_FRAME_REG_RA_OFFSET:
4a4e5149 1308 addr = cache->reg[regnum].loc.offset;
0fde2c53 1309 regnum = dwarf_reg_to_regnum_or_error
4a4e5149
DJ
1310 (gdbarch, cache->retaddr_reg.loc.reg);
1311 addr += get_frame_register_unsigned (this_frame, regnum);
1312 return frame_unwind_got_address (this_frame, regnum, addr);
8d5a9abc 1313
b39cc962
DJ
1314 case DWARF2_FRAME_REG_FN:
1315 return cache->reg[regnum].loc.fn (this_frame, this_cache, regnum);
1316
cfc14b3a 1317 default:
e2e0b3e5 1318 internal_error (__FILE__, __LINE__, _("Unknown register rule."));
cfc14b3a
MK
1319 }
1320}
1321
111c6489
JK
1322/* Proxy for tailcall_frame_dealloc_cache for bottom frame of a virtual tail
1323 call frames chain. */
1324
1325static void
1326dwarf2_frame_dealloc_cache (struct frame_info *self, void *this_cache)
1327{
1328 struct dwarf2_frame_cache *cache = dwarf2_frame_cache (self, &this_cache);
1329
1330 if (cache->tailcall_cache)
1331 dwarf2_tailcall_frame_unwind.dealloc_cache (self, cache->tailcall_cache);
1332}
1333
4a4e5149
DJ
1334static int
1335dwarf2_frame_sniffer (const struct frame_unwind *self,
1336 struct frame_info *this_frame, void **this_cache)
cfc14b3a 1337{
3c3bb058
AB
1338 if (!dwarf2_frame_unwinders_enabled_p)
1339 return 0;
1340
1ce5d6dd 1341 /* Grab an address that is guarenteed to reside somewhere within the
4a4e5149 1342 function. get_frame_pc(), with a no-return next function, can
93d42b30
DJ
1343 end up returning something past the end of this function's body.
1344 If the frame we're sniffing for is a signal frame whose start
1345 address is placed on the stack by the OS, its FDE must
4a4e5149
DJ
1346 extend one byte before its start address or we could potentially
1347 select the FDE of the previous function. */
1348 CORE_ADDR block_addr = get_frame_address_in_block (this_frame);
ac56253d 1349 struct dwarf2_fde *fde = dwarf2_frame_find_fde (&block_addr, NULL);
9a619af0 1350
56c987f6 1351 if (!fde)
4a4e5149 1352 return 0;
3ed09a32
DJ
1353
1354 /* On some targets, signal trampolines may have unwind information.
1355 We need to recognize them so that we set the frame type
1356 correctly. */
1357
56c987f6 1358 if (fde->cie->signal_frame
4a4e5149
DJ
1359 || dwarf2_frame_signal_frame_p (get_frame_arch (this_frame),
1360 this_frame))
1361 return self->type == SIGTRAMP_FRAME;
1362
111c6489
JK
1363 if (self->type != NORMAL_FRAME)
1364 return 0;
1365
111c6489 1366 return 1;
4a4e5149
DJ
1367}
1368
1369static const struct frame_unwind dwarf2_frame_unwind =
1370{
1371 NORMAL_FRAME,
8fbca658 1372 dwarf2_frame_unwind_stop_reason,
4a4e5149
DJ
1373 dwarf2_frame_this_id,
1374 dwarf2_frame_prev_register,
1375 NULL,
111c6489
JK
1376 dwarf2_frame_sniffer,
1377 dwarf2_frame_dealloc_cache
4a4e5149
DJ
1378};
1379
1380static const struct frame_unwind dwarf2_signal_frame_unwind =
1381{
1382 SIGTRAMP_FRAME,
8fbca658 1383 dwarf2_frame_unwind_stop_reason,
4a4e5149
DJ
1384 dwarf2_frame_this_id,
1385 dwarf2_frame_prev_register,
1386 NULL,
111c6489
JK
1387 dwarf2_frame_sniffer,
1388
1389 /* TAILCALL_CACHE can never be in such frame to need dealloc_cache. */
1390 NULL
4a4e5149 1391};
cfc14b3a 1392
4a4e5149
DJ
1393/* Append the DWARF-2 frame unwinders to GDBARCH's list. */
1394
1395void
1396dwarf2_append_unwinders (struct gdbarch *gdbarch)
1397{
111c6489
JK
1398 /* TAILCALL_FRAME must be first to find the record by
1399 dwarf2_tailcall_sniffer_first. */
1400 frame_unwind_append_unwinder (gdbarch, &dwarf2_tailcall_frame_unwind);
1401
4a4e5149
DJ
1402 frame_unwind_append_unwinder (gdbarch, &dwarf2_frame_unwind);
1403 frame_unwind_append_unwinder (gdbarch, &dwarf2_signal_frame_unwind);
cfc14b3a
MK
1404}
1405\f
1406
1407/* There is no explicitly defined relationship between the CFA and the
1408 location of frame's local variables and arguments/parameters.
1409 Therefore, frame base methods on this page should probably only be
1410 used as a last resort, just to avoid printing total garbage as a
1411 response to the "info frame" command. */
1412
1413static CORE_ADDR
4a4e5149 1414dwarf2_frame_base_address (struct frame_info *this_frame, void **this_cache)
cfc14b3a
MK
1415{
1416 struct dwarf2_frame_cache *cache =
4a4e5149 1417 dwarf2_frame_cache (this_frame, this_cache);
cfc14b3a
MK
1418
1419 return cache->cfa;
1420}
1421
1422static const struct frame_base dwarf2_frame_base =
1423{
1424 &dwarf2_frame_unwind,
1425 dwarf2_frame_base_address,
1426 dwarf2_frame_base_address,
1427 dwarf2_frame_base_address
1428};
1429
1430const struct frame_base *
4a4e5149 1431dwarf2_frame_base_sniffer (struct frame_info *this_frame)
cfc14b3a 1432{
4a4e5149 1433 CORE_ADDR block_addr = get_frame_address_in_block (this_frame);
9a619af0 1434
ac56253d 1435 if (dwarf2_frame_find_fde (&block_addr, NULL))
cfc14b3a
MK
1436 return &dwarf2_frame_base;
1437
1438 return NULL;
1439}
e7802207
TT
1440
1441/* Compute the CFA for THIS_FRAME, but only if THIS_FRAME came from
1442 the DWARF unwinder. This is used to implement
1443 DW_OP_call_frame_cfa. */
1444
1445CORE_ADDR
1446dwarf2_frame_cfa (struct frame_info *this_frame)
1447{
0b722aec
MM
1448 if (frame_unwinder_is (this_frame, &record_btrace_tailcall_frame_unwind)
1449 || frame_unwinder_is (this_frame, &record_btrace_frame_unwind))
1450 throw_error (NOT_AVAILABLE_ERROR,
1451 _("cfa not available for record btrace target"));
1452
e7802207
TT
1453 while (get_frame_type (this_frame) == INLINE_FRAME)
1454 this_frame = get_prev_frame (this_frame);
32261e52
MM
1455 if (get_frame_unwind_stop_reason (this_frame) == UNWIND_UNAVAILABLE)
1456 throw_error (NOT_AVAILABLE_ERROR,
1457 _("can't compute CFA for this frame: "
1458 "required registers or memory are unavailable"));
14aba1ac
JB
1459
1460 if (get_frame_id (this_frame).stack_status != FID_STACK_VALID)
1461 throw_error (NOT_AVAILABLE_ERROR,
1462 _("can't compute CFA for this frame: "
1463 "frame base not available"));
1464
e7802207
TT
1465 return get_frame_base (this_frame);
1466}
cfc14b3a 1467\f
8f22cb90 1468const struct objfile_data *dwarf2_frame_objfile_data;
0d0e1a63 1469
cfc14b3a 1470static unsigned int
f664829e 1471read_1_byte (bfd *abfd, const gdb_byte *buf)
cfc14b3a 1472{
852483bc 1473 return bfd_get_8 (abfd, buf);
cfc14b3a
MK
1474}
1475
1476static unsigned int
f664829e 1477read_4_bytes (bfd *abfd, const gdb_byte *buf)
cfc14b3a 1478{
852483bc 1479 return bfd_get_32 (abfd, buf);
cfc14b3a
MK
1480}
1481
1482static ULONGEST
f664829e 1483read_8_bytes (bfd *abfd, const gdb_byte *buf)
cfc14b3a 1484{
852483bc 1485 return bfd_get_64 (abfd, buf);
cfc14b3a
MK
1486}
1487
1488static ULONGEST
f664829e
DE
1489read_initial_length (bfd *abfd, const gdb_byte *buf,
1490 unsigned int *bytes_read_ptr)
cfc14b3a
MK
1491{
1492 LONGEST result;
1493
852483bc 1494 result = bfd_get_32 (abfd, buf);
cfc14b3a
MK
1495 if (result == 0xffffffff)
1496 {
852483bc 1497 result = bfd_get_64 (abfd, buf + 4);
cfc14b3a
MK
1498 *bytes_read_ptr = 12;
1499 }
1500 else
1501 *bytes_read_ptr = 4;
1502
1503 return result;
1504}
1505\f
1506
1507/* Pointer encoding helper functions. */
1508
1509/* GCC supports exception handling based on DWARF2 CFI. However, for
1510 technical reasons, it encodes addresses in its FDE's in a different
1511 way. Several "pointer encodings" are supported. The encoding
1512 that's used for a particular FDE is determined by the 'R'
1513 augmentation in the associated CIE. The argument of this
1514 augmentation is a single byte.
1515
1516 The address can be encoded as 2 bytes, 4 bytes, 8 bytes, or as a
1517 LEB128. This is encoded in bits 0, 1 and 2. Bit 3 encodes whether
1518 the address is signed or unsigned. Bits 4, 5 and 6 encode how the
1519 address should be interpreted (absolute, relative to the current
1520 position in the FDE, ...). Bit 7, indicates that the address
1521 should be dereferenced. */
1522
852483bc 1523static gdb_byte
cfc14b3a
MK
1524encoding_for_size (unsigned int size)
1525{
1526 switch (size)
1527 {
1528 case 2:
1529 return DW_EH_PE_udata2;
1530 case 4:
1531 return DW_EH_PE_udata4;
1532 case 8:
1533 return DW_EH_PE_udata8;
1534 default:
e2e0b3e5 1535 internal_error (__FILE__, __LINE__, _("Unsupported address size"));
cfc14b3a
MK
1536 }
1537}
1538
cfc14b3a 1539static CORE_ADDR
852483bc 1540read_encoded_value (struct comp_unit *unit, gdb_byte encoding,
0d45f56e
TT
1541 int ptr_len, const gdb_byte *buf,
1542 unsigned int *bytes_read_ptr,
ae0d2f24 1543 CORE_ADDR func_base)
cfc14b3a 1544{
68f6cf99 1545 ptrdiff_t offset;
cfc14b3a
MK
1546 CORE_ADDR base;
1547
1548 /* GCC currently doesn't generate DW_EH_PE_indirect encodings for
1549 FDE's. */
1550 if (encoding & DW_EH_PE_indirect)
1551 internal_error (__FILE__, __LINE__,
e2e0b3e5 1552 _("Unsupported encoding: DW_EH_PE_indirect"));
cfc14b3a 1553
68f6cf99
MK
1554 *bytes_read_ptr = 0;
1555
cfc14b3a
MK
1556 switch (encoding & 0x70)
1557 {
1558 case DW_EH_PE_absptr:
1559 base = 0;
1560 break;
1561 case DW_EH_PE_pcrel:
f2fec864 1562 base = bfd_get_section_vma (unit->abfd, unit->dwarf_frame_section);
852483bc 1563 base += (buf - unit->dwarf_frame_buffer);
cfc14b3a 1564 break;
0912c7f2
MK
1565 case DW_EH_PE_datarel:
1566 base = unit->dbase;
1567 break;
0fd85043
CV
1568 case DW_EH_PE_textrel:
1569 base = unit->tbase;
1570 break;
03ac2a74 1571 case DW_EH_PE_funcrel:
ae0d2f24 1572 base = func_base;
03ac2a74 1573 break;
68f6cf99
MK
1574 case DW_EH_PE_aligned:
1575 base = 0;
852483bc 1576 offset = buf - unit->dwarf_frame_buffer;
68f6cf99
MK
1577 if ((offset % ptr_len) != 0)
1578 {
1579 *bytes_read_ptr = ptr_len - (offset % ptr_len);
1580 buf += *bytes_read_ptr;
1581 }
1582 break;
cfc14b3a 1583 default:
3e43a32a
MS
1584 internal_error (__FILE__, __LINE__,
1585 _("Invalid or unsupported encoding"));
cfc14b3a
MK
1586 }
1587
b04de778 1588 if ((encoding & 0x07) == 0x00)
f2fec864
DJ
1589 {
1590 encoding |= encoding_for_size (ptr_len);
1591 if (bfd_get_sign_extend_vma (unit->abfd))
1592 encoding |= DW_EH_PE_signed;
1593 }
cfc14b3a
MK
1594
1595 switch (encoding & 0x0f)
1596 {
a81b10ae
MK
1597 case DW_EH_PE_uleb128:
1598 {
9fccedf7 1599 uint64_t value;
0d45f56e 1600 const gdb_byte *end_buf = buf + (sizeof (value) + 1) * 8 / 7;
9a619af0 1601
f664829e 1602 *bytes_read_ptr += safe_read_uleb128 (buf, end_buf, &value) - buf;
a81b10ae
MK
1603 return base + value;
1604 }
cfc14b3a 1605 case DW_EH_PE_udata2:
68f6cf99 1606 *bytes_read_ptr += 2;
cfc14b3a
MK
1607 return (base + bfd_get_16 (unit->abfd, (bfd_byte *) buf));
1608 case DW_EH_PE_udata4:
68f6cf99 1609 *bytes_read_ptr += 4;
cfc14b3a
MK
1610 return (base + bfd_get_32 (unit->abfd, (bfd_byte *) buf));
1611 case DW_EH_PE_udata8:
68f6cf99 1612 *bytes_read_ptr += 8;
cfc14b3a 1613 return (base + bfd_get_64 (unit->abfd, (bfd_byte *) buf));
a81b10ae
MK
1614 case DW_EH_PE_sleb128:
1615 {
9fccedf7 1616 int64_t value;
0d45f56e 1617 const gdb_byte *end_buf = buf + (sizeof (value) + 1) * 8 / 7;
9a619af0 1618
f664829e 1619 *bytes_read_ptr += safe_read_sleb128 (buf, end_buf, &value) - buf;
a81b10ae
MK
1620 return base + value;
1621 }
cfc14b3a 1622 case DW_EH_PE_sdata2:
68f6cf99 1623 *bytes_read_ptr += 2;
cfc14b3a
MK
1624 return (base + bfd_get_signed_16 (unit->abfd, (bfd_byte *) buf));
1625 case DW_EH_PE_sdata4:
68f6cf99 1626 *bytes_read_ptr += 4;
cfc14b3a
MK
1627 return (base + bfd_get_signed_32 (unit->abfd, (bfd_byte *) buf));
1628 case DW_EH_PE_sdata8:
68f6cf99 1629 *bytes_read_ptr += 8;
cfc14b3a
MK
1630 return (base + bfd_get_signed_64 (unit->abfd, (bfd_byte *) buf));
1631 default:
3e43a32a
MS
1632 internal_error (__FILE__, __LINE__,
1633 _("Invalid or unsupported encoding"));
cfc14b3a
MK
1634 }
1635}
1636\f
1637
b01c8410
PP
1638static int
1639bsearch_cie_cmp (const void *key, const void *element)
cfc14b3a 1640{
b01c8410
PP
1641 ULONGEST cie_pointer = *(ULONGEST *) key;
1642 struct dwarf2_cie *cie = *(struct dwarf2_cie **) element;
cfc14b3a 1643
b01c8410
PP
1644 if (cie_pointer == cie->cie_pointer)
1645 return 0;
cfc14b3a 1646
b01c8410
PP
1647 return (cie_pointer < cie->cie_pointer) ? -1 : 1;
1648}
1649
1650/* Find CIE with the given CIE_POINTER in CIE_TABLE. */
1651static struct dwarf2_cie *
1652find_cie (struct dwarf2_cie_table *cie_table, ULONGEST cie_pointer)
1653{
1654 struct dwarf2_cie **p_cie;
cfc14b3a 1655
65a97ab3
PP
1656 /* The C standard (ISO/IEC 9899:TC2) requires the BASE argument to
1657 bsearch be non-NULL. */
1658 if (cie_table->entries == NULL)
1659 {
1660 gdb_assert (cie_table->num_entries == 0);
1661 return NULL;
1662 }
1663
9a3c8263
SM
1664 p_cie = ((struct dwarf2_cie **)
1665 bsearch (&cie_pointer, cie_table->entries, cie_table->num_entries,
1666 sizeof (cie_table->entries[0]), bsearch_cie_cmp));
b01c8410
PP
1667 if (p_cie != NULL)
1668 return *p_cie;
cfc14b3a
MK
1669 return NULL;
1670}
1671
b01c8410 1672/* Add a pointer to new CIE to the CIE_TABLE, allocating space for it. */
cfc14b3a 1673static void
b01c8410 1674add_cie (struct dwarf2_cie_table *cie_table, struct dwarf2_cie *cie)
cfc14b3a 1675{
b01c8410
PP
1676 const int n = cie_table->num_entries;
1677
1678 gdb_assert (n < 1
1679 || cie_table->entries[n - 1]->cie_pointer < cie->cie_pointer);
1680
224c3ddb
SM
1681 cie_table->entries
1682 = XRESIZEVEC (struct dwarf2_cie *, cie_table->entries, n + 1);
b01c8410
PP
1683 cie_table->entries[n] = cie;
1684 cie_table->num_entries = n + 1;
1685}
1686
1687static int
1688bsearch_fde_cmp (const void *key, const void *element)
1689{
1690 CORE_ADDR seek_pc = *(CORE_ADDR *) key;
1691 struct dwarf2_fde *fde = *(struct dwarf2_fde **) element;
9a619af0 1692
b01c8410
PP
1693 if (seek_pc < fde->initial_location)
1694 return -1;
1695 if (seek_pc < fde->initial_location + fde->address_range)
1696 return 0;
1697 return 1;
cfc14b3a
MK
1698}
1699
1700/* Find the FDE for *PC. Return a pointer to the FDE, and store the
1701 inital location associated with it into *PC. */
1702
1703static struct dwarf2_fde *
ac56253d 1704dwarf2_frame_find_fde (CORE_ADDR *pc, CORE_ADDR *out_offset)
cfc14b3a
MK
1705{
1706 struct objfile *objfile;
1707
1708 ALL_OBJFILES (objfile)
1709 {
b01c8410
PP
1710 struct dwarf2_fde_table *fde_table;
1711 struct dwarf2_fde **p_fde;
cfc14b3a 1712 CORE_ADDR offset;
b01c8410 1713 CORE_ADDR seek_pc;
cfc14b3a 1714
9a3c8263
SM
1715 fde_table = ((struct dwarf2_fde_table *)
1716 objfile_data (objfile, dwarf2_frame_objfile_data));
b01c8410 1717 if (fde_table == NULL)
be391dca
TT
1718 {
1719 dwarf2_build_frame_info (objfile);
9a3c8263
SM
1720 fde_table = ((struct dwarf2_fde_table *)
1721 objfile_data (objfile, dwarf2_frame_objfile_data));
be391dca
TT
1722 }
1723 gdb_assert (fde_table != NULL);
1724
1725 if (fde_table->num_entries == 0)
4ae9ee8e
DJ
1726 continue;
1727
1728 gdb_assert (objfile->section_offsets);
1729 offset = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1730
b01c8410
PP
1731 gdb_assert (fde_table->num_entries > 0);
1732 if (*pc < offset + fde_table->entries[0]->initial_location)
1733 continue;
1734
1735 seek_pc = *pc - offset;
9a3c8263
SM
1736 p_fde = ((struct dwarf2_fde **)
1737 bsearch (&seek_pc, fde_table->entries, fde_table->num_entries,
1738 sizeof (fde_table->entries[0]), bsearch_fde_cmp));
b01c8410
PP
1739 if (p_fde != NULL)
1740 {
1741 *pc = (*p_fde)->initial_location + offset;
ac56253d
TT
1742 if (out_offset)
1743 *out_offset = offset;
b01c8410
PP
1744 return *p_fde;
1745 }
cfc14b3a 1746 }
cfc14b3a
MK
1747 return NULL;
1748}
1749
b01c8410 1750/* Add a pointer to new FDE to the FDE_TABLE, allocating space for it. */
cfc14b3a 1751static void
b01c8410 1752add_fde (struct dwarf2_fde_table *fde_table, struct dwarf2_fde *fde)
cfc14b3a 1753{
b01c8410
PP
1754 if (fde->address_range == 0)
1755 /* Discard useless FDEs. */
1756 return;
1757
1758 fde_table->num_entries += 1;
224c3ddb
SM
1759 fde_table->entries = XRESIZEVEC (struct dwarf2_fde *, fde_table->entries,
1760 fde_table->num_entries);
b01c8410 1761 fde_table->entries[fde_table->num_entries - 1] = fde;
cfc14b3a
MK
1762}
1763
cfc14b3a 1764#define DW64_CIE_ID 0xffffffffffffffffULL
cfc14b3a 1765
8bd90839
FM
1766/* Defines the type of eh_frames that are expected to be decoded: CIE, FDE
1767 or any of them. */
1768
1769enum eh_frame_type
1770{
1771 EH_CIE_TYPE_ID = 1 << 0,
1772 EH_FDE_TYPE_ID = 1 << 1,
1773 EH_CIE_OR_FDE_TYPE_ID = EH_CIE_TYPE_ID | EH_FDE_TYPE_ID
1774};
1775
f664829e
DE
1776static const gdb_byte *decode_frame_entry (struct comp_unit *unit,
1777 const gdb_byte *start,
1778 int eh_frame_p,
1779 struct dwarf2_cie_table *cie_table,
1780 struct dwarf2_fde_table *fde_table,
1781 enum eh_frame_type entry_type);
8bd90839
FM
1782
1783/* Decode the next CIE or FDE, entry_type specifies the expected type.
1784 Return NULL if invalid input, otherwise the next byte to be processed. */
cfc14b3a 1785
f664829e
DE
1786static const gdb_byte *
1787decode_frame_entry_1 (struct comp_unit *unit, const gdb_byte *start,
1788 int eh_frame_p,
b01c8410 1789 struct dwarf2_cie_table *cie_table,
8bd90839
FM
1790 struct dwarf2_fde_table *fde_table,
1791 enum eh_frame_type entry_type)
cfc14b3a 1792{
5e2b427d 1793 struct gdbarch *gdbarch = get_objfile_arch (unit->objfile);
f664829e 1794 const gdb_byte *buf, *end;
cfc14b3a
MK
1795 LONGEST length;
1796 unsigned int bytes_read;
6896c0c7
RH
1797 int dwarf64_p;
1798 ULONGEST cie_id;
cfc14b3a 1799 ULONGEST cie_pointer;
9fccedf7
DE
1800 int64_t sleb128;
1801 uint64_t uleb128;
cfc14b3a 1802
6896c0c7 1803 buf = start;
cfc14b3a
MK
1804 length = read_initial_length (unit->abfd, buf, &bytes_read);
1805 buf += bytes_read;
1806 end = buf + length;
1807
0963b4bd 1808 /* Are we still within the section? */
6896c0c7
RH
1809 if (end > unit->dwarf_frame_buffer + unit->dwarf_frame_size)
1810 return NULL;
1811
cfc14b3a
MK
1812 if (length == 0)
1813 return end;
1814
6896c0c7
RH
1815 /* Distinguish between 32 and 64-bit encoded frame info. */
1816 dwarf64_p = (bytes_read == 12);
cfc14b3a 1817
6896c0c7 1818 /* In a .eh_frame section, zero is used to distinguish CIEs from FDEs. */
cfc14b3a
MK
1819 if (eh_frame_p)
1820 cie_id = 0;
1821 else if (dwarf64_p)
1822 cie_id = DW64_CIE_ID;
6896c0c7
RH
1823 else
1824 cie_id = DW_CIE_ID;
cfc14b3a
MK
1825
1826 if (dwarf64_p)
1827 {
1828 cie_pointer = read_8_bytes (unit->abfd, buf);
1829 buf += 8;
1830 }
1831 else
1832 {
1833 cie_pointer = read_4_bytes (unit->abfd, buf);
1834 buf += 4;
1835 }
1836
1837 if (cie_pointer == cie_id)
1838 {
1839 /* This is a CIE. */
1840 struct dwarf2_cie *cie;
1841 char *augmentation;
28ba0b33 1842 unsigned int cie_version;
cfc14b3a 1843
8bd90839
FM
1844 /* Check that a CIE was expected. */
1845 if ((entry_type & EH_CIE_TYPE_ID) == 0)
1846 error (_("Found a CIE when not expecting it."));
1847
cfc14b3a
MK
1848 /* Record the offset into the .debug_frame section of this CIE. */
1849 cie_pointer = start - unit->dwarf_frame_buffer;
1850
1851 /* Check whether we've already read it. */
b01c8410 1852 if (find_cie (cie_table, cie_pointer))
cfc14b3a
MK
1853 return end;
1854
8d749320 1855 cie = XOBNEW (&unit->objfile->objfile_obstack, struct dwarf2_cie);
cfc14b3a
MK
1856 cie->initial_instructions = NULL;
1857 cie->cie_pointer = cie_pointer;
1858
1859 /* The encoding for FDE's in a normal .debug_frame section
32b05c07
MK
1860 depends on the target address size. */
1861 cie->encoding = DW_EH_PE_absptr;
cfc14b3a 1862
56c987f6
AO
1863 /* We'll determine the final value later, but we need to
1864 initialize it conservatively. */
1865 cie->signal_frame = 0;
1866
cfc14b3a 1867 /* Check version number. */
28ba0b33 1868 cie_version = read_1_byte (unit->abfd, buf);
2dc7f7b3 1869 if (cie_version != 1 && cie_version != 3 && cie_version != 4)
6896c0c7 1870 return NULL;
303b6f5d 1871 cie->version = cie_version;
cfc14b3a
MK
1872 buf += 1;
1873
1874 /* Interpret the interesting bits of the augmentation. */
303b6f5d 1875 cie->augmentation = augmentation = (char *) buf;
852483bc 1876 buf += (strlen (augmentation) + 1);
cfc14b3a 1877
303b6f5d
DJ
1878 /* Ignore armcc augmentations. We only use them for quirks,
1879 and that doesn't happen until later. */
61012eef 1880 if (startswith (augmentation, "armcc"))
303b6f5d
DJ
1881 augmentation += strlen (augmentation);
1882
cfc14b3a
MK
1883 /* The GCC 2.x "eh" augmentation has a pointer immediately
1884 following the augmentation string, so it must be handled
1885 first. */
1886 if (augmentation[0] == 'e' && augmentation[1] == 'h')
1887 {
1888 /* Skip. */
5e2b427d 1889 buf += gdbarch_ptr_bit (gdbarch) / TARGET_CHAR_BIT;
cfc14b3a
MK
1890 augmentation += 2;
1891 }
1892
2dc7f7b3
TT
1893 if (cie->version >= 4)
1894 {
1895 /* FIXME: check that this is the same as from the CU header. */
1896 cie->addr_size = read_1_byte (unit->abfd, buf);
1897 ++buf;
1898 cie->segment_size = read_1_byte (unit->abfd, buf);
1899 ++buf;
1900 }
1901 else
1902 {
8da614df 1903 cie->addr_size = gdbarch_dwarf2_addr_size (gdbarch);
2dc7f7b3
TT
1904 cie->segment_size = 0;
1905 }
8da614df
CV
1906 /* Address values in .eh_frame sections are defined to have the
1907 target's pointer size. Watchout: This breaks frame info for
1908 targets with pointer size < address size, unless a .debug_frame
0963b4bd 1909 section exists as well. */
8da614df
CV
1910 if (eh_frame_p)
1911 cie->ptr_size = gdbarch_ptr_bit (gdbarch) / TARGET_CHAR_BIT;
1912 else
1913 cie->ptr_size = cie->addr_size;
2dc7f7b3 1914
f664829e
DE
1915 buf = gdb_read_uleb128 (buf, end, &uleb128);
1916 if (buf == NULL)
1917 return NULL;
1918 cie->code_alignment_factor = uleb128;
cfc14b3a 1919
f664829e
DE
1920 buf = gdb_read_sleb128 (buf, end, &sleb128);
1921 if (buf == NULL)
1922 return NULL;
1923 cie->data_alignment_factor = sleb128;
cfc14b3a 1924
28ba0b33
PB
1925 if (cie_version == 1)
1926 {
1927 cie->return_address_register = read_1_byte (unit->abfd, buf);
f664829e 1928 ++buf;
28ba0b33
PB
1929 }
1930 else
f664829e
DE
1931 {
1932 buf = gdb_read_uleb128 (buf, end, &uleb128);
1933 if (buf == NULL)
1934 return NULL;
1935 cie->return_address_register = uleb128;
1936 }
1937
4fc771b8 1938 cie->return_address_register
5e2b427d 1939 = dwarf2_frame_adjust_regnum (gdbarch,
4fc771b8
DJ
1940 cie->return_address_register,
1941 eh_frame_p);
4bf8967c 1942
7131cb6e
RH
1943 cie->saw_z_augmentation = (*augmentation == 'z');
1944 if (cie->saw_z_augmentation)
cfc14b3a 1945 {
9fccedf7 1946 uint64_t length;
cfc14b3a 1947
f664829e
DE
1948 buf = gdb_read_uleb128 (buf, end, &length);
1949 if (buf == NULL)
6896c0c7 1950 return NULL;
cfc14b3a
MK
1951 cie->initial_instructions = buf + length;
1952 augmentation++;
1953 }
1954
1955 while (*augmentation)
1956 {
1957 /* "L" indicates a byte showing how the LSDA pointer is encoded. */
1958 if (*augmentation == 'L')
1959 {
1960 /* Skip. */
1961 buf++;
1962 augmentation++;
1963 }
1964
1965 /* "R" indicates a byte indicating how FDE addresses are encoded. */
1966 else if (*augmentation == 'R')
1967 {
1968 cie->encoding = *buf++;
1969 augmentation++;
1970 }
1971
1972 /* "P" indicates a personality routine in the CIE augmentation. */
1973 else if (*augmentation == 'P')
1974 {
1234d960 1975 /* Skip. Avoid indirection since we throw away the result. */
852483bc 1976 gdb_byte encoding = (*buf++) & ~DW_EH_PE_indirect;
8da614df 1977 read_encoded_value (unit, encoding, cie->ptr_size,
ae0d2f24 1978 buf, &bytes_read, 0);
f724bf08 1979 buf += bytes_read;
cfc14b3a
MK
1980 augmentation++;
1981 }
1982
56c987f6
AO
1983 /* "S" indicates a signal frame, such that the return
1984 address must not be decremented to locate the call frame
1985 info for the previous frame; it might even be the first
1986 instruction of a function, so decrementing it would take
1987 us to a different function. */
1988 else if (*augmentation == 'S')
1989 {
1990 cie->signal_frame = 1;
1991 augmentation++;
1992 }
1993
3e9a2e52
DJ
1994 /* Otherwise we have an unknown augmentation. Assume that either
1995 there is no augmentation data, or we saw a 'z' prefix. */
cfc14b3a
MK
1996 else
1997 {
3e9a2e52
DJ
1998 if (cie->initial_instructions)
1999 buf = cie->initial_instructions;
cfc14b3a
MK
2000 break;
2001 }
2002 }
2003
2004 cie->initial_instructions = buf;
2005 cie->end = end;
b01c8410 2006 cie->unit = unit;
cfc14b3a 2007
b01c8410 2008 add_cie (cie_table, cie);
cfc14b3a
MK
2009 }
2010 else
2011 {
2012 /* This is a FDE. */
2013 struct dwarf2_fde *fde;
3e29f34a 2014 CORE_ADDR addr;
cfc14b3a 2015
8bd90839
FM
2016 /* Check that an FDE was expected. */
2017 if ((entry_type & EH_FDE_TYPE_ID) == 0)
2018 error (_("Found an FDE when not expecting it."));
2019
6896c0c7
RH
2020 /* In an .eh_frame section, the CIE pointer is the delta between the
2021 address within the FDE where the CIE pointer is stored and the
2022 address of the CIE. Convert it to an offset into the .eh_frame
2023 section. */
cfc14b3a
MK
2024 if (eh_frame_p)
2025 {
cfc14b3a
MK
2026 cie_pointer = buf - unit->dwarf_frame_buffer - cie_pointer;
2027 cie_pointer -= (dwarf64_p ? 8 : 4);
2028 }
2029
6896c0c7
RH
2030 /* In either case, validate the result is still within the section. */
2031 if (cie_pointer >= unit->dwarf_frame_size)
2032 return NULL;
2033
8d749320 2034 fde = XOBNEW (&unit->objfile->objfile_obstack, struct dwarf2_fde);
b01c8410 2035 fde->cie = find_cie (cie_table, cie_pointer);
cfc14b3a
MK
2036 if (fde->cie == NULL)
2037 {
2038 decode_frame_entry (unit, unit->dwarf_frame_buffer + cie_pointer,
8bd90839
FM
2039 eh_frame_p, cie_table, fde_table,
2040 EH_CIE_TYPE_ID);
b01c8410 2041 fde->cie = find_cie (cie_table, cie_pointer);
cfc14b3a
MK
2042 }
2043
2044 gdb_assert (fde->cie != NULL);
2045
3e29f34a
MR
2046 addr = read_encoded_value (unit, fde->cie->encoding, fde->cie->ptr_size,
2047 buf, &bytes_read, 0);
2048 fde->initial_location = gdbarch_adjust_dwarf2_addr (gdbarch, addr);
cfc14b3a
MK
2049 buf += bytes_read;
2050
2051 fde->address_range =
ae0d2f24 2052 read_encoded_value (unit, fde->cie->encoding & 0x0f,
8da614df 2053 fde->cie->ptr_size, buf, &bytes_read, 0);
3e29f34a
MR
2054 addr = gdbarch_adjust_dwarf2_addr (gdbarch, addr + fde->address_range);
2055 fde->address_range = addr - fde->initial_location;
cfc14b3a
MK
2056 buf += bytes_read;
2057
7131cb6e
RH
2058 /* A 'z' augmentation in the CIE implies the presence of an
2059 augmentation field in the FDE as well. The only thing known
2060 to be in here at present is the LSDA entry for EH. So we
2061 can skip the whole thing. */
2062 if (fde->cie->saw_z_augmentation)
2063 {
9fccedf7 2064 uint64_t length;
7131cb6e 2065
f664829e
DE
2066 buf = gdb_read_uleb128 (buf, end, &length);
2067 if (buf == NULL)
2068 return NULL;
2069 buf += length;
6896c0c7
RH
2070 if (buf > end)
2071 return NULL;
7131cb6e
RH
2072 }
2073
cfc14b3a
MK
2074 fde->instructions = buf;
2075 fde->end = end;
2076
4bf8967c
AS
2077 fde->eh_frame_p = eh_frame_p;
2078
b01c8410 2079 add_fde (fde_table, fde);
cfc14b3a
MK
2080 }
2081
2082 return end;
2083}
6896c0c7 2084
8bd90839
FM
2085/* Read a CIE or FDE in BUF and decode it. Entry_type specifies whether we
2086 expect an FDE or a CIE. */
2087
f664829e
DE
2088static const gdb_byte *
2089decode_frame_entry (struct comp_unit *unit, const gdb_byte *start,
2090 int eh_frame_p,
b01c8410 2091 struct dwarf2_cie_table *cie_table,
8bd90839
FM
2092 struct dwarf2_fde_table *fde_table,
2093 enum eh_frame_type entry_type)
6896c0c7
RH
2094{
2095 enum { NONE, ALIGN4, ALIGN8, FAIL } workaround = NONE;
f664829e 2096 const gdb_byte *ret;
6896c0c7
RH
2097 ptrdiff_t start_offset;
2098
2099 while (1)
2100 {
b01c8410 2101 ret = decode_frame_entry_1 (unit, start, eh_frame_p,
8bd90839 2102 cie_table, fde_table, entry_type);
6896c0c7
RH
2103 if (ret != NULL)
2104 break;
2105
2106 /* We have corrupt input data of some form. */
2107
2108 /* ??? Try, weakly, to work around compiler/assembler/linker bugs
2109 and mismatches wrt padding and alignment of debug sections. */
2110 /* Note that there is no requirement in the standard for any
2111 alignment at all in the frame unwind sections. Testing for
2112 alignment before trying to interpret data would be incorrect.
2113
2114 However, GCC traditionally arranged for frame sections to be
2115 sized such that the FDE length and CIE fields happen to be
2116 aligned (in theory, for performance). This, unfortunately,
2117 was done with .align directives, which had the side effect of
2118 forcing the section to be aligned by the linker.
2119
2120 This becomes a problem when you have some other producer that
2121 creates frame sections that are not as strictly aligned. That
2122 produces a hole in the frame info that gets filled by the
2123 linker with zeros.
2124
2125 The GCC behaviour is arguably a bug, but it's effectively now
2126 part of the ABI, so we're now stuck with it, at least at the
2127 object file level. A smart linker may decide, in the process
2128 of compressing duplicate CIE information, that it can rewrite
2129 the entire output section without this extra padding. */
2130
2131 start_offset = start - unit->dwarf_frame_buffer;
2132 if (workaround < ALIGN4 && (start_offset & 3) != 0)
2133 {
2134 start += 4 - (start_offset & 3);
2135 workaround = ALIGN4;
2136 continue;
2137 }
2138 if (workaround < ALIGN8 && (start_offset & 7) != 0)
2139 {
2140 start += 8 - (start_offset & 7);
2141 workaround = ALIGN8;
2142 continue;
2143 }
2144
2145 /* Nothing left to try. Arrange to return as if we've consumed
2146 the entire input section. Hopefully we'll get valid info from
2147 the other of .debug_frame/.eh_frame. */
2148 workaround = FAIL;
2149 ret = unit->dwarf_frame_buffer + unit->dwarf_frame_size;
2150 break;
2151 }
2152
2153 switch (workaround)
2154 {
2155 case NONE:
2156 break;
2157
2158 case ALIGN4:
b98664d3 2159 complaint (_("\
3e43a32a 2160Corrupt data in %s:%s; align 4 workaround apparently succeeded"),
6896c0c7
RH
2161 unit->dwarf_frame_section->owner->filename,
2162 unit->dwarf_frame_section->name);
2163 break;
2164
2165 case ALIGN8:
b98664d3 2166 complaint (_("\
3e43a32a 2167Corrupt data in %s:%s; align 8 workaround apparently succeeded"),
6896c0c7
RH
2168 unit->dwarf_frame_section->owner->filename,
2169 unit->dwarf_frame_section->name);
2170 break;
2171
2172 default:
b98664d3 2173 complaint (_("Corrupt data in %s:%s"),
6896c0c7
RH
2174 unit->dwarf_frame_section->owner->filename,
2175 unit->dwarf_frame_section->name);
2176 break;
2177 }
2178
2179 return ret;
2180}
cfc14b3a 2181\f
b01c8410
PP
2182static int
2183qsort_fde_cmp (const void *a, const void *b)
2184{
2185 struct dwarf2_fde *aa = *(struct dwarf2_fde **)a;
2186 struct dwarf2_fde *bb = *(struct dwarf2_fde **)b;
e5af178f 2187
b01c8410 2188 if (aa->initial_location == bb->initial_location)
e5af178f
PP
2189 {
2190 if (aa->address_range != bb->address_range
2191 && aa->eh_frame_p == 0 && bb->eh_frame_p == 0)
2192 /* Linker bug, e.g. gold/10400.
2193 Work around it by keeping stable sort order. */
2194 return (a < b) ? -1 : 1;
2195 else
2196 /* Put eh_frame entries after debug_frame ones. */
2197 return aa->eh_frame_p - bb->eh_frame_p;
2198 }
b01c8410
PP
2199
2200 return (aa->initial_location < bb->initial_location) ? -1 : 1;
2201}
2202
cfc14b3a
MK
2203void
2204dwarf2_build_frame_info (struct objfile *objfile)
2205{
ae0d2f24 2206 struct comp_unit *unit;
f664829e 2207 const gdb_byte *frame_ptr;
b01c8410
PP
2208 struct dwarf2_cie_table cie_table;
2209 struct dwarf2_fde_table fde_table;
be391dca 2210 struct dwarf2_fde_table *fde_table2;
b01c8410
PP
2211
2212 cie_table.num_entries = 0;
2213 cie_table.entries = NULL;
2214
2215 fde_table.num_entries = 0;
2216 fde_table.entries = NULL;
cfc14b3a
MK
2217
2218 /* Build a minimal decoding of the DWARF2 compilation unit. */
e39db4db 2219 unit = XOBNEW (&objfile->objfile_obstack, comp_unit);
ae0d2f24
UW
2220 unit->abfd = objfile->obfd;
2221 unit->objfile = objfile;
2222 unit->dbase = 0;
2223 unit->tbase = 0;
cfc14b3a 2224
d40102a1 2225 if (objfile->separate_debug_objfile_backlink == NULL)
cfc14b3a 2226 {
d40102a1
JB
2227 /* Do not read .eh_frame from separate file as they must be also
2228 present in the main file. */
2229 dwarf2_get_section_info (objfile, DWARF2_EH_FRAME,
2230 &unit->dwarf_frame_section,
2231 &unit->dwarf_frame_buffer,
2232 &unit->dwarf_frame_size);
2233 if (unit->dwarf_frame_size)
b01c8410 2234 {
d40102a1
JB
2235 asection *got, *txt;
2236
2237 /* FIXME: kettenis/20030602: This is the DW_EH_PE_datarel base
2238 that is used for the i386/amd64 target, which currently is
2239 the only target in GCC that supports/uses the
2240 DW_EH_PE_datarel encoding. */
2241 got = bfd_get_section_by_name (unit->abfd, ".got");
2242 if (got)
2243 unit->dbase = got->vma;
2244
2245 /* GCC emits the DW_EH_PE_textrel encoding type on sh and ia64
2246 so far. */
2247 txt = bfd_get_section_by_name (unit->abfd, ".text");
2248 if (txt)
2249 unit->tbase = txt->vma;
2250
492d29ea 2251 TRY
8bd90839
FM
2252 {
2253 frame_ptr = unit->dwarf_frame_buffer;
2254 while (frame_ptr < unit->dwarf_frame_buffer + unit->dwarf_frame_size)
2255 frame_ptr = decode_frame_entry (unit, frame_ptr, 1,
2256 &cie_table, &fde_table,
2257 EH_CIE_OR_FDE_TYPE_ID);
2258 }
2259
492d29ea 2260 CATCH (e, RETURN_MASK_ERROR)
8bd90839
FM
2261 {
2262 warning (_("skipping .eh_frame info of %s: %s"),
4262abfb 2263 objfile_name (objfile), e.message);
8bd90839
FM
2264
2265 if (fde_table.num_entries != 0)
2266 {
2267 xfree (fde_table.entries);
2268 fde_table.entries = NULL;
2269 fde_table.num_entries = 0;
2270 }
2271 /* The cie_table is discarded by the next if. */
2272 }
492d29ea 2273 END_CATCH
d40102a1
JB
2274
2275 if (cie_table.num_entries != 0)
2276 {
2277 /* Reinit cie_table: debug_frame has different CIEs. */
2278 xfree (cie_table.entries);
2279 cie_table.num_entries = 0;
2280 cie_table.entries = NULL;
2281 }
b01c8410 2282 }
cfc14b3a
MK
2283 }
2284
3017a003 2285 dwarf2_get_section_info (objfile, DWARF2_DEBUG_FRAME,
dce234bc
PP
2286 &unit->dwarf_frame_section,
2287 &unit->dwarf_frame_buffer,
2288 &unit->dwarf_frame_size);
2289 if (unit->dwarf_frame_size)
cfc14b3a 2290 {
8bd90839
FM
2291 int num_old_fde_entries = fde_table.num_entries;
2292
492d29ea 2293 TRY
8bd90839
FM
2294 {
2295 frame_ptr = unit->dwarf_frame_buffer;
2296 while (frame_ptr < unit->dwarf_frame_buffer + unit->dwarf_frame_size)
2297 frame_ptr = decode_frame_entry (unit, frame_ptr, 0,
2298 &cie_table, &fde_table,
2299 EH_CIE_OR_FDE_TYPE_ID);
2300 }
492d29ea 2301 CATCH (e, RETURN_MASK_ERROR)
8bd90839
FM
2302 {
2303 warning (_("skipping .debug_frame info of %s: %s"),
4262abfb 2304 objfile_name (objfile), e.message);
8bd90839
FM
2305
2306 if (fde_table.num_entries != 0)
2307 {
2308 fde_table.num_entries = num_old_fde_entries;
2309 if (num_old_fde_entries == 0)
2310 {
2311 xfree (fde_table.entries);
2312 fde_table.entries = NULL;
2313 }
2314 else
2315 {
224c3ddb
SM
2316 fde_table.entries
2317 = XRESIZEVEC (struct dwarf2_fde *, fde_table.entries,
2318 fde_table.num_entries);
8bd90839
FM
2319 }
2320 }
2321 fde_table.num_entries = num_old_fde_entries;
2322 /* The cie_table is discarded by the next if. */
2323 }
492d29ea 2324 END_CATCH
b01c8410
PP
2325 }
2326
2327 /* Discard the cie_table, it is no longer needed. */
2328 if (cie_table.num_entries != 0)
2329 {
2330 xfree (cie_table.entries);
2331 cie_table.entries = NULL; /* Paranoia. */
2332 cie_table.num_entries = 0; /* Paranoia. */
2333 }
2334
be391dca 2335 /* Copy fde_table to obstack: it is needed at runtime. */
8d749320 2336 fde_table2 = XOBNEW (&objfile->objfile_obstack, struct dwarf2_fde_table);
be391dca
TT
2337
2338 if (fde_table.num_entries == 0)
2339 {
2340 fde_table2->entries = NULL;
2341 fde_table2->num_entries = 0;
2342 }
2343 else
b01c8410 2344 {
875cdfbb
PA
2345 struct dwarf2_fde *fde_prev = NULL;
2346 struct dwarf2_fde *first_non_zero_fde = NULL;
2347 int i;
b01c8410
PP
2348
2349 /* Prepare FDE table for lookups. */
2350 qsort (fde_table.entries, fde_table.num_entries,
2351 sizeof (fde_table.entries[0]), qsort_fde_cmp);
2352
875cdfbb
PA
2353 /* Check for leftovers from --gc-sections. The GNU linker sets
2354 the relevant symbols to zero, but doesn't zero the FDE *end*
2355 ranges because there's no relocation there. It's (offset,
2356 length), not (start, end). On targets where address zero is
2357 just another valid address this can be a problem, since the
2358 FDEs appear to be non-empty in the output --- we could pick
2359 out the wrong FDE. To work around this, when overlaps are
2360 detected, we prefer FDEs that do not start at zero.
2361
2362 Start by finding the first FDE with non-zero start. Below
2363 we'll discard all FDEs that start at zero and overlap this
2364 one. */
2365 for (i = 0; i < fde_table.num_entries; i++)
2366 {
2367 struct dwarf2_fde *fde = fde_table.entries[i];
b01c8410 2368
875cdfbb
PA
2369 if (fde->initial_location != 0)
2370 {
2371 first_non_zero_fde = fde;
2372 break;
2373 }
2374 }
2375
2376 /* Since we'll be doing bsearch, squeeze out identical (except
2377 for eh_frame_p) fde entries so bsearch result is predictable.
2378 Also discard leftovers from --gc-sections. */
be391dca 2379 fde_table2->num_entries = 0;
875cdfbb
PA
2380 for (i = 0; i < fde_table.num_entries; i++)
2381 {
2382 struct dwarf2_fde *fde = fde_table.entries[i];
2383
2384 if (fde->initial_location == 0
2385 && first_non_zero_fde != NULL
2386 && (first_non_zero_fde->initial_location
2387 < fde->initial_location + fde->address_range))
2388 continue;
2389
2390 if (fde_prev != NULL
2391 && fde_prev->initial_location == fde->initial_location)
2392 continue;
2393
2394 obstack_grow (&objfile->objfile_obstack, &fde_table.entries[i],
2395 sizeof (fde_table.entries[0]));
2396 ++fde_table2->num_entries;
2397 fde_prev = fde;
2398 }
224c3ddb
SM
2399 fde_table2->entries
2400 = (struct dwarf2_fde **) obstack_finish (&objfile->objfile_obstack);
b01c8410
PP
2401
2402 /* Discard the original fde_table. */
2403 xfree (fde_table.entries);
cfc14b3a 2404 }
be391dca
TT
2405
2406 set_objfile_data (objfile, dwarf2_frame_objfile_data, fde_table2);
cfc14b3a 2407}
0d0e1a63 2408
3c3bb058
AB
2409/* Handle 'maintenance show dwarf unwinders'. */
2410
2411static void
2412show_dwarf_unwinders_enabled_p (struct ui_file *file, int from_tty,
2413 struct cmd_list_element *c,
2414 const char *value)
2415{
2416 fprintf_filtered (file,
2417 _("The DWARF stack unwinders are currently %s.\n"),
2418 value);
2419}
2420
0d0e1a63
MK
2421void
2422_initialize_dwarf2_frame (void)
2423{
030f20e1 2424 dwarf2_frame_data = gdbarch_data_register_pre_init (dwarf2_frame_init);
8f22cb90 2425 dwarf2_frame_objfile_data = register_objfile_data ();
1c90d9f0 2426
3c3bb058
AB
2427 add_setshow_boolean_cmd ("unwinders", class_obscure,
2428 &dwarf2_frame_unwinders_enabled_p , _("\
2429Set whether the DWARF stack frame unwinders are used."), _("\
2430Show whether the DWARF stack frame unwinders are used."), _("\
2431When enabled the DWARF stack frame unwinders can be used for architectures\n\
2432that support the DWARF unwinders. Enabling the DWARF unwinders for an\n\
2433architecture that doesn't support them will have no effect."),
2434 NULL,
2435 show_dwarf_unwinders_enabled_p,
2436 &set_dwarf_cmdlist,
2437 &show_dwarf_cmdlist);
2438
1c90d9f0 2439#if GDB_SELF_TEST
1526853e
SM
2440 selftests::register_test_foreach_arch ("execute_cfa_program",
2441 selftests::execute_cfa_program_test);
1c90d9f0 2442#endif
0d0e1a63 2443}
This page took 1.386203 seconds and 4 git commands to generate.