1 /* Frame unwinder for frames with DWARF Call Frame Information.
3 Copyright 2003 Free Software Foundation, Inc.
5 Contributed by Mark Kettenis.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
25 #include "dwarf2expr.h"
26 #include "elf/dwarf2.h"
28 #include "frame-base.h"
29 #include "frame-unwind.h"
36 #include "gdb_assert.h"
37 #include "gdb_string.h"
39 #include "dwarf2-frame.h"
41 /* Call Frame Information (CFI). */
43 /* Common Information Entry (CIE). */
47 /* Offset into the .debug_frame section where this CIE was found.
48 Used to identify this CIE. */
51 /* Constant that is factored out of all advance location
53 ULONGEST code_alignment_factor
;
55 /* Constants that is factored out of all offset instructions. */
56 LONGEST data_alignment_factor
;
58 /* Return address column. */
59 ULONGEST return_address_register
;
61 /* Instruction sequence to initialize a register set. */
62 unsigned char *initial_instructions
;
65 /* Encoding of addresses. */
66 unsigned char encoding
;
68 /* True if a 'z' augmentation existed. */
69 unsigned char saw_z_augmentation
;
71 struct dwarf2_cie
*next
;
74 /* Frame Description Entry (FDE). */
78 /* CIE for this FDE. */
79 struct dwarf2_cie
*cie
;
81 /* First location associated with this FDE. */
82 CORE_ADDR initial_location
;
84 /* Number of bytes of program instructions described by this FDE. */
85 CORE_ADDR address_range
;
87 /* Instruction sequence. */
88 unsigned char *instructions
;
91 struct dwarf2_fde
*next
;
94 static struct dwarf2_fde
*dwarf2_frame_find_fde (CORE_ADDR
*pc
);
97 /* Structure describing a frame state. */
99 struct dwarf2_frame_state
101 /* Each register save state can be described in terms of a CFA slot,
102 another register, or a location expression. */
103 struct dwarf2_frame_state_reg_info
105 struct dwarf2_frame_state_reg
123 /* Used to implement DW_CFA_remember_state. */
124 struct dwarf2_frame_state_reg_info
*prev
;
129 unsigned char *cfa_exp
;
136 /* The PC described by the current frame state. */
139 /* Initial register set from the CIE.
140 Used to implement DW_CFA_restore. */
141 struct dwarf2_frame_state_reg_info initial
;
143 /* The information we care about from the CIE. */
146 ULONGEST retaddr_column
;
149 /* Store the length the expression for the CFA in the `cfa_reg' field,
150 which is unused in that case. */
151 #define cfa_exp_len cfa_reg
153 /* Assert that the register set RS is large enough to store NUM_REGS
154 columns. If necessary, enlarge the register set. */
157 dwarf2_frame_state_alloc_regs (struct dwarf2_frame_state_reg_info
*rs
,
160 size_t size
= sizeof (struct dwarf2_frame_state_reg
);
162 if (num_regs
<= rs
->num_regs
)
165 rs
->reg
= (struct dwarf2_frame_state_reg
*)
166 xrealloc (rs
->reg
, num_regs
* size
);
168 /* Initialize newly allocated registers. */
169 memset (rs
->reg
+ rs
->num_regs
, 0, (num_regs
- rs
->num_regs
) * size
);
170 rs
->num_regs
= num_regs
;
173 /* Copy the register columns in register set RS into newly allocated
174 memory and return a pointer to this newly created copy. */
176 static struct dwarf2_frame_state_reg
*
177 dwarf2_frame_state_copy_regs (struct dwarf2_frame_state_reg_info
*rs
)
179 size_t size
= rs
->num_regs
* sizeof (struct dwarf2_frame_state_reg_info
);
180 struct dwarf2_frame_state_reg
*reg
;
182 reg
= (struct dwarf2_frame_state_reg
*) xmalloc (size
);
183 memcpy (reg
, rs
->reg
, size
);
188 /* Release the memory allocated to register set RS. */
191 dwarf2_frame_state_free_regs (struct dwarf2_frame_state_reg_info
*rs
)
195 dwarf2_frame_state_free_regs (rs
->prev
);
202 /* Release the memory allocated to the frame state FS. */
205 dwarf2_frame_state_free (void *p
)
207 struct dwarf2_frame_state
*fs
= p
;
209 dwarf2_frame_state_free_regs (fs
->initial
.prev
);
210 dwarf2_frame_state_free_regs (fs
->regs
.prev
);
211 xfree (fs
->initial
.reg
);
212 xfree (fs
->regs
.reg
);
217 /* Helper functions for execute_stack_op. */
220 read_reg (void *baton
, int reg
)
222 struct frame_info
*next_frame
= (struct frame_info
*) baton
;
226 regnum
= DWARF2_REG_TO_REGNUM (reg
);
228 buf
= (char *) alloca (register_size (current_gdbarch
, regnum
));
229 frame_unwind_register (next_frame
, regnum
, buf
);
230 return extract_typed_address (buf
, builtin_type_void_data_ptr
);
234 read_mem (void *baton
, char *buf
, CORE_ADDR addr
, size_t len
)
236 read_memory (addr
, buf
, len
);
240 no_get_frame_base (void *baton
, unsigned char **start
, size_t *length
)
242 internal_error (__FILE__
, __LINE__
,
243 "Support for DW_OP_fbreg is unimplemented");
247 no_get_tls_address (void *baton
, CORE_ADDR offset
)
249 internal_error (__FILE__
, __LINE__
,
250 "Support for DW_OP_GNU_push_tls_address is unimplemented");
254 execute_stack_op (unsigned char *exp
, ULONGEST len
,
255 struct frame_info
*next_frame
, CORE_ADDR initial
)
257 struct dwarf_expr_context
*ctx
;
260 ctx
= new_dwarf_expr_context ();
261 ctx
->baton
= next_frame
;
262 ctx
->read_reg
= read_reg
;
263 ctx
->read_mem
= read_mem
;
264 ctx
->get_frame_base
= no_get_frame_base
;
265 ctx
->get_tls_address
= no_get_tls_address
;
267 dwarf_expr_push (ctx
, initial
);
268 dwarf_expr_eval (ctx
, exp
, len
);
269 result
= dwarf_expr_fetch (ctx
, 0);
272 result
= read_reg (next_frame
, result
);
274 free_dwarf_expr_context (ctx
);
281 execute_cfa_program (unsigned char *insn_ptr
, unsigned char *insn_end
,
282 struct frame_info
*next_frame
,
283 struct dwarf2_frame_state
*fs
)
285 CORE_ADDR pc
= frame_pc_unwind (next_frame
);
288 while (insn_ptr
< insn_end
&& fs
->pc
<= pc
)
290 unsigned char insn
= *insn_ptr
++;
294 if ((insn
& 0xc0) == DW_CFA_advance_loc
)
295 fs
->pc
+= (insn
& 0x3f) * fs
->code_align
;
296 else if ((insn
& 0xc0) == DW_CFA_offset
)
299 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, &utmp
);
300 offset
= utmp
* fs
->data_align
;
301 dwarf2_frame_state_alloc_regs (&fs
->regs
, reg
+ 1);
302 fs
->regs
.reg
[reg
].how
= REG_SAVED_OFFSET
;
303 fs
->regs
.reg
[reg
].loc
.offset
= offset
;
305 else if ((insn
& 0xc0) == DW_CFA_restore
)
307 gdb_assert (fs
->initial
.reg
);
309 dwarf2_frame_state_alloc_regs (&fs
->regs
, reg
+ 1);
310 fs
->regs
.reg
[reg
] = fs
->initial
.reg
[reg
];
317 fs
->pc
= dwarf2_read_address (insn_ptr
, insn_end
, &bytes_read
);
318 insn_ptr
+= bytes_read
;
321 case DW_CFA_advance_loc1
:
322 utmp
= extract_unsigned_integer (insn_ptr
, 1);
323 fs
->pc
+= utmp
* fs
->code_align
;
326 case DW_CFA_advance_loc2
:
327 utmp
= extract_unsigned_integer (insn_ptr
, 2);
328 fs
->pc
+= utmp
* fs
->code_align
;
331 case DW_CFA_advance_loc4
:
332 utmp
= extract_unsigned_integer (insn_ptr
, 4);
333 fs
->pc
+= utmp
* fs
->code_align
;
337 case DW_CFA_offset_extended
:
338 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, ®
);
339 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, &utmp
);
340 offset
= utmp
* fs
->data_align
;
341 dwarf2_frame_state_alloc_regs (&fs
->regs
, reg
+ 1);
342 fs
->regs
.reg
[reg
].how
= REG_SAVED_OFFSET
;
343 fs
->regs
.reg
[reg
].loc
.offset
= offset
;
346 case DW_CFA_restore_extended
:
347 gdb_assert (fs
->initial
.reg
);
348 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, ®
);
349 dwarf2_frame_state_alloc_regs (&fs
->regs
, reg
+ 1);
350 fs
->regs
.reg
[reg
] = fs
->initial
.reg
[reg
];
353 case DW_CFA_undefined
:
354 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, ®
);
355 dwarf2_frame_state_alloc_regs (&fs
->regs
, reg
+ 1);
356 fs
->regs
.reg
[reg
].how
= REG_UNSAVED
;
359 case DW_CFA_same_value
:
360 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, ®
);
361 dwarf2_frame_state_alloc_regs (&fs
->regs
, reg
+ 1);
362 fs
->regs
.reg
[reg
].how
= REG_UNMODIFIED
;
365 case DW_CFA_register
:
366 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, ®
);
367 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, &utmp
);
368 dwarf2_frame_state_alloc_regs (&fs
->regs
, reg
+ 1);
369 fs
->regs
.reg
[reg
].loc
.reg
= utmp
;
372 case DW_CFA_remember_state
:
374 struct dwarf2_frame_state_reg_info
*new_rs
;
376 new_rs
= XMALLOC (struct dwarf2_frame_state_reg_info
);
378 fs
->regs
.reg
= dwarf2_frame_state_copy_regs (&fs
->regs
);
379 fs
->regs
.prev
= new_rs
;
383 case DW_CFA_restore_state
:
385 struct dwarf2_frame_state_reg_info
*old_rs
= fs
->regs
.prev
;
389 xfree (fs
->regs
.reg
);
396 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, &fs
->cfa_reg
);
397 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, &utmp
);
398 fs
->cfa_offset
= utmp
;
399 fs
->cfa_how
= CFA_REG_OFFSET
;
402 case DW_CFA_def_cfa_register
:
403 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, &fs
->cfa_reg
);
404 fs
->cfa_how
= CFA_REG_OFFSET
;
407 case DW_CFA_def_cfa_offset
:
408 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, &fs
->cfa_offset
);
409 /* cfa_how deliberately not set. */
412 case DW_CFA_def_cfa_expression
:
413 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, &fs
->cfa_exp_len
);
414 fs
->cfa_exp
= insn_ptr
;
415 fs
->cfa_how
= CFA_EXP
;
416 insn_ptr
+= fs
->cfa_exp_len
;
419 case DW_CFA_expression
:
420 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, ®
);
421 dwarf2_frame_state_alloc_regs (&fs
->regs
, reg
+ 1);
422 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, &utmp
);
423 fs
->regs
.reg
[reg
].loc
.exp
= insn_ptr
;
424 fs
->regs
.reg
[reg
].exp_len
= utmp
;
425 fs
->regs
.reg
[reg
].how
= REG_SAVED_EXP
;
432 case DW_CFA_GNU_args_size
:
434 insn_ptr
= read_uleb128 (insn_ptr
, insn_end
, &utmp
);
438 internal_error (__FILE__
, __LINE__
, "Unknown CFI encountered.");
443 /* Don't allow remember/restore between CIE and FDE programs. */
444 dwarf2_frame_state_free_regs (fs
->regs
.prev
);
445 fs
->regs
.prev
= NULL
;
448 struct dwarf2_frame_cache
450 /* DWARF Call Frame Address. */
453 /* Saved registers, indexed by GDB register number, not by DWARF
455 struct dwarf2_frame_state_reg
*reg
;
458 static struct dwarf2_frame_cache
*
459 dwarf2_frame_cache (struct frame_info
*next_frame
, void **this_cache
)
461 struct cleanup
*old_chain
;
462 int num_regs
= NUM_REGS
+ NUM_PSEUDO_REGS
;
463 struct dwarf2_frame_cache
*cache
;
464 struct dwarf2_frame_state
*fs
;
465 struct dwarf2_fde
*fde
;
471 /* Allocate a new cache. */
472 cache
= FRAME_OBSTACK_ZALLOC (struct dwarf2_frame_cache
);
473 cache
->reg
= FRAME_OBSTACK_CALLOC (num_regs
, struct dwarf2_frame_state_reg
);
475 /* Allocate and initialize the frame state. */
476 fs
= XMALLOC (struct dwarf2_frame_state
);
477 memset (fs
, 0, sizeof (struct dwarf2_frame_state
));
478 old_chain
= make_cleanup (dwarf2_frame_state_free
, fs
);
482 Note that if NEXT_FRAME is never supposed to return (i.e. a call
483 to abort), the compiler might optimize away the instruction at
484 NEXT_FRAME's return address. As a result the return address will
485 point at some random instruction, and the CFI for that
486 instruction is probably wortless to us. GCC's unwinder solves
487 this problem by substracting 1 from the return address to get an
488 address in the middle of a presumed call instruction (or the
489 instruction in the associated delay slot). This should only be
490 done for "normal" frames and not for resume-type frames (signal
491 handlers, sentinel frames, dummy frames).
493 We don't do what GCC's does here (yet). It's not clear how
494 reliable the method is. There's also a problem with finding the
495 right FDE; see the comment in dwarf_frame_p. If dwarf_frame_p
496 selected this frame unwinder because it found the FDE for the
497 next function, using the adjusted return address might not yield
498 a FDE at all. The problem isn't specific to DWARF CFI; other
499 unwinders loose in similar ways. Therefore it's probably
500 acceptable to leave things slightly broken for now. */
501 fs
->pc
= frame_pc_unwind (next_frame
);
503 /* Find the correct FDE. */
504 fde
= dwarf2_frame_find_fde (&fs
->pc
);
505 gdb_assert (fde
!= NULL
);
507 /* Extract any interesting information from the CIE. */
508 fs
->data_align
= fde
->cie
->data_alignment_factor
;
509 fs
->code_align
= fde
->cie
->code_alignment_factor
;
510 fs
->retaddr_column
= fde
->cie
->return_address_register
;
512 /* First decode all the insns in the CIE. */
513 execute_cfa_program (fde
->cie
->initial_instructions
,
514 fde
->cie
->end
, next_frame
, fs
);
516 /* Save the initialized register set. */
517 fs
->initial
= fs
->regs
;
518 fs
->initial
.reg
= dwarf2_frame_state_copy_regs (&fs
->regs
);
520 /* Then decode the insns in the FDE up to our target PC. */
521 execute_cfa_program (fde
->instructions
, fde
->end
, next_frame
, fs
);
523 /* Caclulate the CFA. */
527 cache
->cfa
= read_reg (next_frame
, fs
->cfa_reg
);
528 cache
->cfa
+= fs
->cfa_offset
;
533 execute_stack_op (fs
->cfa_exp
, fs
->cfa_exp_len
, next_frame
, 0);
537 internal_error (__FILE__
, __LINE__
, "Unknown CFA rule.");
540 /* Save the register info in the cache. */
541 for (reg
= 0; reg
< fs
->regs
.num_regs
; reg
++)
545 /* Skip the return address column. */
546 if (reg
== fs
->retaddr_column
)
547 /* NOTE: cagney/2003-06-07: Is this right? What if the
548 RETADDR_COLUM corresponds to a real register (and, worse,
549 that isn't the PC_REGNUM)? I'm guessing that the PC_REGNUM
550 further down is trying to handle this. That can't be right
551 though - PC_REGNUM may not be valid (it can be -ve). I
552 think, instead when RETADDR_COLUM isn't a real register, it
553 should map itself onto frame_pc_unwind. */
556 /* Use the GDB register number as index. */
557 regnum
= DWARF2_REG_TO_REGNUM (reg
);
559 if (regnum
>= 0 && regnum
< num_regs
)
560 cache
->reg
[regnum
] = fs
->regs
.reg
[reg
];
563 /* Store the location of the return addess. If the return address
564 column (adjusted) is not the same as gdb's PC_REGNUM, then this
565 implies a copy from the ra column register. */
566 if (fs
->retaddr_column
< fs
->regs
.num_regs
567 && fs
->regs
.reg
[fs
->retaddr_column
].how
!= REG_UNSAVED
)
569 /* See comment above about a possibly -ve PC_REGNUM. If this
570 assertion fails, it's a problem with this code and not the
572 gdb_assert (PC_REGNUM
>= 0);
573 cache
->reg
[PC_REGNUM
] = fs
->regs
.reg
[fs
->retaddr_column
];
577 reg
= DWARF2_REG_TO_REGNUM (fs
->retaddr_column
);
578 if (reg
!= PC_REGNUM
)
580 /* See comment above about PC_REGNUM being -ve. If this
581 assertion fails, it's a problem with this code and not
583 gdb_assert (PC_REGNUM
>= 0);
584 cache
->reg
[PC_REGNUM
].loc
.reg
= reg
;
585 cache
->reg
[PC_REGNUM
].how
= REG_SAVED_REG
;
589 do_cleanups (old_chain
);
596 dwarf2_frame_this_id (struct frame_info
*next_frame
, void **this_cache
,
597 struct frame_id
*this_id
)
599 struct dwarf2_frame_cache
*cache
=
600 dwarf2_frame_cache (next_frame
, this_cache
);
602 (*this_id
) = frame_id_build (cache
->cfa
, frame_func_unwind (next_frame
));
606 dwarf2_frame_prev_register (struct frame_info
*next_frame
, void **this_cache
,
607 int regnum
, int *optimizedp
,
608 enum lval_type
*lvalp
, CORE_ADDR
*addrp
,
609 int *realnump
, void *valuep
)
611 struct dwarf2_frame_cache
*cache
=
612 dwarf2_frame_cache (next_frame
, this_cache
);
614 switch (cache
->reg
[regnum
].how
)
621 if (regnum
== SP_REGNUM
)
623 /* GCC defines the CFA as the value of the stack pointer
624 just before the call instruction is executed. Do other
625 compilers use the same definition? */
626 /* DWARF V3 Draft 7 p102: Typically, the CFA is defined to
627 be the value of the stack pointer at the call site in the
628 previous frame (which may be different from its value on
629 entry to the current frame). */
630 /* DWARF V3 Draft 7 p103: The first column of the rules
631 defines the rule which computes the CFA value; it may be
632 either a register and a signed offset that are added
633 together or a DWARF expression that is evaluated. */
634 /* FIXME: cagney/2003-07-07: I don't understand this. The
635 CFI info should have provided unwind information for the
636 SP register and then pointed ->cfa_reg at it, not the
637 reverse. Assuming that SP_REGNUM is !-ve, there is a
638 very real posibility that CFA is an offset from some
639 other register, having nothing to do with the unwound SP
644 /* Store the value. */
645 store_typed_address (valuep
, builtin_type_void_data_ptr
,
651 /* In some cases, for example %eflags on the i386, we have
652 to provide a sane value, even though this register wasn't
653 saved. Assume we can get it from NEXT_FRAME. */
654 frame_unwind_register (next_frame
, regnum
, valuep
);
658 case REG_SAVED_OFFSET
:
660 *lvalp
= lval_memory
;
661 *addrp
= cache
->cfa
+ cache
->reg
[regnum
].loc
.offset
;
665 /* Read the value in from memory. */
666 read_memory (*addrp
, valuep
,
667 register_size (current_gdbarch
, regnum
));
672 regnum
= DWARF2_REG_TO_REGNUM (cache
->reg
[regnum
].loc
.reg
);
673 frame_register_unwind (next_frame
, regnum
,
674 optimizedp
, lvalp
, addrp
, realnump
, valuep
);
679 *lvalp
= lval_memory
;
680 *addrp
= execute_stack_op (cache
->reg
[regnum
].loc
.exp
,
681 cache
->reg
[regnum
].exp_len
,
682 next_frame
, cache
->cfa
);
686 /* Read the value in from memory. */
687 read_memory (*addrp
, valuep
,
688 register_size (current_gdbarch
, regnum
));
693 frame_register_unwind (next_frame
, regnum
,
694 optimizedp
, lvalp
, addrp
, realnump
, valuep
);
698 internal_error (__FILE__
, __LINE__
, "Unknown register rule.");
702 static const struct frame_unwind dwarf2_frame_unwind
=
705 dwarf2_frame_this_id
,
706 dwarf2_frame_prev_register
709 const struct frame_unwind
*
710 dwarf2_frame_p (CORE_ADDR pc
)
712 /* The way GDB works, this function can be called with PC just after
713 the last instruction of the function we're supposed to return the
714 unwind methods for. In that case we won't find the correct FDE;
715 instead we find the FDE for the next function, or we won't find
716 an FDE at all. There is a possible solution (see the comment in
717 dwarf2_frame_cache), GDB doesn't pass us enough information to
719 if (dwarf2_frame_find_fde (&pc
))
720 return &dwarf2_frame_unwind
;
726 /* There is no explicitly defined relationship between the CFA and the
727 location of frame's local variables and arguments/parameters.
728 Therefore, frame base methods on this page should probably only be
729 used as a last resort, just to avoid printing total garbage as a
730 response to the "info frame" command. */
733 dwarf2_frame_base_address (struct frame_info
*next_frame
, void **this_cache
)
735 struct dwarf2_frame_cache
*cache
=
736 dwarf2_frame_cache (next_frame
, this_cache
);
741 static const struct frame_base dwarf2_frame_base
=
743 &dwarf2_frame_unwind
,
744 dwarf2_frame_base_address
,
745 dwarf2_frame_base_address
,
746 dwarf2_frame_base_address
749 const struct frame_base
*
750 dwarf2_frame_base_p (CORE_ADDR pc
)
752 if (dwarf2_frame_find_fde (&pc
))
753 return &dwarf2_frame_base
;
758 /* A minimal decoding of DWARF2 compilation units. We only decode
759 what's needed to get to the call frame information. */
763 /* Keep the bfd convenient. */
766 struct objfile
*objfile
;
768 /* Linked list of CIEs for this object. */
769 struct dwarf2_cie
*cie
;
771 /* Address size for this unit - from unit header. */
772 unsigned char addr_size
;
774 /* Pointer to the .debug_frame section loaded into memory. */
775 char *dwarf_frame_buffer
;
777 /* Length of the loaded .debug_frame section. */
778 unsigned long dwarf_frame_size
;
780 /* Pointer to the .debug_frame section. */
781 asection
*dwarf_frame_section
;
783 /* Base for DW_EH_PE_datarel encodings. */
788 read_1_byte (bfd
*bfd
, char *buf
)
790 return bfd_get_8 (abfd
, (bfd_byte
*) buf
);
794 read_4_bytes (bfd
*abfd
, char *buf
)
796 return bfd_get_32 (abfd
, (bfd_byte
*) buf
);
800 read_8_bytes (bfd
*abfd
, char *buf
)
802 return bfd_get_64 (abfd
, (bfd_byte
*) buf
);
806 read_unsigned_leb128 (bfd
*abfd
, char *buf
, unsigned int *bytes_read_ptr
)
809 unsigned int num_read
;
819 byte
= bfd_get_8 (abfd
, (bfd_byte
*) buf
);
822 result
|= ((byte
& 0x7f) << shift
);
827 *bytes_read_ptr
= num_read
;
833 read_signed_leb128 (bfd
*abfd
, char *buf
, unsigned int *bytes_read_ptr
)
837 unsigned int num_read
;
846 byte
= bfd_get_8 (abfd
, (bfd_byte
*) buf
);
849 result
|= ((byte
& 0x7f) << shift
);
854 if ((shift
< 32) && (byte
& 0x40))
855 result
|= -(1 << shift
);
857 *bytes_read_ptr
= num_read
;
863 read_initial_length (bfd
*abfd
, char *buf
, unsigned int *bytes_read_ptr
)
867 result
= bfd_get_32 (abfd
, (bfd_byte
*) buf
);
868 if (result
== 0xffffffff)
870 result
= bfd_get_64 (abfd
, (bfd_byte
*) buf
+ 4);
871 *bytes_read_ptr
= 12;
880 /* Pointer encoding helper functions. */
882 /* GCC supports exception handling based on DWARF2 CFI. However, for
883 technical reasons, it encodes addresses in its FDE's in a different
884 way. Several "pointer encodings" are supported. The encoding
885 that's used for a particular FDE is determined by the 'R'
886 augmentation in the associated CIE. The argument of this
887 augmentation is a single byte.
889 The address can be encoded as 2 bytes, 4 bytes, 8 bytes, or as a
890 LEB128. This is encoded in bits 0, 1 and 2. Bit 3 encodes whether
891 the address is signed or unsigned. Bits 4, 5 and 6 encode how the
892 address should be interpreted (absolute, relative to the current
893 position in the FDE, ...). Bit 7, indicates that the address
894 should be dereferenced. */
897 encoding_for_size (unsigned int size
)
902 return DW_EH_PE_udata2
;
904 return DW_EH_PE_udata4
;
906 return DW_EH_PE_udata8
;
908 internal_error (__FILE__
, __LINE__
, "Unsupported address size");
913 size_of_encoded_value (unsigned char encoding
)
915 if (encoding
== DW_EH_PE_omit
)
918 switch (encoding
& 0x07)
920 case DW_EH_PE_absptr
:
921 return TYPE_LENGTH (builtin_type_void_data_ptr
);
922 case DW_EH_PE_udata2
:
924 case DW_EH_PE_udata4
:
926 case DW_EH_PE_udata8
:
929 internal_error (__FILE__
, __LINE__
, "Invalid or unsupported encoding");
934 read_encoded_value (struct comp_unit
*unit
, unsigned char encoding
,
935 char *buf
, unsigned int *bytes_read_ptr
)
939 /* GCC currently doesn't generate DW_EH_PE_indirect encodings for
941 if (encoding
& DW_EH_PE_indirect
)
942 internal_error (__FILE__
, __LINE__
,
943 "Unsupported encoding: DW_EH_PE_indirect");
945 switch (encoding
& 0x70)
947 case DW_EH_PE_absptr
:
951 base
= bfd_get_section_vma (unit
->bfd
, unit
->dwarf_frame_section
);
952 base
+= (buf
- unit
->dwarf_frame_buffer
);
954 case DW_EH_PE_datarel
:
958 internal_error (__FILE__
, __LINE__
, "Invalid or unsupported encoding");
961 if ((encoding
& 0x0f) == 0x00)
962 encoding
|= encoding_for_size (TYPE_LENGTH(builtin_type_void_data_ptr
));
964 switch (encoding
& 0x0f)
966 case DW_EH_PE_udata2
:
968 return (base
+ bfd_get_16 (unit
->abfd
, (bfd_byte
*) buf
));
969 case DW_EH_PE_udata4
:
971 return (base
+ bfd_get_32 (unit
->abfd
, (bfd_byte
*) buf
));
972 case DW_EH_PE_udata8
:
974 return (base
+ bfd_get_64 (unit
->abfd
, (bfd_byte
*) buf
));
975 case DW_EH_PE_sdata2
:
977 return (base
+ bfd_get_signed_16 (unit
->abfd
, (bfd_byte
*) buf
));
978 case DW_EH_PE_sdata4
:
980 return (base
+ bfd_get_signed_32 (unit
->abfd
, (bfd_byte
*) buf
));
981 case DW_EH_PE_sdata8
:
983 return (base
+ bfd_get_signed_64 (unit
->abfd
, (bfd_byte
*) buf
));
985 internal_error (__FILE__
, __LINE__
, "Invalid or unsupported encoding");
990 /* GCC uses a single CIE for all FDEs in a .debug_frame section.
991 That's why we use a simple linked list here. */
993 static struct dwarf2_cie
*
994 find_cie (struct comp_unit
*unit
, ULONGEST cie_pointer
)
996 struct dwarf2_cie
*cie
= unit
->cie
;
1000 if (cie
->cie_pointer
== cie_pointer
)
1010 add_cie (struct comp_unit
*unit
, struct dwarf2_cie
*cie
)
1012 cie
->next
= unit
->cie
;
1016 /* Find the FDE for *PC. Return a pointer to the FDE, and store the
1017 inital location associated with it into *PC. */
1019 static struct dwarf2_fde
*
1020 dwarf2_frame_find_fde (CORE_ADDR
*pc
)
1022 struct objfile
*objfile
;
1024 ALL_OBJFILES (objfile
)
1026 struct dwarf2_fde
*fde
;
1029 offset
= ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
));
1031 fde
= objfile
->sym_private
;
1034 if (*pc
>= fde
->initial_location
+ offset
1035 && *pc
< fde
->initial_location
+ offset
+ fde
->address_range
)
1037 *pc
= fde
->initial_location
+ offset
;
1049 add_fde (struct comp_unit
*unit
, struct dwarf2_fde
*fde
)
1051 fde
->next
= unit
->objfile
->sym_private
;
1052 unit
->objfile
->sym_private
= fde
;
1055 #ifdef CC_HAS_LONG_LONG
1056 #define DW64_CIE_ID 0xffffffffffffffffULL
1058 #define DW64_CIE_ID ~0
1061 /* Read a CIE or FDE in BUF and decode it. */
1064 decode_frame_entry (struct comp_unit
*unit
, char *buf
, int eh_frame_p
)
1067 unsigned int bytes_read
;
1069 ULONGEST cie_id
= DW_CIE_ID
;
1070 ULONGEST cie_pointer
;
1074 length
= read_initial_length (unit
->abfd
, buf
, &bytes_read
);
1081 if (bytes_read
== 12)
1084 /* In a .eh_frame section, zero is used to distinguish CIEs from
1089 cie_id
= DW64_CIE_ID
;
1093 cie_pointer
= read_8_bytes (unit
->abfd
, buf
);
1098 cie_pointer
= read_4_bytes (unit
->abfd
, buf
);
1102 if (cie_pointer
== cie_id
)
1104 /* This is a CIE. */
1105 struct dwarf2_cie
*cie
;
1108 /* Record the offset into the .debug_frame section of this CIE. */
1109 cie_pointer
= start
- unit
->dwarf_frame_buffer
;
1111 /* Check whether we've already read it. */
1112 if (find_cie (unit
, cie_pointer
))
1115 cie
= (struct dwarf2_cie
*)
1116 obstack_alloc (&unit
->objfile
->psymbol_obstack
,
1117 sizeof (struct dwarf2_cie
));
1118 cie
->initial_instructions
= NULL
;
1119 cie
->cie_pointer
= cie_pointer
;
1121 /* The encoding for FDE's in a normal .debug_frame section
1122 depends on the target address size as specified in the
1123 Compilation Unit Header. */
1124 cie
->encoding
= encoding_for_size (unit
->addr_size
);
1126 /* Check version number. */
1127 gdb_assert (read_1_byte (unit
->abfd
, buf
) == DW_CIE_VERSION
);
1130 /* Interpret the interesting bits of the augmentation. */
1132 buf
= augmentation
+ strlen (augmentation
) + 1;
1134 /* The GCC 2.x "eh" augmentation has a pointer immediately
1135 following the augmentation string, so it must be handled
1137 if (augmentation
[0] == 'e' && augmentation
[1] == 'h')
1140 buf
+= TYPE_LENGTH (builtin_type_void_data_ptr
);
1144 cie
->code_alignment_factor
=
1145 read_unsigned_leb128 (unit
->abfd
, buf
, &bytes_read
);
1148 cie
->data_alignment_factor
=
1149 read_signed_leb128 (unit
->abfd
, buf
, &bytes_read
);
1152 cie
->return_address_register
= read_1_byte (unit
->abfd
, buf
);
1155 cie
->saw_z_augmentation
= (*augmentation
== 'z');
1156 if (cie
->saw_z_augmentation
)
1160 length
= read_unsigned_leb128 (unit
->abfd
, buf
, &bytes_read
);
1162 cie
->initial_instructions
= buf
+ length
;
1166 while (*augmentation
)
1168 /* "L" indicates a byte showing how the LSDA pointer is encoded. */
1169 if (*augmentation
== 'L')
1176 /* "R" indicates a byte indicating how FDE addresses are encoded. */
1177 else if (*augmentation
== 'R')
1179 cie
->encoding
= *buf
++;
1183 /* "P" indicates a personality routine in the CIE augmentation. */
1184 else if (*augmentation
== 'P')
1187 buf
+= size_of_encoded_value (*buf
++);
1191 /* Otherwise we have an unknown augmentation.
1192 Bail out unless we saw a 'z' prefix. */
1195 if (cie
->initial_instructions
== NULL
)
1198 /* Skip unknown augmentations. */
1199 buf
= cie
->initial_instructions
;
1204 cie
->initial_instructions
= buf
;
1207 add_cie (unit
, cie
);
1211 /* This is a FDE. */
1212 struct dwarf2_fde
*fde
;
1216 /* In an .eh_frame section, the CIE pointer is the delta
1217 between the address within the FDE where the CIE pointer
1218 is stored and the address of the CIE. Convert it to an
1219 offset into the .eh_frame section. */
1220 cie_pointer
= buf
- unit
->dwarf_frame_buffer
- cie_pointer
;
1221 cie_pointer
-= (dwarf64_p
? 8 : 4);
1224 fde
= (struct dwarf2_fde
*)
1225 obstack_alloc (&unit
->objfile
->psymbol_obstack
,
1226 sizeof (struct dwarf2_fde
));
1227 fde
->cie
= find_cie (unit
, cie_pointer
);
1228 if (fde
->cie
== NULL
)
1230 decode_frame_entry (unit
, unit
->dwarf_frame_buffer
+ cie_pointer
,
1232 fde
->cie
= find_cie (unit
, cie_pointer
);
1235 gdb_assert (fde
->cie
!= NULL
);
1237 fde
->initial_location
=
1238 read_encoded_value (unit
, fde
->cie
->encoding
, buf
, &bytes_read
);
1241 fde
->address_range
=
1242 read_encoded_value (unit
, fde
->cie
->encoding
& 0x0f, buf
, &bytes_read
);
1245 /* A 'z' augmentation in the CIE implies the presence of an
1246 augmentation field in the FDE as well. The only thing known
1247 to be in here at present is the LSDA entry for EH. So we
1248 can skip the whole thing. */
1249 if (fde
->cie
->saw_z_augmentation
)
1253 length
= read_unsigned_leb128 (unit
->abfd
, buf
, &bytes_read
);
1254 buf
+= bytes_read
+ length
;
1257 fde
->instructions
= buf
;
1260 add_fde (unit
, fde
);
1267 /* FIXME: kettenis/20030504: This still needs to be integrated with
1268 dwarf2read.c in a better way. */
1270 /* Imported from dwarf2read.c. */
1271 extern file_ptr dwarf_frame_offset
;
1272 extern unsigned int dwarf_frame_size
;
1273 extern asection
*dwarf_frame_section
;
1274 extern file_ptr dwarf_eh_frame_offset
;
1275 extern unsigned int dwarf_eh_frame_size
;
1276 extern asection
*dwarf_eh_frame_section
;
1278 /* Imported from dwarf2read.c. */
1279 extern char *dwarf2_read_section (struct objfile
*objfile
, file_ptr offset
,
1280 unsigned int size
, asection
*sectp
);
1283 dwarf2_build_frame_info (struct objfile
*objfile
)
1285 struct comp_unit unit
;
1288 /* Build a minimal decoding of the DWARF2 compilation unit. */
1289 unit
.abfd
= objfile
->obfd
;
1290 unit
.objfile
= objfile
;
1291 unit
.addr_size
= objfile
->obfd
->arch_info
->bits_per_address
/ 8;
1294 /* First add the information from the .eh_frame section. That way,
1295 the FDEs from that section are searched last. */
1296 if (dwarf_eh_frame_offset
)
1301 unit
.dwarf_frame_buffer
= dwarf2_read_section (objfile
,
1302 dwarf_eh_frame_offset
,
1303 dwarf_eh_frame_size
,
1304 dwarf_eh_frame_section
);
1306 unit
.dwarf_frame_size
= dwarf_eh_frame_size
;
1307 unit
.dwarf_frame_section
= dwarf_eh_frame_section
;
1309 /* FIXME: kettenis/20030602: This is the DW_EH_PE_datarel base
1310 that for the i386/amd64 target, which currently is the only
1311 target in GCC that supports/uses the DW_EH_PE_datarel
1313 got
= bfd_get_section_by_name (unit
.abfd
, ".got");
1315 unit
.dbase
= got
->vma
;
1317 frame_ptr
= unit
.dwarf_frame_buffer
;
1318 while (frame_ptr
< unit
.dwarf_frame_buffer
+ unit
.dwarf_frame_size
)
1319 frame_ptr
= decode_frame_entry (&unit
, frame_ptr
, 1);
1322 if (dwarf_frame_offset
)
1325 unit
.dwarf_frame_buffer
= dwarf2_read_section (objfile
,
1328 dwarf_frame_section
);
1329 unit
.dwarf_frame_size
= dwarf_frame_size
;
1330 unit
.dwarf_frame_section
= dwarf_frame_section
;
1332 frame_ptr
= unit
.dwarf_frame_buffer
;
1333 while (frame_ptr
< unit
.dwarf_frame_buffer
+ unit
.dwarf_frame_size
)
1334 frame_ptr
= decode_frame_entry (&unit
, frame_ptr
, 0);