1 /* DWARF 2 debugging format support for GDB.
3 Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 2004, 2005, 2006, 2007, 2008, 2009
5 Free Software Foundation, Inc.
7 Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
8 Inc. with support from Florida State University (under contract
9 with the Ada Joint Program Office), and Silicon Graphics, Inc.
10 Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
11 based on Fred Fish's (Cygnus Support) implementation of DWARF 1
14 This file is part of GDB.
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 3 of the License, or
19 (at your option) any later version.
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program. If not, see <http://www.gnu.org/licenses/>. */
37 #include "expression.h"
38 #include "filenames.h" /* for DOSish file names */
41 #include "complaints.h"
43 #include "dwarf2expr.h"
44 #include "dwarf2loc.h"
45 #include "cp-support.h"
53 #include "gdb_string.h"
54 #include "gdb_assert.h"
55 #include <sys/types.h>
64 /* .debug_info header for a compilation unit
65 Because of alignment constraints, this structure has padding and cannot
66 be mapped directly onto the beginning of the .debug_info section. */
67 typedef struct comp_unit_header
69 unsigned int length; /* length of the .debug_info
71 unsigned short version; /* version number -- 2 for DWARF
73 unsigned int abbrev_offset; /* offset into .debug_abbrev section */
74 unsigned char addr_size; /* byte size of an address -- 4 */
77 #define _ACTUAL_COMP_UNIT_HEADER_SIZE 11
80 /* .debug_pubnames header
81 Because of alignment constraints, this structure has padding and cannot
82 be mapped directly onto the beginning of the .debug_info section. */
83 typedef struct pubnames_header
85 unsigned int length; /* length of the .debug_pubnames
87 unsigned char version; /* version number -- 2 for DWARF
89 unsigned int info_offset; /* offset into .debug_info section */
90 unsigned int info_size; /* byte size of .debug_info section
94 #define _ACTUAL_PUBNAMES_HEADER_SIZE 13
96 /* .debug_pubnames header
97 Because of alignment constraints, this structure has padding and cannot
98 be mapped directly onto the beginning of the .debug_info section. */
99 typedef struct aranges_header
101 unsigned int length; /* byte len of the .debug_aranges
103 unsigned short version; /* version number -- 2 for DWARF
105 unsigned int info_offset; /* offset into .debug_info section */
106 unsigned char addr_size; /* byte size of an address */
107 unsigned char seg_size; /* byte size of segment descriptor */
110 #define _ACTUAL_ARANGES_HEADER_SIZE 12
112 /* .debug_line statement program prologue
113 Because of alignment constraints, this structure has padding and cannot
114 be mapped directly onto the beginning of the .debug_info section. */
115 typedef struct statement_prologue
117 unsigned int total_length; /* byte length of the statement
119 unsigned short version; /* version number -- 2 for DWARF
121 unsigned int prologue_length; /* # bytes between prologue &
123 unsigned char minimum_instruction_length; /* byte size of
125 unsigned char default_is_stmt; /* initial value of is_stmt
128 unsigned char line_range;
129 unsigned char opcode_base; /* number assigned to first special
131 unsigned char *standard_opcode_lengths;
135 /* When non-zero, dump DIEs after they are read in. */
136 static int dwarf2_die_debug = 0;
140 /* When set, the file that we're processing is known to have debugging
141 info for C++ namespaces. GCC 3.3.x did not produce this information,
142 but later versions do. */
144 static int processing_has_namespace_info;
146 static const struct objfile_data *dwarf2_objfile_data_key;
148 struct dwarf2_section_info
156 struct dwarf2_per_objfile
158 struct dwarf2_section_info info;
159 struct dwarf2_section_info abbrev;
160 struct dwarf2_section_info line;
161 struct dwarf2_section_info pubnames;
162 struct dwarf2_section_info aranges;
163 struct dwarf2_section_info loc;
164 struct dwarf2_section_info macinfo;
165 struct dwarf2_section_info str;
166 struct dwarf2_section_info ranges;
167 struct dwarf2_section_info types;
168 struct dwarf2_section_info frame;
169 struct dwarf2_section_info eh_frame;
171 /* A list of all the compilation units. This is used to locate
172 the target compilation unit of a particular reference. */
173 struct dwarf2_per_cu_data **all_comp_units;
175 /* The number of compilation units in ALL_COMP_UNITS. */
178 /* A chain of compilation units that are currently read in, so that
179 they can be freed later. */
180 struct dwarf2_per_cu_data *read_in_chain;
182 /* A table mapping .debug_types signatures to its signatured_type entry.
183 This is NULL if the .debug_types section hasn't been read in yet. */
184 htab_t signatured_types;
186 /* A flag indicating wether this objfile has a section loaded at a
188 int has_section_at_zero;
191 static struct dwarf2_per_objfile *dwarf2_per_objfile;
193 /* names of the debugging sections */
195 /* Note that if the debugging section has been compressed, it might
196 have a name like .zdebug_info. */
198 #define INFO_SECTION "debug_info"
199 #define ABBREV_SECTION "debug_abbrev"
200 #define LINE_SECTION "debug_line"
201 #define PUBNAMES_SECTION "debug_pubnames"
202 #define ARANGES_SECTION "debug_aranges"
203 #define LOC_SECTION "debug_loc"
204 #define MACINFO_SECTION "debug_macinfo"
205 #define STR_SECTION "debug_str"
206 #define RANGES_SECTION "debug_ranges"
207 #define TYPES_SECTION "debug_types"
208 #define FRAME_SECTION "debug_frame"
209 #define EH_FRAME_SECTION "eh_frame"
211 /* local data types */
213 /* We hold several abbreviation tables in memory at the same time. */
214 #ifndef ABBREV_HASH_SIZE
215 #define ABBREV_HASH_SIZE 121
218 /* The data in a compilation unit header, after target2host
219 translation, looks like this. */
220 struct comp_unit_head
224 unsigned char addr_size;
225 unsigned char signed_addr_p;
226 unsigned int abbrev_offset;
228 /* Size of file offsets; either 4 or 8. */
229 unsigned int offset_size;
231 /* Size of the length field; either 4 or 12. */
232 unsigned int initial_length_size;
234 /* Offset to the first byte of this compilation unit header in the
235 .debug_info section, for resolving relative reference dies. */
238 /* Offset to first die in this cu from the start of the cu.
239 This will be the first byte following the compilation unit header. */
240 unsigned int first_die_offset;
243 /* Internal state when decoding a particular compilation unit. */
246 /* The objfile containing this compilation unit. */
247 struct objfile *objfile;
249 /* The header of the compilation unit. */
250 struct comp_unit_head header;
252 /* Base address of this compilation unit. */
253 CORE_ADDR base_address;
255 /* Non-zero if base_address has been set. */
258 struct function_range *first_fn, *last_fn, *cached_fn;
260 /* The language we are debugging. */
261 enum language language;
262 const struct language_defn *language_defn;
264 const char *producer;
266 /* The generic symbol table building routines have separate lists for
267 file scope symbols and all all other scopes (local scopes). So
268 we need to select the right one to pass to add_symbol_to_list().
269 We do it by keeping a pointer to the correct list in list_in_scope.
271 FIXME: The original dwarf code just treated the file scope as the
272 first local scope, and all other local scopes as nested local
273 scopes, and worked fine. Check to see if we really need to
274 distinguish these in buildsym.c. */
275 struct pending **list_in_scope;
277 /* DWARF abbreviation table associated with this compilation unit. */
278 struct abbrev_info **dwarf2_abbrevs;
280 /* Storage for the abbrev table. */
281 struct obstack abbrev_obstack;
283 /* Hash table holding all the loaded partial DIEs. */
286 /* Storage for things with the same lifetime as this read-in compilation
287 unit, including partial DIEs. */
288 struct obstack comp_unit_obstack;
290 /* When multiple dwarf2_cu structures are living in memory, this field
291 chains them all together, so that they can be released efficiently.
292 We will probably also want a generation counter so that most-recently-used
293 compilation units are cached... */
294 struct dwarf2_per_cu_data *read_in_chain;
296 /* Backchain to our per_cu entry if the tree has been built. */
297 struct dwarf2_per_cu_data *per_cu;
299 /* Pointer to the die -> type map. Although it is stored
300 permanently in per_cu, we copy it here to avoid double
304 /* How many compilation units ago was this CU last referenced? */
307 /* A hash table of die offsets for following references. */
310 /* Full DIEs if read in. */
311 struct die_info *dies;
313 /* A set of pointers to dwarf2_per_cu_data objects for compilation
314 units referenced by this one. Only set during full symbol processing;
315 partial symbol tables do not have dependencies. */
318 /* Header data from the line table, during full symbol processing. */
319 struct line_header *line_header;
321 /* Mark used when releasing cached dies. */
322 unsigned int mark : 1;
324 /* This flag will be set if this compilation unit might include
325 inter-compilation-unit references. */
326 unsigned int has_form_ref_addr : 1;
328 /* This flag will be set if this compilation unit includes any
329 DW_TAG_namespace DIEs. If we know that there are explicit
330 DIEs for namespaces, we don't need to try to infer them
331 from mangled names. */
332 unsigned int has_namespace_info : 1;
335 /* Persistent data held for a compilation unit, even when not
336 processing it. We put a pointer to this structure in the
337 read_symtab_private field of the psymtab. If we encounter
338 inter-compilation-unit references, we also maintain a sorted
339 list of all compilation units. */
341 struct dwarf2_per_cu_data
343 /* The start offset and length of this compilation unit. 2**29-1
344 bytes should suffice to store the length of any compilation unit
345 - if it doesn't, GDB will fall over anyway.
346 NOTE: Unlike comp_unit_head.length, this length includes
347 initial_length_size. */
349 unsigned int length : 29;
351 /* Flag indicating this compilation unit will be read in before
352 any of the current compilation units are processed. */
353 unsigned int queued : 1;
355 /* This flag will be set if we need to load absolutely all DIEs
356 for this compilation unit, instead of just the ones we think
357 are interesting. It gets set if we look for a DIE in the
358 hash table and don't find it. */
359 unsigned int load_all_dies : 1;
361 /* Non-zero if this CU is from .debug_types.
362 Otherwise it's from .debug_info. */
363 unsigned int from_debug_types : 1;
365 /* Set iff currently read in. */
366 struct dwarf2_cu *cu;
368 /* If full symbols for this CU have been read in, then this field
369 holds a map of DIE offsets to types. It isn't always possible
370 to reconstruct this information later, so we have to preserve
374 /* The partial symbol table associated with this compilation unit,
375 or NULL for partial units (which do not have an associated
377 struct partial_symtab *psymtab;
380 /* Entry in the signatured_types hash table. */
382 struct signatured_type
386 /* Offset in .debug_types of the TU (type_unit) for this type. */
389 /* Offset in .debug_types of the type defined by this TU. */
390 unsigned int type_offset;
392 /* The CU(/TU) of this type. */
393 struct dwarf2_per_cu_data per_cu;
396 /* Struct used to pass misc. parameters to read_die_and_children, et. al.
397 which are used for both .debug_info and .debug_types dies.
398 All parameters here are unchanging for the life of the call.
399 This struct exists to abstract away the constant parameters of
402 struct die_reader_specs
404 /* The bfd of this objfile. */
407 /* The CU of the DIE we are parsing. */
408 struct dwarf2_cu *cu;
410 /* Pointer to start of section buffer.
411 This is either the start of .debug_info or .debug_types. */
412 const gdb_byte *buffer;
415 /* The line number information for a compilation unit (found in the
416 .debug_line section) begins with a "statement program header",
417 which contains the following information. */
420 unsigned int total_length;
421 unsigned short version;
422 unsigned int header_length;
423 unsigned char minimum_instruction_length;
424 unsigned char default_is_stmt;
426 unsigned char line_range;
427 unsigned char opcode_base;
429 /* standard_opcode_lengths[i] is the number of operands for the
430 standard opcode whose value is i. This means that
431 standard_opcode_lengths[0] is unused, and the last meaningful
432 element is standard_opcode_lengths[opcode_base - 1]. */
433 unsigned char *standard_opcode_lengths;
435 /* The include_directories table. NOTE! These strings are not
436 allocated with xmalloc; instead, they are pointers into
437 debug_line_buffer. If you try to free them, `free' will get
439 unsigned int num_include_dirs, include_dirs_size;
442 /* The file_names table. NOTE! These strings are not allocated
443 with xmalloc; instead, they are pointers into debug_line_buffer.
444 Don't try to free them directly. */
445 unsigned int num_file_names, file_names_size;
449 unsigned int dir_index;
450 unsigned int mod_time;
452 int included_p; /* Non-zero if referenced by the Line Number Program. */
453 struct symtab *symtab; /* The associated symbol table, if any. */
456 /* The start and end of the statement program following this
457 header. These point into dwarf2_per_objfile->line_buffer. */
458 gdb_byte *statement_program_start, *statement_program_end;
461 /* When we construct a partial symbol table entry we only
462 need this much information. */
463 struct partial_die_info
465 /* Offset of this DIE. */
468 /* DWARF-2 tag for this DIE. */
469 ENUM_BITFIELD(dwarf_tag) tag : 16;
471 /* Assorted flags describing the data found in this DIE. */
472 unsigned int has_children : 1;
473 unsigned int is_external : 1;
474 unsigned int is_declaration : 1;
475 unsigned int has_type : 1;
476 unsigned int has_specification : 1;
477 unsigned int has_pc_info : 1;
479 /* Flag set if the SCOPE field of this structure has been
481 unsigned int scope_set : 1;
483 /* Flag set if the DIE has a byte_size attribute. */
484 unsigned int has_byte_size : 1;
486 /* The name of this DIE. Normally the value of DW_AT_name, but
487 sometimes DW_TAG_MIPS_linkage_name or a string computed in some
491 /* The scope to prepend to our children. This is generally
492 allocated on the comp_unit_obstack, so will disappear
493 when this compilation unit leaves the cache. */
496 /* The location description associated with this DIE, if any. */
497 struct dwarf_block *locdesc;
499 /* If HAS_PC_INFO, the PC range associated with this DIE. */
503 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
504 DW_AT_sibling, if any. */
507 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
508 DW_AT_specification (or DW_AT_abstract_origin or
510 unsigned int spec_offset;
512 /* Pointers to this DIE's parent, first child, and next sibling,
514 struct partial_die_info *die_parent, *die_child, *die_sibling;
517 /* This data structure holds the information of an abbrev. */
520 unsigned int number; /* number identifying abbrev */
521 enum dwarf_tag tag; /* dwarf tag */
522 unsigned short has_children; /* boolean */
523 unsigned short num_attrs; /* number of attributes */
524 struct attr_abbrev *attrs; /* an array of attribute descriptions */
525 struct abbrev_info *next; /* next in chain */
530 ENUM_BITFIELD(dwarf_attribute) name : 16;
531 ENUM_BITFIELD(dwarf_form) form : 16;
534 /* Attributes have a name and a value */
537 ENUM_BITFIELD(dwarf_attribute) name : 16;
538 ENUM_BITFIELD(dwarf_form) form : 15;
540 /* Has DW_STRING already been updated by dwarf2_canonicalize_name? This
541 field should be in u.str (existing only for DW_STRING) but it is kept
542 here for better struct attribute alignment. */
543 unsigned int string_is_canonical : 1;
548 struct dwarf_block *blk;
552 struct signatured_type *signatured_type;
557 /* This data structure holds a complete die structure. */
560 /* DWARF-2 tag for this DIE. */
561 ENUM_BITFIELD(dwarf_tag) tag : 16;
563 /* Number of attributes */
564 unsigned short num_attrs;
569 /* Offset in .debug_info or .debug_types section. */
572 /* The dies in a compilation unit form an n-ary tree. PARENT
573 points to this die's parent; CHILD points to the first child of
574 this node; and all the children of a given node are chained
575 together via their SIBLING fields, terminated by a die whose
577 struct die_info *child; /* Its first child, if any. */
578 struct die_info *sibling; /* Its next sibling, if any. */
579 struct die_info *parent; /* Its parent, if any. */
581 /* An array of attributes, with NUM_ATTRS elements. There may be
582 zero, but it's not common and zero-sized arrays are not
583 sufficiently portable C. */
584 struct attribute attrs[1];
587 struct function_range
590 CORE_ADDR lowpc, highpc;
592 struct function_range *next;
595 /* Get at parts of an attribute structure */
597 #define DW_STRING(attr) ((attr)->u.str)
598 #define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
599 #define DW_UNSND(attr) ((attr)->u.unsnd)
600 #define DW_BLOCK(attr) ((attr)->u.blk)
601 #define DW_SND(attr) ((attr)->u.snd)
602 #define DW_ADDR(attr) ((attr)->u.addr)
603 #define DW_SIGNATURED_TYPE(attr) ((attr)->u.signatured_type)
605 /* Blocks are a bunch of untyped bytes. */
612 #ifndef ATTR_ALLOC_CHUNK
613 #define ATTR_ALLOC_CHUNK 4
616 /* Allocate fields for structs, unions and enums in this size. */
617 #ifndef DW_FIELD_ALLOC_CHUNK
618 #define DW_FIELD_ALLOC_CHUNK 4
621 /* A zeroed version of a partial die for initialization purposes. */
622 static struct partial_die_info zeroed_partial_die;
624 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
625 but this would require a corresponding change in unpack_field_as_long
627 static int bits_per_byte = 8;
629 /* The routines that read and process dies for a C struct or C++ class
630 pass lists of data member fields and lists of member function fields
631 in an instance of a field_info structure, as defined below. */
634 /* List of data member and baseclasses fields. */
637 struct nextfield *next;
642 *fields, *baseclasses;
644 /* Number of fields (including baseclasses). */
647 /* Number of baseclasses. */
650 /* Set if the accesibility of one of the fields is not public. */
651 int non_public_fields;
653 /* Member function fields array, entries are allocated in the order they
654 are encountered in the object file. */
657 struct nextfnfield *next;
658 struct fn_field fnfield;
662 /* Member function fieldlist array, contains name of possibly overloaded
663 member function, number of overloaded member functions and a pointer
664 to the head of the member function field chain. */
669 struct nextfnfield *head;
673 /* Number of entries in the fnfieldlists array. */
677 /* One item on the queue of compilation units to read in full symbols
679 struct dwarf2_queue_item
681 struct dwarf2_per_cu_data *per_cu;
682 struct dwarf2_queue_item *next;
685 /* The current queue. */
686 static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
688 /* Loaded secondary compilation units are kept in memory until they
689 have not been referenced for the processing of this many
690 compilation units. Set this to zero to disable caching. Cache
691 sizes of up to at least twenty will improve startup time for
692 typical inter-CU-reference binaries, at an obvious memory cost. */
693 static int dwarf2_max_cache_age = 5;
695 show_dwarf2_max_cache_age (struct ui_file *file, int from_tty,
696 struct cmd_list_element *c, const char *value)
698 fprintf_filtered (file, _("\
699 The upper bound on the age of cached dwarf2 compilation units is %s.\n"),
704 /* Various complaints about symbol reading that don't abort the process */
707 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
709 complaint (&symfile_complaints,
710 _("statement list doesn't fit in .debug_line section"));
714 dwarf2_debug_line_missing_file_complaint (void)
716 complaint (&symfile_complaints,
717 _(".debug_line section has line data without a file"));
721 dwarf2_debug_line_missing_end_sequence_complaint (void)
723 complaint (&symfile_complaints,
724 _(".debug_line section has line program sequence without an end"));
728 dwarf2_complex_location_expr_complaint (void)
730 complaint (&symfile_complaints, _("location expression too complex"));
734 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
737 complaint (&symfile_complaints,
738 _("const value length mismatch for '%s', got %d, expected %d"), arg1,
743 dwarf2_macros_too_long_complaint (void)
745 complaint (&symfile_complaints,
746 _("macro info runs off end of `.debug_macinfo' section"));
750 dwarf2_macro_malformed_definition_complaint (const char *arg1)
752 complaint (&symfile_complaints,
753 _("macro debug info contains a malformed macro definition:\n`%s'"),
758 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
760 complaint (&symfile_complaints,
761 _("invalid attribute class or form for '%s' in '%s'"), arg1, arg2);
764 /* local function prototypes */
766 static void dwarf2_locate_sections (bfd *, asection *, void *);
769 static void dwarf2_build_psymtabs_easy (struct objfile *, int);
772 static void dwarf2_create_include_psymtab (char *, struct partial_symtab *,
775 static void dwarf2_build_include_psymtabs (struct dwarf2_cu *,
777 struct partial_symtab *);
779 static void dwarf2_build_psymtabs_hard (struct objfile *, int);
781 static void scan_partial_symbols (struct partial_die_info *,
782 CORE_ADDR *, CORE_ADDR *,
783 int, struct dwarf2_cu *);
785 static void add_partial_symbol (struct partial_die_info *,
788 static int pdi_needs_namespace (enum dwarf_tag tag);
790 static void add_partial_namespace (struct partial_die_info *pdi,
791 CORE_ADDR *lowpc, CORE_ADDR *highpc,
792 int need_pc, struct dwarf2_cu *cu);
794 static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
795 CORE_ADDR *highpc, int need_pc,
796 struct dwarf2_cu *cu);
798 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
799 struct dwarf2_cu *cu);
801 static void add_partial_subprogram (struct partial_die_info *pdi,
802 CORE_ADDR *lowpc, CORE_ADDR *highpc,
803 int need_pc, struct dwarf2_cu *cu);
805 static gdb_byte *locate_pdi_sibling (struct partial_die_info *orig_pdi,
806 gdb_byte *buffer, gdb_byte *info_ptr,
807 bfd *abfd, struct dwarf2_cu *cu);
809 static void dwarf2_psymtab_to_symtab (struct partial_symtab *);
811 static void psymtab_to_symtab_1 (struct partial_symtab *);
813 static void dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu);
815 static void dwarf2_free_abbrev_table (void *);
817 static struct abbrev_info *peek_die_abbrev (gdb_byte *, unsigned int *,
820 static struct abbrev_info *dwarf2_lookup_abbrev (unsigned int,
823 static struct partial_die_info *load_partial_dies (bfd *,
824 gdb_byte *, gdb_byte *,
825 int, struct dwarf2_cu *);
827 static gdb_byte *read_partial_die (struct partial_die_info *,
828 struct abbrev_info *abbrev,
830 gdb_byte *, gdb_byte *,
833 static struct partial_die_info *find_partial_die (unsigned int,
836 static void fixup_partial_die (struct partial_die_info *,
839 static gdb_byte *read_attribute (struct attribute *, struct attr_abbrev *,
840 bfd *, gdb_byte *, struct dwarf2_cu *);
842 static gdb_byte *read_attribute_value (struct attribute *, unsigned,
843 bfd *, gdb_byte *, struct dwarf2_cu *);
845 static unsigned int read_1_byte (bfd *, gdb_byte *);
847 static int read_1_signed_byte (bfd *, gdb_byte *);
849 static unsigned int read_2_bytes (bfd *, gdb_byte *);
851 static unsigned int read_4_bytes (bfd *, gdb_byte *);
853 static ULONGEST read_8_bytes (bfd *, gdb_byte *);
855 static CORE_ADDR read_address (bfd *, gdb_byte *ptr, struct dwarf2_cu *,
858 static LONGEST read_initial_length (bfd *, gdb_byte *, unsigned int *);
860 static LONGEST read_checked_initial_length_and_offset
861 (bfd *, gdb_byte *, const struct comp_unit_head *,
862 unsigned int *, unsigned int *);
864 static LONGEST read_offset (bfd *, gdb_byte *, const struct comp_unit_head *,
867 static LONGEST read_offset_1 (bfd *, gdb_byte *, unsigned int);
869 static gdb_byte *read_n_bytes (bfd *, gdb_byte *, unsigned int);
871 static char *read_string (bfd *, gdb_byte *, unsigned int *);
873 static char *read_indirect_string (bfd *, gdb_byte *,
874 const struct comp_unit_head *,
877 static unsigned long read_unsigned_leb128 (bfd *, gdb_byte *, unsigned int *);
879 static long read_signed_leb128 (bfd *, gdb_byte *, unsigned int *);
881 static gdb_byte *skip_leb128 (bfd *, gdb_byte *);
883 static void set_cu_language (unsigned int, struct dwarf2_cu *);
885 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
888 static struct attribute *dwarf2_attr_no_follow (struct die_info *,
892 static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
893 struct dwarf2_cu *cu);
895 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
897 static struct die_info *die_specification (struct die_info *die,
898 struct dwarf2_cu **);
900 static void free_line_header (struct line_header *lh);
902 static void add_file_name (struct line_header *, char *, unsigned int,
903 unsigned int, unsigned int);
905 static struct line_header *(dwarf_decode_line_header
906 (unsigned int offset,
907 bfd *abfd, struct dwarf2_cu *cu));
909 static void dwarf_decode_lines (struct line_header *, char *, bfd *,
910 struct dwarf2_cu *, struct partial_symtab *);
912 static void dwarf2_start_subfile (char *, char *, char *);
914 static struct symbol *new_symbol (struct die_info *, struct type *,
917 static void dwarf2_const_value (struct attribute *, struct symbol *,
920 static void dwarf2_const_value_data (struct attribute *attr,
924 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
926 static struct type *die_containing_type (struct die_info *,
929 static struct type *tag_type_to_type (struct die_info *, struct dwarf2_cu *);
931 static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
933 static char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
935 static char *typename_concat (struct obstack *,
940 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
942 static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
944 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
946 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
948 static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
949 struct dwarf2_cu *, struct partial_symtab *);
951 static int dwarf2_get_pc_bounds (struct die_info *,
952 CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *,
953 struct partial_symtab *);
955 static void get_scope_pc_bounds (struct die_info *,
956 CORE_ADDR *, CORE_ADDR *,
959 static void dwarf2_record_block_ranges (struct die_info *, struct block *,
960 CORE_ADDR, struct dwarf2_cu *);
962 static void dwarf2_add_field (struct field_info *, struct die_info *,
965 static void dwarf2_attach_fields_to_type (struct field_info *,
966 struct type *, struct dwarf2_cu *);
968 static void dwarf2_add_member_fn (struct field_info *,
969 struct die_info *, struct type *,
972 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
973 struct type *, struct dwarf2_cu *);
975 static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
977 static const char *determine_class_name (struct die_info *die,
978 struct dwarf2_cu *cu);
980 static void read_common_block (struct die_info *, struct dwarf2_cu *);
982 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
984 static void read_module (struct die_info *die, struct dwarf2_cu *cu);
986 static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
988 static const char *namespace_name (struct die_info *die,
989 int *is_anonymous, struct dwarf2_cu *);
991 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
993 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
995 static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
998 static struct die_info *read_comp_unit (gdb_byte *, struct dwarf2_cu *);
1000 static struct die_info *read_die_and_children_1 (const struct die_reader_specs *reader,
1002 gdb_byte **new_info_ptr,
1003 struct die_info *parent);
1005 static struct die_info *read_die_and_children (const struct die_reader_specs *reader,
1007 gdb_byte **new_info_ptr,
1008 struct die_info *parent);
1010 static struct die_info *read_die_and_siblings (const struct die_reader_specs *reader,
1012 gdb_byte **new_info_ptr,
1013 struct die_info *parent);
1015 static gdb_byte *read_full_die (const struct die_reader_specs *reader,
1016 struct die_info **, gdb_byte *,
1019 static void process_die (struct die_info *, struct dwarf2_cu *);
1021 static char *dwarf2_linkage_name (struct die_info *, struct dwarf2_cu *);
1023 static char *dwarf2_canonicalize_name (char *, struct dwarf2_cu *,
1026 static char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
1028 static struct die_info *dwarf2_extension (struct die_info *die,
1029 struct dwarf2_cu **);
1031 static char *dwarf_tag_name (unsigned int);
1033 static char *dwarf_attr_name (unsigned int);
1035 static char *dwarf_form_name (unsigned int);
1037 static char *dwarf_stack_op_name (unsigned int);
1039 static char *dwarf_bool_name (unsigned int);
1041 static char *dwarf_type_encoding_name (unsigned int);
1044 static char *dwarf_cfi_name (unsigned int);
1047 static struct die_info *sibling_die (struct die_info *);
1049 static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1051 static void dump_die_for_error (struct die_info *);
1053 static void dump_die_1 (struct ui_file *, int level, int max_level,
1056 /*static*/ void dump_die (struct die_info *, int max_level);
1058 static void store_in_ref_table (struct die_info *,
1059 struct dwarf2_cu *);
1061 static int is_ref_attr (struct attribute *);
1063 static unsigned int dwarf2_get_ref_die_offset (struct attribute *);
1065 static int dwarf2_get_attr_constant_value (struct attribute *, int);
1067 static struct die_info *follow_die_ref_or_sig (struct die_info *,
1069 struct dwarf2_cu **);
1071 static struct die_info *follow_die_ref (struct die_info *,
1073 struct dwarf2_cu **);
1075 static struct die_info *follow_die_sig (struct die_info *,
1077 struct dwarf2_cu **);
1079 static void read_signatured_type_at_offset (struct objfile *objfile,
1080 unsigned int offset);
1082 static void read_signatured_type (struct objfile *,
1083 struct signatured_type *type_sig);
1085 /* memory allocation interface */
1087 static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
1089 static struct abbrev_info *dwarf_alloc_abbrev (struct dwarf2_cu *);
1091 static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
1093 static void initialize_cu_func_list (struct dwarf2_cu *);
1095 static void add_to_cu_func_list (const char *, CORE_ADDR, CORE_ADDR,
1096 struct dwarf2_cu *);
1098 static void dwarf_decode_macros (struct line_header *, unsigned int,
1099 char *, bfd *, struct dwarf2_cu *);
1101 static int attr_form_is_block (struct attribute *);
1103 static int attr_form_is_section_offset (struct attribute *);
1105 static int attr_form_is_constant (struct attribute *);
1107 static void dwarf2_symbol_mark_computed (struct attribute *attr,
1109 struct dwarf2_cu *cu);
1111 static gdb_byte *skip_one_die (gdb_byte *buffer, gdb_byte *info_ptr,
1112 struct abbrev_info *abbrev,
1113 struct dwarf2_cu *cu);
1115 static void free_stack_comp_unit (void *);
1117 static hashval_t partial_die_hash (const void *item);
1119 static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1121 static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1122 (unsigned int offset, struct objfile *objfile);
1124 static struct dwarf2_per_cu_data *dwarf2_find_comp_unit
1125 (unsigned int offset, struct objfile *objfile);
1127 static struct dwarf2_cu *alloc_one_comp_unit (struct objfile *objfile);
1129 static void free_one_comp_unit (void *);
1131 static void free_cached_comp_units (void *);
1133 static void age_cached_comp_units (void);
1135 static void free_one_cached_comp_unit (void *);
1137 static struct type *set_die_type (struct die_info *, struct type *,
1138 struct dwarf2_cu *);
1140 static void create_all_comp_units (struct objfile *);
1142 static void load_full_comp_unit (struct dwarf2_per_cu_data *,
1145 static void process_full_comp_unit (struct dwarf2_per_cu_data *);
1147 static void dwarf2_add_dependence (struct dwarf2_cu *,
1148 struct dwarf2_per_cu_data *);
1150 static void dwarf2_mark (struct dwarf2_cu *);
1152 static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1154 static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
1156 /* Try to locate the sections we need for DWARF 2 debugging
1157 information and return true if we have enough to do something. */
1160 dwarf2_has_info (struct objfile *objfile)
1162 struct dwarf2_per_objfile *data;
1164 /* Initialize per-objfile state. */
1165 data = obstack_alloc (&objfile->objfile_obstack, sizeof (*data));
1166 memset (data, 0, sizeof (*data));
1167 set_objfile_data (objfile, dwarf2_objfile_data_key, data);
1168 dwarf2_per_objfile = data;
1170 bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections, NULL);
1171 return (data->info.asection != NULL && data->abbrev.asection != NULL);
1174 /* When loading sections, we can either look for ".<name>", or for
1175 * ".z<name>", which indicates a compressed section. */
1178 section_is_p (const char *section_name, const char *name)
1180 return (section_name[0] == '.'
1181 && (strcmp (section_name + 1, name) == 0
1182 || (section_name[1] == 'z'
1183 && strcmp (section_name + 2, name) == 0)));
1186 /* This function is mapped across the sections and remembers the
1187 offset and size of each of the debugging sections we are interested
1191 dwarf2_locate_sections (bfd *abfd, asection *sectp, void *ignore_ptr)
1193 if (section_is_p (sectp->name, INFO_SECTION))
1195 dwarf2_per_objfile->info.asection = sectp;
1196 dwarf2_per_objfile->info.size = bfd_get_section_size (sectp);
1198 else if (section_is_p (sectp->name, ABBREV_SECTION))
1200 dwarf2_per_objfile->abbrev.asection = sectp;
1201 dwarf2_per_objfile->abbrev.size = bfd_get_section_size (sectp);
1203 else if (section_is_p (sectp->name, LINE_SECTION))
1205 dwarf2_per_objfile->line.asection = sectp;
1206 dwarf2_per_objfile->line.size = bfd_get_section_size (sectp);
1208 else if (section_is_p (sectp->name, PUBNAMES_SECTION))
1210 dwarf2_per_objfile->pubnames.asection = sectp;
1211 dwarf2_per_objfile->pubnames.size = bfd_get_section_size (sectp);
1213 else if (section_is_p (sectp->name, ARANGES_SECTION))
1215 dwarf2_per_objfile->aranges.asection = sectp;
1216 dwarf2_per_objfile->aranges.size = bfd_get_section_size (sectp);
1218 else if (section_is_p (sectp->name, LOC_SECTION))
1220 dwarf2_per_objfile->loc.asection = sectp;
1221 dwarf2_per_objfile->loc.size = bfd_get_section_size (sectp);
1223 else if (section_is_p (sectp->name, MACINFO_SECTION))
1225 dwarf2_per_objfile->macinfo.asection = sectp;
1226 dwarf2_per_objfile->macinfo.size = bfd_get_section_size (sectp);
1228 else if (section_is_p (sectp->name, STR_SECTION))
1230 dwarf2_per_objfile->str.asection = sectp;
1231 dwarf2_per_objfile->str.size = bfd_get_section_size (sectp);
1233 else if (section_is_p (sectp->name, FRAME_SECTION))
1235 dwarf2_per_objfile->frame.asection = sectp;
1236 dwarf2_per_objfile->frame.size = bfd_get_section_size (sectp);
1238 else if (section_is_p (sectp->name, EH_FRAME_SECTION))
1240 flagword aflag = bfd_get_section_flags (ignore_abfd, sectp);
1241 if (aflag & SEC_HAS_CONTENTS)
1243 dwarf2_per_objfile->eh_frame.asection = sectp;
1244 dwarf2_per_objfile->eh_frame.size = bfd_get_section_size (sectp);
1247 else if (section_is_p (sectp->name, RANGES_SECTION))
1249 dwarf2_per_objfile->ranges.asection = sectp;
1250 dwarf2_per_objfile->ranges.size = bfd_get_section_size (sectp);
1252 else if (section_is_p (sectp->name, TYPES_SECTION))
1254 dwarf2_per_objfile->types.asection = sectp;
1255 dwarf2_per_objfile->types.size = bfd_get_section_size (sectp);
1258 if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD)
1259 && bfd_section_vma (abfd, sectp) == 0)
1260 dwarf2_per_objfile->has_section_at_zero = 1;
1263 /* Decompress a section that was compressed using zlib. Store the
1264 decompressed buffer, and its size, in OUTBUF and OUTSIZE. */
1267 zlib_decompress_section (struct objfile *objfile, asection *sectp,
1268 gdb_byte **outbuf, bfd_size_type *outsize)
1270 bfd *abfd = objfile->obfd;
1272 error (_("Support for zlib-compressed DWARF data (from '%s') "
1273 "is disabled in this copy of GDB"),
1274 bfd_get_filename (abfd));
1276 bfd_size_type compressed_size = bfd_get_section_size (sectp);
1277 gdb_byte *compressed_buffer = xmalloc (compressed_size);
1278 struct cleanup *cleanup = make_cleanup (xfree, compressed_buffer);
1279 bfd_size_type uncompressed_size;
1280 gdb_byte *uncompressed_buffer;
1283 int header_size = 12;
1285 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1286 || bfd_bread (compressed_buffer, compressed_size, abfd) != compressed_size)
1287 error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1288 bfd_get_filename (abfd));
1290 /* Read the zlib header. In this case, it should be "ZLIB" followed
1291 by the uncompressed section size, 8 bytes in big-endian order. */
1292 if (compressed_size < header_size
1293 || strncmp (compressed_buffer, "ZLIB", 4) != 0)
1294 error (_("Dwarf Error: Corrupt DWARF ZLIB header from '%s'"),
1295 bfd_get_filename (abfd));
1296 uncompressed_size = compressed_buffer[4]; uncompressed_size <<= 8;
1297 uncompressed_size += compressed_buffer[5]; uncompressed_size <<= 8;
1298 uncompressed_size += compressed_buffer[6]; uncompressed_size <<= 8;
1299 uncompressed_size += compressed_buffer[7]; uncompressed_size <<= 8;
1300 uncompressed_size += compressed_buffer[8]; uncompressed_size <<= 8;
1301 uncompressed_size += compressed_buffer[9]; uncompressed_size <<= 8;
1302 uncompressed_size += compressed_buffer[10]; uncompressed_size <<= 8;
1303 uncompressed_size += compressed_buffer[11];
1305 /* It is possible the section consists of several compressed
1306 buffers concatenated together, so we uncompress in a loop. */
1310 strm.avail_in = compressed_size - header_size;
1311 strm.next_in = (Bytef*) compressed_buffer + header_size;
1312 strm.avail_out = uncompressed_size;
1313 uncompressed_buffer = obstack_alloc (&objfile->objfile_obstack,
1315 rc = inflateInit (&strm);
1316 while (strm.avail_in > 0)
1319 error (_("Dwarf Error: setting up DWARF uncompression in '%s': %d"),
1320 bfd_get_filename (abfd), rc);
1321 strm.next_out = ((Bytef*) uncompressed_buffer
1322 + (uncompressed_size - strm.avail_out));
1323 rc = inflate (&strm, Z_FINISH);
1324 if (rc != Z_STREAM_END)
1325 error (_("Dwarf Error: zlib error uncompressing from '%s': %d"),
1326 bfd_get_filename (abfd), rc);
1327 rc = inflateReset (&strm);
1329 rc = inflateEnd (&strm);
1331 || strm.avail_out != 0)
1332 error (_("Dwarf Error: concluding DWARF uncompression in '%s': %d"),
1333 bfd_get_filename (abfd), rc);
1335 do_cleanups (cleanup);
1336 *outbuf = uncompressed_buffer;
1337 *outsize = uncompressed_size;
1341 /* Read the contents of the section SECTP from object file specified by
1342 OBJFILE, store info about the section into INFO.
1343 If the section is compressed, uncompress it before returning. */
1346 dwarf2_read_section (struct objfile *objfile, struct dwarf2_section_info *info)
1348 bfd *abfd = objfile->obfd;
1349 asection *sectp = info->asection;
1350 gdb_byte *buf, *retbuf;
1351 unsigned char header[4];
1353 info->buffer = NULL;
1354 info->was_mmapped = 0;
1356 if (info->asection == NULL || info->size == 0)
1359 /* Check if the file has a 4-byte header indicating compression. */
1360 if (info->size > sizeof (header)
1361 && bfd_seek (abfd, sectp->filepos, SEEK_SET) == 0
1362 && bfd_bread (header, sizeof (header), abfd) == sizeof (header))
1364 /* Upon decompression, update the buffer and its size. */
1365 if (strncmp (header, "ZLIB", sizeof (header)) == 0)
1367 zlib_decompress_section (objfile, sectp, &info->buffer,
1375 pagesize = getpagesize ();
1377 /* Only try to mmap sections which are large enough: we don't want to
1378 waste space due to fragmentation. Also, only try mmap for sections
1379 without relocations. */
1381 if (info->size > 4 * pagesize && (sectp->flags & SEC_RELOC) == 0)
1383 off_t pg_offset = sectp->filepos & ~(pagesize - 1);
1384 size_t map_length = info->size + sectp->filepos - pg_offset;
1385 caddr_t retbuf = bfd_mmap (abfd, 0, map_length, PROT_READ,
1386 MAP_PRIVATE, pg_offset);
1388 if (retbuf != MAP_FAILED)
1390 info->was_mmapped = 1;
1391 info->buffer = retbuf + (sectp->filepos & (pagesize - 1)) ;
1397 /* If we get here, we are a normal, not-compressed section. */
1399 = obstack_alloc (&objfile->objfile_obstack, info->size);
1401 /* When debugging .o files, we may need to apply relocations; see
1402 http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
1403 We never compress sections in .o files, so we only need to
1404 try this when the section is not compressed. */
1405 retbuf = symfile_relocate_debug_section (abfd, sectp, buf);
1408 info->buffer = retbuf;
1412 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1413 || bfd_bread (buf, info->size, abfd) != info->size)
1414 error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1415 bfd_get_filename (abfd));
1418 /* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
1422 dwarf2_get_section_info (struct objfile *objfile, const char *section_name,
1423 asection **sectp, gdb_byte **bufp,
1424 bfd_size_type *sizep)
1426 struct dwarf2_per_objfile *data
1427 = objfile_data (objfile, dwarf2_objfile_data_key);
1428 struct dwarf2_section_info *info;
1429 if (section_is_p (section_name, EH_FRAME_SECTION))
1430 info = &data->eh_frame;
1431 else if (section_is_p (section_name, FRAME_SECTION))
1432 info = &data->frame;
1436 if (info->asection != NULL && info->size != 0 && info->buffer == NULL)
1437 /* We haven't read this section in yet. Do it now. */
1438 dwarf2_read_section (objfile, info);
1440 *sectp = info->asection;
1441 *bufp = info->buffer;
1442 *sizep = info->size;
1445 /* Build a partial symbol table. */
1448 dwarf2_build_psymtabs (struct objfile *objfile, int mainline)
1450 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
1451 dwarf2_read_section (objfile, &dwarf2_per_objfile->abbrev);
1452 dwarf2_read_section (objfile, &dwarf2_per_objfile->line);
1453 dwarf2_read_section (objfile, &dwarf2_per_objfile->str);
1454 dwarf2_read_section (objfile, &dwarf2_per_objfile->macinfo);
1455 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
1456 dwarf2_read_section (objfile, &dwarf2_per_objfile->types);
1457 dwarf2_read_section (objfile, &dwarf2_per_objfile->loc);
1458 dwarf2_read_section (objfile, &dwarf2_per_objfile->eh_frame);
1459 dwarf2_read_section (objfile, &dwarf2_per_objfile->frame);
1462 || (objfile->global_psymbols.size == 0
1463 && objfile->static_psymbols.size == 0))
1465 init_psymbol_list (objfile, 1024);
1469 if (dwarf_aranges_offset && dwarf_pubnames_offset)
1471 /* Things are significantly easier if we have .debug_aranges and
1472 .debug_pubnames sections */
1474 dwarf2_build_psymtabs_easy (objfile, mainline);
1478 /* only test this case for now */
1480 /* In this case we have to work a bit harder */
1481 dwarf2_build_psymtabs_hard (objfile, mainline);
1486 /* Build the partial symbol table from the information in the
1487 .debug_pubnames and .debug_aranges sections. */
1490 dwarf2_build_psymtabs_easy (struct objfile *objfile, int mainline)
1492 bfd *abfd = objfile->obfd;
1493 char *aranges_buffer, *pubnames_buffer;
1494 char *aranges_ptr, *pubnames_ptr;
1495 unsigned int entry_length, version, info_offset, info_size;
1497 pubnames_buffer = dwarf2_read_section (objfile,
1498 dwarf_pubnames_section);
1499 pubnames_ptr = pubnames_buffer;
1500 while ((pubnames_ptr - pubnames_buffer) < dwarf2_per_objfile->pubnames.size)
1502 unsigned int bytes_read;
1504 entry_length = read_initial_length (abfd, pubnames_ptr, &bytes_read);
1505 pubnames_ptr += bytes_read;
1506 version = read_1_byte (abfd, pubnames_ptr);
1508 info_offset = read_4_bytes (abfd, pubnames_ptr);
1510 info_size = read_4_bytes (abfd, pubnames_ptr);
1514 aranges_buffer = dwarf2_read_section (objfile,
1515 dwarf_aranges_section);
1520 /* Return TRUE if OFFSET is within CU_HEADER. */
1523 offset_in_cu_p (const struct comp_unit_head *cu_header, unsigned int offset)
1525 unsigned int bottom = cu_header->offset;
1526 unsigned int top = (cu_header->offset
1528 + cu_header->initial_length_size);
1529 return (offset >= bottom && offset < top);
1532 /* Read in the comp unit header information from the debug_info at info_ptr.
1533 NOTE: This leaves members offset, first_die_offset to be filled in
1537 read_comp_unit_head (struct comp_unit_head *cu_header,
1538 gdb_byte *info_ptr, bfd *abfd)
1541 unsigned int bytes_read;
1543 cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
1544 cu_header->initial_length_size = bytes_read;
1545 cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
1546 info_ptr += bytes_read;
1547 cu_header->version = read_2_bytes (abfd, info_ptr);
1549 cu_header->abbrev_offset = read_offset (abfd, info_ptr, cu_header,
1551 info_ptr += bytes_read;
1552 cu_header->addr_size = read_1_byte (abfd, info_ptr);
1554 signed_addr = bfd_get_sign_extend_vma (abfd);
1555 if (signed_addr < 0)
1556 internal_error (__FILE__, __LINE__,
1557 _("read_comp_unit_head: dwarf from non elf file"));
1558 cu_header->signed_addr_p = signed_addr;
1564 partial_read_comp_unit_head (struct comp_unit_head *header, gdb_byte *info_ptr,
1565 gdb_byte *buffer, unsigned int buffer_size,
1568 gdb_byte *beg_of_comp_unit = info_ptr;
1570 info_ptr = read_comp_unit_head (header, info_ptr, abfd);
1572 if (header->version != 2 && header->version != 3)
1573 error (_("Dwarf Error: wrong version in compilation unit header "
1574 "(is %d, should be %d) [in module %s]"), header->version,
1575 2, bfd_get_filename (abfd));
1577 if (header->abbrev_offset >= dwarf2_per_objfile->abbrev.size)
1578 error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
1579 "(offset 0x%lx + 6) [in module %s]"),
1580 (long) header->abbrev_offset,
1581 (long) (beg_of_comp_unit - buffer),
1582 bfd_get_filename (abfd));
1584 if (beg_of_comp_unit + header->length + header->initial_length_size
1585 > buffer + buffer_size)
1586 error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
1587 "(offset 0x%lx + 0) [in module %s]"),
1588 (long) header->length,
1589 (long) (beg_of_comp_unit - buffer),
1590 bfd_get_filename (abfd));
1595 /* Read in the types comp unit header information from .debug_types entry at
1596 types_ptr. The result is a pointer to one past the end of the header. */
1599 read_type_comp_unit_head (struct comp_unit_head *cu_header,
1600 ULONGEST *signature,
1601 gdb_byte *types_ptr, bfd *abfd)
1603 unsigned int bytes_read;
1604 gdb_byte *initial_types_ptr = types_ptr;
1606 cu_header->offset = types_ptr - dwarf2_per_objfile->types.buffer;
1608 types_ptr = read_comp_unit_head (cu_header, types_ptr, abfd);
1610 *signature = read_8_bytes (abfd, types_ptr);
1612 types_ptr += cu_header->offset_size;
1613 cu_header->first_die_offset = types_ptr - initial_types_ptr;
1618 /* Allocate a new partial symtab for file named NAME and mark this new
1619 partial symtab as being an include of PST. */
1622 dwarf2_create_include_psymtab (char *name, struct partial_symtab *pst,
1623 struct objfile *objfile)
1625 struct partial_symtab *subpst = allocate_psymtab (name, objfile);
1627 subpst->section_offsets = pst->section_offsets;
1628 subpst->textlow = 0;
1629 subpst->texthigh = 0;
1631 subpst->dependencies = (struct partial_symtab **)
1632 obstack_alloc (&objfile->objfile_obstack,
1633 sizeof (struct partial_symtab *));
1634 subpst->dependencies[0] = pst;
1635 subpst->number_of_dependencies = 1;
1637 subpst->globals_offset = 0;
1638 subpst->n_global_syms = 0;
1639 subpst->statics_offset = 0;
1640 subpst->n_static_syms = 0;
1641 subpst->symtab = NULL;
1642 subpst->read_symtab = pst->read_symtab;
1645 /* No private part is necessary for include psymtabs. This property
1646 can be used to differentiate between such include psymtabs and
1647 the regular ones. */
1648 subpst->read_symtab_private = NULL;
1651 /* Read the Line Number Program data and extract the list of files
1652 included by the source file represented by PST. Build an include
1653 partial symtab for each of these included files. */
1656 dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
1657 struct die_info *die,
1658 struct partial_symtab *pst)
1660 struct objfile *objfile = cu->objfile;
1661 bfd *abfd = objfile->obfd;
1662 struct line_header *lh = NULL;
1663 struct attribute *attr;
1665 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
1668 unsigned int line_offset = DW_UNSND (attr);
1669 lh = dwarf_decode_line_header (line_offset, abfd, cu);
1672 return; /* No linetable, so no includes. */
1674 dwarf_decode_lines (lh, NULL, abfd, cu, pst);
1676 free_line_header (lh);
1680 hash_type_signature (const void *item)
1682 const struct signatured_type *type_sig = item;
1683 /* This drops the top 32 bits of the signature, but is ok for a hash. */
1684 return type_sig->signature;
1688 eq_type_signature (const void *item_lhs, const void *item_rhs)
1690 const struct signatured_type *lhs = item_lhs;
1691 const struct signatured_type *rhs = item_rhs;
1692 return lhs->signature == rhs->signature;
1695 /* Create the hash table of all entries in the .debug_types section.
1696 The result is zero if there is an error (e.g. missing .debug_types section),
1697 otherwise non-zero. */
1700 create_debug_types_hash_table (struct objfile *objfile)
1702 gdb_byte *info_ptr = dwarf2_per_objfile->types.buffer;
1705 if (info_ptr == NULL)
1707 dwarf2_per_objfile->signatured_types = NULL;
1711 types_htab = htab_create_alloc_ex (41,
1712 hash_type_signature,
1715 &objfile->objfile_obstack,
1716 hashtab_obstack_allocate,
1717 dummy_obstack_deallocate);
1719 if (dwarf2_die_debug)
1720 fprintf_unfiltered (gdb_stdlog, "Signatured types:\n");
1722 while (info_ptr < dwarf2_per_objfile->types.buffer + dwarf2_per_objfile->types.size)
1724 unsigned int offset;
1725 unsigned int offset_size;
1726 unsigned int type_offset;
1727 unsigned int length, initial_length_size;
1728 unsigned short version;
1730 struct signatured_type *type_sig;
1732 gdb_byte *ptr = info_ptr;
1734 offset = ptr - dwarf2_per_objfile->types.buffer;
1736 /* We need to read the type's signature in order to build the hash
1737 table, but we don't need to read anything else just yet. */
1739 /* Sanity check to ensure entire cu is present. */
1740 length = read_initial_length (objfile->obfd, ptr, &initial_length_size);
1741 if (ptr + length + initial_length_size
1742 > dwarf2_per_objfile->types.buffer + dwarf2_per_objfile->types.size)
1744 complaint (&symfile_complaints,
1745 _("debug type entry runs off end of `.debug_types' section, ignored"));
1749 offset_size = initial_length_size == 4 ? 4 : 8;
1750 ptr += initial_length_size;
1751 version = bfd_get_16 (objfile->obfd, ptr);
1753 ptr += offset_size; /* abbrev offset */
1754 ptr += 1; /* address size */
1755 signature = bfd_get_64 (objfile->obfd, ptr);
1757 type_offset = read_offset_1 (objfile->obfd, ptr, offset_size);
1759 type_sig = obstack_alloc (&objfile->objfile_obstack, sizeof (*type_sig));
1760 memset (type_sig, 0, sizeof (*type_sig));
1761 type_sig->signature = signature;
1762 type_sig->offset = offset;
1763 type_sig->type_offset = type_offset;
1765 slot = htab_find_slot (types_htab, type_sig, INSERT);
1766 gdb_assert (slot != NULL);
1769 if (dwarf2_die_debug)
1770 fprintf_unfiltered (gdb_stdlog, " offset 0x%x, signature 0x%s\n",
1771 offset, phex (signature, sizeof (signature)));
1773 info_ptr = info_ptr + initial_length_size + length;
1776 dwarf2_per_objfile->signatured_types = types_htab;
1781 /* Lookup a signature based type.
1782 Returns NULL if SIG is not present in the table. */
1784 static struct signatured_type *
1785 lookup_signatured_type (struct objfile *objfile, ULONGEST sig)
1787 struct signatured_type find_entry, *entry;
1789 if (dwarf2_per_objfile->signatured_types == NULL)
1791 complaint (&symfile_complaints,
1792 _("missing `.debug_types' section for DW_FORM_sig8 die"));
1796 find_entry.signature = sig;
1797 entry = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
1801 /* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
1804 init_cu_die_reader (struct die_reader_specs *reader,
1805 struct dwarf2_cu *cu)
1807 reader->abfd = cu->objfile->obfd;
1809 if (cu->per_cu->from_debug_types)
1810 reader->buffer = dwarf2_per_objfile->types.buffer;
1812 reader->buffer = dwarf2_per_objfile->info.buffer;
1815 /* Find the base address of the compilation unit for range lists and
1816 location lists. It will normally be specified by DW_AT_low_pc.
1817 In DWARF-3 draft 4, the base address could be overridden by
1818 DW_AT_entry_pc. It's been removed, but GCC still uses this for
1819 compilation units with discontinuous ranges. */
1822 dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
1824 struct attribute *attr;
1827 cu->base_address = 0;
1829 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
1832 cu->base_address = DW_ADDR (attr);
1837 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
1840 cu->base_address = DW_ADDR (attr);
1846 /* Subroutine of process_type_comp_unit and dwarf2_build_psymtabs_hard
1847 to combine the common parts.
1848 Process a compilation unit for a psymtab.
1849 BUFFER is a pointer to the beginning of the dwarf section buffer,
1850 either .debug_info or debug_types.
1851 INFO_PTR is a pointer to the start of the CU.
1852 Returns a pointer to the next CU. */
1855 process_psymtab_comp_unit (struct objfile *objfile,
1856 struct dwarf2_per_cu_data *this_cu,
1857 gdb_byte *buffer, gdb_byte *info_ptr,
1858 unsigned int buffer_size)
1860 bfd *abfd = objfile->obfd;
1861 gdb_byte *beg_of_comp_unit = info_ptr;
1862 struct die_info *comp_unit_die;
1863 struct partial_symtab *pst;
1865 struct cleanup *back_to_inner;
1866 struct dwarf2_cu cu;
1867 unsigned int bytes_read;
1868 int has_children, has_pc_info;
1869 struct attribute *attr;
1871 CORE_ADDR best_lowpc = 0, best_highpc = 0;
1872 struct die_reader_specs reader_specs;
1874 memset (&cu, 0, sizeof (cu));
1875 cu.objfile = objfile;
1876 obstack_init (&cu.comp_unit_obstack);
1878 back_to_inner = make_cleanup (free_stack_comp_unit, &cu);
1880 info_ptr = partial_read_comp_unit_head (&cu.header, info_ptr,
1881 buffer, buffer_size,
1884 /* Complete the cu_header. */
1885 cu.header.offset = beg_of_comp_unit - buffer;
1886 cu.header.first_die_offset = info_ptr - beg_of_comp_unit;
1888 cu.list_in_scope = &file_symbols;
1890 /* If this compilation unit was already read in, free the
1891 cached copy in order to read it in again. This is
1892 necessary because we skipped some symbols when we first
1893 read in the compilation unit (see load_partial_dies).
1894 This problem could be avoided, but the benefit is
1896 if (this_cu->cu != NULL)
1897 free_one_cached_comp_unit (this_cu->cu);
1899 /* Note that this is a pointer to our stack frame, being
1900 added to a global data structure. It will be cleaned up
1901 in free_stack_comp_unit when we finish with this
1902 compilation unit. */
1904 cu.per_cu = this_cu;
1906 /* Read the abbrevs for this compilation unit into a table. */
1907 dwarf2_read_abbrevs (abfd, &cu);
1908 make_cleanup (dwarf2_free_abbrev_table, &cu);
1910 /* Read the compilation unit die. */
1911 if (this_cu->from_debug_types)
1912 info_ptr += 8 /*signature*/ + cu.header.offset_size;
1913 init_cu_die_reader (&reader_specs, &cu);
1914 info_ptr = read_full_die (&reader_specs, &comp_unit_die, info_ptr,
1917 if (this_cu->from_debug_types)
1919 /* offset,length haven't been set yet for type units. */
1920 this_cu->offset = cu.header.offset;
1921 this_cu->length = cu.header.length + cu.header.initial_length_size;
1923 else if (comp_unit_die->tag == DW_TAG_partial_unit)
1925 info_ptr = (beg_of_comp_unit + cu.header.length
1926 + cu.header.initial_length_size);
1927 do_cleanups (back_to_inner);
1931 /* Set the language we're debugging. */
1932 attr = dwarf2_attr (comp_unit_die, DW_AT_language, &cu);
1934 set_cu_language (DW_UNSND (attr), &cu);
1936 set_cu_language (language_minimal, &cu);
1938 /* Allocate a new partial symbol table structure. */
1939 attr = dwarf2_attr (comp_unit_die, DW_AT_name, &cu);
1940 pst = start_psymtab_common (objfile, objfile->section_offsets,
1941 (attr != NULL) ? DW_STRING (attr) : "",
1942 /* TEXTLOW and TEXTHIGH are set below. */
1944 objfile->global_psymbols.next,
1945 objfile->static_psymbols.next);
1947 attr = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, &cu);
1949 pst->dirname = DW_STRING (attr);
1951 pst->read_symtab_private = (char *) this_cu;
1953 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1955 /* Store the function that reads in the rest of the symbol table */
1956 pst->read_symtab = dwarf2_psymtab_to_symtab;
1958 this_cu->psymtab = pst;
1960 dwarf2_find_base_address (comp_unit_die, &cu);
1962 /* Possibly set the default values of LOWPC and HIGHPC from
1964 has_pc_info = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
1965 &best_highpc, &cu, pst);
1966 if (has_pc_info == 1 && best_lowpc < best_highpc)
1967 /* Store the contiguous range if it is not empty; it can be empty for
1968 CUs with no code. */
1969 addrmap_set_empty (objfile->psymtabs_addrmap,
1970 best_lowpc + baseaddr,
1971 best_highpc + baseaddr - 1, pst);
1973 /* Check if comp unit has_children.
1974 If so, read the rest of the partial symbols from this comp unit.
1975 If not, there's no more debug_info for this comp unit. */
1978 struct partial_die_info *first_die;
1979 CORE_ADDR lowpc, highpc;
1981 lowpc = ((CORE_ADDR) -1);
1982 highpc = ((CORE_ADDR) 0);
1984 first_die = load_partial_dies (abfd, buffer, info_ptr, 1, &cu);
1986 scan_partial_symbols (first_die, &lowpc, &highpc,
1987 ! has_pc_info, &cu);
1989 /* If we didn't find a lowpc, set it to highpc to avoid
1990 complaints from `maint check'. */
1991 if (lowpc == ((CORE_ADDR) -1))
1994 /* If the compilation unit didn't have an explicit address range,
1995 then use the information extracted from its child dies. */
1999 best_highpc = highpc;
2002 pst->textlow = best_lowpc + baseaddr;
2003 pst->texthigh = best_highpc + baseaddr;
2005 pst->n_global_syms = objfile->global_psymbols.next -
2006 (objfile->global_psymbols.list + pst->globals_offset);
2007 pst->n_static_syms = objfile->static_psymbols.next -
2008 (objfile->static_psymbols.list + pst->statics_offset);
2009 sort_pst_symbols (pst);
2011 /* If there is already a psymtab or symtab for a file of this
2012 name, remove it. (If there is a symtab, more drastic things
2013 also happen.) This happens in VxWorks. */
2014 if (! this_cu->from_debug_types)
2015 free_named_symtabs (pst->filename);
2017 info_ptr = (beg_of_comp_unit + cu.header.length
2018 + cu.header.initial_length_size);
2020 if (this_cu->from_debug_types)
2022 /* It's not clear we want to do anything with stmt lists here.
2023 Waiting to see what gcc ultimately does. */
2027 /* Get the list of files included in the current compilation unit,
2028 and build a psymtab for each of them. */
2029 dwarf2_build_include_psymtabs (&cu, comp_unit_die, pst);
2032 do_cleanups (back_to_inner);
2037 /* Traversal function for htab_traverse_noresize.
2038 Process one .debug_types comp-unit. */
2041 process_type_comp_unit (void **slot, void *info)
2043 struct signatured_type *entry = (struct signatured_type *) *slot;
2044 struct objfile *objfile = (struct objfile *) info;
2045 struct dwarf2_per_cu_data *this_cu;
2047 this_cu = &entry->per_cu;
2048 this_cu->from_debug_types = 1;
2050 process_psymtab_comp_unit (objfile, this_cu,
2051 dwarf2_per_objfile->types.buffer,
2052 dwarf2_per_objfile->types.buffer + entry->offset,
2053 dwarf2_per_objfile->types.size);
2058 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
2059 Build partial symbol tables for the .debug_types comp-units. */
2062 build_type_psymtabs (struct objfile *objfile)
2064 if (! create_debug_types_hash_table (objfile))
2067 htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
2068 process_type_comp_unit, objfile);
2071 /* Build the partial symbol table by doing a quick pass through the
2072 .debug_info and .debug_abbrev sections. */
2075 dwarf2_build_psymtabs_hard (struct objfile *objfile, int mainline)
2077 /* Instead of reading this into a big buffer, we should probably use
2078 mmap() on architectures that support it. (FIXME) */
2079 bfd *abfd = objfile->obfd;
2081 struct cleanup *back_to;
2083 info_ptr = dwarf2_per_objfile->info.buffer;
2085 /* Any cached compilation units will be linked by the per-objfile
2086 read_in_chain. Make sure to free them when we're done. */
2087 back_to = make_cleanup (free_cached_comp_units, NULL);
2089 build_type_psymtabs (objfile);
2091 create_all_comp_units (objfile);
2093 objfile->psymtabs_addrmap =
2094 addrmap_create_mutable (&objfile->objfile_obstack);
2096 /* Since the objects we're extracting from .debug_info vary in
2097 length, only the individual functions to extract them (like
2098 read_comp_unit_head and load_partial_die) can really know whether
2099 the buffer is large enough to hold another complete object.
2101 At the moment, they don't actually check that. If .debug_info
2102 holds just one extra byte after the last compilation unit's dies,
2103 then read_comp_unit_head will happily read off the end of the
2104 buffer. read_partial_die is similarly casual. Those functions
2107 For this loop condition, simply checking whether there's any data
2108 left at all should be sufficient. */
2110 while (info_ptr < (dwarf2_per_objfile->info.buffer
2111 + dwarf2_per_objfile->info.size))
2113 struct dwarf2_per_cu_data *this_cu;
2115 this_cu = dwarf2_find_comp_unit (info_ptr - dwarf2_per_objfile->info.buffer,
2118 info_ptr = process_psymtab_comp_unit (objfile, this_cu,
2119 dwarf2_per_objfile->info.buffer,
2121 dwarf2_per_objfile->info.size);
2124 objfile->psymtabs_addrmap = addrmap_create_fixed (objfile->psymtabs_addrmap,
2125 &objfile->objfile_obstack);
2127 do_cleanups (back_to);
2130 /* Load the partial DIEs for a secondary CU into memory. */
2133 load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu,
2134 struct objfile *objfile)
2136 bfd *abfd = objfile->obfd;
2137 gdb_byte *info_ptr, *beg_of_comp_unit;
2138 struct die_info *comp_unit_die;
2139 struct dwarf2_cu *cu;
2140 unsigned int bytes_read;
2141 struct cleanup *back_to;
2142 struct attribute *attr;
2144 struct die_reader_specs reader_specs;
2146 gdb_assert (! this_cu->from_debug_types);
2148 info_ptr = dwarf2_per_objfile->info.buffer + this_cu->offset;
2149 beg_of_comp_unit = info_ptr;
2151 cu = alloc_one_comp_unit (objfile);
2153 /* ??? Missing cleanup for CU? */
2155 /* Link this compilation unit into the compilation unit tree. */
2157 cu->per_cu = this_cu;
2158 cu->type_hash = this_cu->type_hash;
2160 info_ptr = partial_read_comp_unit_head (&cu->header, info_ptr,
2161 dwarf2_per_objfile->info.buffer,
2162 dwarf2_per_objfile->info.size,
2165 /* Complete the cu_header. */
2166 cu->header.offset = this_cu->offset;
2167 cu->header.first_die_offset = info_ptr - beg_of_comp_unit;
2169 /* Read the abbrevs for this compilation unit into a table. */
2170 dwarf2_read_abbrevs (abfd, cu);
2171 back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
2173 /* Read the compilation unit die. */
2174 init_cu_die_reader (&reader_specs, cu);
2175 info_ptr = read_full_die (&reader_specs, &comp_unit_die, info_ptr,
2178 /* Set the language we're debugging. */
2179 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
2181 set_cu_language (DW_UNSND (attr), cu);
2183 set_cu_language (language_minimal, cu);
2185 /* Check if comp unit has_children.
2186 If so, read the rest of the partial symbols from this comp unit.
2187 If not, there's no more debug_info for this comp unit. */
2189 load_partial_dies (abfd, dwarf2_per_objfile->info.buffer, info_ptr, 0, cu);
2191 do_cleanups (back_to);
2194 /* Create a list of all compilation units in OBJFILE. We do this only
2195 if an inter-comp-unit reference is found; presumably if there is one,
2196 there will be many, and one will occur early in the .debug_info section.
2197 So there's no point in building this list incrementally. */
2200 create_all_comp_units (struct objfile *objfile)
2204 struct dwarf2_per_cu_data **all_comp_units;
2205 gdb_byte *info_ptr = dwarf2_per_objfile->info.buffer;
2209 all_comp_units = xmalloc (n_allocated
2210 * sizeof (struct dwarf2_per_cu_data *));
2212 while (info_ptr < dwarf2_per_objfile->info.buffer + dwarf2_per_objfile->info.size)
2214 unsigned int length, initial_length_size;
2215 gdb_byte *beg_of_comp_unit;
2216 struct dwarf2_per_cu_data *this_cu;
2217 unsigned int offset;
2219 offset = info_ptr - dwarf2_per_objfile->info.buffer;
2221 /* Read just enough information to find out where the next
2222 compilation unit is. */
2223 length = read_initial_length (objfile->obfd, info_ptr,
2224 &initial_length_size);
2226 /* Save the compilation unit for later lookup. */
2227 this_cu = obstack_alloc (&objfile->objfile_obstack,
2228 sizeof (struct dwarf2_per_cu_data));
2229 memset (this_cu, 0, sizeof (*this_cu));
2230 this_cu->offset = offset;
2231 this_cu->length = length + initial_length_size;
2233 if (n_comp_units == n_allocated)
2236 all_comp_units = xrealloc (all_comp_units,
2238 * sizeof (struct dwarf2_per_cu_data *));
2240 all_comp_units[n_comp_units++] = this_cu;
2242 info_ptr = info_ptr + this_cu->length;
2245 dwarf2_per_objfile->all_comp_units
2246 = obstack_alloc (&objfile->objfile_obstack,
2247 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
2248 memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
2249 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
2250 xfree (all_comp_units);
2251 dwarf2_per_objfile->n_comp_units = n_comp_units;
2254 /* Process all loaded DIEs for compilation unit CU, starting at
2255 FIRST_DIE. The caller should pass NEED_PC == 1 if the compilation
2256 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
2257 DW_AT_ranges). If NEED_PC is set, then this function will set
2258 *LOWPC and *HIGHPC to the lowest and highest PC values found in CU
2259 and record the covered ranges in the addrmap. */
2262 scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
2263 CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
2265 struct objfile *objfile = cu->objfile;
2266 bfd *abfd = objfile->obfd;
2267 struct partial_die_info *pdi;
2269 /* Now, march along the PDI's, descending into ones which have
2270 interesting children but skipping the children of the other ones,
2271 until we reach the end of the compilation unit. */
2277 fixup_partial_die (pdi, cu);
2279 /* Anonymous namespaces have no name but have interesting
2280 children, so we need to look at them. Ditto for anonymous
2283 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
2284 || pdi->tag == DW_TAG_enumeration_type)
2288 case DW_TAG_subprogram:
2289 add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
2291 case DW_TAG_variable:
2292 case DW_TAG_typedef:
2293 case DW_TAG_union_type:
2294 if (!pdi->is_declaration)
2296 add_partial_symbol (pdi, cu);
2299 case DW_TAG_class_type:
2300 case DW_TAG_interface_type:
2301 case DW_TAG_structure_type:
2302 if (!pdi->is_declaration)
2304 add_partial_symbol (pdi, cu);
2307 case DW_TAG_enumeration_type:
2308 if (!pdi->is_declaration)
2309 add_partial_enumeration (pdi, cu);
2311 case DW_TAG_base_type:
2312 case DW_TAG_subrange_type:
2313 /* File scope base type definitions are added to the partial
2315 add_partial_symbol (pdi, cu);
2317 case DW_TAG_namespace:
2318 add_partial_namespace (pdi, lowpc, highpc, need_pc, cu);
2321 add_partial_module (pdi, lowpc, highpc, need_pc, cu);
2328 /* If the die has a sibling, skip to the sibling. */
2330 pdi = pdi->die_sibling;
2334 /* Functions used to compute the fully scoped name of a partial DIE.
2336 Normally, this is simple. For C++, the parent DIE's fully scoped
2337 name is concatenated with "::" and the partial DIE's name. For
2338 Java, the same thing occurs except that "." is used instead of "::".
2339 Enumerators are an exception; they use the scope of their parent
2340 enumeration type, i.e. the name of the enumeration type is not
2341 prepended to the enumerator.
2343 There are two complexities. One is DW_AT_specification; in this
2344 case "parent" means the parent of the target of the specification,
2345 instead of the direct parent of the DIE. The other is compilers
2346 which do not emit DW_TAG_namespace; in this case we try to guess
2347 the fully qualified name of structure types from their members'
2348 linkage names. This must be done using the DIE's children rather
2349 than the children of any DW_AT_specification target. We only need
2350 to do this for structures at the top level, i.e. if the target of
2351 any DW_AT_specification (if any; otherwise the DIE itself) does not
2354 /* Compute the scope prefix associated with PDI's parent, in
2355 compilation unit CU. The result will be allocated on CU's
2356 comp_unit_obstack, or a copy of the already allocated PDI->NAME
2357 field. NULL is returned if no prefix is necessary. */
2359 partial_die_parent_scope (struct partial_die_info *pdi,
2360 struct dwarf2_cu *cu)
2362 char *grandparent_scope;
2363 struct partial_die_info *parent, *real_pdi;
2365 /* We need to look at our parent DIE; if we have a DW_AT_specification,
2366 then this means the parent of the specification DIE. */
2369 while (real_pdi->has_specification)
2370 real_pdi = find_partial_die (real_pdi->spec_offset, cu);
2372 parent = real_pdi->die_parent;
2376 if (parent->scope_set)
2377 return parent->scope;
2379 fixup_partial_die (parent, cu);
2381 grandparent_scope = partial_die_parent_scope (parent, cu);
2383 if (parent->tag == DW_TAG_namespace
2384 || parent->tag == DW_TAG_structure_type
2385 || parent->tag == DW_TAG_class_type
2386 || parent->tag == DW_TAG_interface_type
2387 || parent->tag == DW_TAG_union_type)
2389 if (grandparent_scope == NULL)
2390 parent->scope = parent->name;
2392 parent->scope = typename_concat (&cu->comp_unit_obstack, grandparent_scope,
2395 else if (parent->tag == DW_TAG_enumeration_type)
2396 /* Enumerators should not get the name of the enumeration as a prefix. */
2397 parent->scope = grandparent_scope;
2400 /* FIXME drow/2004-04-01: What should we be doing with
2401 function-local names? For partial symbols, we should probably be
2403 complaint (&symfile_complaints,
2404 _("unhandled containing DIE tag %d for DIE at %d"),
2405 parent->tag, pdi->offset);
2406 parent->scope = grandparent_scope;
2409 parent->scope_set = 1;
2410 return parent->scope;
2413 /* Return the fully scoped name associated with PDI, from compilation unit
2414 CU. The result will be allocated with malloc. */
2416 partial_die_full_name (struct partial_die_info *pdi,
2417 struct dwarf2_cu *cu)
2421 parent_scope = partial_die_parent_scope (pdi, cu);
2422 if (parent_scope == NULL)
2425 return typename_concat (NULL, parent_scope, pdi->name, cu);
2429 add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
2431 struct objfile *objfile = cu->objfile;
2433 char *actual_name = NULL;
2434 const char *my_prefix;
2435 const struct partial_symbol *psym = NULL;
2437 int built_actual_name = 0;
2439 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2441 if (pdi_needs_namespace (pdi->tag))
2443 actual_name = partial_die_full_name (pdi, cu);
2445 built_actual_name = 1;
2448 if (actual_name == NULL)
2449 actual_name = pdi->name;
2453 case DW_TAG_subprogram:
2454 if (pdi->is_external || cu->language == language_ada)
2456 /* brobecker/2007-12-26: Normally, only "external" DIEs are part
2457 of the global scope. But in Ada, we want to be able to access
2458 nested procedures globally. So all Ada subprograms are stored
2459 in the global scope. */
2460 /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
2461 mst_text, objfile); */
2462 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
2464 VAR_DOMAIN, LOC_BLOCK,
2465 &objfile->global_psymbols,
2466 0, pdi->lowpc + baseaddr,
2467 cu->language, objfile);
2471 /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
2472 mst_file_text, objfile); */
2473 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
2475 VAR_DOMAIN, LOC_BLOCK,
2476 &objfile->static_psymbols,
2477 0, pdi->lowpc + baseaddr,
2478 cu->language, objfile);
2481 case DW_TAG_variable:
2482 if (pdi->is_external)
2485 Don't enter into the minimal symbol tables as there is
2486 a minimal symbol table entry from the ELF symbols already.
2487 Enter into partial symbol table if it has a location
2488 descriptor or a type.
2489 If the location descriptor is missing, new_symbol will create
2490 a LOC_UNRESOLVED symbol, the address of the variable will then
2491 be determined from the minimal symbol table whenever the variable
2493 The address for the partial symbol table entry is not
2494 used by GDB, but it comes in handy for debugging partial symbol
2498 addr = decode_locdesc (pdi->locdesc, cu);
2499 if (pdi->locdesc || pdi->has_type)
2500 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
2502 VAR_DOMAIN, LOC_STATIC,
2503 &objfile->global_psymbols,
2505 cu->language, objfile);
2509 /* Static Variable. Skip symbols without location descriptors. */
2510 if (pdi->locdesc == NULL)
2512 if (built_actual_name)
2513 xfree (actual_name);
2516 addr = decode_locdesc (pdi->locdesc, cu);
2517 /*prim_record_minimal_symbol (actual_name, addr + baseaddr,
2518 mst_file_data, objfile); */
2519 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
2521 VAR_DOMAIN, LOC_STATIC,
2522 &objfile->static_psymbols,
2524 cu->language, objfile);
2527 case DW_TAG_typedef:
2528 case DW_TAG_base_type:
2529 case DW_TAG_subrange_type:
2530 add_psymbol_to_list (actual_name, strlen (actual_name),
2532 VAR_DOMAIN, LOC_TYPEDEF,
2533 &objfile->static_psymbols,
2534 0, (CORE_ADDR) 0, cu->language, objfile);
2536 case DW_TAG_namespace:
2537 add_psymbol_to_list (actual_name, strlen (actual_name),
2539 VAR_DOMAIN, LOC_TYPEDEF,
2540 &objfile->global_psymbols,
2541 0, (CORE_ADDR) 0, cu->language, objfile);
2543 case DW_TAG_class_type:
2544 case DW_TAG_interface_type:
2545 case DW_TAG_structure_type:
2546 case DW_TAG_union_type:
2547 case DW_TAG_enumeration_type:
2548 /* Skip external references. The DWARF standard says in the section
2549 about "Structure, Union, and Class Type Entries": "An incomplete
2550 structure, union or class type is represented by a structure,
2551 union or class entry that does not have a byte size attribute
2552 and that has a DW_AT_declaration attribute." */
2553 if (!pdi->has_byte_size && pdi->is_declaration)
2555 if (built_actual_name)
2556 xfree (actual_name);
2560 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
2561 static vs. global. */
2562 add_psymbol_to_list (actual_name, strlen (actual_name),
2564 STRUCT_DOMAIN, LOC_TYPEDEF,
2565 (cu->language == language_cplus
2566 || cu->language == language_java)
2567 ? &objfile->global_psymbols
2568 : &objfile->static_psymbols,
2569 0, (CORE_ADDR) 0, cu->language, objfile);
2572 case DW_TAG_enumerator:
2573 add_psymbol_to_list (actual_name, strlen (actual_name),
2575 VAR_DOMAIN, LOC_CONST,
2576 (cu->language == language_cplus
2577 || cu->language == language_java)
2578 ? &objfile->global_psymbols
2579 : &objfile->static_psymbols,
2580 0, (CORE_ADDR) 0, cu->language, objfile);
2586 /* Check to see if we should scan the name for possible namespace
2587 info. Only do this if this is C++, if we don't have namespace
2588 debugging info in the file, if the psym is of an appropriate type
2589 (otherwise we'll have psym == NULL), and if we actually had a
2590 mangled name to begin with. */
2592 /* FIXME drow/2004-02-22: Why don't we do this for classes, i.e. the
2593 cases which do not set PSYM above? */
2595 if (cu->language == language_cplus
2596 && cu->has_namespace_info == 0
2598 && SYMBOL_CPLUS_DEMANGLED_NAME (psym) != NULL)
2599 cp_check_possible_namespace_symbols (SYMBOL_CPLUS_DEMANGLED_NAME (psym),
2602 if (built_actual_name)
2603 xfree (actual_name);
2606 /* Determine whether a die of type TAG living in a C++ class or
2607 namespace needs to have the name of the scope prepended to the
2608 name listed in the die. */
2611 pdi_needs_namespace (enum dwarf_tag tag)
2615 case DW_TAG_namespace:
2616 case DW_TAG_typedef:
2617 case DW_TAG_class_type:
2618 case DW_TAG_interface_type:
2619 case DW_TAG_structure_type:
2620 case DW_TAG_union_type:
2621 case DW_TAG_enumeration_type:
2622 case DW_TAG_enumerator:
2629 /* Read a partial die corresponding to a namespace; also, add a symbol
2630 corresponding to that namespace to the symbol table. NAMESPACE is
2631 the name of the enclosing namespace. */
2634 add_partial_namespace (struct partial_die_info *pdi,
2635 CORE_ADDR *lowpc, CORE_ADDR *highpc,
2636 int need_pc, struct dwarf2_cu *cu)
2638 struct objfile *objfile = cu->objfile;
2640 /* Add a symbol for the namespace. */
2642 add_partial_symbol (pdi, cu);
2644 /* Now scan partial symbols in that namespace. */
2646 if (pdi->has_children)
2647 scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
2650 /* Read a partial die corresponding to a Fortran module. */
2653 add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
2654 CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
2656 /* Now scan partial symbols in that module.
2658 FIXME: Support the separate Fortran module namespaces. */
2660 if (pdi->has_children)
2661 scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
2664 /* Read a partial die corresponding to a subprogram and create a partial
2665 symbol for that subprogram. When the CU language allows it, this
2666 routine also defines a partial symbol for each nested subprogram
2667 that this subprogram contains.
2669 DIE my also be a lexical block, in which case we simply search
2670 recursively for suprograms defined inside that lexical block.
2671 Again, this is only performed when the CU language allows this
2672 type of definitions. */
2675 add_partial_subprogram (struct partial_die_info *pdi,
2676 CORE_ADDR *lowpc, CORE_ADDR *highpc,
2677 int need_pc, struct dwarf2_cu *cu)
2679 if (pdi->tag == DW_TAG_subprogram)
2681 if (pdi->has_pc_info)
2683 if (pdi->lowpc < *lowpc)
2684 *lowpc = pdi->lowpc;
2685 if (pdi->highpc > *highpc)
2686 *highpc = pdi->highpc;
2690 struct objfile *objfile = cu->objfile;
2692 baseaddr = ANOFFSET (objfile->section_offsets,
2693 SECT_OFF_TEXT (objfile));
2694 addrmap_set_empty (objfile->psymtabs_addrmap,
2695 pdi->lowpc, pdi->highpc - 1,
2696 cu->per_cu->psymtab);
2698 if (!pdi->is_declaration)
2699 add_partial_symbol (pdi, cu);
2703 if (! pdi->has_children)
2706 if (cu->language == language_ada)
2708 pdi = pdi->die_child;
2711 fixup_partial_die (pdi, cu);
2712 if (pdi->tag == DW_TAG_subprogram
2713 || pdi->tag == DW_TAG_lexical_block)
2714 add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
2715 pdi = pdi->die_sibling;
2720 /* See if we can figure out if the class lives in a namespace. We do
2721 this by looking for a member function; its demangled name will
2722 contain namespace info, if there is any. */
2725 guess_structure_name (struct partial_die_info *struct_pdi,
2726 struct dwarf2_cu *cu)
2728 if ((cu->language == language_cplus
2729 || cu->language == language_java)
2730 && cu->has_namespace_info == 0
2731 && struct_pdi->has_children)
2733 /* NOTE: carlton/2003-10-07: Getting the info this way changes
2734 what template types look like, because the demangler
2735 frequently doesn't give the same name as the debug info. We
2736 could fix this by only using the demangled name to get the
2737 prefix (but see comment in read_structure_type). */
2739 struct partial_die_info *child_pdi = struct_pdi->die_child;
2740 struct partial_die_info *real_pdi;
2742 /* If this DIE (this DIE's specification, if any) has a parent, then
2743 we should not do this. We'll prepend the parent's fully qualified
2744 name when we create the partial symbol. */
2746 real_pdi = struct_pdi;
2747 while (real_pdi->has_specification)
2748 real_pdi = find_partial_die (real_pdi->spec_offset, cu);
2750 if (real_pdi->die_parent != NULL)
2753 while (child_pdi != NULL)
2755 if (child_pdi->tag == DW_TAG_subprogram)
2757 char *actual_class_name
2758 = language_class_name_from_physname (cu->language_defn,
2760 if (actual_class_name != NULL)
2763 = obsavestring (actual_class_name,
2764 strlen (actual_class_name),
2765 &cu->comp_unit_obstack);
2766 xfree (actual_class_name);
2771 child_pdi = child_pdi->die_sibling;
2776 /* Read a partial die corresponding to an enumeration type. */
2779 add_partial_enumeration (struct partial_die_info *enum_pdi,
2780 struct dwarf2_cu *cu)
2782 struct objfile *objfile = cu->objfile;
2783 bfd *abfd = objfile->obfd;
2784 struct partial_die_info *pdi;
2786 if (enum_pdi->name != NULL)
2787 add_partial_symbol (enum_pdi, cu);
2789 pdi = enum_pdi->die_child;
2792 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
2793 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
2795 add_partial_symbol (pdi, cu);
2796 pdi = pdi->die_sibling;
2800 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
2801 Return the corresponding abbrev, or NULL if the number is zero (indicating
2802 an empty DIE). In either case *BYTES_READ will be set to the length of
2803 the initial number. */
2805 static struct abbrev_info *
2806 peek_die_abbrev (gdb_byte *info_ptr, unsigned int *bytes_read,
2807 struct dwarf2_cu *cu)
2809 bfd *abfd = cu->objfile->obfd;
2810 unsigned int abbrev_number;
2811 struct abbrev_info *abbrev;
2813 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
2815 if (abbrev_number == 0)
2818 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
2821 error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"), abbrev_number,
2822 bfd_get_filename (abfd));
2828 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
2829 Returns a pointer to the end of a series of DIEs, terminated by an empty
2830 DIE. Any children of the skipped DIEs will also be skipped. */
2833 skip_children (gdb_byte *buffer, gdb_byte *info_ptr, struct dwarf2_cu *cu)
2835 struct abbrev_info *abbrev;
2836 unsigned int bytes_read;
2840 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
2842 return info_ptr + bytes_read;
2844 info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
2848 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
2849 INFO_PTR should point just after the initial uleb128 of a DIE, and the
2850 abbrev corresponding to that skipped uleb128 should be passed in
2851 ABBREV. Returns a pointer to this DIE's sibling, skipping any
2855 skip_one_die (gdb_byte *buffer, gdb_byte *info_ptr,
2856 struct abbrev_info *abbrev, struct dwarf2_cu *cu)
2858 unsigned int bytes_read;
2859 struct attribute attr;
2860 bfd *abfd = cu->objfile->obfd;
2861 unsigned int form, i;
2863 for (i = 0; i < abbrev->num_attrs; i++)
2865 /* The only abbrev we care about is DW_AT_sibling. */
2866 if (abbrev->attrs[i].name == DW_AT_sibling)
2868 read_attribute (&attr, &abbrev->attrs[i],
2869 abfd, info_ptr, cu);
2870 if (attr.form == DW_FORM_ref_addr)
2871 complaint (&symfile_complaints, _("ignoring absolute DW_AT_sibling"));
2873 return buffer + dwarf2_get_ref_die_offset (&attr);
2876 /* If it isn't DW_AT_sibling, skip this attribute. */
2877 form = abbrev->attrs[i].form;
2882 case DW_FORM_ref_addr:
2883 info_ptr += cu->header.addr_size;
2903 case DW_FORM_string:
2904 read_string (abfd, info_ptr, &bytes_read);
2905 info_ptr += bytes_read;
2908 info_ptr += cu->header.offset_size;
2911 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
2912 info_ptr += bytes_read;
2914 case DW_FORM_block1:
2915 info_ptr += 1 + read_1_byte (abfd, info_ptr);
2917 case DW_FORM_block2:
2918 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
2920 case DW_FORM_block4:
2921 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
2925 case DW_FORM_ref_udata:
2926 info_ptr = skip_leb128 (abfd, info_ptr);
2928 case DW_FORM_indirect:
2929 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
2930 info_ptr += bytes_read;
2931 /* We need to continue parsing from here, so just go back to
2933 goto skip_attribute;
2936 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
2937 dwarf_form_name (form),
2938 bfd_get_filename (abfd));
2942 if (abbrev->has_children)
2943 return skip_children (buffer, info_ptr, cu);
2948 /* Locate ORIG_PDI's sibling.
2949 INFO_PTR should point to the start of the next DIE after ORIG_PDI
2953 locate_pdi_sibling (struct partial_die_info *orig_pdi,
2954 gdb_byte *buffer, gdb_byte *info_ptr,
2955 bfd *abfd, struct dwarf2_cu *cu)
2957 /* Do we know the sibling already? */
2959 if (orig_pdi->sibling)
2960 return orig_pdi->sibling;
2962 /* Are there any children to deal with? */
2964 if (!orig_pdi->has_children)
2967 /* Skip the children the long way. */
2969 return skip_children (buffer, info_ptr, cu);
2972 /* Expand this partial symbol table into a full symbol table. */
2975 dwarf2_psymtab_to_symtab (struct partial_symtab *pst)
2977 /* FIXME: This is barely more than a stub. */
2982 warning (_("bug: psymtab for %s is already read in."), pst->filename);
2988 printf_filtered (_("Reading in symbols for %s..."), pst->filename);
2989 gdb_flush (gdb_stdout);
2992 /* Restore our global data. */
2993 dwarf2_per_objfile = objfile_data (pst->objfile,
2994 dwarf2_objfile_data_key);
2996 /* If this psymtab is constructed from a debug-only objfile, the
2997 has_section_at_zero flag will not necessarily be correct. We
2998 can get the correct value for this flag by looking at the data
2999 associated with the (presumably stripped) associated objfile. */
3000 if (pst->objfile->separate_debug_objfile_backlink)
3002 struct dwarf2_per_objfile *dpo_backlink
3003 = objfile_data (pst->objfile->separate_debug_objfile_backlink,
3004 dwarf2_objfile_data_key);
3005 dwarf2_per_objfile->has_section_at_zero
3006 = dpo_backlink->has_section_at_zero;
3009 psymtab_to_symtab_1 (pst);
3011 /* Finish up the debug error message. */
3013 printf_filtered (_("done.\n"));
3018 /* Add PER_CU to the queue. */
3021 queue_comp_unit (struct dwarf2_per_cu_data *per_cu, struct objfile *objfile)
3023 struct dwarf2_queue_item *item;
3026 item = xmalloc (sizeof (*item));
3027 item->per_cu = per_cu;
3030 if (dwarf2_queue == NULL)
3031 dwarf2_queue = item;
3033 dwarf2_queue_tail->next = item;
3035 dwarf2_queue_tail = item;
3038 /* Process the queue. */
3041 process_queue (struct objfile *objfile)
3043 struct dwarf2_queue_item *item, *next_item;
3045 /* The queue starts out with one item, but following a DIE reference
3046 may load a new CU, adding it to the end of the queue. */
3047 for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
3049 if (item->per_cu->psymtab && !item->per_cu->psymtab->readin)
3050 process_full_comp_unit (item->per_cu);
3052 item->per_cu->queued = 0;
3053 next_item = item->next;
3057 dwarf2_queue_tail = NULL;
3060 /* Free all allocated queue entries. This function only releases anything if
3061 an error was thrown; if the queue was processed then it would have been
3062 freed as we went along. */
3065 dwarf2_release_queue (void *dummy)
3067 struct dwarf2_queue_item *item, *last;
3069 item = dwarf2_queue;
3072 /* Anything still marked queued is likely to be in an
3073 inconsistent state, so discard it. */
3074 if (item->per_cu->queued)
3076 if (item->per_cu->cu != NULL)
3077 free_one_cached_comp_unit (item->per_cu->cu);
3078 item->per_cu->queued = 0;
3086 dwarf2_queue = dwarf2_queue_tail = NULL;
3089 /* Read in full symbols for PST, and anything it depends on. */
3092 psymtab_to_symtab_1 (struct partial_symtab *pst)
3094 struct dwarf2_per_cu_data *per_cu;
3095 struct cleanup *back_to;
3098 for (i = 0; i < pst->number_of_dependencies; i++)
3099 if (!pst->dependencies[i]->readin)
3101 /* Inform about additional files that need to be read in. */
3104 /* FIXME: i18n: Need to make this a single string. */
3105 fputs_filtered (" ", gdb_stdout);
3107 fputs_filtered ("and ", gdb_stdout);
3109 printf_filtered ("%s...", pst->dependencies[i]->filename);
3110 wrap_here (""); /* Flush output */
3111 gdb_flush (gdb_stdout);
3113 psymtab_to_symtab_1 (pst->dependencies[i]);
3116 per_cu = (struct dwarf2_per_cu_data *) pst->read_symtab_private;
3120 /* It's an include file, no symbols to read for it.
3121 Everything is in the parent symtab. */
3126 back_to = make_cleanup (dwarf2_release_queue, NULL);
3128 queue_comp_unit (per_cu, pst->objfile);
3130 if (per_cu->from_debug_types)
3131 read_signatured_type_at_offset (pst->objfile, per_cu->offset);
3133 load_full_comp_unit (per_cu, pst->objfile);
3135 process_queue (pst->objfile);
3137 /* Age the cache, releasing compilation units that have not
3138 been used recently. */
3139 age_cached_comp_units ();
3141 do_cleanups (back_to);
3144 /* Load the DIEs associated with PER_CU into memory. */
3147 load_full_comp_unit (struct dwarf2_per_cu_data *per_cu, struct objfile *objfile)
3149 bfd *abfd = objfile->obfd;
3150 struct dwarf2_cu *cu;
3151 unsigned int offset;
3152 gdb_byte *info_ptr, *beg_of_comp_unit;
3153 struct cleanup *back_to, *free_cu_cleanup;
3154 struct attribute *attr;
3157 gdb_assert (! per_cu->from_debug_types);
3159 /* Set local variables from the partial symbol table info. */
3160 offset = per_cu->offset;
3162 info_ptr = dwarf2_per_objfile->info.buffer + offset;
3163 beg_of_comp_unit = info_ptr;
3165 cu = alloc_one_comp_unit (objfile);
3167 /* If an error occurs while loading, release our storage. */
3168 free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
3170 /* Read in the comp_unit header. */
3171 info_ptr = read_comp_unit_head (&cu->header, info_ptr, abfd);
3173 /* Complete the cu_header. */
3174 cu->header.offset = offset;
3175 cu->header.first_die_offset = info_ptr - beg_of_comp_unit;
3177 /* Read the abbrevs for this compilation unit. */
3178 dwarf2_read_abbrevs (abfd, cu);
3179 back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
3181 /* Link this compilation unit into the compilation unit tree. */
3183 cu->per_cu = per_cu;
3184 cu->type_hash = per_cu->type_hash;
3186 cu->dies = read_comp_unit (info_ptr, cu);
3188 /* We try not to read any attributes in this function, because not
3189 all objfiles needed for references have been loaded yet, and symbol
3190 table processing isn't initialized. But we have to set the CU language,
3191 or we won't be able to build types correctly. */
3192 attr = dwarf2_attr (cu->dies, DW_AT_language, cu);
3194 set_cu_language (DW_UNSND (attr), cu);
3196 set_cu_language (language_minimal, cu);
3198 /* Link this CU into read_in_chain. */
3199 per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
3200 dwarf2_per_objfile->read_in_chain = per_cu;
3202 do_cleanups (back_to);
3204 /* We've successfully allocated this compilation unit. Let our caller
3205 clean it up when finished with it. */
3206 discard_cleanups (free_cu_cleanup);
3209 /* Generate full symbol information for PST and CU, whose DIEs have
3210 already been loaded into memory. */
3213 process_full_comp_unit (struct dwarf2_per_cu_data *per_cu)
3215 struct partial_symtab *pst = per_cu->psymtab;
3216 struct dwarf2_cu *cu = per_cu->cu;
3217 struct objfile *objfile = pst->objfile;
3218 bfd *abfd = objfile->obfd;
3219 CORE_ADDR lowpc, highpc;
3220 struct symtab *symtab;
3221 struct cleanup *back_to;
3224 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3227 back_to = make_cleanup (really_free_pendings, NULL);
3229 cu->list_in_scope = &file_symbols;
3231 dwarf2_find_base_address (cu->dies, cu);
3233 /* Do line number decoding in read_file_scope () */
3234 process_die (cu->dies, cu);
3236 /* Some compilers don't define a DW_AT_high_pc attribute for the
3237 compilation unit. If the DW_AT_high_pc is missing, synthesize
3238 it, by scanning the DIE's below the compilation unit. */
3239 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
3241 symtab = end_symtab (highpc + baseaddr, objfile, SECT_OFF_TEXT (objfile));
3243 /* Set symtab language to language from DW_AT_language.
3244 If the compilation is from a C file generated by language preprocessors,
3245 do not set the language if it was already deduced by start_subfile. */
3247 && !(cu->language == language_c && symtab->language != language_c))
3249 symtab->language = cu->language;
3251 pst->symtab = symtab;
3254 do_cleanups (back_to);
3257 /* Process a die and its children. */
3260 process_die (struct die_info *die, struct dwarf2_cu *cu)
3264 case DW_TAG_padding:
3266 case DW_TAG_compile_unit:
3267 read_file_scope (die, cu);
3269 case DW_TAG_type_unit:
3270 read_type_unit_scope (die, cu);
3272 case DW_TAG_subprogram:
3273 case DW_TAG_inlined_subroutine:
3274 read_func_scope (die, cu);
3276 case DW_TAG_lexical_block:
3277 case DW_TAG_try_block:
3278 case DW_TAG_catch_block:
3279 read_lexical_block_scope (die, cu);
3281 case DW_TAG_class_type:
3282 case DW_TAG_interface_type:
3283 case DW_TAG_structure_type:
3284 case DW_TAG_union_type:
3285 process_structure_scope (die, cu);
3287 case DW_TAG_enumeration_type:
3288 process_enumeration_scope (die, cu);
3291 /* These dies have a type, but processing them does not create
3292 a symbol or recurse to process the children. Therefore we can
3293 read them on-demand through read_type_die. */
3294 case DW_TAG_subroutine_type:
3295 case DW_TAG_set_type:
3296 case DW_TAG_array_type:
3297 case DW_TAG_pointer_type:
3298 case DW_TAG_ptr_to_member_type:
3299 case DW_TAG_reference_type:
3300 case DW_TAG_string_type:
3303 case DW_TAG_base_type:
3304 case DW_TAG_subrange_type:
3305 case DW_TAG_typedef:
3306 /* Add a typedef symbol for the type definition, if it has a
3308 new_symbol (die, read_type_die (die, cu), cu);
3310 case DW_TAG_common_block:
3311 read_common_block (die, cu);
3313 case DW_TAG_common_inclusion:
3315 case DW_TAG_namespace:
3316 processing_has_namespace_info = 1;
3317 read_namespace (die, cu);
3320 read_module (die, cu);
3322 case DW_TAG_imported_declaration:
3323 case DW_TAG_imported_module:
3324 processing_has_namespace_info = 1;
3325 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
3326 || cu->language != language_fortran))
3327 complaint (&symfile_complaints, _("Tag '%s' has unexpected children"),
3328 dwarf_tag_name (die->tag));
3329 read_import_statement (die, cu);
3332 new_symbol (die, NULL, cu);
3337 /* Return the fully qualified name of DIE, based on its DW_AT_name.
3338 If scope qualifiers are appropriate they will be added. The result
3339 will be allocated on the objfile_obstack, or NULL if the DIE does
3343 dwarf2_full_name (struct die_info *die, struct dwarf2_cu *cu)
3345 struct attribute *attr;
3346 char *prefix, *name;
3347 struct ui_file *buf = NULL;
3349 name = dwarf2_name (die, cu);
3353 /* These are the only languages we know how to qualify names in. */
3354 if (cu->language != language_cplus
3355 && cu->language != language_java)
3358 /* If no prefix is necessary for this type of DIE, return the
3359 unqualified name. The other three tags listed could be handled
3360 in pdi_needs_namespace, but that requires broader changes. */
3361 if (!pdi_needs_namespace (die->tag)
3362 && die->tag != DW_TAG_subprogram
3363 && die->tag != DW_TAG_variable
3364 && die->tag != DW_TAG_member)
3367 prefix = determine_prefix (die, cu);
3368 if (*prefix != '\0')
3369 name = typename_concat (&cu->objfile->objfile_obstack, prefix,
3375 /* Read the import statement specified by the given die and record it. */
3378 read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
3380 struct attribute *import_attr;
3381 struct die_info *imported_die;
3382 struct dwarf2_cu *imported_cu;
3383 const char *imported_name;
3384 const char *imported_name_prefix;
3385 const char *import_prefix;
3386 char *canonical_name;
3388 import_attr = dwarf2_attr (die, DW_AT_import, cu);
3389 if (import_attr == NULL)
3391 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
3392 dwarf_tag_name (die->tag));
3397 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
3398 imported_name = dwarf2_name (imported_die, imported_cu);
3399 if (imported_name == NULL)
3401 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
3403 The import in the following code:
3417 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
3418 <52> DW_AT_decl_file : 1
3419 <53> DW_AT_decl_line : 6
3420 <54> DW_AT_import : <0x75>
3421 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
3423 <5b> DW_AT_decl_file : 1
3424 <5c> DW_AT_decl_line : 2
3425 <5d> DW_AT_type : <0x6e>
3427 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
3428 <76> DW_AT_byte_size : 4
3429 <77> DW_AT_encoding : 5 (signed)
3431 imports the wrong die ( 0x75 instead of 0x58 ).
3432 This case will be ignored until the gcc bug is fixed. */
3436 /* FIXME: dwarf2_name (die); for the local name after import. */
3438 /* Figure out where the statement is being imported to. */
3439 import_prefix = determine_prefix (die, cu);
3441 /* Figure out what the scope of the imported die is and prepend it
3442 to the name of the imported die. */
3443 imported_name_prefix = determine_prefix (imported_die, imported_cu);
3445 if (strlen (imported_name_prefix) > 0)
3447 canonical_name = alloca (strlen (imported_name_prefix) + 2 + strlen (imported_name) + 1);
3448 strcpy (canonical_name, imported_name_prefix);
3449 strcat (canonical_name, "::");
3450 strcat (canonical_name, imported_name);
3454 canonical_name = alloca (strlen (imported_name) + 1);
3455 strcpy (canonical_name, imported_name);
3458 using_directives = cp_add_using (import_prefix,canonical_name, using_directives);
3462 initialize_cu_func_list (struct dwarf2_cu *cu)
3464 cu->first_fn = cu->last_fn = cu->cached_fn = NULL;
3468 free_cu_line_header (void *arg)
3470 struct dwarf2_cu *cu = arg;
3472 free_line_header (cu->line_header);
3473 cu->line_header = NULL;
3477 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
3479 struct objfile *objfile = cu->objfile;
3480 struct comp_unit_head *cu_header = &cu->header;
3481 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
3482 CORE_ADDR lowpc = ((CORE_ADDR) -1);
3483 CORE_ADDR highpc = ((CORE_ADDR) 0);
3484 struct attribute *attr;
3486 char *comp_dir = NULL;
3487 struct die_info *child_die;
3488 bfd *abfd = objfile->obfd;
3489 struct line_header *line_header = 0;
3492 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3494 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
3496 /* If we didn't find a lowpc, set it to highpc to avoid complaints
3497 from finish_block. */
3498 if (lowpc == ((CORE_ADDR) -1))
3503 /* Find the filename. Do not use dwarf2_name here, since the filename
3504 is not a source language identifier. */
3505 attr = dwarf2_attr (die, DW_AT_name, cu);
3508 name = DW_STRING (attr);
3511 attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
3513 comp_dir = DW_STRING (attr);
3514 else if (name != NULL && IS_ABSOLUTE_PATH (name))
3516 comp_dir = ldirname (name);
3517 if (comp_dir != NULL)
3518 make_cleanup (xfree, comp_dir);
3520 if (comp_dir != NULL)
3522 /* Irix 6.2 native cc prepends <machine>.: to the compilation
3523 directory, get rid of it. */
3524 char *cp = strchr (comp_dir, ':');
3526 if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/')
3533 attr = dwarf2_attr (die, DW_AT_language, cu);
3536 set_cu_language (DW_UNSND (attr), cu);
3539 attr = dwarf2_attr (die, DW_AT_producer, cu);
3541 cu->producer = DW_STRING (attr);
3543 /* We assume that we're processing GCC output. */
3544 processing_gcc_compilation = 2;
3546 processing_has_namespace_info = 0;
3548 start_symtab (name, comp_dir, lowpc);
3549 record_debugformat ("DWARF 2");
3550 record_producer (cu->producer);
3552 initialize_cu_func_list (cu);
3554 /* Decode line number information if present. We do this before
3555 processing child DIEs, so that the line header table is available
3556 for DW_AT_decl_file. */
3557 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
3560 unsigned int line_offset = DW_UNSND (attr);
3561 line_header = dwarf_decode_line_header (line_offset, abfd, cu);
3564 cu->line_header = line_header;
3565 make_cleanup (free_cu_line_header, cu);
3566 dwarf_decode_lines (line_header, comp_dir, abfd, cu, NULL);
3570 /* Process all dies in compilation unit. */
3571 if (die->child != NULL)
3573 child_die = die->child;
3574 while (child_die && child_die->tag)
3576 process_die (child_die, cu);
3577 child_die = sibling_die (child_die);
3581 /* Decode macro information, if present. Dwarf 2 macro information
3582 refers to information in the line number info statement program
3583 header, so we can only read it if we've read the header
3585 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
3586 if (attr && line_header)
3588 unsigned int macro_offset = DW_UNSND (attr);
3589 dwarf_decode_macros (line_header, macro_offset,
3590 comp_dir, abfd, cu);
3592 do_cleanups (back_to);
3595 /* For TUs we want to skip the first top level sibling if it's not the
3596 actual type being defined by this TU. In this case the first top
3597 level sibling is there to provide context only. */
3600 read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
3602 struct objfile *objfile = cu->objfile;
3603 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
3605 struct attribute *attr;
3607 char *comp_dir = NULL;
3608 struct die_info *child_die;
3609 bfd *abfd = objfile->obfd;
3610 struct line_header *line_header = 0;
3612 /* start_symtab needs a low pc, but we don't really have one.
3613 Do what read_file_scope would do in the absence of such info. */
3614 lowpc = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3616 /* Find the filename. Do not use dwarf2_name here, since the filename
3617 is not a source language identifier. */
3618 attr = dwarf2_attr (die, DW_AT_name, cu);
3620 name = DW_STRING (attr);
3622 attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
3624 comp_dir = DW_STRING (attr);
3625 else if (name != NULL && IS_ABSOLUTE_PATH (name))
3627 comp_dir = ldirname (name);
3628 if (comp_dir != NULL)
3629 make_cleanup (xfree, comp_dir);
3635 attr = dwarf2_attr (die, DW_AT_language, cu);
3637 set_cu_language (DW_UNSND (attr), cu);
3639 /* This isn't technically needed today. It is done for symmetry
3640 with read_file_scope. */
3641 attr = dwarf2_attr (die, DW_AT_producer, cu);
3643 cu->producer = DW_STRING (attr);
3645 /* We assume that we're processing GCC output. */
3646 processing_gcc_compilation = 2;
3648 processing_has_namespace_info = 0;
3650 start_symtab (name, comp_dir, lowpc);
3651 record_debugformat ("DWARF 2");
3652 record_producer (cu->producer);
3654 /* Process the dies in the type unit. */
3655 if (die->child == NULL)
3657 dump_die_for_error (die);
3658 error (_("Dwarf Error: Missing children for type unit [in module %s]"),
3659 bfd_get_filename (abfd));
3662 child_die = die->child;
3664 while (child_die && child_die->tag)
3666 process_die (child_die, cu);
3668 child_die = sibling_die (child_die);
3671 do_cleanups (back_to);
3675 add_to_cu_func_list (const char *name, CORE_ADDR lowpc, CORE_ADDR highpc,
3676 struct dwarf2_cu *cu)
3678 struct function_range *thisfn;
3680 thisfn = (struct function_range *)
3681 obstack_alloc (&cu->comp_unit_obstack, sizeof (struct function_range));
3682 thisfn->name = name;
3683 thisfn->lowpc = lowpc;
3684 thisfn->highpc = highpc;
3685 thisfn->seen_line = 0;
3686 thisfn->next = NULL;
3688 if (cu->last_fn == NULL)
3689 cu->first_fn = thisfn;
3691 cu->last_fn->next = thisfn;
3693 cu->last_fn = thisfn;
3696 /* qsort helper for inherit_abstract_dies. */
3699 unsigned_int_compar (const void *ap, const void *bp)
3701 unsigned int a = *(unsigned int *) ap;
3702 unsigned int b = *(unsigned int *) bp;
3704 return (a > b) - (b > a);
3707 /* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
3708 Inherit only the children of the DW_AT_abstract_origin DIE not being already
3709 referenced by DW_AT_abstract_origin from the children of the current DIE. */
3712 inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
3714 struct die_info *child_die;
3715 unsigned die_children_count;
3716 /* CU offsets which were referenced by children of the current DIE. */
3718 unsigned *offsets_end, *offsetp;
3719 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
3720 struct die_info *origin_die;
3721 /* Iterator of the ORIGIN_DIE children. */
3722 struct die_info *origin_child_die;
3723 struct cleanup *cleanups;
3724 struct attribute *attr;
3726 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
3730 origin_die = follow_die_ref (die, attr, &cu);
3731 if (die->tag != origin_die->tag
3732 && !(die->tag == DW_TAG_inlined_subroutine
3733 && origin_die->tag == DW_TAG_subprogram))
3734 complaint (&symfile_complaints,
3735 _("DIE 0x%x and its abstract origin 0x%x have different tags"),
3736 die->offset, origin_die->offset);
3738 child_die = die->child;
3739 die_children_count = 0;
3740 while (child_die && child_die->tag)
3742 child_die = sibling_die (child_die);
3743 die_children_count++;
3745 offsets = xmalloc (sizeof (*offsets) * die_children_count);
3746 cleanups = make_cleanup (xfree, offsets);
3748 offsets_end = offsets;
3749 child_die = die->child;
3750 while (child_die && child_die->tag)
3752 /* For each CHILD_DIE, find the corresponding child of
3753 ORIGIN_DIE. If there is more than one layer of
3754 DW_AT_abstract_origin, follow them all; there shouldn't be,
3755 but GCC versions at least through 4.4 generate this (GCC PR
3757 struct die_info *child_origin_die = child_die;
3760 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin, cu);
3763 child_origin_die = follow_die_ref (child_origin_die, attr, &cu);
3766 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
3767 counterpart may exist. */
3768 if (child_origin_die != child_die)
3770 if (child_die->tag != child_origin_die->tag
3771 && !(child_die->tag == DW_TAG_inlined_subroutine
3772 && child_origin_die->tag == DW_TAG_subprogram))
3773 complaint (&symfile_complaints,
3774 _("Child DIE 0x%x and its abstract origin 0x%x have "
3775 "different tags"), child_die->offset,
3776 child_origin_die->offset);
3777 if (child_origin_die->parent != origin_die)
3778 complaint (&symfile_complaints,
3779 _("Child DIE 0x%x and its abstract origin 0x%x have "
3780 "different parents"), child_die->offset,
3781 child_origin_die->offset);
3783 *offsets_end++ = child_origin_die->offset;
3785 child_die = sibling_die (child_die);
3787 qsort (offsets, offsets_end - offsets, sizeof (*offsets),
3788 unsigned_int_compar);
3789 for (offsetp = offsets + 1; offsetp < offsets_end; offsetp++)
3790 if (offsetp[-1] == *offsetp)
3791 complaint (&symfile_complaints, _("Multiple children of DIE 0x%x refer "
3792 "to DIE 0x%x as their abstract origin"),
3793 die->offset, *offsetp);
3796 origin_child_die = origin_die->child;
3797 while (origin_child_die && origin_child_die->tag)
3799 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
3800 while (offsetp < offsets_end && *offsetp < origin_child_die->offset)
3802 if (offsetp >= offsets_end || *offsetp > origin_child_die->offset)
3804 /* Found that ORIGIN_CHILD_DIE is really not referenced. */
3805 process_die (origin_child_die, cu);
3807 origin_child_die = sibling_die (origin_child_die);
3810 do_cleanups (cleanups);
3814 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
3816 struct objfile *objfile = cu->objfile;
3817 struct context_stack *new;
3820 struct die_info *child_die;
3821 struct attribute *attr, *call_line, *call_file;
3824 struct block *block;
3825 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
3829 /* If we do not have call site information, we can't show the
3830 caller of this inlined function. That's too confusing, so
3831 only use the scope for local variables. */
3832 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
3833 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
3834 if (call_line == NULL || call_file == NULL)
3836 read_lexical_block_scope (die, cu);
3841 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3843 name = dwarf2_linkage_name (die, cu);
3845 /* Ignore functions with missing or empty names and functions with
3846 missing or invalid low and high pc attributes. */
3847 if (name == NULL || !dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
3853 /* Record the function range for dwarf_decode_lines. */
3854 add_to_cu_func_list (name, lowpc, highpc, cu);
3856 new = push_context (0, lowpc);
3857 new->name = new_symbol (die, read_type_die (die, cu), cu);
3859 /* If there is a location expression for DW_AT_frame_base, record
3861 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
3863 /* FIXME: cagney/2004-01-26: The DW_AT_frame_base's location
3864 expression is being recorded directly in the function's symbol
3865 and not in a separate frame-base object. I guess this hack is
3866 to avoid adding some sort of frame-base adjunct/annex to the
3867 function's symbol :-(. The problem with doing this is that it
3868 results in a function symbol with a location expression that
3869 has nothing to do with the location of the function, ouch! The
3870 relationship should be: a function's symbol has-a frame base; a
3871 frame-base has-a location expression. */
3872 dwarf2_symbol_mark_computed (attr, new->name, cu);
3874 cu->list_in_scope = &local_symbols;
3876 if (die->child != NULL)
3878 child_die = die->child;
3879 while (child_die && child_die->tag)
3881 process_die (child_die, cu);
3882 child_die = sibling_die (child_die);
3886 inherit_abstract_dies (die, cu);
3888 new = pop_context ();
3889 /* Make a block for the local symbols within. */
3890 block = finish_block (new->name, &local_symbols, new->old_blocks,
3891 lowpc, highpc, objfile);
3893 /* For C++, set the block's scope. */
3894 if (cu->language == language_cplus)
3895 cp_set_block_scope (new->name, block, &objfile->objfile_obstack,
3896 determine_prefix (die, cu),
3897 processing_has_namespace_info);
3899 /* If we have address ranges, record them. */
3900 dwarf2_record_block_ranges (die, block, baseaddr, cu);
3902 /* In C++, we can have functions nested inside functions (e.g., when
3903 a function declares a class that has methods). This means that
3904 when we finish processing a function scope, we may need to go
3905 back to building a containing block's symbol lists. */
3906 local_symbols = new->locals;
3907 param_symbols = new->params;
3908 using_directives = new->using_directives;
3910 /* If we've finished processing a top-level function, subsequent
3911 symbols go in the file symbol list. */
3912 if (outermost_context_p ())
3913 cu->list_in_scope = &file_symbols;
3916 /* Process all the DIES contained within a lexical block scope. Start
3917 a new scope, process the dies, and then close the scope. */
3920 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
3922 struct objfile *objfile = cu->objfile;
3923 struct context_stack *new;
3924 CORE_ADDR lowpc, highpc;
3925 struct die_info *child_die;
3928 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3930 /* Ignore blocks with missing or invalid low and high pc attributes. */
3931 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
3932 as multiple lexical blocks? Handling children in a sane way would
3933 be nasty. Might be easier to properly extend generic blocks to
3935 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
3940 push_context (0, lowpc);
3941 if (die->child != NULL)
3943 child_die = die->child;
3944 while (child_die && child_die->tag)
3946 process_die (child_die, cu);
3947 child_die = sibling_die (child_die);
3950 new = pop_context ();
3952 if (local_symbols != NULL)
3955 = finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
3958 /* Note that recording ranges after traversing children, as we
3959 do here, means that recording a parent's ranges entails
3960 walking across all its children's ranges as they appear in
3961 the address map, which is quadratic behavior.
3963 It would be nicer to record the parent's ranges before
3964 traversing its children, simply overriding whatever you find
3965 there. But since we don't even decide whether to create a
3966 block until after we've traversed its children, that's hard
3968 dwarf2_record_block_ranges (die, block, baseaddr, cu);
3970 local_symbols = new->locals;
3971 using_directives = new->using_directives;
3974 /* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
3975 Return 1 if the attributes are present and valid, otherwise, return 0.
3976 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
3979 dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
3980 CORE_ADDR *high_return, struct dwarf2_cu *cu,
3981 struct partial_symtab *ranges_pst)
3983 struct objfile *objfile = cu->objfile;
3984 struct comp_unit_head *cu_header = &cu->header;
3985 bfd *obfd = objfile->obfd;
3986 unsigned int addr_size = cu_header->addr_size;
3987 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
3988 /* Base address selection entry. */
3999 found_base = cu->base_known;
4000 base = cu->base_address;
4002 if (offset >= dwarf2_per_objfile->ranges.size)
4004 complaint (&symfile_complaints,
4005 _("Offset %d out of bounds for DW_AT_ranges attribute"),
4009 buffer = dwarf2_per_objfile->ranges.buffer + offset;
4011 /* Read in the largest possible address. */
4012 marker = read_address (obfd, buffer, cu, &dummy);
4013 if ((marker & mask) == mask)
4015 /* If we found the largest possible address, then
4016 read the base address. */
4017 base = read_address (obfd, buffer + addr_size, cu, &dummy);
4018 buffer += 2 * addr_size;
4019 offset += 2 * addr_size;
4025 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
4029 CORE_ADDR range_beginning, range_end;
4031 range_beginning = read_address (obfd, buffer, cu, &dummy);
4032 buffer += addr_size;
4033 range_end = read_address (obfd, buffer, cu, &dummy);
4034 buffer += addr_size;
4035 offset += 2 * addr_size;
4037 /* An end of list marker is a pair of zero addresses. */
4038 if (range_beginning == 0 && range_end == 0)
4039 /* Found the end of list entry. */
4042 /* Each base address selection entry is a pair of 2 values.
4043 The first is the largest possible address, the second is
4044 the base address. Check for a base address here. */
4045 if ((range_beginning & mask) == mask)
4047 /* If we found the largest possible address, then
4048 read the base address. */
4049 base = read_address (obfd, buffer + addr_size, cu, &dummy);
4056 /* We have no valid base address for the ranges
4058 complaint (&symfile_complaints,
4059 _("Invalid .debug_ranges data (no base address)"));
4063 range_beginning += base;
4066 if (ranges_pst != NULL && range_beginning < range_end)
4067 addrmap_set_empty (objfile->psymtabs_addrmap,
4068 range_beginning + baseaddr, range_end - 1 + baseaddr,
4071 /* FIXME: This is recording everything as a low-high
4072 segment of consecutive addresses. We should have a
4073 data structure for discontiguous block ranges
4077 low = range_beginning;
4083 if (range_beginning < low)
4084 low = range_beginning;
4085 if (range_end > high)
4091 /* If the first entry is an end-of-list marker, the range
4092 describes an empty scope, i.e. no instructions. */
4098 *high_return = high;
4102 /* Get low and high pc attributes from a die. Return 1 if the attributes
4103 are present and valid, otherwise, return 0. Return -1 if the range is
4104 discontinuous, i.e. derived from DW_AT_ranges information. */
4106 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
4107 CORE_ADDR *highpc, struct dwarf2_cu *cu,
4108 struct partial_symtab *pst)
4110 struct attribute *attr;
4115 attr = dwarf2_attr (die, DW_AT_high_pc, cu);
4118 high = DW_ADDR (attr);
4119 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
4121 low = DW_ADDR (attr);
4123 /* Found high w/o low attribute. */
4126 /* Found consecutive range of addresses. */
4131 attr = dwarf2_attr (die, DW_AT_ranges, cu);
4134 /* Value of the DW_AT_ranges attribute is the offset in the
4135 .debug_ranges section. */
4136 if (!dwarf2_ranges_read (DW_UNSND (attr), &low, &high, cu, pst))
4138 /* Found discontinuous range of addresses. */
4146 /* When using the GNU linker, .gnu.linkonce. sections are used to
4147 eliminate duplicate copies of functions and vtables and such.
4148 The linker will arbitrarily choose one and discard the others.
4149 The AT_*_pc values for such functions refer to local labels in
4150 these sections. If the section from that file was discarded, the
4151 labels are not in the output, so the relocs get a value of 0.
4152 If this is a discarded function, mark the pc bounds as invalid,
4153 so that GDB will ignore it. */
4154 if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
4162 /* Assuming that DIE represents a subprogram DIE or a lexical block, get
4163 its low and high PC addresses. Do nothing if these addresses could not
4164 be determined. Otherwise, set LOWPC to the low address if it is smaller,
4165 and HIGHPC to the high address if greater than HIGHPC. */
4168 dwarf2_get_subprogram_pc_bounds (struct die_info *die,
4169 CORE_ADDR *lowpc, CORE_ADDR *highpc,
4170 struct dwarf2_cu *cu)
4172 CORE_ADDR low, high;
4173 struct die_info *child = die->child;
4175 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL))
4177 *lowpc = min (*lowpc, low);
4178 *highpc = max (*highpc, high);
4181 /* If the language does not allow nested subprograms (either inside
4182 subprograms or lexical blocks), we're done. */
4183 if (cu->language != language_ada)
4186 /* Check all the children of the given DIE. If it contains nested
4187 subprograms, then check their pc bounds. Likewise, we need to
4188 check lexical blocks as well, as they may also contain subprogram
4190 while (child && child->tag)
4192 if (child->tag == DW_TAG_subprogram
4193 || child->tag == DW_TAG_lexical_block)
4194 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
4195 child = sibling_die (child);
4199 /* Get the low and high pc's represented by the scope DIE, and store
4200 them in *LOWPC and *HIGHPC. If the correct values can't be
4201 determined, set *LOWPC to -1 and *HIGHPC to 0. */
4204 get_scope_pc_bounds (struct die_info *die,
4205 CORE_ADDR *lowpc, CORE_ADDR *highpc,
4206 struct dwarf2_cu *cu)
4208 CORE_ADDR best_low = (CORE_ADDR) -1;
4209 CORE_ADDR best_high = (CORE_ADDR) 0;
4210 CORE_ADDR current_low, current_high;
4212 if (dwarf2_get_pc_bounds (die, ¤t_low, ¤t_high, cu, NULL))
4214 best_low = current_low;
4215 best_high = current_high;
4219 struct die_info *child = die->child;
4221 while (child && child->tag)
4223 switch (child->tag) {
4224 case DW_TAG_subprogram:
4225 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
4227 case DW_TAG_namespace:
4228 /* FIXME: carlton/2004-01-16: Should we do this for
4229 DW_TAG_class_type/DW_TAG_structure_type, too? I think
4230 that current GCC's always emit the DIEs corresponding
4231 to definitions of methods of classes as children of a
4232 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
4233 the DIEs giving the declarations, which could be
4234 anywhere). But I don't see any reason why the
4235 standards says that they have to be there. */
4236 get_scope_pc_bounds (child, ¤t_low, ¤t_high, cu);
4238 if (current_low != ((CORE_ADDR) -1))
4240 best_low = min (best_low, current_low);
4241 best_high = max (best_high, current_high);
4249 child = sibling_die (child);
4254 *highpc = best_high;
4257 /* Record the address ranges for BLOCK, offset by BASEADDR, as given
4260 dwarf2_record_block_ranges (struct die_info *die, struct block *block,
4261 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
4263 struct attribute *attr;
4265 attr = dwarf2_attr (die, DW_AT_high_pc, cu);
4268 CORE_ADDR high = DW_ADDR (attr);
4269 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
4272 CORE_ADDR low = DW_ADDR (attr);
4273 record_block_range (block, baseaddr + low, baseaddr + high - 1);
4277 attr = dwarf2_attr (die, DW_AT_ranges, cu);
4280 bfd *obfd = cu->objfile->obfd;
4282 /* The value of the DW_AT_ranges attribute is the offset of the
4283 address range list in the .debug_ranges section. */
4284 unsigned long offset = DW_UNSND (attr);
4285 gdb_byte *buffer = dwarf2_per_objfile->ranges.buffer + offset;
4287 /* For some target architectures, but not others, the
4288 read_address function sign-extends the addresses it returns.
4289 To recognize base address selection entries, we need a
4291 unsigned int addr_size = cu->header.addr_size;
4292 CORE_ADDR base_select_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
4294 /* The base address, to which the next pair is relative. Note
4295 that this 'base' is a DWARF concept: most entries in a range
4296 list are relative, to reduce the number of relocs against the
4297 debugging information. This is separate from this function's
4298 'baseaddr' argument, which GDB uses to relocate debugging
4299 information from a shared library based on the address at
4300 which the library was loaded. */
4301 CORE_ADDR base = cu->base_address;
4302 int base_known = cu->base_known;
4304 if (offset >= dwarf2_per_objfile->ranges.size)
4306 complaint (&symfile_complaints,
4307 _("Offset %lu out of bounds for DW_AT_ranges attribute"),
4314 unsigned int bytes_read;
4315 CORE_ADDR start, end;
4317 start = read_address (obfd, buffer, cu, &bytes_read);
4318 buffer += bytes_read;
4319 end = read_address (obfd, buffer, cu, &bytes_read);
4320 buffer += bytes_read;
4322 /* Did we find the end of the range list? */
4323 if (start == 0 && end == 0)
4326 /* Did we find a base address selection entry? */
4327 else if ((start & base_select_mask) == base_select_mask)
4333 /* We found an ordinary address range. */
4338 complaint (&symfile_complaints,
4339 _("Invalid .debug_ranges data (no base address)"));
4343 record_block_range (block,
4344 baseaddr + base + start,
4345 baseaddr + base + end - 1);
4351 /* Add an aggregate field to the field list. */
4354 dwarf2_add_field (struct field_info *fip, struct die_info *die,
4355 struct dwarf2_cu *cu)
4357 struct objfile *objfile = cu->objfile;
4358 struct gdbarch *gdbarch = get_objfile_arch (objfile);
4359 struct nextfield *new_field;
4360 struct attribute *attr;
4362 char *fieldname = "";
4364 /* Allocate a new field list entry and link it in. */
4365 new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
4366 make_cleanup (xfree, new_field);
4367 memset (new_field, 0, sizeof (struct nextfield));
4369 if (die->tag == DW_TAG_inheritance)
4371 new_field->next = fip->baseclasses;
4372 fip->baseclasses = new_field;
4376 new_field->next = fip->fields;
4377 fip->fields = new_field;
4381 /* Handle accessibility and virtuality of field.
4382 The default accessibility for members is public, the default
4383 accessibility for inheritance is private. */
4384 if (die->tag != DW_TAG_inheritance)
4385 new_field->accessibility = DW_ACCESS_public;
4387 new_field->accessibility = DW_ACCESS_private;
4388 new_field->virtuality = DW_VIRTUALITY_none;
4390 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
4392 new_field->accessibility = DW_UNSND (attr);
4393 if (new_field->accessibility != DW_ACCESS_public)
4394 fip->non_public_fields = 1;
4395 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
4397 new_field->virtuality = DW_UNSND (attr);
4399 fp = &new_field->field;
4401 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
4403 /* Data member other than a C++ static data member. */
4405 /* Get type of field. */
4406 fp->type = die_type (die, cu);
4408 SET_FIELD_BITPOS (*fp, 0);
4410 /* Get bit size of field (zero if none). */
4411 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
4414 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
4418 FIELD_BITSIZE (*fp) = 0;
4421 /* Get bit offset of field. */
4422 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
4425 int byte_offset = 0;
4427 if (attr_form_is_section_offset (attr))
4428 dwarf2_complex_location_expr_complaint ();
4429 else if (attr_form_is_constant (attr))
4430 byte_offset = dwarf2_get_attr_constant_value (attr, 0);
4431 else if (attr_form_is_block (attr))
4432 byte_offset = decode_locdesc (DW_BLOCK (attr), cu);
4434 dwarf2_complex_location_expr_complaint ();
4436 SET_FIELD_BITPOS (*fp, byte_offset * bits_per_byte);
4438 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
4441 if (gdbarch_bits_big_endian (gdbarch))
4443 /* For big endian bits, the DW_AT_bit_offset gives the
4444 additional bit offset from the MSB of the containing
4445 anonymous object to the MSB of the field. We don't
4446 have to do anything special since we don't need to
4447 know the size of the anonymous object. */
4448 FIELD_BITPOS (*fp) += DW_UNSND (attr);
4452 /* For little endian bits, compute the bit offset to the
4453 MSB of the anonymous object, subtract off the number of
4454 bits from the MSB of the field to the MSB of the
4455 object, and then subtract off the number of bits of
4456 the field itself. The result is the bit offset of
4457 the LSB of the field. */
4459 int bit_offset = DW_UNSND (attr);
4461 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
4464 /* The size of the anonymous object containing
4465 the bit field is explicit, so use the
4466 indicated size (in bytes). */
4467 anonymous_size = DW_UNSND (attr);
4471 /* The size of the anonymous object containing
4472 the bit field must be inferred from the type
4473 attribute of the data member containing the
4475 anonymous_size = TYPE_LENGTH (fp->type);
4477 FIELD_BITPOS (*fp) += anonymous_size * bits_per_byte
4478 - bit_offset - FIELD_BITSIZE (*fp);
4482 /* Get name of field. */
4483 fieldname = dwarf2_name (die, cu);
4484 if (fieldname == NULL)
4487 /* The name is already allocated along with this objfile, so we don't
4488 need to duplicate it for the type. */
4489 fp->name = fieldname;
4491 /* Change accessibility for artificial fields (e.g. virtual table
4492 pointer or virtual base class pointer) to private. */
4493 if (dwarf2_attr (die, DW_AT_artificial, cu))
4495 FIELD_ARTIFICIAL (*fp) = 1;
4496 new_field->accessibility = DW_ACCESS_private;
4497 fip->non_public_fields = 1;
4500 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
4502 /* C++ static member. */
4504 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
4505 is a declaration, but all versions of G++ as of this writing
4506 (so through at least 3.2.1) incorrectly generate
4507 DW_TAG_variable tags. */
4511 /* Get name of field. */
4512 fieldname = dwarf2_name (die, cu);
4513 if (fieldname == NULL)
4516 /* Get physical name. */
4517 physname = dwarf2_linkage_name (die, cu);
4519 /* The name is already allocated along with this objfile, so we don't
4520 need to duplicate it for the type. */
4521 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
4522 FIELD_TYPE (*fp) = die_type (die, cu);
4523 FIELD_NAME (*fp) = fieldname;
4525 else if (die->tag == DW_TAG_inheritance)
4527 /* C++ base class field. */
4528 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
4531 int byte_offset = 0;
4533 if (attr_form_is_section_offset (attr))
4534 dwarf2_complex_location_expr_complaint ();
4535 else if (attr_form_is_constant (attr))
4536 byte_offset = dwarf2_get_attr_constant_value (attr, 0);
4537 else if (attr_form_is_block (attr))
4538 byte_offset = decode_locdesc (DW_BLOCK (attr), cu);
4540 dwarf2_complex_location_expr_complaint ();
4542 SET_FIELD_BITPOS (*fp, byte_offset * bits_per_byte);
4544 FIELD_BITSIZE (*fp) = 0;
4545 FIELD_TYPE (*fp) = die_type (die, cu);
4546 FIELD_NAME (*fp) = type_name_no_tag (fp->type);
4547 fip->nbaseclasses++;
4551 /* Create the vector of fields, and attach it to the type. */
4554 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
4555 struct dwarf2_cu *cu)
4557 int nfields = fip->nfields;
4559 /* Record the field count, allocate space for the array of fields,
4560 and create blank accessibility bitfields if necessary. */
4561 TYPE_NFIELDS (type) = nfields;
4562 TYPE_FIELDS (type) = (struct field *)
4563 TYPE_ALLOC (type, sizeof (struct field) * nfields);
4564 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
4566 if (fip->non_public_fields)
4568 ALLOCATE_CPLUS_STRUCT_TYPE (type);
4570 TYPE_FIELD_PRIVATE_BITS (type) =
4571 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4572 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
4574 TYPE_FIELD_PROTECTED_BITS (type) =
4575 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4576 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
4578 TYPE_FIELD_IGNORE_BITS (type) =
4579 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4580 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
4583 /* If the type has baseclasses, allocate and clear a bit vector for
4584 TYPE_FIELD_VIRTUAL_BITS. */
4585 if (fip->nbaseclasses)
4587 int num_bytes = B_BYTES (fip->nbaseclasses);
4588 unsigned char *pointer;
4590 ALLOCATE_CPLUS_STRUCT_TYPE (type);
4591 pointer = TYPE_ALLOC (type, num_bytes);
4592 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
4593 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
4594 TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
4597 /* Copy the saved-up fields into the field vector. Start from the head
4598 of the list, adding to the tail of the field array, so that they end
4599 up in the same order in the array in which they were added to the list. */
4600 while (nfields-- > 0)
4602 struct nextfield *fieldp;
4606 fieldp = fip->fields;
4607 fip->fields = fieldp->next;
4611 fieldp = fip->baseclasses;
4612 fip->baseclasses = fieldp->next;
4615 TYPE_FIELD (type, nfields) = fieldp->field;
4616 switch (fieldp->accessibility)
4618 case DW_ACCESS_private:
4619 SET_TYPE_FIELD_PRIVATE (type, nfields);
4622 case DW_ACCESS_protected:
4623 SET_TYPE_FIELD_PROTECTED (type, nfields);
4626 case DW_ACCESS_public:
4630 /* Unknown accessibility. Complain and treat it as public. */
4632 complaint (&symfile_complaints, _("unsupported accessibility %d"),
4633 fieldp->accessibility);
4637 if (nfields < fip->nbaseclasses)
4639 switch (fieldp->virtuality)
4641 case DW_VIRTUALITY_virtual:
4642 case DW_VIRTUALITY_pure_virtual:
4643 SET_TYPE_FIELD_VIRTUAL (type, nfields);
4650 /* Add a member function to the proper fieldlist. */
4653 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
4654 struct type *type, struct dwarf2_cu *cu)
4656 struct objfile *objfile = cu->objfile;
4657 struct attribute *attr;
4658 struct fnfieldlist *flp;
4660 struct fn_field *fnp;
4663 struct nextfnfield *new_fnfield;
4664 struct type *this_type;
4666 /* Get name of member function. */
4667 fieldname = dwarf2_name (die, cu);
4668 if (fieldname == NULL)
4671 /* Get the mangled name. */
4672 physname = dwarf2_linkage_name (die, cu);
4674 /* Look up member function name in fieldlist. */
4675 for (i = 0; i < fip->nfnfields; i++)
4677 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
4681 /* Create new list element if necessary. */
4682 if (i < fip->nfnfields)
4683 flp = &fip->fnfieldlists[i];
4686 if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
4688 fip->fnfieldlists = (struct fnfieldlist *)
4689 xrealloc (fip->fnfieldlists,
4690 (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
4691 * sizeof (struct fnfieldlist));
4692 if (fip->nfnfields == 0)
4693 make_cleanup (free_current_contents, &fip->fnfieldlists);
4695 flp = &fip->fnfieldlists[fip->nfnfields];
4696 flp->name = fieldname;
4702 /* Create a new member function field and chain it to the field list
4704 new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
4705 make_cleanup (xfree, new_fnfield);
4706 memset (new_fnfield, 0, sizeof (struct nextfnfield));
4707 new_fnfield->next = flp->head;
4708 flp->head = new_fnfield;
4711 /* Fill in the member function field info. */
4712 fnp = &new_fnfield->fnfield;
4713 /* The name is already allocated along with this objfile, so we don't
4714 need to duplicate it for the type. */
4715 fnp->physname = physname ? physname : "";
4716 fnp->type = alloc_type (objfile);
4717 this_type = read_type_die (die, cu);
4718 if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
4720 int nparams = TYPE_NFIELDS (this_type);
4722 /* TYPE is the domain of this method, and THIS_TYPE is the type
4723 of the method itself (TYPE_CODE_METHOD). */
4724 smash_to_method_type (fnp->type, type,
4725 TYPE_TARGET_TYPE (this_type),
4726 TYPE_FIELDS (this_type),
4727 TYPE_NFIELDS (this_type),
4728 TYPE_VARARGS (this_type));
4730 /* Handle static member functions.
4731 Dwarf2 has no clean way to discern C++ static and non-static
4732 member functions. G++ helps GDB by marking the first
4733 parameter for non-static member functions (which is the
4734 this pointer) as artificial. We obtain this information
4735 from read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
4736 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
4737 fnp->voffset = VOFFSET_STATIC;
4740 complaint (&symfile_complaints, _("member function type missing for '%s'"),
4743 /* Get fcontext from DW_AT_containing_type if present. */
4744 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
4745 fnp->fcontext = die_containing_type (die, cu);
4747 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const
4748 and is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
4750 /* Get accessibility. */
4751 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
4754 switch (DW_UNSND (attr))
4756 case DW_ACCESS_private:
4757 fnp->is_private = 1;
4759 case DW_ACCESS_protected:
4760 fnp->is_protected = 1;
4765 /* Check for artificial methods. */
4766 attr = dwarf2_attr (die, DW_AT_artificial, cu);
4767 if (attr && DW_UNSND (attr) != 0)
4768 fnp->is_artificial = 1;
4770 /* Get index in virtual function table if it is a virtual member
4771 function. For GCC, this is an offset in the appropriate
4772 virtual table, as specified by DW_AT_containing_type. For
4773 everyone else, it is an expression to be evaluated relative
4774 to the object address. */
4776 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
4777 if (attr && fnp->fcontext)
4779 /* Support the .debug_loc offsets */
4780 if (attr_form_is_block (attr))
4782 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
4784 else if (attr_form_is_section_offset (attr))
4786 dwarf2_complex_location_expr_complaint ();
4790 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
4796 /* We only support trivial expressions here. This hack will work
4797 for v3 classes, which always start with the vtable pointer. */
4798 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0
4799 && DW_BLOCK (attr)->data[0] == DW_OP_deref)
4801 struct dwarf_block blk;
4802 blk.size = DW_BLOCK (attr)->size - 1;
4803 blk.data = DW_BLOCK (attr)->data + 1;
4804 fnp->voffset = decode_locdesc (&blk, cu);
4805 if ((fnp->voffset % cu->header.addr_size) != 0)
4806 dwarf2_complex_location_expr_complaint ();
4808 fnp->voffset /= cu->header.addr_size;
4810 fnp->fcontext = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
4813 dwarf2_complex_location_expr_complaint ();
4817 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
4818 if (attr && DW_UNSND (attr))
4820 /* GCC does this, as of 2008-08-25; PR debug/37237. */
4821 complaint (&symfile_complaints,
4822 _("Member function \"%s\" (offset %d) is virtual but the vtable offset is not specified"),
4823 fieldname, die->offset);
4824 TYPE_CPLUS_DYNAMIC (type) = 1;
4829 /* Create the vector of member function fields, and attach it to the type. */
4832 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
4833 struct dwarf2_cu *cu)
4835 struct fnfieldlist *flp;
4836 int total_length = 0;
4839 ALLOCATE_CPLUS_STRUCT_TYPE (type);
4840 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
4841 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
4843 for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
4845 struct nextfnfield *nfp = flp->head;
4846 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
4849 TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
4850 TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
4851 fn_flp->fn_fields = (struct fn_field *)
4852 TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
4853 for (k = flp->length; (k--, nfp); nfp = nfp->next)
4854 fn_flp->fn_fields[k] = nfp->fnfield;
4856 total_length += flp->length;
4859 TYPE_NFN_FIELDS (type) = fip->nfnfields;
4860 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
4863 /* Returns non-zero if NAME is the name of a vtable member in CU's
4864 language, zero otherwise. */
4866 is_vtable_name (const char *name, struct dwarf2_cu *cu)
4868 static const char vptr[] = "_vptr";
4869 static const char vtable[] = "vtable";
4871 /* Look for the C++ and Java forms of the vtable. */
4872 if ((cu->language == language_java
4873 && strncmp (name, vtable, sizeof (vtable) - 1) == 0)
4874 || (strncmp (name, vptr, sizeof (vptr) - 1) == 0
4875 && is_cplus_marker (name[sizeof (vptr) - 1])))
4881 /* GCC outputs unnamed structures that are really pointers to member
4882 functions, with the ABI-specified layout. If DIE (from CU) describes
4883 such a structure, set its type, and return nonzero. Otherwise return
4886 GCC shouldn't do this; it should just output pointer to member DIEs.
4887 This is GCC PR debug/28767. */
4889 static struct type *
4890 quirk_gcc_member_function_pointer (struct die_info *die, struct dwarf2_cu *cu)
4892 struct objfile *objfile = cu->objfile;
4894 struct die_info *pfn_die, *delta_die;
4895 struct attribute *pfn_name, *delta_name;
4896 struct type *pfn_type, *domain_type;
4898 /* Check for a structure with no name and two children. */
4899 if (die->tag != DW_TAG_structure_type
4900 || dwarf2_attr (die, DW_AT_name, cu) != NULL
4901 || die->child == NULL
4902 || die->child->sibling == NULL
4903 || (die->child->sibling->sibling != NULL
4904 && die->child->sibling->sibling->tag != DW_TAG_padding))
4907 /* Check for __pfn and __delta members. */
4908 pfn_die = die->child;
4909 pfn_name = dwarf2_attr (pfn_die, DW_AT_name, cu);
4910 if (pfn_die->tag != DW_TAG_member
4912 || DW_STRING (pfn_name) == NULL
4913 || strcmp ("__pfn", DW_STRING (pfn_name)) != 0)
4916 delta_die = pfn_die->sibling;
4917 delta_name = dwarf2_attr (delta_die, DW_AT_name, cu);
4918 if (delta_die->tag != DW_TAG_member
4919 || delta_name == NULL
4920 || DW_STRING (delta_name) == NULL
4921 || strcmp ("__delta", DW_STRING (delta_name)) != 0)
4924 /* Find the type of the method. */
4925 pfn_type = die_type (pfn_die, cu);
4926 if (pfn_type == NULL
4927 || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
4928 || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
4931 /* Look for the "this" argument. */
4932 pfn_type = TYPE_TARGET_TYPE (pfn_type);
4933 if (TYPE_NFIELDS (pfn_type) == 0
4934 || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
4937 domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
4938 type = alloc_type (objfile);
4939 smash_to_method_type (type, domain_type, TYPE_TARGET_TYPE (pfn_type),
4940 TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
4941 TYPE_VARARGS (pfn_type));
4942 type = lookup_methodptr_type (type);
4943 return set_die_type (die, type, cu);
4946 /* Called when we find the DIE that starts a structure or union scope
4947 (definition) to process all dies that define the members of the
4950 NOTE: we need to call struct_type regardless of whether or not the
4951 DIE has an at_name attribute, since it might be an anonymous
4952 structure or union. This gets the type entered into our set of
4955 However, if the structure is incomplete (an opaque struct/union)
4956 then suppress creating a symbol table entry for it since gdb only
4957 wants to find the one with the complete definition. Note that if
4958 it is complete, we just call new_symbol, which does it's own
4959 checking about whether the struct/union is anonymous or not (and
4960 suppresses creating a symbol table entry itself). */
4962 static struct type *
4963 read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
4965 struct objfile *objfile = cu->objfile;
4967 struct attribute *attr;
4969 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
4971 type = quirk_gcc_member_function_pointer (die, cu);
4975 /* If the definition of this type lives in .debug_types, read that type.
4976 Don't follow DW_AT_specification though, that will take us back up
4977 the chain and we want to go down. */
4978 attr = dwarf2_attr_no_follow (die, DW_AT_signature, cu);
4981 struct dwarf2_cu *type_cu = cu;
4982 struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
4983 /* We could just recurse on read_structure_type, but we need to call
4984 get_die_type to ensure only one type for this DIE is created.
4985 This is important, for example, because for c++ classes we need
4986 TYPE_NAME set which is only done by new_symbol. Blech. */
4987 type = read_type_die (type_die, type_cu);
4988 return set_die_type (die, type, cu);
4991 type = alloc_type (objfile);
4992 INIT_CPLUS_SPECIFIC (type);
4994 name = dwarf2_name (die, cu);
4997 if (cu->language == language_cplus
4998 || cu->language == language_java)
5000 const char *new_prefix = determine_class_name (die, cu);
5001 TYPE_TAG_NAME (type) = (char *) new_prefix;
5005 /* The name is already allocated along with this objfile, so
5006 we don't need to duplicate it for the type. */
5007 TYPE_TAG_NAME (type) = name;
5011 if (die->tag == DW_TAG_structure_type)
5013 TYPE_CODE (type) = TYPE_CODE_STRUCT;
5015 else if (die->tag == DW_TAG_union_type)
5017 TYPE_CODE (type) = TYPE_CODE_UNION;
5021 /* FIXME: TYPE_CODE_CLASS is currently defined to TYPE_CODE_STRUCT
5023 TYPE_CODE (type) = TYPE_CODE_CLASS;
5026 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
5029 TYPE_LENGTH (type) = DW_UNSND (attr);
5033 TYPE_LENGTH (type) = 0;
5036 TYPE_STUB_SUPPORTED (type) = 1;
5037 if (die_is_declaration (die, cu))
5038 TYPE_STUB (type) = 1;
5040 /* We need to add the type field to the die immediately so we don't
5041 infinitely recurse when dealing with pointers to the structure
5042 type within the structure itself. */
5043 set_die_type (die, type, cu);
5045 if (die->child != NULL && ! die_is_declaration (die, cu))
5047 struct field_info fi;
5048 struct die_info *child_die;
5050 memset (&fi, 0, sizeof (struct field_info));
5052 child_die = die->child;
5054 while (child_die && child_die->tag)
5056 if (child_die->tag == DW_TAG_member
5057 || child_die->tag == DW_TAG_variable)
5059 /* NOTE: carlton/2002-11-05: A C++ static data member
5060 should be a DW_TAG_member that is a declaration, but
5061 all versions of G++ as of this writing (so through at
5062 least 3.2.1) incorrectly generate DW_TAG_variable
5063 tags for them instead. */
5064 dwarf2_add_field (&fi, child_die, cu);
5066 else if (child_die->tag == DW_TAG_subprogram)
5068 /* C++ member function. */
5069 dwarf2_add_member_fn (&fi, child_die, type, cu);
5071 else if (child_die->tag == DW_TAG_inheritance)
5073 /* C++ base class field. */
5074 dwarf2_add_field (&fi, child_die, cu);
5076 child_die = sibling_die (child_die);
5079 /* Attach fields and member functions to the type. */
5081 dwarf2_attach_fields_to_type (&fi, type, cu);
5084 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
5086 /* Get the type which refers to the base class (possibly this
5087 class itself) which contains the vtable pointer for the current
5088 class from the DW_AT_containing_type attribute. This use of
5089 DW_AT_containing_type is a GNU extension. */
5091 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
5093 struct type *t = die_containing_type (die, cu);
5095 TYPE_VPTR_BASETYPE (type) = t;
5100 /* Our own class provides vtbl ptr. */
5101 for (i = TYPE_NFIELDS (t) - 1;
5102 i >= TYPE_N_BASECLASSES (t);
5105 char *fieldname = TYPE_FIELD_NAME (t, i);
5107 if (is_vtable_name (fieldname, cu))
5109 TYPE_VPTR_FIELDNO (type) = i;
5114 /* Complain if virtual function table field not found. */
5115 if (i < TYPE_N_BASECLASSES (t))
5116 complaint (&symfile_complaints,
5117 _("virtual function table pointer not found when defining class '%s'"),
5118 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
5123 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
5126 else if (cu->producer
5127 && strncmp (cu->producer,
5128 "IBM(R) XL C/C++ Advanced Edition", 32) == 0)
5130 /* The IBM XLC compiler does not provide direct indication
5131 of the containing type, but the vtable pointer is
5132 always named __vfp. */
5136 for (i = TYPE_NFIELDS (type) - 1;
5137 i >= TYPE_N_BASECLASSES (type);
5140 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
5142 TYPE_VPTR_FIELDNO (type) = i;
5143 TYPE_VPTR_BASETYPE (type) = type;
5151 do_cleanups (back_to);
5156 process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
5158 struct objfile *objfile = cu->objfile;
5159 struct die_info *child_die = die->child;
5160 struct type *this_type;
5162 this_type = get_die_type (die, cu);
5163 if (this_type == NULL)
5164 this_type = read_structure_type (die, cu);
5166 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
5167 snapshots) has been known to create a die giving a declaration
5168 for a class that has, as a child, a die giving a definition for a
5169 nested class. So we have to process our children even if the
5170 current die is a declaration. Normally, of course, a declaration
5171 won't have any children at all. */
5173 while (child_die != NULL && child_die->tag)
5175 if (child_die->tag == DW_TAG_member
5176 || child_die->tag == DW_TAG_variable
5177 || child_die->tag == DW_TAG_inheritance)
5182 process_die (child_die, cu);
5184 child_die = sibling_die (child_die);
5187 /* Do not consider external references. According to the DWARF standard,
5188 these DIEs are identified by the fact that they have no byte_size
5189 attribute, and a declaration attribute. */
5190 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
5191 || !die_is_declaration (die, cu))
5192 new_symbol (die, this_type, cu);
5195 /* Given a DW_AT_enumeration_type die, set its type. We do not
5196 complete the type's fields yet, or create any symbols. */
5198 static struct type *
5199 read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
5201 struct objfile *objfile = cu->objfile;
5203 struct attribute *attr;
5206 /* If the definition of this type lives in .debug_types, read that type.
5207 Don't follow DW_AT_specification though, that will take us back up
5208 the chain and we want to go down. */
5209 attr = dwarf2_attr_no_follow (die, DW_AT_signature, cu);
5212 struct dwarf2_cu *type_cu = cu;
5213 struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
5214 type = read_type_die (type_die, type_cu);
5215 return set_die_type (die, type, cu);
5218 type = alloc_type (objfile);
5220 TYPE_CODE (type) = TYPE_CODE_ENUM;
5221 name = dwarf2_full_name (die, cu);
5223 TYPE_TAG_NAME (type) = (char *) name;
5225 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
5228 TYPE_LENGTH (type) = DW_UNSND (attr);
5232 TYPE_LENGTH (type) = 0;
5235 /* The enumeration DIE can be incomplete. In Ada, any type can be
5236 declared as private in the package spec, and then defined only
5237 inside the package body. Such types are known as Taft Amendment
5238 Types. When another package uses such a type, an incomplete DIE
5239 may be generated by the compiler. */
5240 if (die_is_declaration (die, cu))
5241 TYPE_STUB (type) = 1;
5243 return set_die_type (die, type, cu);
5246 /* Determine the name of the type represented by DIE, which should be
5247 a named C++ or Java compound type. Return the name in question,
5248 allocated on the objfile obstack. */
5251 determine_class_name (struct die_info *die, struct dwarf2_cu *cu)
5253 const char *new_prefix = NULL;
5255 /* If we don't have namespace debug info, guess the name by trying
5256 to demangle the names of members, just like we did in
5257 guess_structure_name. */
5258 if (!processing_has_namespace_info)
5260 struct die_info *child;
5262 for (child = die->child;
5263 child != NULL && child->tag != 0;
5264 child = sibling_die (child))
5266 if (child->tag == DW_TAG_subprogram)
5269 = language_class_name_from_physname (cu->language_defn,
5273 if (phys_prefix != NULL)
5276 = obsavestring (phys_prefix, strlen (phys_prefix),
5277 &cu->objfile->objfile_obstack);
5278 xfree (phys_prefix);
5285 if (new_prefix == NULL)
5286 new_prefix = dwarf2_full_name (die, cu);
5291 /* Given a pointer to a die which begins an enumeration, process all
5292 the dies that define the members of the enumeration, and create the
5293 symbol for the enumeration type.
5295 NOTE: We reverse the order of the element list. */
5298 process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
5300 struct objfile *objfile = cu->objfile;
5301 struct die_info *child_die;
5302 struct field *fields;
5305 int unsigned_enum = 1;
5307 struct type *this_type;
5311 this_type = get_die_type (die, cu);
5312 if (this_type == NULL)
5313 this_type = read_enumeration_type (die, cu);
5314 if (die->child != NULL)
5316 child_die = die->child;
5317 while (child_die && child_die->tag)
5319 if (child_die->tag != DW_TAG_enumerator)
5321 process_die (child_die, cu);
5325 name = dwarf2_name (child_die, cu);
5328 sym = new_symbol (child_die, this_type, cu);
5329 if (SYMBOL_VALUE (sym) < 0)
5332 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
5334 fields = (struct field *)
5336 (num_fields + DW_FIELD_ALLOC_CHUNK)
5337 * sizeof (struct field));
5340 FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
5341 FIELD_TYPE (fields[num_fields]) = NULL;
5342 SET_FIELD_BITPOS (fields[num_fields], SYMBOL_VALUE (sym));
5343 FIELD_BITSIZE (fields[num_fields]) = 0;
5349 child_die = sibling_die (child_die);
5354 TYPE_NFIELDS (this_type) = num_fields;
5355 TYPE_FIELDS (this_type) = (struct field *)
5356 TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
5357 memcpy (TYPE_FIELDS (this_type), fields,
5358 sizeof (struct field) * num_fields);
5362 TYPE_UNSIGNED (this_type) = 1;
5365 new_symbol (die, this_type, cu);
5368 /* Extract all information from a DW_TAG_array_type DIE and put it in
5369 the DIE's type field. For now, this only handles one dimensional
5372 static struct type *
5373 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
5375 struct objfile *objfile = cu->objfile;
5376 struct die_info *child_die;
5377 struct type *type = NULL;
5378 struct type *element_type, *range_type, *index_type;
5379 struct type **range_types = NULL;
5380 struct attribute *attr;
5382 struct cleanup *back_to;
5385 element_type = die_type (die, cu);
5387 /* Irix 6.2 native cc creates array types without children for
5388 arrays with unspecified length. */
5389 if (die->child == NULL)
5391 index_type = objfile_type (objfile)->builtin_int;
5392 range_type = create_range_type (NULL, index_type, 0, -1);
5393 type = create_array_type (NULL, element_type, range_type);
5394 return set_die_type (die, type, cu);
5397 back_to = make_cleanup (null_cleanup, NULL);
5398 child_die = die->child;
5399 while (child_die && child_die->tag)
5401 if (child_die->tag == DW_TAG_subrange_type)
5403 struct type *child_type = read_type_die (child_die, cu);
5404 if (child_type != NULL)
5406 /* The range type was succesfully read. Save it for
5407 the array type creation. */
5408 if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
5410 range_types = (struct type **)
5411 xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
5412 * sizeof (struct type *));
5414 make_cleanup (free_current_contents, &range_types);
5416 range_types[ndim++] = child_type;
5419 child_die = sibling_die (child_die);
5422 /* Dwarf2 dimensions are output from left to right, create the
5423 necessary array types in backwards order. */
5425 type = element_type;
5427 if (read_array_order (die, cu) == DW_ORD_col_major)
5431 type = create_array_type (NULL, type, range_types[i++]);
5436 type = create_array_type (NULL, type, range_types[ndim]);
5439 /* Understand Dwarf2 support for vector types (like they occur on
5440 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
5441 array type. This is not part of the Dwarf2/3 standard yet, but a
5442 custom vendor extension. The main difference between a regular
5443 array and the vector variant is that vectors are passed by value
5445 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
5447 make_vector_type (type);
5449 name = dwarf2_name (die, cu);
5451 TYPE_NAME (type) = name;
5453 do_cleanups (back_to);
5455 /* Install the type in the die. */
5456 return set_die_type (die, type, cu);
5459 static enum dwarf_array_dim_ordering
5460 read_array_order (struct die_info *die, struct dwarf2_cu *cu)
5462 struct attribute *attr;
5464 attr = dwarf2_attr (die, DW_AT_ordering, cu);
5466 if (attr) return DW_SND (attr);
5469 GNU F77 is a special case, as at 08/2004 array type info is the
5470 opposite order to the dwarf2 specification, but data is still
5471 laid out as per normal fortran.
5473 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
5477 if (cu->language == language_fortran
5478 && cu->producer && strstr (cu->producer, "GNU F77"))
5480 return DW_ORD_row_major;
5483 switch (cu->language_defn->la_array_ordering)
5485 case array_column_major:
5486 return DW_ORD_col_major;
5487 case array_row_major:
5489 return DW_ORD_row_major;
5493 /* Extract all information from a DW_TAG_set_type DIE and put it in
5494 the DIE's type field. */
5496 static struct type *
5497 read_set_type (struct die_info *die, struct dwarf2_cu *cu)
5499 struct type *set_type = create_set_type (NULL, die_type (die, cu));
5501 return set_die_type (die, set_type, cu);
5504 /* First cut: install each common block member as a global variable. */
5507 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
5509 struct die_info *child_die;
5510 struct attribute *attr;
5512 CORE_ADDR base = (CORE_ADDR) 0;
5514 attr = dwarf2_attr (die, DW_AT_location, cu);
5517 /* Support the .debug_loc offsets */
5518 if (attr_form_is_block (attr))
5520 base = decode_locdesc (DW_BLOCK (attr), cu);
5522 else if (attr_form_is_section_offset (attr))
5524 dwarf2_complex_location_expr_complaint ();
5528 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
5529 "common block member");
5532 if (die->child != NULL)
5534 child_die = die->child;
5535 while (child_die && child_die->tag)
5537 sym = new_symbol (child_die, NULL, cu);
5538 attr = dwarf2_attr (child_die, DW_AT_data_member_location, cu);
5541 CORE_ADDR byte_offset = 0;
5543 if (attr_form_is_section_offset (attr))
5544 dwarf2_complex_location_expr_complaint ();
5545 else if (attr_form_is_constant (attr))
5546 byte_offset = dwarf2_get_attr_constant_value (attr, 0);
5547 else if (attr_form_is_block (attr))
5548 byte_offset = decode_locdesc (DW_BLOCK (attr), cu);
5550 dwarf2_complex_location_expr_complaint ();
5552 SYMBOL_VALUE_ADDRESS (sym) = base + byte_offset;
5553 add_symbol_to_list (sym, &global_symbols);
5555 child_die = sibling_die (child_die);
5560 /* Create a type for a C++ namespace. */
5562 static struct type *
5563 read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
5565 struct objfile *objfile = cu->objfile;
5566 const char *previous_prefix, *name;
5570 /* For extensions, reuse the type of the original namespace. */
5571 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
5573 struct die_info *ext_die;
5574 struct dwarf2_cu *ext_cu = cu;
5575 ext_die = dwarf2_extension (die, &ext_cu);
5576 type = read_type_die (ext_die, ext_cu);
5577 return set_die_type (die, type, cu);
5580 name = namespace_name (die, &is_anonymous, cu);
5582 /* Now build the name of the current namespace. */
5584 previous_prefix = determine_prefix (die, cu);
5585 if (previous_prefix[0] != '\0')
5586 name = typename_concat (&objfile->objfile_obstack,
5587 previous_prefix, name, cu);
5589 /* Create the type. */
5590 type = init_type (TYPE_CODE_NAMESPACE, 0, 0, NULL,
5592 TYPE_NAME (type) = (char *) name;
5593 TYPE_TAG_NAME (type) = TYPE_NAME (type);
5595 set_die_type (die, type, cu);
5600 /* Read a C++ namespace. */
5603 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
5605 struct objfile *objfile = cu->objfile;
5609 /* Add a symbol associated to this if we haven't seen the namespace
5610 before. Also, add a using directive if it's an anonymous
5613 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
5617 type = read_type_die (die, cu);
5618 new_symbol (die, type, cu);
5620 name = namespace_name (die, &is_anonymous, cu);
5623 const char *previous_prefix = determine_prefix (die, cu);
5624 cp_add_using_directive (previous_prefix, TYPE_NAME (type));
5628 if (die->child != NULL)
5630 struct die_info *child_die = die->child;
5632 while (child_die && child_die->tag)
5634 process_die (child_die, cu);
5635 child_die = sibling_die (child_die);
5640 /* Read a Fortran module. */
5643 read_module (struct die_info *die, struct dwarf2_cu *cu)
5645 struct die_info *child_die = die->child;
5647 /* FIXME: Support the separate Fortran module namespaces. */
5649 while (child_die && child_die->tag)
5651 process_die (child_die, cu);
5652 child_die = sibling_die (child_die);
5656 /* Return the name of the namespace represented by DIE. Set
5657 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
5661 namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
5663 struct die_info *current_die;
5664 const char *name = NULL;
5666 /* Loop through the extensions until we find a name. */
5668 for (current_die = die;
5669 current_die != NULL;
5670 current_die = dwarf2_extension (die, &cu))
5672 name = dwarf2_name (current_die, cu);
5677 /* Is it an anonymous namespace? */
5679 *is_anonymous = (name == NULL);
5681 name = "(anonymous namespace)";
5686 /* Extract all information from a DW_TAG_pointer_type DIE and add to
5687 the user defined type vector. */
5689 static struct type *
5690 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
5692 struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
5693 struct comp_unit_head *cu_header = &cu->header;
5695 struct attribute *attr_byte_size;
5696 struct attribute *attr_address_class;
5697 int byte_size, addr_class;
5699 type = lookup_pointer_type (die_type (die, cu));
5701 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
5703 byte_size = DW_UNSND (attr_byte_size);
5705 byte_size = cu_header->addr_size;
5707 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
5708 if (attr_address_class)
5709 addr_class = DW_UNSND (attr_address_class);
5711 addr_class = DW_ADDR_none;
5713 /* If the pointer size or address class is different than the
5714 default, create a type variant marked as such and set the
5715 length accordingly. */
5716 if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
5718 if (gdbarch_address_class_type_flags_p (gdbarch))
5722 type_flags = gdbarch_address_class_type_flags
5723 (gdbarch, byte_size, addr_class);
5724 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
5726 type = make_type_with_address_space (type, type_flags);
5728 else if (TYPE_LENGTH (type) != byte_size)
5730 complaint (&symfile_complaints, _("invalid pointer size %d"), byte_size);
5733 /* Should we also complain about unhandled address classes? */
5737 TYPE_LENGTH (type) = byte_size;
5738 return set_die_type (die, type, cu);
5741 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
5742 the user defined type vector. */
5744 static struct type *
5745 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
5747 struct objfile *objfile = cu->objfile;
5749 struct type *to_type;
5750 struct type *domain;
5752 to_type = die_type (die, cu);
5753 domain = die_containing_type (die, cu);
5755 if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
5756 type = lookup_methodptr_type (to_type);
5758 type = lookup_memberptr_type (to_type, domain);
5760 return set_die_type (die, type, cu);
5763 /* Extract all information from a DW_TAG_reference_type DIE and add to
5764 the user defined type vector. */
5766 static struct type *
5767 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
5769 struct comp_unit_head *cu_header = &cu->header;
5771 struct attribute *attr;
5773 type = lookup_reference_type (die_type (die, cu));
5774 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
5777 TYPE_LENGTH (type) = DW_UNSND (attr);
5781 TYPE_LENGTH (type) = cu_header->addr_size;
5783 return set_die_type (die, type, cu);
5786 static struct type *
5787 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
5789 struct type *base_type, *cv_type;
5791 base_type = die_type (die, cu);
5792 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
5793 return set_die_type (die, cv_type, cu);
5796 static struct type *
5797 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
5799 struct type *base_type, *cv_type;
5801 base_type = die_type (die, cu);
5802 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
5803 return set_die_type (die, cv_type, cu);
5806 /* Extract all information from a DW_TAG_string_type DIE and add to
5807 the user defined type vector. It isn't really a user defined type,
5808 but it behaves like one, with other DIE's using an AT_user_def_type
5809 attribute to reference it. */
5811 static struct type *
5812 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
5814 struct objfile *objfile = cu->objfile;
5815 struct gdbarch *gdbarch = get_objfile_arch (objfile);
5816 struct type *type, *range_type, *index_type, *char_type;
5817 struct attribute *attr;
5818 unsigned int length;
5820 attr = dwarf2_attr (die, DW_AT_string_length, cu);
5823 length = DW_UNSND (attr);
5827 /* check for the DW_AT_byte_size attribute */
5828 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
5831 length = DW_UNSND (attr);
5839 index_type = objfile_type (objfile)->builtin_int;
5840 range_type = create_range_type (NULL, index_type, 1, length);
5841 char_type = language_string_char_type (cu->language_defn, gdbarch);
5842 type = create_string_type (NULL, char_type, range_type);
5844 return set_die_type (die, type, cu);
5847 /* Handle DIES due to C code like:
5851 int (*funcp)(int a, long l);
5855 ('funcp' generates a DW_TAG_subroutine_type DIE)
5858 static struct type *
5859 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
5861 struct type *type; /* Type that this function returns */
5862 struct type *ftype; /* Function that returns above type */
5863 struct attribute *attr;
5865 type = die_type (die, cu);
5866 ftype = lookup_function_type (type);
5868 /* All functions in C++, Pascal and Java have prototypes. */
5869 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
5870 if ((attr && (DW_UNSND (attr) != 0))
5871 || cu->language == language_cplus
5872 || cu->language == language_java
5873 || cu->language == language_pascal)
5874 TYPE_PROTOTYPED (ftype) = 1;
5876 /* Store the calling convention in the type if it's available in
5877 the subroutine die. Otherwise set the calling convention to
5878 the default value DW_CC_normal. */
5879 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
5880 TYPE_CALLING_CONVENTION (ftype) = attr ? DW_UNSND (attr) : DW_CC_normal;
5882 if (die->child != NULL)
5884 struct die_info *child_die;
5888 /* Count the number of parameters.
5889 FIXME: GDB currently ignores vararg functions, but knows about
5890 vararg member functions. */
5891 child_die = die->child;
5892 while (child_die && child_die->tag)
5894 if (child_die->tag == DW_TAG_formal_parameter)
5896 else if (child_die->tag == DW_TAG_unspecified_parameters)
5897 TYPE_VARARGS (ftype) = 1;
5898 child_die = sibling_die (child_die);
5901 /* Allocate storage for parameters and fill them in. */
5902 TYPE_NFIELDS (ftype) = nparams;
5903 TYPE_FIELDS (ftype) = (struct field *)
5904 TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
5906 child_die = die->child;
5907 while (child_die && child_die->tag)
5909 if (child_die->tag == DW_TAG_formal_parameter)
5911 /* Dwarf2 has no clean way to discern C++ static and non-static
5912 member functions. G++ helps GDB by marking the first
5913 parameter for non-static member functions (which is the
5914 this pointer) as artificial. We pass this information
5915 to dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL. */
5916 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
5918 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
5920 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
5921 TYPE_FIELD_TYPE (ftype, iparams) = die_type (child_die, cu);
5924 child_die = sibling_die (child_die);
5928 return set_die_type (die, ftype, cu);
5931 static struct type *
5932 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
5934 struct objfile *objfile = cu->objfile;
5935 struct attribute *attr;
5936 const char *name = NULL;
5937 struct type *this_type;
5939 name = dwarf2_full_name (die, cu);
5940 this_type = init_type (TYPE_CODE_TYPEDEF, 0,
5941 TYPE_FLAG_TARGET_STUB, NULL, objfile);
5942 TYPE_NAME (this_type) = (char *) name;
5943 set_die_type (die, this_type, cu);
5944 TYPE_TARGET_TYPE (this_type) = die_type (die, cu);
5948 /* Find a representation of a given base type and install
5949 it in the TYPE field of the die. */
5951 static struct type *
5952 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
5954 struct objfile *objfile = cu->objfile;
5956 struct attribute *attr;
5957 int encoding = 0, size = 0;
5959 enum type_code code = TYPE_CODE_INT;
5961 struct type *target_type = NULL;
5963 attr = dwarf2_attr (die, DW_AT_encoding, cu);
5966 encoding = DW_UNSND (attr);
5968 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
5971 size = DW_UNSND (attr);
5973 name = dwarf2_name (die, cu);
5976 complaint (&symfile_complaints,
5977 _("DW_AT_name missing from DW_TAG_base_type"));
5982 case DW_ATE_address:
5983 /* Turn DW_ATE_address into a void * pointer. */
5984 code = TYPE_CODE_PTR;
5985 type_flags |= TYPE_FLAG_UNSIGNED;
5986 target_type = init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
5988 case DW_ATE_boolean:
5989 code = TYPE_CODE_BOOL;
5990 type_flags |= TYPE_FLAG_UNSIGNED;
5992 case DW_ATE_complex_float:
5993 code = TYPE_CODE_COMPLEX;
5994 target_type = init_type (TYPE_CODE_FLT, size / 2, 0, NULL, objfile);
5996 case DW_ATE_decimal_float:
5997 code = TYPE_CODE_DECFLOAT;
6000 code = TYPE_CODE_FLT;
6004 case DW_ATE_unsigned:
6005 type_flags |= TYPE_FLAG_UNSIGNED;
6007 case DW_ATE_signed_char:
6008 if (cu->language == language_ada || cu->language == language_m2
6009 || cu->language == language_pascal)
6010 code = TYPE_CODE_CHAR;
6012 case DW_ATE_unsigned_char:
6013 if (cu->language == language_ada || cu->language == language_m2
6014 || cu->language == language_pascal)
6015 code = TYPE_CODE_CHAR;
6016 type_flags |= TYPE_FLAG_UNSIGNED;
6019 complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
6020 dwarf_type_encoding_name (encoding));
6024 type = init_type (code, size, type_flags, NULL, objfile);
6025 TYPE_NAME (type) = name;
6026 TYPE_TARGET_TYPE (type) = target_type;
6028 if (name && strcmp (name, "char") == 0)
6029 TYPE_NOSIGN (type) = 1;
6031 return set_die_type (die, type, cu);
6034 /* Read the given DW_AT_subrange DIE. */
6036 static struct type *
6037 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
6039 struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
6040 struct type *base_type;
6041 struct type *range_type;
6042 struct attribute *attr;
6047 base_type = die_type (die, cu);
6048 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
6050 complaint (&symfile_complaints,
6051 _("DW_AT_type missing from DW_TAG_subrange_type"));
6053 = init_type (TYPE_CODE_INT, gdbarch_addr_bit (gdbarch) / 8,
6054 0, NULL, cu->objfile);
6057 if (cu->language == language_fortran)
6059 /* FORTRAN implies a lower bound of 1, if not given. */
6063 /* FIXME: For variable sized arrays either of these could be
6064 a variable rather than a constant value. We'll allow it,
6065 but we don't know how to handle it. */
6066 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
6068 low = dwarf2_get_attr_constant_value (attr, 0);
6070 attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
6073 if (attr->form == DW_FORM_block1)
6075 /* GCC encodes arrays with unspecified or dynamic length
6076 with a DW_FORM_block1 attribute.
6077 FIXME: GDB does not yet know how to handle dynamic
6078 arrays properly, treat them as arrays with unspecified
6081 FIXME: jimb/2003-09-22: GDB does not really know
6082 how to handle arrays of unspecified length
6083 either; we just represent them as zero-length
6084 arrays. Choose an appropriate upper bound given
6085 the lower bound we've computed above. */
6089 high = dwarf2_get_attr_constant_value (attr, 1);
6092 range_type = create_range_type (NULL, base_type, low, high);
6094 name = dwarf2_name (die, cu);
6096 TYPE_NAME (range_type) = name;
6098 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
6100 TYPE_LENGTH (range_type) = DW_UNSND (attr);
6102 return set_die_type (die, range_type, cu);
6105 static struct type *
6106 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
6110 /* For now, we only support the C meaning of an unspecified type: void. */
6112 type = init_type (TYPE_CODE_VOID, 0, 0, NULL, cu->objfile);
6113 TYPE_NAME (type) = dwarf2_name (die, cu);
6115 return set_die_type (die, type, cu);
6118 /* Trivial hash function for die_info: the hash value of a DIE
6119 is its offset in .debug_info for this objfile. */
6122 die_hash (const void *item)
6124 const struct die_info *die = item;
6128 /* Trivial comparison function for die_info structures: two DIEs
6129 are equal if they have the same offset. */
6132 die_eq (const void *item_lhs, const void *item_rhs)
6134 const struct die_info *die_lhs = item_lhs;
6135 const struct die_info *die_rhs = item_rhs;
6136 return die_lhs->offset == die_rhs->offset;
6139 /* Read a whole compilation unit into a linked list of dies. */
6141 static struct die_info *
6142 read_comp_unit (gdb_byte *info_ptr, struct dwarf2_cu *cu)
6144 struct die_reader_specs reader_specs;
6146 gdb_assert (cu->die_hash == NULL);
6148 = htab_create_alloc_ex (cu->header.length / 12,
6152 &cu->comp_unit_obstack,
6153 hashtab_obstack_allocate,
6154 dummy_obstack_deallocate);
6156 init_cu_die_reader (&reader_specs, cu);
6158 return read_die_and_children (&reader_specs, info_ptr, &info_ptr, NULL);
6161 /* Main entry point for reading a DIE and all children.
6162 Read the DIE and dump it if requested. */
6164 static struct die_info *
6165 read_die_and_children (const struct die_reader_specs *reader,
6167 gdb_byte **new_info_ptr,
6168 struct die_info *parent)
6170 struct die_info *result = read_die_and_children_1 (reader, info_ptr,
6171 new_info_ptr, parent);
6173 if (dwarf2_die_debug)
6175 fprintf_unfiltered (gdb_stdlog,
6176 "\nRead die from %s of %s:\n",
6177 reader->buffer == dwarf2_per_objfile->info.buffer
6179 : reader->buffer == dwarf2_per_objfile->types.buffer
6181 : "unknown section",
6182 reader->abfd->filename);
6183 dump_die (result, dwarf2_die_debug);
6189 /* Read a single die and all its descendents. Set the die's sibling
6190 field to NULL; set other fields in the die correctly, and set all
6191 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
6192 location of the info_ptr after reading all of those dies. PARENT
6193 is the parent of the die in question. */
6195 static struct die_info *
6196 read_die_and_children_1 (const struct die_reader_specs *reader,
6198 gdb_byte **new_info_ptr,
6199 struct die_info *parent)
6201 struct die_info *die;
6205 cur_ptr = read_full_die (reader, &die, info_ptr, &has_children);
6208 *new_info_ptr = cur_ptr;
6211 store_in_ref_table (die, reader->cu);
6214 die->child = read_die_and_siblings (reader, cur_ptr, new_info_ptr, die);
6218 *new_info_ptr = cur_ptr;
6221 die->sibling = NULL;
6222 die->parent = parent;
6226 /* Read a die, all of its descendents, and all of its siblings; set
6227 all of the fields of all of the dies correctly. Arguments are as
6228 in read_die_and_children. */
6230 static struct die_info *
6231 read_die_and_siblings (const struct die_reader_specs *reader,
6233 gdb_byte **new_info_ptr,
6234 struct die_info *parent)
6236 struct die_info *first_die, *last_sibling;
6240 first_die = last_sibling = NULL;
6244 struct die_info *die
6245 = read_die_and_children_1 (reader, cur_ptr, &cur_ptr, parent);
6249 *new_info_ptr = cur_ptr;
6256 last_sibling->sibling = die;
6262 /* Read the die from the .debug_info section buffer. Set DIEP to
6263 point to a newly allocated die with its information, except for its
6264 child, sibling, and parent fields. Set HAS_CHILDREN to tell
6265 whether the die has children or not. */
6268 read_full_die (const struct die_reader_specs *reader,
6269 struct die_info **diep, gdb_byte *info_ptr,
6272 unsigned int abbrev_number, bytes_read, i, offset;
6273 struct abbrev_info *abbrev;
6274 struct die_info *die;
6275 struct dwarf2_cu *cu = reader->cu;
6276 bfd *abfd = reader->abfd;
6278 offset = info_ptr - reader->buffer;
6279 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
6280 info_ptr += bytes_read;
6288 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
6290 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
6292 bfd_get_filename (abfd));
6294 die = dwarf_alloc_die (cu, abbrev->num_attrs);
6295 die->offset = offset;
6296 die->tag = abbrev->tag;
6297 die->abbrev = abbrev_number;
6299 die->num_attrs = abbrev->num_attrs;
6301 for (i = 0; i < abbrev->num_attrs; ++i)
6302 info_ptr = read_attribute (&die->attrs[i], &abbrev->attrs[i],
6303 abfd, info_ptr, cu);
6306 *has_children = abbrev->has_children;
6310 /* In DWARF version 2, the description of the debugging information is
6311 stored in a separate .debug_abbrev section. Before we read any
6312 dies from a section we read in all abbreviations and install them
6313 in a hash table. This function also sets flags in CU describing
6314 the data found in the abbrev table. */
6317 dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu)
6319 struct comp_unit_head *cu_header = &cu->header;
6320 gdb_byte *abbrev_ptr;
6321 struct abbrev_info *cur_abbrev;
6322 unsigned int abbrev_number, bytes_read, abbrev_name;
6323 unsigned int abbrev_form, hash_number;
6324 struct attr_abbrev *cur_attrs;
6325 unsigned int allocated_attrs;
6327 /* Initialize dwarf2 abbrevs */
6328 obstack_init (&cu->abbrev_obstack);
6329 cu->dwarf2_abbrevs = obstack_alloc (&cu->abbrev_obstack,
6331 * sizeof (struct abbrev_info *)));
6332 memset (cu->dwarf2_abbrevs, 0,
6333 ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
6335 abbrev_ptr = dwarf2_per_objfile->abbrev.buffer + cu_header->abbrev_offset;
6336 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
6337 abbrev_ptr += bytes_read;
6339 allocated_attrs = ATTR_ALLOC_CHUNK;
6340 cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
6342 /* loop until we reach an abbrev number of 0 */
6343 while (abbrev_number)
6345 cur_abbrev = dwarf_alloc_abbrev (cu);
6347 /* read in abbrev header */
6348 cur_abbrev->number = abbrev_number;
6349 cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
6350 abbrev_ptr += bytes_read;
6351 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
6354 if (cur_abbrev->tag == DW_TAG_namespace)
6355 cu->has_namespace_info = 1;
6357 /* now read in declarations */
6358 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
6359 abbrev_ptr += bytes_read;
6360 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
6361 abbrev_ptr += bytes_read;
6364 if (cur_abbrev->num_attrs == allocated_attrs)
6366 allocated_attrs += ATTR_ALLOC_CHUNK;
6368 = xrealloc (cur_attrs, (allocated_attrs
6369 * sizeof (struct attr_abbrev)));
6372 /* Record whether this compilation unit might have
6373 inter-compilation-unit references. If we don't know what form
6374 this attribute will have, then it might potentially be a
6375 DW_FORM_ref_addr, so we conservatively expect inter-CU
6378 if (abbrev_form == DW_FORM_ref_addr
6379 || abbrev_form == DW_FORM_indirect)
6380 cu->has_form_ref_addr = 1;
6382 cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
6383 cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
6384 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
6385 abbrev_ptr += bytes_read;
6386 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
6387 abbrev_ptr += bytes_read;
6390 cur_abbrev->attrs = obstack_alloc (&cu->abbrev_obstack,
6391 (cur_abbrev->num_attrs
6392 * sizeof (struct attr_abbrev)));
6393 memcpy (cur_abbrev->attrs, cur_attrs,
6394 cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
6396 hash_number = abbrev_number % ABBREV_HASH_SIZE;
6397 cur_abbrev->next = cu->dwarf2_abbrevs[hash_number];
6398 cu->dwarf2_abbrevs[hash_number] = cur_abbrev;
6400 /* Get next abbreviation.
6401 Under Irix6 the abbreviations for a compilation unit are not
6402 always properly terminated with an abbrev number of 0.
6403 Exit loop if we encounter an abbreviation which we have
6404 already read (which means we are about to read the abbreviations
6405 for the next compile unit) or if the end of the abbreviation
6406 table is reached. */
6407 if ((unsigned int) (abbrev_ptr - dwarf2_per_objfile->abbrev.buffer)
6408 >= dwarf2_per_objfile->abbrev.size)
6410 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
6411 abbrev_ptr += bytes_read;
6412 if (dwarf2_lookup_abbrev (abbrev_number, cu) != NULL)
6419 /* Release the memory used by the abbrev table for a compilation unit. */
6422 dwarf2_free_abbrev_table (void *ptr_to_cu)
6424 struct dwarf2_cu *cu = ptr_to_cu;
6426 obstack_free (&cu->abbrev_obstack, NULL);
6427 cu->dwarf2_abbrevs = NULL;
6430 /* Lookup an abbrev_info structure in the abbrev hash table. */
6432 static struct abbrev_info *
6433 dwarf2_lookup_abbrev (unsigned int number, struct dwarf2_cu *cu)
6435 unsigned int hash_number;
6436 struct abbrev_info *abbrev;
6438 hash_number = number % ABBREV_HASH_SIZE;
6439 abbrev = cu->dwarf2_abbrevs[hash_number];
6443 if (abbrev->number == number)
6446 abbrev = abbrev->next;
6451 /* Returns nonzero if TAG represents a type that we might generate a partial
6455 is_type_tag_for_partial (int tag)
6460 /* Some types that would be reasonable to generate partial symbols for,
6461 that we don't at present. */
6462 case DW_TAG_array_type:
6463 case DW_TAG_file_type:
6464 case DW_TAG_ptr_to_member_type:
6465 case DW_TAG_set_type:
6466 case DW_TAG_string_type:
6467 case DW_TAG_subroutine_type:
6469 case DW_TAG_base_type:
6470 case DW_TAG_class_type:
6471 case DW_TAG_interface_type:
6472 case DW_TAG_enumeration_type:
6473 case DW_TAG_structure_type:
6474 case DW_TAG_subrange_type:
6475 case DW_TAG_typedef:
6476 case DW_TAG_union_type:
6483 /* Load all DIEs that are interesting for partial symbols into memory. */
6485 static struct partial_die_info *
6486 load_partial_dies (bfd *abfd, gdb_byte *buffer, gdb_byte *info_ptr,
6487 int building_psymtab, struct dwarf2_cu *cu)
6489 struct partial_die_info *part_die;
6490 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
6491 struct abbrev_info *abbrev;
6492 unsigned int bytes_read;
6493 unsigned int load_all = 0;
6495 int nesting_level = 1;
6500 if (cu->per_cu && cu->per_cu->load_all_dies)
6504 = htab_create_alloc_ex (cu->header.length / 12,
6508 &cu->comp_unit_obstack,
6509 hashtab_obstack_allocate,
6510 dummy_obstack_deallocate);
6512 part_die = obstack_alloc (&cu->comp_unit_obstack,
6513 sizeof (struct partial_die_info));
6517 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
6519 /* A NULL abbrev means the end of a series of children. */
6522 if (--nesting_level == 0)
6524 /* PART_DIE was probably the last thing allocated on the
6525 comp_unit_obstack, so we could call obstack_free
6526 here. We don't do that because the waste is small,
6527 and will be cleaned up when we're done with this
6528 compilation unit. This way, we're also more robust
6529 against other users of the comp_unit_obstack. */
6532 info_ptr += bytes_read;
6533 last_die = parent_die;
6534 parent_die = parent_die->die_parent;
6538 /* Check whether this DIE is interesting enough to save. Normally
6539 we would not be interested in members here, but there may be
6540 later variables referencing them via DW_AT_specification (for
6543 && !is_type_tag_for_partial (abbrev->tag)
6544 && abbrev->tag != DW_TAG_enumerator
6545 && abbrev->tag != DW_TAG_subprogram
6546 && abbrev->tag != DW_TAG_lexical_block
6547 && abbrev->tag != DW_TAG_variable
6548 && abbrev->tag != DW_TAG_namespace
6549 && abbrev->tag != DW_TAG_member)
6551 /* Otherwise we skip to the next sibling, if any. */
6552 info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
6556 info_ptr = read_partial_die (part_die, abbrev, bytes_read, abfd,
6557 buffer, info_ptr, cu);
6559 /* This two-pass algorithm for processing partial symbols has a
6560 high cost in cache pressure. Thus, handle some simple cases
6561 here which cover the majority of C partial symbols. DIEs
6562 which neither have specification tags in them, nor could have
6563 specification tags elsewhere pointing at them, can simply be
6564 processed and discarded.
6566 This segment is also optional; scan_partial_symbols and
6567 add_partial_symbol will handle these DIEs if we chain
6568 them in normally. When compilers which do not emit large
6569 quantities of duplicate debug information are more common,
6570 this code can probably be removed. */
6572 /* Any complete simple types at the top level (pretty much all
6573 of them, for a language without namespaces), can be processed
6575 if (parent_die == NULL
6576 && part_die->has_specification == 0
6577 && part_die->is_declaration == 0
6578 && (part_die->tag == DW_TAG_typedef
6579 || part_die->tag == DW_TAG_base_type
6580 || part_die->tag == DW_TAG_subrange_type))
6582 if (building_psymtab && part_die->name != NULL)
6583 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
6584 VAR_DOMAIN, LOC_TYPEDEF,
6585 &cu->objfile->static_psymbols,
6586 0, (CORE_ADDR) 0, cu->language, cu->objfile);
6587 info_ptr = locate_pdi_sibling (part_die, buffer, info_ptr, abfd, cu);
6591 /* If we're at the second level, and we're an enumerator, and
6592 our parent has no specification (meaning possibly lives in a
6593 namespace elsewhere), then we can add the partial symbol now
6594 instead of queueing it. */
6595 if (part_die->tag == DW_TAG_enumerator
6596 && parent_die != NULL
6597 && parent_die->die_parent == NULL
6598 && parent_die->tag == DW_TAG_enumeration_type
6599 && parent_die->has_specification == 0)
6601 if (part_die->name == NULL)
6602 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
6603 else if (building_psymtab)
6604 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
6605 VAR_DOMAIN, LOC_CONST,
6606 (cu->language == language_cplus
6607 || cu->language == language_java)
6608 ? &cu->objfile->global_psymbols
6609 : &cu->objfile->static_psymbols,
6610 0, (CORE_ADDR) 0, cu->language, cu->objfile);
6612 info_ptr = locate_pdi_sibling (part_die, buffer, info_ptr, abfd, cu);
6616 /* We'll save this DIE so link it in. */
6617 part_die->die_parent = parent_die;
6618 part_die->die_sibling = NULL;
6619 part_die->die_child = NULL;
6621 if (last_die && last_die == parent_die)
6622 last_die->die_child = part_die;
6624 last_die->die_sibling = part_die;
6626 last_die = part_die;
6628 if (first_die == NULL)
6629 first_die = part_die;
6631 /* Maybe add the DIE to the hash table. Not all DIEs that we
6632 find interesting need to be in the hash table, because we
6633 also have the parent/sibling/child chains; only those that we
6634 might refer to by offset later during partial symbol reading.
6636 For now this means things that might have be the target of a
6637 DW_AT_specification, DW_AT_abstract_origin, or
6638 DW_AT_extension. DW_AT_extension will refer only to
6639 namespaces; DW_AT_abstract_origin refers to functions (and
6640 many things under the function DIE, but we do not recurse
6641 into function DIEs during partial symbol reading) and
6642 possibly variables as well; DW_AT_specification refers to
6643 declarations. Declarations ought to have the DW_AT_declaration
6644 flag. It happens that GCC forgets to put it in sometimes, but
6645 only for functions, not for types.
6647 Adding more things than necessary to the hash table is harmless
6648 except for the performance cost. Adding too few will result in
6649 wasted time in find_partial_die, when we reread the compilation
6650 unit with load_all_dies set. */
6653 || abbrev->tag == DW_TAG_subprogram
6654 || abbrev->tag == DW_TAG_variable
6655 || abbrev->tag == DW_TAG_namespace
6656 || part_die->is_declaration)
6660 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
6661 part_die->offset, INSERT);
6665 part_die = obstack_alloc (&cu->comp_unit_obstack,
6666 sizeof (struct partial_die_info));
6668 /* For some DIEs we want to follow their children (if any). For C
6669 we have no reason to follow the children of structures; for other
6670 languages we have to, both so that we can get at method physnames
6671 to infer fully qualified class names, and for DW_AT_specification.
6673 For Ada, we need to scan the children of subprograms and lexical
6674 blocks as well because Ada allows the definition of nested
6675 entities that could be interesting for the debugger, such as
6676 nested subprograms for instance. */
6677 if (last_die->has_children
6679 || last_die->tag == DW_TAG_namespace
6680 || last_die->tag == DW_TAG_enumeration_type
6681 || (cu->language != language_c
6682 && (last_die->tag == DW_TAG_class_type
6683 || last_die->tag == DW_TAG_interface_type
6684 || last_die->tag == DW_TAG_structure_type
6685 || last_die->tag == DW_TAG_union_type))
6686 || (cu->language == language_ada
6687 && (last_die->tag == DW_TAG_subprogram
6688 || last_die->tag == DW_TAG_lexical_block))))
6691 parent_die = last_die;
6695 /* Otherwise we skip to the next sibling, if any. */
6696 info_ptr = locate_pdi_sibling (last_die, buffer, info_ptr, abfd, cu);
6698 /* Back to the top, do it again. */
6702 /* Read a minimal amount of information into the minimal die structure. */
6705 read_partial_die (struct partial_die_info *part_die,
6706 struct abbrev_info *abbrev,
6707 unsigned int abbrev_len, bfd *abfd,
6708 gdb_byte *buffer, gdb_byte *info_ptr,
6709 struct dwarf2_cu *cu)
6711 unsigned int bytes_read, i;
6712 struct attribute attr;
6713 int has_low_pc_attr = 0;
6714 int has_high_pc_attr = 0;
6716 memset (part_die, 0, sizeof (struct partial_die_info));
6718 part_die->offset = info_ptr - buffer;
6720 info_ptr += abbrev_len;
6725 part_die->tag = abbrev->tag;
6726 part_die->has_children = abbrev->has_children;
6728 for (i = 0; i < abbrev->num_attrs; ++i)
6730 info_ptr = read_attribute (&attr, &abbrev->attrs[i], abfd, info_ptr, cu);
6732 /* Store the data if it is of an attribute we want to keep in a
6733 partial symbol table. */
6737 switch (part_die->tag)
6739 case DW_TAG_compile_unit:
6740 case DW_TAG_type_unit:
6741 /* Compilation units have a DW_AT_name that is a filename, not
6742 a source language identifier. */
6743 case DW_TAG_enumeration_type:
6744 case DW_TAG_enumerator:
6745 /* These tags always have simple identifiers already; no need
6746 to canonicalize them. */
6747 part_die->name = DW_STRING (&attr);
6751 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
6752 &cu->comp_unit_obstack);
6756 case DW_AT_MIPS_linkage_name:
6757 part_die->name = DW_STRING (&attr);
6760 has_low_pc_attr = 1;
6761 part_die->lowpc = DW_ADDR (&attr);
6764 has_high_pc_attr = 1;
6765 part_die->highpc = DW_ADDR (&attr);
6767 case DW_AT_location:
6768 /* Support the .debug_loc offsets */
6769 if (attr_form_is_block (&attr))
6771 part_die->locdesc = DW_BLOCK (&attr);
6773 else if (attr_form_is_section_offset (&attr))
6775 dwarf2_complex_location_expr_complaint ();
6779 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
6780 "partial symbol information");
6783 case DW_AT_external:
6784 part_die->is_external = DW_UNSND (&attr);
6786 case DW_AT_declaration:
6787 part_die->is_declaration = DW_UNSND (&attr);
6790 part_die->has_type = 1;
6792 case DW_AT_abstract_origin:
6793 case DW_AT_specification:
6794 case DW_AT_extension:
6795 part_die->has_specification = 1;
6796 part_die->spec_offset = dwarf2_get_ref_die_offset (&attr);
6799 /* Ignore absolute siblings, they might point outside of
6800 the current compile unit. */
6801 if (attr.form == DW_FORM_ref_addr)
6802 complaint (&symfile_complaints, _("ignoring absolute DW_AT_sibling"));
6804 part_die->sibling = buffer + dwarf2_get_ref_die_offset (&attr);
6806 case DW_AT_byte_size:
6807 part_die->has_byte_size = 1;
6809 case DW_AT_calling_convention:
6810 /* DWARF doesn't provide a way to identify a program's source-level
6811 entry point. DW_AT_calling_convention attributes are only meant
6812 to describe functions' calling conventions.
6814 However, because it's a necessary piece of information in
6815 Fortran, and because DW_CC_program is the only piece of debugging
6816 information whose definition refers to a 'main program' at all,
6817 several compilers have begun marking Fortran main programs with
6818 DW_CC_program --- even when those functions use the standard
6819 calling conventions.
6821 So until DWARF specifies a way to provide this information and
6822 compilers pick up the new representation, we'll support this
6824 if (DW_UNSND (&attr) == DW_CC_program
6825 && cu->language == language_fortran)
6826 set_main_name (part_die->name);
6833 /* When using the GNU linker, .gnu.linkonce. sections are used to
6834 eliminate duplicate copies of functions and vtables and such.
6835 The linker will arbitrarily choose one and discard the others.
6836 The AT_*_pc values for such functions refer to local labels in
6837 these sections. If the section from that file was discarded, the
6838 labels are not in the output, so the relocs get a value of 0.
6839 If this is a discarded function, mark the pc bounds as invalid,
6840 so that GDB will ignore it. */
6841 if (has_low_pc_attr && has_high_pc_attr
6842 && part_die->lowpc < part_die->highpc
6843 && (part_die->lowpc != 0
6844 || dwarf2_per_objfile->has_section_at_zero))
6845 part_die->has_pc_info = 1;
6850 /* Find a cached partial DIE at OFFSET in CU. */
6852 static struct partial_die_info *
6853 find_partial_die_in_comp_unit (unsigned int offset, struct dwarf2_cu *cu)
6855 struct partial_die_info *lookup_die = NULL;
6856 struct partial_die_info part_die;
6858 part_die.offset = offset;
6859 lookup_die = htab_find_with_hash (cu->partial_dies, &part_die, offset);
6864 /* Find a partial DIE at OFFSET, which may or may not be in CU,
6865 except in the case of .debug_types DIEs which do not reference
6866 outside their CU (they do however referencing other types via
6869 static struct partial_die_info *
6870 find_partial_die (unsigned int offset, struct dwarf2_cu *cu)
6872 struct dwarf2_per_cu_data *per_cu = NULL;
6873 struct partial_die_info *pd = NULL;
6875 if (cu->per_cu->from_debug_types)
6877 pd = find_partial_die_in_comp_unit (offset, cu);
6883 if (offset_in_cu_p (&cu->header, offset))
6885 pd = find_partial_die_in_comp_unit (offset, cu);
6890 per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile);
6892 if (per_cu->cu == NULL)
6894 load_partial_comp_unit (per_cu, cu->objfile);
6895 per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
6896 dwarf2_per_objfile->read_in_chain = per_cu;
6899 per_cu->cu->last_used = 0;
6900 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
6902 if (pd == NULL && per_cu->load_all_dies == 0)
6904 struct cleanup *back_to;
6905 struct partial_die_info comp_unit_die;
6906 struct abbrev_info *abbrev;
6907 unsigned int bytes_read;
6910 per_cu->load_all_dies = 1;
6912 /* Re-read the DIEs. */
6913 back_to = make_cleanup (null_cleanup, 0);
6914 if (per_cu->cu->dwarf2_abbrevs == NULL)
6916 dwarf2_read_abbrevs (per_cu->cu->objfile->obfd, per_cu->cu);
6917 back_to = make_cleanup (dwarf2_free_abbrev_table, per_cu->cu);
6919 info_ptr = (dwarf2_per_objfile->info.buffer
6920 + per_cu->cu->header.offset
6921 + per_cu->cu->header.first_die_offset);
6922 abbrev = peek_die_abbrev (info_ptr, &bytes_read, per_cu->cu);
6923 info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read,
6924 per_cu->cu->objfile->obfd,
6925 dwarf2_per_objfile->info.buffer, info_ptr,
6927 if (comp_unit_die.has_children)
6928 load_partial_dies (per_cu->cu->objfile->obfd,
6929 dwarf2_per_objfile->info.buffer, info_ptr,
6931 do_cleanups (back_to);
6933 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
6939 internal_error (__FILE__, __LINE__,
6940 _("could not find partial DIE 0x%x in cache [from module %s]\n"),
6941 offset, bfd_get_filename (cu->objfile->obfd));
6945 /* Adjust PART_DIE before generating a symbol for it. This function
6946 may set the is_external flag or change the DIE's name. */
6949 fixup_partial_die (struct partial_die_info *part_die,
6950 struct dwarf2_cu *cu)
6952 /* If we found a reference attribute and the DIE has no name, try
6953 to find a name in the referred to DIE. */
6955 if (part_die->name == NULL && part_die->has_specification)
6957 struct partial_die_info *spec_die;
6959 spec_die = find_partial_die (part_die->spec_offset, cu);
6961 fixup_partial_die (spec_die, cu);
6965 part_die->name = spec_die->name;
6967 /* Copy DW_AT_external attribute if it is set. */
6968 if (spec_die->is_external)
6969 part_die->is_external = spec_die->is_external;
6973 /* Set default names for some unnamed DIEs. */
6974 if (part_die->name == NULL && (part_die->tag == DW_TAG_structure_type
6975 || part_die->tag == DW_TAG_class_type))
6976 part_die->name = "(anonymous class)";
6978 if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
6979 part_die->name = "(anonymous namespace)";
6981 if (part_die->tag == DW_TAG_structure_type
6982 || part_die->tag == DW_TAG_class_type
6983 || part_die->tag == DW_TAG_union_type)
6984 guess_structure_name (part_die, cu);
6987 /* Read an attribute value described by an attribute form. */
6990 read_attribute_value (struct attribute *attr, unsigned form,
6991 bfd *abfd, gdb_byte *info_ptr,
6992 struct dwarf2_cu *cu)
6994 struct comp_unit_head *cu_header = &cu->header;
6995 unsigned int bytes_read;
6996 struct dwarf_block *blk;
7002 case DW_FORM_ref_addr:
7003 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
7004 info_ptr += bytes_read;
7006 case DW_FORM_block2:
7007 blk = dwarf_alloc_block (cu);
7008 blk->size = read_2_bytes (abfd, info_ptr);
7010 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
7011 info_ptr += blk->size;
7012 DW_BLOCK (attr) = blk;
7014 case DW_FORM_block4:
7015 blk = dwarf_alloc_block (cu);
7016 blk->size = read_4_bytes (abfd, info_ptr);
7018 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
7019 info_ptr += blk->size;
7020 DW_BLOCK (attr) = blk;
7023 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
7027 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
7031 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
7034 case DW_FORM_string:
7035 DW_STRING (attr) = read_string (abfd, info_ptr, &bytes_read);
7036 DW_STRING_IS_CANONICAL (attr) = 0;
7037 info_ptr += bytes_read;
7040 DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
7042 DW_STRING_IS_CANONICAL (attr) = 0;
7043 info_ptr += bytes_read;
7046 blk = dwarf_alloc_block (cu);
7047 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
7048 info_ptr += bytes_read;
7049 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
7050 info_ptr += blk->size;
7051 DW_BLOCK (attr) = blk;
7053 case DW_FORM_block1:
7054 blk = dwarf_alloc_block (cu);
7055 blk->size = read_1_byte (abfd, info_ptr);
7057 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
7058 info_ptr += blk->size;
7059 DW_BLOCK (attr) = blk;
7062 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
7066 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
7070 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
7071 info_ptr += bytes_read;
7074 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
7075 info_ptr += bytes_read;
7078 DW_ADDR (attr) = cu->header.offset + read_1_byte (abfd, info_ptr);
7082 DW_ADDR (attr) = cu->header.offset + read_2_bytes (abfd, info_ptr);
7086 DW_ADDR (attr) = cu->header.offset + read_4_bytes (abfd, info_ptr);
7090 DW_ADDR (attr) = cu->header.offset + read_8_bytes (abfd, info_ptr);
7094 /* Convert the signature to something we can record in DW_UNSND
7096 NOTE: This is NULL if the type wasn't found. */
7097 DW_SIGNATURED_TYPE (attr) =
7098 lookup_signatured_type (cu->objfile, read_8_bytes (abfd, info_ptr));
7101 case DW_FORM_ref_udata:
7102 DW_ADDR (attr) = (cu->header.offset
7103 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
7104 info_ptr += bytes_read;
7106 case DW_FORM_indirect:
7107 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
7108 info_ptr += bytes_read;
7109 info_ptr = read_attribute_value (attr, form, abfd, info_ptr, cu);
7112 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
7113 dwarf_form_name (form),
7114 bfd_get_filename (abfd));
7117 /* We have seen instances where the compiler tried to emit a byte
7118 size attribute of -1 which ended up being encoded as an unsigned
7119 0xffffffff. Although 0xffffffff is technically a valid size value,
7120 an object of this size seems pretty unlikely so we can relatively
7121 safely treat these cases as if the size attribute was invalid and
7122 treat them as zero by default. */
7123 if (attr->name == DW_AT_byte_size
7124 && form == DW_FORM_data4
7125 && DW_UNSND (attr) >= 0xffffffff)
7128 (&symfile_complaints,
7129 _("Suspicious DW_AT_byte_size value treated as zero instead of 0x%lx"),
7131 DW_UNSND (attr) = 0;
7137 /* Read an attribute described by an abbreviated attribute. */
7140 read_attribute (struct attribute *attr, struct attr_abbrev *abbrev,
7141 bfd *abfd, gdb_byte *info_ptr, struct dwarf2_cu *cu)
7143 attr->name = abbrev->name;
7144 return read_attribute_value (attr, abbrev->form, abfd, info_ptr, cu);
7147 /* read dwarf information from a buffer */
7150 read_1_byte (bfd *abfd, gdb_byte *buf)
7152 return bfd_get_8 (abfd, buf);
7156 read_1_signed_byte (bfd *abfd, gdb_byte *buf)
7158 return bfd_get_signed_8 (abfd, buf);
7162 read_2_bytes (bfd *abfd, gdb_byte *buf)
7164 return bfd_get_16 (abfd, buf);
7168 read_2_signed_bytes (bfd *abfd, gdb_byte *buf)
7170 return bfd_get_signed_16 (abfd, buf);
7174 read_4_bytes (bfd *abfd, gdb_byte *buf)
7176 return bfd_get_32 (abfd, buf);
7180 read_4_signed_bytes (bfd *abfd, gdb_byte *buf)
7182 return bfd_get_signed_32 (abfd, buf);
7186 read_8_bytes (bfd *abfd, gdb_byte *buf)
7188 return bfd_get_64 (abfd, buf);
7192 read_address (bfd *abfd, gdb_byte *buf, struct dwarf2_cu *cu,
7193 unsigned int *bytes_read)
7195 struct comp_unit_head *cu_header = &cu->header;
7196 CORE_ADDR retval = 0;
7198 if (cu_header->signed_addr_p)
7200 switch (cu_header->addr_size)
7203 retval = bfd_get_signed_16 (abfd, buf);
7206 retval = bfd_get_signed_32 (abfd, buf);
7209 retval = bfd_get_signed_64 (abfd, buf);
7212 internal_error (__FILE__, __LINE__,
7213 _("read_address: bad switch, signed [in module %s]"),
7214 bfd_get_filename (abfd));
7219 switch (cu_header->addr_size)
7222 retval = bfd_get_16 (abfd, buf);
7225 retval = bfd_get_32 (abfd, buf);
7228 retval = bfd_get_64 (abfd, buf);
7231 internal_error (__FILE__, __LINE__,
7232 _("read_address: bad switch, unsigned [in module %s]"),
7233 bfd_get_filename (abfd));
7237 *bytes_read = cu_header->addr_size;
7241 /* Read the initial length from a section. The (draft) DWARF 3
7242 specification allows the initial length to take up either 4 bytes
7243 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
7244 bytes describe the length and all offsets will be 8 bytes in length
7247 An older, non-standard 64-bit format is also handled by this
7248 function. The older format in question stores the initial length
7249 as an 8-byte quantity without an escape value. Lengths greater
7250 than 2^32 aren't very common which means that the initial 4 bytes
7251 is almost always zero. Since a length value of zero doesn't make
7252 sense for the 32-bit format, this initial zero can be considered to
7253 be an escape value which indicates the presence of the older 64-bit
7254 format. As written, the code can't detect (old format) lengths
7255 greater than 4GB. If it becomes necessary to handle lengths
7256 somewhat larger than 4GB, we could allow other small values (such
7257 as the non-sensical values of 1, 2, and 3) to also be used as
7258 escape values indicating the presence of the old format.
7260 The value returned via bytes_read should be used to increment the
7261 relevant pointer after calling read_initial_length().
7263 [ Note: read_initial_length() and read_offset() are based on the
7264 document entitled "DWARF Debugging Information Format", revision
7265 3, draft 8, dated November 19, 2001. This document was obtained
7268 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
7270 This document is only a draft and is subject to change. (So beware.)
7272 Details regarding the older, non-standard 64-bit format were
7273 determined empirically by examining 64-bit ELF files produced by
7274 the SGI toolchain on an IRIX 6.5 machine.
7276 - Kevin, July 16, 2002
7280 read_initial_length (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read)
7282 LONGEST length = bfd_get_32 (abfd, buf);
7284 if (length == 0xffffffff)
7286 length = bfd_get_64 (abfd, buf + 4);
7289 else if (length == 0)
7291 /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
7292 length = bfd_get_64 (abfd, buf);
7303 /* Cover function for read_initial_length.
7304 Returns the length of the object at BUF, and stores the size of the
7305 initial length in *BYTES_READ and stores the size that offsets will be in
7307 If the initial length size is not equivalent to that specified in
7308 CU_HEADER then issue a complaint.
7309 This is useful when reading non-comp-unit headers. */
7312 read_checked_initial_length_and_offset (bfd *abfd, gdb_byte *buf,
7313 const struct comp_unit_head *cu_header,
7314 unsigned int *bytes_read,
7315 unsigned int *offset_size)
7317 LONGEST length = read_initial_length (abfd, buf, bytes_read);
7319 gdb_assert (cu_header->initial_length_size == 4
7320 || cu_header->initial_length_size == 8
7321 || cu_header->initial_length_size == 12);
7323 if (cu_header->initial_length_size != *bytes_read)
7324 complaint (&symfile_complaints,
7325 _("intermixed 32-bit and 64-bit DWARF sections"));
7327 *offset_size = (*bytes_read == 4) ? 4 : 8;
7331 /* Read an offset from the data stream. The size of the offset is
7332 given by cu_header->offset_size. */
7335 read_offset (bfd *abfd, gdb_byte *buf, const struct comp_unit_head *cu_header,
7336 unsigned int *bytes_read)
7338 LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
7339 *bytes_read = cu_header->offset_size;
7343 /* Read an offset from the data stream. */
7346 read_offset_1 (bfd *abfd, gdb_byte *buf, unsigned int offset_size)
7350 switch (offset_size)
7353 retval = bfd_get_32 (abfd, buf);
7356 retval = bfd_get_64 (abfd, buf);
7359 internal_error (__FILE__, __LINE__,
7360 _("read_offset_1: bad switch [in module %s]"),
7361 bfd_get_filename (abfd));
7368 read_n_bytes (bfd *abfd, gdb_byte *buf, unsigned int size)
7370 /* If the size of a host char is 8 bits, we can return a pointer
7371 to the buffer, otherwise we have to copy the data to a buffer
7372 allocated on the temporary obstack. */
7373 gdb_assert (HOST_CHAR_BIT == 8);
7378 read_string (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
7380 /* If the size of a host char is 8 bits, we can return a pointer
7381 to the string, otherwise we have to copy the string to a buffer
7382 allocated on the temporary obstack. */
7383 gdb_assert (HOST_CHAR_BIT == 8);
7386 *bytes_read_ptr = 1;
7389 *bytes_read_ptr = strlen ((char *) buf) + 1;
7390 return (char *) buf;
7394 read_indirect_string (bfd *abfd, gdb_byte *buf,
7395 const struct comp_unit_head *cu_header,
7396 unsigned int *bytes_read_ptr)
7398 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
7400 if (dwarf2_per_objfile->str.buffer == NULL)
7402 error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
7403 bfd_get_filename (abfd));
7406 if (str_offset >= dwarf2_per_objfile->str.size)
7408 error (_("DW_FORM_strp pointing outside of .debug_str section [in module %s]"),
7409 bfd_get_filename (abfd));
7412 gdb_assert (HOST_CHAR_BIT == 8);
7413 if (dwarf2_per_objfile->str.buffer[str_offset] == '\0')
7415 return (char *) (dwarf2_per_objfile->str.buffer + str_offset);
7418 static unsigned long
7419 read_unsigned_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
7421 unsigned long result;
7422 unsigned int num_read;
7432 byte = bfd_get_8 (abfd, buf);
7435 result |= ((unsigned long)(byte & 127) << shift);
7436 if ((byte & 128) == 0)
7442 *bytes_read_ptr = num_read;
7447 read_signed_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
7450 int i, shift, num_read;
7459 byte = bfd_get_8 (abfd, buf);
7462 result |= ((long)(byte & 127) << shift);
7464 if ((byte & 128) == 0)
7469 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
7470 result |= -(((long)1) << shift);
7471 *bytes_read_ptr = num_read;
7475 /* Return a pointer to just past the end of an LEB128 number in BUF. */
7478 skip_leb128 (bfd *abfd, gdb_byte *buf)
7484 byte = bfd_get_8 (abfd, buf);
7486 if ((byte & 128) == 0)
7492 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
7499 cu->language = language_c;
7501 case DW_LANG_C_plus_plus:
7502 cu->language = language_cplus;
7504 case DW_LANG_Fortran77:
7505 case DW_LANG_Fortran90:
7506 case DW_LANG_Fortran95:
7507 cu->language = language_fortran;
7509 case DW_LANG_Mips_Assembler:
7510 cu->language = language_asm;
7513 cu->language = language_java;
7517 cu->language = language_ada;
7519 case DW_LANG_Modula2:
7520 cu->language = language_m2;
7522 case DW_LANG_Pascal83:
7523 cu->language = language_pascal;
7526 cu->language = language_objc;
7528 case DW_LANG_Cobol74:
7529 case DW_LANG_Cobol85:
7531 cu->language = language_minimal;
7534 cu->language_defn = language_def (cu->language);
7537 /* Return the named attribute or NULL if not there. */
7539 static struct attribute *
7540 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
7543 struct attribute *spec = NULL;
7545 for (i = 0; i < die->num_attrs; ++i)
7547 if (die->attrs[i].name == name)
7548 return &die->attrs[i];
7549 if (die->attrs[i].name == DW_AT_specification
7550 || die->attrs[i].name == DW_AT_abstract_origin)
7551 spec = &die->attrs[i];
7556 die = follow_die_ref (die, spec, &cu);
7557 return dwarf2_attr (die, name, cu);
7563 /* Return the named attribute or NULL if not there,
7564 but do not follow DW_AT_specification, etc.
7565 This is for use in contexts where we're reading .debug_types dies.
7566 Following DW_AT_specification, DW_AT_abstract_origin will take us
7567 back up the chain, and we want to go down. */
7569 static struct attribute *
7570 dwarf2_attr_no_follow (struct die_info *die, unsigned int name,
7571 struct dwarf2_cu *cu)
7575 for (i = 0; i < die->num_attrs; ++i)
7576 if (die->attrs[i].name == name)
7577 return &die->attrs[i];
7582 /* Return non-zero iff the attribute NAME is defined for the given DIE,
7583 and holds a non-zero value. This function should only be used for
7584 DW_FORM_flag attributes. */
7587 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
7589 struct attribute *attr = dwarf2_attr (die, name, cu);
7591 return (attr && DW_UNSND (attr));
7595 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
7597 /* A DIE is a declaration if it has a DW_AT_declaration attribute
7598 which value is non-zero. However, we have to be careful with
7599 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
7600 (via dwarf2_flag_true_p) follows this attribute. So we may
7601 end up accidently finding a declaration attribute that belongs
7602 to a different DIE referenced by the specification attribute,
7603 even though the given DIE does not have a declaration attribute. */
7604 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
7605 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
7608 /* Return the die giving the specification for DIE, if there is
7609 one. *SPEC_CU is the CU containing DIE on input, and the CU
7610 containing the return value on output. If there is no
7611 specification, but there is an abstract origin, that is
7614 static struct die_info *
7615 die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
7617 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
7620 if (spec_attr == NULL)
7621 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
7623 if (spec_attr == NULL)
7626 return follow_die_ref (die, spec_attr, spec_cu);
7629 /* Free the line_header structure *LH, and any arrays and strings it
7632 free_line_header (struct line_header *lh)
7634 if (lh->standard_opcode_lengths)
7635 xfree (lh->standard_opcode_lengths);
7637 /* Remember that all the lh->file_names[i].name pointers are
7638 pointers into debug_line_buffer, and don't need to be freed. */
7640 xfree (lh->file_names);
7642 /* Similarly for the include directory names. */
7643 if (lh->include_dirs)
7644 xfree (lh->include_dirs);
7650 /* Add an entry to LH's include directory table. */
7652 add_include_dir (struct line_header *lh, char *include_dir)
7654 /* Grow the array if necessary. */
7655 if (lh->include_dirs_size == 0)
7657 lh->include_dirs_size = 1; /* for testing */
7658 lh->include_dirs = xmalloc (lh->include_dirs_size
7659 * sizeof (*lh->include_dirs));
7661 else if (lh->num_include_dirs >= lh->include_dirs_size)
7663 lh->include_dirs_size *= 2;
7664 lh->include_dirs = xrealloc (lh->include_dirs,
7665 (lh->include_dirs_size
7666 * sizeof (*lh->include_dirs)));
7669 lh->include_dirs[lh->num_include_dirs++] = include_dir;
7673 /* Add an entry to LH's file name table. */
7675 add_file_name (struct line_header *lh,
7677 unsigned int dir_index,
7678 unsigned int mod_time,
7679 unsigned int length)
7681 struct file_entry *fe;
7683 /* Grow the array if necessary. */
7684 if (lh->file_names_size == 0)
7686 lh->file_names_size = 1; /* for testing */
7687 lh->file_names = xmalloc (lh->file_names_size
7688 * sizeof (*lh->file_names));
7690 else if (lh->num_file_names >= lh->file_names_size)
7692 lh->file_names_size *= 2;
7693 lh->file_names = xrealloc (lh->file_names,
7694 (lh->file_names_size
7695 * sizeof (*lh->file_names)));
7698 fe = &lh->file_names[lh->num_file_names++];
7700 fe->dir_index = dir_index;
7701 fe->mod_time = mod_time;
7702 fe->length = length;
7708 /* Read the statement program header starting at OFFSET in
7709 .debug_line, according to the endianness of ABFD. Return a pointer
7710 to a struct line_header, allocated using xmalloc.
7712 NOTE: the strings in the include directory and file name tables of
7713 the returned object point into debug_line_buffer, and must not be
7715 static struct line_header *
7716 dwarf_decode_line_header (unsigned int offset, bfd *abfd,
7717 struct dwarf2_cu *cu)
7719 struct cleanup *back_to;
7720 struct line_header *lh;
7722 unsigned int bytes_read, offset_size;
7724 char *cur_dir, *cur_file;
7726 if (dwarf2_per_objfile->line.buffer == NULL)
7728 complaint (&symfile_complaints, _("missing .debug_line section"));
7732 /* Make sure that at least there's room for the total_length field.
7733 That could be 12 bytes long, but we're just going to fudge that. */
7734 if (offset + 4 >= dwarf2_per_objfile->line.size)
7736 dwarf2_statement_list_fits_in_line_number_section_complaint ();
7740 lh = xmalloc (sizeof (*lh));
7741 memset (lh, 0, sizeof (*lh));
7742 back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
7745 line_ptr = dwarf2_per_objfile->line.buffer + offset;
7747 /* Read in the header. */
7749 read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
7750 &bytes_read, &offset_size);
7751 line_ptr += bytes_read;
7752 if (line_ptr + lh->total_length > (dwarf2_per_objfile->line.buffer
7753 + dwarf2_per_objfile->line.size))
7755 dwarf2_statement_list_fits_in_line_number_section_complaint ();
7758 lh->statement_program_end = line_ptr + lh->total_length;
7759 lh->version = read_2_bytes (abfd, line_ptr);
7761 lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
7762 line_ptr += offset_size;
7763 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
7765 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
7767 lh->line_base = read_1_signed_byte (abfd, line_ptr);
7769 lh->line_range = read_1_byte (abfd, line_ptr);
7771 lh->opcode_base = read_1_byte (abfd, line_ptr);
7773 lh->standard_opcode_lengths
7774 = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
7776 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
7777 for (i = 1; i < lh->opcode_base; ++i)
7779 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
7783 /* Read directory table. */
7784 while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL)
7786 line_ptr += bytes_read;
7787 add_include_dir (lh, cur_dir);
7789 line_ptr += bytes_read;
7791 /* Read file name table. */
7792 while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL)
7794 unsigned int dir_index, mod_time, length;
7796 line_ptr += bytes_read;
7797 dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
7798 line_ptr += bytes_read;
7799 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
7800 line_ptr += bytes_read;
7801 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
7802 line_ptr += bytes_read;
7804 add_file_name (lh, cur_file, dir_index, mod_time, length);
7806 line_ptr += bytes_read;
7807 lh->statement_program_start = line_ptr;
7809 if (line_ptr > (dwarf2_per_objfile->line.buffer
7810 + dwarf2_per_objfile->line.size))
7811 complaint (&symfile_complaints,
7812 _("line number info header doesn't fit in `.debug_line' section"));
7814 discard_cleanups (back_to);
7818 /* This function exists to work around a bug in certain compilers
7819 (particularly GCC 2.95), in which the first line number marker of a
7820 function does not show up until after the prologue, right before
7821 the second line number marker. This function shifts ADDRESS down
7822 to the beginning of the function if necessary, and is called on
7823 addresses passed to record_line. */
7826 check_cu_functions (CORE_ADDR address, struct dwarf2_cu *cu)
7828 struct function_range *fn;
7830 /* Find the function_range containing address. */
7835 cu->cached_fn = cu->first_fn;
7839 if (fn->lowpc <= address && fn->highpc > address)
7845 while (fn && fn != cu->cached_fn)
7846 if (fn->lowpc <= address && fn->highpc > address)
7856 if (address != fn->lowpc)
7857 complaint (&symfile_complaints,
7858 _("misplaced first line number at 0x%lx for '%s'"),
7859 (unsigned long) address, fn->name);
7864 /* Decode the Line Number Program (LNP) for the given line_header
7865 structure and CU. The actual information extracted and the type
7866 of structures created from the LNP depends on the value of PST.
7868 1. If PST is NULL, then this procedure uses the data from the program
7869 to create all necessary symbol tables, and their linetables.
7870 The compilation directory of the file is passed in COMP_DIR,
7871 and must not be NULL.
7873 2. If PST is not NULL, this procedure reads the program to determine
7874 the list of files included by the unit represented by PST, and
7875 builds all the associated partial symbol tables. In this case,
7876 the value of COMP_DIR is ignored, and can thus be NULL (the COMP_DIR
7877 is not used to compute the full name of the symtab, and therefore
7878 omitting it when building the partial symtab does not introduce
7879 the potential for inconsistency - a partial symtab and its associated
7880 symbtab having a different fullname -). */
7883 dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd,
7884 struct dwarf2_cu *cu, struct partial_symtab *pst)
7886 gdb_byte *line_ptr, *extended_end;
7888 unsigned int bytes_read, extended_len;
7889 unsigned char op_code, extended_op, adj_opcode;
7891 struct objfile *objfile = cu->objfile;
7892 struct gdbarch *gdbarch = get_objfile_arch (objfile);
7893 const int decode_for_pst_p = (pst != NULL);
7894 struct subfile *last_subfile = NULL, *first_subfile = current_subfile;
7896 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
7898 line_ptr = lh->statement_program_start;
7899 line_end = lh->statement_program_end;
7901 /* Read the statement sequences until there's nothing left. */
7902 while (line_ptr < line_end)
7904 /* state machine registers */
7905 CORE_ADDR address = 0;
7906 unsigned int file = 1;
7907 unsigned int line = 1;
7908 unsigned int column = 0;
7909 int is_stmt = lh->default_is_stmt;
7910 int basic_block = 0;
7911 int end_sequence = 0;
7914 if (!decode_for_pst_p && lh->num_file_names >= file)
7916 /* Start a subfile for the current file of the state machine. */
7917 /* lh->include_dirs and lh->file_names are 0-based, but the
7918 directory and file name numbers in the statement program
7920 struct file_entry *fe = &lh->file_names[file - 1];
7924 dir = lh->include_dirs[fe->dir_index - 1];
7926 dwarf2_start_subfile (fe->name, dir, comp_dir);
7929 /* Decode the table. */
7930 while (!end_sequence)
7932 op_code = read_1_byte (abfd, line_ptr);
7934 if (line_ptr > line_end)
7936 dwarf2_debug_line_missing_end_sequence_complaint ();
7940 if (op_code >= lh->opcode_base)
7942 /* Special operand. */
7943 adj_opcode = op_code - lh->opcode_base;
7944 address += (adj_opcode / lh->line_range)
7945 * lh->minimum_instruction_length;
7946 line += lh->line_base + (adj_opcode % lh->line_range);
7947 if (lh->num_file_names < file || file == 0)
7948 dwarf2_debug_line_missing_file_complaint ();
7951 lh->file_names[file - 1].included_p = 1;
7952 if (!decode_for_pst_p && is_stmt)
7954 if (last_subfile != current_subfile)
7956 addr = gdbarch_addr_bits_remove (gdbarch, address);
7958 record_line (last_subfile, 0, addr);
7959 last_subfile = current_subfile;
7961 /* Append row to matrix using current values. */
7962 addr = check_cu_functions (address, cu);
7963 addr = gdbarch_addr_bits_remove (gdbarch, addr);
7964 record_line (current_subfile, line, addr);
7969 else switch (op_code)
7971 case DW_LNS_extended_op:
7972 extended_len = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
7973 line_ptr += bytes_read;
7974 extended_end = line_ptr + extended_len;
7975 extended_op = read_1_byte (abfd, line_ptr);
7977 switch (extended_op)
7979 case DW_LNE_end_sequence:
7982 case DW_LNE_set_address:
7983 address = read_address (abfd, line_ptr, cu, &bytes_read);
7984 line_ptr += bytes_read;
7985 address += baseaddr;
7987 case DW_LNE_define_file:
7990 unsigned int dir_index, mod_time, length;
7992 cur_file = read_string (abfd, line_ptr, &bytes_read);
7993 line_ptr += bytes_read;
7995 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
7996 line_ptr += bytes_read;
7998 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
7999 line_ptr += bytes_read;
8001 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
8002 line_ptr += bytes_read;
8003 add_file_name (lh, cur_file, dir_index, mod_time, length);
8006 case DW_LNE_set_discriminator:
8007 /* The discriminator is not interesting to the debugger;
8009 line_ptr = extended_end;
8012 complaint (&symfile_complaints,
8013 _("mangled .debug_line section"));
8016 /* Make sure that we parsed the extended op correctly. If e.g.
8017 we expected a different address size than the producer used,
8018 we may have read the wrong number of bytes. */
8019 if (line_ptr != extended_end)
8021 complaint (&symfile_complaints,
8022 _("mangled .debug_line section"));
8027 if (lh->num_file_names < file || file == 0)
8028 dwarf2_debug_line_missing_file_complaint ();
8031 lh->file_names[file - 1].included_p = 1;
8032 if (!decode_for_pst_p && is_stmt)
8034 if (last_subfile != current_subfile)
8036 addr = gdbarch_addr_bits_remove (gdbarch, address);
8038 record_line (last_subfile, 0, addr);
8039 last_subfile = current_subfile;
8041 addr = check_cu_functions (address, cu);
8042 addr = gdbarch_addr_bits_remove (gdbarch, addr);
8043 record_line (current_subfile, line, addr);
8048 case DW_LNS_advance_pc:
8049 address += lh->minimum_instruction_length
8050 * read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
8051 line_ptr += bytes_read;
8053 case DW_LNS_advance_line:
8054 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
8055 line_ptr += bytes_read;
8057 case DW_LNS_set_file:
8059 /* The arrays lh->include_dirs and lh->file_names are
8060 0-based, but the directory and file name numbers in
8061 the statement program are 1-based. */
8062 struct file_entry *fe;
8065 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
8066 line_ptr += bytes_read;
8067 if (lh->num_file_names < file || file == 0)
8068 dwarf2_debug_line_missing_file_complaint ();
8071 fe = &lh->file_names[file - 1];
8073 dir = lh->include_dirs[fe->dir_index - 1];
8074 if (!decode_for_pst_p)
8076 last_subfile = current_subfile;
8077 dwarf2_start_subfile (fe->name, dir, comp_dir);
8082 case DW_LNS_set_column:
8083 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
8084 line_ptr += bytes_read;
8086 case DW_LNS_negate_stmt:
8087 is_stmt = (!is_stmt);
8089 case DW_LNS_set_basic_block:
8092 /* Add to the address register of the state machine the
8093 address increment value corresponding to special opcode
8094 255. I.e., this value is scaled by the minimum
8095 instruction length since special opcode 255 would have
8096 scaled the the increment. */
8097 case DW_LNS_const_add_pc:
8098 address += (lh->minimum_instruction_length
8099 * ((255 - lh->opcode_base) / lh->line_range));
8101 case DW_LNS_fixed_advance_pc:
8102 address += read_2_bytes (abfd, line_ptr);
8107 /* Unknown standard opcode, ignore it. */
8110 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
8112 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
8113 line_ptr += bytes_read;
8118 if (lh->num_file_names < file || file == 0)
8119 dwarf2_debug_line_missing_file_complaint ();
8122 lh->file_names[file - 1].included_p = 1;
8123 if (!decode_for_pst_p)
8125 addr = gdbarch_addr_bits_remove (gdbarch, address);
8126 record_line (current_subfile, 0, addr);
8131 if (decode_for_pst_p)
8135 /* Now that we're done scanning the Line Header Program, we can
8136 create the psymtab of each included file. */
8137 for (file_index = 0; file_index < lh->num_file_names; file_index++)
8138 if (lh->file_names[file_index].included_p == 1)
8140 const struct file_entry fe = lh->file_names [file_index];
8141 char *include_name = fe.name;
8142 char *dir_name = NULL;
8143 char *pst_filename = pst->filename;
8146 dir_name = lh->include_dirs[fe.dir_index - 1];
8148 if (!IS_ABSOLUTE_PATH (include_name) && dir_name != NULL)
8150 include_name = concat (dir_name, SLASH_STRING,
8151 include_name, (char *)NULL);
8152 make_cleanup (xfree, include_name);
8155 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
8157 pst_filename = concat (pst->dirname, SLASH_STRING,
8158 pst_filename, (char *)NULL);
8159 make_cleanup (xfree, pst_filename);
8162 if (strcmp (include_name, pst_filename) != 0)
8163 dwarf2_create_include_psymtab (include_name, pst, objfile);
8168 /* Make sure a symtab is created for every file, even files
8169 which contain only variables (i.e. no code with associated
8173 struct file_entry *fe;
8175 for (i = 0; i < lh->num_file_names; i++)
8178 fe = &lh->file_names[i];
8180 dir = lh->include_dirs[fe->dir_index - 1];
8181 dwarf2_start_subfile (fe->name, dir, comp_dir);
8183 /* Skip the main file; we don't need it, and it must be
8184 allocated last, so that it will show up before the
8185 non-primary symtabs in the objfile's symtab list. */
8186 if (current_subfile == first_subfile)
8189 if (current_subfile->symtab == NULL)
8190 current_subfile->symtab = allocate_symtab (current_subfile->name,
8192 fe->symtab = current_subfile->symtab;
8197 /* Start a subfile for DWARF. FILENAME is the name of the file and
8198 DIRNAME the name of the source directory which contains FILENAME
8199 or NULL if not known. COMP_DIR is the compilation directory for the
8200 linetable's compilation unit or NULL if not known.
8201 This routine tries to keep line numbers from identical absolute and
8202 relative file names in a common subfile.
8204 Using the `list' example from the GDB testsuite, which resides in
8205 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
8206 of /srcdir/list0.c yields the following debugging information for list0.c:
8208 DW_AT_name: /srcdir/list0.c
8209 DW_AT_comp_dir: /compdir
8210 files.files[0].name: list0.h
8211 files.files[0].dir: /srcdir
8212 files.files[1].name: list0.c
8213 files.files[1].dir: /srcdir
8215 The line number information for list0.c has to end up in a single
8216 subfile, so that `break /srcdir/list0.c:1' works as expected.
8217 start_subfile will ensure that this happens provided that we pass the
8218 concatenation of files.files[1].dir and files.files[1].name as the
8222 dwarf2_start_subfile (char *filename, char *dirname, char *comp_dir)
8226 /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
8227 `start_symtab' will always pass the contents of DW_AT_comp_dir as
8228 second argument to start_subfile. To be consistent, we do the
8229 same here. In order not to lose the line information directory,
8230 we concatenate it to the filename when it makes sense.
8231 Note that the Dwarf3 standard says (speaking of filenames in line
8232 information): ``The directory index is ignored for file names
8233 that represent full path names''. Thus ignoring dirname in the
8234 `else' branch below isn't an issue. */
8236 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
8237 fullname = concat (dirname, SLASH_STRING, filename, (char *)NULL);
8239 fullname = filename;
8241 start_subfile (fullname, comp_dir);
8243 if (fullname != filename)
8248 var_decode_location (struct attribute *attr, struct symbol *sym,
8249 struct dwarf2_cu *cu)
8251 struct objfile *objfile = cu->objfile;
8252 struct comp_unit_head *cu_header = &cu->header;
8254 /* NOTE drow/2003-01-30: There used to be a comment and some special
8255 code here to turn a symbol with DW_AT_external and a
8256 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
8257 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
8258 with some versions of binutils) where shared libraries could have
8259 relocations against symbols in their debug information - the
8260 minimal symbol would have the right address, but the debug info
8261 would not. It's no longer necessary, because we will explicitly
8262 apply relocations when we read in the debug information now. */
8264 /* A DW_AT_location attribute with no contents indicates that a
8265 variable has been optimized away. */
8266 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
8268 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
8272 /* Handle one degenerate form of location expression specially, to
8273 preserve GDB's previous behavior when section offsets are
8274 specified. If this is just a DW_OP_addr then mark this symbol
8277 if (attr_form_is_block (attr)
8278 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size
8279 && DW_BLOCK (attr)->data[0] == DW_OP_addr)
8283 SYMBOL_VALUE_ADDRESS (sym) =
8284 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
8285 SYMBOL_CLASS (sym) = LOC_STATIC;
8286 fixup_symbol_section (sym, objfile);
8287 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
8288 SYMBOL_SECTION (sym));
8292 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
8293 expression evaluator, and use LOC_COMPUTED only when necessary
8294 (i.e. when the value of a register or memory location is
8295 referenced, or a thread-local block, etc.). Then again, it might
8296 not be worthwhile. I'm assuming that it isn't unless performance
8297 or memory numbers show me otherwise. */
8299 dwarf2_symbol_mark_computed (attr, sym, cu);
8300 SYMBOL_CLASS (sym) = LOC_COMPUTED;
8303 /* Given a pointer to a DWARF information entry, figure out if we need
8304 to make a symbol table entry for it, and if so, create a new entry
8305 and return a pointer to it.
8306 If TYPE is NULL, determine symbol type from the die, otherwise
8307 used the passed type. */
8309 static struct symbol *
8310 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
8312 struct objfile *objfile = cu->objfile;
8313 struct symbol *sym = NULL;
8315 struct attribute *attr = NULL;
8316 struct attribute *attr2 = NULL;
8318 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
8320 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
8322 if (die->tag != DW_TAG_namespace)
8323 name = dwarf2_linkage_name (die, cu);
8325 name = TYPE_NAME (type);
8329 sym = (struct symbol *) obstack_alloc (&objfile->objfile_obstack,
8330 sizeof (struct symbol));
8331 OBJSTAT (objfile, n_syms++);
8332 memset (sym, 0, sizeof (struct symbol));
8334 /* Cache this symbol's name and the name's demangled form (if any). */
8335 SYMBOL_LANGUAGE (sym) = cu->language;
8336 SYMBOL_SET_NAMES (sym, name, strlen (name), 0, objfile);
8338 /* Default assumptions.
8339 Use the passed type or decode it from the die. */
8340 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
8341 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
8343 SYMBOL_TYPE (sym) = type;
8345 SYMBOL_TYPE (sym) = die_type (die, cu);
8346 attr = dwarf2_attr (die,
8347 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
8351 SYMBOL_LINE (sym) = DW_UNSND (attr);
8354 attr = dwarf2_attr (die,
8355 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
8359 int file_index = DW_UNSND (attr);
8360 if (cu->line_header == NULL
8361 || file_index > cu->line_header->num_file_names)
8362 complaint (&symfile_complaints,
8363 _("file index out of range"));
8364 else if (file_index > 0)
8366 struct file_entry *fe;
8367 fe = &cu->line_header->file_names[file_index - 1];
8368 SYMBOL_SYMTAB (sym) = fe->symtab;
8375 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
8378 SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
8380 SYMBOL_CLASS (sym) = LOC_LABEL;
8382 case DW_TAG_subprogram:
8383 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
8385 SYMBOL_CLASS (sym) = LOC_BLOCK;
8386 attr2 = dwarf2_attr (die, DW_AT_external, cu);
8387 if ((attr2 && (DW_UNSND (attr2) != 0))
8388 || cu->language == language_ada)
8390 /* Subprograms marked external are stored as a global symbol.
8391 Ada subprograms, whether marked external or not, are always
8392 stored as a global symbol, because we want to be able to
8393 access them globally. For instance, we want to be able
8394 to break on a nested subprogram without having to
8395 specify the context. */
8396 add_symbol_to_list (sym, &global_symbols);
8400 add_symbol_to_list (sym, cu->list_in_scope);
8403 case DW_TAG_inlined_subroutine:
8404 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
8406 SYMBOL_CLASS (sym) = LOC_BLOCK;
8407 SYMBOL_INLINED (sym) = 1;
8408 /* Do not add the symbol to any lists. It will be found via
8409 BLOCK_FUNCTION from the blockvector. */
8411 case DW_TAG_variable:
8412 /* Compilation with minimal debug info may result in variables
8413 with missing type entries. Change the misleading `void' type
8414 to something sensible. */
8415 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
8417 = objfile_type (objfile)->nodebug_data_symbol;
8419 attr = dwarf2_attr (die, DW_AT_const_value, cu);
8422 dwarf2_const_value (attr, sym, cu);
8423 attr2 = dwarf2_attr (die, DW_AT_external, cu);
8424 if (attr2 && (DW_UNSND (attr2) != 0))
8425 add_symbol_to_list (sym, &global_symbols);
8427 add_symbol_to_list (sym, cu->list_in_scope);
8430 attr = dwarf2_attr (die, DW_AT_location, cu);
8433 var_decode_location (attr, sym, cu);
8434 attr2 = dwarf2_attr (die, DW_AT_external, cu);
8435 if (attr2 && (DW_UNSND (attr2) != 0))
8436 add_symbol_to_list (sym, &global_symbols);
8438 add_symbol_to_list (sym, cu->list_in_scope);
8442 /* We do not know the address of this symbol.
8443 If it is an external symbol and we have type information
8444 for it, enter the symbol as a LOC_UNRESOLVED symbol.
8445 The address of the variable will then be determined from
8446 the minimal symbol table whenever the variable is
8448 attr2 = dwarf2_attr (die, DW_AT_external, cu);
8449 if (attr2 && (DW_UNSND (attr2) != 0)
8450 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
8452 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
8453 add_symbol_to_list (sym, cu->list_in_scope);
8455 else if (!die_is_declaration (die, cu))
8457 /* Use the default LOC_OPTIMIZED_OUT class. */
8458 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
8459 add_symbol_to_list (sym, cu->list_in_scope);
8463 case DW_TAG_formal_parameter:
8464 /* If we are inside a function, mark this as an argument. If
8465 not, we might be looking at an argument to an inlined function
8466 when we do not have enough information to show inlined frames;
8467 pretend it's a local variable in that case so that the user can
8469 if (context_stack_depth > 0
8470 && context_stack[context_stack_depth - 1].name != NULL)
8471 SYMBOL_IS_ARGUMENT (sym) = 1;
8472 attr = dwarf2_attr (die, DW_AT_location, cu);
8475 var_decode_location (attr, sym, cu);
8477 attr = dwarf2_attr (die, DW_AT_const_value, cu);
8480 dwarf2_const_value (attr, sym, cu);
8482 add_symbol_to_list (sym, cu->list_in_scope);
8484 case DW_TAG_unspecified_parameters:
8485 /* From varargs functions; gdb doesn't seem to have any
8486 interest in this information, so just ignore it for now.
8489 case DW_TAG_class_type:
8490 case DW_TAG_interface_type:
8491 case DW_TAG_structure_type:
8492 case DW_TAG_union_type:
8493 case DW_TAG_set_type:
8494 case DW_TAG_enumeration_type:
8495 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
8496 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
8498 /* Make sure that the symbol includes appropriate enclosing
8499 classes/namespaces in its name. These are calculated in
8500 read_structure_type, and the correct name is saved in
8503 if (cu->language == language_cplus
8504 || cu->language == language_java)
8506 struct type *type = SYMBOL_TYPE (sym);
8508 if (TYPE_TAG_NAME (type) != NULL)
8510 /* FIXME: carlton/2003-11-10: Should this use
8511 SYMBOL_SET_NAMES instead? (The same problem also
8512 arises further down in this function.) */
8513 /* The type's name is already allocated along with
8514 this objfile, so we don't need to duplicate it
8516 SYMBOL_LINKAGE_NAME (sym) = TYPE_TAG_NAME (type);
8521 /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
8522 really ever be static objects: otherwise, if you try
8523 to, say, break of a class's method and you're in a file
8524 which doesn't mention that class, it won't work unless
8525 the check for all static symbols in lookup_symbol_aux
8526 saves you. See the OtherFileClass tests in
8527 gdb.c++/namespace.exp. */
8529 struct pending **list_to_add;
8531 list_to_add = (cu->list_in_scope == &file_symbols
8532 && (cu->language == language_cplus
8533 || cu->language == language_java)
8534 ? &global_symbols : cu->list_in_scope);
8536 add_symbol_to_list (sym, list_to_add);
8538 /* The semantics of C++ state that "struct foo { ... }" also
8539 defines a typedef for "foo". A Java class declaration also
8540 defines a typedef for the class. */
8541 if (cu->language == language_cplus
8542 || cu->language == language_java
8543 || cu->language == language_ada)
8545 /* The symbol's name is already allocated along with
8546 this objfile, so we don't need to duplicate it for
8548 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
8549 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
8553 case DW_TAG_typedef:
8554 SYMBOL_LINKAGE_NAME (sym) = (char *) dwarf2_full_name (die, cu);
8555 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
8556 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
8557 add_symbol_to_list (sym, cu->list_in_scope);
8559 case DW_TAG_base_type:
8560 case DW_TAG_subrange_type:
8561 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
8562 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
8563 add_symbol_to_list (sym, cu->list_in_scope);
8565 case DW_TAG_enumerator:
8566 SYMBOL_LINKAGE_NAME (sym) = (char *) dwarf2_full_name (die, cu);
8567 attr = dwarf2_attr (die, DW_AT_const_value, cu);
8570 dwarf2_const_value (attr, sym, cu);
8573 /* NOTE: carlton/2003-11-10: See comment above in the
8574 DW_TAG_class_type, etc. block. */
8576 struct pending **list_to_add;
8578 list_to_add = (cu->list_in_scope == &file_symbols
8579 && (cu->language == language_cplus
8580 || cu->language == language_java)
8581 ? &global_symbols : cu->list_in_scope);
8583 add_symbol_to_list (sym, list_to_add);
8586 case DW_TAG_namespace:
8587 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
8588 add_symbol_to_list (sym, &global_symbols);
8591 /* Not a tag we recognize. Hopefully we aren't processing
8592 trash data, but since we must specifically ignore things
8593 we don't recognize, there is nothing else we should do at
8595 complaint (&symfile_complaints, _("unsupported tag: '%s'"),
8596 dwarf_tag_name (die->tag));
8600 /* For the benefit of old versions of GCC, check for anonymous
8601 namespaces based on the demangled name. */
8602 if (!processing_has_namespace_info
8603 && cu->language == language_cplus
8604 && dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu) != NULL)
8605 cp_scan_for_anonymous_namespaces (sym);
8610 /* Copy constant value from an attribute to a symbol. */
8613 dwarf2_const_value (struct attribute *attr, struct symbol *sym,
8614 struct dwarf2_cu *cu)
8616 struct objfile *objfile = cu->objfile;
8617 struct comp_unit_head *cu_header = &cu->header;
8618 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
8619 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
8620 struct dwarf_block *blk;
8625 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != cu_header->addr_size)
8626 dwarf2_const_value_length_mismatch_complaint (SYMBOL_PRINT_NAME (sym),
8627 cu_header->addr_size,
8628 TYPE_LENGTH (SYMBOL_TYPE
8630 SYMBOL_VALUE_BYTES (sym) =
8631 obstack_alloc (&objfile->objfile_obstack, cu_header->addr_size);
8632 /* NOTE: cagney/2003-05-09: In-lined store_address call with
8633 it's body - store_unsigned_integer. */
8634 store_unsigned_integer (SYMBOL_VALUE_BYTES (sym), cu_header->addr_size,
8635 byte_order, DW_ADDR (attr));
8636 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
8638 case DW_FORM_string:
8640 /* DW_STRING is already allocated on the obstack, point directly
8642 SYMBOL_VALUE_BYTES (sym) = (gdb_byte *) DW_STRING (attr);
8643 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
8645 case DW_FORM_block1:
8646 case DW_FORM_block2:
8647 case DW_FORM_block4:
8649 blk = DW_BLOCK (attr);
8650 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != blk->size)
8651 dwarf2_const_value_length_mismatch_complaint (SYMBOL_PRINT_NAME (sym),
8653 TYPE_LENGTH (SYMBOL_TYPE
8655 SYMBOL_VALUE_BYTES (sym) =
8656 obstack_alloc (&objfile->objfile_obstack, blk->size);
8657 memcpy (SYMBOL_VALUE_BYTES (sym), blk->data, blk->size);
8658 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
8661 /* The DW_AT_const_value attributes are supposed to carry the
8662 symbol's value "represented as it would be on the target
8663 architecture." By the time we get here, it's already been
8664 converted to host endianness, so we just need to sign- or
8665 zero-extend it as appropriate. */
8667 dwarf2_const_value_data (attr, sym, 8);
8670 dwarf2_const_value_data (attr, sym, 16);
8673 dwarf2_const_value_data (attr, sym, 32);
8676 dwarf2_const_value_data (attr, sym, 64);
8680 SYMBOL_VALUE (sym) = DW_SND (attr);
8681 SYMBOL_CLASS (sym) = LOC_CONST;
8685 SYMBOL_VALUE (sym) = DW_UNSND (attr);
8686 SYMBOL_CLASS (sym) = LOC_CONST;
8690 complaint (&symfile_complaints,
8691 _("unsupported const value attribute form: '%s'"),
8692 dwarf_form_name (attr->form));
8693 SYMBOL_VALUE (sym) = 0;
8694 SYMBOL_CLASS (sym) = LOC_CONST;
8700 /* Given an attr with a DW_FORM_dataN value in host byte order, sign-
8701 or zero-extend it as appropriate for the symbol's type. */
8703 dwarf2_const_value_data (struct attribute *attr,
8707 LONGEST l = DW_UNSND (attr);
8709 if (bits < sizeof (l) * 8)
8711 if (TYPE_UNSIGNED (SYMBOL_TYPE (sym)))
8712 l &= ((LONGEST) 1 << bits) - 1;
8714 l = (l << (sizeof (l) * 8 - bits)) >> (sizeof (l) * 8 - bits);
8717 SYMBOL_VALUE (sym) = l;
8718 SYMBOL_CLASS (sym) = LOC_CONST;
8722 /* Return the type of the die in question using its DW_AT_type attribute. */
8724 static struct type *
8725 die_type (struct die_info *die, struct dwarf2_cu *cu)
8728 struct attribute *type_attr;
8729 struct die_info *type_die;
8731 type_attr = dwarf2_attr (die, DW_AT_type, cu);
8734 /* A missing DW_AT_type represents a void type. */
8735 return objfile_type (cu->objfile)->builtin_void;
8738 type_die = follow_die_ref_or_sig (die, type_attr, &cu);
8740 type = tag_type_to_type (type_die, cu);
8743 dump_die_for_error (type_die);
8744 error (_("Dwarf Error: Problem turning type die at offset into gdb type [in module %s]"),
8750 /* Return the containing type of the die in question using its
8751 DW_AT_containing_type attribute. */
8753 static struct type *
8754 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
8756 struct type *type = NULL;
8757 struct attribute *type_attr;
8758 struct die_info *type_die = NULL;
8760 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
8763 type_die = follow_die_ref_or_sig (die, type_attr, &cu);
8764 type = tag_type_to_type (type_die, cu);
8769 dump_die_for_error (type_die);
8770 error (_("Dwarf Error: Problem turning containing type into gdb type [in module %s]"),
8776 static struct type *
8777 tag_type_to_type (struct die_info *die, struct dwarf2_cu *cu)
8779 struct type *this_type;
8781 this_type = read_type_die (die, cu);
8784 dump_die_for_error (die);
8785 error (_("Dwarf Error: Cannot find type of die [in module %s]"),
8791 static struct type *
8792 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
8794 struct type *this_type;
8796 this_type = get_die_type (die, cu);
8802 case DW_TAG_class_type:
8803 case DW_TAG_interface_type:
8804 case DW_TAG_structure_type:
8805 case DW_TAG_union_type:
8806 this_type = read_structure_type (die, cu);
8808 case DW_TAG_enumeration_type:
8809 this_type = read_enumeration_type (die, cu);
8811 case DW_TAG_subprogram:
8812 case DW_TAG_subroutine_type:
8813 case DW_TAG_inlined_subroutine:
8814 this_type = read_subroutine_type (die, cu);
8816 case DW_TAG_array_type:
8817 this_type = read_array_type (die, cu);
8819 case DW_TAG_set_type:
8820 this_type = read_set_type (die, cu);
8822 case DW_TAG_pointer_type:
8823 this_type = read_tag_pointer_type (die, cu);
8825 case DW_TAG_ptr_to_member_type:
8826 this_type = read_tag_ptr_to_member_type (die, cu);
8828 case DW_TAG_reference_type:
8829 this_type = read_tag_reference_type (die, cu);
8831 case DW_TAG_const_type:
8832 this_type = read_tag_const_type (die, cu);
8834 case DW_TAG_volatile_type:
8835 this_type = read_tag_volatile_type (die, cu);
8837 case DW_TAG_string_type:
8838 this_type = read_tag_string_type (die, cu);
8840 case DW_TAG_typedef:
8841 this_type = read_typedef (die, cu);
8843 case DW_TAG_subrange_type:
8844 this_type = read_subrange_type (die, cu);
8846 case DW_TAG_base_type:
8847 this_type = read_base_type (die, cu);
8849 case DW_TAG_unspecified_type:
8850 this_type = read_unspecified_type (die, cu);
8852 case DW_TAG_namespace:
8853 this_type = read_namespace_type (die, cu);
8856 complaint (&symfile_complaints, _("unexpected tag in read_type_die: '%s'"),
8857 dwarf_tag_name (die->tag));
8864 /* Return the name of the namespace/class that DIE is defined within,
8865 or "" if we can't tell. The caller should not xfree the result.
8867 For example, if we're within the method foo() in the following
8877 then determine_prefix on foo's die will return "N::C". */
8880 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
8882 struct die_info *parent, *spec_die;
8883 struct dwarf2_cu *spec_cu;
8884 struct type *parent_type;
8886 if (cu->language != language_cplus
8887 && cu->language != language_java)
8890 /* We have to be careful in the presence of DW_AT_specification.
8891 For example, with GCC 3.4, given the code
8895 // Definition of N::foo.
8899 then we'll have a tree of DIEs like this:
8901 1: DW_TAG_compile_unit
8902 2: DW_TAG_namespace // N
8903 3: DW_TAG_subprogram // declaration of N::foo
8904 4: DW_TAG_subprogram // definition of N::foo
8905 DW_AT_specification // refers to die #3
8907 Thus, when processing die #4, we have to pretend that we're in
8908 the context of its DW_AT_specification, namely the contex of die
8911 spec_die = die_specification (die, &spec_cu);
8912 if (spec_die == NULL)
8913 parent = die->parent;
8916 parent = spec_die->parent;
8923 switch (parent->tag)
8925 case DW_TAG_namespace:
8926 parent_type = read_type_die (parent, cu);
8927 /* We give a name to even anonymous namespaces. */
8928 return TYPE_TAG_NAME (parent_type);
8929 case DW_TAG_class_type:
8930 case DW_TAG_interface_type:
8931 case DW_TAG_structure_type:
8932 case DW_TAG_union_type:
8933 parent_type = read_type_die (parent, cu);
8934 if (TYPE_TAG_NAME (parent_type) != NULL)
8935 return TYPE_TAG_NAME (parent_type);
8937 /* An anonymous structure is only allowed non-static data
8938 members; no typedefs, no member functions, et cetera.
8939 So it does not need a prefix. */
8942 return determine_prefix (parent, cu);
8946 /* Return a newly-allocated string formed by concatenating PREFIX and
8947 SUFFIX with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
8948 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null,
8949 perform an obconcat, otherwise allocate storage for the result. The CU argument
8950 is used to determine the language and hence, the appropriate separator. */
8952 #define MAX_SEP_LEN 2 /* sizeof ("::") */
8955 typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
8956 struct dwarf2_cu *cu)
8960 if (suffix == NULL || suffix[0] == '\0' || prefix == NULL || prefix[0] == '\0')
8962 else if (cu->language == language_java)
8974 char *retval = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
8975 strcpy (retval, prefix);
8976 strcat (retval, sep);
8977 strcat (retval, suffix);
8982 /* We have an obstack. */
8983 return obconcat (obs, prefix, sep, suffix);
8987 /* Return sibling of die, NULL if no sibling. */
8989 static struct die_info *
8990 sibling_die (struct die_info *die)
8992 return die->sibling;
8995 /* Get linkage name of a die, return NULL if not found. */
8998 dwarf2_linkage_name (struct die_info *die, struct dwarf2_cu *cu)
9000 struct attribute *attr;
9002 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
9003 if (attr && DW_STRING (attr))
9004 return DW_STRING (attr);
9005 return dwarf2_name (die, cu);
9008 /* Get name of a die, return NULL if not found. */
9011 dwarf2_canonicalize_name (char *name, struct dwarf2_cu *cu,
9012 struct obstack *obstack)
9014 if (name && cu->language == language_cplus)
9016 char *canon_name = cp_canonicalize_string (name);
9018 if (canon_name != NULL)
9020 if (strcmp (canon_name, name) != 0)
9021 name = obsavestring (canon_name, strlen (canon_name),
9030 /* Get name of a die, return NULL if not found. */
9033 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
9035 struct attribute *attr;
9037 attr = dwarf2_attr (die, DW_AT_name, cu);
9038 if (!attr || !DW_STRING (attr))
9043 case DW_TAG_compile_unit:
9044 /* Compilation units have a DW_AT_name that is a filename, not
9045 a source language identifier. */
9046 case DW_TAG_enumeration_type:
9047 case DW_TAG_enumerator:
9048 /* These tags always have simple identifiers already; no need
9049 to canonicalize them. */
9050 return DW_STRING (attr);
9052 if (!DW_STRING_IS_CANONICAL (attr))
9055 = dwarf2_canonicalize_name (DW_STRING (attr), cu,
9056 &cu->objfile->objfile_obstack);
9057 DW_STRING_IS_CANONICAL (attr) = 1;
9059 return DW_STRING (attr);
9063 /* Return the die that this die in an extension of, or NULL if there
9064 is none. *EXT_CU is the CU containing DIE on input, and the CU
9065 containing the return value on output. */
9067 static struct die_info *
9068 dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
9070 struct attribute *attr;
9072 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
9076 return follow_die_ref (die, attr, ext_cu);
9079 /* Convert a DIE tag into its string name. */
9082 dwarf_tag_name (unsigned tag)
9086 case DW_TAG_padding:
9087 return "DW_TAG_padding";
9088 case DW_TAG_array_type:
9089 return "DW_TAG_array_type";
9090 case DW_TAG_class_type:
9091 return "DW_TAG_class_type";
9092 case DW_TAG_entry_point:
9093 return "DW_TAG_entry_point";
9094 case DW_TAG_enumeration_type:
9095 return "DW_TAG_enumeration_type";
9096 case DW_TAG_formal_parameter:
9097 return "DW_TAG_formal_parameter";
9098 case DW_TAG_imported_declaration:
9099 return "DW_TAG_imported_declaration";
9101 return "DW_TAG_label";
9102 case DW_TAG_lexical_block:
9103 return "DW_TAG_lexical_block";
9105 return "DW_TAG_member";
9106 case DW_TAG_pointer_type:
9107 return "DW_TAG_pointer_type";
9108 case DW_TAG_reference_type:
9109 return "DW_TAG_reference_type";
9110 case DW_TAG_compile_unit:
9111 return "DW_TAG_compile_unit";
9112 case DW_TAG_string_type:
9113 return "DW_TAG_string_type";
9114 case DW_TAG_structure_type:
9115 return "DW_TAG_structure_type";
9116 case DW_TAG_subroutine_type:
9117 return "DW_TAG_subroutine_type";
9118 case DW_TAG_typedef:
9119 return "DW_TAG_typedef";
9120 case DW_TAG_union_type:
9121 return "DW_TAG_union_type";
9122 case DW_TAG_unspecified_parameters:
9123 return "DW_TAG_unspecified_parameters";
9124 case DW_TAG_variant:
9125 return "DW_TAG_variant";
9126 case DW_TAG_common_block:
9127 return "DW_TAG_common_block";
9128 case DW_TAG_common_inclusion:
9129 return "DW_TAG_common_inclusion";
9130 case DW_TAG_inheritance:
9131 return "DW_TAG_inheritance";
9132 case DW_TAG_inlined_subroutine:
9133 return "DW_TAG_inlined_subroutine";
9135 return "DW_TAG_module";
9136 case DW_TAG_ptr_to_member_type:
9137 return "DW_TAG_ptr_to_member_type";
9138 case DW_TAG_set_type:
9139 return "DW_TAG_set_type";
9140 case DW_TAG_subrange_type:
9141 return "DW_TAG_subrange_type";
9142 case DW_TAG_with_stmt:
9143 return "DW_TAG_with_stmt";
9144 case DW_TAG_access_declaration:
9145 return "DW_TAG_access_declaration";
9146 case DW_TAG_base_type:
9147 return "DW_TAG_base_type";
9148 case DW_TAG_catch_block:
9149 return "DW_TAG_catch_block";
9150 case DW_TAG_const_type:
9151 return "DW_TAG_const_type";
9152 case DW_TAG_constant:
9153 return "DW_TAG_constant";
9154 case DW_TAG_enumerator:
9155 return "DW_TAG_enumerator";
9156 case DW_TAG_file_type:
9157 return "DW_TAG_file_type";
9159 return "DW_TAG_friend";
9160 case DW_TAG_namelist:
9161 return "DW_TAG_namelist";
9162 case DW_TAG_namelist_item:
9163 return "DW_TAG_namelist_item";
9164 case DW_TAG_packed_type:
9165 return "DW_TAG_packed_type";
9166 case DW_TAG_subprogram:
9167 return "DW_TAG_subprogram";
9168 case DW_TAG_template_type_param:
9169 return "DW_TAG_template_type_param";
9170 case DW_TAG_template_value_param:
9171 return "DW_TAG_template_value_param";
9172 case DW_TAG_thrown_type:
9173 return "DW_TAG_thrown_type";
9174 case DW_TAG_try_block:
9175 return "DW_TAG_try_block";
9176 case DW_TAG_variant_part:
9177 return "DW_TAG_variant_part";
9178 case DW_TAG_variable:
9179 return "DW_TAG_variable";
9180 case DW_TAG_volatile_type:
9181 return "DW_TAG_volatile_type";
9182 case DW_TAG_dwarf_procedure:
9183 return "DW_TAG_dwarf_procedure";
9184 case DW_TAG_restrict_type:
9185 return "DW_TAG_restrict_type";
9186 case DW_TAG_interface_type:
9187 return "DW_TAG_interface_type";
9188 case DW_TAG_namespace:
9189 return "DW_TAG_namespace";
9190 case DW_TAG_imported_module:
9191 return "DW_TAG_imported_module";
9192 case DW_TAG_unspecified_type:
9193 return "DW_TAG_unspecified_type";
9194 case DW_TAG_partial_unit:
9195 return "DW_TAG_partial_unit";
9196 case DW_TAG_imported_unit:
9197 return "DW_TAG_imported_unit";
9198 case DW_TAG_condition:
9199 return "DW_TAG_condition";
9200 case DW_TAG_shared_type:
9201 return "DW_TAG_shared_type";
9202 case DW_TAG_type_unit:
9203 return "DW_TAG_type_unit";
9204 case DW_TAG_MIPS_loop:
9205 return "DW_TAG_MIPS_loop";
9206 case DW_TAG_HP_array_descriptor:
9207 return "DW_TAG_HP_array_descriptor";
9208 case DW_TAG_format_label:
9209 return "DW_TAG_format_label";
9210 case DW_TAG_function_template:
9211 return "DW_TAG_function_template";
9212 case DW_TAG_class_template:
9213 return "DW_TAG_class_template";
9214 case DW_TAG_GNU_BINCL:
9215 return "DW_TAG_GNU_BINCL";
9216 case DW_TAG_GNU_EINCL:
9217 return "DW_TAG_GNU_EINCL";
9218 case DW_TAG_upc_shared_type:
9219 return "DW_TAG_upc_shared_type";
9220 case DW_TAG_upc_strict_type:
9221 return "DW_TAG_upc_strict_type";
9222 case DW_TAG_upc_relaxed_type:
9223 return "DW_TAG_upc_relaxed_type";
9224 case DW_TAG_PGI_kanji_type:
9225 return "DW_TAG_PGI_kanji_type";
9226 case DW_TAG_PGI_interface_block:
9227 return "DW_TAG_PGI_interface_block";
9229 return "DW_TAG_<unknown>";
9233 /* Convert a DWARF attribute code into its string name. */
9236 dwarf_attr_name (unsigned attr)
9241 return "DW_AT_sibling";
9242 case DW_AT_location:
9243 return "DW_AT_location";
9245 return "DW_AT_name";
9246 case DW_AT_ordering:
9247 return "DW_AT_ordering";
9248 case DW_AT_subscr_data:
9249 return "DW_AT_subscr_data";
9250 case DW_AT_byte_size:
9251 return "DW_AT_byte_size";
9252 case DW_AT_bit_offset:
9253 return "DW_AT_bit_offset";
9254 case DW_AT_bit_size:
9255 return "DW_AT_bit_size";
9256 case DW_AT_element_list:
9257 return "DW_AT_element_list";
9258 case DW_AT_stmt_list:
9259 return "DW_AT_stmt_list";
9261 return "DW_AT_low_pc";
9263 return "DW_AT_high_pc";
9264 case DW_AT_language:
9265 return "DW_AT_language";
9267 return "DW_AT_member";
9269 return "DW_AT_discr";
9270 case DW_AT_discr_value:
9271 return "DW_AT_discr_value";
9272 case DW_AT_visibility:
9273 return "DW_AT_visibility";
9275 return "DW_AT_import";
9276 case DW_AT_string_length:
9277 return "DW_AT_string_length";
9278 case DW_AT_common_reference:
9279 return "DW_AT_common_reference";
9280 case DW_AT_comp_dir:
9281 return "DW_AT_comp_dir";
9282 case DW_AT_const_value:
9283 return "DW_AT_const_value";
9284 case DW_AT_containing_type:
9285 return "DW_AT_containing_type";
9286 case DW_AT_default_value:
9287 return "DW_AT_default_value";
9289 return "DW_AT_inline";
9290 case DW_AT_is_optional:
9291 return "DW_AT_is_optional";
9292 case DW_AT_lower_bound:
9293 return "DW_AT_lower_bound";
9294 case DW_AT_producer:
9295 return "DW_AT_producer";
9296 case DW_AT_prototyped:
9297 return "DW_AT_prototyped";
9298 case DW_AT_return_addr:
9299 return "DW_AT_return_addr";
9300 case DW_AT_start_scope:
9301 return "DW_AT_start_scope";
9302 case DW_AT_bit_stride:
9303 return "DW_AT_bit_stride";
9304 case DW_AT_upper_bound:
9305 return "DW_AT_upper_bound";
9306 case DW_AT_abstract_origin:
9307 return "DW_AT_abstract_origin";
9308 case DW_AT_accessibility:
9309 return "DW_AT_accessibility";
9310 case DW_AT_address_class:
9311 return "DW_AT_address_class";
9312 case DW_AT_artificial:
9313 return "DW_AT_artificial";
9314 case DW_AT_base_types:
9315 return "DW_AT_base_types";
9316 case DW_AT_calling_convention:
9317 return "DW_AT_calling_convention";
9319 return "DW_AT_count";
9320 case DW_AT_data_member_location:
9321 return "DW_AT_data_member_location";
9322 case DW_AT_decl_column:
9323 return "DW_AT_decl_column";
9324 case DW_AT_decl_file:
9325 return "DW_AT_decl_file";
9326 case DW_AT_decl_line:
9327 return "DW_AT_decl_line";
9328 case DW_AT_declaration:
9329 return "DW_AT_declaration";
9330 case DW_AT_discr_list:
9331 return "DW_AT_discr_list";
9332 case DW_AT_encoding:
9333 return "DW_AT_encoding";
9334 case DW_AT_external:
9335 return "DW_AT_external";
9336 case DW_AT_frame_base:
9337 return "DW_AT_frame_base";
9339 return "DW_AT_friend";
9340 case DW_AT_identifier_case:
9341 return "DW_AT_identifier_case";
9342 case DW_AT_macro_info:
9343 return "DW_AT_macro_info";
9344 case DW_AT_namelist_items:
9345 return "DW_AT_namelist_items";
9346 case DW_AT_priority:
9347 return "DW_AT_priority";
9349 return "DW_AT_segment";
9350 case DW_AT_specification:
9351 return "DW_AT_specification";
9352 case DW_AT_static_link:
9353 return "DW_AT_static_link";
9355 return "DW_AT_type";
9356 case DW_AT_use_location:
9357 return "DW_AT_use_location";
9358 case DW_AT_variable_parameter:
9359 return "DW_AT_variable_parameter";
9360 case DW_AT_virtuality:
9361 return "DW_AT_virtuality";
9362 case DW_AT_vtable_elem_location:
9363 return "DW_AT_vtable_elem_location";
9364 /* DWARF 3 values. */
9365 case DW_AT_allocated:
9366 return "DW_AT_allocated";
9367 case DW_AT_associated:
9368 return "DW_AT_associated";
9369 case DW_AT_data_location:
9370 return "DW_AT_data_location";
9371 case DW_AT_byte_stride:
9372 return "DW_AT_byte_stride";
9373 case DW_AT_entry_pc:
9374 return "DW_AT_entry_pc";
9375 case DW_AT_use_UTF8:
9376 return "DW_AT_use_UTF8";
9377 case DW_AT_extension:
9378 return "DW_AT_extension";
9380 return "DW_AT_ranges";
9381 case DW_AT_trampoline:
9382 return "DW_AT_trampoline";
9383 case DW_AT_call_column:
9384 return "DW_AT_call_column";
9385 case DW_AT_call_file:
9386 return "DW_AT_call_file";
9387 case DW_AT_call_line:
9388 return "DW_AT_call_line";
9389 case DW_AT_description:
9390 return "DW_AT_description";
9391 case DW_AT_binary_scale:
9392 return "DW_AT_binary_scale";
9393 case DW_AT_decimal_scale:
9394 return "DW_AT_decimal_scale";
9396 return "DW_AT_small";
9397 case DW_AT_decimal_sign:
9398 return "DW_AT_decimal_sign";
9399 case DW_AT_digit_count:
9400 return "DW_AT_digit_count";
9401 case DW_AT_picture_string:
9402 return "DW_AT_picture_string";
9404 return "DW_AT_mutable";
9405 case DW_AT_threads_scaled:
9406 return "DW_AT_threads_scaled";
9407 case DW_AT_explicit:
9408 return "DW_AT_explicit";
9409 case DW_AT_object_pointer:
9410 return "DW_AT_object_pointer";
9411 case DW_AT_endianity:
9412 return "DW_AT_endianity";
9413 case DW_AT_elemental:
9414 return "DW_AT_elemental";
9416 return "DW_AT_pure";
9417 case DW_AT_recursive:
9418 return "DW_AT_recursive";
9419 /* DWARF 4 values. */
9420 case DW_AT_signature:
9421 return "DW_AT_signature";
9422 /* SGI/MIPS extensions. */
9423 #ifdef MIPS /* collides with DW_AT_HP_block_index */
9424 case DW_AT_MIPS_fde:
9425 return "DW_AT_MIPS_fde";
9427 case DW_AT_MIPS_loop_begin:
9428 return "DW_AT_MIPS_loop_begin";
9429 case DW_AT_MIPS_tail_loop_begin:
9430 return "DW_AT_MIPS_tail_loop_begin";
9431 case DW_AT_MIPS_epilog_begin:
9432 return "DW_AT_MIPS_epilog_begin";
9433 case DW_AT_MIPS_loop_unroll_factor:
9434 return "DW_AT_MIPS_loop_unroll_factor";
9435 case DW_AT_MIPS_software_pipeline_depth:
9436 return "DW_AT_MIPS_software_pipeline_depth";
9437 case DW_AT_MIPS_linkage_name:
9438 return "DW_AT_MIPS_linkage_name";
9439 case DW_AT_MIPS_stride:
9440 return "DW_AT_MIPS_stride";
9441 case DW_AT_MIPS_abstract_name:
9442 return "DW_AT_MIPS_abstract_name";
9443 case DW_AT_MIPS_clone_origin:
9444 return "DW_AT_MIPS_clone_origin";
9445 case DW_AT_MIPS_has_inlines:
9446 return "DW_AT_MIPS_has_inlines";
9447 /* HP extensions. */
9448 #ifndef MIPS /* collides with DW_AT_MIPS_fde */
9449 case DW_AT_HP_block_index:
9450 return "DW_AT_HP_block_index";
9452 case DW_AT_HP_unmodifiable:
9453 return "DW_AT_HP_unmodifiable";
9454 case DW_AT_HP_actuals_stmt_list:
9455 return "DW_AT_HP_actuals_stmt_list";
9456 case DW_AT_HP_proc_per_section:
9457 return "DW_AT_HP_proc_per_section";
9458 case DW_AT_HP_raw_data_ptr:
9459 return "DW_AT_HP_raw_data_ptr";
9460 case DW_AT_HP_pass_by_reference:
9461 return "DW_AT_HP_pass_by_reference";
9462 case DW_AT_HP_opt_level:
9463 return "DW_AT_HP_opt_level";
9464 case DW_AT_HP_prof_version_id:
9465 return "DW_AT_HP_prof_version_id";
9466 case DW_AT_HP_opt_flags:
9467 return "DW_AT_HP_opt_flags";
9468 case DW_AT_HP_cold_region_low_pc:
9469 return "DW_AT_HP_cold_region_low_pc";
9470 case DW_AT_HP_cold_region_high_pc:
9471 return "DW_AT_HP_cold_region_high_pc";
9472 case DW_AT_HP_all_variables_modifiable:
9473 return "DW_AT_HP_all_variables_modifiable";
9474 case DW_AT_HP_linkage_name:
9475 return "DW_AT_HP_linkage_name";
9476 case DW_AT_HP_prof_flags:
9477 return "DW_AT_HP_prof_flags";
9478 /* GNU extensions. */
9479 case DW_AT_sf_names:
9480 return "DW_AT_sf_names";
9481 case DW_AT_src_info:
9482 return "DW_AT_src_info";
9483 case DW_AT_mac_info:
9484 return "DW_AT_mac_info";
9485 case DW_AT_src_coords:
9486 return "DW_AT_src_coords";
9487 case DW_AT_body_begin:
9488 return "DW_AT_body_begin";
9489 case DW_AT_body_end:
9490 return "DW_AT_body_end";
9491 case DW_AT_GNU_vector:
9492 return "DW_AT_GNU_vector";
9493 /* VMS extensions. */
9494 case DW_AT_VMS_rtnbeg_pd_address:
9495 return "DW_AT_VMS_rtnbeg_pd_address";
9496 /* UPC extension. */
9497 case DW_AT_upc_threads_scaled:
9498 return "DW_AT_upc_threads_scaled";
9499 /* PGI (STMicroelectronics) extensions. */
9500 case DW_AT_PGI_lbase:
9501 return "DW_AT_PGI_lbase";
9502 case DW_AT_PGI_soffset:
9503 return "DW_AT_PGI_soffset";
9504 case DW_AT_PGI_lstride:
9505 return "DW_AT_PGI_lstride";
9507 return "DW_AT_<unknown>";
9511 /* Convert a DWARF value form code into its string name. */
9514 dwarf_form_name (unsigned form)
9519 return "DW_FORM_addr";
9520 case DW_FORM_block2:
9521 return "DW_FORM_block2";
9522 case DW_FORM_block4:
9523 return "DW_FORM_block4";
9525 return "DW_FORM_data2";
9527 return "DW_FORM_data4";
9529 return "DW_FORM_data8";
9530 case DW_FORM_string:
9531 return "DW_FORM_string";
9533 return "DW_FORM_block";
9534 case DW_FORM_block1:
9535 return "DW_FORM_block1";
9537 return "DW_FORM_data1";
9539 return "DW_FORM_flag";
9541 return "DW_FORM_sdata";
9543 return "DW_FORM_strp";
9545 return "DW_FORM_udata";
9546 case DW_FORM_ref_addr:
9547 return "DW_FORM_ref_addr";
9549 return "DW_FORM_ref1";
9551 return "DW_FORM_ref2";
9553 return "DW_FORM_ref4";
9555 return "DW_FORM_ref8";
9556 case DW_FORM_ref_udata:
9557 return "DW_FORM_ref_udata";
9558 case DW_FORM_indirect:
9559 return "DW_FORM_indirect";
9560 case DW_FORM_sec_offset:
9561 return "DW_FORM_sec_offset";
9562 case DW_FORM_exprloc:
9563 return "DW_FORM_exprloc";
9564 case DW_FORM_flag_present:
9565 return "DW_FORM_flag_present";
9567 return "DW_FORM_sig8";
9569 return "DW_FORM_<unknown>";
9573 /* Convert a DWARF stack opcode into its string name. */
9576 dwarf_stack_op_name (unsigned op)
9581 return "DW_OP_addr";
9583 return "DW_OP_deref";
9585 return "DW_OP_const1u";
9587 return "DW_OP_const1s";
9589 return "DW_OP_const2u";
9591 return "DW_OP_const2s";
9593 return "DW_OP_const4u";
9595 return "DW_OP_const4s";
9597 return "DW_OP_const8u";
9599 return "DW_OP_const8s";
9601 return "DW_OP_constu";
9603 return "DW_OP_consts";
9607 return "DW_OP_drop";
9609 return "DW_OP_over";
9611 return "DW_OP_pick";
9613 return "DW_OP_swap";
9617 return "DW_OP_xderef";
9625 return "DW_OP_minus";
9637 return "DW_OP_plus";
9638 case DW_OP_plus_uconst:
9639 return "DW_OP_plus_uconst";
9645 return "DW_OP_shra";
9663 return "DW_OP_skip";
9665 return "DW_OP_lit0";
9667 return "DW_OP_lit1";
9669 return "DW_OP_lit2";
9671 return "DW_OP_lit3";
9673 return "DW_OP_lit4";
9675 return "DW_OP_lit5";
9677 return "DW_OP_lit6";
9679 return "DW_OP_lit7";
9681 return "DW_OP_lit8";
9683 return "DW_OP_lit9";
9685 return "DW_OP_lit10";
9687 return "DW_OP_lit11";
9689 return "DW_OP_lit12";
9691 return "DW_OP_lit13";
9693 return "DW_OP_lit14";
9695 return "DW_OP_lit15";
9697 return "DW_OP_lit16";
9699 return "DW_OP_lit17";
9701 return "DW_OP_lit18";
9703 return "DW_OP_lit19";
9705 return "DW_OP_lit20";
9707 return "DW_OP_lit21";
9709 return "DW_OP_lit22";
9711 return "DW_OP_lit23";
9713 return "DW_OP_lit24";
9715 return "DW_OP_lit25";
9717 return "DW_OP_lit26";
9719 return "DW_OP_lit27";
9721 return "DW_OP_lit28";
9723 return "DW_OP_lit29";
9725 return "DW_OP_lit30";
9727 return "DW_OP_lit31";
9729 return "DW_OP_reg0";
9731 return "DW_OP_reg1";
9733 return "DW_OP_reg2";
9735 return "DW_OP_reg3";
9737 return "DW_OP_reg4";
9739 return "DW_OP_reg5";
9741 return "DW_OP_reg6";
9743 return "DW_OP_reg7";
9745 return "DW_OP_reg8";
9747 return "DW_OP_reg9";
9749 return "DW_OP_reg10";
9751 return "DW_OP_reg11";
9753 return "DW_OP_reg12";
9755 return "DW_OP_reg13";
9757 return "DW_OP_reg14";
9759 return "DW_OP_reg15";
9761 return "DW_OP_reg16";
9763 return "DW_OP_reg17";
9765 return "DW_OP_reg18";
9767 return "DW_OP_reg19";
9769 return "DW_OP_reg20";
9771 return "DW_OP_reg21";
9773 return "DW_OP_reg22";
9775 return "DW_OP_reg23";
9777 return "DW_OP_reg24";
9779 return "DW_OP_reg25";
9781 return "DW_OP_reg26";
9783 return "DW_OP_reg27";
9785 return "DW_OP_reg28";
9787 return "DW_OP_reg29";
9789 return "DW_OP_reg30";
9791 return "DW_OP_reg31";
9793 return "DW_OP_breg0";
9795 return "DW_OP_breg1";
9797 return "DW_OP_breg2";
9799 return "DW_OP_breg3";
9801 return "DW_OP_breg4";
9803 return "DW_OP_breg5";
9805 return "DW_OP_breg6";
9807 return "DW_OP_breg7";
9809 return "DW_OP_breg8";
9811 return "DW_OP_breg9";
9813 return "DW_OP_breg10";
9815 return "DW_OP_breg11";
9817 return "DW_OP_breg12";
9819 return "DW_OP_breg13";
9821 return "DW_OP_breg14";
9823 return "DW_OP_breg15";
9825 return "DW_OP_breg16";
9827 return "DW_OP_breg17";
9829 return "DW_OP_breg18";
9831 return "DW_OP_breg19";
9833 return "DW_OP_breg20";
9835 return "DW_OP_breg21";
9837 return "DW_OP_breg22";
9839 return "DW_OP_breg23";
9841 return "DW_OP_breg24";
9843 return "DW_OP_breg25";
9845 return "DW_OP_breg26";
9847 return "DW_OP_breg27";
9849 return "DW_OP_breg28";
9851 return "DW_OP_breg29";
9853 return "DW_OP_breg30";
9855 return "DW_OP_breg31";
9857 return "DW_OP_regx";
9859 return "DW_OP_fbreg";
9861 return "DW_OP_bregx";
9863 return "DW_OP_piece";
9864 case DW_OP_deref_size:
9865 return "DW_OP_deref_size";
9866 case DW_OP_xderef_size:
9867 return "DW_OP_xderef_size";
9870 /* DWARF 3 extensions. */
9871 case DW_OP_push_object_address:
9872 return "DW_OP_push_object_address";
9874 return "DW_OP_call2";
9876 return "DW_OP_call4";
9877 case DW_OP_call_ref:
9878 return "DW_OP_call_ref";
9879 /* GNU extensions. */
9880 case DW_OP_form_tls_address:
9881 return "DW_OP_form_tls_address";
9882 case DW_OP_call_frame_cfa:
9883 return "DW_OP_call_frame_cfa";
9884 case DW_OP_bit_piece:
9885 return "DW_OP_bit_piece";
9886 case DW_OP_GNU_push_tls_address:
9887 return "DW_OP_GNU_push_tls_address";
9888 case DW_OP_GNU_uninit:
9889 return "DW_OP_GNU_uninit";
9890 /* HP extensions. */
9891 case DW_OP_HP_is_value:
9892 return "DW_OP_HP_is_value";
9893 case DW_OP_HP_fltconst4:
9894 return "DW_OP_HP_fltconst4";
9895 case DW_OP_HP_fltconst8:
9896 return "DW_OP_HP_fltconst8";
9897 case DW_OP_HP_mod_range:
9898 return "DW_OP_HP_mod_range";
9899 case DW_OP_HP_unmod_range:
9900 return "DW_OP_HP_unmod_range";
9902 return "DW_OP_HP_tls";
9904 return "OP_<unknown>";
9909 dwarf_bool_name (unsigned mybool)
9917 /* Convert a DWARF type code into its string name. */
9920 dwarf_type_encoding_name (unsigned enc)
9925 return "DW_ATE_void";
9926 case DW_ATE_address:
9927 return "DW_ATE_address";
9928 case DW_ATE_boolean:
9929 return "DW_ATE_boolean";
9930 case DW_ATE_complex_float:
9931 return "DW_ATE_complex_float";
9933 return "DW_ATE_float";
9935 return "DW_ATE_signed";
9936 case DW_ATE_signed_char:
9937 return "DW_ATE_signed_char";
9938 case DW_ATE_unsigned:
9939 return "DW_ATE_unsigned";
9940 case DW_ATE_unsigned_char:
9941 return "DW_ATE_unsigned_char";
9943 case DW_ATE_imaginary_float:
9944 return "DW_ATE_imaginary_float";
9945 case DW_ATE_packed_decimal:
9946 return "DW_ATE_packed_decimal";
9947 case DW_ATE_numeric_string:
9948 return "DW_ATE_numeric_string";
9950 return "DW_ATE_edited";
9951 case DW_ATE_signed_fixed:
9952 return "DW_ATE_signed_fixed";
9953 case DW_ATE_unsigned_fixed:
9954 return "DW_ATE_unsigned_fixed";
9955 case DW_ATE_decimal_float:
9956 return "DW_ATE_decimal_float";
9957 /* HP extensions. */
9958 case DW_ATE_HP_float80:
9959 return "DW_ATE_HP_float80";
9960 case DW_ATE_HP_complex_float80:
9961 return "DW_ATE_HP_complex_float80";
9962 case DW_ATE_HP_float128:
9963 return "DW_ATE_HP_float128";
9964 case DW_ATE_HP_complex_float128:
9965 return "DW_ATE_HP_complex_float128";
9966 case DW_ATE_HP_floathpintel:
9967 return "DW_ATE_HP_floathpintel";
9968 case DW_ATE_HP_imaginary_float80:
9969 return "DW_ATE_HP_imaginary_float80";
9970 case DW_ATE_HP_imaginary_float128:
9971 return "DW_ATE_HP_imaginary_float128";
9973 return "DW_ATE_<unknown>";
9977 /* Convert a DWARF call frame info operation to its string name. */
9981 dwarf_cfi_name (unsigned cfi_opc)
9985 case DW_CFA_advance_loc:
9986 return "DW_CFA_advance_loc";
9988 return "DW_CFA_offset";
9989 case DW_CFA_restore:
9990 return "DW_CFA_restore";
9992 return "DW_CFA_nop";
9993 case DW_CFA_set_loc:
9994 return "DW_CFA_set_loc";
9995 case DW_CFA_advance_loc1:
9996 return "DW_CFA_advance_loc1";
9997 case DW_CFA_advance_loc2:
9998 return "DW_CFA_advance_loc2";
9999 case DW_CFA_advance_loc4:
10000 return "DW_CFA_advance_loc4";
10001 case DW_CFA_offset_extended:
10002 return "DW_CFA_offset_extended";
10003 case DW_CFA_restore_extended:
10004 return "DW_CFA_restore_extended";
10005 case DW_CFA_undefined:
10006 return "DW_CFA_undefined";
10007 case DW_CFA_same_value:
10008 return "DW_CFA_same_value";
10009 case DW_CFA_register:
10010 return "DW_CFA_register";
10011 case DW_CFA_remember_state:
10012 return "DW_CFA_remember_state";
10013 case DW_CFA_restore_state:
10014 return "DW_CFA_restore_state";
10015 case DW_CFA_def_cfa:
10016 return "DW_CFA_def_cfa";
10017 case DW_CFA_def_cfa_register:
10018 return "DW_CFA_def_cfa_register";
10019 case DW_CFA_def_cfa_offset:
10020 return "DW_CFA_def_cfa_offset";
10022 case DW_CFA_def_cfa_expression:
10023 return "DW_CFA_def_cfa_expression";
10024 case DW_CFA_expression:
10025 return "DW_CFA_expression";
10026 case DW_CFA_offset_extended_sf:
10027 return "DW_CFA_offset_extended_sf";
10028 case DW_CFA_def_cfa_sf:
10029 return "DW_CFA_def_cfa_sf";
10030 case DW_CFA_def_cfa_offset_sf:
10031 return "DW_CFA_def_cfa_offset_sf";
10032 case DW_CFA_val_offset:
10033 return "DW_CFA_val_offset";
10034 case DW_CFA_val_offset_sf:
10035 return "DW_CFA_val_offset_sf";
10036 case DW_CFA_val_expression:
10037 return "DW_CFA_val_expression";
10038 /* SGI/MIPS specific. */
10039 case DW_CFA_MIPS_advance_loc8:
10040 return "DW_CFA_MIPS_advance_loc8";
10041 /* GNU extensions. */
10042 case DW_CFA_GNU_window_save:
10043 return "DW_CFA_GNU_window_save";
10044 case DW_CFA_GNU_args_size:
10045 return "DW_CFA_GNU_args_size";
10046 case DW_CFA_GNU_negative_offset_extended:
10047 return "DW_CFA_GNU_negative_offset_extended";
10049 return "DW_CFA_<unknown>";
10055 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
10059 print_spaces (indent, f);
10060 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset 0x%x)\n",
10061 dwarf_tag_name (die->tag), die->abbrev, die->offset);
10063 if (die->parent != NULL)
10065 print_spaces (indent, f);
10066 fprintf_unfiltered (f, " parent at offset: 0x%x\n",
10067 die->parent->offset);
10070 print_spaces (indent, f);
10071 fprintf_unfiltered (f, " has children: %s\n",
10072 dwarf_bool_name (die->child != NULL));
10074 print_spaces (indent, f);
10075 fprintf_unfiltered (f, " attributes:\n");
10077 for (i = 0; i < die->num_attrs; ++i)
10079 print_spaces (indent, f);
10080 fprintf_unfiltered (f, " %s (%s) ",
10081 dwarf_attr_name (die->attrs[i].name),
10082 dwarf_form_name (die->attrs[i].form));
10084 switch (die->attrs[i].form)
10086 case DW_FORM_ref_addr:
10088 fprintf_unfiltered (f, "address: ");
10089 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
10091 case DW_FORM_block2:
10092 case DW_FORM_block4:
10093 case DW_FORM_block:
10094 case DW_FORM_block1:
10095 fprintf_unfiltered (f, "block: size %d", DW_BLOCK (&die->attrs[i])->size);
10100 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
10101 (long) (DW_ADDR (&die->attrs[i])));
10103 case DW_FORM_data1:
10104 case DW_FORM_data2:
10105 case DW_FORM_data4:
10106 case DW_FORM_data8:
10107 case DW_FORM_udata:
10108 case DW_FORM_sdata:
10109 fprintf_unfiltered (f, "constant: %ld", DW_UNSND (&die->attrs[i]));
10112 if (DW_SIGNATURED_TYPE (&die->attrs[i]) != NULL)
10113 fprintf_unfiltered (f, "signatured type, offset: 0x%x",
10114 DW_SIGNATURED_TYPE (&die->attrs[i])->offset);
10116 fprintf_unfiltered (f, "signatured type, offset: unknown");
10118 case DW_FORM_string:
10120 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
10121 DW_STRING (&die->attrs[i])
10122 ? DW_STRING (&die->attrs[i]) : "",
10123 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
10126 if (DW_UNSND (&die->attrs[i]))
10127 fprintf_unfiltered (f, "flag: TRUE");
10129 fprintf_unfiltered (f, "flag: FALSE");
10131 case DW_FORM_indirect:
10132 /* the reader will have reduced the indirect form to
10133 the "base form" so this form should not occur */
10134 fprintf_unfiltered (f, "unexpected attribute form: DW_FORM_indirect");
10137 fprintf_unfiltered (f, "unsupported attribute form: %d.",
10138 die->attrs[i].form);
10141 fprintf_unfiltered (f, "\n");
10146 dump_die_for_error (struct die_info *die)
10148 dump_die_shallow (gdb_stderr, 0, die);
10152 dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
10154 int indent = level * 4;
10156 gdb_assert (die != NULL);
10158 if (level >= max_level)
10161 dump_die_shallow (f, indent, die);
10163 if (die->child != NULL)
10165 print_spaces (indent, f);
10166 fprintf_unfiltered (f, " Children:");
10167 if (level + 1 < max_level)
10169 fprintf_unfiltered (f, "\n");
10170 dump_die_1 (f, level + 1, max_level, die->child);
10174 fprintf_unfiltered (f, " [not printed, max nesting level reached]\n");
10178 if (die->sibling != NULL && level > 0)
10180 dump_die_1 (f, level, max_level, die->sibling);
10184 /* This is called from the pdie macro in gdbinit.in.
10185 It's not static so gcc will keep a copy callable from gdb. */
10188 dump_die (struct die_info *die, int max_level)
10190 dump_die_1 (gdb_stdlog, 0, max_level, die);
10194 store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
10198 slot = htab_find_slot_with_hash (cu->die_hash, die, die->offset, INSERT);
10204 is_ref_attr (struct attribute *attr)
10206 switch (attr->form)
10208 case DW_FORM_ref_addr:
10213 case DW_FORM_ref_udata:
10220 static unsigned int
10221 dwarf2_get_ref_die_offset (struct attribute *attr)
10223 if (is_ref_attr (attr))
10224 return DW_ADDR (attr);
10226 complaint (&symfile_complaints,
10227 _("unsupported die ref attribute form: '%s'"),
10228 dwarf_form_name (attr->form));
10232 /* Return the constant value held by the given attribute. Return -1
10233 if the value held by the attribute is not constant. */
10236 dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
10238 if (attr->form == DW_FORM_sdata)
10239 return DW_SND (attr);
10240 else if (attr->form == DW_FORM_udata
10241 || attr->form == DW_FORM_data1
10242 || attr->form == DW_FORM_data2
10243 || attr->form == DW_FORM_data4
10244 || attr->form == DW_FORM_data8)
10245 return DW_UNSND (attr);
10248 complaint (&symfile_complaints, _("Attribute value is not a constant (%s)"),
10249 dwarf_form_name (attr->form));
10250 return default_value;
10254 /* THIS_CU has a reference to PER_CU. If necessary, load the new compilation
10255 unit and add it to our queue.
10256 The result is non-zero if PER_CU was queued, otherwise the result is zero
10257 meaning either PER_CU is already queued or it is already loaded. */
10260 maybe_queue_comp_unit (struct dwarf2_cu *this_cu,
10261 struct dwarf2_per_cu_data *per_cu)
10263 /* Mark the dependence relation so that we don't flush PER_CU
10265 dwarf2_add_dependence (this_cu, per_cu);
10267 /* If it's already on the queue, we have nothing to do. */
10268 if (per_cu->queued)
10271 /* If the compilation unit is already loaded, just mark it as
10273 if (per_cu->cu != NULL)
10275 per_cu->cu->last_used = 0;
10279 /* Add it to the queue. */
10280 queue_comp_unit (per_cu, this_cu->objfile);
10285 /* Follow reference or signature attribute ATTR of SRC_DIE.
10286 On entry *REF_CU is the CU of SRC_DIE.
10287 On exit *REF_CU is the CU of the result. */
10289 static struct die_info *
10290 follow_die_ref_or_sig (struct die_info *src_die, struct attribute *attr,
10291 struct dwarf2_cu **ref_cu)
10293 struct die_info *die;
10295 if (is_ref_attr (attr))
10296 die = follow_die_ref (src_die, attr, ref_cu);
10297 else if (attr->form == DW_FORM_sig8)
10298 die = follow_die_sig (src_die, attr, ref_cu);
10301 dump_die_for_error (src_die);
10302 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
10303 (*ref_cu)->objfile->name);
10309 /* Follow reference attribute ATTR of SRC_DIE.
10310 On entry *REF_CU is the CU of SRC_DIE.
10311 On exit *REF_CU is the CU of the result. */
10313 static struct die_info *
10314 follow_die_ref (struct die_info *src_die, struct attribute *attr,
10315 struct dwarf2_cu **ref_cu)
10317 struct die_info *die;
10318 unsigned int offset;
10319 struct die_info temp_die;
10320 struct dwarf2_cu *target_cu, *cu = *ref_cu;
10322 gdb_assert (cu->per_cu != NULL);
10324 offset = dwarf2_get_ref_die_offset (attr);
10326 if (cu->per_cu->from_debug_types)
10328 /* .debug_types CUs cannot reference anything outside their CU.
10329 If they need to, they have to reference a signatured type via
10331 if (! offset_in_cu_p (&cu->header, offset))
10335 else if (! offset_in_cu_p (&cu->header, offset))
10337 struct dwarf2_per_cu_data *per_cu;
10338 per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile);
10340 /* If necessary, add it to the queue and load its DIEs. */
10341 if (maybe_queue_comp_unit (cu, per_cu))
10342 load_full_comp_unit (per_cu, cu->objfile);
10344 target_cu = per_cu->cu;
10349 *ref_cu = target_cu;
10350 temp_die.offset = offset;
10351 die = htab_find_with_hash (target_cu->die_hash, &temp_die, offset);
10357 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced from DIE "
10358 "at 0x%x [in module %s]"),
10359 offset, src_die->offset, cu->objfile->name);
10362 /* Follow the signature attribute ATTR in SRC_DIE.
10363 On entry *REF_CU is the CU of SRC_DIE.
10364 On exit *REF_CU is the CU of the result. */
10366 static struct die_info *
10367 follow_die_sig (struct die_info *src_die, struct attribute *attr,
10368 struct dwarf2_cu **ref_cu)
10370 struct objfile *objfile = (*ref_cu)->objfile;
10371 struct die_info temp_die;
10372 struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
10373 struct dwarf2_cu *sig_cu;
10374 struct die_info *die;
10376 /* sig_type will be NULL if the signatured type is missing from
10378 if (sig_type == NULL)
10379 error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
10380 "at 0x%x [in module %s]"),
10381 src_die->offset, objfile->name);
10383 /* If necessary, add it to the queue and load its DIEs. */
10385 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu))
10386 read_signatured_type (objfile, sig_type);
10388 gdb_assert (sig_type->per_cu.cu != NULL);
10390 sig_cu = sig_type->per_cu.cu;
10391 temp_die.offset = sig_cu->header.offset + sig_type->type_offset;
10392 die = htab_find_with_hash (sig_cu->die_hash, &temp_die, temp_die.offset);
10399 error (_("Dwarf Error: Cannot find signatured DIE at 0x%x referenced from DIE "
10400 "at 0x%x [in module %s]"),
10401 sig_type->type_offset, src_die->offset, objfile->name);
10404 /* Given an offset of a signatured type, return its signatured_type. */
10406 static struct signatured_type *
10407 lookup_signatured_type_at_offset (struct objfile *objfile, unsigned int offset)
10409 gdb_byte *info_ptr = dwarf2_per_objfile->types.buffer + offset;
10410 unsigned int length, initial_length_size;
10411 unsigned int sig_offset;
10412 struct signatured_type find_entry, *type_sig;
10414 length = read_initial_length (objfile->obfd, info_ptr, &initial_length_size);
10415 sig_offset = (initial_length_size
10417 + (initial_length_size == 4 ? 4 : 8) /*debug_abbrev_offset*/
10418 + 1 /*address_size*/);
10419 find_entry.signature = bfd_get_64 (objfile->obfd, info_ptr + sig_offset);
10420 type_sig = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
10422 /* This is only used to lookup previously recorded types.
10423 If we didn't find it, it's our bug. */
10424 gdb_assert (type_sig != NULL);
10425 gdb_assert (offset == type_sig->offset);
10430 /* Read in signatured type at OFFSET and build its CU and die(s). */
10433 read_signatured_type_at_offset (struct objfile *objfile,
10434 unsigned int offset)
10436 struct signatured_type *type_sig;
10438 /* We have the section offset, but we need the signature to do the
10439 hash table lookup. */
10440 type_sig = lookup_signatured_type_at_offset (objfile, offset);
10442 gdb_assert (type_sig->per_cu.cu == NULL);
10444 read_signatured_type (objfile, type_sig);
10446 gdb_assert (type_sig->per_cu.cu != NULL);
10449 /* Read in a signatured type and build its CU and DIEs. */
10452 read_signatured_type (struct objfile *objfile,
10453 struct signatured_type *type_sig)
10455 gdb_byte *types_ptr = dwarf2_per_objfile->types.buffer + type_sig->offset;
10456 struct die_reader_specs reader_specs;
10457 struct dwarf2_cu *cu;
10458 ULONGEST signature;
10459 struct cleanup *back_to, *free_cu_cleanup;
10460 struct attribute *attr;
10462 gdb_assert (type_sig->per_cu.cu == NULL);
10464 cu = xmalloc (sizeof (struct dwarf2_cu));
10465 memset (cu, 0, sizeof (struct dwarf2_cu));
10466 obstack_init (&cu->comp_unit_obstack);
10467 cu->objfile = objfile;
10468 type_sig->per_cu.cu = cu;
10469 cu->per_cu = &type_sig->per_cu;
10471 /* If an error occurs while loading, release our storage. */
10472 free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
10474 types_ptr = read_type_comp_unit_head (&cu->header, &signature,
10475 types_ptr, objfile->obfd);
10476 gdb_assert (signature == type_sig->signature);
10479 = htab_create_alloc_ex (cu->header.length / 12,
10483 &cu->comp_unit_obstack,
10484 hashtab_obstack_allocate,
10485 dummy_obstack_deallocate);
10487 dwarf2_read_abbrevs (cu->objfile->obfd, cu);
10488 back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
10490 init_cu_die_reader (&reader_specs, cu);
10492 cu->dies = read_die_and_children (&reader_specs, types_ptr, &types_ptr,
10495 /* We try not to read any attributes in this function, because not
10496 all objfiles needed for references have been loaded yet, and symbol
10497 table processing isn't initialized. But we have to set the CU language,
10498 or we won't be able to build types correctly. */
10499 attr = dwarf2_attr (cu->dies, DW_AT_language, cu);
10501 set_cu_language (DW_UNSND (attr), cu);
10503 set_cu_language (language_minimal, cu);
10505 do_cleanups (back_to);
10507 /* We've successfully allocated this compilation unit. Let our caller
10508 clean it up when finished with it. */
10509 discard_cleanups (free_cu_cleanup);
10511 type_sig->per_cu.cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
10512 dwarf2_per_objfile->read_in_chain = &type_sig->per_cu;
10515 /* Decode simple location descriptions.
10516 Given a pointer to a dwarf block that defines a location, compute
10517 the location and return the value.
10519 NOTE drow/2003-11-18: This function is called in two situations
10520 now: for the address of static or global variables (partial symbols
10521 only) and for offsets into structures which are expected to be
10522 (more or less) constant. The partial symbol case should go away,
10523 and only the constant case should remain. That will let this
10524 function complain more accurately. A few special modes are allowed
10525 without complaint for global variables (for instance, global
10526 register values and thread-local values).
10528 A location description containing no operations indicates that the
10529 object is optimized out. The return value is 0 for that case.
10530 FIXME drow/2003-11-16: No callers check for this case any more; soon all
10531 callers will only want a very basic result and this can become a
10534 Note that stack[0] is unused except as a default error return.
10535 Note that stack overflow is not yet handled. */
10538 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
10540 struct objfile *objfile = cu->objfile;
10541 struct comp_unit_head *cu_header = &cu->header;
10543 int size = blk->size;
10544 gdb_byte *data = blk->data;
10545 CORE_ADDR stack[64];
10547 unsigned int bytes_read, unsnd;
10591 stack[++stacki] = op - DW_OP_lit0;
10626 stack[++stacki] = op - DW_OP_reg0;
10628 dwarf2_complex_location_expr_complaint ();
10632 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
10634 stack[++stacki] = unsnd;
10636 dwarf2_complex_location_expr_complaint ();
10640 stack[++stacki] = read_address (objfile->obfd, &data[i],
10645 case DW_OP_const1u:
10646 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
10650 case DW_OP_const1s:
10651 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
10655 case DW_OP_const2u:
10656 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
10660 case DW_OP_const2s:
10661 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
10665 case DW_OP_const4u:
10666 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
10670 case DW_OP_const4s:
10671 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
10676 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
10682 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
10687 stack[stacki + 1] = stack[stacki];
10692 stack[stacki - 1] += stack[stacki];
10696 case DW_OP_plus_uconst:
10697 stack[stacki] += read_unsigned_leb128 (NULL, (data + i), &bytes_read);
10702 stack[stacki - 1] -= stack[stacki];
10707 /* If we're not the last op, then we definitely can't encode
10708 this using GDB's address_class enum. This is valid for partial
10709 global symbols, although the variable's address will be bogus
10712 dwarf2_complex_location_expr_complaint ();
10715 case DW_OP_GNU_push_tls_address:
10716 /* The top of the stack has the offset from the beginning
10717 of the thread control block at which the variable is located. */
10718 /* Nothing should follow this operator, so the top of stack would
10720 /* This is valid for partial global symbols, but the variable's
10721 address will be bogus in the psymtab. */
10723 dwarf2_complex_location_expr_complaint ();
10726 case DW_OP_GNU_uninit:
10730 complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
10731 dwarf_stack_op_name (op));
10732 return (stack[stacki]);
10735 return (stack[stacki]);
10738 /* memory allocation interface */
10740 static struct dwarf_block *
10741 dwarf_alloc_block (struct dwarf2_cu *cu)
10743 struct dwarf_block *blk;
10745 blk = (struct dwarf_block *)
10746 obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
10750 static struct abbrev_info *
10751 dwarf_alloc_abbrev (struct dwarf2_cu *cu)
10753 struct abbrev_info *abbrev;
10755 abbrev = (struct abbrev_info *)
10756 obstack_alloc (&cu->abbrev_obstack, sizeof (struct abbrev_info));
10757 memset (abbrev, 0, sizeof (struct abbrev_info));
10761 static struct die_info *
10762 dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
10764 struct die_info *die;
10765 size_t size = sizeof (struct die_info);
10768 size += (num_attrs - 1) * sizeof (struct attribute);
10770 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
10771 memset (die, 0, sizeof (struct die_info));
10776 /* Macro support. */
10779 /* Return the full name of file number I in *LH's file name table.
10780 Use COMP_DIR as the name of the current directory of the
10781 compilation. The result is allocated using xmalloc; the caller is
10782 responsible for freeing it. */
10784 file_full_name (int file, struct line_header *lh, const char *comp_dir)
10786 /* Is the file number a valid index into the line header's file name
10787 table? Remember that file numbers start with one, not zero. */
10788 if (1 <= file && file <= lh->num_file_names)
10790 struct file_entry *fe = &lh->file_names[file - 1];
10792 if (IS_ABSOLUTE_PATH (fe->name))
10793 return xstrdup (fe->name);
10801 dir = lh->include_dirs[fe->dir_index - 1];
10807 dir_len = strlen (dir);
10808 full_name = xmalloc (dir_len + 1 + strlen (fe->name) + 1);
10809 strcpy (full_name, dir);
10810 full_name[dir_len] = '/';
10811 strcpy (full_name + dir_len + 1, fe->name);
10815 return xstrdup (fe->name);
10820 /* The compiler produced a bogus file number. We can at least
10821 record the macro definitions made in the file, even if we
10822 won't be able to find the file by name. */
10823 char fake_name[80];
10824 sprintf (fake_name, "<bad macro file number %d>", file);
10826 complaint (&symfile_complaints,
10827 _("bad file number in macro information (%d)"),
10830 return xstrdup (fake_name);
10835 static struct macro_source_file *
10836 macro_start_file (int file, int line,
10837 struct macro_source_file *current_file,
10838 const char *comp_dir,
10839 struct line_header *lh, struct objfile *objfile)
10841 /* The full name of this source file. */
10842 char *full_name = file_full_name (file, lh, comp_dir);
10844 /* We don't create a macro table for this compilation unit
10845 at all until we actually get a filename. */
10846 if (! pending_macros)
10847 pending_macros = new_macro_table (&objfile->objfile_obstack,
10848 objfile->macro_cache);
10850 if (! current_file)
10851 /* If we have no current file, then this must be the start_file
10852 directive for the compilation unit's main source file. */
10853 current_file = macro_set_main (pending_macros, full_name);
10855 current_file = macro_include (current_file, line, full_name);
10859 return current_file;
10863 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
10864 followed by a null byte. */
10866 copy_string (const char *buf, int len)
10868 char *s = xmalloc (len + 1);
10869 memcpy (s, buf, len);
10876 static const char *
10877 consume_improper_spaces (const char *p, const char *body)
10881 complaint (&symfile_complaints,
10882 _("macro definition contains spaces in formal argument list:\n`%s'"),
10894 parse_macro_definition (struct macro_source_file *file, int line,
10899 /* The body string takes one of two forms. For object-like macro
10900 definitions, it should be:
10902 <macro name> " " <definition>
10904 For function-like macro definitions, it should be:
10906 <macro name> "() " <definition>
10908 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
10910 Spaces may appear only where explicitly indicated, and in the
10913 The Dwarf 2 spec says that an object-like macro's name is always
10914 followed by a space, but versions of GCC around March 2002 omit
10915 the space when the macro's definition is the empty string.
10917 The Dwarf 2 spec says that there should be no spaces between the
10918 formal arguments in a function-like macro's formal argument list,
10919 but versions of GCC around March 2002 include spaces after the
10923 /* Find the extent of the macro name. The macro name is terminated
10924 by either a space or null character (for an object-like macro) or
10925 an opening paren (for a function-like macro). */
10926 for (p = body; *p; p++)
10927 if (*p == ' ' || *p == '(')
10930 if (*p == ' ' || *p == '\0')
10932 /* It's an object-like macro. */
10933 int name_len = p - body;
10934 char *name = copy_string (body, name_len);
10935 const char *replacement;
10938 replacement = body + name_len + 1;
10941 dwarf2_macro_malformed_definition_complaint (body);
10942 replacement = body + name_len;
10945 macro_define_object (file, line, name, replacement);
10949 else if (*p == '(')
10951 /* It's a function-like macro. */
10952 char *name = copy_string (body, p - body);
10955 char **argv = xmalloc (argv_size * sizeof (*argv));
10959 p = consume_improper_spaces (p, body);
10961 /* Parse the formal argument list. */
10962 while (*p && *p != ')')
10964 /* Find the extent of the current argument name. */
10965 const char *arg_start = p;
10967 while (*p && *p != ',' && *p != ')' && *p != ' ')
10970 if (! *p || p == arg_start)
10971 dwarf2_macro_malformed_definition_complaint (body);
10974 /* Make sure argv has room for the new argument. */
10975 if (argc >= argv_size)
10978 argv = xrealloc (argv, argv_size * sizeof (*argv));
10981 argv[argc++] = copy_string (arg_start, p - arg_start);
10984 p = consume_improper_spaces (p, body);
10986 /* Consume the comma, if present. */
10991 p = consume_improper_spaces (p, body);
11000 /* Perfectly formed definition, no complaints. */
11001 macro_define_function (file, line, name,
11002 argc, (const char **) argv,
11004 else if (*p == '\0')
11006 /* Complain, but do define it. */
11007 dwarf2_macro_malformed_definition_complaint (body);
11008 macro_define_function (file, line, name,
11009 argc, (const char **) argv,
11013 /* Just complain. */
11014 dwarf2_macro_malformed_definition_complaint (body);
11017 /* Just complain. */
11018 dwarf2_macro_malformed_definition_complaint (body);
11024 for (i = 0; i < argc; i++)
11030 dwarf2_macro_malformed_definition_complaint (body);
11035 dwarf_decode_macros (struct line_header *lh, unsigned int offset,
11036 char *comp_dir, bfd *abfd,
11037 struct dwarf2_cu *cu)
11039 gdb_byte *mac_ptr, *mac_end;
11040 struct macro_source_file *current_file = 0;
11041 enum dwarf_macinfo_record_type macinfo_type;
11042 int at_commandline;
11044 if (dwarf2_per_objfile->macinfo.buffer == NULL)
11046 complaint (&symfile_complaints, _("missing .debug_macinfo section"));
11050 /* First pass: Find the name of the base filename.
11051 This filename is needed in order to process all macros whose definition
11052 (or undefinition) comes from the command line. These macros are defined
11053 before the first DW_MACINFO_start_file entry, and yet still need to be
11054 associated to the base file.
11056 To determine the base file name, we scan the macro definitions until we
11057 reach the first DW_MACINFO_start_file entry. We then initialize
11058 CURRENT_FILE accordingly so that any macro definition found before the
11059 first DW_MACINFO_start_file can still be associated to the base file. */
11061 mac_ptr = dwarf2_per_objfile->macinfo.buffer + offset;
11062 mac_end = dwarf2_per_objfile->macinfo.buffer
11063 + dwarf2_per_objfile->macinfo.size;
11067 /* Do we at least have room for a macinfo type byte? */
11068 if (mac_ptr >= mac_end)
11070 /* Complaint is printed during the second pass as GDB will probably
11071 stop the first pass earlier upon finding DW_MACINFO_start_file. */
11075 macinfo_type = read_1_byte (abfd, mac_ptr);
11078 switch (macinfo_type)
11080 /* A zero macinfo type indicates the end of the macro
11085 case DW_MACINFO_define:
11086 case DW_MACINFO_undef:
11087 /* Only skip the data by MAC_PTR. */
11089 unsigned int bytes_read;
11091 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
11092 mac_ptr += bytes_read;
11093 read_string (abfd, mac_ptr, &bytes_read);
11094 mac_ptr += bytes_read;
11098 case DW_MACINFO_start_file:
11100 unsigned int bytes_read;
11103 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
11104 mac_ptr += bytes_read;
11105 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
11106 mac_ptr += bytes_read;
11108 current_file = macro_start_file (file, line, current_file, comp_dir,
11113 case DW_MACINFO_end_file:
11114 /* No data to skip by MAC_PTR. */
11117 case DW_MACINFO_vendor_ext:
11118 /* Only skip the data by MAC_PTR. */
11120 unsigned int bytes_read;
11122 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
11123 mac_ptr += bytes_read;
11124 read_string (abfd, mac_ptr, &bytes_read);
11125 mac_ptr += bytes_read;
11132 } while (macinfo_type != 0 && current_file == NULL);
11134 /* Second pass: Process all entries.
11136 Use the AT_COMMAND_LINE flag to determine whether we are still processing
11137 command-line macro definitions/undefinitions. This flag is unset when we
11138 reach the first DW_MACINFO_start_file entry. */
11140 mac_ptr = dwarf2_per_objfile->macinfo.buffer + offset;
11142 /* Determines if GDB is still before first DW_MACINFO_start_file. If true
11143 GDB is still reading the definitions from command line. First
11144 DW_MACINFO_start_file will need to be ignored as it was already executed
11145 to create CURRENT_FILE for the main source holding also the command line
11146 definitions. On first met DW_MACINFO_start_file this flag is reset to
11147 normally execute all the remaining DW_MACINFO_start_file macinfos. */
11149 at_commandline = 1;
11153 /* Do we at least have room for a macinfo type byte? */
11154 if (mac_ptr >= mac_end)
11156 dwarf2_macros_too_long_complaint ();
11160 macinfo_type = read_1_byte (abfd, mac_ptr);
11163 switch (macinfo_type)
11165 /* A zero macinfo type indicates the end of the macro
11170 case DW_MACINFO_define:
11171 case DW_MACINFO_undef:
11173 unsigned int bytes_read;
11177 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
11178 mac_ptr += bytes_read;
11179 body = read_string (abfd, mac_ptr, &bytes_read);
11180 mac_ptr += bytes_read;
11182 if (! current_file)
11184 /* DWARF violation as no main source is present. */
11185 complaint (&symfile_complaints,
11186 _("debug info with no main source gives macro %s "
11188 macinfo_type == DW_MACINFO_define ?
11190 macinfo_type == DW_MACINFO_undef ?
11191 _("undefinition") :
11192 _("something-or-other"), line, body);
11195 if ((line == 0 && !at_commandline) || (line != 0 && at_commandline))
11196 complaint (&symfile_complaints,
11197 _("debug info gives %s macro %s with %s line %d: %s"),
11198 at_commandline ? _("command-line") : _("in-file"),
11199 macinfo_type == DW_MACINFO_define ?
11201 macinfo_type == DW_MACINFO_undef ?
11202 _("undefinition") :
11203 _("something-or-other"),
11204 line == 0 ? _("zero") : _("non-zero"), line, body);
11206 if (macinfo_type == DW_MACINFO_define)
11207 parse_macro_definition (current_file, line, body);
11208 else if (macinfo_type == DW_MACINFO_undef)
11209 macro_undef (current_file, line, body);
11213 case DW_MACINFO_start_file:
11215 unsigned int bytes_read;
11218 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
11219 mac_ptr += bytes_read;
11220 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
11221 mac_ptr += bytes_read;
11223 if ((line == 0 && !at_commandline) || (line != 0 && at_commandline))
11224 complaint (&symfile_complaints,
11225 _("debug info gives source %d included "
11226 "from %s at %s line %d"),
11227 file, at_commandline ? _("command-line") : _("file"),
11228 line == 0 ? _("zero") : _("non-zero"), line);
11230 if (at_commandline)
11232 /* This DW_MACINFO_start_file was executed in the pass one. */
11233 at_commandline = 0;
11236 current_file = macro_start_file (file, line,
11237 current_file, comp_dir,
11242 case DW_MACINFO_end_file:
11243 if (! current_file)
11244 complaint (&symfile_complaints,
11245 _("macro debug info has an unmatched `close_file' directive"));
11248 current_file = current_file->included_by;
11249 if (! current_file)
11251 enum dwarf_macinfo_record_type next_type;
11253 /* GCC circa March 2002 doesn't produce the zero
11254 type byte marking the end of the compilation
11255 unit. Complain if it's not there, but exit no
11258 /* Do we at least have room for a macinfo type byte? */
11259 if (mac_ptr >= mac_end)
11261 dwarf2_macros_too_long_complaint ();
11265 /* We don't increment mac_ptr here, so this is just
11267 next_type = read_1_byte (abfd, mac_ptr);
11268 if (next_type != 0)
11269 complaint (&symfile_complaints,
11270 _("no terminating 0-type entry for macros in `.debug_macinfo' section"));
11277 case DW_MACINFO_vendor_ext:
11279 unsigned int bytes_read;
11283 constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
11284 mac_ptr += bytes_read;
11285 string = read_string (abfd, mac_ptr, &bytes_read);
11286 mac_ptr += bytes_read;
11288 /* We don't recognize any vendor extensions. */
11292 } while (macinfo_type != 0);
11295 /* Check if the attribute's form is a DW_FORM_block*
11296 if so return true else false. */
11298 attr_form_is_block (struct attribute *attr)
11300 return (attr == NULL ? 0 :
11301 attr->form == DW_FORM_block1
11302 || attr->form == DW_FORM_block2
11303 || attr->form == DW_FORM_block4
11304 || attr->form == DW_FORM_block);
11307 /* Return non-zero if ATTR's value is a section offset --- classes
11308 lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
11309 You may use DW_UNSND (attr) to retrieve such offsets.
11311 Section 7.5.4, "Attribute Encodings", explains that no attribute
11312 may have a value that belongs to more than one of these classes; it
11313 would be ambiguous if we did, because we use the same forms for all
11316 attr_form_is_section_offset (struct attribute *attr)
11318 return (attr->form == DW_FORM_data4
11319 || attr->form == DW_FORM_data8);
11323 /* Return non-zero if ATTR's value falls in the 'constant' class, or
11324 zero otherwise. When this function returns true, you can apply
11325 dwarf2_get_attr_constant_value to it.
11327 However, note that for some attributes you must check
11328 attr_form_is_section_offset before using this test. DW_FORM_data4
11329 and DW_FORM_data8 are members of both the constant class, and of
11330 the classes that contain offsets into other debug sections
11331 (lineptr, loclistptr, macptr or rangelistptr). The DWARF spec says
11332 that, if an attribute's can be either a constant or one of the
11333 section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
11334 taken as section offsets, not constants. */
11336 attr_form_is_constant (struct attribute *attr)
11338 switch (attr->form)
11340 case DW_FORM_sdata:
11341 case DW_FORM_udata:
11342 case DW_FORM_data1:
11343 case DW_FORM_data2:
11344 case DW_FORM_data4:
11345 case DW_FORM_data8:
11353 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
11354 struct dwarf2_cu *cu)
11356 if (attr_form_is_section_offset (attr)
11357 /* ".debug_loc" may not exist at all, or the offset may be outside
11358 the section. If so, fall through to the complaint in the
11360 && DW_UNSND (attr) < dwarf2_per_objfile->loc.size)
11362 struct dwarf2_loclist_baton *baton;
11364 baton = obstack_alloc (&cu->objfile->objfile_obstack,
11365 sizeof (struct dwarf2_loclist_baton));
11366 baton->per_cu = cu->per_cu;
11367 gdb_assert (baton->per_cu);
11369 /* We don't know how long the location list is, but make sure we
11370 don't run off the edge of the section. */
11371 baton->size = dwarf2_per_objfile->loc.size - DW_UNSND (attr);
11372 baton->data = dwarf2_per_objfile->loc.buffer + DW_UNSND (attr);
11373 baton->base_address = cu->base_address;
11374 if (cu->base_known == 0)
11375 complaint (&symfile_complaints,
11376 _("Location list used without specifying the CU base address."));
11378 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_loclist_funcs;
11379 SYMBOL_LOCATION_BATON (sym) = baton;
11383 struct dwarf2_locexpr_baton *baton;
11385 baton = obstack_alloc (&cu->objfile->objfile_obstack,
11386 sizeof (struct dwarf2_locexpr_baton));
11387 baton->per_cu = cu->per_cu;
11388 gdb_assert (baton->per_cu);
11390 if (attr_form_is_block (attr))
11392 /* Note that we're just copying the block's data pointer
11393 here, not the actual data. We're still pointing into the
11394 info_buffer for SYM's objfile; right now we never release
11395 that buffer, but when we do clean up properly this may
11397 baton->size = DW_BLOCK (attr)->size;
11398 baton->data = DW_BLOCK (attr)->data;
11402 dwarf2_invalid_attrib_class_complaint ("location description",
11403 SYMBOL_NATURAL_NAME (sym));
11405 baton->data = NULL;
11408 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_locexpr_funcs;
11409 SYMBOL_LOCATION_BATON (sym) = baton;
11413 /* Return the OBJFILE associated with the compilation unit CU. */
11416 dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
11418 struct objfile *objfile = per_cu->psymtab->objfile;
11420 /* Return the master objfile, so that we can report and look up the
11421 correct file containing this variable. */
11422 if (objfile->separate_debug_objfile_backlink)
11423 objfile = objfile->separate_debug_objfile_backlink;
11428 /* Return the address size given in the compilation unit header for CU. */
11431 dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
11434 return per_cu->cu->header.addr_size;
11437 /* If the CU is not currently read in, we re-read its header. */
11438 struct objfile *objfile = per_cu->psymtab->objfile;
11439 struct dwarf2_per_objfile *per_objfile
11440 = objfile_data (objfile, dwarf2_objfile_data_key);
11441 gdb_byte *info_ptr = per_objfile->info.buffer + per_cu->offset;
11443 struct comp_unit_head cu_header;
11444 memset (&cu_header, 0, sizeof cu_header);
11445 read_comp_unit_head (&cu_header, info_ptr, objfile->obfd);
11446 return cu_header.addr_size;
11450 /* Locate the .debug_info compilation unit from CU's objfile which contains
11451 the DIE at OFFSET. Raises an error on failure. */
11453 static struct dwarf2_per_cu_data *
11454 dwarf2_find_containing_comp_unit (unsigned int offset,
11455 struct objfile *objfile)
11457 struct dwarf2_per_cu_data *this_cu;
11461 high = dwarf2_per_objfile->n_comp_units - 1;
11464 int mid = low + (high - low) / 2;
11465 if (dwarf2_per_objfile->all_comp_units[mid]->offset >= offset)
11470 gdb_assert (low == high);
11471 if (dwarf2_per_objfile->all_comp_units[low]->offset > offset)
11474 error (_("Dwarf Error: could not find partial DIE containing "
11475 "offset 0x%lx [in module %s]"),
11476 (long) offset, bfd_get_filename (objfile->obfd));
11478 gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset <= offset);
11479 return dwarf2_per_objfile->all_comp_units[low-1];
11483 this_cu = dwarf2_per_objfile->all_comp_units[low];
11484 if (low == dwarf2_per_objfile->n_comp_units - 1
11485 && offset >= this_cu->offset + this_cu->length)
11486 error (_("invalid dwarf2 offset %u"), offset);
11487 gdb_assert (offset < this_cu->offset + this_cu->length);
11492 /* Locate the compilation unit from OBJFILE which is located at exactly
11493 OFFSET. Raises an error on failure. */
11495 static struct dwarf2_per_cu_data *
11496 dwarf2_find_comp_unit (unsigned int offset, struct objfile *objfile)
11498 struct dwarf2_per_cu_data *this_cu;
11499 this_cu = dwarf2_find_containing_comp_unit (offset, objfile);
11500 if (this_cu->offset != offset)
11501 error (_("no compilation unit with offset %u."), offset);
11505 /* Malloc space for a dwarf2_cu for OBJFILE and initialize it. */
11507 static struct dwarf2_cu *
11508 alloc_one_comp_unit (struct objfile *objfile)
11510 struct dwarf2_cu *cu = xcalloc (1, sizeof (struct dwarf2_cu));
11511 cu->objfile = objfile;
11512 obstack_init (&cu->comp_unit_obstack);
11516 /* Release one cached compilation unit, CU. We unlink it from the tree
11517 of compilation units, but we don't remove it from the read_in_chain;
11518 the caller is responsible for that.
11519 NOTE: DATA is a void * because this function is also used as a
11520 cleanup routine. */
11523 free_one_comp_unit (void *data)
11525 struct dwarf2_cu *cu = data;
11527 if (cu->per_cu != NULL)
11528 cu->per_cu->cu = NULL;
11531 obstack_free (&cu->comp_unit_obstack, NULL);
11536 /* This cleanup function is passed the address of a dwarf2_cu on the stack
11537 when we're finished with it. We can't free the pointer itself, but be
11538 sure to unlink it from the cache. Also release any associated storage
11539 and perform cache maintenance.
11541 Only used during partial symbol parsing. */
11544 free_stack_comp_unit (void *data)
11546 struct dwarf2_cu *cu = data;
11548 obstack_free (&cu->comp_unit_obstack, NULL);
11549 cu->partial_dies = NULL;
11551 if (cu->per_cu != NULL)
11553 /* This compilation unit is on the stack in our caller, so we
11554 should not xfree it. Just unlink it. */
11555 cu->per_cu->cu = NULL;
11558 /* If we had a per-cu pointer, then we may have other compilation
11559 units loaded, so age them now. */
11560 age_cached_comp_units ();
11564 /* Free all cached compilation units. */
11567 free_cached_comp_units (void *data)
11569 struct dwarf2_per_cu_data *per_cu, **last_chain;
11571 per_cu = dwarf2_per_objfile->read_in_chain;
11572 last_chain = &dwarf2_per_objfile->read_in_chain;
11573 while (per_cu != NULL)
11575 struct dwarf2_per_cu_data *next_cu;
11577 next_cu = per_cu->cu->read_in_chain;
11579 free_one_comp_unit (per_cu->cu);
11580 *last_chain = next_cu;
11586 /* Increase the age counter on each cached compilation unit, and free
11587 any that are too old. */
11590 age_cached_comp_units (void)
11592 struct dwarf2_per_cu_data *per_cu, **last_chain;
11594 dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
11595 per_cu = dwarf2_per_objfile->read_in_chain;
11596 while (per_cu != NULL)
11598 per_cu->cu->last_used ++;
11599 if (per_cu->cu->last_used <= dwarf2_max_cache_age)
11600 dwarf2_mark (per_cu->cu);
11601 per_cu = per_cu->cu->read_in_chain;
11604 per_cu = dwarf2_per_objfile->read_in_chain;
11605 last_chain = &dwarf2_per_objfile->read_in_chain;
11606 while (per_cu != NULL)
11608 struct dwarf2_per_cu_data *next_cu;
11610 next_cu = per_cu->cu->read_in_chain;
11612 if (!per_cu->cu->mark)
11614 free_one_comp_unit (per_cu->cu);
11615 *last_chain = next_cu;
11618 last_chain = &per_cu->cu->read_in_chain;
11624 /* Remove a single compilation unit from the cache. */
11627 free_one_cached_comp_unit (void *target_cu)
11629 struct dwarf2_per_cu_data *per_cu, **last_chain;
11631 per_cu = dwarf2_per_objfile->read_in_chain;
11632 last_chain = &dwarf2_per_objfile->read_in_chain;
11633 while (per_cu != NULL)
11635 struct dwarf2_per_cu_data *next_cu;
11637 next_cu = per_cu->cu->read_in_chain;
11639 if (per_cu->cu == target_cu)
11641 free_one_comp_unit (per_cu->cu);
11642 *last_chain = next_cu;
11646 last_chain = &per_cu->cu->read_in_chain;
11652 /* Release all extra memory associated with OBJFILE. */
11655 dwarf2_free_objfile (struct objfile *objfile)
11657 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
11659 if (dwarf2_per_objfile == NULL)
11662 /* Cached DIE trees use xmalloc and the comp_unit_obstack. */
11663 free_cached_comp_units (NULL);
11665 /* Everything else should be on the objfile obstack. */
11668 /* A pair of DIE offset and GDB type pointer. We store these
11669 in a hash table separate from the DIEs, and preserve them
11670 when the DIEs are flushed out of cache. */
11672 struct dwarf2_offset_and_type
11674 unsigned int offset;
11678 /* Hash function for a dwarf2_offset_and_type. */
11681 offset_and_type_hash (const void *item)
11683 const struct dwarf2_offset_and_type *ofs = item;
11684 return ofs->offset;
11687 /* Equality function for a dwarf2_offset_and_type. */
11690 offset_and_type_eq (const void *item_lhs, const void *item_rhs)
11692 const struct dwarf2_offset_and_type *ofs_lhs = item_lhs;
11693 const struct dwarf2_offset_and_type *ofs_rhs = item_rhs;
11694 return ofs_lhs->offset == ofs_rhs->offset;
11697 /* Set the type associated with DIE to TYPE. Save it in CU's hash
11698 table if necessary. For convenience, return TYPE. */
11700 static struct type *
11701 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
11703 struct dwarf2_offset_and_type **slot, ofs;
11705 if (cu->type_hash == NULL)
11707 gdb_assert (cu->per_cu != NULL);
11708 cu->per_cu->type_hash
11709 = htab_create_alloc_ex (cu->header.length / 24,
11710 offset_and_type_hash,
11711 offset_and_type_eq,
11713 &cu->objfile->objfile_obstack,
11714 hashtab_obstack_allocate,
11715 dummy_obstack_deallocate);
11716 cu->type_hash = cu->per_cu->type_hash;
11719 ofs.offset = die->offset;
11721 slot = (struct dwarf2_offset_and_type **)
11722 htab_find_slot_with_hash (cu->type_hash, &ofs, ofs.offset, INSERT);
11723 *slot = obstack_alloc (&cu->objfile->objfile_obstack, sizeof (**slot));
11728 /* Find the type for DIE in CU's type_hash, or return NULL if DIE does
11729 not have a saved type. */
11731 static struct type *
11732 get_die_type (struct die_info *die, struct dwarf2_cu *cu)
11734 struct dwarf2_offset_and_type *slot, ofs;
11735 htab_t type_hash = cu->type_hash;
11737 if (type_hash == NULL)
11740 ofs.offset = die->offset;
11741 slot = htab_find_with_hash (type_hash, &ofs, ofs.offset);
11748 /* Add a dependence relationship from CU to REF_PER_CU. */
11751 dwarf2_add_dependence (struct dwarf2_cu *cu,
11752 struct dwarf2_per_cu_data *ref_per_cu)
11756 if (cu->dependencies == NULL)
11758 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
11759 NULL, &cu->comp_unit_obstack,
11760 hashtab_obstack_allocate,
11761 dummy_obstack_deallocate);
11763 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
11765 *slot = ref_per_cu;
11768 /* Subroutine of dwarf2_mark to pass to htab_traverse.
11769 Set the mark field in every compilation unit in the
11770 cache that we must keep because we are keeping CU. */
11773 dwarf2_mark_helper (void **slot, void *data)
11775 struct dwarf2_per_cu_data *per_cu;
11777 per_cu = (struct dwarf2_per_cu_data *) *slot;
11778 if (per_cu->cu->mark)
11780 per_cu->cu->mark = 1;
11782 if (per_cu->cu->dependencies != NULL)
11783 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
11788 /* Set the mark field in CU and in every other compilation unit in the
11789 cache that we must keep because we are keeping CU. */
11792 dwarf2_mark (struct dwarf2_cu *cu)
11797 if (cu->dependencies != NULL)
11798 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
11802 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
11806 per_cu->cu->mark = 0;
11807 per_cu = per_cu->cu->read_in_chain;
11811 /* Trivial hash function for partial_die_info: the hash value of a DIE
11812 is its offset in .debug_info for this objfile. */
11815 partial_die_hash (const void *item)
11817 const struct partial_die_info *part_die = item;
11818 return part_die->offset;
11821 /* Trivial comparison function for partial_die_info structures: two DIEs
11822 are equal if they have the same offset. */
11825 partial_die_eq (const void *item_lhs, const void *item_rhs)
11827 const struct partial_die_info *part_die_lhs = item_lhs;
11828 const struct partial_die_info *part_die_rhs = item_rhs;
11829 return part_die_lhs->offset == part_die_rhs->offset;
11832 static struct cmd_list_element *set_dwarf2_cmdlist;
11833 static struct cmd_list_element *show_dwarf2_cmdlist;
11836 set_dwarf2_cmd (char *args, int from_tty)
11838 help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout);
11842 show_dwarf2_cmd (char *args, int from_tty)
11844 cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
11847 /* If section described by INFO was mmapped, munmap it now. */
11850 munmap_section_buffer (struct dwarf2_section_info *info)
11852 if (info->was_mmapped)
11855 intptr_t begin = (intptr_t) info->buffer;
11856 intptr_t map_begin = begin & ~(pagesize - 1);
11857 size_t map_length = info->size + begin - map_begin;
11858 gdb_assert (munmap ((void *) map_begin, map_length) == 0);
11860 /* Without HAVE_MMAP, we should never be here to begin with. */
11866 /* munmap debug sections for OBJFILE, if necessary. */
11869 dwarf2_per_objfile_free (struct objfile *objfile, void *d)
11871 struct dwarf2_per_objfile *data = d;
11872 munmap_section_buffer (&data->info);
11873 munmap_section_buffer (&data->abbrev);
11874 munmap_section_buffer (&data->line);
11875 munmap_section_buffer (&data->str);
11876 munmap_section_buffer (&data->macinfo);
11877 munmap_section_buffer (&data->ranges);
11878 munmap_section_buffer (&data->loc);
11879 munmap_section_buffer (&data->frame);
11880 munmap_section_buffer (&data->eh_frame);
11883 void _initialize_dwarf2_read (void);
11886 _initialize_dwarf2_read (void)
11888 dwarf2_objfile_data_key
11889 = register_objfile_data_with_cleanup (NULL, dwarf2_per_objfile_free);
11891 add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
11892 Set DWARF 2 specific variables.\n\
11893 Configure DWARF 2 variables such as the cache size"),
11894 &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
11895 0/*allow-unknown*/, &maintenance_set_cmdlist);
11897 add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
11898 Show DWARF 2 specific variables\n\
11899 Show DWARF 2 variables such as the cache size"),
11900 &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
11901 0/*allow-unknown*/, &maintenance_show_cmdlist);
11903 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
11904 &dwarf2_max_cache_age, _("\
11905 Set the upper bound on the age of cached dwarf2 compilation units."), _("\
11906 Show the upper bound on the age of cached dwarf2 compilation units."), _("\
11907 A higher limit means that cached compilation units will be stored\n\
11908 in memory longer, and more total memory will be used. Zero disables\n\
11909 caching, which can slow down startup."),
11911 show_dwarf2_max_cache_age,
11912 &set_dwarf2_cmdlist,
11913 &show_dwarf2_cmdlist);
11915 add_setshow_zinteger_cmd ("dwarf2-die", no_class, &dwarf2_die_debug, _("\
11916 Set debugging of the dwarf2 DIE reader."), _("\
11917 Show debugging of the dwarf2 DIE reader."), _("\
11918 When enabled (non-zero), DIEs are dumped after they are read in.\n\
11919 The value is the maximum depth to print."),
11922 &setdebuglist, &showdebuglist);