1 /* DWARF 2 debugging format support for GDB.
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 Free Software Foundation, Inc.
7 Inc. with support from Florida State University (under contract
8 with the Ada Joint Program Office), and Silicon Graphics, Inc.
9 Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
10 based on Fred Fish's (Cygnus Support) implementation of DWARF 1
11 support in dwarfread.c
13 This file is part of GDB.
15 This program is free software; you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation; either version 2 of the License, or (at
18 your option) any later version.
20 This program is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. */
36 #include "elf/dwarf2.h"
39 #include "expression.h"
40 #include "filenames.h" /* for DOSish file names */
43 #include "complaints.h"
45 #include "dwarf2expr.h"
46 #include "dwarf2loc.h"
47 #include "cp-support.h"
50 #include "gdb_string.h"
51 #include "gdb_assert.h"
52 #include <sys/types.h>
54 #ifndef DWARF2_REG_TO_REGNUM
55 #define DWARF2_REG_TO_REGNUM(REG) (REG)
59 /* .debug_info header for a compilation unit
60 Because of alignment constraints, this structure has padding and cannot
61 be mapped directly onto the beginning of the .debug_info section. */
62 typedef struct comp_unit_header
64 unsigned int length; /* length of the .debug_info
66 unsigned short version; /* version number -- 2 for DWARF
68 unsigned int abbrev_offset; /* offset into .debug_abbrev section */
69 unsigned char addr_size; /* byte size of an address -- 4 */
72 #define _ACTUAL_COMP_UNIT_HEADER_SIZE 11
75 /* .debug_pubnames header
76 Because of alignment constraints, this structure has padding and cannot
77 be mapped directly onto the beginning of the .debug_info section. */
78 typedef struct pubnames_header
80 unsigned int length; /* length of the .debug_pubnames
82 unsigned char version; /* version number -- 2 for DWARF
84 unsigned int info_offset; /* offset into .debug_info section */
85 unsigned int info_size; /* byte size of .debug_info section
89 #define _ACTUAL_PUBNAMES_HEADER_SIZE 13
91 /* .debug_pubnames header
92 Because of alignment constraints, this structure has padding and cannot
93 be mapped directly onto the beginning of the .debug_info section. */
94 typedef struct aranges_header
96 unsigned int length; /* byte len of the .debug_aranges
98 unsigned short version; /* version number -- 2 for DWARF
100 unsigned int info_offset; /* offset into .debug_info section */
101 unsigned char addr_size; /* byte size of an address */
102 unsigned char seg_size; /* byte size of segment descriptor */
105 #define _ACTUAL_ARANGES_HEADER_SIZE 12
107 /* .debug_line statement program prologue
108 Because of alignment constraints, this structure has padding and cannot
109 be mapped directly onto the beginning of the .debug_info section. */
110 typedef struct statement_prologue
112 unsigned int total_length; /* byte length of the statement
114 unsigned short version; /* version number -- 2 for DWARF
116 unsigned int prologue_length; /* # bytes between prologue &
118 unsigned char minimum_instruction_length; /* byte size of
120 unsigned char default_is_stmt; /* initial value of is_stmt
123 unsigned char line_range;
124 unsigned char opcode_base; /* number assigned to first special
126 unsigned char *standard_opcode_lengths;
130 /* offsets and sizes of debugging sections */
132 static unsigned int dwarf_info_size;
133 static unsigned int dwarf_abbrev_size;
134 static unsigned int dwarf_line_size;
135 static unsigned int dwarf_pubnames_size;
136 static unsigned int dwarf_aranges_size;
137 static unsigned int dwarf_loc_size;
138 static unsigned int dwarf_macinfo_size;
139 static unsigned int dwarf_str_size;
140 static unsigned int dwarf_ranges_size;
141 unsigned int dwarf_frame_size;
142 unsigned int dwarf_eh_frame_size;
144 static asection *dwarf_info_section;
145 static asection *dwarf_abbrev_section;
146 static asection *dwarf_line_section;
147 static asection *dwarf_pubnames_section;
148 static asection *dwarf_aranges_section;
149 static asection *dwarf_loc_section;
150 static asection *dwarf_macinfo_section;
151 static asection *dwarf_str_section;
152 static asection *dwarf_ranges_section;
153 asection *dwarf_frame_section;
154 asection *dwarf_eh_frame_section;
156 /* names of the debugging sections */
158 #define INFO_SECTION ".debug_info"
159 #define ABBREV_SECTION ".debug_abbrev"
160 #define LINE_SECTION ".debug_line"
161 #define PUBNAMES_SECTION ".debug_pubnames"
162 #define ARANGES_SECTION ".debug_aranges"
163 #define LOC_SECTION ".debug_loc"
164 #define MACINFO_SECTION ".debug_macinfo"
165 #define STR_SECTION ".debug_str"
166 #define RANGES_SECTION ".debug_ranges"
167 #define FRAME_SECTION ".debug_frame"
168 #define EH_FRAME_SECTION ".eh_frame"
170 /* local data types */
172 /* We hold several abbreviation tables in memory at the same time. */
173 #ifndef ABBREV_HASH_SIZE
174 #define ABBREV_HASH_SIZE 121
177 /* The data in a compilation unit header, after target2host
178 translation, looks like this. */
179 struct comp_unit_head
181 unsigned long length;
183 unsigned int abbrev_offset;
184 unsigned char addr_size;
185 unsigned char signed_addr_p;
186 unsigned int offset_size; /* size of file offsets; either 4 or 8 */
187 unsigned int initial_length_size; /* size of the length field; either
190 /* Offset to the first byte of this compilation unit header in the
191 * .debug_info section, for resolving relative reference dies. */
195 /* Pointer to this compilation unit header in the .debug_info
200 /* Pointer to the first die of this compilatio unit. This will
201 * be the first byte following the compilation unit header. */
205 /* Pointer to the next compilation unit header in the program. */
207 struct comp_unit_head *next;
209 /* DWARF abbreviation table associated with this compilation unit */
211 struct abbrev_info *dwarf2_abbrevs[ABBREV_HASH_SIZE];
213 /* Base address of this compilation unit. */
215 CORE_ADDR base_address;
217 /* Non-zero if base_address has been set. */
222 /* Internal state when decoding a particular compilation unit. */
225 /* The objfile containing this compilation unit. */
226 struct objfile *objfile;
228 /* The header of the compilation unit.
230 FIXME drow/2003-11-10: Some of the things from the comp_unit_head
231 should be moved to the dwarf2_cu structure; for instance the abbrevs
233 struct comp_unit_head header;
236 /* The line number information for a compilation unit (found in the
237 .debug_line section) begins with a "statement program header",
238 which contains the following information. */
241 unsigned int total_length;
242 unsigned short version;
243 unsigned int header_length;
244 unsigned char minimum_instruction_length;
245 unsigned char default_is_stmt;
247 unsigned char line_range;
248 unsigned char opcode_base;
250 /* standard_opcode_lengths[i] is the number of operands for the
251 standard opcode whose value is i. This means that
252 standard_opcode_lengths[0] is unused, and the last meaningful
253 element is standard_opcode_lengths[opcode_base - 1]. */
254 unsigned char *standard_opcode_lengths;
256 /* The include_directories table. NOTE! These strings are not
257 allocated with xmalloc; instead, they are pointers into
258 debug_line_buffer. If you try to free them, `free' will get
260 unsigned int num_include_dirs, include_dirs_size;
263 /* The file_names table. NOTE! These strings are not allocated
264 with xmalloc; instead, they are pointers into debug_line_buffer.
265 Don't try to free them directly. */
266 unsigned int num_file_names, file_names_size;
270 unsigned int dir_index;
271 unsigned int mod_time;
275 /* The start and end of the statement program following this
276 header. These point into dwarf_line_buffer. */
277 char *statement_program_start, *statement_program_end;
280 /* When we construct a partial symbol table entry we only
281 need this much information. */
282 struct partial_die_info
285 unsigned char has_children;
286 unsigned char is_external;
287 unsigned char is_declaration;
288 unsigned char has_type;
295 struct dwarf_block *locdesc;
296 unsigned int language;
300 /* This data structure holds the information of an abbrev. */
303 unsigned int number; /* number identifying abbrev */
304 enum dwarf_tag tag; /* dwarf tag */
305 int has_children; /* boolean */
306 unsigned int num_attrs; /* number of attributes */
307 struct attr_abbrev *attrs; /* an array of attribute descriptions */
308 struct abbrev_info *next; /* next in chain */
313 enum dwarf_attribute name;
314 enum dwarf_form form;
317 /* This data structure holds a complete die structure. */
320 enum dwarf_tag tag; /* Tag indicating type of die */
321 unsigned int abbrev; /* Abbrev number */
322 unsigned int offset; /* Offset in .debug_info section */
323 unsigned int num_attrs; /* Number of attributes */
324 struct attribute *attrs; /* An array of attributes */
325 struct die_info *next_ref; /* Next die in ref hash table */
327 /* The dies in a compilation unit form an n-ary tree. PARENT
328 points to this die's parent; CHILD points to the first child of
329 this node; and all the children of a given node are chained
330 together via their SIBLING fields, terminated by a die whose
332 struct die_info *child; /* Its first child, if any. */
333 struct die_info *sibling; /* Its next sibling, if any. */
334 struct die_info *parent; /* Its parent, if any. */
336 struct type *type; /* Cached type information */
339 /* Attributes have a name and a value */
342 enum dwarf_attribute name;
343 enum dwarf_form form;
347 struct dwarf_block *blk;
355 struct function_range
358 CORE_ADDR lowpc, highpc;
360 struct function_range *next;
363 static struct function_range *cu_first_fn, *cu_last_fn, *cu_cached_fn;
365 /* Get at parts of an attribute structure */
367 #define DW_STRING(attr) ((attr)->u.str)
368 #define DW_UNSND(attr) ((attr)->u.unsnd)
369 #define DW_BLOCK(attr) ((attr)->u.blk)
370 #define DW_SND(attr) ((attr)->u.snd)
371 #define DW_ADDR(attr) ((attr)->u.addr)
373 /* Blocks are a bunch of untyped bytes. */
380 #ifndef ATTR_ALLOC_CHUNK
381 #define ATTR_ALLOC_CHUNK 4
384 /* A hash table of die offsets for following references. */
385 #ifndef REF_HASH_SIZE
386 #define REF_HASH_SIZE 1021
389 static struct die_info *die_ref_table[REF_HASH_SIZE];
391 /* Obstack for allocating temporary storage used during symbol reading. */
392 static struct obstack dwarf2_tmp_obstack;
394 /* Offset to the first byte of the current compilation unit header,
395 for resolving relative reference dies. */
396 static unsigned int cu_header_offset;
398 /* Allocate fields for structs, unions and enums in this size. */
399 #ifndef DW_FIELD_ALLOC_CHUNK
400 #define DW_FIELD_ALLOC_CHUNK 4
403 /* The language we are debugging. */
404 static enum language cu_language;
405 static const struct language_defn *cu_language_defn;
407 /* Actually data from the sections. */
408 static char *dwarf_info_buffer;
409 static char *dwarf_abbrev_buffer;
410 static char *dwarf_line_buffer;
411 static char *dwarf_str_buffer;
412 static char *dwarf_macinfo_buffer;
413 static char *dwarf_ranges_buffer;
414 static char *dwarf_loc_buffer;
416 /* A zeroed version of a partial die for initialization purposes. */
417 static struct partial_die_info zeroed_partial_die;
419 /* The generic symbol table building routines have separate lists for
420 file scope symbols and all all other scopes (local scopes). So
421 we need to select the right one to pass to add_symbol_to_list().
422 We do it by keeping a pointer to the correct list in list_in_scope.
424 FIXME: The original dwarf code just treated the file scope as the first
425 local scope, and all other local scopes as nested local scopes, and worked
426 fine. Check to see if we really need to distinguish these
428 static struct pending **list_in_scope = &file_symbols;
430 /* FIXME: decode_locdesc sets these variables to describe the location
431 to the caller. These ought to be a structure or something. If
432 none of the flags are set, the object lives at the address returned
433 by decode_locdesc. */
435 static int isreg; /* Object lives in register.
436 decode_locdesc's return value is
437 the register number. */
439 /* This value is added to each symbol value. FIXME: Generalize to
440 the section_offsets structure used by dbxread (once this is done,
441 pass the appropriate section number to end_symtab). */
442 static CORE_ADDR baseaddr; /* Add to each symbol value */
444 /* We put a pointer to this structure in the read_symtab_private field
446 The complete dwarf information for an objfile is kept in the
447 psymbol_obstack, so that absolute die references can be handled.
448 Most of the information in this structure is related to an entire
449 object file and could be passed via the sym_private field of the objfile.
450 It is however conceivable that dwarf2 might not be the only type
451 of symbols read from an object file. */
455 /* Pointer to start of dwarf info buffer for the objfile. */
457 char *dwarf_info_buffer;
459 /* Offset in dwarf_info_buffer for this compilation unit. */
461 unsigned long dwarf_info_offset;
463 /* Pointer to start of dwarf abbreviation buffer for the objfile. */
465 char *dwarf_abbrev_buffer;
467 /* Size of dwarf abbreviation section for the objfile. */
469 unsigned int dwarf_abbrev_size;
471 /* Pointer to start of dwarf line buffer for the objfile. */
473 char *dwarf_line_buffer;
475 /* Size of dwarf_line_buffer, in bytes. */
477 unsigned int dwarf_line_size;
479 /* Pointer to start of dwarf string buffer for the objfile. */
481 char *dwarf_str_buffer;
483 /* Size of dwarf string section for the objfile. */
485 unsigned int dwarf_str_size;
487 /* Pointer to start of dwarf macro buffer for the objfile. */
489 char *dwarf_macinfo_buffer;
491 /* Size of dwarf macinfo section for the objfile. */
493 unsigned int dwarf_macinfo_size;
495 /* Pointer to start of dwarf ranges buffer for the objfile. */
497 char *dwarf_ranges_buffer;
499 /* Size of dwarf ranges buffer for the objfile. */
501 unsigned int dwarf_ranges_size;
503 /* Pointer to start of dwarf locations buffer for the objfile. */
505 char *dwarf_loc_buffer;
507 /* Size of dwarf locations buffer for the objfile. */
509 unsigned int dwarf_loc_size;
512 #define PST_PRIVATE(p) ((struct dwarf2_pinfo *)(p)->read_symtab_private)
513 #define DWARF_INFO_BUFFER(p) (PST_PRIVATE(p)->dwarf_info_buffer)
514 #define DWARF_INFO_OFFSET(p) (PST_PRIVATE(p)->dwarf_info_offset)
515 #define DWARF_ABBREV_BUFFER(p) (PST_PRIVATE(p)->dwarf_abbrev_buffer)
516 #define DWARF_ABBREV_SIZE(p) (PST_PRIVATE(p)->dwarf_abbrev_size)
517 #define DWARF_LINE_BUFFER(p) (PST_PRIVATE(p)->dwarf_line_buffer)
518 #define DWARF_LINE_SIZE(p) (PST_PRIVATE(p)->dwarf_line_size)
519 #define DWARF_STR_BUFFER(p) (PST_PRIVATE(p)->dwarf_str_buffer)
520 #define DWARF_STR_SIZE(p) (PST_PRIVATE(p)->dwarf_str_size)
521 #define DWARF_MACINFO_BUFFER(p) (PST_PRIVATE(p)->dwarf_macinfo_buffer)
522 #define DWARF_MACINFO_SIZE(p) (PST_PRIVATE(p)->dwarf_macinfo_size)
523 #define DWARF_RANGES_BUFFER(p) (PST_PRIVATE(p)->dwarf_ranges_buffer)
524 #define DWARF_RANGES_SIZE(p) (PST_PRIVATE(p)->dwarf_ranges_size)
525 #define DWARF_LOC_BUFFER(p) (PST_PRIVATE(p)->dwarf_loc_buffer)
526 #define DWARF_LOC_SIZE(p) (PST_PRIVATE(p)->dwarf_loc_size)
528 /* Maintain an array of referenced fundamental types for the current
529 compilation unit being read. For DWARF version 1, we have to construct
530 the fundamental types on the fly, since no information about the
531 fundamental types is supplied. Each such fundamental type is created by
532 calling a language dependent routine to create the type, and then a
533 pointer to that type is then placed in the array at the index specified
534 by it's FT_<TYPENAME> value. The array has a fixed size set by the
535 FT_NUM_MEMBERS compile time constant, which is the number of predefined
536 fundamental types gdb knows how to construct. */
537 static struct type *ftypes[FT_NUM_MEMBERS]; /* Fundamental types */
539 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
540 but this would require a corresponding change in unpack_field_as_long
542 static int bits_per_byte = 8;
544 /* The routines that read and process dies for a C struct or C++ class
545 pass lists of data member fields and lists of member function fields
546 in an instance of a field_info structure, as defined below. */
549 /* List of data member and baseclasses fields. */
552 struct nextfield *next;
559 /* Number of fields. */
562 /* Number of baseclasses. */
565 /* Set if the accesibility of one of the fields is not public. */
566 int non_public_fields;
568 /* Member function fields array, entries are allocated in the order they
569 are encountered in the object file. */
572 struct nextfnfield *next;
573 struct fn_field fnfield;
577 /* Member function fieldlist array, contains name of possibly overloaded
578 member function, number of overloaded member functions and a pointer
579 to the head of the member function field chain. */
584 struct nextfnfield *head;
588 /* Number of entries in the fnfieldlists array. */
592 /* Various complaints about symbol reading that don't abort the process */
595 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
597 complaint (&symfile_complaints,
598 "statement list doesn't fit in .debug_line section");
602 dwarf2_complex_location_expr_complaint (void)
604 complaint (&symfile_complaints, "location expression too complex");
608 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
611 complaint (&symfile_complaints,
612 "const value length mismatch for '%s', got %d, expected %d", arg1,
617 dwarf2_macros_too_long_complaint (void)
619 complaint (&symfile_complaints,
620 "macro info runs off end of `.debug_macinfo' section");
624 dwarf2_macro_malformed_definition_complaint (const char *arg1)
626 complaint (&symfile_complaints,
627 "macro debug info contains a malformed macro definition:\n`%s'",
632 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
634 complaint (&symfile_complaints,
635 "invalid attribute class or form for '%s' in '%s'", arg1, arg2);
638 /* local function prototypes */
640 static void dwarf2_locate_sections (bfd *, asection *, void *);
643 static void dwarf2_build_psymtabs_easy (struct objfile *, int);
646 static void dwarf2_build_psymtabs_hard (struct objfile *, int);
648 static char *scan_partial_symbols (char *, CORE_ADDR *, CORE_ADDR *,
650 const char *namespace);
652 static void add_partial_symbol (struct partial_die_info *, struct dwarf2_cu *,
653 const char *namespace);
655 static int pdi_needs_namespace (enum dwarf_tag tag, const char *namespace);
657 static char *add_partial_namespace (struct partial_die_info *pdi,
659 CORE_ADDR *lowpc, CORE_ADDR *highpc,
660 struct dwarf2_cu *cu,
661 const char *namespace);
663 static char *add_partial_structure (struct partial_die_info *struct_pdi,
665 struct dwarf2_cu *cu,
666 const char *namespace);
668 static char *add_partial_enumeration (struct partial_die_info *enum_pdi,
670 struct dwarf2_cu *cu,
671 const char *namespace);
673 static char *locate_pdi_sibling (struct partial_die_info *orig_pdi,
676 struct dwarf2_cu *cu);
678 static void dwarf2_psymtab_to_symtab (struct partial_symtab *);
680 static void psymtab_to_symtab_1 (struct partial_symtab *);
682 char *dwarf2_read_section (struct objfile *, asection *);
684 static void dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu);
686 static void dwarf2_empty_abbrev_table (void *);
688 static struct abbrev_info *dwarf2_lookup_abbrev (unsigned int,
691 static char *read_partial_die (struct partial_die_info *,
692 bfd *, char *, struct dwarf2_cu *);
694 static char *read_full_die (struct die_info **, bfd *, char *,
695 struct dwarf2_cu *, int *);
697 static char *read_attribute (struct attribute *, struct attr_abbrev *,
698 bfd *, char *, struct dwarf2_cu *);
700 static char *read_attribute_value (struct attribute *, unsigned,
701 bfd *, char *, struct dwarf2_cu *);
703 static unsigned int read_1_byte (bfd *, char *);
705 static int read_1_signed_byte (bfd *, char *);
707 static unsigned int read_2_bytes (bfd *, char *);
709 static unsigned int read_4_bytes (bfd *, char *);
711 static unsigned long read_8_bytes (bfd *, char *);
713 static CORE_ADDR read_address (bfd *, char *ptr, struct dwarf2_cu *,
716 static LONGEST read_initial_length (bfd *, char *,
717 struct comp_unit_head *, int *bytes_read);
719 static LONGEST read_offset (bfd *, char *, const struct comp_unit_head *,
722 static char *read_n_bytes (bfd *, char *, unsigned int);
724 static char *read_string (bfd *, char *, unsigned int *);
726 static char *read_indirect_string (bfd *, char *, const struct comp_unit_head *,
729 static unsigned long read_unsigned_leb128 (bfd *, char *, unsigned int *);
731 static long read_signed_leb128 (bfd *, char *, unsigned int *);
733 static void set_cu_language (unsigned int);
735 static struct attribute *dwarf_attr (struct die_info *, unsigned int);
737 static int die_is_declaration (struct die_info *);
739 static struct die_info *die_specification (struct die_info *die);
741 static void free_line_header (struct line_header *lh);
743 static struct line_header *(dwarf_decode_line_header
744 (unsigned int offset,
745 bfd *abfd, struct dwarf2_cu *cu));
747 static void dwarf_decode_lines (struct line_header *, char *, bfd *,
750 static void dwarf2_start_subfile (char *, char *);
752 static struct symbol *new_symbol (struct die_info *, struct type *,
755 static void dwarf2_const_value (struct attribute *, struct symbol *,
758 static void dwarf2_const_value_data (struct attribute *attr,
762 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
764 static struct type *die_containing_type (struct die_info *,
768 static struct type *type_at_offset (unsigned int, struct objfile *);
771 static struct type *tag_type_to_type (struct die_info *, struct dwarf2_cu *);
773 static void read_type_die (struct die_info *, struct dwarf2_cu *);
775 static char *determine_prefix (struct die_info *die);
777 static char *typename_concat (const char *prefix, const char *suffix);
779 static char *class_name (struct die_info *die);
781 static void read_typedef (struct die_info *, struct dwarf2_cu *);
783 static void read_base_type (struct die_info *, struct dwarf2_cu *);
785 static void read_subrange_type (struct die_info *die, struct dwarf2_cu *cu);
787 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
789 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
791 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
793 static int dwarf2_get_pc_bounds (struct die_info *,
794 CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *);
796 static void dwarf2_add_field (struct field_info *, struct die_info *,
799 static void dwarf2_attach_fields_to_type (struct field_info *,
800 struct type *, struct dwarf2_cu *);
802 static void dwarf2_add_member_fn (struct field_info *,
803 struct die_info *, struct type *,
806 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
807 struct type *, struct dwarf2_cu *);
809 static void read_structure_scope (struct die_info *, struct dwarf2_cu *);
811 static void read_common_block (struct die_info *, struct dwarf2_cu *);
813 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
815 static const char *namespace_name (struct die_info *die,
818 static void read_enumeration (struct die_info *, struct dwarf2_cu *);
820 static struct type *dwarf_base_type (int, int, struct dwarf2_cu *);
822 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
824 static void read_array_type (struct die_info *, struct dwarf2_cu *);
826 static void read_tag_pointer_type (struct die_info *, struct dwarf2_cu *);
828 static void read_tag_ptr_to_member_type (struct die_info *,
831 static void read_tag_reference_type (struct die_info *, struct dwarf2_cu *);
833 static void read_tag_const_type (struct die_info *, struct dwarf2_cu *);
835 static void read_tag_volatile_type (struct die_info *, struct dwarf2_cu *);
837 static void read_tag_string_type (struct die_info *, struct dwarf2_cu *);
839 static void read_subroutine_type (struct die_info *, struct dwarf2_cu *);
841 static struct die_info *read_comp_unit (char *, bfd *, struct dwarf2_cu *);
843 static struct die_info *read_die_and_children (char *info_ptr, bfd *abfd,
846 struct die_info *parent);
848 static struct die_info *read_die_and_siblings (char *info_ptr, bfd *abfd,
851 struct die_info *parent);
853 static void free_die_list (struct die_info *);
855 static struct cleanup *make_cleanup_free_die_list (struct die_info *);
857 static void process_die (struct die_info *, struct dwarf2_cu *);
859 static char *dwarf2_linkage_name (struct die_info *);
861 static char *dwarf2_name (struct die_info *die);
863 static struct die_info *dwarf2_extension (struct die_info *die);
865 static char *dwarf_tag_name (unsigned int);
867 static char *dwarf_attr_name (unsigned int);
869 static char *dwarf_form_name (unsigned int);
871 static char *dwarf_stack_op_name (unsigned int);
873 static char *dwarf_bool_name (unsigned int);
875 static char *dwarf_type_encoding_name (unsigned int);
878 static char *dwarf_cfi_name (unsigned int);
880 struct die_info *copy_die (struct die_info *);
883 static struct die_info *sibling_die (struct die_info *);
885 static void dump_die (struct die_info *);
887 static void dump_die_list (struct die_info *);
889 static void store_in_ref_table (unsigned int, struct die_info *);
891 static void dwarf2_empty_hash_tables (void);
893 static unsigned int dwarf2_get_ref_die_offset (struct attribute *);
895 static int dwarf2_get_attr_constant_value (struct attribute *, int);
897 static struct die_info *follow_die_ref (unsigned int);
899 static struct type *dwarf2_fundamental_type (struct objfile *, int);
901 /* memory allocation interface */
903 static void dwarf2_free_tmp_obstack (void *);
905 static struct dwarf_block *dwarf_alloc_block (void);
907 static struct abbrev_info *dwarf_alloc_abbrev (void);
909 static struct die_info *dwarf_alloc_die (void);
911 static void initialize_cu_func_list (void);
913 static void add_to_cu_func_list (const char *, CORE_ADDR, CORE_ADDR);
915 static void dwarf_decode_macros (struct line_header *, unsigned int,
916 char *, bfd *, struct dwarf2_cu *);
918 static int attr_form_is_block (struct attribute *);
921 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
922 struct dwarf2_cu *cu);
924 /* Try to locate the sections we need for DWARF 2 debugging
925 information and return true if we have enough to do something. */
928 dwarf2_has_info (bfd *abfd)
930 dwarf_info_section = 0;
931 dwarf_abbrev_section = 0;
932 dwarf_line_section = 0;
933 dwarf_str_section = 0;
934 dwarf_macinfo_section = 0;
935 dwarf_frame_section = 0;
936 dwarf_eh_frame_section = 0;
937 dwarf_ranges_section = 0;
938 dwarf_loc_section = 0;
940 bfd_map_over_sections (abfd, dwarf2_locate_sections, NULL);
941 return (dwarf_info_section != NULL && dwarf_abbrev_section != NULL);
944 /* This function is mapped across the sections and remembers the
945 offset and size of each of the debugging sections we are interested
949 dwarf2_locate_sections (bfd *ignore_abfd, asection *sectp, void *ignore_ptr)
951 if (strcmp (sectp->name, INFO_SECTION) == 0)
953 dwarf_info_size = bfd_get_section_size_before_reloc (sectp);
954 dwarf_info_section = sectp;
956 else if (strcmp (sectp->name, ABBREV_SECTION) == 0)
958 dwarf_abbrev_size = bfd_get_section_size_before_reloc (sectp);
959 dwarf_abbrev_section = sectp;
961 else if (strcmp (sectp->name, LINE_SECTION) == 0)
963 dwarf_line_size = bfd_get_section_size_before_reloc (sectp);
964 dwarf_line_section = sectp;
966 else if (strcmp (sectp->name, PUBNAMES_SECTION) == 0)
968 dwarf_pubnames_size = bfd_get_section_size_before_reloc (sectp);
969 dwarf_pubnames_section = sectp;
971 else if (strcmp (sectp->name, ARANGES_SECTION) == 0)
973 dwarf_aranges_size = bfd_get_section_size_before_reloc (sectp);
974 dwarf_aranges_section = sectp;
976 else if (strcmp (sectp->name, LOC_SECTION) == 0)
978 dwarf_loc_size = bfd_get_section_size_before_reloc (sectp);
979 dwarf_loc_section = sectp;
981 else if (strcmp (sectp->name, MACINFO_SECTION) == 0)
983 dwarf_macinfo_size = bfd_get_section_size_before_reloc (sectp);
984 dwarf_macinfo_section = sectp;
986 else if (strcmp (sectp->name, STR_SECTION) == 0)
988 dwarf_str_size = bfd_get_section_size_before_reloc (sectp);
989 dwarf_str_section = sectp;
991 else if (strcmp (sectp->name, FRAME_SECTION) == 0)
993 dwarf_frame_size = bfd_get_section_size_before_reloc (sectp);
994 dwarf_frame_section = sectp;
996 else if (strcmp (sectp->name, EH_FRAME_SECTION) == 0)
998 flagword aflag = bfd_get_section_flags (ignore_abfd, sectp);
999 if (aflag & SEC_HAS_CONTENTS)
1001 dwarf_eh_frame_size = bfd_get_section_size_before_reloc (sectp);
1002 dwarf_eh_frame_section = sectp;
1005 else if (strcmp (sectp->name, RANGES_SECTION) == 0)
1007 dwarf_ranges_size = bfd_get_section_size_before_reloc (sectp);
1008 dwarf_ranges_section = sectp;
1012 /* Build a partial symbol table. */
1015 dwarf2_build_psymtabs (struct objfile *objfile, int mainline)
1018 /* We definitely need the .debug_info and .debug_abbrev sections */
1020 dwarf_info_buffer = dwarf2_read_section (objfile, dwarf_info_section);
1021 dwarf_abbrev_buffer = dwarf2_read_section (objfile, dwarf_abbrev_section);
1023 if (dwarf_line_section)
1024 dwarf_line_buffer = dwarf2_read_section (objfile, dwarf_line_section);
1026 dwarf_line_buffer = NULL;
1028 if (dwarf_str_section)
1029 dwarf_str_buffer = dwarf2_read_section (objfile, dwarf_str_section);
1031 dwarf_str_buffer = NULL;
1033 if (dwarf_macinfo_section)
1034 dwarf_macinfo_buffer = dwarf2_read_section (objfile,
1035 dwarf_macinfo_section);
1037 dwarf_macinfo_buffer = NULL;
1039 if (dwarf_ranges_section)
1040 dwarf_ranges_buffer = dwarf2_read_section (objfile, dwarf_ranges_section);
1042 dwarf_ranges_buffer = NULL;
1044 if (dwarf_loc_section)
1045 dwarf_loc_buffer = dwarf2_read_section (objfile, dwarf_loc_section);
1047 dwarf_loc_buffer = NULL;
1050 || (objfile->global_psymbols.size == 0
1051 && objfile->static_psymbols.size == 0))
1053 init_psymbol_list (objfile, 1024);
1057 if (dwarf_aranges_offset && dwarf_pubnames_offset)
1059 /* Things are significantly easier if we have .debug_aranges and
1060 .debug_pubnames sections */
1062 dwarf2_build_psymtabs_easy (objfile, mainline);
1066 /* only test this case for now */
1068 /* In this case we have to work a bit harder */
1069 dwarf2_build_psymtabs_hard (objfile, mainline);
1074 /* Build the partial symbol table from the information in the
1075 .debug_pubnames and .debug_aranges sections. */
1078 dwarf2_build_psymtabs_easy (struct objfile *objfile, int mainline)
1080 bfd *abfd = objfile->obfd;
1081 char *aranges_buffer, *pubnames_buffer;
1082 char *aranges_ptr, *pubnames_ptr;
1083 unsigned int entry_length, version, info_offset, info_size;
1085 pubnames_buffer = dwarf2_read_section (objfile,
1086 dwarf_pubnames_section);
1087 pubnames_ptr = pubnames_buffer;
1088 while ((pubnames_ptr - pubnames_buffer) < dwarf_pubnames_size)
1090 struct comp_unit_head cu_header;
1093 entry_length = read_initial_length (abfd, pubnames_ptr, &cu_header,
1095 pubnames_ptr += bytes_read;
1096 version = read_1_byte (abfd, pubnames_ptr);
1098 info_offset = read_4_bytes (abfd, pubnames_ptr);
1100 info_size = read_4_bytes (abfd, pubnames_ptr);
1104 aranges_buffer = dwarf2_read_section (objfile,
1105 dwarf_aranges_section);
1110 /* Read in the comp unit header information from the debug_info at
1114 read_comp_unit_head (struct comp_unit_head *cu_header,
1115 char *info_ptr, bfd *abfd)
1119 cu_header->length = read_initial_length (abfd, info_ptr, cu_header,
1121 info_ptr += bytes_read;
1122 cu_header->version = read_2_bytes (abfd, info_ptr);
1124 cu_header->abbrev_offset = read_offset (abfd, info_ptr, cu_header,
1126 info_ptr += bytes_read;
1127 cu_header->addr_size = read_1_byte (abfd, info_ptr);
1129 signed_addr = bfd_get_sign_extend_vma (abfd);
1130 if (signed_addr < 0)
1131 internal_error (__FILE__, __LINE__,
1132 "read_comp_unit_head: dwarf from non elf file");
1133 cu_header->signed_addr_p = signed_addr;
1137 /* Build the partial symbol table by doing a quick pass through the
1138 .debug_info and .debug_abbrev sections. */
1141 dwarf2_build_psymtabs_hard (struct objfile *objfile, int mainline)
1143 /* Instead of reading this into a big buffer, we should probably use
1144 mmap() on architectures that support it. (FIXME) */
1145 bfd *abfd = objfile->obfd;
1146 char *info_ptr, *abbrev_ptr;
1147 char *beg_of_comp_unit;
1148 struct partial_die_info comp_unit_die;
1149 struct partial_symtab *pst;
1150 struct cleanup *back_to;
1151 CORE_ADDR lowpc, highpc;
1153 info_ptr = dwarf_info_buffer;
1154 abbrev_ptr = dwarf_abbrev_buffer;
1156 /* We use dwarf2_tmp_obstack for objects that don't need to survive
1157 the partial symbol scan, like attribute values.
1159 We could reduce our peak memory consumption during partial symbol
1160 table construction by freeing stuff from this obstack more often
1161 --- say, after processing each compilation unit, or each die ---
1162 but it turns out that this saves almost nothing. For an
1163 executable with 11Mb of Dwarf 2 data, I found about 64k allocated
1164 on dwarf2_tmp_obstack. Some investigation showed:
1166 1) 69% of the attributes used forms DW_FORM_addr, DW_FORM_data*,
1167 DW_FORM_flag, DW_FORM_[su]data, and DW_FORM_ref*. These are
1168 all fixed-length values not requiring dynamic allocation.
1170 2) 30% of the attributes used the form DW_FORM_string. For
1171 DW_FORM_string, read_attribute simply hands back a pointer to
1172 the null-terminated string in dwarf_info_buffer, so no dynamic
1173 allocation is needed there either.
1175 3) The remaining 1% of the attributes all used DW_FORM_block1.
1176 75% of those were DW_AT_frame_base location lists for
1177 functions; the rest were DW_AT_location attributes, probably
1178 for the global variables.
1180 Anyway, what this all means is that the memory the dwarf2
1181 reader uses as temporary space reading partial symbols is about
1182 0.5% as much as we use for dwarf_*_buffer. That's noise. */
1184 obstack_init (&dwarf2_tmp_obstack);
1185 back_to = make_cleanup (dwarf2_free_tmp_obstack, NULL);
1187 /* Since the objects we're extracting from dwarf_info_buffer vary in
1188 length, only the individual functions to extract them (like
1189 read_comp_unit_head and read_partial_die) can really know whether
1190 the buffer is large enough to hold another complete object.
1192 At the moment, they don't actually check that. If
1193 dwarf_info_buffer holds just one extra byte after the last
1194 compilation unit's dies, then read_comp_unit_head will happily
1195 read off the end of the buffer. read_partial_die is similarly
1196 casual. Those functions should be fixed.
1198 For this loop condition, simply checking whether there's any data
1199 left at all should be sufficient. */
1200 while (info_ptr < dwarf_info_buffer + dwarf_info_size)
1202 struct dwarf2_cu cu;
1203 beg_of_comp_unit = info_ptr;
1205 cu.objfile = objfile;
1206 info_ptr = read_comp_unit_head (&cu.header, info_ptr, abfd);
1208 if (cu.header.version != 2)
1210 error ("Dwarf Error: wrong version in compilation unit header (is %d, should be %d) [in module %s]", cu.header.version, 2, bfd_get_filename (abfd));
1213 if (cu.header.abbrev_offset >= dwarf_abbrev_size)
1215 error ("Dwarf Error: bad offset (0x%lx) in compilation unit header (offset 0x%lx + 6) [in module %s]",
1216 (long) cu.header.abbrev_offset,
1217 (long) (beg_of_comp_unit - dwarf_info_buffer),
1218 bfd_get_filename (abfd));
1221 if (beg_of_comp_unit + cu.header.length + cu.header.initial_length_size
1222 > dwarf_info_buffer + dwarf_info_size)
1224 error ("Dwarf Error: bad length (0x%lx) in compilation unit header (offset 0x%lx + 0) [in module %s]",
1225 (long) cu.header.length,
1226 (long) (beg_of_comp_unit - dwarf_info_buffer),
1227 bfd_get_filename (abfd));
1230 /* Complete the cu_header */
1231 cu.header.offset = beg_of_comp_unit - dwarf_info_buffer;
1232 cu.header.first_die_ptr = info_ptr;
1233 cu.header.cu_head_ptr = beg_of_comp_unit;
1235 /* Read the abbrevs for this compilation unit into a table */
1236 dwarf2_read_abbrevs (abfd, &cu);
1237 make_cleanup (dwarf2_empty_abbrev_table, cu.header.dwarf2_abbrevs);
1239 /* Read the compilation unit die */
1240 info_ptr = read_partial_die (&comp_unit_die, abfd, info_ptr,
1243 /* Set the language we're debugging */
1244 set_cu_language (comp_unit_die.language);
1246 /* Allocate a new partial symbol table structure */
1247 pst = start_psymtab_common (objfile, objfile->section_offsets,
1248 comp_unit_die.name ? comp_unit_die.name : "",
1249 comp_unit_die.lowpc,
1250 objfile->global_psymbols.next,
1251 objfile->static_psymbols.next);
1253 pst->read_symtab_private = (char *)
1254 obstack_alloc (&objfile->psymbol_obstack, sizeof (struct dwarf2_pinfo));
1255 cu_header_offset = beg_of_comp_unit - dwarf_info_buffer;
1256 DWARF_INFO_BUFFER (pst) = dwarf_info_buffer;
1257 DWARF_INFO_OFFSET (pst) = beg_of_comp_unit - dwarf_info_buffer;
1258 DWARF_ABBREV_BUFFER (pst) = dwarf_abbrev_buffer;
1259 DWARF_ABBREV_SIZE (pst) = dwarf_abbrev_size;
1260 DWARF_LINE_BUFFER (pst) = dwarf_line_buffer;
1261 DWARF_LINE_SIZE (pst) = dwarf_line_size;
1262 DWARF_STR_BUFFER (pst) = dwarf_str_buffer;
1263 DWARF_STR_SIZE (pst) = dwarf_str_size;
1264 DWARF_MACINFO_BUFFER (pst) = dwarf_macinfo_buffer;
1265 DWARF_MACINFO_SIZE (pst) = dwarf_macinfo_size;
1266 DWARF_RANGES_BUFFER (pst) = dwarf_ranges_buffer;
1267 DWARF_RANGES_SIZE (pst) = dwarf_ranges_size;
1268 DWARF_LOC_BUFFER (pst) = dwarf_loc_buffer;
1269 DWARF_LOC_SIZE (pst) = dwarf_loc_size;
1270 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1272 /* Store the function that reads in the rest of the symbol table */
1273 pst->read_symtab = dwarf2_psymtab_to_symtab;
1275 /* Check if comp unit has_children.
1276 If so, read the rest of the partial symbols from this comp unit.
1277 If not, there's no more debug_info for this comp unit. */
1278 if (comp_unit_die.has_children)
1280 lowpc = ((CORE_ADDR) -1);
1281 highpc = ((CORE_ADDR) 0);
1283 info_ptr = scan_partial_symbols (info_ptr, &lowpc, &highpc,
1286 /* If we didn't find a lowpc, set it to highpc to avoid
1287 complaints from `maint check'. */
1288 if (lowpc == ((CORE_ADDR) -1))
1291 /* If the compilation unit didn't have an explicit address range,
1292 then use the information extracted from its child dies. */
1293 if (! comp_unit_die.has_pc_info)
1295 comp_unit_die.lowpc = lowpc;
1296 comp_unit_die.highpc = highpc;
1299 pst->textlow = comp_unit_die.lowpc + baseaddr;
1300 pst->texthigh = comp_unit_die.highpc + baseaddr;
1302 pst->n_global_syms = objfile->global_psymbols.next -
1303 (objfile->global_psymbols.list + pst->globals_offset);
1304 pst->n_static_syms = objfile->static_psymbols.next -
1305 (objfile->static_psymbols.list + pst->statics_offset);
1306 sort_pst_symbols (pst);
1308 /* If there is already a psymtab or symtab for a file of this
1309 name, remove it. (If there is a symtab, more drastic things
1310 also happen.) This happens in VxWorks. */
1311 free_named_symtabs (pst->filename);
1313 info_ptr = beg_of_comp_unit + cu.header.length
1314 + cu.header.initial_length_size;
1316 do_cleanups (back_to);
1319 /* Read in all interesting dies to the end of the compilation unit or
1320 to the end of the current namespace. NAMESPACE is NULL if we
1321 haven't yet encountered any DW_TAG_namespace entries; otherwise,
1322 it's the name of the current namespace. In particular, it's the
1323 empty string if we're currently in the global namespace but have
1324 previously encountered a DW_TAG_namespace. */
1327 scan_partial_symbols (char *info_ptr, CORE_ADDR *lowpc,
1328 CORE_ADDR *highpc, struct dwarf2_cu *cu,
1329 const char *namespace)
1331 struct objfile *objfile = cu->objfile;
1332 bfd *abfd = objfile->obfd;
1333 struct partial_die_info pdi;
1335 /* Now, march along the PDI's, descending into ones which have
1336 interesting children but skipping the children of the other ones,
1337 until we reach the end of the compilation unit. */
1341 /* This flag tells whether or not info_ptr has gotten updated
1343 int info_ptr_updated = 0;
1345 info_ptr = read_partial_die (&pdi, abfd, info_ptr, cu);
1347 /* Anonymous namespaces have no name but have interesting
1348 children, so we need to look at them. Ditto for anonymous
1351 if (pdi.name != NULL || pdi.tag == DW_TAG_namespace
1352 || pdi.tag == DW_TAG_enumeration_type)
1356 case DW_TAG_subprogram:
1357 if (pdi.has_pc_info)
1359 if (pdi.lowpc < *lowpc)
1363 if (pdi.highpc > *highpc)
1365 *highpc = pdi.highpc;
1367 if (!pdi.is_declaration)
1369 add_partial_symbol (&pdi, cu, namespace);
1373 case DW_TAG_variable:
1374 case DW_TAG_typedef:
1375 case DW_TAG_union_type:
1376 if (!pdi.is_declaration)
1378 add_partial_symbol (&pdi, cu, namespace);
1381 case DW_TAG_class_type:
1382 case DW_TAG_structure_type:
1383 if (!pdi.is_declaration)
1385 info_ptr = add_partial_structure (&pdi, info_ptr, cu,
1387 info_ptr_updated = 1;
1390 case DW_TAG_enumeration_type:
1391 if (!pdi.is_declaration)
1393 info_ptr = add_partial_enumeration (&pdi, info_ptr, cu,
1395 info_ptr_updated = 1;
1398 case DW_TAG_base_type:
1399 case DW_TAG_subrange_type:
1400 /* File scope base type definitions are added to the partial
1402 add_partial_symbol (&pdi, cu, namespace);
1404 case DW_TAG_namespace:
1405 /* We've hit a DW_TAG_namespace entry, so we know this
1406 file has been compiled using a compiler that
1407 generates them; update NAMESPACE to reflect that. */
1408 if (namespace == NULL)
1410 info_ptr = add_partial_namespace (&pdi, info_ptr, lowpc, highpc,
1412 info_ptr_updated = 1;
1422 /* If the die has a sibling, skip to the sibling, unless another
1423 function has already updated info_ptr for us. */
1425 /* NOTE: carlton/2003-06-16: This is a bit hackish, but whether
1426 or not we want to update this depends on enough stuff (not
1427 only pdi.tag but also whether or not pdi.name is NULL) that
1428 this seems like the easiest way to handle the issue. */
1430 if (!info_ptr_updated)
1431 info_ptr = locate_pdi_sibling (&pdi, info_ptr, abfd, cu);
1438 add_partial_symbol (struct partial_die_info *pdi,
1439 struct dwarf2_cu *cu, const char *namespace)
1441 struct objfile *objfile = cu->objfile;
1443 char *actual_name = pdi->name;
1444 const struct partial_symbol *psym = NULL;
1446 /* If we're not in the global namespace and if the namespace name
1447 isn't encoded in a mangled actual_name, add it. */
1449 if (pdi_needs_namespace (pdi->tag, namespace))
1451 actual_name = alloca (strlen (pdi->name) + 2 + strlen (namespace) + 1);
1452 strcpy (actual_name, namespace);
1453 strcat (actual_name, "::");
1454 strcat (actual_name, pdi->name);
1459 case DW_TAG_subprogram:
1460 if (pdi->is_external)
1462 /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
1463 mst_text, objfile); */
1464 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
1465 VAR_DOMAIN, LOC_BLOCK,
1466 &objfile->global_psymbols,
1467 0, pdi->lowpc + baseaddr,
1468 cu_language, objfile);
1472 /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
1473 mst_file_text, objfile); */
1474 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
1475 VAR_DOMAIN, LOC_BLOCK,
1476 &objfile->static_psymbols,
1477 0, pdi->lowpc + baseaddr,
1478 cu_language, objfile);
1481 case DW_TAG_variable:
1482 if (pdi->is_external)
1485 Don't enter into the minimal symbol tables as there is
1486 a minimal symbol table entry from the ELF symbols already.
1487 Enter into partial symbol table if it has a location
1488 descriptor or a type.
1489 If the location descriptor is missing, new_symbol will create
1490 a LOC_UNRESOLVED symbol, the address of the variable will then
1491 be determined from the minimal symbol table whenever the variable
1493 The address for the partial symbol table entry is not
1494 used by GDB, but it comes in handy for debugging partial symbol
1498 addr = decode_locdesc (pdi->locdesc, cu);
1499 if (pdi->locdesc || pdi->has_type)
1500 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
1501 VAR_DOMAIN, LOC_STATIC,
1502 &objfile->global_psymbols,
1504 cu_language, objfile);
1508 /* Static Variable. Skip symbols without location descriptors. */
1509 if (pdi->locdesc == NULL)
1511 addr = decode_locdesc (pdi->locdesc, cu);
1512 /*prim_record_minimal_symbol (actual_name, addr + baseaddr,
1513 mst_file_data, objfile); */
1514 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
1515 VAR_DOMAIN, LOC_STATIC,
1516 &objfile->static_psymbols,
1518 cu_language, objfile);
1521 case DW_TAG_typedef:
1522 case DW_TAG_base_type:
1523 case DW_TAG_subrange_type:
1524 add_psymbol_to_list (actual_name, strlen (actual_name),
1525 VAR_DOMAIN, LOC_TYPEDEF,
1526 &objfile->static_psymbols,
1527 0, (CORE_ADDR) 0, cu_language, objfile);
1529 case DW_TAG_class_type:
1530 case DW_TAG_structure_type:
1531 case DW_TAG_union_type:
1532 case DW_TAG_enumeration_type:
1533 /* Skip aggregate types without children, these are external
1535 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
1536 static vs. global. */
1537 if (pdi->has_children == 0)
1539 add_psymbol_to_list (actual_name, strlen (actual_name),
1540 STRUCT_DOMAIN, LOC_TYPEDEF,
1541 cu_language == language_cplus
1542 ? &objfile->global_psymbols
1543 : &objfile->static_psymbols,
1544 0, (CORE_ADDR) 0, cu_language, objfile);
1546 if (cu_language == language_cplus)
1548 /* For C++, these implicitly act as typedefs as well. */
1549 add_psymbol_to_list (actual_name, strlen (actual_name),
1550 VAR_DOMAIN, LOC_TYPEDEF,
1551 &objfile->global_psymbols,
1552 0, (CORE_ADDR) 0, cu_language, objfile);
1555 case DW_TAG_enumerator:
1556 add_psymbol_to_list (actual_name, strlen (actual_name),
1557 VAR_DOMAIN, LOC_CONST,
1558 cu_language == language_cplus
1559 ? &objfile->static_psymbols
1560 : &objfile->global_psymbols,
1561 0, (CORE_ADDR) 0, cu_language, objfile);
1567 /* Check to see if we should scan the name for possible namespace
1568 info. Only do this if this is C++, if we don't have namespace
1569 debugging info in the file, if the psym is of an appropriate type
1570 (otherwise we'll have psym == NULL), and if we actually had a
1571 mangled name to begin with. */
1573 if (cu_language == language_cplus
1574 && namespace == NULL
1576 && SYMBOL_CPLUS_DEMANGLED_NAME (psym) != NULL)
1577 cp_check_possible_namespace_symbols (SYMBOL_CPLUS_DEMANGLED_NAME (psym),
1581 /* Determine whether a die of type TAG living in the C++ namespace
1582 NAMESPACE needs to have the name of the namespace prepended to the
1583 name listed in the die. */
1586 pdi_needs_namespace (enum dwarf_tag tag, const char *namespace)
1588 if (namespace == NULL || namespace[0] == '\0')
1593 case DW_TAG_typedef:
1594 case DW_TAG_class_type:
1595 case DW_TAG_structure_type:
1596 case DW_TAG_union_type:
1597 case DW_TAG_enumeration_type:
1598 case DW_TAG_enumerator:
1605 /* Read a partial die corresponding to a namespace; also, add a symbol
1606 corresponding to that namespace to the symbol table. NAMESPACE is
1607 the name of the enclosing namespace. */
1610 add_partial_namespace (struct partial_die_info *pdi, char *info_ptr,
1611 CORE_ADDR *lowpc, CORE_ADDR *highpc,
1612 struct dwarf2_cu *cu, const char *namespace)
1614 struct objfile *objfile = cu->objfile;
1615 const char *new_name = pdi->name;
1618 /* Calculate the full name of the namespace that we just entered. */
1620 if (new_name == NULL)
1621 new_name = "(anonymous namespace)";
1622 full_name = alloca (strlen (namespace) + 2 + strlen (new_name) + 1);
1623 strcpy (full_name, namespace);
1624 if (*namespace != '\0')
1625 strcat (full_name, "::");
1626 strcat (full_name, new_name);
1628 /* FIXME: carlton/2003-10-07: We can't just replace this by a call
1629 to add_partial_symbol, because we don't have a way to pass in the
1630 full name to that function; that might be a flaw in
1631 add_partial_symbol's interface. */
1633 add_psymbol_to_list (full_name, strlen (full_name),
1634 VAR_DOMAIN, LOC_TYPEDEF,
1635 &objfile->global_psymbols,
1636 0, 0, cu_language, objfile);
1638 /* Now scan partial symbols in that namespace. */
1640 if (pdi->has_children)
1641 info_ptr = scan_partial_symbols (info_ptr, lowpc, highpc, cu, full_name);
1646 /* Read a partial die corresponding to a class or structure. */
1649 add_partial_structure (struct partial_die_info *struct_pdi, char *info_ptr,
1650 struct dwarf2_cu *cu,
1651 const char *namespace)
1653 bfd *abfd = cu->objfile->obfd;
1654 char *actual_class_name = NULL;
1656 if (cu_language == language_cplus
1657 && namespace == NULL
1658 && struct_pdi->name != NULL
1659 && struct_pdi->has_children)
1661 /* We don't have namespace debugging information, so see if we
1662 can figure out if this structure lives in a namespace. Look
1663 for a member function; its demangled name will contain
1664 namespace info, if there is any. */
1666 /* NOTE: carlton/2003-10-07: Getting the info this way changes
1667 what template types look like, because the demangler
1668 frequently doesn't give the same name as the debug info. We
1669 could fix this by only using the demangled name to get the
1670 prefix (but see comment in read_structure_scope). */
1672 char *next_child = info_ptr;
1676 struct partial_die_info child_pdi;
1678 next_child = read_partial_die (&child_pdi, abfd, next_child,
1682 if (child_pdi.tag == DW_TAG_subprogram)
1684 actual_class_name = class_name_from_physname (child_pdi.name);
1685 if (actual_class_name != NULL)
1686 struct_pdi->name = actual_class_name;
1691 next_child = locate_pdi_sibling (&child_pdi, next_child,
1697 add_partial_symbol (struct_pdi, cu, namespace);
1698 xfree(actual_class_name);
1700 return locate_pdi_sibling (struct_pdi, info_ptr, abfd, cu);
1703 /* Read a partial die corresponding to an enumeration type. */
1706 add_partial_enumeration (struct partial_die_info *enum_pdi, char *info_ptr,
1707 struct dwarf2_cu *cu, const char *namespace)
1709 struct objfile *objfile = cu->objfile;
1710 bfd *abfd = objfile->obfd;
1711 struct partial_die_info pdi;
1713 if (enum_pdi->name != NULL)
1714 add_partial_symbol (enum_pdi, cu, namespace);
1718 info_ptr = read_partial_die (&pdi, abfd, info_ptr, cu);
1721 if (pdi.tag != DW_TAG_enumerator || pdi.name == NULL)
1722 complaint (&symfile_complaints, "malformed enumerator DIE ignored");
1724 add_partial_symbol (&pdi, cu, namespace);
1730 /* Locate ORIG_PDI's sibling; INFO_PTR should point to the next DIE
1734 locate_pdi_sibling (struct partial_die_info *orig_pdi, char *info_ptr,
1735 bfd *abfd, struct dwarf2_cu *cu)
1737 /* Do we know the sibling already? */
1739 if (orig_pdi->sibling)
1740 return orig_pdi->sibling;
1742 /* Are there any children to deal with? */
1744 if (!orig_pdi->has_children)
1747 /* Okay, we don't know the sibling, but we have children that we
1748 want to skip. So read children until we run into one without a
1749 tag; return whatever follows it. */
1753 struct partial_die_info pdi;
1755 info_ptr = read_partial_die (&pdi, abfd, info_ptr, cu);
1760 info_ptr = locate_pdi_sibling (&pdi, info_ptr, abfd, cu);
1764 /* Expand this partial symbol table into a full symbol table. */
1767 dwarf2_psymtab_to_symtab (struct partial_symtab *pst)
1769 /* FIXME: This is barely more than a stub. */
1774 warning ("bug: psymtab for %s is already read in.", pst->filename);
1780 printf_filtered ("Reading in symbols for %s...", pst->filename);
1781 gdb_flush (gdb_stdout);
1784 psymtab_to_symtab_1 (pst);
1786 /* Finish up the debug error message. */
1788 printf_filtered ("done.\n");
1794 psymtab_to_symtab_1 (struct partial_symtab *pst)
1796 struct objfile *objfile = pst->objfile;
1797 bfd *abfd = objfile->obfd;
1798 struct dwarf2_cu cu;
1799 struct die_info *dies;
1800 unsigned long offset;
1801 CORE_ADDR lowpc, highpc;
1802 struct die_info *child_die;
1804 struct symtab *symtab;
1805 struct cleanup *back_to;
1806 struct attribute *attr;
1808 /* Set local variables from the partial symbol table info. */
1809 offset = DWARF_INFO_OFFSET (pst);
1810 dwarf_info_buffer = DWARF_INFO_BUFFER (pst);
1811 dwarf_abbrev_buffer = DWARF_ABBREV_BUFFER (pst);
1812 dwarf_abbrev_size = DWARF_ABBREV_SIZE (pst);
1813 dwarf_line_buffer = DWARF_LINE_BUFFER (pst);
1814 dwarf_line_size = DWARF_LINE_SIZE (pst);
1815 dwarf_str_buffer = DWARF_STR_BUFFER (pst);
1816 dwarf_str_size = DWARF_STR_SIZE (pst);
1817 dwarf_macinfo_buffer = DWARF_MACINFO_BUFFER (pst);
1818 dwarf_macinfo_size = DWARF_MACINFO_SIZE (pst);
1819 dwarf_ranges_buffer = DWARF_RANGES_BUFFER (pst);
1820 dwarf_ranges_size = DWARF_RANGES_SIZE (pst);
1821 dwarf_loc_buffer = DWARF_LOC_BUFFER (pst);
1822 dwarf_loc_size = DWARF_LOC_SIZE (pst);
1823 baseaddr = ANOFFSET (pst->section_offsets, SECT_OFF_TEXT (objfile));
1824 cu_header_offset = offset;
1825 info_ptr = dwarf_info_buffer + offset;
1827 /* We're in the global namespace. */
1828 processing_current_prefix = "";
1830 obstack_init (&dwarf2_tmp_obstack);
1831 back_to = make_cleanup (dwarf2_free_tmp_obstack, NULL);
1834 make_cleanup (really_free_pendings, NULL);
1836 cu.objfile = objfile;
1838 /* read in the comp_unit header */
1839 info_ptr = read_comp_unit_head (&cu.header, info_ptr, abfd);
1841 /* Read the abbrevs for this compilation unit */
1842 dwarf2_read_abbrevs (abfd, &cu);
1843 make_cleanup (dwarf2_empty_abbrev_table, cu.header.dwarf2_abbrevs);
1845 dies = read_comp_unit (info_ptr, abfd, &cu);
1847 make_cleanup_free_die_list (dies);
1849 /* Find the base address of the compilation unit for range lists and
1850 location lists. It will normally be specified by DW_AT_low_pc.
1851 In DWARF-3 draft 4, the base address could be overridden by
1852 DW_AT_entry_pc. It's been removed, but GCC still uses this for
1853 compilation units with discontinuous ranges. */
1855 cu.header.base_known = 0;
1856 cu.header.base_address = 0;
1858 attr = dwarf_attr (dies, DW_AT_entry_pc);
1861 cu.header.base_address = DW_ADDR (attr);
1862 cu.header.base_known = 1;
1866 attr = dwarf_attr (dies, DW_AT_low_pc);
1869 cu.header.base_address = DW_ADDR (attr);
1870 cu.header.base_known = 1;
1874 /* Do line number decoding in read_file_scope () */
1875 process_die (dies, &cu);
1877 if (!dwarf2_get_pc_bounds (dies, &lowpc, &highpc, &cu))
1879 /* Some compilers don't define a DW_AT_high_pc attribute for
1880 the compilation unit. If the DW_AT_high_pc is missing,
1881 synthesize it, by scanning the DIE's below the compilation unit. */
1883 if (dies->child != NULL)
1885 child_die = dies->child;
1886 while (child_die && child_die->tag)
1888 if (child_die->tag == DW_TAG_subprogram)
1890 CORE_ADDR low, high;
1892 if (dwarf2_get_pc_bounds (child_die, &low, &high, &cu))
1894 highpc = max (highpc, high);
1897 child_die = sibling_die (child_die);
1901 symtab = end_symtab (highpc + baseaddr, objfile, SECT_OFF_TEXT (objfile));
1903 /* Set symtab language to language from DW_AT_language.
1904 If the compilation is from a C file generated by language preprocessors,
1905 do not set the language if it was already deduced by start_subfile. */
1907 && !(cu_language == language_c && symtab->language != language_c))
1909 symtab->language = cu_language;
1911 pst->symtab = symtab;
1914 do_cleanups (back_to);
1917 /* Process a die and its children. */
1920 process_die (struct die_info *die, struct dwarf2_cu *cu)
1924 case DW_TAG_padding:
1926 case DW_TAG_compile_unit:
1927 read_file_scope (die, cu);
1929 case DW_TAG_subprogram:
1930 read_subroutine_type (die, cu);
1931 read_func_scope (die, cu);
1933 case DW_TAG_inlined_subroutine:
1934 /* FIXME: These are ignored for now.
1935 They could be used to set breakpoints on all inlined instances
1936 of a function and make GDB `next' properly over inlined functions. */
1938 case DW_TAG_lexical_block:
1939 case DW_TAG_try_block:
1940 case DW_TAG_catch_block:
1941 read_lexical_block_scope (die, cu);
1943 case DW_TAG_class_type:
1944 case DW_TAG_structure_type:
1945 case DW_TAG_union_type:
1946 read_structure_scope (die, cu);
1948 case DW_TAG_enumeration_type:
1949 read_enumeration (die, cu);
1951 case DW_TAG_subroutine_type:
1952 read_subroutine_type (die, cu);
1954 case DW_TAG_array_type:
1955 read_array_type (die, cu);
1957 case DW_TAG_pointer_type:
1958 read_tag_pointer_type (die, cu);
1960 case DW_TAG_ptr_to_member_type:
1961 read_tag_ptr_to_member_type (die, cu);
1963 case DW_TAG_reference_type:
1964 read_tag_reference_type (die, cu);
1966 case DW_TAG_string_type:
1967 read_tag_string_type (die, cu);
1969 case DW_TAG_base_type:
1970 read_base_type (die, cu);
1971 if (dwarf_attr (die, DW_AT_name))
1973 /* Add a typedef symbol for the base type definition. */
1974 new_symbol (die, die->type, cu);
1977 case DW_TAG_subrange_type:
1978 read_subrange_type (die, cu);
1979 if (dwarf_attr (die, DW_AT_name))
1981 /* Add a typedef symbol for the base type definition. */
1982 new_symbol (die, die->type, cu);
1985 case DW_TAG_common_block:
1986 read_common_block (die, cu);
1988 case DW_TAG_common_inclusion:
1990 case DW_TAG_namespace:
1991 processing_has_namespace_info = 1;
1992 read_namespace (die, cu);
1994 case DW_TAG_imported_declaration:
1995 case DW_TAG_imported_module:
1996 /* FIXME: carlton/2002-10-16: Eventually, we should use the
1997 information contained in these. DW_TAG_imported_declaration
1998 dies shouldn't have children; DW_TAG_imported_module dies
1999 shouldn't in the C++ case, but conceivably could in the
2000 Fortran case, so we'll have to replace this gdb_assert if
2001 Fortran compilers start generating that info. */
2002 processing_has_namespace_info = 1;
2003 gdb_assert (die->child == NULL);
2006 new_symbol (die, NULL, cu);
2012 initialize_cu_func_list (void)
2014 cu_first_fn = cu_last_fn = cu_cached_fn = NULL;
2018 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
2020 struct objfile *objfile = cu->objfile;
2021 struct comp_unit_head *cu_header = &cu->header;
2022 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
2023 CORE_ADDR lowpc = ((CORE_ADDR) -1);
2024 CORE_ADDR highpc = ((CORE_ADDR) 0);
2025 struct attribute *attr;
2026 char *name = "<unknown>";
2027 char *comp_dir = NULL;
2028 struct die_info *child_die;
2029 bfd *abfd = objfile->obfd;
2030 struct line_header *line_header = 0;
2032 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu))
2034 if (die->child != NULL)
2036 child_die = die->child;
2037 while (child_die && child_die->tag)
2039 if (child_die->tag == DW_TAG_subprogram)
2041 CORE_ADDR low, high;
2043 if (dwarf2_get_pc_bounds (child_die, &low, &high, cu))
2045 lowpc = min (lowpc, low);
2046 highpc = max (highpc, high);
2049 child_die = sibling_die (child_die);
2054 /* If we didn't find a lowpc, set it to highpc to avoid complaints
2055 from finish_block. */
2056 if (lowpc == ((CORE_ADDR) -1))
2061 attr = dwarf_attr (die, DW_AT_name);
2064 name = DW_STRING (attr);
2066 attr = dwarf_attr (die, DW_AT_comp_dir);
2069 comp_dir = DW_STRING (attr);
2072 /* Irix 6.2 native cc prepends <machine>.: to the compilation
2073 directory, get rid of it. */
2074 char *cp = strchr (comp_dir, ':');
2076 if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/')
2081 if (objfile->ei.entry_point >= lowpc &&
2082 objfile->ei.entry_point < highpc)
2084 objfile->ei.deprecated_entry_file_lowpc = lowpc;
2085 objfile->ei.deprecated_entry_file_highpc = highpc;
2088 attr = dwarf_attr (die, DW_AT_language);
2091 set_cu_language (DW_UNSND (attr));
2094 /* We assume that we're processing GCC output. */
2095 processing_gcc_compilation = 2;
2097 /* FIXME:Do something here. */
2098 if (dip->at_producer != NULL)
2100 handle_producer (dip->at_producer);
2104 /* The compilation unit may be in a different language or objfile,
2105 zero out all remembered fundamental types. */
2106 memset (ftypes, 0, FT_NUM_MEMBERS * sizeof (struct type *));
2108 start_symtab (name, comp_dir, lowpc);
2109 record_debugformat ("DWARF 2");
2111 initialize_cu_func_list ();
2113 /* Process all dies in compilation unit. */
2114 if (die->child != NULL)
2116 child_die = die->child;
2117 while (child_die && child_die->tag)
2119 process_die (child_die, cu);
2120 child_die = sibling_die (child_die);
2124 /* Decode line number information if present. */
2125 attr = dwarf_attr (die, DW_AT_stmt_list);
2128 unsigned int line_offset = DW_UNSND (attr);
2129 line_header = dwarf_decode_line_header (line_offset, abfd, cu);
2132 make_cleanup ((make_cleanup_ftype *) free_line_header,
2133 (void *) line_header);
2134 dwarf_decode_lines (line_header, comp_dir, abfd, cu);
2138 /* Decode macro information, if present. Dwarf 2 macro information
2139 refers to information in the line number info statement program
2140 header, so we can only read it if we've read the header
2142 attr = dwarf_attr (die, DW_AT_macro_info);
2143 if (attr && line_header)
2145 unsigned int macro_offset = DW_UNSND (attr);
2146 dwarf_decode_macros (line_header, macro_offset,
2147 comp_dir, abfd, cu);
2149 do_cleanups (back_to);
2153 add_to_cu_func_list (const char *name, CORE_ADDR lowpc, CORE_ADDR highpc)
2155 struct function_range *thisfn;
2157 thisfn = (struct function_range *)
2158 obstack_alloc (&dwarf2_tmp_obstack, sizeof (struct function_range));
2159 thisfn->name = name;
2160 thisfn->lowpc = lowpc;
2161 thisfn->highpc = highpc;
2162 thisfn->seen_line = 0;
2163 thisfn->next = NULL;
2165 if (cu_last_fn == NULL)
2166 cu_first_fn = thisfn;
2168 cu_last_fn->next = thisfn;
2170 cu_last_fn = thisfn;
2174 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
2176 struct objfile *objfile = cu->objfile;
2177 struct context_stack *new;
2180 struct die_info *child_die;
2181 struct attribute *attr;
2184 name = dwarf2_linkage_name (die);
2186 /* Ignore functions with missing or empty names and functions with
2187 missing or invalid low and high pc attributes. */
2188 if (name == NULL || !dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu))
2194 /* Record the function range for dwarf_decode_lines. */
2195 add_to_cu_func_list (name, lowpc, highpc);
2197 if (objfile->ei.entry_point >= lowpc &&
2198 objfile->ei.entry_point < highpc)
2200 objfile->ei.entry_func_lowpc = lowpc;
2201 objfile->ei.entry_func_highpc = highpc;
2204 new = push_context (0, lowpc);
2205 new->name = new_symbol (die, die->type, cu);
2207 /* If there is a location expression for DW_AT_frame_base, record
2209 attr = dwarf_attr (die, DW_AT_frame_base);
2211 dwarf2_symbol_mark_computed (attr, new->name, cu);
2213 list_in_scope = &local_symbols;
2215 if (die->child != NULL)
2217 child_die = die->child;
2218 while (child_die && child_die->tag)
2220 process_die (child_die, cu);
2221 child_die = sibling_die (child_die);
2225 new = pop_context ();
2226 /* Make a block for the local symbols within. */
2227 finish_block (new->name, &local_symbols, new->old_blocks,
2228 lowpc, highpc, objfile);
2230 /* In C++, we can have functions nested inside functions (e.g., when
2231 a function declares a class that has methods). This means that
2232 when we finish processing a function scope, we may need to go
2233 back to building a containing block's symbol lists. */
2234 local_symbols = new->locals;
2235 param_symbols = new->params;
2237 /* If we've finished processing a top-level function, subsequent
2238 symbols go in the file symbol list. */
2239 if (outermost_context_p ())
2240 list_in_scope = &file_symbols;
2243 /* Process all the DIES contained within a lexical block scope. Start
2244 a new scope, process the dies, and then close the scope. */
2247 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
2249 struct objfile *objfile = cu->objfile;
2250 struct context_stack *new;
2251 CORE_ADDR lowpc, highpc;
2252 struct die_info *child_die;
2254 /* Ignore blocks with missing or invalid low and high pc attributes. */
2255 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
2256 as multiple lexical blocks? Handling children in a sane way would
2257 be nasty. Might be easier to properly extend generic blocks to
2259 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu))
2264 push_context (0, lowpc);
2265 if (die->child != NULL)
2267 child_die = die->child;
2268 while (child_die && child_die->tag)
2270 process_die (child_die, cu);
2271 child_die = sibling_die (child_die);
2274 new = pop_context ();
2276 if (local_symbols != NULL)
2278 finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
2281 local_symbols = new->locals;
2284 /* Get low and high pc attributes from a die. Return 1 if the attributes
2285 are present and valid, otherwise, return 0. Return -1 if the range is
2286 discontinuous, i.e. derived from DW_AT_ranges information. */
2288 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
2289 CORE_ADDR *highpc, struct dwarf2_cu *cu)
2291 struct objfile *objfile = cu->objfile;
2292 struct comp_unit_head *cu_header = &cu->header;
2293 struct attribute *attr;
2294 bfd *obfd = objfile->obfd;
2299 attr = dwarf_attr (die, DW_AT_high_pc);
2302 high = DW_ADDR (attr);
2303 attr = dwarf_attr (die, DW_AT_low_pc);
2305 low = DW_ADDR (attr);
2307 /* Found high w/o low attribute. */
2310 /* Found consecutive range of addresses. */
2315 attr = dwarf_attr (die, DW_AT_ranges);
2318 unsigned int addr_size = cu_header->addr_size;
2319 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
2320 /* Value of the DW_AT_ranges attribute is the offset in the
2321 .debug_ranges section. */
2322 unsigned int offset = DW_UNSND (attr);
2323 /* Base address selection entry. */
2331 found_base = cu_header->base_known;
2332 base = cu_header->base_address;
2334 if (offset >= dwarf_ranges_size)
2336 complaint (&symfile_complaints,
2337 "Offset %d out of bounds for DW_AT_ranges attribute",
2341 buffer = dwarf_ranges_buffer + offset;
2343 /* Read in the largest possible address. */
2344 marker = read_address (obfd, buffer, cu, &dummy);
2345 if ((marker & mask) == mask)
2347 /* If we found the largest possible address, then
2348 read the base address. */
2349 base = read_address (obfd, buffer + addr_size, cu, &dummy);
2350 buffer += 2 * addr_size;
2351 offset += 2 * addr_size;
2359 CORE_ADDR range_beginning, range_end;
2361 range_beginning = read_address (obfd, buffer, cu, &dummy);
2362 buffer += addr_size;
2363 range_end = read_address (obfd, buffer, cu, &dummy);
2364 buffer += addr_size;
2365 offset += 2 * addr_size;
2367 /* An end of list marker is a pair of zero addresses. */
2368 if (range_beginning == 0 && range_end == 0)
2369 /* Found the end of list entry. */
2372 /* Each base address selection entry is a pair of 2 values.
2373 The first is the largest possible address, the second is
2374 the base address. Check for a base address here. */
2375 if ((range_beginning & mask) == mask)
2377 /* If we found the largest possible address, then
2378 read the base address. */
2379 base = read_address (obfd, buffer + addr_size, cu, &dummy);
2386 /* We have no valid base address for the ranges
2388 complaint (&symfile_complaints,
2389 "Invalid .debug_ranges data (no base address)");
2393 range_beginning += base;
2396 /* FIXME: This is recording everything as a low-high
2397 segment of consecutive addresses. We should have a
2398 data structure for discontiguous block ranges
2402 low = range_beginning;
2408 if (range_beginning < low)
2409 low = range_beginning;
2410 if (range_end > high)
2416 /* If the first entry is an end-of-list marker, the range
2417 describes an empty scope, i.e. no instructions. */
2427 /* When using the GNU linker, .gnu.linkonce. sections are used to
2428 eliminate duplicate copies of functions and vtables and such.
2429 The linker will arbitrarily choose one and discard the others.
2430 The AT_*_pc values for such functions refer to local labels in
2431 these sections. If the section from that file was discarded, the
2432 labels are not in the output, so the relocs get a value of 0.
2433 If this is a discarded function, mark the pc bounds as invalid,
2434 so that GDB will ignore it. */
2435 if (low == 0 && (bfd_get_file_flags (obfd) & HAS_RELOC) == 0)
2443 /* Add an aggregate field to the field list. */
2446 dwarf2_add_field (struct field_info *fip, struct die_info *die,
2447 struct dwarf2_cu *cu)
2449 struct objfile *objfile = cu->objfile;
2450 struct nextfield *new_field;
2451 struct attribute *attr;
2453 char *fieldname = "";
2455 /* Allocate a new field list entry and link it in. */
2456 new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
2457 make_cleanup (xfree, new_field);
2458 memset (new_field, 0, sizeof (struct nextfield));
2459 new_field->next = fip->fields;
2460 fip->fields = new_field;
2463 /* Handle accessibility and virtuality of field.
2464 The default accessibility for members is public, the default
2465 accessibility for inheritance is private. */
2466 if (die->tag != DW_TAG_inheritance)
2467 new_field->accessibility = DW_ACCESS_public;
2469 new_field->accessibility = DW_ACCESS_private;
2470 new_field->virtuality = DW_VIRTUALITY_none;
2472 attr = dwarf_attr (die, DW_AT_accessibility);
2474 new_field->accessibility = DW_UNSND (attr);
2475 if (new_field->accessibility != DW_ACCESS_public)
2476 fip->non_public_fields = 1;
2477 attr = dwarf_attr (die, DW_AT_virtuality);
2479 new_field->virtuality = DW_UNSND (attr);
2481 fp = &new_field->field;
2483 if (die->tag == DW_TAG_member && ! die_is_declaration (die))
2485 /* Data member other than a C++ static data member. */
2487 /* Get type of field. */
2488 fp->type = die_type (die, cu);
2490 FIELD_STATIC_KIND (*fp) = 0;
2492 /* Get bit size of field (zero if none). */
2493 attr = dwarf_attr (die, DW_AT_bit_size);
2496 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
2500 FIELD_BITSIZE (*fp) = 0;
2503 /* Get bit offset of field. */
2504 attr = dwarf_attr (die, DW_AT_data_member_location);
2507 FIELD_BITPOS (*fp) =
2508 decode_locdesc (DW_BLOCK (attr), cu) * bits_per_byte;
2511 FIELD_BITPOS (*fp) = 0;
2512 attr = dwarf_attr (die, DW_AT_bit_offset);
2515 if (BITS_BIG_ENDIAN)
2517 /* For big endian bits, the DW_AT_bit_offset gives the
2518 additional bit offset from the MSB of the containing
2519 anonymous object to the MSB of the field. We don't
2520 have to do anything special since we don't need to
2521 know the size of the anonymous object. */
2522 FIELD_BITPOS (*fp) += DW_UNSND (attr);
2526 /* For little endian bits, compute the bit offset to the
2527 MSB of the anonymous object, subtract off the number of
2528 bits from the MSB of the field to the MSB of the
2529 object, and then subtract off the number of bits of
2530 the field itself. The result is the bit offset of
2531 the LSB of the field. */
2533 int bit_offset = DW_UNSND (attr);
2535 attr = dwarf_attr (die, DW_AT_byte_size);
2538 /* The size of the anonymous object containing
2539 the bit field is explicit, so use the
2540 indicated size (in bytes). */
2541 anonymous_size = DW_UNSND (attr);
2545 /* The size of the anonymous object containing
2546 the bit field must be inferred from the type
2547 attribute of the data member containing the
2549 anonymous_size = TYPE_LENGTH (fp->type);
2551 FIELD_BITPOS (*fp) += anonymous_size * bits_per_byte
2552 - bit_offset - FIELD_BITSIZE (*fp);
2556 /* Get name of field. */
2557 attr = dwarf_attr (die, DW_AT_name);
2558 if (attr && DW_STRING (attr))
2559 fieldname = DW_STRING (attr);
2560 fp->name = obsavestring (fieldname, strlen (fieldname),
2561 &objfile->type_obstack);
2563 /* Change accessibility for artificial fields (e.g. virtual table
2564 pointer or virtual base class pointer) to private. */
2565 if (dwarf_attr (die, DW_AT_artificial))
2567 new_field->accessibility = DW_ACCESS_private;
2568 fip->non_public_fields = 1;
2571 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
2573 /* C++ static member. */
2575 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
2576 is a declaration, but all versions of G++ as of this writing
2577 (so through at least 3.2.1) incorrectly generate
2578 DW_TAG_variable tags. */
2582 /* Get name of field. */
2583 attr = dwarf_attr (die, DW_AT_name);
2584 if (attr && DW_STRING (attr))
2585 fieldname = DW_STRING (attr);
2589 /* Get physical name. */
2590 physname = dwarf2_linkage_name (die);
2592 SET_FIELD_PHYSNAME (*fp, obsavestring (physname, strlen (physname),
2593 &objfile->type_obstack));
2594 FIELD_TYPE (*fp) = die_type (die, cu);
2595 FIELD_NAME (*fp) = obsavestring (fieldname, strlen (fieldname),
2596 &objfile->type_obstack);
2598 else if (die->tag == DW_TAG_inheritance)
2600 /* C++ base class field. */
2601 attr = dwarf_attr (die, DW_AT_data_member_location);
2603 FIELD_BITPOS (*fp) = (decode_locdesc (DW_BLOCK (attr), cu)
2605 FIELD_BITSIZE (*fp) = 0;
2606 FIELD_STATIC_KIND (*fp) = 0;
2607 FIELD_TYPE (*fp) = die_type (die, cu);
2608 FIELD_NAME (*fp) = type_name_no_tag (fp->type);
2609 fip->nbaseclasses++;
2613 /* Create the vector of fields, and attach it to the type. */
2616 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
2617 struct dwarf2_cu *cu)
2619 int nfields = fip->nfields;
2621 /* Record the field count, allocate space for the array of fields,
2622 and create blank accessibility bitfields if necessary. */
2623 TYPE_NFIELDS (type) = nfields;
2624 TYPE_FIELDS (type) = (struct field *)
2625 TYPE_ALLOC (type, sizeof (struct field) * nfields);
2626 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
2628 if (fip->non_public_fields)
2630 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2632 TYPE_FIELD_PRIVATE_BITS (type) =
2633 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
2634 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
2636 TYPE_FIELD_PROTECTED_BITS (type) =
2637 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
2638 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
2640 TYPE_FIELD_IGNORE_BITS (type) =
2641 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
2642 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
2645 /* If the type has baseclasses, allocate and clear a bit vector for
2646 TYPE_FIELD_VIRTUAL_BITS. */
2647 if (fip->nbaseclasses)
2649 int num_bytes = B_BYTES (fip->nbaseclasses);
2652 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2653 pointer = (char *) TYPE_ALLOC (type, num_bytes);
2654 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *) pointer;
2655 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
2656 TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
2659 /* Copy the saved-up fields into the field vector. Start from the head
2660 of the list, adding to the tail of the field array, so that they end
2661 up in the same order in the array in which they were added to the list. */
2662 while (nfields-- > 0)
2664 TYPE_FIELD (type, nfields) = fip->fields->field;
2665 switch (fip->fields->accessibility)
2667 case DW_ACCESS_private:
2668 SET_TYPE_FIELD_PRIVATE (type, nfields);
2671 case DW_ACCESS_protected:
2672 SET_TYPE_FIELD_PROTECTED (type, nfields);
2675 case DW_ACCESS_public:
2679 /* Unknown accessibility. Complain and treat it as public. */
2681 complaint (&symfile_complaints, "unsupported accessibility %d",
2682 fip->fields->accessibility);
2686 if (nfields < fip->nbaseclasses)
2688 switch (fip->fields->virtuality)
2690 case DW_VIRTUALITY_virtual:
2691 case DW_VIRTUALITY_pure_virtual:
2692 SET_TYPE_FIELD_VIRTUAL (type, nfields);
2696 fip->fields = fip->fields->next;
2700 /* Add a member function to the proper fieldlist. */
2703 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
2704 struct type *type, struct dwarf2_cu *cu)
2706 struct objfile *objfile = cu->objfile;
2707 struct attribute *attr;
2708 struct fnfieldlist *flp;
2710 struct fn_field *fnp;
2713 struct nextfnfield *new_fnfield;
2715 /* Get name of member function. */
2716 attr = dwarf_attr (die, DW_AT_name);
2717 if (attr && DW_STRING (attr))
2718 fieldname = DW_STRING (attr);
2722 /* Get the mangled name. */
2723 physname = dwarf2_linkage_name (die);
2725 /* Look up member function name in fieldlist. */
2726 for (i = 0; i < fip->nfnfields; i++)
2728 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
2732 /* Create new list element if necessary. */
2733 if (i < fip->nfnfields)
2734 flp = &fip->fnfieldlists[i];
2737 if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
2739 fip->fnfieldlists = (struct fnfieldlist *)
2740 xrealloc (fip->fnfieldlists,
2741 (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
2742 * sizeof (struct fnfieldlist));
2743 if (fip->nfnfields == 0)
2744 make_cleanup (free_current_contents, &fip->fnfieldlists);
2746 flp = &fip->fnfieldlists[fip->nfnfields];
2747 flp->name = fieldname;
2753 /* Create a new member function field and chain it to the field list
2755 new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
2756 make_cleanup (xfree, new_fnfield);
2757 memset (new_fnfield, 0, sizeof (struct nextfnfield));
2758 new_fnfield->next = flp->head;
2759 flp->head = new_fnfield;
2762 /* Fill in the member function field info. */
2763 fnp = &new_fnfield->fnfield;
2764 fnp->physname = obsavestring (physname, strlen (physname),
2765 &objfile->type_obstack);
2766 fnp->type = alloc_type (objfile);
2767 if (die->type && TYPE_CODE (die->type) == TYPE_CODE_FUNC)
2769 int nparams = TYPE_NFIELDS (die->type);
2771 /* TYPE is the domain of this method, and DIE->TYPE is the type
2772 of the method itself (TYPE_CODE_METHOD). */
2773 smash_to_method_type (fnp->type, type,
2774 TYPE_TARGET_TYPE (die->type),
2775 TYPE_FIELDS (die->type),
2776 TYPE_NFIELDS (die->type),
2777 TYPE_VARARGS (die->type));
2779 /* Handle static member functions.
2780 Dwarf2 has no clean way to discern C++ static and non-static
2781 member functions. G++ helps GDB by marking the first
2782 parameter for non-static member functions (which is the
2783 this pointer) as artificial. We obtain this information
2784 from read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
2785 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (die->type, 0) == 0)
2786 fnp->voffset = VOFFSET_STATIC;
2789 complaint (&symfile_complaints, "member function type missing for '%s'",
2792 /* Get fcontext from DW_AT_containing_type if present. */
2793 if (dwarf_attr (die, DW_AT_containing_type) != NULL)
2794 fnp->fcontext = die_containing_type (die, cu);
2796 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const
2797 and is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
2799 /* Get accessibility. */
2800 attr = dwarf_attr (die, DW_AT_accessibility);
2803 switch (DW_UNSND (attr))
2805 case DW_ACCESS_private:
2806 fnp->is_private = 1;
2808 case DW_ACCESS_protected:
2809 fnp->is_protected = 1;
2814 /* Check for artificial methods. */
2815 attr = dwarf_attr (die, DW_AT_artificial);
2816 if (attr && DW_UNSND (attr) != 0)
2817 fnp->is_artificial = 1;
2819 /* Get index in virtual function table if it is a virtual member function. */
2820 attr = dwarf_attr (die, DW_AT_vtable_elem_location);
2823 /* Support the .debug_loc offsets */
2824 if (attr_form_is_block (attr))
2826 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
2828 else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
2830 dwarf2_complex_location_expr_complaint ();
2834 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
2840 /* Create the vector of member function fields, and attach it to the type. */
2843 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
2844 struct dwarf2_cu *cu)
2846 struct fnfieldlist *flp;
2847 int total_length = 0;
2850 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2851 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
2852 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
2854 for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
2856 struct nextfnfield *nfp = flp->head;
2857 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
2860 TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
2861 TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
2862 fn_flp->fn_fields = (struct fn_field *)
2863 TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
2864 for (k = flp->length; (k--, nfp); nfp = nfp->next)
2865 fn_flp->fn_fields[k] = nfp->fnfield;
2867 total_length += flp->length;
2870 TYPE_NFN_FIELDS (type) = fip->nfnfields;
2871 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
2874 /* Called when we find the DIE that starts a structure or union scope
2875 (definition) to process all dies that define the members of the
2878 NOTE: we need to call struct_type regardless of whether or not the
2879 DIE has an at_name attribute, since it might be an anonymous
2880 structure or union. This gets the type entered into our set of
2883 However, if the structure is incomplete (an opaque struct/union)
2884 then suppress creating a symbol table entry for it since gdb only
2885 wants to find the one with the complete definition. Note that if
2886 it is complete, we just call new_symbol, which does it's own
2887 checking about whether the struct/union is anonymous or not (and
2888 suppresses creating a symbol table entry itself). */
2891 read_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
2893 struct objfile *objfile = cu->objfile;
2895 struct attribute *attr;
2896 const char *name = NULL;
2897 const char *previous_prefix = processing_current_prefix;
2898 struct cleanup *back_to = NULL;
2899 /* This says whether or not we want to try to update the structure's
2900 name to include enclosing namespace/class information, if
2902 int need_to_update_name = 0;
2904 type = alloc_type (objfile);
2906 INIT_CPLUS_SPECIFIC (type);
2907 attr = dwarf_attr (die, DW_AT_name);
2908 if (attr && DW_STRING (attr))
2910 name = DW_STRING (attr);
2912 if (cu_language == language_cplus)
2914 struct die_info *spec_die = die_specification (die);
2916 if (spec_die != NULL)
2918 char *specification_prefix = determine_prefix (spec_die);
2919 processing_current_prefix = specification_prefix;
2920 back_to = make_cleanup (xfree, specification_prefix);
2924 if (processing_has_namespace_info)
2926 /* FIXME: carlton/2003-11-10: This variable exists only for
2927 const-correctness reasons. When I tried to change
2928 TYPE_TAG_NAME to be a const char *, I ran into a cascade
2929 of changes which would have forced decode_line_1 to take
2931 char *new_prefix = obconcat (&objfile->type_obstack,
2932 processing_current_prefix,
2933 processing_current_prefix[0] == '\0'
2936 TYPE_TAG_NAME (type) = new_prefix;
2937 processing_current_prefix = new_prefix;
2941 TYPE_TAG_NAME (type) = obsavestring (name, strlen (name),
2942 &objfile->type_obstack);
2943 need_to_update_name = (cu_language == language_cplus);
2947 if (die->tag == DW_TAG_structure_type)
2949 TYPE_CODE (type) = TYPE_CODE_STRUCT;
2951 else if (die->tag == DW_TAG_union_type)
2953 TYPE_CODE (type) = TYPE_CODE_UNION;
2957 /* FIXME: TYPE_CODE_CLASS is currently defined to TYPE_CODE_STRUCT
2959 TYPE_CODE (type) = TYPE_CODE_CLASS;
2962 attr = dwarf_attr (die, DW_AT_byte_size);
2965 TYPE_LENGTH (type) = DW_UNSND (attr);
2969 TYPE_LENGTH (type) = 0;
2972 /* We need to add the type field to the die immediately so we don't
2973 infinitely recurse when dealing with pointers to the structure
2974 type within the structure itself. */
2977 if (die->child != NULL && ! die_is_declaration (die))
2979 struct field_info fi;
2980 struct die_info *child_die;
2981 struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
2983 memset (&fi, 0, sizeof (struct field_info));
2985 child_die = die->child;
2987 while (child_die && child_die->tag)
2989 if (child_die->tag == DW_TAG_member
2990 || child_die->tag == DW_TAG_variable)
2992 /* NOTE: carlton/2002-11-05: A C++ static data member
2993 should be a DW_TAG_member that is a declaration, but
2994 all versions of G++ as of this writing (so through at
2995 least 3.2.1) incorrectly generate DW_TAG_variable
2996 tags for them instead. */
2997 dwarf2_add_field (&fi, child_die, cu);
2999 else if (child_die->tag == DW_TAG_subprogram)
3001 /* C++ member function. */
3002 process_die (child_die, cu);
3003 dwarf2_add_member_fn (&fi, child_die, type, cu);
3004 if (need_to_update_name)
3006 /* The demangled names of member functions contain
3007 information about enclosing namespaces/classes,
3010 /* FIXME: carlton/2003-11-10: The excessive
3011 demangling here is a bit wasteful, as is the
3012 memory usage for names. */
3014 /* NOTE: carlton/2003-11-10: As commented in
3015 add_partial_structure, the demangler sometimes
3016 prints the type info in a different form from the
3017 debug info. We could solve this by using the
3018 demangled name to get the prefix; if doing so,
3019 however, we'd need to be careful when reading a
3020 class that's nested inside a template class.
3021 That would also cause problems when trying to
3022 determine RTTI information, since we use the
3023 demangler to determine the appropriate class
3025 char *actual_class_name
3026 = class_name_from_physname (dwarf2_linkage_name
3028 if (actual_class_name != NULL
3029 && strcmp (actual_class_name, name) != 0)
3031 TYPE_TAG_NAME (type)
3032 = obsavestring (actual_class_name,
3033 strlen (actual_class_name),
3034 &objfile->type_obstack);
3036 xfree (actual_class_name);
3037 need_to_update_name = 0;
3040 else if (child_die->tag == DW_TAG_inheritance)
3042 /* C++ base class field. */
3043 dwarf2_add_field (&fi, child_die, cu);
3047 process_die (child_die, cu);
3049 child_die = sibling_die (child_die);
3052 /* Attach fields and member functions to the type. */
3054 dwarf2_attach_fields_to_type (&fi, type, cu);
3057 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
3059 /* Get the type which refers to the base class (possibly this
3060 class itself) which contains the vtable pointer for the current
3061 class from the DW_AT_containing_type attribute. */
3063 if (dwarf_attr (die, DW_AT_containing_type) != NULL)
3065 struct type *t = die_containing_type (die, cu);
3067 TYPE_VPTR_BASETYPE (type) = t;
3070 static const char vptr_name[] =
3071 {'_', 'v', 'p', 't', 'r', '\0'};
3074 /* Our own class provides vtbl ptr. */
3075 for (i = TYPE_NFIELDS (t) - 1;
3076 i >= TYPE_N_BASECLASSES (t);
3079 char *fieldname = TYPE_FIELD_NAME (t, i);
3081 if ((strncmp (fieldname, vptr_name,
3082 strlen (vptr_name) - 1)
3084 && is_cplus_marker (fieldname[strlen (vptr_name)]))
3086 TYPE_VPTR_FIELDNO (type) = i;
3091 /* Complain if virtual function table field not found. */
3092 if (i < TYPE_N_BASECLASSES (t))
3093 complaint (&symfile_complaints,
3094 "virtual function table pointer not found when defining class '%s'",
3095 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
3100 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
3105 new_symbol (die, type, cu);
3107 do_cleanups (back_to);
3111 /* No children, must be stub. */
3112 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
3115 processing_current_prefix = previous_prefix;
3116 if (back_to != NULL)
3117 do_cleanups (back_to);
3120 /* Given a pointer to a die which begins an enumeration, process all
3121 the dies that define the members of the enumeration.
3123 This will be much nicer in draft 6 of the DWARF spec when our
3124 members will be dies instead squished into the DW_AT_element_list
3127 NOTE: We reverse the order of the element list. */
3130 read_enumeration (struct die_info *die, struct dwarf2_cu *cu)
3132 struct objfile *objfile = cu->objfile;
3133 struct die_info *child_die;
3135 struct field *fields;
3136 struct attribute *attr;
3139 int unsigned_enum = 1;
3141 type = alloc_type (objfile);
3143 TYPE_CODE (type) = TYPE_CODE_ENUM;
3144 attr = dwarf_attr (die, DW_AT_name);
3145 if (attr && DW_STRING (attr))
3147 const char *name = DW_STRING (attr);
3149 if (processing_has_namespace_info)
3151 TYPE_TAG_NAME (type) = obconcat (&objfile->type_obstack,
3152 processing_current_prefix,
3153 processing_current_prefix[0] == '\0'
3159 TYPE_TAG_NAME (type) = obsavestring (name, strlen (name),
3160 &objfile->type_obstack);
3164 attr = dwarf_attr (die, DW_AT_byte_size);
3167 TYPE_LENGTH (type) = DW_UNSND (attr);
3171 TYPE_LENGTH (type) = 0;
3176 if (die->child != NULL)
3178 child_die = die->child;
3179 while (child_die && child_die->tag)
3181 if (child_die->tag != DW_TAG_enumerator)
3183 process_die (child_die, cu);
3187 attr = dwarf_attr (child_die, DW_AT_name);
3190 sym = new_symbol (child_die, type, cu);
3191 if (SYMBOL_VALUE (sym) < 0)
3194 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
3196 fields = (struct field *)
3198 (num_fields + DW_FIELD_ALLOC_CHUNK)
3199 * sizeof (struct field));
3202 FIELD_NAME (fields[num_fields]) = DEPRECATED_SYMBOL_NAME (sym);
3203 FIELD_TYPE (fields[num_fields]) = NULL;
3204 FIELD_BITPOS (fields[num_fields]) = SYMBOL_VALUE (sym);
3205 FIELD_BITSIZE (fields[num_fields]) = 0;
3206 FIELD_STATIC_KIND (fields[num_fields]) = 0;
3212 child_die = sibling_die (child_die);
3217 TYPE_NFIELDS (type) = num_fields;
3218 TYPE_FIELDS (type) = (struct field *)
3219 TYPE_ALLOC (type, sizeof (struct field) * num_fields);
3220 memcpy (TYPE_FIELDS (type), fields,
3221 sizeof (struct field) * num_fields);
3225 TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
3228 new_symbol (die, type, cu);
3231 /* Extract all information from a DW_TAG_array_type DIE and put it in
3232 the DIE's type field. For now, this only handles one dimensional
3236 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
3238 struct objfile *objfile = cu->objfile;
3239 struct die_info *child_die;
3240 struct type *type = NULL;
3241 struct type *element_type, *range_type, *index_type;
3242 struct type **range_types = NULL;
3243 struct attribute *attr;
3245 struct cleanup *back_to;
3247 /* Return if we've already decoded this type. */
3253 element_type = die_type (die, cu);
3255 /* Irix 6.2 native cc creates array types without children for
3256 arrays with unspecified length. */
3257 if (die->child == NULL)
3259 index_type = dwarf2_fundamental_type (objfile, FT_INTEGER);
3260 range_type = create_range_type (NULL, index_type, 0, -1);
3261 die->type = create_array_type (NULL, element_type, range_type);
3265 back_to = make_cleanup (null_cleanup, NULL);
3266 child_die = die->child;
3267 while (child_die && child_die->tag)
3269 if (child_die->tag == DW_TAG_subrange_type)
3271 read_subrange_type (child_die, cu);
3273 if (child_die->type != NULL)
3275 /* The range type was succesfully read. Save it for
3276 the array type creation. */
3277 if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
3279 range_types = (struct type **)
3280 xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
3281 * sizeof (struct type *));
3283 make_cleanup (free_current_contents, &range_types);
3285 range_types[ndim++] = child_die->type;
3288 child_die = sibling_die (child_die);
3291 /* Dwarf2 dimensions are output from left to right, create the
3292 necessary array types in backwards order. */
3293 type = element_type;
3295 type = create_array_type (NULL, type, range_types[ndim]);
3297 /* Understand Dwarf2 support for vector types (like they occur on
3298 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
3299 array type. This is not part of the Dwarf2/3 standard yet, but a
3300 custom vendor extension. The main difference between a regular
3301 array and the vector variant is that vectors are passed by value
3303 attr = dwarf_attr (die, DW_AT_GNU_vector);
3305 TYPE_FLAGS (type) |= TYPE_FLAG_VECTOR;
3307 do_cleanups (back_to);
3309 /* Install the type in the die. */
3313 /* First cut: install each common block member as a global variable. */
3316 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
3318 struct die_info *child_die;
3319 struct attribute *attr;
3321 CORE_ADDR base = (CORE_ADDR) 0;
3323 attr = dwarf_attr (die, DW_AT_location);
3326 /* Support the .debug_loc offsets */
3327 if (attr_form_is_block (attr))
3329 base = decode_locdesc (DW_BLOCK (attr), cu);
3331 else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
3333 dwarf2_complex_location_expr_complaint ();
3337 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
3338 "common block member");
3341 if (die->child != NULL)
3343 child_die = die->child;
3344 while (child_die && child_die->tag)
3346 sym = new_symbol (child_die, NULL, cu);
3347 attr = dwarf_attr (child_die, DW_AT_data_member_location);
3350 SYMBOL_VALUE_ADDRESS (sym) =
3351 base + decode_locdesc (DW_BLOCK (attr), cu);
3352 add_symbol_to_list (sym, &global_symbols);
3354 child_die = sibling_die (child_die);
3359 /* Read a C++ namespace. */
3362 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
3364 struct objfile *objfile = cu->objfile;
3365 const char *previous_prefix = processing_current_prefix;
3368 struct die_info *current_die;
3370 name = namespace_name (die, &is_anonymous);
3372 /* Now build the name of the current namespace. */
3374 if (previous_prefix[0] == '\0')
3376 processing_current_prefix = name;
3380 /* We need temp_name around because processing_current_prefix
3381 is a const char *. */
3382 char *temp_name = alloca (strlen (previous_prefix)
3383 + 2 + strlen(name) + 1);
3384 strcpy (temp_name, previous_prefix);
3385 strcat (temp_name, "::");
3386 strcat (temp_name, name);
3388 processing_current_prefix = temp_name;
3391 /* Add a symbol associated to this if we haven't seen the namespace
3392 before. Also, add a using directive if it's an anonymous
3395 if (dwarf2_extension (die) == NULL)
3399 /* FIXME: carlton/2003-06-27: Once GDB is more const-correct,
3400 this cast will hopefully become unnecessary. */
3401 type = init_type (TYPE_CODE_NAMESPACE, 0, 0,
3402 (char *) processing_current_prefix,
3404 TYPE_TAG_NAME (type) = TYPE_NAME (type);
3406 new_symbol (die, type, cu);
3409 cp_add_using_directive (processing_current_prefix,
3410 strlen (previous_prefix),
3411 strlen (processing_current_prefix));
3414 if (die->child != NULL)
3416 struct die_info *child_die = die->child;
3418 while (child_die && child_die->tag)
3420 process_die (child_die, cu);
3421 child_die = sibling_die (child_die);
3425 processing_current_prefix = previous_prefix;
3428 /* Return the name of the namespace represented by DIE. Set
3429 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
3433 namespace_name (struct die_info *die, int *is_anonymous)
3435 struct die_info *current_die;
3436 const char *name = NULL;
3438 /* Loop through the extensions until we find a name. */
3440 for (current_die = die;
3441 current_die != NULL;
3442 current_die = dwarf2_extension (die))
3444 name = dwarf2_name (current_die);
3449 /* Is it an anonymous namespace? */
3451 *is_anonymous = (name == NULL);
3453 name = "(anonymous namespace)";
3458 /* Extract all information from a DW_TAG_pointer_type DIE and add to
3459 the user defined type vector. */
3462 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
3464 struct comp_unit_head *cu_header = &cu->header;
3466 struct attribute *attr_byte_size;
3467 struct attribute *attr_address_class;
3468 int byte_size, addr_class;
3475 type = lookup_pointer_type (die_type (die, cu));
3477 attr_byte_size = dwarf_attr (die, DW_AT_byte_size);
3479 byte_size = DW_UNSND (attr_byte_size);
3481 byte_size = cu_header->addr_size;
3483 attr_address_class = dwarf_attr (die, DW_AT_address_class);
3484 if (attr_address_class)
3485 addr_class = DW_UNSND (attr_address_class);
3487 addr_class = DW_ADDR_none;
3489 /* If the pointer size or address class is different than the
3490 default, create a type variant marked as such and set the
3491 length accordingly. */
3492 if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
3494 if (ADDRESS_CLASS_TYPE_FLAGS_P ())
3498 type_flags = ADDRESS_CLASS_TYPE_FLAGS (byte_size, addr_class);
3499 gdb_assert ((type_flags & ~TYPE_FLAG_ADDRESS_CLASS_ALL) == 0);
3500 type = make_type_with_address_space (type, type_flags);
3502 else if (TYPE_LENGTH (type) != byte_size)
3504 complaint (&symfile_complaints, "invalid pointer size %d", byte_size);
3507 /* Should we also complain about unhandled address classes? */
3511 TYPE_LENGTH (type) = byte_size;
3515 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
3516 the user defined type vector. */
3519 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
3521 struct objfile *objfile = cu->objfile;
3523 struct type *to_type;
3524 struct type *domain;
3531 type = alloc_type (objfile);
3532 to_type = die_type (die, cu);
3533 domain = die_containing_type (die, cu);
3534 smash_to_member_type (type, domain, to_type);
3539 /* Extract all information from a DW_TAG_reference_type DIE and add to
3540 the user defined type vector. */
3543 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
3545 struct comp_unit_head *cu_header = &cu->header;
3547 struct attribute *attr;
3554 type = lookup_reference_type (die_type (die, cu));
3555 attr = dwarf_attr (die, DW_AT_byte_size);
3558 TYPE_LENGTH (type) = DW_UNSND (attr);
3562 TYPE_LENGTH (type) = cu_header->addr_size;
3568 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
3570 struct type *base_type;
3577 base_type = die_type (die, cu);
3578 die->type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
3582 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
3584 struct type *base_type;
3591 base_type = die_type (die, cu);
3592 die->type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
3595 /* Extract all information from a DW_TAG_string_type DIE and add to
3596 the user defined type vector. It isn't really a user defined type,
3597 but it behaves like one, with other DIE's using an AT_user_def_type
3598 attribute to reference it. */
3601 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
3603 struct objfile *objfile = cu->objfile;
3604 struct type *type, *range_type, *index_type, *char_type;
3605 struct attribute *attr;
3606 unsigned int length;
3613 attr = dwarf_attr (die, DW_AT_string_length);
3616 length = DW_UNSND (attr);
3620 /* check for the DW_AT_byte_size attribute */
3621 attr = dwarf_attr (die, DW_AT_byte_size);
3624 length = DW_UNSND (attr);
3631 index_type = dwarf2_fundamental_type (objfile, FT_INTEGER);
3632 range_type = create_range_type (NULL, index_type, 1, length);
3633 if (cu_language == language_fortran)
3635 /* Need to create a unique string type for bounds
3637 type = create_string_type (0, range_type);
3641 char_type = dwarf2_fundamental_type (objfile, FT_CHAR);
3642 type = create_string_type (char_type, range_type);
3647 /* Handle DIES due to C code like:
3651 int (*funcp)(int a, long l);
3655 ('funcp' generates a DW_TAG_subroutine_type DIE)
3659 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
3661 struct type *type; /* Type that this function returns */
3662 struct type *ftype; /* Function that returns above type */
3663 struct attribute *attr;
3665 /* Decode the type that this subroutine returns */
3670 type = die_type (die, cu);
3671 ftype = lookup_function_type (type);
3673 /* All functions in C++ have prototypes. */
3674 attr = dwarf_attr (die, DW_AT_prototyped);
3675 if ((attr && (DW_UNSND (attr) != 0))
3676 || cu_language == language_cplus)
3677 TYPE_FLAGS (ftype) |= TYPE_FLAG_PROTOTYPED;
3679 if (die->child != NULL)
3681 struct die_info *child_die;
3685 /* Count the number of parameters.
3686 FIXME: GDB currently ignores vararg functions, but knows about
3687 vararg member functions. */
3688 child_die = die->child;
3689 while (child_die && child_die->tag)
3691 if (child_die->tag == DW_TAG_formal_parameter)
3693 else if (child_die->tag == DW_TAG_unspecified_parameters)
3694 TYPE_FLAGS (ftype) |= TYPE_FLAG_VARARGS;
3695 child_die = sibling_die (child_die);
3698 /* Allocate storage for parameters and fill them in. */
3699 TYPE_NFIELDS (ftype) = nparams;
3700 TYPE_FIELDS (ftype) = (struct field *)
3701 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
3703 child_die = die->child;
3704 while (child_die && child_die->tag)
3706 if (child_die->tag == DW_TAG_formal_parameter)
3708 /* Dwarf2 has no clean way to discern C++ static and non-static
3709 member functions. G++ helps GDB by marking the first
3710 parameter for non-static member functions (which is the
3711 this pointer) as artificial. We pass this information
3712 to dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL. */
3713 attr = dwarf_attr (child_die, DW_AT_artificial);
3715 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
3717 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
3718 TYPE_FIELD_TYPE (ftype, iparams) = die_type (child_die, cu);
3721 child_die = sibling_die (child_die);
3729 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
3731 struct objfile *objfile = cu->objfile;
3732 struct attribute *attr;
3737 attr = dwarf_attr (die, DW_AT_name);
3738 if (attr && DW_STRING (attr))
3740 name = DW_STRING (attr);
3742 die->type = init_type (TYPE_CODE_TYPEDEF, 0, TYPE_FLAG_TARGET_STUB, name, objfile);
3743 TYPE_TARGET_TYPE (die->type) = die_type (die, cu);
3747 /* Find a representation of a given base type and install
3748 it in the TYPE field of the die. */
3751 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
3753 struct objfile *objfile = cu->objfile;
3755 struct attribute *attr;
3756 int encoding = 0, size = 0;
3758 /* If we've already decoded this die, this is a no-op. */
3764 attr = dwarf_attr (die, DW_AT_encoding);
3767 encoding = DW_UNSND (attr);
3769 attr = dwarf_attr (die, DW_AT_byte_size);
3772 size = DW_UNSND (attr);
3774 attr = dwarf_attr (die, DW_AT_name);
3775 if (attr && DW_STRING (attr))
3777 enum type_code code = TYPE_CODE_INT;
3782 case DW_ATE_address:
3783 /* Turn DW_ATE_address into a void * pointer. */
3784 code = TYPE_CODE_PTR;
3785 type_flags |= TYPE_FLAG_UNSIGNED;
3787 case DW_ATE_boolean:
3788 code = TYPE_CODE_BOOL;
3789 type_flags |= TYPE_FLAG_UNSIGNED;
3791 case DW_ATE_complex_float:
3792 code = TYPE_CODE_COMPLEX;
3795 code = TYPE_CODE_FLT;
3798 case DW_ATE_signed_char:
3800 case DW_ATE_unsigned:
3801 case DW_ATE_unsigned_char:
3802 type_flags |= TYPE_FLAG_UNSIGNED;
3805 complaint (&symfile_complaints, "unsupported DW_AT_encoding: '%s'",
3806 dwarf_type_encoding_name (encoding));
3809 type = init_type (code, size, type_flags, DW_STRING (attr), objfile);
3810 if (encoding == DW_ATE_address)
3811 TYPE_TARGET_TYPE (type) = dwarf2_fundamental_type (objfile, FT_VOID);
3812 else if (encoding == DW_ATE_complex_float)
3815 TYPE_TARGET_TYPE (type)
3816 = dwarf2_fundamental_type (objfile, FT_EXT_PREC_FLOAT);
3817 else if (size == 16)
3818 TYPE_TARGET_TYPE (type)
3819 = dwarf2_fundamental_type (objfile, FT_DBL_PREC_FLOAT);
3821 TYPE_TARGET_TYPE (type)
3822 = dwarf2_fundamental_type (objfile, FT_FLOAT);
3827 type = dwarf_base_type (encoding, size, cu);
3832 /* Read the given DW_AT_subrange DIE. */
3835 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
3837 struct type *base_type;
3838 struct type *range_type;
3839 struct attribute *attr;
3843 /* If we have already decoded this die, then nothing more to do. */
3847 base_type = die_type (die, cu);
3848 if (base_type == NULL)
3850 complaint (&symfile_complaints,
3851 "DW_AT_type missing from DW_TAG_subrange_type");
3855 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
3856 base_type = alloc_type (NULL);
3858 if (cu_language == language_fortran)
3860 /* FORTRAN implies a lower bound of 1, if not given. */
3864 attr = dwarf_attr (die, DW_AT_lower_bound);
3866 low = dwarf2_get_attr_constant_value (attr, 0);
3868 attr = dwarf_attr (die, DW_AT_upper_bound);
3871 if (attr->form == DW_FORM_block1)
3873 /* GCC encodes arrays with unspecified or dynamic length
3874 with a DW_FORM_block1 attribute.
3875 FIXME: GDB does not yet know how to handle dynamic
3876 arrays properly, treat them as arrays with unspecified
3879 FIXME: jimb/2003-09-22: GDB does not really know
3880 how to handle arrays of unspecified length
3881 either; we just represent them as zero-length
3882 arrays. Choose an appropriate upper bound given
3883 the lower bound we've computed above. */
3887 high = dwarf2_get_attr_constant_value (attr, 1);
3890 range_type = create_range_type (NULL, base_type, low, high);
3892 attr = dwarf_attr (die, DW_AT_name);
3893 if (attr && DW_STRING (attr))
3894 TYPE_NAME (range_type) = DW_STRING (attr);
3896 attr = dwarf_attr (die, DW_AT_byte_size);
3898 TYPE_LENGTH (range_type) = DW_UNSND (attr);
3900 die->type = range_type;
3904 /* Read a whole compilation unit into a linked list of dies. */
3906 static struct die_info *
3907 read_comp_unit (char *info_ptr, bfd *abfd, struct dwarf2_cu *cu)
3909 /* Reset die reference table; we are
3910 building new ones now. */
3911 dwarf2_empty_hash_tables ();
3913 return read_die_and_children (info_ptr, abfd, cu, &info_ptr, NULL);
3916 /* Read a single die and all its descendents. Set the die's sibling
3917 field to NULL; set other fields in the die correctly, and set all
3918 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
3919 location of the info_ptr after reading all of those dies. PARENT
3920 is the parent of the die in question. */
3922 static struct die_info *
3923 read_die_and_children (char *info_ptr, bfd *abfd,
3924 struct dwarf2_cu *cu,
3925 char **new_info_ptr,
3926 struct die_info *parent)
3928 struct die_info *die;
3932 cur_ptr = read_full_die (&die, abfd, info_ptr, cu, &has_children);
3933 store_in_ref_table (die->offset, die);
3937 die->child = read_die_and_siblings (cur_ptr, abfd, cu,
3943 *new_info_ptr = cur_ptr;
3946 die->sibling = NULL;
3947 die->parent = parent;
3951 /* Read a die, all of its descendents, and all of its siblings; set
3952 all of the fields of all of the dies correctly. Arguments are as
3953 in read_die_and_children. */
3955 static struct die_info *
3956 read_die_and_siblings (char *info_ptr, bfd *abfd,
3957 struct dwarf2_cu *cu,
3958 char **new_info_ptr,
3959 struct die_info *parent)
3961 struct die_info *first_die, *last_sibling;
3965 first_die = last_sibling = NULL;
3969 struct die_info *die
3970 = read_die_and_children (cur_ptr, abfd, cu, &cur_ptr, parent);
3978 last_sibling->sibling = die;
3983 *new_info_ptr = cur_ptr;
3993 /* Free a linked list of dies. */
3996 free_die_list (struct die_info *dies)
3998 struct die_info *die, *next;
4003 if (die->child != NULL)
4004 free_die_list (die->child);
4005 next = die->sibling;
4013 do_free_die_list_cleanup (void *dies)
4015 free_die_list (dies);
4018 static struct cleanup *
4019 make_cleanup_free_die_list (struct die_info *dies)
4021 return make_cleanup (do_free_die_list_cleanup, dies);
4025 /* Read the contents of the section at OFFSET and of size SIZE from the
4026 object file specified by OBJFILE into the psymbol_obstack and return it. */
4029 dwarf2_read_section (struct objfile *objfile, asection *sectp)
4031 bfd *abfd = objfile->obfd;
4033 bfd_size_type size = bfd_get_section_size_before_reloc (sectp);
4038 buf = (char *) obstack_alloc (&objfile->psymbol_obstack, size);
4040 = (char *) symfile_relocate_debug_section (abfd, sectp, (bfd_byte *) buf);
4044 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
4045 || bfd_bread (buf, size, abfd) != size)
4046 error ("Dwarf Error: Can't read DWARF data from '%s'",
4047 bfd_get_filename (abfd));
4052 /* In DWARF version 2, the description of the debugging information is
4053 stored in a separate .debug_abbrev section. Before we read any
4054 dies from a section we read in all abbreviations and install them
4058 dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu)
4060 struct comp_unit_head *cu_header = &cu->header;
4062 struct abbrev_info *cur_abbrev;
4063 unsigned int abbrev_number, bytes_read, abbrev_name;
4064 unsigned int abbrev_form, hash_number;
4066 /* Initialize dwarf2 abbrevs */
4067 memset (cu_header->dwarf2_abbrevs, 0,
4068 ABBREV_HASH_SIZE*sizeof (struct abbrev_info *));
4070 abbrev_ptr = dwarf_abbrev_buffer + cu_header->abbrev_offset;
4071 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
4072 abbrev_ptr += bytes_read;
4074 /* loop until we reach an abbrev number of 0 */
4075 while (abbrev_number)
4077 cur_abbrev = dwarf_alloc_abbrev ();
4079 /* read in abbrev header */
4080 cur_abbrev->number = abbrev_number;
4081 cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
4082 abbrev_ptr += bytes_read;
4083 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
4086 /* now read in declarations */
4087 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
4088 abbrev_ptr += bytes_read;
4089 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
4090 abbrev_ptr += bytes_read;
4093 if ((cur_abbrev->num_attrs % ATTR_ALLOC_CHUNK) == 0)
4095 cur_abbrev->attrs = (struct attr_abbrev *)
4096 xrealloc (cur_abbrev->attrs,
4097 (cur_abbrev->num_attrs + ATTR_ALLOC_CHUNK)
4098 * sizeof (struct attr_abbrev));
4100 cur_abbrev->attrs[cur_abbrev->num_attrs].name = abbrev_name;
4101 cur_abbrev->attrs[cur_abbrev->num_attrs++].form = abbrev_form;
4102 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
4103 abbrev_ptr += bytes_read;
4104 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
4105 abbrev_ptr += bytes_read;
4108 hash_number = abbrev_number % ABBREV_HASH_SIZE;
4109 cur_abbrev->next = cu_header->dwarf2_abbrevs[hash_number];
4110 cu_header->dwarf2_abbrevs[hash_number] = cur_abbrev;
4112 /* Get next abbreviation.
4113 Under Irix6 the abbreviations for a compilation unit are not
4114 always properly terminated with an abbrev number of 0.
4115 Exit loop if we encounter an abbreviation which we have
4116 already read (which means we are about to read the abbreviations
4117 for the next compile unit) or if the end of the abbreviation
4118 table is reached. */
4119 if ((unsigned int) (abbrev_ptr - dwarf_abbrev_buffer)
4120 >= dwarf_abbrev_size)
4122 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
4123 abbrev_ptr += bytes_read;
4124 if (dwarf2_lookup_abbrev (abbrev_number, cu) != NULL)
4129 /* Empty the abbrev table for a new compilation unit. */
4132 dwarf2_empty_abbrev_table (void *ptr_to_abbrevs_table)
4135 struct abbrev_info *abbrev, *next;
4136 struct abbrev_info **abbrevs;
4138 abbrevs = (struct abbrev_info **)ptr_to_abbrevs_table;
4140 for (i = 0; i < ABBREV_HASH_SIZE; ++i)
4143 abbrev = abbrevs[i];
4146 next = abbrev->next;
4147 xfree (abbrev->attrs);
4155 /* Lookup an abbrev_info structure in the abbrev hash table. */
4157 static struct abbrev_info *
4158 dwarf2_lookup_abbrev (unsigned int number, struct dwarf2_cu *cu)
4160 struct comp_unit_head *cu_header = &cu->header;
4161 unsigned int hash_number;
4162 struct abbrev_info *abbrev;
4164 hash_number = number % ABBREV_HASH_SIZE;
4165 abbrev = cu_header->dwarf2_abbrevs[hash_number];
4169 if (abbrev->number == number)
4172 abbrev = abbrev->next;
4177 /* Read a minimal amount of information into the minimal die structure. */
4180 read_partial_die (struct partial_die_info *part_die, bfd *abfd,
4181 char *info_ptr, struct dwarf2_cu *cu)
4183 unsigned int abbrev_number, bytes_read, i;
4184 struct abbrev_info *abbrev;
4185 struct attribute attr;
4186 struct attribute spec_attr;
4187 int found_spec_attr = 0;
4188 int has_low_pc_attr = 0;
4189 int has_high_pc_attr = 0;
4191 *part_die = zeroed_partial_die;
4192 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4193 info_ptr += bytes_read;
4197 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
4200 error ("Dwarf Error: Could not find abbrev number %d [in module %s]", abbrev_number,
4201 bfd_get_filename (abfd));
4203 part_die->offset = info_ptr - dwarf_info_buffer;
4204 part_die->tag = abbrev->tag;
4205 part_die->has_children = abbrev->has_children;
4206 part_die->abbrev = abbrev_number;
4208 for (i = 0; i < abbrev->num_attrs; ++i)
4210 info_ptr = read_attribute (&attr, &abbrev->attrs[i], abfd, info_ptr, cu);
4212 /* Store the data if it is of an attribute we want to keep in a
4213 partial symbol table. */
4218 /* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */
4219 if (part_die->name == NULL)
4220 part_die->name = DW_STRING (&attr);
4222 case DW_AT_MIPS_linkage_name:
4223 part_die->name = DW_STRING (&attr);
4226 has_low_pc_attr = 1;
4227 part_die->lowpc = DW_ADDR (&attr);
4230 has_high_pc_attr = 1;
4231 part_die->highpc = DW_ADDR (&attr);
4233 case DW_AT_location:
4234 /* Support the .debug_loc offsets */
4235 if (attr_form_is_block (&attr))
4237 part_die->locdesc = DW_BLOCK (&attr);
4239 else if (attr.form == DW_FORM_data4 || attr.form == DW_FORM_data8)
4241 dwarf2_complex_location_expr_complaint ();
4245 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
4246 "partial symbol information");
4249 case DW_AT_language:
4250 part_die->language = DW_UNSND (&attr);
4252 case DW_AT_external:
4253 part_die->is_external = DW_UNSND (&attr);
4255 case DW_AT_declaration:
4256 part_die->is_declaration = DW_UNSND (&attr);
4259 part_die->has_type = 1;
4261 case DW_AT_abstract_origin:
4262 case DW_AT_specification:
4263 found_spec_attr = 1;
4267 /* Ignore absolute siblings, they might point outside of
4268 the current compile unit. */
4269 if (attr.form == DW_FORM_ref_addr)
4270 complaint (&symfile_complaints, "ignoring absolute DW_AT_sibling");
4273 dwarf_info_buffer + dwarf2_get_ref_die_offset (&attr);
4280 /* If we found a reference attribute and the die has no name, try
4281 to find a name in the referred to die. */
4283 if (found_spec_attr && part_die->name == NULL)
4285 struct partial_die_info spec_die;
4288 spec_ptr = dwarf_info_buffer + dwarf2_get_ref_die_offset (&spec_attr);
4289 read_partial_die (&spec_die, abfd, spec_ptr, cu);
4292 part_die->name = spec_die.name;
4294 /* Copy DW_AT_external attribute if it is set. */
4295 if (spec_die.is_external)
4296 part_die->is_external = spec_die.is_external;
4300 /* When using the GNU linker, .gnu.linkonce. sections are used to
4301 eliminate duplicate copies of functions and vtables and such.
4302 The linker will arbitrarily choose one and discard the others.
4303 The AT_*_pc values for such functions refer to local labels in
4304 these sections. If the section from that file was discarded, the
4305 labels are not in the output, so the relocs get a value of 0.
4306 If this is a discarded function, mark the pc bounds as invalid,
4307 so that GDB will ignore it. */
4308 if (has_low_pc_attr && has_high_pc_attr
4309 && part_die->lowpc < part_die->highpc
4310 && (part_die->lowpc != 0
4311 || (bfd_get_file_flags (abfd) & HAS_RELOC)))
4312 part_die->has_pc_info = 1;
4316 /* Read the die from the .debug_info section buffer. Set DIEP to
4317 point to a newly allocated die with its information, except for its
4318 child, sibling, and parent fields. Set HAS_CHILDREN to tell
4319 whether the die has children or not. */
4322 read_full_die (struct die_info **diep, bfd *abfd, char *info_ptr,
4323 struct dwarf2_cu *cu, int *has_children)
4325 unsigned int abbrev_number, bytes_read, i, offset;
4326 struct abbrev_info *abbrev;
4327 struct die_info *die;
4329 offset = info_ptr - dwarf_info_buffer;
4330 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4331 info_ptr += bytes_read;
4334 die = dwarf_alloc_die ();
4336 die->abbrev = abbrev_number;
4343 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
4346 error ("Dwarf Error: could not find abbrev number %d [in module %s]",
4348 bfd_get_filename (abfd));
4350 die = dwarf_alloc_die ();
4351 die->offset = offset;
4352 die->tag = abbrev->tag;
4353 die->abbrev = abbrev_number;
4356 die->num_attrs = abbrev->num_attrs;
4357 die->attrs = (struct attribute *)
4358 xmalloc (die->num_attrs * sizeof (struct attribute));
4360 for (i = 0; i < abbrev->num_attrs; ++i)
4362 info_ptr = read_attribute (&die->attrs[i], &abbrev->attrs[i],
4363 abfd, info_ptr, cu);
4367 *has_children = abbrev->has_children;
4371 /* Read an attribute value described by an attribute form. */
4374 read_attribute_value (struct attribute *attr, unsigned form,
4375 bfd *abfd, char *info_ptr,
4376 struct dwarf2_cu *cu)
4378 struct comp_unit_head *cu_header = &cu->header;
4379 unsigned int bytes_read;
4380 struct dwarf_block *blk;
4386 case DW_FORM_ref_addr:
4387 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
4388 info_ptr += bytes_read;
4390 case DW_FORM_block2:
4391 blk = dwarf_alloc_block ();
4392 blk->size = read_2_bytes (abfd, info_ptr);
4394 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
4395 info_ptr += blk->size;
4396 DW_BLOCK (attr) = blk;
4398 case DW_FORM_block4:
4399 blk = dwarf_alloc_block ();
4400 blk->size = read_4_bytes (abfd, info_ptr);
4402 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
4403 info_ptr += blk->size;
4404 DW_BLOCK (attr) = blk;
4407 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
4411 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
4415 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
4418 case DW_FORM_string:
4419 DW_STRING (attr) = read_string (abfd, info_ptr, &bytes_read);
4420 info_ptr += bytes_read;
4423 DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
4425 info_ptr += bytes_read;
4428 blk = dwarf_alloc_block ();
4429 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4430 info_ptr += bytes_read;
4431 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
4432 info_ptr += blk->size;
4433 DW_BLOCK (attr) = blk;
4435 case DW_FORM_block1:
4436 blk = dwarf_alloc_block ();
4437 blk->size = read_1_byte (abfd, info_ptr);
4439 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
4440 info_ptr += blk->size;
4441 DW_BLOCK (attr) = blk;
4444 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
4448 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
4452 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
4453 info_ptr += bytes_read;
4456 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4457 info_ptr += bytes_read;
4460 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
4464 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
4468 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
4472 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
4475 case DW_FORM_ref_udata:
4476 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4477 info_ptr += bytes_read;
4479 case DW_FORM_indirect:
4480 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4481 info_ptr += bytes_read;
4482 info_ptr = read_attribute_value (attr, form, abfd, info_ptr, cu);
4485 error ("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]",
4486 dwarf_form_name (form),
4487 bfd_get_filename (abfd));
4492 /* Read an attribute described by an abbreviated attribute. */
4495 read_attribute (struct attribute *attr, struct attr_abbrev *abbrev,
4496 bfd *abfd, char *info_ptr, struct dwarf2_cu *cu)
4498 attr->name = abbrev->name;
4499 return read_attribute_value (attr, abbrev->form, abfd, info_ptr, cu);
4502 /* read dwarf information from a buffer */
4505 read_1_byte (bfd *abfd, char *buf)
4507 return bfd_get_8 (abfd, (bfd_byte *) buf);
4511 read_1_signed_byte (bfd *abfd, char *buf)
4513 return bfd_get_signed_8 (abfd, (bfd_byte *) buf);
4517 read_2_bytes (bfd *abfd, char *buf)
4519 return bfd_get_16 (abfd, (bfd_byte *) buf);
4523 read_2_signed_bytes (bfd *abfd, char *buf)
4525 return bfd_get_signed_16 (abfd, (bfd_byte *) buf);
4529 read_4_bytes (bfd *abfd, char *buf)
4531 return bfd_get_32 (abfd, (bfd_byte *) buf);
4535 read_4_signed_bytes (bfd *abfd, char *buf)
4537 return bfd_get_signed_32 (abfd, (bfd_byte *) buf);
4540 static unsigned long
4541 read_8_bytes (bfd *abfd, char *buf)
4543 return bfd_get_64 (abfd, (bfd_byte *) buf);
4547 read_address (bfd *abfd, char *buf, struct dwarf2_cu *cu, int *bytes_read)
4549 struct comp_unit_head *cu_header = &cu->header;
4550 CORE_ADDR retval = 0;
4552 if (cu_header->signed_addr_p)
4554 switch (cu_header->addr_size)
4557 retval = bfd_get_signed_16 (abfd, (bfd_byte *) buf);
4560 retval = bfd_get_signed_32 (abfd, (bfd_byte *) buf);
4563 retval = bfd_get_signed_64 (abfd, (bfd_byte *) buf);
4566 internal_error (__FILE__, __LINE__,
4567 "read_address: bad switch, signed [in module %s]",
4568 bfd_get_filename (abfd));
4573 switch (cu_header->addr_size)
4576 retval = bfd_get_16 (abfd, (bfd_byte *) buf);
4579 retval = bfd_get_32 (abfd, (bfd_byte *) buf);
4582 retval = bfd_get_64 (abfd, (bfd_byte *) buf);
4585 internal_error (__FILE__, __LINE__,
4586 "read_address: bad switch, unsigned [in module %s]",
4587 bfd_get_filename (abfd));
4591 *bytes_read = cu_header->addr_size;
4595 /* Read the initial length from a section. The (draft) DWARF 3
4596 specification allows the initial length to take up either 4 bytes
4597 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
4598 bytes describe the length and all offsets will be 8 bytes in length
4601 An older, non-standard 64-bit format is also handled by this
4602 function. The older format in question stores the initial length
4603 as an 8-byte quantity without an escape value. Lengths greater
4604 than 2^32 aren't very common which means that the initial 4 bytes
4605 is almost always zero. Since a length value of zero doesn't make
4606 sense for the 32-bit format, this initial zero can be considered to
4607 be an escape value which indicates the presence of the older 64-bit
4608 format. As written, the code can't detect (old format) lengths
4609 greater than 4GB. If it becomes necessary to handle lengths somewhat
4610 larger than 4GB, we could allow other small values (such as the
4611 non-sensical values of 1, 2, and 3) to also be used as escape values
4612 indicating the presence of the old format.
4614 The value returned via bytes_read should be used to increment
4615 the relevant pointer after calling read_initial_length().
4617 As a side effect, this function sets the fields initial_length_size
4618 and offset_size in cu_header to the values appropriate for the
4619 length field. (The format of the initial length field determines
4620 the width of file offsets to be fetched later with fetch_offset().)
4622 [ Note: read_initial_length() and read_offset() are based on the
4623 document entitled "DWARF Debugging Information Format", revision
4624 3, draft 8, dated November 19, 2001. This document was obtained
4627 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
4629 This document is only a draft and is subject to change. (So beware.)
4631 Details regarding the older, non-standard 64-bit format were
4632 determined empirically by examining 64-bit ELF files produced
4633 by the SGI toolchain on an IRIX 6.5 machine.
4635 - Kevin, July 16, 2002
4639 read_initial_length (bfd *abfd, char *buf, struct comp_unit_head *cu_header,
4644 retval = bfd_get_32 (abfd, (bfd_byte *) buf);
4646 if (retval == 0xffffffff)
4648 retval = bfd_get_64 (abfd, (bfd_byte *) buf + 4);
4650 if (cu_header != NULL)
4652 cu_header->initial_length_size = 12;
4653 cu_header->offset_size = 8;
4656 else if (retval == 0)
4658 /* Handle (non-standard) 64-bit DWARF2 formats such as that used
4660 retval = bfd_get_64 (abfd, (bfd_byte *) buf);
4662 if (cu_header != NULL)
4664 cu_header->initial_length_size = 8;
4665 cu_header->offset_size = 8;
4671 if (cu_header != NULL)
4673 cu_header->initial_length_size = 4;
4674 cu_header->offset_size = 4;
4681 /* Read an offset from the data stream. The size of the offset is
4682 given by cu_header->offset_size. */
4685 read_offset (bfd *abfd, char *buf, const struct comp_unit_head *cu_header,
4690 switch (cu_header->offset_size)
4693 retval = bfd_get_32 (abfd, (bfd_byte *) buf);
4697 retval = bfd_get_64 (abfd, (bfd_byte *) buf);
4701 internal_error (__FILE__, __LINE__,
4702 "read_offset: bad switch [in module %s]",
4703 bfd_get_filename (abfd));
4710 read_n_bytes (bfd *abfd, char *buf, unsigned int size)
4712 /* If the size of a host char is 8 bits, we can return a pointer
4713 to the buffer, otherwise we have to copy the data to a buffer
4714 allocated on the temporary obstack. */
4715 gdb_assert (HOST_CHAR_BIT == 8);
4720 read_string (bfd *abfd, char *buf, unsigned int *bytes_read_ptr)
4722 /* If the size of a host char is 8 bits, we can return a pointer
4723 to the string, otherwise we have to copy the string to a buffer
4724 allocated on the temporary obstack. */
4725 gdb_assert (HOST_CHAR_BIT == 8);
4728 *bytes_read_ptr = 1;
4731 *bytes_read_ptr = strlen (buf) + 1;
4736 read_indirect_string (bfd *abfd, char *buf,
4737 const struct comp_unit_head *cu_header,
4738 unsigned int *bytes_read_ptr)
4740 LONGEST str_offset = read_offset (abfd, buf, cu_header,
4741 (int *) bytes_read_ptr);
4743 if (dwarf_str_buffer == NULL)
4745 error ("DW_FORM_strp used without .debug_str section [in module %s]",
4746 bfd_get_filename (abfd));
4749 if (str_offset >= dwarf_str_size)
4751 error ("DW_FORM_strp pointing outside of .debug_str section [in module %s]",
4752 bfd_get_filename (abfd));
4755 gdb_assert (HOST_CHAR_BIT == 8);
4756 if (dwarf_str_buffer[str_offset] == '\0')
4758 return dwarf_str_buffer + str_offset;
4761 static unsigned long
4762 read_unsigned_leb128 (bfd *abfd, char *buf, unsigned int *bytes_read_ptr)
4764 unsigned long result;
4765 unsigned int num_read;
4775 byte = bfd_get_8 (abfd, (bfd_byte *) buf);
4778 result |= ((unsigned long)(byte & 127) << shift);
4779 if ((byte & 128) == 0)
4785 *bytes_read_ptr = num_read;
4790 read_signed_leb128 (bfd *abfd, char *buf, unsigned int *bytes_read_ptr)
4793 int i, shift, size, num_read;
4803 byte = bfd_get_8 (abfd, (bfd_byte *) buf);
4806 result |= ((long)(byte & 127) << shift);
4808 if ((byte & 128) == 0)
4813 if ((shift < size) && (byte & 0x40))
4815 result |= -(1 << shift);
4817 *bytes_read_ptr = num_read;
4822 set_cu_language (unsigned int lang)
4828 cu_language = language_c;
4830 case DW_LANG_C_plus_plus:
4831 cu_language = language_cplus;
4833 case DW_LANG_Fortran77:
4834 case DW_LANG_Fortran90:
4835 case DW_LANG_Fortran95:
4836 cu_language = language_fortran;
4838 case DW_LANG_Mips_Assembler:
4839 cu_language = language_asm;
4842 cu_language = language_java;
4846 case DW_LANG_Cobol74:
4847 case DW_LANG_Cobol85:
4848 case DW_LANG_Pascal83:
4849 case DW_LANG_Modula2:
4851 cu_language = language_minimal;
4854 cu_language_defn = language_def (cu_language);
4857 /* Return the named attribute or NULL if not there. */
4859 static struct attribute *
4860 dwarf_attr (struct die_info *die, unsigned int name)
4863 struct attribute *spec = NULL;
4865 for (i = 0; i < die->num_attrs; ++i)
4867 if (die->attrs[i].name == name)
4869 return &die->attrs[i];
4871 if (die->attrs[i].name == DW_AT_specification
4872 || die->attrs[i].name == DW_AT_abstract_origin)
4873 spec = &die->attrs[i];
4877 struct die_info *ref_die =
4878 follow_die_ref (dwarf2_get_ref_die_offset (spec));
4881 return dwarf_attr (ref_die, name);
4888 die_is_declaration (struct die_info *die)
4890 return (dwarf_attr (die, DW_AT_declaration)
4891 && ! dwarf_attr (die, DW_AT_specification));
4894 /* Return the die giving the specification for DIE, if there is
4897 static struct die_info *
4898 die_specification (struct die_info *die)
4900 struct attribute *spec_attr = dwarf_attr (die, DW_AT_specification);
4902 if (spec_attr == NULL)
4905 return follow_die_ref (dwarf2_get_ref_die_offset (spec_attr));
4908 /* Free the line_header structure *LH, and any arrays and strings it
4911 free_line_header (struct line_header *lh)
4913 if (lh->standard_opcode_lengths)
4914 xfree (lh->standard_opcode_lengths);
4916 /* Remember that all the lh->file_names[i].name pointers are
4917 pointers into debug_line_buffer, and don't need to be freed. */
4919 xfree (lh->file_names);
4921 /* Similarly for the include directory names. */
4922 if (lh->include_dirs)
4923 xfree (lh->include_dirs);
4929 /* Add an entry to LH's include directory table. */
4931 add_include_dir (struct line_header *lh, char *include_dir)
4933 /* Grow the array if necessary. */
4934 if (lh->include_dirs_size == 0)
4936 lh->include_dirs_size = 1; /* for testing */
4937 lh->include_dirs = xmalloc (lh->include_dirs_size
4938 * sizeof (*lh->include_dirs));
4940 else if (lh->num_include_dirs >= lh->include_dirs_size)
4942 lh->include_dirs_size *= 2;
4943 lh->include_dirs = xrealloc (lh->include_dirs,
4944 (lh->include_dirs_size
4945 * sizeof (*lh->include_dirs)));
4948 lh->include_dirs[lh->num_include_dirs++] = include_dir;
4952 /* Add an entry to LH's file name table. */
4954 add_file_name (struct line_header *lh,
4956 unsigned int dir_index,
4957 unsigned int mod_time,
4958 unsigned int length)
4960 struct file_entry *fe;
4962 /* Grow the array if necessary. */
4963 if (lh->file_names_size == 0)
4965 lh->file_names_size = 1; /* for testing */
4966 lh->file_names = xmalloc (lh->file_names_size
4967 * sizeof (*lh->file_names));
4969 else if (lh->num_file_names >= lh->file_names_size)
4971 lh->file_names_size *= 2;
4972 lh->file_names = xrealloc (lh->file_names,
4973 (lh->file_names_size
4974 * sizeof (*lh->file_names)));
4977 fe = &lh->file_names[lh->num_file_names++];
4979 fe->dir_index = dir_index;
4980 fe->mod_time = mod_time;
4981 fe->length = length;
4985 /* Read the statement program header starting at OFFSET in
4986 dwarf_line_buffer, according to the endianness of ABFD. Return a
4987 pointer to a struct line_header, allocated using xmalloc.
4989 NOTE: the strings in the include directory and file name tables of
4990 the returned object point into debug_line_buffer, and must not be
4992 static struct line_header *
4993 dwarf_decode_line_header (unsigned int offset, bfd *abfd,
4994 struct dwarf2_cu *cu)
4996 struct cleanup *back_to;
4997 struct line_header *lh;
5001 char *cur_dir, *cur_file;
5003 if (dwarf_line_buffer == NULL)
5005 complaint (&symfile_complaints, "missing .debug_line section");
5009 /* Make sure that at least there's room for the total_length field. That
5010 could be 12 bytes long, but we're just going to fudge that. */
5011 if (offset + 4 >= dwarf_line_size)
5013 dwarf2_statement_list_fits_in_line_number_section_complaint ();
5017 lh = xmalloc (sizeof (*lh));
5018 memset (lh, 0, sizeof (*lh));
5019 back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
5022 line_ptr = dwarf_line_buffer + offset;
5024 /* read in the header */
5025 lh->total_length = read_initial_length (abfd, line_ptr, NULL, &bytes_read);
5026 line_ptr += bytes_read;
5027 if (line_ptr + lh->total_length > dwarf_line_buffer + dwarf_line_size)
5029 dwarf2_statement_list_fits_in_line_number_section_complaint ();
5032 lh->statement_program_end = line_ptr + lh->total_length;
5033 lh->version = read_2_bytes (abfd, line_ptr);
5035 lh->header_length = read_offset (abfd, line_ptr, &cu->header, &bytes_read);
5036 line_ptr += bytes_read;
5037 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
5039 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
5041 lh->line_base = read_1_signed_byte (abfd, line_ptr);
5043 lh->line_range = read_1_byte (abfd, line_ptr);
5045 lh->opcode_base = read_1_byte (abfd, line_ptr);
5047 lh->standard_opcode_lengths
5048 = (unsigned char *) xmalloc (lh->opcode_base * sizeof (unsigned char));
5050 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
5051 for (i = 1; i < lh->opcode_base; ++i)
5053 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
5057 /* Read directory table */
5058 while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL)
5060 line_ptr += bytes_read;
5061 add_include_dir (lh, cur_dir);
5063 line_ptr += bytes_read;
5065 /* Read file name table */
5066 while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL)
5068 unsigned int dir_index, mod_time, length;
5070 line_ptr += bytes_read;
5071 dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
5072 line_ptr += bytes_read;
5073 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
5074 line_ptr += bytes_read;
5075 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
5076 line_ptr += bytes_read;
5078 add_file_name (lh, cur_file, dir_index, mod_time, length);
5080 line_ptr += bytes_read;
5081 lh->statement_program_start = line_ptr;
5083 if (line_ptr > dwarf_line_buffer + dwarf_line_size)
5084 complaint (&symfile_complaints,
5085 "line number info header doesn't fit in `.debug_line' section");
5087 discard_cleanups (back_to);
5091 /* This function exists to work around a bug in certain compilers
5092 (particularly GCC 2.95), in which the first line number marker of a
5093 function does not show up until after the prologue, right before
5094 the second line number marker. This function shifts ADDRESS down
5095 to the beginning of the function if necessary, and is called on
5096 addresses passed to record_line. */
5099 check_cu_functions (CORE_ADDR address)
5101 struct function_range *fn;
5103 /* Find the function_range containing address. */
5108 cu_cached_fn = cu_first_fn;
5112 if (fn->lowpc <= address && fn->highpc > address)
5118 while (fn && fn != cu_cached_fn)
5119 if (fn->lowpc <= address && fn->highpc > address)
5129 if (address != fn->lowpc)
5130 complaint (&symfile_complaints,
5131 "misplaced first line number at 0x%lx for '%s'",
5132 (unsigned long) address, fn->name);
5137 /* Decode the line number information for the compilation unit whose
5138 line number info is at OFFSET in the .debug_line section.
5139 The compilation directory of the file is passed in COMP_DIR. */
5142 dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd,
5143 struct dwarf2_cu *cu)
5147 unsigned int bytes_read;
5148 unsigned char op_code, extended_op, adj_opcode;
5150 line_ptr = lh->statement_program_start;
5151 line_end = lh->statement_program_end;
5153 /* Read the statement sequences until there's nothing left. */
5154 while (line_ptr < line_end)
5156 /* state machine registers */
5157 CORE_ADDR address = 0;
5158 unsigned int file = 1;
5159 unsigned int line = 1;
5160 unsigned int column = 0;
5161 int is_stmt = lh->default_is_stmt;
5162 int basic_block = 0;
5163 int end_sequence = 0;
5165 /* Start a subfile for the current file of the state machine. */
5166 if (lh->num_file_names >= file)
5168 /* lh->include_dirs and lh->file_names are 0-based, but the
5169 directory and file name numbers in the statement program
5171 struct file_entry *fe = &lh->file_names[file - 1];
5174 dir = lh->include_dirs[fe->dir_index - 1];
5177 dwarf2_start_subfile (fe->name, dir);
5180 /* Decode the table. */
5181 while (!end_sequence)
5183 op_code = read_1_byte (abfd, line_ptr);
5186 if (op_code >= lh->opcode_base)
5187 { /* Special operand. */
5188 adj_opcode = op_code - lh->opcode_base;
5189 address += (adj_opcode / lh->line_range)
5190 * lh->minimum_instruction_length;
5191 line += lh->line_base + (adj_opcode % lh->line_range);
5192 /* append row to matrix using current values */
5193 record_line (current_subfile, line,
5194 check_cu_functions (address));
5197 else switch (op_code)
5199 case DW_LNS_extended_op:
5200 line_ptr += 1; /* ignore length */
5201 extended_op = read_1_byte (abfd, line_ptr);
5203 switch (extended_op)
5205 case DW_LNE_end_sequence:
5207 record_line (current_subfile, 0, address);
5209 case DW_LNE_set_address:
5210 address = read_address (abfd, line_ptr, cu, &bytes_read);
5211 line_ptr += bytes_read;
5212 address += baseaddr;
5214 case DW_LNE_define_file:
5217 unsigned int dir_index, mod_time, length;
5219 cur_file = read_string (abfd, line_ptr, &bytes_read);
5220 line_ptr += bytes_read;
5222 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
5223 line_ptr += bytes_read;
5225 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
5226 line_ptr += bytes_read;
5228 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
5229 line_ptr += bytes_read;
5230 add_file_name (lh, cur_file, dir_index, mod_time, length);
5234 complaint (&symfile_complaints,
5235 "mangled .debug_line section");
5240 record_line (current_subfile, line,
5241 check_cu_functions (address));
5244 case DW_LNS_advance_pc:
5245 address += lh->minimum_instruction_length
5246 * read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
5247 line_ptr += bytes_read;
5249 case DW_LNS_advance_line:
5250 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
5251 line_ptr += bytes_read;
5253 case DW_LNS_set_file:
5255 /* lh->include_dirs and lh->file_names are 0-based,
5256 but the directory and file name numbers in the
5257 statement program are 1-based. */
5258 struct file_entry *fe;
5260 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
5261 line_ptr += bytes_read;
5262 fe = &lh->file_names[file - 1];
5264 dir = lh->include_dirs[fe->dir_index - 1];
5267 dwarf2_start_subfile (fe->name, dir);
5270 case DW_LNS_set_column:
5271 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
5272 line_ptr += bytes_read;
5274 case DW_LNS_negate_stmt:
5275 is_stmt = (!is_stmt);
5277 case DW_LNS_set_basic_block:
5280 /* Add to the address register of the state machine the
5281 address increment value corresponding to special opcode
5282 255. Ie, this value is scaled by the minimum instruction
5283 length since special opcode 255 would have scaled the
5285 case DW_LNS_const_add_pc:
5286 address += (lh->minimum_instruction_length
5287 * ((255 - lh->opcode_base) / lh->line_range));
5289 case DW_LNS_fixed_advance_pc:
5290 address += read_2_bytes (abfd, line_ptr);
5294 { /* Unknown standard opcode, ignore it. */
5296 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
5298 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
5299 line_ptr += bytes_read;
5307 /* Start a subfile for DWARF. FILENAME is the name of the file and
5308 DIRNAME the name of the source directory which contains FILENAME
5309 or NULL if not known.
5310 This routine tries to keep line numbers from identical absolute and
5311 relative file names in a common subfile.
5313 Using the `list' example from the GDB testsuite, which resides in
5314 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
5315 of /srcdir/list0.c yields the following debugging information for list0.c:
5317 DW_AT_name: /srcdir/list0.c
5318 DW_AT_comp_dir: /compdir
5319 files.files[0].name: list0.h
5320 files.files[0].dir: /srcdir
5321 files.files[1].name: list0.c
5322 files.files[1].dir: /srcdir
5324 The line number information for list0.c has to end up in a single
5325 subfile, so that `break /srcdir/list0.c:1' works as expected. */
5328 dwarf2_start_subfile (char *filename, char *dirname)
5330 /* If the filename isn't absolute, try to match an existing subfile
5331 with the full pathname. */
5333 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
5335 struct subfile *subfile;
5336 char *fullname = concat (dirname, "/", filename, NULL);
5338 for (subfile = subfiles; subfile; subfile = subfile->next)
5340 if (FILENAME_CMP (subfile->name, fullname) == 0)
5342 current_subfile = subfile;
5349 start_subfile (filename, dirname);
5353 var_decode_location (struct attribute *attr, struct symbol *sym,
5354 struct dwarf2_cu *cu)
5356 struct objfile *objfile = cu->objfile;
5357 struct comp_unit_head *cu_header = &cu->header;
5359 /* NOTE drow/2003-01-30: There used to be a comment and some special
5360 code here to turn a symbol with DW_AT_external and a
5361 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
5362 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
5363 with some versions of binutils) where shared libraries could have
5364 relocations against symbols in their debug information - the
5365 minimal symbol would have the right address, but the debug info
5366 would not. It's no longer necessary, because we will explicitly
5367 apply relocations when we read in the debug information now. */
5369 /* A DW_AT_location attribute with no contents indicates that a
5370 variable has been optimized away. */
5371 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
5373 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
5377 /* Handle one degenerate form of location expression specially, to
5378 preserve GDB's previous behavior when section offsets are
5379 specified. If this is just a DW_OP_addr then mark this symbol
5382 if (attr_form_is_block (attr)
5383 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size
5384 && DW_BLOCK (attr)->data[0] == DW_OP_addr)
5388 SYMBOL_VALUE_ADDRESS (sym) =
5389 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
5390 fixup_symbol_section (sym, objfile);
5391 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
5392 SYMBOL_SECTION (sym));
5393 SYMBOL_CLASS (sym) = LOC_STATIC;
5397 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
5398 expression evaluator, and use LOC_COMPUTED only when necessary
5399 (i.e. when the value of a register or memory location is
5400 referenced, or a thread-local block, etc.). Then again, it might
5401 not be worthwhile. I'm assuming that it isn't unless performance
5402 or memory numbers show me otherwise. */
5404 dwarf2_symbol_mark_computed (attr, sym, cu);
5405 SYMBOL_CLASS (sym) = LOC_COMPUTED;
5408 /* Given a pointer to a DWARF information entry, figure out if we need
5409 to make a symbol table entry for it, and if so, create a new entry
5410 and return a pointer to it.
5411 If TYPE is NULL, determine symbol type from the die, otherwise
5412 used the passed type. */
5414 static struct symbol *
5415 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
5417 struct objfile *objfile = cu->objfile;
5418 struct symbol *sym = NULL;
5420 struct attribute *attr = NULL;
5421 struct attribute *attr2 = NULL;
5423 if (die->tag != DW_TAG_namespace)
5424 name = dwarf2_linkage_name (die);
5426 name = TYPE_NAME (type);
5430 sym = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
5431 sizeof (struct symbol));
5432 OBJSTAT (objfile, n_syms++);
5433 memset (sym, 0, sizeof (struct symbol));
5435 /* Cache this symbol's name and the name's demangled form (if any). */
5436 SYMBOL_LANGUAGE (sym) = cu_language;
5437 SYMBOL_SET_NAMES (sym, name, strlen (name), objfile);
5439 /* Default assumptions.
5440 Use the passed type or decode it from the die. */
5441 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
5442 SYMBOL_CLASS (sym) = LOC_STATIC;
5444 SYMBOL_TYPE (sym) = type;
5446 SYMBOL_TYPE (sym) = die_type (die, cu);
5447 attr = dwarf_attr (die, DW_AT_decl_line);
5450 SYMBOL_LINE (sym) = DW_UNSND (attr);
5455 attr = dwarf_attr (die, DW_AT_low_pc);
5458 SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
5460 SYMBOL_CLASS (sym) = LOC_LABEL;
5462 case DW_TAG_subprogram:
5463 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
5465 SYMBOL_CLASS (sym) = LOC_BLOCK;
5466 attr2 = dwarf_attr (die, DW_AT_external);
5467 if (attr2 && (DW_UNSND (attr2) != 0))
5469 add_symbol_to_list (sym, &global_symbols);
5473 add_symbol_to_list (sym, list_in_scope);
5476 case DW_TAG_variable:
5477 /* Compilation with minimal debug info may result in variables
5478 with missing type entries. Change the misleading `void' type
5479 to something sensible. */
5480 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
5481 SYMBOL_TYPE (sym) = init_type (TYPE_CODE_INT,
5482 TARGET_INT_BIT / HOST_CHAR_BIT, 0,
5483 "<variable, no debug info>",
5485 attr = dwarf_attr (die, DW_AT_const_value);
5488 dwarf2_const_value (attr, sym, cu);
5489 attr2 = dwarf_attr (die, DW_AT_external);
5490 if (attr2 && (DW_UNSND (attr2) != 0))
5491 add_symbol_to_list (sym, &global_symbols);
5493 add_symbol_to_list (sym, list_in_scope);
5496 attr = dwarf_attr (die, DW_AT_location);
5499 var_decode_location (attr, sym, cu);
5500 attr2 = dwarf_attr (die, DW_AT_external);
5501 if (attr2 && (DW_UNSND (attr2) != 0))
5502 add_symbol_to_list (sym, &global_symbols);
5504 add_symbol_to_list (sym, list_in_scope);
5508 /* We do not know the address of this symbol.
5509 If it is an external symbol and we have type information
5510 for it, enter the symbol as a LOC_UNRESOLVED symbol.
5511 The address of the variable will then be determined from
5512 the minimal symbol table whenever the variable is
5514 attr2 = dwarf_attr (die, DW_AT_external);
5515 if (attr2 && (DW_UNSND (attr2) != 0)
5516 && dwarf_attr (die, DW_AT_type) != NULL)
5518 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
5519 add_symbol_to_list (sym, &global_symbols);
5523 case DW_TAG_formal_parameter:
5524 attr = dwarf_attr (die, DW_AT_location);
5527 var_decode_location (attr, sym, cu);
5528 /* FIXME drow/2003-07-31: Is LOC_COMPUTED_ARG necessary? */
5529 if (SYMBOL_CLASS (sym) == LOC_COMPUTED)
5530 SYMBOL_CLASS (sym) = LOC_COMPUTED_ARG;
5532 attr = dwarf_attr (die, DW_AT_const_value);
5535 dwarf2_const_value (attr, sym, cu);
5537 add_symbol_to_list (sym, list_in_scope);
5539 case DW_TAG_unspecified_parameters:
5540 /* From varargs functions; gdb doesn't seem to have any
5541 interest in this information, so just ignore it for now.
5544 case DW_TAG_class_type:
5545 case DW_TAG_structure_type:
5546 case DW_TAG_union_type:
5547 case DW_TAG_enumeration_type:
5548 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
5549 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
5551 /* Make sure that the symbol includes appropriate enclosing
5552 classes/namespaces in its name. These are calculated in
5553 read_structure_scope, and the correct name is saved in
5556 if (cu_language == language_cplus)
5558 struct type *type = SYMBOL_TYPE (sym);
5560 if (TYPE_TAG_NAME (type) != NULL)
5562 /* FIXME: carlton/2003-11-10: Should this use
5563 SYMBOL_SET_NAMES instead? (The same problem also
5564 arises a further down in the function.) */
5565 SYMBOL_LINKAGE_NAME (sym)
5566 = obsavestring (TYPE_TAG_NAME (type),
5567 strlen (TYPE_TAG_NAME (type)),
5568 &objfile->symbol_obstack);
5573 /* NOTE: carlton/2003-11-10: C++ class symbols shouldn't
5574 really ever be static objects: otherwise, if you try
5575 to, say, break of a class's method and you're in a file
5576 which doesn't mention that class, it won't work unless
5577 the check for all static symbols in lookup_symbol_aux
5578 saves you. See the OtherFileClass tests in
5579 gdb.c++/namespace.exp. */
5581 struct pending **list_to_add;
5583 list_to_add = (list_in_scope == &file_symbols
5584 && cu_language == language_cplus
5585 ? &global_symbols : list_in_scope);
5587 add_symbol_to_list (sym, list_to_add);
5589 /* The semantics of C++ state that "struct foo { ... }" also
5590 defines a typedef for "foo". Synthesize a typedef symbol so
5591 that "ptype foo" works as expected. */
5592 if (cu_language == language_cplus)
5594 struct symbol *typedef_sym = (struct symbol *)
5595 obstack_alloc (&objfile->symbol_obstack,
5596 sizeof (struct symbol));
5597 *typedef_sym = *sym;
5598 SYMBOL_DOMAIN (typedef_sym) = VAR_DOMAIN;
5599 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
5600 TYPE_NAME (SYMBOL_TYPE (sym)) =
5601 obsavestring (SYMBOL_NATURAL_NAME (sym),
5602 strlen (SYMBOL_NATURAL_NAME (sym)),
5603 &objfile->type_obstack);
5604 add_symbol_to_list (typedef_sym, list_to_add);
5608 case DW_TAG_typedef:
5609 if (processing_has_namespace_info
5610 && processing_current_prefix[0] != '\0')
5612 SYMBOL_LINKAGE_NAME (sym) = obconcat (&objfile->symbol_obstack,
5613 processing_current_prefix,
5617 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
5618 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
5619 add_symbol_to_list (sym, list_in_scope);
5621 case DW_TAG_base_type:
5622 case DW_TAG_subrange_type:
5623 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
5624 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
5625 add_symbol_to_list (sym, list_in_scope);
5627 case DW_TAG_enumerator:
5628 if (processing_has_namespace_info
5629 && processing_current_prefix[0] != '\0')
5631 SYMBOL_LINKAGE_NAME (sym) = obconcat (&objfile->symbol_obstack,
5632 processing_current_prefix,
5636 attr = dwarf_attr (die, DW_AT_const_value);
5639 dwarf2_const_value (attr, sym, cu);
5642 /* NOTE: carlton/2003-11-10: See comment above in the
5643 DW_TAG_class_type, etc. block. */
5645 struct pending **list_to_add;
5647 list_to_add = (list_in_scope == &file_symbols
5648 && cu_language == language_cplus
5649 ? &global_symbols : list_in_scope);
5651 add_symbol_to_list (sym, list_to_add);
5654 case DW_TAG_namespace:
5655 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
5656 add_symbol_to_list (sym, &global_symbols);
5659 /* Not a tag we recognize. Hopefully we aren't processing
5660 trash data, but since we must specifically ignore things
5661 we don't recognize, there is nothing else we should do at
5663 complaint (&symfile_complaints, "unsupported tag: '%s'",
5664 dwarf_tag_name (die->tag));
5671 /* Copy constant value from an attribute to a symbol. */
5674 dwarf2_const_value (struct attribute *attr, struct symbol *sym,
5675 struct dwarf2_cu *cu)
5677 struct objfile *objfile = cu->objfile;
5678 struct comp_unit_head *cu_header = &cu->header;
5679 struct dwarf_block *blk;
5684 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != cu_header->addr_size)
5685 dwarf2_const_value_length_mismatch_complaint (DEPRECATED_SYMBOL_NAME (sym),
5686 cu_header->addr_size,
5687 TYPE_LENGTH (SYMBOL_TYPE
5689 SYMBOL_VALUE_BYTES (sym) = (char *)
5690 obstack_alloc (&objfile->symbol_obstack, cu_header->addr_size);
5691 /* NOTE: cagney/2003-05-09: In-lined store_address call with
5692 it's body - store_unsigned_integer. */
5693 store_unsigned_integer (SYMBOL_VALUE_BYTES (sym), cu_header->addr_size,
5695 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
5697 case DW_FORM_block1:
5698 case DW_FORM_block2:
5699 case DW_FORM_block4:
5701 blk = DW_BLOCK (attr);
5702 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != blk->size)
5703 dwarf2_const_value_length_mismatch_complaint (DEPRECATED_SYMBOL_NAME (sym),
5705 TYPE_LENGTH (SYMBOL_TYPE
5707 SYMBOL_VALUE_BYTES (sym) = (char *)
5708 obstack_alloc (&objfile->symbol_obstack, blk->size);
5709 memcpy (SYMBOL_VALUE_BYTES (sym), blk->data, blk->size);
5710 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
5713 /* The DW_AT_const_value attributes are supposed to carry the
5714 symbol's value "represented as it would be on the target
5715 architecture." By the time we get here, it's already been
5716 converted to host endianness, so we just need to sign- or
5717 zero-extend it as appropriate. */
5719 dwarf2_const_value_data (attr, sym, 8);
5722 dwarf2_const_value_data (attr, sym, 16);
5725 dwarf2_const_value_data (attr, sym, 32);
5728 dwarf2_const_value_data (attr, sym, 64);
5732 SYMBOL_VALUE (sym) = DW_SND (attr);
5733 SYMBOL_CLASS (sym) = LOC_CONST;
5737 SYMBOL_VALUE (sym) = DW_UNSND (attr);
5738 SYMBOL_CLASS (sym) = LOC_CONST;
5742 complaint (&symfile_complaints,
5743 "unsupported const value attribute form: '%s'",
5744 dwarf_form_name (attr->form));
5745 SYMBOL_VALUE (sym) = 0;
5746 SYMBOL_CLASS (sym) = LOC_CONST;
5752 /* Given an attr with a DW_FORM_dataN value in host byte order, sign-
5753 or zero-extend it as appropriate for the symbol's type. */
5755 dwarf2_const_value_data (struct attribute *attr,
5759 LONGEST l = DW_UNSND (attr);
5761 if (bits < sizeof (l) * 8)
5763 if (TYPE_UNSIGNED (SYMBOL_TYPE (sym)))
5764 l &= ((LONGEST) 1 << bits) - 1;
5766 l = (l << (sizeof (l) * 8 - bits)) >> (sizeof (l) * 8 - bits);
5769 SYMBOL_VALUE (sym) = l;
5770 SYMBOL_CLASS (sym) = LOC_CONST;
5774 /* Return the type of the die in question using its DW_AT_type attribute. */
5776 static struct type *
5777 die_type (struct die_info *die, struct dwarf2_cu *cu)
5780 struct attribute *type_attr;
5781 struct die_info *type_die;
5784 type_attr = dwarf_attr (die, DW_AT_type);
5787 /* A missing DW_AT_type represents a void type. */
5788 return dwarf2_fundamental_type (cu->objfile, FT_VOID);
5792 ref = dwarf2_get_ref_die_offset (type_attr);
5793 type_die = follow_die_ref (ref);
5796 error ("Dwarf Error: Cannot find referent at offset %d [in module %s]",
5797 ref, cu->objfile->name);
5801 type = tag_type_to_type (type_die, cu);
5804 dump_die (type_die);
5805 error ("Dwarf Error: Problem turning type die at offset into gdb type [in module %s]",
5811 /* Return the containing type of the die in question using its
5812 DW_AT_containing_type attribute. */
5814 static struct type *
5815 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
5817 struct type *type = NULL;
5818 struct attribute *type_attr;
5819 struct die_info *type_die = NULL;
5822 type_attr = dwarf_attr (die, DW_AT_containing_type);
5825 ref = dwarf2_get_ref_die_offset (type_attr);
5826 type_die = follow_die_ref (ref);
5829 error ("Dwarf Error: Cannot find referent at offset %d [in module %s]", ref,
5833 type = tag_type_to_type (type_die, cu);
5838 dump_die (type_die);
5839 error ("Dwarf Error: Problem turning containing type into gdb type [in module %s]",
5846 static struct type *
5847 type_at_offset (unsigned int offset, struct dwarf2_cu *cu)
5849 struct die_info *die;
5852 die = follow_die_ref (offset);
5855 error ("Dwarf Error: Cannot find type referent at offset %d.", offset);
5858 type = tag_type_to_type (die, cu);
5863 static struct type *
5864 tag_type_to_type (struct die_info *die, struct dwarf2_cu *cu)
5872 read_type_die (die, cu);
5876 error ("Dwarf Error: Cannot find type of die [in module %s]",
5884 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
5886 char *prefix = determine_prefix (die);
5887 const char *old_prefix = processing_current_prefix;
5888 struct cleanup *back_to = make_cleanup (xfree, prefix);
5889 processing_current_prefix = prefix;
5893 case DW_TAG_class_type:
5894 case DW_TAG_structure_type:
5895 case DW_TAG_union_type:
5896 read_structure_scope (die, cu);
5898 case DW_TAG_enumeration_type:
5899 read_enumeration (die, cu);
5901 case DW_TAG_subprogram:
5902 case DW_TAG_subroutine_type:
5903 read_subroutine_type (die, cu);
5905 case DW_TAG_array_type:
5906 read_array_type (die, cu);
5908 case DW_TAG_pointer_type:
5909 read_tag_pointer_type (die, cu);
5911 case DW_TAG_ptr_to_member_type:
5912 read_tag_ptr_to_member_type (die, cu);
5914 case DW_TAG_reference_type:
5915 read_tag_reference_type (die, cu);
5917 case DW_TAG_const_type:
5918 read_tag_const_type (die, cu);
5920 case DW_TAG_volatile_type:
5921 read_tag_volatile_type (die, cu);
5923 case DW_TAG_string_type:
5924 read_tag_string_type (die, cu);
5926 case DW_TAG_typedef:
5927 read_typedef (die, cu);
5929 case DW_TAG_subrange_type:
5930 read_subrange_type (die, cu);
5932 case DW_TAG_base_type:
5933 read_base_type (die, cu);
5936 complaint (&symfile_complaints, "unexepected tag in read_type_die: '%s'",
5937 dwarf_tag_name (die->tag));
5941 processing_current_prefix = old_prefix;
5942 do_cleanups (back_to);
5945 /* Return the name of the namespace/class that DIE is defined
5946 within, or NULL if we can't tell. The caller should xfree the
5950 determine_prefix (struct die_info *die)
5952 struct die_info *parent;
5954 if (cu_language != language_cplus)
5957 parent = die->parent;
5961 return (processing_has_namespace_info ? xstrdup ("") : NULL);
5965 char *parent_prefix = determine_prefix (parent);
5968 switch (parent->tag) {
5969 case DW_TAG_namespace:
5973 retval = typename_concat (parent_prefix,
5974 namespace_name (parent, &dummy));
5977 case DW_TAG_class_type:
5978 case DW_TAG_structure_type:
5980 if (parent_prefix != NULL)
5982 const char *parent_name = dwarf2_name (parent);
5984 if (parent_name != NULL)
5985 retval = typename_concat (parent_prefix, dwarf2_name (parent));
5987 /* FIXME: carlton/2003-11-10: I'm not sure what the
5988 best thing to do here is. */
5989 retval = typename_concat (parent_prefix,
5990 "<<anonymous class>>");
5993 retval = class_name (parent);
5997 retval = parent_prefix;
6001 if (retval != parent_prefix)
6002 xfree (parent_prefix);
6007 /* Return a newly-allocated string formed by concatenating PREFIX,
6008 "::", and SUFFIX, except that if PREFIX is NULL or the empty
6009 string, just return a copy of SUFFIX. */
6012 typename_concat (const char *prefix, const char *suffix)
6014 if (prefix == NULL || prefix[0] == '\0')
6015 return xstrdup (suffix);
6018 char *retval = xmalloc (strlen (prefix) + 2 + strlen (suffix) + 1);
6020 strcpy (retval, prefix);
6021 strcat (retval, "::");
6022 strcat (retval, suffix);
6028 /* Return a newly-allocated string giving the name of the class given
6032 class_name (struct die_info *die)
6034 struct die_info *child;
6037 for (child = die->child; child != NULL; child = sibling_die (child))
6039 if (child->tag == DW_TAG_subprogram)
6040 return class_name_from_physname (dwarf2_linkage_name (child));
6043 name = dwarf2_name (die);
6045 return xstrdup (name);
6047 return xstrdup ("");
6050 static struct type *
6051 dwarf_base_type (int encoding, int size, struct dwarf2_cu *cu)
6053 struct objfile *objfile = cu->objfile;
6055 /* FIXME - this should not produce a new (struct type *)
6056 every time. It should cache base types. */
6060 case DW_ATE_address:
6061 type = dwarf2_fundamental_type (objfile, FT_VOID);
6063 case DW_ATE_boolean:
6064 type = dwarf2_fundamental_type (objfile, FT_BOOLEAN);
6066 case DW_ATE_complex_float:
6069 type = dwarf2_fundamental_type (objfile, FT_DBL_PREC_COMPLEX);
6073 type = dwarf2_fundamental_type (objfile, FT_COMPLEX);
6079 type = dwarf2_fundamental_type (objfile, FT_DBL_PREC_FLOAT);
6083 type = dwarf2_fundamental_type (objfile, FT_FLOAT);
6090 type = dwarf2_fundamental_type (objfile, FT_SIGNED_CHAR);
6093 type = dwarf2_fundamental_type (objfile, FT_SIGNED_SHORT);
6097 type = dwarf2_fundamental_type (objfile, FT_SIGNED_INTEGER);
6101 case DW_ATE_signed_char:
6102 type = dwarf2_fundamental_type (objfile, FT_SIGNED_CHAR);
6104 case DW_ATE_unsigned:
6108 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_CHAR);
6111 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_SHORT);
6115 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_INTEGER);
6119 case DW_ATE_unsigned_char:
6120 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_CHAR);
6123 type = dwarf2_fundamental_type (objfile, FT_SIGNED_INTEGER);
6130 copy_die (struct die_info *old_die)
6132 struct die_info *new_die;
6135 new_die = (struct die_info *) xmalloc (sizeof (struct die_info));
6136 memset (new_die, 0, sizeof (struct die_info));
6138 new_die->tag = old_die->tag;
6139 new_die->has_children = old_die->has_children;
6140 new_die->abbrev = old_die->abbrev;
6141 new_die->offset = old_die->offset;
6142 new_die->type = NULL;
6144 num_attrs = old_die->num_attrs;
6145 new_die->num_attrs = num_attrs;
6146 new_die->attrs = (struct attribute *)
6147 xmalloc (num_attrs * sizeof (struct attribute));
6149 for (i = 0; i < old_die->num_attrs; ++i)
6151 new_die->attrs[i].name = old_die->attrs[i].name;
6152 new_die->attrs[i].form = old_die->attrs[i].form;
6153 new_die->attrs[i].u.addr = old_die->attrs[i].u.addr;
6156 new_die->next = NULL;
6161 /* Return sibling of die, NULL if no sibling. */
6163 static struct die_info *
6164 sibling_die (struct die_info *die)
6166 return die->sibling;
6169 /* Get linkage name of a die, return NULL if not found. */
6172 dwarf2_linkage_name (struct die_info *die)
6174 struct attribute *attr;
6176 attr = dwarf_attr (die, DW_AT_MIPS_linkage_name);
6177 if (attr && DW_STRING (attr))
6178 return DW_STRING (attr);
6179 attr = dwarf_attr (die, DW_AT_name);
6180 if (attr && DW_STRING (attr))
6181 return DW_STRING (attr);
6185 /* Get name of a die, return NULL if not found. */
6188 dwarf2_name (struct die_info *die)
6190 struct attribute *attr;
6192 attr = dwarf_attr (die, DW_AT_name);
6193 if (attr && DW_STRING (attr))
6194 return DW_STRING (attr);
6198 /* Return the die that this die in an extension of, or NULL if there
6201 static struct die_info *
6202 dwarf2_extension (struct die_info *die)
6204 struct attribute *attr;
6205 struct die_info *extension_die;
6208 attr = dwarf_attr (die, DW_AT_extension);
6212 ref = dwarf2_get_ref_die_offset (attr);
6213 extension_die = follow_die_ref (ref);
6216 error ("Dwarf Error: Cannot find referent at offset %d.", ref);
6219 return extension_die;
6222 /* Convert a DIE tag into its string name. */
6225 dwarf_tag_name (unsigned tag)
6229 case DW_TAG_padding:
6230 return "DW_TAG_padding";
6231 case DW_TAG_array_type:
6232 return "DW_TAG_array_type";
6233 case DW_TAG_class_type:
6234 return "DW_TAG_class_type";
6235 case DW_TAG_entry_point:
6236 return "DW_TAG_entry_point";
6237 case DW_TAG_enumeration_type:
6238 return "DW_TAG_enumeration_type";
6239 case DW_TAG_formal_parameter:
6240 return "DW_TAG_formal_parameter";
6241 case DW_TAG_imported_declaration:
6242 return "DW_TAG_imported_declaration";
6244 return "DW_TAG_label";
6245 case DW_TAG_lexical_block:
6246 return "DW_TAG_lexical_block";
6248 return "DW_TAG_member";
6249 case DW_TAG_pointer_type:
6250 return "DW_TAG_pointer_type";
6251 case DW_TAG_reference_type:
6252 return "DW_TAG_reference_type";
6253 case DW_TAG_compile_unit:
6254 return "DW_TAG_compile_unit";
6255 case DW_TAG_string_type:
6256 return "DW_TAG_string_type";
6257 case DW_TAG_structure_type:
6258 return "DW_TAG_structure_type";
6259 case DW_TAG_subroutine_type:
6260 return "DW_TAG_subroutine_type";
6261 case DW_TAG_typedef:
6262 return "DW_TAG_typedef";
6263 case DW_TAG_union_type:
6264 return "DW_TAG_union_type";
6265 case DW_TAG_unspecified_parameters:
6266 return "DW_TAG_unspecified_parameters";
6267 case DW_TAG_variant:
6268 return "DW_TAG_variant";
6269 case DW_TAG_common_block:
6270 return "DW_TAG_common_block";
6271 case DW_TAG_common_inclusion:
6272 return "DW_TAG_common_inclusion";
6273 case DW_TAG_inheritance:
6274 return "DW_TAG_inheritance";
6275 case DW_TAG_inlined_subroutine:
6276 return "DW_TAG_inlined_subroutine";
6278 return "DW_TAG_module";
6279 case DW_TAG_ptr_to_member_type:
6280 return "DW_TAG_ptr_to_member_type";
6281 case DW_TAG_set_type:
6282 return "DW_TAG_set_type";
6283 case DW_TAG_subrange_type:
6284 return "DW_TAG_subrange_type";
6285 case DW_TAG_with_stmt:
6286 return "DW_TAG_with_stmt";
6287 case DW_TAG_access_declaration:
6288 return "DW_TAG_access_declaration";
6289 case DW_TAG_base_type:
6290 return "DW_TAG_base_type";
6291 case DW_TAG_catch_block:
6292 return "DW_TAG_catch_block";
6293 case DW_TAG_const_type:
6294 return "DW_TAG_const_type";
6295 case DW_TAG_constant:
6296 return "DW_TAG_constant";
6297 case DW_TAG_enumerator:
6298 return "DW_TAG_enumerator";
6299 case DW_TAG_file_type:
6300 return "DW_TAG_file_type";
6302 return "DW_TAG_friend";
6303 case DW_TAG_namelist:
6304 return "DW_TAG_namelist";
6305 case DW_TAG_namelist_item:
6306 return "DW_TAG_namelist_item";
6307 case DW_TAG_packed_type:
6308 return "DW_TAG_packed_type";
6309 case DW_TAG_subprogram:
6310 return "DW_TAG_subprogram";
6311 case DW_TAG_template_type_param:
6312 return "DW_TAG_template_type_param";
6313 case DW_TAG_template_value_param:
6314 return "DW_TAG_template_value_param";
6315 case DW_TAG_thrown_type:
6316 return "DW_TAG_thrown_type";
6317 case DW_TAG_try_block:
6318 return "DW_TAG_try_block";
6319 case DW_TAG_variant_part:
6320 return "DW_TAG_variant_part";
6321 case DW_TAG_variable:
6322 return "DW_TAG_variable";
6323 case DW_TAG_volatile_type:
6324 return "DW_TAG_volatile_type";
6325 case DW_TAG_dwarf_procedure:
6326 return "DW_TAG_dwarf_procedure";
6327 case DW_TAG_restrict_type:
6328 return "DW_TAG_restrict_type";
6329 case DW_TAG_interface_type:
6330 return "DW_TAG_interface_type";
6331 case DW_TAG_namespace:
6332 return "DW_TAG_namespace";
6333 case DW_TAG_imported_module:
6334 return "DW_TAG_imported_module";
6335 case DW_TAG_unspecified_type:
6336 return "DW_TAG_unspecified_type";
6337 case DW_TAG_partial_unit:
6338 return "DW_TAG_partial_unit";
6339 case DW_TAG_imported_unit:
6340 return "DW_TAG_imported_unit";
6341 case DW_TAG_MIPS_loop:
6342 return "DW_TAG_MIPS_loop";
6343 case DW_TAG_format_label:
6344 return "DW_TAG_format_label";
6345 case DW_TAG_function_template:
6346 return "DW_TAG_function_template";
6347 case DW_TAG_class_template:
6348 return "DW_TAG_class_template";
6350 return "DW_TAG_<unknown>";
6354 /* Convert a DWARF attribute code into its string name. */
6357 dwarf_attr_name (unsigned attr)
6362 return "DW_AT_sibling";
6363 case DW_AT_location:
6364 return "DW_AT_location";
6366 return "DW_AT_name";
6367 case DW_AT_ordering:
6368 return "DW_AT_ordering";
6369 case DW_AT_subscr_data:
6370 return "DW_AT_subscr_data";
6371 case DW_AT_byte_size:
6372 return "DW_AT_byte_size";
6373 case DW_AT_bit_offset:
6374 return "DW_AT_bit_offset";
6375 case DW_AT_bit_size:
6376 return "DW_AT_bit_size";
6377 case DW_AT_element_list:
6378 return "DW_AT_element_list";
6379 case DW_AT_stmt_list:
6380 return "DW_AT_stmt_list";
6382 return "DW_AT_low_pc";
6384 return "DW_AT_high_pc";
6385 case DW_AT_language:
6386 return "DW_AT_language";
6388 return "DW_AT_member";
6390 return "DW_AT_discr";
6391 case DW_AT_discr_value:
6392 return "DW_AT_discr_value";
6393 case DW_AT_visibility:
6394 return "DW_AT_visibility";
6396 return "DW_AT_import";
6397 case DW_AT_string_length:
6398 return "DW_AT_string_length";
6399 case DW_AT_common_reference:
6400 return "DW_AT_common_reference";
6401 case DW_AT_comp_dir:
6402 return "DW_AT_comp_dir";
6403 case DW_AT_const_value:
6404 return "DW_AT_const_value";
6405 case DW_AT_containing_type:
6406 return "DW_AT_containing_type";
6407 case DW_AT_default_value:
6408 return "DW_AT_default_value";
6410 return "DW_AT_inline";
6411 case DW_AT_is_optional:
6412 return "DW_AT_is_optional";
6413 case DW_AT_lower_bound:
6414 return "DW_AT_lower_bound";
6415 case DW_AT_producer:
6416 return "DW_AT_producer";
6417 case DW_AT_prototyped:
6418 return "DW_AT_prototyped";
6419 case DW_AT_return_addr:
6420 return "DW_AT_return_addr";
6421 case DW_AT_start_scope:
6422 return "DW_AT_start_scope";
6423 case DW_AT_stride_size:
6424 return "DW_AT_stride_size";
6425 case DW_AT_upper_bound:
6426 return "DW_AT_upper_bound";
6427 case DW_AT_abstract_origin:
6428 return "DW_AT_abstract_origin";
6429 case DW_AT_accessibility:
6430 return "DW_AT_accessibility";
6431 case DW_AT_address_class:
6432 return "DW_AT_address_class";
6433 case DW_AT_artificial:
6434 return "DW_AT_artificial";
6435 case DW_AT_base_types:
6436 return "DW_AT_base_types";
6437 case DW_AT_calling_convention:
6438 return "DW_AT_calling_convention";
6440 return "DW_AT_count";
6441 case DW_AT_data_member_location:
6442 return "DW_AT_data_member_location";
6443 case DW_AT_decl_column:
6444 return "DW_AT_decl_column";
6445 case DW_AT_decl_file:
6446 return "DW_AT_decl_file";
6447 case DW_AT_decl_line:
6448 return "DW_AT_decl_line";
6449 case DW_AT_declaration:
6450 return "DW_AT_declaration";
6451 case DW_AT_discr_list:
6452 return "DW_AT_discr_list";
6453 case DW_AT_encoding:
6454 return "DW_AT_encoding";
6455 case DW_AT_external:
6456 return "DW_AT_external";
6457 case DW_AT_frame_base:
6458 return "DW_AT_frame_base";
6460 return "DW_AT_friend";
6461 case DW_AT_identifier_case:
6462 return "DW_AT_identifier_case";
6463 case DW_AT_macro_info:
6464 return "DW_AT_macro_info";
6465 case DW_AT_namelist_items:
6466 return "DW_AT_namelist_items";
6467 case DW_AT_priority:
6468 return "DW_AT_priority";
6470 return "DW_AT_segment";
6471 case DW_AT_specification:
6472 return "DW_AT_specification";
6473 case DW_AT_static_link:
6474 return "DW_AT_static_link";
6476 return "DW_AT_type";
6477 case DW_AT_use_location:
6478 return "DW_AT_use_location";
6479 case DW_AT_variable_parameter:
6480 return "DW_AT_variable_parameter";
6481 case DW_AT_virtuality:
6482 return "DW_AT_virtuality";
6483 case DW_AT_vtable_elem_location:
6484 return "DW_AT_vtable_elem_location";
6485 case DW_AT_allocated:
6486 return "DW_AT_allocated";
6487 case DW_AT_associated:
6488 return "DW_AT_associated";
6489 case DW_AT_data_location:
6490 return "DW_AT_data_location";
6492 return "DW_AT_stride";
6493 case DW_AT_entry_pc:
6494 return "DW_AT_entry_pc";
6495 case DW_AT_use_UTF8:
6496 return "DW_AT_use_UTF8";
6497 case DW_AT_extension:
6498 return "DW_AT_extension";
6500 return "DW_AT_ranges";
6501 case DW_AT_trampoline:
6502 return "DW_AT_trampoline";
6503 case DW_AT_call_column:
6504 return "DW_AT_call_column";
6505 case DW_AT_call_file:
6506 return "DW_AT_call_file";
6507 case DW_AT_call_line:
6508 return "DW_AT_call_line";
6510 case DW_AT_MIPS_fde:
6511 return "DW_AT_MIPS_fde";
6512 case DW_AT_MIPS_loop_begin:
6513 return "DW_AT_MIPS_loop_begin";
6514 case DW_AT_MIPS_tail_loop_begin:
6515 return "DW_AT_MIPS_tail_loop_begin";
6516 case DW_AT_MIPS_epilog_begin:
6517 return "DW_AT_MIPS_epilog_begin";
6518 case DW_AT_MIPS_loop_unroll_factor:
6519 return "DW_AT_MIPS_loop_unroll_factor";
6520 case DW_AT_MIPS_software_pipeline_depth:
6521 return "DW_AT_MIPS_software_pipeline_depth";
6523 case DW_AT_MIPS_linkage_name:
6524 return "DW_AT_MIPS_linkage_name";
6526 case DW_AT_sf_names:
6527 return "DW_AT_sf_names";
6528 case DW_AT_src_info:
6529 return "DW_AT_src_info";
6530 case DW_AT_mac_info:
6531 return "DW_AT_mac_info";
6532 case DW_AT_src_coords:
6533 return "DW_AT_src_coords";
6534 case DW_AT_body_begin:
6535 return "DW_AT_body_begin";
6536 case DW_AT_body_end:
6537 return "DW_AT_body_end";
6538 case DW_AT_GNU_vector:
6539 return "DW_AT_GNU_vector";
6541 return "DW_AT_<unknown>";
6545 /* Convert a DWARF value form code into its string name. */
6548 dwarf_form_name (unsigned form)
6553 return "DW_FORM_addr";
6554 case DW_FORM_block2:
6555 return "DW_FORM_block2";
6556 case DW_FORM_block4:
6557 return "DW_FORM_block4";
6559 return "DW_FORM_data2";
6561 return "DW_FORM_data4";
6563 return "DW_FORM_data8";
6564 case DW_FORM_string:
6565 return "DW_FORM_string";
6567 return "DW_FORM_block";
6568 case DW_FORM_block1:
6569 return "DW_FORM_block1";
6571 return "DW_FORM_data1";
6573 return "DW_FORM_flag";
6575 return "DW_FORM_sdata";
6577 return "DW_FORM_strp";
6579 return "DW_FORM_udata";
6580 case DW_FORM_ref_addr:
6581 return "DW_FORM_ref_addr";
6583 return "DW_FORM_ref1";
6585 return "DW_FORM_ref2";
6587 return "DW_FORM_ref4";
6589 return "DW_FORM_ref8";
6590 case DW_FORM_ref_udata:
6591 return "DW_FORM_ref_udata";
6592 case DW_FORM_indirect:
6593 return "DW_FORM_indirect";
6595 return "DW_FORM_<unknown>";
6599 /* Convert a DWARF stack opcode into its string name. */
6602 dwarf_stack_op_name (unsigned op)
6607 return "DW_OP_addr";
6609 return "DW_OP_deref";
6611 return "DW_OP_const1u";
6613 return "DW_OP_const1s";
6615 return "DW_OP_const2u";
6617 return "DW_OP_const2s";
6619 return "DW_OP_const4u";
6621 return "DW_OP_const4s";
6623 return "DW_OP_const8u";
6625 return "DW_OP_const8s";
6627 return "DW_OP_constu";
6629 return "DW_OP_consts";
6633 return "DW_OP_drop";
6635 return "DW_OP_over";
6637 return "DW_OP_pick";
6639 return "DW_OP_swap";
6643 return "DW_OP_xderef";
6651 return "DW_OP_minus";
6663 return "DW_OP_plus";
6664 case DW_OP_plus_uconst:
6665 return "DW_OP_plus_uconst";
6671 return "DW_OP_shra";
6689 return "DW_OP_skip";
6691 return "DW_OP_lit0";
6693 return "DW_OP_lit1";
6695 return "DW_OP_lit2";
6697 return "DW_OP_lit3";
6699 return "DW_OP_lit4";
6701 return "DW_OP_lit5";
6703 return "DW_OP_lit6";
6705 return "DW_OP_lit7";
6707 return "DW_OP_lit8";
6709 return "DW_OP_lit9";
6711 return "DW_OP_lit10";
6713 return "DW_OP_lit11";
6715 return "DW_OP_lit12";
6717 return "DW_OP_lit13";
6719 return "DW_OP_lit14";
6721 return "DW_OP_lit15";
6723 return "DW_OP_lit16";
6725 return "DW_OP_lit17";
6727 return "DW_OP_lit18";
6729 return "DW_OP_lit19";
6731 return "DW_OP_lit20";
6733 return "DW_OP_lit21";
6735 return "DW_OP_lit22";
6737 return "DW_OP_lit23";
6739 return "DW_OP_lit24";
6741 return "DW_OP_lit25";
6743 return "DW_OP_lit26";
6745 return "DW_OP_lit27";
6747 return "DW_OP_lit28";
6749 return "DW_OP_lit29";
6751 return "DW_OP_lit30";
6753 return "DW_OP_lit31";
6755 return "DW_OP_reg0";
6757 return "DW_OP_reg1";
6759 return "DW_OP_reg2";
6761 return "DW_OP_reg3";
6763 return "DW_OP_reg4";
6765 return "DW_OP_reg5";
6767 return "DW_OP_reg6";
6769 return "DW_OP_reg7";
6771 return "DW_OP_reg8";
6773 return "DW_OP_reg9";
6775 return "DW_OP_reg10";
6777 return "DW_OP_reg11";
6779 return "DW_OP_reg12";
6781 return "DW_OP_reg13";
6783 return "DW_OP_reg14";
6785 return "DW_OP_reg15";
6787 return "DW_OP_reg16";
6789 return "DW_OP_reg17";
6791 return "DW_OP_reg18";
6793 return "DW_OP_reg19";
6795 return "DW_OP_reg20";
6797 return "DW_OP_reg21";
6799 return "DW_OP_reg22";
6801 return "DW_OP_reg23";
6803 return "DW_OP_reg24";
6805 return "DW_OP_reg25";
6807 return "DW_OP_reg26";
6809 return "DW_OP_reg27";
6811 return "DW_OP_reg28";
6813 return "DW_OP_reg29";
6815 return "DW_OP_reg30";
6817 return "DW_OP_reg31";
6819 return "DW_OP_breg0";
6821 return "DW_OP_breg1";
6823 return "DW_OP_breg2";
6825 return "DW_OP_breg3";
6827 return "DW_OP_breg4";
6829 return "DW_OP_breg5";
6831 return "DW_OP_breg6";
6833 return "DW_OP_breg7";
6835 return "DW_OP_breg8";
6837 return "DW_OP_breg9";
6839 return "DW_OP_breg10";
6841 return "DW_OP_breg11";
6843 return "DW_OP_breg12";
6845 return "DW_OP_breg13";
6847 return "DW_OP_breg14";
6849 return "DW_OP_breg15";
6851 return "DW_OP_breg16";
6853 return "DW_OP_breg17";
6855 return "DW_OP_breg18";
6857 return "DW_OP_breg19";
6859 return "DW_OP_breg20";
6861 return "DW_OP_breg21";
6863 return "DW_OP_breg22";
6865 return "DW_OP_breg23";
6867 return "DW_OP_breg24";
6869 return "DW_OP_breg25";
6871 return "DW_OP_breg26";
6873 return "DW_OP_breg27";
6875 return "DW_OP_breg28";
6877 return "DW_OP_breg29";
6879 return "DW_OP_breg30";
6881 return "DW_OP_breg31";
6883 return "DW_OP_regx";
6885 return "DW_OP_fbreg";
6887 return "DW_OP_bregx";
6889 return "DW_OP_piece";
6890 case DW_OP_deref_size:
6891 return "DW_OP_deref_size";
6892 case DW_OP_xderef_size:
6893 return "DW_OP_xderef_size";
6896 /* DWARF 3 extensions. */
6897 case DW_OP_push_object_address:
6898 return "DW_OP_push_object_address";
6900 return "DW_OP_call2";
6902 return "DW_OP_call4";
6903 case DW_OP_call_ref:
6904 return "DW_OP_call_ref";
6905 /* GNU extensions. */
6906 case DW_OP_GNU_push_tls_address:
6907 return "DW_OP_GNU_push_tls_address";
6909 return "OP_<unknown>";
6914 dwarf_bool_name (unsigned mybool)
6922 /* Convert a DWARF type code into its string name. */
6925 dwarf_type_encoding_name (unsigned enc)
6929 case DW_ATE_address:
6930 return "DW_ATE_address";
6931 case DW_ATE_boolean:
6932 return "DW_ATE_boolean";
6933 case DW_ATE_complex_float:
6934 return "DW_ATE_complex_float";
6936 return "DW_ATE_float";
6938 return "DW_ATE_signed";
6939 case DW_ATE_signed_char:
6940 return "DW_ATE_signed_char";
6941 case DW_ATE_unsigned:
6942 return "DW_ATE_unsigned";
6943 case DW_ATE_unsigned_char:
6944 return "DW_ATE_unsigned_char";
6945 case DW_ATE_imaginary_float:
6946 return "DW_ATE_imaginary_float";
6948 return "DW_ATE_<unknown>";
6952 /* Convert a DWARF call frame info operation to its string name. */
6956 dwarf_cfi_name (unsigned cfi_opc)
6960 case DW_CFA_advance_loc:
6961 return "DW_CFA_advance_loc";
6963 return "DW_CFA_offset";
6964 case DW_CFA_restore:
6965 return "DW_CFA_restore";
6967 return "DW_CFA_nop";
6968 case DW_CFA_set_loc:
6969 return "DW_CFA_set_loc";
6970 case DW_CFA_advance_loc1:
6971 return "DW_CFA_advance_loc1";
6972 case DW_CFA_advance_loc2:
6973 return "DW_CFA_advance_loc2";
6974 case DW_CFA_advance_loc4:
6975 return "DW_CFA_advance_loc4";
6976 case DW_CFA_offset_extended:
6977 return "DW_CFA_offset_extended";
6978 case DW_CFA_restore_extended:
6979 return "DW_CFA_restore_extended";
6980 case DW_CFA_undefined:
6981 return "DW_CFA_undefined";
6982 case DW_CFA_same_value:
6983 return "DW_CFA_same_value";
6984 case DW_CFA_register:
6985 return "DW_CFA_register";
6986 case DW_CFA_remember_state:
6987 return "DW_CFA_remember_state";
6988 case DW_CFA_restore_state:
6989 return "DW_CFA_restore_state";
6990 case DW_CFA_def_cfa:
6991 return "DW_CFA_def_cfa";
6992 case DW_CFA_def_cfa_register:
6993 return "DW_CFA_def_cfa_register";
6994 case DW_CFA_def_cfa_offset:
6995 return "DW_CFA_def_cfa_offset";
6998 case DW_CFA_def_cfa_expression:
6999 return "DW_CFA_def_cfa_expression";
7000 case DW_CFA_expression:
7001 return "DW_CFA_expression";
7002 case DW_CFA_offset_extended_sf:
7003 return "DW_CFA_offset_extended_sf";
7004 case DW_CFA_def_cfa_sf:
7005 return "DW_CFA_def_cfa_sf";
7006 case DW_CFA_def_cfa_offset_sf:
7007 return "DW_CFA_def_cfa_offset_sf";
7009 /* SGI/MIPS specific */
7010 case DW_CFA_MIPS_advance_loc8:
7011 return "DW_CFA_MIPS_advance_loc8";
7013 /* GNU extensions */
7014 case DW_CFA_GNU_window_save:
7015 return "DW_CFA_GNU_window_save";
7016 case DW_CFA_GNU_args_size:
7017 return "DW_CFA_GNU_args_size";
7018 case DW_CFA_GNU_negative_offset_extended:
7019 return "DW_CFA_GNU_negative_offset_extended";
7022 return "DW_CFA_<unknown>";
7028 dump_die (struct die_info *die)
7032 fprintf_unfiltered (gdb_stderr, "Die: %s (abbrev = %d, offset = %d)\n",
7033 dwarf_tag_name (die->tag), die->abbrev, die->offset);
7034 fprintf_unfiltered (gdb_stderr, "\thas children: %s\n",
7035 dwarf_bool_name (die->child != NULL));
7037 fprintf_unfiltered (gdb_stderr, "\tattributes:\n");
7038 for (i = 0; i < die->num_attrs; ++i)
7040 fprintf_unfiltered (gdb_stderr, "\t\t%s (%s) ",
7041 dwarf_attr_name (die->attrs[i].name),
7042 dwarf_form_name (die->attrs[i].form));
7043 switch (die->attrs[i].form)
7045 case DW_FORM_ref_addr:
7047 fprintf_unfiltered (gdb_stderr, "address: ");
7048 print_address_numeric (DW_ADDR (&die->attrs[i]), 1, gdb_stderr);
7050 case DW_FORM_block2:
7051 case DW_FORM_block4:
7053 case DW_FORM_block1:
7054 fprintf_unfiltered (gdb_stderr, "block: size %d", DW_BLOCK (&die->attrs[i])->size);
7065 fprintf_unfiltered (gdb_stderr, "constant: %ld", DW_UNSND (&die->attrs[i]));
7067 case DW_FORM_string:
7069 fprintf_unfiltered (gdb_stderr, "string: \"%s\"",
7070 DW_STRING (&die->attrs[i])
7071 ? DW_STRING (&die->attrs[i]) : "");
7074 if (DW_UNSND (&die->attrs[i]))
7075 fprintf_unfiltered (gdb_stderr, "flag: TRUE");
7077 fprintf_unfiltered (gdb_stderr, "flag: FALSE");
7079 case DW_FORM_indirect:
7080 /* the reader will have reduced the indirect form to
7081 the "base form" so this form should not occur */
7082 fprintf_unfiltered (gdb_stderr, "unexpected attribute form: DW_FORM_indirect");
7085 fprintf_unfiltered (gdb_stderr, "unsupported attribute form: %d.",
7086 die->attrs[i].form);
7088 fprintf_unfiltered (gdb_stderr, "\n");
7093 dump_die_list (struct die_info *die)
7098 if (die->child != NULL)
7099 dump_die_list (die->child);
7100 if (die->sibling != NULL)
7101 dump_die_list (die->sibling);
7106 store_in_ref_table (unsigned int offset, struct die_info *die)
7109 struct die_info *old;
7111 h = (offset % REF_HASH_SIZE);
7112 old = die_ref_table[h];
7113 die->next_ref = old;
7114 die_ref_table[h] = die;
7119 dwarf2_empty_hash_tables (void)
7121 memset (die_ref_table, 0, sizeof (die_ref_table));
7125 dwarf2_get_ref_die_offset (struct attribute *attr)
7127 unsigned int result = 0;
7131 case DW_FORM_ref_addr:
7132 result = DW_ADDR (attr);
7138 case DW_FORM_ref_udata:
7139 result = cu_header_offset + DW_UNSND (attr);
7142 complaint (&symfile_complaints,
7143 "unsupported die ref attribute form: '%s'",
7144 dwarf_form_name (attr->form));
7149 /* Return the constant value held by the given attribute. Return -1
7150 if the value held by the attribute is not constant. */
7153 dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
7155 if (attr->form == DW_FORM_sdata)
7156 return DW_SND (attr);
7157 else if (attr->form == DW_FORM_udata
7158 || attr->form == DW_FORM_data1
7159 || attr->form == DW_FORM_data2
7160 || attr->form == DW_FORM_data4
7161 || attr->form == DW_FORM_data8)
7162 return DW_UNSND (attr);
7165 complaint (&symfile_complaints, "Attribute value is not a constant (%s)",
7166 dwarf_form_name (attr->form));
7167 return default_value;
7171 static struct die_info *
7172 follow_die_ref (unsigned int offset)
7174 struct die_info *die;
7177 h = (offset % REF_HASH_SIZE);
7178 die = die_ref_table[h];
7181 if (die->offset == offset)
7185 die = die->next_ref;
7190 static struct type *
7191 dwarf2_fundamental_type (struct objfile *objfile, int typeid)
7193 if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
7195 error ("Dwarf Error: internal error - invalid fundamental type id %d [in module %s]",
7196 typeid, objfile->name);
7199 /* Look for this particular type in the fundamental type vector. If
7200 one is not found, create and install one appropriate for the
7201 current language and the current target machine. */
7203 if (ftypes[typeid] == NULL)
7205 ftypes[typeid] = cu_language_defn->la_fund_type (objfile, typeid);
7208 return (ftypes[typeid]);
7211 /* Decode simple location descriptions.
7212 Given a pointer to a dwarf block that defines a location, compute
7213 the location and return the value.
7215 NOTE drow/2003-11-18: This function is called in two situations
7216 now: for the address of static or global variables (partial symbols
7217 only) and for offsets into structures which are expected to be
7218 (more or less) constant. The partial symbol case should go away,
7219 and only the constant case should remain. That will let this
7220 function complain more accurately. A few special modes are allowed
7221 without complaint for global variables (for instance, global
7222 register values and thread-local values).
7224 A location description containing no operations indicates that the
7225 object is optimized out. The return value is 0 for that case.
7226 FIXME drow/2003-11-16: No callers check for this case any more; soon all
7227 callers will only want a very basic result and this can become a
7230 When the result is a register number, the global isreg flag is set,
7231 otherwise it is cleared.
7233 Note that stack[0] is unused except as a default error return.
7234 Note that stack overflow is not yet handled. */
7237 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
7239 struct objfile *objfile = cu->objfile;
7240 struct comp_unit_head *cu_header = &cu->header;
7242 int size = blk->size;
7243 char *data = blk->data;
7244 CORE_ADDR stack[64];
7246 unsigned int bytes_read, unsnd;
7291 stack[++stacki] = op - DW_OP_lit0;
7327 stack[++stacki] = op - DW_OP_reg0;
7329 dwarf2_complex_location_expr_complaint ();
7334 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
7336 stack[++stacki] = unsnd;
7338 dwarf2_complex_location_expr_complaint ();
7342 stack[++stacki] = read_address (objfile->obfd, &data[i],
7348 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
7353 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
7358 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
7363 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
7368 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
7373 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
7378 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
7384 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
7389 stack[stacki + 1] = stack[stacki];
7394 stack[stacki - 1] += stack[stacki];
7398 case DW_OP_plus_uconst:
7399 stack[stacki] += read_unsigned_leb128 (NULL, (data + i), &bytes_read);
7404 stack[stacki - 1] -= stack[stacki];
7409 /* If we're not the last op, then we definitely can't encode
7410 this using GDB's address_class enum. This is valid for partial
7411 global symbols, although the variable's address will be bogus
7414 dwarf2_complex_location_expr_complaint ();
7417 case DW_OP_GNU_push_tls_address:
7418 /* The top of the stack has the offset from the beginning
7419 of the thread control block at which the variable is located. */
7420 /* Nothing should follow this operator, so the top of stack would
7422 /* This is valid for partial global symbols, but the variable's
7423 address will be bogus in the psymtab. */
7425 dwarf2_complex_location_expr_complaint ();
7429 complaint (&symfile_complaints, "unsupported stack op: '%s'",
7430 dwarf_stack_op_name (op));
7431 return (stack[stacki]);
7434 return (stack[stacki]);
7437 /* memory allocation interface */
7440 dwarf2_free_tmp_obstack (void *ignore)
7442 obstack_free (&dwarf2_tmp_obstack, NULL);
7445 static struct dwarf_block *
7446 dwarf_alloc_block (void)
7448 struct dwarf_block *blk;
7450 blk = (struct dwarf_block *)
7451 obstack_alloc (&dwarf2_tmp_obstack, sizeof (struct dwarf_block));
7455 static struct abbrev_info *
7456 dwarf_alloc_abbrev (void)
7458 struct abbrev_info *abbrev;
7460 abbrev = (struct abbrev_info *) xmalloc (sizeof (struct abbrev_info));
7461 memset (abbrev, 0, sizeof (struct abbrev_info));
7465 static struct die_info *
7466 dwarf_alloc_die (void)
7468 struct die_info *die;
7470 die = (struct die_info *) xmalloc (sizeof (struct die_info));
7471 memset (die, 0, sizeof (struct die_info));
7476 /* Macro support. */
7479 /* Return the full name of file number I in *LH's file name table.
7480 Use COMP_DIR as the name of the current directory of the
7481 compilation. The result is allocated using xmalloc; the caller is
7482 responsible for freeing it. */
7484 file_full_name (int file, struct line_header *lh, const char *comp_dir)
7486 struct file_entry *fe = &lh->file_names[file - 1];
7488 if (IS_ABSOLUTE_PATH (fe->name))
7489 return xstrdup (fe->name);
7497 dir = lh->include_dirs[fe->dir_index - 1];
7503 dir_len = strlen (dir);
7504 full_name = xmalloc (dir_len + 1 + strlen (fe->name) + 1);
7505 strcpy (full_name, dir);
7506 full_name[dir_len] = '/';
7507 strcpy (full_name + dir_len + 1, fe->name);
7511 return xstrdup (fe->name);
7516 static struct macro_source_file *
7517 macro_start_file (int file, int line,
7518 struct macro_source_file *current_file,
7519 const char *comp_dir,
7520 struct line_header *lh, struct objfile *objfile)
7522 /* The full name of this source file. */
7523 char *full_name = file_full_name (file, lh, comp_dir);
7525 /* We don't create a macro table for this compilation unit
7526 at all until we actually get a filename. */
7527 if (! pending_macros)
7528 pending_macros = new_macro_table (&objfile->symbol_obstack,
7529 objfile->macro_cache);
7532 /* If we have no current file, then this must be the start_file
7533 directive for the compilation unit's main source file. */
7534 current_file = macro_set_main (pending_macros, full_name);
7536 current_file = macro_include (current_file, line, full_name);
7540 return current_file;
7544 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
7545 followed by a null byte. */
7547 copy_string (const char *buf, int len)
7549 char *s = xmalloc (len + 1);
7550 memcpy (s, buf, len);
7558 consume_improper_spaces (const char *p, const char *body)
7562 complaint (&symfile_complaints,
7563 "macro definition contains spaces in formal argument list:\n`%s'",
7575 parse_macro_definition (struct macro_source_file *file, int line,
7580 /* The body string takes one of two forms. For object-like macro
7581 definitions, it should be:
7583 <macro name> " " <definition>
7585 For function-like macro definitions, it should be:
7587 <macro name> "() " <definition>
7589 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
7591 Spaces may appear only where explicitly indicated, and in the
7594 The Dwarf 2 spec says that an object-like macro's name is always
7595 followed by a space, but versions of GCC around March 2002 omit
7596 the space when the macro's definition is the empty string.
7598 The Dwarf 2 spec says that there should be no spaces between the
7599 formal arguments in a function-like macro's formal argument list,
7600 but versions of GCC around March 2002 include spaces after the
7604 /* Find the extent of the macro name. The macro name is terminated
7605 by either a space or null character (for an object-like macro) or
7606 an opening paren (for a function-like macro). */
7607 for (p = body; *p; p++)
7608 if (*p == ' ' || *p == '(')
7611 if (*p == ' ' || *p == '\0')
7613 /* It's an object-like macro. */
7614 int name_len = p - body;
7615 char *name = copy_string (body, name_len);
7616 const char *replacement;
7619 replacement = body + name_len + 1;
7622 dwarf2_macro_malformed_definition_complaint (body);
7623 replacement = body + name_len;
7626 macro_define_object (file, line, name, replacement);
7632 /* It's a function-like macro. */
7633 char *name = copy_string (body, p - body);
7636 char **argv = xmalloc (argv_size * sizeof (*argv));
7640 p = consume_improper_spaces (p, body);
7642 /* Parse the formal argument list. */
7643 while (*p && *p != ')')
7645 /* Find the extent of the current argument name. */
7646 const char *arg_start = p;
7648 while (*p && *p != ',' && *p != ')' && *p != ' ')
7651 if (! *p || p == arg_start)
7652 dwarf2_macro_malformed_definition_complaint (body);
7655 /* Make sure argv has room for the new argument. */
7656 if (argc >= argv_size)
7659 argv = xrealloc (argv, argv_size * sizeof (*argv));
7662 argv[argc++] = copy_string (arg_start, p - arg_start);
7665 p = consume_improper_spaces (p, body);
7667 /* Consume the comma, if present. */
7672 p = consume_improper_spaces (p, body);
7681 /* Perfectly formed definition, no complaints. */
7682 macro_define_function (file, line, name,
7683 argc, (const char **) argv,
7685 else if (*p == '\0')
7687 /* Complain, but do define it. */
7688 dwarf2_macro_malformed_definition_complaint (body);
7689 macro_define_function (file, line, name,
7690 argc, (const char **) argv,
7694 /* Just complain. */
7695 dwarf2_macro_malformed_definition_complaint (body);
7698 /* Just complain. */
7699 dwarf2_macro_malformed_definition_complaint (body);
7705 for (i = 0; i < argc; i++)
7711 dwarf2_macro_malformed_definition_complaint (body);
7716 dwarf_decode_macros (struct line_header *lh, unsigned int offset,
7717 char *comp_dir, bfd *abfd,
7718 struct dwarf2_cu *cu)
7720 char *mac_ptr, *mac_end;
7721 struct macro_source_file *current_file = 0;
7723 if (dwarf_macinfo_buffer == NULL)
7725 complaint (&symfile_complaints, "missing .debug_macinfo section");
7729 mac_ptr = dwarf_macinfo_buffer + offset;
7730 mac_end = dwarf_macinfo_buffer + dwarf_macinfo_size;
7734 enum dwarf_macinfo_record_type macinfo_type;
7736 /* Do we at least have room for a macinfo type byte? */
7737 if (mac_ptr >= mac_end)
7739 dwarf2_macros_too_long_complaint ();
7743 macinfo_type = read_1_byte (abfd, mac_ptr);
7746 switch (macinfo_type)
7748 /* A zero macinfo type indicates the end of the macro
7753 case DW_MACINFO_define:
7754 case DW_MACINFO_undef:
7760 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
7761 mac_ptr += bytes_read;
7762 body = read_string (abfd, mac_ptr, &bytes_read);
7763 mac_ptr += bytes_read;
7766 complaint (&symfile_complaints,
7767 "debug info gives macro %s outside of any file: %s",
7769 DW_MACINFO_define ? "definition" : macinfo_type ==
7770 DW_MACINFO_undef ? "undefinition" :
7771 "something-or-other", body);
7774 if (macinfo_type == DW_MACINFO_define)
7775 parse_macro_definition (current_file, line, body);
7776 else if (macinfo_type == DW_MACINFO_undef)
7777 macro_undef (current_file, line, body);
7782 case DW_MACINFO_start_file:
7787 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
7788 mac_ptr += bytes_read;
7789 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
7790 mac_ptr += bytes_read;
7792 current_file = macro_start_file (file, line,
7793 current_file, comp_dir,
7798 case DW_MACINFO_end_file:
7800 complaint (&symfile_complaints,
7801 "macro debug info has an unmatched `close_file' directive");
7804 current_file = current_file->included_by;
7807 enum dwarf_macinfo_record_type next_type;
7809 /* GCC circa March 2002 doesn't produce the zero
7810 type byte marking the end of the compilation
7811 unit. Complain if it's not there, but exit no
7814 /* Do we at least have room for a macinfo type byte? */
7815 if (mac_ptr >= mac_end)
7817 dwarf2_macros_too_long_complaint ();
7821 /* We don't increment mac_ptr here, so this is just
7823 next_type = read_1_byte (abfd, mac_ptr);
7825 complaint (&symfile_complaints,
7826 "no terminating 0-type entry for macros in `.debug_macinfo' section");
7833 case DW_MACINFO_vendor_ext:
7839 constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
7840 mac_ptr += bytes_read;
7841 string = read_string (abfd, mac_ptr, &bytes_read);
7842 mac_ptr += bytes_read;
7844 /* We don't recognize any vendor extensions. */
7851 /* Check if the attribute's form is a DW_FORM_block*
7852 if so return true else false. */
7854 attr_form_is_block (struct attribute *attr)
7856 return (attr == NULL ? 0 :
7857 attr->form == DW_FORM_block1
7858 || attr->form == DW_FORM_block2
7859 || attr->form == DW_FORM_block4
7860 || attr->form == DW_FORM_block);
7864 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
7865 struct dwarf2_cu *cu)
7867 if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
7869 struct dwarf2_loclist_baton *baton;
7871 baton = obstack_alloc (&cu->objfile->symbol_obstack,
7872 sizeof (struct dwarf2_loclist_baton));
7873 baton->objfile = cu->objfile;
7875 /* We don't know how long the location list is, but make sure we
7876 don't run off the edge of the section. */
7877 baton->size = dwarf_loc_size - DW_UNSND (attr);
7878 baton->data = dwarf_loc_buffer + DW_UNSND (attr);
7879 baton->base_address = cu->header.base_address;
7880 if (cu->header.base_known == 0)
7881 complaint (&symfile_complaints,
7882 "Location list used without specifying the CU base address.");
7884 SYMBOL_LOCATION_FUNCS (sym) = &dwarf2_loclist_funcs;
7885 SYMBOL_LOCATION_BATON (sym) = baton;
7889 struct dwarf2_locexpr_baton *baton;
7891 baton = obstack_alloc (&cu->objfile->symbol_obstack,
7892 sizeof (struct dwarf2_locexpr_baton));
7893 baton->objfile = cu->objfile;
7895 if (attr_form_is_block (attr))
7897 /* Note that we're just copying the block's data pointer
7898 here, not the actual data. We're still pointing into the
7899 dwarf_info_buffer for SYM's objfile; right now we never
7900 release that buffer, but when we do clean up properly
7901 this may need to change. */
7902 baton->size = DW_BLOCK (attr)->size;
7903 baton->data = DW_BLOCK (attr)->data;
7907 dwarf2_invalid_attrib_class_complaint ("location description",
7908 SYMBOL_NATURAL_NAME (sym));
7913 SYMBOL_LOCATION_FUNCS (sym) = &dwarf2_locexpr_funcs;
7914 SYMBOL_LOCATION_BATON (sym) = baton;