1 // gdb-index.h -- generate .gdb_index section for fast debug lookup -*- C++ -*-
3 // Copyright 2012 Free Software Foundation, Inc.
4 // Written by Cary Coutant <ccoutant@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 #include <sys/types.h>
29 #include "stringpool.h"
31 #ifndef GOLD_GDB_INDEX_H
32 #define GOLD_GDB_INDEX_H
40 template<int size
, bool big_endian
>
42 class Dwarf_range_list
;
45 class Gdb_index_info_reader
;
46 class Dwarf_pubnames_table
;
48 // This class manages the .gdb_index section, which is a fast
49 // lookup table for DWARF information used by the gdb debugger.
50 // The format of this section is described in gdb/doc/gdb.texinfo.
52 class Gdb_index
: public Output_section_data
55 Gdb_index(Output_section
* gdb_index_section
);
59 // Scan a .debug_info or .debug_types input section.
60 void scan_debug_info(bool is_type_unit
,
62 const unsigned char* symbols
,
65 unsigned int reloc_shndx
,
66 unsigned int reloc_type
);
68 // Add a compilation unit.
70 add_comp_unit(off_t cu_offset
, off_t cu_length
)
72 this->comp_units_
.push_back(Comp_unit(cu_offset
, cu_length
));
73 return this->comp_units_
.size() - 1;
78 add_type_unit(off_t tu_offset
, off_t type_offset
, uint64_t signature
)
80 this->type_units_
.push_back(Type_unit(tu_offset
, type_offset
, signature
));
81 return this->type_units_
.size() - 1;
84 // Add an address range.
86 add_address_range_list(Relobj
* object
, unsigned int cu_index
,
87 Dwarf_range_list
* ranges
)
89 this->ranges_
.push_back(Per_cu_range_list(object
, cu_index
, ranges
));
94 add_symbol(int cu_index
, const char* sym_name
);
96 // Return the offset into the pubnames table for the cu at the given
99 find_pubname_offset(off_t cu_offset
);
101 // Return the offset into the pubtypes table for the cu at the
104 find_pubtype_offset(off_t cu_offset
);
106 // Return TRUE if we have already processed the pubnames and types
107 // set for OBJECT of the CUs and TUS associated with the statement
110 pubnames_read(const Relobj
* object
, off_t offset
);
112 // Record that we have already read the pubnames associated with
113 // OBJECT and OFFSET.
115 set_pubnames_read(const Relobj
* object
, off_t offset
);
117 // Return a pointer to the given table.
118 Dwarf_pubnames_table
*
120 { return pubnames_table_
; }
122 Dwarf_pubnames_table
*
124 { return pubtypes_table_
; }
126 // Print usage statistics.
131 // This is called to update the section size prior to assigning
132 // the address and file offset.
135 { this->set_final_data_size(); }
137 // Set the final data size.
139 set_final_data_size();
141 // Write the data to the file.
143 do_write(Output_file
*);
145 // Write to a map file.
147 do_print_to_mapfile(Mapfile
* mapfile
) const
148 { mapfile
->print_output_data(this, _("** gdb_index")); }
150 // Create a map from dies to pubnames.
151 Dwarf_pubnames_table
*
152 map_pubtable_to_dies(unsigned int attr
,
153 Gdb_index_info_reader
* dwinfo
,
155 const unsigned char* symbols
,
158 // Wrapper for map_pubtable_to_dies
160 map_pubnames_and_types_to_dies(Gdb_index_info_reader
* dwinfo
,
162 const unsigned char* symbols
,
166 // An entry in the compilation unit list.
169 Comp_unit(off_t off
, off_t len
)
170 : cu_offset(off
), cu_length(len
)
176 // An entry in the type unit list.
179 Type_unit(off_t off
, off_t toff
, uint64_t sig
)
180 : tu_offset(off
), type_offset(toff
), type_signature(sig
)
183 uint64_t type_offset
;
184 uint64_t type_signature
;
187 // An entry in the address range list.
188 struct Per_cu_range_list
190 Per_cu_range_list(Relobj
* obj
, uint32_t index
, Dwarf_range_list
* r
)
191 : object(obj
), cu_index(index
), ranges(r
)
195 Dwarf_range_list
* ranges
;
198 // A symbol table entry.
201 Stringpool::Key name_key
;
202 unsigned int hashval
;
203 unsigned int cu_vector_index
;
205 // Return the hash value.
208 { return this->hashval
; }
210 // Return true if this symbol is the same as SYMBOL.
212 equal(Gdb_symbol
* symbol
)
213 { return this->name_key
== symbol
->name_key
; }
216 typedef std::vector
<int> Cu_vector
;
218 typedef Unordered_map
<off_t
, off_t
> Pubname_offset_map
;
219 Pubname_offset_map cu_pubname_map_
;
220 Pubname_offset_map cu_pubtype_map_
;
222 // Scan the given pubtable and build a map of the various dies it
223 // refers to, so we can process the entries when we encounter the
226 map_pubtable_to_dies(Dwarf_pubnames_table
* table
,
227 Pubname_offset_map
* map
);
229 // Tables to store the pubnames section of the current object.
230 Dwarf_pubnames_table
* pubnames_table_
;
231 Dwarf_pubnames_table
* pubtypes_table_
;
233 // The .gdb_index section.
234 Output_section
* gdb_index_section_
;
235 // The list of DWARF compilation units.
236 std::vector
<Comp_unit
> comp_units_
;
237 // The list of DWARF type units.
238 std::vector
<Type_unit
> type_units_
;
239 // The list of address ranges.
240 std::vector
<Per_cu_range_list
> ranges_
;
242 Gdb_hashtab
<Gdb_symbol
>* gdb_symtab_
;
243 // The CU vector portion of the constant pool.
244 std::vector
<Cu_vector
*> cu_vector_list_
;
245 // An array to map from a CU vector index to an offset to the constant pool.
246 off_t
* cu_vector_offsets_
;
247 // The string portion of the constant pool.
248 Stringpool stringpool_
;
249 // Offsets of the various pieces of the .gdb_index section.
252 off_t symtab_offset_
;
253 off_t cu_pool_offset_
;
254 off_t stringpool_offset_
;
255 // Object, stmt list offset of the CUs and TUs associated with the
256 // last read pubnames and pubtypes sections.
257 const Relobj
* pubnames_object_
;
258 off_t stmt_list_offset_
;
261 } // End namespace gold.
263 #endif // !defined(GOLD_GDB_INDEX_H)