2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005 Free Software Foundation, Inc.
5 Adapted from gdb/dwarf2read.c by Gavin Koch of Cygnus Solutions
8 From the dwarf2read.c header:
9 Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
10 Inc. with support from Florida State University (under contract
11 with the Ada Joint Program Office), and Silicon Graphics, Inc.
12 Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
13 based on Fred Fish's (Cygnus Support) implementation of DWARF 1
14 support in dwarfread.c
16 This file is part of BFD.
18 This program is free software; you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation; either version 2 of the License, or (at
21 your option) any later version.
23 This program is distributed in the hope that it will be useful, but
24 WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26 General Public License for more details.
28 You should have received a copy of the GNU General Public License
29 along with this program; if not, write to the Free Software
30 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
34 #include "libiberty.h"
37 #include "elf/dwarf2.h"
39 /* The data in the .debug_line statement prologue looks like this. */
44 unsigned short version
;
45 bfd_vma prologue_length
;
46 unsigned char minimum_instruction_length
;
47 unsigned char default_is_stmt
;
49 unsigned char line_range
;
50 unsigned char opcode_base
;
51 unsigned char *standard_opcode_lengths
;
54 /* Attributes have a name and a value. */
58 enum dwarf_attribute name
;
63 struct dwarf_block
*blk
;
70 /* Blocks are a bunch of untyped bytes. */
79 /* A list of all previously read comp_units. */
80 struct comp_unit
*all_comp_units
;
82 /* The next unread compilation unit within the .debug_info section.
83 Zero indicates that the .debug_info section has not been loaded
87 /* Pointer to the end of the .debug_info section memory buffer. */
88 bfd_byte
*info_ptr_end
;
90 /* Pointer to the section and address of the beginning of the
93 bfd_byte
*sec_info_ptr
;
95 /* Pointer to the symbol table. */
98 /* Pointer to the .debug_abbrev section loaded into memory. */
99 bfd_byte
*dwarf_abbrev_buffer
;
101 /* Length of the loaded .debug_abbrev section. */
102 unsigned long dwarf_abbrev_size
;
104 /* Buffer for decode_line_info. */
105 bfd_byte
*dwarf_line_buffer
;
107 /* Length of the loaded .debug_line section. */
108 unsigned long dwarf_line_size
;
110 /* Pointer to the .debug_str section loaded into memory. */
111 bfd_byte
*dwarf_str_buffer
;
113 /* Length of the loaded .debug_str section. */
114 unsigned long dwarf_str_size
;
116 /* Pointer to the .debug_ranges section loaded into memory. */
117 bfd_byte
*dwarf_ranges_buffer
;
119 /* Length of the loaded .debug_ranges section. */
120 unsigned long dwarf_ranges_size
;
122 /* If the most recent call to bfd_find_nearest_line was given an
123 address in an inlined function, preserve a pointer into the
124 calling chain for subsequent calls to bfd_find_inliner_info to
126 struct funcinfo
*inliner_chain
;
136 /* A minimal decoding of DWARF2 compilation units. We only decode
137 what's needed to get to the line number information. */
141 /* Chain the previously read compilation units. */
142 struct comp_unit
*next_unit
;
144 /* Keep the bdf convenient (for memory allocation). */
147 /* The lowest and highest addresses contained in this compilation
148 unit as specified in the compilation unit header. */
149 struct arange arange
;
151 /* The DW_AT_name attribute (for error messages). */
154 /* The abbrev hash table. */
155 struct abbrev_info
**abbrevs
;
157 /* Note that an error was found by comp_unit_find_nearest_line. */
160 /* The DW_AT_comp_dir attribute. */
163 /* TRUE if there is a line number table associated with this comp. unit. */
166 /* Pointer to the current comp_unit so that we can find a given entry
168 bfd_byte
*info_ptr_unit
;
170 /* The offset into .debug_line of the line number table. */
171 unsigned long line_offset
;
173 /* Pointer to the first child die for the comp unit. */
174 bfd_byte
*first_child_die_ptr
;
176 /* The end of the comp unit. */
179 /* The decoded line number, NULL if not yet decoded. */
180 struct line_info_table
*line_table
;
182 /* A list of the functions found in this comp. unit. */
183 struct funcinfo
*function_table
;
185 /* Pointer to dwarf2_debug structure. */
186 struct dwarf2_debug
*stash
;
188 /* Address size for this unit - from unit header. */
189 unsigned char addr_size
;
191 /* Offset size for this unit - from unit header. */
192 unsigned char offset_size
;
194 /* Base address for this unit - from DW_AT_low_pc attribute of
195 DW_TAG_compile_unit DIE */
196 bfd_vma base_address
;
199 /* This data structure holds the information of an abbrev. */
202 unsigned int number
; /* Number identifying abbrev. */
203 enum dwarf_tag tag
; /* DWARF tag. */
204 int has_children
; /* Boolean. */
205 unsigned int num_attrs
; /* Number of attributes. */
206 struct attr_abbrev
*attrs
; /* An array of attribute descriptions. */
207 struct abbrev_info
*next
; /* Next in chain. */
212 enum dwarf_attribute name
;
213 enum dwarf_form form
;
216 #ifndef ABBREV_HASH_SIZE
217 #define ABBREV_HASH_SIZE 121
219 #ifndef ATTR_ALLOC_CHUNK
220 #define ATTR_ALLOC_CHUNK 4
224 The following function up to the END VERBATIM mark are
225 copied directly from dwarf2read.c. */
227 /* Read dwarf information from a buffer. */
230 read_1_byte (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_byte
*buf
)
232 return bfd_get_8 (abfd
, buf
);
236 read_1_signed_byte (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_byte
*buf
)
238 return bfd_get_signed_8 (abfd
, buf
);
242 read_2_bytes (bfd
*abfd
, bfd_byte
*buf
)
244 return bfd_get_16 (abfd
, buf
);
248 read_4_bytes (bfd
*abfd
, bfd_byte
*buf
)
250 return bfd_get_32 (abfd
, buf
);
254 read_8_bytes (bfd
*abfd
, bfd_byte
*buf
)
256 return bfd_get_64 (abfd
, buf
);
260 read_n_bytes (bfd
*abfd ATTRIBUTE_UNUSED
,
262 unsigned int size ATTRIBUTE_UNUSED
)
264 /* If the size of a host char is 8 bits, we can return a pointer
265 to the buffer, otherwise we have to copy the data to a buffer
266 allocated on the temporary obstack. */
271 read_string (bfd
*abfd ATTRIBUTE_UNUSED
,
273 unsigned int *bytes_read_ptr
)
275 /* Return a pointer to the embedded string. */
276 char *str
= (char *) buf
;
283 *bytes_read_ptr
= strlen (str
) + 1;
288 read_indirect_string (struct comp_unit
* unit
,
290 unsigned int *bytes_read_ptr
)
293 struct dwarf2_debug
*stash
= unit
->stash
;
296 if (unit
->offset_size
== 4)
297 offset
= read_4_bytes (unit
->abfd
, buf
);
299 offset
= read_8_bytes (unit
->abfd
, buf
);
300 *bytes_read_ptr
= unit
->offset_size
;
302 if (! stash
->dwarf_str_buffer
)
305 bfd
*abfd
= unit
->abfd
;
308 msec
= bfd_get_section_by_name (abfd
, ".debug_str");
311 (*_bfd_error_handler
)
312 (_("Dwarf Error: Can't find .debug_str section."));
313 bfd_set_error (bfd_error_bad_value
);
317 sz
= msec
->rawsize
? msec
->rawsize
: msec
->size
;
318 stash
->dwarf_str_size
= sz
;
319 stash
->dwarf_str_buffer
= bfd_alloc (abfd
, sz
);
320 if (! stash
->dwarf_str_buffer
)
323 if (! bfd_get_section_contents (abfd
, msec
, stash
->dwarf_str_buffer
,
328 if (offset
>= stash
->dwarf_str_size
)
330 (*_bfd_error_handler
) (_("Dwarf Error: DW_FORM_strp offset (%lu) greater than or equal to .debug_str size (%lu)."),
331 (unsigned long) offset
, stash
->dwarf_str_size
);
332 bfd_set_error (bfd_error_bad_value
);
336 str
= (char *) stash
->dwarf_str_buffer
+ offset
;
345 read_address (struct comp_unit
*unit
, bfd_byte
*buf
)
347 switch (unit
->addr_size
)
350 return bfd_get_64 (unit
->abfd
, buf
);
352 return bfd_get_32 (unit
->abfd
, buf
);
354 return bfd_get_16 (unit
->abfd
, buf
);
360 /* Lookup an abbrev_info structure in the abbrev hash table. */
362 static struct abbrev_info
*
363 lookup_abbrev (unsigned int number
, struct abbrev_info
**abbrevs
)
365 unsigned int hash_number
;
366 struct abbrev_info
*abbrev
;
368 hash_number
= number
% ABBREV_HASH_SIZE
;
369 abbrev
= abbrevs
[hash_number
];
373 if (abbrev
->number
== number
)
376 abbrev
= abbrev
->next
;
382 /* In DWARF version 2, the description of the debugging information is
383 stored in a separate .debug_abbrev section. Before we read any
384 dies from a section we read in all abbreviations and install them
387 static struct abbrev_info
**
388 read_abbrevs (bfd
*abfd
, bfd_uint64_t offset
, struct dwarf2_debug
*stash
)
390 struct abbrev_info
**abbrevs
;
391 bfd_byte
*abbrev_ptr
;
392 struct abbrev_info
*cur_abbrev
;
393 unsigned int abbrev_number
, bytes_read
, abbrev_name
;
394 unsigned int abbrev_form
, hash_number
;
397 if (! stash
->dwarf_abbrev_buffer
)
401 msec
= bfd_get_section_by_name (abfd
, ".debug_abbrev");
404 (*_bfd_error_handler
) (_("Dwarf Error: Can't find .debug_abbrev section."));
405 bfd_set_error (bfd_error_bad_value
);
409 stash
->dwarf_abbrev_size
= msec
->size
;
410 stash
->dwarf_abbrev_buffer
411 = bfd_simple_get_relocated_section_contents (abfd
, msec
, NULL
,
413 if (! stash
->dwarf_abbrev_buffer
)
417 if (offset
>= stash
->dwarf_abbrev_size
)
419 (*_bfd_error_handler
) (_("Dwarf Error: Abbrev offset (%lu) greater than or equal to .debug_abbrev size (%lu)."),
420 (unsigned long) offset
, stash
->dwarf_abbrev_size
);
421 bfd_set_error (bfd_error_bad_value
);
425 amt
= sizeof (struct abbrev_info
*) * ABBREV_HASH_SIZE
;
426 abbrevs
= bfd_zalloc (abfd
, amt
);
428 abbrev_ptr
= stash
->dwarf_abbrev_buffer
+ offset
;
429 abbrev_number
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
430 abbrev_ptr
+= bytes_read
;
432 /* Loop until we reach an abbrev number of 0. */
433 while (abbrev_number
)
435 amt
= sizeof (struct abbrev_info
);
436 cur_abbrev
= bfd_zalloc (abfd
, amt
);
438 /* Read in abbrev header. */
439 cur_abbrev
->number
= abbrev_number
;
440 cur_abbrev
->tag
= (enum dwarf_tag
)
441 read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
442 abbrev_ptr
+= bytes_read
;
443 cur_abbrev
->has_children
= read_1_byte (abfd
, abbrev_ptr
);
446 /* Now read in declarations. */
447 abbrev_name
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
448 abbrev_ptr
+= bytes_read
;
449 abbrev_form
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
450 abbrev_ptr
+= bytes_read
;
454 if ((cur_abbrev
->num_attrs
% ATTR_ALLOC_CHUNK
) == 0)
456 struct attr_abbrev
*tmp
;
458 amt
= cur_abbrev
->num_attrs
+ ATTR_ALLOC_CHUNK
;
459 amt
*= sizeof (struct attr_abbrev
);
460 tmp
= bfd_realloc (cur_abbrev
->attrs
, amt
);
465 for (i
= 0; i
< ABBREV_HASH_SIZE
; i
++)
467 struct abbrev_info
*abbrev
= abbrevs
[i
];
471 free (abbrev
->attrs
);
472 abbrev
= abbrev
->next
;
477 cur_abbrev
->attrs
= tmp
;
480 cur_abbrev
->attrs
[cur_abbrev
->num_attrs
].name
481 = (enum dwarf_attribute
) abbrev_name
;
482 cur_abbrev
->attrs
[cur_abbrev
->num_attrs
++].form
483 = (enum dwarf_form
) abbrev_form
;
484 abbrev_name
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
485 abbrev_ptr
+= bytes_read
;
486 abbrev_form
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
487 abbrev_ptr
+= bytes_read
;
490 hash_number
= abbrev_number
% ABBREV_HASH_SIZE
;
491 cur_abbrev
->next
= abbrevs
[hash_number
];
492 abbrevs
[hash_number
] = cur_abbrev
;
494 /* Get next abbreviation.
495 Under Irix6 the abbreviations for a compilation unit are not
496 always properly terminated with an abbrev number of 0.
497 Exit loop if we encounter an abbreviation which we have
498 already read (which means we are about to read the abbreviations
499 for the next compile unit) or if the end of the abbreviation
501 if ((unsigned int) (abbrev_ptr
- stash
->dwarf_abbrev_buffer
)
502 >= stash
->dwarf_abbrev_size
)
504 abbrev_number
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
505 abbrev_ptr
+= bytes_read
;
506 if (lookup_abbrev (abbrev_number
,abbrevs
) != NULL
)
513 /* Read an attribute value described by an attribute form. */
516 read_attribute_value (struct attribute
*attr
,
518 struct comp_unit
*unit
,
521 bfd
*abfd
= unit
->abfd
;
522 unsigned int bytes_read
;
523 struct dwarf_block
*blk
;
526 attr
->form
= (enum dwarf_form
) form
;
531 /* FIXME: DWARF3 draft says DW_FORM_ref_addr is offset_size. */
532 case DW_FORM_ref_addr
:
533 attr
->u
.val
= read_address (unit
, info_ptr
);
534 info_ptr
+= unit
->addr_size
;
537 amt
= sizeof (struct dwarf_block
);
538 blk
= bfd_alloc (abfd
, amt
);
539 blk
->size
= read_2_bytes (abfd
, info_ptr
);
541 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
542 info_ptr
+= blk
->size
;
546 amt
= sizeof (struct dwarf_block
);
547 blk
= bfd_alloc (abfd
, amt
);
548 blk
->size
= read_4_bytes (abfd
, info_ptr
);
550 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
551 info_ptr
+= blk
->size
;
555 attr
->u
.val
= read_2_bytes (abfd
, info_ptr
);
559 attr
->u
.val
= read_4_bytes (abfd
, info_ptr
);
563 attr
->u
.val
= read_8_bytes (abfd
, info_ptr
);
567 attr
->u
.str
= read_string (abfd
, info_ptr
, &bytes_read
);
568 info_ptr
+= bytes_read
;
571 attr
->u
.str
= read_indirect_string (unit
, info_ptr
, &bytes_read
);
572 info_ptr
+= bytes_read
;
575 amt
= sizeof (struct dwarf_block
);
576 blk
= bfd_alloc (abfd
, amt
);
577 blk
->size
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
578 info_ptr
+= bytes_read
;
579 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
580 info_ptr
+= blk
->size
;
584 amt
= sizeof (struct dwarf_block
);
585 blk
= bfd_alloc (abfd
, amt
);
586 blk
->size
= read_1_byte (abfd
, info_ptr
);
588 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
589 info_ptr
+= blk
->size
;
593 attr
->u
.val
= read_1_byte (abfd
, info_ptr
);
597 attr
->u
.val
= read_1_byte (abfd
, info_ptr
);
601 attr
->u
.sval
= read_signed_leb128 (abfd
, info_ptr
, &bytes_read
);
602 info_ptr
+= bytes_read
;
605 attr
->u
.val
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
606 info_ptr
+= bytes_read
;
609 attr
->u
.val
= read_1_byte (abfd
, info_ptr
);
613 attr
->u
.val
= read_2_bytes (abfd
, info_ptr
);
617 attr
->u
.val
= read_4_bytes (abfd
, info_ptr
);
621 attr
->u
.val
= read_8_bytes (abfd
, info_ptr
);
624 case DW_FORM_ref_udata
:
625 attr
->u
.val
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
626 info_ptr
+= bytes_read
;
628 case DW_FORM_indirect
:
629 form
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
630 info_ptr
+= bytes_read
;
631 info_ptr
= read_attribute_value (attr
, form
, unit
, info_ptr
);
634 (*_bfd_error_handler
) (_("Dwarf Error: Invalid or unhandled FORM value: %u."),
636 bfd_set_error (bfd_error_bad_value
);
641 /* Read an attribute described by an abbreviated attribute. */
644 read_attribute (struct attribute
*attr
,
645 struct attr_abbrev
*abbrev
,
646 struct comp_unit
*unit
,
649 attr
->name
= abbrev
->name
;
650 info_ptr
= read_attribute_value (attr
, abbrev
->form
, unit
, info_ptr
);
654 /* Source line information table routines. */
656 #define FILE_ALLOC_CHUNK 5
657 #define DIR_ALLOC_CHUNK 5
661 struct line_info
* prev_line
;
666 int end_sequence
; /* End of (sequential) code sequence. */
677 struct line_info_table
680 unsigned int num_files
;
681 unsigned int num_dirs
;
684 struct fileinfo
* files
;
685 struct line_info
* last_line
; /* largest VMA */
686 struct line_info
* lcl_head
; /* local head; used in 'add_line_info' */
689 /* Remember some information about each function. If the function is
690 inlined (DW_TAG_inlined_subroutine) it may have two additional
691 attributes, DW_AT_call_file and DW_AT_call_line, which specify the
692 source code location where this function was inlined. */
696 struct funcinfo
*prev_func
; /* Pointer to previous function in list of all functions */
697 struct funcinfo
*caller_func
; /* Pointer to function one scope higher */
698 char *caller_file
; /* Source location file name where caller_func inlines this func */
699 int caller_line
; /* Source location line number where caller_func inlines this func */
703 struct arange arange
;
706 /* Adds a new entry to the line_info list in the line_info_table, ensuring
707 that the list is sorted. Note that the line_info list is sorted from
708 highest to lowest VMA (with possible duplicates); that is,
709 line_info->prev_line always accesses an equal or smaller VMA. */
712 add_line_info (struct line_info_table
*table
,
719 bfd_size_type amt
= sizeof (struct line_info
);
720 struct line_info
* info
= bfd_alloc (table
->abfd
, amt
);
722 /* Find the correct location for 'info'. Normally we will receive
723 new line_info data 1) in order and 2) with increasing VMAs.
724 However some compilers break the rules (cf. decode_line_info) and
725 so we include some heuristics for quickly finding the correct
726 location for 'info'. In particular, these heuristics optimize for
727 the common case in which the VMA sequence that we receive is a
728 list of locally sorted VMAs such as
729 p...z a...j (where a < j < p < z)
731 Note: table->lcl_head is used to head an *actual* or *possible*
732 sequence within the list (such as a...j) that is not directly
733 headed by table->last_line
735 Note: we may receive duplicate entries from 'decode_line_info'. */
738 if (!table
->last_line
739 || address
>= table
->last_line
->address
)
741 /* Normal case: add 'info' to the beginning of the list */
742 info
->prev_line
= table
->last_line
;
743 table
->last_line
= info
;
745 /* lcl_head: initialize to head a *possible* sequence at the end. */
746 if (!table
->lcl_head
)
747 table
->lcl_head
= info
;
750 else if (!table
->lcl_head
->prev_line
751 && table
->lcl_head
->address
> address
)
753 /* Abnormal but easy: lcl_head is 1) at the *end* of the line
754 list and 2) the head of 'info'. */
755 info
->prev_line
= NULL
;
756 table
->lcl_head
->prev_line
= info
;
759 else if (table
->lcl_head
->prev_line
760 && table
->lcl_head
->address
> address
761 && address
>= table
->lcl_head
->prev_line
->address
)
763 /* Abnormal but easy: lcl_head is 1) in the *middle* of the line
764 list and 2) the head of 'info'. */
765 info
->prev_line
= table
->lcl_head
->prev_line
;
766 table
->lcl_head
->prev_line
= info
;
771 /* Abnormal and hard: Neither 'last_line' nor 'lcl_head' are valid
772 heads for 'info'. Reset 'lcl_head' and repeat. */
773 struct line_info
* li2
= table
->last_line
; /* always non-NULL */
774 struct line_info
* li1
= li2
->prev_line
;
778 if (li2
->address
> address
&& address
>= li1
->address
)
781 li2
= li1
; /* always non-NULL */
782 li1
= li1
->prev_line
;
784 table
->lcl_head
= li2
;
787 /* Set member data of 'info'. */
788 info
->address
= address
;
790 info
->column
= column
;
791 info
->end_sequence
= end_sequence
;
793 if (filename
&& filename
[0])
795 info
->filename
= bfd_alloc (table
->abfd
, strlen (filename
) + 1);
797 strcpy (info
->filename
, filename
);
800 info
->filename
= NULL
;
803 /* Extract a fully qualified filename from a line info table.
804 The returned string has been malloc'ed and it is the caller's
805 responsibility to free it. */
808 concat_filename (struct line_info_table
*table
, unsigned int file
)
812 if (file
- 1 >= table
->num_files
)
814 (*_bfd_error_handler
)
815 (_("Dwarf Error: mangled line number section (bad file number)."));
816 return strdup ("<unknown>");
819 filename
= table
->files
[file
- 1].name
;
821 if (! IS_ABSOLUTE_PATH (filename
))
823 char *dirname
= (table
->files
[file
- 1].dir
824 ? table
->dirs
[table
->files
[file
- 1].dir
- 1]
827 /* Not all tools set DW_AT_comp_dir, so dirname may be unknown.
828 The best we can do is return the filename part. */
831 unsigned int len
= strlen (dirname
) + strlen (filename
) + 2;
834 name
= bfd_malloc (len
);
836 sprintf (name
, "%s/%s", dirname
, filename
);
841 return strdup (filename
);
845 arange_add (bfd
*abfd
, struct arange
*first_arange
, bfd_vma low_pc
, bfd_vma high_pc
)
847 struct arange
*arange
;
849 /* If the first arange is empty, use it. */
850 if (first_arange
->high
== 0)
852 first_arange
->low
= low_pc
;
853 first_arange
->high
= high_pc
;
857 /* Next see if we can cheaply extend an existing range. */
858 arange
= first_arange
;
861 if (low_pc
== arange
->high
)
863 arange
->high
= high_pc
;
866 if (high_pc
== arange
->low
)
868 arange
->low
= low_pc
;
871 arange
= arange
->next
;
875 /* Need to allocate a new arange and insert it into the arange list.
876 Order isn't significant, so just insert after the first arange. */
877 arange
= bfd_zalloc (abfd
, sizeof (*arange
));
878 arange
->low
= low_pc
;
879 arange
->high
= high_pc
;
880 arange
->next
= first_arange
->next
;
881 first_arange
->next
= arange
;
884 /* Decode the line number information for UNIT. */
886 static struct line_info_table
*
887 decode_line_info (struct comp_unit
*unit
, struct dwarf2_debug
*stash
)
889 bfd
*abfd
= unit
->abfd
;
890 struct line_info_table
* table
;
894 unsigned int i
, bytes_read
, offset_size
;
895 char *cur_file
, *cur_dir
;
896 unsigned char op_code
, extended_op
, adj_opcode
;
899 if (! stash
->dwarf_line_buffer
)
903 msec
= bfd_get_section_by_name (abfd
, ".debug_line");
906 (*_bfd_error_handler
) (_("Dwarf Error: Can't find .debug_line section."));
907 bfd_set_error (bfd_error_bad_value
);
911 stash
->dwarf_line_size
= msec
->size
;
912 stash
->dwarf_line_buffer
913 = bfd_simple_get_relocated_section_contents (abfd
, msec
, NULL
,
915 if (! stash
->dwarf_line_buffer
)
919 /* It is possible to get a bad value for the line_offset. Validate
920 it here so that we won't get a segfault below. */
921 if (unit
->line_offset
>= stash
->dwarf_line_size
)
923 (*_bfd_error_handler
) (_("Dwarf Error: Line offset (%lu) greater than or equal to .debug_line size (%lu)."),
924 unit
->line_offset
, stash
->dwarf_line_size
);
925 bfd_set_error (bfd_error_bad_value
);
929 amt
= sizeof (struct line_info_table
);
930 table
= bfd_alloc (abfd
, amt
);
932 table
->comp_dir
= unit
->comp_dir
;
934 table
->num_files
= 0;
941 table
->last_line
= NULL
;
942 table
->lcl_head
= NULL
;
944 line_ptr
= stash
->dwarf_line_buffer
+ unit
->line_offset
;
946 /* Read in the prologue. */
947 lh
.total_length
= read_4_bytes (abfd
, line_ptr
);
950 if (lh
.total_length
== 0xffffffff)
952 lh
.total_length
= read_8_bytes (abfd
, line_ptr
);
956 else if (lh
.total_length
== 0 && unit
->addr_size
== 8)
958 /* Handle (non-standard) 64-bit DWARF2 formats. */
959 lh
.total_length
= read_4_bytes (abfd
, line_ptr
);
963 line_end
= line_ptr
+ lh
.total_length
;
964 lh
.version
= read_2_bytes (abfd
, line_ptr
);
966 if (offset_size
== 4)
967 lh
.prologue_length
= read_4_bytes (abfd
, line_ptr
);
969 lh
.prologue_length
= read_8_bytes (abfd
, line_ptr
);
970 line_ptr
+= offset_size
;
971 lh
.minimum_instruction_length
= read_1_byte (abfd
, line_ptr
);
973 lh
.default_is_stmt
= read_1_byte (abfd
, line_ptr
);
975 lh
.line_base
= read_1_signed_byte (abfd
, line_ptr
);
977 lh
.line_range
= read_1_byte (abfd
, line_ptr
);
979 lh
.opcode_base
= read_1_byte (abfd
, line_ptr
);
981 amt
= lh
.opcode_base
* sizeof (unsigned char);
982 lh
.standard_opcode_lengths
= bfd_alloc (abfd
, amt
);
984 lh
.standard_opcode_lengths
[0] = 1;
986 for (i
= 1; i
< lh
.opcode_base
; ++i
)
988 lh
.standard_opcode_lengths
[i
] = read_1_byte (abfd
, line_ptr
);
992 /* Read directory table. */
993 while ((cur_dir
= read_string (abfd
, line_ptr
, &bytes_read
)) != NULL
)
995 line_ptr
+= bytes_read
;
997 if ((table
->num_dirs
% DIR_ALLOC_CHUNK
) == 0)
1001 amt
= table
->num_dirs
+ DIR_ALLOC_CHUNK
;
1002 amt
*= sizeof (char *);
1004 tmp
= bfd_realloc (table
->dirs
, amt
);
1013 table
->dirs
[table
->num_dirs
++] = cur_dir
;
1016 line_ptr
+= bytes_read
;
1018 /* Read file name table. */
1019 while ((cur_file
= read_string (abfd
, line_ptr
, &bytes_read
)) != NULL
)
1021 line_ptr
+= bytes_read
;
1023 if ((table
->num_files
% FILE_ALLOC_CHUNK
) == 0)
1025 struct fileinfo
*tmp
;
1027 amt
= table
->num_files
+ FILE_ALLOC_CHUNK
;
1028 amt
*= sizeof (struct fileinfo
);
1030 tmp
= bfd_realloc (table
->files
, amt
);
1033 free (table
->files
);
1040 table
->files
[table
->num_files
].name
= cur_file
;
1041 table
->files
[table
->num_files
].dir
=
1042 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1043 line_ptr
+= bytes_read
;
1044 table
->files
[table
->num_files
].time
=
1045 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1046 line_ptr
+= bytes_read
;
1047 table
->files
[table
->num_files
].size
=
1048 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1049 line_ptr
+= bytes_read
;
1053 line_ptr
+= bytes_read
;
1055 /* Read the statement sequences until there's nothing left. */
1056 while (line_ptr
< line_end
)
1058 /* State machine registers. */
1059 bfd_vma address
= 0;
1060 char * filename
= table
->num_files
? concat_filename (table
, 1) : NULL
;
1061 unsigned int line
= 1;
1062 unsigned int column
= 0;
1063 int is_stmt
= lh
.default_is_stmt
;
1064 int basic_block
= 0;
1065 int end_sequence
= 0;
1066 /* eraxxon@alumni.rice.edu: Against the DWARF2 specs, some
1067 compilers generate address sequences that are wildly out of
1068 order using DW_LNE_set_address (e.g. Intel C++ 6.0 compiler
1069 for ia64-Linux). Thus, to determine the low and high
1070 address, we must compare on every DW_LNS_copy, etc. */
1072 bfd_vma high_pc
= 0;
1074 /* Decode the table. */
1075 while (! end_sequence
)
1077 op_code
= read_1_byte (abfd
, line_ptr
);
1080 if (op_code
>= lh
.opcode_base
)
1082 /* Special operand. */
1083 adj_opcode
= op_code
- lh
.opcode_base
;
1084 address
+= (adj_opcode
/ lh
.line_range
)
1085 * lh
.minimum_instruction_length
;
1086 line
+= lh
.line_base
+ (adj_opcode
% lh
.line_range
);
1087 /* Append row to matrix using current values. */
1088 add_line_info (table
, address
, filename
, line
, column
, 0);
1090 if (low_pc
== 0 || address
< low_pc
)
1092 if (address
> high_pc
)
1095 else switch (op_code
)
1097 case DW_LNS_extended_op
:
1098 /* Ignore length. */
1100 extended_op
= read_1_byte (abfd
, line_ptr
);
1103 switch (extended_op
)
1105 case DW_LNE_end_sequence
:
1107 add_line_info (table
, address
, filename
, line
, column
,
1109 if (low_pc
== 0 || address
< low_pc
)
1111 if (address
> high_pc
)
1113 arange_add (unit
->abfd
, &unit
->arange
, low_pc
, high_pc
);
1115 case DW_LNE_set_address
:
1116 address
= read_address (unit
, line_ptr
);
1117 line_ptr
+= unit
->addr_size
;
1119 case DW_LNE_define_file
:
1120 cur_file
= read_string (abfd
, line_ptr
, &bytes_read
);
1121 line_ptr
+= bytes_read
;
1122 if ((table
->num_files
% FILE_ALLOC_CHUNK
) == 0)
1124 struct fileinfo
*tmp
;
1126 amt
= table
->num_files
+ FILE_ALLOC_CHUNK
;
1127 amt
*= sizeof (struct fileinfo
);
1128 tmp
= bfd_realloc (table
->files
, amt
);
1131 free (table
->files
);
1138 table
->files
[table
->num_files
].name
= cur_file
;
1139 table
->files
[table
->num_files
].dir
=
1140 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1141 line_ptr
+= bytes_read
;
1142 table
->files
[table
->num_files
].time
=
1143 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1144 line_ptr
+= bytes_read
;
1145 table
->files
[table
->num_files
].size
=
1146 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1147 line_ptr
+= bytes_read
;
1151 (*_bfd_error_handler
) (_("Dwarf Error: mangled line number section."));
1152 bfd_set_error (bfd_error_bad_value
);
1154 free (table
->files
);
1160 add_line_info (table
, address
, filename
, line
, column
, 0);
1162 if (low_pc
== 0 || address
< low_pc
)
1164 if (address
> high_pc
)
1167 case DW_LNS_advance_pc
:
1168 address
+= lh
.minimum_instruction_length
1169 * read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1170 line_ptr
+= bytes_read
;
1172 case DW_LNS_advance_line
:
1173 line
+= read_signed_leb128 (abfd
, line_ptr
, &bytes_read
);
1174 line_ptr
+= bytes_read
;
1176 case DW_LNS_set_file
:
1180 /* The file and directory tables are 0
1181 based, the references are 1 based. */
1182 file
= read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1183 line_ptr
+= bytes_read
;
1186 filename
= concat_filename (table
, file
);
1189 case DW_LNS_set_column
:
1190 column
= read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1191 line_ptr
+= bytes_read
;
1193 case DW_LNS_negate_stmt
:
1194 is_stmt
= (!is_stmt
);
1196 case DW_LNS_set_basic_block
:
1199 case DW_LNS_const_add_pc
:
1200 address
+= lh
.minimum_instruction_length
1201 * ((255 - lh
.opcode_base
) / lh
.line_range
);
1203 case DW_LNS_fixed_advance_pc
:
1204 address
+= read_2_bytes (abfd
, line_ptr
);
1211 /* Unknown standard opcode, ignore it. */
1212 for (i
= 0; i
< lh
.standard_opcode_lengths
[op_code
]; i
++)
1214 (void) read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1215 line_ptr
+= bytes_read
;
1228 /* If ADDR is within TABLE set the output parameters and return TRUE,
1229 otherwise return FALSE. The output parameters, FILENAME_PTR and
1230 LINENUMBER_PTR, are pointers to the objects to be filled in. */
1233 lookup_address_in_line_info_table (struct line_info_table
*table
,
1235 struct funcinfo
*function
,
1236 const char **filename_ptr
,
1237 unsigned int *linenumber_ptr
)
1239 /* Note: table->last_line should be a descendingly sorted list. */
1240 struct line_info
* next_line
= table
->last_line
;
1241 struct line_info
* each_line
= NULL
;
1242 *filename_ptr
= NULL
;
1247 each_line
= next_line
->prev_line
;
1249 /* Check for large addresses */
1250 if (addr
> next_line
->address
)
1251 each_line
= NULL
; /* ensure we skip over the normal case */
1253 /* Normal case: search the list; save */
1254 while (each_line
&& next_line
)
1256 /* If we have an address match, save this info. This allows us
1257 to return as good as results as possible for strange debugging
1259 bfd_boolean addr_match
= FALSE
;
1260 if (each_line
->address
<= addr
&& addr
< next_line
->address
)
1264 /* If this line appears to span functions, and addr is in the
1265 later function, return the first line of that function instead
1266 of the last line of the earlier one. This check is for GCC
1267 2.95, which emits the first line number for a function late. */
1269 if (function
!= NULL
)
1272 struct arange
*arange
;
1274 /* Find the lowest address in the function's range list */
1275 lowest_pc
= function
->arange
.low
;
1276 for (arange
= &function
->arange
;
1278 arange
= arange
->next
)
1280 if (function
->arange
.low
< lowest_pc
)
1281 lowest_pc
= function
->arange
.low
;
1283 /* Check for spanning function and set outgoing line info */
1284 if (addr
>= lowest_pc
1285 && each_line
->address
< lowest_pc
1286 && next_line
->address
> lowest_pc
)
1288 *filename_ptr
= next_line
->filename
;
1289 *linenumber_ptr
= next_line
->line
;
1293 *filename_ptr
= each_line
->filename
;
1294 *linenumber_ptr
= each_line
->line
;
1299 if (addr_match
&& !each_line
->end_sequence
)
1300 return TRUE
; /* we have definitely found what we want */
1302 next_line
= each_line
;
1303 each_line
= each_line
->prev_line
;
1306 /* At this point each_line is NULL but next_line is not. If we found
1307 a candidate end-of-sequence point in the loop above, we can return
1308 that (compatibility with a bug in the Intel compiler); otherwise,
1309 assuming that we found the containing function for this address in
1310 this compilation unit, return the first line we have a number for
1311 (compatibility with GCC 2.95). */
1312 if (*filename_ptr
== NULL
&& function
!= NULL
)
1314 *filename_ptr
= next_line
->filename
;
1315 *linenumber_ptr
= next_line
->line
;
1322 /* Read in the .debug_ranges section for future reference */
1325 read_debug_ranges (struct comp_unit
*unit
)
1327 struct dwarf2_debug
*stash
= unit
->stash
;
1328 if (! stash
->dwarf_ranges_buffer
)
1330 bfd
*abfd
= unit
->abfd
;
1333 msec
= bfd_get_section_by_name (abfd
, ".debug_ranges");
1336 (*_bfd_error_handler
) (_("Dwarf Error: Can't find .debug_ranges section."));
1337 bfd_set_error (bfd_error_bad_value
);
1341 stash
->dwarf_ranges_size
= msec
->size
;
1342 stash
->dwarf_ranges_buffer
1343 = bfd_simple_get_relocated_section_contents (abfd
, msec
, NULL
,
1345 if (! stash
->dwarf_ranges_buffer
)
1351 /* Function table functions. */
1353 /* If ADDR is within TABLE, set FUNCTIONNAME_PTR, and return TRUE.
1354 Note that we need to find the function that has the smallest
1355 range that contains ADDR, to handle inlined functions without
1356 depending upon them being ordered in TABLE by increasing range. */
1359 lookup_address_in_function_table (struct comp_unit
*unit
,
1361 struct funcinfo
**function_ptr
,
1362 const char **functionname_ptr
)
1364 struct funcinfo
* each_func
;
1365 struct funcinfo
* best_fit
= NULL
;
1366 struct arange
*arange
;
1368 for (each_func
= unit
->function_table
;
1370 each_func
= each_func
->prev_func
)
1372 for (arange
= &each_func
->arange
;
1374 arange
= arange
->next
)
1376 if (addr
>= arange
->low
&& addr
< arange
->high
)
1379 ((arange
->high
- arange
->low
) < (best_fit
->arange
.high
- best_fit
->arange
.low
)))
1380 best_fit
= each_func
;
1387 struct funcinfo
* curr_func
= best_fit
;
1389 *functionname_ptr
= best_fit
->name
;
1390 *function_ptr
= best_fit
;
1392 /* If we found a match and it is a function that was inlined,
1393 traverse the function list looking for the function at the
1394 next higher scope and save a pointer to it for future use.
1395 Note that because of the way the DWARF info is generated, and
1396 the way we build the function list, the first function at the
1397 next higher level is the one we want. */
1399 for (each_func
= best_fit
-> prev_func
;
1400 each_func
&& (curr_func
->tag
== DW_TAG_inlined_subroutine
);
1401 each_func
= each_func
->prev_func
)
1403 if (each_func
->nesting_level
< curr_func
->nesting_level
)
1405 curr_func
->caller_func
= each_func
;
1406 curr_func
= each_func
;
1418 find_abstract_instance_name (struct comp_unit
*unit
, bfd_uint64_t die_ref
)
1420 bfd
*abfd
= unit
->abfd
;
1422 unsigned int abbrev_number
, bytes_read
, i
;
1423 struct abbrev_info
*abbrev
;
1424 struct attribute attr
;
1427 info_ptr
= unit
->info_ptr_unit
+ die_ref
;
1428 abbrev_number
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
1429 info_ptr
+= bytes_read
;
1433 abbrev
= lookup_abbrev (abbrev_number
, unit
->abbrevs
);
1436 (*_bfd_error_handler
) (_("Dwarf Error: Could not find abbrev number %u."),
1438 bfd_set_error (bfd_error_bad_value
);
1442 for (i
= 0; i
< abbrev
->num_attrs
&& !name
; ++i
)
1444 info_ptr
= read_attribute (&attr
, &abbrev
->attrs
[i
], unit
, info_ptr
);
1450 case DW_AT_specification
:
1451 name
= find_abstract_instance_name (unit
, attr
.u
.val
);
1463 read_rangelist (struct comp_unit
*unit
, struct arange
*arange
, bfd_uint64_t offset
)
1465 bfd_byte
*ranges_ptr
;
1466 bfd_vma base_address
= unit
->base_address
;
1468 if (! unit
->stash
->dwarf_ranges_buffer
)
1470 if (! read_debug_ranges (unit
))
1473 ranges_ptr
= unit
->stash
->dwarf_ranges_buffer
+ offset
;
1480 if (unit
->offset_size
== 4)
1482 low_pc
= read_4_bytes (unit
->abfd
, ranges_ptr
);
1484 high_pc
= read_4_bytes (unit
->abfd
, ranges_ptr
);
1489 low_pc
= read_8_bytes (unit
->abfd
, ranges_ptr
);
1491 high_pc
= read_8_bytes (unit
->abfd
, ranges_ptr
);
1494 if (low_pc
== 0 && high_pc
== 0)
1496 if (low_pc
== -1UL && high_pc
!= -1UL)
1497 base_address
= high_pc
;
1499 arange_add (unit
->abfd
, arange
, base_address
+ low_pc
, base_address
+ high_pc
);
1503 /* DWARF2 Compilation unit functions. */
1505 /* Scan over each die in a comp. unit looking for functions to add
1506 to the function table. */
1509 scan_unit_for_functions (struct comp_unit
*unit
)
1511 bfd
*abfd
= unit
->abfd
;
1512 bfd_byte
*info_ptr
= unit
->first_child_die_ptr
;
1513 int nesting_level
= 1;
1515 while (nesting_level
)
1517 unsigned int abbrev_number
, bytes_read
, i
;
1518 struct abbrev_info
*abbrev
;
1519 struct attribute attr
;
1520 struct funcinfo
*func
;
1522 bfd_vma high_pc
= 0;
1524 abbrev_number
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
1525 info_ptr
+= bytes_read
;
1527 if (! abbrev_number
)
1533 abbrev
= lookup_abbrev (abbrev_number
,unit
->abbrevs
);
1536 (*_bfd_error_handler
) (_("Dwarf Error: Could not find abbrev number %u."),
1538 bfd_set_error (bfd_error_bad_value
);
1542 if (abbrev
->tag
== DW_TAG_subprogram
1543 || abbrev
->tag
== DW_TAG_inlined_subroutine
)
1545 bfd_size_type amt
= sizeof (struct funcinfo
);
1546 func
= bfd_zalloc (abfd
, amt
);
1547 func
->tag
= abbrev
->tag
;
1548 func
->nesting_level
= nesting_level
;
1549 func
->prev_func
= unit
->function_table
;
1550 unit
->function_table
= func
;
1555 for (i
= 0; i
< abbrev
->num_attrs
; ++i
)
1557 info_ptr
= read_attribute (&attr
, &abbrev
->attrs
[i
], unit
, info_ptr
);
1563 case DW_AT_call_file
:
1564 func
->caller_file
= concat_filename (unit
->line_table
, attr
.u
.val
);
1567 case DW_AT_call_line
:
1568 func
->caller_line
= attr
.u
.val
;
1571 case DW_AT_abstract_origin
:
1572 func
->name
= find_abstract_instance_name (unit
, attr
.u
.val
);
1576 /* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */
1577 if (func
->name
== NULL
)
1578 func
->name
= attr
.u
.str
;
1581 case DW_AT_MIPS_linkage_name
:
1582 func
->name
= attr
.u
.str
;
1586 low_pc
= attr
.u
.val
;
1590 high_pc
= attr
.u
.val
;
1594 read_rangelist (unit
, &func
->arange
, attr
.u
.val
);
1603 if (func
&& high_pc
!= 0)
1605 arange_add (unit
->abfd
, &func
->arange
, low_pc
, high_pc
);
1608 if (abbrev
->has_children
)
1615 /* Parse a DWARF2 compilation unit starting at INFO_PTR. This
1616 includes the compilation unit header that proceeds the DIE's, but
1617 does not include the length field that precedes each compilation
1618 unit header. END_PTR points one past the end of this comp unit.
1619 OFFSET_SIZE is the size of DWARF2 offsets (either 4 or 8 bytes).
1621 This routine does not read the whole compilation unit; only enough
1622 to get to the line number information for the compilation unit. */
1624 static struct comp_unit
*
1625 parse_comp_unit (bfd
*abfd
,
1626 struct dwarf2_debug
*stash
,
1627 bfd_vma unit_length
,
1628 bfd_byte
*info_ptr_unit
,
1629 unsigned int offset_size
)
1631 struct comp_unit
* unit
;
1632 unsigned int version
;
1633 bfd_uint64_t abbrev_offset
= 0;
1634 unsigned int addr_size
;
1635 struct abbrev_info
** abbrevs
;
1636 unsigned int abbrev_number
, bytes_read
, i
;
1637 struct abbrev_info
*abbrev
;
1638 struct attribute attr
;
1639 bfd_byte
*info_ptr
= stash
->info_ptr
;
1640 bfd_byte
*end_ptr
= info_ptr
+ unit_length
;
1643 bfd_vma high_pc
= 0;
1645 version
= read_2_bytes (abfd
, info_ptr
);
1647 BFD_ASSERT (offset_size
== 4 || offset_size
== 8);
1648 if (offset_size
== 4)
1649 abbrev_offset
= read_4_bytes (abfd
, info_ptr
);
1651 abbrev_offset
= read_8_bytes (abfd
, info_ptr
);
1652 info_ptr
+= offset_size
;
1653 addr_size
= read_1_byte (abfd
, info_ptr
);
1658 (*_bfd_error_handler
) (_("Dwarf Error: found dwarf version '%u', this reader only handles version 2 information."), version
);
1659 bfd_set_error (bfd_error_bad_value
);
1663 if (addr_size
> sizeof (bfd_vma
))
1665 (*_bfd_error_handler
) (_("Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'."),
1667 (unsigned int) sizeof (bfd_vma
));
1668 bfd_set_error (bfd_error_bad_value
);
1672 if (addr_size
!= 2 && addr_size
!= 4 && addr_size
!= 8)
1674 (*_bfd_error_handler
) ("Dwarf Error: found address size '%u', this reader can only handle address sizes '2', '4' and '8'.", addr_size
);
1675 bfd_set_error (bfd_error_bad_value
);
1679 /* Read the abbrevs for this compilation unit into a table. */
1680 abbrevs
= read_abbrevs (abfd
, abbrev_offset
, stash
);
1684 abbrev_number
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
1685 info_ptr
+= bytes_read
;
1686 if (! abbrev_number
)
1688 (*_bfd_error_handler
) (_("Dwarf Error: Bad abbrev number: %u."),
1690 bfd_set_error (bfd_error_bad_value
);
1694 abbrev
= lookup_abbrev (abbrev_number
, abbrevs
);
1697 (*_bfd_error_handler
) (_("Dwarf Error: Could not find abbrev number %u."),
1699 bfd_set_error (bfd_error_bad_value
);
1703 amt
= sizeof (struct comp_unit
);
1704 unit
= bfd_zalloc (abfd
, amt
);
1706 unit
->addr_size
= addr_size
;
1707 unit
->offset_size
= offset_size
;
1708 unit
->abbrevs
= abbrevs
;
1709 unit
->end_ptr
= end_ptr
;
1710 unit
->stash
= stash
;
1711 unit
->info_ptr_unit
= info_ptr_unit
;
1713 for (i
= 0; i
< abbrev
->num_attrs
; ++i
)
1715 info_ptr
= read_attribute (&attr
, &abbrev
->attrs
[i
], unit
, info_ptr
);
1717 /* Store the data if it is of an attribute we want to keep in a
1718 partial symbol table. */
1721 case DW_AT_stmt_list
:
1723 unit
->line_offset
= attr
.u
.val
;
1727 unit
->name
= attr
.u
.str
;
1731 low_pc
= attr
.u
.val
;
1732 /* If the compilation unit DIE has a DW_AT_low_pc attribute,
1733 this is the base address to use when reading location
1734 lists or range lists. */
1735 unit
->base_address
= low_pc
;
1739 high_pc
= attr
.u
.val
;
1743 read_rangelist (unit
, &unit
->arange
, attr
.u
.val
);
1746 case DW_AT_comp_dir
:
1748 char *comp_dir
= attr
.u
.str
;
1751 /* Irix 6.2 native cc prepends <machine>.: to the compilation
1752 directory, get rid of it. */
1753 char *cp
= strchr (comp_dir
, ':');
1755 if (cp
&& cp
!= comp_dir
&& cp
[-1] == '.' && cp
[1] == '/')
1758 unit
->comp_dir
= comp_dir
;
1768 arange_add (unit
->abfd
, &unit
->arange
, low_pc
, high_pc
);
1771 unit
->first_child_die_ptr
= info_ptr
;
1775 /* Return TRUE if UNIT contains the address given by ADDR. */
1778 comp_unit_contains_address (struct comp_unit
*unit
, bfd_vma addr
)
1780 struct arange
*arange
;
1785 arange
= &unit
->arange
;
1788 if (addr
>= arange
->low
&& addr
< arange
->high
)
1790 arange
= arange
->next
;
1797 /* If UNIT contains ADDR, set the output parameters to the values for
1798 the line containing ADDR. The output parameters, FILENAME_PTR,
1799 FUNCTIONNAME_PTR, and LINENUMBER_PTR, are pointers to the objects
1802 Return TRUE if UNIT contains ADDR, and no errors were encountered;
1806 comp_unit_find_nearest_line (struct comp_unit
*unit
,
1808 const char **filename_ptr
,
1809 const char **functionname_ptr
,
1810 unsigned int *linenumber_ptr
,
1811 struct dwarf2_debug
*stash
)
1815 struct funcinfo
*function
;
1820 if (! unit
->line_table
)
1822 if (! unit
->stmtlist
)
1828 unit
->line_table
= decode_line_info (unit
, stash
);
1830 if (! unit
->line_table
)
1836 if (unit
->first_child_die_ptr
< unit
->end_ptr
1837 && ! scan_unit_for_functions (unit
))
1845 func_p
= lookup_address_in_function_table (unit
, addr
,
1846 &function
, functionname_ptr
);
1847 if (func_p
&& (function
->tag
== DW_TAG_inlined_subroutine
))
1848 stash
->inliner_chain
= function
;
1849 line_p
= lookup_address_in_line_info_table (unit
->line_table
, addr
,
1850 function
, filename_ptr
,
1852 return line_p
|| func_p
;
1855 /* Locate a section in a BFD containing debugging info. The search starts
1856 from the section after AFTER_SEC, or from the first section in the BFD if
1857 AFTER_SEC is NULL. The search works by examining the names of the
1858 sections. There are two permissiable names. The first is .debug_info.
1859 This is the standard DWARF2 name. The second is a prefix .gnu.linkonce.wi.
1860 This is a variation on the .debug_info section which has a checksum
1861 describing the contents appended onto the name. This allows the linker to
1862 identify and discard duplicate debugging sections for different
1863 compilation units. */
1864 #define DWARF2_DEBUG_INFO ".debug_info"
1865 #define GNU_LINKONCE_INFO ".gnu.linkonce.wi."
1868 find_debug_info (bfd
*abfd
, asection
*after_sec
)
1873 msec
= after_sec
->next
;
1875 msec
= abfd
->sections
;
1879 if (strcmp (msec
->name
, DWARF2_DEBUG_INFO
) == 0)
1882 if (strncmp (msec
->name
, GNU_LINKONCE_INFO
, strlen (GNU_LINKONCE_INFO
)) == 0)
1891 /* The DWARF2 version of find_nearest_line. Return TRUE if the line
1892 is found without error. ADDR_SIZE is the number of bytes in the
1893 initial .debug_info length field and in the abbreviation offset.
1894 You may use zero to indicate that the default value should be
1898 _bfd_dwarf2_find_nearest_line (bfd
*abfd
,
1902 const char **filename_ptr
,
1903 const char **functionname_ptr
,
1904 unsigned int *linenumber_ptr
,
1905 unsigned int addr_size
,
1908 /* Read each compilation unit from the section .debug_info, and check
1909 to see if it contains the address we are searching for. If yes,
1910 lookup the address, and return the line number info. If no, go
1911 on to the next compilation unit.
1913 We keep a list of all the previously read compilation units, and
1914 a pointer to the next un-read compilation unit. Check the
1915 previously read units before reading more. */
1916 struct dwarf2_debug
*stash
;
1918 /* What address are we looking for? */
1921 struct comp_unit
* each
;
1925 if (section
->output_section
)
1926 addr
+= section
->output_section
->vma
+ section
->output_offset
;
1928 addr
+= section
->vma
;
1929 *filename_ptr
= NULL
;
1930 *functionname_ptr
= NULL
;
1931 *linenumber_ptr
= 0;
1933 /* The DWARF2 spec says that the initial length field, and the
1934 offset of the abbreviation table, should both be 4-byte values.
1935 However, some compilers do things differently. */
1938 BFD_ASSERT (addr_size
== 4 || addr_size
== 8);
1942 bfd_size_type total_size
;
1944 bfd_size_type amt
= sizeof (struct dwarf2_debug
);
1946 stash
= bfd_zalloc (abfd
, amt
);
1952 msec
= find_debug_info (abfd
, NULL
);
1954 /* No dwarf2 info. Note that at this point the stash
1955 has been allocated, but contains zeros, this lets
1956 future calls to this function fail quicker. */
1959 /* There can be more than one DWARF2 info section in a BFD these days.
1960 Read them all in and produce one large stash. We do this in two
1961 passes - in the first pass we just accumulate the section sizes.
1962 In the second pass we read in the section's contents. The allows
1963 us to avoid reallocing the data as we add sections to the stash. */
1964 for (total_size
= 0; msec
; msec
= find_debug_info (abfd
, msec
))
1965 total_size
+= msec
->size
;
1967 stash
->info_ptr
= bfd_alloc (abfd
, total_size
);
1968 if (stash
->info_ptr
== NULL
)
1971 stash
->info_ptr_end
= stash
->info_ptr
;
1973 for (msec
= find_debug_info (abfd
, NULL
);
1975 msec
= find_debug_info (abfd
, msec
))
1978 bfd_size_type start
;
1984 start
= stash
->info_ptr_end
- stash
->info_ptr
;
1986 if ((bfd_simple_get_relocated_section_contents
1987 (abfd
, msec
, stash
->info_ptr
+ start
, symbols
)) == NULL
)
1990 stash
->info_ptr_end
= stash
->info_ptr
+ start
+ size
;
1993 BFD_ASSERT (stash
->info_ptr_end
== stash
->info_ptr
+ total_size
);
1995 stash
->sec
= find_debug_info (abfd
, NULL
);
1996 stash
->sec_info_ptr
= stash
->info_ptr
;
1997 stash
->syms
= symbols
;
2000 /* A null info_ptr indicates that there is no dwarf2 info
2001 (or that an error occured while setting up the stash). */
2002 if (! stash
->info_ptr
)
2005 stash
->inliner_chain
= NULL
;
2007 /* Check the previously read comp. units first. */
2008 for (each
= stash
->all_comp_units
; each
; each
= each
->next_unit
)
2009 if (comp_unit_contains_address (each
, addr
))
2010 return comp_unit_find_nearest_line (each
, addr
, filename_ptr
,
2011 functionname_ptr
, linenumber_ptr
,
2014 /* Read each remaining comp. units checking each as they are read. */
2015 while (stash
->info_ptr
< stash
->info_ptr_end
)
2019 unsigned int offset_size
= addr_size
;
2020 bfd_byte
*info_ptr_unit
= stash
->info_ptr
;
2022 length
= read_4_bytes (abfd
, stash
->info_ptr
);
2023 /* A 0xffffff length is the DWARF3 way of indicating we use
2024 64-bit offsets, instead of 32-bit offsets. */
2025 if (length
== 0xffffffff)
2028 length
= read_8_bytes (abfd
, stash
->info_ptr
+ 4);
2029 stash
->info_ptr
+= 12;
2031 /* A zero length is the IRIX way of indicating 64-bit offsets,
2032 mostly because the 64-bit length will generally fit in 32
2033 bits, and the endianness helps. */
2034 else if (length
== 0)
2037 length
= read_4_bytes (abfd
, stash
->info_ptr
+ 4);
2038 stash
->info_ptr
+= 8;
2040 /* In the absence of the hints above, we assume addr_size-sized
2041 offsets, for backward-compatibility with pre-DWARF3 64-bit
2043 else if (addr_size
== 8)
2045 length
= read_8_bytes (abfd
, stash
->info_ptr
);
2046 stash
->info_ptr
+= 8;
2049 stash
->info_ptr
+= 4;
2053 each
= parse_comp_unit (abfd
, stash
, length
, info_ptr_unit
,
2055 stash
->info_ptr
+= length
;
2057 if ((bfd_vma
) (stash
->info_ptr
- stash
->sec_info_ptr
)
2058 == stash
->sec
->size
)
2060 stash
->sec
= find_debug_info (abfd
, stash
->sec
);
2061 stash
->sec_info_ptr
= stash
->info_ptr
;
2066 each
->next_unit
= stash
->all_comp_units
;
2067 stash
->all_comp_units
= each
;
2069 /* DW_AT_low_pc and DW_AT_high_pc are optional for
2070 compilation units. If we don't have them (i.e.,
2071 unit->high == 0), we need to consult the line info
2072 table to see if a compilation unit contains the given
2074 if (each
->arange
.high
> 0)
2076 if (comp_unit_contains_address (each
, addr
))
2077 return comp_unit_find_nearest_line (each
, addr
,
2085 found
= comp_unit_find_nearest_line (each
, addr
,
2101 _bfd_dwarf2_find_inliner_info (bfd
*abfd ATTRIBUTE_UNUSED
,
2102 const char **filename_ptr
,
2103 const char **functionname_ptr
,
2104 unsigned int *linenumber_ptr
,
2107 struct dwarf2_debug
*stash
;
2112 struct funcinfo
*func
= stash
->inliner_chain
;
2113 if (func
&& func
->caller_func
)
2115 *filename_ptr
= func
->caller_file
;
2116 *functionname_ptr
= func
->caller_func
->name
;
2117 *linenumber_ptr
= func
->caller_line
;
2118 stash
->inliner_chain
= func
->caller_func
;
2127 _bfd_dwarf2_cleanup_debug_info (bfd
*abfd
)
2129 struct comp_unit
*each
;
2130 struct dwarf2_debug
*stash
;
2132 if (abfd
== NULL
|| elf_tdata (abfd
) == NULL
)
2135 stash
= elf_tdata (abfd
)->dwarf2_find_line_info
;
2140 for (each
= stash
->all_comp_units
; each
; each
= each
->next_unit
)
2142 struct abbrev_info
**abbrevs
= each
->abbrevs
;
2145 for (i
= 0; i
< ABBREV_HASH_SIZE
; i
++)
2147 struct abbrev_info
*abbrev
= abbrevs
[i
];
2151 free (abbrev
->attrs
);
2152 abbrev
= abbrev
->next
;
2156 if (each
->line_table
)
2158 free (each
->line_table
->dirs
);
2159 free (each
->line_table
->files
);
2163 free (stash
->dwarf_abbrev_buffer
);
2164 free (stash
->dwarf_line_buffer
);
2165 free (stash
->dwarf_ranges_buffer
);