1 /* DWARF 2 debugging format support for GDB.
3 Copyright (C) 1994-2016 Free Software Foundation, Inc.
5 Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
6 Inc. with support from Florida State University (under contract
7 with the Ada Joint Program Office), and Silicon Graphics, Inc.
8 Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
9 based on Fred Fish's (Cygnus Support) implementation of DWARF 1
12 This file is part of GDB.
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 3 of the License, or
17 (at your option) any later version.
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>. */
27 /* FIXME: Various die-reading functions need to be more careful with
28 reading off the end of the section.
29 E.g., load_partial_dies, read_partial_die. */
40 #include "gdb-demangle.h"
41 #include "expression.h"
42 #include "filenames.h" /* for DOSish file names */
45 #include "complaints.h"
47 #include "dwarf2expr.h"
48 #include "dwarf2loc.h"
49 #include "cp-support.h"
55 #include "typeprint.h"
59 #include "completer.h"
64 #include "gdbcore.h" /* for gnutarget */
65 #include "gdb/gdb-index.h"
70 #include "filestuff.h"
72 #include "namespace.h"
75 #include <sys/types.h>
77 typedef struct symbol *symbolp;
80 /* When == 1, print basic high level tracing messages.
81 When > 1, be more verbose.
82 This is in contrast to the low level DIE reading of dwarf_die_debug. */
83 static unsigned int dwarf_read_debug = 0;
85 /* When non-zero, dump DIEs after they are read in. */
86 static unsigned int dwarf_die_debug = 0;
88 /* When non-zero, dump line number entries as they are read in. */
89 static unsigned int dwarf_line_debug = 0;
91 /* When non-zero, cross-check physname against demangler. */
92 static int check_physname = 0;
94 /* When non-zero, do not reject deprecated .gdb_index sections. */
95 static int use_deprecated_index_sections = 0;
97 static const struct objfile_data *dwarf2_objfile_data_key;
99 /* The "aclass" indices for various kinds of computed DWARF symbols. */
101 static int dwarf2_locexpr_index;
102 static int dwarf2_loclist_index;
103 static int dwarf2_locexpr_block_index;
104 static int dwarf2_loclist_block_index;
106 /* A descriptor for dwarf sections.
108 S.ASECTION, SIZE are typically initialized when the objfile is first
109 scanned. BUFFER, READIN are filled in later when the section is read.
110 If the section contained compressed data then SIZE is updated to record
111 the uncompressed size of the section.
113 DWP file format V2 introduces a wrinkle that is easiest to handle by
114 creating the concept of virtual sections contained within a real section.
115 In DWP V2 the sections of the input DWO files are concatenated together
116 into one section, but section offsets are kept relative to the original
118 If this is a virtual dwp-v2 section, S.CONTAINING_SECTION is a backlink to
119 the real section this "virtual" section is contained in, and BUFFER,SIZE
120 describe the virtual section. */
122 struct dwarf2_section_info
126 /* If this is a real section, the bfd section. */
128 /* If this is a virtual section, pointer to the containing ("real")
130 struct dwarf2_section_info *containing_section;
132 /* Pointer to section data, only valid if readin. */
133 const gdb_byte *buffer;
134 /* The size of the section, real or virtual. */
136 /* If this is a virtual section, the offset in the real section.
137 Only valid if is_virtual. */
138 bfd_size_type virtual_offset;
139 /* True if we have tried to read this section. */
141 /* True if this is a virtual section, False otherwise.
142 This specifies which of s.section and s.containing_section to use. */
146 typedef struct dwarf2_section_info dwarf2_section_info_def;
147 DEF_VEC_O (dwarf2_section_info_def);
149 /* All offsets in the index are of this type. It must be
150 architecture-independent. */
151 typedef uint32_t offset_type;
153 DEF_VEC_I (offset_type);
155 /* Ensure only legit values are used. */
156 #define DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE(cu_index, value) \
158 gdb_assert ((unsigned int) (value) <= 1); \
159 GDB_INDEX_SYMBOL_STATIC_SET_VALUE((cu_index), (value)); \
162 /* Ensure only legit values are used. */
163 #define DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE(cu_index, value) \
165 gdb_assert ((value) >= GDB_INDEX_SYMBOL_KIND_TYPE \
166 && (value) <= GDB_INDEX_SYMBOL_KIND_OTHER); \
167 GDB_INDEX_SYMBOL_KIND_SET_VALUE((cu_index), (value)); \
170 /* Ensure we don't use more than the alloted nuber of bits for the CU. */
171 #define DW2_GDB_INDEX_CU_SET_VALUE(cu_index, value) \
173 gdb_assert (((value) & ~GDB_INDEX_CU_MASK) == 0); \
174 GDB_INDEX_CU_SET_VALUE((cu_index), (value)); \
177 /* A description of the mapped index. The file format is described in
178 a comment by the code that writes the index. */
181 /* Index data format version. */
184 /* The total length of the buffer. */
187 /* A pointer to the address table data. */
188 const gdb_byte *address_table;
190 /* Size of the address table data in bytes. */
191 offset_type address_table_size;
193 /* The symbol table, implemented as a hash table. */
194 const offset_type *symbol_table;
196 /* Size in slots, each slot is 2 offset_types. */
197 offset_type symbol_table_slots;
199 /* A pointer to the constant pool. */
200 const char *constant_pool;
203 typedef struct dwarf2_per_cu_data *dwarf2_per_cu_ptr;
204 DEF_VEC_P (dwarf2_per_cu_ptr);
208 int nr_uniq_abbrev_tables;
210 int nr_symtab_sharers;
211 int nr_stmt_less_type_units;
212 int nr_all_type_units_reallocs;
215 /* Collection of data recorded per objfile.
216 This hangs off of dwarf2_objfile_data_key. */
218 struct dwarf2_per_objfile
220 struct dwarf2_section_info info;
221 struct dwarf2_section_info abbrev;
222 struct dwarf2_section_info line;
223 struct dwarf2_section_info loc;
224 struct dwarf2_section_info macinfo;
225 struct dwarf2_section_info macro;
226 struct dwarf2_section_info str;
227 struct dwarf2_section_info ranges;
228 struct dwarf2_section_info addr;
229 struct dwarf2_section_info frame;
230 struct dwarf2_section_info eh_frame;
231 struct dwarf2_section_info gdb_index;
233 VEC (dwarf2_section_info_def) *types;
236 struct objfile *objfile;
238 /* Table of all the compilation units. This is used to locate
239 the target compilation unit of a particular reference. */
240 struct dwarf2_per_cu_data **all_comp_units;
242 /* The number of compilation units in ALL_COMP_UNITS. */
245 /* The number of .debug_types-related CUs. */
248 /* The number of elements allocated in all_type_units.
249 If there are skeleton-less TUs, we add them to all_type_units lazily. */
250 int n_allocated_type_units;
252 /* The .debug_types-related CUs (TUs).
253 This is stored in malloc space because we may realloc it. */
254 struct signatured_type **all_type_units;
256 /* Table of struct type_unit_group objects.
257 The hash key is the DW_AT_stmt_list value. */
258 htab_t type_unit_groups;
260 /* A table mapping .debug_types signatures to its signatured_type entry.
261 This is NULL if the .debug_types section hasn't been read in yet. */
262 htab_t signatured_types;
264 /* Type unit statistics, to see how well the scaling improvements
266 struct tu_stats tu_stats;
268 /* A chain of compilation units that are currently read in, so that
269 they can be freed later. */
270 struct dwarf2_per_cu_data *read_in_chain;
272 /* A table mapping DW_AT_dwo_name values to struct dwo_file objects.
273 This is NULL if the table hasn't been allocated yet. */
276 /* Non-zero if we've check for whether there is a DWP file. */
279 /* The DWP file if there is one, or NULL. */
280 struct dwp_file *dwp_file;
282 /* The shared '.dwz' file, if one exists. This is used when the
283 original data was compressed using 'dwz -m'. */
284 struct dwz_file *dwz_file;
286 /* A flag indicating wether this objfile has a section loaded at a
288 int has_section_at_zero;
290 /* True if we are using the mapped index,
291 or we are faking it for OBJF_READNOW's sake. */
292 unsigned char using_index;
294 /* The mapped index, or NULL if .gdb_index is missing or not being used. */
295 struct mapped_index *index_table;
297 /* When using index_table, this keeps track of all quick_file_names entries.
298 TUs typically share line table entries with a CU, so we maintain a
299 separate table of all line table entries to support the sharing.
300 Note that while there can be way more TUs than CUs, we've already
301 sorted all the TUs into "type unit groups", grouped by their
302 DW_AT_stmt_list value. Therefore the only sharing done here is with a
303 CU and its associated TU group if there is one. */
304 htab_t quick_file_names_table;
306 /* Set during partial symbol reading, to prevent queueing of full
308 int reading_partial_symbols;
310 /* Table mapping type DIEs to their struct type *.
311 This is NULL if not allocated yet.
312 The mapping is done via (CU/TU + DIE offset) -> type. */
313 htab_t die_type_hash;
315 /* The CUs we recently read. */
316 VEC (dwarf2_per_cu_ptr) *just_read_cus;
318 /* Table containing line_header indexed by offset and offset_in_dwz. */
319 htab_t line_header_hash;
322 static struct dwarf2_per_objfile *dwarf2_per_objfile;
324 /* Default names of the debugging sections. */
326 /* Note that if the debugging section has been compressed, it might
327 have a name like .zdebug_info. */
329 static const struct dwarf2_debug_sections dwarf2_elf_names =
331 { ".debug_info", ".zdebug_info" },
332 { ".debug_abbrev", ".zdebug_abbrev" },
333 { ".debug_line", ".zdebug_line" },
334 { ".debug_loc", ".zdebug_loc" },
335 { ".debug_macinfo", ".zdebug_macinfo" },
336 { ".debug_macro", ".zdebug_macro" },
337 { ".debug_str", ".zdebug_str" },
338 { ".debug_ranges", ".zdebug_ranges" },
339 { ".debug_types", ".zdebug_types" },
340 { ".debug_addr", ".zdebug_addr" },
341 { ".debug_frame", ".zdebug_frame" },
342 { ".eh_frame", NULL },
343 { ".gdb_index", ".zgdb_index" },
347 /* List of DWO/DWP sections. */
349 static const struct dwop_section_names
351 struct dwarf2_section_names abbrev_dwo;
352 struct dwarf2_section_names info_dwo;
353 struct dwarf2_section_names line_dwo;
354 struct dwarf2_section_names loc_dwo;
355 struct dwarf2_section_names macinfo_dwo;
356 struct dwarf2_section_names macro_dwo;
357 struct dwarf2_section_names str_dwo;
358 struct dwarf2_section_names str_offsets_dwo;
359 struct dwarf2_section_names types_dwo;
360 struct dwarf2_section_names cu_index;
361 struct dwarf2_section_names tu_index;
365 { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo" },
366 { ".debug_info.dwo", ".zdebug_info.dwo" },
367 { ".debug_line.dwo", ".zdebug_line.dwo" },
368 { ".debug_loc.dwo", ".zdebug_loc.dwo" },
369 { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo" },
370 { ".debug_macro.dwo", ".zdebug_macro.dwo" },
371 { ".debug_str.dwo", ".zdebug_str.dwo" },
372 { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo" },
373 { ".debug_types.dwo", ".zdebug_types.dwo" },
374 { ".debug_cu_index", ".zdebug_cu_index" },
375 { ".debug_tu_index", ".zdebug_tu_index" },
378 /* local data types */
380 /* The data in a compilation unit header, after target2host
381 translation, looks like this. */
382 struct comp_unit_head
386 unsigned char addr_size;
387 unsigned char signed_addr_p;
388 sect_offset abbrev_offset;
390 /* Size of file offsets; either 4 or 8. */
391 unsigned int offset_size;
393 /* Size of the length field; either 4 or 12. */
394 unsigned int initial_length_size;
396 /* Offset to the first byte of this compilation unit header in the
397 .debug_info section, for resolving relative reference dies. */
400 /* Offset to first die in this cu from the start of the cu.
401 This will be the first byte following the compilation unit header. */
402 cu_offset first_die_offset;
405 /* Type used for delaying computation of method physnames.
406 See comments for compute_delayed_physnames. */
407 struct delayed_method_info
409 /* The type to which the method is attached, i.e., its parent class. */
412 /* The index of the method in the type's function fieldlists. */
415 /* The index of the method in the fieldlist. */
418 /* The name of the DIE. */
421 /* The DIE associated with this method. */
422 struct die_info *die;
425 typedef struct delayed_method_info delayed_method_info;
426 DEF_VEC_O (delayed_method_info);
428 /* Internal state when decoding a particular compilation unit. */
431 /* The objfile containing this compilation unit. */
432 struct objfile *objfile;
434 /* The header of the compilation unit. */
435 struct comp_unit_head header;
437 /* Base address of this compilation unit. */
438 CORE_ADDR base_address;
440 /* Non-zero if base_address has been set. */
443 /* The language we are debugging. */
444 enum language language;
445 const struct language_defn *language_defn;
447 const char *producer;
449 /* The generic symbol table building routines have separate lists for
450 file scope symbols and all all other scopes (local scopes). So
451 we need to select the right one to pass to add_symbol_to_list().
452 We do it by keeping a pointer to the correct list in list_in_scope.
454 FIXME: The original dwarf code just treated the file scope as the
455 first local scope, and all other local scopes as nested local
456 scopes, and worked fine. Check to see if we really need to
457 distinguish these in buildsym.c. */
458 struct pending **list_in_scope;
460 /* The abbrev table for this CU.
461 Normally this points to the abbrev table in the objfile.
462 But if DWO_UNIT is non-NULL this is the abbrev table in the DWO file. */
463 struct abbrev_table *abbrev_table;
465 /* Hash table holding all the loaded partial DIEs
466 with partial_die->offset.SECT_OFF as hash. */
469 /* Storage for things with the same lifetime as this read-in compilation
470 unit, including partial DIEs. */
471 struct obstack comp_unit_obstack;
473 /* When multiple dwarf2_cu structures are living in memory, this field
474 chains them all together, so that they can be released efficiently.
475 We will probably also want a generation counter so that most-recently-used
476 compilation units are cached... */
477 struct dwarf2_per_cu_data *read_in_chain;
479 /* Backlink to our per_cu entry. */
480 struct dwarf2_per_cu_data *per_cu;
482 /* How many compilation units ago was this CU last referenced? */
485 /* A hash table of DIE cu_offset for following references with
486 die_info->offset.sect_off as hash. */
489 /* Full DIEs if read in. */
490 struct die_info *dies;
492 /* A set of pointers to dwarf2_per_cu_data objects for compilation
493 units referenced by this one. Only set during full symbol processing;
494 partial symbol tables do not have dependencies. */
497 /* Header data from the line table, during full symbol processing. */
498 struct line_header *line_header;
500 /* A list of methods which need to have physnames computed
501 after all type information has been read. */
502 VEC (delayed_method_info) *method_list;
504 /* To be copied to symtab->call_site_htab. */
505 htab_t call_site_htab;
507 /* Non-NULL if this CU came from a DWO file.
508 There is an invariant here that is important to remember:
509 Except for attributes copied from the top level DIE in the "main"
510 (or "stub") file in preparation for reading the DWO file
511 (e.g., DW_AT_GNU_addr_base), we KISS: there is only *one* CU.
512 Either there isn't a DWO file (in which case this is NULL and the point
513 is moot), or there is and either we're not going to read it (in which
514 case this is NULL) or there is and we are reading it (in which case this
516 struct dwo_unit *dwo_unit;
518 /* The DW_AT_addr_base attribute if present, zero otherwise
519 (zero is a valid value though).
520 Note this value comes from the Fission stub CU/TU's DIE. */
523 /* The DW_AT_ranges_base attribute if present, zero otherwise
524 (zero is a valid value though).
525 Note this value comes from the Fission stub CU/TU's DIE.
526 Also note that the value is zero in the non-DWO case so this value can
527 be used without needing to know whether DWO files are in use or not.
528 N.B. This does not apply to DW_AT_ranges appearing in
529 DW_TAG_compile_unit dies. This is a bit of a wart, consider if ever
530 DW_AT_ranges appeared in the DW_TAG_compile_unit of DWO DIEs: then
531 DW_AT_ranges_base *would* have to be applied, and we'd have to care
532 whether the DW_AT_ranges attribute came from the skeleton or DWO. */
533 ULONGEST ranges_base;
535 /* Mark used when releasing cached dies. */
536 unsigned int mark : 1;
538 /* This CU references .debug_loc. See the symtab->locations_valid field.
539 This test is imperfect as there may exist optimized debug code not using
540 any location list and still facing inlining issues if handled as
541 unoptimized code. For a future better test see GCC PR other/32998. */
542 unsigned int has_loclist : 1;
544 /* These cache the results for producer_is_* fields. CHECKED_PRODUCER is set
545 if all the producer_is_* fields are valid. This information is cached
546 because profiling CU expansion showed excessive time spent in
547 producer_is_gxx_lt_4_6. */
548 unsigned int checked_producer : 1;
549 unsigned int producer_is_gxx_lt_4_6 : 1;
550 unsigned int producer_is_gcc_lt_4_3 : 1;
551 unsigned int producer_is_icc : 1;
553 /* When set, the file that we're processing is known to have
554 debugging info for C++ namespaces. GCC 3.3.x did not produce
555 this information, but later versions do. */
557 unsigned int processing_has_namespace_info : 1;
560 /* Persistent data held for a compilation unit, even when not
561 processing it. We put a pointer to this structure in the
562 read_symtab_private field of the psymtab. */
564 struct dwarf2_per_cu_data
566 /* The start offset and length of this compilation unit.
567 NOTE: Unlike comp_unit_head.length, this length includes
569 If the DIE refers to a DWO file, this is always of the original die,
574 /* Flag indicating this compilation unit will be read in before
575 any of the current compilation units are processed. */
576 unsigned int queued : 1;
578 /* This flag will be set when reading partial DIEs if we need to load
579 absolutely all DIEs for this compilation unit, instead of just the ones
580 we think are interesting. It gets set if we look for a DIE in the
581 hash table and don't find it. */
582 unsigned int load_all_dies : 1;
584 /* Non-zero if this CU is from .debug_types.
585 Struct dwarf2_per_cu_data is contained in struct signatured_type iff
587 unsigned int is_debug_types : 1;
589 /* Non-zero if this CU is from the .dwz file. */
590 unsigned int is_dwz : 1;
592 /* Non-zero if reading a TU directly from a DWO file, bypassing the stub.
593 This flag is only valid if is_debug_types is true.
594 We can't read a CU directly from a DWO file: There are required
595 attributes in the stub. */
596 unsigned int reading_dwo_directly : 1;
598 /* Non-zero if the TU has been read.
599 This is used to assist the "Stay in DWO Optimization" for Fission:
600 When reading a DWO, it's faster to read TUs from the DWO instead of
601 fetching them from random other DWOs (due to comdat folding).
602 If the TU has already been read, the optimization is unnecessary
603 (and unwise - we don't want to change where gdb thinks the TU lives
605 This flag is only valid if is_debug_types is true. */
606 unsigned int tu_read : 1;
608 /* The section this CU/TU lives in.
609 If the DIE refers to a DWO file, this is always the original die,
611 struct dwarf2_section_info *section;
613 /* Set to non-NULL iff this CU is currently loaded. When it gets freed out
614 of the CU cache it gets reset to NULL again. This is left as NULL for
615 dummy CUs (a CU header, but nothing else). */
616 struct dwarf2_cu *cu;
618 /* The corresponding objfile.
619 Normally we can get the objfile from dwarf2_per_objfile.
620 However we can enter this file with just a "per_cu" handle. */
621 struct objfile *objfile;
623 /* When dwarf2_per_objfile->using_index is true, the 'quick' field
624 is active. Otherwise, the 'psymtab' field is active. */
627 /* The partial symbol table associated with this compilation unit,
628 or NULL for unread partial units. */
629 struct partial_symtab *psymtab;
631 /* Data needed by the "quick" functions. */
632 struct dwarf2_per_cu_quick_data *quick;
635 /* The CUs we import using DW_TAG_imported_unit. This is filled in
636 while reading psymtabs, used to compute the psymtab dependencies,
637 and then cleared. Then it is filled in again while reading full
638 symbols, and only deleted when the objfile is destroyed.
640 This is also used to work around a difference between the way gold
641 generates .gdb_index version <=7 and the way gdb does. Arguably this
642 is a gold bug. For symbols coming from TUs, gold records in the index
643 the CU that includes the TU instead of the TU itself. This breaks
644 dw2_lookup_symbol: It assumes that if the index says symbol X lives
645 in CU/TU Y, then one need only expand Y and a subsequent lookup in Y
646 will find X. Alas TUs live in their own symtab, so after expanding CU Y
647 we need to look in TU Z to find X. Fortunately, this is akin to
648 DW_TAG_imported_unit, so we just use the same mechanism: For
649 .gdb_index version <=7 this also records the TUs that the CU referred
650 to. Concurrently with this change gdb was modified to emit version 8
651 indices so we only pay a price for gold generated indices.
652 http://sourceware.org/bugzilla/show_bug.cgi?id=15021. */
653 VEC (dwarf2_per_cu_ptr) *imported_symtabs;
656 /* Entry in the signatured_types hash table. */
658 struct signatured_type
660 /* The "per_cu" object of this type.
661 This struct is used iff per_cu.is_debug_types.
662 N.B.: This is the first member so that it's easy to convert pointers
664 struct dwarf2_per_cu_data per_cu;
666 /* The type's signature. */
669 /* Offset in the TU of the type's DIE, as read from the TU header.
670 If this TU is a DWO stub and the definition lives in a DWO file
671 (specified by DW_AT_GNU_dwo_name), this value is unusable. */
672 cu_offset type_offset_in_tu;
674 /* Offset in the section of the type's DIE.
675 If the definition lives in a DWO file, this is the offset in the
676 .debug_types.dwo section.
677 The value is zero until the actual value is known.
678 Zero is otherwise not a valid section offset. */
679 sect_offset type_offset_in_section;
681 /* Type units are grouped by their DW_AT_stmt_list entry so that they
682 can share them. This points to the containing symtab. */
683 struct type_unit_group *type_unit_group;
686 The first time we encounter this type we fully read it in and install it
687 in the symbol tables. Subsequent times we only need the type. */
690 /* Containing DWO unit.
691 This field is valid iff per_cu.reading_dwo_directly. */
692 struct dwo_unit *dwo_unit;
695 typedef struct signatured_type *sig_type_ptr;
696 DEF_VEC_P (sig_type_ptr);
698 /* A struct that can be used as a hash key for tables based on DW_AT_stmt_list.
699 This includes type_unit_group and quick_file_names. */
701 struct stmt_list_hash
703 /* The DWO unit this table is from or NULL if there is none. */
704 struct dwo_unit *dwo_unit;
706 /* Offset in .debug_line or .debug_line.dwo. */
707 sect_offset line_offset;
710 /* Each element of dwarf2_per_objfile->type_unit_groups is a pointer to
711 an object of this type. */
713 struct type_unit_group
715 /* dwarf2read.c's main "handle" on a TU symtab.
716 To simplify things we create an artificial CU that "includes" all the
717 type units using this stmt_list so that the rest of the code still has
718 a "per_cu" handle on the symtab.
719 This PER_CU is recognized by having no section. */
720 #define IS_TYPE_UNIT_GROUP(per_cu) ((per_cu)->section == NULL)
721 struct dwarf2_per_cu_data per_cu;
723 /* The TUs that share this DW_AT_stmt_list entry.
724 This is added to while parsing type units to build partial symtabs,
725 and is deleted afterwards and not used again. */
726 VEC (sig_type_ptr) *tus;
728 /* The compunit symtab.
729 Type units in a group needn't all be defined in the same source file,
730 so we create an essentially anonymous symtab as the compunit symtab. */
731 struct compunit_symtab *compunit_symtab;
733 /* The data used to construct the hash key. */
734 struct stmt_list_hash hash;
736 /* The number of symtabs from the line header.
737 The value here must match line_header.num_file_names. */
738 unsigned int num_symtabs;
740 /* The symbol tables for this TU (obtained from the files listed in
742 WARNING: The order of entries here must match the order of entries
743 in the line header. After the first TU using this type_unit_group, the
744 line header for the subsequent TUs is recreated from this. This is done
745 because we need to use the same symtabs for each TU using the same
746 DW_AT_stmt_list value. Also note that symtabs may be repeated here,
747 there's no guarantee the line header doesn't have duplicate entries. */
748 struct symtab **symtabs;
751 /* These sections are what may appear in a (real or virtual) DWO file. */
755 struct dwarf2_section_info abbrev;
756 struct dwarf2_section_info line;
757 struct dwarf2_section_info loc;
758 struct dwarf2_section_info macinfo;
759 struct dwarf2_section_info macro;
760 struct dwarf2_section_info str;
761 struct dwarf2_section_info str_offsets;
762 /* In the case of a virtual DWO file, these two are unused. */
763 struct dwarf2_section_info info;
764 VEC (dwarf2_section_info_def) *types;
767 /* CUs/TUs in DWP/DWO files. */
771 /* Backlink to the containing struct dwo_file. */
772 struct dwo_file *dwo_file;
774 /* The "id" that distinguishes this CU/TU.
775 .debug_info calls this "dwo_id", .debug_types calls this "signature".
776 Since signatures came first, we stick with it for consistency. */
779 /* The section this CU/TU lives in, in the DWO file. */
780 struct dwarf2_section_info *section;
782 /* Same as dwarf2_per_cu_data:{offset,length} but in the DWO section. */
786 /* For types, offset in the type's DIE of the type defined by this TU. */
787 cu_offset type_offset_in_tu;
790 /* include/dwarf2.h defines the DWP section codes.
791 It defines a max value but it doesn't define a min value, which we
792 use for error checking, so provide one. */
794 enum dwp_v2_section_ids
799 /* Data for one DWO file.
801 This includes virtual DWO files (a virtual DWO file is a DWO file as it
802 appears in a DWP file). DWP files don't really have DWO files per se -
803 comdat folding of types "loses" the DWO file they came from, and from
804 a high level view DWP files appear to contain a mass of random types.
805 However, to maintain consistency with the non-DWP case we pretend DWP
806 files contain virtual DWO files, and we assign each TU with one virtual
807 DWO file (generally based on the line and abbrev section offsets -
808 a heuristic that seems to work in practice). */
812 /* The DW_AT_GNU_dwo_name attribute.
813 For virtual DWO files the name is constructed from the section offsets
814 of abbrev,line,loc,str_offsets so that we combine virtual DWO files
815 from related CU+TUs. */
816 const char *dwo_name;
818 /* The DW_AT_comp_dir attribute. */
819 const char *comp_dir;
821 /* The bfd, when the file is open. Otherwise this is NULL.
822 This is unused(NULL) for virtual DWO files where we use dwp_file.dbfd. */
825 /* The sections that make up this DWO file.
826 Remember that for virtual DWO files in DWP V2, these are virtual
827 sections (for lack of a better name). */
828 struct dwo_sections sections;
830 /* The CU in the file.
831 We only support one because having more than one requires hacking the
832 dwo_name of each to match, which is highly unlikely to happen.
833 Doing this means all TUs can share comp_dir: We also assume that
834 DW_AT_comp_dir across all TUs in a DWO file will be identical. */
837 /* Table of TUs in the file.
838 Each element is a struct dwo_unit. */
842 /* These sections are what may appear in a DWP file. */
846 /* These are used by both DWP version 1 and 2. */
847 struct dwarf2_section_info str;
848 struct dwarf2_section_info cu_index;
849 struct dwarf2_section_info tu_index;
851 /* These are only used by DWP version 2 files.
852 In DWP version 1 the .debug_info.dwo, .debug_types.dwo, and other
853 sections are referenced by section number, and are not recorded here.
854 In DWP version 2 there is at most one copy of all these sections, each
855 section being (effectively) comprised of the concatenation of all of the
856 individual sections that exist in the version 1 format.
857 To keep the code simple we treat each of these concatenated pieces as a
858 section itself (a virtual section?). */
859 struct dwarf2_section_info abbrev;
860 struct dwarf2_section_info info;
861 struct dwarf2_section_info line;
862 struct dwarf2_section_info loc;
863 struct dwarf2_section_info macinfo;
864 struct dwarf2_section_info macro;
865 struct dwarf2_section_info str_offsets;
866 struct dwarf2_section_info types;
869 /* These sections are what may appear in a virtual DWO file in DWP version 1.
870 A virtual DWO file is a DWO file as it appears in a DWP file. */
872 struct virtual_v1_dwo_sections
874 struct dwarf2_section_info abbrev;
875 struct dwarf2_section_info line;
876 struct dwarf2_section_info loc;
877 struct dwarf2_section_info macinfo;
878 struct dwarf2_section_info macro;
879 struct dwarf2_section_info str_offsets;
880 /* Each DWP hash table entry records one CU or one TU.
881 That is recorded here, and copied to dwo_unit.section. */
882 struct dwarf2_section_info info_or_types;
885 /* Similar to virtual_v1_dwo_sections, but for DWP version 2.
886 In version 2, the sections of the DWO files are concatenated together
887 and stored in one section of that name. Thus each ELF section contains
888 several "virtual" sections. */
890 struct virtual_v2_dwo_sections
892 bfd_size_type abbrev_offset;
893 bfd_size_type abbrev_size;
895 bfd_size_type line_offset;
896 bfd_size_type line_size;
898 bfd_size_type loc_offset;
899 bfd_size_type loc_size;
901 bfd_size_type macinfo_offset;
902 bfd_size_type macinfo_size;
904 bfd_size_type macro_offset;
905 bfd_size_type macro_size;
907 bfd_size_type str_offsets_offset;
908 bfd_size_type str_offsets_size;
910 /* Each DWP hash table entry records one CU or one TU.
911 That is recorded here, and copied to dwo_unit.section. */
912 bfd_size_type info_or_types_offset;
913 bfd_size_type info_or_types_size;
916 /* Contents of DWP hash tables. */
918 struct dwp_hash_table
920 uint32_t version, nr_columns;
921 uint32_t nr_units, nr_slots;
922 const gdb_byte *hash_table, *unit_table;
927 const gdb_byte *indices;
931 /* This is indexed by column number and gives the id of the section
933 #define MAX_NR_V2_DWO_SECTIONS \
934 (1 /* .debug_info or .debug_types */ \
935 + 1 /* .debug_abbrev */ \
936 + 1 /* .debug_line */ \
937 + 1 /* .debug_loc */ \
938 + 1 /* .debug_str_offsets */ \
939 + 1 /* .debug_macro or .debug_macinfo */)
940 int section_ids[MAX_NR_V2_DWO_SECTIONS];
941 const gdb_byte *offsets;
942 const gdb_byte *sizes;
947 /* Data for one DWP file. */
951 /* Name of the file. */
954 /* File format version. */
960 /* Section info for this file. */
961 struct dwp_sections sections;
963 /* Table of CUs in the file. */
964 const struct dwp_hash_table *cus;
966 /* Table of TUs in the file. */
967 const struct dwp_hash_table *tus;
969 /* Tables of loaded CUs/TUs. Each entry is a struct dwo_unit *. */
973 /* Table to map ELF section numbers to their sections.
974 This is only needed for the DWP V1 file format. */
975 unsigned int num_sections;
976 asection **elf_sections;
979 /* This represents a '.dwz' file. */
983 /* A dwz file can only contain a few sections. */
984 struct dwarf2_section_info abbrev;
985 struct dwarf2_section_info info;
986 struct dwarf2_section_info str;
987 struct dwarf2_section_info line;
988 struct dwarf2_section_info macro;
989 struct dwarf2_section_info gdb_index;
995 /* Struct used to pass misc. parameters to read_die_and_children, et
996 al. which are used for both .debug_info and .debug_types dies.
997 All parameters here are unchanging for the life of the call. This
998 struct exists to abstract away the constant parameters of die reading. */
1000 struct die_reader_specs
1002 /* The bfd of die_section. */
1005 /* The CU of the DIE we are parsing. */
1006 struct dwarf2_cu *cu;
1008 /* Non-NULL if reading a DWO file (including one packaged into a DWP). */
1009 struct dwo_file *dwo_file;
1011 /* The section the die comes from.
1012 This is either .debug_info or .debug_types, or the .dwo variants. */
1013 struct dwarf2_section_info *die_section;
1015 /* die_section->buffer. */
1016 const gdb_byte *buffer;
1018 /* The end of the buffer. */
1019 const gdb_byte *buffer_end;
1021 /* The value of the DW_AT_comp_dir attribute. */
1022 const char *comp_dir;
1025 /* Type of function passed to init_cutu_and_read_dies, et.al. */
1026 typedef void (die_reader_func_ftype) (const struct die_reader_specs *reader,
1027 const gdb_byte *info_ptr,
1028 struct die_info *comp_unit_die,
1035 unsigned int dir_index;
1036 unsigned int mod_time;
1037 unsigned int length;
1038 /* Non-zero if referenced by the Line Number Program. */
1040 /* The associated symbol table, if any. */
1041 struct symtab *symtab;
1044 /* The line number information for a compilation unit (found in the
1045 .debug_line section) begins with a "statement program header",
1046 which contains the following information. */
1049 /* Offset of line number information in .debug_line section. */
1052 /* OFFSET is for struct dwz_file associated with dwarf2_per_objfile. */
1053 unsigned offset_in_dwz : 1;
1055 unsigned int total_length;
1056 unsigned short version;
1057 unsigned int header_length;
1058 unsigned char minimum_instruction_length;
1059 unsigned char maximum_ops_per_instruction;
1060 unsigned char default_is_stmt;
1062 unsigned char line_range;
1063 unsigned char opcode_base;
1065 /* standard_opcode_lengths[i] is the number of operands for the
1066 standard opcode whose value is i. This means that
1067 standard_opcode_lengths[0] is unused, and the last meaningful
1068 element is standard_opcode_lengths[opcode_base - 1]. */
1069 unsigned char *standard_opcode_lengths;
1071 /* The include_directories table. NOTE! These strings are not
1072 allocated with xmalloc; instead, they are pointers into
1073 debug_line_buffer. If you try to free them, `free' will get
1075 unsigned int num_include_dirs, include_dirs_size;
1076 const char **include_dirs;
1078 /* The file_names table. NOTE! These strings are not allocated
1079 with xmalloc; instead, they are pointers into debug_line_buffer.
1080 Don't try to free them directly. */
1081 unsigned int num_file_names, file_names_size;
1082 struct file_entry *file_names;
1084 /* The start and end of the statement program following this
1085 header. These point into dwarf2_per_objfile->line_buffer. */
1086 const gdb_byte *statement_program_start, *statement_program_end;
1089 /* When we construct a partial symbol table entry we only
1090 need this much information. */
1091 struct partial_die_info
1093 /* Offset of this DIE. */
1096 /* DWARF-2 tag for this DIE. */
1097 ENUM_BITFIELD(dwarf_tag) tag : 16;
1099 /* Assorted flags describing the data found in this DIE. */
1100 unsigned int has_children : 1;
1101 unsigned int is_external : 1;
1102 unsigned int is_declaration : 1;
1103 unsigned int has_type : 1;
1104 unsigned int has_specification : 1;
1105 unsigned int has_pc_info : 1;
1106 unsigned int may_be_inlined : 1;
1108 /* Flag set if the SCOPE field of this structure has been
1110 unsigned int scope_set : 1;
1112 /* Flag set if the DIE has a byte_size attribute. */
1113 unsigned int has_byte_size : 1;
1115 /* Flag set if the DIE has a DW_AT_const_value attribute. */
1116 unsigned int has_const_value : 1;
1118 /* Flag set if any of the DIE's children are template arguments. */
1119 unsigned int has_template_arguments : 1;
1121 /* Flag set if fixup_partial_die has been called on this die. */
1122 unsigned int fixup_called : 1;
1124 /* Flag set if DW_TAG_imported_unit uses DW_FORM_GNU_ref_alt. */
1125 unsigned int is_dwz : 1;
1127 /* Flag set if spec_offset uses DW_FORM_GNU_ref_alt. */
1128 unsigned int spec_is_dwz : 1;
1130 /* The name of this DIE. Normally the value of DW_AT_name, but
1131 sometimes a default name for unnamed DIEs. */
1134 /* The linkage name, if present. */
1135 const char *linkage_name;
1137 /* The scope to prepend to our children. This is generally
1138 allocated on the comp_unit_obstack, so will disappear
1139 when this compilation unit leaves the cache. */
1142 /* Some data associated with the partial DIE. The tag determines
1143 which field is live. */
1146 /* The location description associated with this DIE, if any. */
1147 struct dwarf_block *locdesc;
1148 /* The offset of an import, for DW_TAG_imported_unit. */
1152 /* If HAS_PC_INFO, the PC range associated with this DIE. */
1156 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
1157 DW_AT_sibling, if any. */
1158 /* NOTE: This member isn't strictly necessary, read_partial_die could
1159 return DW_AT_sibling values to its caller load_partial_dies. */
1160 const gdb_byte *sibling;
1162 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
1163 DW_AT_specification (or DW_AT_abstract_origin or
1164 DW_AT_extension). */
1165 sect_offset spec_offset;
1167 /* Pointers to this DIE's parent, first child, and next sibling,
1169 struct partial_die_info *die_parent, *die_child, *die_sibling;
1172 /* This data structure holds the information of an abbrev. */
1175 unsigned int number; /* number identifying abbrev */
1176 enum dwarf_tag tag; /* dwarf tag */
1177 unsigned short has_children; /* boolean */
1178 unsigned short num_attrs; /* number of attributes */
1179 struct attr_abbrev *attrs; /* an array of attribute descriptions */
1180 struct abbrev_info *next; /* next in chain */
1185 ENUM_BITFIELD(dwarf_attribute) name : 16;
1186 ENUM_BITFIELD(dwarf_form) form : 16;
1189 /* Size of abbrev_table.abbrev_hash_table. */
1190 #define ABBREV_HASH_SIZE 121
1192 /* Top level data structure to contain an abbreviation table. */
1196 /* Where the abbrev table came from.
1197 This is used as a sanity check when the table is used. */
1200 /* Storage for the abbrev table. */
1201 struct obstack abbrev_obstack;
1203 /* Hash table of abbrevs.
1204 This is an array of size ABBREV_HASH_SIZE allocated in abbrev_obstack.
1205 It could be statically allocated, but the previous code didn't so we
1207 struct abbrev_info **abbrevs;
1210 /* Attributes have a name and a value. */
1213 ENUM_BITFIELD(dwarf_attribute) name : 16;
1214 ENUM_BITFIELD(dwarf_form) form : 15;
1216 /* Has DW_STRING already been updated by dwarf2_canonicalize_name? This
1217 field should be in u.str (existing only for DW_STRING) but it is kept
1218 here for better struct attribute alignment. */
1219 unsigned int string_is_canonical : 1;
1224 struct dwarf_block *blk;
1233 /* This data structure holds a complete die structure. */
1236 /* DWARF-2 tag for this DIE. */
1237 ENUM_BITFIELD(dwarf_tag) tag : 16;
1239 /* Number of attributes */
1240 unsigned char num_attrs;
1242 /* True if we're presently building the full type name for the
1243 type derived from this DIE. */
1244 unsigned char building_fullname : 1;
1246 /* True if this die is in process. PR 16581. */
1247 unsigned char in_process : 1;
1250 unsigned int abbrev;
1252 /* Offset in .debug_info or .debug_types section. */
1255 /* The dies in a compilation unit form an n-ary tree. PARENT
1256 points to this die's parent; CHILD points to the first child of
1257 this node; and all the children of a given node are chained
1258 together via their SIBLING fields. */
1259 struct die_info *child; /* Its first child, if any. */
1260 struct die_info *sibling; /* Its next sibling, if any. */
1261 struct die_info *parent; /* Its parent, if any. */
1263 /* An array of attributes, with NUM_ATTRS elements. There may be
1264 zero, but it's not common and zero-sized arrays are not
1265 sufficiently portable C. */
1266 struct attribute attrs[1];
1269 /* Get at parts of an attribute structure. */
1271 #define DW_STRING(attr) ((attr)->u.str)
1272 #define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
1273 #define DW_UNSND(attr) ((attr)->u.unsnd)
1274 #define DW_BLOCK(attr) ((attr)->u.blk)
1275 #define DW_SND(attr) ((attr)->u.snd)
1276 #define DW_ADDR(attr) ((attr)->u.addr)
1277 #define DW_SIGNATURE(attr) ((attr)->u.signature)
1279 /* Blocks are a bunch of untyped bytes. */
1284 /* Valid only if SIZE is not zero. */
1285 const gdb_byte *data;
1288 #ifndef ATTR_ALLOC_CHUNK
1289 #define ATTR_ALLOC_CHUNK 4
1292 /* Allocate fields for structs, unions and enums in this size. */
1293 #ifndef DW_FIELD_ALLOC_CHUNK
1294 #define DW_FIELD_ALLOC_CHUNK 4
1297 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
1298 but this would require a corresponding change in unpack_field_as_long
1300 static int bits_per_byte = 8;
1304 struct nextfield *next;
1312 struct nextfnfield *next;
1313 struct fn_field fnfield;
1320 struct nextfnfield *head;
1323 struct typedef_field_list
1325 struct typedef_field field;
1326 struct typedef_field_list *next;
1329 /* The routines that read and process dies for a C struct or C++ class
1330 pass lists of data member fields and lists of member function fields
1331 in an instance of a field_info structure, as defined below. */
1334 /* List of data member and baseclasses fields. */
1335 struct nextfield *fields, *baseclasses;
1337 /* Number of fields (including baseclasses). */
1340 /* Number of baseclasses. */
1343 /* Set if the accesibility of one of the fields is not public. */
1344 int non_public_fields;
1346 /* Member function fields array, entries are allocated in the order they
1347 are encountered in the object file. */
1348 struct nextfnfield *fnfields;
1350 /* Member function fieldlist array, contains name of possibly overloaded
1351 member function, number of overloaded member functions and a pointer
1352 to the head of the member function field chain. */
1353 struct fnfieldlist *fnfieldlists;
1355 /* Number of entries in the fnfieldlists array. */
1358 /* typedefs defined inside this class. TYPEDEF_FIELD_LIST contains head of
1359 a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements. */
1360 struct typedef_field_list *typedef_field_list;
1361 unsigned typedef_field_list_count;
1364 /* One item on the queue of compilation units to read in full symbols
1366 struct dwarf2_queue_item
1368 struct dwarf2_per_cu_data *per_cu;
1369 enum language pretend_language;
1370 struct dwarf2_queue_item *next;
1373 /* The current queue. */
1374 static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
1376 /* Loaded secondary compilation units are kept in memory until they
1377 have not been referenced for the processing of this many
1378 compilation units. Set this to zero to disable caching. Cache
1379 sizes of up to at least twenty will improve startup time for
1380 typical inter-CU-reference binaries, at an obvious memory cost. */
1381 static int dwarf_max_cache_age = 5;
1383 show_dwarf_max_cache_age (struct ui_file *file, int from_tty,
1384 struct cmd_list_element *c, const char *value)
1386 fprintf_filtered (file, _("The upper bound on the age of cached "
1387 "DWARF compilation units is %s.\n"),
1391 /* local function prototypes */
1393 static const char *get_section_name (const struct dwarf2_section_info *);
1395 static const char *get_section_file_name (const struct dwarf2_section_info *);
1397 static void dwarf2_locate_sections (bfd *, asection *, void *);
1399 static void dwarf2_find_base_address (struct die_info *die,
1400 struct dwarf2_cu *cu);
1402 static struct partial_symtab *create_partial_symtab
1403 (struct dwarf2_per_cu_data *per_cu, const char *name);
1405 static void dwarf2_build_psymtabs_hard (struct objfile *);
1407 static void scan_partial_symbols (struct partial_die_info *,
1408 CORE_ADDR *, CORE_ADDR *,
1409 int, struct dwarf2_cu *);
1411 static void add_partial_symbol (struct partial_die_info *,
1412 struct dwarf2_cu *);
1414 static void add_partial_namespace (struct partial_die_info *pdi,
1415 CORE_ADDR *lowpc, CORE_ADDR *highpc,
1416 int set_addrmap, struct dwarf2_cu *cu);
1418 static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
1419 CORE_ADDR *highpc, int set_addrmap,
1420 struct dwarf2_cu *cu);
1422 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
1423 struct dwarf2_cu *cu);
1425 static void add_partial_subprogram (struct partial_die_info *pdi,
1426 CORE_ADDR *lowpc, CORE_ADDR *highpc,
1427 int need_pc, struct dwarf2_cu *cu);
1429 static void dwarf2_read_symtab (struct partial_symtab *,
1432 static void psymtab_to_symtab_1 (struct partial_symtab *);
1434 static struct abbrev_info *abbrev_table_lookup_abbrev
1435 (const struct abbrev_table *, unsigned int);
1437 static struct abbrev_table *abbrev_table_read_table
1438 (struct dwarf2_section_info *, sect_offset);
1440 static void abbrev_table_free (struct abbrev_table *);
1442 static void abbrev_table_free_cleanup (void *);
1444 static void dwarf2_read_abbrevs (struct dwarf2_cu *,
1445 struct dwarf2_section_info *);
1447 static void dwarf2_free_abbrev_table (void *);
1449 static unsigned int peek_abbrev_code (bfd *, const gdb_byte *);
1451 static struct partial_die_info *load_partial_dies
1452 (const struct die_reader_specs *, const gdb_byte *, int);
1454 static const gdb_byte *read_partial_die (const struct die_reader_specs *,
1455 struct partial_die_info *,
1456 struct abbrev_info *,
1460 static struct partial_die_info *find_partial_die (sect_offset, int,
1461 struct dwarf2_cu *);
1463 static void fixup_partial_die (struct partial_die_info *,
1464 struct dwarf2_cu *);
1466 static const gdb_byte *read_attribute (const struct die_reader_specs *,
1467 struct attribute *, struct attr_abbrev *,
1470 static unsigned int read_1_byte (bfd *, const gdb_byte *);
1472 static int read_1_signed_byte (bfd *, const gdb_byte *);
1474 static unsigned int read_2_bytes (bfd *, const gdb_byte *);
1476 static unsigned int read_4_bytes (bfd *, const gdb_byte *);
1478 static ULONGEST read_8_bytes (bfd *, const gdb_byte *);
1480 static CORE_ADDR read_address (bfd *, const gdb_byte *ptr, struct dwarf2_cu *,
1483 static LONGEST read_initial_length (bfd *, const gdb_byte *, unsigned int *);
1485 static LONGEST read_checked_initial_length_and_offset
1486 (bfd *, const gdb_byte *, const struct comp_unit_head *,
1487 unsigned int *, unsigned int *);
1489 static LONGEST read_offset (bfd *, const gdb_byte *,
1490 const struct comp_unit_head *,
1493 static LONGEST read_offset_1 (bfd *, const gdb_byte *, unsigned int);
1495 static sect_offset read_abbrev_offset (struct dwarf2_section_info *,
1498 static const gdb_byte *read_n_bytes (bfd *, const gdb_byte *, unsigned int);
1500 static const char *read_direct_string (bfd *, const gdb_byte *, unsigned int *);
1502 static const char *read_indirect_string (bfd *, const gdb_byte *,
1503 const struct comp_unit_head *,
1506 static const char *read_indirect_string_from_dwz (struct dwz_file *, LONGEST);
1508 static ULONGEST read_unsigned_leb128 (bfd *, const gdb_byte *, unsigned int *);
1510 static LONGEST read_signed_leb128 (bfd *, const gdb_byte *, unsigned int *);
1512 static CORE_ADDR read_addr_index_from_leb128 (struct dwarf2_cu *,
1516 static const char *read_str_index (const struct die_reader_specs *reader,
1517 ULONGEST str_index);
1519 static void set_cu_language (unsigned int, struct dwarf2_cu *);
1521 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
1522 struct dwarf2_cu *);
1524 static struct attribute *dwarf2_attr_no_follow (struct die_info *,
1527 static const char *dwarf2_string_attr (struct die_info *die, unsigned int name,
1528 struct dwarf2_cu *cu);
1530 static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
1531 struct dwarf2_cu *cu);
1533 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
1535 static struct die_info *die_specification (struct die_info *die,
1536 struct dwarf2_cu **);
1538 static void free_line_header (struct line_header *lh);
1540 static struct line_header *dwarf_decode_line_header (unsigned int offset,
1541 struct dwarf2_cu *cu);
1543 static void dwarf_decode_lines (struct line_header *, const char *,
1544 struct dwarf2_cu *, struct partial_symtab *,
1545 CORE_ADDR, int decode_mapping);
1547 static void dwarf2_start_subfile (const char *, const char *);
1549 static struct compunit_symtab *dwarf2_start_symtab (struct dwarf2_cu *,
1550 const char *, const char *,
1553 static struct symbol *new_symbol (struct die_info *, struct type *,
1554 struct dwarf2_cu *);
1556 static struct symbol *new_symbol_full (struct die_info *, struct type *,
1557 struct dwarf2_cu *, struct symbol *);
1559 static void dwarf2_const_value (const struct attribute *, struct symbol *,
1560 struct dwarf2_cu *);
1562 static void dwarf2_const_value_attr (const struct attribute *attr,
1565 struct obstack *obstack,
1566 struct dwarf2_cu *cu, LONGEST *value,
1567 const gdb_byte **bytes,
1568 struct dwarf2_locexpr_baton **baton);
1570 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
1572 static int need_gnat_info (struct dwarf2_cu *);
1574 static struct type *die_descriptive_type (struct die_info *,
1575 struct dwarf2_cu *);
1577 static void set_descriptive_type (struct type *, struct die_info *,
1578 struct dwarf2_cu *);
1580 static struct type *die_containing_type (struct die_info *,
1581 struct dwarf2_cu *);
1583 static struct type *lookup_die_type (struct die_info *, const struct attribute *,
1584 struct dwarf2_cu *);
1586 static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
1588 static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1590 static const char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
1592 static char *typename_concat (struct obstack *obs, const char *prefix,
1593 const char *suffix, int physname,
1594 struct dwarf2_cu *cu);
1596 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
1598 static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1600 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
1602 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
1604 static void read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu);
1606 static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1607 struct dwarf2_cu *, struct partial_symtab *);
1609 /* How dwarf2_get_pc_bounds constructed its *LOWPC and *HIGHPC return
1610 values. Keep the items ordered with increasing constraints compliance. */
1613 /* No attribute DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges was found. */
1614 PC_BOUNDS_NOT_PRESENT,
1616 /* Some of the attributes DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges
1617 were present but they do not form a valid range of PC addresses. */
1620 /* Discontiguous range was found - that is DW_AT_ranges was found. */
1623 /* Contiguous range was found - DW_AT_low_pc and DW_AT_high_pc were found. */
1627 static enum pc_bounds_kind dwarf2_get_pc_bounds (struct die_info *,
1628 CORE_ADDR *, CORE_ADDR *,
1630 struct partial_symtab *);
1632 static void get_scope_pc_bounds (struct die_info *,
1633 CORE_ADDR *, CORE_ADDR *,
1634 struct dwarf2_cu *);
1636 static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1637 CORE_ADDR, struct dwarf2_cu *);
1639 static void dwarf2_add_field (struct field_info *, struct die_info *,
1640 struct dwarf2_cu *);
1642 static void dwarf2_attach_fields_to_type (struct field_info *,
1643 struct type *, struct dwarf2_cu *);
1645 static void dwarf2_add_member_fn (struct field_info *,
1646 struct die_info *, struct type *,
1647 struct dwarf2_cu *);
1649 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
1651 struct dwarf2_cu *);
1653 static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
1655 static void read_common_block (struct die_info *, struct dwarf2_cu *);
1657 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
1659 static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1661 static struct using_direct **using_directives (enum language);
1663 static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1665 static int read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu);
1667 static struct type *read_module_type (struct die_info *die,
1668 struct dwarf2_cu *cu);
1670 static const char *namespace_name (struct die_info *die,
1671 int *is_anonymous, struct dwarf2_cu *);
1673 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
1675 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
1677 static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
1678 struct dwarf2_cu *);
1680 static struct die_info *read_die_and_siblings_1
1681 (const struct die_reader_specs *, const gdb_byte *, const gdb_byte **,
1684 static struct die_info *read_die_and_siblings (const struct die_reader_specs *,
1685 const gdb_byte *info_ptr,
1686 const gdb_byte **new_info_ptr,
1687 struct die_info *parent);
1689 static const gdb_byte *read_full_die_1 (const struct die_reader_specs *,
1690 struct die_info **, const gdb_byte *,
1693 static const gdb_byte *read_full_die (const struct die_reader_specs *,
1694 struct die_info **, const gdb_byte *,
1697 static void process_die (struct die_info *, struct dwarf2_cu *);
1699 static const char *dwarf2_canonicalize_name (const char *, struct dwarf2_cu *,
1702 static const char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
1704 static const char *dwarf2_full_name (const char *name,
1705 struct die_info *die,
1706 struct dwarf2_cu *cu);
1708 static const char *dwarf2_physname (const char *name, struct die_info *die,
1709 struct dwarf2_cu *cu);
1711 static struct die_info *dwarf2_extension (struct die_info *die,
1712 struct dwarf2_cu **);
1714 static const char *dwarf_tag_name (unsigned int);
1716 static const char *dwarf_attr_name (unsigned int);
1718 static const char *dwarf_form_name (unsigned int);
1720 static char *dwarf_bool_name (unsigned int);
1722 static const char *dwarf_type_encoding_name (unsigned int);
1724 static struct die_info *sibling_die (struct die_info *);
1726 static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1728 static void dump_die_for_error (struct die_info *);
1730 static void dump_die_1 (struct ui_file *, int level, int max_level,
1733 /*static*/ void dump_die (struct die_info *, int max_level);
1735 static void store_in_ref_table (struct die_info *,
1736 struct dwarf2_cu *);
1738 static sect_offset dwarf2_get_ref_die_offset (const struct attribute *);
1740 static LONGEST dwarf2_get_attr_constant_value (const struct attribute *, int);
1742 static struct die_info *follow_die_ref_or_sig (struct die_info *,
1743 const struct attribute *,
1744 struct dwarf2_cu **);
1746 static struct die_info *follow_die_ref (struct die_info *,
1747 const struct attribute *,
1748 struct dwarf2_cu **);
1750 static struct die_info *follow_die_sig (struct die_info *,
1751 const struct attribute *,
1752 struct dwarf2_cu **);
1754 static struct type *get_signatured_type (struct die_info *, ULONGEST,
1755 struct dwarf2_cu *);
1757 static struct type *get_DW_AT_signature_type (struct die_info *,
1758 const struct attribute *,
1759 struct dwarf2_cu *);
1761 static void load_full_type_unit (struct dwarf2_per_cu_data *per_cu);
1763 static void read_signatured_type (struct signatured_type *);
1765 static int attr_to_dynamic_prop (const struct attribute *attr,
1766 struct die_info *die, struct dwarf2_cu *cu,
1767 struct dynamic_prop *prop);
1769 /* memory allocation interface */
1771 static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
1773 static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
1775 static void dwarf_decode_macros (struct dwarf2_cu *, unsigned int, int);
1777 static int attr_form_is_block (const struct attribute *);
1779 static int attr_form_is_section_offset (const struct attribute *);
1781 static int attr_form_is_constant (const struct attribute *);
1783 static int attr_form_is_ref (const struct attribute *);
1785 static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1786 struct dwarf2_loclist_baton *baton,
1787 const struct attribute *attr);
1789 static void dwarf2_symbol_mark_computed (const struct attribute *attr,
1791 struct dwarf2_cu *cu,
1794 static const gdb_byte *skip_one_die (const struct die_reader_specs *reader,
1795 const gdb_byte *info_ptr,
1796 struct abbrev_info *abbrev);
1798 static void free_stack_comp_unit (void *);
1800 static hashval_t partial_die_hash (const void *item);
1802 static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1804 static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1805 (sect_offset offset, unsigned int offset_in_dwz, struct objfile *objfile);
1807 static void init_one_comp_unit (struct dwarf2_cu *cu,
1808 struct dwarf2_per_cu_data *per_cu);
1810 static void prepare_one_comp_unit (struct dwarf2_cu *cu,
1811 struct die_info *comp_unit_die,
1812 enum language pretend_language);
1814 static void free_heap_comp_unit (void *);
1816 static void free_cached_comp_units (void *);
1818 static void age_cached_comp_units (void);
1820 static void free_one_cached_comp_unit (struct dwarf2_per_cu_data *);
1822 static struct type *set_die_type (struct die_info *, struct type *,
1823 struct dwarf2_cu *);
1825 static void create_all_comp_units (struct objfile *);
1827 static int create_all_type_units (struct objfile *);
1829 static void load_full_comp_unit (struct dwarf2_per_cu_data *,
1832 static void process_full_comp_unit (struct dwarf2_per_cu_data *,
1835 static void process_full_type_unit (struct dwarf2_per_cu_data *,
1838 static void dwarf2_add_dependence (struct dwarf2_cu *,
1839 struct dwarf2_per_cu_data *);
1841 static void dwarf2_mark (struct dwarf2_cu *);
1843 static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1845 static struct type *get_die_type_at_offset (sect_offset,
1846 struct dwarf2_per_cu_data *);
1848 static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
1850 static void dwarf2_release_queue (void *dummy);
1852 static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1853 enum language pretend_language);
1855 static void process_queue (void);
1857 static void find_file_and_directory (struct die_info *die,
1858 struct dwarf2_cu *cu,
1859 const char **name, const char **comp_dir);
1861 static char *file_full_name (int file, struct line_header *lh,
1862 const char *comp_dir);
1864 static const gdb_byte *read_and_check_comp_unit_head
1865 (struct comp_unit_head *header,
1866 struct dwarf2_section_info *section,
1867 struct dwarf2_section_info *abbrev_section, const gdb_byte *info_ptr,
1868 int is_debug_types_section);
1870 static void init_cutu_and_read_dies
1871 (struct dwarf2_per_cu_data *this_cu, struct abbrev_table *abbrev_table,
1872 int use_existing_cu, int keep,
1873 die_reader_func_ftype *die_reader_func, void *data);
1875 static void init_cutu_and_read_dies_simple
1876 (struct dwarf2_per_cu_data *this_cu,
1877 die_reader_func_ftype *die_reader_func, void *data);
1879 static htab_t allocate_signatured_type_table (struct objfile *objfile);
1881 static htab_t allocate_dwo_unit_table (struct objfile *objfile);
1883 static struct dwo_unit *lookup_dwo_unit_in_dwp
1884 (struct dwp_file *dwp_file, const char *comp_dir,
1885 ULONGEST signature, int is_debug_types);
1887 static struct dwp_file *get_dwp_file (void);
1889 static struct dwo_unit *lookup_dwo_comp_unit
1890 (struct dwarf2_per_cu_data *, const char *, const char *, ULONGEST);
1892 static struct dwo_unit *lookup_dwo_type_unit
1893 (struct signatured_type *, const char *, const char *);
1895 static void queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *);
1897 static void free_dwo_file_cleanup (void *);
1899 static void process_cu_includes (void);
1901 static void check_producer (struct dwarf2_cu *cu);
1903 static void free_line_header_voidp (void *arg);
1905 /* Various complaints about symbol reading that don't abort the process. */
1908 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
1910 complaint (&symfile_complaints,
1911 _("statement list doesn't fit in .debug_line section"));
1915 dwarf2_debug_line_missing_file_complaint (void)
1917 complaint (&symfile_complaints,
1918 _(".debug_line section has line data without a file"));
1922 dwarf2_debug_line_missing_end_sequence_complaint (void)
1924 complaint (&symfile_complaints,
1925 _(".debug_line section has line "
1926 "program sequence without an end"));
1930 dwarf2_complex_location_expr_complaint (void)
1932 complaint (&symfile_complaints, _("location expression too complex"));
1936 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
1939 complaint (&symfile_complaints,
1940 _("const value length mismatch for '%s', got %d, expected %d"),
1945 dwarf2_section_buffer_overflow_complaint (struct dwarf2_section_info *section)
1947 complaint (&symfile_complaints,
1948 _("debug info runs off end of %s section"
1950 get_section_name (section),
1951 get_section_file_name (section));
1955 dwarf2_macro_malformed_definition_complaint (const char *arg1)
1957 complaint (&symfile_complaints,
1958 _("macro debug info contains a "
1959 "malformed macro definition:\n`%s'"),
1964 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
1966 complaint (&symfile_complaints,
1967 _("invalid attribute class or form for '%s' in '%s'"),
1971 /* Hash function for line_header_hash. */
1974 line_header_hash (const struct line_header *ofs)
1976 return ofs->offset.sect_off ^ ofs->offset_in_dwz;
1979 /* Hash function for htab_create_alloc_ex for line_header_hash. */
1982 line_header_hash_voidp (const void *item)
1984 const struct line_header *ofs = (const struct line_header *) item;
1986 return line_header_hash (ofs);
1989 /* Equality function for line_header_hash. */
1992 line_header_eq_voidp (const void *item_lhs, const void *item_rhs)
1994 const struct line_header *ofs_lhs = (const struct line_header *) item_lhs;
1995 const struct line_header *ofs_rhs = (const struct line_header *) item_rhs;
1997 return (ofs_lhs->offset.sect_off == ofs_rhs->offset.sect_off
1998 && ofs_lhs->offset_in_dwz == ofs_rhs->offset_in_dwz);
2004 /* Convert VALUE between big- and little-endian. */
2006 byte_swap (offset_type value)
2010 result = (value & 0xff) << 24;
2011 result |= (value & 0xff00) << 8;
2012 result |= (value & 0xff0000) >> 8;
2013 result |= (value & 0xff000000) >> 24;
2017 #define MAYBE_SWAP(V) byte_swap (V)
2020 #define MAYBE_SWAP(V) (V)
2021 #endif /* WORDS_BIGENDIAN */
2023 /* Read the given attribute value as an address, taking the attribute's
2024 form into account. */
2027 attr_value_as_address (struct attribute *attr)
2031 if (attr->form != DW_FORM_addr && attr->form != DW_FORM_GNU_addr_index)
2033 /* Aside from a few clearly defined exceptions, attributes that
2034 contain an address must always be in DW_FORM_addr form.
2035 Unfortunately, some compilers happen to be violating this
2036 requirement by encoding addresses using other forms, such
2037 as DW_FORM_data4 for example. For those broken compilers,
2038 we try to do our best, without any guarantee of success,
2039 to interpret the address correctly. It would also be nice
2040 to generate a complaint, but that would require us to maintain
2041 a list of legitimate cases where a non-address form is allowed,
2042 as well as update callers to pass in at least the CU's DWARF
2043 version. This is more overhead than what we're willing to
2044 expand for a pretty rare case. */
2045 addr = DW_UNSND (attr);
2048 addr = DW_ADDR (attr);
2053 /* The suffix for an index file. */
2054 #define INDEX_SUFFIX ".gdb-index"
2056 /* Try to locate the sections we need for DWARF 2 debugging
2057 information and return true if we have enough to do something.
2058 NAMES points to the dwarf2 section names, or is NULL if the standard
2059 ELF names are used. */
2062 dwarf2_has_info (struct objfile *objfile,
2063 const struct dwarf2_debug_sections *names)
2065 dwarf2_per_objfile = ((struct dwarf2_per_objfile *)
2066 objfile_data (objfile, dwarf2_objfile_data_key));
2067 if (!dwarf2_per_objfile)
2069 /* Initialize per-objfile state. */
2070 struct dwarf2_per_objfile *data
2071 = XOBNEW (&objfile->objfile_obstack, struct dwarf2_per_objfile);
2073 memset (data, 0, sizeof (*data));
2074 set_objfile_data (objfile, dwarf2_objfile_data_key, data);
2075 dwarf2_per_objfile = data;
2077 bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections,
2079 dwarf2_per_objfile->objfile = objfile;
2081 return (!dwarf2_per_objfile->info.is_virtual
2082 && dwarf2_per_objfile->info.s.section != NULL
2083 && !dwarf2_per_objfile->abbrev.is_virtual
2084 && dwarf2_per_objfile->abbrev.s.section != NULL);
2087 /* Return the containing section of virtual section SECTION. */
2089 static struct dwarf2_section_info *
2090 get_containing_section (const struct dwarf2_section_info *section)
2092 gdb_assert (section->is_virtual);
2093 return section->s.containing_section;
2096 /* Return the bfd owner of SECTION. */
2099 get_section_bfd_owner (const struct dwarf2_section_info *section)
2101 if (section->is_virtual)
2103 section = get_containing_section (section);
2104 gdb_assert (!section->is_virtual);
2106 return section->s.section->owner;
2109 /* Return the bfd section of SECTION.
2110 Returns NULL if the section is not present. */
2113 get_section_bfd_section (const struct dwarf2_section_info *section)
2115 if (section->is_virtual)
2117 section = get_containing_section (section);
2118 gdb_assert (!section->is_virtual);
2120 return section->s.section;
2123 /* Return the name of SECTION. */
2126 get_section_name (const struct dwarf2_section_info *section)
2128 asection *sectp = get_section_bfd_section (section);
2130 gdb_assert (sectp != NULL);
2131 return bfd_section_name (get_section_bfd_owner (section), sectp);
2134 /* Return the name of the file SECTION is in. */
2137 get_section_file_name (const struct dwarf2_section_info *section)
2139 bfd *abfd = get_section_bfd_owner (section);
2141 return bfd_get_filename (abfd);
2144 /* Return the id of SECTION.
2145 Returns 0 if SECTION doesn't exist. */
2148 get_section_id (const struct dwarf2_section_info *section)
2150 asection *sectp = get_section_bfd_section (section);
2157 /* Return the flags of SECTION.
2158 SECTION (or containing section if this is a virtual section) must exist. */
2161 get_section_flags (const struct dwarf2_section_info *section)
2163 asection *sectp = get_section_bfd_section (section);
2165 gdb_assert (sectp != NULL);
2166 return bfd_get_section_flags (sectp->owner, sectp);
2169 /* When loading sections, we look either for uncompressed section or for
2170 compressed section names. */
2173 section_is_p (const char *section_name,
2174 const struct dwarf2_section_names *names)
2176 if (names->normal != NULL
2177 && strcmp (section_name, names->normal) == 0)
2179 if (names->compressed != NULL
2180 && strcmp (section_name, names->compressed) == 0)
2185 /* This function is mapped across the sections and remembers the
2186 offset and size of each of the debugging sections we are interested
2190 dwarf2_locate_sections (bfd *abfd, asection *sectp, void *vnames)
2192 const struct dwarf2_debug_sections *names;
2193 flagword aflag = bfd_get_section_flags (abfd, sectp);
2196 names = &dwarf2_elf_names;
2198 names = (const struct dwarf2_debug_sections *) vnames;
2200 if ((aflag & SEC_HAS_CONTENTS) == 0)
2203 else if (section_is_p (sectp->name, &names->info))
2205 dwarf2_per_objfile->info.s.section = sectp;
2206 dwarf2_per_objfile->info.size = bfd_get_section_size (sectp);
2208 else if (section_is_p (sectp->name, &names->abbrev))
2210 dwarf2_per_objfile->abbrev.s.section = sectp;
2211 dwarf2_per_objfile->abbrev.size = bfd_get_section_size (sectp);
2213 else if (section_is_p (sectp->name, &names->line))
2215 dwarf2_per_objfile->line.s.section = sectp;
2216 dwarf2_per_objfile->line.size = bfd_get_section_size (sectp);
2218 else if (section_is_p (sectp->name, &names->loc))
2220 dwarf2_per_objfile->loc.s.section = sectp;
2221 dwarf2_per_objfile->loc.size = bfd_get_section_size (sectp);
2223 else if (section_is_p (sectp->name, &names->macinfo))
2225 dwarf2_per_objfile->macinfo.s.section = sectp;
2226 dwarf2_per_objfile->macinfo.size = bfd_get_section_size (sectp);
2228 else if (section_is_p (sectp->name, &names->macro))
2230 dwarf2_per_objfile->macro.s.section = sectp;
2231 dwarf2_per_objfile->macro.size = bfd_get_section_size (sectp);
2233 else if (section_is_p (sectp->name, &names->str))
2235 dwarf2_per_objfile->str.s.section = sectp;
2236 dwarf2_per_objfile->str.size = bfd_get_section_size (sectp);
2238 else if (section_is_p (sectp->name, &names->addr))
2240 dwarf2_per_objfile->addr.s.section = sectp;
2241 dwarf2_per_objfile->addr.size = bfd_get_section_size (sectp);
2243 else if (section_is_p (sectp->name, &names->frame))
2245 dwarf2_per_objfile->frame.s.section = sectp;
2246 dwarf2_per_objfile->frame.size = bfd_get_section_size (sectp);
2248 else if (section_is_p (sectp->name, &names->eh_frame))
2250 dwarf2_per_objfile->eh_frame.s.section = sectp;
2251 dwarf2_per_objfile->eh_frame.size = bfd_get_section_size (sectp);
2253 else if (section_is_p (sectp->name, &names->ranges))
2255 dwarf2_per_objfile->ranges.s.section = sectp;
2256 dwarf2_per_objfile->ranges.size = bfd_get_section_size (sectp);
2258 else if (section_is_p (sectp->name, &names->types))
2260 struct dwarf2_section_info type_section;
2262 memset (&type_section, 0, sizeof (type_section));
2263 type_section.s.section = sectp;
2264 type_section.size = bfd_get_section_size (sectp);
2266 VEC_safe_push (dwarf2_section_info_def, dwarf2_per_objfile->types,
2269 else if (section_is_p (sectp->name, &names->gdb_index))
2271 dwarf2_per_objfile->gdb_index.s.section = sectp;
2272 dwarf2_per_objfile->gdb_index.size = bfd_get_section_size (sectp);
2275 if ((bfd_get_section_flags (abfd, sectp) & (SEC_LOAD | SEC_ALLOC))
2276 && bfd_section_vma (abfd, sectp) == 0)
2277 dwarf2_per_objfile->has_section_at_zero = 1;
2280 /* A helper function that decides whether a section is empty,
2284 dwarf2_section_empty_p (const struct dwarf2_section_info *section)
2286 if (section->is_virtual)
2287 return section->size == 0;
2288 return section->s.section == NULL || section->size == 0;
2291 /* Read the contents of the section INFO.
2292 OBJFILE is the main object file, but not necessarily the file where
2293 the section comes from. E.g., for DWO files the bfd of INFO is the bfd
2295 If the section is compressed, uncompress it before returning. */
2298 dwarf2_read_section (struct objfile *objfile, struct dwarf2_section_info *info)
2302 gdb_byte *buf, *retbuf;
2306 info->buffer = NULL;
2309 if (dwarf2_section_empty_p (info))
2312 sectp = get_section_bfd_section (info);
2314 /* If this is a virtual section we need to read in the real one first. */
2315 if (info->is_virtual)
2317 struct dwarf2_section_info *containing_section =
2318 get_containing_section (info);
2320 gdb_assert (sectp != NULL);
2321 if ((sectp->flags & SEC_RELOC) != 0)
2323 error (_("Dwarf Error: DWP format V2 with relocations is not"
2324 " supported in section %s [in module %s]"),
2325 get_section_name (info), get_section_file_name (info));
2327 dwarf2_read_section (objfile, containing_section);
2328 /* Other code should have already caught virtual sections that don't
2330 gdb_assert (info->virtual_offset + info->size
2331 <= containing_section->size);
2332 /* If the real section is empty or there was a problem reading the
2333 section we shouldn't get here. */
2334 gdb_assert (containing_section->buffer != NULL);
2335 info->buffer = containing_section->buffer + info->virtual_offset;
2339 /* If the section has relocations, we must read it ourselves.
2340 Otherwise we attach it to the BFD. */
2341 if ((sectp->flags & SEC_RELOC) == 0)
2343 info->buffer = gdb_bfd_map_section (sectp, &info->size);
2347 buf = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack, info->size);
2350 /* When debugging .o files, we may need to apply relocations; see
2351 http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
2352 We never compress sections in .o files, so we only need to
2353 try this when the section is not compressed. */
2354 retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
2357 info->buffer = retbuf;
2361 abfd = get_section_bfd_owner (info);
2362 gdb_assert (abfd != NULL);
2364 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
2365 || bfd_bread (buf, info->size, abfd) != info->size)
2367 error (_("Dwarf Error: Can't read DWARF data"
2368 " in section %s [in module %s]"),
2369 bfd_section_name (abfd, sectp), bfd_get_filename (abfd));
2373 /* A helper function that returns the size of a section in a safe way.
2374 If you are positive that the section has been read before using the
2375 size, then it is safe to refer to the dwarf2_section_info object's
2376 "size" field directly. In other cases, you must call this
2377 function, because for compressed sections the size field is not set
2378 correctly until the section has been read. */
2380 static bfd_size_type
2381 dwarf2_section_size (struct objfile *objfile,
2382 struct dwarf2_section_info *info)
2385 dwarf2_read_section (objfile, info);
2389 /* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
2393 dwarf2_get_section_info (struct objfile *objfile,
2394 enum dwarf2_section_enum sect,
2395 asection **sectp, const gdb_byte **bufp,
2396 bfd_size_type *sizep)
2398 struct dwarf2_per_objfile *data
2399 = (struct dwarf2_per_objfile *) objfile_data (objfile,
2400 dwarf2_objfile_data_key);
2401 struct dwarf2_section_info *info;
2403 /* We may see an objfile without any DWARF, in which case we just
2414 case DWARF2_DEBUG_FRAME:
2415 info = &data->frame;
2417 case DWARF2_EH_FRAME:
2418 info = &data->eh_frame;
2421 gdb_assert_not_reached ("unexpected section");
2424 dwarf2_read_section (objfile, info);
2426 *sectp = get_section_bfd_section (info);
2427 *bufp = info->buffer;
2428 *sizep = info->size;
2431 /* A helper function to find the sections for a .dwz file. */
2434 locate_dwz_sections (bfd *abfd, asection *sectp, void *arg)
2436 struct dwz_file *dwz_file = (struct dwz_file *) arg;
2438 /* Note that we only support the standard ELF names, because .dwz
2439 is ELF-only (at the time of writing). */
2440 if (section_is_p (sectp->name, &dwarf2_elf_names.abbrev))
2442 dwz_file->abbrev.s.section = sectp;
2443 dwz_file->abbrev.size = bfd_get_section_size (sectp);
2445 else if (section_is_p (sectp->name, &dwarf2_elf_names.info))
2447 dwz_file->info.s.section = sectp;
2448 dwz_file->info.size = bfd_get_section_size (sectp);
2450 else if (section_is_p (sectp->name, &dwarf2_elf_names.str))
2452 dwz_file->str.s.section = sectp;
2453 dwz_file->str.size = bfd_get_section_size (sectp);
2455 else if (section_is_p (sectp->name, &dwarf2_elf_names.line))
2457 dwz_file->line.s.section = sectp;
2458 dwz_file->line.size = bfd_get_section_size (sectp);
2460 else if (section_is_p (sectp->name, &dwarf2_elf_names.macro))
2462 dwz_file->macro.s.section = sectp;
2463 dwz_file->macro.size = bfd_get_section_size (sectp);
2465 else if (section_is_p (sectp->name, &dwarf2_elf_names.gdb_index))
2467 dwz_file->gdb_index.s.section = sectp;
2468 dwz_file->gdb_index.size = bfd_get_section_size (sectp);
2472 /* Open the separate '.dwz' debug file, if needed. Return NULL if
2473 there is no .gnu_debugaltlink section in the file. Error if there
2474 is such a section but the file cannot be found. */
2476 static struct dwz_file *
2477 dwarf2_get_dwz_file (void)
2481 struct cleanup *cleanup;
2482 const char *filename;
2483 struct dwz_file *result;
2484 bfd_size_type buildid_len_arg;
2488 if (dwarf2_per_objfile->dwz_file != NULL)
2489 return dwarf2_per_objfile->dwz_file;
2491 bfd_set_error (bfd_error_no_error);
2492 data = bfd_get_alt_debug_link_info (dwarf2_per_objfile->objfile->obfd,
2493 &buildid_len_arg, &buildid);
2496 if (bfd_get_error () == bfd_error_no_error)
2498 error (_("could not read '.gnu_debugaltlink' section: %s"),
2499 bfd_errmsg (bfd_get_error ()));
2501 cleanup = make_cleanup (xfree, data);
2502 make_cleanup (xfree, buildid);
2504 buildid_len = (size_t) buildid_len_arg;
2506 filename = (const char *) data;
2507 if (!IS_ABSOLUTE_PATH (filename))
2509 char *abs = gdb_realpath (objfile_name (dwarf2_per_objfile->objfile));
2512 make_cleanup (xfree, abs);
2513 abs = ldirname (abs);
2514 make_cleanup (xfree, abs);
2516 rel = concat (abs, SLASH_STRING, filename, (char *) NULL);
2517 make_cleanup (xfree, rel);
2521 /* First try the file name given in the section. If that doesn't
2522 work, try to use the build-id instead. */
2523 dwz_bfd = gdb_bfd_open (filename, gnutarget, -1);
2524 if (dwz_bfd != NULL)
2526 if (!build_id_verify (dwz_bfd, buildid_len, buildid))
2528 gdb_bfd_unref (dwz_bfd);
2533 if (dwz_bfd == NULL)
2534 dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid);
2536 if (dwz_bfd == NULL)
2537 error (_("could not find '.gnu_debugaltlink' file for %s"),
2538 objfile_name (dwarf2_per_objfile->objfile));
2540 result = OBSTACK_ZALLOC (&dwarf2_per_objfile->objfile->objfile_obstack,
2542 result->dwz_bfd = dwz_bfd;
2544 bfd_map_over_sections (dwz_bfd, locate_dwz_sections, result);
2546 do_cleanups (cleanup);
2548 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd, dwz_bfd);
2549 dwarf2_per_objfile->dwz_file = result;
2553 /* DWARF quick_symbols_functions support. */
2555 /* TUs can share .debug_line entries, and there can be a lot more TUs than
2556 unique line tables, so we maintain a separate table of all .debug_line
2557 derived entries to support the sharing.
2558 All the quick functions need is the list of file names. We discard the
2559 line_header when we're done and don't need to record it here. */
2560 struct quick_file_names
2562 /* The data used to construct the hash key. */
2563 struct stmt_list_hash hash;
2565 /* The number of entries in file_names, real_names. */
2566 unsigned int num_file_names;
2568 /* The file names from the line table, after being run through
2570 const char **file_names;
2572 /* The file names from the line table after being run through
2573 gdb_realpath. These are computed lazily. */
2574 const char **real_names;
2577 /* When using the index (and thus not using psymtabs), each CU has an
2578 object of this type. This is used to hold information needed by
2579 the various "quick" methods. */
2580 struct dwarf2_per_cu_quick_data
2582 /* The file table. This can be NULL if there was no file table
2583 or it's currently not read in.
2584 NOTE: This points into dwarf2_per_objfile->quick_file_names_table. */
2585 struct quick_file_names *file_names;
2587 /* The corresponding symbol table. This is NULL if symbols for this
2588 CU have not yet been read. */
2589 struct compunit_symtab *compunit_symtab;
2591 /* A temporary mark bit used when iterating over all CUs in
2592 expand_symtabs_matching. */
2593 unsigned int mark : 1;
2595 /* True if we've tried to read the file table and found there isn't one.
2596 There will be no point in trying to read it again next time. */
2597 unsigned int no_file_data : 1;
2600 /* Utility hash function for a stmt_list_hash. */
2603 hash_stmt_list_entry (const struct stmt_list_hash *stmt_list_hash)
2607 if (stmt_list_hash->dwo_unit != NULL)
2608 v += (uintptr_t) stmt_list_hash->dwo_unit->dwo_file;
2609 v += stmt_list_hash->line_offset.sect_off;
2613 /* Utility equality function for a stmt_list_hash. */
2616 eq_stmt_list_entry (const struct stmt_list_hash *lhs,
2617 const struct stmt_list_hash *rhs)
2619 if ((lhs->dwo_unit != NULL) != (rhs->dwo_unit != NULL))
2621 if (lhs->dwo_unit != NULL
2622 && lhs->dwo_unit->dwo_file != rhs->dwo_unit->dwo_file)
2625 return lhs->line_offset.sect_off == rhs->line_offset.sect_off;
2628 /* Hash function for a quick_file_names. */
2631 hash_file_name_entry (const void *e)
2633 const struct quick_file_names *file_data
2634 = (const struct quick_file_names *) e;
2636 return hash_stmt_list_entry (&file_data->hash);
2639 /* Equality function for a quick_file_names. */
2642 eq_file_name_entry (const void *a, const void *b)
2644 const struct quick_file_names *ea = (const struct quick_file_names *) a;
2645 const struct quick_file_names *eb = (const struct quick_file_names *) b;
2647 return eq_stmt_list_entry (&ea->hash, &eb->hash);
2650 /* Delete function for a quick_file_names. */
2653 delete_file_name_entry (void *e)
2655 struct quick_file_names *file_data = (struct quick_file_names *) e;
2658 for (i = 0; i < file_data->num_file_names; ++i)
2660 xfree ((void*) file_data->file_names[i]);
2661 if (file_data->real_names)
2662 xfree ((void*) file_data->real_names[i]);
2665 /* The space for the struct itself lives on objfile_obstack,
2666 so we don't free it here. */
2669 /* Create a quick_file_names hash table. */
2672 create_quick_file_names_table (unsigned int nr_initial_entries)
2674 return htab_create_alloc (nr_initial_entries,
2675 hash_file_name_entry, eq_file_name_entry,
2676 delete_file_name_entry, xcalloc, xfree);
2679 /* Read in PER_CU->CU. This function is unrelated to symtabs, symtab would
2680 have to be created afterwards. You should call age_cached_comp_units after
2681 processing PER_CU->CU. dw2_setup must have been already called. */
2684 load_cu (struct dwarf2_per_cu_data *per_cu)
2686 if (per_cu->is_debug_types)
2687 load_full_type_unit (per_cu);
2689 load_full_comp_unit (per_cu, language_minimal);
2691 if (per_cu->cu == NULL)
2692 return; /* Dummy CU. */
2694 dwarf2_find_base_address (per_cu->cu->dies, per_cu->cu);
2697 /* Read in the symbols for PER_CU. */
2700 dw2_do_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
2702 struct cleanup *back_to;
2704 /* Skip type_unit_groups, reading the type units they contain
2705 is handled elsewhere. */
2706 if (IS_TYPE_UNIT_GROUP (per_cu))
2709 back_to = make_cleanup (dwarf2_release_queue, NULL);
2711 if (dwarf2_per_objfile->using_index
2712 ? per_cu->v.quick->compunit_symtab == NULL
2713 : (per_cu->v.psymtab == NULL || !per_cu->v.psymtab->readin))
2715 queue_comp_unit (per_cu, language_minimal);
2718 /* If we just loaded a CU from a DWO, and we're working with an index
2719 that may badly handle TUs, load all the TUs in that DWO as well.
2720 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
2721 if (!per_cu->is_debug_types
2722 && per_cu->cu != NULL
2723 && per_cu->cu->dwo_unit != NULL
2724 && dwarf2_per_objfile->index_table != NULL
2725 && dwarf2_per_objfile->index_table->version <= 7
2726 /* DWP files aren't supported yet. */
2727 && get_dwp_file () == NULL)
2728 queue_and_load_all_dwo_tus (per_cu);
2733 /* Age the cache, releasing compilation units that have not
2734 been used recently. */
2735 age_cached_comp_units ();
2737 do_cleanups (back_to);
2740 /* Ensure that the symbols for PER_CU have been read in. OBJFILE is
2741 the objfile from which this CU came. Returns the resulting symbol
2744 static struct compunit_symtab *
2745 dw2_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
2747 gdb_assert (dwarf2_per_objfile->using_index);
2748 if (!per_cu->v.quick->compunit_symtab)
2750 struct cleanup *back_to = make_cleanup (free_cached_comp_units, NULL);
2751 increment_reading_symtab ();
2752 dw2_do_instantiate_symtab (per_cu);
2753 process_cu_includes ();
2754 do_cleanups (back_to);
2757 return per_cu->v.quick->compunit_symtab;
2760 /* Return the CU/TU given its index.
2762 This is intended for loops like:
2764 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2765 + dwarf2_per_objfile->n_type_units); ++i)
2767 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
2773 static struct dwarf2_per_cu_data *
2774 dw2_get_cutu (int index)
2776 if (index >= dwarf2_per_objfile->n_comp_units)
2778 index -= dwarf2_per_objfile->n_comp_units;
2779 gdb_assert (index < dwarf2_per_objfile->n_type_units);
2780 return &dwarf2_per_objfile->all_type_units[index]->per_cu;
2783 return dwarf2_per_objfile->all_comp_units[index];
2786 /* Return the CU given its index.
2787 This differs from dw2_get_cutu in that it's for when you know INDEX
2790 static struct dwarf2_per_cu_data *
2791 dw2_get_cu (int index)
2793 gdb_assert (index >= 0 && index < dwarf2_per_objfile->n_comp_units);
2795 return dwarf2_per_objfile->all_comp_units[index];
2798 /* A helper for create_cus_from_index that handles a given list of
2802 create_cus_from_index_list (struct objfile *objfile,
2803 const gdb_byte *cu_list, offset_type n_elements,
2804 struct dwarf2_section_info *section,
2810 for (i = 0; i < n_elements; i += 2)
2812 struct dwarf2_per_cu_data *the_cu;
2813 ULONGEST offset, length;
2815 gdb_static_assert (sizeof (ULONGEST) >= 8);
2816 offset = extract_unsigned_integer (cu_list, 8, BFD_ENDIAN_LITTLE);
2817 length = extract_unsigned_integer (cu_list + 8, 8, BFD_ENDIAN_LITTLE);
2820 the_cu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2821 struct dwarf2_per_cu_data);
2822 the_cu->offset.sect_off = offset;
2823 the_cu->length = length;
2824 the_cu->objfile = objfile;
2825 the_cu->section = section;
2826 the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2827 struct dwarf2_per_cu_quick_data);
2828 the_cu->is_dwz = is_dwz;
2829 dwarf2_per_objfile->all_comp_units[base_offset + i / 2] = the_cu;
2833 /* Read the CU list from the mapped index, and use it to create all
2834 the CU objects for this objfile. */
2837 create_cus_from_index (struct objfile *objfile,
2838 const gdb_byte *cu_list, offset_type cu_list_elements,
2839 const gdb_byte *dwz_list, offset_type dwz_elements)
2841 struct dwz_file *dwz;
2843 dwarf2_per_objfile->n_comp_units = (cu_list_elements + dwz_elements) / 2;
2844 dwarf2_per_objfile->all_comp_units =
2845 XOBNEWVEC (&objfile->objfile_obstack, struct dwarf2_per_cu_data *,
2846 dwarf2_per_objfile->n_comp_units);
2848 create_cus_from_index_list (objfile, cu_list, cu_list_elements,
2849 &dwarf2_per_objfile->info, 0, 0);
2851 if (dwz_elements == 0)
2854 dwz = dwarf2_get_dwz_file ();
2855 create_cus_from_index_list (objfile, dwz_list, dwz_elements, &dwz->info, 1,
2856 cu_list_elements / 2);
2859 /* Create the signatured type hash table from the index. */
2862 create_signatured_type_table_from_index (struct objfile *objfile,
2863 struct dwarf2_section_info *section,
2864 const gdb_byte *bytes,
2865 offset_type elements)
2868 htab_t sig_types_hash;
2870 dwarf2_per_objfile->n_type_units
2871 = dwarf2_per_objfile->n_allocated_type_units
2873 dwarf2_per_objfile->all_type_units =
2874 XNEWVEC (struct signatured_type *, dwarf2_per_objfile->n_type_units);
2876 sig_types_hash = allocate_signatured_type_table (objfile);
2878 for (i = 0; i < elements; i += 3)
2880 struct signatured_type *sig_type;
2881 ULONGEST offset, type_offset_in_tu, signature;
2884 gdb_static_assert (sizeof (ULONGEST) >= 8);
2885 offset = extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
2886 type_offset_in_tu = extract_unsigned_integer (bytes + 8, 8,
2888 signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
2891 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2892 struct signatured_type);
2893 sig_type->signature = signature;
2894 sig_type->type_offset_in_tu.cu_off = type_offset_in_tu;
2895 sig_type->per_cu.is_debug_types = 1;
2896 sig_type->per_cu.section = section;
2897 sig_type->per_cu.offset.sect_off = offset;
2898 sig_type->per_cu.objfile = objfile;
2899 sig_type->per_cu.v.quick
2900 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2901 struct dwarf2_per_cu_quick_data);
2903 slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
2906 dwarf2_per_objfile->all_type_units[i / 3] = sig_type;
2909 dwarf2_per_objfile->signatured_types = sig_types_hash;
2912 /* Read the address map data from the mapped index, and use it to
2913 populate the objfile's psymtabs_addrmap. */
2916 create_addrmap_from_index (struct objfile *objfile, struct mapped_index *index)
2918 struct gdbarch *gdbarch = get_objfile_arch (objfile);
2919 const gdb_byte *iter, *end;
2920 struct obstack temp_obstack;
2921 struct addrmap *mutable_map;
2922 struct cleanup *cleanup;
2925 obstack_init (&temp_obstack);
2926 cleanup = make_cleanup_obstack_free (&temp_obstack);
2927 mutable_map = addrmap_create_mutable (&temp_obstack);
2929 iter = index->address_table;
2930 end = iter + index->address_table_size;
2932 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2936 ULONGEST hi, lo, cu_index;
2937 lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2939 hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2941 cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
2946 complaint (&symfile_complaints,
2947 _(".gdb_index address table has invalid range (%s - %s)"),
2948 hex_string (lo), hex_string (hi));
2952 if (cu_index >= dwarf2_per_objfile->n_comp_units)
2954 complaint (&symfile_complaints,
2955 _(".gdb_index address table has invalid CU number %u"),
2956 (unsigned) cu_index);
2960 lo = gdbarch_adjust_dwarf2_addr (gdbarch, lo + baseaddr);
2961 hi = gdbarch_adjust_dwarf2_addr (gdbarch, hi + baseaddr);
2962 addrmap_set_empty (mutable_map, lo, hi - 1, dw2_get_cutu (cu_index));
2965 objfile->psymtabs_addrmap = addrmap_create_fixed (mutable_map,
2966 &objfile->objfile_obstack);
2967 do_cleanups (cleanup);
2970 /* The hash function for strings in the mapped index. This is the same as
2971 SYMBOL_HASH_NEXT, but we keep a separate copy to maintain control over the
2972 implementation. This is necessary because the hash function is tied to the
2973 format of the mapped index file. The hash values do not have to match with
2976 Use INT_MAX for INDEX_VERSION if you generate the current index format. */
2979 mapped_index_string_hash (int index_version, const void *p)
2981 const unsigned char *str = (const unsigned char *) p;
2985 while ((c = *str++) != 0)
2987 if (index_version >= 5)
2989 r = r * 67 + c - 113;
2995 /* Find a slot in the mapped index INDEX for the object named NAME.
2996 If NAME is found, set *VEC_OUT to point to the CU vector in the
2997 constant pool and return 1. If NAME cannot be found, return 0. */
3000 find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
3001 offset_type **vec_out)
3003 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
3005 offset_type slot, step;
3006 int (*cmp) (const char *, const char *);
3008 if (current_language->la_language == language_cplus
3009 || current_language->la_language == language_java
3010 || current_language->la_language == language_fortran
3011 || current_language->la_language == language_d)
3013 /* NAME is already canonical. Drop any qualifiers as .gdb_index does
3016 if (strchr (name, '(') != NULL)
3018 char *without_params = cp_remove_params (name);
3020 if (without_params != NULL)
3022 make_cleanup (xfree, without_params);
3023 name = without_params;
3028 /* Index version 4 did not support case insensitive searches. But the
3029 indices for case insensitive languages are built in lowercase, therefore
3030 simulate our NAME being searched is also lowercased. */
3031 hash = mapped_index_string_hash ((index->version == 4
3032 && case_sensitivity == case_sensitive_off
3033 ? 5 : index->version),
3036 slot = hash & (index->symbol_table_slots - 1);
3037 step = ((hash * 17) & (index->symbol_table_slots - 1)) | 1;
3038 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
3042 /* Convert a slot number to an offset into the table. */
3043 offset_type i = 2 * slot;
3045 if (index->symbol_table[i] == 0 && index->symbol_table[i + 1] == 0)
3047 do_cleanups (back_to);
3051 str = index->constant_pool + MAYBE_SWAP (index->symbol_table[i]);
3052 if (!cmp (name, str))
3054 *vec_out = (offset_type *) (index->constant_pool
3055 + MAYBE_SWAP (index->symbol_table[i + 1]));
3056 do_cleanups (back_to);
3060 slot = (slot + step) & (index->symbol_table_slots - 1);
3064 /* A helper function that reads the .gdb_index from SECTION and fills
3065 in MAP. FILENAME is the name of the file containing the section;
3066 it is used for error reporting. DEPRECATED_OK is nonzero if it is
3067 ok to use deprecated sections.
3069 CU_LIST, CU_LIST_ELEMENTS, TYPES_LIST, and TYPES_LIST_ELEMENTS are
3070 out parameters that are filled in with information about the CU and
3071 TU lists in the section.
3073 Returns 1 if all went well, 0 otherwise. */
3076 read_index_from_section (struct objfile *objfile,
3077 const char *filename,
3079 struct dwarf2_section_info *section,
3080 struct mapped_index *map,
3081 const gdb_byte **cu_list,
3082 offset_type *cu_list_elements,
3083 const gdb_byte **types_list,
3084 offset_type *types_list_elements)
3086 const gdb_byte *addr;
3087 offset_type version;
3088 offset_type *metadata;
3091 if (dwarf2_section_empty_p (section))
3094 /* Older elfutils strip versions could keep the section in the main
3095 executable while splitting it for the separate debug info file. */
3096 if ((get_section_flags (section) & SEC_HAS_CONTENTS) == 0)
3099 dwarf2_read_section (objfile, section);
3101 addr = section->buffer;
3102 /* Version check. */
3103 version = MAYBE_SWAP (*(offset_type *) addr);
3104 /* Versions earlier than 3 emitted every copy of a psymbol. This
3105 causes the index to behave very poorly for certain requests. Version 3
3106 contained incomplete addrmap. So, it seems better to just ignore such
3110 static int warning_printed = 0;
3111 if (!warning_printed)
3113 warning (_("Skipping obsolete .gdb_index section in %s."),
3115 warning_printed = 1;
3119 /* Index version 4 uses a different hash function than index version
3122 Versions earlier than 6 did not emit psymbols for inlined
3123 functions. Using these files will cause GDB not to be able to
3124 set breakpoints on inlined functions by name, so we ignore these
3125 indices unless the user has done
3126 "set use-deprecated-index-sections on". */
3127 if (version < 6 && !deprecated_ok)
3129 static int warning_printed = 0;
3130 if (!warning_printed)
3133 Skipping deprecated .gdb_index section in %s.\n\
3134 Do \"set use-deprecated-index-sections on\" before the file is read\n\
3135 to use the section anyway."),
3137 warning_printed = 1;
3141 /* Version 7 indices generated by gold refer to the CU for a symbol instead
3142 of the TU (for symbols coming from TUs),
3143 http://sourceware.org/bugzilla/show_bug.cgi?id=15021.
3144 Plus gold-generated indices can have duplicate entries for global symbols,
3145 http://sourceware.org/bugzilla/show_bug.cgi?id=15646.
3146 These are just performance bugs, and we can't distinguish gdb-generated
3147 indices from gold-generated ones, so issue no warning here. */
3149 /* Indexes with higher version than the one supported by GDB may be no
3150 longer backward compatible. */
3154 map->version = version;
3155 map->total_size = section->size;
3157 metadata = (offset_type *) (addr + sizeof (offset_type));
3160 *cu_list = addr + MAYBE_SWAP (metadata[i]);
3161 *cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
3165 *types_list = addr + MAYBE_SWAP (metadata[i]);
3166 *types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
3167 - MAYBE_SWAP (metadata[i]))
3171 map->address_table = addr + MAYBE_SWAP (metadata[i]);
3172 map->address_table_size = (MAYBE_SWAP (metadata[i + 1])
3173 - MAYBE_SWAP (metadata[i]));
3176 map->symbol_table = (offset_type *) (addr + MAYBE_SWAP (metadata[i]));
3177 map->symbol_table_slots = ((MAYBE_SWAP (metadata[i + 1])
3178 - MAYBE_SWAP (metadata[i]))
3179 / (2 * sizeof (offset_type)));
3182 map->constant_pool = (char *) (addr + MAYBE_SWAP (metadata[i]));
3188 /* Read the index file. If everything went ok, initialize the "quick"
3189 elements of all the CUs and return 1. Otherwise, return 0. */
3192 dwarf2_read_index (struct objfile *objfile)
3194 struct mapped_index local_map, *map;
3195 const gdb_byte *cu_list, *types_list, *dwz_list = NULL;
3196 offset_type cu_list_elements, types_list_elements, dwz_list_elements = 0;
3197 struct dwz_file *dwz;
3199 if (!read_index_from_section (objfile, objfile_name (objfile),
3200 use_deprecated_index_sections,
3201 &dwarf2_per_objfile->gdb_index, &local_map,
3202 &cu_list, &cu_list_elements,
3203 &types_list, &types_list_elements))
3206 /* Don't use the index if it's empty. */
3207 if (local_map.symbol_table_slots == 0)
3210 /* If there is a .dwz file, read it so we can get its CU list as
3212 dwz = dwarf2_get_dwz_file ();
3215 struct mapped_index dwz_map;
3216 const gdb_byte *dwz_types_ignore;
3217 offset_type dwz_types_elements_ignore;
3219 if (!read_index_from_section (objfile, bfd_get_filename (dwz->dwz_bfd),
3221 &dwz->gdb_index, &dwz_map,
3222 &dwz_list, &dwz_list_elements,
3224 &dwz_types_elements_ignore))
3226 warning (_("could not read '.gdb_index' section from %s; skipping"),
3227 bfd_get_filename (dwz->dwz_bfd));
3232 create_cus_from_index (objfile, cu_list, cu_list_elements, dwz_list,
3235 if (types_list_elements)
3237 struct dwarf2_section_info *section;
3239 /* We can only handle a single .debug_types when we have an
3241 if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) != 1)
3244 section = VEC_index (dwarf2_section_info_def,
3245 dwarf2_per_objfile->types, 0);
3247 create_signatured_type_table_from_index (objfile, section, types_list,
3248 types_list_elements);
3251 create_addrmap_from_index (objfile, &local_map);
3253 map = XOBNEW (&objfile->objfile_obstack, struct mapped_index);
3256 dwarf2_per_objfile->index_table = map;
3257 dwarf2_per_objfile->using_index = 1;
3258 dwarf2_per_objfile->quick_file_names_table =
3259 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
3264 /* A helper for the "quick" functions which sets the global
3265 dwarf2_per_objfile according to OBJFILE. */
3268 dw2_setup (struct objfile *objfile)
3270 dwarf2_per_objfile = ((struct dwarf2_per_objfile *)
3271 objfile_data (objfile, dwarf2_objfile_data_key));
3272 gdb_assert (dwarf2_per_objfile);
3275 /* die_reader_func for dw2_get_file_names. */
3278 dw2_get_file_names_reader (const struct die_reader_specs *reader,
3279 const gdb_byte *info_ptr,
3280 struct die_info *comp_unit_die,
3284 struct dwarf2_cu *cu = reader->cu;
3285 struct dwarf2_per_cu_data *this_cu = cu->per_cu;
3286 struct objfile *objfile = dwarf2_per_objfile->objfile;
3287 struct dwarf2_per_cu_data *lh_cu;
3288 struct line_header *lh;
3289 struct attribute *attr;
3291 const char *name, *comp_dir;
3293 struct quick_file_names *qfn;
3294 unsigned int line_offset;
3296 gdb_assert (! this_cu->is_debug_types);
3298 /* Our callers never want to match partial units -- instead they
3299 will match the enclosing full CU. */
3300 if (comp_unit_die->tag == DW_TAG_partial_unit)
3302 this_cu->v.quick->no_file_data = 1;
3311 attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
3314 struct quick_file_names find_entry;
3316 line_offset = DW_UNSND (attr);
3318 /* We may have already read in this line header (TU line header sharing).
3319 If we have we're done. */
3320 find_entry.hash.dwo_unit = cu->dwo_unit;
3321 find_entry.hash.line_offset.sect_off = line_offset;
3322 slot = htab_find_slot (dwarf2_per_objfile->quick_file_names_table,
3323 &find_entry, INSERT);
3326 lh_cu->v.quick->file_names = (struct quick_file_names *) *slot;
3330 lh = dwarf_decode_line_header (line_offset, cu);
3334 lh_cu->v.quick->no_file_data = 1;
3338 qfn = XOBNEW (&objfile->objfile_obstack, struct quick_file_names);
3339 qfn->hash.dwo_unit = cu->dwo_unit;
3340 qfn->hash.line_offset.sect_off = line_offset;
3341 gdb_assert (slot != NULL);
3344 find_file_and_directory (comp_unit_die, cu, &name, &comp_dir);
3346 qfn->num_file_names = lh->num_file_names;
3348 XOBNEWVEC (&objfile->objfile_obstack, const char *, lh->num_file_names);
3349 for (i = 0; i < lh->num_file_names; ++i)
3350 qfn->file_names[i] = file_full_name (i + 1, lh, comp_dir);
3351 qfn->real_names = NULL;
3353 free_line_header (lh);
3355 lh_cu->v.quick->file_names = qfn;
3358 /* A helper for the "quick" functions which attempts to read the line
3359 table for THIS_CU. */
3361 static struct quick_file_names *
3362 dw2_get_file_names (struct dwarf2_per_cu_data *this_cu)
3364 /* This should never be called for TUs. */
3365 gdb_assert (! this_cu->is_debug_types);
3366 /* Nor type unit groups. */
3367 gdb_assert (! IS_TYPE_UNIT_GROUP (this_cu));
3369 if (this_cu->v.quick->file_names != NULL)
3370 return this_cu->v.quick->file_names;
3371 /* If we know there is no line data, no point in looking again. */
3372 if (this_cu->v.quick->no_file_data)
3375 init_cutu_and_read_dies_simple (this_cu, dw2_get_file_names_reader, NULL);
3377 if (this_cu->v.quick->no_file_data)
3379 return this_cu->v.quick->file_names;
3382 /* A helper for the "quick" functions which computes and caches the
3383 real path for a given file name from the line table. */
3386 dw2_get_real_path (struct objfile *objfile,
3387 struct quick_file_names *qfn, int index)
3389 if (qfn->real_names == NULL)
3390 qfn->real_names = OBSTACK_CALLOC (&objfile->objfile_obstack,
3391 qfn->num_file_names, const char *);
3393 if (qfn->real_names[index] == NULL)
3394 qfn->real_names[index] = gdb_realpath (qfn->file_names[index]);
3396 return qfn->real_names[index];
3399 static struct symtab *
3400 dw2_find_last_source_symtab (struct objfile *objfile)
3402 struct compunit_symtab *cust;
3405 dw2_setup (objfile);
3406 index = dwarf2_per_objfile->n_comp_units - 1;
3407 cust = dw2_instantiate_symtab (dw2_get_cutu (index));
3410 return compunit_primary_filetab (cust);
3413 /* Traversal function for dw2_forget_cached_source_info. */
3416 dw2_free_cached_file_names (void **slot, void *info)
3418 struct quick_file_names *file_data = (struct quick_file_names *) *slot;
3420 if (file_data->real_names)
3424 for (i = 0; i < file_data->num_file_names; ++i)
3426 xfree ((void*) file_data->real_names[i]);
3427 file_data->real_names[i] = NULL;
3435 dw2_forget_cached_source_info (struct objfile *objfile)
3437 dw2_setup (objfile);
3439 htab_traverse_noresize (dwarf2_per_objfile->quick_file_names_table,
3440 dw2_free_cached_file_names, NULL);
3443 /* Helper function for dw2_map_symtabs_matching_filename that expands
3444 the symtabs and calls the iterator. */
3447 dw2_map_expand_apply (struct objfile *objfile,
3448 struct dwarf2_per_cu_data *per_cu,
3449 const char *name, const char *real_path,
3450 int (*callback) (struct symtab *, void *),
3453 struct compunit_symtab *last_made = objfile->compunit_symtabs;
3455 /* Don't visit already-expanded CUs. */
3456 if (per_cu->v.quick->compunit_symtab)
3459 /* This may expand more than one symtab, and we want to iterate over
3461 dw2_instantiate_symtab (per_cu);
3463 return iterate_over_some_symtabs (name, real_path, callback, data,
3464 objfile->compunit_symtabs, last_made);
3467 /* Implementation of the map_symtabs_matching_filename method. */
3470 dw2_map_symtabs_matching_filename (struct objfile *objfile, const char *name,
3471 const char *real_path,
3472 int (*callback) (struct symtab *, void *),
3476 const char *name_basename = lbasename (name);
3478 dw2_setup (objfile);
3480 /* The rule is CUs specify all the files, including those used by
3481 any TU, so there's no need to scan TUs here. */
3483 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3486 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3487 struct quick_file_names *file_data;
3489 /* We only need to look at symtabs not already expanded. */
3490 if (per_cu->v.quick->compunit_symtab)
3493 file_data = dw2_get_file_names (per_cu);
3494 if (file_data == NULL)
3497 for (j = 0; j < file_data->num_file_names; ++j)
3499 const char *this_name = file_data->file_names[j];
3500 const char *this_real_name;
3502 if (compare_filenames_for_search (this_name, name))
3504 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3510 /* Before we invoke realpath, which can get expensive when many
3511 files are involved, do a quick comparison of the basenames. */
3512 if (! basenames_may_differ
3513 && FILENAME_CMP (lbasename (this_name), name_basename) != 0)
3516 this_real_name = dw2_get_real_path (objfile, file_data, j);
3517 if (compare_filenames_for_search (this_real_name, name))
3519 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3525 if (real_path != NULL)
3527 gdb_assert (IS_ABSOLUTE_PATH (real_path));
3528 gdb_assert (IS_ABSOLUTE_PATH (name));
3529 if (this_real_name != NULL
3530 && FILENAME_CMP (real_path, this_real_name) == 0)
3532 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3544 /* Struct used to manage iterating over all CUs looking for a symbol. */
3546 struct dw2_symtab_iterator
3548 /* The internalized form of .gdb_index. */
3549 struct mapped_index *index;
3550 /* If non-zero, only look for symbols that match BLOCK_INDEX. */
3551 int want_specific_block;
3552 /* One of GLOBAL_BLOCK or STATIC_BLOCK.
3553 Unused if !WANT_SPECIFIC_BLOCK. */
3555 /* The kind of symbol we're looking for. */
3557 /* The list of CUs from the index entry of the symbol,
3558 or NULL if not found. */
3560 /* The next element in VEC to look at. */
3562 /* The number of elements in VEC, or zero if there is no match. */
3564 /* Have we seen a global version of the symbol?
3565 If so we can ignore all further global instances.
3566 This is to work around gold/15646, inefficient gold-generated
3571 /* Initialize the index symtab iterator ITER.
3572 If WANT_SPECIFIC_BLOCK is non-zero, only look for symbols
3573 in block BLOCK_INDEX. Otherwise BLOCK_INDEX is ignored. */
3576 dw2_symtab_iter_init (struct dw2_symtab_iterator *iter,
3577 struct mapped_index *index,
3578 int want_specific_block,
3583 iter->index = index;
3584 iter->want_specific_block = want_specific_block;
3585 iter->block_index = block_index;
3586 iter->domain = domain;
3588 iter->global_seen = 0;
3590 if (find_slot_in_mapped_hash (index, name, &iter->vec))
3591 iter->length = MAYBE_SWAP (*iter->vec);
3599 /* Return the next matching CU or NULL if there are no more. */
3601 static struct dwarf2_per_cu_data *
3602 dw2_symtab_iter_next (struct dw2_symtab_iterator *iter)
3604 for ( ; iter->next < iter->length; ++iter->next)
3606 offset_type cu_index_and_attrs =
3607 MAYBE_SWAP (iter->vec[iter->next + 1]);
3608 offset_type cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
3609 struct dwarf2_per_cu_data *per_cu;
3610 int want_static = iter->block_index != GLOBAL_BLOCK;
3611 /* This value is only valid for index versions >= 7. */
3612 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
3613 gdb_index_symbol_kind symbol_kind =
3614 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3615 /* Only check the symbol attributes if they're present.
3616 Indices prior to version 7 don't record them,
3617 and indices >= 7 may elide them for certain symbols
3618 (gold does this). */
3620 (iter->index->version >= 7
3621 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3623 /* Don't crash on bad data. */
3624 if (cu_index >= (dwarf2_per_objfile->n_comp_units
3625 + dwarf2_per_objfile->n_type_units))
3627 complaint (&symfile_complaints,
3628 _(".gdb_index entry has bad CU index"
3630 objfile_name (dwarf2_per_objfile->objfile));
3634 per_cu = dw2_get_cutu (cu_index);
3636 /* Skip if already read in. */
3637 if (per_cu->v.quick->compunit_symtab)
3640 /* Check static vs global. */
3643 if (iter->want_specific_block
3644 && want_static != is_static)
3646 /* Work around gold/15646. */
3647 if (!is_static && iter->global_seen)
3650 iter->global_seen = 1;
3653 /* Only check the symbol's kind if it has one. */
3656 switch (iter->domain)
3659 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE
3660 && symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION
3661 /* Some types are also in VAR_DOMAIN. */
3662 && symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3666 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3670 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
3685 static struct compunit_symtab *
3686 dw2_lookup_symbol (struct objfile *objfile, int block_index,
3687 const char *name, domain_enum domain)
3689 struct compunit_symtab *stab_best = NULL;
3690 struct mapped_index *index;
3692 dw2_setup (objfile);
3694 index = dwarf2_per_objfile->index_table;
3696 /* index is NULL if OBJF_READNOW. */
3699 struct dw2_symtab_iterator iter;
3700 struct dwarf2_per_cu_data *per_cu;
3702 dw2_symtab_iter_init (&iter, index, 1, block_index, domain, name);
3704 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
3706 struct symbol *sym, *with_opaque = NULL;
3707 struct compunit_symtab *stab = dw2_instantiate_symtab (per_cu);
3708 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
3709 struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
3711 sym = block_find_symbol (block, name, domain,
3712 block_find_non_opaque_type_preferred,
3715 /* Some caution must be observed with overloaded functions
3716 and methods, since the index will not contain any overload
3717 information (but NAME might contain it). */
3720 && strcmp_iw (SYMBOL_SEARCH_NAME (sym), name) == 0)
3722 if (with_opaque != NULL
3723 && strcmp_iw (SYMBOL_SEARCH_NAME (with_opaque), name) == 0)
3726 /* Keep looking through other CUs. */
3734 dw2_print_stats (struct objfile *objfile)
3736 int i, total, count;
3738 dw2_setup (objfile);
3739 total = dwarf2_per_objfile->n_comp_units + dwarf2_per_objfile->n_type_units;
3741 for (i = 0; i < total; ++i)
3743 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
3745 if (!per_cu->v.quick->compunit_symtab)
3748 printf_filtered (_(" Number of read CUs: %d\n"), total - count);
3749 printf_filtered (_(" Number of unread CUs: %d\n"), count);
3752 /* This dumps minimal information about the index.
3753 It is called via "mt print objfiles".
3754 One use is to verify .gdb_index has been loaded by the
3755 gdb.dwarf2/gdb-index.exp testcase. */
3758 dw2_dump (struct objfile *objfile)
3760 dw2_setup (objfile);
3761 gdb_assert (dwarf2_per_objfile->using_index);
3762 printf_filtered (".gdb_index:");
3763 if (dwarf2_per_objfile->index_table != NULL)
3765 printf_filtered (" version %d\n",
3766 dwarf2_per_objfile->index_table->version);
3769 printf_filtered (" faked for \"readnow\"\n");
3770 printf_filtered ("\n");
3774 dw2_relocate (struct objfile *objfile,
3775 const struct section_offsets *new_offsets,
3776 const struct section_offsets *delta)
3778 /* There's nothing to relocate here. */
3782 dw2_expand_symtabs_for_function (struct objfile *objfile,
3783 const char *func_name)
3785 struct mapped_index *index;
3787 dw2_setup (objfile);
3789 index = dwarf2_per_objfile->index_table;
3791 /* index is NULL if OBJF_READNOW. */
3794 struct dw2_symtab_iterator iter;
3795 struct dwarf2_per_cu_data *per_cu;
3797 /* Note: It doesn't matter what we pass for block_index here. */
3798 dw2_symtab_iter_init (&iter, index, 0, GLOBAL_BLOCK, VAR_DOMAIN,
3801 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
3802 dw2_instantiate_symtab (per_cu);
3807 dw2_expand_all_symtabs (struct objfile *objfile)
3811 dw2_setup (objfile);
3813 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3814 + dwarf2_per_objfile->n_type_units); ++i)
3816 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
3818 dw2_instantiate_symtab (per_cu);
3823 dw2_expand_symtabs_with_fullname (struct objfile *objfile,
3824 const char *fullname)
3828 dw2_setup (objfile);
3830 /* We don't need to consider type units here.
3831 This is only called for examining code, e.g. expand_line_sal.
3832 There can be an order of magnitude (or more) more type units
3833 than comp units, and we avoid them if we can. */
3835 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3838 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
3839 struct quick_file_names *file_data;
3841 /* We only need to look at symtabs not already expanded. */
3842 if (per_cu->v.quick->compunit_symtab)
3845 file_data = dw2_get_file_names (per_cu);
3846 if (file_data == NULL)
3849 for (j = 0; j < file_data->num_file_names; ++j)
3851 const char *this_fullname = file_data->file_names[j];
3853 if (filename_cmp (this_fullname, fullname) == 0)
3855 dw2_instantiate_symtab (per_cu);
3863 dw2_map_matching_symbols (struct objfile *objfile,
3864 const char * name, domain_enum domain,
3866 int (*callback) (struct block *,
3867 struct symbol *, void *),
3868 void *data, symbol_compare_ftype *match,
3869 symbol_compare_ftype *ordered_compare)
3871 /* Currently unimplemented; used for Ada. The function can be called if the
3872 current language is Ada for a non-Ada objfile using GNU index. As Ada
3873 does not look for non-Ada symbols this function should just return. */
3877 dw2_expand_symtabs_matching
3878 (struct objfile *objfile,
3879 expand_symtabs_file_matcher_ftype *file_matcher,
3880 expand_symtabs_symbol_matcher_ftype *symbol_matcher,
3881 expand_symtabs_exp_notify_ftype *expansion_notify,
3882 enum search_domain kind,
3887 struct mapped_index *index;
3889 dw2_setup (objfile);
3891 /* index_table is NULL if OBJF_READNOW. */
3892 if (!dwarf2_per_objfile->index_table)
3894 index = dwarf2_per_objfile->index_table;
3896 if (file_matcher != NULL)
3898 struct cleanup *cleanup;
3899 htab_t visited_found, visited_not_found;
3901 visited_found = htab_create_alloc (10,
3902 htab_hash_pointer, htab_eq_pointer,
3903 NULL, xcalloc, xfree);
3904 cleanup = make_cleanup_htab_delete (visited_found);
3905 visited_not_found = htab_create_alloc (10,
3906 htab_hash_pointer, htab_eq_pointer,
3907 NULL, xcalloc, xfree);
3908 make_cleanup_htab_delete (visited_not_found);
3910 /* The rule is CUs specify all the files, including those used by
3911 any TU, so there's no need to scan TUs here. */
3913 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3916 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3917 struct quick_file_names *file_data;
3922 per_cu->v.quick->mark = 0;
3924 /* We only need to look at symtabs not already expanded. */
3925 if (per_cu->v.quick->compunit_symtab)
3928 file_data = dw2_get_file_names (per_cu);
3929 if (file_data == NULL)
3932 if (htab_find (visited_not_found, file_data) != NULL)
3934 else if (htab_find (visited_found, file_data) != NULL)
3936 per_cu->v.quick->mark = 1;
3940 for (j = 0; j < file_data->num_file_names; ++j)
3942 const char *this_real_name;
3944 if (file_matcher (file_data->file_names[j], data, 0))
3946 per_cu->v.quick->mark = 1;
3950 /* Before we invoke realpath, which can get expensive when many
3951 files are involved, do a quick comparison of the basenames. */
3952 if (!basenames_may_differ
3953 && !file_matcher (lbasename (file_data->file_names[j]),
3957 this_real_name = dw2_get_real_path (objfile, file_data, j);
3958 if (file_matcher (this_real_name, data, 0))
3960 per_cu->v.quick->mark = 1;
3965 slot = htab_find_slot (per_cu->v.quick->mark
3967 : visited_not_found,
3972 do_cleanups (cleanup);
3975 for (iter = 0; iter < index->symbol_table_slots; ++iter)
3977 offset_type idx = 2 * iter;
3979 offset_type *vec, vec_len, vec_idx;
3980 int global_seen = 0;
3984 if (index->symbol_table[idx] == 0 && index->symbol_table[idx + 1] == 0)
3987 name = index->constant_pool + MAYBE_SWAP (index->symbol_table[idx]);
3989 if (! (*symbol_matcher) (name, data))
3992 /* The name was matched, now expand corresponding CUs that were
3994 vec = (offset_type *) (index->constant_pool
3995 + MAYBE_SWAP (index->symbol_table[idx + 1]));
3996 vec_len = MAYBE_SWAP (vec[0]);
3997 for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
3999 struct dwarf2_per_cu_data *per_cu;
4000 offset_type cu_index_and_attrs = MAYBE_SWAP (vec[vec_idx + 1]);
4001 /* This value is only valid for index versions >= 7. */
4002 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
4003 gdb_index_symbol_kind symbol_kind =
4004 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
4005 int cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
4006 /* Only check the symbol attributes if they're present.
4007 Indices prior to version 7 don't record them,
4008 and indices >= 7 may elide them for certain symbols
4009 (gold does this). */
4011 (index->version >= 7
4012 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
4014 /* Work around gold/15646. */
4017 if (!is_static && global_seen)
4023 /* Only check the symbol's kind if it has one. */
4028 case VARIABLES_DOMAIN:
4029 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE)
4032 case FUNCTIONS_DOMAIN:
4033 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION)
4037 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
4045 /* Don't crash on bad data. */
4046 if (cu_index >= (dwarf2_per_objfile->n_comp_units
4047 + dwarf2_per_objfile->n_type_units))
4049 complaint (&symfile_complaints,
4050 _(".gdb_index entry has bad CU index"
4051 " [in module %s]"), objfile_name (objfile));
4055 per_cu = dw2_get_cutu (cu_index);
4056 if (file_matcher == NULL || per_cu->v.quick->mark)
4058 int symtab_was_null =
4059 (per_cu->v.quick->compunit_symtab == NULL);
4061 dw2_instantiate_symtab (per_cu);
4063 if (expansion_notify != NULL
4065 && per_cu->v.quick->compunit_symtab != NULL)
4067 expansion_notify (per_cu->v.quick->compunit_symtab,
4075 /* A helper for dw2_find_pc_sect_compunit_symtab which finds the most specific
4078 static struct compunit_symtab *
4079 recursively_find_pc_sect_compunit_symtab (struct compunit_symtab *cust,
4084 if (COMPUNIT_BLOCKVECTOR (cust) != NULL
4085 && blockvector_contains_pc (COMPUNIT_BLOCKVECTOR (cust), pc))
4088 if (cust->includes == NULL)
4091 for (i = 0; cust->includes[i]; ++i)
4093 struct compunit_symtab *s = cust->includes[i];
4095 s = recursively_find_pc_sect_compunit_symtab (s, pc);
4103 static struct compunit_symtab *
4104 dw2_find_pc_sect_compunit_symtab (struct objfile *objfile,
4105 struct bound_minimal_symbol msymbol,
4107 struct obj_section *section,
4110 struct dwarf2_per_cu_data *data;
4111 struct compunit_symtab *result;
4113 dw2_setup (objfile);
4115 if (!objfile->psymtabs_addrmap)
4118 data = (struct dwarf2_per_cu_data *) addrmap_find (objfile->psymtabs_addrmap,
4123 if (warn_if_readin && data->v.quick->compunit_symtab)
4124 warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
4125 paddress (get_objfile_arch (objfile), pc));
4128 = recursively_find_pc_sect_compunit_symtab (dw2_instantiate_symtab (data),
4130 gdb_assert (result != NULL);
4135 dw2_map_symbol_filenames (struct objfile *objfile, symbol_filename_ftype *fun,
4136 void *data, int need_fullname)
4139 struct cleanup *cleanup;
4140 htab_t visited = htab_create_alloc (10, htab_hash_pointer, htab_eq_pointer,
4141 NULL, xcalloc, xfree);
4143 cleanup = make_cleanup_htab_delete (visited);
4144 dw2_setup (objfile);
4146 /* The rule is CUs specify all the files, including those used by
4147 any TU, so there's no need to scan TUs here.
4148 We can ignore file names coming from already-expanded CUs. */
4150 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
4152 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
4154 if (per_cu->v.quick->compunit_symtab)
4156 void **slot = htab_find_slot (visited, per_cu->v.quick->file_names,
4159 *slot = per_cu->v.quick->file_names;
4163 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
4166 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
4167 struct quick_file_names *file_data;
4170 /* We only need to look at symtabs not already expanded. */
4171 if (per_cu->v.quick->compunit_symtab)
4174 file_data = dw2_get_file_names (per_cu);
4175 if (file_data == NULL)
4178 slot = htab_find_slot (visited, file_data, INSERT);
4181 /* Already visited. */
4186 for (j = 0; j < file_data->num_file_names; ++j)
4188 const char *this_real_name;
4191 this_real_name = dw2_get_real_path (objfile, file_data, j);
4193 this_real_name = NULL;
4194 (*fun) (file_data->file_names[j], this_real_name, data);
4198 do_cleanups (cleanup);
4202 dw2_has_symbols (struct objfile *objfile)
4207 const struct quick_symbol_functions dwarf2_gdb_index_functions =
4210 dw2_find_last_source_symtab,
4211 dw2_forget_cached_source_info,
4212 dw2_map_symtabs_matching_filename,
4217 dw2_expand_symtabs_for_function,
4218 dw2_expand_all_symtabs,
4219 dw2_expand_symtabs_with_fullname,
4220 dw2_map_matching_symbols,
4221 dw2_expand_symtabs_matching,
4222 dw2_find_pc_sect_compunit_symtab,
4223 dw2_map_symbol_filenames
4226 /* Initialize for reading DWARF for this objfile. Return 0 if this
4227 file will use psymtabs, or 1 if using the GNU index. */
4230 dwarf2_initialize_objfile (struct objfile *objfile)
4232 /* If we're about to read full symbols, don't bother with the
4233 indices. In this case we also don't care if some other debug
4234 format is making psymtabs, because they are all about to be
4236 if ((objfile->flags & OBJF_READNOW))
4240 dwarf2_per_objfile->using_index = 1;
4241 create_all_comp_units (objfile);
4242 create_all_type_units (objfile);
4243 dwarf2_per_objfile->quick_file_names_table =
4244 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
4246 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
4247 + dwarf2_per_objfile->n_type_units); ++i)
4249 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
4251 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4252 struct dwarf2_per_cu_quick_data);
4255 /* Return 1 so that gdb sees the "quick" functions. However,
4256 these functions will be no-ops because we will have expanded
4261 if (dwarf2_read_index (objfile))
4269 /* Build a partial symbol table. */
4272 dwarf2_build_psymtabs (struct objfile *objfile)
4275 if (objfile->global_psymbols.size == 0 && objfile->static_psymbols.size == 0)
4277 init_psymbol_list (objfile, 1024);
4282 /* This isn't really ideal: all the data we allocate on the
4283 objfile's obstack is still uselessly kept around. However,
4284 freeing it seems unsafe. */
4285 struct cleanup *cleanups = make_cleanup_discard_psymtabs (objfile);
4287 dwarf2_build_psymtabs_hard (objfile);
4288 discard_cleanups (cleanups);
4290 CATCH (except, RETURN_MASK_ERROR)
4292 exception_print (gdb_stderr, except);
4297 /* Return the total length of the CU described by HEADER. */
4300 get_cu_length (const struct comp_unit_head *header)
4302 return header->initial_length_size + header->length;
4305 /* Return TRUE if OFFSET is within CU_HEADER. */
4308 offset_in_cu_p (const struct comp_unit_head *cu_header, sect_offset offset)
4310 sect_offset bottom = { cu_header->offset.sect_off };
4311 sect_offset top = { cu_header->offset.sect_off + get_cu_length (cu_header) };
4313 return (offset.sect_off >= bottom.sect_off && offset.sect_off < top.sect_off);
4316 /* Find the base address of the compilation unit for range lists and
4317 location lists. It will normally be specified by DW_AT_low_pc.
4318 In DWARF-3 draft 4, the base address could be overridden by
4319 DW_AT_entry_pc. It's been removed, but GCC still uses this for
4320 compilation units with discontinuous ranges. */
4323 dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
4325 struct attribute *attr;
4328 cu->base_address = 0;
4330 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
4333 cu->base_address = attr_value_as_address (attr);
4338 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
4341 cu->base_address = attr_value_as_address (attr);
4347 /* Read in the comp unit header information from the debug_info at info_ptr.
4348 NOTE: This leaves members offset, first_die_offset to be filled in
4351 static const gdb_byte *
4352 read_comp_unit_head (struct comp_unit_head *cu_header,
4353 const gdb_byte *info_ptr, bfd *abfd)
4356 unsigned int bytes_read;
4358 cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
4359 cu_header->initial_length_size = bytes_read;
4360 cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
4361 info_ptr += bytes_read;
4362 cu_header->version = read_2_bytes (abfd, info_ptr);
4364 cu_header->abbrev_offset.sect_off = read_offset (abfd, info_ptr, cu_header,
4366 info_ptr += bytes_read;
4367 cu_header->addr_size = read_1_byte (abfd, info_ptr);
4369 signed_addr = bfd_get_sign_extend_vma (abfd);
4370 if (signed_addr < 0)
4371 internal_error (__FILE__, __LINE__,
4372 _("read_comp_unit_head: dwarf from non elf file"));
4373 cu_header->signed_addr_p = signed_addr;
4378 /* Helper function that returns the proper abbrev section for
4381 static struct dwarf2_section_info *
4382 get_abbrev_section_for_cu (struct dwarf2_per_cu_data *this_cu)
4384 struct dwarf2_section_info *abbrev;
4386 if (this_cu->is_dwz)
4387 abbrev = &dwarf2_get_dwz_file ()->abbrev;
4389 abbrev = &dwarf2_per_objfile->abbrev;
4394 /* Subroutine of read_and_check_comp_unit_head and
4395 read_and_check_type_unit_head to simplify them.
4396 Perform various error checking on the header. */
4399 error_check_comp_unit_head (struct comp_unit_head *header,
4400 struct dwarf2_section_info *section,
4401 struct dwarf2_section_info *abbrev_section)
4403 const char *filename = get_section_file_name (section);
4405 if (header->version != 2 && header->version != 3 && header->version != 4)
4406 error (_("Dwarf Error: wrong version in compilation unit header "
4407 "(is %d, should be 2, 3, or 4) [in module %s]"), header->version,
4410 if (header->abbrev_offset.sect_off
4411 >= dwarf2_section_size (dwarf2_per_objfile->objfile, abbrev_section))
4412 error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
4413 "(offset 0x%lx + 6) [in module %s]"),
4414 (long) header->abbrev_offset.sect_off, (long) header->offset.sect_off,
4417 /* Cast to unsigned long to use 64-bit arithmetic when possible to
4418 avoid potential 32-bit overflow. */
4419 if (((unsigned long) header->offset.sect_off + get_cu_length (header))
4421 error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
4422 "(offset 0x%lx + 0) [in module %s]"),
4423 (long) header->length, (long) header->offset.sect_off,
4427 /* Read in a CU/TU header and perform some basic error checking.
4428 The contents of the header are stored in HEADER.
4429 The result is a pointer to the start of the first DIE. */
4431 static const gdb_byte *
4432 read_and_check_comp_unit_head (struct comp_unit_head *header,
4433 struct dwarf2_section_info *section,
4434 struct dwarf2_section_info *abbrev_section,
4435 const gdb_byte *info_ptr,
4436 int is_debug_types_section)
4438 const gdb_byte *beg_of_comp_unit = info_ptr;
4439 bfd *abfd = get_section_bfd_owner (section);
4441 header->offset.sect_off = beg_of_comp_unit - section->buffer;
4443 info_ptr = read_comp_unit_head (header, info_ptr, abfd);
4445 /* If we're reading a type unit, skip over the signature and
4446 type_offset fields. */
4447 if (is_debug_types_section)
4448 info_ptr += 8 /*signature*/ + header->offset_size;
4450 header->first_die_offset.cu_off = info_ptr - beg_of_comp_unit;
4452 error_check_comp_unit_head (header, section, abbrev_section);
4457 /* Read in the types comp unit header information from .debug_types entry at
4458 types_ptr. The result is a pointer to one past the end of the header. */
4460 static const gdb_byte *
4461 read_and_check_type_unit_head (struct comp_unit_head *header,
4462 struct dwarf2_section_info *section,
4463 struct dwarf2_section_info *abbrev_section,
4464 const gdb_byte *info_ptr,
4465 ULONGEST *signature,
4466 cu_offset *type_offset_in_tu)
4468 const gdb_byte *beg_of_comp_unit = info_ptr;
4469 bfd *abfd = get_section_bfd_owner (section);
4471 header->offset.sect_off = beg_of_comp_unit - section->buffer;
4473 info_ptr = read_comp_unit_head (header, info_ptr, abfd);
4475 /* If we're reading a type unit, skip over the signature and
4476 type_offset fields. */
4477 if (signature != NULL)
4478 *signature = read_8_bytes (abfd, info_ptr);
4480 if (type_offset_in_tu != NULL)
4481 type_offset_in_tu->cu_off = read_offset_1 (abfd, info_ptr,
4482 header->offset_size);
4483 info_ptr += header->offset_size;
4485 header->first_die_offset.cu_off = info_ptr - beg_of_comp_unit;
4487 error_check_comp_unit_head (header, section, abbrev_section);
4492 /* Fetch the abbreviation table offset from a comp or type unit header. */
4495 read_abbrev_offset (struct dwarf2_section_info *section,
4498 bfd *abfd = get_section_bfd_owner (section);
4499 const gdb_byte *info_ptr;
4500 unsigned int length, initial_length_size, offset_size;
4501 sect_offset abbrev_offset;
4503 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
4504 info_ptr = section->buffer + offset.sect_off;
4505 length = read_initial_length (abfd, info_ptr, &initial_length_size);
4506 offset_size = initial_length_size == 4 ? 4 : 8;
4507 info_ptr += initial_length_size + 2 /*version*/;
4508 abbrev_offset.sect_off = read_offset_1 (abfd, info_ptr, offset_size);
4509 return abbrev_offset;
4512 /* Allocate a new partial symtab for file named NAME and mark this new
4513 partial symtab as being an include of PST. */
4516 dwarf2_create_include_psymtab (const char *name, struct partial_symtab *pst,
4517 struct objfile *objfile)
4519 struct partial_symtab *subpst = allocate_psymtab (name, objfile);
4521 if (!IS_ABSOLUTE_PATH (subpst->filename))
4523 /* It shares objfile->objfile_obstack. */
4524 subpst->dirname = pst->dirname;
4527 subpst->textlow = 0;
4528 subpst->texthigh = 0;
4530 subpst->dependencies
4531 = XOBNEW (&objfile->objfile_obstack, struct partial_symtab *);
4532 subpst->dependencies[0] = pst;
4533 subpst->number_of_dependencies = 1;
4535 subpst->globals_offset = 0;
4536 subpst->n_global_syms = 0;
4537 subpst->statics_offset = 0;
4538 subpst->n_static_syms = 0;
4539 subpst->compunit_symtab = NULL;
4540 subpst->read_symtab = pst->read_symtab;
4543 /* No private part is necessary for include psymtabs. This property
4544 can be used to differentiate between such include psymtabs and
4545 the regular ones. */
4546 subpst->read_symtab_private = NULL;
4549 /* Read the Line Number Program data and extract the list of files
4550 included by the source file represented by PST. Build an include
4551 partial symtab for each of these included files. */
4554 dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
4555 struct die_info *die,
4556 struct partial_symtab *pst)
4558 struct line_header *lh = NULL;
4559 struct attribute *attr;
4561 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
4563 lh = dwarf_decode_line_header (DW_UNSND (attr), cu);
4565 return; /* No linetable, so no includes. */
4567 /* NOTE: pst->dirname is DW_AT_comp_dir (if present). */
4568 dwarf_decode_lines (lh, pst->dirname, cu, pst, pst->textlow, 1);
4570 free_line_header (lh);
4574 hash_signatured_type (const void *item)
4576 const struct signatured_type *sig_type
4577 = (const struct signatured_type *) item;
4579 /* This drops the top 32 bits of the signature, but is ok for a hash. */
4580 return sig_type->signature;
4584 eq_signatured_type (const void *item_lhs, const void *item_rhs)
4586 const struct signatured_type *lhs = (const struct signatured_type *) item_lhs;
4587 const struct signatured_type *rhs = (const struct signatured_type *) item_rhs;
4589 return lhs->signature == rhs->signature;
4592 /* Allocate a hash table for signatured types. */
4595 allocate_signatured_type_table (struct objfile *objfile)
4597 return htab_create_alloc_ex (41,
4598 hash_signatured_type,
4601 &objfile->objfile_obstack,
4602 hashtab_obstack_allocate,
4603 dummy_obstack_deallocate);
4606 /* A helper function to add a signatured type CU to a table. */
4609 add_signatured_type_cu_to_table (void **slot, void *datum)
4611 struct signatured_type *sigt = (struct signatured_type *) *slot;
4612 struct signatured_type ***datap = (struct signatured_type ***) datum;
4620 /* Create the hash table of all entries in the .debug_types
4621 (or .debug_types.dwo) section(s).
4622 If reading a DWO file, then DWO_FILE is a pointer to the DWO file object,
4623 otherwise it is NULL.
4625 The result is a pointer to the hash table or NULL if there are no types.
4627 Note: This function processes DWO files only, not DWP files. */
4630 create_debug_types_hash_table (struct dwo_file *dwo_file,
4631 VEC (dwarf2_section_info_def) *types)
4633 struct objfile *objfile = dwarf2_per_objfile->objfile;
4634 htab_t types_htab = NULL;
4636 struct dwarf2_section_info *section;
4637 struct dwarf2_section_info *abbrev_section;
4639 if (VEC_empty (dwarf2_section_info_def, types))
4642 abbrev_section = (dwo_file != NULL
4643 ? &dwo_file->sections.abbrev
4644 : &dwarf2_per_objfile->abbrev);
4646 if (dwarf_read_debug)
4647 fprintf_unfiltered (gdb_stdlog, "Reading .debug_types%s for %s:\n",
4648 dwo_file ? ".dwo" : "",
4649 get_section_file_name (abbrev_section));
4652 VEC_iterate (dwarf2_section_info_def, types, ix, section);
4656 const gdb_byte *info_ptr, *end_ptr;
4658 dwarf2_read_section (objfile, section);
4659 info_ptr = section->buffer;
4661 if (info_ptr == NULL)
4664 /* We can't set abfd until now because the section may be empty or
4665 not present, in which case the bfd is unknown. */
4666 abfd = get_section_bfd_owner (section);
4668 /* We don't use init_cutu_and_read_dies_simple, or some such, here
4669 because we don't need to read any dies: the signature is in the
4672 end_ptr = info_ptr + section->size;
4673 while (info_ptr < end_ptr)
4676 cu_offset type_offset_in_tu;
4678 struct signatured_type *sig_type;
4679 struct dwo_unit *dwo_tu;
4681 const gdb_byte *ptr = info_ptr;
4682 struct comp_unit_head header;
4683 unsigned int length;
4685 offset.sect_off = ptr - section->buffer;
4687 /* We need to read the type's signature in order to build the hash
4688 table, but we don't need anything else just yet. */
4690 ptr = read_and_check_type_unit_head (&header, section,
4691 abbrev_section, ptr,
4692 &signature, &type_offset_in_tu);
4694 length = get_cu_length (&header);
4696 /* Skip dummy type units. */
4697 if (ptr >= info_ptr + length
4698 || peek_abbrev_code (abfd, ptr) == 0)
4704 if (types_htab == NULL)
4707 types_htab = allocate_dwo_unit_table (objfile);
4709 types_htab = allocate_signatured_type_table (objfile);
4715 dwo_tu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4717 dwo_tu->dwo_file = dwo_file;
4718 dwo_tu->signature = signature;
4719 dwo_tu->type_offset_in_tu = type_offset_in_tu;
4720 dwo_tu->section = section;
4721 dwo_tu->offset = offset;
4722 dwo_tu->length = length;
4726 /* N.B.: type_offset is not usable if this type uses a DWO file.
4727 The real type_offset is in the DWO file. */
4729 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4730 struct signatured_type);
4731 sig_type->signature = signature;
4732 sig_type->type_offset_in_tu = type_offset_in_tu;
4733 sig_type->per_cu.objfile = objfile;
4734 sig_type->per_cu.is_debug_types = 1;
4735 sig_type->per_cu.section = section;
4736 sig_type->per_cu.offset = offset;
4737 sig_type->per_cu.length = length;
4740 slot = htab_find_slot (types_htab,
4741 dwo_file ? (void*) dwo_tu : (void *) sig_type,
4743 gdb_assert (slot != NULL);
4746 sect_offset dup_offset;
4750 const struct dwo_unit *dup_tu
4751 = (const struct dwo_unit *) *slot;
4753 dup_offset = dup_tu->offset;
4757 const struct signatured_type *dup_tu
4758 = (const struct signatured_type *) *slot;
4760 dup_offset = dup_tu->per_cu.offset;
4763 complaint (&symfile_complaints,
4764 _("debug type entry at offset 0x%x is duplicate to"
4765 " the entry at offset 0x%x, signature %s"),
4766 offset.sect_off, dup_offset.sect_off,
4767 hex_string (signature));
4769 *slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
4771 if (dwarf_read_debug > 1)
4772 fprintf_unfiltered (gdb_stdlog, " offset 0x%x, signature %s\n",
4774 hex_string (signature));
4783 /* Create the hash table of all entries in the .debug_types section,
4784 and initialize all_type_units.
4785 The result is zero if there is an error (e.g. missing .debug_types section),
4786 otherwise non-zero. */
4789 create_all_type_units (struct objfile *objfile)
4792 struct signatured_type **iter;
4794 types_htab = create_debug_types_hash_table (NULL, dwarf2_per_objfile->types);
4795 if (types_htab == NULL)
4797 dwarf2_per_objfile->signatured_types = NULL;
4801 dwarf2_per_objfile->signatured_types = types_htab;
4803 dwarf2_per_objfile->n_type_units
4804 = dwarf2_per_objfile->n_allocated_type_units
4805 = htab_elements (types_htab);
4806 dwarf2_per_objfile->all_type_units =
4807 XNEWVEC (struct signatured_type *, dwarf2_per_objfile->n_type_units);
4808 iter = &dwarf2_per_objfile->all_type_units[0];
4809 htab_traverse_noresize (types_htab, add_signatured_type_cu_to_table, &iter);
4810 gdb_assert (iter - &dwarf2_per_objfile->all_type_units[0]
4811 == dwarf2_per_objfile->n_type_units);
4816 /* Add an entry for signature SIG to dwarf2_per_objfile->signatured_types.
4817 If SLOT is non-NULL, it is the entry to use in the hash table.
4818 Otherwise we find one. */
4820 static struct signatured_type *
4821 add_type_unit (ULONGEST sig, void **slot)
4823 struct objfile *objfile = dwarf2_per_objfile->objfile;
4824 int n_type_units = dwarf2_per_objfile->n_type_units;
4825 struct signatured_type *sig_type;
4827 gdb_assert (n_type_units <= dwarf2_per_objfile->n_allocated_type_units);
4829 if (n_type_units > dwarf2_per_objfile->n_allocated_type_units)
4831 if (dwarf2_per_objfile->n_allocated_type_units == 0)
4832 dwarf2_per_objfile->n_allocated_type_units = 1;
4833 dwarf2_per_objfile->n_allocated_type_units *= 2;
4834 dwarf2_per_objfile->all_type_units
4835 = XRESIZEVEC (struct signatured_type *,
4836 dwarf2_per_objfile->all_type_units,
4837 dwarf2_per_objfile->n_allocated_type_units);
4838 ++dwarf2_per_objfile->tu_stats.nr_all_type_units_reallocs;
4840 dwarf2_per_objfile->n_type_units = n_type_units;
4842 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4843 struct signatured_type);
4844 dwarf2_per_objfile->all_type_units[n_type_units - 1] = sig_type;
4845 sig_type->signature = sig;
4846 sig_type->per_cu.is_debug_types = 1;
4847 if (dwarf2_per_objfile->using_index)
4849 sig_type->per_cu.v.quick =
4850 OBSTACK_ZALLOC (&objfile->objfile_obstack,
4851 struct dwarf2_per_cu_quick_data);
4856 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
4859 gdb_assert (*slot == NULL);
4861 /* The rest of sig_type must be filled in by the caller. */
4865 /* Subroutine of lookup_dwo_signatured_type and lookup_dwp_signatured_type.
4866 Fill in SIG_ENTRY with DWO_ENTRY. */
4869 fill_in_sig_entry_from_dwo_entry (struct objfile *objfile,
4870 struct signatured_type *sig_entry,
4871 struct dwo_unit *dwo_entry)
4873 /* Make sure we're not clobbering something we don't expect to. */
4874 gdb_assert (! sig_entry->per_cu.queued);
4875 gdb_assert (sig_entry->per_cu.cu == NULL);
4876 if (dwarf2_per_objfile->using_index)
4878 gdb_assert (sig_entry->per_cu.v.quick != NULL);
4879 gdb_assert (sig_entry->per_cu.v.quick->compunit_symtab == NULL);
4882 gdb_assert (sig_entry->per_cu.v.psymtab == NULL);
4883 gdb_assert (sig_entry->signature == dwo_entry->signature);
4884 gdb_assert (sig_entry->type_offset_in_section.sect_off == 0);
4885 gdb_assert (sig_entry->type_unit_group == NULL);
4886 gdb_assert (sig_entry->dwo_unit == NULL);
4888 sig_entry->per_cu.section = dwo_entry->section;
4889 sig_entry->per_cu.offset = dwo_entry->offset;
4890 sig_entry->per_cu.length = dwo_entry->length;
4891 sig_entry->per_cu.reading_dwo_directly = 1;
4892 sig_entry->per_cu.objfile = objfile;
4893 sig_entry->type_offset_in_tu = dwo_entry->type_offset_in_tu;
4894 sig_entry->dwo_unit = dwo_entry;
4897 /* Subroutine of lookup_signatured_type.
4898 If we haven't read the TU yet, create the signatured_type data structure
4899 for a TU to be read in directly from a DWO file, bypassing the stub.
4900 This is the "Stay in DWO Optimization": When there is no DWP file and we're
4901 using .gdb_index, then when reading a CU we want to stay in the DWO file
4902 containing that CU. Otherwise we could end up reading several other DWO
4903 files (due to comdat folding) to process the transitive closure of all the
4904 mentioned TUs, and that can be slow. The current DWO file will have every
4905 type signature that it needs.
4906 We only do this for .gdb_index because in the psymtab case we already have
4907 to read all the DWOs to build the type unit groups. */
4909 static struct signatured_type *
4910 lookup_dwo_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
4912 struct objfile *objfile = dwarf2_per_objfile->objfile;
4913 struct dwo_file *dwo_file;
4914 struct dwo_unit find_dwo_entry, *dwo_entry;
4915 struct signatured_type find_sig_entry, *sig_entry;
4918 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->using_index);
4920 /* If TU skeletons have been removed then we may not have read in any
4922 if (dwarf2_per_objfile->signatured_types == NULL)
4924 dwarf2_per_objfile->signatured_types
4925 = allocate_signatured_type_table (objfile);
4928 /* We only ever need to read in one copy of a signatured type.
4929 Use the global signatured_types array to do our own comdat-folding
4930 of types. If this is the first time we're reading this TU, and
4931 the TU has an entry in .gdb_index, replace the recorded data from
4932 .gdb_index with this TU. */
4934 find_sig_entry.signature = sig;
4935 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
4936 &find_sig_entry, INSERT);
4937 sig_entry = (struct signatured_type *) *slot;
4939 /* We can get here with the TU already read, *or* in the process of being
4940 read. Don't reassign the global entry to point to this DWO if that's
4941 the case. Also note that if the TU is already being read, it may not
4942 have come from a DWO, the program may be a mix of Fission-compiled
4943 code and non-Fission-compiled code. */
4945 /* Have we already tried to read this TU?
4946 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
4947 needn't exist in the global table yet). */
4948 if (sig_entry != NULL && sig_entry->per_cu.tu_read)
4951 /* Note: cu->dwo_unit is the dwo_unit that references this TU, not the
4952 dwo_unit of the TU itself. */
4953 dwo_file = cu->dwo_unit->dwo_file;
4955 /* Ok, this is the first time we're reading this TU. */
4956 if (dwo_file->tus == NULL)
4958 find_dwo_entry.signature = sig;
4959 dwo_entry = (struct dwo_unit *) htab_find (dwo_file->tus, &find_dwo_entry);
4960 if (dwo_entry == NULL)
4963 /* If the global table doesn't have an entry for this TU, add one. */
4964 if (sig_entry == NULL)
4965 sig_entry = add_type_unit (sig, slot);
4967 fill_in_sig_entry_from_dwo_entry (objfile, sig_entry, dwo_entry);
4968 sig_entry->per_cu.tu_read = 1;
4972 /* Subroutine of lookup_signatured_type.
4973 Look up the type for signature SIG, and if we can't find SIG in .gdb_index
4974 then try the DWP file. If the TU stub (skeleton) has been removed then
4975 it won't be in .gdb_index. */
4977 static struct signatured_type *
4978 lookup_dwp_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
4980 struct objfile *objfile = dwarf2_per_objfile->objfile;
4981 struct dwp_file *dwp_file = get_dwp_file ();
4982 struct dwo_unit *dwo_entry;
4983 struct signatured_type find_sig_entry, *sig_entry;
4986 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->using_index);
4987 gdb_assert (dwp_file != NULL);
4989 /* If TU skeletons have been removed then we may not have read in any
4991 if (dwarf2_per_objfile->signatured_types == NULL)
4993 dwarf2_per_objfile->signatured_types
4994 = allocate_signatured_type_table (objfile);
4997 find_sig_entry.signature = sig;
4998 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
4999 &find_sig_entry, INSERT);
5000 sig_entry = (struct signatured_type *) *slot;
5002 /* Have we already tried to read this TU?
5003 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
5004 needn't exist in the global table yet). */
5005 if (sig_entry != NULL)
5008 if (dwp_file->tus == NULL)
5010 dwo_entry = lookup_dwo_unit_in_dwp (dwp_file, NULL,
5011 sig, 1 /* is_debug_types */);
5012 if (dwo_entry == NULL)
5015 sig_entry = add_type_unit (sig, slot);
5016 fill_in_sig_entry_from_dwo_entry (objfile, sig_entry, dwo_entry);
5021 /* Lookup a signature based type for DW_FORM_ref_sig8.
5022 Returns NULL if signature SIG is not present in the table.
5023 It is up to the caller to complain about this. */
5025 static struct signatured_type *
5026 lookup_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
5029 && dwarf2_per_objfile->using_index)
5031 /* We're in a DWO/DWP file, and we're using .gdb_index.
5032 These cases require special processing. */
5033 if (get_dwp_file () == NULL)
5034 return lookup_dwo_signatured_type (cu, sig);
5036 return lookup_dwp_signatured_type (cu, sig);
5040 struct signatured_type find_entry, *entry;
5042 if (dwarf2_per_objfile->signatured_types == NULL)
5044 find_entry.signature = sig;
5045 entry = ((struct signatured_type *)
5046 htab_find (dwarf2_per_objfile->signatured_types, &find_entry));
5051 /* Low level DIE reading support. */
5053 /* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
5056 init_cu_die_reader (struct die_reader_specs *reader,
5057 struct dwarf2_cu *cu,
5058 struct dwarf2_section_info *section,
5059 struct dwo_file *dwo_file)
5061 gdb_assert (section->readin && section->buffer != NULL);
5062 reader->abfd = get_section_bfd_owner (section);
5064 reader->dwo_file = dwo_file;
5065 reader->die_section = section;
5066 reader->buffer = section->buffer;
5067 reader->buffer_end = section->buffer + section->size;
5068 reader->comp_dir = NULL;
5071 /* Subroutine of init_cutu_and_read_dies to simplify it.
5072 Read in the rest of a CU/TU top level DIE from DWO_UNIT.
5073 There's just a lot of work to do, and init_cutu_and_read_dies is big enough
5076 STUB_COMP_UNIT_DIE is for the stub DIE, we copy over certain attributes
5077 from it to the DIE in the DWO. If NULL we are skipping the stub.
5078 STUB_COMP_DIR is similar to STUB_COMP_UNIT_DIE: When reading a TU directly
5079 from the DWO file, bypassing the stub, it contains the DW_AT_comp_dir
5080 attribute of the referencing CU. At most one of STUB_COMP_UNIT_DIE and
5081 STUB_COMP_DIR may be non-NULL.
5082 *RESULT_READER,*RESULT_INFO_PTR,*RESULT_COMP_UNIT_DIE,*RESULT_HAS_CHILDREN
5083 are filled in with the info of the DIE from the DWO file.
5084 ABBREV_TABLE_PROVIDED is non-zero if the caller of init_cutu_and_read_dies
5085 provided an abbrev table to use.
5086 The result is non-zero if a valid (non-dummy) DIE was found. */
5089 read_cutu_die_from_dwo (struct dwarf2_per_cu_data *this_cu,
5090 struct dwo_unit *dwo_unit,
5091 int abbrev_table_provided,
5092 struct die_info *stub_comp_unit_die,
5093 const char *stub_comp_dir,
5094 struct die_reader_specs *result_reader,
5095 const gdb_byte **result_info_ptr,
5096 struct die_info **result_comp_unit_die,
5097 int *result_has_children)
5099 struct objfile *objfile = dwarf2_per_objfile->objfile;
5100 struct dwarf2_cu *cu = this_cu->cu;
5101 struct dwarf2_section_info *section;
5103 const gdb_byte *begin_info_ptr, *info_ptr;
5104 ULONGEST signature; /* Or dwo_id. */
5105 struct attribute *comp_dir, *stmt_list, *low_pc, *high_pc, *ranges;
5106 int i,num_extra_attrs;
5107 struct dwarf2_section_info *dwo_abbrev_section;
5108 struct attribute *attr;
5109 struct die_info *comp_unit_die;
5111 /* At most one of these may be provided. */
5112 gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) <= 1);
5114 /* These attributes aren't processed until later:
5115 DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
5116 DW_AT_comp_dir is used now, to find the DWO file, but it is also
5117 referenced later. However, these attributes are found in the stub
5118 which we won't have later. In order to not impose this complication
5119 on the rest of the code, we read them here and copy them to the
5128 if (stub_comp_unit_die != NULL)
5130 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
5132 if (! this_cu->is_debug_types)
5133 stmt_list = dwarf2_attr (stub_comp_unit_die, DW_AT_stmt_list, cu);
5134 low_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_low_pc, cu);
5135 high_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_high_pc, cu);
5136 ranges = dwarf2_attr (stub_comp_unit_die, DW_AT_ranges, cu);
5137 comp_dir = dwarf2_attr (stub_comp_unit_die, DW_AT_comp_dir, cu);
5139 /* There should be a DW_AT_addr_base attribute here (if needed).
5140 We need the value before we can process DW_FORM_GNU_addr_index. */
5142 attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_addr_base, cu);
5144 cu->addr_base = DW_UNSND (attr);
5146 /* There should be a DW_AT_ranges_base attribute here (if needed).
5147 We need the value before we can process DW_AT_ranges. */
5148 cu->ranges_base = 0;
5149 attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_ranges_base, cu);
5151 cu->ranges_base = DW_UNSND (attr);
5153 else if (stub_comp_dir != NULL)
5155 /* Reconstruct the comp_dir attribute to simplify the code below. */
5156 comp_dir = XOBNEW (&cu->comp_unit_obstack, struct attribute);
5157 comp_dir->name = DW_AT_comp_dir;
5158 comp_dir->form = DW_FORM_string;
5159 DW_STRING_IS_CANONICAL (comp_dir) = 0;
5160 DW_STRING (comp_dir) = stub_comp_dir;
5163 /* Set up for reading the DWO CU/TU. */
5164 cu->dwo_unit = dwo_unit;
5165 section = dwo_unit->section;
5166 dwarf2_read_section (objfile, section);
5167 abfd = get_section_bfd_owner (section);
5168 begin_info_ptr = info_ptr = section->buffer + dwo_unit->offset.sect_off;
5169 dwo_abbrev_section = &dwo_unit->dwo_file->sections.abbrev;
5170 init_cu_die_reader (result_reader, cu, section, dwo_unit->dwo_file);
5172 if (this_cu->is_debug_types)
5174 ULONGEST header_signature;
5175 cu_offset type_offset_in_tu;
5176 struct signatured_type *sig_type = (struct signatured_type *) this_cu;
5178 info_ptr = read_and_check_type_unit_head (&cu->header, section,
5182 &type_offset_in_tu);
5183 /* This is not an assert because it can be caused by bad debug info. */
5184 if (sig_type->signature != header_signature)
5186 error (_("Dwarf Error: signature mismatch %s vs %s while reading"
5187 " TU at offset 0x%x [in module %s]"),
5188 hex_string (sig_type->signature),
5189 hex_string (header_signature),
5190 dwo_unit->offset.sect_off,
5191 bfd_get_filename (abfd));
5193 gdb_assert (dwo_unit->offset.sect_off == cu->header.offset.sect_off);
5194 /* For DWOs coming from DWP files, we don't know the CU length
5195 nor the type's offset in the TU until now. */
5196 dwo_unit->length = get_cu_length (&cu->header);
5197 dwo_unit->type_offset_in_tu = type_offset_in_tu;
5199 /* Establish the type offset that can be used to lookup the type.
5200 For DWO files, we don't know it until now. */
5201 sig_type->type_offset_in_section.sect_off =
5202 dwo_unit->offset.sect_off + dwo_unit->type_offset_in_tu.cu_off;
5206 info_ptr = read_and_check_comp_unit_head (&cu->header, section,
5209 gdb_assert (dwo_unit->offset.sect_off == cu->header.offset.sect_off);
5210 /* For DWOs coming from DWP files, we don't know the CU length
5212 dwo_unit->length = get_cu_length (&cu->header);
5215 /* Replace the CU's original abbrev table with the DWO's.
5216 Reminder: We can't read the abbrev table until we've read the header. */
5217 if (abbrev_table_provided)
5219 /* Don't free the provided abbrev table, the caller of
5220 init_cutu_and_read_dies owns it. */
5221 dwarf2_read_abbrevs (cu, dwo_abbrev_section);
5222 /* Ensure the DWO abbrev table gets freed. */
5223 make_cleanup (dwarf2_free_abbrev_table, cu);
5227 dwarf2_free_abbrev_table (cu);
5228 dwarf2_read_abbrevs (cu, dwo_abbrev_section);
5229 /* Leave any existing abbrev table cleanup as is. */
5232 /* Read in the die, but leave space to copy over the attributes
5233 from the stub. This has the benefit of simplifying the rest of
5234 the code - all the work to maintain the illusion of a single
5235 DW_TAG_{compile,type}_unit DIE is done here. */
5236 num_extra_attrs = ((stmt_list != NULL)
5240 + (comp_dir != NULL));
5241 info_ptr = read_full_die_1 (result_reader, result_comp_unit_die, info_ptr,
5242 result_has_children, num_extra_attrs);
5244 /* Copy over the attributes from the stub to the DIE we just read in. */
5245 comp_unit_die = *result_comp_unit_die;
5246 i = comp_unit_die->num_attrs;
5247 if (stmt_list != NULL)
5248 comp_unit_die->attrs[i++] = *stmt_list;
5250 comp_unit_die->attrs[i++] = *low_pc;
5251 if (high_pc != NULL)
5252 comp_unit_die->attrs[i++] = *high_pc;
5254 comp_unit_die->attrs[i++] = *ranges;
5255 if (comp_dir != NULL)
5256 comp_unit_die->attrs[i++] = *comp_dir;
5257 comp_unit_die->num_attrs += num_extra_attrs;
5259 if (dwarf_die_debug)
5261 fprintf_unfiltered (gdb_stdlog,
5262 "Read die from %s@0x%x of %s:\n",
5263 get_section_name (section),
5264 (unsigned) (begin_info_ptr - section->buffer),
5265 bfd_get_filename (abfd));
5266 dump_die (comp_unit_die, dwarf_die_debug);
5269 /* Save the comp_dir attribute. If there is no DWP file then we'll read
5270 TUs by skipping the stub and going directly to the entry in the DWO file.
5271 However, skipping the stub means we won't get DW_AT_comp_dir, so we have
5272 to get it via circuitous means. Blech. */
5273 if (comp_dir != NULL)
5274 result_reader->comp_dir = DW_STRING (comp_dir);
5276 /* Skip dummy compilation units. */
5277 if (info_ptr >= begin_info_ptr + dwo_unit->length
5278 || peek_abbrev_code (abfd, info_ptr) == 0)
5281 *result_info_ptr = info_ptr;
5285 /* Subroutine of init_cutu_and_read_dies to simplify it.
5286 Look up the DWO unit specified by COMP_UNIT_DIE of THIS_CU.
5287 Returns NULL if the specified DWO unit cannot be found. */
5289 static struct dwo_unit *
5290 lookup_dwo_unit (struct dwarf2_per_cu_data *this_cu,
5291 struct die_info *comp_unit_die)
5293 struct dwarf2_cu *cu = this_cu->cu;
5294 struct attribute *attr;
5296 struct dwo_unit *dwo_unit;
5297 const char *comp_dir, *dwo_name;
5299 gdb_assert (cu != NULL);
5301 /* Yeah, we look dwo_name up again, but it simplifies the code. */
5302 dwo_name = dwarf2_string_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
5303 comp_dir = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
5305 if (this_cu->is_debug_types)
5307 struct signatured_type *sig_type;
5309 /* Since this_cu is the first member of struct signatured_type,
5310 we can go from a pointer to one to a pointer to the other. */
5311 sig_type = (struct signatured_type *) this_cu;
5312 signature = sig_type->signature;
5313 dwo_unit = lookup_dwo_type_unit (sig_type, dwo_name, comp_dir);
5317 struct attribute *attr;
5319 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
5321 error (_("Dwarf Error: missing dwo_id for dwo_name %s"
5323 dwo_name, objfile_name (this_cu->objfile));
5324 signature = DW_UNSND (attr);
5325 dwo_unit = lookup_dwo_comp_unit (this_cu, dwo_name, comp_dir,
5332 /* Subroutine of init_cutu_and_read_dies to simplify it.
5333 See it for a description of the parameters.
5334 Read a TU directly from a DWO file, bypassing the stub.
5336 Note: This function could be a little bit simpler if we shared cleanups
5337 with our caller, init_cutu_and_read_dies. That's generally a fragile thing
5338 to do, so we keep this function self-contained. Or we could move this
5339 into our caller, but it's complex enough already. */
5342 init_tu_and_read_dwo_dies (struct dwarf2_per_cu_data *this_cu,
5343 int use_existing_cu, int keep,
5344 die_reader_func_ftype *die_reader_func,
5347 struct dwarf2_cu *cu;
5348 struct signatured_type *sig_type;
5349 struct cleanup *cleanups, *free_cu_cleanup = NULL;
5350 struct die_reader_specs reader;
5351 const gdb_byte *info_ptr;
5352 struct die_info *comp_unit_die;
5355 /* Verify we can do the following downcast, and that we have the
5357 gdb_assert (this_cu->is_debug_types && this_cu->reading_dwo_directly);
5358 sig_type = (struct signatured_type *) this_cu;
5359 gdb_assert (sig_type->dwo_unit != NULL);
5361 cleanups = make_cleanup (null_cleanup, NULL);
5363 if (use_existing_cu && this_cu->cu != NULL)
5365 gdb_assert (this_cu->cu->dwo_unit == sig_type->dwo_unit);
5367 /* There's no need to do the rereading_dwo_cu handling that
5368 init_cutu_and_read_dies does since we don't read the stub. */
5372 /* If !use_existing_cu, this_cu->cu must be NULL. */
5373 gdb_assert (this_cu->cu == NULL);
5374 cu = XNEW (struct dwarf2_cu);
5375 init_one_comp_unit (cu, this_cu);
5376 /* If an error occurs while loading, release our storage. */
5377 free_cu_cleanup = make_cleanup (free_heap_comp_unit, cu);
5380 /* A future optimization, if needed, would be to use an existing
5381 abbrev table. When reading DWOs with skeletonless TUs, all the TUs
5382 could share abbrev tables. */
5384 if (read_cutu_die_from_dwo (this_cu, sig_type->dwo_unit,
5385 0 /* abbrev_table_provided */,
5386 NULL /* stub_comp_unit_die */,
5387 sig_type->dwo_unit->dwo_file->comp_dir,
5389 &comp_unit_die, &has_children) == 0)
5392 do_cleanups (cleanups);
5396 /* All the "real" work is done here. */
5397 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
5399 /* This duplicates the code in init_cutu_and_read_dies,
5400 but the alternative is making the latter more complex.
5401 This function is only for the special case of using DWO files directly:
5402 no point in overly complicating the general case just to handle this. */
5403 if (free_cu_cleanup != NULL)
5407 /* We've successfully allocated this compilation unit. Let our
5408 caller clean it up when finished with it. */
5409 discard_cleanups (free_cu_cleanup);
5411 /* We can only discard free_cu_cleanup and all subsequent cleanups.
5412 So we have to manually free the abbrev table. */
5413 dwarf2_free_abbrev_table (cu);
5415 /* Link this CU into read_in_chain. */
5416 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
5417 dwarf2_per_objfile->read_in_chain = this_cu;
5420 do_cleanups (free_cu_cleanup);
5423 do_cleanups (cleanups);
5426 /* Initialize a CU (or TU) and read its DIEs.
5427 If the CU defers to a DWO file, read the DWO file as well.
5429 ABBREV_TABLE, if non-NULL, is the abbreviation table to use.
5430 Otherwise the table specified in the comp unit header is read in and used.
5431 This is an optimization for when we already have the abbrev table.
5433 If USE_EXISTING_CU is non-zero, and THIS_CU->cu is non-NULL, then use it.
5434 Otherwise, a new CU is allocated with xmalloc.
5436 If KEEP is non-zero, then if we allocated a dwarf2_cu we add it to
5437 read_in_chain. Otherwise the dwarf2_cu data is freed at the end.
5439 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
5440 linker) then DIE_READER_FUNC will not get called. */
5443 init_cutu_and_read_dies (struct dwarf2_per_cu_data *this_cu,
5444 struct abbrev_table *abbrev_table,
5445 int use_existing_cu, int keep,
5446 die_reader_func_ftype *die_reader_func,
5449 struct objfile *objfile = dwarf2_per_objfile->objfile;
5450 struct dwarf2_section_info *section = this_cu->section;
5451 bfd *abfd = get_section_bfd_owner (section);
5452 struct dwarf2_cu *cu;
5453 const gdb_byte *begin_info_ptr, *info_ptr;
5454 struct die_reader_specs reader;
5455 struct die_info *comp_unit_die;
5457 struct attribute *attr;
5458 struct cleanup *cleanups, *free_cu_cleanup = NULL;
5459 struct signatured_type *sig_type = NULL;
5460 struct dwarf2_section_info *abbrev_section;
5461 /* Non-zero if CU currently points to a DWO file and we need to
5462 reread it. When this happens we need to reread the skeleton die
5463 before we can reread the DWO file (this only applies to CUs, not TUs). */
5464 int rereading_dwo_cu = 0;
5466 if (dwarf_die_debug)
5467 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset 0x%x\n",
5468 this_cu->is_debug_types ? "type" : "comp",
5469 this_cu->offset.sect_off);
5471 if (use_existing_cu)
5474 /* If we're reading a TU directly from a DWO file, including a virtual DWO
5475 file (instead of going through the stub), short-circuit all of this. */
5476 if (this_cu->reading_dwo_directly)
5478 /* Narrow down the scope of possibilities to have to understand. */
5479 gdb_assert (this_cu->is_debug_types);
5480 gdb_assert (abbrev_table == NULL);
5481 init_tu_and_read_dwo_dies (this_cu, use_existing_cu, keep,
5482 die_reader_func, data);
5486 cleanups = make_cleanup (null_cleanup, NULL);
5488 /* This is cheap if the section is already read in. */
5489 dwarf2_read_section (objfile, section);
5491 begin_info_ptr = info_ptr = section->buffer + this_cu->offset.sect_off;
5493 abbrev_section = get_abbrev_section_for_cu (this_cu);
5495 if (use_existing_cu && this_cu->cu != NULL)
5498 /* If this CU is from a DWO file we need to start over, we need to
5499 refetch the attributes from the skeleton CU.
5500 This could be optimized by retrieving those attributes from when we
5501 were here the first time: the previous comp_unit_die was stored in
5502 comp_unit_obstack. But there's no data yet that we need this
5504 if (cu->dwo_unit != NULL)
5505 rereading_dwo_cu = 1;
5509 /* If !use_existing_cu, this_cu->cu must be NULL. */
5510 gdb_assert (this_cu->cu == NULL);
5511 cu = XNEW (struct dwarf2_cu);
5512 init_one_comp_unit (cu, this_cu);
5513 /* If an error occurs while loading, release our storage. */
5514 free_cu_cleanup = make_cleanup (free_heap_comp_unit, cu);
5517 /* Get the header. */
5518 if (cu->header.first_die_offset.cu_off != 0 && ! rereading_dwo_cu)
5520 /* We already have the header, there's no need to read it in again. */
5521 info_ptr += cu->header.first_die_offset.cu_off;
5525 if (this_cu->is_debug_types)
5528 cu_offset type_offset_in_tu;
5530 info_ptr = read_and_check_type_unit_head (&cu->header, section,
5531 abbrev_section, info_ptr,
5533 &type_offset_in_tu);
5535 /* Since per_cu is the first member of struct signatured_type,
5536 we can go from a pointer to one to a pointer to the other. */
5537 sig_type = (struct signatured_type *) this_cu;
5538 gdb_assert (sig_type->signature == signature);
5539 gdb_assert (sig_type->type_offset_in_tu.cu_off
5540 == type_offset_in_tu.cu_off);
5541 gdb_assert (this_cu->offset.sect_off == cu->header.offset.sect_off);
5543 /* LENGTH has not been set yet for type units if we're
5544 using .gdb_index. */
5545 this_cu->length = get_cu_length (&cu->header);
5547 /* Establish the type offset that can be used to lookup the type. */
5548 sig_type->type_offset_in_section.sect_off =
5549 this_cu->offset.sect_off + sig_type->type_offset_in_tu.cu_off;
5553 info_ptr = read_and_check_comp_unit_head (&cu->header, section,
5557 gdb_assert (this_cu->offset.sect_off == cu->header.offset.sect_off);
5558 gdb_assert (this_cu->length == get_cu_length (&cu->header));
5562 /* Skip dummy compilation units. */
5563 if (info_ptr >= begin_info_ptr + this_cu->length
5564 || peek_abbrev_code (abfd, info_ptr) == 0)
5566 do_cleanups (cleanups);
5570 /* If we don't have them yet, read the abbrevs for this compilation unit.
5571 And if we need to read them now, make sure they're freed when we're
5572 done. Note that it's important that if the CU had an abbrev table
5573 on entry we don't free it when we're done: Somewhere up the call stack
5574 it may be in use. */
5575 if (abbrev_table != NULL)
5577 gdb_assert (cu->abbrev_table == NULL);
5578 gdb_assert (cu->header.abbrev_offset.sect_off
5579 == abbrev_table->offset.sect_off);
5580 cu->abbrev_table = abbrev_table;
5582 else if (cu->abbrev_table == NULL)
5584 dwarf2_read_abbrevs (cu, abbrev_section);
5585 make_cleanup (dwarf2_free_abbrev_table, cu);
5587 else if (rereading_dwo_cu)
5589 dwarf2_free_abbrev_table (cu);
5590 dwarf2_read_abbrevs (cu, abbrev_section);
5593 /* Read the top level CU/TU die. */
5594 init_cu_die_reader (&reader, cu, section, NULL);
5595 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
5597 /* If we are in a DWO stub, process it and then read in the "real" CU/TU
5599 Note that if USE_EXISTING_OK != 0, and THIS_CU->cu already contains a
5600 DWO CU, that this test will fail (the attribute will not be present). */
5601 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
5604 struct dwo_unit *dwo_unit;
5605 struct die_info *dwo_comp_unit_die;
5609 complaint (&symfile_complaints,
5610 _("compilation unit with DW_AT_GNU_dwo_name"
5611 " has children (offset 0x%x) [in module %s]"),
5612 this_cu->offset.sect_off, bfd_get_filename (abfd));
5614 dwo_unit = lookup_dwo_unit (this_cu, comp_unit_die);
5615 if (dwo_unit != NULL)
5617 if (read_cutu_die_from_dwo (this_cu, dwo_unit,
5618 abbrev_table != NULL,
5619 comp_unit_die, NULL,
5621 &dwo_comp_unit_die, &has_children) == 0)
5624 do_cleanups (cleanups);
5627 comp_unit_die = dwo_comp_unit_die;
5631 /* Yikes, we couldn't find the rest of the DIE, we only have
5632 the stub. A complaint has already been logged. There's
5633 not much more we can do except pass on the stub DIE to
5634 die_reader_func. We don't want to throw an error on bad
5639 /* All of the above is setup for this call. Yikes. */
5640 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
5642 /* Done, clean up. */
5643 if (free_cu_cleanup != NULL)
5647 /* We've successfully allocated this compilation unit. Let our
5648 caller clean it up when finished with it. */
5649 discard_cleanups (free_cu_cleanup);
5651 /* We can only discard free_cu_cleanup and all subsequent cleanups.
5652 So we have to manually free the abbrev table. */
5653 dwarf2_free_abbrev_table (cu);
5655 /* Link this CU into read_in_chain. */
5656 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
5657 dwarf2_per_objfile->read_in_chain = this_cu;
5660 do_cleanups (free_cu_cleanup);
5663 do_cleanups (cleanups);
5666 /* Read CU/TU THIS_CU but do not follow DW_AT_GNU_dwo_name if present.
5667 DWO_FILE, if non-NULL, is the DWO file to read (the caller is assumed
5668 to have already done the lookup to find the DWO file).
5670 The caller is required to fill in THIS_CU->section, THIS_CU->offset, and
5671 THIS_CU->is_debug_types, but nothing else.
5673 We fill in THIS_CU->length.
5675 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
5676 linker) then DIE_READER_FUNC will not get called.
5678 THIS_CU->cu is always freed when done.
5679 This is done in order to not leave THIS_CU->cu in a state where we have
5680 to care whether it refers to the "main" CU or the DWO CU. */
5683 init_cutu_and_read_dies_no_follow (struct dwarf2_per_cu_data *this_cu,
5684 struct dwo_file *dwo_file,
5685 die_reader_func_ftype *die_reader_func,
5688 struct objfile *objfile = dwarf2_per_objfile->objfile;
5689 struct dwarf2_section_info *section = this_cu->section;
5690 bfd *abfd = get_section_bfd_owner (section);
5691 struct dwarf2_section_info *abbrev_section;
5692 struct dwarf2_cu cu;
5693 const gdb_byte *begin_info_ptr, *info_ptr;
5694 struct die_reader_specs reader;
5695 struct cleanup *cleanups;
5696 struct die_info *comp_unit_die;
5699 if (dwarf_die_debug)
5700 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset 0x%x\n",
5701 this_cu->is_debug_types ? "type" : "comp",
5702 this_cu->offset.sect_off);
5704 gdb_assert (this_cu->cu == NULL);
5706 abbrev_section = (dwo_file != NULL
5707 ? &dwo_file->sections.abbrev
5708 : get_abbrev_section_for_cu (this_cu));
5710 /* This is cheap if the section is already read in. */
5711 dwarf2_read_section (objfile, section);
5713 init_one_comp_unit (&cu, this_cu);
5715 cleanups = make_cleanup (free_stack_comp_unit, &cu);
5717 begin_info_ptr = info_ptr = section->buffer + this_cu->offset.sect_off;
5718 info_ptr = read_and_check_comp_unit_head (&cu.header, section,
5719 abbrev_section, info_ptr,
5720 this_cu->is_debug_types);
5722 this_cu->length = get_cu_length (&cu.header);
5724 /* Skip dummy compilation units. */
5725 if (info_ptr >= begin_info_ptr + this_cu->length
5726 || peek_abbrev_code (abfd, info_ptr) == 0)
5728 do_cleanups (cleanups);
5732 dwarf2_read_abbrevs (&cu, abbrev_section);
5733 make_cleanup (dwarf2_free_abbrev_table, &cu);
5735 init_cu_die_reader (&reader, &cu, section, dwo_file);
5736 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
5738 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
5740 do_cleanups (cleanups);
5743 /* Read a CU/TU, except that this does not look for DW_AT_GNU_dwo_name and
5744 does not lookup the specified DWO file.
5745 This cannot be used to read DWO files.
5747 THIS_CU->cu is always freed when done.
5748 This is done in order to not leave THIS_CU->cu in a state where we have
5749 to care whether it refers to the "main" CU or the DWO CU.
5750 We can revisit this if the data shows there's a performance issue. */
5753 init_cutu_and_read_dies_simple (struct dwarf2_per_cu_data *this_cu,
5754 die_reader_func_ftype *die_reader_func,
5757 init_cutu_and_read_dies_no_follow (this_cu, NULL, die_reader_func, data);
5760 /* Type Unit Groups.
5762 Type Unit Groups are a way to collapse the set of all TUs (type units) into
5763 a more manageable set. The grouping is done by DW_AT_stmt_list entry
5764 so that all types coming from the same compilation (.o file) are grouped
5765 together. A future step could be to put the types in the same symtab as
5766 the CU the types ultimately came from. */
5769 hash_type_unit_group (const void *item)
5771 const struct type_unit_group *tu_group
5772 = (const struct type_unit_group *) item;
5774 return hash_stmt_list_entry (&tu_group->hash);
5778 eq_type_unit_group (const void *item_lhs, const void *item_rhs)
5780 const struct type_unit_group *lhs = (const struct type_unit_group *) item_lhs;
5781 const struct type_unit_group *rhs = (const struct type_unit_group *) item_rhs;
5783 return eq_stmt_list_entry (&lhs->hash, &rhs->hash);
5786 /* Allocate a hash table for type unit groups. */
5789 allocate_type_unit_groups_table (void)
5791 return htab_create_alloc_ex (3,
5792 hash_type_unit_group,
5795 &dwarf2_per_objfile->objfile->objfile_obstack,
5796 hashtab_obstack_allocate,
5797 dummy_obstack_deallocate);
5800 /* Type units that don't have DW_AT_stmt_list are grouped into their own
5801 partial symtabs. We combine several TUs per psymtab to not let the size
5802 of any one psymtab grow too big. */
5803 #define NO_STMT_LIST_TYPE_UNIT_PSYMTAB (1 << 31)
5804 #define NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE 10
5806 /* Helper routine for get_type_unit_group.
5807 Create the type_unit_group object used to hold one or more TUs. */
5809 static struct type_unit_group *
5810 create_type_unit_group (struct dwarf2_cu *cu, sect_offset line_offset_struct)
5812 struct objfile *objfile = dwarf2_per_objfile->objfile;
5813 struct dwarf2_per_cu_data *per_cu;
5814 struct type_unit_group *tu_group;
5816 tu_group = OBSTACK_ZALLOC (&objfile->objfile_obstack,
5817 struct type_unit_group);
5818 per_cu = &tu_group->per_cu;
5819 per_cu->objfile = objfile;
5821 if (dwarf2_per_objfile->using_index)
5823 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
5824 struct dwarf2_per_cu_quick_data);
5828 unsigned int line_offset = line_offset_struct.sect_off;
5829 struct partial_symtab *pst;
5832 /* Give the symtab a useful name for debug purposes. */
5833 if ((line_offset & NO_STMT_LIST_TYPE_UNIT_PSYMTAB) != 0)
5834 name = xstrprintf ("<type_units_%d>",
5835 (line_offset & ~NO_STMT_LIST_TYPE_UNIT_PSYMTAB));
5837 name = xstrprintf ("<type_units_at_0x%x>", line_offset);
5839 pst = create_partial_symtab (per_cu, name);
5845 tu_group->hash.dwo_unit = cu->dwo_unit;
5846 tu_group->hash.line_offset = line_offset_struct;
5851 /* Look up the type_unit_group for type unit CU, and create it if necessary.
5852 STMT_LIST is a DW_AT_stmt_list attribute. */
5854 static struct type_unit_group *
5855 get_type_unit_group (struct dwarf2_cu *cu, const struct attribute *stmt_list)
5857 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
5858 struct type_unit_group *tu_group;
5860 unsigned int line_offset;
5861 struct type_unit_group type_unit_group_for_lookup;
5863 if (dwarf2_per_objfile->type_unit_groups == NULL)
5865 dwarf2_per_objfile->type_unit_groups =
5866 allocate_type_unit_groups_table ();
5869 /* Do we need to create a new group, or can we use an existing one? */
5873 line_offset = DW_UNSND (stmt_list);
5874 ++tu_stats->nr_symtab_sharers;
5878 /* Ugh, no stmt_list. Rare, but we have to handle it.
5879 We can do various things here like create one group per TU or
5880 spread them over multiple groups to split up the expansion work.
5881 To avoid worst case scenarios (too many groups or too large groups)
5882 we, umm, group them in bunches. */
5883 line_offset = (NO_STMT_LIST_TYPE_UNIT_PSYMTAB
5884 | (tu_stats->nr_stmt_less_type_units
5885 / NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE));
5886 ++tu_stats->nr_stmt_less_type_units;
5889 type_unit_group_for_lookup.hash.dwo_unit = cu->dwo_unit;
5890 type_unit_group_for_lookup.hash.line_offset.sect_off = line_offset;
5891 slot = htab_find_slot (dwarf2_per_objfile->type_unit_groups,
5892 &type_unit_group_for_lookup, INSERT);
5895 tu_group = (struct type_unit_group *) *slot;
5896 gdb_assert (tu_group != NULL);
5900 sect_offset line_offset_struct;
5902 line_offset_struct.sect_off = line_offset;
5903 tu_group = create_type_unit_group (cu, line_offset_struct);
5905 ++tu_stats->nr_symtabs;
5911 /* Partial symbol tables. */
5913 /* Create a psymtab named NAME and assign it to PER_CU.
5915 The caller must fill in the following details:
5916 dirname, textlow, texthigh. */
5918 static struct partial_symtab *
5919 create_partial_symtab (struct dwarf2_per_cu_data *per_cu, const char *name)
5921 struct objfile *objfile = per_cu->objfile;
5922 struct partial_symtab *pst;
5924 pst = start_psymtab_common (objfile, name, 0,
5925 objfile->global_psymbols.next,
5926 objfile->static_psymbols.next);
5928 pst->psymtabs_addrmap_supported = 1;
5930 /* This is the glue that links PST into GDB's symbol API. */
5931 pst->read_symtab_private = per_cu;
5932 pst->read_symtab = dwarf2_read_symtab;
5933 per_cu->v.psymtab = pst;
5938 /* The DATA object passed to process_psymtab_comp_unit_reader has this
5941 struct process_psymtab_comp_unit_data
5943 /* True if we are reading a DW_TAG_partial_unit. */
5945 int want_partial_unit;
5947 /* The "pretend" language that is used if the CU doesn't declare a
5950 enum language pretend_language;
5953 /* die_reader_func for process_psymtab_comp_unit. */
5956 process_psymtab_comp_unit_reader (const struct die_reader_specs *reader,
5957 const gdb_byte *info_ptr,
5958 struct die_info *comp_unit_die,
5962 struct dwarf2_cu *cu = reader->cu;
5963 struct objfile *objfile = cu->objfile;
5964 struct gdbarch *gdbarch = get_objfile_arch (objfile);
5965 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
5967 CORE_ADDR best_lowpc = 0, best_highpc = 0;
5968 struct partial_symtab *pst;
5969 enum pc_bounds_kind cu_bounds_kind;
5970 const char *filename;
5971 struct process_psymtab_comp_unit_data *info
5972 = (struct process_psymtab_comp_unit_data *) data;
5974 if (comp_unit_die->tag == DW_TAG_partial_unit && !info->want_partial_unit)
5977 gdb_assert (! per_cu->is_debug_types);
5979 prepare_one_comp_unit (cu, comp_unit_die, info->pretend_language);
5981 cu->list_in_scope = &file_symbols;
5983 /* Allocate a new partial symbol table structure. */
5984 filename = dwarf2_string_attr (comp_unit_die, DW_AT_name, cu);
5985 if (filename == NULL)
5988 pst = create_partial_symtab (per_cu, filename);
5990 /* This must be done before calling dwarf2_build_include_psymtabs. */
5991 pst->dirname = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
5993 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5995 dwarf2_find_base_address (comp_unit_die, cu);
5997 /* Possibly set the default values of LOWPC and HIGHPC from
5999 cu_bounds_kind = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
6000 &best_highpc, cu, pst);
6001 if (cu_bounds_kind == PC_BOUNDS_HIGH_LOW && best_lowpc < best_highpc)
6002 /* Store the contiguous range if it is not empty; it can be empty for
6003 CUs with no code. */
6004 addrmap_set_empty (objfile->psymtabs_addrmap,
6005 gdbarch_adjust_dwarf2_addr (gdbarch,
6006 best_lowpc + baseaddr),
6007 gdbarch_adjust_dwarf2_addr (gdbarch,
6008 best_highpc + baseaddr) - 1,
6011 /* Check if comp unit has_children.
6012 If so, read the rest of the partial symbols from this comp unit.
6013 If not, there's no more debug_info for this comp unit. */
6016 struct partial_die_info *first_die;
6017 CORE_ADDR lowpc, highpc;
6019 lowpc = ((CORE_ADDR) -1);
6020 highpc = ((CORE_ADDR) 0);
6022 first_die = load_partial_dies (reader, info_ptr, 1);
6024 scan_partial_symbols (first_die, &lowpc, &highpc,
6025 cu_bounds_kind <= PC_BOUNDS_INVALID, cu);
6027 /* If we didn't find a lowpc, set it to highpc to avoid
6028 complaints from `maint check'. */
6029 if (lowpc == ((CORE_ADDR) -1))
6032 /* If the compilation unit didn't have an explicit address range,
6033 then use the information extracted from its child dies. */
6034 if (cu_bounds_kind <= PC_BOUNDS_INVALID)
6037 best_highpc = highpc;
6040 pst->textlow = gdbarch_adjust_dwarf2_addr (gdbarch, best_lowpc + baseaddr);
6041 pst->texthigh = gdbarch_adjust_dwarf2_addr (gdbarch, best_highpc + baseaddr);
6043 end_psymtab_common (objfile, pst);
6045 if (!VEC_empty (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs))
6048 int len = VEC_length (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
6049 struct dwarf2_per_cu_data *iter;
6051 /* Fill in 'dependencies' here; we fill in 'users' in a
6053 pst->number_of_dependencies = len;
6055 XOBNEWVEC (&objfile->objfile_obstack, struct partial_symtab *, len);
6057 VEC_iterate (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
6060 pst->dependencies[i] = iter->v.psymtab;
6062 VEC_free (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
6065 /* Get the list of files included in the current compilation unit,
6066 and build a psymtab for each of them. */
6067 dwarf2_build_include_psymtabs (cu, comp_unit_die, pst);
6069 if (dwarf_read_debug)
6071 struct gdbarch *gdbarch = get_objfile_arch (objfile);
6073 fprintf_unfiltered (gdb_stdlog,
6074 "Psymtab for %s unit @0x%x: %s - %s"
6075 ", %d global, %d static syms\n",
6076 per_cu->is_debug_types ? "type" : "comp",
6077 per_cu->offset.sect_off,
6078 paddress (gdbarch, pst->textlow),
6079 paddress (gdbarch, pst->texthigh),
6080 pst->n_global_syms, pst->n_static_syms);
6084 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
6085 Process compilation unit THIS_CU for a psymtab. */
6088 process_psymtab_comp_unit (struct dwarf2_per_cu_data *this_cu,
6089 int want_partial_unit,
6090 enum language pretend_language)
6092 struct process_psymtab_comp_unit_data info;
6094 /* If this compilation unit was already read in, free the
6095 cached copy in order to read it in again. This is
6096 necessary because we skipped some symbols when we first
6097 read in the compilation unit (see load_partial_dies).
6098 This problem could be avoided, but the benefit is unclear. */
6099 if (this_cu->cu != NULL)
6100 free_one_cached_comp_unit (this_cu);
6102 gdb_assert (! this_cu->is_debug_types);
6103 info.want_partial_unit = want_partial_unit;
6104 info.pretend_language = pretend_language;
6105 init_cutu_and_read_dies (this_cu, NULL, 0, 0,
6106 process_psymtab_comp_unit_reader,
6109 /* Age out any secondary CUs. */
6110 age_cached_comp_units ();
6113 /* Reader function for build_type_psymtabs. */
6116 build_type_psymtabs_reader (const struct die_reader_specs *reader,
6117 const gdb_byte *info_ptr,
6118 struct die_info *type_unit_die,
6122 struct objfile *objfile = dwarf2_per_objfile->objfile;
6123 struct dwarf2_cu *cu = reader->cu;
6124 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
6125 struct signatured_type *sig_type;
6126 struct type_unit_group *tu_group;
6127 struct attribute *attr;
6128 struct partial_die_info *first_die;
6129 CORE_ADDR lowpc, highpc;
6130 struct partial_symtab *pst;
6132 gdb_assert (data == NULL);
6133 gdb_assert (per_cu->is_debug_types);
6134 sig_type = (struct signatured_type *) per_cu;
6139 attr = dwarf2_attr_no_follow (type_unit_die, DW_AT_stmt_list);
6140 tu_group = get_type_unit_group (cu, attr);
6142 VEC_safe_push (sig_type_ptr, tu_group->tus, sig_type);
6144 prepare_one_comp_unit (cu, type_unit_die, language_minimal);
6145 cu->list_in_scope = &file_symbols;
6146 pst = create_partial_symtab (per_cu, "");
6149 first_die = load_partial_dies (reader, info_ptr, 1);
6151 lowpc = (CORE_ADDR) -1;
6152 highpc = (CORE_ADDR) 0;
6153 scan_partial_symbols (first_die, &lowpc, &highpc, 0, cu);
6155 end_psymtab_common (objfile, pst);
6158 /* Struct used to sort TUs by their abbreviation table offset. */
6160 struct tu_abbrev_offset
6162 struct signatured_type *sig_type;
6163 sect_offset abbrev_offset;
6166 /* Helper routine for build_type_psymtabs_1, passed to qsort. */
6169 sort_tu_by_abbrev_offset (const void *ap, const void *bp)
6171 const struct tu_abbrev_offset * const *a
6172 = (const struct tu_abbrev_offset * const*) ap;
6173 const struct tu_abbrev_offset * const *b
6174 = (const struct tu_abbrev_offset * const*) bp;
6175 unsigned int aoff = (*a)->abbrev_offset.sect_off;
6176 unsigned int boff = (*b)->abbrev_offset.sect_off;
6178 return (aoff > boff) - (aoff < boff);
6181 /* Efficiently read all the type units.
6182 This does the bulk of the work for build_type_psymtabs.
6184 The efficiency is because we sort TUs by the abbrev table they use and
6185 only read each abbrev table once. In one program there are 200K TUs
6186 sharing 8K abbrev tables.
6188 The main purpose of this function is to support building the
6189 dwarf2_per_objfile->type_unit_groups table.
6190 TUs typically share the DW_AT_stmt_list of the CU they came from, so we
6191 can collapse the search space by grouping them by stmt_list.
6192 The savings can be significant, in the same program from above the 200K TUs
6193 share 8K stmt_list tables.
6195 FUNC is expected to call get_type_unit_group, which will create the
6196 struct type_unit_group if necessary and add it to
6197 dwarf2_per_objfile->type_unit_groups. */
6200 build_type_psymtabs_1 (void)
6202 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
6203 struct cleanup *cleanups;
6204 struct abbrev_table *abbrev_table;
6205 sect_offset abbrev_offset;
6206 struct tu_abbrev_offset *sorted_by_abbrev;
6209 /* It's up to the caller to not call us multiple times. */
6210 gdb_assert (dwarf2_per_objfile->type_unit_groups == NULL);
6212 if (dwarf2_per_objfile->n_type_units == 0)
6215 /* TUs typically share abbrev tables, and there can be way more TUs than
6216 abbrev tables. Sort by abbrev table to reduce the number of times we
6217 read each abbrev table in.
6218 Alternatives are to punt or to maintain a cache of abbrev tables.
6219 This is simpler and efficient enough for now.
6221 Later we group TUs by their DW_AT_stmt_list value (as this defines the
6222 symtab to use). Typically TUs with the same abbrev offset have the same
6223 stmt_list value too so in practice this should work well.
6225 The basic algorithm here is:
6227 sort TUs by abbrev table
6228 for each TU with same abbrev table:
6229 read abbrev table if first user
6230 read TU top level DIE
6231 [IWBN if DWO skeletons had DW_AT_stmt_list]
6234 if (dwarf_read_debug)
6235 fprintf_unfiltered (gdb_stdlog, "Building type unit groups ...\n");
6237 /* Sort in a separate table to maintain the order of all_type_units
6238 for .gdb_index: TU indices directly index all_type_units. */
6239 sorted_by_abbrev = XNEWVEC (struct tu_abbrev_offset,
6240 dwarf2_per_objfile->n_type_units);
6241 for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
6243 struct signatured_type *sig_type = dwarf2_per_objfile->all_type_units[i];
6245 sorted_by_abbrev[i].sig_type = sig_type;
6246 sorted_by_abbrev[i].abbrev_offset =
6247 read_abbrev_offset (sig_type->per_cu.section,
6248 sig_type->per_cu.offset);
6250 cleanups = make_cleanup (xfree, sorted_by_abbrev);
6251 qsort (sorted_by_abbrev, dwarf2_per_objfile->n_type_units,
6252 sizeof (struct tu_abbrev_offset), sort_tu_by_abbrev_offset);
6254 abbrev_offset.sect_off = ~(unsigned) 0;
6255 abbrev_table = NULL;
6256 make_cleanup (abbrev_table_free_cleanup, &abbrev_table);
6258 for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
6260 const struct tu_abbrev_offset *tu = &sorted_by_abbrev[i];
6262 /* Switch to the next abbrev table if necessary. */
6263 if (abbrev_table == NULL
6264 || tu->abbrev_offset.sect_off != abbrev_offset.sect_off)
6266 if (abbrev_table != NULL)
6268 abbrev_table_free (abbrev_table);
6269 /* Reset to NULL in case abbrev_table_read_table throws
6270 an error: abbrev_table_free_cleanup will get called. */
6271 abbrev_table = NULL;
6273 abbrev_offset = tu->abbrev_offset;
6275 abbrev_table_read_table (&dwarf2_per_objfile->abbrev,
6277 ++tu_stats->nr_uniq_abbrev_tables;
6280 init_cutu_and_read_dies (&tu->sig_type->per_cu, abbrev_table, 0, 0,
6281 build_type_psymtabs_reader, NULL);
6284 do_cleanups (cleanups);
6287 /* Print collected type unit statistics. */
6290 print_tu_stats (void)
6292 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
6294 fprintf_unfiltered (gdb_stdlog, "Type unit statistics:\n");
6295 fprintf_unfiltered (gdb_stdlog, " %d TUs\n",
6296 dwarf2_per_objfile->n_type_units);
6297 fprintf_unfiltered (gdb_stdlog, " %d uniq abbrev tables\n",
6298 tu_stats->nr_uniq_abbrev_tables);
6299 fprintf_unfiltered (gdb_stdlog, " %d symtabs from stmt_list entries\n",
6300 tu_stats->nr_symtabs);
6301 fprintf_unfiltered (gdb_stdlog, " %d symtab sharers\n",
6302 tu_stats->nr_symtab_sharers);
6303 fprintf_unfiltered (gdb_stdlog, " %d type units without a stmt_list\n",
6304 tu_stats->nr_stmt_less_type_units);
6305 fprintf_unfiltered (gdb_stdlog, " %d all_type_units reallocs\n",
6306 tu_stats->nr_all_type_units_reallocs);
6309 /* Traversal function for build_type_psymtabs. */
6312 build_type_psymtab_dependencies (void **slot, void *info)
6314 struct objfile *objfile = dwarf2_per_objfile->objfile;
6315 struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
6316 struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
6317 struct partial_symtab *pst = per_cu->v.psymtab;
6318 int len = VEC_length (sig_type_ptr, tu_group->tus);
6319 struct signatured_type *iter;
6322 gdb_assert (len > 0);
6323 gdb_assert (IS_TYPE_UNIT_GROUP (per_cu));
6325 pst->number_of_dependencies = len;
6327 XOBNEWVEC (&objfile->objfile_obstack, struct partial_symtab *, len);
6329 VEC_iterate (sig_type_ptr, tu_group->tus, i, iter);
6332 gdb_assert (iter->per_cu.is_debug_types);
6333 pst->dependencies[i] = iter->per_cu.v.psymtab;
6334 iter->type_unit_group = tu_group;
6337 VEC_free (sig_type_ptr, tu_group->tus);
6342 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
6343 Build partial symbol tables for the .debug_types comp-units. */
6346 build_type_psymtabs (struct objfile *objfile)
6348 if (! create_all_type_units (objfile))
6351 build_type_psymtabs_1 ();
6354 /* Traversal function for process_skeletonless_type_unit.
6355 Read a TU in a DWO file and build partial symbols for it. */
6358 process_skeletonless_type_unit (void **slot, void *info)
6360 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
6361 struct objfile *objfile = (struct objfile *) info;
6362 struct signatured_type find_entry, *entry;
6364 /* If this TU doesn't exist in the global table, add it and read it in. */
6366 if (dwarf2_per_objfile->signatured_types == NULL)
6368 dwarf2_per_objfile->signatured_types
6369 = allocate_signatured_type_table (objfile);
6372 find_entry.signature = dwo_unit->signature;
6373 slot = htab_find_slot (dwarf2_per_objfile->signatured_types, &find_entry,
6375 /* If we've already seen this type there's nothing to do. What's happening
6376 is we're doing our own version of comdat-folding here. */
6380 /* This does the job that create_all_type_units would have done for
6382 entry = add_type_unit (dwo_unit->signature, slot);
6383 fill_in_sig_entry_from_dwo_entry (objfile, entry, dwo_unit);
6386 /* This does the job that build_type_psymtabs_1 would have done. */
6387 init_cutu_and_read_dies (&entry->per_cu, NULL, 0, 0,
6388 build_type_psymtabs_reader, NULL);
6393 /* Traversal function for process_skeletonless_type_units. */
6396 process_dwo_file_for_skeletonless_type_units (void **slot, void *info)
6398 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
6400 if (dwo_file->tus != NULL)
6402 htab_traverse_noresize (dwo_file->tus,
6403 process_skeletonless_type_unit, info);
6409 /* Scan all TUs of DWO files, verifying we've processed them.
6410 This is needed in case a TU was emitted without its skeleton.
6411 Note: This can't be done until we know what all the DWO files are. */
6414 process_skeletonless_type_units (struct objfile *objfile)
6416 /* Skeletonless TUs in DWP files without .gdb_index is not supported yet. */
6417 if (get_dwp_file () == NULL
6418 && dwarf2_per_objfile->dwo_files != NULL)
6420 htab_traverse_noresize (dwarf2_per_objfile->dwo_files,
6421 process_dwo_file_for_skeletonless_type_units,
6426 /* A cleanup function that clears objfile's psymtabs_addrmap field. */
6429 psymtabs_addrmap_cleanup (void *o)
6431 struct objfile *objfile = (struct objfile *) o;
6433 objfile->psymtabs_addrmap = NULL;
6436 /* Compute the 'user' field for each psymtab in OBJFILE. */
6439 set_partial_user (struct objfile *objfile)
6443 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
6445 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
6446 struct partial_symtab *pst = per_cu->v.psymtab;
6452 for (j = 0; j < pst->number_of_dependencies; ++j)
6454 /* Set the 'user' field only if it is not already set. */
6455 if (pst->dependencies[j]->user == NULL)
6456 pst->dependencies[j]->user = pst;
6461 /* Build the partial symbol table by doing a quick pass through the
6462 .debug_info and .debug_abbrev sections. */
6465 dwarf2_build_psymtabs_hard (struct objfile *objfile)
6467 struct cleanup *back_to, *addrmap_cleanup;
6468 struct obstack temp_obstack;
6471 if (dwarf_read_debug)
6473 fprintf_unfiltered (gdb_stdlog, "Building psymtabs of objfile %s ...\n",
6474 objfile_name (objfile));
6477 dwarf2_per_objfile->reading_partial_symbols = 1;
6479 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
6481 /* Any cached compilation units will be linked by the per-objfile
6482 read_in_chain. Make sure to free them when we're done. */
6483 back_to = make_cleanup (free_cached_comp_units, NULL);
6485 build_type_psymtabs (objfile);
6487 create_all_comp_units (objfile);
6489 /* Create a temporary address map on a temporary obstack. We later
6490 copy this to the final obstack. */
6491 obstack_init (&temp_obstack);
6492 make_cleanup_obstack_free (&temp_obstack);
6493 objfile->psymtabs_addrmap = addrmap_create_mutable (&temp_obstack);
6494 addrmap_cleanup = make_cleanup (psymtabs_addrmap_cleanup, objfile);
6496 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
6498 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
6500 process_psymtab_comp_unit (per_cu, 0, language_minimal);
6503 /* This has to wait until we read the CUs, we need the list of DWOs. */
6504 process_skeletonless_type_units (objfile);
6506 /* Now that all TUs have been processed we can fill in the dependencies. */
6507 if (dwarf2_per_objfile->type_unit_groups != NULL)
6509 htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
6510 build_type_psymtab_dependencies, NULL);
6513 if (dwarf_read_debug)
6516 set_partial_user (objfile);
6518 objfile->psymtabs_addrmap = addrmap_create_fixed (objfile->psymtabs_addrmap,
6519 &objfile->objfile_obstack);
6520 discard_cleanups (addrmap_cleanup);
6522 do_cleanups (back_to);
6524 if (dwarf_read_debug)
6525 fprintf_unfiltered (gdb_stdlog, "Done building psymtabs of %s\n",
6526 objfile_name (objfile));
6529 /* die_reader_func for load_partial_comp_unit. */
6532 load_partial_comp_unit_reader (const struct die_reader_specs *reader,
6533 const gdb_byte *info_ptr,
6534 struct die_info *comp_unit_die,
6538 struct dwarf2_cu *cu = reader->cu;
6540 prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
6542 /* Check if comp unit has_children.
6543 If so, read the rest of the partial symbols from this comp unit.
6544 If not, there's no more debug_info for this comp unit. */
6546 load_partial_dies (reader, info_ptr, 0);
6549 /* Load the partial DIEs for a secondary CU into memory.
6550 This is also used when rereading a primary CU with load_all_dies. */
6553 load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu)
6555 init_cutu_and_read_dies (this_cu, NULL, 1, 1,
6556 load_partial_comp_unit_reader, NULL);
6560 read_comp_units_from_section (struct objfile *objfile,
6561 struct dwarf2_section_info *section,
6562 unsigned int is_dwz,
6565 struct dwarf2_per_cu_data ***all_comp_units)
6567 const gdb_byte *info_ptr;
6568 bfd *abfd = get_section_bfd_owner (section);
6570 if (dwarf_read_debug)
6571 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s\n",
6572 get_section_name (section),
6573 get_section_file_name (section));
6575 dwarf2_read_section (objfile, section);
6577 info_ptr = section->buffer;
6579 while (info_ptr < section->buffer + section->size)
6581 unsigned int length, initial_length_size;
6582 struct dwarf2_per_cu_data *this_cu;
6585 offset.sect_off = info_ptr - section->buffer;
6587 /* Read just enough information to find out where the next
6588 compilation unit is. */
6589 length = read_initial_length (abfd, info_ptr, &initial_length_size);
6591 /* Save the compilation unit for later lookup. */
6592 this_cu = XOBNEW (&objfile->objfile_obstack, struct dwarf2_per_cu_data);
6593 memset (this_cu, 0, sizeof (*this_cu));
6594 this_cu->offset = offset;
6595 this_cu->length = length + initial_length_size;
6596 this_cu->is_dwz = is_dwz;
6597 this_cu->objfile = objfile;
6598 this_cu->section = section;
6600 if (*n_comp_units == *n_allocated)
6603 *all_comp_units = XRESIZEVEC (struct dwarf2_per_cu_data *,
6604 *all_comp_units, *n_allocated);
6606 (*all_comp_units)[*n_comp_units] = this_cu;
6609 info_ptr = info_ptr + this_cu->length;
6613 /* Create a list of all compilation units in OBJFILE.
6614 This is only done for -readnow and building partial symtabs. */
6617 create_all_comp_units (struct objfile *objfile)
6621 struct dwarf2_per_cu_data **all_comp_units;
6622 struct dwz_file *dwz;
6626 all_comp_units = XNEWVEC (struct dwarf2_per_cu_data *, n_allocated);
6628 read_comp_units_from_section (objfile, &dwarf2_per_objfile->info, 0,
6629 &n_allocated, &n_comp_units, &all_comp_units);
6631 dwz = dwarf2_get_dwz_file ();
6633 read_comp_units_from_section (objfile, &dwz->info, 1,
6634 &n_allocated, &n_comp_units,
6637 dwarf2_per_objfile->all_comp_units = XOBNEWVEC (&objfile->objfile_obstack,
6638 struct dwarf2_per_cu_data *,
6640 memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
6641 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
6642 xfree (all_comp_units);
6643 dwarf2_per_objfile->n_comp_units = n_comp_units;
6646 /* Process all loaded DIEs for compilation unit CU, starting at
6647 FIRST_DIE. The caller should pass SET_ADDRMAP == 1 if the compilation
6648 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
6649 DW_AT_ranges). See the comments of add_partial_subprogram on how
6650 SET_ADDRMAP is used and how *LOWPC and *HIGHPC are updated. */
6653 scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
6654 CORE_ADDR *highpc, int set_addrmap,
6655 struct dwarf2_cu *cu)
6657 struct partial_die_info *pdi;
6659 /* Now, march along the PDI's, descending into ones which have
6660 interesting children but skipping the children of the other ones,
6661 until we reach the end of the compilation unit. */
6667 fixup_partial_die (pdi, cu);
6669 /* Anonymous namespaces or modules have no name but have interesting
6670 children, so we need to look at them. Ditto for anonymous
6673 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
6674 || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type
6675 || pdi->tag == DW_TAG_imported_unit)
6679 case DW_TAG_subprogram:
6680 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
6682 case DW_TAG_constant:
6683 case DW_TAG_variable:
6684 case DW_TAG_typedef:
6685 case DW_TAG_union_type:
6686 if (!pdi->is_declaration)
6688 add_partial_symbol (pdi, cu);
6691 case DW_TAG_class_type:
6692 case DW_TAG_interface_type:
6693 case DW_TAG_structure_type:
6694 if (!pdi->is_declaration)
6696 add_partial_symbol (pdi, cu);
6699 case DW_TAG_enumeration_type:
6700 if (!pdi->is_declaration)
6701 add_partial_enumeration (pdi, cu);
6703 case DW_TAG_base_type:
6704 case DW_TAG_subrange_type:
6705 /* File scope base type definitions are added to the partial
6707 add_partial_symbol (pdi, cu);
6709 case DW_TAG_namespace:
6710 add_partial_namespace (pdi, lowpc, highpc, set_addrmap, cu);
6713 add_partial_module (pdi, lowpc, highpc, set_addrmap, cu);
6715 case DW_TAG_imported_unit:
6717 struct dwarf2_per_cu_data *per_cu;
6719 /* For now we don't handle imported units in type units. */
6720 if (cu->per_cu->is_debug_types)
6722 error (_("Dwarf Error: DW_TAG_imported_unit is not"
6723 " supported in type units [in module %s]"),
6724 objfile_name (cu->objfile));
6727 per_cu = dwarf2_find_containing_comp_unit (pdi->d.offset,
6731 /* Go read the partial unit, if needed. */
6732 if (per_cu->v.psymtab == NULL)
6733 process_psymtab_comp_unit (per_cu, 1, cu->language);
6735 VEC_safe_push (dwarf2_per_cu_ptr,
6736 cu->per_cu->imported_symtabs, per_cu);
6739 case DW_TAG_imported_declaration:
6740 add_partial_symbol (pdi, cu);
6747 /* If the die has a sibling, skip to the sibling. */
6749 pdi = pdi->die_sibling;
6753 /* Functions used to compute the fully scoped name of a partial DIE.
6755 Normally, this is simple. For C++, the parent DIE's fully scoped
6756 name is concatenated with "::" and the partial DIE's name. For
6757 Java, the same thing occurs except that "." is used instead of "::".
6758 Enumerators are an exception; they use the scope of their parent
6759 enumeration type, i.e. the name of the enumeration type is not
6760 prepended to the enumerator.
6762 There are two complexities. One is DW_AT_specification; in this
6763 case "parent" means the parent of the target of the specification,
6764 instead of the direct parent of the DIE. The other is compilers
6765 which do not emit DW_TAG_namespace; in this case we try to guess
6766 the fully qualified name of structure types from their members'
6767 linkage names. This must be done using the DIE's children rather
6768 than the children of any DW_AT_specification target. We only need
6769 to do this for structures at the top level, i.e. if the target of
6770 any DW_AT_specification (if any; otherwise the DIE itself) does not
6773 /* Compute the scope prefix associated with PDI's parent, in
6774 compilation unit CU. The result will be allocated on CU's
6775 comp_unit_obstack, or a copy of the already allocated PDI->NAME
6776 field. NULL is returned if no prefix is necessary. */
6778 partial_die_parent_scope (struct partial_die_info *pdi,
6779 struct dwarf2_cu *cu)
6781 const char *grandparent_scope;
6782 struct partial_die_info *parent, *real_pdi;
6784 /* We need to look at our parent DIE; if we have a DW_AT_specification,
6785 then this means the parent of the specification DIE. */
6788 while (real_pdi->has_specification)
6789 real_pdi = find_partial_die (real_pdi->spec_offset,
6790 real_pdi->spec_is_dwz, cu);
6792 parent = real_pdi->die_parent;
6796 if (parent->scope_set)
6797 return parent->scope;
6799 fixup_partial_die (parent, cu);
6801 grandparent_scope = partial_die_parent_scope (parent, cu);
6803 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
6804 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
6805 Work around this problem here. */
6806 if (cu->language == language_cplus
6807 && parent->tag == DW_TAG_namespace
6808 && strcmp (parent->name, "::") == 0
6809 && grandparent_scope == NULL)
6811 parent->scope = NULL;
6812 parent->scope_set = 1;
6816 if (pdi->tag == DW_TAG_enumerator)
6817 /* Enumerators should not get the name of the enumeration as a prefix. */
6818 parent->scope = grandparent_scope;
6819 else if (parent->tag == DW_TAG_namespace
6820 || parent->tag == DW_TAG_module
6821 || parent->tag == DW_TAG_structure_type
6822 || parent->tag == DW_TAG_class_type
6823 || parent->tag == DW_TAG_interface_type
6824 || parent->tag == DW_TAG_union_type
6825 || parent->tag == DW_TAG_enumeration_type)
6827 if (grandparent_scope == NULL)
6828 parent->scope = parent->name;
6830 parent->scope = typename_concat (&cu->comp_unit_obstack,
6832 parent->name, 0, cu);
6836 /* FIXME drow/2004-04-01: What should we be doing with
6837 function-local names? For partial symbols, we should probably be
6839 complaint (&symfile_complaints,
6840 _("unhandled containing DIE tag %d for DIE at %d"),
6841 parent->tag, pdi->offset.sect_off);
6842 parent->scope = grandparent_scope;
6845 parent->scope_set = 1;
6846 return parent->scope;
6849 /* Return the fully scoped name associated with PDI, from compilation unit
6850 CU. The result will be allocated with malloc. */
6853 partial_die_full_name (struct partial_die_info *pdi,
6854 struct dwarf2_cu *cu)
6856 const char *parent_scope;
6858 /* If this is a template instantiation, we can not work out the
6859 template arguments from partial DIEs. So, unfortunately, we have
6860 to go through the full DIEs. At least any work we do building
6861 types here will be reused if full symbols are loaded later. */
6862 if (pdi->has_template_arguments)
6864 fixup_partial_die (pdi, cu);
6866 if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
6868 struct die_info *die;
6869 struct attribute attr;
6870 struct dwarf2_cu *ref_cu = cu;
6872 /* DW_FORM_ref_addr is using section offset. */
6873 attr.name = (enum dwarf_attribute) 0;
6874 attr.form = DW_FORM_ref_addr;
6875 attr.u.unsnd = pdi->offset.sect_off;
6876 die = follow_die_ref (NULL, &attr, &ref_cu);
6878 return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
6882 parent_scope = partial_die_parent_scope (pdi, cu);
6883 if (parent_scope == NULL)
6886 return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
6890 add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
6892 struct objfile *objfile = cu->objfile;
6893 struct gdbarch *gdbarch = get_objfile_arch (objfile);
6895 const char *actual_name = NULL;
6897 char *built_actual_name;
6899 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
6901 built_actual_name = partial_die_full_name (pdi, cu);
6902 if (built_actual_name != NULL)
6903 actual_name = built_actual_name;
6905 if (actual_name == NULL)
6906 actual_name = pdi->name;
6910 case DW_TAG_subprogram:
6911 addr = gdbarch_adjust_dwarf2_addr (gdbarch, pdi->lowpc + baseaddr);
6912 if (pdi->is_external || cu->language == language_ada)
6914 /* brobecker/2007-12-26: Normally, only "external" DIEs are part
6915 of the global scope. But in Ada, we want to be able to access
6916 nested procedures globally. So all Ada subprograms are stored
6917 in the global scope. */
6918 add_psymbol_to_list (actual_name, strlen (actual_name),
6919 built_actual_name != NULL,
6920 VAR_DOMAIN, LOC_BLOCK,
6921 &objfile->global_psymbols,
6922 addr, cu->language, objfile);
6926 add_psymbol_to_list (actual_name, strlen (actual_name),
6927 built_actual_name != NULL,
6928 VAR_DOMAIN, LOC_BLOCK,
6929 &objfile->static_psymbols,
6930 addr, cu->language, objfile);
6933 case DW_TAG_constant:
6935 struct psymbol_allocation_list *list;
6937 if (pdi->is_external)
6938 list = &objfile->global_psymbols;
6940 list = &objfile->static_psymbols;
6941 add_psymbol_to_list (actual_name, strlen (actual_name),
6942 built_actual_name != NULL, VAR_DOMAIN, LOC_STATIC,
6943 list, 0, cu->language, objfile);
6946 case DW_TAG_variable:
6948 addr = decode_locdesc (pdi->d.locdesc, cu);
6952 && !dwarf2_per_objfile->has_section_at_zero)
6954 /* A global or static variable may also have been stripped
6955 out by the linker if unused, in which case its address
6956 will be nullified; do not add such variables into partial
6957 symbol table then. */
6959 else if (pdi->is_external)
6962 Don't enter into the minimal symbol tables as there is
6963 a minimal symbol table entry from the ELF symbols already.
6964 Enter into partial symbol table if it has a location
6965 descriptor or a type.
6966 If the location descriptor is missing, new_symbol will create
6967 a LOC_UNRESOLVED symbol, the address of the variable will then
6968 be determined from the minimal symbol table whenever the variable
6970 The address for the partial symbol table entry is not
6971 used by GDB, but it comes in handy for debugging partial symbol
6974 if (pdi->d.locdesc || pdi->has_type)
6975 add_psymbol_to_list (actual_name, strlen (actual_name),
6976 built_actual_name != NULL,
6977 VAR_DOMAIN, LOC_STATIC,
6978 &objfile->global_psymbols,
6980 cu->language, objfile);
6984 int has_loc = pdi->d.locdesc != NULL;
6986 /* Static Variable. Skip symbols whose value we cannot know (those
6987 without location descriptors or constant values). */
6988 if (!has_loc && !pdi->has_const_value)
6990 xfree (built_actual_name);
6994 add_psymbol_to_list (actual_name, strlen (actual_name),
6995 built_actual_name != NULL,
6996 VAR_DOMAIN, LOC_STATIC,
6997 &objfile->static_psymbols,
6998 has_loc ? addr + baseaddr : (CORE_ADDR) 0,
6999 cu->language, objfile);
7002 case DW_TAG_typedef:
7003 case DW_TAG_base_type:
7004 case DW_TAG_subrange_type:
7005 add_psymbol_to_list (actual_name, strlen (actual_name),
7006 built_actual_name != NULL,
7007 VAR_DOMAIN, LOC_TYPEDEF,
7008 &objfile->static_psymbols,
7009 0, cu->language, objfile);
7011 case DW_TAG_imported_declaration:
7012 case DW_TAG_namespace:
7013 add_psymbol_to_list (actual_name, strlen (actual_name),
7014 built_actual_name != NULL,
7015 VAR_DOMAIN, LOC_TYPEDEF,
7016 &objfile->global_psymbols,
7017 0, cu->language, objfile);
7020 add_psymbol_to_list (actual_name, strlen (actual_name),
7021 built_actual_name != NULL,
7022 MODULE_DOMAIN, LOC_TYPEDEF,
7023 &objfile->global_psymbols,
7024 0, cu->language, objfile);
7026 case DW_TAG_class_type:
7027 case DW_TAG_interface_type:
7028 case DW_TAG_structure_type:
7029 case DW_TAG_union_type:
7030 case DW_TAG_enumeration_type:
7031 /* Skip external references. The DWARF standard says in the section
7032 about "Structure, Union, and Class Type Entries": "An incomplete
7033 structure, union or class type is represented by a structure,
7034 union or class entry that does not have a byte size attribute
7035 and that has a DW_AT_declaration attribute." */
7036 if (!pdi->has_byte_size && pdi->is_declaration)
7038 xfree (built_actual_name);
7042 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
7043 static vs. global. */
7044 add_psymbol_to_list (actual_name, strlen (actual_name),
7045 built_actual_name != NULL,
7046 STRUCT_DOMAIN, LOC_TYPEDEF,
7047 (cu->language == language_cplus
7048 || cu->language == language_java)
7049 ? &objfile->global_psymbols
7050 : &objfile->static_psymbols,
7051 0, cu->language, objfile);
7054 case DW_TAG_enumerator:
7055 add_psymbol_to_list (actual_name, strlen (actual_name),
7056 built_actual_name != NULL,
7057 VAR_DOMAIN, LOC_CONST,
7058 (cu->language == language_cplus
7059 || cu->language == language_java)
7060 ? &objfile->global_psymbols
7061 : &objfile->static_psymbols,
7062 0, cu->language, objfile);
7068 xfree (built_actual_name);
7071 /* Read a partial die corresponding to a namespace; also, add a symbol
7072 corresponding to that namespace to the symbol table. NAMESPACE is
7073 the name of the enclosing namespace. */
7076 add_partial_namespace (struct partial_die_info *pdi,
7077 CORE_ADDR *lowpc, CORE_ADDR *highpc,
7078 int set_addrmap, struct dwarf2_cu *cu)
7080 /* Add a symbol for the namespace. */
7082 add_partial_symbol (pdi, cu);
7084 /* Now scan partial symbols in that namespace. */
7086 if (pdi->has_children)
7087 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
7090 /* Read a partial die corresponding to a Fortran module. */
7093 add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
7094 CORE_ADDR *highpc, int set_addrmap, struct dwarf2_cu *cu)
7096 /* Add a symbol for the namespace. */
7098 add_partial_symbol (pdi, cu);
7100 /* Now scan partial symbols in that module. */
7102 if (pdi->has_children)
7103 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
7106 /* Read a partial die corresponding to a subprogram and create a partial
7107 symbol for that subprogram. When the CU language allows it, this
7108 routine also defines a partial symbol for each nested subprogram
7109 that this subprogram contains. If SET_ADDRMAP is true, record the
7110 covered ranges in the addrmap. Set *LOWPC and *HIGHPC to the lowest
7111 and highest PC values found in PDI.
7113 PDI may also be a lexical block, in which case we simply search
7114 recursively for subprograms defined inside that lexical block.
7115 Again, this is only performed when the CU language allows this
7116 type of definitions. */
7119 add_partial_subprogram (struct partial_die_info *pdi,
7120 CORE_ADDR *lowpc, CORE_ADDR *highpc,
7121 int set_addrmap, struct dwarf2_cu *cu)
7123 if (pdi->tag == DW_TAG_subprogram)
7125 if (pdi->has_pc_info)
7127 if (pdi->lowpc < *lowpc)
7128 *lowpc = pdi->lowpc;
7129 if (pdi->highpc > *highpc)
7130 *highpc = pdi->highpc;
7133 struct objfile *objfile = cu->objfile;
7134 struct gdbarch *gdbarch = get_objfile_arch (objfile);
7139 baseaddr = ANOFFSET (objfile->section_offsets,
7140 SECT_OFF_TEXT (objfile));
7141 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch,
7142 pdi->lowpc + baseaddr);
7143 highpc = gdbarch_adjust_dwarf2_addr (gdbarch,
7144 pdi->highpc + baseaddr);
7145 addrmap_set_empty (objfile->psymtabs_addrmap, lowpc, highpc - 1,
7146 cu->per_cu->v.psymtab);
7150 if (pdi->has_pc_info || (!pdi->is_external && pdi->may_be_inlined))
7152 if (!pdi->is_declaration)
7153 /* Ignore subprogram DIEs that do not have a name, they are
7154 illegal. Do not emit a complaint at this point, we will
7155 do so when we convert this psymtab into a symtab. */
7157 add_partial_symbol (pdi, cu);
7161 if (! pdi->has_children)
7164 if (cu->language == language_ada)
7166 pdi = pdi->die_child;
7169 fixup_partial_die (pdi, cu);
7170 if (pdi->tag == DW_TAG_subprogram
7171 || pdi->tag == DW_TAG_lexical_block)
7172 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
7173 pdi = pdi->die_sibling;
7178 /* Read a partial die corresponding to an enumeration type. */
7181 add_partial_enumeration (struct partial_die_info *enum_pdi,
7182 struct dwarf2_cu *cu)
7184 struct partial_die_info *pdi;
7186 if (enum_pdi->name != NULL)
7187 add_partial_symbol (enum_pdi, cu);
7189 pdi = enum_pdi->die_child;
7192 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
7193 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
7195 add_partial_symbol (pdi, cu);
7196 pdi = pdi->die_sibling;
7200 /* Return the initial uleb128 in the die at INFO_PTR. */
7203 peek_abbrev_code (bfd *abfd, const gdb_byte *info_ptr)
7205 unsigned int bytes_read;
7207 return read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
7210 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
7211 Return the corresponding abbrev, or NULL if the number is zero (indicating
7212 an empty DIE). In either case *BYTES_READ will be set to the length of
7213 the initial number. */
7215 static struct abbrev_info *
7216 peek_die_abbrev (const gdb_byte *info_ptr, unsigned int *bytes_read,
7217 struct dwarf2_cu *cu)
7219 bfd *abfd = cu->objfile->obfd;
7220 unsigned int abbrev_number;
7221 struct abbrev_info *abbrev;
7223 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
7225 if (abbrev_number == 0)
7228 abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
7231 error (_("Dwarf Error: Could not find abbrev number %d in %s"
7232 " at offset 0x%x [in module %s]"),
7233 abbrev_number, cu->per_cu->is_debug_types ? "TU" : "CU",
7234 cu->header.offset.sect_off, bfd_get_filename (abfd));
7240 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
7241 Returns a pointer to the end of a series of DIEs, terminated by an empty
7242 DIE. Any children of the skipped DIEs will also be skipped. */
7244 static const gdb_byte *
7245 skip_children (const struct die_reader_specs *reader, const gdb_byte *info_ptr)
7247 struct dwarf2_cu *cu = reader->cu;
7248 struct abbrev_info *abbrev;
7249 unsigned int bytes_read;
7253 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
7255 return info_ptr + bytes_read;
7257 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
7261 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
7262 INFO_PTR should point just after the initial uleb128 of a DIE, and the
7263 abbrev corresponding to that skipped uleb128 should be passed in
7264 ABBREV. Returns a pointer to this DIE's sibling, skipping any
7267 static const gdb_byte *
7268 skip_one_die (const struct die_reader_specs *reader, const gdb_byte *info_ptr,
7269 struct abbrev_info *abbrev)
7271 unsigned int bytes_read;
7272 struct attribute attr;
7273 bfd *abfd = reader->abfd;
7274 struct dwarf2_cu *cu = reader->cu;
7275 const gdb_byte *buffer = reader->buffer;
7276 const gdb_byte *buffer_end = reader->buffer_end;
7277 unsigned int form, i;
7279 for (i = 0; i < abbrev->num_attrs; i++)
7281 /* The only abbrev we care about is DW_AT_sibling. */
7282 if (abbrev->attrs[i].name == DW_AT_sibling)
7284 read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
7285 if (attr.form == DW_FORM_ref_addr)
7286 complaint (&symfile_complaints,
7287 _("ignoring absolute DW_AT_sibling"));
7290 unsigned int off = dwarf2_get_ref_die_offset (&attr).sect_off;
7291 const gdb_byte *sibling_ptr = buffer + off;
7293 if (sibling_ptr < info_ptr)
7294 complaint (&symfile_complaints,
7295 _("DW_AT_sibling points backwards"));
7296 else if (sibling_ptr > reader->buffer_end)
7297 dwarf2_section_buffer_overflow_complaint (reader->die_section);
7303 /* If it isn't DW_AT_sibling, skip this attribute. */
7304 form = abbrev->attrs[i].form;
7308 case DW_FORM_ref_addr:
7309 /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
7310 and later it is offset sized. */
7311 if (cu->header.version == 2)
7312 info_ptr += cu->header.addr_size;
7314 info_ptr += cu->header.offset_size;
7316 case DW_FORM_GNU_ref_alt:
7317 info_ptr += cu->header.offset_size;
7320 info_ptr += cu->header.addr_size;
7327 case DW_FORM_flag_present:
7339 case DW_FORM_ref_sig8:
7342 case DW_FORM_string:
7343 read_direct_string (abfd, info_ptr, &bytes_read);
7344 info_ptr += bytes_read;
7346 case DW_FORM_sec_offset:
7348 case DW_FORM_GNU_strp_alt:
7349 info_ptr += cu->header.offset_size;
7351 case DW_FORM_exprloc:
7353 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
7354 info_ptr += bytes_read;
7356 case DW_FORM_block1:
7357 info_ptr += 1 + read_1_byte (abfd, info_ptr);
7359 case DW_FORM_block2:
7360 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
7362 case DW_FORM_block4:
7363 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
7367 case DW_FORM_ref_udata:
7368 case DW_FORM_GNU_addr_index:
7369 case DW_FORM_GNU_str_index:
7370 info_ptr = safe_skip_leb128 (info_ptr, buffer_end);
7372 case DW_FORM_indirect:
7373 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
7374 info_ptr += bytes_read;
7375 /* We need to continue parsing from here, so just go back to
7377 goto skip_attribute;
7380 error (_("Dwarf Error: Cannot handle %s "
7381 "in DWARF reader [in module %s]"),
7382 dwarf_form_name (form),
7383 bfd_get_filename (abfd));
7387 if (abbrev->has_children)
7388 return skip_children (reader, info_ptr);
7393 /* Locate ORIG_PDI's sibling.
7394 INFO_PTR should point to the start of the next DIE after ORIG_PDI. */
7396 static const gdb_byte *
7397 locate_pdi_sibling (const struct die_reader_specs *reader,
7398 struct partial_die_info *orig_pdi,
7399 const gdb_byte *info_ptr)
7401 /* Do we know the sibling already? */
7403 if (orig_pdi->sibling)
7404 return orig_pdi->sibling;
7406 /* Are there any children to deal with? */
7408 if (!orig_pdi->has_children)
7411 /* Skip the children the long way. */
7413 return skip_children (reader, info_ptr);
7416 /* Expand this partial symbol table into a full symbol table. SELF is
7420 dwarf2_read_symtab (struct partial_symtab *self,
7421 struct objfile *objfile)
7425 warning (_("bug: psymtab for %s is already read in."),
7432 printf_filtered (_("Reading in symbols for %s..."),
7434 gdb_flush (gdb_stdout);
7437 /* Restore our global data. */
7439 = (struct dwarf2_per_objfile *) objfile_data (objfile,
7440 dwarf2_objfile_data_key);
7442 /* If this psymtab is constructed from a debug-only objfile, the
7443 has_section_at_zero flag will not necessarily be correct. We
7444 can get the correct value for this flag by looking at the data
7445 associated with the (presumably stripped) associated objfile. */
7446 if (objfile->separate_debug_objfile_backlink)
7448 struct dwarf2_per_objfile *dpo_backlink
7449 = ((struct dwarf2_per_objfile *)
7450 objfile_data (objfile->separate_debug_objfile_backlink,
7451 dwarf2_objfile_data_key));
7453 dwarf2_per_objfile->has_section_at_zero
7454 = dpo_backlink->has_section_at_zero;
7457 dwarf2_per_objfile->reading_partial_symbols = 0;
7459 psymtab_to_symtab_1 (self);
7461 /* Finish up the debug error message. */
7463 printf_filtered (_("done.\n"));
7466 process_cu_includes ();
7469 /* Reading in full CUs. */
7471 /* Add PER_CU to the queue. */
7474 queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
7475 enum language pretend_language)
7477 struct dwarf2_queue_item *item;
7480 item = XNEW (struct dwarf2_queue_item);
7481 item->per_cu = per_cu;
7482 item->pretend_language = pretend_language;
7485 if (dwarf2_queue == NULL)
7486 dwarf2_queue = item;
7488 dwarf2_queue_tail->next = item;
7490 dwarf2_queue_tail = item;
7493 /* If PER_CU is not yet queued, add it to the queue.
7494 If DEPENDENT_CU is non-NULL, it has a reference to PER_CU so add a
7496 The result is non-zero if PER_CU was queued, otherwise the result is zero
7497 meaning either PER_CU is already queued or it is already loaded.
7499 N.B. There is an invariant here that if a CU is queued then it is loaded.
7500 The caller is required to load PER_CU if we return non-zero. */
7503 maybe_queue_comp_unit (struct dwarf2_cu *dependent_cu,
7504 struct dwarf2_per_cu_data *per_cu,
7505 enum language pretend_language)
7507 /* We may arrive here during partial symbol reading, if we need full
7508 DIEs to process an unusual case (e.g. template arguments). Do
7509 not queue PER_CU, just tell our caller to load its DIEs. */
7510 if (dwarf2_per_objfile->reading_partial_symbols)
7512 if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
7517 /* Mark the dependence relation so that we don't flush PER_CU
7519 if (dependent_cu != NULL)
7520 dwarf2_add_dependence (dependent_cu, per_cu);
7522 /* If it's already on the queue, we have nothing to do. */
7526 /* If the compilation unit is already loaded, just mark it as
7528 if (per_cu->cu != NULL)
7530 per_cu->cu->last_used = 0;
7534 /* Add it to the queue. */
7535 queue_comp_unit (per_cu, pretend_language);
7540 /* Process the queue. */
7543 process_queue (void)
7545 struct dwarf2_queue_item *item, *next_item;
7547 if (dwarf_read_debug)
7549 fprintf_unfiltered (gdb_stdlog,
7550 "Expanding one or more symtabs of objfile %s ...\n",
7551 objfile_name (dwarf2_per_objfile->objfile));
7554 /* The queue starts out with one item, but following a DIE reference
7555 may load a new CU, adding it to the end of the queue. */
7556 for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
7558 if ((dwarf2_per_objfile->using_index
7559 ? !item->per_cu->v.quick->compunit_symtab
7560 : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
7561 /* Skip dummy CUs. */
7562 && item->per_cu->cu != NULL)
7564 struct dwarf2_per_cu_data *per_cu = item->per_cu;
7565 unsigned int debug_print_threshold;
7568 if (per_cu->is_debug_types)
7570 struct signatured_type *sig_type =
7571 (struct signatured_type *) per_cu;
7573 sprintf (buf, "TU %s at offset 0x%x",
7574 hex_string (sig_type->signature),
7575 per_cu->offset.sect_off);
7576 /* There can be 100s of TUs.
7577 Only print them in verbose mode. */
7578 debug_print_threshold = 2;
7582 sprintf (buf, "CU at offset 0x%x", per_cu->offset.sect_off);
7583 debug_print_threshold = 1;
7586 if (dwarf_read_debug >= debug_print_threshold)
7587 fprintf_unfiltered (gdb_stdlog, "Expanding symtab of %s\n", buf);
7589 if (per_cu->is_debug_types)
7590 process_full_type_unit (per_cu, item->pretend_language);
7592 process_full_comp_unit (per_cu, item->pretend_language);
7594 if (dwarf_read_debug >= debug_print_threshold)
7595 fprintf_unfiltered (gdb_stdlog, "Done expanding %s\n", buf);
7598 item->per_cu->queued = 0;
7599 next_item = item->next;
7603 dwarf2_queue_tail = NULL;
7605 if (dwarf_read_debug)
7607 fprintf_unfiltered (gdb_stdlog, "Done expanding symtabs of %s.\n",
7608 objfile_name (dwarf2_per_objfile->objfile));
7612 /* Free all allocated queue entries. This function only releases anything if
7613 an error was thrown; if the queue was processed then it would have been
7614 freed as we went along. */
7617 dwarf2_release_queue (void *dummy)
7619 struct dwarf2_queue_item *item, *last;
7621 item = dwarf2_queue;
7624 /* Anything still marked queued is likely to be in an
7625 inconsistent state, so discard it. */
7626 if (item->per_cu->queued)
7628 if (item->per_cu->cu != NULL)
7629 free_one_cached_comp_unit (item->per_cu);
7630 item->per_cu->queued = 0;
7638 dwarf2_queue = dwarf2_queue_tail = NULL;
7641 /* Read in full symbols for PST, and anything it depends on. */
7644 psymtab_to_symtab_1 (struct partial_symtab *pst)
7646 struct dwarf2_per_cu_data *per_cu;
7652 for (i = 0; i < pst->number_of_dependencies; i++)
7653 if (!pst->dependencies[i]->readin
7654 && pst->dependencies[i]->user == NULL)
7656 /* Inform about additional files that need to be read in. */
7659 /* FIXME: i18n: Need to make this a single string. */
7660 fputs_filtered (" ", gdb_stdout);
7662 fputs_filtered ("and ", gdb_stdout);
7664 printf_filtered ("%s...", pst->dependencies[i]->filename);
7665 wrap_here (""); /* Flush output. */
7666 gdb_flush (gdb_stdout);
7668 psymtab_to_symtab_1 (pst->dependencies[i]);
7671 per_cu = (struct dwarf2_per_cu_data *) pst->read_symtab_private;
7675 /* It's an include file, no symbols to read for it.
7676 Everything is in the parent symtab. */
7681 dw2_do_instantiate_symtab (per_cu);
7684 /* Trivial hash function for die_info: the hash value of a DIE
7685 is its offset in .debug_info for this objfile. */
7688 die_hash (const void *item)
7690 const struct die_info *die = (const struct die_info *) item;
7692 return die->offset.sect_off;
7695 /* Trivial comparison function for die_info structures: two DIEs
7696 are equal if they have the same offset. */
7699 die_eq (const void *item_lhs, const void *item_rhs)
7701 const struct die_info *die_lhs = (const struct die_info *) item_lhs;
7702 const struct die_info *die_rhs = (const struct die_info *) item_rhs;
7704 return die_lhs->offset.sect_off == die_rhs->offset.sect_off;
7707 /* die_reader_func for load_full_comp_unit.
7708 This is identical to read_signatured_type_reader,
7709 but is kept separate for now. */
7712 load_full_comp_unit_reader (const struct die_reader_specs *reader,
7713 const gdb_byte *info_ptr,
7714 struct die_info *comp_unit_die,
7718 struct dwarf2_cu *cu = reader->cu;
7719 enum language *language_ptr = (enum language *) data;
7721 gdb_assert (cu->die_hash == NULL);
7723 htab_create_alloc_ex (cu->header.length / 12,
7727 &cu->comp_unit_obstack,
7728 hashtab_obstack_allocate,
7729 dummy_obstack_deallocate);
7732 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
7733 &info_ptr, comp_unit_die);
7734 cu->dies = comp_unit_die;
7735 /* comp_unit_die is not stored in die_hash, no need. */
7737 /* We try not to read any attributes in this function, because not
7738 all CUs needed for references have been loaded yet, and symbol
7739 table processing isn't initialized. But we have to set the CU language,
7740 or we won't be able to build types correctly.
7741 Similarly, if we do not read the producer, we can not apply
7742 producer-specific interpretation. */
7743 prepare_one_comp_unit (cu, cu->dies, *language_ptr);
7746 /* Load the DIEs associated with PER_CU into memory. */
7749 load_full_comp_unit (struct dwarf2_per_cu_data *this_cu,
7750 enum language pretend_language)
7752 gdb_assert (! this_cu->is_debug_types);
7754 init_cutu_and_read_dies (this_cu, NULL, 1, 1,
7755 load_full_comp_unit_reader, &pretend_language);
7758 /* Add a DIE to the delayed physname list. */
7761 add_to_method_list (struct type *type, int fnfield_index, int index,
7762 const char *name, struct die_info *die,
7763 struct dwarf2_cu *cu)
7765 struct delayed_method_info mi;
7767 mi.fnfield_index = fnfield_index;
7771 VEC_safe_push (delayed_method_info, cu->method_list, &mi);
7774 /* A cleanup for freeing the delayed method list. */
7777 free_delayed_list (void *ptr)
7779 struct dwarf2_cu *cu = (struct dwarf2_cu *) ptr;
7780 if (cu->method_list != NULL)
7782 VEC_free (delayed_method_info, cu->method_list);
7783 cu->method_list = NULL;
7787 /* Compute the physnames of any methods on the CU's method list.
7789 The computation of method physnames is delayed in order to avoid the
7790 (bad) condition that one of the method's formal parameters is of an as yet
7794 compute_delayed_physnames (struct dwarf2_cu *cu)
7797 struct delayed_method_info *mi;
7798 for (i = 0; VEC_iterate (delayed_method_info, cu->method_list, i, mi) ; ++i)
7800 const char *physname;
7801 struct fn_fieldlist *fn_flp
7802 = &TYPE_FN_FIELDLIST (mi->type, mi->fnfield_index);
7803 physname = dwarf2_physname (mi->name, mi->die, cu);
7804 TYPE_FN_FIELD_PHYSNAME (fn_flp->fn_fields, mi->index)
7805 = physname ? physname : "";
7809 /* Go objects should be embedded in a DW_TAG_module DIE,
7810 and it's not clear if/how imported objects will appear.
7811 To keep Go support simple until that's worked out,
7812 go back through what we've read and create something usable.
7813 We could do this while processing each DIE, and feels kinda cleaner,
7814 but that way is more invasive.
7815 This is to, for example, allow the user to type "p var" or "b main"
7816 without having to specify the package name, and allow lookups
7817 of module.object to work in contexts that use the expression
7821 fixup_go_packaging (struct dwarf2_cu *cu)
7823 char *package_name = NULL;
7824 struct pending *list;
7827 for (list = global_symbols; list != NULL; list = list->next)
7829 for (i = 0; i < list->nsyms; ++i)
7831 struct symbol *sym = list->symbol[i];
7833 if (SYMBOL_LANGUAGE (sym) == language_go
7834 && SYMBOL_CLASS (sym) == LOC_BLOCK)
7836 char *this_package_name = go_symbol_package_name (sym);
7838 if (this_package_name == NULL)
7840 if (package_name == NULL)
7841 package_name = this_package_name;
7844 if (strcmp (package_name, this_package_name) != 0)
7845 complaint (&symfile_complaints,
7846 _("Symtab %s has objects from two different Go packages: %s and %s"),
7847 (symbol_symtab (sym) != NULL
7848 ? symtab_to_filename_for_display
7849 (symbol_symtab (sym))
7850 : objfile_name (cu->objfile)),
7851 this_package_name, package_name);
7852 xfree (this_package_name);
7858 if (package_name != NULL)
7860 struct objfile *objfile = cu->objfile;
7861 const char *saved_package_name
7862 = (const char *) obstack_copy0 (&objfile->per_bfd->storage_obstack,
7864 strlen (package_name));
7865 struct type *type = init_type (TYPE_CODE_MODULE, 0, 0,
7866 saved_package_name, objfile);
7869 TYPE_TAG_NAME (type) = TYPE_NAME (type);
7871 sym = allocate_symbol (objfile);
7872 SYMBOL_SET_LANGUAGE (sym, language_go, &objfile->objfile_obstack);
7873 SYMBOL_SET_NAMES (sym, saved_package_name,
7874 strlen (saved_package_name), 0, objfile);
7875 /* This is not VAR_DOMAIN because we want a way to ensure a lookup of,
7876 e.g., "main" finds the "main" module and not C's main(). */
7877 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
7878 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
7879 SYMBOL_TYPE (sym) = type;
7881 add_symbol_to_list (sym, &global_symbols);
7883 xfree (package_name);
7887 /* Return the symtab for PER_CU. This works properly regardless of
7888 whether we're using the index or psymtabs. */
7890 static struct compunit_symtab *
7891 get_compunit_symtab (struct dwarf2_per_cu_data *per_cu)
7893 return (dwarf2_per_objfile->using_index
7894 ? per_cu->v.quick->compunit_symtab
7895 : per_cu->v.psymtab->compunit_symtab);
7898 /* A helper function for computing the list of all symbol tables
7899 included by PER_CU. */
7902 recursively_compute_inclusions (VEC (compunit_symtab_ptr) **result,
7903 htab_t all_children, htab_t all_type_symtabs,
7904 struct dwarf2_per_cu_data *per_cu,
7905 struct compunit_symtab *immediate_parent)
7909 struct compunit_symtab *cust;
7910 struct dwarf2_per_cu_data *iter;
7912 slot = htab_find_slot (all_children, per_cu, INSERT);
7915 /* This inclusion and its children have been processed. */
7920 /* Only add a CU if it has a symbol table. */
7921 cust = get_compunit_symtab (per_cu);
7924 /* If this is a type unit only add its symbol table if we haven't
7925 seen it yet (type unit per_cu's can share symtabs). */
7926 if (per_cu->is_debug_types)
7928 slot = htab_find_slot (all_type_symtabs, cust, INSERT);
7932 VEC_safe_push (compunit_symtab_ptr, *result, cust);
7933 if (cust->user == NULL)
7934 cust->user = immediate_parent;
7939 VEC_safe_push (compunit_symtab_ptr, *result, cust);
7940 if (cust->user == NULL)
7941 cust->user = immediate_parent;
7946 VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs, ix, iter);
7949 recursively_compute_inclusions (result, all_children,
7950 all_type_symtabs, iter, cust);
7954 /* Compute the compunit_symtab 'includes' fields for the compunit_symtab of
7958 compute_compunit_symtab_includes (struct dwarf2_per_cu_data *per_cu)
7960 gdb_assert (! per_cu->is_debug_types);
7962 if (!VEC_empty (dwarf2_per_cu_ptr, per_cu->imported_symtabs))
7965 struct dwarf2_per_cu_data *per_cu_iter;
7966 struct compunit_symtab *compunit_symtab_iter;
7967 VEC (compunit_symtab_ptr) *result_symtabs = NULL;
7968 htab_t all_children, all_type_symtabs;
7969 struct compunit_symtab *cust = get_compunit_symtab (per_cu);
7971 /* If we don't have a symtab, we can just skip this case. */
7975 all_children = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
7976 NULL, xcalloc, xfree);
7977 all_type_symtabs = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
7978 NULL, xcalloc, xfree);
7981 VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs,
7985 recursively_compute_inclusions (&result_symtabs, all_children,
7986 all_type_symtabs, per_cu_iter,
7990 /* Now we have a transitive closure of all the included symtabs. */
7991 len = VEC_length (compunit_symtab_ptr, result_symtabs);
7993 = XOBNEWVEC (&dwarf2_per_objfile->objfile->objfile_obstack,
7994 struct compunit_symtab *, len + 1);
7996 VEC_iterate (compunit_symtab_ptr, result_symtabs, ix,
7997 compunit_symtab_iter);
7999 cust->includes[ix] = compunit_symtab_iter;
8000 cust->includes[len] = NULL;
8002 VEC_free (compunit_symtab_ptr, result_symtabs);
8003 htab_delete (all_children);
8004 htab_delete (all_type_symtabs);
8008 /* Compute the 'includes' field for the symtabs of all the CUs we just
8012 process_cu_includes (void)
8015 struct dwarf2_per_cu_data *iter;
8018 VEC_iterate (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus,
8022 if (! iter->is_debug_types)
8023 compute_compunit_symtab_includes (iter);
8026 VEC_free (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus);
8029 /* Generate full symbol information for PER_CU, whose DIEs have
8030 already been loaded into memory. */
8033 process_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
8034 enum language pretend_language)
8036 struct dwarf2_cu *cu = per_cu->cu;
8037 struct objfile *objfile = per_cu->objfile;
8038 struct gdbarch *gdbarch = get_objfile_arch (objfile);
8039 CORE_ADDR lowpc, highpc;
8040 struct compunit_symtab *cust;
8041 struct cleanup *back_to, *delayed_list_cleanup;
8043 struct block *static_block;
8046 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
8049 back_to = make_cleanup (really_free_pendings, NULL);
8050 delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
8052 cu->list_in_scope = &file_symbols;
8054 cu->language = pretend_language;
8055 cu->language_defn = language_def (cu->language);
8057 /* Do line number decoding in read_file_scope () */
8058 process_die (cu->dies, cu);
8060 /* For now fudge the Go package. */
8061 if (cu->language == language_go)
8062 fixup_go_packaging (cu);
8064 /* Now that we have processed all the DIEs in the CU, all the types
8065 should be complete, and it should now be safe to compute all of the
8067 compute_delayed_physnames (cu);
8068 do_cleanups (delayed_list_cleanup);
8070 /* Some compilers don't define a DW_AT_high_pc attribute for the
8071 compilation unit. If the DW_AT_high_pc is missing, synthesize
8072 it, by scanning the DIE's below the compilation unit. */
8073 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
8075 addr = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
8076 static_block = end_symtab_get_static_block (addr, 0, 1);
8078 /* If the comp unit has DW_AT_ranges, it may have discontiguous ranges.
8079 Also, DW_AT_ranges may record ranges not belonging to any child DIEs
8080 (such as virtual method tables). Record the ranges in STATIC_BLOCK's
8081 addrmap to help ensure it has an accurate map of pc values belonging to
8083 dwarf2_record_block_ranges (cu->dies, static_block, baseaddr, cu);
8085 cust = end_symtab_from_static_block (static_block,
8086 SECT_OFF_TEXT (objfile), 0);
8090 int gcc_4_minor = producer_is_gcc_ge_4 (cu->producer);
8092 /* Set symtab language to language from DW_AT_language. If the
8093 compilation is from a C file generated by language preprocessors, do
8094 not set the language if it was already deduced by start_subfile. */
8095 if (!(cu->language == language_c
8096 && COMPUNIT_FILETABS (cust)->language != language_unknown))
8097 COMPUNIT_FILETABS (cust)->language = cu->language;
8099 /* GCC-4.0 has started to support -fvar-tracking. GCC-3.x still can
8100 produce DW_AT_location with location lists but it can be possibly
8101 invalid without -fvar-tracking. Still up to GCC-4.4.x incl. 4.4.0
8102 there were bugs in prologue debug info, fixed later in GCC-4.5
8103 by "unwind info for epilogues" patch (which is not directly related).
8105 For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
8106 needed, it would be wrong due to missing DW_AT_producer there.
8108 Still one can confuse GDB by using non-standard GCC compilation
8109 options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
8111 if (cu->has_loclist && gcc_4_minor >= 5)
8112 cust->locations_valid = 1;
8114 if (gcc_4_minor >= 5)
8115 cust->epilogue_unwind_valid = 1;
8117 cust->call_site_htab = cu->call_site_htab;
8120 if (dwarf2_per_objfile->using_index)
8121 per_cu->v.quick->compunit_symtab = cust;
8124 struct partial_symtab *pst = per_cu->v.psymtab;
8125 pst->compunit_symtab = cust;
8129 /* Push it for inclusion processing later. */
8130 VEC_safe_push (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus, per_cu);
8132 do_cleanups (back_to);
8135 /* Generate full symbol information for type unit PER_CU, whose DIEs have
8136 already been loaded into memory. */
8139 process_full_type_unit (struct dwarf2_per_cu_data *per_cu,
8140 enum language pretend_language)
8142 struct dwarf2_cu *cu = per_cu->cu;
8143 struct objfile *objfile = per_cu->objfile;
8144 struct compunit_symtab *cust;
8145 struct cleanup *back_to, *delayed_list_cleanup;
8146 struct signatured_type *sig_type;
8148 gdb_assert (per_cu->is_debug_types);
8149 sig_type = (struct signatured_type *) per_cu;
8152 back_to = make_cleanup (really_free_pendings, NULL);
8153 delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
8155 cu->list_in_scope = &file_symbols;
8157 cu->language = pretend_language;
8158 cu->language_defn = language_def (cu->language);
8160 /* The symbol tables are set up in read_type_unit_scope. */
8161 process_die (cu->dies, cu);
8163 /* For now fudge the Go package. */
8164 if (cu->language == language_go)
8165 fixup_go_packaging (cu);
8167 /* Now that we have processed all the DIEs in the CU, all the types
8168 should be complete, and it should now be safe to compute all of the
8170 compute_delayed_physnames (cu);
8171 do_cleanups (delayed_list_cleanup);
8173 /* TUs share symbol tables.
8174 If this is the first TU to use this symtab, complete the construction
8175 of it with end_expandable_symtab. Otherwise, complete the addition of
8176 this TU's symbols to the existing symtab. */
8177 if (sig_type->type_unit_group->compunit_symtab == NULL)
8179 cust = end_expandable_symtab (0, SECT_OFF_TEXT (objfile));
8180 sig_type->type_unit_group->compunit_symtab = cust;
8184 /* Set symtab language to language from DW_AT_language. If the
8185 compilation is from a C file generated by language preprocessors,
8186 do not set the language if it was already deduced by
8188 if (!(cu->language == language_c
8189 && COMPUNIT_FILETABS (cust)->language != language_c))
8190 COMPUNIT_FILETABS (cust)->language = cu->language;
8195 augment_type_symtab ();
8196 cust = sig_type->type_unit_group->compunit_symtab;
8199 if (dwarf2_per_objfile->using_index)
8200 per_cu->v.quick->compunit_symtab = cust;
8203 struct partial_symtab *pst = per_cu->v.psymtab;
8204 pst->compunit_symtab = cust;
8208 do_cleanups (back_to);
8211 /* Process an imported unit DIE. */
8214 process_imported_unit_die (struct die_info *die, struct dwarf2_cu *cu)
8216 struct attribute *attr;
8218 /* For now we don't handle imported units in type units. */
8219 if (cu->per_cu->is_debug_types)
8221 error (_("Dwarf Error: DW_TAG_imported_unit is not"
8222 " supported in type units [in module %s]"),
8223 objfile_name (cu->objfile));
8226 attr = dwarf2_attr (die, DW_AT_import, cu);
8229 struct dwarf2_per_cu_data *per_cu;
8233 offset = dwarf2_get_ref_die_offset (attr);
8234 is_dwz = (attr->form == DW_FORM_GNU_ref_alt || cu->per_cu->is_dwz);
8235 per_cu = dwarf2_find_containing_comp_unit (offset, is_dwz, cu->objfile);
8237 /* If necessary, add it to the queue and load its DIEs. */
8238 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
8239 load_full_comp_unit (per_cu, cu->language);
8241 VEC_safe_push (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
8246 /* Reset the in_process bit of a die. */
8249 reset_die_in_process (void *arg)
8251 struct die_info *die = (struct die_info *) arg;
8253 die->in_process = 0;
8256 /* Process a die and its children. */
8259 process_die (struct die_info *die, struct dwarf2_cu *cu)
8261 struct cleanup *in_process;
8263 /* We should only be processing those not already in process. */
8264 gdb_assert (!die->in_process);
8266 die->in_process = 1;
8267 in_process = make_cleanup (reset_die_in_process,die);
8271 case DW_TAG_padding:
8273 case DW_TAG_compile_unit:
8274 case DW_TAG_partial_unit:
8275 read_file_scope (die, cu);
8277 case DW_TAG_type_unit:
8278 read_type_unit_scope (die, cu);
8280 case DW_TAG_subprogram:
8281 case DW_TAG_inlined_subroutine:
8282 read_func_scope (die, cu);
8284 case DW_TAG_lexical_block:
8285 case DW_TAG_try_block:
8286 case DW_TAG_catch_block:
8287 read_lexical_block_scope (die, cu);
8289 case DW_TAG_GNU_call_site:
8290 read_call_site_scope (die, cu);
8292 case DW_TAG_class_type:
8293 case DW_TAG_interface_type:
8294 case DW_TAG_structure_type:
8295 case DW_TAG_union_type:
8296 process_structure_scope (die, cu);
8298 case DW_TAG_enumeration_type:
8299 process_enumeration_scope (die, cu);
8302 /* These dies have a type, but processing them does not create
8303 a symbol or recurse to process the children. Therefore we can
8304 read them on-demand through read_type_die. */
8305 case DW_TAG_subroutine_type:
8306 case DW_TAG_set_type:
8307 case DW_TAG_array_type:
8308 case DW_TAG_pointer_type:
8309 case DW_TAG_ptr_to_member_type:
8310 case DW_TAG_reference_type:
8311 case DW_TAG_string_type:
8314 case DW_TAG_base_type:
8315 case DW_TAG_subrange_type:
8316 case DW_TAG_typedef:
8317 /* Add a typedef symbol for the type definition, if it has a
8319 new_symbol (die, read_type_die (die, cu), cu);
8321 case DW_TAG_common_block:
8322 read_common_block (die, cu);
8324 case DW_TAG_common_inclusion:
8326 case DW_TAG_namespace:
8327 cu->processing_has_namespace_info = 1;
8328 read_namespace (die, cu);
8331 cu->processing_has_namespace_info = 1;
8332 read_module (die, cu);
8334 case DW_TAG_imported_declaration:
8335 cu->processing_has_namespace_info = 1;
8336 if (read_namespace_alias (die, cu))
8338 /* The declaration is not a global namespace alias: fall through. */
8339 case DW_TAG_imported_module:
8340 cu->processing_has_namespace_info = 1;
8341 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
8342 || cu->language != language_fortran))
8343 complaint (&symfile_complaints, _("Tag '%s' has unexpected children"),
8344 dwarf_tag_name (die->tag));
8345 read_import_statement (die, cu);
8348 case DW_TAG_imported_unit:
8349 process_imported_unit_die (die, cu);
8353 new_symbol (die, NULL, cu);
8357 do_cleanups (in_process);
8360 /* DWARF name computation. */
8362 /* A helper function for dwarf2_compute_name which determines whether DIE
8363 needs to have the name of the scope prepended to the name listed in the
8367 die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
8369 struct attribute *attr;
8373 case DW_TAG_namespace:
8374 case DW_TAG_typedef:
8375 case DW_TAG_class_type:
8376 case DW_TAG_interface_type:
8377 case DW_TAG_structure_type:
8378 case DW_TAG_union_type:
8379 case DW_TAG_enumeration_type:
8380 case DW_TAG_enumerator:
8381 case DW_TAG_subprogram:
8382 case DW_TAG_inlined_subroutine:
8384 case DW_TAG_imported_declaration:
8387 case DW_TAG_variable:
8388 case DW_TAG_constant:
8389 /* We only need to prefix "globally" visible variables. These include
8390 any variable marked with DW_AT_external or any variable that
8391 lives in a namespace. [Variables in anonymous namespaces
8392 require prefixing, but they are not DW_AT_external.] */
8394 if (dwarf2_attr (die, DW_AT_specification, cu))
8396 struct dwarf2_cu *spec_cu = cu;
8398 return die_needs_namespace (die_specification (die, &spec_cu),
8402 attr = dwarf2_attr (die, DW_AT_external, cu);
8403 if (attr == NULL && die->parent->tag != DW_TAG_namespace
8404 && die->parent->tag != DW_TAG_module)
8406 /* A variable in a lexical block of some kind does not need a
8407 namespace, even though in C++ such variables may be external
8408 and have a mangled name. */
8409 if (die->parent->tag == DW_TAG_lexical_block
8410 || die->parent->tag == DW_TAG_try_block
8411 || die->parent->tag == DW_TAG_catch_block
8412 || die->parent->tag == DW_TAG_subprogram)
8421 /* Retrieve the last character from a mem_file. */
8424 do_ui_file_peek_last (void *object, const char *buffer, long length)
8426 char *last_char_p = (char *) object;
8429 *last_char_p = buffer[length - 1];
8432 /* Compute the fully qualified name of DIE in CU. If PHYSNAME is nonzero,
8433 compute the physname for the object, which include a method's:
8434 - formal parameters (C++/Java),
8435 - receiver type (Go),
8436 - return type (Java).
8438 The term "physname" is a bit confusing.
8439 For C++, for example, it is the demangled name.
8440 For Go, for example, it's the mangled name.
8442 For Ada, return the DIE's linkage name rather than the fully qualified
8443 name. PHYSNAME is ignored..
8445 The result is allocated on the objfile_obstack and canonicalized. */
8448 dwarf2_compute_name (const char *name,
8449 struct die_info *die, struct dwarf2_cu *cu,
8452 struct objfile *objfile = cu->objfile;
8455 name = dwarf2_name (die, cu);
8457 /* For Fortran GDB prefers DW_AT_*linkage_name for the physname if present
8458 but otherwise compute it by typename_concat inside GDB.
8459 FIXME: Actually this is not really true, or at least not always true.
8460 It's all very confusing. SYMBOL_SET_NAMES doesn't try to demangle
8461 Fortran names because there is no mangling standard. So new_symbol_full
8462 will set the demangled name to the result of dwarf2_full_name, and it is
8463 the demangled name that GDB uses if it exists. */
8464 if (cu->language == language_ada
8465 || (cu->language == language_fortran && physname))
8467 /* For Ada unit, we prefer the linkage name over the name, as
8468 the former contains the exported name, which the user expects
8469 to be able to reference. Ideally, we want the user to be able
8470 to reference this entity using either natural or linkage name,
8471 but we haven't started looking at this enhancement yet. */
8472 const char *linkage_name;
8474 linkage_name = dwarf2_string_attr (die, DW_AT_linkage_name, cu);
8475 if (linkage_name == NULL)
8476 linkage_name = dwarf2_string_attr (die, DW_AT_MIPS_linkage_name, cu);
8477 if (linkage_name != NULL)
8478 return linkage_name;
8481 /* These are the only languages we know how to qualify names in. */
8483 && (cu->language == language_cplus || cu->language == language_java
8484 || cu->language == language_fortran || cu->language == language_d
8485 || cu->language == language_rust))
8487 if (die_needs_namespace (die, cu))
8491 struct ui_file *buf;
8492 char *intermediate_name;
8493 const char *canonical_name = NULL;
8495 prefix = determine_prefix (die, cu);
8496 buf = mem_fileopen ();
8497 if (*prefix != '\0')
8499 char *prefixed_name = typename_concat (NULL, prefix, name,
8502 fputs_unfiltered (prefixed_name, buf);
8503 xfree (prefixed_name);
8506 fputs_unfiltered (name, buf);
8508 /* Template parameters may be specified in the DIE's DW_AT_name, or
8509 as children with DW_TAG_template_type_param or
8510 DW_TAG_value_type_param. If the latter, add them to the name
8511 here. If the name already has template parameters, then
8512 skip this step; some versions of GCC emit both, and
8513 it is more efficient to use the pre-computed name.
8515 Something to keep in mind about this process: it is very
8516 unlikely, or in some cases downright impossible, to produce
8517 something that will match the mangled name of a function.
8518 If the definition of the function has the same debug info,
8519 we should be able to match up with it anyway. But fallbacks
8520 using the minimal symbol, for instance to find a method
8521 implemented in a stripped copy of libstdc++, will not work.
8522 If we do not have debug info for the definition, we will have to
8523 match them up some other way.
8525 When we do name matching there is a related problem with function
8526 templates; two instantiated function templates are allowed to
8527 differ only by their return types, which we do not add here. */
8529 if (cu->language == language_cplus && strchr (name, '<') == NULL)
8531 struct attribute *attr;
8532 struct die_info *child;
8535 die->building_fullname = 1;
8537 for (child = die->child; child != NULL; child = child->sibling)
8541 const gdb_byte *bytes;
8542 struct dwarf2_locexpr_baton *baton;
8545 if (child->tag != DW_TAG_template_type_param
8546 && child->tag != DW_TAG_template_value_param)
8551 fputs_unfiltered ("<", buf);
8555 fputs_unfiltered (", ", buf);
8557 attr = dwarf2_attr (child, DW_AT_type, cu);
8560 complaint (&symfile_complaints,
8561 _("template parameter missing DW_AT_type"));
8562 fputs_unfiltered ("UNKNOWN_TYPE", buf);
8565 type = die_type (child, cu);
8567 if (child->tag == DW_TAG_template_type_param)
8569 c_print_type (type, "", buf, -1, 0, &type_print_raw_options);
8573 attr = dwarf2_attr (child, DW_AT_const_value, cu);
8576 complaint (&symfile_complaints,
8577 _("template parameter missing "
8578 "DW_AT_const_value"));
8579 fputs_unfiltered ("UNKNOWN_VALUE", buf);
8583 dwarf2_const_value_attr (attr, type, name,
8584 &cu->comp_unit_obstack, cu,
8585 &value, &bytes, &baton);
8587 if (TYPE_NOSIGN (type))
8588 /* GDB prints characters as NUMBER 'CHAR'. If that's
8589 changed, this can use value_print instead. */
8590 c_printchar (value, type, buf);
8593 struct value_print_options opts;
8596 v = dwarf2_evaluate_loc_desc (type, NULL,
8600 else if (bytes != NULL)
8602 v = allocate_value (type);
8603 memcpy (value_contents_writeable (v), bytes,
8604 TYPE_LENGTH (type));
8607 v = value_from_longest (type, value);
8609 /* Specify decimal so that we do not depend on
8611 get_formatted_print_options (&opts, 'd');
8613 value_print (v, buf, &opts);
8619 die->building_fullname = 0;
8623 /* Close the argument list, with a space if necessary
8624 (nested templates). */
8625 char last_char = '\0';
8626 ui_file_put (buf, do_ui_file_peek_last, &last_char);
8627 if (last_char == '>')
8628 fputs_unfiltered (" >", buf);
8630 fputs_unfiltered (">", buf);
8634 /* For Java and C++ methods, append formal parameter type
8635 information, if PHYSNAME. */
8637 if (physname && die->tag == DW_TAG_subprogram
8638 && (cu->language == language_cplus
8639 || cu->language == language_java))
8641 struct type *type = read_type_die (die, cu);
8643 c_type_print_args (type, buf, 1, cu->language,
8644 &type_print_raw_options);
8646 if (cu->language == language_java)
8648 /* For java, we must append the return type to method
8650 if (die->tag == DW_TAG_subprogram)
8651 java_print_type (TYPE_TARGET_TYPE (type), "", buf,
8652 0, 0, &type_print_raw_options);
8654 else if (cu->language == language_cplus)
8656 /* Assume that an artificial first parameter is
8657 "this", but do not crash if it is not. RealView
8658 marks unnamed (and thus unused) parameters as
8659 artificial; there is no way to differentiate
8661 if (TYPE_NFIELDS (type) > 0
8662 && TYPE_FIELD_ARTIFICIAL (type, 0)
8663 && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
8664 && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
8666 fputs_unfiltered (" const", buf);
8670 intermediate_name = ui_file_xstrdup (buf, &length);
8671 ui_file_delete (buf);
8673 if (cu->language == language_cplus)
8675 = dwarf2_canonicalize_name (intermediate_name, cu,
8676 &objfile->per_bfd->storage_obstack);
8678 /* If we only computed INTERMEDIATE_NAME, or if
8679 INTERMEDIATE_NAME is already canonical, then we need to
8680 copy it to the appropriate obstack. */
8681 if (canonical_name == NULL || canonical_name == intermediate_name)
8682 name = ((const char *)
8683 obstack_copy0 (&objfile->per_bfd->storage_obstack,
8685 strlen (intermediate_name)));
8687 name = canonical_name;
8689 xfree (intermediate_name);
8696 /* Return the fully qualified name of DIE, based on its DW_AT_name.
8697 If scope qualifiers are appropriate they will be added. The result
8698 will be allocated on the storage_obstack, or NULL if the DIE does
8699 not have a name. NAME may either be from a previous call to
8700 dwarf2_name or NULL.
8702 The output string will be canonicalized (if C++/Java). */
8705 dwarf2_full_name (const char *name, struct die_info *die, struct dwarf2_cu *cu)
8707 return dwarf2_compute_name (name, die, cu, 0);
8710 /* Construct a physname for the given DIE in CU. NAME may either be
8711 from a previous call to dwarf2_name or NULL. The result will be
8712 allocated on the objfile_objstack or NULL if the DIE does not have a
8715 The output string will be canonicalized (if C++/Java). */
8718 dwarf2_physname (const char *name, struct die_info *die, struct dwarf2_cu *cu)
8720 struct objfile *objfile = cu->objfile;
8721 const char *retval, *mangled = NULL, *canon = NULL;
8722 struct cleanup *back_to;
8725 /* In this case dwarf2_compute_name is just a shortcut not building anything
8727 if (!die_needs_namespace (die, cu))
8728 return dwarf2_compute_name (name, die, cu, 1);
8730 back_to = make_cleanup (null_cleanup, NULL);
8732 mangled = dwarf2_string_attr (die, DW_AT_linkage_name, cu);
8733 if (mangled == NULL)
8734 mangled = dwarf2_string_attr (die, DW_AT_MIPS_linkage_name, cu);
8736 /* DW_AT_linkage_name is missing in some cases - depend on what GDB
8738 if (mangled != NULL)
8742 /* Use DMGL_RET_DROP for C++ template functions to suppress their return
8743 type. It is easier for GDB users to search for such functions as
8744 `name(params)' than `long name(params)'. In such case the minimal
8745 symbol names do not match the full symbol names but for template
8746 functions there is never a need to look up their definition from their
8747 declaration so the only disadvantage remains the minimal symbol
8748 variant `long name(params)' does not have the proper inferior type.
8751 if (cu->language == language_go)
8753 /* This is a lie, but we already lie to the caller new_symbol_full.
8754 new_symbol_full assumes we return the mangled name.
8755 This just undoes that lie until things are cleaned up. */
8760 demangled = gdb_demangle (mangled,
8761 (DMGL_PARAMS | DMGL_ANSI
8762 | (cu->language == language_java
8763 ? DMGL_JAVA | DMGL_RET_POSTFIX
8768 make_cleanup (xfree, demangled);
8778 if (canon == NULL || check_physname)
8780 const char *physname = dwarf2_compute_name (name, die, cu, 1);
8782 if (canon != NULL && strcmp (physname, canon) != 0)
8784 /* It may not mean a bug in GDB. The compiler could also
8785 compute DW_AT_linkage_name incorrectly. But in such case
8786 GDB would need to be bug-to-bug compatible. */
8788 complaint (&symfile_complaints,
8789 _("Computed physname <%s> does not match demangled <%s> "
8790 "(from linkage <%s>) - DIE at 0x%x [in module %s]"),
8791 physname, canon, mangled, die->offset.sect_off,
8792 objfile_name (objfile));
8794 /* Prefer DW_AT_linkage_name (in the CANON form) - when it
8795 is available here - over computed PHYSNAME. It is safer
8796 against both buggy GDB and buggy compilers. */
8810 retval = ((const char *)
8811 obstack_copy0 (&objfile->per_bfd->storage_obstack,
8812 retval, strlen (retval)));
8814 do_cleanups (back_to);
8818 /* Inspect DIE in CU for a namespace alias. If one exists, record
8819 a new symbol for it.
8821 Returns 1 if a namespace alias was recorded, 0 otherwise. */
8824 read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu)
8826 struct attribute *attr;
8828 /* If the die does not have a name, this is not a namespace
8830 attr = dwarf2_attr (die, DW_AT_name, cu);
8834 struct die_info *d = die;
8835 struct dwarf2_cu *imported_cu = cu;
8837 /* If the compiler has nested DW_AT_imported_declaration DIEs,
8838 keep inspecting DIEs until we hit the underlying import. */
8839 #define MAX_NESTED_IMPORTED_DECLARATIONS 100
8840 for (num = 0; num < MAX_NESTED_IMPORTED_DECLARATIONS; ++num)
8842 attr = dwarf2_attr (d, DW_AT_import, cu);
8846 d = follow_die_ref (d, attr, &imported_cu);
8847 if (d->tag != DW_TAG_imported_declaration)
8851 if (num == MAX_NESTED_IMPORTED_DECLARATIONS)
8853 complaint (&symfile_complaints,
8854 _("DIE at 0x%x has too many recursively imported "
8855 "declarations"), d->offset.sect_off);
8862 sect_offset offset = dwarf2_get_ref_die_offset (attr);
8864 type = get_die_type_at_offset (offset, cu->per_cu);
8865 if (type != NULL && TYPE_CODE (type) == TYPE_CODE_NAMESPACE)
8867 /* This declaration is a global namespace alias. Add
8868 a symbol for it whose type is the aliased namespace. */
8869 new_symbol (die, type, cu);
8878 /* Return the using directives repository (global or local?) to use in the
8879 current context for LANGUAGE.
8881 For Ada, imported declarations can materialize renamings, which *may* be
8882 global. However it is impossible (for now?) in DWARF to distinguish
8883 "external" imported declarations and "static" ones. As all imported
8884 declarations seem to be static in all other languages, make them all CU-wide
8885 global only in Ada. */
8887 static struct using_direct **
8888 using_directives (enum language language)
8890 if (language == language_ada && context_stack_depth == 0)
8891 return &global_using_directives;
8893 return &local_using_directives;
8896 /* Read the import statement specified by the given die and record it. */
8899 read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
8901 struct objfile *objfile = cu->objfile;
8902 struct attribute *import_attr;
8903 struct die_info *imported_die, *child_die;
8904 struct dwarf2_cu *imported_cu;
8905 const char *imported_name;
8906 const char *imported_name_prefix;
8907 const char *canonical_name;
8908 const char *import_alias;
8909 const char *imported_declaration = NULL;
8910 const char *import_prefix;
8911 VEC (const_char_ptr) *excludes = NULL;
8912 struct cleanup *cleanups;
8914 import_attr = dwarf2_attr (die, DW_AT_import, cu);
8915 if (import_attr == NULL)
8917 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
8918 dwarf_tag_name (die->tag));
8923 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
8924 imported_name = dwarf2_name (imported_die, imported_cu);
8925 if (imported_name == NULL)
8927 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
8929 The import in the following code:
8943 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
8944 <52> DW_AT_decl_file : 1
8945 <53> DW_AT_decl_line : 6
8946 <54> DW_AT_import : <0x75>
8947 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
8949 <5b> DW_AT_decl_file : 1
8950 <5c> DW_AT_decl_line : 2
8951 <5d> DW_AT_type : <0x6e>
8953 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
8954 <76> DW_AT_byte_size : 4
8955 <77> DW_AT_encoding : 5 (signed)
8957 imports the wrong die ( 0x75 instead of 0x58 ).
8958 This case will be ignored until the gcc bug is fixed. */
8962 /* Figure out the local name after import. */
8963 import_alias = dwarf2_name (die, cu);
8965 /* Figure out where the statement is being imported to. */
8966 import_prefix = determine_prefix (die, cu);
8968 /* Figure out what the scope of the imported die is and prepend it
8969 to the name of the imported die. */
8970 imported_name_prefix = determine_prefix (imported_die, imported_cu);
8972 if (imported_die->tag != DW_TAG_namespace
8973 && imported_die->tag != DW_TAG_module)
8975 imported_declaration = imported_name;
8976 canonical_name = imported_name_prefix;
8978 else if (strlen (imported_name_prefix) > 0)
8979 canonical_name = obconcat (&objfile->objfile_obstack,
8980 imported_name_prefix,
8981 (cu->language == language_d ? "." : "::"),
8982 imported_name, (char *) NULL);
8984 canonical_name = imported_name;
8986 cleanups = make_cleanup (VEC_cleanup (const_char_ptr), &excludes);
8988 if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
8989 for (child_die = die->child; child_die && child_die->tag;
8990 child_die = sibling_die (child_die))
8992 /* DWARF-4: A Fortran use statement with a “rename list” may be
8993 represented by an imported module entry with an import attribute
8994 referring to the module and owned entries corresponding to those
8995 entities that are renamed as part of being imported. */
8997 if (child_die->tag != DW_TAG_imported_declaration)
8999 complaint (&symfile_complaints,
9000 _("child DW_TAG_imported_declaration expected "
9001 "- DIE at 0x%x [in module %s]"),
9002 child_die->offset.sect_off, objfile_name (objfile));
9006 import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
9007 if (import_attr == NULL)
9009 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
9010 dwarf_tag_name (child_die->tag));
9015 imported_die = follow_die_ref_or_sig (child_die, import_attr,
9017 imported_name = dwarf2_name (imported_die, imported_cu);
9018 if (imported_name == NULL)
9020 complaint (&symfile_complaints,
9021 _("child DW_TAG_imported_declaration has unknown "
9022 "imported name - DIE at 0x%x [in module %s]"),
9023 child_die->offset.sect_off, objfile_name (objfile));
9027 VEC_safe_push (const_char_ptr, excludes, imported_name);
9029 process_die (child_die, cu);
9032 add_using_directive (using_directives (cu->language),
9036 imported_declaration,
9039 &objfile->objfile_obstack);
9041 do_cleanups (cleanups);
9044 /* Cleanup function for handle_DW_AT_stmt_list. */
9047 free_cu_line_header (void *arg)
9049 struct dwarf2_cu *cu = (struct dwarf2_cu *) arg;
9051 free_line_header (cu->line_header);
9052 cu->line_header = NULL;
9055 /* Check for possibly missing DW_AT_comp_dir with relative .debug_line
9056 directory paths. GCC SVN r127613 (new option -fdebug-prefix-map) fixed
9057 this, it was first present in GCC release 4.3.0. */
9060 producer_is_gcc_lt_4_3 (struct dwarf2_cu *cu)
9062 if (!cu->checked_producer)
9063 check_producer (cu);
9065 return cu->producer_is_gcc_lt_4_3;
9069 find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu,
9070 const char **name, const char **comp_dir)
9072 /* Find the filename. Do not use dwarf2_name here, since the filename
9073 is not a source language identifier. */
9074 *name = dwarf2_string_attr (die, DW_AT_name, cu);
9075 *comp_dir = dwarf2_string_attr (die, DW_AT_comp_dir, cu);
9077 if (*comp_dir == NULL
9078 && producer_is_gcc_lt_4_3 (cu) && *name != NULL
9079 && IS_ABSOLUTE_PATH (*name))
9081 char *d = ldirname (*name);
9085 make_cleanup (xfree, d);
9087 if (*comp_dir != NULL)
9089 /* Irix 6.2 native cc prepends <machine>.: to the compilation
9090 directory, get rid of it. */
9091 const char *cp = strchr (*comp_dir, ':');
9093 if (cp && cp != *comp_dir && cp[-1] == '.' && cp[1] == '/')
9098 *name = "<unknown>";
9101 /* Handle DW_AT_stmt_list for a compilation unit.
9102 DIE is the DW_TAG_compile_unit die for CU.
9103 COMP_DIR is the compilation directory. LOWPC is passed to
9104 dwarf_decode_lines. See dwarf_decode_lines comments about it. */
9107 handle_DW_AT_stmt_list (struct die_info *die, struct dwarf2_cu *cu,
9108 const char *comp_dir, CORE_ADDR lowpc) /* ARI: editCase function */
9110 struct objfile *objfile = dwarf2_per_objfile->objfile;
9111 struct attribute *attr;
9112 unsigned int line_offset;
9113 struct line_header line_header_local;
9114 hashval_t line_header_local_hash;
9119 gdb_assert (! cu->per_cu->is_debug_types);
9121 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
9125 line_offset = DW_UNSND (attr);
9127 /* The line header hash table is only created if needed (it exists to
9128 prevent redundant reading of the line table for partial_units).
9129 If we're given a partial_unit, we'll need it. If we're given a
9130 compile_unit, then use the line header hash table if it's already
9131 created, but don't create one just yet. */
9133 if (dwarf2_per_objfile->line_header_hash == NULL
9134 && die->tag == DW_TAG_partial_unit)
9136 dwarf2_per_objfile->line_header_hash
9137 = htab_create_alloc_ex (127, line_header_hash_voidp,
9138 line_header_eq_voidp,
9139 free_line_header_voidp,
9140 &objfile->objfile_obstack,
9141 hashtab_obstack_allocate,
9142 dummy_obstack_deallocate);
9145 line_header_local.offset.sect_off = line_offset;
9146 line_header_local.offset_in_dwz = cu->per_cu->is_dwz;
9147 line_header_local_hash = line_header_hash (&line_header_local);
9148 if (dwarf2_per_objfile->line_header_hash != NULL)
9150 slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash,
9152 line_header_local_hash, NO_INSERT);
9154 /* For DW_TAG_compile_unit we need info like symtab::linetable which
9155 is not present in *SLOT (since if there is something in *SLOT then
9156 it will be for a partial_unit). */
9157 if (die->tag == DW_TAG_partial_unit && slot != NULL)
9159 gdb_assert (*slot != NULL);
9160 cu->line_header = (struct line_header *) *slot;
9165 /* dwarf_decode_line_header does not yet provide sufficient information.
9166 We always have to call also dwarf_decode_lines for it. */
9167 cu->line_header = dwarf_decode_line_header (line_offset, cu);
9168 if (cu->line_header == NULL)
9171 if (dwarf2_per_objfile->line_header_hash == NULL)
9175 slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash,
9177 line_header_local_hash, INSERT);
9178 gdb_assert (slot != NULL);
9180 if (slot != NULL && *slot == NULL)
9182 /* This newly decoded line number information unit will be owned
9183 by line_header_hash hash table. */
9184 *slot = cu->line_header;
9188 /* We cannot free any current entry in (*slot) as that struct line_header
9189 may be already used by multiple CUs. Create only temporary decoded
9190 line_header for this CU - it may happen at most once for each line
9191 number information unit. And if we're not using line_header_hash
9192 then this is what we want as well. */
9193 gdb_assert (die->tag != DW_TAG_partial_unit);
9194 make_cleanup (free_cu_line_header, cu);
9196 decode_mapping = (die->tag != DW_TAG_partial_unit);
9197 dwarf_decode_lines (cu->line_header, comp_dir, cu, NULL, lowpc,
9201 /* Process DW_TAG_compile_unit or DW_TAG_partial_unit. */
9204 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
9206 struct objfile *objfile = dwarf2_per_objfile->objfile;
9207 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9208 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
9209 CORE_ADDR lowpc = ((CORE_ADDR) -1);
9210 CORE_ADDR highpc = ((CORE_ADDR) 0);
9211 struct attribute *attr;
9212 const char *name = NULL;
9213 const char *comp_dir = NULL;
9214 struct die_info *child_die;
9217 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
9219 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
9221 /* If we didn't find a lowpc, set it to highpc to avoid complaints
9222 from finish_block. */
9223 if (lowpc == ((CORE_ADDR) -1))
9225 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
9227 find_file_and_directory (die, cu, &name, &comp_dir);
9229 prepare_one_comp_unit (cu, die, cu->language);
9231 /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
9232 standardised yet. As a workaround for the language detection we fall
9233 back to the DW_AT_producer string. */
9234 if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
9235 cu->language = language_opencl;
9237 /* Similar hack for Go. */
9238 if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
9239 set_cu_language (DW_LANG_Go, cu);
9241 dwarf2_start_symtab (cu, name, comp_dir, lowpc);
9243 /* Decode line number information if present. We do this before
9244 processing child DIEs, so that the line header table is available
9245 for DW_AT_decl_file. */
9246 handle_DW_AT_stmt_list (die, cu, comp_dir, lowpc);
9248 /* Process all dies in compilation unit. */
9249 if (die->child != NULL)
9251 child_die = die->child;
9252 while (child_die && child_die->tag)
9254 process_die (child_die, cu);
9255 child_die = sibling_die (child_die);
9259 /* Decode macro information, if present. Dwarf 2 macro information
9260 refers to information in the line number info statement program
9261 header, so we can only read it if we've read the header
9263 attr = dwarf2_attr (die, DW_AT_GNU_macros, cu);
9264 if (attr && cu->line_header)
9266 if (dwarf2_attr (die, DW_AT_macro_info, cu))
9267 complaint (&symfile_complaints,
9268 _("CU refers to both DW_AT_GNU_macros and DW_AT_macro_info"));
9270 dwarf_decode_macros (cu, DW_UNSND (attr), 1);
9274 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
9275 if (attr && cu->line_header)
9277 unsigned int macro_offset = DW_UNSND (attr);
9279 dwarf_decode_macros (cu, macro_offset, 0);
9283 do_cleanups (back_to);
9286 /* TU version of handle_DW_AT_stmt_list for read_type_unit_scope.
9287 Create the set of symtabs used by this TU, or if this TU is sharing
9288 symtabs with another TU and the symtabs have already been created
9289 then restore those symtabs in the line header.
9290 We don't need the pc/line-number mapping for type units. */
9293 setup_type_unit_groups (struct die_info *die, struct dwarf2_cu *cu)
9295 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
9296 struct type_unit_group *tu_group;
9298 struct line_header *lh;
9299 struct attribute *attr;
9300 unsigned int i, line_offset;
9301 struct signatured_type *sig_type;
9303 gdb_assert (per_cu->is_debug_types);
9304 sig_type = (struct signatured_type *) per_cu;
9306 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
9308 /* If we're using .gdb_index (includes -readnow) then
9309 per_cu->type_unit_group may not have been set up yet. */
9310 if (sig_type->type_unit_group == NULL)
9311 sig_type->type_unit_group = get_type_unit_group (cu, attr);
9312 tu_group = sig_type->type_unit_group;
9314 /* If we've already processed this stmt_list there's no real need to
9315 do it again, we could fake it and just recreate the part we need
9316 (file name,index -> symtab mapping). If data shows this optimization
9317 is useful we can do it then. */
9318 first_time = tu_group->compunit_symtab == NULL;
9320 /* We have to handle the case of both a missing DW_AT_stmt_list or bad
9325 line_offset = DW_UNSND (attr);
9326 lh = dwarf_decode_line_header (line_offset, cu);
9331 dwarf2_start_symtab (cu, "", NULL, 0);
9334 gdb_assert (tu_group->symtabs == NULL);
9335 restart_symtab (tu_group->compunit_symtab, "", 0);
9340 cu->line_header = lh;
9341 make_cleanup (free_cu_line_header, cu);
9345 struct compunit_symtab *cust = dwarf2_start_symtab (cu, "", NULL, 0);
9347 /* Note: We don't assign tu_group->compunit_symtab yet because we're
9348 still initializing it, and our caller (a few levels up)
9349 process_full_type_unit still needs to know if this is the first
9352 tu_group->num_symtabs = lh->num_file_names;
9353 tu_group->symtabs = XNEWVEC (struct symtab *, lh->num_file_names);
9355 for (i = 0; i < lh->num_file_names; ++i)
9357 const char *dir = NULL;
9358 struct file_entry *fe = &lh->file_names[i];
9360 if (fe->dir_index && lh->include_dirs != NULL)
9361 dir = lh->include_dirs[fe->dir_index - 1];
9362 dwarf2_start_subfile (fe->name, dir);
9364 if (current_subfile->symtab == NULL)
9366 /* NOTE: start_subfile will recognize when it's been passed
9367 a file it has already seen. So we can't assume there's a
9368 simple mapping from lh->file_names to subfiles, plus
9369 lh->file_names may contain dups. */
9370 current_subfile->symtab
9371 = allocate_symtab (cust, current_subfile->name);
9374 fe->symtab = current_subfile->symtab;
9375 tu_group->symtabs[i] = fe->symtab;
9380 restart_symtab (tu_group->compunit_symtab, "", 0);
9382 for (i = 0; i < lh->num_file_names; ++i)
9384 struct file_entry *fe = &lh->file_names[i];
9386 fe->symtab = tu_group->symtabs[i];
9390 /* The main symtab is allocated last. Type units don't have DW_AT_name
9391 so they don't have a "real" (so to speak) symtab anyway.
9392 There is later code that will assign the main symtab to all symbols
9393 that don't have one. We need to handle the case of a symbol with a
9394 missing symtab (DW_AT_decl_file) anyway. */
9397 /* Process DW_TAG_type_unit.
9398 For TUs we want to skip the first top level sibling if it's not the
9399 actual type being defined by this TU. In this case the first top
9400 level sibling is there to provide context only. */
9403 read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
9405 struct die_info *child_die;
9407 prepare_one_comp_unit (cu, die, language_minimal);
9409 /* Initialize (or reinitialize) the machinery for building symtabs.
9410 We do this before processing child DIEs, so that the line header table
9411 is available for DW_AT_decl_file. */
9412 setup_type_unit_groups (die, cu);
9414 if (die->child != NULL)
9416 child_die = die->child;
9417 while (child_die && child_die->tag)
9419 process_die (child_die, cu);
9420 child_die = sibling_die (child_die);
9427 http://gcc.gnu.org/wiki/DebugFission
9428 http://gcc.gnu.org/wiki/DebugFissionDWP
9430 To simplify handling of both DWO files ("object" files with the DWARF info)
9431 and DWP files (a file with the DWOs packaged up into one file), we treat
9432 DWP files as having a collection of virtual DWO files. */
9435 hash_dwo_file (const void *item)
9437 const struct dwo_file *dwo_file = (const struct dwo_file *) item;
9440 hash = htab_hash_string (dwo_file->dwo_name);
9441 if (dwo_file->comp_dir != NULL)
9442 hash += htab_hash_string (dwo_file->comp_dir);
9447 eq_dwo_file (const void *item_lhs, const void *item_rhs)
9449 const struct dwo_file *lhs = (const struct dwo_file *) item_lhs;
9450 const struct dwo_file *rhs = (const struct dwo_file *) item_rhs;
9452 if (strcmp (lhs->dwo_name, rhs->dwo_name) != 0)
9454 if (lhs->comp_dir == NULL || rhs->comp_dir == NULL)
9455 return lhs->comp_dir == rhs->comp_dir;
9456 return strcmp (lhs->comp_dir, rhs->comp_dir) == 0;
9459 /* Allocate a hash table for DWO files. */
9462 allocate_dwo_file_hash_table (void)
9464 struct objfile *objfile = dwarf2_per_objfile->objfile;
9466 return htab_create_alloc_ex (41,
9470 &objfile->objfile_obstack,
9471 hashtab_obstack_allocate,
9472 dummy_obstack_deallocate);
9475 /* Lookup DWO file DWO_NAME. */
9478 lookup_dwo_file_slot (const char *dwo_name, const char *comp_dir)
9480 struct dwo_file find_entry;
9483 if (dwarf2_per_objfile->dwo_files == NULL)
9484 dwarf2_per_objfile->dwo_files = allocate_dwo_file_hash_table ();
9486 memset (&find_entry, 0, sizeof (find_entry));
9487 find_entry.dwo_name = dwo_name;
9488 find_entry.comp_dir = comp_dir;
9489 slot = htab_find_slot (dwarf2_per_objfile->dwo_files, &find_entry, INSERT);
9495 hash_dwo_unit (const void *item)
9497 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
9499 /* This drops the top 32 bits of the id, but is ok for a hash. */
9500 return dwo_unit->signature;
9504 eq_dwo_unit (const void *item_lhs, const void *item_rhs)
9506 const struct dwo_unit *lhs = (const struct dwo_unit *) item_lhs;
9507 const struct dwo_unit *rhs = (const struct dwo_unit *) item_rhs;
9509 /* The signature is assumed to be unique within the DWO file.
9510 So while object file CU dwo_id's always have the value zero,
9511 that's OK, assuming each object file DWO file has only one CU,
9512 and that's the rule for now. */
9513 return lhs->signature == rhs->signature;
9516 /* Allocate a hash table for DWO CUs,TUs.
9517 There is one of these tables for each of CUs,TUs for each DWO file. */
9520 allocate_dwo_unit_table (struct objfile *objfile)
9522 /* Start out with a pretty small number.
9523 Generally DWO files contain only one CU and maybe some TUs. */
9524 return htab_create_alloc_ex (3,
9528 &objfile->objfile_obstack,
9529 hashtab_obstack_allocate,
9530 dummy_obstack_deallocate);
9533 /* Structure used to pass data to create_dwo_debug_info_hash_table_reader. */
9535 struct create_dwo_cu_data
9537 struct dwo_file *dwo_file;
9538 struct dwo_unit dwo_unit;
9541 /* die_reader_func for create_dwo_cu. */
9544 create_dwo_cu_reader (const struct die_reader_specs *reader,
9545 const gdb_byte *info_ptr,
9546 struct die_info *comp_unit_die,
9550 struct dwarf2_cu *cu = reader->cu;
9551 sect_offset offset = cu->per_cu->offset;
9552 struct dwarf2_section_info *section = cu->per_cu->section;
9553 struct create_dwo_cu_data *data = (struct create_dwo_cu_data *) datap;
9554 struct dwo_file *dwo_file = data->dwo_file;
9555 struct dwo_unit *dwo_unit = &data->dwo_unit;
9556 struct attribute *attr;
9558 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
9561 complaint (&symfile_complaints,
9562 _("Dwarf Error: debug entry at offset 0x%x is missing"
9563 " its dwo_id [in module %s]"),
9564 offset.sect_off, dwo_file->dwo_name);
9568 dwo_unit->dwo_file = dwo_file;
9569 dwo_unit->signature = DW_UNSND (attr);
9570 dwo_unit->section = section;
9571 dwo_unit->offset = offset;
9572 dwo_unit->length = cu->per_cu->length;
9574 if (dwarf_read_debug)
9575 fprintf_unfiltered (gdb_stdlog, " offset 0x%x, dwo_id %s\n",
9576 offset.sect_off, hex_string (dwo_unit->signature));
9579 /* Create the dwo_unit for the lone CU in DWO_FILE.
9580 Note: This function processes DWO files only, not DWP files. */
9582 static struct dwo_unit *
9583 create_dwo_cu (struct dwo_file *dwo_file)
9585 struct objfile *objfile = dwarf2_per_objfile->objfile;
9586 struct dwarf2_section_info *section = &dwo_file->sections.info;
9587 const gdb_byte *info_ptr, *end_ptr;
9588 struct create_dwo_cu_data create_dwo_cu_data;
9589 struct dwo_unit *dwo_unit;
9591 dwarf2_read_section (objfile, section);
9592 info_ptr = section->buffer;
9594 if (info_ptr == NULL)
9597 if (dwarf_read_debug)
9599 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
9600 get_section_name (section),
9601 get_section_file_name (section));
9604 create_dwo_cu_data.dwo_file = dwo_file;
9607 end_ptr = info_ptr + section->size;
9608 while (info_ptr < end_ptr)
9610 struct dwarf2_per_cu_data per_cu;
9612 memset (&create_dwo_cu_data.dwo_unit, 0,
9613 sizeof (create_dwo_cu_data.dwo_unit));
9614 memset (&per_cu, 0, sizeof (per_cu));
9615 per_cu.objfile = objfile;
9616 per_cu.is_debug_types = 0;
9617 per_cu.offset.sect_off = info_ptr - section->buffer;
9618 per_cu.section = section;
9620 init_cutu_and_read_dies_no_follow (&per_cu, dwo_file,
9621 create_dwo_cu_reader,
9622 &create_dwo_cu_data);
9624 if (create_dwo_cu_data.dwo_unit.dwo_file != NULL)
9626 /* If we've already found one, complain. We only support one
9627 because having more than one requires hacking the dwo_name of
9628 each to match, which is highly unlikely to happen. */
9629 if (dwo_unit != NULL)
9631 complaint (&symfile_complaints,
9632 _("Multiple CUs in DWO file %s [in module %s]"),
9633 dwo_file->dwo_name, objfile_name (objfile));
9637 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
9638 *dwo_unit = create_dwo_cu_data.dwo_unit;
9641 info_ptr += per_cu.length;
9647 /* DWP file .debug_{cu,tu}_index section format:
9648 [ref: http://gcc.gnu.org/wiki/DebugFissionDWP]
9652 Both index sections have the same format, and serve to map a 64-bit
9653 signature to a set of section numbers. Each section begins with a header,
9654 followed by a hash table of 64-bit signatures, a parallel table of 32-bit
9655 indexes, and a pool of 32-bit section numbers. The index sections will be
9656 aligned at 8-byte boundaries in the file.
9658 The index section header consists of:
9660 V, 32 bit version number
9662 N, 32 bit number of compilation units or type units in the index
9663 M, 32 bit number of slots in the hash table
9665 Numbers are recorded using the byte order of the application binary.
9667 The hash table begins at offset 16 in the section, and consists of an array
9668 of M 64-bit slots. Each slot contains a 64-bit signature (using the byte
9669 order of the application binary). Unused slots in the hash table are 0.
9670 (We rely on the extreme unlikeliness of a signature being exactly 0.)
9672 The parallel table begins immediately after the hash table
9673 (at offset 16 + 8 * M from the beginning of the section), and consists of an
9674 array of 32-bit indexes (using the byte order of the application binary),
9675 corresponding 1-1 with slots in the hash table. Each entry in the parallel
9676 table contains a 32-bit index into the pool of section numbers. For unused
9677 hash table slots, the corresponding entry in the parallel table will be 0.
9679 The pool of section numbers begins immediately following the hash table
9680 (at offset 16 + 12 * M from the beginning of the section). The pool of
9681 section numbers consists of an array of 32-bit words (using the byte order
9682 of the application binary). Each item in the array is indexed starting
9683 from 0. The hash table entry provides the index of the first section
9684 number in the set. Additional section numbers in the set follow, and the
9685 set is terminated by a 0 entry (section number 0 is not used in ELF).
9687 In each set of section numbers, the .debug_info.dwo or .debug_types.dwo
9688 section must be the first entry in the set, and the .debug_abbrev.dwo must
9689 be the second entry. Other members of the set may follow in any order.
9695 DWP Version 2 combines all the .debug_info, etc. sections into one,
9696 and the entries in the index tables are now offsets into these sections.
9697 CU offsets begin at 0. TU offsets begin at the size of the .debug_info
9700 Index Section Contents:
9702 Hash Table of Signatures dwp_hash_table.hash_table
9703 Parallel Table of Indices dwp_hash_table.unit_table
9704 Table of Section Offsets dwp_hash_table.v2.{section_ids,offsets}
9705 Table of Section Sizes dwp_hash_table.v2.sizes
9707 The index section header consists of:
9709 V, 32 bit version number
9710 L, 32 bit number of columns in the table of section offsets
9711 N, 32 bit number of compilation units or type units in the index
9712 M, 32 bit number of slots in the hash table
9714 Numbers are recorded using the byte order of the application binary.
9716 The hash table has the same format as version 1.
9717 The parallel table of indices has the same format as version 1,
9718 except that the entries are origin-1 indices into the table of sections
9719 offsets and the table of section sizes.
9721 The table of offsets begins immediately following the parallel table
9722 (at offset 16 + 12 * M from the beginning of the section). The table is
9723 a two-dimensional array of 32-bit words (using the byte order of the
9724 application binary), with L columns and N+1 rows, in row-major order.
9725 Each row in the array is indexed starting from 0. The first row provides
9726 a key to the remaining rows: each column in this row provides an identifier
9727 for a debug section, and the offsets in the same column of subsequent rows
9728 refer to that section. The section identifiers are:
9730 DW_SECT_INFO 1 .debug_info.dwo
9731 DW_SECT_TYPES 2 .debug_types.dwo
9732 DW_SECT_ABBREV 3 .debug_abbrev.dwo
9733 DW_SECT_LINE 4 .debug_line.dwo
9734 DW_SECT_LOC 5 .debug_loc.dwo
9735 DW_SECT_STR_OFFSETS 6 .debug_str_offsets.dwo
9736 DW_SECT_MACINFO 7 .debug_macinfo.dwo
9737 DW_SECT_MACRO 8 .debug_macro.dwo
9739 The offsets provided by the CU and TU index sections are the base offsets
9740 for the contributions made by each CU or TU to the corresponding section
9741 in the package file. Each CU and TU header contains an abbrev_offset
9742 field, used to find the abbreviations table for that CU or TU within the
9743 contribution to the .debug_abbrev.dwo section for that CU or TU, and should
9744 be interpreted as relative to the base offset given in the index section.
9745 Likewise, offsets into .debug_line.dwo from DW_AT_stmt_list attributes
9746 should be interpreted as relative to the base offset for .debug_line.dwo,
9747 and offsets into other debug sections obtained from DWARF attributes should
9748 also be interpreted as relative to the corresponding base offset.
9750 The table of sizes begins immediately following the table of offsets.
9751 Like the table of offsets, it is a two-dimensional array of 32-bit words,
9752 with L columns and N rows, in row-major order. Each row in the array is
9753 indexed starting from 1 (row 0 is shared by the two tables).
9757 Hash table lookup is handled the same in version 1 and 2:
9759 We assume that N and M will not exceed 2^32 - 1.
9760 The size of the hash table, M, must be 2^k such that 2^k > 3*N/2.
9762 Given a 64-bit compilation unit signature or a type signature S, an entry
9763 in the hash table is located as follows:
9765 1) Calculate a primary hash H = S & MASK(k), where MASK(k) is a mask with
9766 the low-order k bits all set to 1.
9768 2) Calculate a secondary hash H' = (((S >> 32) & MASK(k)) | 1).
9770 3) If the hash table entry at index H matches the signature, use that
9771 entry. If the hash table entry at index H is unused (all zeroes),
9772 terminate the search: the signature is not present in the table.
9774 4) Let H = (H + H') modulo M. Repeat at Step 3.
9776 Because M > N and H' and M are relatively prime, the search is guaranteed
9777 to stop at an unused slot or find the match. */
9779 /* Create a hash table to map DWO IDs to their CU/TU entry in
9780 .debug_{info,types}.dwo in DWP_FILE.
9781 Returns NULL if there isn't one.
9782 Note: This function processes DWP files only, not DWO files. */
9784 static struct dwp_hash_table *
9785 create_dwp_hash_table (struct dwp_file *dwp_file, int is_debug_types)
9787 struct objfile *objfile = dwarf2_per_objfile->objfile;
9788 bfd *dbfd = dwp_file->dbfd;
9789 const gdb_byte *index_ptr, *index_end;
9790 struct dwarf2_section_info *index;
9791 uint32_t version, nr_columns, nr_units, nr_slots;
9792 struct dwp_hash_table *htab;
9795 index = &dwp_file->sections.tu_index;
9797 index = &dwp_file->sections.cu_index;
9799 if (dwarf2_section_empty_p (index))
9801 dwarf2_read_section (objfile, index);
9803 index_ptr = index->buffer;
9804 index_end = index_ptr + index->size;
9806 version = read_4_bytes (dbfd, index_ptr);
9809 nr_columns = read_4_bytes (dbfd, index_ptr);
9813 nr_units = read_4_bytes (dbfd, index_ptr);
9815 nr_slots = read_4_bytes (dbfd, index_ptr);
9818 if (version != 1 && version != 2)
9820 error (_("Dwarf Error: unsupported DWP file version (%s)"
9822 pulongest (version), dwp_file->name);
9824 if (nr_slots != (nr_slots & -nr_slots))
9826 error (_("Dwarf Error: number of slots in DWP hash table (%s)"
9827 " is not power of 2 [in module %s]"),
9828 pulongest (nr_slots), dwp_file->name);
9831 htab = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_hash_table);
9832 htab->version = version;
9833 htab->nr_columns = nr_columns;
9834 htab->nr_units = nr_units;
9835 htab->nr_slots = nr_slots;
9836 htab->hash_table = index_ptr;
9837 htab->unit_table = htab->hash_table + sizeof (uint64_t) * nr_slots;
9839 /* Exit early if the table is empty. */
9840 if (nr_slots == 0 || nr_units == 0
9841 || (version == 2 && nr_columns == 0))
9843 /* All must be zero. */
9844 if (nr_slots != 0 || nr_units != 0
9845 || (version == 2 && nr_columns != 0))
9847 complaint (&symfile_complaints,
9848 _("Empty DWP but nr_slots,nr_units,nr_columns not"
9849 " all zero [in modules %s]"),
9857 htab->section_pool.v1.indices =
9858 htab->unit_table + sizeof (uint32_t) * nr_slots;
9859 /* It's harder to decide whether the section is too small in v1.
9860 V1 is deprecated anyway so we punt. */
9864 const gdb_byte *ids_ptr = htab->unit_table + sizeof (uint32_t) * nr_slots;
9865 int *ids = htab->section_pool.v2.section_ids;
9866 /* Reverse map for error checking. */
9867 int ids_seen[DW_SECT_MAX + 1];
9872 error (_("Dwarf Error: bad DWP hash table, too few columns"
9873 " in section table [in module %s]"),
9876 if (nr_columns > MAX_NR_V2_DWO_SECTIONS)
9878 error (_("Dwarf Error: bad DWP hash table, too many columns"
9879 " in section table [in module %s]"),
9882 memset (ids, 255, (DW_SECT_MAX + 1) * sizeof (int32_t));
9883 memset (ids_seen, 255, (DW_SECT_MAX + 1) * sizeof (int32_t));
9884 for (i = 0; i < nr_columns; ++i)
9886 int id = read_4_bytes (dbfd, ids_ptr + i * sizeof (uint32_t));
9888 if (id < DW_SECT_MIN || id > DW_SECT_MAX)
9890 error (_("Dwarf Error: bad DWP hash table, bad section id %d"
9891 " in section table [in module %s]"),
9892 id, dwp_file->name);
9894 if (ids_seen[id] != -1)
9896 error (_("Dwarf Error: bad DWP hash table, duplicate section"
9897 " id %d in section table [in module %s]"),
9898 id, dwp_file->name);
9903 /* Must have exactly one info or types section. */
9904 if (((ids_seen[DW_SECT_INFO] != -1)
9905 + (ids_seen[DW_SECT_TYPES] != -1))
9908 error (_("Dwarf Error: bad DWP hash table, missing/duplicate"
9909 " DWO info/types section [in module %s]"),
9912 /* Must have an abbrev section. */
9913 if (ids_seen[DW_SECT_ABBREV] == -1)
9915 error (_("Dwarf Error: bad DWP hash table, missing DWO abbrev"
9916 " section [in module %s]"),
9919 htab->section_pool.v2.offsets = ids_ptr + sizeof (uint32_t) * nr_columns;
9920 htab->section_pool.v2.sizes =
9921 htab->section_pool.v2.offsets + (sizeof (uint32_t)
9922 * nr_units * nr_columns);
9923 if ((htab->section_pool.v2.sizes + (sizeof (uint32_t)
9924 * nr_units * nr_columns))
9927 error (_("Dwarf Error: DWP index section is corrupt (too small)"
9936 /* Update SECTIONS with the data from SECTP.
9938 This function is like the other "locate" section routines that are
9939 passed to bfd_map_over_sections, but in this context the sections to
9940 read comes from the DWP V1 hash table, not the full ELF section table.
9942 The result is non-zero for success, or zero if an error was found. */
9945 locate_v1_virtual_dwo_sections (asection *sectp,
9946 struct virtual_v1_dwo_sections *sections)
9948 const struct dwop_section_names *names = &dwop_section_names;
9950 if (section_is_p (sectp->name, &names->abbrev_dwo))
9952 /* There can be only one. */
9953 if (sections->abbrev.s.section != NULL)
9955 sections->abbrev.s.section = sectp;
9956 sections->abbrev.size = bfd_get_section_size (sectp);
9958 else if (section_is_p (sectp->name, &names->info_dwo)
9959 || section_is_p (sectp->name, &names->types_dwo))
9961 /* There can be only one. */
9962 if (sections->info_or_types.s.section != NULL)
9964 sections->info_or_types.s.section = sectp;
9965 sections->info_or_types.size = bfd_get_section_size (sectp);
9967 else if (section_is_p (sectp->name, &names->line_dwo))
9969 /* There can be only one. */
9970 if (sections->line.s.section != NULL)
9972 sections->line.s.section = sectp;
9973 sections->line.size = bfd_get_section_size (sectp);
9975 else if (section_is_p (sectp->name, &names->loc_dwo))
9977 /* There can be only one. */
9978 if (sections->loc.s.section != NULL)
9980 sections->loc.s.section = sectp;
9981 sections->loc.size = bfd_get_section_size (sectp);
9983 else if (section_is_p (sectp->name, &names->macinfo_dwo))
9985 /* There can be only one. */
9986 if (sections->macinfo.s.section != NULL)
9988 sections->macinfo.s.section = sectp;
9989 sections->macinfo.size = bfd_get_section_size (sectp);
9991 else if (section_is_p (sectp->name, &names->macro_dwo))
9993 /* There can be only one. */
9994 if (sections->macro.s.section != NULL)
9996 sections->macro.s.section = sectp;
9997 sections->macro.size = bfd_get_section_size (sectp);
9999 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
10001 /* There can be only one. */
10002 if (sections->str_offsets.s.section != NULL)
10004 sections->str_offsets.s.section = sectp;
10005 sections->str_offsets.size = bfd_get_section_size (sectp);
10009 /* No other kind of section is valid. */
10016 /* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
10017 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
10018 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
10019 This is for DWP version 1 files. */
10021 static struct dwo_unit *
10022 create_dwo_unit_in_dwp_v1 (struct dwp_file *dwp_file,
10023 uint32_t unit_index,
10024 const char *comp_dir,
10025 ULONGEST signature, int is_debug_types)
10027 struct objfile *objfile = dwarf2_per_objfile->objfile;
10028 const struct dwp_hash_table *dwp_htab =
10029 is_debug_types ? dwp_file->tus : dwp_file->cus;
10030 bfd *dbfd = dwp_file->dbfd;
10031 const char *kind = is_debug_types ? "TU" : "CU";
10032 struct dwo_file *dwo_file;
10033 struct dwo_unit *dwo_unit;
10034 struct virtual_v1_dwo_sections sections;
10035 void **dwo_file_slot;
10036 char *virtual_dwo_name;
10037 struct cleanup *cleanups;
10040 gdb_assert (dwp_file->version == 1);
10042 if (dwarf_read_debug)
10044 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V1 file: %s\n",
10046 pulongest (unit_index), hex_string (signature),
10050 /* Fetch the sections of this DWO unit.
10051 Put a limit on the number of sections we look for so that bad data
10052 doesn't cause us to loop forever. */
10054 #define MAX_NR_V1_DWO_SECTIONS \
10055 (1 /* .debug_info or .debug_types */ \
10056 + 1 /* .debug_abbrev */ \
10057 + 1 /* .debug_line */ \
10058 + 1 /* .debug_loc */ \
10059 + 1 /* .debug_str_offsets */ \
10060 + 1 /* .debug_macro or .debug_macinfo */ \
10061 + 1 /* trailing zero */)
10063 memset (§ions, 0, sizeof (sections));
10064 cleanups = make_cleanup (null_cleanup, 0);
10066 for (i = 0; i < MAX_NR_V1_DWO_SECTIONS; ++i)
10069 uint32_t section_nr =
10070 read_4_bytes (dbfd,
10071 dwp_htab->section_pool.v1.indices
10072 + (unit_index + i) * sizeof (uint32_t));
10074 if (section_nr == 0)
10076 if (section_nr >= dwp_file->num_sections)
10078 error (_("Dwarf Error: bad DWP hash table, section number too large"
10079 " [in module %s]"),
10083 sectp = dwp_file->elf_sections[section_nr];
10084 if (! locate_v1_virtual_dwo_sections (sectp, §ions))
10086 error (_("Dwarf Error: bad DWP hash table, invalid section found"
10087 " [in module %s]"),
10093 || dwarf2_section_empty_p (§ions.info_or_types)
10094 || dwarf2_section_empty_p (§ions.abbrev))
10096 error (_("Dwarf Error: bad DWP hash table, missing DWO sections"
10097 " [in module %s]"),
10100 if (i == MAX_NR_V1_DWO_SECTIONS)
10102 error (_("Dwarf Error: bad DWP hash table, too many DWO sections"
10103 " [in module %s]"),
10107 /* It's easier for the rest of the code if we fake a struct dwo_file and
10108 have dwo_unit "live" in that. At least for now.
10110 The DWP file can be made up of a random collection of CUs and TUs.
10111 However, for each CU + set of TUs that came from the same original DWO
10112 file, we can combine them back into a virtual DWO file to save space
10113 (fewer struct dwo_file objects to allocate). Remember that for really
10114 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
10117 xstrprintf ("virtual-dwo/%d-%d-%d-%d",
10118 get_section_id (§ions.abbrev),
10119 get_section_id (§ions.line),
10120 get_section_id (§ions.loc),
10121 get_section_id (§ions.str_offsets));
10122 make_cleanup (xfree, virtual_dwo_name);
10123 /* Can we use an existing virtual DWO file? */
10124 dwo_file_slot = lookup_dwo_file_slot (virtual_dwo_name, comp_dir);
10125 /* Create one if necessary. */
10126 if (*dwo_file_slot == NULL)
10128 if (dwarf_read_debug)
10130 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
10133 dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
10135 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
10137 strlen (virtual_dwo_name));
10138 dwo_file->comp_dir = comp_dir;
10139 dwo_file->sections.abbrev = sections.abbrev;
10140 dwo_file->sections.line = sections.line;
10141 dwo_file->sections.loc = sections.loc;
10142 dwo_file->sections.macinfo = sections.macinfo;
10143 dwo_file->sections.macro = sections.macro;
10144 dwo_file->sections.str_offsets = sections.str_offsets;
10145 /* The "str" section is global to the entire DWP file. */
10146 dwo_file->sections.str = dwp_file->sections.str;
10147 /* The info or types section is assigned below to dwo_unit,
10148 there's no need to record it in dwo_file.
10149 Also, we can't simply record type sections in dwo_file because
10150 we record a pointer into the vector in dwo_unit. As we collect more
10151 types we'll grow the vector and eventually have to reallocate space
10152 for it, invalidating all copies of pointers into the previous
10154 *dwo_file_slot = dwo_file;
10158 if (dwarf_read_debug)
10160 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
10163 dwo_file = (struct dwo_file *) *dwo_file_slot;
10165 do_cleanups (cleanups);
10167 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
10168 dwo_unit->dwo_file = dwo_file;
10169 dwo_unit->signature = signature;
10170 dwo_unit->section =
10171 XOBNEW (&objfile->objfile_obstack, struct dwarf2_section_info);
10172 *dwo_unit->section = sections.info_or_types;
10173 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
10178 /* Subroutine of create_dwo_unit_in_dwp_v2 to simplify it.
10179 Given a pointer to the containing section SECTION, and OFFSET,SIZE of the
10180 piece within that section used by a TU/CU, return a virtual section
10181 of just that piece. */
10183 static struct dwarf2_section_info
10184 create_dwp_v2_section (struct dwarf2_section_info *section,
10185 bfd_size_type offset, bfd_size_type size)
10187 struct dwarf2_section_info result;
10190 gdb_assert (section != NULL);
10191 gdb_assert (!section->is_virtual);
10193 memset (&result, 0, sizeof (result));
10194 result.s.containing_section = section;
10195 result.is_virtual = 1;
10200 sectp = get_section_bfd_section (section);
10202 /* Flag an error if the piece denoted by OFFSET,SIZE is outside the
10203 bounds of the real section. This is a pretty-rare event, so just
10204 flag an error (easier) instead of a warning and trying to cope. */
10206 || offset + size > bfd_get_section_size (sectp))
10208 bfd *abfd = sectp->owner;
10210 error (_("Dwarf Error: Bad DWP V2 section info, doesn't fit"
10211 " in section %s [in module %s]"),
10212 sectp ? bfd_section_name (abfd, sectp) : "<unknown>",
10213 objfile_name (dwarf2_per_objfile->objfile));
10216 result.virtual_offset = offset;
10217 result.size = size;
10221 /* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
10222 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
10223 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
10224 This is for DWP version 2 files. */
10226 static struct dwo_unit *
10227 create_dwo_unit_in_dwp_v2 (struct dwp_file *dwp_file,
10228 uint32_t unit_index,
10229 const char *comp_dir,
10230 ULONGEST signature, int is_debug_types)
10232 struct objfile *objfile = dwarf2_per_objfile->objfile;
10233 const struct dwp_hash_table *dwp_htab =
10234 is_debug_types ? dwp_file->tus : dwp_file->cus;
10235 bfd *dbfd = dwp_file->dbfd;
10236 const char *kind = is_debug_types ? "TU" : "CU";
10237 struct dwo_file *dwo_file;
10238 struct dwo_unit *dwo_unit;
10239 struct virtual_v2_dwo_sections sections;
10240 void **dwo_file_slot;
10241 char *virtual_dwo_name;
10242 struct cleanup *cleanups;
10245 gdb_assert (dwp_file->version == 2);
10247 if (dwarf_read_debug)
10249 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V2 file: %s\n",
10251 pulongest (unit_index), hex_string (signature),
10255 /* Fetch the section offsets of this DWO unit. */
10257 memset (§ions, 0, sizeof (sections));
10258 cleanups = make_cleanup (null_cleanup, 0);
10260 for (i = 0; i < dwp_htab->nr_columns; ++i)
10262 uint32_t offset = read_4_bytes (dbfd,
10263 dwp_htab->section_pool.v2.offsets
10264 + (((unit_index - 1) * dwp_htab->nr_columns
10266 * sizeof (uint32_t)));
10267 uint32_t size = read_4_bytes (dbfd,
10268 dwp_htab->section_pool.v2.sizes
10269 + (((unit_index - 1) * dwp_htab->nr_columns
10271 * sizeof (uint32_t)));
10273 switch (dwp_htab->section_pool.v2.section_ids[i])
10276 case DW_SECT_TYPES:
10277 sections.info_or_types_offset = offset;
10278 sections.info_or_types_size = size;
10280 case DW_SECT_ABBREV:
10281 sections.abbrev_offset = offset;
10282 sections.abbrev_size = size;
10285 sections.line_offset = offset;
10286 sections.line_size = size;
10289 sections.loc_offset = offset;
10290 sections.loc_size = size;
10292 case DW_SECT_STR_OFFSETS:
10293 sections.str_offsets_offset = offset;
10294 sections.str_offsets_size = size;
10296 case DW_SECT_MACINFO:
10297 sections.macinfo_offset = offset;
10298 sections.macinfo_size = size;
10300 case DW_SECT_MACRO:
10301 sections.macro_offset = offset;
10302 sections.macro_size = size;
10307 /* It's easier for the rest of the code if we fake a struct dwo_file and
10308 have dwo_unit "live" in that. At least for now.
10310 The DWP file can be made up of a random collection of CUs and TUs.
10311 However, for each CU + set of TUs that came from the same original DWO
10312 file, we can combine them back into a virtual DWO file to save space
10313 (fewer struct dwo_file objects to allocate). Remember that for really
10314 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
10317 xstrprintf ("virtual-dwo/%ld-%ld-%ld-%ld",
10318 (long) (sections.abbrev_size ? sections.abbrev_offset : 0),
10319 (long) (sections.line_size ? sections.line_offset : 0),
10320 (long) (sections.loc_size ? sections.loc_offset : 0),
10321 (long) (sections.str_offsets_size
10322 ? sections.str_offsets_offset : 0));
10323 make_cleanup (xfree, virtual_dwo_name);
10324 /* Can we use an existing virtual DWO file? */
10325 dwo_file_slot = lookup_dwo_file_slot (virtual_dwo_name, comp_dir);
10326 /* Create one if necessary. */
10327 if (*dwo_file_slot == NULL)
10329 if (dwarf_read_debug)
10331 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
10334 dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
10336 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
10338 strlen (virtual_dwo_name));
10339 dwo_file->comp_dir = comp_dir;
10340 dwo_file->sections.abbrev =
10341 create_dwp_v2_section (&dwp_file->sections.abbrev,
10342 sections.abbrev_offset, sections.abbrev_size);
10343 dwo_file->sections.line =
10344 create_dwp_v2_section (&dwp_file->sections.line,
10345 sections.line_offset, sections.line_size);
10346 dwo_file->sections.loc =
10347 create_dwp_v2_section (&dwp_file->sections.loc,
10348 sections.loc_offset, sections.loc_size);
10349 dwo_file->sections.macinfo =
10350 create_dwp_v2_section (&dwp_file->sections.macinfo,
10351 sections.macinfo_offset, sections.macinfo_size);
10352 dwo_file->sections.macro =
10353 create_dwp_v2_section (&dwp_file->sections.macro,
10354 sections.macro_offset, sections.macro_size);
10355 dwo_file->sections.str_offsets =
10356 create_dwp_v2_section (&dwp_file->sections.str_offsets,
10357 sections.str_offsets_offset,
10358 sections.str_offsets_size);
10359 /* The "str" section is global to the entire DWP file. */
10360 dwo_file->sections.str = dwp_file->sections.str;
10361 /* The info or types section is assigned below to dwo_unit,
10362 there's no need to record it in dwo_file.
10363 Also, we can't simply record type sections in dwo_file because
10364 we record a pointer into the vector in dwo_unit. As we collect more
10365 types we'll grow the vector and eventually have to reallocate space
10366 for it, invalidating all copies of pointers into the previous
10368 *dwo_file_slot = dwo_file;
10372 if (dwarf_read_debug)
10374 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
10377 dwo_file = (struct dwo_file *) *dwo_file_slot;
10379 do_cleanups (cleanups);
10381 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
10382 dwo_unit->dwo_file = dwo_file;
10383 dwo_unit->signature = signature;
10384 dwo_unit->section =
10385 XOBNEW (&objfile->objfile_obstack, struct dwarf2_section_info);
10386 *dwo_unit->section = create_dwp_v2_section (is_debug_types
10387 ? &dwp_file->sections.types
10388 : &dwp_file->sections.info,
10389 sections.info_or_types_offset,
10390 sections.info_or_types_size);
10391 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
10396 /* Lookup the DWO unit with SIGNATURE in DWP_FILE.
10397 Returns NULL if the signature isn't found. */
10399 static struct dwo_unit *
10400 lookup_dwo_unit_in_dwp (struct dwp_file *dwp_file, const char *comp_dir,
10401 ULONGEST signature, int is_debug_types)
10403 const struct dwp_hash_table *dwp_htab =
10404 is_debug_types ? dwp_file->tus : dwp_file->cus;
10405 bfd *dbfd = dwp_file->dbfd;
10406 uint32_t mask = dwp_htab->nr_slots - 1;
10407 uint32_t hash = signature & mask;
10408 uint32_t hash2 = ((signature >> 32) & mask) | 1;
10411 struct dwo_unit find_dwo_cu;
10413 memset (&find_dwo_cu, 0, sizeof (find_dwo_cu));
10414 find_dwo_cu.signature = signature;
10415 slot = htab_find_slot (is_debug_types
10416 ? dwp_file->loaded_tus
10417 : dwp_file->loaded_cus,
10418 &find_dwo_cu, INSERT);
10421 return (struct dwo_unit *) *slot;
10423 /* Use a for loop so that we don't loop forever on bad debug info. */
10424 for (i = 0; i < dwp_htab->nr_slots; ++i)
10426 ULONGEST signature_in_table;
10428 signature_in_table =
10429 read_8_bytes (dbfd, dwp_htab->hash_table + hash * sizeof (uint64_t));
10430 if (signature_in_table == signature)
10432 uint32_t unit_index =
10433 read_4_bytes (dbfd,
10434 dwp_htab->unit_table + hash * sizeof (uint32_t));
10436 if (dwp_file->version == 1)
10438 *slot = create_dwo_unit_in_dwp_v1 (dwp_file, unit_index,
10439 comp_dir, signature,
10444 *slot = create_dwo_unit_in_dwp_v2 (dwp_file, unit_index,
10445 comp_dir, signature,
10448 return (struct dwo_unit *) *slot;
10450 if (signature_in_table == 0)
10452 hash = (hash + hash2) & mask;
10455 error (_("Dwarf Error: bad DWP hash table, lookup didn't terminate"
10456 " [in module %s]"),
10460 /* Subroutine of open_dwo_file,open_dwp_file to simplify them.
10461 Open the file specified by FILE_NAME and hand it off to BFD for
10462 preliminary analysis. Return a newly initialized bfd *, which
10463 includes a canonicalized copy of FILE_NAME.
10464 If IS_DWP is TRUE, we're opening a DWP file, otherwise a DWO file.
10465 SEARCH_CWD is true if the current directory is to be searched.
10466 It will be searched before debug-file-directory.
10467 If successful, the file is added to the bfd include table of the
10468 objfile's bfd (see gdb_bfd_record_inclusion).
10469 If unable to find/open the file, return NULL.
10470 NOTE: This function is derived from symfile_bfd_open. */
10473 try_open_dwop_file (const char *file_name, int is_dwp, int search_cwd)
10477 char *absolute_name;
10478 /* Blech. OPF_TRY_CWD_FIRST also disables searching the path list if
10479 FILE_NAME contains a '/'. So we can't use it. Instead prepend "."
10480 to debug_file_directory. */
10482 static const char dirname_separator_string[] = { DIRNAME_SEPARATOR, '\0' };
10486 if (*debug_file_directory != '\0')
10487 search_path = concat (".", dirname_separator_string,
10488 debug_file_directory, (char *) NULL);
10490 search_path = xstrdup (".");
10493 search_path = xstrdup (debug_file_directory);
10495 flags = OPF_RETURN_REALPATH;
10497 flags |= OPF_SEARCH_IN_PATH;
10498 desc = openp (search_path, flags, file_name,
10499 O_RDONLY | O_BINARY, &absolute_name);
10500 xfree (search_path);
10504 sym_bfd = gdb_bfd_open (absolute_name, gnutarget, desc);
10505 xfree (absolute_name);
10506 if (sym_bfd == NULL)
10508 bfd_set_cacheable (sym_bfd, 1);
10510 if (!bfd_check_format (sym_bfd, bfd_object))
10512 gdb_bfd_unref (sym_bfd); /* This also closes desc. */
10516 /* Success. Record the bfd as having been included by the objfile's bfd.
10517 This is important because things like demangled_names_hash lives in the
10518 objfile's per_bfd space and may have references to things like symbol
10519 names that live in the DWO/DWP file's per_bfd space. PR 16426. */
10520 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd, sym_bfd);
10525 /* Try to open DWO file FILE_NAME.
10526 COMP_DIR is the DW_AT_comp_dir attribute.
10527 The result is the bfd handle of the file.
10528 If there is a problem finding or opening the file, return NULL.
10529 Upon success, the canonicalized path of the file is stored in the bfd,
10530 same as symfile_bfd_open. */
10533 open_dwo_file (const char *file_name, const char *comp_dir)
10537 if (IS_ABSOLUTE_PATH (file_name))
10538 return try_open_dwop_file (file_name, 0 /*is_dwp*/, 0 /*search_cwd*/);
10540 /* Before trying the search path, try DWO_NAME in COMP_DIR. */
10542 if (comp_dir != NULL)
10544 char *path_to_try = concat (comp_dir, SLASH_STRING,
10545 file_name, (char *) NULL);
10547 /* NOTE: If comp_dir is a relative path, this will also try the
10548 search path, which seems useful. */
10549 abfd = try_open_dwop_file (path_to_try, 0 /*is_dwp*/, 1 /*search_cwd*/);
10550 xfree (path_to_try);
10555 /* That didn't work, try debug-file-directory, which, despite its name,
10556 is a list of paths. */
10558 if (*debug_file_directory == '\0')
10561 return try_open_dwop_file (file_name, 0 /*is_dwp*/, 1 /*search_cwd*/);
10564 /* This function is mapped across the sections and remembers the offset and
10565 size of each of the DWO debugging sections we are interested in. */
10568 dwarf2_locate_dwo_sections (bfd *abfd, asection *sectp, void *dwo_sections_ptr)
10570 struct dwo_sections *dwo_sections = (struct dwo_sections *) dwo_sections_ptr;
10571 const struct dwop_section_names *names = &dwop_section_names;
10573 if (section_is_p (sectp->name, &names->abbrev_dwo))
10575 dwo_sections->abbrev.s.section = sectp;
10576 dwo_sections->abbrev.size = bfd_get_section_size (sectp);
10578 else if (section_is_p (sectp->name, &names->info_dwo))
10580 dwo_sections->info.s.section = sectp;
10581 dwo_sections->info.size = bfd_get_section_size (sectp);
10583 else if (section_is_p (sectp->name, &names->line_dwo))
10585 dwo_sections->line.s.section = sectp;
10586 dwo_sections->line.size = bfd_get_section_size (sectp);
10588 else if (section_is_p (sectp->name, &names->loc_dwo))
10590 dwo_sections->loc.s.section = sectp;
10591 dwo_sections->loc.size = bfd_get_section_size (sectp);
10593 else if (section_is_p (sectp->name, &names->macinfo_dwo))
10595 dwo_sections->macinfo.s.section = sectp;
10596 dwo_sections->macinfo.size = bfd_get_section_size (sectp);
10598 else if (section_is_p (sectp->name, &names->macro_dwo))
10600 dwo_sections->macro.s.section = sectp;
10601 dwo_sections->macro.size = bfd_get_section_size (sectp);
10603 else if (section_is_p (sectp->name, &names->str_dwo))
10605 dwo_sections->str.s.section = sectp;
10606 dwo_sections->str.size = bfd_get_section_size (sectp);
10608 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
10610 dwo_sections->str_offsets.s.section = sectp;
10611 dwo_sections->str_offsets.size = bfd_get_section_size (sectp);
10613 else if (section_is_p (sectp->name, &names->types_dwo))
10615 struct dwarf2_section_info type_section;
10617 memset (&type_section, 0, sizeof (type_section));
10618 type_section.s.section = sectp;
10619 type_section.size = bfd_get_section_size (sectp);
10620 VEC_safe_push (dwarf2_section_info_def, dwo_sections->types,
10625 /* Initialize the use of the DWO file specified by DWO_NAME and referenced
10626 by PER_CU. This is for the non-DWP case.
10627 The result is NULL if DWO_NAME can't be found. */
10629 static struct dwo_file *
10630 open_and_init_dwo_file (struct dwarf2_per_cu_data *per_cu,
10631 const char *dwo_name, const char *comp_dir)
10633 struct objfile *objfile = dwarf2_per_objfile->objfile;
10634 struct dwo_file *dwo_file;
10636 struct cleanup *cleanups;
10638 dbfd = open_dwo_file (dwo_name, comp_dir);
10641 if (dwarf_read_debug)
10642 fprintf_unfiltered (gdb_stdlog, "DWO file not found: %s\n", dwo_name);
10645 dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
10646 dwo_file->dwo_name = dwo_name;
10647 dwo_file->comp_dir = comp_dir;
10648 dwo_file->dbfd = dbfd;
10650 cleanups = make_cleanup (free_dwo_file_cleanup, dwo_file);
10652 bfd_map_over_sections (dbfd, dwarf2_locate_dwo_sections, &dwo_file->sections);
10654 dwo_file->cu = create_dwo_cu (dwo_file);
10656 dwo_file->tus = create_debug_types_hash_table (dwo_file,
10657 dwo_file->sections.types);
10659 discard_cleanups (cleanups);
10661 if (dwarf_read_debug)
10662 fprintf_unfiltered (gdb_stdlog, "DWO file found: %s\n", dwo_name);
10667 /* This function is mapped across the sections and remembers the offset and
10668 size of each of the DWP debugging sections common to version 1 and 2 that
10669 we are interested in. */
10672 dwarf2_locate_common_dwp_sections (bfd *abfd, asection *sectp,
10673 void *dwp_file_ptr)
10675 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
10676 const struct dwop_section_names *names = &dwop_section_names;
10677 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
10679 /* Record the ELF section number for later lookup: this is what the
10680 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
10681 gdb_assert (elf_section_nr < dwp_file->num_sections);
10682 dwp_file->elf_sections[elf_section_nr] = sectp;
10684 /* Look for specific sections that we need. */
10685 if (section_is_p (sectp->name, &names->str_dwo))
10687 dwp_file->sections.str.s.section = sectp;
10688 dwp_file->sections.str.size = bfd_get_section_size (sectp);
10690 else if (section_is_p (sectp->name, &names->cu_index))
10692 dwp_file->sections.cu_index.s.section = sectp;
10693 dwp_file->sections.cu_index.size = bfd_get_section_size (sectp);
10695 else if (section_is_p (sectp->name, &names->tu_index))
10697 dwp_file->sections.tu_index.s.section = sectp;
10698 dwp_file->sections.tu_index.size = bfd_get_section_size (sectp);
10702 /* This function is mapped across the sections and remembers the offset and
10703 size of each of the DWP version 2 debugging sections that we are interested
10704 in. This is split into a separate function because we don't know if we
10705 have version 1 or 2 until we parse the cu_index/tu_index sections. */
10708 dwarf2_locate_v2_dwp_sections (bfd *abfd, asection *sectp, void *dwp_file_ptr)
10710 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
10711 const struct dwop_section_names *names = &dwop_section_names;
10712 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
10714 /* Record the ELF section number for later lookup: this is what the
10715 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
10716 gdb_assert (elf_section_nr < dwp_file->num_sections);
10717 dwp_file->elf_sections[elf_section_nr] = sectp;
10719 /* Look for specific sections that we need. */
10720 if (section_is_p (sectp->name, &names->abbrev_dwo))
10722 dwp_file->sections.abbrev.s.section = sectp;
10723 dwp_file->sections.abbrev.size = bfd_get_section_size (sectp);
10725 else if (section_is_p (sectp->name, &names->info_dwo))
10727 dwp_file->sections.info.s.section = sectp;
10728 dwp_file->sections.info.size = bfd_get_section_size (sectp);
10730 else if (section_is_p (sectp->name, &names->line_dwo))
10732 dwp_file->sections.line.s.section = sectp;
10733 dwp_file->sections.line.size = bfd_get_section_size (sectp);
10735 else if (section_is_p (sectp->name, &names->loc_dwo))
10737 dwp_file->sections.loc.s.section = sectp;
10738 dwp_file->sections.loc.size = bfd_get_section_size (sectp);
10740 else if (section_is_p (sectp->name, &names->macinfo_dwo))
10742 dwp_file->sections.macinfo.s.section = sectp;
10743 dwp_file->sections.macinfo.size = bfd_get_section_size (sectp);
10745 else if (section_is_p (sectp->name, &names->macro_dwo))
10747 dwp_file->sections.macro.s.section = sectp;
10748 dwp_file->sections.macro.size = bfd_get_section_size (sectp);
10750 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
10752 dwp_file->sections.str_offsets.s.section = sectp;
10753 dwp_file->sections.str_offsets.size = bfd_get_section_size (sectp);
10755 else if (section_is_p (sectp->name, &names->types_dwo))
10757 dwp_file->sections.types.s.section = sectp;
10758 dwp_file->sections.types.size = bfd_get_section_size (sectp);
10762 /* Hash function for dwp_file loaded CUs/TUs. */
10765 hash_dwp_loaded_cutus (const void *item)
10767 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
10769 /* This drops the top 32 bits of the signature, but is ok for a hash. */
10770 return dwo_unit->signature;
10773 /* Equality function for dwp_file loaded CUs/TUs. */
10776 eq_dwp_loaded_cutus (const void *a, const void *b)
10778 const struct dwo_unit *dua = (const struct dwo_unit *) a;
10779 const struct dwo_unit *dub = (const struct dwo_unit *) b;
10781 return dua->signature == dub->signature;
10784 /* Allocate a hash table for dwp_file loaded CUs/TUs. */
10787 allocate_dwp_loaded_cutus_table (struct objfile *objfile)
10789 return htab_create_alloc_ex (3,
10790 hash_dwp_loaded_cutus,
10791 eq_dwp_loaded_cutus,
10793 &objfile->objfile_obstack,
10794 hashtab_obstack_allocate,
10795 dummy_obstack_deallocate);
10798 /* Try to open DWP file FILE_NAME.
10799 The result is the bfd handle of the file.
10800 If there is a problem finding or opening the file, return NULL.
10801 Upon success, the canonicalized path of the file is stored in the bfd,
10802 same as symfile_bfd_open. */
10805 open_dwp_file (const char *file_name)
10809 abfd = try_open_dwop_file (file_name, 1 /*is_dwp*/, 1 /*search_cwd*/);
10813 /* Work around upstream bug 15652.
10814 http://sourceware.org/bugzilla/show_bug.cgi?id=15652
10815 [Whether that's a "bug" is debatable, but it is getting in our way.]
10816 We have no real idea where the dwp file is, because gdb's realpath-ing
10817 of the executable's path may have discarded the needed info.
10818 [IWBN if the dwp file name was recorded in the executable, akin to
10819 .gnu_debuglink, but that doesn't exist yet.]
10820 Strip the directory from FILE_NAME and search again. */
10821 if (*debug_file_directory != '\0')
10823 /* Don't implicitly search the current directory here.
10824 If the user wants to search "." to handle this case,
10825 it must be added to debug-file-directory. */
10826 return try_open_dwop_file (lbasename (file_name), 1 /*is_dwp*/,
10833 /* Initialize the use of the DWP file for the current objfile.
10834 By convention the name of the DWP file is ${objfile}.dwp.
10835 The result is NULL if it can't be found. */
10837 static struct dwp_file *
10838 open_and_init_dwp_file (void)
10840 struct objfile *objfile = dwarf2_per_objfile->objfile;
10841 struct dwp_file *dwp_file;
10844 struct cleanup *cleanups = make_cleanup (null_cleanup, 0);
10846 /* Try to find first .dwp for the binary file before any symbolic links
10849 /* If the objfile is a debug file, find the name of the real binary
10850 file and get the name of dwp file from there. */
10851 if (objfile->separate_debug_objfile_backlink != NULL)
10853 struct objfile *backlink = objfile->separate_debug_objfile_backlink;
10854 const char *backlink_basename = lbasename (backlink->original_name);
10855 char *debug_dirname = ldirname (objfile->original_name);
10857 make_cleanup (xfree, debug_dirname);
10858 dwp_name = xstrprintf ("%s%s%s.dwp", debug_dirname,
10859 SLASH_STRING, backlink_basename);
10862 dwp_name = xstrprintf ("%s.dwp", objfile->original_name);
10863 make_cleanup (xfree, dwp_name);
10865 dbfd = open_dwp_file (dwp_name);
10867 && strcmp (objfile->original_name, objfile_name (objfile)) != 0)
10869 /* Try to find .dwp for the binary file after gdb_realpath resolving. */
10870 dwp_name = xstrprintf ("%s.dwp", objfile_name (objfile));
10871 make_cleanup (xfree, dwp_name);
10872 dbfd = open_dwp_file (dwp_name);
10877 if (dwarf_read_debug)
10878 fprintf_unfiltered (gdb_stdlog, "DWP file not found: %s\n", dwp_name);
10879 do_cleanups (cleanups);
10882 dwp_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_file);
10883 dwp_file->name = bfd_get_filename (dbfd);
10884 dwp_file->dbfd = dbfd;
10885 do_cleanups (cleanups);
10887 /* +1: section 0 is unused */
10888 dwp_file->num_sections = bfd_count_sections (dbfd) + 1;
10889 dwp_file->elf_sections =
10890 OBSTACK_CALLOC (&objfile->objfile_obstack,
10891 dwp_file->num_sections, asection *);
10893 bfd_map_over_sections (dbfd, dwarf2_locate_common_dwp_sections, dwp_file);
10895 dwp_file->cus = create_dwp_hash_table (dwp_file, 0);
10897 dwp_file->tus = create_dwp_hash_table (dwp_file, 1);
10899 /* The DWP file version is stored in the hash table. Oh well. */
10900 if (dwp_file->cus->version != dwp_file->tus->version)
10902 /* Technically speaking, we should try to limp along, but this is
10903 pretty bizarre. We use pulongest here because that's the established
10904 portability solution (e.g, we cannot use %u for uint32_t). */
10905 error (_("Dwarf Error: DWP file CU version %s doesn't match"
10906 " TU version %s [in DWP file %s]"),
10907 pulongest (dwp_file->cus->version),
10908 pulongest (dwp_file->tus->version), dwp_name);
10910 dwp_file->version = dwp_file->cus->version;
10912 if (dwp_file->version == 2)
10913 bfd_map_over_sections (dbfd, dwarf2_locate_v2_dwp_sections, dwp_file);
10915 dwp_file->loaded_cus = allocate_dwp_loaded_cutus_table (objfile);
10916 dwp_file->loaded_tus = allocate_dwp_loaded_cutus_table (objfile);
10918 if (dwarf_read_debug)
10920 fprintf_unfiltered (gdb_stdlog, "DWP file found: %s\n", dwp_file->name);
10921 fprintf_unfiltered (gdb_stdlog,
10922 " %s CUs, %s TUs\n",
10923 pulongest (dwp_file->cus ? dwp_file->cus->nr_units : 0),
10924 pulongest (dwp_file->tus ? dwp_file->tus->nr_units : 0));
10930 /* Wrapper around open_and_init_dwp_file, only open it once. */
10932 static struct dwp_file *
10933 get_dwp_file (void)
10935 if (! dwarf2_per_objfile->dwp_checked)
10937 dwarf2_per_objfile->dwp_file = open_and_init_dwp_file ();
10938 dwarf2_per_objfile->dwp_checked = 1;
10940 return dwarf2_per_objfile->dwp_file;
10943 /* Subroutine of lookup_dwo_comp_unit, lookup_dwo_type_unit.
10944 Look up the CU/TU with signature SIGNATURE, either in DWO file DWO_NAME
10945 or in the DWP file for the objfile, referenced by THIS_UNIT.
10946 If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
10947 IS_DEBUG_TYPES is non-zero if reading a TU, otherwise read a CU.
10949 This is called, for example, when wanting to read a variable with a
10950 complex location. Therefore we don't want to do file i/o for every call.
10951 Therefore we don't want to look for a DWO file on every call.
10952 Therefore we first see if we've already seen SIGNATURE in a DWP file,
10953 then we check if we've already seen DWO_NAME, and only THEN do we check
10956 The result is a pointer to the dwo_unit object or NULL if we didn't find it
10957 (dwo_id mismatch or couldn't find the DWO/DWP file). */
10959 static struct dwo_unit *
10960 lookup_dwo_cutu (struct dwarf2_per_cu_data *this_unit,
10961 const char *dwo_name, const char *comp_dir,
10962 ULONGEST signature, int is_debug_types)
10964 struct objfile *objfile = dwarf2_per_objfile->objfile;
10965 const char *kind = is_debug_types ? "TU" : "CU";
10966 void **dwo_file_slot;
10967 struct dwo_file *dwo_file;
10968 struct dwp_file *dwp_file;
10970 /* First see if there's a DWP file.
10971 If we have a DWP file but didn't find the DWO inside it, don't
10972 look for the original DWO file. It makes gdb behave differently
10973 depending on whether one is debugging in the build tree. */
10975 dwp_file = get_dwp_file ();
10976 if (dwp_file != NULL)
10978 const struct dwp_hash_table *dwp_htab =
10979 is_debug_types ? dwp_file->tus : dwp_file->cus;
10981 if (dwp_htab != NULL)
10983 struct dwo_unit *dwo_cutu =
10984 lookup_dwo_unit_in_dwp (dwp_file, comp_dir,
10985 signature, is_debug_types);
10987 if (dwo_cutu != NULL)
10989 if (dwarf_read_debug)
10991 fprintf_unfiltered (gdb_stdlog,
10992 "Virtual DWO %s %s found: @%s\n",
10993 kind, hex_string (signature),
10994 host_address_to_string (dwo_cutu));
11002 /* No DWP file, look for the DWO file. */
11004 dwo_file_slot = lookup_dwo_file_slot (dwo_name, comp_dir);
11005 if (*dwo_file_slot == NULL)
11007 /* Read in the file and build a table of the CUs/TUs it contains. */
11008 *dwo_file_slot = open_and_init_dwo_file (this_unit, dwo_name, comp_dir);
11010 /* NOTE: This will be NULL if unable to open the file. */
11011 dwo_file = (struct dwo_file *) *dwo_file_slot;
11013 if (dwo_file != NULL)
11015 struct dwo_unit *dwo_cutu = NULL;
11017 if (is_debug_types && dwo_file->tus)
11019 struct dwo_unit find_dwo_cutu;
11021 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
11022 find_dwo_cutu.signature = signature;
11024 = (struct dwo_unit *) htab_find (dwo_file->tus, &find_dwo_cutu);
11026 else if (!is_debug_types && dwo_file->cu)
11028 if (signature == dwo_file->cu->signature)
11029 dwo_cutu = dwo_file->cu;
11032 if (dwo_cutu != NULL)
11034 if (dwarf_read_debug)
11036 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) found: @%s\n",
11037 kind, dwo_name, hex_string (signature),
11038 host_address_to_string (dwo_cutu));
11045 /* We didn't find it. This could mean a dwo_id mismatch, or
11046 someone deleted the DWO/DWP file, or the search path isn't set up
11047 correctly to find the file. */
11049 if (dwarf_read_debug)
11051 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) not found\n",
11052 kind, dwo_name, hex_string (signature));
11055 /* This is a warning and not a complaint because it can be caused by
11056 pilot error (e.g., user accidentally deleting the DWO). */
11058 /* Print the name of the DWP file if we looked there, helps the user
11059 better diagnose the problem. */
11060 char *dwp_text = NULL;
11061 struct cleanup *cleanups;
11063 if (dwp_file != NULL)
11064 dwp_text = xstrprintf (" [in DWP file %s]", lbasename (dwp_file->name));
11065 cleanups = make_cleanup (xfree, dwp_text);
11067 warning (_("Could not find DWO %s %s(%s)%s referenced by %s at offset 0x%x"
11068 " [in module %s]"),
11069 kind, dwo_name, hex_string (signature),
11070 dwp_text != NULL ? dwp_text : "",
11071 this_unit->is_debug_types ? "TU" : "CU",
11072 this_unit->offset.sect_off, objfile_name (objfile));
11074 do_cleanups (cleanups);
11079 /* Lookup the DWO CU DWO_NAME/SIGNATURE referenced from THIS_CU.
11080 See lookup_dwo_cutu_unit for details. */
11082 static struct dwo_unit *
11083 lookup_dwo_comp_unit (struct dwarf2_per_cu_data *this_cu,
11084 const char *dwo_name, const char *comp_dir,
11085 ULONGEST signature)
11087 return lookup_dwo_cutu (this_cu, dwo_name, comp_dir, signature, 0);
11090 /* Lookup the DWO TU DWO_NAME/SIGNATURE referenced from THIS_TU.
11091 See lookup_dwo_cutu_unit for details. */
11093 static struct dwo_unit *
11094 lookup_dwo_type_unit (struct signatured_type *this_tu,
11095 const char *dwo_name, const char *comp_dir)
11097 return lookup_dwo_cutu (&this_tu->per_cu, dwo_name, comp_dir, this_tu->signature, 1);
11100 /* Traversal function for queue_and_load_all_dwo_tus. */
11103 queue_and_load_dwo_tu (void **slot, void *info)
11105 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
11106 struct dwarf2_per_cu_data *per_cu = (struct dwarf2_per_cu_data *) info;
11107 ULONGEST signature = dwo_unit->signature;
11108 struct signatured_type *sig_type =
11109 lookup_dwo_signatured_type (per_cu->cu, signature);
11111 if (sig_type != NULL)
11113 struct dwarf2_per_cu_data *sig_cu = &sig_type->per_cu;
11115 /* We pass NULL for DEPENDENT_CU because we don't yet know if there's
11116 a real dependency of PER_CU on SIG_TYPE. That is detected later
11117 while processing PER_CU. */
11118 if (maybe_queue_comp_unit (NULL, sig_cu, per_cu->cu->language))
11119 load_full_type_unit (sig_cu);
11120 VEC_safe_push (dwarf2_per_cu_ptr, per_cu->imported_symtabs, sig_cu);
11126 /* Queue all TUs contained in the DWO of PER_CU to be read in.
11127 The DWO may have the only definition of the type, though it may not be
11128 referenced anywhere in PER_CU. Thus we have to load *all* its TUs.
11129 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
11132 queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *per_cu)
11134 struct dwo_unit *dwo_unit;
11135 struct dwo_file *dwo_file;
11137 gdb_assert (!per_cu->is_debug_types);
11138 gdb_assert (get_dwp_file () == NULL);
11139 gdb_assert (per_cu->cu != NULL);
11141 dwo_unit = per_cu->cu->dwo_unit;
11142 gdb_assert (dwo_unit != NULL);
11144 dwo_file = dwo_unit->dwo_file;
11145 if (dwo_file->tus != NULL)
11146 htab_traverse_noresize (dwo_file->tus, queue_and_load_dwo_tu, per_cu);
11149 /* Free all resources associated with DWO_FILE.
11150 Close the DWO file and munmap the sections.
11151 All memory should be on the objfile obstack. */
11154 free_dwo_file (struct dwo_file *dwo_file, struct objfile *objfile)
11157 /* Note: dbfd is NULL for virtual DWO files. */
11158 gdb_bfd_unref (dwo_file->dbfd);
11160 VEC_free (dwarf2_section_info_def, dwo_file->sections.types);
11163 /* Wrapper for free_dwo_file for use in cleanups. */
11166 free_dwo_file_cleanup (void *arg)
11168 struct dwo_file *dwo_file = (struct dwo_file *) arg;
11169 struct objfile *objfile = dwarf2_per_objfile->objfile;
11171 free_dwo_file (dwo_file, objfile);
11174 /* Traversal function for free_dwo_files. */
11177 free_dwo_file_from_slot (void **slot, void *info)
11179 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
11180 struct objfile *objfile = (struct objfile *) info;
11182 free_dwo_file (dwo_file, objfile);
11187 /* Free all resources associated with DWO_FILES. */
11190 free_dwo_files (htab_t dwo_files, struct objfile *objfile)
11192 htab_traverse_noresize (dwo_files, free_dwo_file_from_slot, objfile);
11195 /* Read in various DIEs. */
11197 /* qsort helper for inherit_abstract_dies. */
11200 unsigned_int_compar (const void *ap, const void *bp)
11202 unsigned int a = *(unsigned int *) ap;
11203 unsigned int b = *(unsigned int *) bp;
11205 return (a > b) - (b > a);
11208 /* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
11209 Inherit only the children of the DW_AT_abstract_origin DIE not being
11210 already referenced by DW_AT_abstract_origin from the children of the
11214 inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
11216 struct die_info *child_die;
11217 unsigned die_children_count;
11218 /* CU offsets which were referenced by children of the current DIE. */
11219 sect_offset *offsets;
11220 sect_offset *offsets_end, *offsetp;
11221 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
11222 struct die_info *origin_die;
11223 /* Iterator of the ORIGIN_DIE children. */
11224 struct die_info *origin_child_die;
11225 struct cleanup *cleanups;
11226 struct attribute *attr;
11227 struct dwarf2_cu *origin_cu;
11228 struct pending **origin_previous_list_in_scope;
11230 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
11234 /* Note that following die references may follow to a die in a
11238 origin_die = follow_die_ref (die, attr, &origin_cu);
11240 /* We're inheriting ORIGIN's children into the scope we'd put DIE's
11242 origin_previous_list_in_scope = origin_cu->list_in_scope;
11243 origin_cu->list_in_scope = cu->list_in_scope;
11245 if (die->tag != origin_die->tag
11246 && !(die->tag == DW_TAG_inlined_subroutine
11247 && origin_die->tag == DW_TAG_subprogram))
11248 complaint (&symfile_complaints,
11249 _("DIE 0x%x and its abstract origin 0x%x have different tags"),
11250 die->offset.sect_off, origin_die->offset.sect_off);
11252 child_die = die->child;
11253 die_children_count = 0;
11254 while (child_die && child_die->tag)
11256 child_die = sibling_die (child_die);
11257 die_children_count++;
11259 offsets = XNEWVEC (sect_offset, die_children_count);
11260 cleanups = make_cleanup (xfree, offsets);
11262 offsets_end = offsets;
11263 for (child_die = die->child;
11264 child_die && child_die->tag;
11265 child_die = sibling_die (child_die))
11267 struct die_info *child_origin_die;
11268 struct dwarf2_cu *child_origin_cu;
11270 /* We are trying to process concrete instance entries:
11271 DW_TAG_GNU_call_site DIEs indeed have a DW_AT_abstract_origin tag, but
11272 it's not relevant to our analysis here. i.e. detecting DIEs that are
11273 present in the abstract instance but not referenced in the concrete
11275 if (child_die->tag == DW_TAG_GNU_call_site)
11278 /* For each CHILD_DIE, find the corresponding child of
11279 ORIGIN_DIE. If there is more than one layer of
11280 DW_AT_abstract_origin, follow them all; there shouldn't be,
11281 but GCC versions at least through 4.4 generate this (GCC PR
11283 child_origin_die = child_die;
11284 child_origin_cu = cu;
11287 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
11291 child_origin_die = follow_die_ref (child_origin_die, attr,
11295 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
11296 counterpart may exist. */
11297 if (child_origin_die != child_die)
11299 if (child_die->tag != child_origin_die->tag
11300 && !(child_die->tag == DW_TAG_inlined_subroutine
11301 && child_origin_die->tag == DW_TAG_subprogram))
11302 complaint (&symfile_complaints,
11303 _("Child DIE 0x%x and its abstract origin 0x%x have "
11304 "different tags"), child_die->offset.sect_off,
11305 child_origin_die->offset.sect_off);
11306 if (child_origin_die->parent != origin_die)
11307 complaint (&symfile_complaints,
11308 _("Child DIE 0x%x and its abstract origin 0x%x have "
11309 "different parents"), child_die->offset.sect_off,
11310 child_origin_die->offset.sect_off);
11312 *offsets_end++ = child_origin_die->offset;
11315 qsort (offsets, offsets_end - offsets, sizeof (*offsets),
11316 unsigned_int_compar);
11317 for (offsetp = offsets + 1; offsetp < offsets_end; offsetp++)
11318 if (offsetp[-1].sect_off == offsetp->sect_off)
11319 complaint (&symfile_complaints,
11320 _("Multiple children of DIE 0x%x refer "
11321 "to DIE 0x%x as their abstract origin"),
11322 die->offset.sect_off, offsetp->sect_off);
11325 origin_child_die = origin_die->child;
11326 while (origin_child_die && origin_child_die->tag)
11328 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
11329 while (offsetp < offsets_end
11330 && offsetp->sect_off < origin_child_die->offset.sect_off)
11332 if (offsetp >= offsets_end
11333 || offsetp->sect_off > origin_child_die->offset.sect_off)
11335 /* Found that ORIGIN_CHILD_DIE is really not referenced.
11336 Check whether we're already processing ORIGIN_CHILD_DIE.
11337 This can happen with mutually referenced abstract_origins.
11339 if (!origin_child_die->in_process)
11340 process_die (origin_child_die, origin_cu);
11342 origin_child_die = sibling_die (origin_child_die);
11344 origin_cu->list_in_scope = origin_previous_list_in_scope;
11346 do_cleanups (cleanups);
11350 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
11352 struct objfile *objfile = cu->objfile;
11353 struct gdbarch *gdbarch = get_objfile_arch (objfile);
11354 struct context_stack *newobj;
11357 struct die_info *child_die;
11358 struct attribute *attr, *call_line, *call_file;
11360 CORE_ADDR baseaddr;
11361 struct block *block;
11362 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
11363 VEC (symbolp) *template_args = NULL;
11364 struct template_symbol *templ_func = NULL;
11368 /* If we do not have call site information, we can't show the
11369 caller of this inlined function. That's too confusing, so
11370 only use the scope for local variables. */
11371 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
11372 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
11373 if (call_line == NULL || call_file == NULL)
11375 read_lexical_block_scope (die, cu);
11380 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
11382 name = dwarf2_name (die, cu);
11384 /* Ignore functions with missing or empty names. These are actually
11385 illegal according to the DWARF standard. */
11388 complaint (&symfile_complaints,
11389 _("missing name for subprogram DIE at %d"),
11390 die->offset.sect_off);
11394 /* Ignore functions with missing or invalid low and high pc attributes. */
11395 if (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL)
11396 <= PC_BOUNDS_INVALID)
11398 attr = dwarf2_attr (die, DW_AT_external, cu);
11399 if (!attr || !DW_UNSND (attr))
11400 complaint (&symfile_complaints,
11401 _("cannot get low and high bounds "
11402 "for subprogram DIE at %d"),
11403 die->offset.sect_off);
11407 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
11408 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
11410 /* If we have any template arguments, then we must allocate a
11411 different sort of symbol. */
11412 for (child_die = die->child; child_die; child_die = sibling_die (child_die))
11414 if (child_die->tag == DW_TAG_template_type_param
11415 || child_die->tag == DW_TAG_template_value_param)
11417 templ_func = allocate_template_symbol (objfile);
11418 templ_func->base.is_cplus_template_function = 1;
11423 newobj = push_context (0, lowpc);
11424 newobj->name = new_symbol_full (die, read_type_die (die, cu), cu,
11425 (struct symbol *) templ_func);
11427 /* If there is a location expression for DW_AT_frame_base, record
11429 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
11431 dwarf2_symbol_mark_computed (attr, newobj->name, cu, 1);
11433 /* If there is a location for the static link, record it. */
11434 newobj->static_link = NULL;
11435 attr = dwarf2_attr (die, DW_AT_static_link, cu);
11438 newobj->static_link
11439 = XOBNEW (&objfile->objfile_obstack, struct dynamic_prop);
11440 attr_to_dynamic_prop (attr, die, cu, newobj->static_link);
11443 cu->list_in_scope = &local_symbols;
11445 if (die->child != NULL)
11447 child_die = die->child;
11448 while (child_die && child_die->tag)
11450 if (child_die->tag == DW_TAG_template_type_param
11451 || child_die->tag == DW_TAG_template_value_param)
11453 struct symbol *arg = new_symbol (child_die, NULL, cu);
11456 VEC_safe_push (symbolp, template_args, arg);
11459 process_die (child_die, cu);
11460 child_die = sibling_die (child_die);
11464 inherit_abstract_dies (die, cu);
11466 /* If we have a DW_AT_specification, we might need to import using
11467 directives from the context of the specification DIE. See the
11468 comment in determine_prefix. */
11469 if (cu->language == language_cplus
11470 && dwarf2_attr (die, DW_AT_specification, cu))
11472 struct dwarf2_cu *spec_cu = cu;
11473 struct die_info *spec_die = die_specification (die, &spec_cu);
11477 child_die = spec_die->child;
11478 while (child_die && child_die->tag)
11480 if (child_die->tag == DW_TAG_imported_module)
11481 process_die (child_die, spec_cu);
11482 child_die = sibling_die (child_die);
11485 /* In some cases, GCC generates specification DIEs that
11486 themselves contain DW_AT_specification attributes. */
11487 spec_die = die_specification (spec_die, &spec_cu);
11491 newobj = pop_context ();
11492 /* Make a block for the local symbols within. */
11493 block = finish_block (newobj->name, &local_symbols, newobj->old_blocks,
11494 newobj->static_link, lowpc, highpc);
11496 /* For C++, set the block's scope. */
11497 if ((cu->language == language_cplus
11498 || cu->language == language_fortran
11499 || cu->language == language_d
11500 || cu->language == language_rust)
11501 && cu->processing_has_namespace_info)
11502 block_set_scope (block, determine_prefix (die, cu),
11503 &objfile->objfile_obstack);
11505 /* If we have address ranges, record them. */
11506 dwarf2_record_block_ranges (die, block, baseaddr, cu);
11508 gdbarch_make_symbol_special (gdbarch, newobj->name, objfile);
11510 /* Attach template arguments to function. */
11511 if (! VEC_empty (symbolp, template_args))
11513 gdb_assert (templ_func != NULL);
11515 templ_func->n_template_arguments = VEC_length (symbolp, template_args);
11516 templ_func->template_arguments
11517 = XOBNEWVEC (&objfile->objfile_obstack, struct symbol *,
11518 templ_func->n_template_arguments);
11519 memcpy (templ_func->template_arguments,
11520 VEC_address (symbolp, template_args),
11521 (templ_func->n_template_arguments * sizeof (struct symbol *)));
11522 VEC_free (symbolp, template_args);
11525 /* In C++, we can have functions nested inside functions (e.g., when
11526 a function declares a class that has methods). This means that
11527 when we finish processing a function scope, we may need to go
11528 back to building a containing block's symbol lists. */
11529 local_symbols = newobj->locals;
11530 local_using_directives = newobj->local_using_directives;
11532 /* If we've finished processing a top-level function, subsequent
11533 symbols go in the file symbol list. */
11534 if (outermost_context_p ())
11535 cu->list_in_scope = &file_symbols;
11538 /* Process all the DIES contained within a lexical block scope. Start
11539 a new scope, process the dies, and then close the scope. */
11542 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
11544 struct objfile *objfile = cu->objfile;
11545 struct gdbarch *gdbarch = get_objfile_arch (objfile);
11546 struct context_stack *newobj;
11547 CORE_ADDR lowpc, highpc;
11548 struct die_info *child_die;
11549 CORE_ADDR baseaddr;
11551 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
11553 /* Ignore blocks with missing or invalid low and high pc attributes. */
11554 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
11555 as multiple lexical blocks? Handling children in a sane way would
11556 be nasty. Might be easier to properly extend generic blocks to
11557 describe ranges. */
11558 switch (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
11560 case PC_BOUNDS_NOT_PRESENT:
11561 /* DW_TAG_lexical_block has no attributes, process its children as if
11562 there was no wrapping by that DW_TAG_lexical_block.
11563 GCC does no longer produces such DWARF since GCC r224161. */
11564 for (child_die = die->child;
11565 child_die != NULL && child_die->tag;
11566 child_die = sibling_die (child_die))
11567 process_die (child_die, cu);
11569 case PC_BOUNDS_INVALID:
11572 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
11573 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
11575 push_context (0, lowpc);
11576 if (die->child != NULL)
11578 child_die = die->child;
11579 while (child_die && child_die->tag)
11581 process_die (child_die, cu);
11582 child_die = sibling_die (child_die);
11585 inherit_abstract_dies (die, cu);
11586 newobj = pop_context ();
11588 if (local_symbols != NULL || local_using_directives != NULL)
11590 struct block *block
11591 = finish_block (0, &local_symbols, newobj->old_blocks, NULL,
11592 newobj->start_addr, highpc);
11594 /* Note that recording ranges after traversing children, as we
11595 do here, means that recording a parent's ranges entails
11596 walking across all its children's ranges as they appear in
11597 the address map, which is quadratic behavior.
11599 It would be nicer to record the parent's ranges before
11600 traversing its children, simply overriding whatever you find
11601 there. But since we don't even decide whether to create a
11602 block until after we've traversed its children, that's hard
11604 dwarf2_record_block_ranges (die, block, baseaddr, cu);
11606 local_symbols = newobj->locals;
11607 local_using_directives = newobj->local_using_directives;
11610 /* Read in DW_TAG_GNU_call_site and insert it to CU->call_site_htab. */
11613 read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu)
11615 struct objfile *objfile = cu->objfile;
11616 struct gdbarch *gdbarch = get_objfile_arch (objfile);
11617 CORE_ADDR pc, baseaddr;
11618 struct attribute *attr;
11619 struct call_site *call_site, call_site_local;
11622 struct die_info *child_die;
11624 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
11626 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
11629 complaint (&symfile_complaints,
11630 _("missing DW_AT_low_pc for DW_TAG_GNU_call_site "
11631 "DIE 0x%x [in module %s]"),
11632 die->offset.sect_off, objfile_name (objfile));
11635 pc = attr_value_as_address (attr) + baseaddr;
11636 pc = gdbarch_adjust_dwarf2_addr (gdbarch, pc);
11638 if (cu->call_site_htab == NULL)
11639 cu->call_site_htab = htab_create_alloc_ex (16, core_addr_hash, core_addr_eq,
11640 NULL, &objfile->objfile_obstack,
11641 hashtab_obstack_allocate, NULL);
11642 call_site_local.pc = pc;
11643 slot = htab_find_slot (cu->call_site_htab, &call_site_local, INSERT);
11646 complaint (&symfile_complaints,
11647 _("Duplicate PC %s for DW_TAG_GNU_call_site "
11648 "DIE 0x%x [in module %s]"),
11649 paddress (gdbarch, pc), die->offset.sect_off,
11650 objfile_name (objfile));
11654 /* Count parameters at the caller. */
11657 for (child_die = die->child; child_die && child_die->tag;
11658 child_die = sibling_die (child_die))
11660 if (child_die->tag != DW_TAG_GNU_call_site_parameter)
11662 complaint (&symfile_complaints,
11663 _("Tag %d is not DW_TAG_GNU_call_site_parameter in "
11664 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
11665 child_die->tag, child_die->offset.sect_off,
11666 objfile_name (objfile));
11674 = ((struct call_site *)
11675 obstack_alloc (&objfile->objfile_obstack,
11676 sizeof (*call_site)
11677 + (sizeof (*call_site->parameter) * (nparams - 1))));
11679 memset (call_site, 0, sizeof (*call_site) - sizeof (*call_site->parameter));
11680 call_site->pc = pc;
11682 if (dwarf2_flag_true_p (die, DW_AT_GNU_tail_call, cu))
11684 struct die_info *func_die;
11686 /* Skip also over DW_TAG_inlined_subroutine. */
11687 for (func_die = die->parent;
11688 func_die && func_die->tag != DW_TAG_subprogram
11689 && func_die->tag != DW_TAG_subroutine_type;
11690 func_die = func_die->parent);
11692 /* DW_AT_GNU_all_call_sites is a superset
11693 of DW_AT_GNU_all_tail_call_sites. */
11695 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_call_sites, cu)
11696 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_tail_call_sites, cu))
11698 /* TYPE_TAIL_CALL_LIST is not interesting in functions where it is
11699 not complete. But keep CALL_SITE for look ups via call_site_htab,
11700 both the initial caller containing the real return address PC and
11701 the final callee containing the current PC of a chain of tail
11702 calls do not need to have the tail call list complete. But any
11703 function candidate for a virtual tail call frame searched via
11704 TYPE_TAIL_CALL_LIST must have the tail call list complete to be
11705 determined unambiguously. */
11709 struct type *func_type = NULL;
11712 func_type = get_die_type (func_die, cu);
11713 if (func_type != NULL)
11715 gdb_assert (TYPE_CODE (func_type) == TYPE_CODE_FUNC);
11717 /* Enlist this call site to the function. */
11718 call_site->tail_call_next = TYPE_TAIL_CALL_LIST (func_type);
11719 TYPE_TAIL_CALL_LIST (func_type) = call_site;
11722 complaint (&symfile_complaints,
11723 _("Cannot find function owning DW_TAG_GNU_call_site "
11724 "DIE 0x%x [in module %s]"),
11725 die->offset.sect_off, objfile_name (objfile));
11729 attr = dwarf2_attr (die, DW_AT_GNU_call_site_target, cu);
11731 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
11732 SET_FIELD_DWARF_BLOCK (call_site->target, NULL);
11733 if (!attr || (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0))
11734 /* Keep NULL DWARF_BLOCK. */;
11735 else if (attr_form_is_block (attr))
11737 struct dwarf2_locexpr_baton *dlbaton;
11739 dlbaton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
11740 dlbaton->data = DW_BLOCK (attr)->data;
11741 dlbaton->size = DW_BLOCK (attr)->size;
11742 dlbaton->per_cu = cu->per_cu;
11744 SET_FIELD_DWARF_BLOCK (call_site->target, dlbaton);
11746 else if (attr_form_is_ref (attr))
11748 struct dwarf2_cu *target_cu = cu;
11749 struct die_info *target_die;
11751 target_die = follow_die_ref (die, attr, &target_cu);
11752 gdb_assert (target_cu->objfile == objfile);
11753 if (die_is_declaration (target_die, target_cu))
11755 const char *target_physname;
11757 /* Prefer the mangled name; otherwise compute the demangled one. */
11758 target_physname = dwarf2_string_attr (target_die,
11759 DW_AT_linkage_name,
11761 if (target_physname == NULL)
11762 target_physname = dwarf2_string_attr (target_die,
11763 DW_AT_MIPS_linkage_name,
11765 if (target_physname == NULL)
11766 target_physname = dwarf2_physname (NULL, target_die, target_cu);
11767 if (target_physname == NULL)
11768 complaint (&symfile_complaints,
11769 _("DW_AT_GNU_call_site_target target DIE has invalid "
11770 "physname, for referencing DIE 0x%x [in module %s]"),
11771 die->offset.sect_off, objfile_name (objfile));
11773 SET_FIELD_PHYSNAME (call_site->target, target_physname);
11779 /* DW_AT_entry_pc should be preferred. */
11780 if (dwarf2_get_pc_bounds (target_die, &lowpc, NULL, target_cu, NULL)
11781 <= PC_BOUNDS_INVALID)
11782 complaint (&symfile_complaints,
11783 _("DW_AT_GNU_call_site_target target DIE has invalid "
11784 "low pc, for referencing DIE 0x%x [in module %s]"),
11785 die->offset.sect_off, objfile_name (objfile));
11788 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
11789 SET_FIELD_PHYSADDR (call_site->target, lowpc);
11794 complaint (&symfile_complaints,
11795 _("DW_TAG_GNU_call_site DW_AT_GNU_call_site_target is neither "
11796 "block nor reference, for DIE 0x%x [in module %s]"),
11797 die->offset.sect_off, objfile_name (objfile));
11799 call_site->per_cu = cu->per_cu;
11801 for (child_die = die->child;
11802 child_die && child_die->tag;
11803 child_die = sibling_die (child_die))
11805 struct call_site_parameter *parameter;
11806 struct attribute *loc, *origin;
11808 if (child_die->tag != DW_TAG_GNU_call_site_parameter)
11810 /* Already printed the complaint above. */
11814 gdb_assert (call_site->parameter_count < nparams);
11815 parameter = &call_site->parameter[call_site->parameter_count];
11817 /* DW_AT_location specifies the register number or DW_AT_abstract_origin
11818 specifies DW_TAG_formal_parameter. Value of the data assumed for the
11819 register is contained in DW_AT_GNU_call_site_value. */
11821 loc = dwarf2_attr (child_die, DW_AT_location, cu);
11822 origin = dwarf2_attr (child_die, DW_AT_abstract_origin, cu);
11823 if (loc == NULL && origin != NULL && attr_form_is_ref (origin))
11825 sect_offset offset;
11827 parameter->kind = CALL_SITE_PARAMETER_PARAM_OFFSET;
11828 offset = dwarf2_get_ref_die_offset (origin);
11829 if (!offset_in_cu_p (&cu->header, offset))
11831 /* As DW_OP_GNU_parameter_ref uses CU-relative offset this
11832 binding can be done only inside one CU. Such referenced DIE
11833 therefore cannot be even moved to DW_TAG_partial_unit. */
11834 complaint (&symfile_complaints,
11835 _("DW_AT_abstract_origin offset is not in CU for "
11836 "DW_TAG_GNU_call_site child DIE 0x%x "
11838 child_die->offset.sect_off, objfile_name (objfile));
11841 parameter->u.param_offset.cu_off = (offset.sect_off
11842 - cu->header.offset.sect_off);
11844 else if (loc == NULL || origin != NULL || !attr_form_is_block (loc))
11846 complaint (&symfile_complaints,
11847 _("No DW_FORM_block* DW_AT_location for "
11848 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
11849 child_die->offset.sect_off, objfile_name (objfile));
11854 parameter->u.dwarf_reg = dwarf_block_to_dwarf_reg
11855 (DW_BLOCK (loc)->data, &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size]);
11856 if (parameter->u.dwarf_reg != -1)
11857 parameter->kind = CALL_SITE_PARAMETER_DWARF_REG;
11858 else if (dwarf_block_to_sp_offset (gdbarch, DW_BLOCK (loc)->data,
11859 &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size],
11860 ¶meter->u.fb_offset))
11861 parameter->kind = CALL_SITE_PARAMETER_FB_OFFSET;
11864 complaint (&symfile_complaints,
11865 _("Only single DW_OP_reg or DW_OP_fbreg is supported "
11866 "for DW_FORM_block* DW_AT_location is supported for "
11867 "DW_TAG_GNU_call_site child DIE 0x%x "
11869 child_die->offset.sect_off, objfile_name (objfile));
11874 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_value, cu);
11875 if (!attr_form_is_block (attr))
11877 complaint (&symfile_complaints,
11878 _("No DW_FORM_block* DW_AT_GNU_call_site_value for "
11879 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
11880 child_die->offset.sect_off, objfile_name (objfile));
11883 parameter->value = DW_BLOCK (attr)->data;
11884 parameter->value_size = DW_BLOCK (attr)->size;
11886 /* Parameters are not pre-cleared by memset above. */
11887 parameter->data_value = NULL;
11888 parameter->data_value_size = 0;
11889 call_site->parameter_count++;
11891 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_data_value, cu);
11894 if (!attr_form_is_block (attr))
11895 complaint (&symfile_complaints,
11896 _("No DW_FORM_block* DW_AT_GNU_call_site_data_value for "
11897 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
11898 child_die->offset.sect_off, objfile_name (objfile));
11901 parameter->data_value = DW_BLOCK (attr)->data;
11902 parameter->data_value_size = DW_BLOCK (attr)->size;
11908 /* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
11909 Return 1 if the attributes are present and valid, otherwise, return 0.
11910 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
11913 dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
11914 CORE_ADDR *high_return, struct dwarf2_cu *cu,
11915 struct partial_symtab *ranges_pst)
11917 struct objfile *objfile = cu->objfile;
11918 struct gdbarch *gdbarch = get_objfile_arch (objfile);
11919 struct comp_unit_head *cu_header = &cu->header;
11920 bfd *obfd = objfile->obfd;
11921 unsigned int addr_size = cu_header->addr_size;
11922 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
11923 /* Base address selection entry. */
11926 unsigned int dummy;
11927 const gdb_byte *buffer;
11930 CORE_ADDR high = 0;
11931 CORE_ADDR baseaddr;
11933 found_base = cu->base_known;
11934 base = cu->base_address;
11936 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
11937 if (offset >= dwarf2_per_objfile->ranges.size)
11939 complaint (&symfile_complaints,
11940 _("Offset %d out of bounds for DW_AT_ranges attribute"),
11944 buffer = dwarf2_per_objfile->ranges.buffer + offset;
11948 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
11952 CORE_ADDR range_beginning, range_end;
11954 range_beginning = read_address (obfd, buffer, cu, &dummy);
11955 buffer += addr_size;
11956 range_end = read_address (obfd, buffer, cu, &dummy);
11957 buffer += addr_size;
11958 offset += 2 * addr_size;
11960 /* An end of list marker is a pair of zero addresses. */
11961 if (range_beginning == 0 && range_end == 0)
11962 /* Found the end of list entry. */
11965 /* Each base address selection entry is a pair of 2 values.
11966 The first is the largest possible address, the second is
11967 the base address. Check for a base address here. */
11968 if ((range_beginning & mask) == mask)
11970 /* If we found the largest possible address, then we already
11971 have the base address in range_end. */
11979 /* We have no valid base address for the ranges
11981 complaint (&symfile_complaints,
11982 _("Invalid .debug_ranges data (no base address)"));
11986 if (range_beginning > range_end)
11988 /* Inverted range entries are invalid. */
11989 complaint (&symfile_complaints,
11990 _("Invalid .debug_ranges data (inverted range)"));
11994 /* Empty range entries have no effect. */
11995 if (range_beginning == range_end)
11998 range_beginning += base;
12001 /* A not-uncommon case of bad debug info.
12002 Don't pollute the addrmap with bad data. */
12003 if (range_beginning + baseaddr == 0
12004 && !dwarf2_per_objfile->has_section_at_zero)
12006 complaint (&symfile_complaints,
12007 _(".debug_ranges entry has start address of zero"
12008 " [in module %s]"), objfile_name (objfile));
12012 if (ranges_pst != NULL)
12017 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch,
12018 range_beginning + baseaddr);
12019 highpc = gdbarch_adjust_dwarf2_addr (gdbarch,
12020 range_end + baseaddr);
12021 addrmap_set_empty (objfile->psymtabs_addrmap, lowpc, highpc - 1,
12025 /* FIXME: This is recording everything as a low-high
12026 segment of consecutive addresses. We should have a
12027 data structure for discontiguous block ranges
12031 low = range_beginning;
12037 if (range_beginning < low)
12038 low = range_beginning;
12039 if (range_end > high)
12045 /* If the first entry is an end-of-list marker, the range
12046 describes an empty scope, i.e. no instructions. */
12052 *high_return = high;
12056 /* Get low and high pc attributes from a die. See enum pc_bounds_kind
12057 definition for the return value. *LOWPC and *HIGHPC are set iff
12058 neither PC_BOUNDS_NOT_PRESENT nor PC_BOUNDS_INVALID are returned. */
12060 static enum pc_bounds_kind
12061 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
12062 CORE_ADDR *highpc, struct dwarf2_cu *cu,
12063 struct partial_symtab *pst)
12065 struct attribute *attr;
12066 struct attribute *attr_high;
12068 CORE_ADDR high = 0;
12069 enum pc_bounds_kind ret;
12071 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
12074 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
12077 low = attr_value_as_address (attr);
12078 high = attr_value_as_address (attr_high);
12079 if (cu->header.version >= 4 && attr_form_is_constant (attr_high))
12083 /* Found high w/o low attribute. */
12084 return PC_BOUNDS_INVALID;
12086 /* Found consecutive range of addresses. */
12087 ret = PC_BOUNDS_HIGH_LOW;
12091 attr = dwarf2_attr (die, DW_AT_ranges, cu);
12094 /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
12095 We take advantage of the fact that DW_AT_ranges does not appear
12096 in DW_TAG_compile_unit of DWO files. */
12097 int need_ranges_base = die->tag != DW_TAG_compile_unit;
12098 unsigned int ranges_offset = (DW_UNSND (attr)
12099 + (need_ranges_base
12103 /* Value of the DW_AT_ranges attribute is the offset in the
12104 .debug_ranges section. */
12105 if (!dwarf2_ranges_read (ranges_offset, &low, &high, cu, pst))
12106 return PC_BOUNDS_INVALID;
12107 /* Found discontinuous range of addresses. */
12108 ret = PC_BOUNDS_RANGES;
12111 return PC_BOUNDS_NOT_PRESENT;
12114 /* read_partial_die has also the strict LOW < HIGH requirement. */
12116 return PC_BOUNDS_INVALID;
12118 /* When using the GNU linker, .gnu.linkonce. sections are used to
12119 eliminate duplicate copies of functions and vtables and such.
12120 The linker will arbitrarily choose one and discard the others.
12121 The AT_*_pc values for such functions refer to local labels in
12122 these sections. If the section from that file was discarded, the
12123 labels are not in the output, so the relocs get a value of 0.
12124 If this is a discarded function, mark the pc bounds as invalid,
12125 so that GDB will ignore it. */
12126 if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
12127 return PC_BOUNDS_INVALID;
12135 /* Assuming that DIE represents a subprogram DIE or a lexical block, get
12136 its low and high PC addresses. Do nothing if these addresses could not
12137 be determined. Otherwise, set LOWPC to the low address if it is smaller,
12138 and HIGHPC to the high address if greater than HIGHPC. */
12141 dwarf2_get_subprogram_pc_bounds (struct die_info *die,
12142 CORE_ADDR *lowpc, CORE_ADDR *highpc,
12143 struct dwarf2_cu *cu)
12145 CORE_ADDR low, high;
12146 struct die_info *child = die->child;
12148 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL) >= PC_BOUNDS_RANGES)
12150 *lowpc = min (*lowpc, low);
12151 *highpc = max (*highpc, high);
12154 /* If the language does not allow nested subprograms (either inside
12155 subprograms or lexical blocks), we're done. */
12156 if (cu->language != language_ada)
12159 /* Check all the children of the given DIE. If it contains nested
12160 subprograms, then check their pc bounds. Likewise, we need to
12161 check lexical blocks as well, as they may also contain subprogram
12163 while (child && child->tag)
12165 if (child->tag == DW_TAG_subprogram
12166 || child->tag == DW_TAG_lexical_block)
12167 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
12168 child = sibling_die (child);
12172 /* Get the low and high pc's represented by the scope DIE, and store
12173 them in *LOWPC and *HIGHPC. If the correct values can't be
12174 determined, set *LOWPC to -1 and *HIGHPC to 0. */
12177 get_scope_pc_bounds (struct die_info *die,
12178 CORE_ADDR *lowpc, CORE_ADDR *highpc,
12179 struct dwarf2_cu *cu)
12181 CORE_ADDR best_low = (CORE_ADDR) -1;
12182 CORE_ADDR best_high = (CORE_ADDR) 0;
12183 CORE_ADDR current_low, current_high;
12185 if (dwarf2_get_pc_bounds (die, ¤t_low, ¤t_high, cu, NULL)
12186 >= PC_BOUNDS_RANGES)
12188 best_low = current_low;
12189 best_high = current_high;
12193 struct die_info *child = die->child;
12195 while (child && child->tag)
12197 switch (child->tag) {
12198 case DW_TAG_subprogram:
12199 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
12201 case DW_TAG_namespace:
12202 case DW_TAG_module:
12203 /* FIXME: carlton/2004-01-16: Should we do this for
12204 DW_TAG_class_type/DW_TAG_structure_type, too? I think
12205 that current GCC's always emit the DIEs corresponding
12206 to definitions of methods of classes as children of a
12207 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
12208 the DIEs giving the declarations, which could be
12209 anywhere). But I don't see any reason why the
12210 standards says that they have to be there. */
12211 get_scope_pc_bounds (child, ¤t_low, ¤t_high, cu);
12213 if (current_low != ((CORE_ADDR) -1))
12215 best_low = min (best_low, current_low);
12216 best_high = max (best_high, current_high);
12224 child = sibling_die (child);
12229 *highpc = best_high;
12232 /* Record the address ranges for BLOCK, offset by BASEADDR, as given
12236 dwarf2_record_block_ranges (struct die_info *die, struct block *block,
12237 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
12239 struct objfile *objfile = cu->objfile;
12240 struct gdbarch *gdbarch = get_objfile_arch (objfile);
12241 struct attribute *attr;
12242 struct attribute *attr_high;
12244 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
12247 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
12250 CORE_ADDR low = attr_value_as_address (attr);
12251 CORE_ADDR high = attr_value_as_address (attr_high);
12253 if (cu->header.version >= 4 && attr_form_is_constant (attr_high))
12256 low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
12257 high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
12258 record_block_range (block, low, high - 1);
12262 attr = dwarf2_attr (die, DW_AT_ranges, cu);
12265 bfd *obfd = objfile->obfd;
12266 /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
12267 We take advantage of the fact that DW_AT_ranges does not appear
12268 in DW_TAG_compile_unit of DWO files. */
12269 int need_ranges_base = die->tag != DW_TAG_compile_unit;
12271 /* The value of the DW_AT_ranges attribute is the offset of the
12272 address range list in the .debug_ranges section. */
12273 unsigned long offset = (DW_UNSND (attr)
12274 + (need_ranges_base ? cu->ranges_base : 0));
12275 const gdb_byte *buffer;
12277 /* For some target architectures, but not others, the
12278 read_address function sign-extends the addresses it returns.
12279 To recognize base address selection entries, we need a
12281 unsigned int addr_size = cu->header.addr_size;
12282 CORE_ADDR base_select_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
12284 /* The base address, to which the next pair is relative. Note
12285 that this 'base' is a DWARF concept: most entries in a range
12286 list are relative, to reduce the number of relocs against the
12287 debugging information. This is separate from this function's
12288 'baseaddr' argument, which GDB uses to relocate debugging
12289 information from a shared library based on the address at
12290 which the library was loaded. */
12291 CORE_ADDR base = cu->base_address;
12292 int base_known = cu->base_known;
12294 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
12295 if (offset >= dwarf2_per_objfile->ranges.size)
12297 complaint (&symfile_complaints,
12298 _("Offset %lu out of bounds for DW_AT_ranges attribute"),
12302 buffer = dwarf2_per_objfile->ranges.buffer + offset;
12306 unsigned int bytes_read;
12307 CORE_ADDR start, end;
12309 start = read_address (obfd, buffer, cu, &bytes_read);
12310 buffer += bytes_read;
12311 end = read_address (obfd, buffer, cu, &bytes_read);
12312 buffer += bytes_read;
12314 /* Did we find the end of the range list? */
12315 if (start == 0 && end == 0)
12318 /* Did we find a base address selection entry? */
12319 else if ((start & base_select_mask) == base_select_mask)
12325 /* We found an ordinary address range. */
12330 complaint (&symfile_complaints,
12331 _("Invalid .debug_ranges data "
12332 "(no base address)"));
12338 /* Inverted range entries are invalid. */
12339 complaint (&symfile_complaints,
12340 _("Invalid .debug_ranges data "
12341 "(inverted range)"));
12345 /* Empty range entries have no effect. */
12349 start += base + baseaddr;
12350 end += base + baseaddr;
12352 /* A not-uncommon case of bad debug info.
12353 Don't pollute the addrmap with bad data. */
12354 if (start == 0 && !dwarf2_per_objfile->has_section_at_zero)
12356 complaint (&symfile_complaints,
12357 _(".debug_ranges entry has start address of zero"
12358 " [in module %s]"), objfile_name (objfile));
12362 start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
12363 end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
12364 record_block_range (block, start, end - 1);
12370 /* Check whether the producer field indicates either of GCC < 4.6, or the
12371 Intel C/C++ compiler, and cache the result in CU. */
12374 check_producer (struct dwarf2_cu *cu)
12378 if (cu->producer == NULL)
12380 /* For unknown compilers expect their behavior is DWARF version
12383 GCC started to support .debug_types sections by -gdwarf-4 since
12384 gcc-4.5.x. As the .debug_types sections are missing DW_AT_producer
12385 for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
12386 combination. gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
12387 interpreted incorrectly by GDB now - GCC PR debug/48229. */
12389 else if (producer_is_gcc (cu->producer, &major, &minor))
12391 cu->producer_is_gxx_lt_4_6 = major < 4 || (major == 4 && minor < 6);
12392 cu->producer_is_gcc_lt_4_3 = major < 4 || (major == 4 && minor < 3);
12394 else if (startswith (cu->producer, "Intel(R) C"))
12395 cu->producer_is_icc = 1;
12398 /* For other non-GCC compilers, expect their behavior is DWARF version
12402 cu->checked_producer = 1;
12405 /* Check for GCC PR debug/45124 fix which is not present in any G++ version up
12406 to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
12407 during 4.6.0 experimental. */
12410 producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
12412 if (!cu->checked_producer)
12413 check_producer (cu);
12415 return cu->producer_is_gxx_lt_4_6;
12418 /* Return the default accessibility type if it is not overriden by
12419 DW_AT_accessibility. */
12421 static enum dwarf_access_attribute
12422 dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
12424 if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
12426 /* The default DWARF 2 accessibility for members is public, the default
12427 accessibility for inheritance is private. */
12429 if (die->tag != DW_TAG_inheritance)
12430 return DW_ACCESS_public;
12432 return DW_ACCESS_private;
12436 /* DWARF 3+ defines the default accessibility a different way. The same
12437 rules apply now for DW_TAG_inheritance as for the members and it only
12438 depends on the container kind. */
12440 if (die->parent->tag == DW_TAG_class_type)
12441 return DW_ACCESS_private;
12443 return DW_ACCESS_public;
12447 /* Look for DW_AT_data_member_location. Set *OFFSET to the byte
12448 offset. If the attribute was not found return 0, otherwise return
12449 1. If it was found but could not properly be handled, set *OFFSET
12453 handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
12456 struct attribute *attr;
12458 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
12463 /* Note that we do not check for a section offset first here.
12464 This is because DW_AT_data_member_location is new in DWARF 4,
12465 so if we see it, we can assume that a constant form is really
12466 a constant and not a section offset. */
12467 if (attr_form_is_constant (attr))
12468 *offset = dwarf2_get_attr_constant_value (attr, 0);
12469 else if (attr_form_is_section_offset (attr))
12470 dwarf2_complex_location_expr_complaint ();
12471 else if (attr_form_is_block (attr))
12472 *offset = decode_locdesc (DW_BLOCK (attr), cu);
12474 dwarf2_complex_location_expr_complaint ();
12482 /* Add an aggregate field to the field list. */
12485 dwarf2_add_field (struct field_info *fip, struct die_info *die,
12486 struct dwarf2_cu *cu)
12488 struct objfile *objfile = cu->objfile;
12489 struct gdbarch *gdbarch = get_objfile_arch (objfile);
12490 struct nextfield *new_field;
12491 struct attribute *attr;
12493 const char *fieldname = "";
12495 /* Allocate a new field list entry and link it in. */
12496 new_field = XNEW (struct nextfield);
12497 make_cleanup (xfree, new_field);
12498 memset (new_field, 0, sizeof (struct nextfield));
12500 if (die->tag == DW_TAG_inheritance)
12502 new_field->next = fip->baseclasses;
12503 fip->baseclasses = new_field;
12507 new_field->next = fip->fields;
12508 fip->fields = new_field;
12512 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
12514 new_field->accessibility = DW_UNSND (attr);
12516 new_field->accessibility = dwarf2_default_access_attribute (die, cu);
12517 if (new_field->accessibility != DW_ACCESS_public)
12518 fip->non_public_fields = 1;
12520 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
12522 new_field->virtuality = DW_UNSND (attr);
12524 new_field->virtuality = DW_VIRTUALITY_none;
12526 fp = &new_field->field;
12528 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
12532 /* Data member other than a C++ static data member. */
12534 /* Get type of field. */
12535 fp->type = die_type (die, cu);
12537 SET_FIELD_BITPOS (*fp, 0);
12539 /* Get bit size of field (zero if none). */
12540 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
12543 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
12547 FIELD_BITSIZE (*fp) = 0;
12550 /* Get bit offset of field. */
12551 if (handle_data_member_location (die, cu, &offset))
12552 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
12553 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
12556 if (gdbarch_bits_big_endian (gdbarch))
12558 /* For big endian bits, the DW_AT_bit_offset gives the
12559 additional bit offset from the MSB of the containing
12560 anonymous object to the MSB of the field. We don't
12561 have to do anything special since we don't need to
12562 know the size of the anonymous object. */
12563 SET_FIELD_BITPOS (*fp, FIELD_BITPOS (*fp) + DW_UNSND (attr));
12567 /* For little endian bits, compute the bit offset to the
12568 MSB of the anonymous object, subtract off the number of
12569 bits from the MSB of the field to the MSB of the
12570 object, and then subtract off the number of bits of
12571 the field itself. The result is the bit offset of
12572 the LSB of the field. */
12573 int anonymous_size;
12574 int bit_offset = DW_UNSND (attr);
12576 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12579 /* The size of the anonymous object containing
12580 the bit field is explicit, so use the
12581 indicated size (in bytes). */
12582 anonymous_size = DW_UNSND (attr);
12586 /* The size of the anonymous object containing
12587 the bit field must be inferred from the type
12588 attribute of the data member containing the
12590 anonymous_size = TYPE_LENGTH (fp->type);
12592 SET_FIELD_BITPOS (*fp,
12593 (FIELD_BITPOS (*fp)
12594 + anonymous_size * bits_per_byte
12595 - bit_offset - FIELD_BITSIZE (*fp)));
12599 /* Get name of field. */
12600 fieldname = dwarf2_name (die, cu);
12601 if (fieldname == NULL)
12604 /* The name is already allocated along with this objfile, so we don't
12605 need to duplicate it for the type. */
12606 fp->name = fieldname;
12608 /* Change accessibility for artificial fields (e.g. virtual table
12609 pointer or virtual base class pointer) to private. */
12610 if (dwarf2_attr (die, DW_AT_artificial, cu))
12612 FIELD_ARTIFICIAL (*fp) = 1;
12613 new_field->accessibility = DW_ACCESS_private;
12614 fip->non_public_fields = 1;
12617 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
12619 /* C++ static member. */
12621 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
12622 is a declaration, but all versions of G++ as of this writing
12623 (so through at least 3.2.1) incorrectly generate
12624 DW_TAG_variable tags. */
12626 const char *physname;
12628 /* Get name of field. */
12629 fieldname = dwarf2_name (die, cu);
12630 if (fieldname == NULL)
12633 attr = dwarf2_attr (die, DW_AT_const_value, cu);
12635 /* Only create a symbol if this is an external value.
12636 new_symbol checks this and puts the value in the global symbol
12637 table, which we want. If it is not external, new_symbol
12638 will try to put the value in cu->list_in_scope which is wrong. */
12639 && dwarf2_flag_true_p (die, DW_AT_external, cu))
12641 /* A static const member, not much different than an enum as far as
12642 we're concerned, except that we can support more types. */
12643 new_symbol (die, NULL, cu);
12646 /* Get physical name. */
12647 physname = dwarf2_physname (fieldname, die, cu);
12649 /* The name is already allocated along with this objfile, so we don't
12650 need to duplicate it for the type. */
12651 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
12652 FIELD_TYPE (*fp) = die_type (die, cu);
12653 FIELD_NAME (*fp) = fieldname;
12655 else if (die->tag == DW_TAG_inheritance)
12659 /* C++ base class field. */
12660 if (handle_data_member_location (die, cu, &offset))
12661 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
12662 FIELD_BITSIZE (*fp) = 0;
12663 FIELD_TYPE (*fp) = die_type (die, cu);
12664 FIELD_NAME (*fp) = type_name_no_tag (fp->type);
12665 fip->nbaseclasses++;
12669 /* Add a typedef defined in the scope of the FIP's class. */
12672 dwarf2_add_typedef (struct field_info *fip, struct die_info *die,
12673 struct dwarf2_cu *cu)
12675 struct typedef_field_list *new_field;
12676 struct typedef_field *fp;
12678 /* Allocate a new field list entry and link it in. */
12679 new_field = XCNEW (struct typedef_field_list);
12680 make_cleanup (xfree, new_field);
12682 gdb_assert (die->tag == DW_TAG_typedef);
12684 fp = &new_field->field;
12686 /* Get name of field. */
12687 fp->name = dwarf2_name (die, cu);
12688 if (fp->name == NULL)
12691 fp->type = read_type_die (die, cu);
12693 new_field->next = fip->typedef_field_list;
12694 fip->typedef_field_list = new_field;
12695 fip->typedef_field_list_count++;
12698 /* Create the vector of fields, and attach it to the type. */
12701 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
12702 struct dwarf2_cu *cu)
12704 int nfields = fip->nfields;
12706 /* Record the field count, allocate space for the array of fields,
12707 and create blank accessibility bitfields if necessary. */
12708 TYPE_NFIELDS (type) = nfields;
12709 TYPE_FIELDS (type) = (struct field *)
12710 TYPE_ALLOC (type, sizeof (struct field) * nfields);
12711 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
12713 if (fip->non_public_fields && cu->language != language_ada)
12715 ALLOCATE_CPLUS_STRUCT_TYPE (type);
12717 TYPE_FIELD_PRIVATE_BITS (type) =
12718 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
12719 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
12721 TYPE_FIELD_PROTECTED_BITS (type) =
12722 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
12723 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
12725 TYPE_FIELD_IGNORE_BITS (type) =
12726 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
12727 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
12730 /* If the type has baseclasses, allocate and clear a bit vector for
12731 TYPE_FIELD_VIRTUAL_BITS. */
12732 if (fip->nbaseclasses && cu->language != language_ada)
12734 int num_bytes = B_BYTES (fip->nbaseclasses);
12735 unsigned char *pointer;
12737 ALLOCATE_CPLUS_STRUCT_TYPE (type);
12738 pointer = (unsigned char *) TYPE_ALLOC (type, num_bytes);
12739 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
12740 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
12741 TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
12744 /* Copy the saved-up fields into the field vector. Start from the head of
12745 the list, adding to the tail of the field array, so that they end up in
12746 the same order in the array in which they were added to the list. */
12747 while (nfields-- > 0)
12749 struct nextfield *fieldp;
12753 fieldp = fip->fields;
12754 fip->fields = fieldp->next;
12758 fieldp = fip->baseclasses;
12759 fip->baseclasses = fieldp->next;
12762 TYPE_FIELD (type, nfields) = fieldp->field;
12763 switch (fieldp->accessibility)
12765 case DW_ACCESS_private:
12766 if (cu->language != language_ada)
12767 SET_TYPE_FIELD_PRIVATE (type, nfields);
12770 case DW_ACCESS_protected:
12771 if (cu->language != language_ada)
12772 SET_TYPE_FIELD_PROTECTED (type, nfields);
12775 case DW_ACCESS_public:
12779 /* Unknown accessibility. Complain and treat it as public. */
12781 complaint (&symfile_complaints, _("unsupported accessibility %d"),
12782 fieldp->accessibility);
12786 if (nfields < fip->nbaseclasses)
12788 switch (fieldp->virtuality)
12790 case DW_VIRTUALITY_virtual:
12791 case DW_VIRTUALITY_pure_virtual:
12792 if (cu->language == language_ada)
12793 error (_("unexpected virtuality in component of Ada type"));
12794 SET_TYPE_FIELD_VIRTUAL (type, nfields);
12801 /* Return true if this member function is a constructor, false
12805 dwarf2_is_constructor (struct die_info *die, struct dwarf2_cu *cu)
12807 const char *fieldname;
12808 const char *type_name;
12811 if (die->parent == NULL)
12814 if (die->parent->tag != DW_TAG_structure_type
12815 && die->parent->tag != DW_TAG_union_type
12816 && die->parent->tag != DW_TAG_class_type)
12819 fieldname = dwarf2_name (die, cu);
12820 type_name = dwarf2_name (die->parent, cu);
12821 if (fieldname == NULL || type_name == NULL)
12824 len = strlen (fieldname);
12825 return (strncmp (fieldname, type_name, len) == 0
12826 && (type_name[len] == '\0' || type_name[len] == '<'));
12829 /* Add a member function to the proper fieldlist. */
12832 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
12833 struct type *type, struct dwarf2_cu *cu)
12835 struct objfile *objfile = cu->objfile;
12836 struct attribute *attr;
12837 struct fnfieldlist *flp;
12839 struct fn_field *fnp;
12840 const char *fieldname;
12841 struct nextfnfield *new_fnfield;
12842 struct type *this_type;
12843 enum dwarf_access_attribute accessibility;
12845 if (cu->language == language_ada)
12846 error (_("unexpected member function in Ada type"));
12848 /* Get name of member function. */
12849 fieldname = dwarf2_name (die, cu);
12850 if (fieldname == NULL)
12853 /* Look up member function name in fieldlist. */
12854 for (i = 0; i < fip->nfnfields; i++)
12856 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
12860 /* Create new list element if necessary. */
12861 if (i < fip->nfnfields)
12862 flp = &fip->fnfieldlists[i];
12865 if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
12867 fip->fnfieldlists = (struct fnfieldlist *)
12868 xrealloc (fip->fnfieldlists,
12869 (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
12870 * sizeof (struct fnfieldlist));
12871 if (fip->nfnfields == 0)
12872 make_cleanup (free_current_contents, &fip->fnfieldlists);
12874 flp = &fip->fnfieldlists[fip->nfnfields];
12875 flp->name = fieldname;
12878 i = fip->nfnfields++;
12881 /* Create a new member function field and chain it to the field list
12883 new_fnfield = XNEW (struct nextfnfield);
12884 make_cleanup (xfree, new_fnfield);
12885 memset (new_fnfield, 0, sizeof (struct nextfnfield));
12886 new_fnfield->next = flp->head;
12887 flp->head = new_fnfield;
12890 /* Fill in the member function field info. */
12891 fnp = &new_fnfield->fnfield;
12893 /* Delay processing of the physname until later. */
12894 if (cu->language == language_cplus || cu->language == language_java)
12896 add_to_method_list (type, i, flp->length - 1, fieldname,
12901 const char *physname = dwarf2_physname (fieldname, die, cu);
12902 fnp->physname = physname ? physname : "";
12905 fnp->type = alloc_type (objfile);
12906 this_type = read_type_die (die, cu);
12907 if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
12909 int nparams = TYPE_NFIELDS (this_type);
12911 /* TYPE is the domain of this method, and THIS_TYPE is the type
12912 of the method itself (TYPE_CODE_METHOD). */
12913 smash_to_method_type (fnp->type, type,
12914 TYPE_TARGET_TYPE (this_type),
12915 TYPE_FIELDS (this_type),
12916 TYPE_NFIELDS (this_type),
12917 TYPE_VARARGS (this_type));
12919 /* Handle static member functions.
12920 Dwarf2 has no clean way to discern C++ static and non-static
12921 member functions. G++ helps GDB by marking the first
12922 parameter for non-static member functions (which is the this
12923 pointer) as artificial. We obtain this information from
12924 read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
12925 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
12926 fnp->voffset = VOFFSET_STATIC;
12929 complaint (&symfile_complaints, _("member function type missing for '%s'"),
12930 dwarf2_full_name (fieldname, die, cu));
12932 /* Get fcontext from DW_AT_containing_type if present. */
12933 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
12934 fnp->fcontext = die_containing_type (die, cu);
12936 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
12937 is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
12939 /* Get accessibility. */
12940 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
12942 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
12944 accessibility = dwarf2_default_access_attribute (die, cu);
12945 switch (accessibility)
12947 case DW_ACCESS_private:
12948 fnp->is_private = 1;
12950 case DW_ACCESS_protected:
12951 fnp->is_protected = 1;
12955 /* Check for artificial methods. */
12956 attr = dwarf2_attr (die, DW_AT_artificial, cu);
12957 if (attr && DW_UNSND (attr) != 0)
12958 fnp->is_artificial = 1;
12960 fnp->is_constructor = dwarf2_is_constructor (die, cu);
12962 /* Get index in virtual function table if it is a virtual member
12963 function. For older versions of GCC, this is an offset in the
12964 appropriate virtual table, as specified by DW_AT_containing_type.
12965 For everyone else, it is an expression to be evaluated relative
12966 to the object address. */
12968 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
12971 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
12973 if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
12975 /* Old-style GCC. */
12976 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
12978 else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
12979 || (DW_BLOCK (attr)->size > 1
12980 && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
12981 && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
12983 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
12984 if ((fnp->voffset % cu->header.addr_size) != 0)
12985 dwarf2_complex_location_expr_complaint ();
12987 fnp->voffset /= cu->header.addr_size;
12991 dwarf2_complex_location_expr_complaint ();
12993 if (!fnp->fcontext)
12995 /* If there is no `this' field and no DW_AT_containing_type,
12996 we cannot actually find a base class context for the
12998 if (TYPE_NFIELDS (this_type) == 0
12999 || !TYPE_FIELD_ARTIFICIAL (this_type, 0))
13001 complaint (&symfile_complaints,
13002 _("cannot determine context for virtual member "
13003 "function \"%s\" (offset %d)"),
13004 fieldname, die->offset.sect_off);
13009 = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
13013 else if (attr_form_is_section_offset (attr))
13015 dwarf2_complex_location_expr_complaint ();
13019 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
13025 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
13026 if (attr && DW_UNSND (attr))
13028 /* GCC does this, as of 2008-08-25; PR debug/37237. */
13029 complaint (&symfile_complaints,
13030 _("Member function \"%s\" (offset %d) is virtual "
13031 "but the vtable offset is not specified"),
13032 fieldname, die->offset.sect_off);
13033 ALLOCATE_CPLUS_STRUCT_TYPE (type);
13034 TYPE_CPLUS_DYNAMIC (type) = 1;
13039 /* Create the vector of member function fields, and attach it to the type. */
13042 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
13043 struct dwarf2_cu *cu)
13045 struct fnfieldlist *flp;
13048 if (cu->language == language_ada)
13049 error (_("unexpected member functions in Ada type"));
13051 ALLOCATE_CPLUS_STRUCT_TYPE (type);
13052 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
13053 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
13055 for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
13057 struct nextfnfield *nfp = flp->head;
13058 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
13061 TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
13062 TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
13063 fn_flp->fn_fields = (struct fn_field *)
13064 TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
13065 for (k = flp->length; (k--, nfp); nfp = nfp->next)
13066 fn_flp->fn_fields[k] = nfp->fnfield;
13069 TYPE_NFN_FIELDS (type) = fip->nfnfields;
13072 /* Returns non-zero if NAME is the name of a vtable member in CU's
13073 language, zero otherwise. */
13075 is_vtable_name (const char *name, struct dwarf2_cu *cu)
13077 static const char vptr[] = "_vptr";
13078 static const char vtable[] = "vtable";
13080 /* Look for the C++ and Java forms of the vtable. */
13081 if ((cu->language == language_java
13082 && startswith (name, vtable))
13083 || (startswith (name, vptr)
13084 && is_cplus_marker (name[sizeof (vptr) - 1])))
13090 /* GCC outputs unnamed structures that are really pointers to member
13091 functions, with the ABI-specified layout. If TYPE describes
13092 such a structure, smash it into a member function type.
13094 GCC shouldn't do this; it should just output pointer to member DIEs.
13095 This is GCC PR debug/28767. */
13098 quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
13100 struct type *pfn_type, *self_type, *new_type;
13102 /* Check for a structure with no name and two children. */
13103 if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
13106 /* Check for __pfn and __delta members. */
13107 if (TYPE_FIELD_NAME (type, 0) == NULL
13108 || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
13109 || TYPE_FIELD_NAME (type, 1) == NULL
13110 || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
13113 /* Find the type of the method. */
13114 pfn_type = TYPE_FIELD_TYPE (type, 0);
13115 if (pfn_type == NULL
13116 || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
13117 || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
13120 /* Look for the "this" argument. */
13121 pfn_type = TYPE_TARGET_TYPE (pfn_type);
13122 if (TYPE_NFIELDS (pfn_type) == 0
13123 /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
13124 || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
13127 self_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
13128 new_type = alloc_type (objfile);
13129 smash_to_method_type (new_type, self_type, TYPE_TARGET_TYPE (pfn_type),
13130 TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
13131 TYPE_VARARGS (pfn_type));
13132 smash_to_methodptr_type (type, new_type);
13135 /* Return non-zero if the CU's PRODUCER string matches the Intel C/C++ compiler
13139 producer_is_icc (struct dwarf2_cu *cu)
13141 if (!cu->checked_producer)
13142 check_producer (cu);
13144 return cu->producer_is_icc;
13147 /* Called when we find the DIE that starts a structure or union scope
13148 (definition) to create a type for the structure or union. Fill in
13149 the type's name and general properties; the members will not be
13150 processed until process_structure_scope. A symbol table entry for
13151 the type will also not be done until process_structure_scope (assuming
13152 the type has a name).
13154 NOTE: we need to call these functions regardless of whether or not the
13155 DIE has a DW_AT_name attribute, since it might be an anonymous
13156 structure or union. This gets the type entered into our set of
13157 user defined types. */
13159 static struct type *
13160 read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
13162 struct objfile *objfile = cu->objfile;
13164 struct attribute *attr;
13167 /* If the definition of this type lives in .debug_types, read that type.
13168 Don't follow DW_AT_specification though, that will take us back up
13169 the chain and we want to go down. */
13170 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
13173 type = get_DW_AT_signature_type (die, attr, cu);
13175 /* The type's CU may not be the same as CU.
13176 Ensure TYPE is recorded with CU in die_type_hash. */
13177 return set_die_type (die, type, cu);
13180 type = alloc_type (objfile);
13181 INIT_CPLUS_SPECIFIC (type);
13183 name = dwarf2_name (die, cu);
13186 if (cu->language == language_cplus
13187 || cu->language == language_java
13188 || cu->language == language_d
13189 || cu->language == language_rust)
13191 const char *full_name = dwarf2_full_name (name, die, cu);
13193 /* dwarf2_full_name might have already finished building the DIE's
13194 type. If so, there is no need to continue. */
13195 if (get_die_type (die, cu) != NULL)
13196 return get_die_type (die, cu);
13198 TYPE_TAG_NAME (type) = full_name;
13199 if (die->tag == DW_TAG_structure_type
13200 || die->tag == DW_TAG_class_type)
13201 TYPE_NAME (type) = TYPE_TAG_NAME (type);
13205 /* The name is already allocated along with this objfile, so
13206 we don't need to duplicate it for the type. */
13207 TYPE_TAG_NAME (type) = name;
13208 if (die->tag == DW_TAG_class_type)
13209 TYPE_NAME (type) = TYPE_TAG_NAME (type);
13213 if (die->tag == DW_TAG_structure_type)
13215 TYPE_CODE (type) = TYPE_CODE_STRUCT;
13217 else if (die->tag == DW_TAG_union_type)
13219 TYPE_CODE (type) = TYPE_CODE_UNION;
13223 TYPE_CODE (type) = TYPE_CODE_STRUCT;
13226 if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
13227 TYPE_DECLARED_CLASS (type) = 1;
13229 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
13232 if (attr_form_is_constant (attr))
13233 TYPE_LENGTH (type) = DW_UNSND (attr);
13236 /* For the moment, dynamic type sizes are not supported
13237 by GDB's struct type. The actual size is determined
13238 on-demand when resolving the type of a given object,
13239 so set the type's length to zero for now. Otherwise,
13240 we record an expression as the length, and that expression
13241 could lead to a very large value, which could eventually
13242 lead to us trying to allocate that much memory when creating
13243 a value of that type. */
13244 TYPE_LENGTH (type) = 0;
13249 TYPE_LENGTH (type) = 0;
13252 if (producer_is_icc (cu) && (TYPE_LENGTH (type) == 0))
13254 /* ICC does not output the required DW_AT_declaration
13255 on incomplete types, but gives them a size of zero. */
13256 TYPE_STUB (type) = 1;
13259 TYPE_STUB_SUPPORTED (type) = 1;
13261 if (die_is_declaration (die, cu))
13262 TYPE_STUB (type) = 1;
13263 else if (attr == NULL && die->child == NULL
13264 && producer_is_realview (cu->producer))
13265 /* RealView does not output the required DW_AT_declaration
13266 on incomplete types. */
13267 TYPE_STUB (type) = 1;
13269 /* We need to add the type field to the die immediately so we don't
13270 infinitely recurse when dealing with pointers to the structure
13271 type within the structure itself. */
13272 set_die_type (die, type, cu);
13274 /* set_die_type should be already done. */
13275 set_descriptive_type (type, die, cu);
13280 /* Finish creating a structure or union type, including filling in
13281 its members and creating a symbol for it. */
13284 process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
13286 struct objfile *objfile = cu->objfile;
13287 struct die_info *child_die;
13290 type = get_die_type (die, cu);
13292 type = read_structure_type (die, cu);
13294 if (die->child != NULL && ! die_is_declaration (die, cu))
13296 struct field_info fi;
13297 VEC (symbolp) *template_args = NULL;
13298 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
13300 memset (&fi, 0, sizeof (struct field_info));
13302 child_die = die->child;
13304 while (child_die && child_die->tag)
13306 if (child_die->tag == DW_TAG_member
13307 || child_die->tag == DW_TAG_variable)
13309 /* NOTE: carlton/2002-11-05: A C++ static data member
13310 should be a DW_TAG_member that is a declaration, but
13311 all versions of G++ as of this writing (so through at
13312 least 3.2.1) incorrectly generate DW_TAG_variable
13313 tags for them instead. */
13314 dwarf2_add_field (&fi, child_die, cu);
13316 else if (child_die->tag == DW_TAG_subprogram)
13318 /* C++ member function. */
13319 dwarf2_add_member_fn (&fi, child_die, type, cu);
13321 else if (child_die->tag == DW_TAG_inheritance)
13323 /* C++ base class field. */
13324 dwarf2_add_field (&fi, child_die, cu);
13326 else if (child_die->tag == DW_TAG_typedef)
13327 dwarf2_add_typedef (&fi, child_die, cu);
13328 else if (child_die->tag == DW_TAG_template_type_param
13329 || child_die->tag == DW_TAG_template_value_param)
13331 struct symbol *arg = new_symbol (child_die, NULL, cu);
13334 VEC_safe_push (symbolp, template_args, arg);
13337 child_die = sibling_die (child_die);
13340 /* Attach template arguments to type. */
13341 if (! VEC_empty (symbolp, template_args))
13343 ALLOCATE_CPLUS_STRUCT_TYPE (type);
13344 TYPE_N_TEMPLATE_ARGUMENTS (type)
13345 = VEC_length (symbolp, template_args);
13346 TYPE_TEMPLATE_ARGUMENTS (type)
13347 = XOBNEWVEC (&objfile->objfile_obstack,
13349 TYPE_N_TEMPLATE_ARGUMENTS (type));
13350 memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
13351 VEC_address (symbolp, template_args),
13352 (TYPE_N_TEMPLATE_ARGUMENTS (type)
13353 * sizeof (struct symbol *)));
13354 VEC_free (symbolp, template_args);
13357 /* Attach fields and member functions to the type. */
13359 dwarf2_attach_fields_to_type (&fi, type, cu);
13362 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
13364 /* Get the type which refers to the base class (possibly this
13365 class itself) which contains the vtable pointer for the current
13366 class from the DW_AT_containing_type attribute. This use of
13367 DW_AT_containing_type is a GNU extension. */
13369 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
13371 struct type *t = die_containing_type (die, cu);
13373 set_type_vptr_basetype (type, t);
13378 /* Our own class provides vtbl ptr. */
13379 for (i = TYPE_NFIELDS (t) - 1;
13380 i >= TYPE_N_BASECLASSES (t);
13383 const char *fieldname = TYPE_FIELD_NAME (t, i);
13385 if (is_vtable_name (fieldname, cu))
13387 set_type_vptr_fieldno (type, i);
13392 /* Complain if virtual function table field not found. */
13393 if (i < TYPE_N_BASECLASSES (t))
13394 complaint (&symfile_complaints,
13395 _("virtual function table pointer "
13396 "not found when defining class '%s'"),
13397 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
13402 set_type_vptr_fieldno (type, TYPE_VPTR_FIELDNO (t));
13405 else if (cu->producer
13406 && startswith (cu->producer, "IBM(R) XL C/C++ Advanced Edition"))
13408 /* The IBM XLC compiler does not provide direct indication
13409 of the containing type, but the vtable pointer is
13410 always named __vfp. */
13414 for (i = TYPE_NFIELDS (type) - 1;
13415 i >= TYPE_N_BASECLASSES (type);
13418 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
13420 set_type_vptr_fieldno (type, i);
13421 set_type_vptr_basetype (type, type);
13428 /* Copy fi.typedef_field_list linked list elements content into the
13429 allocated array TYPE_TYPEDEF_FIELD_ARRAY (type). */
13430 if (fi.typedef_field_list)
13432 int i = fi.typedef_field_list_count;
13434 ALLOCATE_CPLUS_STRUCT_TYPE (type);
13435 TYPE_TYPEDEF_FIELD_ARRAY (type)
13436 = ((struct typedef_field *)
13437 TYPE_ALLOC (type, sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * i));
13438 TYPE_TYPEDEF_FIELD_COUNT (type) = i;
13440 /* Reverse the list order to keep the debug info elements order. */
13443 struct typedef_field *dest, *src;
13445 dest = &TYPE_TYPEDEF_FIELD (type, i);
13446 src = &fi.typedef_field_list->field;
13447 fi.typedef_field_list = fi.typedef_field_list->next;
13452 do_cleanups (back_to);
13454 if (HAVE_CPLUS_STRUCT (type))
13455 TYPE_CPLUS_REALLY_JAVA (type) = cu->language == language_java;
13458 quirk_gcc_member_function_pointer (type, objfile);
13460 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
13461 snapshots) has been known to create a die giving a declaration
13462 for a class that has, as a child, a die giving a definition for a
13463 nested class. So we have to process our children even if the
13464 current die is a declaration. Normally, of course, a declaration
13465 won't have any children at all. */
13467 child_die = die->child;
13469 while (child_die != NULL && child_die->tag)
13471 if (child_die->tag == DW_TAG_member
13472 || child_die->tag == DW_TAG_variable
13473 || child_die->tag == DW_TAG_inheritance
13474 || child_die->tag == DW_TAG_template_value_param
13475 || child_die->tag == DW_TAG_template_type_param)
13480 process_die (child_die, cu);
13482 child_die = sibling_die (child_die);
13485 /* Do not consider external references. According to the DWARF standard,
13486 these DIEs are identified by the fact that they have no byte_size
13487 attribute, and a declaration attribute. */
13488 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
13489 || !die_is_declaration (die, cu))
13490 new_symbol (die, type, cu);
13493 /* Assuming DIE is an enumeration type, and TYPE is its associated type,
13494 update TYPE using some information only available in DIE's children. */
13497 update_enumeration_type_from_children (struct die_info *die,
13499 struct dwarf2_cu *cu)
13501 struct obstack obstack;
13502 struct die_info *child_die;
13503 int unsigned_enum = 1;
13506 struct cleanup *old_chain;
13508 obstack_init (&obstack);
13509 old_chain = make_cleanup_obstack_free (&obstack);
13511 for (child_die = die->child;
13512 child_die != NULL && child_die->tag;
13513 child_die = sibling_die (child_die))
13515 struct attribute *attr;
13517 const gdb_byte *bytes;
13518 struct dwarf2_locexpr_baton *baton;
13521 if (child_die->tag != DW_TAG_enumerator)
13524 attr = dwarf2_attr (child_die, DW_AT_const_value, cu);
13528 name = dwarf2_name (child_die, cu);
13530 name = "<anonymous enumerator>";
13532 dwarf2_const_value_attr (attr, type, name, &obstack, cu,
13533 &value, &bytes, &baton);
13539 else if ((mask & value) != 0)
13544 /* If we already know that the enum type is neither unsigned, nor
13545 a flag type, no need to look at the rest of the enumerates. */
13546 if (!unsigned_enum && !flag_enum)
13551 TYPE_UNSIGNED (type) = 1;
13553 TYPE_FLAG_ENUM (type) = 1;
13555 do_cleanups (old_chain);
13558 /* Given a DW_AT_enumeration_type die, set its type. We do not
13559 complete the type's fields yet, or create any symbols. */
13561 static struct type *
13562 read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
13564 struct objfile *objfile = cu->objfile;
13566 struct attribute *attr;
13569 /* If the definition of this type lives in .debug_types, read that type.
13570 Don't follow DW_AT_specification though, that will take us back up
13571 the chain and we want to go down. */
13572 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
13575 type = get_DW_AT_signature_type (die, attr, cu);
13577 /* The type's CU may not be the same as CU.
13578 Ensure TYPE is recorded with CU in die_type_hash. */
13579 return set_die_type (die, type, cu);
13582 type = alloc_type (objfile);
13584 TYPE_CODE (type) = TYPE_CODE_ENUM;
13585 name = dwarf2_full_name (NULL, die, cu);
13587 TYPE_TAG_NAME (type) = name;
13589 attr = dwarf2_attr (die, DW_AT_type, cu);
13592 struct type *underlying_type = die_type (die, cu);
13594 TYPE_TARGET_TYPE (type) = underlying_type;
13597 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
13600 TYPE_LENGTH (type) = DW_UNSND (attr);
13604 TYPE_LENGTH (type) = 0;
13607 /* The enumeration DIE can be incomplete. In Ada, any type can be
13608 declared as private in the package spec, and then defined only
13609 inside the package body. Such types are known as Taft Amendment
13610 Types. When another package uses such a type, an incomplete DIE
13611 may be generated by the compiler. */
13612 if (die_is_declaration (die, cu))
13613 TYPE_STUB (type) = 1;
13615 /* Finish the creation of this type by using the enum's children.
13616 We must call this even when the underlying type has been provided
13617 so that we can determine if we're looking at a "flag" enum. */
13618 update_enumeration_type_from_children (die, type, cu);
13620 /* If this type has an underlying type that is not a stub, then we
13621 may use its attributes. We always use the "unsigned" attribute
13622 in this situation, because ordinarily we guess whether the type
13623 is unsigned -- but the guess can be wrong and the underlying type
13624 can tell us the reality. However, we defer to a local size
13625 attribute if one exists, because this lets the compiler override
13626 the underlying type if needed. */
13627 if (TYPE_TARGET_TYPE (type) != NULL && !TYPE_STUB (TYPE_TARGET_TYPE (type)))
13629 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (TYPE_TARGET_TYPE (type));
13630 if (TYPE_LENGTH (type) == 0)
13631 TYPE_LENGTH (type) = TYPE_LENGTH (TYPE_TARGET_TYPE (type));
13634 TYPE_DECLARED_CLASS (type) = dwarf2_flag_true_p (die, DW_AT_enum_class, cu);
13636 return set_die_type (die, type, cu);
13639 /* Given a pointer to a die which begins an enumeration, process all
13640 the dies that define the members of the enumeration, and create the
13641 symbol for the enumeration type.
13643 NOTE: We reverse the order of the element list. */
13646 process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
13648 struct type *this_type;
13650 this_type = get_die_type (die, cu);
13651 if (this_type == NULL)
13652 this_type = read_enumeration_type (die, cu);
13654 if (die->child != NULL)
13656 struct die_info *child_die;
13657 struct symbol *sym;
13658 struct field *fields = NULL;
13659 int num_fields = 0;
13662 child_die = die->child;
13663 while (child_die && child_die->tag)
13665 if (child_die->tag != DW_TAG_enumerator)
13667 process_die (child_die, cu);
13671 name = dwarf2_name (child_die, cu);
13674 sym = new_symbol (child_die, this_type, cu);
13676 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
13678 fields = (struct field *)
13680 (num_fields + DW_FIELD_ALLOC_CHUNK)
13681 * sizeof (struct field));
13684 FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
13685 FIELD_TYPE (fields[num_fields]) = NULL;
13686 SET_FIELD_ENUMVAL (fields[num_fields], SYMBOL_VALUE (sym));
13687 FIELD_BITSIZE (fields[num_fields]) = 0;
13693 child_die = sibling_die (child_die);
13698 TYPE_NFIELDS (this_type) = num_fields;
13699 TYPE_FIELDS (this_type) = (struct field *)
13700 TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
13701 memcpy (TYPE_FIELDS (this_type), fields,
13702 sizeof (struct field) * num_fields);
13707 /* If we are reading an enum from a .debug_types unit, and the enum
13708 is a declaration, and the enum is not the signatured type in the
13709 unit, then we do not want to add a symbol for it. Adding a
13710 symbol would in some cases obscure the true definition of the
13711 enum, giving users an incomplete type when the definition is
13712 actually available. Note that we do not want to do this for all
13713 enums which are just declarations, because C++0x allows forward
13714 enum declarations. */
13715 if (cu->per_cu->is_debug_types
13716 && die_is_declaration (die, cu))
13718 struct signatured_type *sig_type;
13720 sig_type = (struct signatured_type *) cu->per_cu;
13721 gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
13722 if (sig_type->type_offset_in_section.sect_off != die->offset.sect_off)
13726 new_symbol (die, this_type, cu);
13729 /* Extract all information from a DW_TAG_array_type DIE and put it in
13730 the DIE's type field. For now, this only handles one dimensional
13733 static struct type *
13734 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
13736 struct objfile *objfile = cu->objfile;
13737 struct die_info *child_die;
13739 struct type *element_type, *range_type, *index_type;
13740 struct type **range_types = NULL;
13741 struct attribute *attr;
13743 struct cleanup *back_to;
13745 unsigned int bit_stride = 0;
13747 element_type = die_type (die, cu);
13749 /* The die_type call above may have already set the type for this DIE. */
13750 type = get_die_type (die, cu);
13754 attr = dwarf2_attr (die, DW_AT_byte_stride, cu);
13756 bit_stride = DW_UNSND (attr) * 8;
13758 attr = dwarf2_attr (die, DW_AT_bit_stride, cu);
13760 bit_stride = DW_UNSND (attr);
13762 /* Irix 6.2 native cc creates array types without children for
13763 arrays with unspecified length. */
13764 if (die->child == NULL)
13766 index_type = objfile_type (objfile)->builtin_int;
13767 range_type = create_static_range_type (NULL, index_type, 0, -1);
13768 type = create_array_type_with_stride (NULL, element_type, range_type,
13770 return set_die_type (die, type, cu);
13773 back_to = make_cleanup (null_cleanup, NULL);
13774 child_die = die->child;
13775 while (child_die && child_die->tag)
13777 if (child_die->tag == DW_TAG_subrange_type)
13779 struct type *child_type = read_type_die (child_die, cu);
13781 if (child_type != NULL)
13783 /* The range type was succesfully read. Save it for the
13784 array type creation. */
13785 if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
13787 range_types = (struct type **)
13788 xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
13789 * sizeof (struct type *));
13791 make_cleanup (free_current_contents, &range_types);
13793 range_types[ndim++] = child_type;
13796 child_die = sibling_die (child_die);
13799 /* Dwarf2 dimensions are output from left to right, create the
13800 necessary array types in backwards order. */
13802 type = element_type;
13804 if (read_array_order (die, cu) == DW_ORD_col_major)
13809 type = create_array_type_with_stride (NULL, type, range_types[i++],
13815 type = create_array_type_with_stride (NULL, type, range_types[ndim],
13819 /* Understand Dwarf2 support for vector types (like they occur on
13820 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
13821 array type. This is not part of the Dwarf2/3 standard yet, but a
13822 custom vendor extension. The main difference between a regular
13823 array and the vector variant is that vectors are passed by value
13825 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
13827 make_vector_type (type);
13829 /* The DIE may have DW_AT_byte_size set. For example an OpenCL
13830 implementation may choose to implement triple vectors using this
13832 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
13835 if (DW_UNSND (attr) >= TYPE_LENGTH (type))
13836 TYPE_LENGTH (type) = DW_UNSND (attr);
13838 complaint (&symfile_complaints,
13839 _("DW_AT_byte_size for array type smaller "
13840 "than the total size of elements"));
13843 name = dwarf2_name (die, cu);
13845 TYPE_NAME (type) = name;
13847 /* Install the type in the die. */
13848 set_die_type (die, type, cu);
13850 /* set_die_type should be already done. */
13851 set_descriptive_type (type, die, cu);
13853 do_cleanups (back_to);
13858 static enum dwarf_array_dim_ordering
13859 read_array_order (struct die_info *die, struct dwarf2_cu *cu)
13861 struct attribute *attr;
13863 attr = dwarf2_attr (die, DW_AT_ordering, cu);
13866 return (enum dwarf_array_dim_ordering) DW_SND (attr);
13868 /* GNU F77 is a special case, as at 08/2004 array type info is the
13869 opposite order to the dwarf2 specification, but data is still
13870 laid out as per normal fortran.
13872 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
13873 version checking. */
13875 if (cu->language == language_fortran
13876 && cu->producer && strstr (cu->producer, "GNU F77"))
13878 return DW_ORD_row_major;
13881 switch (cu->language_defn->la_array_ordering)
13883 case array_column_major:
13884 return DW_ORD_col_major;
13885 case array_row_major:
13887 return DW_ORD_row_major;
13891 /* Extract all information from a DW_TAG_set_type DIE and put it in
13892 the DIE's type field. */
13894 static struct type *
13895 read_set_type (struct die_info *die, struct dwarf2_cu *cu)
13897 struct type *domain_type, *set_type;
13898 struct attribute *attr;
13900 domain_type = die_type (die, cu);
13902 /* The die_type call above may have already set the type for this DIE. */
13903 set_type = get_die_type (die, cu);
13907 set_type = create_set_type (NULL, domain_type);
13909 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
13911 TYPE_LENGTH (set_type) = DW_UNSND (attr);
13913 return set_die_type (die, set_type, cu);
13916 /* A helper for read_common_block that creates a locexpr baton.
13917 SYM is the symbol which we are marking as computed.
13918 COMMON_DIE is the DIE for the common block.
13919 COMMON_LOC is the location expression attribute for the common
13921 MEMBER_LOC is the location expression attribute for the particular
13922 member of the common block that we are processing.
13923 CU is the CU from which the above come. */
13926 mark_common_block_symbol_computed (struct symbol *sym,
13927 struct die_info *common_die,
13928 struct attribute *common_loc,
13929 struct attribute *member_loc,
13930 struct dwarf2_cu *cu)
13932 struct objfile *objfile = dwarf2_per_objfile->objfile;
13933 struct dwarf2_locexpr_baton *baton;
13935 unsigned int cu_off;
13936 enum bfd_endian byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
13937 LONGEST offset = 0;
13939 gdb_assert (common_loc && member_loc);
13940 gdb_assert (attr_form_is_block (common_loc));
13941 gdb_assert (attr_form_is_block (member_loc)
13942 || attr_form_is_constant (member_loc));
13944 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
13945 baton->per_cu = cu->per_cu;
13946 gdb_assert (baton->per_cu);
13948 baton->size = 5 /* DW_OP_call4 */ + 1 /* DW_OP_plus */;
13950 if (attr_form_is_constant (member_loc))
13952 offset = dwarf2_get_attr_constant_value (member_loc, 0);
13953 baton->size += 1 /* DW_OP_addr */ + cu->header.addr_size;
13956 baton->size += DW_BLOCK (member_loc)->size;
13958 ptr = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack, baton->size);
13961 *ptr++ = DW_OP_call4;
13962 cu_off = common_die->offset.sect_off - cu->per_cu->offset.sect_off;
13963 store_unsigned_integer (ptr, 4, byte_order, cu_off);
13966 if (attr_form_is_constant (member_loc))
13968 *ptr++ = DW_OP_addr;
13969 store_unsigned_integer (ptr, cu->header.addr_size, byte_order, offset);
13970 ptr += cu->header.addr_size;
13974 /* We have to copy the data here, because DW_OP_call4 will only
13975 use a DW_AT_location attribute. */
13976 memcpy (ptr, DW_BLOCK (member_loc)->data, DW_BLOCK (member_loc)->size);
13977 ptr += DW_BLOCK (member_loc)->size;
13980 *ptr++ = DW_OP_plus;
13981 gdb_assert (ptr - baton->data == baton->size);
13983 SYMBOL_LOCATION_BATON (sym) = baton;
13984 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
13987 /* Create appropriate locally-scoped variables for all the
13988 DW_TAG_common_block entries. Also create a struct common_block
13989 listing all such variables for `info common'. COMMON_BLOCK_DOMAIN
13990 is used to sepate the common blocks name namespace from regular
13994 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
13996 struct attribute *attr;
13998 attr = dwarf2_attr (die, DW_AT_location, cu);
14001 /* Support the .debug_loc offsets. */
14002 if (attr_form_is_block (attr))
14006 else if (attr_form_is_section_offset (attr))
14008 dwarf2_complex_location_expr_complaint ();
14013 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
14014 "common block member");
14019 if (die->child != NULL)
14021 struct objfile *objfile = cu->objfile;
14022 struct die_info *child_die;
14023 size_t n_entries = 0, size;
14024 struct common_block *common_block;
14025 struct symbol *sym;
14027 for (child_die = die->child;
14028 child_die && child_die->tag;
14029 child_die = sibling_die (child_die))
14032 size = (sizeof (struct common_block)
14033 + (n_entries - 1) * sizeof (struct symbol *));
14035 = (struct common_block *) obstack_alloc (&objfile->objfile_obstack,
14037 memset (common_block->contents, 0, n_entries * sizeof (struct symbol *));
14038 common_block->n_entries = 0;
14040 for (child_die = die->child;
14041 child_die && child_die->tag;
14042 child_die = sibling_die (child_die))
14044 /* Create the symbol in the DW_TAG_common_block block in the current
14046 sym = new_symbol (child_die, NULL, cu);
14049 struct attribute *member_loc;
14051 common_block->contents[common_block->n_entries++] = sym;
14053 member_loc = dwarf2_attr (child_die, DW_AT_data_member_location,
14057 /* GDB has handled this for a long time, but it is
14058 not specified by DWARF. It seems to have been
14059 emitted by gfortran at least as recently as:
14060 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23057. */
14061 complaint (&symfile_complaints,
14062 _("Variable in common block has "
14063 "DW_AT_data_member_location "
14064 "- DIE at 0x%x [in module %s]"),
14065 child_die->offset.sect_off,
14066 objfile_name (cu->objfile));
14068 if (attr_form_is_section_offset (member_loc))
14069 dwarf2_complex_location_expr_complaint ();
14070 else if (attr_form_is_constant (member_loc)
14071 || attr_form_is_block (member_loc))
14074 mark_common_block_symbol_computed (sym, die, attr,
14078 dwarf2_complex_location_expr_complaint ();
14083 sym = new_symbol (die, objfile_type (objfile)->builtin_void, cu);
14084 SYMBOL_VALUE_COMMON_BLOCK (sym) = common_block;
14088 /* Create a type for a C++ namespace. */
14090 static struct type *
14091 read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
14093 struct objfile *objfile = cu->objfile;
14094 const char *previous_prefix, *name;
14098 /* For extensions, reuse the type of the original namespace. */
14099 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
14101 struct die_info *ext_die;
14102 struct dwarf2_cu *ext_cu = cu;
14104 ext_die = dwarf2_extension (die, &ext_cu);
14105 type = read_type_die (ext_die, ext_cu);
14107 /* EXT_CU may not be the same as CU.
14108 Ensure TYPE is recorded with CU in die_type_hash. */
14109 return set_die_type (die, type, cu);
14112 name = namespace_name (die, &is_anonymous, cu);
14114 /* Now build the name of the current namespace. */
14116 previous_prefix = determine_prefix (die, cu);
14117 if (previous_prefix[0] != '\0')
14118 name = typename_concat (&objfile->objfile_obstack,
14119 previous_prefix, name, 0, cu);
14121 /* Create the type. */
14122 type = init_type (TYPE_CODE_NAMESPACE, 0, 0, NULL,
14124 TYPE_NAME (type) = name;
14125 TYPE_TAG_NAME (type) = TYPE_NAME (type);
14127 return set_die_type (die, type, cu);
14130 /* Read a namespace scope. */
14133 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
14135 struct objfile *objfile = cu->objfile;
14138 /* Add a symbol associated to this if we haven't seen the namespace
14139 before. Also, add a using directive if it's an anonymous
14142 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
14146 type = read_type_die (die, cu);
14147 new_symbol (die, type, cu);
14149 namespace_name (die, &is_anonymous, cu);
14152 const char *previous_prefix = determine_prefix (die, cu);
14154 add_using_directive (using_directives (cu->language),
14155 previous_prefix, TYPE_NAME (type), NULL,
14156 NULL, NULL, 0, &objfile->objfile_obstack);
14160 if (die->child != NULL)
14162 struct die_info *child_die = die->child;
14164 while (child_die && child_die->tag)
14166 process_die (child_die, cu);
14167 child_die = sibling_die (child_die);
14172 /* Read a Fortran module as type. This DIE can be only a declaration used for
14173 imported module. Still we need that type as local Fortran "use ... only"
14174 declaration imports depend on the created type in determine_prefix. */
14176 static struct type *
14177 read_module_type (struct die_info *die, struct dwarf2_cu *cu)
14179 struct objfile *objfile = cu->objfile;
14180 const char *module_name;
14183 module_name = dwarf2_name (die, cu);
14185 complaint (&symfile_complaints,
14186 _("DW_TAG_module has no name, offset 0x%x"),
14187 die->offset.sect_off);
14188 type = init_type (TYPE_CODE_MODULE, 0, 0, module_name, objfile);
14190 /* determine_prefix uses TYPE_TAG_NAME. */
14191 TYPE_TAG_NAME (type) = TYPE_NAME (type);
14193 return set_die_type (die, type, cu);
14196 /* Read a Fortran module. */
14199 read_module (struct die_info *die, struct dwarf2_cu *cu)
14201 struct die_info *child_die = die->child;
14204 type = read_type_die (die, cu);
14205 new_symbol (die, type, cu);
14207 while (child_die && child_die->tag)
14209 process_die (child_die, cu);
14210 child_die = sibling_die (child_die);
14214 /* Return the name of the namespace represented by DIE. Set
14215 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
14218 static const char *
14219 namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
14221 struct die_info *current_die;
14222 const char *name = NULL;
14224 /* Loop through the extensions until we find a name. */
14226 for (current_die = die;
14227 current_die != NULL;
14228 current_die = dwarf2_extension (die, &cu))
14230 /* We don't use dwarf2_name here so that we can detect the absence
14231 of a name -> anonymous namespace. */
14232 name = dwarf2_string_attr (die, DW_AT_name, cu);
14238 /* Is it an anonymous namespace? */
14240 *is_anonymous = (name == NULL);
14242 name = CP_ANONYMOUS_NAMESPACE_STR;
14247 /* Extract all information from a DW_TAG_pointer_type DIE and add to
14248 the user defined type vector. */
14250 static struct type *
14251 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
14253 struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
14254 struct comp_unit_head *cu_header = &cu->header;
14256 struct attribute *attr_byte_size;
14257 struct attribute *attr_address_class;
14258 int byte_size, addr_class;
14259 struct type *target_type;
14261 target_type = die_type (die, cu);
14263 /* The die_type call above may have already set the type for this DIE. */
14264 type = get_die_type (die, cu);
14268 type = lookup_pointer_type (target_type);
14270 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
14271 if (attr_byte_size)
14272 byte_size = DW_UNSND (attr_byte_size);
14274 byte_size = cu_header->addr_size;
14276 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
14277 if (attr_address_class)
14278 addr_class = DW_UNSND (attr_address_class);
14280 addr_class = DW_ADDR_none;
14282 /* If the pointer size or address class is different than the
14283 default, create a type variant marked as such and set the
14284 length accordingly. */
14285 if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
14287 if (gdbarch_address_class_type_flags_p (gdbarch))
14291 type_flags = gdbarch_address_class_type_flags
14292 (gdbarch, byte_size, addr_class);
14293 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
14295 type = make_type_with_address_space (type, type_flags);
14297 else if (TYPE_LENGTH (type) != byte_size)
14299 complaint (&symfile_complaints,
14300 _("invalid pointer size %d"), byte_size);
14304 /* Should we also complain about unhandled address classes? */
14308 TYPE_LENGTH (type) = byte_size;
14309 return set_die_type (die, type, cu);
14312 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
14313 the user defined type vector. */
14315 static struct type *
14316 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
14319 struct type *to_type;
14320 struct type *domain;
14322 to_type = die_type (die, cu);
14323 domain = die_containing_type (die, cu);
14325 /* The calls above may have already set the type for this DIE. */
14326 type = get_die_type (die, cu);
14330 if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
14331 type = lookup_methodptr_type (to_type);
14332 else if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_FUNC)
14334 struct type *new_type = alloc_type (cu->objfile);
14336 smash_to_method_type (new_type, domain, TYPE_TARGET_TYPE (to_type),
14337 TYPE_FIELDS (to_type), TYPE_NFIELDS (to_type),
14338 TYPE_VARARGS (to_type));
14339 type = lookup_methodptr_type (new_type);
14342 type = lookup_memberptr_type (to_type, domain);
14344 return set_die_type (die, type, cu);
14347 /* Extract all information from a DW_TAG_reference_type DIE and add to
14348 the user defined type vector. */
14350 static struct type *
14351 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
14353 struct comp_unit_head *cu_header = &cu->header;
14354 struct type *type, *target_type;
14355 struct attribute *attr;
14357 target_type = die_type (die, cu);
14359 /* The die_type call above may have already set the type for this DIE. */
14360 type = get_die_type (die, cu);
14364 type = lookup_reference_type (target_type);
14365 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
14368 TYPE_LENGTH (type) = DW_UNSND (attr);
14372 TYPE_LENGTH (type) = cu_header->addr_size;
14374 return set_die_type (die, type, cu);
14377 /* Add the given cv-qualifiers to the element type of the array. GCC
14378 outputs DWARF type qualifiers that apply to an array, not the
14379 element type. But GDB relies on the array element type to carry
14380 the cv-qualifiers. This mimics section 6.7.3 of the C99
14383 static struct type *
14384 add_array_cv_type (struct die_info *die, struct dwarf2_cu *cu,
14385 struct type *base_type, int cnst, int voltl)
14387 struct type *el_type, *inner_array;
14389 base_type = copy_type (base_type);
14390 inner_array = base_type;
14392 while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
14394 TYPE_TARGET_TYPE (inner_array) =
14395 copy_type (TYPE_TARGET_TYPE (inner_array));
14396 inner_array = TYPE_TARGET_TYPE (inner_array);
14399 el_type = TYPE_TARGET_TYPE (inner_array);
14400 cnst |= TYPE_CONST (el_type);
14401 voltl |= TYPE_VOLATILE (el_type);
14402 TYPE_TARGET_TYPE (inner_array) = make_cv_type (cnst, voltl, el_type, NULL);
14404 return set_die_type (die, base_type, cu);
14407 static struct type *
14408 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
14410 struct type *base_type, *cv_type;
14412 base_type = die_type (die, cu);
14414 /* The die_type call above may have already set the type for this DIE. */
14415 cv_type = get_die_type (die, cu);
14419 /* In case the const qualifier is applied to an array type, the element type
14420 is so qualified, not the array type (section 6.7.3 of C99). */
14421 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
14422 return add_array_cv_type (die, cu, base_type, 1, 0);
14424 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
14425 return set_die_type (die, cv_type, cu);
14428 static struct type *
14429 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
14431 struct type *base_type, *cv_type;
14433 base_type = die_type (die, cu);
14435 /* The die_type call above may have already set the type for this DIE. */
14436 cv_type = get_die_type (die, cu);
14440 /* In case the volatile qualifier is applied to an array type, the
14441 element type is so qualified, not the array type (section 6.7.3
14443 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
14444 return add_array_cv_type (die, cu, base_type, 0, 1);
14446 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
14447 return set_die_type (die, cv_type, cu);
14450 /* Handle DW_TAG_restrict_type. */
14452 static struct type *
14453 read_tag_restrict_type (struct die_info *die, struct dwarf2_cu *cu)
14455 struct type *base_type, *cv_type;
14457 base_type = die_type (die, cu);
14459 /* The die_type call above may have already set the type for this DIE. */
14460 cv_type = get_die_type (die, cu);
14464 cv_type = make_restrict_type (base_type);
14465 return set_die_type (die, cv_type, cu);
14468 /* Handle DW_TAG_atomic_type. */
14470 static struct type *
14471 read_tag_atomic_type (struct die_info *die, struct dwarf2_cu *cu)
14473 struct type *base_type, *cv_type;
14475 base_type = die_type (die, cu);
14477 /* The die_type call above may have already set the type for this DIE. */
14478 cv_type = get_die_type (die, cu);
14482 cv_type = make_atomic_type (base_type);
14483 return set_die_type (die, cv_type, cu);
14486 /* Extract all information from a DW_TAG_string_type DIE and add to
14487 the user defined type vector. It isn't really a user defined type,
14488 but it behaves like one, with other DIE's using an AT_user_def_type
14489 attribute to reference it. */
14491 static struct type *
14492 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
14494 struct objfile *objfile = cu->objfile;
14495 struct gdbarch *gdbarch = get_objfile_arch (objfile);
14496 struct type *type, *range_type, *index_type, *char_type;
14497 struct attribute *attr;
14498 unsigned int length;
14500 attr = dwarf2_attr (die, DW_AT_string_length, cu);
14503 length = DW_UNSND (attr);
14507 /* Check for the DW_AT_byte_size attribute. */
14508 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
14511 length = DW_UNSND (attr);
14519 index_type = objfile_type (objfile)->builtin_int;
14520 range_type = create_static_range_type (NULL, index_type, 1, length);
14521 char_type = language_string_char_type (cu->language_defn, gdbarch);
14522 type = create_string_type (NULL, char_type, range_type);
14524 return set_die_type (die, type, cu);
14527 /* Assuming that DIE corresponds to a function, returns nonzero
14528 if the function is prototyped. */
14531 prototyped_function_p (struct die_info *die, struct dwarf2_cu *cu)
14533 struct attribute *attr;
14535 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
14536 if (attr && (DW_UNSND (attr) != 0))
14539 /* The DWARF standard implies that the DW_AT_prototyped attribute
14540 is only meaninful for C, but the concept also extends to other
14541 languages that allow unprototyped functions (Eg: Objective C).
14542 For all other languages, assume that functions are always
14544 if (cu->language != language_c
14545 && cu->language != language_objc
14546 && cu->language != language_opencl)
14549 /* RealView does not emit DW_AT_prototyped. We can not distinguish
14550 prototyped and unprototyped functions; default to prototyped,
14551 since that is more common in modern code (and RealView warns
14552 about unprototyped functions). */
14553 if (producer_is_realview (cu->producer))
14559 /* Handle DIES due to C code like:
14563 int (*funcp)(int a, long l);
14567 ('funcp' generates a DW_TAG_subroutine_type DIE). */
14569 static struct type *
14570 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
14572 struct objfile *objfile = cu->objfile;
14573 struct type *type; /* Type that this function returns. */
14574 struct type *ftype; /* Function that returns above type. */
14575 struct attribute *attr;
14577 type = die_type (die, cu);
14579 /* The die_type call above may have already set the type for this DIE. */
14580 ftype = get_die_type (die, cu);
14584 ftype = lookup_function_type (type);
14586 if (prototyped_function_p (die, cu))
14587 TYPE_PROTOTYPED (ftype) = 1;
14589 /* Store the calling convention in the type if it's available in
14590 the subroutine die. Otherwise set the calling convention to
14591 the default value DW_CC_normal. */
14592 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
14594 TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
14595 else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
14596 TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
14598 TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
14600 /* Record whether the function returns normally to its caller or not
14601 if the DWARF producer set that information. */
14602 attr = dwarf2_attr (die, DW_AT_noreturn, cu);
14603 if (attr && (DW_UNSND (attr) != 0))
14604 TYPE_NO_RETURN (ftype) = 1;
14606 /* We need to add the subroutine type to the die immediately so
14607 we don't infinitely recurse when dealing with parameters
14608 declared as the same subroutine type. */
14609 set_die_type (die, ftype, cu);
14611 if (die->child != NULL)
14613 struct type *void_type = objfile_type (objfile)->builtin_void;
14614 struct die_info *child_die;
14615 int nparams, iparams;
14617 /* Count the number of parameters.
14618 FIXME: GDB currently ignores vararg functions, but knows about
14619 vararg member functions. */
14621 child_die = die->child;
14622 while (child_die && child_die->tag)
14624 if (child_die->tag == DW_TAG_formal_parameter)
14626 else if (child_die->tag == DW_TAG_unspecified_parameters)
14627 TYPE_VARARGS (ftype) = 1;
14628 child_die = sibling_die (child_die);
14631 /* Allocate storage for parameters and fill them in. */
14632 TYPE_NFIELDS (ftype) = nparams;
14633 TYPE_FIELDS (ftype) = (struct field *)
14634 TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
14636 /* TYPE_FIELD_TYPE must never be NULL. Pre-fill the array to ensure it
14637 even if we error out during the parameters reading below. */
14638 for (iparams = 0; iparams < nparams; iparams++)
14639 TYPE_FIELD_TYPE (ftype, iparams) = void_type;
14642 child_die = die->child;
14643 while (child_die && child_die->tag)
14645 if (child_die->tag == DW_TAG_formal_parameter)
14647 struct type *arg_type;
14649 /* DWARF version 2 has no clean way to discern C++
14650 static and non-static member functions. G++ helps
14651 GDB by marking the first parameter for non-static
14652 member functions (which is the this pointer) as
14653 artificial. We pass this information to
14654 dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
14656 DWARF version 3 added DW_AT_object_pointer, which GCC
14657 4.5 does not yet generate. */
14658 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
14660 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
14663 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
14665 /* GCC/43521: In java, the formal parameter
14666 "this" is sometimes not marked with DW_AT_artificial. */
14667 if (cu->language == language_java)
14669 const char *name = dwarf2_name (child_die, cu);
14671 if (name && !strcmp (name, "this"))
14672 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 1;
14675 arg_type = die_type (child_die, cu);
14677 /* RealView does not mark THIS as const, which the testsuite
14678 expects. GCC marks THIS as const in method definitions,
14679 but not in the class specifications (GCC PR 43053). */
14680 if (cu->language == language_cplus && !TYPE_CONST (arg_type)
14681 && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
14684 struct dwarf2_cu *arg_cu = cu;
14685 const char *name = dwarf2_name (child_die, cu);
14687 attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
14690 /* If the compiler emits this, use it. */
14691 if (follow_die_ref (die, attr, &arg_cu) == child_die)
14694 else if (name && strcmp (name, "this") == 0)
14695 /* Function definitions will have the argument names. */
14697 else if (name == NULL && iparams == 0)
14698 /* Declarations may not have the names, so like
14699 elsewhere in GDB, assume an artificial first
14700 argument is "this". */
14704 arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
14708 TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
14711 child_die = sibling_die (child_die);
14718 static struct type *
14719 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
14721 struct objfile *objfile = cu->objfile;
14722 const char *name = NULL;
14723 struct type *this_type, *target_type;
14725 name = dwarf2_full_name (NULL, die, cu);
14726 this_type = init_type (TYPE_CODE_TYPEDEF, 0,
14727 TYPE_FLAG_TARGET_STUB, NULL, objfile);
14728 TYPE_NAME (this_type) = name;
14729 set_die_type (die, this_type, cu);
14730 target_type = die_type (die, cu);
14731 if (target_type != this_type)
14732 TYPE_TARGET_TYPE (this_type) = target_type;
14735 /* Self-referential typedefs are, it seems, not allowed by the DWARF
14736 spec and cause infinite loops in GDB. */
14737 complaint (&symfile_complaints,
14738 _("Self-referential DW_TAG_typedef "
14739 "- DIE at 0x%x [in module %s]"),
14740 die->offset.sect_off, objfile_name (objfile));
14741 TYPE_TARGET_TYPE (this_type) = NULL;
14746 /* Find a representation of a given base type and install
14747 it in the TYPE field of the die. */
14749 static struct type *
14750 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
14752 struct objfile *objfile = cu->objfile;
14754 struct attribute *attr;
14755 int encoding = 0, size = 0;
14757 enum type_code code = TYPE_CODE_INT;
14758 int type_flags = 0;
14759 struct type *target_type = NULL;
14761 attr = dwarf2_attr (die, DW_AT_encoding, cu);
14764 encoding = DW_UNSND (attr);
14766 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
14769 size = DW_UNSND (attr);
14771 name = dwarf2_name (die, cu);
14774 complaint (&symfile_complaints,
14775 _("DW_AT_name missing from DW_TAG_base_type"));
14780 case DW_ATE_address:
14781 /* Turn DW_ATE_address into a void * pointer. */
14782 code = TYPE_CODE_PTR;
14783 type_flags |= TYPE_FLAG_UNSIGNED;
14784 target_type = init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
14786 case DW_ATE_boolean:
14787 code = TYPE_CODE_BOOL;
14788 type_flags |= TYPE_FLAG_UNSIGNED;
14790 case DW_ATE_complex_float:
14791 code = TYPE_CODE_COMPLEX;
14792 target_type = init_type (TYPE_CODE_FLT, size / 2, 0, NULL, objfile);
14794 case DW_ATE_decimal_float:
14795 code = TYPE_CODE_DECFLOAT;
14798 code = TYPE_CODE_FLT;
14800 case DW_ATE_signed:
14802 case DW_ATE_unsigned:
14803 type_flags |= TYPE_FLAG_UNSIGNED;
14804 if (cu->language == language_fortran
14806 && startswith (name, "character("))
14807 code = TYPE_CODE_CHAR;
14809 case DW_ATE_signed_char:
14810 if (cu->language == language_ada || cu->language == language_m2
14811 || cu->language == language_pascal
14812 || cu->language == language_fortran)
14813 code = TYPE_CODE_CHAR;
14815 case DW_ATE_unsigned_char:
14816 if (cu->language == language_ada || cu->language == language_m2
14817 || cu->language == language_pascal
14818 || cu->language == language_fortran
14819 || cu->language == language_rust)
14820 code = TYPE_CODE_CHAR;
14821 type_flags |= TYPE_FLAG_UNSIGNED;
14824 /* We just treat this as an integer and then recognize the
14825 type by name elsewhere. */
14829 complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
14830 dwarf_type_encoding_name (encoding));
14834 type = init_type (code, size, type_flags, NULL, objfile);
14835 TYPE_NAME (type) = name;
14836 TYPE_TARGET_TYPE (type) = target_type;
14838 if (name && strcmp (name, "char") == 0)
14839 TYPE_NOSIGN (type) = 1;
14841 return set_die_type (die, type, cu);
14844 /* Parse dwarf attribute if it's a block, reference or constant and put the
14845 resulting value of the attribute into struct bound_prop.
14846 Returns 1 if ATTR could be resolved into PROP, 0 otherwise. */
14849 attr_to_dynamic_prop (const struct attribute *attr, struct die_info *die,
14850 struct dwarf2_cu *cu, struct dynamic_prop *prop)
14852 struct dwarf2_property_baton *baton;
14853 struct obstack *obstack = &cu->objfile->objfile_obstack;
14855 if (attr == NULL || prop == NULL)
14858 if (attr_form_is_block (attr))
14860 baton = XOBNEW (obstack, struct dwarf2_property_baton);
14861 baton->referenced_type = NULL;
14862 baton->locexpr.per_cu = cu->per_cu;
14863 baton->locexpr.size = DW_BLOCK (attr)->size;
14864 baton->locexpr.data = DW_BLOCK (attr)->data;
14865 prop->data.baton = baton;
14866 prop->kind = PROP_LOCEXPR;
14867 gdb_assert (prop->data.baton != NULL);
14869 else if (attr_form_is_ref (attr))
14871 struct dwarf2_cu *target_cu = cu;
14872 struct die_info *target_die;
14873 struct attribute *target_attr;
14875 target_die = follow_die_ref (die, attr, &target_cu);
14876 target_attr = dwarf2_attr (target_die, DW_AT_location, target_cu);
14877 if (target_attr == NULL)
14878 target_attr = dwarf2_attr (target_die, DW_AT_data_member_location,
14880 if (target_attr == NULL)
14883 switch (target_attr->name)
14885 case DW_AT_location:
14886 if (attr_form_is_section_offset (target_attr))
14888 baton = XOBNEW (obstack, struct dwarf2_property_baton);
14889 baton->referenced_type = die_type (target_die, target_cu);
14890 fill_in_loclist_baton (cu, &baton->loclist, target_attr);
14891 prop->data.baton = baton;
14892 prop->kind = PROP_LOCLIST;
14893 gdb_assert (prop->data.baton != NULL);
14895 else if (attr_form_is_block (target_attr))
14897 baton = XOBNEW (obstack, struct dwarf2_property_baton);
14898 baton->referenced_type = die_type (target_die, target_cu);
14899 baton->locexpr.per_cu = cu->per_cu;
14900 baton->locexpr.size = DW_BLOCK (target_attr)->size;
14901 baton->locexpr.data = DW_BLOCK (target_attr)->data;
14902 prop->data.baton = baton;
14903 prop->kind = PROP_LOCEXPR;
14904 gdb_assert (prop->data.baton != NULL);
14908 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
14909 "dynamic property");
14913 case DW_AT_data_member_location:
14917 if (!handle_data_member_location (target_die, target_cu,
14921 baton = XOBNEW (obstack, struct dwarf2_property_baton);
14922 baton->referenced_type = read_type_die (target_die->parent,
14924 baton->offset_info.offset = offset;
14925 baton->offset_info.type = die_type (target_die, target_cu);
14926 prop->data.baton = baton;
14927 prop->kind = PROP_ADDR_OFFSET;
14932 else if (attr_form_is_constant (attr))
14934 prop->data.const_val = dwarf2_get_attr_constant_value (attr, 0);
14935 prop->kind = PROP_CONST;
14939 dwarf2_invalid_attrib_class_complaint (dwarf_form_name (attr->form),
14940 dwarf2_name (die, cu));
14947 /* Read the given DW_AT_subrange DIE. */
14949 static struct type *
14950 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
14952 struct type *base_type, *orig_base_type;
14953 struct type *range_type;
14954 struct attribute *attr;
14955 struct dynamic_prop low, high;
14956 int low_default_is_valid;
14957 int high_bound_is_count = 0;
14959 LONGEST negative_mask;
14961 orig_base_type = die_type (die, cu);
14962 /* If ORIG_BASE_TYPE is a typedef, it will not be TYPE_UNSIGNED,
14963 whereas the real type might be. So, we use ORIG_BASE_TYPE when
14964 creating the range type, but we use the result of check_typedef
14965 when examining properties of the type. */
14966 base_type = check_typedef (orig_base_type);
14968 /* The die_type call above may have already set the type for this DIE. */
14969 range_type = get_die_type (die, cu);
14973 low.kind = PROP_CONST;
14974 high.kind = PROP_CONST;
14975 high.data.const_val = 0;
14977 /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
14978 omitting DW_AT_lower_bound. */
14979 switch (cu->language)
14982 case language_cplus:
14983 low.data.const_val = 0;
14984 low_default_is_valid = 1;
14986 case language_fortran:
14987 low.data.const_val = 1;
14988 low_default_is_valid = 1;
14991 case language_java:
14992 case language_objc:
14993 case language_rust:
14994 low.data.const_val = 0;
14995 low_default_is_valid = (cu->header.version >= 4);
14999 case language_pascal:
15000 low.data.const_val = 1;
15001 low_default_is_valid = (cu->header.version >= 4);
15004 low.data.const_val = 0;
15005 low_default_is_valid = 0;
15009 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
15011 attr_to_dynamic_prop (attr, die, cu, &low);
15012 else if (!low_default_is_valid)
15013 complaint (&symfile_complaints, _("Missing DW_AT_lower_bound "
15014 "- DIE at 0x%x [in module %s]"),
15015 die->offset.sect_off, objfile_name (cu->objfile));
15017 attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
15018 if (!attr_to_dynamic_prop (attr, die, cu, &high))
15020 attr = dwarf2_attr (die, DW_AT_count, cu);
15021 if (attr_to_dynamic_prop (attr, die, cu, &high))
15023 /* If bounds are constant do the final calculation here. */
15024 if (low.kind == PROP_CONST && high.kind == PROP_CONST)
15025 high.data.const_val = low.data.const_val + high.data.const_val - 1;
15027 high_bound_is_count = 1;
15031 /* Dwarf-2 specifications explicitly allows to create subrange types
15032 without specifying a base type.
15033 In that case, the base type must be set to the type of
15034 the lower bound, upper bound or count, in that order, if any of these
15035 three attributes references an object that has a type.
15036 If no base type is found, the Dwarf-2 specifications say that
15037 a signed integer type of size equal to the size of an address should
15039 For the following C code: `extern char gdb_int [];'
15040 GCC produces an empty range DIE.
15041 FIXME: muller/2010-05-28: Possible references to object for low bound,
15042 high bound or count are not yet handled by this code. */
15043 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
15045 struct objfile *objfile = cu->objfile;
15046 struct gdbarch *gdbarch = get_objfile_arch (objfile);
15047 int addr_size = gdbarch_addr_bit (gdbarch) /8;
15048 struct type *int_type = objfile_type (objfile)->builtin_int;
15050 /* Test "int", "long int", and "long long int" objfile types,
15051 and select the first one having a size above or equal to the
15052 architecture address size. */
15053 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
15054 base_type = int_type;
15057 int_type = objfile_type (objfile)->builtin_long;
15058 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
15059 base_type = int_type;
15062 int_type = objfile_type (objfile)->builtin_long_long;
15063 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
15064 base_type = int_type;
15069 /* Normally, the DWARF producers are expected to use a signed
15070 constant form (Eg. DW_FORM_sdata) to express negative bounds.
15071 But this is unfortunately not always the case, as witnessed
15072 with GCC, for instance, where the ambiguous DW_FORM_dataN form
15073 is used instead. To work around that ambiguity, we treat
15074 the bounds as signed, and thus sign-extend their values, when
15075 the base type is signed. */
15077 -((LONGEST) 1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1));
15078 if (low.kind == PROP_CONST
15079 && !TYPE_UNSIGNED (base_type) && (low.data.const_val & negative_mask))
15080 low.data.const_val |= negative_mask;
15081 if (high.kind == PROP_CONST
15082 && !TYPE_UNSIGNED (base_type) && (high.data.const_val & negative_mask))
15083 high.data.const_val |= negative_mask;
15085 range_type = create_range_type (NULL, orig_base_type, &low, &high);
15087 if (high_bound_is_count)
15088 TYPE_RANGE_DATA (range_type)->flag_upper_bound_is_count = 1;
15090 /* Ada expects an empty array on no boundary attributes. */
15091 if (attr == NULL && cu->language != language_ada)
15092 TYPE_HIGH_BOUND_KIND (range_type) = PROP_UNDEFINED;
15094 name = dwarf2_name (die, cu);
15096 TYPE_NAME (range_type) = name;
15098 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
15100 TYPE_LENGTH (range_type) = DW_UNSND (attr);
15102 set_die_type (die, range_type, cu);
15104 /* set_die_type should be already done. */
15105 set_descriptive_type (range_type, die, cu);
15110 static struct type *
15111 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
15115 /* For now, we only support the C meaning of an unspecified type: void. */
15117 type = init_type (TYPE_CODE_VOID, 0, 0, NULL, cu->objfile);
15118 TYPE_NAME (type) = dwarf2_name (die, cu);
15120 return set_die_type (die, type, cu);
15123 /* Read a single die and all its descendents. Set the die's sibling
15124 field to NULL; set other fields in the die correctly, and set all
15125 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
15126 location of the info_ptr after reading all of those dies. PARENT
15127 is the parent of the die in question. */
15129 static struct die_info *
15130 read_die_and_children (const struct die_reader_specs *reader,
15131 const gdb_byte *info_ptr,
15132 const gdb_byte **new_info_ptr,
15133 struct die_info *parent)
15135 struct die_info *die;
15136 const gdb_byte *cur_ptr;
15139 cur_ptr = read_full_die_1 (reader, &die, info_ptr, &has_children, 0);
15142 *new_info_ptr = cur_ptr;
15145 store_in_ref_table (die, reader->cu);
15148 die->child = read_die_and_siblings_1 (reader, cur_ptr, new_info_ptr, die);
15152 *new_info_ptr = cur_ptr;
15155 die->sibling = NULL;
15156 die->parent = parent;
15160 /* Read a die, all of its descendents, and all of its siblings; set
15161 all of the fields of all of the dies correctly. Arguments are as
15162 in read_die_and_children. */
15164 static struct die_info *
15165 read_die_and_siblings_1 (const struct die_reader_specs *reader,
15166 const gdb_byte *info_ptr,
15167 const gdb_byte **new_info_ptr,
15168 struct die_info *parent)
15170 struct die_info *first_die, *last_sibling;
15171 const gdb_byte *cur_ptr;
15173 cur_ptr = info_ptr;
15174 first_die = last_sibling = NULL;
15178 struct die_info *die
15179 = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
15183 *new_info_ptr = cur_ptr;
15190 last_sibling->sibling = die;
15192 last_sibling = die;
15196 /* Read a die, all of its descendents, and all of its siblings; set
15197 all of the fields of all of the dies correctly. Arguments are as
15198 in read_die_and_children.
15199 This the main entry point for reading a DIE and all its children. */
15201 static struct die_info *
15202 read_die_and_siblings (const struct die_reader_specs *reader,
15203 const gdb_byte *info_ptr,
15204 const gdb_byte **new_info_ptr,
15205 struct die_info *parent)
15207 struct die_info *die = read_die_and_siblings_1 (reader, info_ptr,
15208 new_info_ptr, parent);
15210 if (dwarf_die_debug)
15212 fprintf_unfiltered (gdb_stdlog,
15213 "Read die from %s@0x%x of %s:\n",
15214 get_section_name (reader->die_section),
15215 (unsigned) (info_ptr - reader->die_section->buffer),
15216 bfd_get_filename (reader->abfd));
15217 dump_die (die, dwarf_die_debug);
15223 /* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
15225 The caller is responsible for filling in the extra attributes
15226 and updating (*DIEP)->num_attrs.
15227 Set DIEP to point to a newly allocated die with its information,
15228 except for its child, sibling, and parent fields.
15229 Set HAS_CHILDREN to tell whether the die has children or not. */
15231 static const gdb_byte *
15232 read_full_die_1 (const struct die_reader_specs *reader,
15233 struct die_info **diep, const gdb_byte *info_ptr,
15234 int *has_children, int num_extra_attrs)
15236 unsigned int abbrev_number, bytes_read, i;
15237 sect_offset offset;
15238 struct abbrev_info *abbrev;
15239 struct die_info *die;
15240 struct dwarf2_cu *cu = reader->cu;
15241 bfd *abfd = reader->abfd;
15243 offset.sect_off = info_ptr - reader->buffer;
15244 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
15245 info_ptr += bytes_read;
15246 if (!abbrev_number)
15253 abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
15255 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
15257 bfd_get_filename (abfd));
15259 die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
15260 die->offset = offset;
15261 die->tag = abbrev->tag;
15262 die->abbrev = abbrev_number;
15264 /* Make the result usable.
15265 The caller needs to update num_attrs after adding the extra
15267 die->num_attrs = abbrev->num_attrs;
15269 for (i = 0; i < abbrev->num_attrs; ++i)
15270 info_ptr = read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
15274 *has_children = abbrev->has_children;
15278 /* Read a die and all its attributes.
15279 Set DIEP to point to a newly allocated die with its information,
15280 except for its child, sibling, and parent fields.
15281 Set HAS_CHILDREN to tell whether the die has children or not. */
15283 static const gdb_byte *
15284 read_full_die (const struct die_reader_specs *reader,
15285 struct die_info **diep, const gdb_byte *info_ptr,
15288 const gdb_byte *result;
15290 result = read_full_die_1 (reader, diep, info_ptr, has_children, 0);
15292 if (dwarf_die_debug)
15294 fprintf_unfiltered (gdb_stdlog,
15295 "Read die from %s@0x%x of %s:\n",
15296 get_section_name (reader->die_section),
15297 (unsigned) (info_ptr - reader->die_section->buffer),
15298 bfd_get_filename (reader->abfd));
15299 dump_die (*diep, dwarf_die_debug);
15305 /* Abbreviation tables.
15307 In DWARF version 2, the description of the debugging information is
15308 stored in a separate .debug_abbrev section. Before we read any
15309 dies from a section we read in all abbreviations and install them
15310 in a hash table. */
15312 /* Allocate space for a struct abbrev_info object in ABBREV_TABLE. */
15314 static struct abbrev_info *
15315 abbrev_table_alloc_abbrev (struct abbrev_table *abbrev_table)
15317 struct abbrev_info *abbrev;
15319 abbrev = XOBNEW (&abbrev_table->abbrev_obstack, struct abbrev_info);
15320 memset (abbrev, 0, sizeof (struct abbrev_info));
15325 /* Add an abbreviation to the table. */
15328 abbrev_table_add_abbrev (struct abbrev_table *abbrev_table,
15329 unsigned int abbrev_number,
15330 struct abbrev_info *abbrev)
15332 unsigned int hash_number;
15334 hash_number = abbrev_number % ABBREV_HASH_SIZE;
15335 abbrev->next = abbrev_table->abbrevs[hash_number];
15336 abbrev_table->abbrevs[hash_number] = abbrev;
15339 /* Look up an abbrev in the table.
15340 Returns NULL if the abbrev is not found. */
15342 static struct abbrev_info *
15343 abbrev_table_lookup_abbrev (const struct abbrev_table *abbrev_table,
15344 unsigned int abbrev_number)
15346 unsigned int hash_number;
15347 struct abbrev_info *abbrev;
15349 hash_number = abbrev_number % ABBREV_HASH_SIZE;
15350 abbrev = abbrev_table->abbrevs[hash_number];
15354 if (abbrev->number == abbrev_number)
15356 abbrev = abbrev->next;
15361 /* Read in an abbrev table. */
15363 static struct abbrev_table *
15364 abbrev_table_read_table (struct dwarf2_section_info *section,
15365 sect_offset offset)
15367 struct objfile *objfile = dwarf2_per_objfile->objfile;
15368 bfd *abfd = get_section_bfd_owner (section);
15369 struct abbrev_table *abbrev_table;
15370 const gdb_byte *abbrev_ptr;
15371 struct abbrev_info *cur_abbrev;
15372 unsigned int abbrev_number, bytes_read, abbrev_name;
15373 unsigned int abbrev_form;
15374 struct attr_abbrev *cur_attrs;
15375 unsigned int allocated_attrs;
15377 abbrev_table = XNEW (struct abbrev_table);
15378 abbrev_table->offset = offset;
15379 obstack_init (&abbrev_table->abbrev_obstack);
15380 abbrev_table->abbrevs =
15381 XOBNEWVEC (&abbrev_table->abbrev_obstack, struct abbrev_info *,
15383 memset (abbrev_table->abbrevs, 0,
15384 ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
15386 dwarf2_read_section (objfile, section);
15387 abbrev_ptr = section->buffer + offset.sect_off;
15388 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15389 abbrev_ptr += bytes_read;
15391 allocated_attrs = ATTR_ALLOC_CHUNK;
15392 cur_attrs = XNEWVEC (struct attr_abbrev, allocated_attrs);
15394 /* Loop until we reach an abbrev number of 0. */
15395 while (abbrev_number)
15397 cur_abbrev = abbrev_table_alloc_abbrev (abbrev_table);
15399 /* read in abbrev header */
15400 cur_abbrev->number = abbrev_number;
15402 = (enum dwarf_tag) read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15403 abbrev_ptr += bytes_read;
15404 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
15407 /* now read in declarations */
15408 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15409 abbrev_ptr += bytes_read;
15410 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15411 abbrev_ptr += bytes_read;
15412 while (abbrev_name)
15414 if (cur_abbrev->num_attrs == allocated_attrs)
15416 allocated_attrs += ATTR_ALLOC_CHUNK;
15418 = XRESIZEVEC (struct attr_abbrev, cur_attrs, allocated_attrs);
15421 cur_attrs[cur_abbrev->num_attrs].name
15422 = (enum dwarf_attribute) abbrev_name;
15423 cur_attrs[cur_abbrev->num_attrs++].form
15424 = (enum dwarf_form) abbrev_form;
15425 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15426 abbrev_ptr += bytes_read;
15427 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15428 abbrev_ptr += bytes_read;
15431 cur_abbrev->attrs =
15432 XOBNEWVEC (&abbrev_table->abbrev_obstack, struct attr_abbrev,
15433 cur_abbrev->num_attrs);
15434 memcpy (cur_abbrev->attrs, cur_attrs,
15435 cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
15437 abbrev_table_add_abbrev (abbrev_table, abbrev_number, cur_abbrev);
15439 /* Get next abbreviation.
15440 Under Irix6 the abbreviations for a compilation unit are not
15441 always properly terminated with an abbrev number of 0.
15442 Exit loop if we encounter an abbreviation which we have
15443 already read (which means we are about to read the abbreviations
15444 for the next compile unit) or if the end of the abbreviation
15445 table is reached. */
15446 if ((unsigned int) (abbrev_ptr - section->buffer) >= section->size)
15448 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15449 abbrev_ptr += bytes_read;
15450 if (abbrev_table_lookup_abbrev (abbrev_table, abbrev_number) != NULL)
15455 return abbrev_table;
15458 /* Free the resources held by ABBREV_TABLE. */
15461 abbrev_table_free (struct abbrev_table *abbrev_table)
15463 obstack_free (&abbrev_table->abbrev_obstack, NULL);
15464 xfree (abbrev_table);
15467 /* Same as abbrev_table_free but as a cleanup.
15468 We pass in a pointer to the pointer to the table so that we can
15469 set the pointer to NULL when we're done. It also simplifies
15470 build_type_psymtabs_1. */
15473 abbrev_table_free_cleanup (void *table_ptr)
15475 struct abbrev_table **abbrev_table_ptr = (struct abbrev_table **) table_ptr;
15477 if (*abbrev_table_ptr != NULL)
15478 abbrev_table_free (*abbrev_table_ptr);
15479 *abbrev_table_ptr = NULL;
15482 /* Read the abbrev table for CU from ABBREV_SECTION. */
15485 dwarf2_read_abbrevs (struct dwarf2_cu *cu,
15486 struct dwarf2_section_info *abbrev_section)
15489 abbrev_table_read_table (abbrev_section, cu->header.abbrev_offset);
15492 /* Release the memory used by the abbrev table for a compilation unit. */
15495 dwarf2_free_abbrev_table (void *ptr_to_cu)
15497 struct dwarf2_cu *cu = (struct dwarf2_cu *) ptr_to_cu;
15499 if (cu->abbrev_table != NULL)
15500 abbrev_table_free (cu->abbrev_table);
15501 /* Set this to NULL so that we SEGV if we try to read it later,
15502 and also because free_comp_unit verifies this is NULL. */
15503 cu->abbrev_table = NULL;
15506 /* Returns nonzero if TAG represents a type that we might generate a partial
15510 is_type_tag_for_partial (int tag)
15515 /* Some types that would be reasonable to generate partial symbols for,
15516 that we don't at present. */
15517 case DW_TAG_array_type:
15518 case DW_TAG_file_type:
15519 case DW_TAG_ptr_to_member_type:
15520 case DW_TAG_set_type:
15521 case DW_TAG_string_type:
15522 case DW_TAG_subroutine_type:
15524 case DW_TAG_base_type:
15525 case DW_TAG_class_type:
15526 case DW_TAG_interface_type:
15527 case DW_TAG_enumeration_type:
15528 case DW_TAG_structure_type:
15529 case DW_TAG_subrange_type:
15530 case DW_TAG_typedef:
15531 case DW_TAG_union_type:
15538 /* Load all DIEs that are interesting for partial symbols into memory. */
15540 static struct partial_die_info *
15541 load_partial_dies (const struct die_reader_specs *reader,
15542 const gdb_byte *info_ptr, int building_psymtab)
15544 struct dwarf2_cu *cu = reader->cu;
15545 struct objfile *objfile = cu->objfile;
15546 struct partial_die_info *part_die;
15547 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
15548 struct abbrev_info *abbrev;
15549 unsigned int bytes_read;
15550 unsigned int load_all = 0;
15551 int nesting_level = 1;
15556 gdb_assert (cu->per_cu != NULL);
15557 if (cu->per_cu->load_all_dies)
15561 = htab_create_alloc_ex (cu->header.length / 12,
15565 &cu->comp_unit_obstack,
15566 hashtab_obstack_allocate,
15567 dummy_obstack_deallocate);
15569 part_die = XOBNEW (&cu->comp_unit_obstack, struct partial_die_info);
15573 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
15575 /* A NULL abbrev means the end of a series of children. */
15576 if (abbrev == NULL)
15578 if (--nesting_level == 0)
15580 /* PART_DIE was probably the last thing allocated on the
15581 comp_unit_obstack, so we could call obstack_free
15582 here. We don't do that because the waste is small,
15583 and will be cleaned up when we're done with this
15584 compilation unit. This way, we're also more robust
15585 against other users of the comp_unit_obstack. */
15588 info_ptr += bytes_read;
15589 last_die = parent_die;
15590 parent_die = parent_die->die_parent;
15594 /* Check for template arguments. We never save these; if
15595 they're seen, we just mark the parent, and go on our way. */
15596 if (parent_die != NULL
15597 && cu->language == language_cplus
15598 && (abbrev->tag == DW_TAG_template_type_param
15599 || abbrev->tag == DW_TAG_template_value_param))
15601 parent_die->has_template_arguments = 1;
15605 /* We don't need a partial DIE for the template argument. */
15606 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
15611 /* We only recurse into c++ subprograms looking for template arguments.
15612 Skip their other children. */
15614 && cu->language == language_cplus
15615 && parent_die != NULL
15616 && parent_die->tag == DW_TAG_subprogram)
15618 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
15622 /* Check whether this DIE is interesting enough to save. Normally
15623 we would not be interested in members here, but there may be
15624 later variables referencing them via DW_AT_specification (for
15625 static members). */
15627 && !is_type_tag_for_partial (abbrev->tag)
15628 && abbrev->tag != DW_TAG_constant
15629 && abbrev->tag != DW_TAG_enumerator
15630 && abbrev->tag != DW_TAG_subprogram
15631 && abbrev->tag != DW_TAG_lexical_block
15632 && abbrev->tag != DW_TAG_variable
15633 && abbrev->tag != DW_TAG_namespace
15634 && abbrev->tag != DW_TAG_module
15635 && abbrev->tag != DW_TAG_member
15636 && abbrev->tag != DW_TAG_imported_unit
15637 && abbrev->tag != DW_TAG_imported_declaration)
15639 /* Otherwise we skip to the next sibling, if any. */
15640 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
15644 info_ptr = read_partial_die (reader, part_die, abbrev, bytes_read,
15647 /* This two-pass algorithm for processing partial symbols has a
15648 high cost in cache pressure. Thus, handle some simple cases
15649 here which cover the majority of C partial symbols. DIEs
15650 which neither have specification tags in them, nor could have
15651 specification tags elsewhere pointing at them, can simply be
15652 processed and discarded.
15654 This segment is also optional; scan_partial_symbols and
15655 add_partial_symbol will handle these DIEs if we chain
15656 them in normally. When compilers which do not emit large
15657 quantities of duplicate debug information are more common,
15658 this code can probably be removed. */
15660 /* Any complete simple types at the top level (pretty much all
15661 of them, for a language without namespaces), can be processed
15663 if (parent_die == NULL
15664 && part_die->has_specification == 0
15665 && part_die->is_declaration == 0
15666 && ((part_die->tag == DW_TAG_typedef && !part_die->has_children)
15667 || part_die->tag == DW_TAG_base_type
15668 || part_die->tag == DW_TAG_subrange_type))
15670 if (building_psymtab && part_die->name != NULL)
15671 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
15672 VAR_DOMAIN, LOC_TYPEDEF,
15673 &objfile->static_psymbols,
15674 0, cu->language, objfile);
15675 info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
15679 /* The exception for DW_TAG_typedef with has_children above is
15680 a workaround of GCC PR debug/47510. In the case of this complaint
15681 type_name_no_tag_or_error will error on such types later.
15683 GDB skipped children of DW_TAG_typedef by the shortcut above and then
15684 it could not find the child DIEs referenced later, this is checked
15685 above. In correct DWARF DW_TAG_typedef should have no children. */
15687 if (part_die->tag == DW_TAG_typedef && part_die->has_children)
15688 complaint (&symfile_complaints,
15689 _("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
15690 "- DIE at 0x%x [in module %s]"),
15691 part_die->offset.sect_off, objfile_name (objfile));
15693 /* If we're at the second level, and we're an enumerator, and
15694 our parent has no specification (meaning possibly lives in a
15695 namespace elsewhere), then we can add the partial symbol now
15696 instead of queueing it. */
15697 if (part_die->tag == DW_TAG_enumerator
15698 && parent_die != NULL
15699 && parent_die->die_parent == NULL
15700 && parent_die->tag == DW_TAG_enumeration_type
15701 && parent_die->has_specification == 0)
15703 if (part_die->name == NULL)
15704 complaint (&symfile_complaints,
15705 _("malformed enumerator DIE ignored"));
15706 else if (building_psymtab)
15707 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
15708 VAR_DOMAIN, LOC_CONST,
15709 (cu->language == language_cplus
15710 || cu->language == language_java)
15711 ? &objfile->global_psymbols
15712 : &objfile->static_psymbols,
15713 0, cu->language, objfile);
15715 info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
15719 /* We'll save this DIE so link it in. */
15720 part_die->die_parent = parent_die;
15721 part_die->die_sibling = NULL;
15722 part_die->die_child = NULL;
15724 if (last_die && last_die == parent_die)
15725 last_die->die_child = part_die;
15727 last_die->die_sibling = part_die;
15729 last_die = part_die;
15731 if (first_die == NULL)
15732 first_die = part_die;
15734 /* Maybe add the DIE to the hash table. Not all DIEs that we
15735 find interesting need to be in the hash table, because we
15736 also have the parent/sibling/child chains; only those that we
15737 might refer to by offset later during partial symbol reading.
15739 For now this means things that might have be the target of a
15740 DW_AT_specification, DW_AT_abstract_origin, or
15741 DW_AT_extension. DW_AT_extension will refer only to
15742 namespaces; DW_AT_abstract_origin refers to functions (and
15743 many things under the function DIE, but we do not recurse
15744 into function DIEs during partial symbol reading) and
15745 possibly variables as well; DW_AT_specification refers to
15746 declarations. Declarations ought to have the DW_AT_declaration
15747 flag. It happens that GCC forgets to put it in sometimes, but
15748 only for functions, not for types.
15750 Adding more things than necessary to the hash table is harmless
15751 except for the performance cost. Adding too few will result in
15752 wasted time in find_partial_die, when we reread the compilation
15753 unit with load_all_dies set. */
15756 || abbrev->tag == DW_TAG_constant
15757 || abbrev->tag == DW_TAG_subprogram
15758 || abbrev->tag == DW_TAG_variable
15759 || abbrev->tag == DW_TAG_namespace
15760 || part_die->is_declaration)
15764 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
15765 part_die->offset.sect_off, INSERT);
15769 part_die = XOBNEW (&cu->comp_unit_obstack, struct partial_die_info);
15771 /* For some DIEs we want to follow their children (if any). For C
15772 we have no reason to follow the children of structures; for other
15773 languages we have to, so that we can get at method physnames
15774 to infer fully qualified class names, for DW_AT_specification,
15775 and for C++ template arguments. For C++, we also look one level
15776 inside functions to find template arguments (if the name of the
15777 function does not already contain the template arguments).
15779 For Ada, we need to scan the children of subprograms and lexical
15780 blocks as well because Ada allows the definition of nested
15781 entities that could be interesting for the debugger, such as
15782 nested subprograms for instance. */
15783 if (last_die->has_children
15785 || last_die->tag == DW_TAG_namespace
15786 || last_die->tag == DW_TAG_module
15787 || last_die->tag == DW_TAG_enumeration_type
15788 || (cu->language == language_cplus
15789 && last_die->tag == DW_TAG_subprogram
15790 && (last_die->name == NULL
15791 || strchr (last_die->name, '<') == NULL))
15792 || (cu->language != language_c
15793 && (last_die->tag == DW_TAG_class_type
15794 || last_die->tag == DW_TAG_interface_type
15795 || last_die->tag == DW_TAG_structure_type
15796 || last_die->tag == DW_TAG_union_type))
15797 || (cu->language == language_ada
15798 && (last_die->tag == DW_TAG_subprogram
15799 || last_die->tag == DW_TAG_lexical_block))))
15802 parent_die = last_die;
15806 /* Otherwise we skip to the next sibling, if any. */
15807 info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
15809 /* Back to the top, do it again. */
15813 /* Read a minimal amount of information into the minimal die structure. */
15815 static const gdb_byte *
15816 read_partial_die (const struct die_reader_specs *reader,
15817 struct partial_die_info *part_die,
15818 struct abbrev_info *abbrev, unsigned int abbrev_len,
15819 const gdb_byte *info_ptr)
15821 struct dwarf2_cu *cu = reader->cu;
15822 struct objfile *objfile = cu->objfile;
15823 const gdb_byte *buffer = reader->buffer;
15825 struct attribute attr;
15826 int has_low_pc_attr = 0;
15827 int has_high_pc_attr = 0;
15828 int high_pc_relative = 0;
15830 memset (part_die, 0, sizeof (struct partial_die_info));
15832 part_die->offset.sect_off = info_ptr - buffer;
15834 info_ptr += abbrev_len;
15836 if (abbrev == NULL)
15839 part_die->tag = abbrev->tag;
15840 part_die->has_children = abbrev->has_children;
15842 for (i = 0; i < abbrev->num_attrs; ++i)
15844 info_ptr = read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
15846 /* Store the data if it is of an attribute we want to keep in a
15847 partial symbol table. */
15851 switch (part_die->tag)
15853 case DW_TAG_compile_unit:
15854 case DW_TAG_partial_unit:
15855 case DW_TAG_type_unit:
15856 /* Compilation units have a DW_AT_name that is a filename, not
15857 a source language identifier. */
15858 case DW_TAG_enumeration_type:
15859 case DW_TAG_enumerator:
15860 /* These tags always have simple identifiers already; no need
15861 to canonicalize them. */
15862 part_die->name = DW_STRING (&attr);
15866 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
15867 &objfile->per_bfd->storage_obstack);
15871 case DW_AT_linkage_name:
15872 case DW_AT_MIPS_linkage_name:
15873 /* Note that both forms of linkage name might appear. We
15874 assume they will be the same, and we only store the last
15876 if (cu->language == language_ada)
15877 part_die->name = DW_STRING (&attr);
15878 part_die->linkage_name = DW_STRING (&attr);
15881 has_low_pc_attr = 1;
15882 part_die->lowpc = attr_value_as_address (&attr);
15884 case DW_AT_high_pc:
15885 has_high_pc_attr = 1;
15886 part_die->highpc = attr_value_as_address (&attr);
15887 if (cu->header.version >= 4 && attr_form_is_constant (&attr))
15888 high_pc_relative = 1;
15890 case DW_AT_location:
15891 /* Support the .debug_loc offsets. */
15892 if (attr_form_is_block (&attr))
15894 part_die->d.locdesc = DW_BLOCK (&attr);
15896 else if (attr_form_is_section_offset (&attr))
15898 dwarf2_complex_location_expr_complaint ();
15902 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
15903 "partial symbol information");
15906 case DW_AT_external:
15907 part_die->is_external = DW_UNSND (&attr);
15909 case DW_AT_declaration:
15910 part_die->is_declaration = DW_UNSND (&attr);
15913 part_die->has_type = 1;
15915 case DW_AT_abstract_origin:
15916 case DW_AT_specification:
15917 case DW_AT_extension:
15918 part_die->has_specification = 1;
15919 part_die->spec_offset = dwarf2_get_ref_die_offset (&attr);
15920 part_die->spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
15921 || cu->per_cu->is_dwz);
15923 case DW_AT_sibling:
15924 /* Ignore absolute siblings, they might point outside of
15925 the current compile unit. */
15926 if (attr.form == DW_FORM_ref_addr)
15927 complaint (&symfile_complaints,
15928 _("ignoring absolute DW_AT_sibling"));
15931 unsigned int off = dwarf2_get_ref_die_offset (&attr).sect_off;
15932 const gdb_byte *sibling_ptr = buffer + off;
15934 if (sibling_ptr < info_ptr)
15935 complaint (&symfile_complaints,
15936 _("DW_AT_sibling points backwards"));
15937 else if (sibling_ptr > reader->buffer_end)
15938 dwarf2_section_buffer_overflow_complaint (reader->die_section);
15940 part_die->sibling = sibling_ptr;
15943 case DW_AT_byte_size:
15944 part_die->has_byte_size = 1;
15946 case DW_AT_const_value:
15947 part_die->has_const_value = 1;
15949 case DW_AT_calling_convention:
15950 /* DWARF doesn't provide a way to identify a program's source-level
15951 entry point. DW_AT_calling_convention attributes are only meant
15952 to describe functions' calling conventions.
15954 However, because it's a necessary piece of information in
15955 Fortran, and because DW_CC_program is the only piece of debugging
15956 information whose definition refers to a 'main program' at all,
15957 several compilers have begun marking Fortran main programs with
15958 DW_CC_program --- even when those functions use the standard
15959 calling conventions.
15961 So until DWARF specifies a way to provide this information and
15962 compilers pick up the new representation, we'll support this
15964 if (DW_UNSND (&attr) == DW_CC_program
15965 && cu->language == language_fortran
15966 && part_die->name != NULL)
15967 set_objfile_main_name (objfile, part_die->name, language_fortran);
15970 if (DW_UNSND (&attr) == DW_INL_inlined
15971 || DW_UNSND (&attr) == DW_INL_declared_inlined)
15972 part_die->may_be_inlined = 1;
15976 if (part_die->tag == DW_TAG_imported_unit)
15978 part_die->d.offset = dwarf2_get_ref_die_offset (&attr);
15979 part_die->is_dwz = (attr.form == DW_FORM_GNU_ref_alt
15980 || cu->per_cu->is_dwz);
15989 if (high_pc_relative)
15990 part_die->highpc += part_die->lowpc;
15992 if (has_low_pc_attr && has_high_pc_attr)
15994 /* When using the GNU linker, .gnu.linkonce. sections are used to
15995 eliminate duplicate copies of functions and vtables and such.
15996 The linker will arbitrarily choose one and discard the others.
15997 The AT_*_pc values for such functions refer to local labels in
15998 these sections. If the section from that file was discarded, the
15999 labels are not in the output, so the relocs get a value of 0.
16000 If this is a discarded function, mark the pc bounds as invalid,
16001 so that GDB will ignore it. */
16002 if (part_die->lowpc == 0 && !dwarf2_per_objfile->has_section_at_zero)
16004 struct gdbarch *gdbarch = get_objfile_arch (objfile);
16006 complaint (&symfile_complaints,
16007 _("DW_AT_low_pc %s is zero "
16008 "for DIE at 0x%x [in module %s]"),
16009 paddress (gdbarch, part_die->lowpc),
16010 part_die->offset.sect_off, objfile_name (objfile));
16012 /* dwarf2_get_pc_bounds has also the strict low < high requirement. */
16013 else if (part_die->lowpc >= part_die->highpc)
16015 struct gdbarch *gdbarch = get_objfile_arch (objfile);
16017 complaint (&symfile_complaints,
16018 _("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
16019 "for DIE at 0x%x [in module %s]"),
16020 paddress (gdbarch, part_die->lowpc),
16021 paddress (gdbarch, part_die->highpc),
16022 part_die->offset.sect_off, objfile_name (objfile));
16025 part_die->has_pc_info = 1;
16031 /* Find a cached partial DIE at OFFSET in CU. */
16033 static struct partial_die_info *
16034 find_partial_die_in_comp_unit (sect_offset offset, struct dwarf2_cu *cu)
16036 struct partial_die_info *lookup_die = NULL;
16037 struct partial_die_info part_die;
16039 part_die.offset = offset;
16040 lookup_die = ((struct partial_die_info *)
16041 htab_find_with_hash (cu->partial_dies, &part_die,
16047 /* Find a partial DIE at OFFSET, which may or may not be in CU,
16048 except in the case of .debug_types DIEs which do not reference
16049 outside their CU (they do however referencing other types via
16050 DW_FORM_ref_sig8). */
16052 static struct partial_die_info *
16053 find_partial_die (sect_offset offset, int offset_in_dwz, struct dwarf2_cu *cu)
16055 struct objfile *objfile = cu->objfile;
16056 struct dwarf2_per_cu_data *per_cu = NULL;
16057 struct partial_die_info *pd = NULL;
16059 if (offset_in_dwz == cu->per_cu->is_dwz
16060 && offset_in_cu_p (&cu->header, offset))
16062 pd = find_partial_die_in_comp_unit (offset, cu);
16065 /* We missed recording what we needed.
16066 Load all dies and try again. */
16067 per_cu = cu->per_cu;
16071 /* TUs don't reference other CUs/TUs (except via type signatures). */
16072 if (cu->per_cu->is_debug_types)
16074 error (_("Dwarf Error: Type Unit at offset 0x%lx contains"
16075 " external reference to offset 0x%lx [in module %s].\n"),
16076 (long) cu->header.offset.sect_off, (long) offset.sect_off,
16077 bfd_get_filename (objfile->obfd));
16079 per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
16082 if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
16083 load_partial_comp_unit (per_cu);
16085 per_cu->cu->last_used = 0;
16086 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
16089 /* If we didn't find it, and not all dies have been loaded,
16090 load them all and try again. */
16092 if (pd == NULL && per_cu->load_all_dies == 0)
16094 per_cu->load_all_dies = 1;
16096 /* This is nasty. When we reread the DIEs, somewhere up the call chain
16097 THIS_CU->cu may already be in use. So we can't just free it and
16098 replace its DIEs with the ones we read in. Instead, we leave those
16099 DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
16100 and clobber THIS_CU->cu->partial_dies with the hash table for the new
16102 load_partial_comp_unit (per_cu);
16104 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
16108 internal_error (__FILE__, __LINE__,
16109 _("could not find partial DIE 0x%x "
16110 "in cache [from module %s]\n"),
16111 offset.sect_off, bfd_get_filename (objfile->obfd));
16115 /* See if we can figure out if the class lives in a namespace. We do
16116 this by looking for a member function; its demangled name will
16117 contain namespace info, if there is any. */
16120 guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
16121 struct dwarf2_cu *cu)
16123 /* NOTE: carlton/2003-10-07: Getting the info this way changes
16124 what template types look like, because the demangler
16125 frequently doesn't give the same name as the debug info. We
16126 could fix this by only using the demangled name to get the
16127 prefix (but see comment in read_structure_type). */
16129 struct partial_die_info *real_pdi;
16130 struct partial_die_info *child_pdi;
16132 /* If this DIE (this DIE's specification, if any) has a parent, then
16133 we should not do this. We'll prepend the parent's fully qualified
16134 name when we create the partial symbol. */
16136 real_pdi = struct_pdi;
16137 while (real_pdi->has_specification)
16138 real_pdi = find_partial_die (real_pdi->spec_offset,
16139 real_pdi->spec_is_dwz, cu);
16141 if (real_pdi->die_parent != NULL)
16144 for (child_pdi = struct_pdi->die_child;
16146 child_pdi = child_pdi->die_sibling)
16148 if (child_pdi->tag == DW_TAG_subprogram
16149 && child_pdi->linkage_name != NULL)
16151 char *actual_class_name
16152 = language_class_name_from_physname (cu->language_defn,
16153 child_pdi->linkage_name);
16154 if (actual_class_name != NULL)
16158 obstack_copy0 (&cu->objfile->per_bfd->storage_obstack,
16160 strlen (actual_class_name)));
16161 xfree (actual_class_name);
16168 /* Adjust PART_DIE before generating a symbol for it. This function
16169 may set the is_external flag or change the DIE's name. */
16172 fixup_partial_die (struct partial_die_info *part_die,
16173 struct dwarf2_cu *cu)
16175 /* Once we've fixed up a die, there's no point in doing so again.
16176 This also avoids a memory leak if we were to call
16177 guess_partial_die_structure_name multiple times. */
16178 if (part_die->fixup_called)
16181 /* If we found a reference attribute and the DIE has no name, try
16182 to find a name in the referred to DIE. */
16184 if (part_die->name == NULL && part_die->has_specification)
16186 struct partial_die_info *spec_die;
16188 spec_die = find_partial_die (part_die->spec_offset,
16189 part_die->spec_is_dwz, cu);
16191 fixup_partial_die (spec_die, cu);
16193 if (spec_die->name)
16195 part_die->name = spec_die->name;
16197 /* Copy DW_AT_external attribute if it is set. */
16198 if (spec_die->is_external)
16199 part_die->is_external = spec_die->is_external;
16203 /* Set default names for some unnamed DIEs. */
16205 if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
16206 part_die->name = CP_ANONYMOUS_NAMESPACE_STR;
16208 /* If there is no parent die to provide a namespace, and there are
16209 children, see if we can determine the namespace from their linkage
16211 if (cu->language == language_cplus
16212 && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
16213 && part_die->die_parent == NULL
16214 && part_die->has_children
16215 && (part_die->tag == DW_TAG_class_type
16216 || part_die->tag == DW_TAG_structure_type
16217 || part_die->tag == DW_TAG_union_type))
16218 guess_partial_die_structure_name (part_die, cu);
16220 /* GCC might emit a nameless struct or union that has a linkage
16221 name. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
16222 if (part_die->name == NULL
16223 && (part_die->tag == DW_TAG_class_type
16224 || part_die->tag == DW_TAG_interface_type
16225 || part_die->tag == DW_TAG_structure_type
16226 || part_die->tag == DW_TAG_union_type)
16227 && part_die->linkage_name != NULL)
16231 demangled = gdb_demangle (part_die->linkage_name, DMGL_TYPES);
16236 /* Strip any leading namespaces/classes, keep only the base name.
16237 DW_AT_name for named DIEs does not contain the prefixes. */
16238 base = strrchr (demangled, ':');
16239 if (base && base > demangled && base[-1] == ':')
16246 obstack_copy0 (&cu->objfile->per_bfd->storage_obstack,
16247 base, strlen (base)));
16252 part_die->fixup_called = 1;
16255 /* Read an attribute value described by an attribute form. */
16257 static const gdb_byte *
16258 read_attribute_value (const struct die_reader_specs *reader,
16259 struct attribute *attr, unsigned form,
16260 const gdb_byte *info_ptr)
16262 struct dwarf2_cu *cu = reader->cu;
16263 struct objfile *objfile = cu->objfile;
16264 struct gdbarch *gdbarch = get_objfile_arch (objfile);
16265 bfd *abfd = reader->abfd;
16266 struct comp_unit_head *cu_header = &cu->header;
16267 unsigned int bytes_read;
16268 struct dwarf_block *blk;
16270 attr->form = (enum dwarf_form) form;
16273 case DW_FORM_ref_addr:
16274 if (cu->header.version == 2)
16275 DW_UNSND (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
16277 DW_UNSND (attr) = read_offset (abfd, info_ptr,
16278 &cu->header, &bytes_read);
16279 info_ptr += bytes_read;
16281 case DW_FORM_GNU_ref_alt:
16282 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
16283 info_ptr += bytes_read;
16286 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
16287 DW_ADDR (attr) = gdbarch_adjust_dwarf2_addr (gdbarch, DW_ADDR (attr));
16288 info_ptr += bytes_read;
16290 case DW_FORM_block2:
16291 blk = dwarf_alloc_block (cu);
16292 blk->size = read_2_bytes (abfd, info_ptr);
16294 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
16295 info_ptr += blk->size;
16296 DW_BLOCK (attr) = blk;
16298 case DW_FORM_block4:
16299 blk = dwarf_alloc_block (cu);
16300 blk->size = read_4_bytes (abfd, info_ptr);
16302 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
16303 info_ptr += blk->size;
16304 DW_BLOCK (attr) = blk;
16306 case DW_FORM_data2:
16307 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
16310 case DW_FORM_data4:
16311 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
16314 case DW_FORM_data8:
16315 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
16318 case DW_FORM_sec_offset:
16319 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
16320 info_ptr += bytes_read;
16322 case DW_FORM_string:
16323 DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
16324 DW_STRING_IS_CANONICAL (attr) = 0;
16325 info_ptr += bytes_read;
16328 if (!cu->per_cu->is_dwz)
16330 DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
16332 DW_STRING_IS_CANONICAL (attr) = 0;
16333 info_ptr += bytes_read;
16337 case DW_FORM_GNU_strp_alt:
16339 struct dwz_file *dwz = dwarf2_get_dwz_file ();
16340 LONGEST str_offset = read_offset (abfd, info_ptr, cu_header,
16343 DW_STRING (attr) = read_indirect_string_from_dwz (dwz, str_offset);
16344 DW_STRING_IS_CANONICAL (attr) = 0;
16345 info_ptr += bytes_read;
16348 case DW_FORM_exprloc:
16349 case DW_FORM_block:
16350 blk = dwarf_alloc_block (cu);
16351 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
16352 info_ptr += bytes_read;
16353 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
16354 info_ptr += blk->size;
16355 DW_BLOCK (attr) = blk;
16357 case DW_FORM_block1:
16358 blk = dwarf_alloc_block (cu);
16359 blk->size = read_1_byte (abfd, info_ptr);
16361 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
16362 info_ptr += blk->size;
16363 DW_BLOCK (attr) = blk;
16365 case DW_FORM_data1:
16366 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
16370 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
16373 case DW_FORM_flag_present:
16374 DW_UNSND (attr) = 1;
16376 case DW_FORM_sdata:
16377 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
16378 info_ptr += bytes_read;
16380 case DW_FORM_udata:
16381 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
16382 info_ptr += bytes_read;
16385 DW_UNSND (attr) = (cu->header.offset.sect_off
16386 + read_1_byte (abfd, info_ptr));
16390 DW_UNSND (attr) = (cu->header.offset.sect_off
16391 + read_2_bytes (abfd, info_ptr));
16395 DW_UNSND (attr) = (cu->header.offset.sect_off
16396 + read_4_bytes (abfd, info_ptr));
16400 DW_UNSND (attr) = (cu->header.offset.sect_off
16401 + read_8_bytes (abfd, info_ptr));
16404 case DW_FORM_ref_sig8:
16405 DW_SIGNATURE (attr) = read_8_bytes (abfd, info_ptr);
16408 case DW_FORM_ref_udata:
16409 DW_UNSND (attr) = (cu->header.offset.sect_off
16410 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
16411 info_ptr += bytes_read;
16413 case DW_FORM_indirect:
16414 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
16415 info_ptr += bytes_read;
16416 info_ptr = read_attribute_value (reader, attr, form, info_ptr);
16418 case DW_FORM_GNU_addr_index:
16419 if (reader->dwo_file == NULL)
16421 /* For now flag a hard error.
16422 Later we can turn this into a complaint. */
16423 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
16424 dwarf_form_name (form),
16425 bfd_get_filename (abfd));
16427 DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr, &bytes_read);
16428 info_ptr += bytes_read;
16430 case DW_FORM_GNU_str_index:
16431 if (reader->dwo_file == NULL)
16433 /* For now flag a hard error.
16434 Later we can turn this into a complaint if warranted. */
16435 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
16436 dwarf_form_name (form),
16437 bfd_get_filename (abfd));
16440 ULONGEST str_index =
16441 read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
16443 DW_STRING (attr) = read_str_index (reader, str_index);
16444 DW_STRING_IS_CANONICAL (attr) = 0;
16445 info_ptr += bytes_read;
16449 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
16450 dwarf_form_name (form),
16451 bfd_get_filename (abfd));
16455 if (cu->per_cu->is_dwz && attr_form_is_ref (attr))
16456 attr->form = DW_FORM_GNU_ref_alt;
16458 /* We have seen instances where the compiler tried to emit a byte
16459 size attribute of -1 which ended up being encoded as an unsigned
16460 0xffffffff. Although 0xffffffff is technically a valid size value,
16461 an object of this size seems pretty unlikely so we can relatively
16462 safely treat these cases as if the size attribute was invalid and
16463 treat them as zero by default. */
16464 if (attr->name == DW_AT_byte_size
16465 && form == DW_FORM_data4
16466 && DW_UNSND (attr) >= 0xffffffff)
16469 (&symfile_complaints,
16470 _("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
16471 hex_string (DW_UNSND (attr)));
16472 DW_UNSND (attr) = 0;
16478 /* Read an attribute described by an abbreviated attribute. */
16480 static const gdb_byte *
16481 read_attribute (const struct die_reader_specs *reader,
16482 struct attribute *attr, struct attr_abbrev *abbrev,
16483 const gdb_byte *info_ptr)
16485 attr->name = abbrev->name;
16486 return read_attribute_value (reader, attr, abbrev->form, info_ptr);
16489 /* Read dwarf information from a buffer. */
16491 static unsigned int
16492 read_1_byte (bfd *abfd, const gdb_byte *buf)
16494 return bfd_get_8 (abfd, buf);
16498 read_1_signed_byte (bfd *abfd, const gdb_byte *buf)
16500 return bfd_get_signed_8 (abfd, buf);
16503 static unsigned int
16504 read_2_bytes (bfd *abfd, const gdb_byte *buf)
16506 return bfd_get_16 (abfd, buf);
16510 read_2_signed_bytes (bfd *abfd, const gdb_byte *buf)
16512 return bfd_get_signed_16 (abfd, buf);
16515 static unsigned int
16516 read_4_bytes (bfd *abfd, const gdb_byte *buf)
16518 return bfd_get_32 (abfd, buf);
16522 read_4_signed_bytes (bfd *abfd, const gdb_byte *buf)
16524 return bfd_get_signed_32 (abfd, buf);
16528 read_8_bytes (bfd *abfd, const gdb_byte *buf)
16530 return bfd_get_64 (abfd, buf);
16534 read_address (bfd *abfd, const gdb_byte *buf, struct dwarf2_cu *cu,
16535 unsigned int *bytes_read)
16537 struct comp_unit_head *cu_header = &cu->header;
16538 CORE_ADDR retval = 0;
16540 if (cu_header->signed_addr_p)
16542 switch (cu_header->addr_size)
16545 retval = bfd_get_signed_16 (abfd, buf);
16548 retval = bfd_get_signed_32 (abfd, buf);
16551 retval = bfd_get_signed_64 (abfd, buf);
16554 internal_error (__FILE__, __LINE__,
16555 _("read_address: bad switch, signed [in module %s]"),
16556 bfd_get_filename (abfd));
16561 switch (cu_header->addr_size)
16564 retval = bfd_get_16 (abfd, buf);
16567 retval = bfd_get_32 (abfd, buf);
16570 retval = bfd_get_64 (abfd, buf);
16573 internal_error (__FILE__, __LINE__,
16574 _("read_address: bad switch, "
16575 "unsigned [in module %s]"),
16576 bfd_get_filename (abfd));
16580 *bytes_read = cu_header->addr_size;
16584 /* Read the initial length from a section. The (draft) DWARF 3
16585 specification allows the initial length to take up either 4 bytes
16586 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
16587 bytes describe the length and all offsets will be 8 bytes in length
16590 An older, non-standard 64-bit format is also handled by this
16591 function. The older format in question stores the initial length
16592 as an 8-byte quantity without an escape value. Lengths greater
16593 than 2^32 aren't very common which means that the initial 4 bytes
16594 is almost always zero. Since a length value of zero doesn't make
16595 sense for the 32-bit format, this initial zero can be considered to
16596 be an escape value which indicates the presence of the older 64-bit
16597 format. As written, the code can't detect (old format) lengths
16598 greater than 4GB. If it becomes necessary to handle lengths
16599 somewhat larger than 4GB, we could allow other small values (such
16600 as the non-sensical values of 1, 2, and 3) to also be used as
16601 escape values indicating the presence of the old format.
16603 The value returned via bytes_read should be used to increment the
16604 relevant pointer after calling read_initial_length().
16606 [ Note: read_initial_length() and read_offset() are based on the
16607 document entitled "DWARF Debugging Information Format", revision
16608 3, draft 8, dated November 19, 2001. This document was obtained
16611 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
16613 This document is only a draft and is subject to change. (So beware.)
16615 Details regarding the older, non-standard 64-bit format were
16616 determined empirically by examining 64-bit ELF files produced by
16617 the SGI toolchain on an IRIX 6.5 machine.
16619 - Kevin, July 16, 2002
16623 read_initial_length (bfd *abfd, const gdb_byte *buf, unsigned int *bytes_read)
16625 LONGEST length = bfd_get_32 (abfd, buf);
16627 if (length == 0xffffffff)
16629 length = bfd_get_64 (abfd, buf + 4);
16632 else if (length == 0)
16634 /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
16635 length = bfd_get_64 (abfd, buf);
16646 /* Cover function for read_initial_length.
16647 Returns the length of the object at BUF, and stores the size of the
16648 initial length in *BYTES_READ and stores the size that offsets will be in
16650 If the initial length size is not equivalent to that specified in
16651 CU_HEADER then issue a complaint.
16652 This is useful when reading non-comp-unit headers. */
16655 read_checked_initial_length_and_offset (bfd *abfd, const gdb_byte *buf,
16656 const struct comp_unit_head *cu_header,
16657 unsigned int *bytes_read,
16658 unsigned int *offset_size)
16660 LONGEST length = read_initial_length (abfd, buf, bytes_read);
16662 gdb_assert (cu_header->initial_length_size == 4
16663 || cu_header->initial_length_size == 8
16664 || cu_header->initial_length_size == 12);
16666 if (cu_header->initial_length_size != *bytes_read)
16667 complaint (&symfile_complaints,
16668 _("intermixed 32-bit and 64-bit DWARF sections"));
16670 *offset_size = (*bytes_read == 4) ? 4 : 8;
16674 /* Read an offset from the data stream. The size of the offset is
16675 given by cu_header->offset_size. */
16678 read_offset (bfd *abfd, const gdb_byte *buf,
16679 const struct comp_unit_head *cu_header,
16680 unsigned int *bytes_read)
16682 LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
16684 *bytes_read = cu_header->offset_size;
16688 /* Read an offset from the data stream. */
16691 read_offset_1 (bfd *abfd, const gdb_byte *buf, unsigned int offset_size)
16693 LONGEST retval = 0;
16695 switch (offset_size)
16698 retval = bfd_get_32 (abfd, buf);
16701 retval = bfd_get_64 (abfd, buf);
16704 internal_error (__FILE__, __LINE__,
16705 _("read_offset_1: bad switch [in module %s]"),
16706 bfd_get_filename (abfd));
16712 static const gdb_byte *
16713 read_n_bytes (bfd *abfd, const gdb_byte *buf, unsigned int size)
16715 /* If the size of a host char is 8 bits, we can return a pointer
16716 to the buffer, otherwise we have to copy the data to a buffer
16717 allocated on the temporary obstack. */
16718 gdb_assert (HOST_CHAR_BIT == 8);
16722 static const char *
16723 read_direct_string (bfd *abfd, const gdb_byte *buf,
16724 unsigned int *bytes_read_ptr)
16726 /* If the size of a host char is 8 bits, we can return a pointer
16727 to the string, otherwise we have to copy the string to a buffer
16728 allocated on the temporary obstack. */
16729 gdb_assert (HOST_CHAR_BIT == 8);
16732 *bytes_read_ptr = 1;
16735 *bytes_read_ptr = strlen ((const char *) buf) + 1;
16736 return (const char *) buf;
16739 static const char *
16740 read_indirect_string_at_offset (bfd *abfd, LONGEST str_offset)
16742 dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->str);
16743 if (dwarf2_per_objfile->str.buffer == NULL)
16744 error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
16745 bfd_get_filename (abfd));
16746 if (str_offset >= dwarf2_per_objfile->str.size)
16747 error (_("DW_FORM_strp pointing outside of "
16748 ".debug_str section [in module %s]"),
16749 bfd_get_filename (abfd));
16750 gdb_assert (HOST_CHAR_BIT == 8);
16751 if (dwarf2_per_objfile->str.buffer[str_offset] == '\0')
16753 return (const char *) (dwarf2_per_objfile->str.buffer + str_offset);
16756 /* Read a string at offset STR_OFFSET in the .debug_str section from
16757 the .dwz file DWZ. Throw an error if the offset is too large. If
16758 the string consists of a single NUL byte, return NULL; otherwise
16759 return a pointer to the string. */
16761 static const char *
16762 read_indirect_string_from_dwz (struct dwz_file *dwz, LONGEST str_offset)
16764 dwarf2_read_section (dwarf2_per_objfile->objfile, &dwz->str);
16766 if (dwz->str.buffer == NULL)
16767 error (_("DW_FORM_GNU_strp_alt used without .debug_str "
16768 "section [in module %s]"),
16769 bfd_get_filename (dwz->dwz_bfd));
16770 if (str_offset >= dwz->str.size)
16771 error (_("DW_FORM_GNU_strp_alt pointing outside of "
16772 ".debug_str section [in module %s]"),
16773 bfd_get_filename (dwz->dwz_bfd));
16774 gdb_assert (HOST_CHAR_BIT == 8);
16775 if (dwz->str.buffer[str_offset] == '\0')
16777 return (const char *) (dwz->str.buffer + str_offset);
16780 static const char *
16781 read_indirect_string (bfd *abfd, const gdb_byte *buf,
16782 const struct comp_unit_head *cu_header,
16783 unsigned int *bytes_read_ptr)
16785 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
16787 return read_indirect_string_at_offset (abfd, str_offset);
16791 read_unsigned_leb128 (bfd *abfd, const gdb_byte *buf,
16792 unsigned int *bytes_read_ptr)
16795 unsigned int num_read;
16797 unsigned char byte;
16804 byte = bfd_get_8 (abfd, buf);
16807 result |= ((ULONGEST) (byte & 127) << shift);
16808 if ((byte & 128) == 0)
16814 *bytes_read_ptr = num_read;
16819 read_signed_leb128 (bfd *abfd, const gdb_byte *buf,
16820 unsigned int *bytes_read_ptr)
16823 int shift, num_read;
16824 unsigned char byte;
16831 byte = bfd_get_8 (abfd, buf);
16834 result |= ((LONGEST) (byte & 127) << shift);
16836 if ((byte & 128) == 0)
16841 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
16842 result |= -(((LONGEST) 1) << shift);
16843 *bytes_read_ptr = num_read;
16847 /* Given index ADDR_INDEX in .debug_addr, fetch the value.
16848 ADDR_BASE is the DW_AT_GNU_addr_base attribute or zero.
16849 ADDR_SIZE is the size of addresses from the CU header. */
16852 read_addr_index_1 (unsigned int addr_index, ULONGEST addr_base, int addr_size)
16854 struct objfile *objfile = dwarf2_per_objfile->objfile;
16855 bfd *abfd = objfile->obfd;
16856 const gdb_byte *info_ptr;
16858 dwarf2_read_section (objfile, &dwarf2_per_objfile->addr);
16859 if (dwarf2_per_objfile->addr.buffer == NULL)
16860 error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
16861 objfile_name (objfile));
16862 if (addr_base + addr_index * addr_size >= dwarf2_per_objfile->addr.size)
16863 error (_("DW_FORM_addr_index pointing outside of "
16864 ".debug_addr section [in module %s]"),
16865 objfile_name (objfile));
16866 info_ptr = (dwarf2_per_objfile->addr.buffer
16867 + addr_base + addr_index * addr_size);
16868 if (addr_size == 4)
16869 return bfd_get_32 (abfd, info_ptr);
16871 return bfd_get_64 (abfd, info_ptr);
16874 /* Given index ADDR_INDEX in .debug_addr, fetch the value. */
16877 read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
16879 return read_addr_index_1 (addr_index, cu->addr_base, cu->header.addr_size);
16882 /* Given a pointer to an leb128 value, fetch the value from .debug_addr. */
16885 read_addr_index_from_leb128 (struct dwarf2_cu *cu, const gdb_byte *info_ptr,
16886 unsigned int *bytes_read)
16888 bfd *abfd = cu->objfile->obfd;
16889 unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
16891 return read_addr_index (cu, addr_index);
16894 /* Data structure to pass results from dwarf2_read_addr_index_reader
16895 back to dwarf2_read_addr_index. */
16897 struct dwarf2_read_addr_index_data
16899 ULONGEST addr_base;
16903 /* die_reader_func for dwarf2_read_addr_index. */
16906 dwarf2_read_addr_index_reader (const struct die_reader_specs *reader,
16907 const gdb_byte *info_ptr,
16908 struct die_info *comp_unit_die,
16912 struct dwarf2_cu *cu = reader->cu;
16913 struct dwarf2_read_addr_index_data *aidata =
16914 (struct dwarf2_read_addr_index_data *) data;
16916 aidata->addr_base = cu->addr_base;
16917 aidata->addr_size = cu->header.addr_size;
16920 /* Given an index in .debug_addr, fetch the value.
16921 NOTE: This can be called during dwarf expression evaluation,
16922 long after the debug information has been read, and thus per_cu->cu
16923 may no longer exist. */
16926 dwarf2_read_addr_index (struct dwarf2_per_cu_data *per_cu,
16927 unsigned int addr_index)
16929 struct objfile *objfile = per_cu->objfile;
16930 struct dwarf2_cu *cu = per_cu->cu;
16931 ULONGEST addr_base;
16934 /* This is intended to be called from outside this file. */
16935 dw2_setup (objfile);
16937 /* We need addr_base and addr_size.
16938 If we don't have PER_CU->cu, we have to get it.
16939 Nasty, but the alternative is storing the needed info in PER_CU,
16940 which at this point doesn't seem justified: it's not clear how frequently
16941 it would get used and it would increase the size of every PER_CU.
16942 Entry points like dwarf2_per_cu_addr_size do a similar thing
16943 so we're not in uncharted territory here.
16944 Alas we need to be a bit more complicated as addr_base is contained
16947 We don't need to read the entire CU(/TU).
16948 We just need the header and top level die.
16950 IWBN to use the aging mechanism to let us lazily later discard the CU.
16951 For now we skip this optimization. */
16955 addr_base = cu->addr_base;
16956 addr_size = cu->header.addr_size;
16960 struct dwarf2_read_addr_index_data aidata;
16962 /* Note: We can't use init_cutu_and_read_dies_simple here,
16963 we need addr_base. */
16964 init_cutu_and_read_dies (per_cu, NULL, 0, 0,
16965 dwarf2_read_addr_index_reader, &aidata);
16966 addr_base = aidata.addr_base;
16967 addr_size = aidata.addr_size;
16970 return read_addr_index_1 (addr_index, addr_base, addr_size);
16973 /* Given a DW_FORM_GNU_str_index, fetch the string.
16974 This is only used by the Fission support. */
16976 static const char *
16977 read_str_index (const struct die_reader_specs *reader, ULONGEST str_index)
16979 struct objfile *objfile = dwarf2_per_objfile->objfile;
16980 const char *objf_name = objfile_name (objfile);
16981 bfd *abfd = objfile->obfd;
16982 struct dwarf2_cu *cu = reader->cu;
16983 struct dwarf2_section_info *str_section = &reader->dwo_file->sections.str;
16984 struct dwarf2_section_info *str_offsets_section =
16985 &reader->dwo_file->sections.str_offsets;
16986 const gdb_byte *info_ptr;
16987 ULONGEST str_offset;
16988 static const char form_name[] = "DW_FORM_GNU_str_index";
16990 dwarf2_read_section (objfile, str_section);
16991 dwarf2_read_section (objfile, str_offsets_section);
16992 if (str_section->buffer == NULL)
16993 error (_("%s used without .debug_str.dwo section"
16994 " in CU at offset 0x%lx [in module %s]"),
16995 form_name, (long) cu->header.offset.sect_off, objf_name);
16996 if (str_offsets_section->buffer == NULL)
16997 error (_("%s used without .debug_str_offsets.dwo section"
16998 " in CU at offset 0x%lx [in module %s]"),
16999 form_name, (long) cu->header.offset.sect_off, objf_name);
17000 if (str_index * cu->header.offset_size >= str_offsets_section->size)
17001 error (_("%s pointing outside of .debug_str_offsets.dwo"
17002 " section in CU at offset 0x%lx [in module %s]"),
17003 form_name, (long) cu->header.offset.sect_off, objf_name);
17004 info_ptr = (str_offsets_section->buffer
17005 + str_index * cu->header.offset_size);
17006 if (cu->header.offset_size == 4)
17007 str_offset = bfd_get_32 (abfd, info_ptr);
17009 str_offset = bfd_get_64 (abfd, info_ptr);
17010 if (str_offset >= str_section->size)
17011 error (_("Offset from %s pointing outside of"
17012 " .debug_str.dwo section in CU at offset 0x%lx [in module %s]"),
17013 form_name, (long) cu->header.offset.sect_off, objf_name);
17014 return (const char *) (str_section->buffer + str_offset);
17017 /* Return the length of an LEB128 number in BUF. */
17020 leb128_size (const gdb_byte *buf)
17022 const gdb_byte *begin = buf;
17028 if ((byte & 128) == 0)
17029 return buf - begin;
17034 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
17043 cu->language = language_c;
17045 case DW_LANG_C_plus_plus:
17046 case DW_LANG_C_plus_plus_11:
17047 case DW_LANG_C_plus_plus_14:
17048 cu->language = language_cplus;
17051 cu->language = language_d;
17053 case DW_LANG_Fortran77:
17054 case DW_LANG_Fortran90:
17055 case DW_LANG_Fortran95:
17056 case DW_LANG_Fortran03:
17057 case DW_LANG_Fortran08:
17058 cu->language = language_fortran;
17061 cu->language = language_go;
17063 case DW_LANG_Mips_Assembler:
17064 cu->language = language_asm;
17067 cu->language = language_java;
17069 case DW_LANG_Ada83:
17070 case DW_LANG_Ada95:
17071 cu->language = language_ada;
17073 case DW_LANG_Modula2:
17074 cu->language = language_m2;
17076 case DW_LANG_Pascal83:
17077 cu->language = language_pascal;
17080 cu->language = language_objc;
17083 case DW_LANG_Rust_old:
17084 cu->language = language_rust;
17086 case DW_LANG_Cobol74:
17087 case DW_LANG_Cobol85:
17089 cu->language = language_minimal;
17092 cu->language_defn = language_def (cu->language);
17095 /* Return the named attribute or NULL if not there. */
17097 static struct attribute *
17098 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
17103 struct attribute *spec = NULL;
17105 for (i = 0; i < die->num_attrs; ++i)
17107 if (die->attrs[i].name == name)
17108 return &die->attrs[i];
17109 if (die->attrs[i].name == DW_AT_specification
17110 || die->attrs[i].name == DW_AT_abstract_origin)
17111 spec = &die->attrs[i];
17117 die = follow_die_ref (die, spec, &cu);
17123 /* Return the named attribute or NULL if not there,
17124 but do not follow DW_AT_specification, etc.
17125 This is for use in contexts where we're reading .debug_types dies.
17126 Following DW_AT_specification, DW_AT_abstract_origin will take us
17127 back up the chain, and we want to go down. */
17129 static struct attribute *
17130 dwarf2_attr_no_follow (struct die_info *die, unsigned int name)
17134 for (i = 0; i < die->num_attrs; ++i)
17135 if (die->attrs[i].name == name)
17136 return &die->attrs[i];
17141 /* Return the string associated with a string-typed attribute, or NULL if it
17142 is either not found or is of an incorrect type. */
17144 static const char *
17145 dwarf2_string_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
17147 struct attribute *attr;
17148 const char *str = NULL;
17150 attr = dwarf2_attr (die, name, cu);
17154 if (attr->form == DW_FORM_strp || attr->form == DW_FORM_string
17155 || attr->form == DW_FORM_GNU_strp_alt)
17156 str = DW_STRING (attr);
17158 complaint (&symfile_complaints,
17159 _("string type expected for attribute %s for "
17160 "DIE at 0x%x in module %s"),
17161 dwarf_attr_name (name), die->offset.sect_off,
17162 objfile_name (cu->objfile));
17168 /* Return non-zero iff the attribute NAME is defined for the given DIE,
17169 and holds a non-zero value. This function should only be used for
17170 DW_FORM_flag or DW_FORM_flag_present attributes. */
17173 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
17175 struct attribute *attr = dwarf2_attr (die, name, cu);
17177 return (attr && DW_UNSND (attr));
17181 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
17183 /* A DIE is a declaration if it has a DW_AT_declaration attribute
17184 which value is non-zero. However, we have to be careful with
17185 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
17186 (via dwarf2_flag_true_p) follows this attribute. So we may
17187 end up accidently finding a declaration attribute that belongs
17188 to a different DIE referenced by the specification attribute,
17189 even though the given DIE does not have a declaration attribute. */
17190 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
17191 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
17194 /* Return the die giving the specification for DIE, if there is
17195 one. *SPEC_CU is the CU containing DIE on input, and the CU
17196 containing the return value on output. If there is no
17197 specification, but there is an abstract origin, that is
17200 static struct die_info *
17201 die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
17203 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
17206 if (spec_attr == NULL)
17207 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
17209 if (spec_attr == NULL)
17212 return follow_die_ref (die, spec_attr, spec_cu);
17215 /* Free the line_header structure *LH, and any arrays and strings it
17217 NOTE: This is also used as a "cleanup" function. */
17220 free_line_header (struct line_header *lh)
17222 if (lh->standard_opcode_lengths)
17223 xfree (lh->standard_opcode_lengths);
17225 /* Remember that all the lh->file_names[i].name pointers are
17226 pointers into debug_line_buffer, and don't need to be freed. */
17227 if (lh->file_names)
17228 xfree (lh->file_names);
17230 /* Similarly for the include directory names. */
17231 if (lh->include_dirs)
17232 xfree (lh->include_dirs);
17237 /* Stub for free_line_header to match void * callback types. */
17240 free_line_header_voidp (void *arg)
17242 struct line_header *lh = (struct line_header *) arg;
17244 free_line_header (lh);
17247 /* Add an entry to LH's include directory table. */
17250 add_include_dir (struct line_header *lh, const char *include_dir)
17252 if (dwarf_line_debug >= 2)
17253 fprintf_unfiltered (gdb_stdlog, "Adding dir %u: %s\n",
17254 lh->num_include_dirs + 1, include_dir);
17256 /* Grow the array if necessary. */
17257 if (lh->include_dirs_size == 0)
17259 lh->include_dirs_size = 1; /* for testing */
17260 lh->include_dirs = XNEWVEC (const char *, lh->include_dirs_size);
17262 else if (lh->num_include_dirs >= lh->include_dirs_size)
17264 lh->include_dirs_size *= 2;
17265 lh->include_dirs = XRESIZEVEC (const char *, lh->include_dirs,
17266 lh->include_dirs_size);
17269 lh->include_dirs[lh->num_include_dirs++] = include_dir;
17272 /* Add an entry to LH's file name table. */
17275 add_file_name (struct line_header *lh,
17277 unsigned int dir_index,
17278 unsigned int mod_time,
17279 unsigned int length)
17281 struct file_entry *fe;
17283 if (dwarf_line_debug >= 2)
17284 fprintf_unfiltered (gdb_stdlog, "Adding file %u: %s\n",
17285 lh->num_file_names + 1, name);
17287 /* Grow the array if necessary. */
17288 if (lh->file_names_size == 0)
17290 lh->file_names_size = 1; /* for testing */
17291 lh->file_names = XNEWVEC (struct file_entry, lh->file_names_size);
17293 else if (lh->num_file_names >= lh->file_names_size)
17295 lh->file_names_size *= 2;
17297 = XRESIZEVEC (struct file_entry, lh->file_names, lh->file_names_size);
17300 fe = &lh->file_names[lh->num_file_names++];
17302 fe->dir_index = dir_index;
17303 fe->mod_time = mod_time;
17304 fe->length = length;
17305 fe->included_p = 0;
17309 /* A convenience function to find the proper .debug_line section for a CU. */
17311 static struct dwarf2_section_info *
17312 get_debug_line_section (struct dwarf2_cu *cu)
17314 struct dwarf2_section_info *section;
17316 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
17318 if (cu->dwo_unit && cu->per_cu->is_debug_types)
17319 section = &cu->dwo_unit->dwo_file->sections.line;
17320 else if (cu->per_cu->is_dwz)
17322 struct dwz_file *dwz = dwarf2_get_dwz_file ();
17324 section = &dwz->line;
17327 section = &dwarf2_per_objfile->line;
17332 /* Read the statement program header starting at OFFSET in
17333 .debug_line, or .debug_line.dwo. Return a pointer
17334 to a struct line_header, allocated using xmalloc.
17335 Returns NULL if there is a problem reading the header, e.g., if it
17336 has a version we don't understand.
17338 NOTE: the strings in the include directory and file name tables of
17339 the returned object point into the dwarf line section buffer,
17340 and must not be freed. */
17342 static struct line_header *
17343 dwarf_decode_line_header (unsigned int offset, struct dwarf2_cu *cu)
17345 struct cleanup *back_to;
17346 struct line_header *lh;
17347 const gdb_byte *line_ptr;
17348 unsigned int bytes_read, offset_size;
17350 const char *cur_dir, *cur_file;
17351 struct dwarf2_section_info *section;
17354 section = get_debug_line_section (cu);
17355 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
17356 if (section->buffer == NULL)
17358 if (cu->dwo_unit && cu->per_cu->is_debug_types)
17359 complaint (&symfile_complaints, _("missing .debug_line.dwo section"));
17361 complaint (&symfile_complaints, _("missing .debug_line section"));
17365 /* We can't do this until we know the section is non-empty.
17366 Only then do we know we have such a section. */
17367 abfd = get_section_bfd_owner (section);
17369 /* Make sure that at least there's room for the total_length field.
17370 That could be 12 bytes long, but we're just going to fudge that. */
17371 if (offset + 4 >= section->size)
17373 dwarf2_statement_list_fits_in_line_number_section_complaint ();
17377 lh = XNEW (struct line_header);
17378 memset (lh, 0, sizeof (*lh));
17379 back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
17382 lh->offset.sect_off = offset;
17383 lh->offset_in_dwz = cu->per_cu->is_dwz;
17385 line_ptr = section->buffer + offset;
17387 /* Read in the header. */
17389 read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
17390 &bytes_read, &offset_size);
17391 line_ptr += bytes_read;
17392 if (line_ptr + lh->total_length > (section->buffer + section->size))
17394 dwarf2_statement_list_fits_in_line_number_section_complaint ();
17395 do_cleanups (back_to);
17398 lh->statement_program_end = line_ptr + lh->total_length;
17399 lh->version = read_2_bytes (abfd, line_ptr);
17401 if (lh->version > 4)
17403 /* This is a version we don't understand. The format could have
17404 changed in ways we don't handle properly so just punt. */
17405 complaint (&symfile_complaints,
17406 _("unsupported version in .debug_line section"));
17409 lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
17410 line_ptr += offset_size;
17411 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
17413 if (lh->version >= 4)
17415 lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
17419 lh->maximum_ops_per_instruction = 1;
17421 if (lh->maximum_ops_per_instruction == 0)
17423 lh->maximum_ops_per_instruction = 1;
17424 complaint (&symfile_complaints,
17425 _("invalid maximum_ops_per_instruction "
17426 "in `.debug_line' section"));
17429 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
17431 lh->line_base = read_1_signed_byte (abfd, line_ptr);
17433 lh->line_range = read_1_byte (abfd, line_ptr);
17435 lh->opcode_base = read_1_byte (abfd, line_ptr);
17437 lh->standard_opcode_lengths = XNEWVEC (unsigned char, lh->opcode_base);
17439 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
17440 for (i = 1; i < lh->opcode_base; ++i)
17442 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
17446 /* Read directory table. */
17447 while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
17449 line_ptr += bytes_read;
17450 add_include_dir (lh, cur_dir);
17452 line_ptr += bytes_read;
17454 /* Read file name table. */
17455 while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
17457 unsigned int dir_index, mod_time, length;
17459 line_ptr += bytes_read;
17460 dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17461 line_ptr += bytes_read;
17462 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17463 line_ptr += bytes_read;
17464 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17465 line_ptr += bytes_read;
17467 add_file_name (lh, cur_file, dir_index, mod_time, length);
17469 line_ptr += bytes_read;
17470 lh->statement_program_start = line_ptr;
17472 if (line_ptr > (section->buffer + section->size))
17473 complaint (&symfile_complaints,
17474 _("line number info header doesn't "
17475 "fit in `.debug_line' section"));
17477 discard_cleanups (back_to);
17481 /* Subroutine of dwarf_decode_lines to simplify it.
17482 Return the file name of the psymtab for included file FILE_INDEX
17483 in line header LH of PST.
17484 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
17485 If space for the result is malloc'd, it will be freed by a cleanup.
17486 Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename.
17488 The function creates dangling cleanup registration. */
17490 static const char *
17491 psymtab_include_file_name (const struct line_header *lh, int file_index,
17492 const struct partial_symtab *pst,
17493 const char *comp_dir)
17495 const struct file_entry fe = lh->file_names [file_index];
17496 const char *include_name = fe.name;
17497 const char *include_name_to_compare = include_name;
17498 const char *dir_name = NULL;
17499 const char *pst_filename;
17500 char *copied_name = NULL;
17503 if (fe.dir_index && lh->include_dirs != NULL)
17504 dir_name = lh->include_dirs[fe.dir_index - 1];
17506 if (!IS_ABSOLUTE_PATH (include_name)
17507 && (dir_name != NULL || comp_dir != NULL))
17509 /* Avoid creating a duplicate psymtab for PST.
17510 We do this by comparing INCLUDE_NAME and PST_FILENAME.
17511 Before we do the comparison, however, we need to account
17512 for DIR_NAME and COMP_DIR.
17513 First prepend dir_name (if non-NULL). If we still don't
17514 have an absolute path prepend comp_dir (if non-NULL).
17515 However, the directory we record in the include-file's
17516 psymtab does not contain COMP_DIR (to match the
17517 corresponding symtab(s)).
17522 bash$ gcc -g ./hello.c
17523 include_name = "hello.c"
17525 DW_AT_comp_dir = comp_dir = "/tmp"
17526 DW_AT_name = "./hello.c"
17530 if (dir_name != NULL)
17532 char *tem = concat (dir_name, SLASH_STRING,
17533 include_name, (char *)NULL);
17535 make_cleanup (xfree, tem);
17536 include_name = tem;
17537 include_name_to_compare = include_name;
17539 if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
17541 char *tem = concat (comp_dir, SLASH_STRING,
17542 include_name, (char *)NULL);
17544 make_cleanup (xfree, tem);
17545 include_name_to_compare = tem;
17549 pst_filename = pst->filename;
17550 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
17552 copied_name = concat (pst->dirname, SLASH_STRING,
17553 pst_filename, (char *)NULL);
17554 pst_filename = copied_name;
17557 file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
17559 if (copied_name != NULL)
17560 xfree (copied_name);
17564 return include_name;
17567 /* State machine to track the state of the line number program. */
17571 /* These are part of the standard DWARF line number state machine. */
17573 unsigned char op_index;
17578 unsigned int discriminator;
17580 /* Additional bits of state we need to track. */
17582 /* The last file that we called dwarf2_start_subfile for.
17583 This is only used for TLLs. */
17584 unsigned int last_file;
17585 /* The last file a line number was recorded for. */
17586 struct subfile *last_subfile;
17588 /* The function to call to record a line. */
17589 record_line_ftype *record_line;
17591 /* The last line number that was recorded, used to coalesce
17592 consecutive entries for the same line. This can happen, for
17593 example, when discriminators are present. PR 17276. */
17594 unsigned int last_line;
17595 int line_has_non_zero_discriminator;
17596 } lnp_state_machine;
17598 /* There's a lot of static state to pass to dwarf_record_line.
17599 This keeps it all together. */
17604 struct gdbarch *gdbarch;
17606 /* The line number header. */
17607 struct line_header *line_header;
17609 /* Non-zero if we're recording lines.
17610 Otherwise we're building partial symtabs and are just interested in
17611 finding include files mentioned by the line number program. */
17612 int record_lines_p;
17613 } lnp_reader_state;
17615 /* Ignore this record_line request. */
17618 noop_record_line (struct subfile *subfile, int line, CORE_ADDR pc)
17623 /* Return non-zero if we should add LINE to the line number table.
17624 LINE is the line to add, LAST_LINE is the last line that was added,
17625 LAST_SUBFILE is the subfile for LAST_LINE.
17626 LINE_HAS_NON_ZERO_DISCRIMINATOR is non-zero if LINE has ever
17627 had a non-zero discriminator.
17629 We have to be careful in the presence of discriminators.
17630 E.g., for this line:
17632 for (i = 0; i < 100000; i++);
17634 clang can emit four line number entries for that one line,
17635 each with a different discriminator.
17636 See gdb.dwarf2/dw2-single-line-discriminators.exp for an example.
17638 However, we want gdb to coalesce all four entries into one.
17639 Otherwise the user could stepi into the middle of the line and
17640 gdb would get confused about whether the pc really was in the
17641 middle of the line.
17643 Things are further complicated by the fact that two consecutive
17644 line number entries for the same line is a heuristic used by gcc
17645 to denote the end of the prologue. So we can't just discard duplicate
17646 entries, we have to be selective about it. The heuristic we use is
17647 that we only collapse consecutive entries for the same line if at least
17648 one of those entries has a non-zero discriminator. PR 17276.
17650 Note: Addresses in the line number state machine can never go backwards
17651 within one sequence, thus this coalescing is ok. */
17654 dwarf_record_line_p (unsigned int line, unsigned int last_line,
17655 int line_has_non_zero_discriminator,
17656 struct subfile *last_subfile)
17658 if (current_subfile != last_subfile)
17660 if (line != last_line)
17662 /* Same line for the same file that we've seen already.
17663 As a last check, for pr 17276, only record the line if the line
17664 has never had a non-zero discriminator. */
17665 if (!line_has_non_zero_discriminator)
17670 /* Use P_RECORD_LINE to record line number LINE beginning at address ADDRESS
17671 in the line table of subfile SUBFILE. */
17674 dwarf_record_line_1 (struct gdbarch *gdbarch, struct subfile *subfile,
17675 unsigned int line, CORE_ADDR address,
17676 record_line_ftype p_record_line)
17678 CORE_ADDR addr = gdbarch_addr_bits_remove (gdbarch, address);
17680 if (dwarf_line_debug)
17682 fprintf_unfiltered (gdb_stdlog,
17683 "Recording line %u, file %s, address %s\n",
17684 line, lbasename (subfile->name),
17685 paddress (gdbarch, address));
17688 (*p_record_line) (subfile, line, addr);
17691 /* Subroutine of dwarf_decode_lines_1 to simplify it.
17692 Mark the end of a set of line number records.
17693 The arguments are the same as for dwarf_record_line_1.
17694 If SUBFILE is NULL the request is ignored. */
17697 dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
17698 CORE_ADDR address, record_line_ftype p_record_line)
17700 if (subfile == NULL)
17703 if (dwarf_line_debug)
17705 fprintf_unfiltered (gdb_stdlog,
17706 "Finishing current line, file %s, address %s\n",
17707 lbasename (subfile->name),
17708 paddress (gdbarch, address));
17711 dwarf_record_line_1 (gdbarch, subfile, 0, address, p_record_line);
17714 /* Record the line in STATE.
17715 END_SEQUENCE is non-zero if we're processing the end of a sequence. */
17718 dwarf_record_line (lnp_reader_state *reader, lnp_state_machine *state,
17721 const struct line_header *lh = reader->line_header;
17722 unsigned int file, line, discriminator;
17725 file = state->file;
17726 line = state->line;
17727 is_stmt = state->is_stmt;
17728 discriminator = state->discriminator;
17730 if (dwarf_line_debug)
17732 fprintf_unfiltered (gdb_stdlog,
17733 "Processing actual line %u: file %u,"
17734 " address %s, is_stmt %u, discrim %u\n",
17736 paddress (reader->gdbarch, state->address),
17737 is_stmt, discriminator);
17740 if (file == 0 || file - 1 >= lh->num_file_names)
17741 dwarf2_debug_line_missing_file_complaint ();
17742 /* For now we ignore lines not starting on an instruction boundary.
17743 But not when processing end_sequence for compatibility with the
17744 previous version of the code. */
17745 else if (state->op_index == 0 || end_sequence)
17747 lh->file_names[file - 1].included_p = 1;
17748 if (reader->record_lines_p && is_stmt)
17750 if (state->last_subfile != current_subfile || end_sequence)
17752 dwarf_finish_line (reader->gdbarch, state->last_subfile,
17753 state->address, state->record_line);
17758 if (dwarf_record_line_p (line, state->last_line,
17759 state->line_has_non_zero_discriminator,
17760 state->last_subfile))
17762 dwarf_record_line_1 (reader->gdbarch, current_subfile,
17763 line, state->address,
17764 state->record_line);
17766 state->last_subfile = current_subfile;
17767 state->last_line = line;
17773 /* Initialize STATE for the start of a line number program. */
17776 init_lnp_state_machine (lnp_state_machine *state,
17777 const lnp_reader_state *reader)
17779 memset (state, 0, sizeof (*state));
17781 /* Just starting, there is no "last file". */
17782 state->last_file = 0;
17783 state->last_subfile = NULL;
17785 state->record_line = record_line;
17787 state->last_line = 0;
17788 state->line_has_non_zero_discriminator = 0;
17790 /* Initialize these according to the DWARF spec. */
17791 state->op_index = 0;
17794 /* Call `gdbarch_adjust_dwarf2_line' on the initial 0 address as if there
17795 was a line entry for it so that the backend has a chance to adjust it
17796 and also record it in case it needs it. This is currently used by MIPS
17797 code, cf. `mips_adjust_dwarf2_line'. */
17798 state->address = gdbarch_adjust_dwarf2_line (reader->gdbarch, 0, 0);
17799 state->is_stmt = reader->line_header->default_is_stmt;
17800 state->discriminator = 0;
17803 /* Check address and if invalid nop-out the rest of the lines in this
17807 check_line_address (struct dwarf2_cu *cu, lnp_state_machine *state,
17808 const gdb_byte *line_ptr,
17809 CORE_ADDR lowpc, CORE_ADDR address)
17811 /* If address < lowpc then it's not a usable value, it's outside the
17812 pc range of the CU. However, we restrict the test to only address
17813 values of zero to preserve GDB's previous behaviour which is to
17814 handle the specific case of a function being GC'd by the linker. */
17816 if (address == 0 && address < lowpc)
17818 /* This line table is for a function which has been
17819 GCd by the linker. Ignore it. PR gdb/12528 */
17821 struct objfile *objfile = cu->objfile;
17822 long line_offset = line_ptr - get_debug_line_section (cu)->buffer;
17824 complaint (&symfile_complaints,
17825 _(".debug_line address at offset 0x%lx is 0 [in module %s]"),
17826 line_offset, objfile_name (objfile));
17827 state->record_line = noop_record_line;
17828 /* Note: sm.record_line is left as noop_record_line
17829 until we see DW_LNE_end_sequence. */
17833 /* Subroutine of dwarf_decode_lines to simplify it.
17834 Process the line number information in LH.
17835 If DECODE_FOR_PST_P is non-zero, all we do is process the line number
17836 program in order to set included_p for every referenced header. */
17839 dwarf_decode_lines_1 (struct line_header *lh, struct dwarf2_cu *cu,
17840 const int decode_for_pst_p, CORE_ADDR lowpc)
17842 const gdb_byte *line_ptr, *extended_end;
17843 const gdb_byte *line_end;
17844 unsigned int bytes_read, extended_len;
17845 unsigned char op_code, extended_op;
17846 CORE_ADDR baseaddr;
17847 struct objfile *objfile = cu->objfile;
17848 bfd *abfd = objfile->obfd;
17849 struct gdbarch *gdbarch = get_objfile_arch (objfile);
17850 /* Non-zero if we're recording line info (as opposed to building partial
17852 int record_lines_p = !decode_for_pst_p;
17853 /* A collection of things we need to pass to dwarf_record_line. */
17854 lnp_reader_state reader_state;
17856 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
17858 line_ptr = lh->statement_program_start;
17859 line_end = lh->statement_program_end;
17861 reader_state.gdbarch = gdbarch;
17862 reader_state.line_header = lh;
17863 reader_state.record_lines_p = record_lines_p;
17865 /* Read the statement sequences until there's nothing left. */
17866 while (line_ptr < line_end)
17868 /* The DWARF line number program state machine. */
17869 lnp_state_machine state_machine;
17870 int end_sequence = 0;
17872 /* Reset the state machine at the start of each sequence. */
17873 init_lnp_state_machine (&state_machine, &reader_state);
17875 if (record_lines_p && lh->num_file_names >= state_machine.file)
17877 /* Start a subfile for the current file of the state machine. */
17878 /* lh->include_dirs and lh->file_names are 0-based, but the
17879 directory and file name numbers in the statement program
17881 struct file_entry *fe = &lh->file_names[state_machine.file - 1];
17882 const char *dir = NULL;
17884 if (fe->dir_index && lh->include_dirs != NULL)
17885 dir = lh->include_dirs[fe->dir_index - 1];
17887 dwarf2_start_subfile (fe->name, dir);
17890 /* Decode the table. */
17891 while (line_ptr < line_end && !end_sequence)
17893 op_code = read_1_byte (abfd, line_ptr);
17896 if (op_code >= lh->opcode_base)
17898 /* Special opcode. */
17899 unsigned char adj_opcode;
17900 CORE_ADDR addr_adj;
17903 adj_opcode = op_code - lh->opcode_base;
17904 addr_adj = (((state_machine.op_index
17905 + (adj_opcode / lh->line_range))
17906 / lh->maximum_ops_per_instruction)
17907 * lh->minimum_instruction_length);
17908 state_machine.address
17909 += gdbarch_adjust_dwarf2_line (gdbarch, addr_adj, 1);
17910 state_machine.op_index = ((state_machine.op_index
17911 + (adj_opcode / lh->line_range))
17912 % lh->maximum_ops_per_instruction);
17913 line_delta = lh->line_base + (adj_opcode % lh->line_range);
17914 state_machine.line += line_delta;
17915 if (line_delta != 0)
17916 state_machine.line_has_non_zero_discriminator
17917 = state_machine.discriminator != 0;
17919 dwarf_record_line (&reader_state, &state_machine, 0);
17920 state_machine.discriminator = 0;
17922 else switch (op_code)
17924 case DW_LNS_extended_op:
17925 extended_len = read_unsigned_leb128 (abfd, line_ptr,
17927 line_ptr += bytes_read;
17928 extended_end = line_ptr + extended_len;
17929 extended_op = read_1_byte (abfd, line_ptr);
17931 switch (extended_op)
17933 case DW_LNE_end_sequence:
17934 state_machine.record_line = record_line;
17937 case DW_LNE_set_address:
17940 = read_address (abfd, line_ptr, cu, &bytes_read);
17942 line_ptr += bytes_read;
17943 check_line_address (cu, &state_machine, line_ptr,
17945 state_machine.op_index = 0;
17946 address += baseaddr;
17947 state_machine.address
17948 = gdbarch_adjust_dwarf2_line (gdbarch, address, 0);
17951 case DW_LNE_define_file:
17953 const char *cur_file;
17954 unsigned int dir_index, mod_time, length;
17956 cur_file = read_direct_string (abfd, line_ptr,
17958 line_ptr += bytes_read;
17960 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17961 line_ptr += bytes_read;
17963 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17964 line_ptr += bytes_read;
17966 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17967 line_ptr += bytes_read;
17968 add_file_name (lh, cur_file, dir_index, mod_time, length);
17971 case DW_LNE_set_discriminator:
17972 /* The discriminator is not interesting to the debugger;
17973 just ignore it. We still need to check its value though:
17974 if there are consecutive entries for the same
17975 (non-prologue) line we want to coalesce them.
17977 state_machine.discriminator
17978 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17979 state_machine.line_has_non_zero_discriminator
17980 |= state_machine.discriminator != 0;
17981 line_ptr += bytes_read;
17984 complaint (&symfile_complaints,
17985 _("mangled .debug_line section"));
17988 /* Make sure that we parsed the extended op correctly. If e.g.
17989 we expected a different address size than the producer used,
17990 we may have read the wrong number of bytes. */
17991 if (line_ptr != extended_end)
17993 complaint (&symfile_complaints,
17994 _("mangled .debug_line section"));
17999 dwarf_record_line (&reader_state, &state_machine, 0);
18000 state_machine.discriminator = 0;
18002 case DW_LNS_advance_pc:
18005 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
18006 CORE_ADDR addr_adj;
18008 addr_adj = (((state_machine.op_index + adjust)
18009 / lh->maximum_ops_per_instruction)
18010 * lh->minimum_instruction_length);
18011 state_machine.address
18012 += gdbarch_adjust_dwarf2_line (gdbarch, addr_adj, 1);
18013 state_machine.op_index = ((state_machine.op_index + adjust)
18014 % lh->maximum_ops_per_instruction);
18015 line_ptr += bytes_read;
18018 case DW_LNS_advance_line:
18021 = read_signed_leb128 (abfd, line_ptr, &bytes_read);
18023 state_machine.line += line_delta;
18024 if (line_delta != 0)
18025 state_machine.line_has_non_zero_discriminator
18026 = state_machine.discriminator != 0;
18027 line_ptr += bytes_read;
18030 case DW_LNS_set_file:
18032 /* The arrays lh->include_dirs and lh->file_names are
18033 0-based, but the directory and file name numbers in
18034 the statement program are 1-based. */
18035 struct file_entry *fe;
18036 const char *dir = NULL;
18038 state_machine.file = read_unsigned_leb128 (abfd, line_ptr,
18040 line_ptr += bytes_read;
18041 if (state_machine.file == 0
18042 || state_machine.file - 1 >= lh->num_file_names)
18043 dwarf2_debug_line_missing_file_complaint ();
18046 fe = &lh->file_names[state_machine.file - 1];
18047 if (fe->dir_index && lh->include_dirs != NULL)
18048 dir = lh->include_dirs[fe->dir_index - 1];
18049 if (record_lines_p)
18051 state_machine.last_subfile = current_subfile;
18052 state_machine.line_has_non_zero_discriminator
18053 = state_machine.discriminator != 0;
18054 dwarf2_start_subfile (fe->name, dir);
18059 case DW_LNS_set_column:
18060 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
18061 line_ptr += bytes_read;
18063 case DW_LNS_negate_stmt:
18064 state_machine.is_stmt = (!state_machine.is_stmt);
18066 case DW_LNS_set_basic_block:
18068 /* Add to the address register of the state machine the
18069 address increment value corresponding to special opcode
18070 255. I.e., this value is scaled by the minimum
18071 instruction length since special opcode 255 would have
18072 scaled the increment. */
18073 case DW_LNS_const_add_pc:
18075 CORE_ADDR adjust = (255 - lh->opcode_base) / lh->line_range;
18076 CORE_ADDR addr_adj;
18078 addr_adj = (((state_machine.op_index + adjust)
18079 / lh->maximum_ops_per_instruction)
18080 * lh->minimum_instruction_length);
18081 state_machine.address
18082 += gdbarch_adjust_dwarf2_line (gdbarch, addr_adj, 1);
18083 state_machine.op_index = ((state_machine.op_index + adjust)
18084 % lh->maximum_ops_per_instruction);
18087 case DW_LNS_fixed_advance_pc:
18089 CORE_ADDR addr_adj;
18091 addr_adj = read_2_bytes (abfd, line_ptr);
18092 state_machine.address
18093 += gdbarch_adjust_dwarf2_line (gdbarch, addr_adj, 1);
18094 state_machine.op_index = 0;
18100 /* Unknown standard opcode, ignore it. */
18103 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
18105 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
18106 line_ptr += bytes_read;
18113 dwarf2_debug_line_missing_end_sequence_complaint ();
18115 /* We got a DW_LNE_end_sequence (or we ran off the end of the buffer,
18116 in which case we still finish recording the last line). */
18117 dwarf_record_line (&reader_state, &state_machine, 1);
18121 /* Decode the Line Number Program (LNP) for the given line_header
18122 structure and CU. The actual information extracted and the type
18123 of structures created from the LNP depends on the value of PST.
18125 1. If PST is NULL, then this procedure uses the data from the program
18126 to create all necessary symbol tables, and their linetables.
18128 2. If PST is not NULL, this procedure reads the program to determine
18129 the list of files included by the unit represented by PST, and
18130 builds all the associated partial symbol tables.
18132 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
18133 It is used for relative paths in the line table.
18134 NOTE: When processing partial symtabs (pst != NULL),
18135 comp_dir == pst->dirname.
18137 NOTE: It is important that psymtabs have the same file name (via strcmp)
18138 as the corresponding symtab. Since COMP_DIR is not used in the name of the
18139 symtab we don't use it in the name of the psymtabs we create.
18140 E.g. expand_line_sal requires this when finding psymtabs to expand.
18141 A good testcase for this is mb-inline.exp.
18143 LOWPC is the lowest address in CU (or 0 if not known).
18145 Boolean DECODE_MAPPING specifies we need to fully decode .debug_line
18146 for its PC<->lines mapping information. Otherwise only the filename
18147 table is read in. */
18150 dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
18151 struct dwarf2_cu *cu, struct partial_symtab *pst,
18152 CORE_ADDR lowpc, int decode_mapping)
18154 struct objfile *objfile = cu->objfile;
18155 const int decode_for_pst_p = (pst != NULL);
18157 if (decode_mapping)
18158 dwarf_decode_lines_1 (lh, cu, decode_for_pst_p, lowpc);
18160 if (decode_for_pst_p)
18164 /* Now that we're done scanning the Line Header Program, we can
18165 create the psymtab of each included file. */
18166 for (file_index = 0; file_index < lh->num_file_names; file_index++)
18167 if (lh->file_names[file_index].included_p == 1)
18169 const char *include_name =
18170 psymtab_include_file_name (lh, file_index, pst, comp_dir);
18171 if (include_name != NULL)
18172 dwarf2_create_include_psymtab (include_name, pst, objfile);
18177 /* Make sure a symtab is created for every file, even files
18178 which contain only variables (i.e. no code with associated
18180 struct compunit_symtab *cust = buildsym_compunit_symtab ();
18183 for (i = 0; i < lh->num_file_names; i++)
18185 const char *dir = NULL;
18186 struct file_entry *fe;
18188 fe = &lh->file_names[i];
18189 if (fe->dir_index && lh->include_dirs != NULL)
18190 dir = lh->include_dirs[fe->dir_index - 1];
18191 dwarf2_start_subfile (fe->name, dir);
18193 if (current_subfile->symtab == NULL)
18195 current_subfile->symtab
18196 = allocate_symtab (cust, current_subfile->name);
18198 fe->symtab = current_subfile->symtab;
18203 /* Start a subfile for DWARF. FILENAME is the name of the file and
18204 DIRNAME the name of the source directory which contains FILENAME
18205 or NULL if not known.
18206 This routine tries to keep line numbers from identical absolute and
18207 relative file names in a common subfile.
18209 Using the `list' example from the GDB testsuite, which resides in
18210 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
18211 of /srcdir/list0.c yields the following debugging information for list0.c:
18213 DW_AT_name: /srcdir/list0.c
18214 DW_AT_comp_dir: /compdir
18215 files.files[0].name: list0.h
18216 files.files[0].dir: /srcdir
18217 files.files[1].name: list0.c
18218 files.files[1].dir: /srcdir
18220 The line number information for list0.c has to end up in a single
18221 subfile, so that `break /srcdir/list0.c:1' works as expected.
18222 start_subfile will ensure that this happens provided that we pass the
18223 concatenation of files.files[1].dir and files.files[1].name as the
18227 dwarf2_start_subfile (const char *filename, const char *dirname)
18231 /* In order not to lose the line information directory,
18232 we concatenate it to the filename when it makes sense.
18233 Note that the Dwarf3 standard says (speaking of filenames in line
18234 information): ``The directory index is ignored for file names
18235 that represent full path names''. Thus ignoring dirname in the
18236 `else' branch below isn't an issue. */
18238 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
18240 copy = concat (dirname, SLASH_STRING, filename, (char *)NULL);
18244 start_subfile (filename);
18250 /* Start a symtab for DWARF.
18251 NAME, COMP_DIR, LOW_PC are passed to start_symtab. */
18253 static struct compunit_symtab *
18254 dwarf2_start_symtab (struct dwarf2_cu *cu,
18255 const char *name, const char *comp_dir, CORE_ADDR low_pc)
18257 struct compunit_symtab *cust
18258 = start_symtab (cu->objfile, name, comp_dir, low_pc);
18260 record_debugformat ("DWARF 2");
18261 record_producer (cu->producer);
18263 /* We assume that we're processing GCC output. */
18264 processing_gcc_compilation = 2;
18266 cu->processing_has_namespace_info = 0;
18272 var_decode_location (struct attribute *attr, struct symbol *sym,
18273 struct dwarf2_cu *cu)
18275 struct objfile *objfile = cu->objfile;
18276 struct comp_unit_head *cu_header = &cu->header;
18278 /* NOTE drow/2003-01-30: There used to be a comment and some special
18279 code here to turn a symbol with DW_AT_external and a
18280 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
18281 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
18282 with some versions of binutils) where shared libraries could have
18283 relocations against symbols in their debug information - the
18284 minimal symbol would have the right address, but the debug info
18285 would not. It's no longer necessary, because we will explicitly
18286 apply relocations when we read in the debug information now. */
18288 /* A DW_AT_location attribute with no contents indicates that a
18289 variable has been optimized away. */
18290 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
18292 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
18296 /* Handle one degenerate form of location expression specially, to
18297 preserve GDB's previous behavior when section offsets are
18298 specified. If this is just a DW_OP_addr or DW_OP_GNU_addr_index
18299 then mark this symbol as LOC_STATIC. */
18301 if (attr_form_is_block (attr)
18302 && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
18303 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
18304 || (DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
18305 && (DW_BLOCK (attr)->size
18306 == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
18308 unsigned int dummy;
18310 if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
18311 SYMBOL_VALUE_ADDRESS (sym) =
18312 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
18314 SYMBOL_VALUE_ADDRESS (sym) =
18315 read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1, &dummy);
18316 SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
18317 fixup_symbol_section (sym, objfile);
18318 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
18319 SYMBOL_SECTION (sym));
18323 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
18324 expression evaluator, and use LOC_COMPUTED only when necessary
18325 (i.e. when the value of a register or memory location is
18326 referenced, or a thread-local block, etc.). Then again, it might
18327 not be worthwhile. I'm assuming that it isn't unless performance
18328 or memory numbers show me otherwise. */
18330 dwarf2_symbol_mark_computed (attr, sym, cu, 0);
18332 if (SYMBOL_COMPUTED_OPS (sym)->location_has_loclist)
18333 cu->has_loclist = 1;
18336 /* Given a pointer to a DWARF information entry, figure out if we need
18337 to make a symbol table entry for it, and if so, create a new entry
18338 and return a pointer to it.
18339 If TYPE is NULL, determine symbol type from the die, otherwise
18340 used the passed type.
18341 If SPACE is not NULL, use it to hold the new symbol. If it is
18342 NULL, allocate a new symbol on the objfile's obstack. */
18344 static struct symbol *
18345 new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
18346 struct symbol *space)
18348 struct objfile *objfile = cu->objfile;
18349 struct gdbarch *gdbarch = get_objfile_arch (objfile);
18350 struct symbol *sym = NULL;
18352 struct attribute *attr = NULL;
18353 struct attribute *attr2 = NULL;
18354 CORE_ADDR baseaddr;
18355 struct pending **list_to_add = NULL;
18357 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
18359 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
18361 name = dwarf2_name (die, cu);
18364 const char *linkagename;
18365 int suppress_add = 0;
18370 sym = allocate_symbol (objfile);
18371 OBJSTAT (objfile, n_syms++);
18373 /* Cache this symbol's name and the name's demangled form (if any). */
18374 SYMBOL_SET_LANGUAGE (sym, cu->language, &objfile->objfile_obstack);
18375 linkagename = dwarf2_physname (name, die, cu);
18376 SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
18378 /* Fortran does not have mangling standard and the mangling does differ
18379 between gfortran, iFort etc. */
18380 if (cu->language == language_fortran
18381 && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
18382 symbol_set_demangled_name (&(sym->ginfo),
18383 dwarf2_full_name (name, die, cu),
18386 /* Default assumptions.
18387 Use the passed type or decode it from the die. */
18388 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
18389 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
18391 SYMBOL_TYPE (sym) = type;
18393 SYMBOL_TYPE (sym) = die_type (die, cu);
18394 attr = dwarf2_attr (die,
18395 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
18399 SYMBOL_LINE (sym) = DW_UNSND (attr);
18402 attr = dwarf2_attr (die,
18403 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
18407 int file_index = DW_UNSND (attr);
18409 if (cu->line_header == NULL
18410 || file_index > cu->line_header->num_file_names)
18411 complaint (&symfile_complaints,
18412 _("file index out of range"));
18413 else if (file_index > 0)
18415 struct file_entry *fe;
18417 fe = &cu->line_header->file_names[file_index - 1];
18418 symbol_set_symtab (sym, fe->symtab);
18425 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
18430 addr = attr_value_as_address (attr);
18431 addr = gdbarch_adjust_dwarf2_addr (gdbarch, addr + baseaddr);
18432 SYMBOL_VALUE_ADDRESS (sym) = addr;
18434 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
18435 SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
18436 SYMBOL_ACLASS_INDEX (sym) = LOC_LABEL;
18437 add_symbol_to_list (sym, cu->list_in_scope);
18439 case DW_TAG_subprogram:
18440 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
18442 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
18443 attr2 = dwarf2_attr (die, DW_AT_external, cu);
18444 if ((attr2 && (DW_UNSND (attr2) != 0))
18445 || cu->language == language_ada)
18447 /* Subprograms marked external are stored as a global symbol.
18448 Ada subprograms, whether marked external or not, are always
18449 stored as a global symbol, because we want to be able to
18450 access them globally. For instance, we want to be able
18451 to break on a nested subprogram without having to
18452 specify the context. */
18453 list_to_add = &global_symbols;
18457 list_to_add = cu->list_in_scope;
18460 case DW_TAG_inlined_subroutine:
18461 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
18463 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
18464 SYMBOL_INLINED (sym) = 1;
18465 list_to_add = cu->list_in_scope;
18467 case DW_TAG_template_value_param:
18469 /* Fall through. */
18470 case DW_TAG_constant:
18471 case DW_TAG_variable:
18472 case DW_TAG_member:
18473 /* Compilation with minimal debug info may result in
18474 variables with missing type entries. Change the
18475 misleading `void' type to something sensible. */
18476 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
18478 = objfile_type (objfile)->nodebug_data_symbol;
18480 attr = dwarf2_attr (die, DW_AT_const_value, cu);
18481 /* In the case of DW_TAG_member, we should only be called for
18482 static const members. */
18483 if (die->tag == DW_TAG_member)
18485 /* dwarf2_add_field uses die_is_declaration,
18486 so we do the same. */
18487 gdb_assert (die_is_declaration (die, cu));
18492 dwarf2_const_value (attr, sym, cu);
18493 attr2 = dwarf2_attr (die, DW_AT_external, cu);
18496 if (attr2 && (DW_UNSND (attr2) != 0))
18497 list_to_add = &global_symbols;
18499 list_to_add = cu->list_in_scope;
18503 attr = dwarf2_attr (die, DW_AT_location, cu);
18506 var_decode_location (attr, sym, cu);
18507 attr2 = dwarf2_attr (die, DW_AT_external, cu);
18509 /* Fortran explicitly imports any global symbols to the local
18510 scope by DW_TAG_common_block. */
18511 if (cu->language == language_fortran && die->parent
18512 && die->parent->tag == DW_TAG_common_block)
18515 if (SYMBOL_CLASS (sym) == LOC_STATIC
18516 && SYMBOL_VALUE_ADDRESS (sym) == 0
18517 && !dwarf2_per_objfile->has_section_at_zero)
18519 /* When a static variable is eliminated by the linker,
18520 the corresponding debug information is not stripped
18521 out, but the variable address is set to null;
18522 do not add such variables into symbol table. */
18524 else if (attr2 && (DW_UNSND (attr2) != 0))
18526 /* Workaround gfortran PR debug/40040 - it uses
18527 DW_AT_location for variables in -fPIC libraries which may
18528 get overriden by other libraries/executable and get
18529 a different address. Resolve it by the minimal symbol
18530 which may come from inferior's executable using copy
18531 relocation. Make this workaround only for gfortran as for
18532 other compilers GDB cannot guess the minimal symbol
18533 Fortran mangling kind. */
18534 if (cu->language == language_fortran && die->parent
18535 && die->parent->tag == DW_TAG_module
18537 && startswith (cu->producer, "GNU Fortran"))
18538 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
18540 /* A variable with DW_AT_external is never static,
18541 but it may be block-scoped. */
18542 list_to_add = (cu->list_in_scope == &file_symbols
18543 ? &global_symbols : cu->list_in_scope);
18546 list_to_add = cu->list_in_scope;
18550 /* We do not know the address of this symbol.
18551 If it is an external symbol and we have type information
18552 for it, enter the symbol as a LOC_UNRESOLVED symbol.
18553 The address of the variable will then be determined from
18554 the minimal symbol table whenever the variable is
18556 attr2 = dwarf2_attr (die, DW_AT_external, cu);
18558 /* Fortran explicitly imports any global symbols to the local
18559 scope by DW_TAG_common_block. */
18560 if (cu->language == language_fortran && die->parent
18561 && die->parent->tag == DW_TAG_common_block)
18563 /* SYMBOL_CLASS doesn't matter here because
18564 read_common_block is going to reset it. */
18566 list_to_add = cu->list_in_scope;
18568 else if (attr2 && (DW_UNSND (attr2) != 0)
18569 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
18571 /* A variable with DW_AT_external is never static, but it
18572 may be block-scoped. */
18573 list_to_add = (cu->list_in_scope == &file_symbols
18574 ? &global_symbols : cu->list_in_scope);
18576 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
18578 else if (!die_is_declaration (die, cu))
18580 /* Use the default LOC_OPTIMIZED_OUT class. */
18581 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
18583 list_to_add = cu->list_in_scope;
18587 case DW_TAG_formal_parameter:
18588 /* If we are inside a function, mark this as an argument. If
18589 not, we might be looking at an argument to an inlined function
18590 when we do not have enough information to show inlined frames;
18591 pretend it's a local variable in that case so that the user can
18593 if (context_stack_depth > 0
18594 && context_stack[context_stack_depth - 1].name != NULL)
18595 SYMBOL_IS_ARGUMENT (sym) = 1;
18596 attr = dwarf2_attr (die, DW_AT_location, cu);
18599 var_decode_location (attr, sym, cu);
18601 attr = dwarf2_attr (die, DW_AT_const_value, cu);
18604 dwarf2_const_value (attr, sym, cu);
18607 list_to_add = cu->list_in_scope;
18609 case DW_TAG_unspecified_parameters:
18610 /* From varargs functions; gdb doesn't seem to have any
18611 interest in this information, so just ignore it for now.
18614 case DW_TAG_template_type_param:
18616 /* Fall through. */
18617 case DW_TAG_class_type:
18618 case DW_TAG_interface_type:
18619 case DW_TAG_structure_type:
18620 case DW_TAG_union_type:
18621 case DW_TAG_set_type:
18622 case DW_TAG_enumeration_type:
18623 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
18624 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
18627 /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
18628 really ever be static objects: otherwise, if you try
18629 to, say, break of a class's method and you're in a file
18630 which doesn't mention that class, it won't work unless
18631 the check for all static symbols in lookup_symbol_aux
18632 saves you. See the OtherFileClass tests in
18633 gdb.c++/namespace.exp. */
18637 list_to_add = (cu->list_in_scope == &file_symbols
18638 && (cu->language == language_cplus
18639 || cu->language == language_java)
18640 ? &global_symbols : cu->list_in_scope);
18642 /* The semantics of C++ state that "struct foo {
18643 ... }" also defines a typedef for "foo". A Java
18644 class declaration also defines a typedef for the
18646 if (cu->language == language_cplus
18647 || cu->language == language_java
18648 || cu->language == language_ada
18649 || cu->language == language_d
18650 || cu->language == language_rust)
18652 /* The symbol's name is already allocated along
18653 with this objfile, so we don't need to
18654 duplicate it for the type. */
18655 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
18656 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
18661 case DW_TAG_typedef:
18662 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
18663 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
18664 list_to_add = cu->list_in_scope;
18666 case DW_TAG_base_type:
18667 case DW_TAG_subrange_type:
18668 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
18669 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
18670 list_to_add = cu->list_in_scope;
18672 case DW_TAG_enumerator:
18673 attr = dwarf2_attr (die, DW_AT_const_value, cu);
18676 dwarf2_const_value (attr, sym, cu);
18679 /* NOTE: carlton/2003-11-10: See comment above in the
18680 DW_TAG_class_type, etc. block. */
18682 list_to_add = (cu->list_in_scope == &file_symbols
18683 && (cu->language == language_cplus
18684 || cu->language == language_java)
18685 ? &global_symbols : cu->list_in_scope);
18688 case DW_TAG_imported_declaration:
18689 case DW_TAG_namespace:
18690 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
18691 list_to_add = &global_symbols;
18693 case DW_TAG_module:
18694 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
18695 SYMBOL_DOMAIN (sym) = MODULE_DOMAIN;
18696 list_to_add = &global_symbols;
18698 case DW_TAG_common_block:
18699 SYMBOL_ACLASS_INDEX (sym) = LOC_COMMON_BLOCK;
18700 SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
18701 add_symbol_to_list (sym, cu->list_in_scope);
18704 /* Not a tag we recognize. Hopefully we aren't processing
18705 trash data, but since we must specifically ignore things
18706 we don't recognize, there is nothing else we should do at
18708 complaint (&symfile_complaints, _("unsupported tag: '%s'"),
18709 dwarf_tag_name (die->tag));
18715 sym->hash_next = objfile->template_symbols;
18716 objfile->template_symbols = sym;
18717 list_to_add = NULL;
18720 if (list_to_add != NULL)
18721 add_symbol_to_list (sym, list_to_add);
18723 /* For the benefit of old versions of GCC, check for anonymous
18724 namespaces based on the demangled name. */
18725 if (!cu->processing_has_namespace_info
18726 && cu->language == language_cplus)
18727 cp_scan_for_anonymous_namespaces (sym, objfile);
18732 /* A wrapper for new_symbol_full that always allocates a new symbol. */
18734 static struct symbol *
18735 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
18737 return new_symbol_full (die, type, cu, NULL);
18740 /* Given an attr with a DW_FORM_dataN value in host byte order,
18741 zero-extend it as appropriate for the symbol's type. The DWARF
18742 standard (v4) is not entirely clear about the meaning of using
18743 DW_FORM_dataN for a constant with a signed type, where the type is
18744 wider than the data. The conclusion of a discussion on the DWARF
18745 list was that this is unspecified. We choose to always zero-extend
18746 because that is the interpretation long in use by GCC. */
18749 dwarf2_const_value_data (const struct attribute *attr, struct obstack *obstack,
18750 struct dwarf2_cu *cu, LONGEST *value, int bits)
18752 struct objfile *objfile = cu->objfile;
18753 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
18754 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
18755 LONGEST l = DW_UNSND (attr);
18757 if (bits < sizeof (*value) * 8)
18759 l &= ((LONGEST) 1 << bits) - 1;
18762 else if (bits == sizeof (*value) * 8)
18766 gdb_byte *bytes = (gdb_byte *) obstack_alloc (obstack, bits / 8);
18767 store_unsigned_integer (bytes, bits / 8, byte_order, l);
18774 /* Read a constant value from an attribute. Either set *VALUE, or if
18775 the value does not fit in *VALUE, set *BYTES - either already
18776 allocated on the objfile obstack, or newly allocated on OBSTACK,
18777 or, set *BATON, if we translated the constant to a location
18781 dwarf2_const_value_attr (const struct attribute *attr, struct type *type,
18782 const char *name, struct obstack *obstack,
18783 struct dwarf2_cu *cu,
18784 LONGEST *value, const gdb_byte **bytes,
18785 struct dwarf2_locexpr_baton **baton)
18787 struct objfile *objfile = cu->objfile;
18788 struct comp_unit_head *cu_header = &cu->header;
18789 struct dwarf_block *blk;
18790 enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
18791 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
18797 switch (attr->form)
18800 case DW_FORM_GNU_addr_index:
18804 if (TYPE_LENGTH (type) != cu_header->addr_size)
18805 dwarf2_const_value_length_mismatch_complaint (name,
18806 cu_header->addr_size,
18807 TYPE_LENGTH (type));
18808 /* Symbols of this form are reasonably rare, so we just
18809 piggyback on the existing location code rather than writing
18810 a new implementation of symbol_computed_ops. */
18811 *baton = XOBNEW (obstack, struct dwarf2_locexpr_baton);
18812 (*baton)->per_cu = cu->per_cu;
18813 gdb_assert ((*baton)->per_cu);
18815 (*baton)->size = 2 + cu_header->addr_size;
18816 data = (gdb_byte *) obstack_alloc (obstack, (*baton)->size);
18817 (*baton)->data = data;
18819 data[0] = DW_OP_addr;
18820 store_unsigned_integer (&data[1], cu_header->addr_size,
18821 byte_order, DW_ADDR (attr));
18822 data[cu_header->addr_size + 1] = DW_OP_stack_value;
18825 case DW_FORM_string:
18827 case DW_FORM_GNU_str_index:
18828 case DW_FORM_GNU_strp_alt:
18829 /* DW_STRING is already allocated on the objfile obstack, point
18831 *bytes = (const gdb_byte *) DW_STRING (attr);
18833 case DW_FORM_block1:
18834 case DW_FORM_block2:
18835 case DW_FORM_block4:
18836 case DW_FORM_block:
18837 case DW_FORM_exprloc:
18838 blk = DW_BLOCK (attr);
18839 if (TYPE_LENGTH (type) != blk->size)
18840 dwarf2_const_value_length_mismatch_complaint (name, blk->size,
18841 TYPE_LENGTH (type));
18842 *bytes = blk->data;
18845 /* The DW_AT_const_value attributes are supposed to carry the
18846 symbol's value "represented as it would be on the target
18847 architecture." By the time we get here, it's already been
18848 converted to host endianness, so we just need to sign- or
18849 zero-extend it as appropriate. */
18850 case DW_FORM_data1:
18851 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 8);
18853 case DW_FORM_data2:
18854 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 16);
18856 case DW_FORM_data4:
18857 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 32);
18859 case DW_FORM_data8:
18860 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 64);
18863 case DW_FORM_sdata:
18864 *value = DW_SND (attr);
18867 case DW_FORM_udata:
18868 *value = DW_UNSND (attr);
18872 complaint (&symfile_complaints,
18873 _("unsupported const value attribute form: '%s'"),
18874 dwarf_form_name (attr->form));
18881 /* Copy constant value from an attribute to a symbol. */
18884 dwarf2_const_value (const struct attribute *attr, struct symbol *sym,
18885 struct dwarf2_cu *cu)
18887 struct objfile *objfile = cu->objfile;
18889 const gdb_byte *bytes;
18890 struct dwarf2_locexpr_baton *baton;
18892 dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
18893 SYMBOL_PRINT_NAME (sym),
18894 &objfile->objfile_obstack, cu,
18895 &value, &bytes, &baton);
18899 SYMBOL_LOCATION_BATON (sym) = baton;
18900 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
18902 else if (bytes != NULL)
18904 SYMBOL_VALUE_BYTES (sym) = bytes;
18905 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST_BYTES;
18909 SYMBOL_VALUE (sym) = value;
18910 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
18914 /* Return the type of the die in question using its DW_AT_type attribute. */
18916 static struct type *
18917 die_type (struct die_info *die, struct dwarf2_cu *cu)
18919 struct attribute *type_attr;
18921 type_attr = dwarf2_attr (die, DW_AT_type, cu);
18924 /* A missing DW_AT_type represents a void type. */
18925 return objfile_type (cu->objfile)->builtin_void;
18928 return lookup_die_type (die, type_attr, cu);
18931 /* True iff CU's producer generates GNAT Ada auxiliary information
18932 that allows to find parallel types through that information instead
18933 of having to do expensive parallel lookups by type name. */
18936 need_gnat_info (struct dwarf2_cu *cu)
18938 /* FIXME: brobecker/2010-10-12: As of now, only the AdaCore version
18939 of GNAT produces this auxiliary information, without any indication
18940 that it is produced. Part of enhancing the FSF version of GNAT
18941 to produce that information will be to put in place an indicator
18942 that we can use in order to determine whether the descriptive type
18943 info is available or not. One suggestion that has been made is
18944 to use a new attribute, attached to the CU die. For now, assume
18945 that the descriptive type info is not available. */
18949 /* Return the auxiliary type of the die in question using its
18950 DW_AT_GNAT_descriptive_type attribute. Returns NULL if the
18951 attribute is not present. */
18953 static struct type *
18954 die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
18956 struct attribute *type_attr;
18958 type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
18962 return lookup_die_type (die, type_attr, cu);
18965 /* If DIE has a descriptive_type attribute, then set the TYPE's
18966 descriptive type accordingly. */
18969 set_descriptive_type (struct type *type, struct die_info *die,
18970 struct dwarf2_cu *cu)
18972 struct type *descriptive_type = die_descriptive_type (die, cu);
18974 if (descriptive_type)
18976 ALLOCATE_GNAT_AUX_TYPE (type);
18977 TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
18981 /* Return the containing type of the die in question using its
18982 DW_AT_containing_type attribute. */
18984 static struct type *
18985 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
18987 struct attribute *type_attr;
18989 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
18991 error (_("Dwarf Error: Problem turning containing type into gdb type "
18992 "[in module %s]"), objfile_name (cu->objfile));
18994 return lookup_die_type (die, type_attr, cu);
18997 /* Return an error marker type to use for the ill formed type in DIE/CU. */
18999 static struct type *
19000 build_error_marker_type (struct dwarf2_cu *cu, struct die_info *die)
19002 struct objfile *objfile = dwarf2_per_objfile->objfile;
19003 char *message, *saved;
19005 message = xstrprintf (_("<unknown type in %s, CU 0x%x, DIE 0x%x>"),
19006 objfile_name (objfile),
19007 cu->header.offset.sect_off,
19008 die->offset.sect_off);
19009 saved = (char *) obstack_copy0 (&objfile->objfile_obstack,
19010 message, strlen (message));
19013 return init_type (TYPE_CODE_ERROR, 0, 0, saved, objfile);
19016 /* Look up the type of DIE in CU using its type attribute ATTR.
19017 ATTR must be one of: DW_AT_type, DW_AT_GNAT_descriptive_type,
19018 DW_AT_containing_type.
19019 If there is no type substitute an error marker. */
19021 static struct type *
19022 lookup_die_type (struct die_info *die, const struct attribute *attr,
19023 struct dwarf2_cu *cu)
19025 struct objfile *objfile = cu->objfile;
19026 struct type *this_type;
19028 gdb_assert (attr->name == DW_AT_type
19029 || attr->name == DW_AT_GNAT_descriptive_type
19030 || attr->name == DW_AT_containing_type);
19032 /* First see if we have it cached. */
19034 if (attr->form == DW_FORM_GNU_ref_alt)
19036 struct dwarf2_per_cu_data *per_cu;
19037 sect_offset offset = dwarf2_get_ref_die_offset (attr);
19039 per_cu = dwarf2_find_containing_comp_unit (offset, 1, cu->objfile);
19040 this_type = get_die_type_at_offset (offset, per_cu);
19042 else if (attr_form_is_ref (attr))
19044 sect_offset offset = dwarf2_get_ref_die_offset (attr);
19046 this_type = get_die_type_at_offset (offset, cu->per_cu);
19048 else if (attr->form == DW_FORM_ref_sig8)
19050 ULONGEST signature = DW_SIGNATURE (attr);
19052 return get_signatured_type (die, signature, cu);
19056 complaint (&symfile_complaints,
19057 _("Dwarf Error: Bad type attribute %s in DIE"
19058 " at 0x%x [in module %s]"),
19059 dwarf_attr_name (attr->name), die->offset.sect_off,
19060 objfile_name (objfile));
19061 return build_error_marker_type (cu, die);
19064 /* If not cached we need to read it in. */
19066 if (this_type == NULL)
19068 struct die_info *type_die = NULL;
19069 struct dwarf2_cu *type_cu = cu;
19071 if (attr_form_is_ref (attr))
19072 type_die = follow_die_ref (die, attr, &type_cu);
19073 if (type_die == NULL)
19074 return build_error_marker_type (cu, die);
19075 /* If we find the type now, it's probably because the type came
19076 from an inter-CU reference and the type's CU got expanded before
19078 this_type = read_type_die (type_die, type_cu);
19081 /* If we still don't have a type use an error marker. */
19083 if (this_type == NULL)
19084 return build_error_marker_type (cu, die);
19089 /* Return the type in DIE, CU.
19090 Returns NULL for invalid types.
19092 This first does a lookup in die_type_hash,
19093 and only reads the die in if necessary.
19095 NOTE: This can be called when reading in partial or full symbols. */
19097 static struct type *
19098 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
19100 struct type *this_type;
19102 this_type = get_die_type (die, cu);
19106 return read_type_die_1 (die, cu);
19109 /* Read the type in DIE, CU.
19110 Returns NULL for invalid types. */
19112 static struct type *
19113 read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
19115 struct type *this_type = NULL;
19119 case DW_TAG_class_type:
19120 case DW_TAG_interface_type:
19121 case DW_TAG_structure_type:
19122 case DW_TAG_union_type:
19123 this_type = read_structure_type (die, cu);
19125 case DW_TAG_enumeration_type:
19126 this_type = read_enumeration_type (die, cu);
19128 case DW_TAG_subprogram:
19129 case DW_TAG_subroutine_type:
19130 case DW_TAG_inlined_subroutine:
19131 this_type = read_subroutine_type (die, cu);
19133 case DW_TAG_array_type:
19134 this_type = read_array_type (die, cu);
19136 case DW_TAG_set_type:
19137 this_type = read_set_type (die, cu);
19139 case DW_TAG_pointer_type:
19140 this_type = read_tag_pointer_type (die, cu);
19142 case DW_TAG_ptr_to_member_type:
19143 this_type = read_tag_ptr_to_member_type (die, cu);
19145 case DW_TAG_reference_type:
19146 this_type = read_tag_reference_type (die, cu);
19148 case DW_TAG_const_type:
19149 this_type = read_tag_const_type (die, cu);
19151 case DW_TAG_volatile_type:
19152 this_type = read_tag_volatile_type (die, cu);
19154 case DW_TAG_restrict_type:
19155 this_type = read_tag_restrict_type (die, cu);
19157 case DW_TAG_string_type:
19158 this_type = read_tag_string_type (die, cu);
19160 case DW_TAG_typedef:
19161 this_type = read_typedef (die, cu);
19163 case DW_TAG_subrange_type:
19164 this_type = read_subrange_type (die, cu);
19166 case DW_TAG_base_type:
19167 this_type = read_base_type (die, cu);
19169 case DW_TAG_unspecified_type:
19170 this_type = read_unspecified_type (die, cu);
19172 case DW_TAG_namespace:
19173 this_type = read_namespace_type (die, cu);
19175 case DW_TAG_module:
19176 this_type = read_module_type (die, cu);
19178 case DW_TAG_atomic_type:
19179 this_type = read_tag_atomic_type (die, cu);
19182 complaint (&symfile_complaints,
19183 _("unexpected tag in read_type_die: '%s'"),
19184 dwarf_tag_name (die->tag));
19191 /* See if we can figure out if the class lives in a namespace. We do
19192 this by looking for a member function; its demangled name will
19193 contain namespace info, if there is any.
19194 Return the computed name or NULL.
19195 Space for the result is allocated on the objfile's obstack.
19196 This is the full-die version of guess_partial_die_structure_name.
19197 In this case we know DIE has no useful parent. */
19200 guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
19202 struct die_info *spec_die;
19203 struct dwarf2_cu *spec_cu;
19204 struct die_info *child;
19207 spec_die = die_specification (die, &spec_cu);
19208 if (spec_die != NULL)
19214 for (child = die->child;
19216 child = child->sibling)
19218 if (child->tag == DW_TAG_subprogram)
19220 const char *linkage_name;
19222 linkage_name = dwarf2_string_attr (child, DW_AT_linkage_name, cu);
19223 if (linkage_name == NULL)
19224 linkage_name = dwarf2_string_attr (child, DW_AT_MIPS_linkage_name,
19226 if (linkage_name != NULL)
19229 = language_class_name_from_physname (cu->language_defn,
19233 if (actual_name != NULL)
19235 const char *die_name = dwarf2_name (die, cu);
19237 if (die_name != NULL
19238 && strcmp (die_name, actual_name) != 0)
19240 /* Strip off the class name from the full name.
19241 We want the prefix. */
19242 int die_name_len = strlen (die_name);
19243 int actual_name_len = strlen (actual_name);
19245 /* Test for '::' as a sanity check. */
19246 if (actual_name_len > die_name_len + 2
19247 && actual_name[actual_name_len
19248 - die_name_len - 1] == ':')
19249 name = (char *) obstack_copy0 (
19250 &cu->objfile->per_bfd->storage_obstack,
19251 actual_name, actual_name_len - die_name_len - 2);
19254 xfree (actual_name);
19263 /* GCC might emit a nameless typedef that has a linkage name. Determine the
19264 prefix part in such case. See
19265 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
19268 anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
19270 struct attribute *attr;
19273 if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
19274 && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
19277 if (dwarf2_string_attr (die, DW_AT_name, cu) != NULL)
19280 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
19282 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
19283 if (attr == NULL || DW_STRING (attr) == NULL)
19286 /* dwarf2_name had to be already called. */
19287 gdb_assert (DW_STRING_IS_CANONICAL (attr));
19289 /* Strip the base name, keep any leading namespaces/classes. */
19290 base = strrchr (DW_STRING (attr), ':');
19291 if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
19294 return (char *) obstack_copy0 (&cu->objfile->per_bfd->storage_obstack,
19296 &base[-1] - DW_STRING (attr));
19299 /* Return the name of the namespace/class that DIE is defined within,
19300 or "" if we can't tell. The caller should not xfree the result.
19302 For example, if we're within the method foo() in the following
19312 then determine_prefix on foo's die will return "N::C". */
19314 static const char *
19315 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
19317 struct die_info *parent, *spec_die;
19318 struct dwarf2_cu *spec_cu;
19319 struct type *parent_type;
19322 if (cu->language != language_cplus && cu->language != language_java
19323 && cu->language != language_fortran && cu->language != language_d
19324 && cu->language != language_rust)
19327 retval = anonymous_struct_prefix (die, cu);
19331 /* We have to be careful in the presence of DW_AT_specification.
19332 For example, with GCC 3.4, given the code
19336 // Definition of N::foo.
19340 then we'll have a tree of DIEs like this:
19342 1: DW_TAG_compile_unit
19343 2: DW_TAG_namespace // N
19344 3: DW_TAG_subprogram // declaration of N::foo
19345 4: DW_TAG_subprogram // definition of N::foo
19346 DW_AT_specification // refers to die #3
19348 Thus, when processing die #4, we have to pretend that we're in
19349 the context of its DW_AT_specification, namely the contex of die
19352 spec_die = die_specification (die, &spec_cu);
19353 if (spec_die == NULL)
19354 parent = die->parent;
19357 parent = spec_die->parent;
19361 if (parent == NULL)
19363 else if (parent->building_fullname)
19366 const char *parent_name;
19368 /* It has been seen on RealView 2.2 built binaries,
19369 DW_TAG_template_type_param types actually _defined_ as
19370 children of the parent class:
19373 template class <class Enum> Class{};
19374 Class<enum E> class_e;
19376 1: DW_TAG_class_type (Class)
19377 2: DW_TAG_enumeration_type (E)
19378 3: DW_TAG_enumerator (enum1:0)
19379 3: DW_TAG_enumerator (enum2:1)
19381 2: DW_TAG_template_type_param
19382 DW_AT_type DW_FORM_ref_udata (E)
19384 Besides being broken debug info, it can put GDB into an
19385 infinite loop. Consider:
19387 When we're building the full name for Class<E>, we'll start
19388 at Class, and go look over its template type parameters,
19389 finding E. We'll then try to build the full name of E, and
19390 reach here. We're now trying to build the full name of E,
19391 and look over the parent DIE for containing scope. In the
19392 broken case, if we followed the parent DIE of E, we'd again
19393 find Class, and once again go look at its template type
19394 arguments, etc., etc. Simply don't consider such parent die
19395 as source-level parent of this die (it can't be, the language
19396 doesn't allow it), and break the loop here. */
19397 name = dwarf2_name (die, cu);
19398 parent_name = dwarf2_name (parent, cu);
19399 complaint (&symfile_complaints,
19400 _("template param type '%s' defined within parent '%s'"),
19401 name ? name : "<unknown>",
19402 parent_name ? parent_name : "<unknown>");
19406 switch (parent->tag)
19408 case DW_TAG_namespace:
19409 parent_type = read_type_die (parent, cu);
19410 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
19411 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
19412 Work around this problem here. */
19413 if (cu->language == language_cplus
19414 && strcmp (TYPE_TAG_NAME (parent_type), "::") == 0)
19416 /* We give a name to even anonymous namespaces. */
19417 return TYPE_TAG_NAME (parent_type);
19418 case DW_TAG_class_type:
19419 case DW_TAG_interface_type:
19420 case DW_TAG_structure_type:
19421 case DW_TAG_union_type:
19422 case DW_TAG_module:
19423 parent_type = read_type_die (parent, cu);
19424 if (TYPE_TAG_NAME (parent_type) != NULL)
19425 return TYPE_TAG_NAME (parent_type);
19427 /* An anonymous structure is only allowed non-static data
19428 members; no typedefs, no member functions, et cetera.
19429 So it does not need a prefix. */
19431 case DW_TAG_compile_unit:
19432 case DW_TAG_partial_unit:
19433 /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace. Cope. */
19434 if (cu->language == language_cplus
19435 && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
19436 && die->child != NULL
19437 && (die->tag == DW_TAG_class_type
19438 || die->tag == DW_TAG_structure_type
19439 || die->tag == DW_TAG_union_type))
19441 char *name = guess_full_die_structure_name (die, cu);
19446 case DW_TAG_enumeration_type:
19447 parent_type = read_type_die (parent, cu);
19448 if (TYPE_DECLARED_CLASS (parent_type))
19450 if (TYPE_TAG_NAME (parent_type) != NULL)
19451 return TYPE_TAG_NAME (parent_type);
19454 /* Fall through. */
19456 return determine_prefix (parent, cu);
19460 /* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
19461 with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
19462 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null, perform
19463 an obconcat, otherwise allocate storage for the result. The CU argument is
19464 used to determine the language and hence, the appropriate separator. */
19466 #define MAX_SEP_LEN 7 /* strlen ("__") + strlen ("_MOD_") */
19469 typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
19470 int physname, struct dwarf2_cu *cu)
19472 const char *lead = "";
19475 if (suffix == NULL || suffix[0] == '\0'
19476 || prefix == NULL || prefix[0] == '\0')
19478 else if (cu->language == language_java)
19480 else if (cu->language == language_d)
19482 /* For D, the 'main' function could be defined in any module, but it
19483 should never be prefixed. */
19484 if (strcmp (suffix, "D main") == 0)
19492 else if (cu->language == language_fortran && physname)
19494 /* This is gfortran specific mangling. Normally DW_AT_linkage_name or
19495 DW_AT_MIPS_linkage_name is preferred and used instead. */
19503 if (prefix == NULL)
19505 if (suffix == NULL)
19512 xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1));
19514 strcpy (retval, lead);
19515 strcat (retval, prefix);
19516 strcat (retval, sep);
19517 strcat (retval, suffix);
19522 /* We have an obstack. */
19523 return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
19527 /* Return sibling of die, NULL if no sibling. */
19529 static struct die_info *
19530 sibling_die (struct die_info *die)
19532 return die->sibling;
19535 /* Get name of a die, return NULL if not found. */
19537 static const char *
19538 dwarf2_canonicalize_name (const char *name, struct dwarf2_cu *cu,
19539 struct obstack *obstack)
19541 if (name && cu->language == language_cplus)
19543 char *canon_name = cp_canonicalize_string (name);
19545 if (canon_name != NULL)
19547 if (strcmp (canon_name, name) != 0)
19548 name = (const char *) obstack_copy0 (obstack, canon_name,
19549 strlen (canon_name));
19550 xfree (canon_name);
19557 /* Get name of a die, return NULL if not found.
19558 Anonymous namespaces are converted to their magic string. */
19560 static const char *
19561 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
19563 struct attribute *attr;
19565 attr = dwarf2_attr (die, DW_AT_name, cu);
19566 if ((!attr || !DW_STRING (attr))
19567 && die->tag != DW_TAG_namespace
19568 && die->tag != DW_TAG_class_type
19569 && die->tag != DW_TAG_interface_type
19570 && die->tag != DW_TAG_structure_type
19571 && die->tag != DW_TAG_union_type)
19576 case DW_TAG_compile_unit:
19577 case DW_TAG_partial_unit:
19578 /* Compilation units have a DW_AT_name that is a filename, not
19579 a source language identifier. */
19580 case DW_TAG_enumeration_type:
19581 case DW_TAG_enumerator:
19582 /* These tags always have simple identifiers already; no need
19583 to canonicalize them. */
19584 return DW_STRING (attr);
19586 case DW_TAG_namespace:
19587 if (attr != NULL && DW_STRING (attr) != NULL)
19588 return DW_STRING (attr);
19589 return CP_ANONYMOUS_NAMESPACE_STR;
19591 case DW_TAG_subprogram:
19592 /* Java constructors will all be named "<init>", so return
19593 the class name when we see this special case. */
19594 if (cu->language == language_java
19595 && DW_STRING (attr) != NULL
19596 && strcmp (DW_STRING (attr), "<init>") == 0)
19598 struct dwarf2_cu *spec_cu = cu;
19599 struct die_info *spec_die;
19601 /* GCJ will output '<init>' for Java constructor names.
19602 For this special case, return the name of the parent class. */
19604 /* GCJ may output subprogram DIEs with AT_specification set.
19605 If so, use the name of the specified DIE. */
19606 spec_die = die_specification (die, &spec_cu);
19607 if (spec_die != NULL)
19608 return dwarf2_name (spec_die, spec_cu);
19613 if (die->tag == DW_TAG_class_type)
19614 return dwarf2_name (die, cu);
19616 while (die->tag != DW_TAG_compile_unit
19617 && die->tag != DW_TAG_partial_unit);
19621 case DW_TAG_class_type:
19622 case DW_TAG_interface_type:
19623 case DW_TAG_structure_type:
19624 case DW_TAG_union_type:
19625 /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
19626 structures or unions. These were of the form "._%d" in GCC 4.1,
19627 or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
19628 and GCC 4.4. We work around this problem by ignoring these. */
19629 if (attr && DW_STRING (attr)
19630 && (startswith (DW_STRING (attr), "._")
19631 || startswith (DW_STRING (attr), "<anonymous")))
19634 /* GCC might emit a nameless typedef that has a linkage name. See
19635 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
19636 if (!attr || DW_STRING (attr) == NULL)
19638 char *demangled = NULL;
19640 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
19642 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
19644 if (attr == NULL || DW_STRING (attr) == NULL)
19647 /* Avoid demangling DW_STRING (attr) the second time on a second
19648 call for the same DIE. */
19649 if (!DW_STRING_IS_CANONICAL (attr))
19650 demangled = gdb_demangle (DW_STRING (attr), DMGL_TYPES);
19656 /* FIXME: we already did this for the partial symbol... */
19659 obstack_copy0 (&cu->objfile->per_bfd->storage_obstack,
19660 demangled, strlen (demangled)));
19661 DW_STRING_IS_CANONICAL (attr) = 1;
19664 /* Strip any leading namespaces/classes, keep only the base name.
19665 DW_AT_name for named DIEs does not contain the prefixes. */
19666 base = strrchr (DW_STRING (attr), ':');
19667 if (base && base > DW_STRING (attr) && base[-1] == ':')
19670 return DW_STRING (attr);
19679 if (!DW_STRING_IS_CANONICAL (attr))
19682 = dwarf2_canonicalize_name (DW_STRING (attr), cu,
19683 &cu->objfile->per_bfd->storage_obstack);
19684 DW_STRING_IS_CANONICAL (attr) = 1;
19686 return DW_STRING (attr);
19689 /* Return the die that this die in an extension of, or NULL if there
19690 is none. *EXT_CU is the CU containing DIE on input, and the CU
19691 containing the return value on output. */
19693 static struct die_info *
19694 dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
19696 struct attribute *attr;
19698 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
19702 return follow_die_ref (die, attr, ext_cu);
19705 /* Convert a DIE tag into its string name. */
19707 static const char *
19708 dwarf_tag_name (unsigned tag)
19710 const char *name = get_DW_TAG_name (tag);
19713 return "DW_TAG_<unknown>";
19718 /* Convert a DWARF attribute code into its string name. */
19720 static const char *
19721 dwarf_attr_name (unsigned attr)
19725 #ifdef MIPS /* collides with DW_AT_HP_block_index */
19726 if (attr == DW_AT_MIPS_fde)
19727 return "DW_AT_MIPS_fde";
19729 if (attr == DW_AT_HP_block_index)
19730 return "DW_AT_HP_block_index";
19733 name = get_DW_AT_name (attr);
19736 return "DW_AT_<unknown>";
19741 /* Convert a DWARF value form code into its string name. */
19743 static const char *
19744 dwarf_form_name (unsigned form)
19746 const char *name = get_DW_FORM_name (form);
19749 return "DW_FORM_<unknown>";
19755 dwarf_bool_name (unsigned mybool)
19763 /* Convert a DWARF type code into its string name. */
19765 static const char *
19766 dwarf_type_encoding_name (unsigned enc)
19768 const char *name = get_DW_ATE_name (enc);
19771 return "DW_ATE_<unknown>";
19777 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
19781 print_spaces (indent, f);
19782 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset 0x%x)\n",
19783 dwarf_tag_name (die->tag), die->abbrev, die->offset.sect_off);
19785 if (die->parent != NULL)
19787 print_spaces (indent, f);
19788 fprintf_unfiltered (f, " parent at offset: 0x%x\n",
19789 die->parent->offset.sect_off);
19792 print_spaces (indent, f);
19793 fprintf_unfiltered (f, " has children: %s\n",
19794 dwarf_bool_name (die->child != NULL));
19796 print_spaces (indent, f);
19797 fprintf_unfiltered (f, " attributes:\n");
19799 for (i = 0; i < die->num_attrs; ++i)
19801 print_spaces (indent, f);
19802 fprintf_unfiltered (f, " %s (%s) ",
19803 dwarf_attr_name (die->attrs[i].name),
19804 dwarf_form_name (die->attrs[i].form));
19806 switch (die->attrs[i].form)
19809 case DW_FORM_GNU_addr_index:
19810 fprintf_unfiltered (f, "address: ");
19811 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
19813 case DW_FORM_block2:
19814 case DW_FORM_block4:
19815 case DW_FORM_block:
19816 case DW_FORM_block1:
19817 fprintf_unfiltered (f, "block: size %s",
19818 pulongest (DW_BLOCK (&die->attrs[i])->size));
19820 case DW_FORM_exprloc:
19821 fprintf_unfiltered (f, "expression: size %s",
19822 pulongest (DW_BLOCK (&die->attrs[i])->size));
19824 case DW_FORM_ref_addr:
19825 fprintf_unfiltered (f, "ref address: ");
19826 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
19828 case DW_FORM_GNU_ref_alt:
19829 fprintf_unfiltered (f, "alt ref address: ");
19830 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
19836 case DW_FORM_ref_udata:
19837 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
19838 (long) (DW_UNSND (&die->attrs[i])));
19840 case DW_FORM_data1:
19841 case DW_FORM_data2:
19842 case DW_FORM_data4:
19843 case DW_FORM_data8:
19844 case DW_FORM_udata:
19845 case DW_FORM_sdata:
19846 fprintf_unfiltered (f, "constant: %s",
19847 pulongest (DW_UNSND (&die->attrs[i])));
19849 case DW_FORM_sec_offset:
19850 fprintf_unfiltered (f, "section offset: %s",
19851 pulongest (DW_UNSND (&die->attrs[i])));
19853 case DW_FORM_ref_sig8:
19854 fprintf_unfiltered (f, "signature: %s",
19855 hex_string (DW_SIGNATURE (&die->attrs[i])));
19857 case DW_FORM_string:
19859 case DW_FORM_GNU_str_index:
19860 case DW_FORM_GNU_strp_alt:
19861 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
19862 DW_STRING (&die->attrs[i])
19863 ? DW_STRING (&die->attrs[i]) : "",
19864 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
19867 if (DW_UNSND (&die->attrs[i]))
19868 fprintf_unfiltered (f, "flag: TRUE");
19870 fprintf_unfiltered (f, "flag: FALSE");
19872 case DW_FORM_flag_present:
19873 fprintf_unfiltered (f, "flag: TRUE");
19875 case DW_FORM_indirect:
19876 /* The reader will have reduced the indirect form to
19877 the "base form" so this form should not occur. */
19878 fprintf_unfiltered (f,
19879 "unexpected attribute form: DW_FORM_indirect");
19882 fprintf_unfiltered (f, "unsupported attribute form: %d.",
19883 die->attrs[i].form);
19886 fprintf_unfiltered (f, "\n");
19891 dump_die_for_error (struct die_info *die)
19893 dump_die_shallow (gdb_stderr, 0, die);
19897 dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
19899 int indent = level * 4;
19901 gdb_assert (die != NULL);
19903 if (level >= max_level)
19906 dump_die_shallow (f, indent, die);
19908 if (die->child != NULL)
19910 print_spaces (indent, f);
19911 fprintf_unfiltered (f, " Children:");
19912 if (level + 1 < max_level)
19914 fprintf_unfiltered (f, "\n");
19915 dump_die_1 (f, level + 1, max_level, die->child);
19919 fprintf_unfiltered (f,
19920 " [not printed, max nesting level reached]\n");
19924 if (die->sibling != NULL && level > 0)
19926 dump_die_1 (f, level, max_level, die->sibling);
19930 /* This is called from the pdie macro in gdbinit.in.
19931 It's not static so gcc will keep a copy callable from gdb. */
19934 dump_die (struct die_info *die, int max_level)
19936 dump_die_1 (gdb_stdlog, 0, max_level, die);
19940 store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
19944 slot = htab_find_slot_with_hash (cu->die_hash, die, die->offset.sect_off,
19950 /* Return DIE offset of ATTR. Return 0 with complaint if ATTR is not of the
19954 dwarf2_get_ref_die_offset (const struct attribute *attr)
19956 sect_offset retval = { DW_UNSND (attr) };
19958 if (attr_form_is_ref (attr))
19961 retval.sect_off = 0;
19962 complaint (&symfile_complaints,
19963 _("unsupported die ref attribute form: '%s'"),
19964 dwarf_form_name (attr->form));
19968 /* Return the constant value held by ATTR. Return DEFAULT_VALUE if
19969 * the value held by the attribute is not constant. */
19972 dwarf2_get_attr_constant_value (const struct attribute *attr, int default_value)
19974 if (attr->form == DW_FORM_sdata)
19975 return DW_SND (attr);
19976 else if (attr->form == DW_FORM_udata
19977 || attr->form == DW_FORM_data1
19978 || attr->form == DW_FORM_data2
19979 || attr->form == DW_FORM_data4
19980 || attr->form == DW_FORM_data8)
19981 return DW_UNSND (attr);
19984 complaint (&symfile_complaints,
19985 _("Attribute value is not a constant (%s)"),
19986 dwarf_form_name (attr->form));
19987 return default_value;
19991 /* Follow reference or signature attribute ATTR of SRC_DIE.
19992 On entry *REF_CU is the CU of SRC_DIE.
19993 On exit *REF_CU is the CU of the result. */
19995 static struct die_info *
19996 follow_die_ref_or_sig (struct die_info *src_die, const struct attribute *attr,
19997 struct dwarf2_cu **ref_cu)
19999 struct die_info *die;
20001 if (attr_form_is_ref (attr))
20002 die = follow_die_ref (src_die, attr, ref_cu);
20003 else if (attr->form == DW_FORM_ref_sig8)
20004 die = follow_die_sig (src_die, attr, ref_cu);
20007 dump_die_for_error (src_die);
20008 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
20009 objfile_name ((*ref_cu)->objfile));
20015 /* Follow reference OFFSET.
20016 On entry *REF_CU is the CU of the source die referencing OFFSET.
20017 On exit *REF_CU is the CU of the result.
20018 Returns NULL if OFFSET is invalid. */
20020 static struct die_info *
20021 follow_die_offset (sect_offset offset, int offset_in_dwz,
20022 struct dwarf2_cu **ref_cu)
20024 struct die_info temp_die;
20025 struct dwarf2_cu *target_cu, *cu = *ref_cu;
20027 gdb_assert (cu->per_cu != NULL);
20031 if (cu->per_cu->is_debug_types)
20033 /* .debug_types CUs cannot reference anything outside their CU.
20034 If they need to, they have to reference a signatured type via
20035 DW_FORM_ref_sig8. */
20036 if (! offset_in_cu_p (&cu->header, offset))
20039 else if (offset_in_dwz != cu->per_cu->is_dwz
20040 || ! offset_in_cu_p (&cu->header, offset))
20042 struct dwarf2_per_cu_data *per_cu;
20044 per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
20047 /* If necessary, add it to the queue and load its DIEs. */
20048 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
20049 load_full_comp_unit (per_cu, cu->language);
20051 target_cu = per_cu->cu;
20053 else if (cu->dies == NULL)
20055 /* We're loading full DIEs during partial symbol reading. */
20056 gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
20057 load_full_comp_unit (cu->per_cu, language_minimal);
20060 *ref_cu = target_cu;
20061 temp_die.offset = offset;
20062 return (struct die_info *) htab_find_with_hash (target_cu->die_hash,
20063 &temp_die, offset.sect_off);
20066 /* Follow reference attribute ATTR of SRC_DIE.
20067 On entry *REF_CU is the CU of SRC_DIE.
20068 On exit *REF_CU is the CU of the result. */
20070 static struct die_info *
20071 follow_die_ref (struct die_info *src_die, const struct attribute *attr,
20072 struct dwarf2_cu **ref_cu)
20074 sect_offset offset = dwarf2_get_ref_die_offset (attr);
20075 struct dwarf2_cu *cu = *ref_cu;
20076 struct die_info *die;
20078 die = follow_die_offset (offset,
20079 (attr->form == DW_FORM_GNU_ref_alt
20080 || cu->per_cu->is_dwz),
20083 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced from DIE "
20084 "at 0x%x [in module %s]"),
20085 offset.sect_off, src_die->offset.sect_off,
20086 objfile_name (cu->objfile));
20091 /* Return DWARF block referenced by DW_AT_location of DIE at OFFSET at PER_CU.
20092 Returned value is intended for DW_OP_call*. Returned
20093 dwarf2_locexpr_baton->data has lifetime of PER_CU->OBJFILE. */
20095 struct dwarf2_locexpr_baton
20096 dwarf2_fetch_die_loc_sect_off (sect_offset offset,
20097 struct dwarf2_per_cu_data *per_cu,
20098 CORE_ADDR (*get_frame_pc) (void *baton),
20101 struct dwarf2_cu *cu;
20102 struct die_info *die;
20103 struct attribute *attr;
20104 struct dwarf2_locexpr_baton retval;
20106 dw2_setup (per_cu->objfile);
20108 if (per_cu->cu == NULL)
20113 /* We shouldn't get here for a dummy CU, but don't crash on the user.
20114 Instead just throw an error, not much else we can do. */
20115 error (_("Dwarf Error: Dummy CU at 0x%x referenced in module %s"),
20116 offset.sect_off, objfile_name (per_cu->objfile));
20119 die = follow_die_offset (offset, per_cu->is_dwz, &cu);
20121 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
20122 offset.sect_off, objfile_name (per_cu->objfile));
20124 attr = dwarf2_attr (die, DW_AT_location, cu);
20127 /* DWARF: "If there is no such attribute, then there is no effect.".
20128 DATA is ignored if SIZE is 0. */
20130 retval.data = NULL;
20133 else if (attr_form_is_section_offset (attr))
20135 struct dwarf2_loclist_baton loclist_baton;
20136 CORE_ADDR pc = (*get_frame_pc) (baton);
20139 fill_in_loclist_baton (cu, &loclist_baton, attr);
20141 retval.data = dwarf2_find_location_expression (&loclist_baton,
20143 retval.size = size;
20147 if (!attr_form_is_block (attr))
20148 error (_("Dwarf Error: DIE at 0x%x referenced in module %s "
20149 "is neither DW_FORM_block* nor DW_FORM_exprloc"),
20150 offset.sect_off, objfile_name (per_cu->objfile));
20152 retval.data = DW_BLOCK (attr)->data;
20153 retval.size = DW_BLOCK (attr)->size;
20155 retval.per_cu = cu->per_cu;
20157 age_cached_comp_units ();
20162 /* Like dwarf2_fetch_die_loc_sect_off, but take a CU
20165 struct dwarf2_locexpr_baton
20166 dwarf2_fetch_die_loc_cu_off (cu_offset offset_in_cu,
20167 struct dwarf2_per_cu_data *per_cu,
20168 CORE_ADDR (*get_frame_pc) (void *baton),
20171 sect_offset offset = { per_cu->offset.sect_off + offset_in_cu.cu_off };
20173 return dwarf2_fetch_die_loc_sect_off (offset, per_cu, get_frame_pc, baton);
20176 /* Write a constant of a given type as target-ordered bytes into
20179 static const gdb_byte *
20180 write_constant_as_bytes (struct obstack *obstack,
20181 enum bfd_endian byte_order,
20188 *len = TYPE_LENGTH (type);
20189 result = (gdb_byte *) obstack_alloc (obstack, *len);
20190 store_unsigned_integer (result, *len, byte_order, value);
20195 /* If the DIE at OFFSET in PER_CU has a DW_AT_const_value, return a
20196 pointer to the constant bytes and set LEN to the length of the
20197 data. If memory is needed, allocate it on OBSTACK. If the DIE
20198 does not have a DW_AT_const_value, return NULL. */
20201 dwarf2_fetch_constant_bytes (sect_offset offset,
20202 struct dwarf2_per_cu_data *per_cu,
20203 struct obstack *obstack,
20206 struct dwarf2_cu *cu;
20207 struct die_info *die;
20208 struct attribute *attr;
20209 const gdb_byte *result = NULL;
20212 enum bfd_endian byte_order;
20214 dw2_setup (per_cu->objfile);
20216 if (per_cu->cu == NULL)
20221 /* We shouldn't get here for a dummy CU, but don't crash on the user.
20222 Instead just throw an error, not much else we can do. */
20223 error (_("Dwarf Error: Dummy CU at 0x%x referenced in module %s"),
20224 offset.sect_off, objfile_name (per_cu->objfile));
20227 die = follow_die_offset (offset, per_cu->is_dwz, &cu);
20229 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
20230 offset.sect_off, objfile_name (per_cu->objfile));
20233 attr = dwarf2_attr (die, DW_AT_const_value, cu);
20237 byte_order = (bfd_big_endian (per_cu->objfile->obfd)
20238 ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
20240 switch (attr->form)
20243 case DW_FORM_GNU_addr_index:
20247 *len = cu->header.addr_size;
20248 tem = (gdb_byte *) obstack_alloc (obstack, *len);
20249 store_unsigned_integer (tem, *len, byte_order, DW_ADDR (attr));
20253 case DW_FORM_string:
20255 case DW_FORM_GNU_str_index:
20256 case DW_FORM_GNU_strp_alt:
20257 /* DW_STRING is already allocated on the objfile obstack, point
20259 result = (const gdb_byte *) DW_STRING (attr);
20260 *len = strlen (DW_STRING (attr));
20262 case DW_FORM_block1:
20263 case DW_FORM_block2:
20264 case DW_FORM_block4:
20265 case DW_FORM_block:
20266 case DW_FORM_exprloc:
20267 result = DW_BLOCK (attr)->data;
20268 *len = DW_BLOCK (attr)->size;
20271 /* The DW_AT_const_value attributes are supposed to carry the
20272 symbol's value "represented as it would be on the target
20273 architecture." By the time we get here, it's already been
20274 converted to host endianness, so we just need to sign- or
20275 zero-extend it as appropriate. */
20276 case DW_FORM_data1:
20277 type = die_type (die, cu);
20278 result = dwarf2_const_value_data (attr, obstack, cu, &value, 8);
20279 if (result == NULL)
20280 result = write_constant_as_bytes (obstack, byte_order,
20283 case DW_FORM_data2:
20284 type = die_type (die, cu);
20285 result = dwarf2_const_value_data (attr, obstack, cu, &value, 16);
20286 if (result == NULL)
20287 result = write_constant_as_bytes (obstack, byte_order,
20290 case DW_FORM_data4:
20291 type = die_type (die, cu);
20292 result = dwarf2_const_value_data (attr, obstack, cu, &value, 32);
20293 if (result == NULL)
20294 result = write_constant_as_bytes (obstack, byte_order,
20297 case DW_FORM_data8:
20298 type = die_type (die, cu);
20299 result = dwarf2_const_value_data (attr, obstack, cu, &value, 64);
20300 if (result == NULL)
20301 result = write_constant_as_bytes (obstack, byte_order,
20305 case DW_FORM_sdata:
20306 type = die_type (die, cu);
20307 result = write_constant_as_bytes (obstack, byte_order,
20308 type, DW_SND (attr), len);
20311 case DW_FORM_udata:
20312 type = die_type (die, cu);
20313 result = write_constant_as_bytes (obstack, byte_order,
20314 type, DW_UNSND (attr), len);
20318 complaint (&symfile_complaints,
20319 _("unsupported const value attribute form: '%s'"),
20320 dwarf_form_name (attr->form));
20327 /* Return the type of the DIE at DIE_OFFSET in the CU named by
20331 dwarf2_get_die_type (cu_offset die_offset,
20332 struct dwarf2_per_cu_data *per_cu)
20334 sect_offset die_offset_sect;
20336 dw2_setup (per_cu->objfile);
20338 die_offset_sect.sect_off = per_cu->offset.sect_off + die_offset.cu_off;
20339 return get_die_type_at_offset (die_offset_sect, per_cu);
20342 /* Follow type unit SIG_TYPE referenced by SRC_DIE.
20343 On entry *REF_CU is the CU of SRC_DIE.
20344 On exit *REF_CU is the CU of the result.
20345 Returns NULL if the referenced DIE isn't found. */
20347 static struct die_info *
20348 follow_die_sig_1 (struct die_info *src_die, struct signatured_type *sig_type,
20349 struct dwarf2_cu **ref_cu)
20351 struct die_info temp_die;
20352 struct dwarf2_cu *sig_cu;
20353 struct die_info *die;
20355 /* While it might be nice to assert sig_type->type == NULL here,
20356 we can get here for DW_AT_imported_declaration where we need
20357 the DIE not the type. */
20359 /* If necessary, add it to the queue and load its DIEs. */
20361 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, language_minimal))
20362 read_signatured_type (sig_type);
20364 sig_cu = sig_type->per_cu.cu;
20365 gdb_assert (sig_cu != NULL);
20366 gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
20367 temp_die.offset = sig_type->type_offset_in_section;
20368 die = (struct die_info *) htab_find_with_hash (sig_cu->die_hash, &temp_die,
20369 temp_die.offset.sect_off);
20372 /* For .gdb_index version 7 keep track of included TUs.
20373 http://sourceware.org/bugzilla/show_bug.cgi?id=15021. */
20374 if (dwarf2_per_objfile->index_table != NULL
20375 && dwarf2_per_objfile->index_table->version <= 7)
20377 VEC_safe_push (dwarf2_per_cu_ptr,
20378 (*ref_cu)->per_cu->imported_symtabs,
20389 /* Follow signatured type referenced by ATTR in SRC_DIE.
20390 On entry *REF_CU is the CU of SRC_DIE.
20391 On exit *REF_CU is the CU of the result.
20392 The result is the DIE of the type.
20393 If the referenced type cannot be found an error is thrown. */
20395 static struct die_info *
20396 follow_die_sig (struct die_info *src_die, const struct attribute *attr,
20397 struct dwarf2_cu **ref_cu)
20399 ULONGEST signature = DW_SIGNATURE (attr);
20400 struct signatured_type *sig_type;
20401 struct die_info *die;
20403 gdb_assert (attr->form == DW_FORM_ref_sig8);
20405 sig_type = lookup_signatured_type (*ref_cu, signature);
20406 /* sig_type will be NULL if the signatured type is missing from
20408 if (sig_type == NULL)
20410 error (_("Dwarf Error: Cannot find signatured DIE %s referenced"
20411 " from DIE at 0x%x [in module %s]"),
20412 hex_string (signature), src_die->offset.sect_off,
20413 objfile_name ((*ref_cu)->objfile));
20416 die = follow_die_sig_1 (src_die, sig_type, ref_cu);
20419 dump_die_for_error (src_die);
20420 error (_("Dwarf Error: Problem reading signatured DIE %s referenced"
20421 " from DIE at 0x%x [in module %s]"),
20422 hex_string (signature), src_die->offset.sect_off,
20423 objfile_name ((*ref_cu)->objfile));
20429 /* Get the type specified by SIGNATURE referenced in DIE/CU,
20430 reading in and processing the type unit if necessary. */
20432 static struct type *
20433 get_signatured_type (struct die_info *die, ULONGEST signature,
20434 struct dwarf2_cu *cu)
20436 struct signatured_type *sig_type;
20437 struct dwarf2_cu *type_cu;
20438 struct die_info *type_die;
20441 sig_type = lookup_signatured_type (cu, signature);
20442 /* sig_type will be NULL if the signatured type is missing from
20444 if (sig_type == NULL)
20446 complaint (&symfile_complaints,
20447 _("Dwarf Error: Cannot find signatured DIE %s referenced"
20448 " from DIE at 0x%x [in module %s]"),
20449 hex_string (signature), die->offset.sect_off,
20450 objfile_name (dwarf2_per_objfile->objfile));
20451 return build_error_marker_type (cu, die);
20454 /* If we already know the type we're done. */
20455 if (sig_type->type != NULL)
20456 return sig_type->type;
20459 type_die = follow_die_sig_1 (die, sig_type, &type_cu);
20460 if (type_die != NULL)
20462 /* N.B. We need to call get_die_type to ensure only one type for this DIE
20463 is created. This is important, for example, because for c++ classes
20464 we need TYPE_NAME set which is only done by new_symbol. Blech. */
20465 type = read_type_die (type_die, type_cu);
20468 complaint (&symfile_complaints,
20469 _("Dwarf Error: Cannot build signatured type %s"
20470 " referenced from DIE at 0x%x [in module %s]"),
20471 hex_string (signature), die->offset.sect_off,
20472 objfile_name (dwarf2_per_objfile->objfile));
20473 type = build_error_marker_type (cu, die);
20478 complaint (&symfile_complaints,
20479 _("Dwarf Error: Problem reading signatured DIE %s referenced"
20480 " from DIE at 0x%x [in module %s]"),
20481 hex_string (signature), die->offset.sect_off,
20482 objfile_name (dwarf2_per_objfile->objfile));
20483 type = build_error_marker_type (cu, die);
20485 sig_type->type = type;
20490 /* Get the type specified by the DW_AT_signature ATTR in DIE/CU,
20491 reading in and processing the type unit if necessary. */
20493 static struct type *
20494 get_DW_AT_signature_type (struct die_info *die, const struct attribute *attr,
20495 struct dwarf2_cu *cu) /* ARI: editCase function */
20497 /* Yes, DW_AT_signature can use a non-ref_sig8 reference. */
20498 if (attr_form_is_ref (attr))
20500 struct dwarf2_cu *type_cu = cu;
20501 struct die_info *type_die = follow_die_ref (die, attr, &type_cu);
20503 return read_type_die (type_die, type_cu);
20505 else if (attr->form == DW_FORM_ref_sig8)
20507 return get_signatured_type (die, DW_SIGNATURE (attr), cu);
20511 complaint (&symfile_complaints,
20512 _("Dwarf Error: DW_AT_signature has bad form %s in DIE"
20513 " at 0x%x [in module %s]"),
20514 dwarf_form_name (attr->form), die->offset.sect_off,
20515 objfile_name (dwarf2_per_objfile->objfile));
20516 return build_error_marker_type (cu, die);
20520 /* Load the DIEs associated with type unit PER_CU into memory. */
20523 load_full_type_unit (struct dwarf2_per_cu_data *per_cu)
20525 struct signatured_type *sig_type;
20527 /* Caller is responsible for ensuring type_unit_groups don't get here. */
20528 gdb_assert (! IS_TYPE_UNIT_GROUP (per_cu));
20530 /* We have the per_cu, but we need the signatured_type.
20531 Fortunately this is an easy translation. */
20532 gdb_assert (per_cu->is_debug_types);
20533 sig_type = (struct signatured_type *) per_cu;
20535 gdb_assert (per_cu->cu == NULL);
20537 read_signatured_type (sig_type);
20539 gdb_assert (per_cu->cu != NULL);
20542 /* die_reader_func for read_signatured_type.
20543 This is identical to load_full_comp_unit_reader,
20544 but is kept separate for now. */
20547 read_signatured_type_reader (const struct die_reader_specs *reader,
20548 const gdb_byte *info_ptr,
20549 struct die_info *comp_unit_die,
20553 struct dwarf2_cu *cu = reader->cu;
20555 gdb_assert (cu->die_hash == NULL);
20557 htab_create_alloc_ex (cu->header.length / 12,
20561 &cu->comp_unit_obstack,
20562 hashtab_obstack_allocate,
20563 dummy_obstack_deallocate);
20566 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
20567 &info_ptr, comp_unit_die);
20568 cu->dies = comp_unit_die;
20569 /* comp_unit_die is not stored in die_hash, no need. */
20571 /* We try not to read any attributes in this function, because not
20572 all CUs needed for references have been loaded yet, and symbol
20573 table processing isn't initialized. But we have to set the CU language,
20574 or we won't be able to build types correctly.
20575 Similarly, if we do not read the producer, we can not apply
20576 producer-specific interpretation. */
20577 prepare_one_comp_unit (cu, cu->dies, language_minimal);
20580 /* Read in a signatured type and build its CU and DIEs.
20581 If the type is a stub for the real type in a DWO file,
20582 read in the real type from the DWO file as well. */
20585 read_signatured_type (struct signatured_type *sig_type)
20587 struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
20589 gdb_assert (per_cu->is_debug_types);
20590 gdb_assert (per_cu->cu == NULL);
20592 init_cutu_and_read_dies (per_cu, NULL, 0, 1,
20593 read_signatured_type_reader, NULL);
20594 sig_type->per_cu.tu_read = 1;
20597 /* Decode simple location descriptions.
20598 Given a pointer to a dwarf block that defines a location, compute
20599 the location and return the value.
20601 NOTE drow/2003-11-18: This function is called in two situations
20602 now: for the address of static or global variables (partial symbols
20603 only) and for offsets into structures which are expected to be
20604 (more or less) constant. The partial symbol case should go away,
20605 and only the constant case should remain. That will let this
20606 function complain more accurately. A few special modes are allowed
20607 without complaint for global variables (for instance, global
20608 register values and thread-local values).
20610 A location description containing no operations indicates that the
20611 object is optimized out. The return value is 0 for that case.
20612 FIXME drow/2003-11-16: No callers check for this case any more; soon all
20613 callers will only want a very basic result and this can become a
20616 Note that stack[0] is unused except as a default error return. */
20619 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
20621 struct objfile *objfile = cu->objfile;
20623 size_t size = blk->size;
20624 const gdb_byte *data = blk->data;
20625 CORE_ADDR stack[64];
20627 unsigned int bytes_read, unsnd;
20633 stack[++stacki] = 0;
20672 stack[++stacki] = op - DW_OP_lit0;
20707 stack[++stacki] = op - DW_OP_reg0;
20709 dwarf2_complex_location_expr_complaint ();
20713 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
20715 stack[++stacki] = unsnd;
20717 dwarf2_complex_location_expr_complaint ();
20721 stack[++stacki] = read_address (objfile->obfd, &data[i],
20726 case DW_OP_const1u:
20727 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
20731 case DW_OP_const1s:
20732 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
20736 case DW_OP_const2u:
20737 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
20741 case DW_OP_const2s:
20742 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
20746 case DW_OP_const4u:
20747 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
20751 case DW_OP_const4s:
20752 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
20756 case DW_OP_const8u:
20757 stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
20762 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
20768 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
20773 stack[stacki + 1] = stack[stacki];
20778 stack[stacki - 1] += stack[stacki];
20782 case DW_OP_plus_uconst:
20783 stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
20789 stack[stacki - 1] -= stack[stacki];
20794 /* If we're not the last op, then we definitely can't encode
20795 this using GDB's address_class enum. This is valid for partial
20796 global symbols, although the variable's address will be bogus
20799 dwarf2_complex_location_expr_complaint ();
20802 case DW_OP_GNU_push_tls_address:
20803 /* The top of the stack has the offset from the beginning
20804 of the thread control block at which the variable is located. */
20805 /* Nothing should follow this operator, so the top of stack would
20807 /* This is valid for partial global symbols, but the variable's
20808 address will be bogus in the psymtab. Make it always at least
20809 non-zero to not look as a variable garbage collected by linker
20810 which have DW_OP_addr 0. */
20812 dwarf2_complex_location_expr_complaint ();
20816 case DW_OP_GNU_uninit:
20819 case DW_OP_GNU_addr_index:
20820 case DW_OP_GNU_const_index:
20821 stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
20828 const char *name = get_DW_OP_name (op);
20831 complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
20834 complaint (&symfile_complaints, _("unsupported stack op: '%02x'"),
20838 return (stack[stacki]);
20841 /* Enforce maximum stack depth of SIZE-1 to avoid writing
20842 outside of the allocated space. Also enforce minimum>0. */
20843 if (stacki >= ARRAY_SIZE (stack) - 1)
20845 complaint (&symfile_complaints,
20846 _("location description stack overflow"));
20852 complaint (&symfile_complaints,
20853 _("location description stack underflow"));
20857 return (stack[stacki]);
20860 /* memory allocation interface */
20862 static struct dwarf_block *
20863 dwarf_alloc_block (struct dwarf2_cu *cu)
20865 return XOBNEW (&cu->comp_unit_obstack, struct dwarf_block);
20868 static struct die_info *
20869 dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
20871 struct die_info *die;
20872 size_t size = sizeof (struct die_info);
20875 size += (num_attrs - 1) * sizeof (struct attribute);
20877 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
20878 memset (die, 0, sizeof (struct die_info));
20883 /* Macro support. */
20885 /* Return file name relative to the compilation directory of file number I in
20886 *LH's file name table. The result is allocated using xmalloc; the caller is
20887 responsible for freeing it. */
20890 file_file_name (int file, struct line_header *lh)
20892 /* Is the file number a valid index into the line header's file name
20893 table? Remember that file numbers start with one, not zero. */
20894 if (1 <= file && file <= lh->num_file_names)
20896 struct file_entry *fe = &lh->file_names[file - 1];
20898 if (IS_ABSOLUTE_PATH (fe->name) || fe->dir_index == 0
20899 || lh->include_dirs == NULL)
20900 return xstrdup (fe->name);
20901 return concat (lh->include_dirs[fe->dir_index - 1], SLASH_STRING,
20902 fe->name, (char *) NULL);
20906 /* The compiler produced a bogus file number. We can at least
20907 record the macro definitions made in the file, even if we
20908 won't be able to find the file by name. */
20909 char fake_name[80];
20911 xsnprintf (fake_name, sizeof (fake_name),
20912 "<bad macro file number %d>", file);
20914 complaint (&symfile_complaints,
20915 _("bad file number in macro information (%d)"),
20918 return xstrdup (fake_name);
20922 /* Return the full name of file number I in *LH's file name table.
20923 Use COMP_DIR as the name of the current directory of the
20924 compilation. The result is allocated using xmalloc; the caller is
20925 responsible for freeing it. */
20927 file_full_name (int file, struct line_header *lh, const char *comp_dir)
20929 /* Is the file number a valid index into the line header's file name
20930 table? Remember that file numbers start with one, not zero. */
20931 if (1 <= file && file <= lh->num_file_names)
20933 char *relative = file_file_name (file, lh);
20935 if (IS_ABSOLUTE_PATH (relative) || comp_dir == NULL)
20937 return reconcat (relative, comp_dir, SLASH_STRING,
20938 relative, (char *) NULL);
20941 return file_file_name (file, lh);
20945 static struct macro_source_file *
20946 macro_start_file (int file, int line,
20947 struct macro_source_file *current_file,
20948 struct line_header *lh)
20950 /* File name relative to the compilation directory of this source file. */
20951 char *file_name = file_file_name (file, lh);
20953 if (! current_file)
20955 /* Note: We don't create a macro table for this compilation unit
20956 at all until we actually get a filename. */
20957 struct macro_table *macro_table = get_macro_table ();
20959 /* If we have no current file, then this must be the start_file
20960 directive for the compilation unit's main source file. */
20961 current_file = macro_set_main (macro_table, file_name);
20962 macro_define_special (macro_table);
20965 current_file = macro_include (current_file, line, file_name);
20969 return current_file;
20973 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
20974 followed by a null byte. */
20976 copy_string (const char *buf, int len)
20978 char *s = (char *) xmalloc (len + 1);
20980 memcpy (s, buf, len);
20986 static const char *
20987 consume_improper_spaces (const char *p, const char *body)
20991 complaint (&symfile_complaints,
20992 _("macro definition contains spaces "
20993 "in formal argument list:\n`%s'"),
21005 parse_macro_definition (struct macro_source_file *file, int line,
21010 /* The body string takes one of two forms. For object-like macro
21011 definitions, it should be:
21013 <macro name> " " <definition>
21015 For function-like macro definitions, it should be:
21017 <macro name> "() " <definition>
21019 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
21021 Spaces may appear only where explicitly indicated, and in the
21024 The Dwarf 2 spec says that an object-like macro's name is always
21025 followed by a space, but versions of GCC around March 2002 omit
21026 the space when the macro's definition is the empty string.
21028 The Dwarf 2 spec says that there should be no spaces between the
21029 formal arguments in a function-like macro's formal argument list,
21030 but versions of GCC around March 2002 include spaces after the
21034 /* Find the extent of the macro name. The macro name is terminated
21035 by either a space or null character (for an object-like macro) or
21036 an opening paren (for a function-like macro). */
21037 for (p = body; *p; p++)
21038 if (*p == ' ' || *p == '(')
21041 if (*p == ' ' || *p == '\0')
21043 /* It's an object-like macro. */
21044 int name_len = p - body;
21045 char *name = copy_string (body, name_len);
21046 const char *replacement;
21049 replacement = body + name_len + 1;
21052 dwarf2_macro_malformed_definition_complaint (body);
21053 replacement = body + name_len;
21056 macro_define_object (file, line, name, replacement);
21060 else if (*p == '(')
21062 /* It's a function-like macro. */
21063 char *name = copy_string (body, p - body);
21066 char **argv = XNEWVEC (char *, argv_size);
21070 p = consume_improper_spaces (p, body);
21072 /* Parse the formal argument list. */
21073 while (*p && *p != ')')
21075 /* Find the extent of the current argument name. */
21076 const char *arg_start = p;
21078 while (*p && *p != ',' && *p != ')' && *p != ' ')
21081 if (! *p || p == arg_start)
21082 dwarf2_macro_malformed_definition_complaint (body);
21085 /* Make sure argv has room for the new argument. */
21086 if (argc >= argv_size)
21089 argv = XRESIZEVEC (char *, argv, argv_size);
21092 argv[argc++] = copy_string (arg_start, p - arg_start);
21095 p = consume_improper_spaces (p, body);
21097 /* Consume the comma, if present. */
21102 p = consume_improper_spaces (p, body);
21111 /* Perfectly formed definition, no complaints. */
21112 macro_define_function (file, line, name,
21113 argc, (const char **) argv,
21115 else if (*p == '\0')
21117 /* Complain, but do define it. */
21118 dwarf2_macro_malformed_definition_complaint (body);
21119 macro_define_function (file, line, name,
21120 argc, (const char **) argv,
21124 /* Just complain. */
21125 dwarf2_macro_malformed_definition_complaint (body);
21128 /* Just complain. */
21129 dwarf2_macro_malformed_definition_complaint (body);
21135 for (i = 0; i < argc; i++)
21141 dwarf2_macro_malformed_definition_complaint (body);
21144 /* Skip some bytes from BYTES according to the form given in FORM.
21145 Returns the new pointer. */
21147 static const gdb_byte *
21148 skip_form_bytes (bfd *abfd, const gdb_byte *bytes, const gdb_byte *buffer_end,
21149 enum dwarf_form form,
21150 unsigned int offset_size,
21151 struct dwarf2_section_info *section)
21153 unsigned int bytes_read;
21157 case DW_FORM_data1:
21162 case DW_FORM_data2:
21166 case DW_FORM_data4:
21170 case DW_FORM_data8:
21174 case DW_FORM_string:
21175 read_direct_string (abfd, bytes, &bytes_read);
21176 bytes += bytes_read;
21179 case DW_FORM_sec_offset:
21181 case DW_FORM_GNU_strp_alt:
21182 bytes += offset_size;
21185 case DW_FORM_block:
21186 bytes += read_unsigned_leb128 (abfd, bytes, &bytes_read);
21187 bytes += bytes_read;
21190 case DW_FORM_block1:
21191 bytes += 1 + read_1_byte (abfd, bytes);
21193 case DW_FORM_block2:
21194 bytes += 2 + read_2_bytes (abfd, bytes);
21196 case DW_FORM_block4:
21197 bytes += 4 + read_4_bytes (abfd, bytes);
21200 case DW_FORM_sdata:
21201 case DW_FORM_udata:
21202 case DW_FORM_GNU_addr_index:
21203 case DW_FORM_GNU_str_index:
21204 bytes = gdb_skip_leb128 (bytes, buffer_end);
21207 dwarf2_section_buffer_overflow_complaint (section);
21215 complaint (&symfile_complaints,
21216 _("invalid form 0x%x in `%s'"),
21217 form, get_section_name (section));
21225 /* A helper for dwarf_decode_macros that handles skipping an unknown
21226 opcode. Returns an updated pointer to the macro data buffer; or,
21227 on error, issues a complaint and returns NULL. */
21229 static const gdb_byte *
21230 skip_unknown_opcode (unsigned int opcode,
21231 const gdb_byte **opcode_definitions,
21232 const gdb_byte *mac_ptr, const gdb_byte *mac_end,
21234 unsigned int offset_size,
21235 struct dwarf2_section_info *section)
21237 unsigned int bytes_read, i;
21239 const gdb_byte *defn;
21241 if (opcode_definitions[opcode] == NULL)
21243 complaint (&symfile_complaints,
21244 _("unrecognized DW_MACFINO opcode 0x%x"),
21249 defn = opcode_definitions[opcode];
21250 arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
21251 defn += bytes_read;
21253 for (i = 0; i < arg; ++i)
21255 mac_ptr = skip_form_bytes (abfd, mac_ptr, mac_end,
21256 (enum dwarf_form) defn[i], offset_size,
21258 if (mac_ptr == NULL)
21260 /* skip_form_bytes already issued the complaint. */
21268 /* A helper function which parses the header of a macro section.
21269 If the macro section is the extended (for now called "GNU") type,
21270 then this updates *OFFSET_SIZE. Returns a pointer to just after
21271 the header, or issues a complaint and returns NULL on error. */
21273 static const gdb_byte *
21274 dwarf_parse_macro_header (const gdb_byte **opcode_definitions,
21276 const gdb_byte *mac_ptr,
21277 unsigned int *offset_size,
21278 int section_is_gnu)
21280 memset (opcode_definitions, 0, 256 * sizeof (gdb_byte *));
21282 if (section_is_gnu)
21284 unsigned int version, flags;
21286 version = read_2_bytes (abfd, mac_ptr);
21289 complaint (&symfile_complaints,
21290 _("unrecognized version `%d' in .debug_macro section"),
21296 flags = read_1_byte (abfd, mac_ptr);
21298 *offset_size = (flags & 1) ? 8 : 4;
21300 if ((flags & 2) != 0)
21301 /* We don't need the line table offset. */
21302 mac_ptr += *offset_size;
21304 /* Vendor opcode descriptions. */
21305 if ((flags & 4) != 0)
21307 unsigned int i, count;
21309 count = read_1_byte (abfd, mac_ptr);
21311 for (i = 0; i < count; ++i)
21313 unsigned int opcode, bytes_read;
21316 opcode = read_1_byte (abfd, mac_ptr);
21318 opcode_definitions[opcode] = mac_ptr;
21319 arg = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21320 mac_ptr += bytes_read;
21329 /* A helper for dwarf_decode_macros that handles the GNU extensions,
21330 including DW_MACRO_GNU_transparent_include. */
21333 dwarf_decode_macro_bytes (bfd *abfd,
21334 const gdb_byte *mac_ptr, const gdb_byte *mac_end,
21335 struct macro_source_file *current_file,
21336 struct line_header *lh,
21337 struct dwarf2_section_info *section,
21338 int section_is_gnu, int section_is_dwz,
21339 unsigned int offset_size,
21340 htab_t include_hash)
21342 struct objfile *objfile = dwarf2_per_objfile->objfile;
21343 enum dwarf_macro_record_type macinfo_type;
21344 int at_commandline;
21345 const gdb_byte *opcode_definitions[256];
21347 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
21348 &offset_size, section_is_gnu);
21349 if (mac_ptr == NULL)
21351 /* We already issued a complaint. */
21355 /* Determines if GDB is still before first DW_MACINFO_start_file. If true
21356 GDB is still reading the definitions from command line. First
21357 DW_MACINFO_start_file will need to be ignored as it was already executed
21358 to create CURRENT_FILE for the main source holding also the command line
21359 definitions. On first met DW_MACINFO_start_file this flag is reset to
21360 normally execute all the remaining DW_MACINFO_start_file macinfos. */
21362 at_commandline = 1;
21366 /* Do we at least have room for a macinfo type byte? */
21367 if (mac_ptr >= mac_end)
21369 dwarf2_section_buffer_overflow_complaint (section);
21373 macinfo_type = (enum dwarf_macro_record_type) read_1_byte (abfd, mac_ptr);
21376 /* Note that we rely on the fact that the corresponding GNU and
21377 DWARF constants are the same. */
21378 switch (macinfo_type)
21380 /* A zero macinfo type indicates the end of the macro
21385 case DW_MACRO_GNU_define:
21386 case DW_MACRO_GNU_undef:
21387 case DW_MACRO_GNU_define_indirect:
21388 case DW_MACRO_GNU_undef_indirect:
21389 case DW_MACRO_GNU_define_indirect_alt:
21390 case DW_MACRO_GNU_undef_indirect_alt:
21392 unsigned int bytes_read;
21397 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21398 mac_ptr += bytes_read;
21400 if (macinfo_type == DW_MACRO_GNU_define
21401 || macinfo_type == DW_MACRO_GNU_undef)
21403 body = read_direct_string (abfd, mac_ptr, &bytes_read);
21404 mac_ptr += bytes_read;
21408 LONGEST str_offset;
21410 str_offset = read_offset_1 (abfd, mac_ptr, offset_size);
21411 mac_ptr += offset_size;
21413 if (macinfo_type == DW_MACRO_GNU_define_indirect_alt
21414 || macinfo_type == DW_MACRO_GNU_undef_indirect_alt
21417 struct dwz_file *dwz = dwarf2_get_dwz_file ();
21419 body = read_indirect_string_from_dwz (dwz, str_offset);
21422 body = read_indirect_string_at_offset (abfd, str_offset);
21425 is_define = (macinfo_type == DW_MACRO_GNU_define
21426 || macinfo_type == DW_MACRO_GNU_define_indirect
21427 || macinfo_type == DW_MACRO_GNU_define_indirect_alt);
21428 if (! current_file)
21430 /* DWARF violation as no main source is present. */
21431 complaint (&symfile_complaints,
21432 _("debug info with no main source gives macro %s "
21434 is_define ? _("definition") : _("undefinition"),
21438 if ((line == 0 && !at_commandline)
21439 || (line != 0 && at_commandline))
21440 complaint (&symfile_complaints,
21441 _("debug info gives %s macro %s with %s line %d: %s"),
21442 at_commandline ? _("command-line") : _("in-file"),
21443 is_define ? _("definition") : _("undefinition"),
21444 line == 0 ? _("zero") : _("non-zero"), line, body);
21447 parse_macro_definition (current_file, line, body);
21450 gdb_assert (macinfo_type == DW_MACRO_GNU_undef
21451 || macinfo_type == DW_MACRO_GNU_undef_indirect
21452 || macinfo_type == DW_MACRO_GNU_undef_indirect_alt);
21453 macro_undef (current_file, line, body);
21458 case DW_MACRO_GNU_start_file:
21460 unsigned int bytes_read;
21463 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21464 mac_ptr += bytes_read;
21465 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21466 mac_ptr += bytes_read;
21468 if ((line == 0 && !at_commandline)
21469 || (line != 0 && at_commandline))
21470 complaint (&symfile_complaints,
21471 _("debug info gives source %d included "
21472 "from %s at %s line %d"),
21473 file, at_commandline ? _("command-line") : _("file"),
21474 line == 0 ? _("zero") : _("non-zero"), line);
21476 if (at_commandline)
21478 /* This DW_MACRO_GNU_start_file was executed in the
21480 at_commandline = 0;
21483 current_file = macro_start_file (file, line, current_file, lh);
21487 case DW_MACRO_GNU_end_file:
21488 if (! current_file)
21489 complaint (&symfile_complaints,
21490 _("macro debug info has an unmatched "
21491 "`close_file' directive"));
21494 current_file = current_file->included_by;
21495 if (! current_file)
21497 enum dwarf_macro_record_type next_type;
21499 /* GCC circa March 2002 doesn't produce the zero
21500 type byte marking the end of the compilation
21501 unit. Complain if it's not there, but exit no
21504 /* Do we at least have room for a macinfo type byte? */
21505 if (mac_ptr >= mac_end)
21507 dwarf2_section_buffer_overflow_complaint (section);
21511 /* We don't increment mac_ptr here, so this is just
21514 = (enum dwarf_macro_record_type) read_1_byte (abfd,
21516 if (next_type != 0)
21517 complaint (&symfile_complaints,
21518 _("no terminating 0-type entry for "
21519 "macros in `.debug_macinfo' section"));
21526 case DW_MACRO_GNU_transparent_include:
21527 case DW_MACRO_GNU_transparent_include_alt:
21531 bfd *include_bfd = abfd;
21532 struct dwarf2_section_info *include_section = section;
21533 const gdb_byte *include_mac_end = mac_end;
21534 int is_dwz = section_is_dwz;
21535 const gdb_byte *new_mac_ptr;
21537 offset = read_offset_1 (abfd, mac_ptr, offset_size);
21538 mac_ptr += offset_size;
21540 if (macinfo_type == DW_MACRO_GNU_transparent_include_alt)
21542 struct dwz_file *dwz = dwarf2_get_dwz_file ();
21544 dwarf2_read_section (objfile, &dwz->macro);
21546 include_section = &dwz->macro;
21547 include_bfd = get_section_bfd_owner (include_section);
21548 include_mac_end = dwz->macro.buffer + dwz->macro.size;
21552 new_mac_ptr = include_section->buffer + offset;
21553 slot = htab_find_slot (include_hash, new_mac_ptr, INSERT);
21557 /* This has actually happened; see
21558 http://sourceware.org/bugzilla/show_bug.cgi?id=13568. */
21559 complaint (&symfile_complaints,
21560 _("recursive DW_MACRO_GNU_transparent_include in "
21561 ".debug_macro section"));
21565 *slot = (void *) new_mac_ptr;
21567 dwarf_decode_macro_bytes (include_bfd, new_mac_ptr,
21568 include_mac_end, current_file, lh,
21569 section, section_is_gnu, is_dwz,
21570 offset_size, include_hash);
21572 htab_remove_elt (include_hash, (void *) new_mac_ptr);
21577 case DW_MACINFO_vendor_ext:
21578 if (!section_is_gnu)
21580 unsigned int bytes_read;
21583 constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21584 mac_ptr += bytes_read;
21585 read_direct_string (abfd, mac_ptr, &bytes_read);
21586 mac_ptr += bytes_read;
21588 /* We don't recognize any vendor extensions. */
21594 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
21595 mac_ptr, mac_end, abfd, offset_size,
21597 if (mac_ptr == NULL)
21601 } while (macinfo_type != 0);
21605 dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
21606 int section_is_gnu)
21608 struct objfile *objfile = dwarf2_per_objfile->objfile;
21609 struct line_header *lh = cu->line_header;
21611 const gdb_byte *mac_ptr, *mac_end;
21612 struct macro_source_file *current_file = 0;
21613 enum dwarf_macro_record_type macinfo_type;
21614 unsigned int offset_size = cu->header.offset_size;
21615 const gdb_byte *opcode_definitions[256];
21616 struct cleanup *cleanup;
21617 htab_t include_hash;
21619 struct dwarf2_section_info *section;
21620 const char *section_name;
21622 if (cu->dwo_unit != NULL)
21624 if (section_is_gnu)
21626 section = &cu->dwo_unit->dwo_file->sections.macro;
21627 section_name = ".debug_macro.dwo";
21631 section = &cu->dwo_unit->dwo_file->sections.macinfo;
21632 section_name = ".debug_macinfo.dwo";
21637 if (section_is_gnu)
21639 section = &dwarf2_per_objfile->macro;
21640 section_name = ".debug_macro";
21644 section = &dwarf2_per_objfile->macinfo;
21645 section_name = ".debug_macinfo";
21649 dwarf2_read_section (objfile, section);
21650 if (section->buffer == NULL)
21652 complaint (&symfile_complaints, _("missing %s section"), section_name);
21655 abfd = get_section_bfd_owner (section);
21657 /* First pass: Find the name of the base filename.
21658 This filename is needed in order to process all macros whose definition
21659 (or undefinition) comes from the command line. These macros are defined
21660 before the first DW_MACINFO_start_file entry, and yet still need to be
21661 associated to the base file.
21663 To determine the base file name, we scan the macro definitions until we
21664 reach the first DW_MACINFO_start_file entry. We then initialize
21665 CURRENT_FILE accordingly so that any macro definition found before the
21666 first DW_MACINFO_start_file can still be associated to the base file. */
21668 mac_ptr = section->buffer + offset;
21669 mac_end = section->buffer + section->size;
21671 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
21672 &offset_size, section_is_gnu);
21673 if (mac_ptr == NULL)
21675 /* We already issued a complaint. */
21681 /* Do we at least have room for a macinfo type byte? */
21682 if (mac_ptr >= mac_end)
21684 /* Complaint is printed during the second pass as GDB will probably
21685 stop the first pass earlier upon finding
21686 DW_MACINFO_start_file. */
21690 macinfo_type = (enum dwarf_macro_record_type) read_1_byte (abfd, mac_ptr);
21693 /* Note that we rely on the fact that the corresponding GNU and
21694 DWARF constants are the same. */
21695 switch (macinfo_type)
21697 /* A zero macinfo type indicates the end of the macro
21702 case DW_MACRO_GNU_define:
21703 case DW_MACRO_GNU_undef:
21704 /* Only skip the data by MAC_PTR. */
21706 unsigned int bytes_read;
21708 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21709 mac_ptr += bytes_read;
21710 read_direct_string (abfd, mac_ptr, &bytes_read);
21711 mac_ptr += bytes_read;
21715 case DW_MACRO_GNU_start_file:
21717 unsigned int bytes_read;
21720 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21721 mac_ptr += bytes_read;
21722 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21723 mac_ptr += bytes_read;
21725 current_file = macro_start_file (file, line, current_file, lh);
21729 case DW_MACRO_GNU_end_file:
21730 /* No data to skip by MAC_PTR. */
21733 case DW_MACRO_GNU_define_indirect:
21734 case DW_MACRO_GNU_undef_indirect:
21735 case DW_MACRO_GNU_define_indirect_alt:
21736 case DW_MACRO_GNU_undef_indirect_alt:
21738 unsigned int bytes_read;
21740 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21741 mac_ptr += bytes_read;
21742 mac_ptr += offset_size;
21746 case DW_MACRO_GNU_transparent_include:
21747 case DW_MACRO_GNU_transparent_include_alt:
21748 /* Note that, according to the spec, a transparent include
21749 chain cannot call DW_MACRO_GNU_start_file. So, we can just
21750 skip this opcode. */
21751 mac_ptr += offset_size;
21754 case DW_MACINFO_vendor_ext:
21755 /* Only skip the data by MAC_PTR. */
21756 if (!section_is_gnu)
21758 unsigned int bytes_read;
21760 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21761 mac_ptr += bytes_read;
21762 read_direct_string (abfd, mac_ptr, &bytes_read);
21763 mac_ptr += bytes_read;
21768 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
21769 mac_ptr, mac_end, abfd, offset_size,
21771 if (mac_ptr == NULL)
21775 } while (macinfo_type != 0 && current_file == NULL);
21777 /* Second pass: Process all entries.
21779 Use the AT_COMMAND_LINE flag to determine whether we are still processing
21780 command-line macro definitions/undefinitions. This flag is unset when we
21781 reach the first DW_MACINFO_start_file entry. */
21783 include_hash = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
21784 NULL, xcalloc, xfree);
21785 cleanup = make_cleanup_htab_delete (include_hash);
21786 mac_ptr = section->buffer + offset;
21787 slot = htab_find_slot (include_hash, mac_ptr, INSERT);
21788 *slot = (void *) mac_ptr;
21789 dwarf_decode_macro_bytes (abfd, mac_ptr, mac_end,
21790 current_file, lh, section,
21791 section_is_gnu, 0, offset_size, include_hash);
21792 do_cleanups (cleanup);
21795 /* Check if the attribute's form is a DW_FORM_block*
21796 if so return true else false. */
21799 attr_form_is_block (const struct attribute *attr)
21801 return (attr == NULL ? 0 :
21802 attr->form == DW_FORM_block1
21803 || attr->form == DW_FORM_block2
21804 || attr->form == DW_FORM_block4
21805 || attr->form == DW_FORM_block
21806 || attr->form == DW_FORM_exprloc);
21809 /* Return non-zero if ATTR's value is a section offset --- classes
21810 lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
21811 You may use DW_UNSND (attr) to retrieve such offsets.
21813 Section 7.5.4, "Attribute Encodings", explains that no attribute
21814 may have a value that belongs to more than one of these classes; it
21815 would be ambiguous if we did, because we use the same forms for all
21819 attr_form_is_section_offset (const struct attribute *attr)
21821 return (attr->form == DW_FORM_data4
21822 || attr->form == DW_FORM_data8
21823 || attr->form == DW_FORM_sec_offset);
21826 /* Return non-zero if ATTR's value falls in the 'constant' class, or
21827 zero otherwise. When this function returns true, you can apply
21828 dwarf2_get_attr_constant_value to it.
21830 However, note that for some attributes you must check
21831 attr_form_is_section_offset before using this test. DW_FORM_data4
21832 and DW_FORM_data8 are members of both the constant class, and of
21833 the classes that contain offsets into other debug sections
21834 (lineptr, loclistptr, macptr or rangelistptr). The DWARF spec says
21835 that, if an attribute's can be either a constant or one of the
21836 section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
21837 taken as section offsets, not constants. */
21840 attr_form_is_constant (const struct attribute *attr)
21842 switch (attr->form)
21844 case DW_FORM_sdata:
21845 case DW_FORM_udata:
21846 case DW_FORM_data1:
21847 case DW_FORM_data2:
21848 case DW_FORM_data4:
21849 case DW_FORM_data8:
21857 /* DW_ADDR is always stored already as sect_offset; despite for the forms
21858 besides DW_FORM_ref_addr it is stored as cu_offset in the DWARF file. */
21861 attr_form_is_ref (const struct attribute *attr)
21863 switch (attr->form)
21865 case DW_FORM_ref_addr:
21870 case DW_FORM_ref_udata:
21871 case DW_FORM_GNU_ref_alt:
21878 /* Return the .debug_loc section to use for CU.
21879 For DWO files use .debug_loc.dwo. */
21881 static struct dwarf2_section_info *
21882 cu_debug_loc_section (struct dwarf2_cu *cu)
21885 return &cu->dwo_unit->dwo_file->sections.loc;
21886 return &dwarf2_per_objfile->loc;
21889 /* A helper function that fills in a dwarf2_loclist_baton. */
21892 fill_in_loclist_baton (struct dwarf2_cu *cu,
21893 struct dwarf2_loclist_baton *baton,
21894 const struct attribute *attr)
21896 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
21898 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
21900 baton->per_cu = cu->per_cu;
21901 gdb_assert (baton->per_cu);
21902 /* We don't know how long the location list is, but make sure we
21903 don't run off the edge of the section. */
21904 baton->size = section->size - DW_UNSND (attr);
21905 baton->data = section->buffer + DW_UNSND (attr);
21906 baton->base_address = cu->base_address;
21907 baton->from_dwo = cu->dwo_unit != NULL;
21911 dwarf2_symbol_mark_computed (const struct attribute *attr, struct symbol *sym,
21912 struct dwarf2_cu *cu, int is_block)
21914 struct objfile *objfile = dwarf2_per_objfile->objfile;
21915 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
21917 if (attr_form_is_section_offset (attr)
21918 /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
21919 the section. If so, fall through to the complaint in the
21921 && DW_UNSND (attr) < dwarf2_section_size (objfile, section))
21923 struct dwarf2_loclist_baton *baton;
21925 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_loclist_baton);
21927 fill_in_loclist_baton (cu, baton, attr);
21929 if (cu->base_known == 0)
21930 complaint (&symfile_complaints,
21931 _("Location list used without "
21932 "specifying the CU base address."));
21934 SYMBOL_ACLASS_INDEX (sym) = (is_block
21935 ? dwarf2_loclist_block_index
21936 : dwarf2_loclist_index);
21937 SYMBOL_LOCATION_BATON (sym) = baton;
21941 struct dwarf2_locexpr_baton *baton;
21943 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
21944 baton->per_cu = cu->per_cu;
21945 gdb_assert (baton->per_cu);
21947 if (attr_form_is_block (attr))
21949 /* Note that we're just copying the block's data pointer
21950 here, not the actual data. We're still pointing into the
21951 info_buffer for SYM's objfile; right now we never release
21952 that buffer, but when we do clean up properly this may
21954 baton->size = DW_BLOCK (attr)->size;
21955 baton->data = DW_BLOCK (attr)->data;
21959 dwarf2_invalid_attrib_class_complaint ("location description",
21960 SYMBOL_NATURAL_NAME (sym));
21964 SYMBOL_ACLASS_INDEX (sym) = (is_block
21965 ? dwarf2_locexpr_block_index
21966 : dwarf2_locexpr_index);
21967 SYMBOL_LOCATION_BATON (sym) = baton;
21971 /* Return the OBJFILE associated with the compilation unit CU. If CU
21972 came from a separate debuginfo file, then the master objfile is
21976 dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
21978 struct objfile *objfile = per_cu->objfile;
21980 /* Return the master objfile, so that we can report and look up the
21981 correct file containing this variable. */
21982 if (objfile->separate_debug_objfile_backlink)
21983 objfile = objfile->separate_debug_objfile_backlink;
21988 /* Return comp_unit_head for PER_CU, either already available in PER_CU->CU
21989 (CU_HEADERP is unused in such case) or prepare a temporary copy at
21990 CU_HEADERP first. */
21992 static const struct comp_unit_head *
21993 per_cu_header_read_in (struct comp_unit_head *cu_headerp,
21994 struct dwarf2_per_cu_data *per_cu)
21996 const gdb_byte *info_ptr;
21999 return &per_cu->cu->header;
22001 info_ptr = per_cu->section->buffer + per_cu->offset.sect_off;
22003 memset (cu_headerp, 0, sizeof (*cu_headerp));
22004 read_comp_unit_head (cu_headerp, info_ptr, per_cu->objfile->obfd);
22009 /* Return the address size given in the compilation unit header for CU. */
22012 dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
22014 struct comp_unit_head cu_header_local;
22015 const struct comp_unit_head *cu_headerp;
22017 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
22019 return cu_headerp->addr_size;
22022 /* Return the offset size given in the compilation unit header for CU. */
22025 dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
22027 struct comp_unit_head cu_header_local;
22028 const struct comp_unit_head *cu_headerp;
22030 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
22032 return cu_headerp->offset_size;
22035 /* See its dwarf2loc.h declaration. */
22038 dwarf2_per_cu_ref_addr_size (struct dwarf2_per_cu_data *per_cu)
22040 struct comp_unit_head cu_header_local;
22041 const struct comp_unit_head *cu_headerp;
22043 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
22045 if (cu_headerp->version == 2)
22046 return cu_headerp->addr_size;
22048 return cu_headerp->offset_size;
22051 /* Return the text offset of the CU. The returned offset comes from
22052 this CU's objfile. If this objfile came from a separate debuginfo
22053 file, then the offset may be different from the corresponding
22054 offset in the parent objfile. */
22057 dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
22059 struct objfile *objfile = per_cu->objfile;
22061 return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
22064 /* Locate the .debug_info compilation unit from CU's objfile which contains
22065 the DIE at OFFSET. Raises an error on failure. */
22067 static struct dwarf2_per_cu_data *
22068 dwarf2_find_containing_comp_unit (sect_offset offset,
22069 unsigned int offset_in_dwz,
22070 struct objfile *objfile)
22072 struct dwarf2_per_cu_data *this_cu;
22074 const sect_offset *cu_off;
22077 high = dwarf2_per_objfile->n_comp_units - 1;
22080 struct dwarf2_per_cu_data *mid_cu;
22081 int mid = low + (high - low) / 2;
22083 mid_cu = dwarf2_per_objfile->all_comp_units[mid];
22084 cu_off = &mid_cu->offset;
22085 if (mid_cu->is_dwz > offset_in_dwz
22086 || (mid_cu->is_dwz == offset_in_dwz
22087 && cu_off->sect_off >= offset.sect_off))
22092 gdb_assert (low == high);
22093 this_cu = dwarf2_per_objfile->all_comp_units[low];
22094 cu_off = &this_cu->offset;
22095 if (this_cu->is_dwz != offset_in_dwz || cu_off->sect_off > offset.sect_off)
22097 if (low == 0 || this_cu->is_dwz != offset_in_dwz)
22098 error (_("Dwarf Error: could not find partial DIE containing "
22099 "offset 0x%lx [in module %s]"),
22100 (long) offset.sect_off, bfd_get_filename (objfile->obfd));
22102 gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset.sect_off
22103 <= offset.sect_off);
22104 return dwarf2_per_objfile->all_comp_units[low-1];
22108 this_cu = dwarf2_per_objfile->all_comp_units[low];
22109 if (low == dwarf2_per_objfile->n_comp_units - 1
22110 && offset.sect_off >= this_cu->offset.sect_off + this_cu->length)
22111 error (_("invalid dwarf2 offset %u"), offset.sect_off);
22112 gdb_assert (offset.sect_off < this_cu->offset.sect_off + this_cu->length);
22117 /* Initialize dwarf2_cu CU, owned by PER_CU. */
22120 init_one_comp_unit (struct dwarf2_cu *cu, struct dwarf2_per_cu_data *per_cu)
22122 memset (cu, 0, sizeof (*cu));
22124 cu->per_cu = per_cu;
22125 cu->objfile = per_cu->objfile;
22126 obstack_init (&cu->comp_unit_obstack);
22129 /* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE. */
22132 prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
22133 enum language pretend_language)
22135 struct attribute *attr;
22137 /* Set the language we're debugging. */
22138 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
22140 set_cu_language (DW_UNSND (attr), cu);
22143 cu->language = pretend_language;
22144 cu->language_defn = language_def (cu->language);
22147 cu->producer = dwarf2_string_attr (comp_unit_die, DW_AT_producer, cu);
22150 /* Release one cached compilation unit, CU. We unlink it from the tree
22151 of compilation units, but we don't remove it from the read_in_chain;
22152 the caller is responsible for that.
22153 NOTE: DATA is a void * because this function is also used as a
22154 cleanup routine. */
22157 free_heap_comp_unit (void *data)
22159 struct dwarf2_cu *cu = (struct dwarf2_cu *) data;
22161 gdb_assert (cu->per_cu != NULL);
22162 cu->per_cu->cu = NULL;
22165 obstack_free (&cu->comp_unit_obstack, NULL);
22170 /* This cleanup function is passed the address of a dwarf2_cu on the stack
22171 when we're finished with it. We can't free the pointer itself, but be
22172 sure to unlink it from the cache. Also release any associated storage. */
22175 free_stack_comp_unit (void *data)
22177 struct dwarf2_cu *cu = (struct dwarf2_cu *) data;
22179 gdb_assert (cu->per_cu != NULL);
22180 cu->per_cu->cu = NULL;
22183 obstack_free (&cu->comp_unit_obstack, NULL);
22184 cu->partial_dies = NULL;
22187 /* Free all cached compilation units. */
22190 free_cached_comp_units (void *data)
22192 struct dwarf2_per_cu_data *per_cu, **last_chain;
22194 per_cu = dwarf2_per_objfile->read_in_chain;
22195 last_chain = &dwarf2_per_objfile->read_in_chain;
22196 while (per_cu != NULL)
22198 struct dwarf2_per_cu_data *next_cu;
22200 next_cu = per_cu->cu->read_in_chain;
22202 free_heap_comp_unit (per_cu->cu);
22203 *last_chain = next_cu;
22209 /* Increase the age counter on each cached compilation unit, and free
22210 any that are too old. */
22213 age_cached_comp_units (void)
22215 struct dwarf2_per_cu_data *per_cu, **last_chain;
22217 dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
22218 per_cu = dwarf2_per_objfile->read_in_chain;
22219 while (per_cu != NULL)
22221 per_cu->cu->last_used ++;
22222 if (per_cu->cu->last_used <= dwarf_max_cache_age)
22223 dwarf2_mark (per_cu->cu);
22224 per_cu = per_cu->cu->read_in_chain;
22227 per_cu = dwarf2_per_objfile->read_in_chain;
22228 last_chain = &dwarf2_per_objfile->read_in_chain;
22229 while (per_cu != NULL)
22231 struct dwarf2_per_cu_data *next_cu;
22233 next_cu = per_cu->cu->read_in_chain;
22235 if (!per_cu->cu->mark)
22237 free_heap_comp_unit (per_cu->cu);
22238 *last_chain = next_cu;
22241 last_chain = &per_cu->cu->read_in_chain;
22247 /* Remove a single compilation unit from the cache. */
22250 free_one_cached_comp_unit (struct dwarf2_per_cu_data *target_per_cu)
22252 struct dwarf2_per_cu_data *per_cu, **last_chain;
22254 per_cu = dwarf2_per_objfile->read_in_chain;
22255 last_chain = &dwarf2_per_objfile->read_in_chain;
22256 while (per_cu != NULL)
22258 struct dwarf2_per_cu_data *next_cu;
22260 next_cu = per_cu->cu->read_in_chain;
22262 if (per_cu == target_per_cu)
22264 free_heap_comp_unit (per_cu->cu);
22266 *last_chain = next_cu;
22270 last_chain = &per_cu->cu->read_in_chain;
22276 /* Release all extra memory associated with OBJFILE. */
22279 dwarf2_free_objfile (struct objfile *objfile)
22282 = (struct dwarf2_per_objfile *) objfile_data (objfile,
22283 dwarf2_objfile_data_key);
22285 if (dwarf2_per_objfile == NULL)
22288 /* Cached DIE trees use xmalloc and the comp_unit_obstack. */
22289 free_cached_comp_units (NULL);
22291 if (dwarf2_per_objfile->quick_file_names_table)
22292 htab_delete (dwarf2_per_objfile->quick_file_names_table);
22294 if (dwarf2_per_objfile->line_header_hash)
22295 htab_delete (dwarf2_per_objfile->line_header_hash);
22297 /* Everything else should be on the objfile obstack. */
22300 /* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
22301 We store these in a hash table separate from the DIEs, and preserve them
22302 when the DIEs are flushed out of cache.
22304 The CU "per_cu" pointer is needed because offset alone is not enough to
22305 uniquely identify the type. A file may have multiple .debug_types sections,
22306 or the type may come from a DWO file. Furthermore, while it's more logical
22307 to use per_cu->section+offset, with Fission the section with the data is in
22308 the DWO file but we don't know that section at the point we need it.
22309 We have to use something in dwarf2_per_cu_data (or the pointer to it)
22310 because we can enter the lookup routine, get_die_type_at_offset, from
22311 outside this file, and thus won't necessarily have PER_CU->cu.
22312 Fortunately, PER_CU is stable for the life of the objfile. */
22314 struct dwarf2_per_cu_offset_and_type
22316 const struct dwarf2_per_cu_data *per_cu;
22317 sect_offset offset;
22321 /* Hash function for a dwarf2_per_cu_offset_and_type. */
22324 per_cu_offset_and_type_hash (const void *item)
22326 const struct dwarf2_per_cu_offset_and_type *ofs
22327 = (const struct dwarf2_per_cu_offset_and_type *) item;
22329 return (uintptr_t) ofs->per_cu + ofs->offset.sect_off;
22332 /* Equality function for a dwarf2_per_cu_offset_and_type. */
22335 per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
22337 const struct dwarf2_per_cu_offset_and_type *ofs_lhs
22338 = (const struct dwarf2_per_cu_offset_and_type *) item_lhs;
22339 const struct dwarf2_per_cu_offset_and_type *ofs_rhs
22340 = (const struct dwarf2_per_cu_offset_and_type *) item_rhs;
22342 return (ofs_lhs->per_cu == ofs_rhs->per_cu
22343 && ofs_lhs->offset.sect_off == ofs_rhs->offset.sect_off);
22346 /* Set the type associated with DIE to TYPE. Save it in CU's hash
22347 table if necessary. For convenience, return TYPE.
22349 The DIEs reading must have careful ordering to:
22350 * Not cause infite loops trying to read in DIEs as a prerequisite for
22351 reading current DIE.
22352 * Not trying to dereference contents of still incompletely read in types
22353 while reading in other DIEs.
22354 * Enable referencing still incompletely read in types just by a pointer to
22355 the type without accessing its fields.
22357 Therefore caller should follow these rules:
22358 * Try to fetch any prerequisite types we may need to build this DIE type
22359 before building the type and calling set_die_type.
22360 * After building type call set_die_type for current DIE as soon as
22361 possible before fetching more types to complete the current type.
22362 * Make the type as complete as possible before fetching more types. */
22364 static struct type *
22365 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
22367 struct dwarf2_per_cu_offset_and_type **slot, ofs;
22368 struct objfile *objfile = cu->objfile;
22369 struct attribute *attr;
22370 struct dynamic_prop prop;
22372 /* For Ada types, make sure that the gnat-specific data is always
22373 initialized (if not already set). There are a few types where
22374 we should not be doing so, because the type-specific area is
22375 already used to hold some other piece of info (eg: TYPE_CODE_FLT
22376 where the type-specific area is used to store the floatformat).
22377 But this is not a problem, because the gnat-specific information
22378 is actually not needed for these types. */
22379 if (need_gnat_info (cu)
22380 && TYPE_CODE (type) != TYPE_CODE_FUNC
22381 && TYPE_CODE (type) != TYPE_CODE_FLT
22382 && TYPE_CODE (type) != TYPE_CODE_METHODPTR
22383 && TYPE_CODE (type) != TYPE_CODE_MEMBERPTR
22384 && TYPE_CODE (type) != TYPE_CODE_METHOD
22385 && !HAVE_GNAT_AUX_INFO (type))
22386 INIT_GNAT_SPECIFIC (type);
22388 /* Read DW_AT_allocated and set in type. */
22389 attr = dwarf2_attr (die, DW_AT_allocated, cu);
22390 if (attr_form_is_block (attr))
22392 if (attr_to_dynamic_prop (attr, die, cu, &prop))
22393 add_dyn_prop (DYN_PROP_ALLOCATED, prop, type, objfile);
22395 else if (attr != NULL)
22397 complaint (&symfile_complaints,
22398 _("DW_AT_allocated has the wrong form (%s) at DIE 0x%x"),
22399 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
22400 die->offset.sect_off);
22403 /* Read DW_AT_associated and set in type. */
22404 attr = dwarf2_attr (die, DW_AT_associated, cu);
22405 if (attr_form_is_block (attr))
22407 if (attr_to_dynamic_prop (attr, die, cu, &prop))
22408 add_dyn_prop (DYN_PROP_ASSOCIATED, prop, type, objfile);
22410 else if (attr != NULL)
22412 complaint (&symfile_complaints,
22413 _("DW_AT_associated has the wrong form (%s) at DIE 0x%x"),
22414 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
22415 die->offset.sect_off);
22418 /* Read DW_AT_data_location and set in type. */
22419 attr = dwarf2_attr (die, DW_AT_data_location, cu);
22420 if (attr_to_dynamic_prop (attr, die, cu, &prop))
22421 add_dyn_prop (DYN_PROP_DATA_LOCATION, prop, type, objfile);
22423 if (dwarf2_per_objfile->die_type_hash == NULL)
22425 dwarf2_per_objfile->die_type_hash =
22426 htab_create_alloc_ex (127,
22427 per_cu_offset_and_type_hash,
22428 per_cu_offset_and_type_eq,
22430 &objfile->objfile_obstack,
22431 hashtab_obstack_allocate,
22432 dummy_obstack_deallocate);
22435 ofs.per_cu = cu->per_cu;
22436 ofs.offset = die->offset;
22438 slot = (struct dwarf2_per_cu_offset_and_type **)
22439 htab_find_slot (dwarf2_per_objfile->die_type_hash, &ofs, INSERT);
22441 complaint (&symfile_complaints,
22442 _("A problem internal to GDB: DIE 0x%x has type already set"),
22443 die->offset.sect_off);
22444 *slot = XOBNEW (&objfile->objfile_obstack,
22445 struct dwarf2_per_cu_offset_and_type);
22450 /* Look up the type for the die at OFFSET in PER_CU in die_type_hash,
22451 or return NULL if the die does not have a saved type. */
22453 static struct type *
22454 get_die_type_at_offset (sect_offset offset,
22455 struct dwarf2_per_cu_data *per_cu)
22457 struct dwarf2_per_cu_offset_and_type *slot, ofs;
22459 if (dwarf2_per_objfile->die_type_hash == NULL)
22462 ofs.per_cu = per_cu;
22463 ofs.offset = offset;
22464 slot = ((struct dwarf2_per_cu_offset_and_type *)
22465 htab_find (dwarf2_per_objfile->die_type_hash, &ofs));
22472 /* Look up the type for DIE in CU in die_type_hash,
22473 or return NULL if DIE does not have a saved type. */
22475 static struct type *
22476 get_die_type (struct die_info *die, struct dwarf2_cu *cu)
22478 return get_die_type_at_offset (die->offset, cu->per_cu);
22481 /* Add a dependence relationship from CU to REF_PER_CU. */
22484 dwarf2_add_dependence (struct dwarf2_cu *cu,
22485 struct dwarf2_per_cu_data *ref_per_cu)
22489 if (cu->dependencies == NULL)
22491 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
22492 NULL, &cu->comp_unit_obstack,
22493 hashtab_obstack_allocate,
22494 dummy_obstack_deallocate);
22496 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
22498 *slot = ref_per_cu;
22501 /* Subroutine of dwarf2_mark to pass to htab_traverse.
22502 Set the mark field in every compilation unit in the
22503 cache that we must keep because we are keeping CU. */
22506 dwarf2_mark_helper (void **slot, void *data)
22508 struct dwarf2_per_cu_data *per_cu;
22510 per_cu = (struct dwarf2_per_cu_data *) *slot;
22512 /* cu->dependencies references may not yet have been ever read if QUIT aborts
22513 reading of the chain. As such dependencies remain valid it is not much
22514 useful to track and undo them during QUIT cleanups. */
22515 if (per_cu->cu == NULL)
22518 if (per_cu->cu->mark)
22520 per_cu->cu->mark = 1;
22522 if (per_cu->cu->dependencies != NULL)
22523 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
22528 /* Set the mark field in CU and in every other compilation unit in the
22529 cache that we must keep because we are keeping CU. */
22532 dwarf2_mark (struct dwarf2_cu *cu)
22537 if (cu->dependencies != NULL)
22538 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
22542 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
22546 per_cu->cu->mark = 0;
22547 per_cu = per_cu->cu->read_in_chain;
22551 /* Trivial hash function for partial_die_info: the hash value of a DIE
22552 is its offset in .debug_info for this objfile. */
22555 partial_die_hash (const void *item)
22557 const struct partial_die_info *part_die
22558 = (const struct partial_die_info *) item;
22560 return part_die->offset.sect_off;
22563 /* Trivial comparison function for partial_die_info structures: two DIEs
22564 are equal if they have the same offset. */
22567 partial_die_eq (const void *item_lhs, const void *item_rhs)
22569 const struct partial_die_info *part_die_lhs
22570 = (const struct partial_die_info *) item_lhs;
22571 const struct partial_die_info *part_die_rhs
22572 = (const struct partial_die_info *) item_rhs;
22574 return part_die_lhs->offset.sect_off == part_die_rhs->offset.sect_off;
22577 static struct cmd_list_element *set_dwarf_cmdlist;
22578 static struct cmd_list_element *show_dwarf_cmdlist;
22581 set_dwarf_cmd (char *args, int from_tty)
22583 help_list (set_dwarf_cmdlist, "maintenance set dwarf ", all_commands,
22588 show_dwarf_cmd (char *args, int from_tty)
22590 cmd_show_list (show_dwarf_cmdlist, from_tty, "");
22593 /* Free data associated with OBJFILE, if necessary. */
22596 dwarf2_per_objfile_free (struct objfile *objfile, void *d)
22598 struct dwarf2_per_objfile *data = (struct dwarf2_per_objfile *) d;
22601 /* Make sure we don't accidentally use dwarf2_per_objfile while
22603 dwarf2_per_objfile = NULL;
22605 for (ix = 0; ix < data->n_comp_units; ++ix)
22606 VEC_free (dwarf2_per_cu_ptr, data->all_comp_units[ix]->imported_symtabs);
22608 for (ix = 0; ix < data->n_type_units; ++ix)
22609 VEC_free (dwarf2_per_cu_ptr,
22610 data->all_type_units[ix]->per_cu.imported_symtabs);
22611 xfree (data->all_type_units);
22613 VEC_free (dwarf2_section_info_def, data->types);
22615 if (data->dwo_files)
22616 free_dwo_files (data->dwo_files, objfile);
22617 if (data->dwp_file)
22618 gdb_bfd_unref (data->dwp_file->dbfd);
22620 if (data->dwz_file && data->dwz_file->dwz_bfd)
22621 gdb_bfd_unref (data->dwz_file->dwz_bfd);
22625 /* The "save gdb-index" command. */
22627 /* The contents of the hash table we create when building the string
22629 struct strtab_entry
22631 offset_type offset;
22635 /* Hash function for a strtab_entry.
22637 Function is used only during write_hash_table so no index format backward
22638 compatibility is needed. */
22641 hash_strtab_entry (const void *e)
22643 const struct strtab_entry *entry = (const struct strtab_entry *) e;
22644 return mapped_index_string_hash (INT_MAX, entry->str);
22647 /* Equality function for a strtab_entry. */
22650 eq_strtab_entry (const void *a, const void *b)
22652 const struct strtab_entry *ea = (const struct strtab_entry *) a;
22653 const struct strtab_entry *eb = (const struct strtab_entry *) b;
22654 return !strcmp (ea->str, eb->str);
22657 /* Create a strtab_entry hash table. */
22660 create_strtab (void)
22662 return htab_create_alloc (100, hash_strtab_entry, eq_strtab_entry,
22663 xfree, xcalloc, xfree);
22666 /* Add a string to the constant pool. Return the string's offset in
22670 add_string (htab_t table, struct obstack *cpool, const char *str)
22673 struct strtab_entry entry;
22674 struct strtab_entry *result;
22677 slot = htab_find_slot (table, &entry, INSERT);
22679 result = (struct strtab_entry *) *slot;
22682 result = XNEW (struct strtab_entry);
22683 result->offset = obstack_object_size (cpool);
22685 obstack_grow_str0 (cpool, str);
22688 return result->offset;
22691 /* An entry in the symbol table. */
22692 struct symtab_index_entry
22694 /* The name of the symbol. */
22696 /* The offset of the name in the constant pool. */
22697 offset_type index_offset;
22698 /* A sorted vector of the indices of all the CUs that hold an object
22700 VEC (offset_type) *cu_indices;
22703 /* The symbol table. This is a power-of-2-sized hash table. */
22704 struct mapped_symtab
22706 offset_type n_elements;
22708 struct symtab_index_entry **data;
22711 /* Hash function for a symtab_index_entry. */
22714 hash_symtab_entry (const void *e)
22716 const struct symtab_index_entry *entry
22717 = (const struct symtab_index_entry *) e;
22718 return iterative_hash (VEC_address (offset_type, entry->cu_indices),
22719 sizeof (offset_type) * VEC_length (offset_type,
22720 entry->cu_indices),
22724 /* Equality function for a symtab_index_entry. */
22727 eq_symtab_entry (const void *a, const void *b)
22729 const struct symtab_index_entry *ea = (const struct symtab_index_entry *) a;
22730 const struct symtab_index_entry *eb = (const struct symtab_index_entry *) b;
22731 int len = VEC_length (offset_type, ea->cu_indices);
22732 if (len != VEC_length (offset_type, eb->cu_indices))
22734 return !memcmp (VEC_address (offset_type, ea->cu_indices),
22735 VEC_address (offset_type, eb->cu_indices),
22736 sizeof (offset_type) * len);
22739 /* Destroy a symtab_index_entry. */
22742 delete_symtab_entry (void *p)
22744 struct symtab_index_entry *entry = (struct symtab_index_entry *) p;
22745 VEC_free (offset_type, entry->cu_indices);
22749 /* Create a hash table holding symtab_index_entry objects. */
22752 create_symbol_hash_table (void)
22754 return htab_create_alloc (100, hash_symtab_entry, eq_symtab_entry,
22755 delete_symtab_entry, xcalloc, xfree);
22758 /* Create a new mapped symtab object. */
22760 static struct mapped_symtab *
22761 create_mapped_symtab (void)
22763 struct mapped_symtab *symtab = XNEW (struct mapped_symtab);
22764 symtab->n_elements = 0;
22765 symtab->size = 1024;
22766 symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
22770 /* Destroy a mapped_symtab. */
22773 cleanup_mapped_symtab (void *p)
22775 struct mapped_symtab *symtab = (struct mapped_symtab *) p;
22776 /* The contents of the array are freed when the other hash table is
22778 xfree (symtab->data);
22782 /* Find a slot in SYMTAB for the symbol NAME. Returns a pointer to
22785 Function is used only during write_hash_table so no index format backward
22786 compatibility is needed. */
22788 static struct symtab_index_entry **
22789 find_slot (struct mapped_symtab *symtab, const char *name)
22791 offset_type index, step, hash = mapped_index_string_hash (INT_MAX, name);
22793 index = hash & (symtab->size - 1);
22794 step = ((hash * 17) & (symtab->size - 1)) | 1;
22798 if (!symtab->data[index] || !strcmp (name, symtab->data[index]->name))
22799 return &symtab->data[index];
22800 index = (index + step) & (symtab->size - 1);
22804 /* Expand SYMTAB's hash table. */
22807 hash_expand (struct mapped_symtab *symtab)
22809 offset_type old_size = symtab->size;
22811 struct symtab_index_entry **old_entries = symtab->data;
22814 symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
22816 for (i = 0; i < old_size; ++i)
22818 if (old_entries[i])
22820 struct symtab_index_entry **slot = find_slot (symtab,
22821 old_entries[i]->name);
22822 *slot = old_entries[i];
22826 xfree (old_entries);
22829 /* Add an entry to SYMTAB. NAME is the name of the symbol.
22830 CU_INDEX is the index of the CU in which the symbol appears.
22831 IS_STATIC is one if the symbol is static, otherwise zero (global). */
22834 add_index_entry (struct mapped_symtab *symtab, const char *name,
22835 int is_static, gdb_index_symbol_kind kind,
22836 offset_type cu_index)
22838 struct symtab_index_entry **slot;
22839 offset_type cu_index_and_attrs;
22841 ++symtab->n_elements;
22842 if (4 * symtab->n_elements / 3 >= symtab->size)
22843 hash_expand (symtab);
22845 slot = find_slot (symtab, name);
22848 *slot = XNEW (struct symtab_index_entry);
22849 (*slot)->name = name;
22850 /* index_offset is set later. */
22851 (*slot)->cu_indices = NULL;
22854 cu_index_and_attrs = 0;
22855 DW2_GDB_INDEX_CU_SET_VALUE (cu_index_and_attrs, cu_index);
22856 DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE (cu_index_and_attrs, is_static);
22857 DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE (cu_index_and_attrs, kind);
22859 /* We don't want to record an index value twice as we want to avoid the
22861 We process all global symbols and then all static symbols
22862 (which would allow us to avoid the duplication by only having to check
22863 the last entry pushed), but a symbol could have multiple kinds in one CU.
22864 To keep things simple we don't worry about the duplication here and
22865 sort and uniqufy the list after we've processed all symbols. */
22866 VEC_safe_push (offset_type, (*slot)->cu_indices, cu_index_and_attrs);
22869 /* qsort helper routine for uniquify_cu_indices. */
22872 offset_type_compare (const void *ap, const void *bp)
22874 offset_type a = *(offset_type *) ap;
22875 offset_type b = *(offset_type *) bp;
22877 return (a > b) - (b > a);
22880 /* Sort and remove duplicates of all symbols' cu_indices lists. */
22883 uniquify_cu_indices (struct mapped_symtab *symtab)
22887 for (i = 0; i < symtab->size; ++i)
22889 struct symtab_index_entry *entry = symtab->data[i];
22892 && entry->cu_indices != NULL)
22894 unsigned int next_to_insert, next_to_check;
22895 offset_type last_value;
22897 qsort (VEC_address (offset_type, entry->cu_indices),
22898 VEC_length (offset_type, entry->cu_indices),
22899 sizeof (offset_type), offset_type_compare);
22901 last_value = VEC_index (offset_type, entry->cu_indices, 0);
22902 next_to_insert = 1;
22903 for (next_to_check = 1;
22904 next_to_check < VEC_length (offset_type, entry->cu_indices);
22907 if (VEC_index (offset_type, entry->cu_indices, next_to_check)
22910 last_value = VEC_index (offset_type, entry->cu_indices,
22912 VEC_replace (offset_type, entry->cu_indices, next_to_insert,
22917 VEC_truncate (offset_type, entry->cu_indices, next_to_insert);
22922 /* Add a vector of indices to the constant pool. */
22925 add_indices_to_cpool (htab_t symbol_hash_table, struct obstack *cpool,
22926 struct symtab_index_entry *entry)
22930 slot = htab_find_slot (symbol_hash_table, entry, INSERT);
22933 offset_type len = VEC_length (offset_type, entry->cu_indices);
22934 offset_type val = MAYBE_SWAP (len);
22939 entry->index_offset = obstack_object_size (cpool);
22941 obstack_grow (cpool, &val, sizeof (val));
22943 VEC_iterate (offset_type, entry->cu_indices, i, iter);
22946 val = MAYBE_SWAP (iter);
22947 obstack_grow (cpool, &val, sizeof (val));
22952 struct symtab_index_entry *old_entry
22953 = (struct symtab_index_entry *) *slot;
22954 entry->index_offset = old_entry->index_offset;
22957 return entry->index_offset;
22960 /* Write the mapped hash table SYMTAB to the obstack OUTPUT, with
22961 constant pool entries going into the obstack CPOOL. */
22964 write_hash_table (struct mapped_symtab *symtab,
22965 struct obstack *output, struct obstack *cpool)
22968 htab_t symbol_hash_table;
22971 symbol_hash_table = create_symbol_hash_table ();
22972 str_table = create_strtab ();
22974 /* We add all the index vectors to the constant pool first, to
22975 ensure alignment is ok. */
22976 for (i = 0; i < symtab->size; ++i)
22978 if (symtab->data[i])
22979 add_indices_to_cpool (symbol_hash_table, cpool, symtab->data[i]);
22982 /* Now write out the hash table. */
22983 for (i = 0; i < symtab->size; ++i)
22985 offset_type str_off, vec_off;
22987 if (symtab->data[i])
22989 str_off = add_string (str_table, cpool, symtab->data[i]->name);
22990 vec_off = symtab->data[i]->index_offset;
22994 /* While 0 is a valid constant pool index, it is not valid
22995 to have 0 for both offsets. */
23000 str_off = MAYBE_SWAP (str_off);
23001 vec_off = MAYBE_SWAP (vec_off);
23003 obstack_grow (output, &str_off, sizeof (str_off));
23004 obstack_grow (output, &vec_off, sizeof (vec_off));
23007 htab_delete (str_table);
23008 htab_delete (symbol_hash_table);
23011 /* Struct to map psymtab to CU index in the index file. */
23012 struct psymtab_cu_index_map
23014 struct partial_symtab *psymtab;
23015 unsigned int cu_index;
23019 hash_psymtab_cu_index (const void *item)
23021 const struct psymtab_cu_index_map *map
23022 = (const struct psymtab_cu_index_map *) item;
23024 return htab_hash_pointer (map->psymtab);
23028 eq_psymtab_cu_index (const void *item_lhs, const void *item_rhs)
23030 const struct psymtab_cu_index_map *lhs
23031 = (const struct psymtab_cu_index_map *) item_lhs;
23032 const struct psymtab_cu_index_map *rhs
23033 = (const struct psymtab_cu_index_map *) item_rhs;
23035 return lhs->psymtab == rhs->psymtab;
23038 /* Helper struct for building the address table. */
23039 struct addrmap_index_data
23041 struct objfile *objfile;
23042 struct obstack *addr_obstack;
23043 htab_t cu_index_htab;
23045 /* Non-zero if the previous_* fields are valid.
23046 We can't write an entry until we see the next entry (since it is only then
23047 that we know the end of the entry). */
23048 int previous_valid;
23049 /* Index of the CU in the table of all CUs in the index file. */
23050 unsigned int previous_cu_index;
23051 /* Start address of the CU. */
23052 CORE_ADDR previous_cu_start;
23055 /* Write an address entry to OBSTACK. */
23058 add_address_entry (struct objfile *objfile, struct obstack *obstack,
23059 CORE_ADDR start, CORE_ADDR end, unsigned int cu_index)
23061 offset_type cu_index_to_write;
23063 CORE_ADDR baseaddr;
23065 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
23067 store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, start - baseaddr);
23068 obstack_grow (obstack, addr, 8);
23069 store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, end - baseaddr);
23070 obstack_grow (obstack, addr, 8);
23071 cu_index_to_write = MAYBE_SWAP (cu_index);
23072 obstack_grow (obstack, &cu_index_to_write, sizeof (offset_type));
23075 /* Worker function for traversing an addrmap to build the address table. */
23078 add_address_entry_worker (void *datap, CORE_ADDR start_addr, void *obj)
23080 struct addrmap_index_data *data = (struct addrmap_index_data *) datap;
23081 struct partial_symtab *pst = (struct partial_symtab *) obj;
23083 if (data->previous_valid)
23084 add_address_entry (data->objfile, data->addr_obstack,
23085 data->previous_cu_start, start_addr,
23086 data->previous_cu_index);
23088 data->previous_cu_start = start_addr;
23091 struct psymtab_cu_index_map find_map, *map;
23092 find_map.psymtab = pst;
23093 map = ((struct psymtab_cu_index_map *)
23094 htab_find (data->cu_index_htab, &find_map));
23095 gdb_assert (map != NULL);
23096 data->previous_cu_index = map->cu_index;
23097 data->previous_valid = 1;
23100 data->previous_valid = 0;
23105 /* Write OBJFILE's address map to OBSTACK.
23106 CU_INDEX_HTAB is used to map addrmap entries to their CU indices
23107 in the index file. */
23110 write_address_map (struct objfile *objfile, struct obstack *obstack,
23111 htab_t cu_index_htab)
23113 struct addrmap_index_data addrmap_index_data;
23115 /* When writing the address table, we have to cope with the fact that
23116 the addrmap iterator only provides the start of a region; we have to
23117 wait until the next invocation to get the start of the next region. */
23119 addrmap_index_data.objfile = objfile;
23120 addrmap_index_data.addr_obstack = obstack;
23121 addrmap_index_data.cu_index_htab = cu_index_htab;
23122 addrmap_index_data.previous_valid = 0;
23124 addrmap_foreach (objfile->psymtabs_addrmap, add_address_entry_worker,
23125 &addrmap_index_data);
23127 /* It's highly unlikely the last entry (end address = 0xff...ff)
23128 is valid, but we should still handle it.
23129 The end address is recorded as the start of the next region, but that
23130 doesn't work here. To cope we pass 0xff...ff, this is a rare situation
23132 if (addrmap_index_data.previous_valid)
23133 add_address_entry (objfile, obstack,
23134 addrmap_index_data.previous_cu_start, (CORE_ADDR) -1,
23135 addrmap_index_data.previous_cu_index);
23138 /* Return the symbol kind of PSYM. */
23140 static gdb_index_symbol_kind
23141 symbol_kind (struct partial_symbol *psym)
23143 domain_enum domain = PSYMBOL_DOMAIN (psym);
23144 enum address_class aclass = PSYMBOL_CLASS (psym);
23152 return GDB_INDEX_SYMBOL_KIND_FUNCTION;
23154 return GDB_INDEX_SYMBOL_KIND_TYPE;
23156 case LOC_CONST_BYTES:
23157 case LOC_OPTIMIZED_OUT:
23159 return GDB_INDEX_SYMBOL_KIND_VARIABLE;
23161 /* Note: It's currently impossible to recognize psyms as enum values
23162 short of reading the type info. For now punt. */
23163 return GDB_INDEX_SYMBOL_KIND_VARIABLE;
23165 /* There are other LOC_FOO values that one might want to classify
23166 as variables, but dwarf2read.c doesn't currently use them. */
23167 return GDB_INDEX_SYMBOL_KIND_OTHER;
23169 case STRUCT_DOMAIN:
23170 return GDB_INDEX_SYMBOL_KIND_TYPE;
23172 return GDB_INDEX_SYMBOL_KIND_OTHER;
23176 /* Add a list of partial symbols to SYMTAB. */
23179 write_psymbols (struct mapped_symtab *symtab,
23181 struct partial_symbol **psymp,
23183 offset_type cu_index,
23186 for (; count-- > 0; ++psymp)
23188 struct partial_symbol *psym = *psymp;
23191 if (SYMBOL_LANGUAGE (psym) == language_ada)
23192 error (_("Ada is not currently supported by the index"));
23194 /* Only add a given psymbol once. */
23195 slot = htab_find_slot (psyms_seen, psym, INSERT);
23198 gdb_index_symbol_kind kind = symbol_kind (psym);
23201 add_index_entry (symtab, SYMBOL_SEARCH_NAME (psym),
23202 is_static, kind, cu_index);
23207 /* Write the contents of an ("unfinished") obstack to FILE. Throw an
23208 exception if there is an error. */
23211 write_obstack (FILE *file, struct obstack *obstack)
23213 if (fwrite (obstack_base (obstack), 1, obstack_object_size (obstack),
23215 != obstack_object_size (obstack))
23216 error (_("couldn't data write to file"));
23219 /* Unlink a file if the argument is not NULL. */
23222 unlink_if_set (void *p)
23224 char **filename = (char **) p;
23226 unlink (*filename);
23229 /* A helper struct used when iterating over debug_types. */
23230 struct signatured_type_index_data
23232 struct objfile *objfile;
23233 struct mapped_symtab *symtab;
23234 struct obstack *types_list;
23239 /* A helper function that writes a single signatured_type to an
23243 write_one_signatured_type (void **slot, void *d)
23245 struct signatured_type_index_data *info
23246 = (struct signatured_type_index_data *) d;
23247 struct signatured_type *entry = (struct signatured_type *) *slot;
23248 struct partial_symtab *psymtab = entry->per_cu.v.psymtab;
23251 write_psymbols (info->symtab,
23253 info->objfile->global_psymbols.list
23254 + psymtab->globals_offset,
23255 psymtab->n_global_syms, info->cu_index,
23257 write_psymbols (info->symtab,
23259 info->objfile->static_psymbols.list
23260 + psymtab->statics_offset,
23261 psymtab->n_static_syms, info->cu_index,
23264 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
23265 entry->per_cu.offset.sect_off);
23266 obstack_grow (info->types_list, val, 8);
23267 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
23268 entry->type_offset_in_tu.cu_off);
23269 obstack_grow (info->types_list, val, 8);
23270 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->signature);
23271 obstack_grow (info->types_list, val, 8);
23278 /* Recurse into all "included" dependencies and write their symbols as
23279 if they appeared in this psymtab. */
23282 recursively_write_psymbols (struct objfile *objfile,
23283 struct partial_symtab *psymtab,
23284 struct mapped_symtab *symtab,
23286 offset_type cu_index)
23290 for (i = 0; i < psymtab->number_of_dependencies; ++i)
23291 if (psymtab->dependencies[i]->user != NULL)
23292 recursively_write_psymbols (objfile, psymtab->dependencies[i],
23293 symtab, psyms_seen, cu_index);
23295 write_psymbols (symtab,
23297 objfile->global_psymbols.list + psymtab->globals_offset,
23298 psymtab->n_global_syms, cu_index,
23300 write_psymbols (symtab,
23302 objfile->static_psymbols.list + psymtab->statics_offset,
23303 psymtab->n_static_syms, cu_index,
23307 /* Create an index file for OBJFILE in the directory DIR. */
23310 write_psymtabs_to_index (struct objfile *objfile, const char *dir)
23312 struct cleanup *cleanup;
23313 char *filename, *cleanup_filename;
23314 struct obstack contents, addr_obstack, constant_pool, symtab_obstack;
23315 struct obstack cu_list, types_cu_list;
23318 struct mapped_symtab *symtab;
23319 offset_type val, size_of_contents, total_len;
23322 htab_t cu_index_htab;
23323 struct psymtab_cu_index_map *psymtab_cu_index_map;
23325 if (dwarf2_per_objfile->using_index)
23326 error (_("Cannot use an index to create the index"));
23328 if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) > 1)
23329 error (_("Cannot make an index when the file has multiple .debug_types sections"));
23331 if (!objfile->psymtabs || !objfile->psymtabs_addrmap)
23334 if (stat (objfile_name (objfile), &st) < 0)
23335 perror_with_name (objfile_name (objfile));
23337 filename = concat (dir, SLASH_STRING, lbasename (objfile_name (objfile)),
23338 INDEX_SUFFIX, (char *) NULL);
23339 cleanup = make_cleanup (xfree, filename);
23341 out_file = gdb_fopen_cloexec (filename, "wb");
23343 error (_("Can't open `%s' for writing"), filename);
23345 cleanup_filename = filename;
23346 make_cleanup (unlink_if_set, &cleanup_filename);
23348 symtab = create_mapped_symtab ();
23349 make_cleanup (cleanup_mapped_symtab, symtab);
23351 obstack_init (&addr_obstack);
23352 make_cleanup_obstack_free (&addr_obstack);
23354 obstack_init (&cu_list);
23355 make_cleanup_obstack_free (&cu_list);
23357 obstack_init (&types_cu_list);
23358 make_cleanup_obstack_free (&types_cu_list);
23360 psyms_seen = htab_create_alloc (100, htab_hash_pointer, htab_eq_pointer,
23361 NULL, xcalloc, xfree);
23362 make_cleanup_htab_delete (psyms_seen);
23364 /* While we're scanning CU's create a table that maps a psymtab pointer
23365 (which is what addrmap records) to its index (which is what is recorded
23366 in the index file). This will later be needed to write the address
23368 cu_index_htab = htab_create_alloc (100,
23369 hash_psymtab_cu_index,
23370 eq_psymtab_cu_index,
23371 NULL, xcalloc, xfree);
23372 make_cleanup_htab_delete (cu_index_htab);
23373 psymtab_cu_index_map = XNEWVEC (struct psymtab_cu_index_map,
23374 dwarf2_per_objfile->n_comp_units);
23375 make_cleanup (xfree, psymtab_cu_index_map);
23377 /* The CU list is already sorted, so we don't need to do additional
23378 work here. Also, the debug_types entries do not appear in
23379 all_comp_units, but only in their own hash table. */
23380 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
23382 struct dwarf2_per_cu_data *per_cu
23383 = dwarf2_per_objfile->all_comp_units[i];
23384 struct partial_symtab *psymtab = per_cu->v.psymtab;
23386 struct psymtab_cu_index_map *map;
23389 /* CU of a shared file from 'dwz -m' may be unused by this main file.
23390 It may be referenced from a local scope but in such case it does not
23391 need to be present in .gdb_index. */
23392 if (psymtab == NULL)
23395 if (psymtab->user == NULL)
23396 recursively_write_psymbols (objfile, psymtab, symtab, psyms_seen, i);
23398 map = &psymtab_cu_index_map[i];
23399 map->psymtab = psymtab;
23401 slot = htab_find_slot (cu_index_htab, map, INSERT);
23402 gdb_assert (slot != NULL);
23403 gdb_assert (*slot == NULL);
23406 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
23407 per_cu->offset.sect_off);
23408 obstack_grow (&cu_list, val, 8);
23409 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->length);
23410 obstack_grow (&cu_list, val, 8);
23413 /* Dump the address map. */
23414 write_address_map (objfile, &addr_obstack, cu_index_htab);
23416 /* Write out the .debug_type entries, if any. */
23417 if (dwarf2_per_objfile->signatured_types)
23419 struct signatured_type_index_data sig_data;
23421 sig_data.objfile = objfile;
23422 sig_data.symtab = symtab;
23423 sig_data.types_list = &types_cu_list;
23424 sig_data.psyms_seen = psyms_seen;
23425 sig_data.cu_index = dwarf2_per_objfile->n_comp_units;
23426 htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
23427 write_one_signatured_type, &sig_data);
23430 /* Now that we've processed all symbols we can shrink their cu_indices
23432 uniquify_cu_indices (symtab);
23434 obstack_init (&constant_pool);
23435 make_cleanup_obstack_free (&constant_pool);
23436 obstack_init (&symtab_obstack);
23437 make_cleanup_obstack_free (&symtab_obstack);
23438 write_hash_table (symtab, &symtab_obstack, &constant_pool);
23440 obstack_init (&contents);
23441 make_cleanup_obstack_free (&contents);
23442 size_of_contents = 6 * sizeof (offset_type);
23443 total_len = size_of_contents;
23445 /* The version number. */
23446 val = MAYBE_SWAP (8);
23447 obstack_grow (&contents, &val, sizeof (val));
23449 /* The offset of the CU list from the start of the file. */
23450 val = MAYBE_SWAP (total_len);
23451 obstack_grow (&contents, &val, sizeof (val));
23452 total_len += obstack_object_size (&cu_list);
23454 /* The offset of the types CU list from the start of the file. */
23455 val = MAYBE_SWAP (total_len);
23456 obstack_grow (&contents, &val, sizeof (val));
23457 total_len += obstack_object_size (&types_cu_list);
23459 /* The offset of the address table from the start of the file. */
23460 val = MAYBE_SWAP (total_len);
23461 obstack_grow (&contents, &val, sizeof (val));
23462 total_len += obstack_object_size (&addr_obstack);
23464 /* The offset of the symbol table from the start of the file. */
23465 val = MAYBE_SWAP (total_len);
23466 obstack_grow (&contents, &val, sizeof (val));
23467 total_len += obstack_object_size (&symtab_obstack);
23469 /* The offset of the constant pool from the start of the file. */
23470 val = MAYBE_SWAP (total_len);
23471 obstack_grow (&contents, &val, sizeof (val));
23472 total_len += obstack_object_size (&constant_pool);
23474 gdb_assert (obstack_object_size (&contents) == size_of_contents);
23476 write_obstack (out_file, &contents);
23477 write_obstack (out_file, &cu_list);
23478 write_obstack (out_file, &types_cu_list);
23479 write_obstack (out_file, &addr_obstack);
23480 write_obstack (out_file, &symtab_obstack);
23481 write_obstack (out_file, &constant_pool);
23485 /* We want to keep the file, so we set cleanup_filename to NULL
23486 here. See unlink_if_set. */
23487 cleanup_filename = NULL;
23489 do_cleanups (cleanup);
23492 /* Implementation of the `save gdb-index' command.
23494 Note that the file format used by this command is documented in the
23495 GDB manual. Any changes here must be documented there. */
23498 save_gdb_index_command (char *arg, int from_tty)
23500 struct objfile *objfile;
23503 error (_("usage: save gdb-index DIRECTORY"));
23505 ALL_OBJFILES (objfile)
23509 /* If the objfile does not correspond to an actual file, skip it. */
23510 if (stat (objfile_name (objfile), &st) < 0)
23514 = (struct dwarf2_per_objfile *) objfile_data (objfile,
23515 dwarf2_objfile_data_key);
23516 if (dwarf2_per_objfile)
23521 write_psymtabs_to_index (objfile, arg);
23523 CATCH (except, RETURN_MASK_ERROR)
23525 exception_fprintf (gdb_stderr, except,
23526 _("Error while writing index for `%s': "),
23527 objfile_name (objfile));
23536 int dwarf_always_disassemble;
23539 show_dwarf_always_disassemble (struct ui_file *file, int from_tty,
23540 struct cmd_list_element *c, const char *value)
23542 fprintf_filtered (file,
23543 _("Whether to always disassemble "
23544 "DWARF expressions is %s.\n"),
23549 show_check_physname (struct ui_file *file, int from_tty,
23550 struct cmd_list_element *c, const char *value)
23552 fprintf_filtered (file,
23553 _("Whether to check \"physname\" is %s.\n"),
23557 void _initialize_dwarf2_read (void);
23560 _initialize_dwarf2_read (void)
23562 struct cmd_list_element *c;
23564 dwarf2_objfile_data_key
23565 = register_objfile_data_with_cleanup (NULL, dwarf2_per_objfile_free);
23567 add_prefix_cmd ("dwarf", class_maintenance, set_dwarf_cmd, _("\
23568 Set DWARF specific variables.\n\
23569 Configure DWARF variables such as the cache size"),
23570 &set_dwarf_cmdlist, "maintenance set dwarf ",
23571 0/*allow-unknown*/, &maintenance_set_cmdlist);
23573 add_prefix_cmd ("dwarf", class_maintenance, show_dwarf_cmd, _("\
23574 Show DWARF specific variables\n\
23575 Show DWARF variables such as the cache size"),
23576 &show_dwarf_cmdlist, "maintenance show dwarf ",
23577 0/*allow-unknown*/, &maintenance_show_cmdlist);
23579 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
23580 &dwarf_max_cache_age, _("\
23581 Set the upper bound on the age of cached DWARF compilation units."), _("\
23582 Show the upper bound on the age of cached DWARF compilation units."), _("\
23583 A higher limit means that cached compilation units will be stored\n\
23584 in memory longer, and more total memory will be used. Zero disables\n\
23585 caching, which can slow down startup."),
23587 show_dwarf_max_cache_age,
23588 &set_dwarf_cmdlist,
23589 &show_dwarf_cmdlist);
23591 add_setshow_boolean_cmd ("always-disassemble", class_obscure,
23592 &dwarf_always_disassemble, _("\
23593 Set whether `info address' always disassembles DWARF expressions."), _("\
23594 Show whether `info address' always disassembles DWARF expressions."), _("\
23595 When enabled, DWARF expressions are always printed in an assembly-like\n\
23596 syntax. When disabled, expressions will be printed in a more\n\
23597 conversational style, when possible."),
23599 show_dwarf_always_disassemble,
23600 &set_dwarf_cmdlist,
23601 &show_dwarf_cmdlist);
23603 add_setshow_zuinteger_cmd ("dwarf-read", no_class, &dwarf_read_debug, _("\
23604 Set debugging of the DWARF reader."), _("\
23605 Show debugging of the DWARF reader."), _("\
23606 When enabled (non-zero), debugging messages are printed during DWARF\n\
23607 reading and symtab expansion. A value of 1 (one) provides basic\n\
23608 information. A value greater than 1 provides more verbose information."),
23611 &setdebuglist, &showdebuglist);
23613 add_setshow_zuinteger_cmd ("dwarf-die", no_class, &dwarf_die_debug, _("\
23614 Set debugging of the DWARF DIE reader."), _("\
23615 Show debugging of the DWARF DIE reader."), _("\
23616 When enabled (non-zero), DIEs are dumped after they are read in.\n\
23617 The value is the maximum depth to print."),
23620 &setdebuglist, &showdebuglist);
23622 add_setshow_zuinteger_cmd ("dwarf-line", no_class, &dwarf_line_debug, _("\
23623 Set debugging of the dwarf line reader."), _("\
23624 Show debugging of the dwarf line reader."), _("\
23625 When enabled (non-zero), line number entries are dumped as they are read in.\n\
23626 A value of 1 (one) provides basic information.\n\
23627 A value greater than 1 provides more verbose information."),
23630 &setdebuglist, &showdebuglist);
23632 add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
23633 Set cross-checking of \"physname\" code against demangler."), _("\
23634 Show cross-checking of \"physname\" code against demangler."), _("\
23635 When enabled, GDB's internal \"physname\" code is checked against\n\
23637 NULL, show_check_physname,
23638 &setdebuglist, &showdebuglist);
23640 add_setshow_boolean_cmd ("use-deprecated-index-sections",
23641 no_class, &use_deprecated_index_sections, _("\
23642 Set whether to use deprecated gdb_index sections."), _("\
23643 Show whether to use deprecated gdb_index sections."), _("\
23644 When enabled, deprecated .gdb_index sections are used anyway.\n\
23645 Normally they are ignored either because of a missing feature or\n\
23646 performance issue.\n\
23647 Warning: This option must be enabled before gdb reads the file."),
23650 &setlist, &showlist);
23652 c = add_cmd ("gdb-index", class_files, save_gdb_index_command,
23654 Save a gdb-index file.\n\
23655 Usage: save gdb-index DIRECTORY"),
23657 set_cmd_completer (c, filename_completer);
23659 dwarf2_locexpr_index = register_symbol_computed_impl (LOC_COMPUTED,
23660 &dwarf2_locexpr_funcs);
23661 dwarf2_loclist_index = register_symbol_computed_impl (LOC_COMPUTED,
23662 &dwarf2_loclist_funcs);
23664 dwarf2_locexpr_block_index = register_symbol_block_impl (LOC_BLOCK,
23665 &dwarf2_block_frame_base_locexpr_funcs);
23666 dwarf2_loclist_block_index = register_symbol_block_impl (LOC_BLOCK,
23667 &dwarf2_block_frame_base_loclist_funcs);