2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2006, 2007, 2008, 2009, 2010 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 3 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,
31 MA 02110-1301, USA. */
35 #include "libiberty.h"
40 /* The data in the .debug_line statement prologue looks like this. */
45 unsigned short version
;
46 bfd_vma prologue_length
;
47 unsigned char minimum_instruction_length
;
48 unsigned char maximum_ops_per_insn
;
49 unsigned char default_is_stmt
;
51 unsigned char line_range
;
52 unsigned char opcode_base
;
53 unsigned char *standard_opcode_lengths
;
56 /* Attributes have a name and a value. */
60 enum dwarf_attribute name
;
65 struct dwarf_block
*blk
;
72 /* Blocks are a bunch of untyped bytes. */
79 struct adjusted_section
87 /* A list of all previously read comp_units. */
88 struct comp_unit
*all_comp_units
;
90 /* Last comp unit in list above. */
91 struct comp_unit
*last_comp_unit
;
93 /* The next unread compilation unit within the .debug_info section.
94 Zero indicates that the .debug_info section has not been loaded
98 /* Pointer to the end of the .debug_info section memory buffer. */
99 bfd_byte
*info_ptr_end
;
101 /* Pointer to the bfd, section and address of the beginning of the
102 section. The bfd might be different than expected because of
103 gnu_debuglink sections. */
106 bfd_byte
*sec_info_ptr
;
108 /* A pointer to the memory block allocated for info_ptr. Neither
109 info_ptr nor sec_info_ptr are guaranteed to stay pointing to the
110 beginning of the malloc block. This is used only to free the
112 bfd_byte
*info_ptr_memory
;
114 /* Pointer to the symbol table. */
117 /* Pointer to the .debug_abbrev section loaded into memory. */
118 bfd_byte
*dwarf_abbrev_buffer
;
120 /* Length of the loaded .debug_abbrev section. */
121 bfd_size_type dwarf_abbrev_size
;
123 /* Buffer for decode_line_info. */
124 bfd_byte
*dwarf_line_buffer
;
126 /* Length of the loaded .debug_line section. */
127 bfd_size_type dwarf_line_size
;
129 /* Pointer to the .debug_str section loaded into memory. */
130 bfd_byte
*dwarf_str_buffer
;
132 /* Length of the loaded .debug_str section. */
133 bfd_size_type dwarf_str_size
;
135 /* Pointer to the .debug_ranges section loaded into memory. */
136 bfd_byte
*dwarf_ranges_buffer
;
138 /* Length of the loaded .debug_ranges section. */
139 bfd_size_type dwarf_ranges_size
;
141 /* If the most recent call to bfd_find_nearest_line was given an
142 address in an inlined function, preserve a pointer into the
143 calling chain for subsequent calls to bfd_find_inliner_info to
145 struct funcinfo
*inliner_chain
;
147 /* Number of sections whose VMA we must adjust. */
148 unsigned int adjusted_section_count
;
150 /* Array of sections with adjusted VMA. */
151 struct adjusted_section
*adjusted_sections
;
153 /* Number of times find_line is called. This is used in
154 the heuristic for enabling the info hash tables. */
157 #define STASH_INFO_HASH_TRIGGER 100
159 /* Hash table mapping symbol names to function infos. */
160 struct info_hash_table
*funcinfo_hash_table
;
162 /* Hash table mapping symbol names to variable infos. */
163 struct info_hash_table
*varinfo_hash_table
;
165 /* Head of comp_unit list in the last hash table update. */
166 struct comp_unit
*hash_units_head
;
168 /* Status of info hash. */
169 int info_hash_status
;
170 #define STASH_INFO_HASH_OFF 0
171 #define STASH_INFO_HASH_ON 1
172 #define STASH_INFO_HASH_DISABLED 2
182 /* A minimal decoding of DWARF2 compilation units. We only decode
183 what's needed to get to the line number information. */
187 /* Chain the previously read compilation units. */
188 struct comp_unit
*next_unit
;
190 /* Likewise, chain the compilation unit read after this one.
191 The comp units are stored in reversed reading order. */
192 struct comp_unit
*prev_unit
;
194 /* Keep the bfd convenient (for memory allocation). */
197 /* The lowest and highest addresses contained in this compilation
198 unit as specified in the compilation unit header. */
199 struct arange arange
;
201 /* The DW_AT_name attribute (for error messages). */
204 /* The abbrev hash table. */
205 struct abbrev_info
**abbrevs
;
207 /* Note that an error was found by comp_unit_find_nearest_line. */
210 /* The DW_AT_comp_dir attribute. */
213 /* TRUE if there is a line number table associated with this comp. unit. */
216 /* Pointer to the current comp_unit so that we can find a given entry
218 bfd_byte
*info_ptr_unit
;
220 /* Pointer to the start of the debug section, for DW_FORM_ref_addr. */
221 bfd_byte
*sec_info_ptr
;
223 /* The offset into .debug_line of the line number table. */
224 unsigned long line_offset
;
226 /* Pointer to the first child die for the comp unit. */
227 bfd_byte
*first_child_die_ptr
;
229 /* The end of the comp unit. */
232 /* The decoded line number, NULL if not yet decoded. */
233 struct line_info_table
*line_table
;
235 /* A list of the functions found in this comp. unit. */
236 struct funcinfo
*function_table
;
238 /* A list of the variables found in this comp. unit. */
239 struct varinfo
*variable_table
;
241 /* Pointer to dwarf2_debug structure. */
242 struct dwarf2_debug
*stash
;
244 /* DWARF format version for this unit - from unit header. */
247 /* Address size for this unit - from unit header. */
248 unsigned char addr_size
;
250 /* Offset size for this unit - from unit header. */
251 unsigned char offset_size
;
253 /* Base address for this unit - from DW_AT_low_pc attribute of
254 DW_TAG_compile_unit DIE */
255 bfd_vma base_address
;
257 /* TRUE if symbols are cached in hash table for faster lookup by name. */
261 /* This data structure holds the information of an abbrev. */
264 unsigned int number
; /* Number identifying abbrev. */
265 enum dwarf_tag tag
; /* DWARF tag. */
266 int has_children
; /* Boolean. */
267 unsigned int num_attrs
; /* Number of attributes. */
268 struct attr_abbrev
*attrs
; /* An array of attribute descriptions. */
269 struct abbrev_info
*next
; /* Next in chain. */
274 enum dwarf_attribute name
;
275 enum dwarf_form form
;
278 #ifndef ABBREV_HASH_SIZE
279 #define ABBREV_HASH_SIZE 121
281 #ifndef ATTR_ALLOC_CHUNK
282 #define ATTR_ALLOC_CHUNK 4
285 /* Variable and function hash tables. This is used to speed up look-up
286 in lookup_symbol_in_var_table() and lookup_symbol_in_function_table().
287 In order to share code between variable and function infos, we use
288 a list of untyped pointer for all variable/function info associated with
289 a symbol. We waste a bit of memory for list with one node but that
290 simplifies the code. */
292 struct info_list_node
294 struct info_list_node
*next
;
298 /* Info hash entry. */
299 struct info_hash_entry
301 struct bfd_hash_entry root
;
302 struct info_list_node
*head
;
305 struct info_hash_table
307 struct bfd_hash_table base
;
310 /* Function to create a new entry in info hash table. */
312 static struct bfd_hash_entry
*
313 info_hash_table_newfunc (struct bfd_hash_entry
*entry
,
314 struct bfd_hash_table
*table
,
317 struct info_hash_entry
*ret
= (struct info_hash_entry
*) entry
;
319 /* Allocate the structure if it has not already been allocated by a
323 ret
= (struct info_hash_entry
*) bfd_hash_allocate (table
,
329 /* Call the allocation method of the base class. */
330 ret
= ((struct info_hash_entry
*)
331 bfd_hash_newfunc ((struct bfd_hash_entry
*) ret
, table
, string
));
333 /* Initialize the local fields here. */
337 return (struct bfd_hash_entry
*) ret
;
340 /* Function to create a new info hash table. It returns a pointer to the
341 newly created table or NULL if there is any error. We need abfd
342 solely for memory allocation. */
344 static struct info_hash_table
*
345 create_info_hash_table (bfd
*abfd
)
347 struct info_hash_table
*hash_table
;
349 hash_table
= (struct info_hash_table
*)
350 bfd_alloc (abfd
, sizeof (struct info_hash_table
));
354 if (!bfd_hash_table_init (&hash_table
->base
, info_hash_table_newfunc
,
355 sizeof (struct info_hash_entry
)))
357 bfd_release (abfd
, hash_table
);
364 /* Insert an info entry into an info hash table. We do not check of
365 duplicate entries. Also, the caller need to guarantee that the
366 right type of info in inserted as info is passed as a void* pointer.
367 This function returns true if there is no error. */
370 insert_info_hash_table (struct info_hash_table
*hash_table
,
375 struct info_hash_entry
*entry
;
376 struct info_list_node
*node
;
378 entry
= (struct info_hash_entry
*) bfd_hash_lookup (&hash_table
->base
,
383 node
= (struct info_list_node
*) bfd_hash_allocate (&hash_table
->base
,
389 node
->next
= entry
->head
;
395 /* Look up an info entry list from an info hash table. Return NULL
398 static struct info_list_node
*
399 lookup_info_hash_table (struct info_hash_table
*hash_table
, const char *key
)
401 struct info_hash_entry
*entry
;
403 entry
= (struct info_hash_entry
*) bfd_hash_lookup (&hash_table
->base
, key
,
405 return entry
? entry
->head
: NULL
;
408 /* Read a section into its appropriate place in the dwarf2_debug
409 struct (indicated by SECTION_BUFFER and SECTION_SIZE). If SYMS is
410 not NULL, use bfd_simple_get_relocated_section_contents to read the
411 section contents, otherwise use bfd_get_section_contents. Fail if
412 the located section does not contain at least OFFSET bytes. */
415 read_section (bfd
* abfd
,
416 const char * section_name
,
417 const char * compressed_section_name
,
420 bfd_byte
** section_buffer
,
421 bfd_size_type
* section_size
)
424 bfd_boolean section_is_compressed
= FALSE
;
426 /* read_section is a noop if the section has already been read. */
427 if (!*section_buffer
)
429 msec
= bfd_get_section_by_name (abfd
, section_name
);
430 if (! msec
&& compressed_section_name
)
432 msec
= bfd_get_section_by_name (abfd
, compressed_section_name
);
433 section_is_compressed
= TRUE
;
437 (*_bfd_error_handler
) (_("Dwarf Error: Can't find %s section."), section_name
);
438 bfd_set_error (bfd_error_bad_value
);
442 *section_size
= msec
->rawsize
? msec
->rawsize
: msec
->size
;
446 = bfd_simple_get_relocated_section_contents (abfd
, msec
, NULL
, syms
);
447 if (! *section_buffer
)
452 *section_buffer
= (bfd_byte
*) bfd_malloc (*section_size
);
453 if (! *section_buffer
)
455 if (! bfd_get_section_contents (abfd
, msec
, *section_buffer
,
460 if (section_is_compressed
)
462 if (! bfd_uncompress_section_contents (section_buffer
, section_size
))
464 (*_bfd_error_handler
) (_("Dwarf Error: unable to decompress %s section."), compressed_section_name
);
465 bfd_set_error (bfd_error_bad_value
);
471 /* It is possible to get a bad value for the offset into the section
472 that the client wants. Validate it here to avoid trouble later. */
473 if (offset
!= 0 && offset
>= *section_size
)
475 (*_bfd_error_handler
) (_("Dwarf Error: Offset (%lu) greater than or equal to %s size (%lu)."),
476 (long) offset
, section_name
, *section_size
);
477 bfd_set_error (bfd_error_bad_value
);
485 The following function up to the END VERBATIM mark are
486 copied directly from dwarf2read.c. */
488 /* Read dwarf information from a buffer. */
491 read_1_byte (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_byte
*buf
)
493 return bfd_get_8 (abfd
, buf
);
497 read_1_signed_byte (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_byte
*buf
)
499 return bfd_get_signed_8 (abfd
, buf
);
503 read_2_bytes (bfd
*abfd
, bfd_byte
*buf
)
505 return bfd_get_16 (abfd
, buf
);
509 read_4_bytes (bfd
*abfd
, bfd_byte
*buf
)
511 return bfd_get_32 (abfd
, buf
);
515 read_8_bytes (bfd
*abfd
, bfd_byte
*buf
)
517 return bfd_get_64 (abfd
, buf
);
521 read_n_bytes (bfd
*abfd ATTRIBUTE_UNUSED
,
523 unsigned int size ATTRIBUTE_UNUSED
)
529 read_string (bfd
*abfd ATTRIBUTE_UNUSED
,
531 unsigned int *bytes_read_ptr
)
533 /* Return a pointer to the embedded string. */
534 char *str
= (char *) buf
;
542 *bytes_read_ptr
= strlen (str
) + 1;
549 read_indirect_string (struct comp_unit
* unit
,
551 unsigned int * bytes_read_ptr
)
554 struct dwarf2_debug
*stash
= unit
->stash
;
557 if (unit
->offset_size
== 4)
558 offset
= read_4_bytes (unit
->abfd
, buf
);
560 offset
= read_8_bytes (unit
->abfd
, buf
);
562 *bytes_read_ptr
= unit
->offset_size
;
564 if (! read_section (unit
->abfd
, ".debug_str", ".zdebug_str",
566 &stash
->dwarf_str_buffer
, &stash
->dwarf_str_size
))
569 str
= (char *) stash
->dwarf_str_buffer
+ offset
;
576 read_address (struct comp_unit
*unit
, bfd_byte
*buf
)
578 int signed_vma
= get_elf_backend_data (unit
->abfd
)->sign_extend_vma
;
582 switch (unit
->addr_size
)
585 return bfd_get_signed_64 (unit
->abfd
, buf
);
587 return bfd_get_signed_32 (unit
->abfd
, buf
);
589 return bfd_get_signed_16 (unit
->abfd
, buf
);
596 switch (unit
->addr_size
)
599 return bfd_get_64 (unit
->abfd
, buf
);
601 return bfd_get_32 (unit
->abfd
, buf
);
603 return bfd_get_16 (unit
->abfd
, buf
);
610 /* Lookup an abbrev_info structure in the abbrev hash table. */
612 static struct abbrev_info
*
613 lookup_abbrev (unsigned int number
, struct abbrev_info
**abbrevs
)
615 unsigned int hash_number
;
616 struct abbrev_info
*abbrev
;
618 hash_number
= number
% ABBREV_HASH_SIZE
;
619 abbrev
= abbrevs
[hash_number
];
623 if (abbrev
->number
== number
)
626 abbrev
= abbrev
->next
;
632 /* In DWARF version 2, the description of the debugging information is
633 stored in a separate .debug_abbrev section. Before we read any
634 dies from a section we read in all abbreviations and install them
637 static struct abbrev_info
**
638 read_abbrevs (bfd
*abfd
, bfd_uint64_t offset
, struct dwarf2_debug
*stash
)
640 struct abbrev_info
**abbrevs
;
641 bfd_byte
*abbrev_ptr
;
642 struct abbrev_info
*cur_abbrev
;
643 unsigned int abbrev_number
, bytes_read
, abbrev_name
;
644 unsigned int abbrev_form
, hash_number
;
647 if (! read_section (abfd
, ".debug_abbrev", ".zdebug_abbrev",
649 &stash
->dwarf_abbrev_buffer
, &stash
->dwarf_abbrev_size
))
652 amt
= sizeof (struct abbrev_info
*) * ABBREV_HASH_SIZE
;
653 abbrevs
= (struct abbrev_info
**) bfd_zalloc (abfd
, amt
);
657 abbrev_ptr
= stash
->dwarf_abbrev_buffer
+ offset
;
658 abbrev_number
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
659 abbrev_ptr
+= bytes_read
;
661 /* Loop until we reach an abbrev number of 0. */
662 while (abbrev_number
)
664 amt
= sizeof (struct abbrev_info
);
665 cur_abbrev
= (struct abbrev_info
*) bfd_zalloc (abfd
, amt
);
666 if (cur_abbrev
== NULL
)
669 /* Read in abbrev header. */
670 cur_abbrev
->number
= abbrev_number
;
671 cur_abbrev
->tag
= (enum dwarf_tag
)
672 read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
673 abbrev_ptr
+= bytes_read
;
674 cur_abbrev
->has_children
= read_1_byte (abfd
, abbrev_ptr
);
677 /* Now read in declarations. */
678 abbrev_name
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
679 abbrev_ptr
+= bytes_read
;
680 abbrev_form
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
681 abbrev_ptr
+= bytes_read
;
685 if ((cur_abbrev
->num_attrs
% ATTR_ALLOC_CHUNK
) == 0)
687 struct attr_abbrev
*tmp
;
689 amt
= cur_abbrev
->num_attrs
+ ATTR_ALLOC_CHUNK
;
690 amt
*= sizeof (struct attr_abbrev
);
691 tmp
= (struct attr_abbrev
*) bfd_realloc (cur_abbrev
->attrs
, amt
);
696 for (i
= 0; i
< ABBREV_HASH_SIZE
; i
++)
698 struct abbrev_info
*abbrev
= abbrevs
[i
];
702 free (abbrev
->attrs
);
703 abbrev
= abbrev
->next
;
708 cur_abbrev
->attrs
= tmp
;
711 cur_abbrev
->attrs
[cur_abbrev
->num_attrs
].name
712 = (enum dwarf_attribute
) abbrev_name
;
713 cur_abbrev
->attrs
[cur_abbrev
->num_attrs
++].form
714 = (enum dwarf_form
) abbrev_form
;
715 abbrev_name
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
716 abbrev_ptr
+= bytes_read
;
717 abbrev_form
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
718 abbrev_ptr
+= bytes_read
;
721 hash_number
= abbrev_number
% ABBREV_HASH_SIZE
;
722 cur_abbrev
->next
= abbrevs
[hash_number
];
723 abbrevs
[hash_number
] = cur_abbrev
;
725 /* Get next abbreviation.
726 Under Irix6 the abbreviations for a compilation unit are not
727 always properly terminated with an abbrev number of 0.
728 Exit loop if we encounter an abbreviation which we have
729 already read (which means we are about to read the abbreviations
730 for the next compile unit) or if the end of the abbreviation
732 if ((unsigned int) (abbrev_ptr
- stash
->dwarf_abbrev_buffer
)
733 >= stash
->dwarf_abbrev_size
)
735 abbrev_number
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
736 abbrev_ptr
+= bytes_read
;
737 if (lookup_abbrev (abbrev_number
,abbrevs
) != NULL
)
744 /* Read an attribute value described by an attribute form. */
747 read_attribute_value (struct attribute
*attr
,
749 struct comp_unit
*unit
,
752 bfd
*abfd
= unit
->abfd
;
753 unsigned int bytes_read
;
754 struct dwarf_block
*blk
;
757 attr
->form
= (enum dwarf_form
) form
;
761 case DW_FORM_ref_addr
:
762 /* DW_FORM_ref_addr is an address in DWARF2, and an offset in
764 if (unit
->version
== 3 || unit
->version
== 4)
766 if (unit
->offset_size
== 4)
767 attr
->u
.val
= read_4_bytes (unit
->abfd
, info_ptr
);
769 attr
->u
.val
= read_8_bytes (unit
->abfd
, info_ptr
);
770 info_ptr
+= unit
->offset_size
;
775 attr
->u
.val
= read_address (unit
, info_ptr
);
776 info_ptr
+= unit
->addr_size
;
778 case DW_FORM_sec_offset
:
779 if (unit
->offset_size
== 4)
780 attr
->u
.val
= read_4_bytes (unit
->abfd
, info_ptr
);
782 attr
->u
.val
= read_8_bytes (unit
->abfd
, info_ptr
);
783 info_ptr
+= unit
->offset_size
;
786 amt
= sizeof (struct dwarf_block
);
787 blk
= (struct dwarf_block
*) bfd_alloc (abfd
, amt
);
790 blk
->size
= read_2_bytes (abfd
, info_ptr
);
792 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
793 info_ptr
+= blk
->size
;
797 amt
= sizeof (struct dwarf_block
);
798 blk
= (struct dwarf_block
*) bfd_alloc (abfd
, amt
);
801 blk
->size
= read_4_bytes (abfd
, info_ptr
);
803 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
804 info_ptr
+= blk
->size
;
808 attr
->u
.val
= read_2_bytes (abfd
, info_ptr
);
812 attr
->u
.val
= read_4_bytes (abfd
, info_ptr
);
816 attr
->u
.val
= read_8_bytes (abfd
, info_ptr
);
820 attr
->u
.str
= read_string (abfd
, info_ptr
, &bytes_read
);
821 info_ptr
+= bytes_read
;
824 attr
->u
.str
= read_indirect_string (unit
, info_ptr
, &bytes_read
);
825 info_ptr
+= bytes_read
;
827 case DW_FORM_exprloc
:
829 amt
= sizeof (struct dwarf_block
);
830 blk
= (struct dwarf_block
*) bfd_alloc (abfd
, amt
);
833 blk
->size
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
834 info_ptr
+= bytes_read
;
835 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
836 info_ptr
+= blk
->size
;
840 amt
= sizeof (struct dwarf_block
);
841 blk
= (struct dwarf_block
*) bfd_alloc (abfd
, amt
);
844 blk
->size
= read_1_byte (abfd
, info_ptr
);
846 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
847 info_ptr
+= blk
->size
;
851 attr
->u
.val
= read_1_byte (abfd
, info_ptr
);
855 attr
->u
.val
= read_1_byte (abfd
, info_ptr
);
858 case DW_FORM_flag_present
:
862 attr
->u
.sval
= read_signed_leb128 (abfd
, info_ptr
, &bytes_read
);
863 info_ptr
+= bytes_read
;
866 attr
->u
.val
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
867 info_ptr
+= bytes_read
;
870 attr
->u
.val
= read_1_byte (abfd
, info_ptr
);
874 attr
->u
.val
= read_2_bytes (abfd
, info_ptr
);
878 attr
->u
.val
= read_4_bytes (abfd
, info_ptr
);
882 attr
->u
.val
= read_8_bytes (abfd
, info_ptr
);
885 case DW_FORM_ref_sig8
:
886 attr
->u
.val
= read_8_bytes (abfd
, info_ptr
);
889 case DW_FORM_ref_udata
:
890 attr
->u
.val
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
891 info_ptr
+= bytes_read
;
893 case DW_FORM_indirect
:
894 form
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
895 info_ptr
+= bytes_read
;
896 info_ptr
= read_attribute_value (attr
, form
, unit
, info_ptr
);
899 (*_bfd_error_handler
) (_("Dwarf Error: Invalid or unhandled FORM value: %u."),
901 bfd_set_error (bfd_error_bad_value
);
907 /* Read an attribute described by an abbreviated attribute. */
910 read_attribute (struct attribute
*attr
,
911 struct attr_abbrev
*abbrev
,
912 struct comp_unit
*unit
,
915 attr
->name
= abbrev
->name
;
916 info_ptr
= read_attribute_value (attr
, abbrev
->form
, unit
, info_ptr
);
920 /* Source line information table routines. */
922 #define FILE_ALLOC_CHUNK 5
923 #define DIR_ALLOC_CHUNK 5
927 struct line_info
* prev_line
;
932 unsigned char op_index
;
933 unsigned char end_sequence
; /* End of (sequential) code sequence. */
947 struct line_sequence
* prev_sequence
;
948 struct line_info
* last_line
; /* Largest VMA. */
951 struct line_info_table
954 unsigned int num_files
;
955 unsigned int num_dirs
;
956 unsigned int num_sequences
;
959 struct fileinfo
* files
;
960 struct line_sequence
* sequences
;
961 struct line_info
* lcl_head
; /* Local head; used in 'add_line_info'. */
964 /* Remember some information about each function. If the function is
965 inlined (DW_TAG_inlined_subroutine) it may have two additional
966 attributes, DW_AT_call_file and DW_AT_call_line, which specify the
967 source code location where this function was inlined. */
971 struct funcinfo
*prev_func
; /* Pointer to previous function in list of all functions */
972 struct funcinfo
*caller_func
; /* Pointer to function one scope higher */
973 char *caller_file
; /* Source location file name where caller_func inlines this func */
974 int caller_line
; /* Source location line number where caller_func inlines this func */
975 char *file
; /* Source location file name */
976 int line
; /* Source location line number */
979 struct arange arange
;
980 asection
*sec
; /* Where the symbol is defined */
985 /* Pointer to previous variable in list of all variables */
986 struct varinfo
*prev_var
;
987 /* Source location file name */
989 /* Source location line number */
994 /* Where the symbol is defined */
996 /* Is this a stack variable? */
997 unsigned int stack
: 1;
1000 /* Return TRUE if NEW_LINE should sort after LINE. */
1002 static inline bfd_boolean
1003 new_line_sorts_after (struct line_info
*new_line
, struct line_info
*line
)
1005 return (new_line
->address
> line
->address
1006 || (new_line
->address
== line
->address
1007 && (new_line
->op_index
> line
->op_index
1008 || (new_line
->op_index
== line
->op_index
1009 && new_line
->end_sequence
< line
->end_sequence
))));
1013 /* Adds a new entry to the line_info list in the line_info_table, ensuring
1014 that the list is sorted. Note that the line_info list is sorted from
1015 highest to lowest VMA (with possible duplicates); that is,
1016 line_info->prev_line always accesses an equal or smaller VMA. */
1019 add_line_info (struct line_info_table
*table
,
1021 unsigned char op_index
,
1024 unsigned int column
,
1027 bfd_size_type amt
= sizeof (struct line_info
);
1028 struct line_sequence
* seq
= table
->sequences
;
1029 struct line_info
* info
= (struct line_info
*) bfd_alloc (table
->abfd
, amt
);
1034 /* Set member data of 'info'. */
1035 info
->prev_line
= NULL
;
1036 info
->address
= address
;
1037 info
->op_index
= op_index
;
1039 info
->column
= column
;
1040 info
->end_sequence
= end_sequence
;
1042 if (filename
&& filename
[0])
1044 info
->filename
= (char *) bfd_alloc (table
->abfd
, strlen (filename
) + 1);
1045 if (info
->filename
== NULL
)
1047 strcpy (info
->filename
, filename
);
1050 info
->filename
= NULL
;
1052 /* Find the correct location for 'info'. Normally we will receive
1053 new line_info data 1) in order and 2) with increasing VMAs.
1054 However some compilers break the rules (cf. decode_line_info) and
1055 so we include some heuristics for quickly finding the correct
1056 location for 'info'. In particular, these heuristics optimize for
1057 the common case in which the VMA sequence that we receive is a
1058 list of locally sorted VMAs such as
1059 p...z a...j (where a < j < p < z)
1061 Note: table->lcl_head is used to head an *actual* or *possible*
1062 sub-sequence within the list (such as a...j) that is not directly
1063 headed by table->last_line
1065 Note: we may receive duplicate entries from 'decode_line_info'. */
1068 && seq
->last_line
->address
== address
1069 && seq
->last_line
->op_index
== op_index
1070 && seq
->last_line
->end_sequence
== end_sequence
)
1072 /* We only keep the last entry with the same address and end
1073 sequence. See PR ld/4986. */
1074 if (table
->lcl_head
== seq
->last_line
)
1075 table
->lcl_head
= info
;
1076 info
->prev_line
= seq
->last_line
->prev_line
;
1077 seq
->last_line
= info
;
1079 else if (!seq
|| seq
->last_line
->end_sequence
)
1081 /* Start a new line sequence. */
1082 amt
= sizeof (struct line_sequence
);
1083 seq
= (struct line_sequence
*) bfd_malloc (amt
);
1086 seq
->low_pc
= address
;
1087 seq
->prev_sequence
= table
->sequences
;
1088 seq
->last_line
= info
;
1089 table
->lcl_head
= info
;
1090 table
->sequences
= seq
;
1091 table
->num_sequences
++;
1093 else if (new_line_sorts_after (info
, seq
->last_line
))
1095 /* Normal case: add 'info' to the beginning of the current sequence. */
1096 info
->prev_line
= seq
->last_line
;
1097 seq
->last_line
= info
;
1099 /* lcl_head: initialize to head a *possible* sequence at the end. */
1100 if (!table
->lcl_head
)
1101 table
->lcl_head
= info
;
1103 else if (!new_line_sorts_after (info
, table
->lcl_head
)
1104 && (!table
->lcl_head
->prev_line
1105 || new_line_sorts_after (info
, table
->lcl_head
->prev_line
)))
1107 /* Abnormal but easy: lcl_head is the head of 'info'. */
1108 info
->prev_line
= table
->lcl_head
->prev_line
;
1109 table
->lcl_head
->prev_line
= info
;
1113 /* Abnormal and hard: Neither 'last_line' nor 'lcl_head'
1114 are valid heads for 'info'. Reset 'lcl_head'. */
1115 struct line_info
* li2
= seq
->last_line
; /* Always non-NULL. */
1116 struct line_info
* li1
= li2
->prev_line
;
1120 if (!new_line_sorts_after (info
, li2
)
1121 && new_line_sorts_after (info
, li1
))
1124 li2
= li1
; /* always non-NULL */
1125 li1
= li1
->prev_line
;
1127 table
->lcl_head
= li2
;
1128 info
->prev_line
= table
->lcl_head
->prev_line
;
1129 table
->lcl_head
->prev_line
= info
;
1130 if (address
< seq
->low_pc
)
1131 seq
->low_pc
= address
;
1136 /* Extract a fully qualified filename from a line info table.
1137 The returned string has been malloc'ed and it is the caller's
1138 responsibility to free it. */
1141 concat_filename (struct line_info_table
*table
, unsigned int file
)
1145 if (file
- 1 >= table
->num_files
)
1147 /* FILE == 0 means unknown. */
1149 (*_bfd_error_handler
)
1150 (_("Dwarf Error: mangled line number section (bad file number)."));
1151 return strdup ("<unknown>");
1154 filename
= table
->files
[file
- 1].name
;
1156 if (!IS_ABSOLUTE_PATH (filename
))
1158 char *dir_name
= NULL
;
1159 char *subdir_name
= NULL
;
1163 if (table
->files
[file
- 1].dir
)
1164 subdir_name
= table
->dirs
[table
->files
[file
- 1].dir
- 1];
1166 if (!subdir_name
|| !IS_ABSOLUTE_PATH (subdir_name
))
1167 dir_name
= table
->comp_dir
;
1171 dir_name
= subdir_name
;
1176 return strdup (filename
);
1178 len
= strlen (dir_name
) + strlen (filename
) + 2;
1182 len
+= strlen (subdir_name
) + 1;
1183 name
= (char *) bfd_malloc (len
);
1185 sprintf (name
, "%s/%s/%s", dir_name
, subdir_name
, filename
);
1189 name
= (char *) bfd_malloc (len
);
1191 sprintf (name
, "%s/%s", dir_name
, filename
);
1197 return strdup (filename
);
1201 arange_add (bfd
*abfd
, struct arange
*first_arange
,
1202 bfd_vma low_pc
, bfd_vma high_pc
)
1204 struct arange
*arange
;
1206 /* If the first arange is empty, use it. */
1207 if (first_arange
->high
== 0)
1209 first_arange
->low
= low_pc
;
1210 first_arange
->high
= high_pc
;
1214 /* Next see if we can cheaply extend an existing range. */
1215 arange
= first_arange
;
1218 if (low_pc
== arange
->high
)
1220 arange
->high
= high_pc
;
1223 if (high_pc
== arange
->low
)
1225 arange
->low
= low_pc
;
1228 arange
= arange
->next
;
1232 /* Need to allocate a new arange and insert it into the arange list.
1233 Order isn't significant, so just insert after the first arange. */
1234 arange
= (struct arange
*) bfd_zalloc (abfd
, sizeof (*arange
));
1237 arange
->low
= low_pc
;
1238 arange
->high
= high_pc
;
1239 arange
->next
= first_arange
->next
;
1240 first_arange
->next
= arange
;
1244 /* Compare function for line sequences. */
1247 compare_sequences (const void* a
, const void* b
)
1249 const struct line_sequence
* seq1
= a
;
1250 const struct line_sequence
* seq2
= b
;
1252 /* Sort by low_pc as the primary key. */
1253 if (seq1
->low_pc
< seq2
->low_pc
)
1255 if (seq1
->low_pc
> seq2
->low_pc
)
1258 /* If low_pc values are equal, sort in reverse order of
1259 high_pc, so that the largest region comes first. */
1260 if (seq1
->last_line
->address
< seq2
->last_line
->address
)
1262 if (seq1
->last_line
->address
> seq2
->last_line
->address
)
1265 if (seq1
->last_line
->op_index
< seq2
->last_line
->op_index
)
1267 if (seq1
->last_line
->op_index
> seq2
->last_line
->op_index
)
1273 /* Sort the line sequences for quick lookup. */
1276 sort_line_sequences (struct line_info_table
* table
)
1279 struct line_sequence
* sequences
;
1280 struct line_sequence
* seq
;
1282 unsigned int num_sequences
= table
->num_sequences
;
1283 bfd_vma last_high_pc
;
1285 if (num_sequences
== 0)
1288 /* Allocate space for an array of sequences. */
1289 amt
= sizeof (struct line_sequence
) * num_sequences
;
1290 sequences
= (struct line_sequence
*) bfd_alloc (table
->abfd
, amt
);
1291 if (sequences
== NULL
)
1294 /* Copy the linked list into the array, freeing the original nodes. */
1295 seq
= table
->sequences
;
1296 for (n
= 0; n
< num_sequences
; n
++)
1298 struct line_sequence
* last_seq
= seq
;
1301 sequences
[n
].low_pc
= seq
->low_pc
;
1302 sequences
[n
].prev_sequence
= NULL
;
1303 sequences
[n
].last_line
= seq
->last_line
;
1304 seq
= seq
->prev_sequence
;
1307 BFD_ASSERT (seq
== NULL
);
1309 qsort (sequences
, n
, sizeof (struct line_sequence
), compare_sequences
);
1311 /* Make the list binary-searchable by trimming overlapping entries
1312 and removing nested entries. */
1314 last_high_pc
= sequences
[0].last_line
->address
;
1315 for (n
= 1; n
< table
->num_sequences
; n
++)
1317 if (sequences
[n
].low_pc
< last_high_pc
)
1319 if (sequences
[n
].last_line
->address
<= last_high_pc
)
1320 /* Skip nested entries. */
1323 /* Trim overlapping entries. */
1324 sequences
[n
].low_pc
= last_high_pc
;
1326 last_high_pc
= sequences
[n
].last_line
->address
;
1327 if (n
> num_sequences
)
1329 /* Close up the gap. */
1330 sequences
[num_sequences
].low_pc
= sequences
[n
].low_pc
;
1331 sequences
[num_sequences
].last_line
= sequences
[n
].last_line
;
1336 table
->sequences
= sequences
;
1337 table
->num_sequences
= num_sequences
;
1341 /* Decode the line number information for UNIT. */
1343 static struct line_info_table
*
1344 decode_line_info (struct comp_unit
*unit
, struct dwarf2_debug
*stash
)
1346 bfd
*abfd
= unit
->abfd
;
1347 struct line_info_table
* table
;
1350 struct line_head lh
;
1351 unsigned int i
, bytes_read
, offset_size
;
1352 char *cur_file
, *cur_dir
;
1353 unsigned char op_code
, extended_op
, adj_opcode
;
1356 if (! read_section (abfd
, ".debug_line", ".zdebug_line",
1357 stash
->syms
, unit
->line_offset
,
1358 &stash
->dwarf_line_buffer
, &stash
->dwarf_line_size
))
1361 amt
= sizeof (struct line_info_table
);
1362 table
= (struct line_info_table
*) bfd_alloc (abfd
, amt
);
1366 table
->comp_dir
= unit
->comp_dir
;
1368 table
->num_files
= 0;
1369 table
->files
= NULL
;
1371 table
->num_dirs
= 0;
1374 table
->num_sequences
= 0;
1375 table
->sequences
= NULL
;
1377 table
->lcl_head
= NULL
;
1379 line_ptr
= stash
->dwarf_line_buffer
+ unit
->line_offset
;
1381 /* Read in the prologue. */
1382 lh
.total_length
= read_4_bytes (abfd
, line_ptr
);
1385 if (lh
.total_length
== 0xffffffff)
1387 lh
.total_length
= read_8_bytes (abfd
, line_ptr
);
1391 else if (lh
.total_length
== 0 && unit
->addr_size
== 8)
1393 /* Handle (non-standard) 64-bit DWARF2 formats. */
1394 lh
.total_length
= read_4_bytes (abfd
, line_ptr
);
1398 line_end
= line_ptr
+ lh
.total_length
;
1399 lh
.version
= read_2_bytes (abfd
, line_ptr
);
1400 if (lh
.version
< 2 || lh
.version
> 4)
1402 (*_bfd_error_handler
)
1403 (_("Dwarf Error: Unhandled .debug_line version %d."), lh
.version
);
1404 bfd_set_error (bfd_error_bad_value
);
1408 if (offset_size
== 4)
1409 lh
.prologue_length
= read_4_bytes (abfd
, line_ptr
);
1411 lh
.prologue_length
= read_8_bytes (abfd
, line_ptr
);
1412 line_ptr
+= offset_size
;
1413 lh
.minimum_instruction_length
= read_1_byte (abfd
, line_ptr
);
1415 if (lh
.version
>= 4)
1417 lh
.maximum_ops_per_insn
= read_1_byte (abfd
, line_ptr
);
1421 lh
.maximum_ops_per_insn
= 1;
1422 if (lh
.maximum_ops_per_insn
== 0)
1424 (*_bfd_error_handler
)
1425 (_("Dwarf Error: Invalid maximum operations per instruction."));
1426 bfd_set_error (bfd_error_bad_value
);
1429 lh
.default_is_stmt
= read_1_byte (abfd
, line_ptr
);
1431 lh
.line_base
= read_1_signed_byte (abfd
, line_ptr
);
1433 lh
.line_range
= read_1_byte (abfd
, line_ptr
);
1435 lh
.opcode_base
= read_1_byte (abfd
, line_ptr
);
1437 amt
= lh
.opcode_base
* sizeof (unsigned char);
1438 lh
.standard_opcode_lengths
= (unsigned char *) bfd_alloc (abfd
, amt
);
1440 lh
.standard_opcode_lengths
[0] = 1;
1442 for (i
= 1; i
< lh
.opcode_base
; ++i
)
1444 lh
.standard_opcode_lengths
[i
] = read_1_byte (abfd
, line_ptr
);
1448 /* Read directory table. */
1449 while ((cur_dir
= read_string (abfd
, line_ptr
, &bytes_read
)) != NULL
)
1451 line_ptr
+= bytes_read
;
1453 if ((table
->num_dirs
% DIR_ALLOC_CHUNK
) == 0)
1457 amt
= table
->num_dirs
+ DIR_ALLOC_CHUNK
;
1458 amt
*= sizeof (char *);
1460 tmp
= (char **) bfd_realloc (table
->dirs
, amt
);
1466 table
->dirs
[table
->num_dirs
++] = cur_dir
;
1469 line_ptr
+= bytes_read
;
1471 /* Read file name table. */
1472 while ((cur_file
= read_string (abfd
, line_ptr
, &bytes_read
)) != NULL
)
1474 line_ptr
+= bytes_read
;
1476 if ((table
->num_files
% FILE_ALLOC_CHUNK
) == 0)
1478 struct fileinfo
*tmp
;
1480 amt
= table
->num_files
+ FILE_ALLOC_CHUNK
;
1481 amt
*= sizeof (struct fileinfo
);
1483 tmp
= (struct fileinfo
*) bfd_realloc (table
->files
, amt
);
1489 table
->files
[table
->num_files
].name
= cur_file
;
1490 table
->files
[table
->num_files
].dir
=
1491 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1492 line_ptr
+= bytes_read
;
1493 table
->files
[table
->num_files
].time
=
1494 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1495 line_ptr
+= bytes_read
;
1496 table
->files
[table
->num_files
].size
=
1497 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1498 line_ptr
+= bytes_read
;
1502 line_ptr
+= bytes_read
;
1504 /* Read the statement sequences until there's nothing left. */
1505 while (line_ptr
< line_end
)
1507 /* State machine registers. */
1508 bfd_vma address
= 0;
1509 unsigned char op_index
= 0;
1510 char * filename
= table
->num_files
? concat_filename (table
, 1) : NULL
;
1511 unsigned int line
= 1;
1512 unsigned int column
= 0;
1513 int is_stmt
= lh
.default_is_stmt
;
1514 int end_sequence
= 0;
1515 /* eraxxon@alumni.rice.edu: Against the DWARF2 specs, some
1516 compilers generate address sequences that are wildly out of
1517 order using DW_LNE_set_address (e.g. Intel C++ 6.0 compiler
1518 for ia64-Linux). Thus, to determine the low and high
1519 address, we must compare on every DW_LNS_copy, etc. */
1520 bfd_vma low_pc
= (bfd_vma
) -1;
1521 bfd_vma high_pc
= 0;
1523 /* Decode the table. */
1524 while (! end_sequence
)
1526 op_code
= read_1_byte (abfd
, line_ptr
);
1529 if (op_code
>= lh
.opcode_base
)
1531 /* Special operand. */
1532 adj_opcode
= op_code
- lh
.opcode_base
;
1533 if (lh
.maximum_ops_per_insn
== 1)
1534 address
+= (adj_opcode
/ lh
.line_range
)
1535 * lh
.minimum_instruction_length
;
1538 address
+= ((op_index
+ (adj_opcode
/ lh
.line_range
))
1539 / lh
.maximum_ops_per_insn
)
1540 * lh
.minimum_instruction_length
;
1541 op_index
= (op_index
+ (adj_opcode
/ lh
.line_range
))
1542 % lh
.maximum_ops_per_insn
;
1544 line
+= lh
.line_base
+ (adj_opcode
% lh
.line_range
);
1545 /* Append row to matrix using current values. */
1546 if (!add_line_info (table
, address
, op_index
, filename
,
1549 if (address
< low_pc
)
1551 if (address
> high_pc
)
1554 else switch (op_code
)
1556 case DW_LNS_extended_op
:
1557 /* Ignore length. */
1559 extended_op
= read_1_byte (abfd
, line_ptr
);
1562 switch (extended_op
)
1564 case DW_LNE_end_sequence
:
1566 if (!add_line_info (table
, address
, op_index
, filename
,
1567 line
, column
, end_sequence
))
1569 if (address
< low_pc
)
1571 if (address
> high_pc
)
1573 if (!arange_add (unit
->abfd
, &unit
->arange
, low_pc
, high_pc
))
1576 case DW_LNE_set_address
:
1577 address
= read_address (unit
, line_ptr
);
1579 line_ptr
+= unit
->addr_size
;
1581 case DW_LNE_define_file
:
1582 cur_file
= read_string (abfd
, line_ptr
, &bytes_read
);
1583 line_ptr
+= bytes_read
;
1584 if ((table
->num_files
% FILE_ALLOC_CHUNK
) == 0)
1586 struct fileinfo
*tmp
;
1588 amt
= table
->num_files
+ FILE_ALLOC_CHUNK
;
1589 amt
*= sizeof (struct fileinfo
);
1590 tmp
= (struct fileinfo
*) bfd_realloc (table
->files
, amt
);
1595 table
->files
[table
->num_files
].name
= cur_file
;
1596 table
->files
[table
->num_files
].dir
=
1597 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1598 line_ptr
+= bytes_read
;
1599 table
->files
[table
->num_files
].time
=
1600 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1601 line_ptr
+= bytes_read
;
1602 table
->files
[table
->num_files
].size
=
1603 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1604 line_ptr
+= bytes_read
;
1607 case DW_LNE_set_discriminator
:
1608 (void) read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1609 line_ptr
+= bytes_read
;
1612 (*_bfd_error_handler
) (_("Dwarf Error: mangled line number section."));
1613 bfd_set_error (bfd_error_bad_value
);
1615 if (filename
!= NULL
)
1621 if (!add_line_info (table
, address
, op_index
,
1622 filename
, line
, column
, 0))
1624 if (address
< low_pc
)
1626 if (address
> high_pc
)
1629 case DW_LNS_advance_pc
:
1630 if (lh
.maximum_ops_per_insn
== 1)
1631 address
+= lh
.minimum_instruction_length
1632 * read_unsigned_leb128 (abfd
, line_ptr
,
1636 bfd_vma adjust
= read_unsigned_leb128 (abfd
, line_ptr
,
1638 address
= ((op_index
+ adjust
) / lh
.maximum_ops_per_insn
)
1639 * lh
.minimum_instruction_length
;
1640 op_index
= (op_index
+ adjust
) % lh
.maximum_ops_per_insn
;
1642 line_ptr
+= bytes_read
;
1644 case DW_LNS_advance_line
:
1645 line
+= read_signed_leb128 (abfd
, line_ptr
, &bytes_read
);
1646 line_ptr
+= bytes_read
;
1648 case DW_LNS_set_file
:
1652 /* The file and directory tables are 0
1653 based, the references are 1 based. */
1654 file
= read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1655 line_ptr
+= bytes_read
;
1658 filename
= concat_filename (table
, file
);
1661 case DW_LNS_set_column
:
1662 column
= read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1663 line_ptr
+= bytes_read
;
1665 case DW_LNS_negate_stmt
:
1666 is_stmt
= (!is_stmt
);
1668 case DW_LNS_set_basic_block
:
1670 case DW_LNS_const_add_pc
:
1671 if (lh
.maximum_ops_per_insn
== 1)
1672 address
+= lh
.minimum_instruction_length
1673 * ((255 - lh
.opcode_base
) / lh
.line_range
);
1676 bfd_vma adjust
= ((255 - lh
.opcode_base
) / lh
.line_range
);
1677 address
+= lh
.minimum_instruction_length
1678 * ((op_index
+ adjust
) / lh
.maximum_ops_per_insn
);
1679 op_index
= (op_index
+ adjust
) % lh
.maximum_ops_per_insn
;
1682 case DW_LNS_fixed_advance_pc
:
1683 address
+= read_2_bytes (abfd
, line_ptr
);
1688 /* Unknown standard opcode, ignore it. */
1689 for (i
= 0; i
< lh
.standard_opcode_lengths
[op_code
]; i
++)
1691 (void) read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
1692 line_ptr
+= bytes_read
;
1702 if (sort_line_sequences (table
))
1706 if (table
->sequences
!= NULL
)
1707 free (table
->sequences
);
1708 if (table
->files
!= NULL
)
1709 free (table
->files
);
1710 if (table
->dirs
!= NULL
)
1715 /* If ADDR is within TABLE set the output parameters and return TRUE,
1716 otherwise return FALSE. The output parameters, FILENAME_PTR and
1717 LINENUMBER_PTR, are pointers to the objects to be filled in. */
1720 lookup_address_in_line_info_table (struct line_info_table
*table
,
1722 const char **filename_ptr
,
1723 unsigned int *linenumber_ptr
)
1725 struct line_sequence
*seq
= NULL
;
1726 struct line_info
*each_line
;
1729 /* Binary search the array of sequences. */
1731 high
= table
->num_sequences
;
1734 mid
= (low
+ high
) / 2;
1735 seq
= &table
->sequences
[mid
];
1736 if (addr
< seq
->low_pc
)
1738 else if (addr
>= seq
->last_line
->address
)
1744 if (seq
&& addr
>= seq
->low_pc
&& addr
< seq
->last_line
->address
)
1746 /* Note: seq->last_line should be a descendingly sorted list. */
1747 for (each_line
= seq
->last_line
;
1749 each_line
= each_line
->prev_line
)
1750 if (addr
>= each_line
->address
)
1754 && !(each_line
->end_sequence
|| each_line
== seq
->last_line
))
1756 *filename_ptr
= each_line
->filename
;
1757 *linenumber_ptr
= each_line
->line
;
1762 *filename_ptr
= NULL
;
1766 /* Read in the .debug_ranges section for future reference. */
1769 read_debug_ranges (struct comp_unit
*unit
)
1771 struct dwarf2_debug
*stash
= unit
->stash
;
1772 return read_section (unit
->abfd
, ".debug_ranges", ".zdebug_ranges",
1774 &stash
->dwarf_ranges_buffer
, &stash
->dwarf_ranges_size
);
1777 /* Function table functions. */
1779 /* If ADDR is within TABLE, set FUNCTIONNAME_PTR, and return TRUE.
1780 Note that we need to find the function that has the smallest
1781 range that contains ADDR, to handle inlined functions without
1782 depending upon them being ordered in TABLE by increasing range. */
1785 lookup_address_in_function_table (struct comp_unit
*unit
,
1787 struct funcinfo
**function_ptr
,
1788 const char **functionname_ptr
)
1790 struct funcinfo
* each_func
;
1791 struct funcinfo
* best_fit
= NULL
;
1792 struct arange
*arange
;
1794 for (each_func
= unit
->function_table
;
1796 each_func
= each_func
->prev_func
)
1798 for (arange
= &each_func
->arange
;
1800 arange
= arange
->next
)
1802 if (addr
>= arange
->low
&& addr
< arange
->high
)
1805 ((arange
->high
- arange
->low
) < (best_fit
->arange
.high
- best_fit
->arange
.low
)))
1806 best_fit
= each_func
;
1813 *functionname_ptr
= best_fit
->name
;
1814 *function_ptr
= best_fit
;
1823 /* If SYM at ADDR is within function table of UNIT, set FILENAME_PTR
1824 and LINENUMBER_PTR, and return TRUE. */
1827 lookup_symbol_in_function_table (struct comp_unit
*unit
,
1830 const char **filename_ptr
,
1831 unsigned int *linenumber_ptr
)
1833 struct funcinfo
* each_func
;
1834 struct funcinfo
* best_fit
= NULL
;
1835 struct arange
*arange
;
1836 const char *name
= bfd_asymbol_name (sym
);
1837 asection
*sec
= bfd_get_section (sym
);
1839 for (each_func
= unit
->function_table
;
1841 each_func
= each_func
->prev_func
)
1843 for (arange
= &each_func
->arange
;
1845 arange
= arange
->next
)
1847 if ((!each_func
->sec
|| each_func
->sec
== sec
)
1848 && addr
>= arange
->low
1849 && addr
< arange
->high
1851 && strcmp (name
, each_func
->name
) == 0
1853 || ((arange
->high
- arange
->low
)
1854 < (best_fit
->arange
.high
- best_fit
->arange
.low
))))
1855 best_fit
= each_func
;
1861 best_fit
->sec
= sec
;
1862 *filename_ptr
= best_fit
->file
;
1863 *linenumber_ptr
= best_fit
->line
;
1870 /* Variable table functions. */
1872 /* If SYM is within variable table of UNIT, set FILENAME_PTR and
1873 LINENUMBER_PTR, and return TRUE. */
1876 lookup_symbol_in_variable_table (struct comp_unit
*unit
,
1879 const char **filename_ptr
,
1880 unsigned int *linenumber_ptr
)
1882 const char *name
= bfd_asymbol_name (sym
);
1883 asection
*sec
= bfd_get_section (sym
);
1884 struct varinfo
* each
;
1886 for (each
= unit
->variable_table
; each
; each
= each
->prev_var
)
1887 if (each
->stack
== 0
1888 && each
->file
!= NULL
1889 && each
->name
!= NULL
1890 && each
->addr
== addr
1891 && (!each
->sec
|| each
->sec
== sec
)
1892 && strcmp (name
, each
->name
) == 0)
1898 *filename_ptr
= each
->file
;
1899 *linenumber_ptr
= each
->line
;
1907 find_abstract_instance_name (struct comp_unit
*unit
,
1908 struct attribute
*attr_ptr
)
1910 bfd
*abfd
= unit
->abfd
;
1912 unsigned int abbrev_number
, bytes_read
, i
;
1913 struct abbrev_info
*abbrev
;
1914 bfd_uint64_t die_ref
= attr_ptr
->u
.val
;
1915 struct attribute attr
;
1918 /* DW_FORM_ref_addr can reference an entry in a different CU. It
1919 is an offset from the .debug_info section, not the current CU. */
1920 if (attr_ptr
->form
== DW_FORM_ref_addr
)
1922 /* We only support DW_FORM_ref_addr within the same file, so
1923 any relocations should be resolved already. */
1927 info_ptr
= unit
->sec_info_ptr
+ die_ref
;
1930 info_ptr
= unit
->info_ptr_unit
+ die_ref
;
1931 abbrev_number
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
1932 info_ptr
+= bytes_read
;
1936 abbrev
= lookup_abbrev (abbrev_number
, unit
->abbrevs
);
1939 (*_bfd_error_handler
) (_("Dwarf Error: Could not find abbrev number %u."),
1941 bfd_set_error (bfd_error_bad_value
);
1945 for (i
= 0; i
< abbrev
->num_attrs
; ++i
)
1947 info_ptr
= read_attribute (&attr
, &abbrev
->attrs
[i
], unit
,
1949 if (info_ptr
== NULL
)
1954 /* Prefer DW_AT_MIPS_linkage_name or DW_AT_linkage_name
1959 case DW_AT_specification
:
1960 name
= find_abstract_instance_name (unit
, &attr
);
1962 case DW_AT_linkage_name
:
1963 case DW_AT_MIPS_linkage_name
:
1976 read_rangelist (struct comp_unit
*unit
, struct arange
*arange
,
1977 bfd_uint64_t offset
)
1979 bfd_byte
*ranges_ptr
;
1980 bfd_vma base_address
= unit
->base_address
;
1982 if (! unit
->stash
->dwarf_ranges_buffer
)
1984 if (! read_debug_ranges (unit
))
1987 ranges_ptr
= unit
->stash
->dwarf_ranges_buffer
+ offset
;
1994 low_pc
= read_address (unit
, ranges_ptr
);
1995 ranges_ptr
+= unit
->addr_size
;
1996 high_pc
= read_address (unit
, ranges_ptr
);
1997 ranges_ptr
+= unit
->addr_size
;
1999 if (low_pc
== 0 && high_pc
== 0)
2001 if (low_pc
== -1UL && high_pc
!= -1UL)
2002 base_address
= high_pc
;
2005 if (!arange_add (unit
->abfd
, arange
,
2006 base_address
+ low_pc
, base_address
+ high_pc
))
2013 /* DWARF2 Compilation unit functions. */
2015 /* Scan over each die in a comp. unit looking for functions to add
2016 to the function table and variables to the variable table. */
2019 scan_unit_for_symbols (struct comp_unit
*unit
)
2021 bfd
*abfd
= unit
->abfd
;
2022 bfd_byte
*info_ptr
= unit
->first_child_die_ptr
;
2023 int nesting_level
= 1;
2024 struct funcinfo
**nested_funcs
;
2025 int nested_funcs_size
;
2027 /* Maintain a stack of in-scope functions and inlined functions, which we
2028 can use to set the caller_func field. */
2029 nested_funcs_size
= 32;
2030 nested_funcs
= (struct funcinfo
**)
2031 bfd_malloc (nested_funcs_size
* sizeof (struct funcinfo
*));
2032 if (nested_funcs
== NULL
)
2034 nested_funcs
[nesting_level
] = 0;
2036 while (nesting_level
)
2038 unsigned int abbrev_number
, bytes_read
, i
;
2039 struct abbrev_info
*abbrev
;
2040 struct attribute attr
;
2041 struct funcinfo
*func
;
2042 struct varinfo
*var
;
2044 bfd_vma high_pc
= 0;
2046 abbrev_number
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
2047 info_ptr
+= bytes_read
;
2049 if (! abbrev_number
)
2055 abbrev
= lookup_abbrev (abbrev_number
,unit
->abbrevs
);
2058 (*_bfd_error_handler
)
2059 (_("Dwarf Error: Could not find abbrev number %u."),
2061 bfd_set_error (bfd_error_bad_value
);
2066 if (abbrev
->tag
== DW_TAG_subprogram
2067 || abbrev
->tag
== DW_TAG_entry_point
2068 || abbrev
->tag
== DW_TAG_inlined_subroutine
)
2070 bfd_size_type amt
= sizeof (struct funcinfo
);
2071 func
= (struct funcinfo
*) bfd_zalloc (abfd
, amt
);
2074 func
->tag
= abbrev
->tag
;
2075 func
->prev_func
= unit
->function_table
;
2076 unit
->function_table
= func
;
2077 BFD_ASSERT (!unit
->cached
);
2079 if (func
->tag
== DW_TAG_inlined_subroutine
)
2080 for (i
= nesting_level
- 1; i
>= 1; i
--)
2081 if (nested_funcs
[i
])
2083 func
->caller_func
= nested_funcs
[i
];
2086 nested_funcs
[nesting_level
] = func
;
2091 if (abbrev
->tag
== DW_TAG_variable
)
2093 bfd_size_type amt
= sizeof (struct varinfo
);
2094 var
= (struct varinfo
*) bfd_zalloc (abfd
, amt
);
2097 var
->tag
= abbrev
->tag
;
2099 var
->prev_var
= unit
->variable_table
;
2100 unit
->variable_table
= var
;
2101 BFD_ASSERT (!unit
->cached
);
2104 /* No inline function in scope at this nesting level. */
2105 nested_funcs
[nesting_level
] = 0;
2108 for (i
= 0; i
< abbrev
->num_attrs
; ++i
)
2110 info_ptr
= read_attribute (&attr
, &abbrev
->attrs
[i
], unit
, info_ptr
);
2111 if (info_ptr
== NULL
)
2118 case DW_AT_call_file
:
2119 func
->caller_file
= concat_filename (unit
->line_table
,
2123 case DW_AT_call_line
:
2124 func
->caller_line
= attr
.u
.val
;
2127 case DW_AT_abstract_origin
:
2128 func
->name
= find_abstract_instance_name (unit
, &attr
);
2132 /* Prefer DW_AT_MIPS_linkage_name or DW_AT_linkage_name
2134 if (func
->name
== NULL
)
2135 func
->name
= attr
.u
.str
;
2138 case DW_AT_linkage_name
:
2139 case DW_AT_MIPS_linkage_name
:
2140 func
->name
= attr
.u
.str
;
2144 low_pc
= attr
.u
.val
;
2148 high_pc
= attr
.u
.val
;
2152 if (!read_rangelist (unit
, &func
->arange
, attr
.u
.val
))
2156 case DW_AT_decl_file
:
2157 func
->file
= concat_filename (unit
->line_table
,
2161 case DW_AT_decl_line
:
2162 func
->line
= attr
.u
.val
;
2174 var
->name
= attr
.u
.str
;
2177 case DW_AT_decl_file
:
2178 var
->file
= concat_filename (unit
->line_table
,
2182 case DW_AT_decl_line
:
2183 var
->line
= attr
.u
.val
;
2186 case DW_AT_external
:
2187 if (attr
.u
.val
!= 0)
2191 case DW_AT_location
:
2195 case DW_FORM_block1
:
2196 case DW_FORM_block2
:
2197 case DW_FORM_block4
:
2198 case DW_FORM_exprloc
:
2199 if (*attr
.u
.blk
->data
== DW_OP_addr
)
2203 /* Verify that DW_OP_addr is the only opcode in the
2204 location, in which case the block size will be 1
2205 plus the address size. */
2206 /* ??? For TLS variables, gcc can emit
2207 DW_OP_addr <addr> DW_OP_GNU_push_tls_address
2208 which we don't handle here yet. */
2209 if (attr
.u
.blk
->size
== unit
->addr_size
+ 1U)
2210 var
->addr
= bfd_get (unit
->addr_size
* 8,
2212 attr
.u
.blk
->data
+ 1);
2227 if (func
&& high_pc
!= 0)
2229 if (!arange_add (unit
->abfd
, &func
->arange
, low_pc
, high_pc
))
2233 if (abbrev
->has_children
)
2237 if (nesting_level
>= nested_funcs_size
)
2239 struct funcinfo
**tmp
;
2241 nested_funcs_size
*= 2;
2242 tmp
= (struct funcinfo
**)
2243 bfd_realloc (nested_funcs
,
2244 (nested_funcs_size
* sizeof (struct funcinfo
*)));
2249 nested_funcs
[nesting_level
] = 0;
2253 free (nested_funcs
);
2257 free (nested_funcs
);
2261 /* Parse a DWARF2 compilation unit starting at INFO_PTR. This
2262 includes the compilation unit header that proceeds the DIE's, but
2263 does not include the length field that precedes each compilation
2264 unit header. END_PTR points one past the end of this comp unit.
2265 OFFSET_SIZE is the size of DWARF2 offsets (either 4 or 8 bytes).
2267 This routine does not read the whole compilation unit; only enough
2268 to get to the line number information for the compilation unit. */
2270 static struct comp_unit
*
2271 parse_comp_unit (struct dwarf2_debug
*stash
,
2272 bfd_vma unit_length
,
2273 bfd_byte
*info_ptr_unit
,
2274 unsigned int offset_size
)
2276 struct comp_unit
* unit
;
2277 unsigned int version
;
2278 bfd_uint64_t abbrev_offset
= 0;
2279 unsigned int addr_size
;
2280 struct abbrev_info
** abbrevs
;
2281 unsigned int abbrev_number
, bytes_read
, i
;
2282 struct abbrev_info
*abbrev
;
2283 struct attribute attr
;
2284 bfd_byte
*info_ptr
= stash
->info_ptr
;
2285 bfd_byte
*end_ptr
= info_ptr
+ unit_length
;
2288 bfd_vma high_pc
= 0;
2289 bfd
*abfd
= stash
->bfd_ptr
;
2291 version
= read_2_bytes (abfd
, info_ptr
);
2293 BFD_ASSERT (offset_size
== 4 || offset_size
== 8);
2294 if (offset_size
== 4)
2295 abbrev_offset
= read_4_bytes (abfd
, info_ptr
);
2297 abbrev_offset
= read_8_bytes (abfd
, info_ptr
);
2298 info_ptr
+= offset_size
;
2299 addr_size
= read_1_byte (abfd
, info_ptr
);
2302 if (version
!= 2 && version
!= 3 && version
!= 4)
2304 (*_bfd_error_handler
) (_("Dwarf Error: found dwarf version '%u', this reader only handles version 2, 3 and 4 information."), version
);
2305 bfd_set_error (bfd_error_bad_value
);
2309 if (addr_size
> sizeof (bfd_vma
))
2311 (*_bfd_error_handler
) (_("Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'."),
2313 (unsigned int) sizeof (bfd_vma
));
2314 bfd_set_error (bfd_error_bad_value
);
2318 if (addr_size
!= 2 && addr_size
!= 4 && addr_size
!= 8)
2320 (*_bfd_error_handler
) ("Dwarf Error: found address size '%u', this reader can only handle address sizes '2', '4' and '8'.", addr_size
);
2321 bfd_set_error (bfd_error_bad_value
);
2325 /* Read the abbrevs for this compilation unit into a table. */
2326 abbrevs
= read_abbrevs (abfd
, abbrev_offset
, stash
);
2330 abbrev_number
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
2331 info_ptr
+= bytes_read
;
2332 if (! abbrev_number
)
2334 (*_bfd_error_handler
) (_("Dwarf Error: Bad abbrev number: %u."),
2336 bfd_set_error (bfd_error_bad_value
);
2340 abbrev
= lookup_abbrev (abbrev_number
, abbrevs
);
2343 (*_bfd_error_handler
) (_("Dwarf Error: Could not find abbrev number %u."),
2345 bfd_set_error (bfd_error_bad_value
);
2349 amt
= sizeof (struct comp_unit
);
2350 unit
= (struct comp_unit
*) bfd_zalloc (abfd
, amt
);
2354 unit
->version
= version
;
2355 unit
->addr_size
= addr_size
;
2356 unit
->offset_size
= offset_size
;
2357 unit
->abbrevs
= abbrevs
;
2358 unit
->end_ptr
= end_ptr
;
2359 unit
->stash
= stash
;
2360 unit
->info_ptr_unit
= info_ptr_unit
;
2361 unit
->sec_info_ptr
= stash
->sec_info_ptr
;
2363 for (i
= 0; i
< abbrev
->num_attrs
; ++i
)
2365 info_ptr
= read_attribute (&attr
, &abbrev
->attrs
[i
], unit
, info_ptr
);
2366 if (info_ptr
== NULL
)
2369 /* Store the data if it is of an attribute we want to keep in a
2370 partial symbol table. */
2373 case DW_AT_stmt_list
:
2375 unit
->line_offset
= attr
.u
.val
;
2379 unit
->name
= attr
.u
.str
;
2383 low_pc
= attr
.u
.val
;
2384 /* If the compilation unit DIE has a DW_AT_low_pc attribute,
2385 this is the base address to use when reading location
2386 lists or range lists. */
2387 unit
->base_address
= low_pc
;
2391 high_pc
= attr
.u
.val
;
2395 if (!read_rangelist (unit
, &unit
->arange
, attr
.u
.val
))
2399 case DW_AT_comp_dir
:
2401 char *comp_dir
= attr
.u
.str
;
2404 /* Irix 6.2 native cc prepends <machine>.: to the compilation
2405 directory, get rid of it. */
2406 char *cp
= strchr (comp_dir
, ':');
2408 if (cp
&& cp
!= comp_dir
&& cp
[-1] == '.' && cp
[1] == '/')
2411 unit
->comp_dir
= comp_dir
;
2421 if (!arange_add (unit
->abfd
, &unit
->arange
, low_pc
, high_pc
))
2425 unit
->first_child_die_ptr
= info_ptr
;
2429 /* Return TRUE if UNIT may contain the address given by ADDR. When
2430 there are functions written entirely with inline asm statements, the
2431 range info in the compilation unit header may not be correct. We
2432 need to consult the line info table to see if a compilation unit
2433 really contains the given address. */
2436 comp_unit_contains_address (struct comp_unit
*unit
, bfd_vma addr
)
2438 struct arange
*arange
;
2443 arange
= &unit
->arange
;
2446 if (addr
>= arange
->low
&& addr
< arange
->high
)
2448 arange
= arange
->next
;
2455 /* If UNIT contains ADDR, set the output parameters to the values for
2456 the line containing ADDR. The output parameters, FILENAME_PTR,
2457 FUNCTIONNAME_PTR, and LINENUMBER_PTR, are pointers to the objects
2460 Return TRUE if UNIT contains ADDR, and no errors were encountered;
2464 comp_unit_find_nearest_line (struct comp_unit
*unit
,
2466 const char **filename_ptr
,
2467 const char **functionname_ptr
,
2468 unsigned int *linenumber_ptr
,
2469 struct dwarf2_debug
*stash
)
2473 struct funcinfo
*function
;
2478 if (! unit
->line_table
)
2480 if (! unit
->stmtlist
)
2486 unit
->line_table
= decode_line_info (unit
, stash
);
2488 if (! unit
->line_table
)
2494 if (unit
->first_child_die_ptr
< unit
->end_ptr
2495 && ! scan_unit_for_symbols (unit
))
2503 func_p
= lookup_address_in_function_table (unit
, addr
,
2504 &function
, functionname_ptr
);
2505 if (func_p
&& (function
->tag
== DW_TAG_inlined_subroutine
))
2506 stash
->inliner_chain
= function
;
2507 line_p
= lookup_address_in_line_info_table (unit
->line_table
, addr
,
2510 return line_p
|| func_p
;
2513 /* Check to see if line info is already decoded in a comp_unit.
2514 If not, decode it. Returns TRUE if no errors were encountered;
2518 comp_unit_maybe_decode_line_info (struct comp_unit
*unit
,
2519 struct dwarf2_debug
*stash
)
2524 if (! unit
->line_table
)
2526 if (! unit
->stmtlist
)
2532 unit
->line_table
= decode_line_info (unit
, stash
);
2534 if (! unit
->line_table
)
2540 if (unit
->first_child_die_ptr
< unit
->end_ptr
2541 && ! scan_unit_for_symbols (unit
))
2551 /* If UNIT contains SYM at ADDR, set the output parameters to the
2552 values for the line containing SYM. The output parameters,
2553 FILENAME_PTR, and LINENUMBER_PTR, are pointers to the objects to be
2556 Return TRUE if UNIT contains SYM, and no errors were encountered;
2560 comp_unit_find_line (struct comp_unit
*unit
,
2563 const char **filename_ptr
,
2564 unsigned int *linenumber_ptr
,
2565 struct dwarf2_debug
*stash
)
2567 if (!comp_unit_maybe_decode_line_info (unit
, stash
))
2570 if (sym
->flags
& BSF_FUNCTION
)
2571 return lookup_symbol_in_function_table (unit
, sym
, addr
,
2575 return lookup_symbol_in_variable_table (unit
, sym
, addr
,
2580 static struct funcinfo
*
2581 reverse_funcinfo_list (struct funcinfo
*head
)
2583 struct funcinfo
*rhead
;
2584 struct funcinfo
*temp
;
2586 for (rhead
= NULL
; head
; head
= temp
)
2588 temp
= head
->prev_func
;
2589 head
->prev_func
= rhead
;
2595 static struct varinfo
*
2596 reverse_varinfo_list (struct varinfo
*head
)
2598 struct varinfo
*rhead
;
2599 struct varinfo
*temp
;
2601 for (rhead
= NULL
; head
; head
= temp
)
2603 temp
= head
->prev_var
;
2604 head
->prev_var
= rhead
;
2610 /* Extract all interesting funcinfos and varinfos of a compilation
2611 unit into hash tables for faster lookup. Returns TRUE if no
2612 errors were enountered; FALSE otherwise. */
2615 comp_unit_hash_info (struct dwarf2_debug
*stash
,
2616 struct comp_unit
*unit
,
2617 struct info_hash_table
*funcinfo_hash_table
,
2618 struct info_hash_table
*varinfo_hash_table
)
2620 struct funcinfo
* each_func
;
2621 struct varinfo
* each_var
;
2622 bfd_boolean okay
= TRUE
;
2624 BFD_ASSERT (stash
->info_hash_status
!= STASH_INFO_HASH_DISABLED
);
2626 if (!comp_unit_maybe_decode_line_info (unit
, stash
))
2629 BFD_ASSERT (!unit
->cached
);
2631 /* To preserve the original search order, we went to visit the function
2632 infos in the reversed order of the list. However, making the list
2633 bi-directional use quite a bit of extra memory. So we reverse
2634 the list first, traverse the list in the now reversed order and
2635 finally reverse the list again to get back the original order. */
2636 unit
->function_table
= reverse_funcinfo_list (unit
->function_table
);
2637 for (each_func
= unit
->function_table
;
2639 each_func
= each_func
->prev_func
)
2641 /* Skip nameless functions. */
2642 if (each_func
->name
)
2643 /* There is no need to copy name string into hash table as
2644 name string is either in the dwarf string buffer or
2645 info in the stash. */
2646 okay
= insert_info_hash_table (funcinfo_hash_table
, each_func
->name
,
2647 (void*) each_func
, FALSE
);
2649 unit
->function_table
= reverse_funcinfo_list (unit
->function_table
);
2653 /* We do the same for variable infos. */
2654 unit
->variable_table
= reverse_varinfo_list (unit
->variable_table
);
2655 for (each_var
= unit
->variable_table
;
2657 each_var
= each_var
->prev_var
)
2659 /* Skip stack vars and vars with no files or names. */
2660 if (each_var
->stack
== 0
2661 && each_var
->file
!= NULL
2662 && each_var
->name
!= NULL
)
2663 /* There is no need to copy name string into hash table as
2664 name string is either in the dwarf string buffer or
2665 info in the stash. */
2666 okay
= insert_info_hash_table (varinfo_hash_table
, each_var
->name
,
2667 (void*) each_var
, FALSE
);
2670 unit
->variable_table
= reverse_varinfo_list (unit
->variable_table
);
2671 unit
->cached
= TRUE
;
2675 /* Locate a section in a BFD containing debugging info. The search starts
2676 from the section after AFTER_SEC, or from the first section in the BFD if
2677 AFTER_SEC is NULL. The search works by examining the names of the
2678 sections. There are two permissiable names. The first is .debug_info.
2679 This is the standard DWARF2 name. The second is a prefix .gnu.linkonce.wi.
2680 This is a variation on the .debug_info section which has a checksum
2681 describing the contents appended onto the name. This allows the linker to
2682 identify and discard duplicate debugging sections for different
2683 compilation units. */
2684 #define DWARF2_DEBUG_INFO ".debug_info"
2685 #define DWARF2_COMPRESSED_DEBUG_INFO ".zdebug_info"
2686 #define GNU_LINKONCE_INFO ".gnu.linkonce.wi."
2689 find_debug_info (bfd
*abfd
, asection
*after_sec
)
2693 msec
= after_sec
!= NULL
? after_sec
->next
: abfd
->sections
;
2697 if (strcmp (msec
->name
, DWARF2_DEBUG_INFO
) == 0)
2700 if (strcmp (msec
->name
, DWARF2_COMPRESSED_DEBUG_INFO
) == 0)
2703 if (CONST_STRNEQ (msec
->name
, GNU_LINKONCE_INFO
))
2712 /* Unset vmas for adjusted sections in STASH. */
2715 unset_sections (struct dwarf2_debug
*stash
)
2718 struct adjusted_section
*p
;
2720 i
= stash
->adjusted_section_count
;
2721 p
= stash
->adjusted_sections
;
2722 for (; i
> 0; i
--, p
++)
2723 p
->section
->vma
= 0;
2726 /* Set unique VMAs for loadable and DWARF sections in ABFD and save
2727 VMAs in STASH for unset_sections. */
2730 place_sections (bfd
*abfd
, struct dwarf2_debug
*stash
)
2732 struct adjusted_section
*p
;
2735 if (stash
->adjusted_section_count
!= 0)
2737 i
= stash
->adjusted_section_count
;
2738 p
= stash
->adjusted_sections
;
2739 for (; i
> 0; i
--, p
++)
2740 p
->section
->vma
= p
->adj_vma
;
2745 bfd_vma last_vma
= 0, last_dwarf
= 0;
2749 for (sect
= abfd
->sections
; sect
!= NULL
; sect
= sect
->next
)
2757 /* We need to adjust the VMAs of any .debug_info sections.
2758 Skip compressed ones, since no relocations could target
2759 them - they should not appear in object files anyway. */
2760 if (strcmp (sect
->name
, DWARF2_DEBUG_INFO
) == 0)
2762 else if (CONST_STRNEQ (sect
->name
, GNU_LINKONCE_INFO
))
2767 if (!is_debug_info
&& (sect
->flags
& SEC_LOAD
) == 0)
2770 sz
= sect
->rawsize
? sect
->rawsize
: sect
->size
;
2777 amt
= i
* sizeof (struct adjusted_section
);
2778 p
= (struct adjusted_section
*) bfd_zalloc (abfd
, amt
);
2782 stash
->adjusted_sections
= p
;
2783 stash
->adjusted_section_count
= i
;
2785 for (sect
= abfd
->sections
; sect
!= NULL
; sect
= sect
->next
)
2793 /* We need to adjust the VMAs of any .debug_info sections.
2794 Skip compressed ones, since no relocations could target
2795 them - they should not appear in object files anyway. */
2796 if (strcmp (sect
->name
, DWARF2_DEBUG_INFO
) == 0)
2798 else if (CONST_STRNEQ (sect
->name
, GNU_LINKONCE_INFO
))
2803 if (!is_debug_info
&& (sect
->flags
& SEC_LOAD
) == 0)
2806 sz
= sect
->rawsize
? sect
->rawsize
: sect
->size
;
2813 BFD_ASSERT (sect
->alignment_power
== 0);
2814 sect
->vma
= last_dwarf
;
2817 else if (last_vma
!= 0)
2819 /* Align the new address to the current section
2821 last_vma
= ((last_vma
2822 + ~((bfd_vma
) -1 << sect
->alignment_power
))
2823 & ((bfd_vma
) -1 << sect
->alignment_power
));
2824 sect
->vma
= last_vma
;
2825 last_vma
+= sect
->vma
+ sz
;
2828 last_vma
+= sect
->vma
+ sz
;
2830 p
->adj_vma
= sect
->vma
;
2839 /* Look up a funcinfo by name using the given info hash table. If found,
2840 also update the locations pointed to by filename_ptr and linenumber_ptr.
2842 This function returns TRUE if a funcinfo that matches the given symbol
2843 and address is found with any error; otherwise it returns FALSE. */
2846 info_hash_lookup_funcinfo (struct info_hash_table
*hash_table
,
2849 const char **filename_ptr
,
2850 unsigned int *linenumber_ptr
)
2852 struct funcinfo
* each_func
;
2853 struct funcinfo
* best_fit
= NULL
;
2854 struct info_list_node
*node
;
2855 struct arange
*arange
;
2856 const char *name
= bfd_asymbol_name (sym
);
2857 asection
*sec
= bfd_get_section (sym
);
2859 for (node
= lookup_info_hash_table (hash_table
, name
);
2863 each_func
= (struct funcinfo
*) node
->info
;
2864 for (arange
= &each_func
->arange
;
2866 arange
= arange
->next
)
2868 if ((!each_func
->sec
|| each_func
->sec
== sec
)
2869 && addr
>= arange
->low
2870 && addr
< arange
->high
2872 || ((arange
->high
- arange
->low
)
2873 < (best_fit
->arange
.high
- best_fit
->arange
.low
))))
2874 best_fit
= each_func
;
2880 best_fit
->sec
= sec
;
2881 *filename_ptr
= best_fit
->file
;
2882 *linenumber_ptr
= best_fit
->line
;
2889 /* Look up a varinfo by name using the given info hash table. If found,
2890 also update the locations pointed to by filename_ptr and linenumber_ptr.
2892 This function returns TRUE if a varinfo that matches the given symbol
2893 and address is found with any error; otherwise it returns FALSE. */
2896 info_hash_lookup_varinfo (struct info_hash_table
*hash_table
,
2899 const char **filename_ptr
,
2900 unsigned int *linenumber_ptr
)
2902 const char *name
= bfd_asymbol_name (sym
);
2903 asection
*sec
= bfd_get_section (sym
);
2904 struct varinfo
* each
;
2905 struct info_list_node
*node
;
2907 for (node
= lookup_info_hash_table (hash_table
, name
);
2911 each
= (struct varinfo
*) node
->info
;
2912 if (each
->addr
== addr
2913 && (!each
->sec
|| each
->sec
== sec
))
2916 *filename_ptr
= each
->file
;
2917 *linenumber_ptr
= each
->line
;
2925 /* Update the funcinfo and varinfo info hash tables if they are
2926 not up to date. Returns TRUE if there is no error; otherwise
2927 returns FALSE and disable the info hash tables. */
2930 stash_maybe_update_info_hash_tables (struct dwarf2_debug
*stash
)
2932 struct comp_unit
*each
;
2934 /* Exit if hash tables are up-to-date. */
2935 if (stash
->all_comp_units
== stash
->hash_units_head
)
2938 if (stash
->hash_units_head
)
2939 each
= stash
->hash_units_head
->prev_unit
;
2941 each
= stash
->last_comp_unit
;
2945 if (!comp_unit_hash_info (stash
, each
, stash
->funcinfo_hash_table
,
2946 stash
->varinfo_hash_table
))
2948 stash
->info_hash_status
= STASH_INFO_HASH_DISABLED
;
2951 each
= each
->prev_unit
;
2954 stash
->hash_units_head
= stash
->all_comp_units
;
2958 /* Check consistency of info hash tables. This is for debugging only. */
2960 static void ATTRIBUTE_UNUSED
2961 stash_verify_info_hash_table (struct dwarf2_debug
*stash
)
2963 struct comp_unit
*each_unit
;
2964 struct funcinfo
*each_func
;
2965 struct varinfo
*each_var
;
2966 struct info_list_node
*node
;
2969 for (each_unit
= stash
->all_comp_units
;
2971 each_unit
= each_unit
->next_unit
)
2973 for (each_func
= each_unit
->function_table
;
2975 each_func
= each_func
->prev_func
)
2977 if (!each_func
->name
)
2979 node
= lookup_info_hash_table (stash
->funcinfo_hash_table
,
2983 while (node
&& !found
)
2985 found
= node
->info
== each_func
;
2991 for (each_var
= each_unit
->variable_table
;
2993 each_var
= each_var
->prev_var
)
2995 if (!each_var
->name
|| !each_var
->file
|| each_var
->stack
)
2997 node
= lookup_info_hash_table (stash
->varinfo_hash_table
,
3001 while (node
&& !found
)
3003 found
= node
->info
== each_var
;
3011 /* Check to see if we want to enable the info hash tables, which consume
3012 quite a bit of memory. Currently we only check the number times
3013 bfd_dwarf2_find_line is called. In the future, we may also want to
3014 take the number of symbols into account. */
3017 stash_maybe_enable_info_hash_tables (bfd
*abfd
, struct dwarf2_debug
*stash
)
3019 BFD_ASSERT (stash
->info_hash_status
== STASH_INFO_HASH_OFF
);
3021 if (stash
->info_hash_count
++ < STASH_INFO_HASH_TRIGGER
)
3024 /* FIXME: Maybe we should check the reduce_memory_overheads
3025 and optimize fields in the bfd_link_info structure ? */
3027 /* Create hash tables. */
3028 stash
->funcinfo_hash_table
= create_info_hash_table (abfd
);
3029 stash
->varinfo_hash_table
= create_info_hash_table (abfd
);
3030 if (!stash
->funcinfo_hash_table
|| !stash
->varinfo_hash_table
)
3032 /* Turn off info hashes if any allocation above fails. */
3033 stash
->info_hash_status
= STASH_INFO_HASH_DISABLED
;
3036 /* We need a forced update so that the info hash tables will
3037 be created even though there is no compilation unit. That
3038 happens if STASH_INFO_HASH_TRIGGER is 0. */
3039 stash_maybe_update_info_hash_tables (stash
);
3040 stash
->info_hash_status
= STASH_INFO_HASH_ON
;
3043 /* Find the file and line associated with a symbol and address using the
3044 info hash tables of a stash. If there is a match, the function returns
3045 TRUE and update the locations pointed to by filename_ptr and linenumber_ptr;
3046 otherwise it returns FALSE. */
3049 stash_find_line_fast (struct dwarf2_debug
*stash
,
3052 const char **filename_ptr
,
3053 unsigned int *linenumber_ptr
)
3055 BFD_ASSERT (stash
->info_hash_status
== STASH_INFO_HASH_ON
);
3057 if (sym
->flags
& BSF_FUNCTION
)
3058 return info_hash_lookup_funcinfo (stash
->funcinfo_hash_table
, sym
, addr
,
3059 filename_ptr
, linenumber_ptr
);
3060 return info_hash_lookup_varinfo (stash
->varinfo_hash_table
, sym
, addr
,
3061 filename_ptr
, linenumber_ptr
);
3064 /* Find the source code location of SYMBOL. If SYMBOL is NULL
3065 then find the nearest source code location corresponding to
3066 the address SECTION + OFFSET.
3067 Returns TRUE if the line is found without error and fills in
3068 FILENAME_PTR and LINENUMBER_PTR. In the case where SYMBOL was
3069 NULL the FUNCTIONNAME_PTR is also filled in.
3070 SYMBOLS contains the symbol table for ABFD.
3071 ADDR_SIZE is the number of bytes in the initial .debug_info length
3072 field and in the abbreviation offset, or zero to indicate that the
3073 default value should be used. */
3076 find_line (bfd
*abfd
,
3081 const char **filename_ptr
,
3082 const char **functionname_ptr
,
3083 unsigned int *linenumber_ptr
,
3084 unsigned int addr_size
,
3087 /* Read each compilation unit from the section .debug_info, and check
3088 to see if it contains the address we are searching for. If yes,
3089 lookup the address, and return the line number info. If no, go
3090 on to the next compilation unit.
3092 We keep a list of all the previously read compilation units, and
3093 a pointer to the next un-read compilation unit. Check the
3094 previously read units before reading more. */
3095 struct dwarf2_debug
*stash
;
3096 /* What address are we looking for? */
3098 struct comp_unit
* each
;
3099 bfd_vma found
= FALSE
;
3100 bfd_boolean do_line
;
3102 stash
= (struct dwarf2_debug
*) *pinfo
;
3106 bfd_size_type amt
= sizeof (struct dwarf2_debug
);
3108 stash
= (struct dwarf2_debug
*) bfd_zalloc (abfd
, amt
);
3113 /* In a relocatable file, 2 functions may have the same address.
3114 We change the section vma so that they won't overlap. */
3115 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0)
3117 if (! place_sections (abfd
, stash
))
3121 do_line
= (section
== NULL
3123 && functionname_ptr
== NULL
3127 addr
= symbol
->value
;
3128 section
= bfd_get_section (symbol
);
3130 else if (section
!= NULL
3131 && functionname_ptr
!= NULL
3137 if (section
->output_section
)
3138 addr
+= section
->output_section
->vma
+ section
->output_offset
;
3140 addr
+= section
->vma
;
3141 *filename_ptr
= NULL
;
3143 *functionname_ptr
= NULL
;
3144 *linenumber_ptr
= 0;
3149 bfd_size_type total_size
;
3154 msec
= find_debug_info (abfd
, NULL
);
3157 char * debug_filename
= bfd_follow_gnu_debuglink (abfd
, DEBUGDIR
);
3159 if (debug_filename
== NULL
)
3160 /* No dwarf2 info, and no gnu_debuglink to follow.
3161 Note that at this point the stash has been allocated, but
3162 contains zeros. This lets future calls to this function
3163 fail more quickly. */
3166 if ((debug_bfd
= bfd_openr (debug_filename
, NULL
)) == NULL
3167 || ! bfd_check_format (debug_bfd
, bfd_object
)
3168 || (msec
= find_debug_info (debug_bfd
, NULL
)) == NULL
)
3171 bfd_close (debug_bfd
);
3172 /* FIXME: Should we report our failure to follow the debuglink ? */
3173 free (debug_filename
);
3180 /* There can be more than one DWARF2 info section in a BFD these
3181 days. First handle the easy case when there's only one. If
3182 there's more than one, try case two: none of the sections is
3183 compressed. In that case, read them all in and produce one
3184 large stash. We do this in two passes - in the first pass we
3185 just accumulate the section sizes, and in the second pass we
3186 read in the section's contents. (The allows us to avoid
3187 reallocing the data as we add sections to the stash.) If
3188 some or all sections are compressed, then do things the slow
3189 way, with a bunch of reallocs. */
3191 if (! find_debug_info (debug_bfd
, msec
))
3193 /* Case 1: only one info section. */
3194 total_size
= msec
->size
;
3195 if (! read_section (debug_bfd
, ".debug_info", ".zdebug_info",
3197 &stash
->info_ptr_memory
, &total_size
))
3202 int all_uncompressed
= 1;
3203 for (total_size
= 0; msec
; msec
= find_debug_info (debug_bfd
, msec
))
3205 total_size
+= msec
->size
;
3206 if (strcmp (msec
->name
, DWARF2_COMPRESSED_DEBUG_INFO
) == 0)
3207 all_uncompressed
= 0;
3209 if (all_uncompressed
)
3211 /* Case 2: multiple sections, but none is compressed. */
3212 stash
->info_ptr_memory
= (bfd_byte
*) bfd_malloc (total_size
);
3213 if (stash
->info_ptr_memory
== NULL
)
3217 for (msec
= find_debug_info (debug_bfd
, NULL
);
3219 msec
= find_debug_info (debug_bfd
, msec
))
3227 if (!(bfd_simple_get_relocated_section_contents
3228 (debug_bfd
, msec
, stash
->info_ptr_memory
+ total_size
,
3237 /* Case 3: multiple sections, some or all compressed. */
3238 stash
->info_ptr_memory
= NULL
;
3240 for (msec
= find_debug_info (debug_bfd
, NULL
);
3242 msec
= find_debug_info (debug_bfd
, msec
))
3244 bfd_size_type size
= msec
->size
;
3245 bfd_byte
*buffer
, *tmp
;
3250 buffer
= (bfd_simple_get_relocated_section_contents
3251 (debug_bfd
, msec
, NULL
, symbols
));
3255 if (strcmp (msec
->name
, DWARF2_COMPRESSED_DEBUG_INFO
) == 0)
3257 if (! bfd_uncompress_section_contents (&buffer
, &size
))
3263 tmp
= (bfd_byte
*) bfd_realloc (stash
->info_ptr_memory
,
3270 stash
->info_ptr_memory
= tmp
;
3271 memcpy (stash
->info_ptr_memory
+ total_size
, buffer
, size
);
3278 stash
->info_ptr
= stash
->info_ptr_memory
;
3279 stash
->info_ptr_end
= stash
->info_ptr
+ total_size
;
3280 stash
->sec
= find_debug_info (debug_bfd
, NULL
);
3281 stash
->sec_info_ptr
= stash
->info_ptr
;
3282 stash
->syms
= symbols
;
3283 stash
->bfd_ptr
= debug_bfd
;
3286 /* A null info_ptr indicates that there is no dwarf2 info
3287 (or that an error occured while setting up the stash). */
3288 if (! stash
->info_ptr
)
3291 stash
->inliner_chain
= NULL
;
3293 /* Check the previously read comp. units first. */
3296 /* The info hash tables use quite a bit of memory. We may not want to
3297 always use them. We use some heuristics to decide if and when to
3299 if (stash
->info_hash_status
== STASH_INFO_HASH_OFF
)
3300 stash_maybe_enable_info_hash_tables (abfd
, stash
);
3302 /* Keep info hash table up to date if they are available. Note that we
3303 may disable the hash tables if there is any error duing update. */
3304 if (stash
->info_hash_status
== STASH_INFO_HASH_ON
)
3305 stash_maybe_update_info_hash_tables (stash
);
3307 if (stash
->info_hash_status
== STASH_INFO_HASH_ON
)
3309 found
= stash_find_line_fast (stash
, symbol
, addr
, filename_ptr
,
3316 /* Check the previously read comp. units first. */
3317 for (each
= stash
->all_comp_units
; each
; each
= each
->next_unit
)
3318 if ((symbol
->flags
& BSF_FUNCTION
) == 0
3319 || comp_unit_contains_address (each
, addr
))
3321 found
= comp_unit_find_line (each
, symbol
, addr
, filename_ptr
,
3322 linenumber_ptr
, stash
);
3330 for (each
= stash
->all_comp_units
; each
; each
= each
->next_unit
)
3332 found
= (comp_unit_contains_address (each
, addr
)
3333 && comp_unit_find_nearest_line (each
, addr
,
3343 /* The DWARF2 spec says that the initial length field, and the
3344 offset of the abbreviation table, should both be 4-byte values.
3345 However, some compilers do things differently. */
3348 BFD_ASSERT (addr_size
== 4 || addr_size
== 8);
3350 /* Read each remaining comp. units checking each as they are read. */
3351 while (stash
->info_ptr
< stash
->info_ptr_end
)
3354 unsigned int offset_size
= addr_size
;
3355 bfd_byte
*info_ptr_unit
= stash
->info_ptr
;
3357 length
= read_4_bytes (stash
->bfd_ptr
, stash
->info_ptr
);
3358 /* A 0xffffff length is the DWARF3 way of indicating
3359 we use 64-bit offsets, instead of 32-bit offsets. */
3360 if (length
== 0xffffffff)
3363 length
= read_8_bytes (stash
->bfd_ptr
, stash
->info_ptr
+ 4);
3364 stash
->info_ptr
+= 12;
3366 /* A zero length is the IRIX way of indicating 64-bit offsets,
3367 mostly because the 64-bit length will generally fit in 32
3368 bits, and the endianness helps. */
3369 else if (length
== 0)
3372 length
= read_4_bytes (stash
->bfd_ptr
, stash
->info_ptr
+ 4);
3373 stash
->info_ptr
+= 8;
3375 /* In the absence of the hints above, we assume 32-bit DWARF2
3376 offsets even for targets with 64-bit addresses, because:
3377 a) most of the time these targets will not have generated
3378 more than 2Gb of debug info and so will not need 64-bit
3381 b) if they do use 64-bit offsets but they are not using
3382 the size hints that are tested for above then they are
3383 not conforming to the DWARF3 standard anyway. */
3384 else if (addr_size
== 8)
3387 stash
->info_ptr
+= 4;
3390 stash
->info_ptr
+= 4;
3394 each
= parse_comp_unit (stash
, length
, info_ptr_unit
,
3397 /* The dwarf information is damaged, don't trust it any
3400 stash
->info_ptr
+= length
;
3402 if (stash
->all_comp_units
)
3403 stash
->all_comp_units
->prev_unit
= each
;
3405 stash
->last_comp_unit
= each
;
3407 each
->next_unit
= stash
->all_comp_units
;
3408 stash
->all_comp_units
= each
;
3410 /* DW_AT_low_pc and DW_AT_high_pc are optional for
3411 compilation units. If we don't have them (i.e.,
3412 unit->high == 0), we need to consult the line info table
3413 to see if a compilation unit contains the given
3416 found
= (((symbol
->flags
& BSF_FUNCTION
) == 0
3417 || each
->arange
.high
== 0
3418 || comp_unit_contains_address (each
, addr
))
3419 && comp_unit_find_line (each
, symbol
, addr
,
3424 found
= ((each
->arange
.high
== 0
3425 || comp_unit_contains_address (each
, addr
))
3426 && comp_unit_find_nearest_line (each
, addr
,
3432 if ((bfd_vma
) (stash
->info_ptr
- stash
->sec_info_ptr
)
3433 == stash
->sec
->size
)
3435 stash
->sec
= find_debug_info (stash
->bfd_ptr
, stash
->sec
);
3436 stash
->sec_info_ptr
= stash
->info_ptr
;
3445 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0)
3446 unset_sections (stash
);
3451 /* The DWARF2 version of find_nearest_line.
3452 Return TRUE if the line is found without error. */
3455 _bfd_dwarf2_find_nearest_line (bfd
*abfd
,
3459 const char **filename_ptr
,
3460 const char **functionname_ptr
,
3461 unsigned int *linenumber_ptr
,
3462 unsigned int addr_size
,
3465 return find_line (abfd
, section
, offset
, NULL
, symbols
, filename_ptr
,
3466 functionname_ptr
, linenumber_ptr
, addr_size
,
3470 /* The DWARF2 version of find_line.
3471 Return TRUE if the line is found without error. */
3474 _bfd_dwarf2_find_line (bfd
*abfd
,
3477 const char **filename_ptr
,
3478 unsigned int *linenumber_ptr
,
3479 unsigned int addr_size
,
3482 return find_line (abfd
, NULL
, 0, symbol
, symbols
, filename_ptr
,
3483 NULL
, linenumber_ptr
, addr_size
,
3488 _bfd_dwarf2_find_inliner_info (bfd
*abfd ATTRIBUTE_UNUSED
,
3489 const char **filename_ptr
,
3490 const char **functionname_ptr
,
3491 unsigned int *linenumber_ptr
,
3494 struct dwarf2_debug
*stash
;
3496 stash
= (struct dwarf2_debug
*) *pinfo
;
3499 struct funcinfo
*func
= stash
->inliner_chain
;
3501 if (func
&& func
->caller_func
)
3503 *filename_ptr
= func
->caller_file
;
3504 *functionname_ptr
= func
->caller_func
->name
;
3505 *linenumber_ptr
= func
->caller_line
;
3506 stash
->inliner_chain
= func
->caller_func
;
3515 _bfd_dwarf2_cleanup_debug_info (bfd
*abfd
)
3517 struct comp_unit
*each
;
3518 struct dwarf2_debug
*stash
;
3520 if (abfd
== NULL
|| elf_tdata (abfd
) == NULL
)
3523 stash
= (struct dwarf2_debug
*) elf_tdata (abfd
)->dwarf2_find_line_info
;
3528 for (each
= stash
->all_comp_units
; each
; each
= each
->next_unit
)
3530 struct abbrev_info
**abbrevs
= each
->abbrevs
;
3531 struct funcinfo
*function_table
= each
->function_table
;
3532 struct varinfo
*variable_table
= each
->variable_table
;
3535 for (i
= 0; i
< ABBREV_HASH_SIZE
; i
++)
3537 struct abbrev_info
*abbrev
= abbrevs
[i
];
3541 free (abbrev
->attrs
);
3542 abbrev
= abbrev
->next
;
3546 if (each
->line_table
)
3548 free (each
->line_table
->dirs
);
3549 free (each
->line_table
->files
);
3552 while (function_table
)
3554 if (function_table
->file
)
3556 free (function_table
->file
);
3557 function_table
->file
= NULL
;
3560 if (function_table
->caller_file
)
3562 free (function_table
->caller_file
);
3563 function_table
->caller_file
= NULL
;
3565 function_table
= function_table
->prev_func
;
3568 while (variable_table
)
3570 if (variable_table
->file
)
3572 free (variable_table
->file
);
3573 variable_table
->file
= NULL
;
3576 variable_table
= variable_table
->prev_var
;
3580 if (stash
->dwarf_abbrev_buffer
)
3581 free (stash
->dwarf_abbrev_buffer
);
3582 if (stash
->dwarf_line_buffer
)
3583 free (stash
->dwarf_line_buffer
);
3584 if (stash
->dwarf_str_buffer
)
3585 free (stash
->dwarf_str_buffer
);
3586 if (stash
->dwarf_ranges_buffer
)
3587 free (stash
->dwarf_ranges_buffer
);
3588 if (stash
->info_ptr_memory
)
3589 free (stash
->info_ptr_memory
);