1 // dwarf_reader.h -- parse dwarf2/3 debug information for gold -*- C++ -*-
3 // Copyright 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
23 #ifndef GOLD_DWARF_READER_H
24 #define GOLD_DWARF_READER_H
29 #include <sys/types.h>
32 #include "elfcpp_swap.h"
39 class Dwarf_info_reader
;
40 struct LineStateMachine
;
42 // This class is used to extract the section index and offset of
43 // the target of a relocation for a given offset within the section.
45 class Elf_reloc_mapper
55 // Initialize the relocation tracker for section RELOC_SHNDX.
57 initialize(unsigned int reloc_shndx
, unsigned int reloc_type
)
58 { return this->do_initialize(reloc_shndx
, reloc_type
); }
60 // Return the next reloc_offset.
63 { return this->do_next_offset(); }
65 // Advance to the next relocation past OFFSET.
68 { this->do_advance(offset
); }
70 // Return the section index and offset within the section of the target
71 // of the relocation for RELOC_OFFSET in the referring section.
73 get_reloc_target(off_t reloc_offset
, off_t
* target_offset
)
74 { return this->do_get_reloc_target(reloc_offset
, target_offset
); }
76 // Checkpoint the current position in the reloc section.
79 { return this->do_checkpoint(); }
81 // Reset the current position to the CHECKPOINT.
83 reset(uint64_t checkpoint
)
84 { this->do_reset(checkpoint
); }
88 do_initialize(unsigned int, unsigned int) = 0;
90 // Return the next reloc_offset.
94 // Advance to the next relocation past OFFSET.
96 do_advance(off_t offset
) = 0;
99 do_get_reloc_target(off_t reloc_offset
, off_t
* target_offset
) = 0;
101 // Checkpoint the current position in the reloc section.
103 do_checkpoint() const = 0;
105 // Reset the current position to the CHECKPOINT.
107 do_reset(uint64_t checkpoint
) = 0;
110 template<int size
, bool big_endian
>
111 class Sized_elf_reloc_mapper
: public Elf_reloc_mapper
114 Sized_elf_reloc_mapper(Object
* object
, const unsigned char* symtab
,
116 : object_(object
), symtab_(symtab
), symtab_size_(symtab_size
),
117 reloc_type_(0), track_relocs_()
122 do_initialize(unsigned int reloc_shndx
, unsigned int reloc_type
);
124 // Return the next reloc_offset.
127 { return this->track_relocs_
.next_offset(); }
129 // Advance to the next relocation past OFFSET.
131 do_advance(off_t offset
)
132 { this->track_relocs_
.advance(offset
); }
135 do_get_reloc_target(off_t reloc_offset
, off_t
* target_offset
);
137 // Checkpoint the current position in the reloc section.
139 do_checkpoint() const
140 { return this->track_relocs_
.checkpoint(); }
142 // Reset the current position to the CHECKPOINT.
144 do_reset(uint64_t checkpoint
)
145 { this->track_relocs_
.reset(checkpoint
); }
148 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Address
;
150 // Return the section index of symbol SYMNDX, and copy its value to *VALUE.
151 // Set *IS_ORDINARY true if the section index is an ordinary section index.
153 symbol_section(unsigned int symndx
, Address
* value
, bool* is_ordinary
);
157 // The ELF symbol table.
158 const unsigned char* symtab_
;
159 // The size of the ELF symbol table.
161 // Type of the relocation section (SHT_REL or SHT_RELA).
162 unsigned int reloc_type_
;
163 // Relocations for the referring section.
164 Track_relocs
<size
, big_endian
> track_relocs_
;
167 // This class is used to read the abbreviations table from the
168 // .debug_abbrev section of the object file.
170 class Dwarf_abbrev_table
173 // An attribute list entry.
176 Attribute(unsigned int a
, unsigned int f
)
183 // An abbrev code entry.
186 Abbrev_code(unsigned int t
, bool hc
)
187 : tag(t
), has_children(hc
), has_sibling_attribute(false), attributes()
189 this->attributes
.reserve(10);
193 add_attribute(unsigned int attr
, unsigned int form
)
195 this->attributes
.push_back(Attribute(attr
, form
));
200 // True if the DIE has children.
201 bool has_children
: 1;
202 // True if the DIE has a sibling attribute.
203 bool has_sibling_attribute
: 1;
204 // The list of attributes and forms.
205 std::vector
<Attribute
> attributes
;
209 : abbrev_shndx_(0), abbrev_offset_(0), buffer_(NULL
), buffer_end_(NULL
),
210 owns_buffer_(false), buffer_pos_(NULL
), high_abbrev_codes_()
212 memset(this->low_abbrev_codes_
, 0, sizeof(this->low_abbrev_codes_
));
215 ~Dwarf_abbrev_table()
217 if (this->owns_buffer_
&& this->buffer_
!= NULL
)
218 delete[] this->buffer_
;
219 this->clear_abbrev_codes();
222 // Read the abbrev table from an object file.
224 read_abbrevs(Relobj
* object
,
225 unsigned int abbrev_shndx
,
228 // If we've already read this abbrev table, return immediately.
229 if (this->abbrev_shndx_
> 0
230 && this->abbrev_shndx_
== abbrev_shndx
231 && this->abbrev_offset_
== abbrev_offset
)
233 return this->do_read_abbrevs(object
, abbrev_shndx
, abbrev_offset
);
236 // Return the abbrev code entry for CODE. This is a fast path for
237 // abbrev codes that are in the direct lookup table. If not found
238 // there, we call do_get_abbrev() to do the hard work.
240 get_abbrev(unsigned int code
)
242 if (code
< this->low_abbrev_code_max_
243 && this->low_abbrev_codes_
[code
] != NULL
)
244 return this->low_abbrev_codes_
[code
];
245 return this->do_get_abbrev(code
);
249 // Read the abbrev table from an object file.
251 do_read_abbrevs(Relobj
* object
,
252 unsigned int abbrev_shndx
,
253 off_t abbrev_offset
);
255 // Lookup the abbrev code entry for CODE.
257 do_get_abbrev(unsigned int code
);
259 // Store an abbrev code entry for CODE.
261 store_abbrev(unsigned int code
, const Abbrev_code
* entry
)
263 if (code
< this->low_abbrev_code_max_
)
264 this->low_abbrev_codes_
[code
] = entry
;
266 this->high_abbrev_codes_
[code
] = entry
;
269 // Clear the abbrev code table and release the memory it uses.
271 clear_abbrev_codes();
273 typedef Unordered_map
<unsigned int, const Abbrev_code
*> Abbrev_code_table
;
275 // The section index of the current abbrev table.
276 unsigned int abbrev_shndx_
;
277 // The offset within the section of the current abbrev table.
278 off_t abbrev_offset_
;
279 // The buffer containing the .debug_abbrev section.
280 const unsigned char* buffer_
;
281 const unsigned char* buffer_end_
;
282 // True if this object owns the buffer and needs to delete it.
284 // Pointer to the current position in the buffer.
285 const unsigned char* buffer_pos_
;
286 // The table of abbrev codes.
287 // We use a direct-lookup array for low abbrev codes,
288 // and store the rest in a hash table.
289 static const unsigned int low_abbrev_code_max_
= 256;
290 const Abbrev_code
* low_abbrev_codes_
[low_abbrev_code_max_
];
291 Abbrev_code_table high_abbrev_codes_
;
294 // A DWARF range list. The start and end offsets are relative
295 // to the input section SHNDX. Each range must lie entirely
296 // within a single section.
298 class Dwarf_range_list
303 Range(unsigned int a_shndx
, off_t a_start
, off_t a_end
)
304 : shndx(a_shndx
), start(a_start
), end(a_end
)
317 add(unsigned int shndx
, off_t start
, off_t end
)
318 { this->range_list_
.push_back(Range(shndx
, start
, end
)); }
322 { return this->range_list_
.size(); }
325 operator[](off_t i
) const
326 { return this->range_list_
[i
]; }
329 std::vector
<Range
> range_list_
;
332 // This class is used to read the ranges table from the
333 // .debug_ranges section of the object file.
335 class Dwarf_ranges_table
338 Dwarf_ranges_table(Dwarf_info_reader
* dwinfo
)
339 : dwinfo_(dwinfo
), ranges_shndx_(0), ranges_buffer_(NULL
),
340 ranges_buffer_end_(NULL
), owns_ranges_buffer_(false),
341 ranges_reloc_mapper_(NULL
), reloc_type_(0), output_section_offset_(0)
344 ~Dwarf_ranges_table()
346 if (this->owns_ranges_buffer_
&& this->ranges_buffer_
!= NULL
)
347 delete[] this->ranges_buffer_
;
348 if (this->ranges_reloc_mapper_
!= NULL
)
349 delete this->ranges_reloc_mapper_
;
352 // Read the ranges table from an object file.
354 read_ranges_table(Relobj
* object
,
355 const unsigned char* symtab
,
357 unsigned int ranges_shndx
);
359 // Read the range table from an object file.
361 read_range_list(Relobj
* object
,
362 const unsigned char* symtab
,
364 unsigned int address_size
,
365 unsigned int ranges_shndx
,
366 off_t ranges_offset
);
368 // Look for a relocation at offset OFF in the range table,
369 // and return the section index and offset of the target.
371 lookup_reloc(off_t off
, off_t
* target_off
);
374 // The Dwarf_info_reader, for reading data.
375 Dwarf_info_reader
* dwinfo_
;
376 // The section index of the ranges table.
377 unsigned int ranges_shndx_
;
378 // The buffer containing the .debug_ranges section.
379 const unsigned char* ranges_buffer_
;
380 const unsigned char* ranges_buffer_end_
;
381 // True if this object owns the buffer and needs to delete it.
382 bool owns_ranges_buffer_
;
383 // Relocation mapper for the .debug_ranges section.
384 Elf_reloc_mapper
* ranges_reloc_mapper_
;
385 // Type of the relocation section (SHT_REL or SHT_RELA).
386 unsigned int reloc_type_
;
387 // For incremental update links, this will hold the offset of the
388 // input section within the output section. Offsets read from
389 // relocated data will be relative to the output section, and need
390 // to be corrected before reading data from the input section.
391 uint64_t output_section_offset_
;
394 // This class is used to read the pubnames and pubtypes tables from the
395 // .debug_pubnames and .debug_pubtypes sections of the object file.
397 class Dwarf_pubnames_table
400 Dwarf_pubnames_table(Dwarf_info_reader
* dwinfo
, bool is_pubtypes
)
401 : dwinfo_(dwinfo
), buffer_(NULL
), buffer_end_(NULL
), owns_buffer_(false),
402 offset_size_(0), pinfo_(NULL
), is_pubtypes_(is_pubtypes
),
403 output_section_offset_(0)
406 ~Dwarf_pubnames_table()
408 if (this->owns_buffer_
&& this->buffer_
!= NULL
)
409 delete[] this->buffer_
;
412 // Read the pubnames section SHNDX from the object file.
414 read_section(Relobj
* object
, unsigned int shndx
);
416 // Read the header for the set at OFFSET.
418 read_header(off_t offset
);
420 // Read the next name from the set.
425 // The Dwarf_info_reader, for reading data.
426 Dwarf_info_reader
* dwinfo_
;
427 // The buffer containing the .debug_ranges section.
428 const unsigned char* buffer_
;
429 const unsigned char* buffer_end_
;
430 // True if this object owns the buffer and needs to delete it.
432 // The size of a DWARF offset for the current set.
433 unsigned int offset_size_
;
434 // The current position within the buffer.
435 const unsigned char* pinfo_
;
436 // TRUE if this is a .debug_pubtypes section.
438 // For incremental update links, this will hold the offset of the
439 // input section within the output section. Offsets read from
440 // relocated data will be relative to the output section, and need
441 // to be corrected before reading data from the input section.
442 uint64_t output_section_offset_
;
445 // This class represents a DWARF Debug Info Entry (DIE).
450 // An attribute value.
451 struct Attribute_value
459 const char* stringval
;
460 const unsigned char* blockval
;
465 // Section index for reference forms.
467 // Block length for block forms.
468 unsigned int blocklen
;
469 // Attribute offset for DW_FORM_strp.
470 unsigned int attr_off
;
474 // A list of attribute values.
475 typedef std::vector
<Attribute_value
> Attributes
;
477 Dwarf_die(Dwarf_info_reader
* dwinfo
,
481 // Return the DWARF tag for this DIE.
485 if (this->abbrev_code_
== NULL
)
487 return this->abbrev_code_
->tag
;
490 // Return true if this DIE has children.
494 gold_assert(this->abbrev_code_
!= NULL
);
495 return this->abbrev_code_
->has_children
;
498 // Return true if this DIE has a sibling attribute.
500 has_sibling_attribute() const
502 gold_assert(this->abbrev_code_
!= NULL
);
503 return this->abbrev_code_
->has_sibling_attribute
;
506 // Return the value of attribute ATTR.
507 const Attribute_value
*
508 attribute(unsigned int attr
);
510 // Return the value of the DW_AT_name attribute.
514 if (this->name_
== NULL
)
519 // Return the value of the DW_AT_linkage_name
520 // or DW_AT_MIPS_linkage_name attribute.
524 if (this->linkage_name_
== NULL
)
525 this->set_linkage_name();
526 return this->linkage_name_
;
529 // Return the value of the DW_AT_specification attribute.
533 if (!this->attributes_read_
)
534 this->read_attributes();
535 return this->specification_
;
538 // Return the value of the DW_AT_abstract_origin attribute.
542 if (!this->attributes_read_
)
543 this->read_attributes();
544 return this->abstract_origin_
;
547 // Return the value of attribute ATTR as a string.
549 string_attribute(unsigned int attr
);
551 // Return the value of attribute ATTR as an integer.
553 int_attribute(unsigned int attr
);
555 // Return the value of attribute ATTR as an unsigned integer.
557 uint_attribute(unsigned int attr
);
559 // Return the value of attribute ATTR as a reference.
561 ref_attribute(unsigned int attr
, unsigned int* shndx
);
563 // Return the value of attribute ATTR as a address.
565 address_attribute(unsigned int attr
, unsigned int* shndx
);
567 // Return the value of attribute ATTR as a flag.
569 flag_attribute(unsigned int attr
)
570 { return this->int_attribute(attr
) != 0; }
572 // Return true if this DIE is a declaration.
575 { return this->flag_attribute(elfcpp::DW_AT_declaration
); }
577 // Return the parent of this DIE.
580 { return this->parent_
; }
582 // Return the offset of this DIE.
585 { return this->die_offset_
; }
587 // Return the offset of this DIE's first child.
591 // Set the offset of this DIE's next sibling.
593 set_sibling_offset(off_t sibling_offset
)
594 { this->sibling_offset_
= sibling_offset
; }
596 // Return the offset of this DIE's next sibling.
601 typedef Dwarf_abbrev_table::Abbrev_code Abbrev_code
;
603 // Read all the attributes of the DIE.
607 // Set the name of the DIE if present.
611 // Set the linkage name if present.
615 // Skip all the attributes of the DIE and return the offset
620 // The Dwarf_info_reader, for reading attributes.
621 Dwarf_info_reader
* dwinfo_
;
622 // The parent of this DIE.
624 // Offset of this DIE within its compilation unit.
626 // Offset of the first attribute, relative to the beginning of the DIE.
628 // Offset of the first child, relative to the compilation unit.
630 // Offset of the next sibling, relative to the compilation unit.
631 off_t sibling_offset_
;
632 // The abbreviation table entry.
633 const Abbrev_code
* abbrev_code_
;
634 // The list of attributes.
635 Attributes attributes_
;
636 // True if the attributes have been read.
637 bool attributes_read_
;
638 // The following fields hold common attributes to avoid a linear
639 // search through the attribute list.
640 // The DIE name (DW_AT_name).
642 // Offset of the name in the string table (for DW_FORM_strp).
644 // The linkage name (DW_AT_linkage_name or DW_AT_MIPS_linkage_name).
645 const char* linkage_name_
;
646 // Offset of the linkage name in the string table (for DW_FORM_strp).
647 off_t linkage_name_off_
;
648 // Section index of the string table (for DW_FORM_strp).
649 unsigned int string_shndx_
;
650 // The value of a DW_AT_specification attribute.
651 off_t specification_
;
652 // The value of a DW_AT_abstract_origin attribute.
653 off_t abstract_origin_
;
656 // This class is used to read the debug info from the .debug_info
657 // or .debug_types sections. This is a base class that implements
658 // the generic parsing of the compilation unit header and DIE
659 // structure. The parse() method parses the entire section, and
660 // calls the various visit_xxx() methods for each header. Clients
661 // should derive a new class from this one and implement the
662 // visit_compilation_unit() and visit_type_unit() functions.
664 class Dwarf_info_reader
667 Dwarf_info_reader(bool is_type_unit
,
669 const unsigned char* symtab
,
672 unsigned int reloc_shndx
,
673 unsigned int reloc_type
)
674 : is_type_unit_(is_type_unit
), object_(object
), symtab_(symtab
),
675 symtab_size_(symtab_size
), shndx_(shndx
), reloc_shndx_(reloc_shndx
),
676 reloc_type_(reloc_type
), abbrev_shndx_(0), string_shndx_(0),
677 buffer_(NULL
), buffer_end_(NULL
), cu_offset_(0), cu_length_(0),
678 offset_size_(0), address_size_(0), cu_version_(0), type_signature_(0),
679 type_offset_(0), abbrev_table_(), ranges_table_(this),
680 reloc_mapper_(NULL
), string_buffer_(NULL
), string_buffer_end_(NULL
),
681 owns_string_buffer_(false), string_output_section_offset_(0)
687 if (this->reloc_mapper_
!= NULL
)
688 delete this->reloc_mapper_
;
689 if (this->owns_string_buffer_
&& this->string_buffer_
!= NULL
)
690 delete[] this->string_buffer_
;
693 // Begin parsing the debug info. This calls visit_compilation_unit()
694 // or visit_type_unit() for each compilation or type unit found in the
695 // section, and visit_die() for each top-level DIE.
699 // Return the abbrev code entry for a CODE.
700 const Dwarf_abbrev_table::Abbrev_code
*
701 get_abbrev(unsigned int code
)
702 { return this->abbrev_table_
.get_abbrev(code
); }
704 // Return a pointer to the DWARF info buffer at OFFSET.
706 buffer_at_offset(off_t offset
) const
708 const unsigned char* p
= this->buffer_
+ this->cu_offset_
+ offset
;
709 if (this->check_buffer(p
+ 1))
714 // Read a possibly unaligned integer of SIZE.
715 template <int valsize
>
716 inline typename
elfcpp::Valtype_base
<valsize
>::Valtype
717 read_from_pointer(const unsigned char* source
);
719 // Read a possibly unaligned integer of SIZE. Update SOURCE after read.
720 template <int valsize
>
721 inline typename
elfcpp::Valtype_base
<valsize
>::Valtype
722 read_from_pointer(const unsigned char** source
);
724 // Look for a relocation at offset ATTR_OFF in the dwarf info,
725 // and return the section index and offset of the target.
727 lookup_reloc(off_t attr_off
, off_t
* target_off
);
729 // Return a string from the DWARF string table.
731 get_string(off_t str_off
, unsigned int string_shndx
);
733 // Return the size of a DWARF offset.
736 { return this->offset_size_
; }
738 // Return the size of an address.
741 { return this->address_size_
; }
743 // Set the section index of the .debug_abbrev section.
744 // We use this if there are no relocations for the .debug_info section.
745 // If not set, the code parse() routine will search for the section by name.
747 set_abbrev_shndx(unsigned int abbrev_shndx
)
748 { this->abbrev_shndx_
= abbrev_shndx
; }
751 // Begin parsing the debug info. This calls visit_compilation_unit()
752 // or visit_type_unit() for each compilation or type unit found in the
753 // section, and visit_die() for each top-level DIE.
754 template<bool big_endian
>
758 // The following methods are hooks that are meant to be implemented
759 // by a derived class. A default, do-nothing, implementation of
760 // each is provided for this base class.
762 // Visit a compilation unit.
764 visit_compilation_unit(off_t cu_offset
, off_t cu_length
, Dwarf_die
* root_die
);
766 // Visit a type unit.
768 visit_type_unit(off_t tu_offset
, off_t tu_length
, off_t type_offset
,
769 uint64_t signature
, Dwarf_die
* root_die
);
771 // Read the range table.
773 read_range_list(unsigned int ranges_shndx
, off_t ranges_offset
)
775 return this->ranges_table_
.read_range_list(this->object_
,
783 // Return the object.
786 { return this->object_
; }
788 // Return a pointer to the object file's ELF symbol table.
791 { return this->symtab_
; }
793 // Return the size of the object file's ELF symbol table.
796 { return this->symtab_size_
; }
798 // Checkpoint the relocation tracker.
800 get_reloc_checkpoint() const
801 { return this->reloc_mapper_
->checkpoint(); }
803 // Reset the relocation tracker to the CHECKPOINT.
805 reset_relocs(uint64_t checkpoint
)
806 { this->reloc_mapper_
->reset(checkpoint
); }
809 // Print a warning about a corrupt debug section.
811 warn_corrupt_debug_section() const;
813 // Check that P is within the bounds of the current section.
815 check_buffer(const unsigned char* p
) const
817 if (p
> this->buffer_
+ this->cu_offset_
+ this->cu_length_
)
819 this->warn_corrupt_debug_section();
825 // Read the DWARF string table.
827 read_string_table(unsigned int string_shndx
)
829 // If we've already read this string table, return immediately.
830 if (this->string_shndx_
> 0 && this->string_shndx_
== string_shndx
)
832 if (string_shndx
== 0 && this->string_shndx_
> 0)
834 return this->do_read_string_table(string_shndx
);
838 do_read_string_table(unsigned int string_shndx
);
840 // True if this is a type unit; false for a compilation unit.
842 // The object containing the .debug_info or .debug_types input section.
844 // The ELF symbol table.
845 const unsigned char* symtab_
;
846 // The size of the ELF symbol table.
848 // Index of the .debug_info or .debug_types section.
850 // Index of the relocation section.
851 unsigned int reloc_shndx_
;
852 // Type of the relocation section (SHT_REL or SHT_RELA).
853 unsigned int reloc_type_
;
854 // Index of the .debug_abbrev section (0 if not known).
855 unsigned int abbrev_shndx_
;
856 // Index of the .debug_str section.
857 unsigned int string_shndx_
;
858 // The buffer for the debug info.
859 const unsigned char* buffer_
;
860 const unsigned char* buffer_end_
;
861 // Offset of the current compilation unit.
863 // Length of the current compilation unit.
865 // Size of a DWARF offset for the current compilation unit.
866 unsigned int offset_size_
;
867 // Size of an address for the target architecture.
868 unsigned int address_size_
;
869 // Compilation unit version number.
870 unsigned int cu_version_
;
871 // Type signature (for a type unit).
872 uint64_t type_signature_
;
873 // Offset from the type unit header to the type DIE (for a type unit).
875 // Abbreviations table for current compilation unit.
876 Dwarf_abbrev_table abbrev_table_
;
877 // Ranges table for the current compilation unit.
878 Dwarf_ranges_table ranges_table_
;
879 // Relocation mapper for the section.
880 Elf_reloc_mapper
* reloc_mapper_
;
881 // The buffer for the debug string table.
882 const char* string_buffer_
;
883 const char* string_buffer_end_
;
884 // True if this object owns the buffer and needs to delete it.
885 bool owns_string_buffer_
;
886 // For incremental update links, this will hold the offset of the
887 // input .debug_str section within the output section. Offsets read
888 // from relocated data will be relative to the output section, and need
889 // to be corrected before reading data from the input section.
890 uint64_t string_output_section_offset_
;
893 // We can't do better than to keep the offsets in a sorted vector.
894 // Here, offset is the key, and file_num/line_num is the value.
895 struct Offset_to_lineno_entry
898 int header_num
; // which file-list to use (i.e. which .o file are we in)
899 // A pointer into files_.
900 unsigned int file_num
: sizeof(int) * CHAR_BIT
- 1;
901 // True if this was the last entry for the current offset, meaning
902 // it's the line that actually applies.
903 unsigned int last_line_for_offset
: 1;
904 // The line number in the source file. -1 to indicate end-of-function.
907 // This sorts by offsets first, and then puts the correct line to
908 // report for a given offset at the beginning of the run of equal
909 // offsets (so that asking for 1 line gives the best answer). This
910 // is not a total ordering.
911 bool operator<(const Offset_to_lineno_entry
& that
) const
913 if (this->offset
!= that
.offset
)
914 return this->offset
< that
.offset
;
915 // Note the '>' which makes this sort 'true' first.
916 return this->last_line_for_offset
> that
.last_line_for_offset
;
920 // This class is used to read the line information from the debugging
921 // section of an object file.
923 class Dwarf_line_info
933 // Given a section number and an offset, returns the associated
934 // file and line-number, as a string: "file:lineno". If unable
935 // to do the mapping, returns the empty string. You must call
936 // read_line_mappings() before calling this function. If
937 // 'other_lines' is non-NULL, fills that in with other line
938 // numbers assigned to the same offset.
940 addr2line(unsigned int shndx
, off_t offset
,
941 std::vector
<std::string
>* other_lines
)
942 { return this->do_addr2line(shndx
, offset
, other_lines
); }
944 // A helper function for a single addr2line lookup. It also keeps a
945 // cache of the last CACHE_SIZE Dwarf_line_info objects it created;
946 // set to 0 not to cache at all. The larger CACHE_SIZE is, the more
947 // chance this routine won't have to re-create a Dwarf_line_info
948 // object for its addr2line computation; such creations are slow.
949 // NOTE: Not thread-safe, so only call from one thread at a time.
951 one_addr2line(Object
* object
, unsigned int shndx
, off_t offset
,
952 size_t cache_size
, std::vector
<std::string
>* other_lines
);
954 // This reclaims all the memory that one_addr2line may have cached.
955 // Use this when you know you will not be calling one_addr2line again.
957 clear_addr2line_cache();
961 do_addr2line(unsigned int shndx
, off_t offset
,
962 std::vector
<std::string
>* other_lines
) = 0;
965 template<int size
, bool big_endian
>
966 class Sized_dwarf_line_info
: public Dwarf_line_info
969 // Initializes a .debug_line reader for a given object file.
970 // If SHNDX is specified and non-negative, only read the debug
971 // information that pertains to the specified section.
972 Sized_dwarf_line_info(Object
* object
, unsigned int read_shndx
= -1U);
975 ~Sized_dwarf_line_info()
977 if (this->buffer_start_
!= NULL
)
978 delete[] this->buffer_start_
;
983 do_addr2line(unsigned int shndx
, off_t offset
,
984 std::vector
<std::string
>* other_lines
);
986 // Formats a file and line number to a string like "dirname/filename:lineno".
988 format_file_lineno(const Offset_to_lineno_entry
& lineno
) const;
990 // Start processing line info, and populates the offset_map_.
991 // If SHNDX is non-negative, only store debug information that
992 // pertains to the specified section.
994 read_line_mappings(unsigned int shndx
);
996 // Reads the relocation section associated with .debug_line and
997 // stores relocation information in reloc_map_.
1001 // Reads the DWARF2/3 header for this line info. Each takes as input
1002 // a starting buffer position, and returns the ending position.
1003 const unsigned char*
1004 read_header_prolog(const unsigned char* lineptr
);
1006 const unsigned char*
1007 read_header_tables(const unsigned char* lineptr
);
1009 // Reads the DWARF2/3 line information. If shndx is non-negative,
1010 // discard all line information that doesn't pertain to the given
1012 const unsigned char*
1013 read_lines(const unsigned char* lineptr
, unsigned int shndx
);
1015 // Process a single line info opcode at START using the state
1016 // machine at LSM. Return true if we should define a line using the
1017 // current state of the line state machine. Place the length of the
1020 process_one_opcode(const unsigned char* start
,
1021 struct LineStateMachine
* lsm
, size_t* len
);
1023 // Some parts of processing differ depending on whether the input
1024 // was a .o file or not.
1025 bool input_is_relobj();
1027 // If we saw anything amiss while parsing, we set this to false.
1028 // Then addr2line will always fail (rather than return possibly-
1032 // A DWARF2/3 line info header. This is not the same size as in the
1033 // actual file, as the one in the file may have a 32 bit or 64 bit
1036 struct Dwarf_line_infoHeader
1040 off_t prologue_length
;
1041 int min_insn_length
; // insn stands for instructin
1042 bool default_is_stmt
; // stmt stands for statement
1043 signed char line_base
;
1045 unsigned char opcode_base
;
1046 std::vector
<unsigned char> std_opcode_lengths
;
1050 // buffer is the buffer for our line info, starting at exactly where
1051 // the line info to read is.
1052 const unsigned char* buffer_
;
1053 const unsigned char* buffer_end_
;
1054 // If the buffer was allocated temporarily, and therefore must be
1055 // deallocated in the dtor, this contains a pointer to the start
1057 const unsigned char* buffer_start_
;
1059 // This has relocations that point into buffer.
1060 Sized_elf_reloc_mapper
<size
, big_endian
>* reloc_mapper_
;
1061 // The type of the reloc section in track_relocs_--SHT_REL or SHT_RELA.
1062 unsigned int track_relocs_type_
;
1064 // This is used to figure out what section to apply a relocation to.
1065 const unsigned char* symtab_buffer_
;
1066 section_size_type symtab_buffer_size_
;
1068 // Holds the directories and files as we see them. We have an array
1069 // of directory-lists, one for each .o file we're reading (usually
1070 // there will just be one, but there may be more if input is a .so).
1071 std::vector
<std::vector
<std::string
> > directories_
;
1072 // The first part is an index into directories_, the second the filename.
1073 std::vector
<std::vector
< std::pair
<int, std::string
> > > files_
;
1075 // An index into the current directories_ and files_ vectors.
1076 int current_header_index_
;
1078 // A sorted map from offset of the relocation target to the shndx
1079 // and addend for the relocation.
1080 typedef std::map
<off_t
, std::pair
<unsigned int, off_t
> >
1082 Reloc_map reloc_map_
;
1084 // We have a vector of offset->lineno entries for every input section.
1085 typedef Unordered_map
<unsigned int, std::vector
<Offset_to_lineno_entry
> >
1088 Lineno_map line_number_map_
;
1091 } // End namespace gold.
1093 #endif // !defined(GOLD_DWARF_READER_H)