gdb: add and use signatured_type_up
[deliverable/binutils-gdb.git] / gdb / dwarf2 / read.h
CommitLineData
cd4fb1b2
SM
1/* DWARF 2 debugging format support for GDB.
2
3666a048 3 Copyright (C) 1994-2021 Free Software Foundation, Inc.
cd4fb1b2
SM
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#ifndef DWARF2READ_H
21#define DWARF2READ_H
22
39856def 23#include <queue>
e4a62c65 24#include <unordered_map>
cd53fa40 25#include "dwarf2/comp-unit-head.h"
82ca8957 26#include "dwarf2/index-cache.h"
2c86cff9 27#include "dwarf2/section.h"
cd4fb1b2
SM
28#include "filename-seen-cache.h"
29#include "gdb_obstack.h"
268a13a5 30#include "gdbsupport/hash_enum.h"
041d9819 31#include "gdbsupport/function-view.h"
891813be 32#include "psympriv.h"
cd4fb1b2 33
3c3bb058
AB
34/* Hold 'maintenance (set|show) dwarf' commands. */
35extern struct cmd_list_element *set_dwarf_cmdlist;
36extern struct cmd_list_element *show_dwarf_cmdlist;
37
cd4fb1b2
SM
38struct tu_stats
39{
40 int nr_uniq_abbrev_tables;
41 int nr_symtabs;
42 int nr_symtab_sharers;
43 int nr_stmt_less_type_units;
44 int nr_all_type_units_reallocs;
91eea9cc 45 int nr_tus;
cd4fb1b2
SM
46};
47
7188ed02 48struct dwarf2_cu;
cd4fb1b2 49struct dwarf2_debug_sections;
4631503b 50struct dwarf2_per_bfd;
39856def 51struct dwarf2_per_cu_data;
4631503b 52struct dwarf2_psymtab;
cd4fb1b2
SM
53struct mapped_index;
54struct mapped_debug_names;
ff4c9fec 55struct signatured_type;
8adb8487 56struct type_unit_group;
cd4fb1b2 57
39856def
TT
58/* One item on the queue of compilation units to read in full symbols
59 for. */
60struct dwarf2_queue_item
61{
120ce1b5
SM
62 dwarf2_queue_item (dwarf2_per_cu_data *cu, dwarf2_per_objfile *per_objfile,
63 enum language lang)
39856def 64 : per_cu (cu),
120ce1b5 65 per_objfile (per_objfile),
39856def
TT
66 pretend_language (lang)
67 {
68 }
69
70 ~dwarf2_queue_item ();
71
72 DISABLE_COPY_AND_ASSIGN (dwarf2_queue_item);
73
120ce1b5
SM
74 dwarf2_per_cu_data *per_cu;
75 dwarf2_per_objfile *per_objfile;
39856def
TT
76 enum language pretend_language;
77};
78
473ab964
TT
79/* A deleter for dwarf2_per_cu_data that knows to downcast to
80 signatured_type as appropriate. This approach lets us avoid a
81 virtual destructor, which saves a bit of space. */
82
83struct dwarf2_per_cu_data_deleter
84{
85 void operator() (dwarf2_per_cu_data *data);
86};
87
88/* A specialization of unique_ptr for dwarf2_per_cu_data and
89 subclasses. */
90typedef std::unique_ptr<dwarf2_per_cu_data, dwarf2_per_cu_data_deleter>
91 dwarf2_per_cu_data_up;
92
4631503b
SM
93/* Persistent data held for a compilation unit, even when not
94 processing it. We put a pointer to this structure in the
95 psymtab. */
96
97struct dwarf2_per_cu_data
98{
99 dwarf2_per_cu_data ()
100 : queued (false),
101 is_debug_types (false),
102 is_dwz (false),
103 reading_dwo_directly (false),
104 tu_read (false),
105 m_header_read_in (false),
106 unit_type {},
107 lang (language_unknown)
108 {
109 }
110
111 /* The start offset and length of this compilation unit.
112 NOTE: Unlike comp_unit_head.length, this length includes
113 initial_length_size.
114 If the DIE refers to a DWO file, this is always of the original die,
115 not the DWO file. */
116 sect_offset sect_off {};
117 unsigned int length = 0;
118
119 /* DWARF standard version this data has been read from (such as 4 or 5). */
120 unsigned char dwarf_version = 0;
121
122 /* Flag indicating this compilation unit will be read in before
123 any of the current compilation units are processed. */
124 unsigned int queued : 1;
125
126 /* Non-zero if this CU is from .debug_types.
127 Struct dwarf2_per_cu_data is contained in struct signatured_type iff
128 this is non-zero. */
129 unsigned int is_debug_types : 1;
130
131 /* Non-zero if this CU is from the .dwz file. */
132 unsigned int is_dwz : 1;
133
134 /* Non-zero if reading a TU directly from a DWO file, bypassing the stub.
135 This flag is only valid if is_debug_types is true.
136 We can't read a CU directly from a DWO file: There are required
137 attributes in the stub. */
138 unsigned int reading_dwo_directly : 1;
139
140 /* Non-zero if the TU has been read.
141 This is used to assist the "Stay in DWO Optimization" for Fission:
142 When reading a DWO, it's faster to read TUs from the DWO instead of
143 fetching them from random other DWOs (due to comdat folding).
144 If the TU has already been read, the optimization is unnecessary
145 (and unwise - we don't want to change where gdb thinks the TU lives
146 "midflight").
147 This flag is only valid if is_debug_types is true. */
148 unsigned int tu_read : 1;
149
150 /* True if HEADER has been read in.
151
152 Don't access this field directly. It should be private, but we can't make
153 it private at the moment. */
154 mutable bool m_header_read_in : 1;
155
156 /* The unit type of this CU. */
157 ENUM_BITFIELD (dwarf_unit_type) unit_type : 8;
158
159 /* The language of this CU. */
160 ENUM_BITFIELD (language) lang : LANGUAGE_BITS;
161
162 /* Our index in the unshared "symtabs" vector. */
163 unsigned index = 0;
164
165 /* The section this CU/TU lives in.
166 If the DIE refers to a DWO file, this is always the original die,
167 not the DWO file. */
168 struct dwarf2_section_info *section = nullptr;
169
170 /* Backlink to the owner of this. */
171 dwarf2_per_bfd *per_bfd = nullptr;
172
173 /* DWARF header of this CU. Note that dwarf2_cu reads its own version of the
174 header, which may differ from this one, since it may pass rcuh_kind::TYPE
175 to read_comp_unit_head, whereas for dwarf2_per_cu_data we always pass
176 rcuh_kind::COMPILE.
177
178 Don't access this field directly, use the get_header method instead. It
179 should be private, but we can't make it private at the moment. */
180 mutable comp_unit_head m_header {};
181
182 /* When dwarf2_per_bfd::using_index is true, the 'quick' field
183 is active. Otherwise, the 'psymtab' field is active. */
184 union
185 {
186 /* The partial symbol table associated with this compilation unit,
187 or NULL for unread partial units. */
188 dwarf2_psymtab *psymtab;
189
190 /* Data needed by the "quick" functions. */
191 struct dwarf2_per_cu_quick_data *quick;
192 } v {};
193
194 /* The CUs we import using DW_TAG_imported_unit. This is filled in
195 while reading psymtabs, used to compute the psymtab dependencies,
196 and then cleared. Then it is filled in again while reading full
197 symbols, and only deleted when the objfile is destroyed.
198
199 This is also used to work around a difference between the way gold
200 generates .gdb_index version <=7 and the way gdb does. Arguably this
201 is a gold bug. For symbols coming from TUs, gold records in the index
202 the CU that includes the TU instead of the TU itself. This breaks
203 dw2_lookup_symbol: It assumes that if the index says symbol X lives
204 in CU/TU Y, then one need only expand Y and a subsequent lookup in Y
205 will find X. Alas TUs live in their own symtab, so after expanding CU Y
206 we need to look in TU Z to find X. Fortunately, this is akin to
207 DW_TAG_imported_unit, so we just use the same mechanism: For
208 .gdb_index version <=7 this also records the TUs that the CU referred
209 to. Concurrently with this change gdb was modified to emit version 8
210 indices so we only pay a price for gold generated indices.
211 http://sourceware.org/bugzilla/show_bug.cgi?id=15021.
212
213 This currently needs to be a public member due to how
214 dwarf2_per_cu_data is allocated and used. Ideally in future things
215 could be refactored to make this private. Until then please try to
216 avoid direct access to this member, and instead use the helper
217 functions above. */
218 std::vector <dwarf2_per_cu_data *> *imported_symtabs = nullptr;
219
220 /* Return true of IMPORTED_SYMTABS is empty or not yet allocated. */
221 bool imported_symtabs_empty () const
222 {
223 return (imported_symtabs == nullptr || imported_symtabs->empty ());
224 }
225
226 /* Push P to the back of IMPORTED_SYMTABS, allocated IMPORTED_SYMTABS
227 first if required. */
228 void imported_symtabs_push (dwarf2_per_cu_data *p)
229 {
230 if (imported_symtabs == nullptr)
231 imported_symtabs = new std::vector <dwarf2_per_cu_data *>;
232 imported_symtabs->push_back (p);
233 }
234
235 /* Return the size of IMPORTED_SYMTABS if it is allocated, otherwise
236 return 0. */
237 size_t imported_symtabs_size () const
238 {
239 if (imported_symtabs == nullptr)
240 return 0;
241 return imported_symtabs->size ();
242 }
243
244 /* Delete IMPORTED_SYMTABS and set the pointer back to nullptr. */
245 void imported_symtabs_free ()
246 {
247 delete imported_symtabs;
248 imported_symtabs = nullptr;
249 }
250
251 /* Get the header of this per_cu, reading it if necessary. */
252 const comp_unit_head *get_header () const;
253
254 /* Return the address size given in the compilation unit header for
255 this CU. */
256 int addr_size () const;
257
258 /* Return the offset size given in the compilation unit header for
259 this CU. */
260 int offset_size () const;
261
262 /* Return the DW_FORM_ref_addr size given in the compilation unit
263 header for this CU. */
264 int ref_addr_size () const;
265
266 /* Return DWARF version number of this CU. */
267 short version () const
268 {
269 return dwarf_version;
270 }
271
272 /* A type unit group has a per_cu object that is recognized by
273 having no section. */
274 bool type_unit_group_p () const
275 {
276 return section == nullptr;
277 }
278};
279
280/* Entry in the signatured_types hash table. */
281
282struct signatured_type : public dwarf2_per_cu_data
283{
284 /* The type's signature. */
285 ULONGEST signature = 0;
286
287 /* Offset in the TU of the type's DIE, as read from the TU header.
288 If this TU is a DWO stub and the definition lives in a DWO file
289 (specified by DW_AT_GNU_dwo_name), this value is unusable. */
290 cu_offset type_offset_in_tu {};
291
292 /* Offset in the section of the type's DIE.
293 If the definition lives in a DWO file, this is the offset in the
294 .debug_types.dwo section.
295 The value is zero until the actual value is known.
296 Zero is otherwise not a valid section offset. */
297 sect_offset type_offset_in_section {};
298
299 /* Type units are grouped by their DW_AT_stmt_list entry so that they
300 can share them. This points to the containing symtab. */
301 struct type_unit_group *type_unit_group = nullptr;
302
303 /* Containing DWO unit.
304 This field is valid iff per_cu.reading_dwo_directly. */
305 struct dwo_unit *dwo_unit = nullptr;
306};
307
46c6bcf6
SM
308using signatured_type_up = std::unique_ptr<signatured_type>;
309
5989a64e
SM
310/* Some DWARF data can be shared across objfiles who share the same BFD,
311 this data is stored in this object.
cd4fb1b2 312
5989a64e
SM
313 Two dwarf2_per_objfile objects representing objfiles sharing the same BFD
314 will point to the same instance of dwarf2_per_bfd, unless the BFD requires
315 relocation. */
316
317struct dwarf2_per_bfd
cd4fb1b2 318{
5989a64e 319 /* Construct a dwarf2_per_bfd for OBFD. NAMES points to the
cd4fb1b2 320 dwarf2 section names, or is NULL if the standard ELF names are
4b610737
TT
321 used. CAN_COPY is true for formats where symbol
322 interposition is possible and so symbol values must follow copy
323 relocation rules. */
5989a64e 324 dwarf2_per_bfd (bfd *obfd, const dwarf2_debug_sections *names, bool can_copy);
cd4fb1b2 325
5989a64e 326 ~dwarf2_per_bfd ();
cd4fb1b2 327
5989a64e 328 DISABLE_COPY_AND_ASSIGN (dwarf2_per_bfd);
cd4fb1b2 329
91eea9cc
TT
330 /* Return the CU given its index. */
331 dwarf2_per_cu_data *get_cu (int index) const
332 {
333 return this->all_comp_units[index].get ();
334 }
ff4c9fec 335
d3473f0c
TT
336 /* A convenience function to allocate a dwarf2_per_cu_data. The
337 returned object has its "index" field set properly. The object
5989a64e 338 is allocated on the dwarf2_per_bfd obstack. */
473ab964 339 dwarf2_per_cu_data_up allocate_per_cu ();
d3473f0c
TT
340
341 /* A convenience function to allocate a signatured_type. The
342 returned object has its "index" field set properly. The object
5989a64e 343 is allocated on the dwarf2_per_bfd obstack. */
46c6bcf6 344 signatured_type_up allocate_signatured_type ();
d3473f0c 345
cd4fb1b2
SM
346private:
347 /* This function is mapped across the sections and remembers the
348 offset and size of each of the debugging sections we are
349 interested in. */
350 void locate_sections (bfd *abfd, asection *sectp,
351 const dwarf2_debug_sections &names);
352
353public:
c3699833
SM
354 /* The corresponding BFD. */
355 bfd *obfd;
356
45940949
TT
357 /* Objects that can be shared across objfiles are stored in this
358 obstack or on the psymtab obstack, while objects that are
359 objfile-specific are stored on the objfile obstack. */
360 auto_obstack obstack;
361
cd4fb1b2
SM
362 dwarf2_section_info info {};
363 dwarf2_section_info abbrev {};
364 dwarf2_section_info line {};
365 dwarf2_section_info loc {};
366 dwarf2_section_info loclists {};
367 dwarf2_section_info macinfo {};
368 dwarf2_section_info macro {};
369 dwarf2_section_info str {};
18a8505e 370 dwarf2_section_info str_offsets {};
cd4fb1b2
SM
371 dwarf2_section_info line_str {};
372 dwarf2_section_info ranges {};
373 dwarf2_section_info rnglists {};
374 dwarf2_section_info addr {};
375 dwarf2_section_info frame {};
376 dwarf2_section_info eh_frame {};
377 dwarf2_section_info gdb_index {};
378 dwarf2_section_info debug_names {};
379 dwarf2_section_info debug_aranges {};
380
fd5866f6 381 std::vector<dwarf2_section_info> types;
cd4fb1b2 382
cd4fb1b2
SM
383 /* Table of all the compilation units. This is used to locate
384 the target compilation unit of a particular reference. */
473ab964 385 std::vector<dwarf2_per_cu_data_up> all_comp_units;
cd4fb1b2 386
cd4fb1b2
SM
387 /* Table of struct type_unit_group objects.
388 The hash key is the DW_AT_stmt_list value. */
eaa5fa8b 389 htab_up type_unit_groups;
cd4fb1b2
SM
390
391 /* A table mapping .debug_types signatures to its signatured_type entry.
392 This is NULL if the .debug_types section hasn't been read in yet. */
b0b6a987 393 htab_up signatured_types;
cd4fb1b2
SM
394
395 /* Type unit statistics, to see how well the scaling improvements
396 are doing. */
397 struct tu_stats tu_stats {};
398
cd4fb1b2
SM
399 /* A table mapping DW_AT_dwo_name values to struct dwo_file objects.
400 This is NULL if the table hasn't been allocated yet. */
51ac9db5 401 htab_up dwo_files;
cd4fb1b2
SM
402
403 /* True if we've checked for whether there is a DWP file. */
404 bool dwp_checked = false;
405
406 /* The DWP file if there is one, or NULL. */
400174b1 407 std::unique_ptr<struct dwp_file> dwp_file;
cd4fb1b2
SM
408
409 /* The shared '.dwz' file, if one exists. This is used when the
410 original data was compressed using 'dwz -m'. */
7ff8cb8c 411 std::unique_ptr<struct dwz_file> dwz_file;
cd4fb1b2 412
4b610737
TT
413 /* Whether copy relocations are supported by this object format. */
414 bool can_copy;
415
cd4fb1b2
SM
416 /* A flag indicating whether this objfile has a section loaded at a
417 VMA of 0. */
418 bool has_section_at_zero = false;
419
420 /* True if we are using the mapped index,
421 or we are faking it for OBJF_READNOW's sake. */
422 bool using_index = false;
423
424 /* The mapped index, or NULL if .gdb_index is missing or not being used. */
3063847f 425 std::unique_ptr<mapped_index> index_table;
cd4fb1b2
SM
426
427 /* The mapped index, or NULL if .debug_names is missing or not being used. */
428 std::unique_ptr<mapped_debug_names> debug_names_table;
429
430 /* When using index_table, this keeps track of all quick_file_names entries.
431 TUs typically share line table entries with a CU, so we maintain a
432 separate table of all line table entries to support the sharing.
433 Note that while there can be way more TUs than CUs, we've already
434 sorted all the TUs into "type unit groups", grouped by their
435 DW_AT_stmt_list value. Therefore the only sharing done here is with a
436 CU and its associated TU group if there is one. */
5895093f 437 htab_up quick_file_names_table;
cd4fb1b2
SM
438
439 /* Set during partial symbol reading, to prevent queueing of full
440 symbols. */
441 bool reading_partial_symbols = false;
442
cd4fb1b2 443 /* The CUs we recently read. */
c5d0225d 444 std::vector<dwarf2_per_cu_data *> just_read_cus;
cd4fb1b2 445
87d6a7aa
SM
446 /* If we loaded the index from an external file, this contains the
447 resources associated to the open file, memory mapping, etc. */
448 std::unique_ptr<index_cache_resource> index_cache_res;
e4a62c65
TV
449
450 /* Mapping from abstract origin DIE to concrete DIEs that reference it as
451 DW_AT_abstract_origin. */
fad03f6e
TT
452 std::unordered_map<sect_offset, std::vector<sect_offset>,
453 gdb::hash_enum<sect_offset>>
e4a62c65 454 abstract_to_concrete;
39856def
TT
455
456 /* CUs that are queued to be read. */
08ac5771 457 gdb::optional<std::queue<dwarf2_queue_item>> queue;
d3473f0c 458
17ee85fc
TT
459 /* We keep a separate reference to the partial symtabs, in case we
460 are sharing them between objfiles. This is only set after
461 partial symbols have been read the first time. */
462 std::shared_ptr<psymtab_storage> partial_symtabs;
463
efd7398e
TT
464 /* The address map that is used by the DWARF index code. */
465 struct addrmap *index_addrmap = nullptr;
cd4fb1b2
SM
466};
467
8adb8487
TT
468/* This is the per-objfile data associated with a type_unit_group. */
469
470struct type_unit_group_unshareable
471{
472 /* The compunit symtab.
473 Type units in a group needn't all be defined in the same source file,
474 so we create an essentially anonymous symtab as the compunit symtab. */
475 struct compunit_symtab *compunit_symtab = nullptr;
476
477 /* The number of symtabs from the line header.
478 The value here must match line_header.num_file_names. */
479 unsigned int num_symtabs = 0;
480
481 /* The symbol tables for this TU (obtained from the files listed in
482 DW_AT_stmt_list).
483 WARNING: The order of entries here must match the order of entries
484 in the line header. After the first TU using this type_unit_group, the
485 line header for the subsequent TUs is recreated from this. This is done
486 because we need to use the same symtabs for each TU using the same
487 DW_AT_stmt_list value. Also note that symtabs may be repeated here,
488 there's no guarantee the line header doesn't have duplicate entries. */
489 struct symtab **symtabs = nullptr;
490};
491
5989a64e
SM
492/* Collection of data recorded per objfile.
493 This hangs off of dwarf2_objfile_data_key.
494
495 Some DWARF data cannot (currently) be shared across objfiles. Such
496 data is stored in this object. */
497
498struct dwarf2_per_objfile
499{
500 dwarf2_per_objfile (struct objfile *objfile, dwarf2_per_bfd *per_bfd)
501 : objfile (objfile), per_bfd (per_bfd)
502 {}
503
7188ed02
SM
504 ~dwarf2_per_objfile ();
505
5989a64e
SM
506 /* Return pointer to string at .debug_line_str offset as read from BUF.
507 BUF is assumed to be in a compilation unit described by CU_HEADER.
508 Return *BYTES_READ_PTR count of bytes read from BUF. */
509 const char *read_line_string (const gdb_byte *buf,
510 const struct comp_unit_head *cu_header,
511 unsigned int *bytes_read_ptr);
512
af758d11
SM
513 /* Resize the M_SYMTABS vector to the needed size (the number of partial
514 symtabs allocated by the per-bfd). */
515 void resize_symtabs ()
516 {
517 /* The symtabs vector should only grow, not shrink. */
c96e8b04 518 gdb_assert (per_bfd->all_comp_units.size () >= m_symtabs.size ());
af758d11 519
c96e8b04 520 m_symtabs.resize (per_bfd->all_comp_units.size ());
af758d11
SM
521 }
522
523 /* Return true if the symtab corresponding to PER_CU has been set,
524 false otherwise. */
525 bool symtab_set_p (const dwarf2_per_cu_data *per_cu) const;
526
527 /* Return the compunit_symtab associated to PER_CU, if it has been created. */
528 compunit_symtab *get_symtab (const dwarf2_per_cu_data *per_cu) const;
529
530 /* Set the compunit_symtab associated to PER_CU. */
531 void set_symtab (const dwarf2_per_cu_data *per_cu, compunit_symtab *symtab);
532
e286671b
TT
533 /* Get the type_unit_group_unshareable corresponding to TU_GROUP. If one
534 does not exist, create it. */
8adb8487
TT
535 type_unit_group_unshareable *get_type_unit_group_unshareable
536 (type_unit_group *tu_group);
537
e286671b
TT
538 struct type *get_type_for_signatured_type (signatured_type *sig_type) const;
539
540 void set_type_for_signatured_type (signatured_type *sig_type,
541 struct type *type);
542
293e7e51
SM
543 /* Find an integer type SIZE_IN_BYTES bytes in size and return it.
544 UNSIGNED_P controls if the integer is unsigned or not. */
545 struct type *int_type (int size_in_bytes, bool unsigned_p) const;
546
7188ed02
SM
547 /* Get the dwarf2_cu matching PER_CU for this objfile. */
548 dwarf2_cu *get_cu (dwarf2_per_cu_data *per_cu);
549
550 /* Set the dwarf2_cu matching PER_CU for this objfile. */
551 void set_cu (dwarf2_per_cu_data *per_cu, dwarf2_cu *cu);
552
553 /* Remove/free the dwarf2_cu matching PER_CU for this objfile. */
554 void remove_cu (dwarf2_per_cu_data *per_cu);
555
556 /* Free all cached compilation units. */
557 void remove_all_cus ();
558
559 /* Increase the age counter on each CU compilation unit and free
560 any that are too old. */
561 void age_comp_units ();
562
5989a64e
SM
563 /* Back link. */
564 struct objfile *objfile;
565
566 /* Pointer to the data that is (possibly) shared between this objfile and
567 other objfiles backed by the same BFD. */
568 struct dwarf2_per_bfd *per_bfd;
af758d11 569
ae090bdb
SM
570 /* Table mapping type DIEs to their struct type *.
571 This is nullptr if not allocated yet.
572 The mapping is done via (CU/TU + DIE offset) -> type. */
573 htab_up die_type_hash;
574
39b16f87
SM
575 /* Table containing line_header indexed by offset and offset_in_dwz. */
576 htab_up line_header_hash;
577
af758d11
SM
578private:
579 /* Hold the corresponding compunit_symtab for each CU or TU. This
580 is indexed by dwarf2_per_cu_data::index. A NULL value means
581 that the CU/TU has not been expanded yet. */
582 std::vector<compunit_symtab *> m_symtabs;
8adb8487
TT
583
584 /* Map from a type unit group to the corresponding unshared
585 structure. */
586 typedef std::unique_ptr<type_unit_group_unshareable>
587 type_unit_group_unshareable_up;
588
589 std::unordered_map<type_unit_group *, type_unit_group_unshareable_up>
590 m_type_units;
e286671b
TT
591
592 /* Map from signatured types to the corresponding struct type. */
593 std::unordered_map<signatured_type *, struct type *> m_type_map;
7188ed02
SM
594
595 /* Map from the objfile-independent dwarf2_per_cu_data instances to the
596 corresponding objfile-dependent dwarf2_cu instances. */
597 std::unordered_map<dwarf2_per_cu_data *, dwarf2_cu *> m_dwarf2_cus;
5989a64e
SM
598};
599
cd4fb1b2
SM
600/* Get the dwarf2_per_objfile associated to OBJFILE. */
601
602dwarf2_per_objfile *get_dwarf2_per_objfile (struct objfile *objfile);
603
891813be 604/* A partial symtab specialized for DWARF. */
af758d11 605struct dwarf2_psymtab : public partial_symtab
891813be 606{
7b249e47
TT
607 dwarf2_psymtab (const char *filename,
608 psymtab_storage *partial_symtabs,
0072c873 609 objfile_per_bfd_storage *objfile_per_bfd,
9f4e76a4 610 dwarf2_per_cu_data *per_cu)
0072c873 611 : partial_symtab (filename, partial_symtabs, objfile_per_bfd, 0),
9f4e76a4 612 per_cu_data (per_cu)
891813be
TT
613 {
614 }
615
616 void read_symtab (struct objfile *) override;
8566b89b 617 void expand_psymtab (struct objfile *) override;
af758d11
SM
618 bool readin_p (struct objfile *) const override;
619 compunit_symtab *get_compunit_symtab (struct objfile *) const override;
891813be
TT
620
621 struct dwarf2_per_cu_data *per_cu_data;
622};
623
8cb5117c
SM
624/* Return the type of the DIE at DIE_OFFSET in the CU named by
625 PER_CU. */
626
627struct type *dwarf2_get_die_type (cu_offset die_offset,
aa66c379
SM
628 dwarf2_per_cu_data *per_cu,
629 dwarf2_per_objfile *per_objfile);
8cb5117c 630
450a1bfc
SM
631/* Given an index in .debug_addr, fetch the value.
632 NOTE: This can be called during dwarf expression evaluation,
633 long after the debug information has been read, and thus per_cu->cu
634 may no longer exist. */
635
636CORE_ADDR dwarf2_read_addr_index (dwarf2_per_cu_data *per_cu,
976ca316 637 dwarf2_per_objfile *per_objfile,
450a1bfc
SM
638 unsigned int addr_index);
639
d4c9a4f8
SM
640/* Return DWARF block referenced by DW_AT_location of DIE at SECT_OFF at PER_CU.
641 Returned value is intended for DW_OP_call*. Returned
642 dwarf2_locexpr_baton->data has lifetime of
643 PER_CU->DWARF2_PER_OBJFILE->OBJFILE. */
644
645struct dwarf2_locexpr_baton dwarf2_fetch_die_loc_sect_off
646 (sect_offset sect_off, dwarf2_per_cu_data *per_cu,
14095eb3 647 dwarf2_per_objfile *per_objfile,
041d9819
SM
648 gdb::function_view<CORE_ADDR ()> get_frame_pc,
649 bool resolve_abstract_p = false);
d4c9a4f8
SM
650
651/* Like dwarf2_fetch_die_loc_sect_off, but take a CU
652 offset. */
653
654struct dwarf2_locexpr_baton dwarf2_fetch_die_loc_cu_off
655 (cu_offset offset_in_cu, dwarf2_per_cu_data *per_cu,
14095eb3 656 dwarf2_per_objfile *per_objfile,
041d9819 657 gdb::function_view<CORE_ADDR ()> get_frame_pc);
d4c9a4f8
SM
658
659/* If the DIE at SECT_OFF in PER_CU has a DW_AT_const_value, return a
660 pointer to the constant bytes and set LEN to the length of the
661 data. If memory is needed, allocate it on OBSTACK. If the DIE
662 does not have a DW_AT_const_value, return NULL. */
663
664extern const gdb_byte *dwarf2_fetch_constant_bytes
14095eb3
SM
665 (sect_offset sect_off, dwarf2_per_cu_data *per_cu,
666 dwarf2_per_objfile *per_objfile, obstack *obstack,
d4c9a4f8
SM
667 LONGEST *len);
668
669/* Return the type of the die at SECT_OFF in PER_CU. Return NULL if no
670 valid type for this die is found. */
671
672struct type *dwarf2_fetch_die_type_sect_off
14095eb3
SM
673 (sect_offset sect_off, dwarf2_per_cu_data *per_cu,
674 dwarf2_per_objfile *per_objfile);
d4c9a4f8 675
8fdd972c
TT
676/* When non-zero, dump line number entries as they are read in. */
677extern unsigned int dwarf_line_debug;
678
18038e63
TT
679/* Dwarf2 sections that can be accessed by dwarf2_get_section_info. */
680enum dwarf2_section_enum {
681 DWARF2_DEBUG_FRAME,
682 DWARF2_EH_FRAME
683};
684
685extern void dwarf2_get_section_info (struct objfile *,
686 enum dwarf2_section_enum,
687 asection **, const gdb_byte **,
688 bfd_size_type *);
689
cd4fb1b2 690#endif /* DWARF2READ_H */
This page took 0.36251 seconds and 4 git commands to generate.