]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/dwarf2/read.h
Make dwarf2_get_dwz_file take a dwarf2_per_bfd
[thirdparty/binutils-gdb.git] / gdb / dwarf2 / read.h
CommitLineData
cd4fb1b2
SM
1/* DWARF 2 debugging format support for GDB.
2
b811d2c2 3 Copyright (C) 1994-2020 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>
82ca8957 25#include "dwarf2/index-cache.h"
2c86cff9 26#include "dwarf2/section.h"
cd4fb1b2
SM
27#include "filename-seen-cache.h"
28#include "gdb_obstack.h"
268a13a5 29#include "gdbsupport/hash_enum.h"
891813be 30#include "psympriv.h"
cd4fb1b2 31
3c3bb058
AB
32/* Hold 'maintenance (set|show) dwarf' commands. */
33extern struct cmd_list_element *set_dwarf_cmdlist;
34extern struct cmd_list_element *show_dwarf_cmdlist;
35
cd4fb1b2
SM
36struct tu_stats
37{
38 int nr_uniq_abbrev_tables;
39 int nr_symtabs;
40 int nr_symtab_sharers;
41 int nr_stmt_less_type_units;
42 int nr_all_type_units_reallocs;
43};
44
45struct dwarf2_debug_sections;
39856def 46struct dwarf2_per_cu_data;
cd4fb1b2
SM
47struct mapped_index;
48struct mapped_debug_names;
ff4c9fec 49struct signatured_type;
cd4fb1b2 50
39856def
TT
51/* One item on the queue of compilation units to read in full symbols
52 for. */
53struct dwarf2_queue_item
54{
55 dwarf2_queue_item (dwarf2_per_cu_data *cu, enum language lang)
56 : per_cu (cu),
57 pretend_language (lang)
58 {
59 }
60
61 ~dwarf2_queue_item ();
62
63 DISABLE_COPY_AND_ASSIGN (dwarf2_queue_item);
64
65 struct dwarf2_per_cu_data *per_cu;
66 enum language pretend_language;
67};
68
5989a64e
SM
69/* Some DWARF data can be shared across objfiles who share the same BFD,
70 this data is stored in this object.
cd4fb1b2 71
5989a64e
SM
72 Two dwarf2_per_objfile objects representing objfiles sharing the same BFD
73 will point to the same instance of dwarf2_per_bfd, unless the BFD requires
74 relocation. */
75
76struct dwarf2_per_bfd
cd4fb1b2 77{
5989a64e 78 /* Construct a dwarf2_per_bfd for OBFD. NAMES points to the
cd4fb1b2 79 dwarf2 section names, or is NULL if the standard ELF names are
4b610737
TT
80 used. CAN_COPY is true for formats where symbol
81 interposition is possible and so symbol values must follow copy
82 relocation rules. */
5989a64e 83 dwarf2_per_bfd (bfd *obfd, const dwarf2_debug_sections *names, bool can_copy);
cd4fb1b2 84
5989a64e 85 ~dwarf2_per_bfd ();
cd4fb1b2 86
5989a64e 87 DISABLE_COPY_AND_ASSIGN (dwarf2_per_bfd);
cd4fb1b2 88
ff4c9fec
SM
89 /* Return the CU/TU given its index.
90
91 This is intended for loops like:
92
5989a64e
SM
93 for (i = 0; i < (dwarf2_per_bfd->n_comp_units
94 + dwarf2_per_bfd->n_type_units); ++i)
ff4c9fec 95 {
5989a64e 96 dwarf2_per_cu_data *per_cu = dwarf2_per_bfd->get_cutu (i);
ff4c9fec
SM
97
98 ...;
99 }
100 */
101 dwarf2_per_cu_data *get_cutu (int index);
102
103 /* Return the CU given its index.
104 This differs from get_cutu in that it's for when you know INDEX refers to a
105 CU. */
106 dwarf2_per_cu_data *get_cu (int index);
107
108 /* Return the TU given its index.
109 This differs from get_cutu in that it's for when you know INDEX refers to a
110 TU. */
111 signatured_type *get_tu (int index);
112
cd4fb1b2
SM
113 /* Free all cached compilation units. */
114 void free_cached_comp_units ();
86c0bb4c 115
d3473f0c
TT
116 /* A convenience function to allocate a dwarf2_per_cu_data. The
117 returned object has its "index" field set properly. The object
5989a64e 118 is allocated on the dwarf2_per_bfd obstack. */
d3473f0c
TT
119 dwarf2_per_cu_data *allocate_per_cu ();
120
121 /* A convenience function to allocate a signatured_type. The
122 returned object has its "index" field set properly. The object
5989a64e 123 is allocated on the dwarf2_per_bfd obstack. */
d3473f0c
TT
124 signatured_type *allocate_signatured_type ();
125
af758d11
SM
126 /* Return the number of partial symtabs allocated with allocate_per_cu
127 and allocate_signatured_type so far. */
128 int num_psymtabs () const
129 { return m_num_psymtabs; }
130
cd4fb1b2
SM
131private:
132 /* This function is mapped across the sections and remembers the
133 offset and size of each of the debugging sections we are
134 interested in. */
135 void locate_sections (bfd *abfd, asection *sectp,
136 const dwarf2_debug_sections &names);
137
138public:
c3699833
SM
139 /* The corresponding BFD. */
140 bfd *obfd;
141
45940949
TT
142 /* Objects that can be shared across objfiles are stored in this
143 obstack or on the psymtab obstack, while objects that are
144 objfile-specific are stored on the objfile obstack. */
145 auto_obstack obstack;
146
cd4fb1b2
SM
147 dwarf2_section_info info {};
148 dwarf2_section_info abbrev {};
149 dwarf2_section_info line {};
150 dwarf2_section_info loc {};
151 dwarf2_section_info loclists {};
152 dwarf2_section_info macinfo {};
153 dwarf2_section_info macro {};
154 dwarf2_section_info str {};
18a8505e 155 dwarf2_section_info str_offsets {};
cd4fb1b2
SM
156 dwarf2_section_info line_str {};
157 dwarf2_section_info ranges {};
158 dwarf2_section_info rnglists {};
159 dwarf2_section_info addr {};
160 dwarf2_section_info frame {};
161 dwarf2_section_info eh_frame {};
162 dwarf2_section_info gdb_index {};
163 dwarf2_section_info debug_names {};
164 dwarf2_section_info debug_aranges {};
165
fd5866f6 166 std::vector<dwarf2_section_info> types;
cd4fb1b2 167
cd4fb1b2
SM
168 /* Table of all the compilation units. This is used to locate
169 the target compilation unit of a particular reference. */
b76e467d 170 std::vector<dwarf2_per_cu_data *> all_comp_units;
cd4fb1b2 171
b2bdb8cf
SM
172 /* The .debug_types-related CUs (TUs). */
173 std::vector<signatured_type *> all_type_units;
cd4fb1b2
SM
174
175 /* Table of struct type_unit_group objects.
176 The hash key is the DW_AT_stmt_list value. */
eaa5fa8b 177 htab_up type_unit_groups;
cd4fb1b2
SM
178
179 /* A table mapping .debug_types signatures to its signatured_type entry.
180 This is NULL if the .debug_types section hasn't been read in yet. */
b0b6a987 181 htab_up signatured_types;
cd4fb1b2
SM
182
183 /* Type unit statistics, to see how well the scaling improvements
184 are doing. */
185 struct tu_stats tu_stats {};
186
187 /* A chain of compilation units that are currently read in, so that
188 they can be freed later. */
189 dwarf2_per_cu_data *read_in_chain = NULL;
190
191 /* A table mapping DW_AT_dwo_name values to struct dwo_file objects.
192 This is NULL if the table hasn't been allocated yet. */
51ac9db5 193 htab_up dwo_files;
cd4fb1b2
SM
194
195 /* True if we've checked for whether there is a DWP file. */
196 bool dwp_checked = false;
197
198 /* The DWP file if there is one, or NULL. */
400174b1 199 std::unique_ptr<struct dwp_file> dwp_file;
cd4fb1b2
SM
200
201 /* The shared '.dwz' file, if one exists. This is used when the
202 original data was compressed using 'dwz -m'. */
7ff8cb8c 203 std::unique_ptr<struct dwz_file> dwz_file;
cd4fb1b2 204
4b610737
TT
205 /* Whether copy relocations are supported by this object format. */
206 bool can_copy;
207
cd4fb1b2
SM
208 /* A flag indicating whether this objfile has a section loaded at a
209 VMA of 0. */
210 bool has_section_at_zero = false;
211
212 /* True if we are using the mapped index,
213 or we are faking it for OBJF_READNOW's sake. */
214 bool using_index = false;
215
216 /* The mapped index, or NULL if .gdb_index is missing or not being used. */
3063847f 217 std::unique_ptr<mapped_index> index_table;
cd4fb1b2
SM
218
219 /* The mapped index, or NULL if .debug_names is missing or not being used. */
220 std::unique_ptr<mapped_debug_names> debug_names_table;
221
222 /* When using index_table, this keeps track of all quick_file_names entries.
223 TUs typically share line table entries with a CU, so we maintain a
224 separate table of all line table entries to support the sharing.
225 Note that while there can be way more TUs than CUs, we've already
226 sorted all the TUs into "type unit groups", grouped by their
227 DW_AT_stmt_list value. Therefore the only sharing done here is with a
228 CU and its associated TU group if there is one. */
5895093f 229 htab_up quick_file_names_table;
cd4fb1b2
SM
230
231 /* Set during partial symbol reading, to prevent queueing of full
232 symbols. */
233 bool reading_partial_symbols = false;
234
cd4fb1b2 235 /* The CUs we recently read. */
c5d0225d 236 std::vector<dwarf2_per_cu_data *> just_read_cus;
cd4fb1b2
SM
237
238 /* Table containing line_header indexed by offset and offset_in_dwz. */
d15acc42 239 htab_up line_header_hash;
cd4fb1b2
SM
240
241 /* Table containing all filenames. This is an optional because the
242 table is lazily constructed on first access. */
243 gdb::optional<filename_seen_cache> filenames_cache;
87d6a7aa
SM
244
245 /* If we loaded the index from an external file, this contains the
246 resources associated to the open file, memory mapping, etc. */
247 std::unique_ptr<index_cache_resource> index_cache_res;
e4a62c65
TV
248
249 /* Mapping from abstract origin DIE to concrete DIEs that reference it as
250 DW_AT_abstract_origin. */
fad03f6e
TT
251 std::unordered_map<sect_offset, std::vector<sect_offset>,
252 gdb::hash_enum<sect_offset>>
e4a62c65 253 abstract_to_concrete;
39856def
TT
254
255 /* CUs that are queued to be read. */
256 std::queue<dwarf2_queue_item> queue;
d3473f0c
TT
257
258private:
259
260 /* The total number of per_cu and signatured_type objects that have
261 been created so far for this reader. */
262 size_t m_num_psymtabs = 0;
cd4fb1b2
SM
263};
264
5989a64e
SM
265/* Collection of data recorded per objfile.
266 This hangs off of dwarf2_objfile_data_key.
267
268 Some DWARF data cannot (currently) be shared across objfiles. Such
269 data is stored in this object. */
270
271struct dwarf2_per_objfile
272{
273 dwarf2_per_objfile (struct objfile *objfile, dwarf2_per_bfd *per_bfd)
274 : objfile (objfile), per_bfd (per_bfd)
275 {}
276
277 /* Return pointer to string at .debug_line_str offset as read from BUF.
278 BUF is assumed to be in a compilation unit described by CU_HEADER.
279 Return *BYTES_READ_PTR count of bytes read from BUF. */
280 const char *read_line_string (const gdb_byte *buf,
281 const struct comp_unit_head *cu_header,
282 unsigned int *bytes_read_ptr);
283
af758d11
SM
284 /* Resize the M_SYMTABS vector to the needed size (the number of partial
285 symtabs allocated by the per-bfd). */
286 void resize_symtabs ()
287 {
288 /* The symtabs vector should only grow, not shrink. */
289 gdb_assert (per_bfd->num_psymtabs () >= m_symtabs.size ());
290
291 m_symtabs.resize (per_bfd->num_psymtabs ());
292 }
293
294 /* Return true if the symtab corresponding to PER_CU has been set,
295 false otherwise. */
296 bool symtab_set_p (const dwarf2_per_cu_data *per_cu) const;
297
298 /* Return the compunit_symtab associated to PER_CU, if it has been created. */
299 compunit_symtab *get_symtab (const dwarf2_per_cu_data *per_cu) const;
300
301 /* Set the compunit_symtab associated to PER_CU. */
302 void set_symtab (const dwarf2_per_cu_data *per_cu, compunit_symtab *symtab);
303
5989a64e
SM
304 /* Back link. */
305 struct objfile *objfile;
306
307 /* Pointer to the data that is (possibly) shared between this objfile and
308 other objfiles backed by the same BFD. */
309 struct dwarf2_per_bfd *per_bfd;
af758d11 310
ae090bdb
SM
311 /* Table mapping type DIEs to their struct type *.
312 This is nullptr if not allocated yet.
313 The mapping is done via (CU/TU + DIE offset) -> type. */
314 htab_up die_type_hash;
315
af758d11
SM
316private:
317 /* Hold the corresponding compunit_symtab for each CU or TU. This
318 is indexed by dwarf2_per_cu_data::index. A NULL value means
319 that the CU/TU has not been expanded yet. */
320 std::vector<compunit_symtab *> m_symtabs;
5989a64e
SM
321};
322
cd4fb1b2
SM
323/* Get the dwarf2_per_objfile associated to OBJFILE. */
324
325dwarf2_per_objfile *get_dwarf2_per_objfile (struct objfile *objfile);
326
891813be 327/* A partial symtab specialized for DWARF. */
af758d11 328struct dwarf2_psymtab : public partial_symtab
891813be 329{
891813be 330 dwarf2_psymtab (const char *filename, struct objfile *objfile,
9f4e76a4 331 dwarf2_per_cu_data *per_cu)
af758d11 332 : partial_symtab (filename, objfile, 0),
9f4e76a4 333 per_cu_data (per_cu)
891813be
TT
334 {
335 }
336
337 void read_symtab (struct objfile *) override;
8566b89b 338 void expand_psymtab (struct objfile *) override;
af758d11
SM
339 bool readin_p (struct objfile *) const override;
340 compunit_symtab *get_compunit_symtab (struct objfile *) const override;
891813be
TT
341
342 struct dwarf2_per_cu_data *per_cu_data;
343};
344
cd4fb1b2
SM
345/* Persistent data held for a compilation unit, even when not
346 processing it. We put a pointer to this structure in the
891813be 347 psymtab. */
cd4fb1b2
SM
348
349struct dwarf2_per_cu_data
350{
351 /* The start offset and length of this compilation unit.
352 NOTE: Unlike comp_unit_head.length, this length includes
353 initial_length_size.
354 If the DIE refers to a DWO file, this is always of the original die,
355 not the DWO file. */
356 sect_offset sect_off;
357 unsigned int length;
358
359 /* DWARF standard version this data has been read from (such as 4 or 5). */
360 short dwarf_version;
361
362 /* Flag indicating this compilation unit will be read in before
363 any of the current compilation units are processed. */
364 unsigned int queued : 1;
365
366 /* This flag will be set when reading partial DIEs if we need to load
367 absolutely all DIEs for this compilation unit, instead of just the ones
368 we think are interesting. It gets set if we look for a DIE in the
369 hash table and don't find it. */
370 unsigned int load_all_dies : 1;
371
372 /* Non-zero if this CU is from .debug_types.
373 Struct dwarf2_per_cu_data is contained in struct signatured_type iff
374 this is non-zero. */
375 unsigned int is_debug_types : 1;
376
377 /* Non-zero if this CU is from the .dwz file. */
378 unsigned int is_dwz : 1;
379
380 /* Non-zero if reading a TU directly from a DWO file, bypassing the stub.
381 This flag is only valid if is_debug_types is true.
382 We can't read a CU directly from a DWO file: There are required
383 attributes in the stub. */
384 unsigned int reading_dwo_directly : 1;
385
386 /* Non-zero if the TU has been read.
387 This is used to assist the "Stay in DWO Optimization" for Fission:
388 When reading a DWO, it's faster to read TUs from the DWO instead of
389 fetching them from random other DWOs (due to comdat folding).
390 If the TU has already been read, the optimization is unnecessary
391 (and unwise - we don't want to change where gdb thinks the TU lives
392 "midflight").
393 This flag is only valid if is_debug_types is true. */
394 unsigned int tu_read : 1;
395
d3473f0c
TT
396 /* Our index in the unshared "symtabs" vector. */
397 unsigned index;
398
cd4fb1b2
SM
399 /* The section this CU/TU lives in.
400 If the DIE refers to a DWO file, this is always the original die,
401 not the DWO file. */
402 struct dwarf2_section_info *section;
403
404 /* Set to non-NULL iff this CU is currently loaded. When it gets freed out
405 of the CU cache it gets reset to NULL again. This is left as NULL for
406 dummy CUs (a CU header, but nothing else). */
407 struct dwarf2_cu *cu;
408
58990295
TV
409 /* The unit type of this CU. */
410 enum dwarf_unit_type unit_type;
411
412 /* The language of this CU. */
413 enum language lang;
414
cd4fb1b2
SM
415 /* The corresponding dwarf2_per_objfile. */
416 struct dwarf2_per_objfile *dwarf2_per_objfile;
417
1859c670
SM
418 /* Backlink to the owner of this. */
419 dwarf2_per_bfd *per_bfd;
420
5989a64e 421 /* When dwarf2_per_bfd::using_index is true, the 'quick' field
cd4fb1b2
SM
422 is active. Otherwise, the 'psymtab' field is active. */
423 union
424 {
425 /* The partial symbol table associated with this compilation unit,
426 or NULL for unread partial units. */
891813be 427 dwarf2_psymtab *psymtab;
cd4fb1b2
SM
428
429 /* Data needed by the "quick" functions. */
430 struct dwarf2_per_cu_quick_data *quick;
431 } v;
432
96c738c0
TT
433 /* The CUs we import using DW_TAG_imported_unit. This is filled in
434 while reading psymtabs, used to compute the psymtab dependencies,
435 and then cleared. Then it is filled in again while reading full
436 symbols, and only deleted when the objfile is destroyed.
437
438 This is also used to work around a difference between the way gold
439 generates .gdb_index version <=7 and the way gdb does. Arguably this
440 is a gold bug. For symbols coming from TUs, gold records in the index
441 the CU that includes the TU instead of the TU itself. This breaks
442 dw2_lookup_symbol: It assumes that if the index says symbol X lives
443 in CU/TU Y, then one need only expand Y and a subsequent lookup in Y
444 will find X. Alas TUs live in their own symtab, so after expanding CU Y
445 we need to look in TU Z to find X. Fortunately, this is akin to
446 DW_TAG_imported_unit, so we just use the same mechanism: For
447 .gdb_index version <=7 this also records the TUs that the CU referred
448 to. Concurrently with this change gdb was modified to emit version 8
449 indices so we only pay a price for gold generated indices.
450 http://sourceware.org/bugzilla/show_bug.cgi?id=15021.
451
452 This currently needs to be a public member due to how
453 dwarf2_per_cu_data is allocated and used. Ideally in future things
454 could be refactored to make this private. Until then please try to
455 avoid direct access to this member, and instead use the helper
456 functions above. */
457 std::vector <dwarf2_per_cu_data *> *imported_symtabs;
458
ae640021
AB
459 /* Return true of IMPORTED_SYMTABS is empty or not yet allocated. */
460 bool imported_symtabs_empty () const
461 {
462 return (imported_symtabs == nullptr || imported_symtabs->empty ());
463 }
464
465 /* Push P to the back of IMPORTED_SYMTABS, allocated IMPORTED_SYMTABS
466 first if required. */
467 void imported_symtabs_push (dwarf2_per_cu_data *p)
468 {
469 if (imported_symtabs == nullptr)
470 imported_symtabs = new std::vector <dwarf2_per_cu_data *>;
471 imported_symtabs->push_back (p);
472 }
473
474 /* Return the size of IMPORTED_SYMTABS if it is allocated, otherwise
475 return 0. */
476 size_t imported_symtabs_size () const
477 {
478 if (imported_symtabs == nullptr)
479 return 0;
480 return imported_symtabs->size ();
481 }
482
483 /* Delete IMPORTED_SYMTABS and set the pointer back to nullptr. */
484 void imported_symtabs_free ()
485 {
486 delete imported_symtabs;
487 imported_symtabs = nullptr;
488 }
09ba997f
TT
489
490 /* Return the OBJFILE associated with this compilation unit. If
491 this compilation unit came from a separate debuginfo file, then
492 the master objfile is returned. */
493 struct objfile *objfile () const;
494
495 /* Return the address size given in the compilation unit header for
496 this CU. */
497 int addr_size () const;
498
499 /* Return the offset size given in the compilation unit header for
500 this CU. */
501 int offset_size () const;
502
503 /* Return the DW_FORM_ref_addr size given in the compilation unit
504 header for this CU. */
505 int ref_addr_size () const;
506
507 /* Return the text offset of the CU. The returned offset comes from
508 this CU's objfile. If this objfile came from a separate
509 debuginfo file, then the offset may be different from the
510 corresponding offset in the parent objfile. */
511 CORE_ADDR text_offset () const;
512
513 /* Return a type that is a generic pointer type, the size of which
514 matches the address size given in the compilation unit header for
515 this CU. */
516 struct type *addr_type () const;
517
518 /* Find an integer type SIZE_IN_BYTES bytes in size and return it.
519 UNSIGNED_P controls if the integer is unsigned or not. */
520 struct type *int_type (int size_in_bytes, bool unsigned_p) const;
521
522 /* Find an integer type the same size as the address size given in
523 the compilation unit header for this CU. UNSIGNED_P controls if
524 the integer is unsigned or not. */
525 struct type *addr_sized_int_type (bool unsigned_p) const;
526
527 /* Return DWARF version number of this CU. */
528 short version () const
529 {
530 return dwarf_version;
531 }
197400e8
TT
532
533 /* A type unit group has a per_cu object that is recognized by
534 having no section. */
535 bool type_unit_group_p () const
536 {
537 return section == nullptr;
538 }
cd4fb1b2
SM
539};
540
541/* Entry in the signatured_types hash table. */
542
543struct signatured_type
544{
545 /* The "per_cu" object of this type.
546 This struct is used iff per_cu.is_debug_types.
547 N.B.: This is the first member so that it's easy to convert pointers
548 between them. */
549 struct dwarf2_per_cu_data per_cu;
550
551 /* The type's signature. */
552 ULONGEST signature;
553
554 /* Offset in the TU of the type's DIE, as read from the TU header.
555 If this TU is a DWO stub and the definition lives in a DWO file
556 (specified by DW_AT_GNU_dwo_name), this value is unusable. */
557 cu_offset type_offset_in_tu;
558
559 /* Offset in the section of the type's DIE.
560 If the definition lives in a DWO file, this is the offset in the
561 .debug_types.dwo section.
562 The value is zero until the actual value is known.
563 Zero is otherwise not a valid section offset. */
564 sect_offset type_offset_in_section;
565
566 /* Type units are grouped by their DW_AT_stmt_list entry so that they
567 can share them. This points to the containing symtab. */
568 struct type_unit_group *type_unit_group;
569
570 /* The type.
571 The first time we encounter this type we fully read it in and install it
572 in the symbol tables. Subsequent times we only need the type. */
573 struct type *type;
574
575 /* Containing DWO unit.
576 This field is valid iff per_cu.reading_dwo_directly. */
577 struct dwo_unit *dwo_unit;
578};
579
c4973306
SM
580/* Open the separate '.dwz' debug file, if needed. Return NULL if
581 there is no .gnu_debugaltlink section in the file. Error if there
582 is such a section but the file cannot be found. */
583
c3699833 584extern dwz_file *dwarf2_get_dwz_file (dwarf2_per_bfd *per_bfd);
c4973306 585
8cb5117c
SM
586/* Return the type of the DIE at DIE_OFFSET in the CU named by
587 PER_CU. */
588
589struct type *dwarf2_get_die_type (cu_offset die_offset,
590 struct dwarf2_per_cu_data *per_cu);
591
450a1bfc
SM
592/* Given an index in .debug_addr, fetch the value.
593 NOTE: This can be called during dwarf expression evaluation,
594 long after the debug information has been read, and thus per_cu->cu
595 may no longer exist. */
596
597CORE_ADDR dwarf2_read_addr_index (dwarf2_per_cu_data *per_cu,
598 unsigned int addr_index);
599
d4c9a4f8
SM
600/* Return DWARF block referenced by DW_AT_location of DIE at SECT_OFF at PER_CU.
601 Returned value is intended for DW_OP_call*. Returned
602 dwarf2_locexpr_baton->data has lifetime of
603 PER_CU->DWARF2_PER_OBJFILE->OBJFILE. */
604
605struct dwarf2_locexpr_baton dwarf2_fetch_die_loc_sect_off
606 (sect_offset sect_off, dwarf2_per_cu_data *per_cu,
607 CORE_ADDR (*get_frame_pc) (void *baton),
608 void *baton, bool resolve_abstract_p = false);
609
610/* Like dwarf2_fetch_die_loc_sect_off, but take a CU
611 offset. */
612
613struct dwarf2_locexpr_baton dwarf2_fetch_die_loc_cu_off
614 (cu_offset offset_in_cu, dwarf2_per_cu_data *per_cu,
615 CORE_ADDR (*get_frame_pc) (void *baton),
616 void *baton);
617
618/* If the DIE at SECT_OFF in PER_CU has a DW_AT_const_value, return a
619 pointer to the constant bytes and set LEN to the length of the
620 data. If memory is needed, allocate it on OBSTACK. If the DIE
621 does not have a DW_AT_const_value, return NULL. */
622
623extern const gdb_byte *dwarf2_fetch_constant_bytes
624 (sect_offset sect_off, dwarf2_per_cu_data *per_cu, obstack *obstack,
625 LONGEST *len);
626
627/* Return the type of the die at SECT_OFF in PER_CU. Return NULL if no
628 valid type for this die is found. */
629
630struct type *dwarf2_fetch_die_type_sect_off
631 (sect_offset sect_off, dwarf2_per_cu_data *per_cu);
632
8fdd972c
TT
633/* When non-zero, dump line number entries as they are read in. */
634extern unsigned int dwarf_line_debug;
635
cd4fb1b2 636#endif /* DWARF2READ_H */