* dwarf2read.c (read_array_type): Set the type name if the name
[external/binutils.git] / gdb / dwarf2read.c
1 /* DWARF 2 debugging format support for GDB.
2
3    Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4                  2002, 2003, 2004, 2005, 2006
5    Free Software Foundation, Inc.
6
7    Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
8    Inc.  with support from Florida State University (under contract
9    with the Ada Joint Program Office), and Silicon Graphics, Inc.
10    Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
11    based on Fred Fish's (Cygnus Support) implementation of DWARF 1
12    support in dwarfread.c
13
14    This file is part of GDB.
15
16    This program is free software; you can redistribute it and/or modify
17    it under the terms of the GNU General Public License as published by
18    the Free Software Foundation; either version 2 of the License, or (at
19    your option) any later version.
20
21    This program is distributed in the hope that it will be useful, but
22    WITHOUT ANY WARRANTY; without even the implied warranty of
23    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24    General Public License for more details.
25
26    You should have received a copy of the GNU General Public License
27    along with this program; if not, write to the Free Software
28    Foundation, Inc., 51 Franklin Street, Fifth Floor,
29    Boston, MA 02110-1301, USA.  */
30
31 #include "defs.h"
32 #include "bfd.h"
33 #include "symtab.h"
34 #include "gdbtypes.h"
35 #include "objfiles.h"
36 #include "elf/dwarf2.h"
37 #include "buildsym.h"
38 #include "demangle.h"
39 #include "expression.h"
40 #include "filenames.h"  /* for DOSish file names */
41 #include "macrotab.h"
42 #include "language.h"
43 #include "complaints.h"
44 #include "bcache.h"
45 #include "dwarf2expr.h"
46 #include "dwarf2loc.h"
47 #include "cp-support.h"
48 #include "hashtab.h"
49 #include "command.h"
50 #include "gdbcmd.h"
51
52 #include <fcntl.h>
53 #include "gdb_string.h"
54 #include "gdb_assert.h"
55 #include <sys/types.h>
56
57 /* A note on memory usage for this file.
58    
59    At the present time, this code reads the debug info sections into
60    the objfile's objfile_obstack.  A definite improvement for startup
61    time, on platforms which do not emit relocations for debug
62    sections, would be to use mmap instead.  The object's complete
63    debug information is loaded into memory, partly to simplify
64    absolute DIE references.
65
66    Whether using obstacks or mmap, the sections should remain loaded
67    until the objfile is released, and pointers into the section data
68    can be used for any other data associated to the objfile (symbol
69    names, type names, location expressions to name a few).  */
70
71 #ifndef DWARF2_REG_TO_REGNUM
72 #define DWARF2_REG_TO_REGNUM(REG) (REG)
73 #endif
74
75 #if 0
76 /* .debug_info header for a compilation unit
77    Because of alignment constraints, this structure has padding and cannot
78    be mapped directly onto the beginning of the .debug_info section.  */
79 typedef struct comp_unit_header
80   {
81     unsigned int length;        /* length of the .debug_info
82                                    contribution */
83     unsigned short version;     /* version number -- 2 for DWARF
84                                    version 2 */
85     unsigned int abbrev_offset; /* offset into .debug_abbrev section */
86     unsigned char addr_size;    /* byte size of an address -- 4 */
87   }
88 _COMP_UNIT_HEADER;
89 #define _ACTUAL_COMP_UNIT_HEADER_SIZE 11
90 #endif
91
92 /* .debug_pubnames header
93    Because of alignment constraints, this structure has padding and cannot
94    be mapped directly onto the beginning of the .debug_info section.  */
95 typedef struct pubnames_header
96   {
97     unsigned int length;        /* length of the .debug_pubnames
98                                    contribution  */
99     unsigned char version;      /* version number -- 2 for DWARF
100                                    version 2 */
101     unsigned int info_offset;   /* offset into .debug_info section */
102     unsigned int info_size;     /* byte size of .debug_info section
103                                    portion */
104   }
105 _PUBNAMES_HEADER;
106 #define _ACTUAL_PUBNAMES_HEADER_SIZE 13
107
108 /* .debug_pubnames header
109    Because of alignment constraints, this structure has padding and cannot
110    be mapped directly onto the beginning of the .debug_info section.  */
111 typedef struct aranges_header
112   {
113     unsigned int length;        /* byte len of the .debug_aranges
114                                    contribution */
115     unsigned short version;     /* version number -- 2 for DWARF
116                                    version 2 */
117     unsigned int info_offset;   /* offset into .debug_info section */
118     unsigned char addr_size;    /* byte size of an address */
119     unsigned char seg_size;     /* byte size of segment descriptor */
120   }
121 _ARANGES_HEADER;
122 #define _ACTUAL_ARANGES_HEADER_SIZE 12
123
124 /* .debug_line statement program prologue
125    Because of alignment constraints, this structure has padding and cannot
126    be mapped directly onto the beginning of the .debug_info section.  */
127 typedef struct statement_prologue
128   {
129     unsigned int total_length;  /* byte length of the statement
130                                    information */
131     unsigned short version;     /* version number -- 2 for DWARF
132                                    version 2 */
133     unsigned int prologue_length;       /* # bytes between prologue &
134                                            stmt program */
135     unsigned char minimum_instruction_length;   /* byte size of
136                                                    smallest instr */
137     unsigned char default_is_stmt;      /* initial value of is_stmt
138                                            register */
139     char line_base;
140     unsigned char line_range;
141     unsigned char opcode_base;  /* number assigned to first special
142                                    opcode */
143     unsigned char *standard_opcode_lengths;
144   }
145 _STATEMENT_PROLOGUE;
146
147 static const struct objfile_data *dwarf2_objfile_data_key;
148
149 struct dwarf2_per_objfile
150 {
151   /* Sizes of debugging sections.  */
152   unsigned int info_size;
153   unsigned int abbrev_size;
154   unsigned int line_size;
155   unsigned int pubnames_size;
156   unsigned int aranges_size;
157   unsigned int loc_size;
158   unsigned int macinfo_size;
159   unsigned int str_size;
160   unsigned int ranges_size;
161   unsigned int frame_size;
162   unsigned int eh_frame_size;
163
164   /* Loaded data from the sections.  */
165   gdb_byte *info_buffer;
166   gdb_byte *abbrev_buffer;
167   gdb_byte *line_buffer;
168   gdb_byte *str_buffer;
169   gdb_byte *macinfo_buffer;
170   gdb_byte *ranges_buffer;
171   gdb_byte *loc_buffer;
172
173   /* A list of all the compilation units.  This is used to locate
174      the target compilation unit of a particular reference.  */
175   struct dwarf2_per_cu_data **all_comp_units;
176
177   /* The number of compilation units in ALL_COMP_UNITS.  */
178   int n_comp_units;
179
180   /* A chain of compilation units that are currently read in, so that
181      they can be freed later.  */
182   struct dwarf2_per_cu_data *read_in_chain;
183
184   /* A flag indicating wether this objfile has a section loaded at a
185      VMA of 0.  */
186   int has_section_at_zero;
187 };
188
189 static struct dwarf2_per_objfile *dwarf2_per_objfile;
190
191 static asection *dwarf_info_section;
192 static asection *dwarf_abbrev_section;
193 static asection *dwarf_line_section;
194 static asection *dwarf_pubnames_section;
195 static asection *dwarf_aranges_section;
196 static asection *dwarf_loc_section;
197 static asection *dwarf_macinfo_section;
198 static asection *dwarf_str_section;
199 static asection *dwarf_ranges_section;
200 asection *dwarf_frame_section;
201 asection *dwarf_eh_frame_section;
202
203 /* names of the debugging sections */
204
205 #define INFO_SECTION     ".debug_info"
206 #define ABBREV_SECTION   ".debug_abbrev"
207 #define LINE_SECTION     ".debug_line"
208 #define PUBNAMES_SECTION ".debug_pubnames"
209 #define ARANGES_SECTION  ".debug_aranges"
210 #define LOC_SECTION      ".debug_loc"
211 #define MACINFO_SECTION  ".debug_macinfo"
212 #define STR_SECTION      ".debug_str"
213 #define RANGES_SECTION   ".debug_ranges"
214 #define FRAME_SECTION    ".debug_frame"
215 #define EH_FRAME_SECTION ".eh_frame"
216
217 /* local data types */
218
219 /* We hold several abbreviation tables in memory at the same time. */
220 #ifndef ABBREV_HASH_SIZE
221 #define ABBREV_HASH_SIZE 121
222 #endif
223
224 /* The data in a compilation unit header, after target2host
225    translation, looks like this.  */
226 struct comp_unit_head
227 {
228   unsigned long length;
229   short version;
230   unsigned int abbrev_offset;
231   unsigned char addr_size;
232   unsigned char signed_addr_p;
233
234   /* Size of file offsets; either 4 or 8.  */
235   unsigned int offset_size;
236
237   /* Size of the length field; either 4 or 12.  */
238   unsigned int initial_length_size;
239
240   /* Offset to the first byte of this compilation unit header in the
241      .debug_info section, for resolving relative reference dies.  */
242   unsigned int offset;
243
244   /* Pointer to this compilation unit header in the .debug_info
245      section.  */
246   gdb_byte *cu_head_ptr;
247
248   /* Pointer to the first die of this compilation unit.  This will be
249      the first byte following the compilation unit header.  */
250   gdb_byte *first_die_ptr;
251
252   /* Pointer to the next compilation unit header in the program.  */
253   struct comp_unit_head *next;
254
255   /* Base address of this compilation unit.  */
256   CORE_ADDR base_address;
257
258   /* Non-zero if base_address has been set.  */
259   int base_known;
260 };
261
262 /* Fixed size for the DIE hash table.  */
263 #ifndef REF_HASH_SIZE
264 #define REF_HASH_SIZE 1021
265 #endif
266
267 /* Internal state when decoding a particular compilation unit.  */
268 struct dwarf2_cu
269 {
270   /* The objfile containing this compilation unit.  */
271   struct objfile *objfile;
272
273   /* The header of the compilation unit.
274
275      FIXME drow/2003-11-10: Some of the things from the comp_unit_head
276      should logically be moved to the dwarf2_cu structure.  */
277   struct comp_unit_head header;
278
279   struct function_range *first_fn, *last_fn, *cached_fn;
280
281   /* The language we are debugging.  */
282   enum language language;
283   const struct language_defn *language_defn;
284
285   const char *producer;
286
287   /* The generic symbol table building routines have separate lists for
288      file scope symbols and all all other scopes (local scopes).  So
289      we need to select the right one to pass to add_symbol_to_list().
290      We do it by keeping a pointer to the correct list in list_in_scope.
291
292      FIXME: The original dwarf code just treated the file scope as the
293      first local scope, and all other local scopes as nested local
294      scopes, and worked fine.  Check to see if we really need to
295      distinguish these in buildsym.c.  */
296   struct pending **list_in_scope;
297
298   /* Maintain an array of referenced fundamental types for the current
299      compilation unit being read.  For DWARF version 1, we have to construct
300      the fundamental types on the fly, since no information about the
301      fundamental types is supplied.  Each such fundamental type is created by
302      calling a language dependent routine to create the type, and then a
303      pointer to that type is then placed in the array at the index specified
304      by it's FT_<TYPENAME> value.  The array has a fixed size set by the
305      FT_NUM_MEMBERS compile time constant, which is the number of predefined
306      fundamental types gdb knows how to construct.  */
307   struct type *ftypes[FT_NUM_MEMBERS];  /* Fundamental types */
308
309   /* DWARF abbreviation table associated with this compilation unit.  */
310   struct abbrev_info **dwarf2_abbrevs;
311
312   /* Storage for the abbrev table.  */
313   struct obstack abbrev_obstack;
314
315   /* Hash table holding all the loaded partial DIEs.  */
316   htab_t partial_dies;
317
318   /* Storage for things with the same lifetime as this read-in compilation
319      unit, including partial DIEs.  */
320   struct obstack comp_unit_obstack;
321
322   /* When multiple dwarf2_cu structures are living in memory, this field
323      chains them all together, so that they can be released efficiently.
324      We will probably also want a generation counter so that most-recently-used
325      compilation units are cached...  */
326   struct dwarf2_per_cu_data *read_in_chain;
327
328   /* Backchain to our per_cu entry if the tree has been built.  */
329   struct dwarf2_per_cu_data *per_cu;
330
331   /* How many compilation units ago was this CU last referenced?  */
332   int last_used;
333
334   /* A hash table of die offsets for following references.  */
335   struct die_info *die_ref_table[REF_HASH_SIZE];
336
337   /* Full DIEs if read in.  */
338   struct die_info *dies;
339
340   /* A set of pointers to dwarf2_per_cu_data objects for compilation
341      units referenced by this one.  Only set during full symbol processing;
342      partial symbol tables do not have dependencies.  */
343   htab_t dependencies;
344
345   /* Mark used when releasing cached dies.  */
346   unsigned int mark : 1;
347
348   /* This flag will be set if this compilation unit might include
349      inter-compilation-unit references.  */
350   unsigned int has_form_ref_addr : 1;
351
352   /* This flag will be set if this compilation unit includes any
353      DW_TAG_namespace DIEs.  If we know that there are explicit
354      DIEs for namespaces, we don't need to try to infer them
355      from mangled names.  */
356   unsigned int has_namespace_info : 1;
357 };
358
359 /* Persistent data held for a compilation unit, even when not
360    processing it.  We put a pointer to this structure in the
361    read_symtab_private field of the psymtab.  If we encounter
362    inter-compilation-unit references, we also maintain a sorted
363    list of all compilation units.  */
364
365 struct dwarf2_per_cu_data
366 {
367   /* The start offset and length of this compilation unit.  2**30-1
368      bytes should suffice to store the length of any compilation unit
369      - if it doesn't, GDB will fall over anyway.  */
370   unsigned long offset;
371   unsigned long length : 30;
372
373   /* Flag indicating this compilation unit will be read in before
374      any of the current compilation units are processed.  */
375   unsigned long queued : 1;
376
377   /* This flag will be set if we need to load absolutely all DIEs
378      for this compilation unit, instead of just the ones we think
379      are interesting.  It gets set if we look for a DIE in the
380      hash table and don't find it.  */
381   unsigned int load_all_dies : 1;
382
383   /* Set iff currently read in.  */
384   struct dwarf2_cu *cu;
385
386   /* If full symbols for this CU have been read in, then this field
387      holds a map of DIE offsets to types.  It isn't always possible
388      to reconstruct this information later, so we have to preserve
389      it.  */
390   htab_t type_hash;
391
392   /* The partial symbol table associated with this compilation unit.  */
393   struct partial_symtab *psymtab;
394 };
395
396 /* The line number information for a compilation unit (found in the
397    .debug_line section) begins with a "statement program header",
398    which contains the following information.  */
399 struct line_header
400 {
401   unsigned int total_length;
402   unsigned short version;
403   unsigned int header_length;
404   unsigned char minimum_instruction_length;
405   unsigned char default_is_stmt;
406   int line_base;
407   unsigned char line_range;
408   unsigned char opcode_base;
409
410   /* standard_opcode_lengths[i] is the number of operands for the
411      standard opcode whose value is i.  This means that
412      standard_opcode_lengths[0] is unused, and the last meaningful
413      element is standard_opcode_lengths[opcode_base - 1].  */
414   unsigned char *standard_opcode_lengths;
415
416   /* The include_directories table.  NOTE!  These strings are not
417      allocated with xmalloc; instead, they are pointers into
418      debug_line_buffer.  If you try to free them, `free' will get
419      indigestion.  */
420   unsigned int num_include_dirs, include_dirs_size;
421   char **include_dirs;
422
423   /* The file_names table.  NOTE!  These strings are not allocated
424      with xmalloc; instead, they are pointers into debug_line_buffer.
425      Don't try to free them directly.  */
426   unsigned int num_file_names, file_names_size;
427   struct file_entry
428   {
429     char *name;
430     unsigned int dir_index;
431     unsigned int mod_time;
432     unsigned int length;
433     int included_p; /* Non-zero if referenced by the Line Number Program.  */
434   } *file_names;
435
436   /* The start and end of the statement program following this
437      header.  These point into dwarf2_per_objfile->line_buffer.  */
438   gdb_byte *statement_program_start, *statement_program_end;
439 };
440
441 /* When we construct a partial symbol table entry we only
442    need this much information. */
443 struct partial_die_info
444   {
445     /* Offset of this DIE.  */
446     unsigned int offset;
447
448     /* DWARF-2 tag for this DIE.  */
449     ENUM_BITFIELD(dwarf_tag) tag : 16;
450
451     /* Language code associated with this DIE.  This is only used
452        for the compilation unit DIE.  */
453     unsigned int language : 8;
454
455     /* Assorted flags describing the data found in this DIE.  */
456     unsigned int has_children : 1;
457     unsigned int is_external : 1;
458     unsigned int is_declaration : 1;
459     unsigned int has_type : 1;
460     unsigned int has_specification : 1;
461     unsigned int has_stmt_list : 1;
462     unsigned int has_pc_info : 1;
463
464     /* Flag set if the SCOPE field of this structure has been
465        computed.  */
466     unsigned int scope_set : 1;
467
468     /* The name of this DIE.  Normally the value of DW_AT_name, but
469        sometimes DW_TAG_MIPS_linkage_name or a string computed in some
470        other fashion.  */
471     char *name;
472     char *dirname;
473
474     /* The scope to prepend to our children.  This is generally
475        allocated on the comp_unit_obstack, so will disappear
476        when this compilation unit leaves the cache.  */
477     char *scope;
478
479     /* The location description associated with this DIE, if any.  */
480     struct dwarf_block *locdesc;
481
482     /* If HAS_PC_INFO, the PC range associated with this DIE.  */
483     CORE_ADDR lowpc;
484     CORE_ADDR highpc;
485
486     /* Pointer into the info_buffer pointing at the target of
487        DW_AT_sibling, if any.  */
488     gdb_byte *sibling;
489
490     /* If HAS_SPECIFICATION, the offset of the DIE referred to by
491        DW_AT_specification (or DW_AT_abstract_origin or
492        DW_AT_extension).  */
493     unsigned int spec_offset;
494
495     /* If HAS_STMT_LIST, the offset of the Line Number Information data.  */
496     unsigned int line_offset;
497
498     /* Pointers to this DIE's parent, first child, and next sibling,
499        if any.  */
500     struct partial_die_info *die_parent, *die_child, *die_sibling;
501   };
502
503 /* This data structure holds the information of an abbrev. */
504 struct abbrev_info
505   {
506     unsigned int number;        /* number identifying abbrev */
507     enum dwarf_tag tag;         /* dwarf tag */
508     unsigned short has_children;                /* boolean */
509     unsigned short num_attrs;   /* number of attributes */
510     struct attr_abbrev *attrs;  /* an array of attribute descriptions */
511     struct abbrev_info *next;   /* next in chain */
512   };
513
514 struct attr_abbrev
515   {
516     enum dwarf_attribute name;
517     enum dwarf_form form;
518   };
519
520 /* This data structure holds a complete die structure. */
521 struct die_info
522   {
523     enum dwarf_tag tag;         /* Tag indicating type of die */
524     unsigned int abbrev;        /* Abbrev number */
525     unsigned int offset;        /* Offset in .debug_info section */
526     unsigned int num_attrs;     /* Number of attributes */
527     struct attribute *attrs;    /* An array of attributes */
528     struct die_info *next_ref;  /* Next die in ref hash table */
529
530     /* The dies in a compilation unit form an n-ary tree.  PARENT
531        points to this die's parent; CHILD points to the first child of
532        this node; and all the children of a given node are chained
533        together via their SIBLING fields, terminated by a die whose
534        tag is zero.  */
535     struct die_info *child;     /* Its first child, if any.  */
536     struct die_info *sibling;   /* Its next sibling, if any.  */
537     struct die_info *parent;    /* Its parent, if any.  */
538
539     struct type *type;          /* Cached type information */
540   };
541
542 /* Attributes have a name and a value */
543 struct attribute
544   {
545     enum dwarf_attribute name;
546     enum dwarf_form form;
547     union
548       {
549         char *str;
550         struct dwarf_block *blk;
551         unsigned long unsnd;
552         long int snd;
553         CORE_ADDR addr;
554       }
555     u;
556   };
557
558 struct function_range
559 {
560   const char *name;
561   CORE_ADDR lowpc, highpc;
562   int seen_line;
563   struct function_range *next;
564 };
565
566 /* Get at parts of an attribute structure */
567
568 #define DW_STRING(attr)    ((attr)->u.str)
569 #define DW_UNSND(attr)     ((attr)->u.unsnd)
570 #define DW_BLOCK(attr)     ((attr)->u.blk)
571 #define DW_SND(attr)       ((attr)->u.snd)
572 #define DW_ADDR(attr)      ((attr)->u.addr)
573
574 /* Blocks are a bunch of untyped bytes. */
575 struct dwarf_block
576   {
577     unsigned int size;
578     gdb_byte *data;
579   };
580
581 #ifndef ATTR_ALLOC_CHUNK
582 #define ATTR_ALLOC_CHUNK 4
583 #endif
584
585 /* Allocate fields for structs, unions and enums in this size.  */
586 #ifndef DW_FIELD_ALLOC_CHUNK
587 #define DW_FIELD_ALLOC_CHUNK 4
588 #endif
589
590 /* A zeroed version of a partial die for initialization purposes.  */
591 static struct partial_die_info zeroed_partial_die;
592
593 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
594    but this would require a corresponding change in unpack_field_as_long
595    and friends.  */
596 static int bits_per_byte = 8;
597
598 /* The routines that read and process dies for a C struct or C++ class
599    pass lists of data member fields and lists of member function fields
600    in an instance of a field_info structure, as defined below.  */
601 struct field_info
602   {
603     /* List of data member and baseclasses fields. */
604     struct nextfield
605       {
606         struct nextfield *next;
607         int accessibility;
608         int virtuality;
609         struct field field;
610       }
611      *fields;
612
613     /* Number of fields.  */
614     int nfields;
615
616     /* Number of baseclasses.  */
617     int nbaseclasses;
618
619     /* Set if the accesibility of one of the fields is not public.  */
620     int non_public_fields;
621
622     /* Member function fields array, entries are allocated in the order they
623        are encountered in the object file.  */
624     struct nextfnfield
625       {
626         struct nextfnfield *next;
627         struct fn_field fnfield;
628       }
629      *fnfields;
630
631     /* Member function fieldlist array, contains name of possibly overloaded
632        member function, number of overloaded member functions and a pointer
633        to the head of the member function field chain.  */
634     struct fnfieldlist
635       {
636         char *name;
637         int length;
638         struct nextfnfield *head;
639       }
640      *fnfieldlists;
641
642     /* Number of entries in the fnfieldlists array.  */
643     int nfnfields;
644   };
645
646 /* One item on the queue of compilation units to read in full symbols
647    for.  */
648 struct dwarf2_queue_item
649 {
650   struct dwarf2_per_cu_data *per_cu;
651   struct dwarf2_queue_item *next;
652 };
653
654 /* The current queue.  */
655 static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
656
657 /* Loaded secondary compilation units are kept in memory until they
658    have not been referenced for the processing of this many
659    compilation units.  Set this to zero to disable caching.  Cache
660    sizes of up to at least twenty will improve startup time for
661    typical inter-CU-reference binaries, at an obvious memory cost.  */
662 static int dwarf2_max_cache_age = 5;
663 static void
664 show_dwarf2_max_cache_age (struct ui_file *file, int from_tty,
665                            struct cmd_list_element *c, const char *value)
666 {
667   fprintf_filtered (file, _("\
668 The upper bound on the age of cached dwarf2 compilation units is %s.\n"),
669                     value);
670 }
671
672
673 /* Various complaints about symbol reading that don't abort the process */
674
675 static void
676 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
677 {
678   complaint (&symfile_complaints,
679              _("statement list doesn't fit in .debug_line section"));
680 }
681
682 static void
683 dwarf2_complex_location_expr_complaint (void)
684 {
685   complaint (&symfile_complaints, _("location expression too complex"));
686 }
687
688 static void
689 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
690                                               int arg3)
691 {
692   complaint (&symfile_complaints,
693              _("const value length mismatch for '%s', got %d, expected %d"), arg1,
694              arg2, arg3);
695 }
696
697 static void
698 dwarf2_macros_too_long_complaint (void)
699 {
700   complaint (&symfile_complaints,
701              _("macro info runs off end of `.debug_macinfo' section"));
702 }
703
704 static void
705 dwarf2_macro_malformed_definition_complaint (const char *arg1)
706 {
707   complaint (&symfile_complaints,
708              _("macro debug info contains a malformed macro definition:\n`%s'"),
709              arg1);
710 }
711
712 static void
713 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
714 {
715   complaint (&symfile_complaints,
716              _("invalid attribute class or form for '%s' in '%s'"), arg1, arg2);
717 }
718
719 /* local function prototypes */
720
721 static void dwarf2_locate_sections (bfd *, asection *, void *);
722
723 #if 0
724 static void dwarf2_build_psymtabs_easy (struct objfile *, int);
725 #endif
726
727 static void dwarf2_create_include_psymtab (char *, struct partial_symtab *,
728                                            struct objfile *);
729
730 static void dwarf2_build_include_psymtabs (struct dwarf2_cu *,
731                                            struct partial_die_info *,
732                                            struct partial_symtab *);
733
734 static void dwarf2_build_psymtabs_hard (struct objfile *, int);
735
736 static void scan_partial_symbols (struct partial_die_info *,
737                                   CORE_ADDR *, CORE_ADDR *,
738                                   struct dwarf2_cu *);
739
740 static void add_partial_symbol (struct partial_die_info *,
741                                 struct dwarf2_cu *);
742
743 static int pdi_needs_namespace (enum dwarf_tag tag);
744
745 static void add_partial_namespace (struct partial_die_info *pdi,
746                                    CORE_ADDR *lowpc, CORE_ADDR *highpc,
747                                    struct dwarf2_cu *cu);
748
749 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
750                                      struct dwarf2_cu *cu);
751
752 static gdb_byte *locate_pdi_sibling (struct partial_die_info *orig_pdi,
753                                      gdb_byte *info_ptr,
754                                      bfd *abfd,
755                                      struct dwarf2_cu *cu);
756
757 static void dwarf2_psymtab_to_symtab (struct partial_symtab *);
758
759 static void psymtab_to_symtab_1 (struct partial_symtab *);
760
761 gdb_byte *dwarf2_read_section (struct objfile *, asection *);
762
763 static void dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu);
764
765 static void dwarf2_free_abbrev_table (void *);
766
767 static struct abbrev_info *peek_die_abbrev (gdb_byte *, unsigned int *,
768                                             struct dwarf2_cu *);
769
770 static struct abbrev_info *dwarf2_lookup_abbrev (unsigned int,
771                                                  struct dwarf2_cu *);
772
773 static struct partial_die_info *load_partial_dies (bfd *, gdb_byte *, int,
774                                                    struct dwarf2_cu *);
775
776 static gdb_byte *read_partial_die (struct partial_die_info *,
777                                    struct abbrev_info *abbrev, unsigned int,
778                                    bfd *, gdb_byte *, struct dwarf2_cu *);
779
780 static struct partial_die_info *find_partial_die (unsigned long,
781                                                   struct dwarf2_cu *);
782
783 static void fixup_partial_die (struct partial_die_info *,
784                                struct dwarf2_cu *);
785
786 static gdb_byte *read_full_die (struct die_info **, bfd *, gdb_byte *,
787                                 struct dwarf2_cu *, int *);
788
789 static gdb_byte *read_attribute (struct attribute *, struct attr_abbrev *,
790                                  bfd *, gdb_byte *, struct dwarf2_cu *);
791
792 static gdb_byte *read_attribute_value (struct attribute *, unsigned,
793                                        bfd *, gdb_byte *, struct dwarf2_cu *);
794
795 static unsigned int read_1_byte (bfd *, gdb_byte *);
796
797 static int read_1_signed_byte (bfd *, gdb_byte *);
798
799 static unsigned int read_2_bytes (bfd *, gdb_byte *);
800
801 static unsigned int read_4_bytes (bfd *, gdb_byte *);
802
803 static unsigned long read_8_bytes (bfd *, gdb_byte *);
804
805 static CORE_ADDR read_address (bfd *, gdb_byte *ptr, struct dwarf2_cu *,
806                                unsigned int *);
807
808 static LONGEST read_initial_length (bfd *, gdb_byte *,
809                                     struct comp_unit_head *, unsigned int *);
810
811 static LONGEST read_offset (bfd *, gdb_byte *, const struct comp_unit_head *,
812                             unsigned int *);
813
814 static gdb_byte *read_n_bytes (bfd *, gdb_byte *, unsigned int);
815
816 static char *read_string (bfd *, gdb_byte *, unsigned int *);
817
818 static char *read_indirect_string (bfd *, gdb_byte *,
819                                    const struct comp_unit_head *,
820                                    unsigned int *);
821
822 static unsigned long read_unsigned_leb128 (bfd *, gdb_byte *, unsigned int *);
823
824 static long read_signed_leb128 (bfd *, gdb_byte *, unsigned int *);
825
826 static gdb_byte *skip_leb128 (bfd *, gdb_byte *);
827
828 static void set_cu_language (unsigned int, struct dwarf2_cu *);
829
830 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
831                                       struct dwarf2_cu *);
832
833 static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
834                                struct dwarf2_cu *cu);
835
836 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
837
838 static struct die_info *die_specification (struct die_info *die,
839                                            struct dwarf2_cu *);
840
841 static void free_line_header (struct line_header *lh);
842
843 static void add_file_name (struct line_header *, char *, unsigned int,
844                            unsigned int, unsigned int);
845
846 static struct line_header *(dwarf_decode_line_header
847                             (unsigned int offset,
848                              bfd *abfd, struct dwarf2_cu *cu));
849
850 static void dwarf_decode_lines (struct line_header *, char *, bfd *,
851                                 struct dwarf2_cu *, struct partial_symtab *);
852
853 static void dwarf2_start_subfile (char *, char *, char *);
854
855 static struct symbol *new_symbol (struct die_info *, struct type *,
856                                   struct dwarf2_cu *);
857
858 static void dwarf2_const_value (struct attribute *, struct symbol *,
859                                 struct dwarf2_cu *);
860
861 static void dwarf2_const_value_data (struct attribute *attr,
862                                      struct symbol *sym,
863                                      int bits);
864
865 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
866
867 static struct type *die_containing_type (struct die_info *,
868                                          struct dwarf2_cu *);
869
870 static struct type *tag_type_to_type (struct die_info *, struct dwarf2_cu *);
871
872 static void read_type_die (struct die_info *, struct dwarf2_cu *);
873
874 static char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
875
876 static char *typename_concat (struct obstack *,
877                               const char *prefix, 
878                               const char *suffix,
879                               struct dwarf2_cu *);
880
881 static void read_typedef (struct die_info *, struct dwarf2_cu *);
882
883 static void read_base_type (struct die_info *, struct dwarf2_cu *);
884
885 static void read_subrange_type (struct die_info *die, struct dwarf2_cu *cu);
886
887 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
888
889 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
890
891 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
892
893 static int dwarf2_get_pc_bounds (struct die_info *,
894                                  CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *);
895
896 static void get_scope_pc_bounds (struct die_info *,
897                                  CORE_ADDR *, CORE_ADDR *,
898                                  struct dwarf2_cu *);
899
900 static void dwarf2_add_field (struct field_info *, struct die_info *,
901                               struct dwarf2_cu *);
902
903 static void dwarf2_attach_fields_to_type (struct field_info *,
904                                           struct type *, struct dwarf2_cu *);
905
906 static void dwarf2_add_member_fn (struct field_info *,
907                                   struct die_info *, struct type *,
908                                   struct dwarf2_cu *);
909
910 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
911                                              struct type *, struct dwarf2_cu *);
912
913 static void read_structure_type (struct die_info *, struct dwarf2_cu *);
914
915 static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
916
917 static char *determine_class_name (struct die_info *die, struct dwarf2_cu *cu);
918
919 static void read_common_block (struct die_info *, struct dwarf2_cu *);
920
921 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
922
923 static const char *namespace_name (struct die_info *die,
924                                    int *is_anonymous, struct dwarf2_cu *);
925
926 static void read_enumeration_type (struct die_info *, struct dwarf2_cu *);
927
928 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
929
930 static struct type *dwarf_base_type (int, int, struct dwarf2_cu *);
931
932 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
933
934 static void read_array_type (struct die_info *, struct dwarf2_cu *);
935
936 static enum dwarf_array_dim_ordering read_array_order (struct die_info *, 
937                                                        struct dwarf2_cu *);
938
939 static void read_tag_pointer_type (struct die_info *, struct dwarf2_cu *);
940
941 static void read_tag_ptr_to_member_type (struct die_info *,
942                                          struct dwarf2_cu *);
943
944 static void read_tag_reference_type (struct die_info *, struct dwarf2_cu *);
945
946 static void read_tag_const_type (struct die_info *, struct dwarf2_cu *);
947
948 static void read_tag_volatile_type (struct die_info *, struct dwarf2_cu *);
949
950 static void read_tag_string_type (struct die_info *, struct dwarf2_cu *);
951
952 static void read_subroutine_type (struct die_info *, struct dwarf2_cu *);
953
954 static struct die_info *read_comp_unit (gdb_byte *, bfd *, struct dwarf2_cu *);
955
956 static struct die_info *read_die_and_children (gdb_byte *info_ptr, bfd *abfd,
957                                                struct dwarf2_cu *,
958                                                gdb_byte **new_info_ptr,
959                                                struct die_info *parent);
960
961 static struct die_info *read_die_and_siblings (gdb_byte *info_ptr, bfd *abfd,
962                                                struct dwarf2_cu *,
963                                                gdb_byte **new_info_ptr,
964                                                struct die_info *parent);
965
966 static void free_die_list (struct die_info *);
967
968 static void process_die (struct die_info *, struct dwarf2_cu *);
969
970 static char *dwarf2_linkage_name (struct die_info *, struct dwarf2_cu *);
971
972 static char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
973
974 static struct die_info *dwarf2_extension (struct die_info *die,
975                                           struct dwarf2_cu *);
976
977 static char *dwarf_tag_name (unsigned int);
978
979 static char *dwarf_attr_name (unsigned int);
980
981 static char *dwarf_form_name (unsigned int);
982
983 static char *dwarf_stack_op_name (unsigned int);
984
985 static char *dwarf_bool_name (unsigned int);
986
987 static char *dwarf_type_encoding_name (unsigned int);
988
989 #if 0
990 static char *dwarf_cfi_name (unsigned int);
991
992 struct die_info *copy_die (struct die_info *);
993 #endif
994
995 static struct die_info *sibling_die (struct die_info *);
996
997 static void dump_die (struct die_info *);
998
999 static void dump_die_list (struct die_info *);
1000
1001 static void store_in_ref_table (unsigned int, struct die_info *,
1002                                 struct dwarf2_cu *);
1003
1004 static unsigned int dwarf2_get_ref_die_offset (struct attribute *,
1005                                                struct dwarf2_cu *);
1006
1007 static int dwarf2_get_attr_constant_value (struct attribute *, int);
1008
1009 static struct die_info *follow_die_ref (struct die_info *,
1010                                         struct attribute *,
1011                                         struct dwarf2_cu *);
1012
1013 static struct type *dwarf2_fundamental_type (struct objfile *, int,
1014                                              struct dwarf2_cu *);
1015
1016 /* memory allocation interface */
1017
1018 static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
1019
1020 static struct abbrev_info *dwarf_alloc_abbrev (struct dwarf2_cu *);
1021
1022 static struct die_info *dwarf_alloc_die (void);
1023
1024 static void initialize_cu_func_list (struct dwarf2_cu *);
1025
1026 static void add_to_cu_func_list (const char *, CORE_ADDR, CORE_ADDR,
1027                                  struct dwarf2_cu *);
1028
1029 static void dwarf_decode_macros (struct line_header *, unsigned int,
1030                                  char *, bfd *, struct dwarf2_cu *);
1031
1032 static int attr_form_is_block (struct attribute *);
1033
1034 static void
1035 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
1036                              struct dwarf2_cu *cu);
1037
1038 static gdb_byte *skip_one_die (gdb_byte *info_ptr, struct abbrev_info *abbrev,
1039                                struct dwarf2_cu *cu);
1040
1041 static void free_stack_comp_unit (void *);
1042
1043 static hashval_t partial_die_hash (const void *item);
1044
1045 static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1046
1047 static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1048   (unsigned long offset, struct objfile *objfile);
1049
1050 static struct dwarf2_per_cu_data *dwarf2_find_comp_unit
1051   (unsigned long offset, struct objfile *objfile);
1052
1053 static void free_one_comp_unit (void *);
1054
1055 static void free_cached_comp_units (void *);
1056
1057 static void age_cached_comp_units (void);
1058
1059 static void free_one_cached_comp_unit (void *);
1060
1061 static void set_die_type (struct die_info *, struct type *,
1062                           struct dwarf2_cu *);
1063
1064 static void reset_die_and_siblings_types (struct die_info *,
1065                                           struct dwarf2_cu *);
1066
1067 static void create_all_comp_units (struct objfile *);
1068
1069 static struct dwarf2_cu *load_full_comp_unit (struct dwarf2_per_cu_data *);
1070
1071 static void process_full_comp_unit (struct dwarf2_per_cu_data *);
1072
1073 static void dwarf2_add_dependence (struct dwarf2_cu *,
1074                                    struct dwarf2_per_cu_data *);
1075
1076 static void dwarf2_mark (struct dwarf2_cu *);
1077
1078 static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1079
1080 static void read_set_type (struct die_info *, struct dwarf2_cu *);
1081
1082
1083 /* Try to locate the sections we need for DWARF 2 debugging
1084    information and return true if we have enough to do something.  */
1085
1086 int
1087 dwarf2_has_info (struct objfile *objfile)
1088 {
1089   struct dwarf2_per_objfile *data;
1090
1091   /* Initialize per-objfile state.  */
1092   data = obstack_alloc (&objfile->objfile_obstack, sizeof (*data));
1093   memset (data, 0, sizeof (*data));
1094   set_objfile_data (objfile, dwarf2_objfile_data_key, data);
1095   dwarf2_per_objfile = data;
1096
1097   dwarf_info_section = 0;
1098   dwarf_abbrev_section = 0;
1099   dwarf_line_section = 0;
1100   dwarf_str_section = 0;
1101   dwarf_macinfo_section = 0;
1102   dwarf_frame_section = 0;
1103   dwarf_eh_frame_section = 0;
1104   dwarf_ranges_section = 0;
1105   dwarf_loc_section = 0;
1106   
1107   bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections, NULL);
1108   return (dwarf_info_section != NULL && dwarf_abbrev_section != NULL);
1109 }
1110
1111 /* This function is mapped across the sections and remembers the
1112    offset and size of each of the debugging sections we are interested
1113    in.  */
1114
1115 static void
1116 dwarf2_locate_sections (bfd *abfd, asection *sectp, void *ignore_ptr)
1117 {
1118   if (strcmp (sectp->name, INFO_SECTION) == 0)
1119     {
1120       dwarf2_per_objfile->info_size = bfd_get_section_size (sectp);
1121       dwarf_info_section = sectp;
1122     }
1123   else if (strcmp (sectp->name, ABBREV_SECTION) == 0)
1124     {
1125       dwarf2_per_objfile->abbrev_size = bfd_get_section_size (sectp);
1126       dwarf_abbrev_section = sectp;
1127     }
1128   else if (strcmp (sectp->name, LINE_SECTION) == 0)
1129     {
1130       dwarf2_per_objfile->line_size = bfd_get_section_size (sectp);
1131       dwarf_line_section = sectp;
1132     }
1133   else if (strcmp (sectp->name, PUBNAMES_SECTION) == 0)
1134     {
1135       dwarf2_per_objfile->pubnames_size = bfd_get_section_size (sectp);
1136       dwarf_pubnames_section = sectp;
1137     }
1138   else if (strcmp (sectp->name, ARANGES_SECTION) == 0)
1139     {
1140       dwarf2_per_objfile->aranges_size = bfd_get_section_size (sectp);
1141       dwarf_aranges_section = sectp;
1142     }
1143   else if (strcmp (sectp->name, LOC_SECTION) == 0)
1144     {
1145       dwarf2_per_objfile->loc_size = bfd_get_section_size (sectp);
1146       dwarf_loc_section = sectp;
1147     }
1148   else if (strcmp (sectp->name, MACINFO_SECTION) == 0)
1149     {
1150       dwarf2_per_objfile->macinfo_size = bfd_get_section_size (sectp);
1151       dwarf_macinfo_section = sectp;
1152     }
1153   else if (strcmp (sectp->name, STR_SECTION) == 0)
1154     {
1155       dwarf2_per_objfile->str_size = bfd_get_section_size (sectp);
1156       dwarf_str_section = sectp;
1157     }
1158   else if (strcmp (sectp->name, FRAME_SECTION) == 0)
1159     {
1160       dwarf2_per_objfile->frame_size = bfd_get_section_size (sectp);
1161       dwarf_frame_section = sectp;
1162     }
1163   else if (strcmp (sectp->name, EH_FRAME_SECTION) == 0)
1164     {
1165       flagword aflag = bfd_get_section_flags (ignore_abfd, sectp);
1166       if (aflag & SEC_HAS_CONTENTS)
1167         {
1168           dwarf2_per_objfile->eh_frame_size = bfd_get_section_size (sectp);
1169           dwarf_eh_frame_section = sectp;
1170         }
1171     }
1172   else if (strcmp (sectp->name, RANGES_SECTION) == 0)
1173     {
1174       dwarf2_per_objfile->ranges_size = bfd_get_section_size (sectp);
1175       dwarf_ranges_section = sectp;
1176     }
1177   
1178   if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD)
1179       && bfd_section_vma (abfd, sectp) == 0)
1180     dwarf2_per_objfile->has_section_at_zero = 1;
1181 }
1182
1183 /* Build a partial symbol table.  */
1184
1185 void
1186 dwarf2_build_psymtabs (struct objfile *objfile, int mainline)
1187 {
1188   /* We definitely need the .debug_info and .debug_abbrev sections */
1189
1190   dwarf2_per_objfile->info_buffer = dwarf2_read_section (objfile, dwarf_info_section);
1191   dwarf2_per_objfile->abbrev_buffer = dwarf2_read_section (objfile, dwarf_abbrev_section);
1192
1193   if (dwarf_line_section)
1194     dwarf2_per_objfile->line_buffer = dwarf2_read_section (objfile, dwarf_line_section);
1195   else
1196     dwarf2_per_objfile->line_buffer = NULL;
1197
1198   if (dwarf_str_section)
1199     dwarf2_per_objfile->str_buffer = dwarf2_read_section (objfile, dwarf_str_section);
1200   else
1201     dwarf2_per_objfile->str_buffer = NULL;
1202
1203   if (dwarf_macinfo_section)
1204     dwarf2_per_objfile->macinfo_buffer = dwarf2_read_section (objfile,
1205                                                 dwarf_macinfo_section);
1206   else
1207     dwarf2_per_objfile->macinfo_buffer = NULL;
1208
1209   if (dwarf_ranges_section)
1210     dwarf2_per_objfile->ranges_buffer = dwarf2_read_section (objfile, dwarf_ranges_section);
1211   else
1212     dwarf2_per_objfile->ranges_buffer = NULL;
1213
1214   if (dwarf_loc_section)
1215     dwarf2_per_objfile->loc_buffer = dwarf2_read_section (objfile, dwarf_loc_section);
1216   else
1217     dwarf2_per_objfile->loc_buffer = NULL;
1218
1219   if (mainline
1220       || (objfile->global_psymbols.size == 0
1221           && objfile->static_psymbols.size == 0))
1222     {
1223       init_psymbol_list (objfile, 1024);
1224     }
1225
1226 #if 0
1227   if (dwarf_aranges_offset && dwarf_pubnames_offset)
1228     {
1229       /* Things are significantly easier if we have .debug_aranges and
1230          .debug_pubnames sections */
1231
1232       dwarf2_build_psymtabs_easy (objfile, mainline);
1233     }
1234   else
1235 #endif
1236     /* only test this case for now */
1237     {
1238       /* In this case we have to work a bit harder */
1239       dwarf2_build_psymtabs_hard (objfile, mainline);
1240     }
1241 }
1242
1243 #if 0
1244 /* Build the partial symbol table from the information in the
1245    .debug_pubnames and .debug_aranges sections.  */
1246
1247 static void
1248 dwarf2_build_psymtabs_easy (struct objfile *objfile, int mainline)
1249 {
1250   bfd *abfd = objfile->obfd;
1251   char *aranges_buffer, *pubnames_buffer;
1252   char *aranges_ptr, *pubnames_ptr;
1253   unsigned int entry_length, version, info_offset, info_size;
1254
1255   pubnames_buffer = dwarf2_read_section (objfile,
1256                                          dwarf_pubnames_section);
1257   pubnames_ptr = pubnames_buffer;
1258   while ((pubnames_ptr - pubnames_buffer) < dwarf2_per_objfile->pubnames_size)
1259     {
1260       struct comp_unit_head cu_header;
1261       unsigned int bytes_read;
1262
1263       entry_length = read_initial_length (abfd, pubnames_ptr, &cu_header,
1264                                           &bytes_read);
1265       pubnames_ptr += bytes_read;
1266       version = read_1_byte (abfd, pubnames_ptr);
1267       pubnames_ptr += 1;
1268       info_offset = read_4_bytes (abfd, pubnames_ptr);
1269       pubnames_ptr += 4;
1270       info_size = read_4_bytes (abfd, pubnames_ptr);
1271       pubnames_ptr += 4;
1272     }
1273
1274   aranges_buffer = dwarf2_read_section (objfile,
1275                                         dwarf_aranges_section);
1276
1277 }
1278 #endif
1279
1280 /* Read in the comp unit header information from the debug_info at
1281    info_ptr.  */
1282
1283 static gdb_byte *
1284 read_comp_unit_head (struct comp_unit_head *cu_header,
1285                      gdb_byte *info_ptr, bfd *abfd)
1286 {
1287   int signed_addr;
1288   unsigned int bytes_read;
1289   cu_header->length = read_initial_length (abfd, info_ptr, cu_header,
1290                                            &bytes_read);
1291   info_ptr += bytes_read;
1292   cu_header->version = read_2_bytes (abfd, info_ptr);
1293   info_ptr += 2;
1294   cu_header->abbrev_offset = read_offset (abfd, info_ptr, cu_header,
1295                                           &bytes_read);
1296   info_ptr += bytes_read;
1297   cu_header->addr_size = read_1_byte (abfd, info_ptr);
1298   info_ptr += 1;
1299   signed_addr = bfd_get_sign_extend_vma (abfd);
1300   if (signed_addr < 0)
1301     internal_error (__FILE__, __LINE__,
1302                     _("read_comp_unit_head: dwarf from non elf file"));
1303   cu_header->signed_addr_p = signed_addr;
1304   return info_ptr;
1305 }
1306
1307 static gdb_byte *
1308 partial_read_comp_unit_head (struct comp_unit_head *header, gdb_byte *info_ptr,
1309                              bfd *abfd)
1310 {
1311   gdb_byte *beg_of_comp_unit = info_ptr;
1312
1313   info_ptr = read_comp_unit_head (header, info_ptr, abfd);
1314
1315   if (header->version != 2 && header->version != 3)
1316     error (_("Dwarf Error: wrong version in compilation unit header "
1317            "(is %d, should be %d) [in module %s]"), header->version,
1318            2, bfd_get_filename (abfd));
1319
1320   if (header->abbrev_offset >= dwarf2_per_objfile->abbrev_size)
1321     error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
1322            "(offset 0x%lx + 6) [in module %s]"),
1323            (long) header->abbrev_offset,
1324            (long) (beg_of_comp_unit - dwarf2_per_objfile->info_buffer),
1325            bfd_get_filename (abfd));
1326
1327   if (beg_of_comp_unit + header->length + header->initial_length_size
1328       > dwarf2_per_objfile->info_buffer + dwarf2_per_objfile->info_size)
1329     error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
1330            "(offset 0x%lx + 0) [in module %s]"),
1331            (long) header->length,
1332            (long) (beg_of_comp_unit - dwarf2_per_objfile->info_buffer),
1333            bfd_get_filename (abfd));
1334
1335   return info_ptr;
1336 }
1337
1338 /* Allocate a new partial symtab for file named NAME and mark this new
1339    partial symtab as being an include of PST.  */
1340
1341 static void
1342 dwarf2_create_include_psymtab (char *name, struct partial_symtab *pst,
1343                                struct objfile *objfile)
1344 {
1345   struct partial_symtab *subpst = allocate_psymtab (name, objfile);
1346
1347   subpst->section_offsets = pst->section_offsets;
1348   subpst->textlow = 0;
1349   subpst->texthigh = 0;
1350
1351   subpst->dependencies = (struct partial_symtab **)
1352     obstack_alloc (&objfile->objfile_obstack,
1353                    sizeof (struct partial_symtab *));
1354   subpst->dependencies[0] = pst;
1355   subpst->number_of_dependencies = 1;
1356
1357   subpst->globals_offset = 0;
1358   subpst->n_global_syms = 0;
1359   subpst->statics_offset = 0;
1360   subpst->n_static_syms = 0;
1361   subpst->symtab = NULL;
1362   subpst->read_symtab = pst->read_symtab;
1363   subpst->readin = 0;
1364
1365   /* No private part is necessary for include psymtabs.  This property
1366      can be used to differentiate between such include psymtabs and
1367      the regular ones.  */
1368   subpst->read_symtab_private = NULL;
1369 }
1370
1371 /* Read the Line Number Program data and extract the list of files
1372    included by the source file represented by PST.  Build an include
1373    partial symtab for each of these included files.
1374    
1375    This procedure assumes that there *is* a Line Number Program in
1376    the given CU.  Callers should check that PDI->HAS_STMT_LIST is set
1377    before calling this procedure.  */
1378
1379 static void
1380 dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
1381                                struct partial_die_info *pdi,
1382                                struct partial_symtab *pst)
1383 {
1384   struct objfile *objfile = cu->objfile;
1385   bfd *abfd = objfile->obfd;
1386   struct line_header *lh;
1387
1388   lh = dwarf_decode_line_header (pdi->line_offset, abfd, cu);
1389   if (lh == NULL)
1390     return;  /* No linetable, so no includes.  */
1391
1392   dwarf_decode_lines (lh, NULL, abfd, cu, pst);
1393
1394   free_line_header (lh);
1395 }
1396
1397
1398 /* Build the partial symbol table by doing a quick pass through the
1399    .debug_info and .debug_abbrev sections.  */
1400
1401 static void
1402 dwarf2_build_psymtabs_hard (struct objfile *objfile, int mainline)
1403 {
1404   /* Instead of reading this into a big buffer, we should probably use
1405      mmap()  on architectures that support it. (FIXME) */
1406   bfd *abfd = objfile->obfd;
1407   gdb_byte *info_ptr;
1408   gdb_byte *beg_of_comp_unit;
1409   struct partial_die_info comp_unit_die;
1410   struct partial_symtab *pst;
1411   struct cleanup *back_to;
1412   CORE_ADDR lowpc, highpc, baseaddr;
1413
1414   info_ptr = dwarf2_per_objfile->info_buffer;
1415
1416   /* Any cached compilation units will be linked by the per-objfile
1417      read_in_chain.  Make sure to free them when we're done.  */
1418   back_to = make_cleanup (free_cached_comp_units, NULL);
1419
1420   create_all_comp_units (objfile);
1421
1422   /* Since the objects we're extracting from .debug_info vary in
1423      length, only the individual functions to extract them (like
1424      read_comp_unit_head and load_partial_die) can really know whether
1425      the buffer is large enough to hold another complete object.
1426
1427      At the moment, they don't actually check that.  If .debug_info
1428      holds just one extra byte after the last compilation unit's dies,
1429      then read_comp_unit_head will happily read off the end of the
1430      buffer.  read_partial_die is similarly casual.  Those functions
1431      should be fixed.
1432
1433      For this loop condition, simply checking whether there's any data
1434      left at all should be sufficient.  */
1435   while (info_ptr < (dwarf2_per_objfile->info_buffer
1436                      + dwarf2_per_objfile->info_size))
1437     {
1438       struct cleanup *back_to_inner;
1439       struct dwarf2_cu cu;
1440       struct abbrev_info *abbrev;
1441       unsigned int bytes_read;
1442       struct dwarf2_per_cu_data *this_cu;
1443
1444       beg_of_comp_unit = info_ptr;
1445
1446       memset (&cu, 0, sizeof (cu));
1447
1448       obstack_init (&cu.comp_unit_obstack);
1449
1450       back_to_inner = make_cleanup (free_stack_comp_unit, &cu);
1451
1452       cu.objfile = objfile;
1453       info_ptr = partial_read_comp_unit_head (&cu.header, info_ptr, abfd);
1454
1455       /* Complete the cu_header */
1456       cu.header.offset = beg_of_comp_unit - dwarf2_per_objfile->info_buffer;
1457       cu.header.first_die_ptr = info_ptr;
1458       cu.header.cu_head_ptr = beg_of_comp_unit;
1459
1460       cu.list_in_scope = &file_symbols;
1461
1462       /* Read the abbrevs for this compilation unit into a table */
1463       dwarf2_read_abbrevs (abfd, &cu);
1464       make_cleanup (dwarf2_free_abbrev_table, &cu);
1465
1466       this_cu = dwarf2_find_comp_unit (cu.header.offset, objfile);
1467
1468       /* Read the compilation unit die */
1469       abbrev = peek_die_abbrev (info_ptr, &bytes_read, &cu);
1470       info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read,
1471                                    abfd, info_ptr, &cu);
1472
1473       /* Set the language we're debugging */
1474       set_cu_language (comp_unit_die.language, &cu);
1475
1476       /* Allocate a new partial symbol table structure */
1477       pst = start_psymtab_common (objfile, objfile->section_offsets,
1478                                   comp_unit_die.name ? comp_unit_die.name : "",
1479                                   comp_unit_die.lowpc,
1480                                   objfile->global_psymbols.next,
1481                                   objfile->static_psymbols.next);
1482
1483       if (comp_unit_die.dirname)
1484         pst->dirname = xstrdup (comp_unit_die.dirname);
1485
1486       pst->read_symtab_private = (char *) this_cu;
1487
1488       baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1489
1490       /* Store the function that reads in the rest of the symbol table */
1491       pst->read_symtab = dwarf2_psymtab_to_symtab;
1492
1493       /* If this compilation unit was already read in, free the
1494          cached copy in order to read it in again.  This is
1495          necessary because we skipped some symbols when we first
1496          read in the compilation unit (see load_partial_dies).
1497          This problem could be avoided, but the benefit is
1498          unclear.  */
1499       if (this_cu->cu != NULL)
1500         free_one_cached_comp_unit (this_cu->cu);
1501
1502       cu.per_cu = this_cu;
1503
1504       /* Note that this is a pointer to our stack frame, being
1505          added to a global data structure.  It will be cleaned up
1506          in free_stack_comp_unit when we finish with this
1507          compilation unit.  */
1508       this_cu->cu = &cu;
1509
1510       this_cu->psymtab = pst;
1511
1512       /* Check if comp unit has_children.
1513          If so, read the rest of the partial symbols from this comp unit.
1514          If not, there's no more debug_info for this comp unit. */
1515       if (comp_unit_die.has_children)
1516         {
1517           struct partial_die_info *first_die;
1518
1519           lowpc = ((CORE_ADDR) -1);
1520           highpc = ((CORE_ADDR) 0);
1521
1522           first_die = load_partial_dies (abfd, info_ptr, 1, &cu);
1523
1524           scan_partial_symbols (first_die, &lowpc, &highpc, &cu);
1525
1526           /* If we didn't find a lowpc, set it to highpc to avoid
1527              complaints from `maint check'.  */
1528           if (lowpc == ((CORE_ADDR) -1))
1529             lowpc = highpc;
1530
1531           /* If the compilation unit didn't have an explicit address range,
1532              then use the information extracted from its child dies.  */
1533           if (! comp_unit_die.has_pc_info)
1534             {
1535               comp_unit_die.lowpc = lowpc;
1536               comp_unit_die.highpc = highpc;
1537             }
1538         }
1539       pst->textlow = comp_unit_die.lowpc + baseaddr;
1540       pst->texthigh = comp_unit_die.highpc + baseaddr;
1541
1542       pst->n_global_syms = objfile->global_psymbols.next -
1543         (objfile->global_psymbols.list + pst->globals_offset);
1544       pst->n_static_syms = objfile->static_psymbols.next -
1545         (objfile->static_psymbols.list + pst->statics_offset);
1546       sort_pst_symbols (pst);
1547
1548       /* If there is already a psymtab or symtab for a file of this
1549          name, remove it. (If there is a symtab, more drastic things
1550          also happen.) This happens in VxWorks.  */
1551       free_named_symtabs (pst->filename);
1552
1553       info_ptr = beg_of_comp_unit + cu.header.length
1554                                   + cu.header.initial_length_size;
1555
1556       if (comp_unit_die.has_stmt_list)
1557         {
1558           /* Get the list of files included in the current compilation unit,
1559              and build a psymtab for each of them.  */
1560           dwarf2_build_include_psymtabs (&cu, &comp_unit_die, pst);
1561         }
1562
1563       do_cleanups (back_to_inner);
1564     }
1565   do_cleanups (back_to);
1566 }
1567
1568 /* Load the DIEs for a secondary CU into memory.  */
1569
1570 static void
1571 load_comp_unit (struct dwarf2_per_cu_data *this_cu, struct objfile *objfile)
1572 {
1573   bfd *abfd = objfile->obfd;
1574   gdb_byte *info_ptr, *beg_of_comp_unit;
1575   struct partial_die_info comp_unit_die;
1576   struct dwarf2_cu *cu;
1577   struct abbrev_info *abbrev;
1578   unsigned int bytes_read;
1579   struct cleanup *back_to;
1580
1581   info_ptr = dwarf2_per_objfile->info_buffer + this_cu->offset;
1582   beg_of_comp_unit = info_ptr;
1583
1584   cu = xmalloc (sizeof (struct dwarf2_cu));
1585   memset (cu, 0, sizeof (struct dwarf2_cu));
1586
1587   obstack_init (&cu->comp_unit_obstack);
1588
1589   cu->objfile = objfile;
1590   info_ptr = partial_read_comp_unit_head (&cu->header, info_ptr, abfd);
1591
1592   /* Complete the cu_header.  */
1593   cu->header.offset = beg_of_comp_unit - dwarf2_per_objfile->info_buffer;
1594   cu->header.first_die_ptr = info_ptr;
1595   cu->header.cu_head_ptr = beg_of_comp_unit;
1596
1597   /* Read the abbrevs for this compilation unit into a table.  */
1598   dwarf2_read_abbrevs (abfd, cu);
1599   back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
1600
1601   /* Read the compilation unit die.  */
1602   abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
1603   info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read,
1604                                abfd, info_ptr, cu);
1605
1606   /* Set the language we're debugging.  */
1607   set_cu_language (comp_unit_die.language, cu);
1608
1609   /* Link this compilation unit into the compilation unit tree.  */
1610   this_cu->cu = cu;
1611   cu->per_cu = this_cu;
1612
1613   /* Check if comp unit has_children.
1614      If so, read the rest of the partial symbols from this comp unit.
1615      If not, there's no more debug_info for this comp unit. */
1616   if (comp_unit_die.has_children)
1617     load_partial_dies (abfd, info_ptr, 0, cu);
1618
1619   do_cleanups (back_to);
1620 }
1621
1622 /* Create a list of all compilation units in OBJFILE.  We do this only
1623    if an inter-comp-unit reference is found; presumably if there is one,
1624    there will be many, and one will occur early in the .debug_info section.
1625    So there's no point in building this list incrementally.  */
1626
1627 static void
1628 create_all_comp_units (struct objfile *objfile)
1629 {
1630   int n_allocated;
1631   int n_comp_units;
1632   struct dwarf2_per_cu_data **all_comp_units;
1633   gdb_byte *info_ptr = dwarf2_per_objfile->info_buffer;
1634
1635   n_comp_units = 0;
1636   n_allocated = 10;
1637   all_comp_units = xmalloc (n_allocated
1638                             * sizeof (struct dwarf2_per_cu_data *));
1639   
1640   while (info_ptr < dwarf2_per_objfile->info_buffer + dwarf2_per_objfile->info_size)
1641     {
1642       struct comp_unit_head cu_header;
1643       gdb_byte *beg_of_comp_unit;
1644       struct dwarf2_per_cu_data *this_cu;
1645       unsigned long offset;
1646       unsigned int bytes_read;
1647
1648       offset = info_ptr - dwarf2_per_objfile->info_buffer;
1649
1650       /* Read just enough information to find out where the next
1651          compilation unit is.  */
1652       cu_header.initial_length_size = 0;
1653       cu_header.length = read_initial_length (objfile->obfd, info_ptr,
1654                                               &cu_header, &bytes_read);
1655
1656       /* Save the compilation unit for later lookup.  */
1657       this_cu = obstack_alloc (&objfile->objfile_obstack,
1658                                sizeof (struct dwarf2_per_cu_data));
1659       memset (this_cu, 0, sizeof (*this_cu));
1660       this_cu->offset = offset;
1661       this_cu->length = cu_header.length + cu_header.initial_length_size;
1662
1663       if (n_comp_units == n_allocated)
1664         {
1665           n_allocated *= 2;
1666           all_comp_units = xrealloc (all_comp_units,
1667                                      n_allocated
1668                                      * sizeof (struct dwarf2_per_cu_data *));
1669         }
1670       all_comp_units[n_comp_units++] = this_cu;
1671
1672       info_ptr = info_ptr + this_cu->length;
1673     }
1674
1675   dwarf2_per_objfile->all_comp_units
1676     = obstack_alloc (&objfile->objfile_obstack,
1677                      n_comp_units * sizeof (struct dwarf2_per_cu_data *));
1678   memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
1679           n_comp_units * sizeof (struct dwarf2_per_cu_data *));
1680   xfree (all_comp_units);
1681   dwarf2_per_objfile->n_comp_units = n_comp_units;
1682 }
1683
1684 /* Process all loaded DIEs for compilation unit CU, starting at FIRST_DIE.
1685    Also set *LOWPC and *HIGHPC to the lowest and highest PC values found
1686    in CU.  */
1687
1688 static void
1689 scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
1690                       CORE_ADDR *highpc, struct dwarf2_cu *cu)
1691 {
1692   struct objfile *objfile = cu->objfile;
1693   bfd *abfd = objfile->obfd;
1694   struct partial_die_info *pdi;
1695
1696   /* Now, march along the PDI's, descending into ones which have
1697      interesting children but skipping the children of the other ones,
1698      until we reach the end of the compilation unit.  */
1699
1700   pdi = first_die;
1701
1702   while (pdi != NULL)
1703     {
1704       fixup_partial_die (pdi, cu);
1705
1706       /* Anonymous namespaces have no name but have interesting
1707          children, so we need to look at them.  Ditto for anonymous
1708          enums.  */
1709
1710       if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
1711           || pdi->tag == DW_TAG_enumeration_type)
1712         {
1713           switch (pdi->tag)
1714             {
1715             case DW_TAG_subprogram:
1716               if (pdi->has_pc_info)
1717                 {
1718                   if (pdi->lowpc < *lowpc)
1719                     {
1720                       *lowpc = pdi->lowpc;
1721                     }
1722                   if (pdi->highpc > *highpc)
1723                     {
1724                       *highpc = pdi->highpc;
1725                     }
1726                   if (!pdi->is_declaration)
1727                     {
1728                       add_partial_symbol (pdi, cu);
1729                     }
1730                 }
1731               break;
1732             case DW_TAG_variable:
1733             case DW_TAG_typedef:
1734             case DW_TAG_union_type:
1735               if (!pdi->is_declaration)
1736                 {
1737                   add_partial_symbol (pdi, cu);
1738                 }
1739               break;
1740             case DW_TAG_class_type:
1741             case DW_TAG_structure_type:
1742               if (!pdi->is_declaration)
1743                 {
1744                   add_partial_symbol (pdi, cu);
1745                 }
1746               break;
1747             case DW_TAG_enumeration_type:
1748               if (!pdi->is_declaration)
1749                 add_partial_enumeration (pdi, cu);
1750               break;
1751             case DW_TAG_base_type:
1752             case DW_TAG_subrange_type:
1753               /* File scope base type definitions are added to the partial
1754                  symbol table.  */
1755               add_partial_symbol (pdi, cu);
1756               break;
1757             case DW_TAG_namespace:
1758               add_partial_namespace (pdi, lowpc, highpc, cu);
1759               break;
1760             default:
1761               break;
1762             }
1763         }
1764
1765       /* If the die has a sibling, skip to the sibling.  */
1766
1767       pdi = pdi->die_sibling;
1768     }
1769 }
1770
1771 /* Functions used to compute the fully scoped name of a partial DIE.
1772
1773    Normally, this is simple.  For C++, the parent DIE's fully scoped
1774    name is concatenated with "::" and the partial DIE's name.  For
1775    Java, the same thing occurs except that "." is used instead of "::".
1776    Enumerators are an exception; they use the scope of their parent
1777    enumeration type, i.e. the name of the enumeration type is not
1778    prepended to the enumerator.
1779
1780    There are two complexities.  One is DW_AT_specification; in this
1781    case "parent" means the parent of the target of the specification,
1782    instead of the direct parent of the DIE.  The other is compilers
1783    which do not emit DW_TAG_namespace; in this case we try to guess
1784    the fully qualified name of structure types from their members'
1785    linkage names.  This must be done using the DIE's children rather
1786    than the children of any DW_AT_specification target.  We only need
1787    to do this for structures at the top level, i.e. if the target of
1788    any DW_AT_specification (if any; otherwise the DIE itself) does not
1789    have a parent.  */
1790
1791 /* Compute the scope prefix associated with PDI's parent, in
1792    compilation unit CU.  The result will be allocated on CU's
1793    comp_unit_obstack, or a copy of the already allocated PDI->NAME
1794    field.  NULL is returned if no prefix is necessary.  */
1795 static char *
1796 partial_die_parent_scope (struct partial_die_info *pdi,
1797                           struct dwarf2_cu *cu)
1798 {
1799   char *grandparent_scope;
1800   struct partial_die_info *parent, *real_pdi;
1801
1802   /* We need to look at our parent DIE; if we have a DW_AT_specification,
1803      then this means the parent of the specification DIE.  */
1804
1805   real_pdi = pdi;
1806   while (real_pdi->has_specification)
1807     real_pdi = find_partial_die (real_pdi->spec_offset, cu);
1808
1809   parent = real_pdi->die_parent;
1810   if (parent == NULL)
1811     return NULL;
1812
1813   if (parent->scope_set)
1814     return parent->scope;
1815
1816   fixup_partial_die (parent, cu);
1817
1818   grandparent_scope = partial_die_parent_scope (parent, cu);
1819
1820   if (parent->tag == DW_TAG_namespace
1821       || parent->tag == DW_TAG_structure_type
1822       || parent->tag == DW_TAG_class_type
1823       || parent->tag == DW_TAG_union_type)
1824     {
1825       if (grandparent_scope == NULL)
1826         parent->scope = parent->name;
1827       else
1828         parent->scope = typename_concat (&cu->comp_unit_obstack, grandparent_scope,
1829                                          parent->name, cu);
1830     }
1831   else if (parent->tag == DW_TAG_enumeration_type)
1832     /* Enumerators should not get the name of the enumeration as a prefix.  */
1833     parent->scope = grandparent_scope;
1834   else
1835     {
1836       /* FIXME drow/2004-04-01: What should we be doing with
1837          function-local names?  For partial symbols, we should probably be
1838          ignoring them.  */
1839       complaint (&symfile_complaints,
1840                  _("unhandled containing DIE tag %d for DIE at %d"),
1841                  parent->tag, pdi->offset);
1842       parent->scope = grandparent_scope;
1843     }
1844
1845   parent->scope_set = 1;
1846   return parent->scope;
1847 }
1848
1849 /* Return the fully scoped name associated with PDI, from compilation unit
1850    CU.  The result will be allocated with malloc.  */
1851 static char *
1852 partial_die_full_name (struct partial_die_info *pdi,
1853                        struct dwarf2_cu *cu)
1854 {
1855   char *parent_scope;
1856
1857   parent_scope = partial_die_parent_scope (pdi, cu);
1858   if (parent_scope == NULL)
1859     return NULL;
1860   else
1861     return typename_concat (NULL, parent_scope, pdi->name, cu);
1862 }
1863
1864 static void
1865 add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
1866 {
1867   struct objfile *objfile = cu->objfile;
1868   CORE_ADDR addr = 0;
1869   char *actual_name;
1870   const char *my_prefix;
1871   const struct partial_symbol *psym = NULL;
1872   CORE_ADDR baseaddr;
1873   int built_actual_name = 0;
1874
1875   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1876
1877   actual_name = NULL;
1878
1879   if (pdi_needs_namespace (pdi->tag))
1880     {
1881       actual_name = partial_die_full_name (pdi, cu);
1882       if (actual_name)
1883         built_actual_name = 1;
1884     }
1885
1886   if (actual_name == NULL)
1887     actual_name = pdi->name;
1888
1889   switch (pdi->tag)
1890     {
1891     case DW_TAG_subprogram:
1892       if (pdi->is_external)
1893         {
1894           /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
1895              mst_text, objfile); */
1896           psym = add_psymbol_to_list (actual_name, strlen (actual_name),
1897                                       VAR_DOMAIN, LOC_BLOCK,
1898                                       &objfile->global_psymbols,
1899                                       0, pdi->lowpc + baseaddr,
1900                                       cu->language, objfile);
1901         }
1902       else
1903         {
1904           /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
1905              mst_file_text, objfile); */
1906           psym = add_psymbol_to_list (actual_name, strlen (actual_name),
1907                                       VAR_DOMAIN, LOC_BLOCK,
1908                                       &objfile->static_psymbols,
1909                                       0, pdi->lowpc + baseaddr,
1910                                       cu->language, objfile);
1911         }
1912       break;
1913     case DW_TAG_variable:
1914       if (pdi->is_external)
1915         {
1916           /* Global Variable.
1917              Don't enter into the minimal symbol tables as there is
1918              a minimal symbol table entry from the ELF symbols already.
1919              Enter into partial symbol table if it has a location
1920              descriptor or a type.
1921              If the location descriptor is missing, new_symbol will create
1922              a LOC_UNRESOLVED symbol, the address of the variable will then
1923              be determined from the minimal symbol table whenever the variable
1924              is referenced.
1925              The address for the partial symbol table entry is not
1926              used by GDB, but it comes in handy for debugging partial symbol
1927              table building.  */
1928
1929           if (pdi->locdesc)
1930             addr = decode_locdesc (pdi->locdesc, cu);
1931           if (pdi->locdesc || pdi->has_type)
1932             psym = add_psymbol_to_list (actual_name, strlen (actual_name),
1933                                         VAR_DOMAIN, LOC_STATIC,
1934                                         &objfile->global_psymbols,
1935                                         0, addr + baseaddr,
1936                                         cu->language, objfile);
1937         }
1938       else
1939         {
1940           /* Static Variable. Skip symbols without location descriptors.  */
1941           if (pdi->locdesc == NULL)
1942             return;
1943           addr = decode_locdesc (pdi->locdesc, cu);
1944           /*prim_record_minimal_symbol (actual_name, addr + baseaddr,
1945              mst_file_data, objfile); */
1946           psym = add_psymbol_to_list (actual_name, strlen (actual_name),
1947                                       VAR_DOMAIN, LOC_STATIC,
1948                                       &objfile->static_psymbols,
1949                                       0, addr + baseaddr,
1950                                       cu->language, objfile);
1951         }
1952       break;
1953     case DW_TAG_typedef:
1954     case DW_TAG_base_type:
1955     case DW_TAG_subrange_type:
1956       add_psymbol_to_list (actual_name, strlen (actual_name),
1957                            VAR_DOMAIN, LOC_TYPEDEF,
1958                            &objfile->static_psymbols,
1959                            0, (CORE_ADDR) 0, cu->language, objfile);
1960       break;
1961     case DW_TAG_namespace:
1962       add_psymbol_to_list (actual_name, strlen (actual_name),
1963                            VAR_DOMAIN, LOC_TYPEDEF,
1964                            &objfile->global_psymbols,
1965                            0, (CORE_ADDR) 0, cu->language, objfile);
1966       break;
1967     case DW_TAG_class_type:
1968     case DW_TAG_structure_type:
1969     case DW_TAG_union_type:
1970     case DW_TAG_enumeration_type:
1971       /* Skip aggregate types without children, these are external
1972          references.  */
1973       /* NOTE: carlton/2003-10-07: See comment in new_symbol about
1974          static vs. global.  */
1975       if (pdi->has_children == 0)
1976         return;
1977       add_psymbol_to_list (actual_name, strlen (actual_name),
1978                            STRUCT_DOMAIN, LOC_TYPEDEF,
1979                            (cu->language == language_cplus
1980                             || cu->language == language_java)
1981                            ? &objfile->global_psymbols
1982                            : &objfile->static_psymbols,
1983                            0, (CORE_ADDR) 0, cu->language, objfile);
1984
1985       if (cu->language == language_cplus
1986           || cu->language == language_java)
1987         {
1988           /* For C++ and Java, these implicitly act as typedefs as well. */
1989           add_psymbol_to_list (actual_name, strlen (actual_name),
1990                                VAR_DOMAIN, LOC_TYPEDEF,
1991                                &objfile->global_psymbols,
1992                                0, (CORE_ADDR) 0, cu->language, objfile);
1993         }
1994       break;
1995     case DW_TAG_enumerator:
1996       add_psymbol_to_list (actual_name, strlen (actual_name),
1997                            VAR_DOMAIN, LOC_CONST,
1998                            (cu->language == language_cplus
1999                             || cu->language == language_java)
2000                            ? &objfile->global_psymbols
2001                            : &objfile->static_psymbols,
2002                            0, (CORE_ADDR) 0, cu->language, objfile);
2003       break;
2004     default:
2005       break;
2006     }
2007
2008   /* Check to see if we should scan the name for possible namespace
2009      info.  Only do this if this is C++, if we don't have namespace
2010      debugging info in the file, if the psym is of an appropriate type
2011      (otherwise we'll have psym == NULL), and if we actually had a
2012      mangled name to begin with.  */
2013
2014   /* FIXME drow/2004-02-22: Why don't we do this for classes, i.e. the
2015      cases which do not set PSYM above?  */
2016
2017   if (cu->language == language_cplus
2018       && cu->has_namespace_info == 0
2019       && psym != NULL
2020       && SYMBOL_CPLUS_DEMANGLED_NAME (psym) != NULL)
2021     cp_check_possible_namespace_symbols (SYMBOL_CPLUS_DEMANGLED_NAME (psym),
2022                                          objfile);
2023
2024   if (built_actual_name)
2025     xfree (actual_name);
2026 }
2027
2028 /* Determine whether a die of type TAG living in a C++ class or
2029    namespace needs to have the name of the scope prepended to the
2030    name listed in the die.  */
2031
2032 static int
2033 pdi_needs_namespace (enum dwarf_tag tag)
2034 {
2035   switch (tag)
2036     {
2037     case DW_TAG_namespace:
2038     case DW_TAG_typedef:
2039     case DW_TAG_class_type:
2040     case DW_TAG_structure_type:
2041     case DW_TAG_union_type:
2042     case DW_TAG_enumeration_type:
2043     case DW_TAG_enumerator:
2044       return 1;
2045     default:
2046       return 0;
2047     }
2048 }
2049
2050 /* Read a partial die corresponding to a namespace; also, add a symbol
2051    corresponding to that namespace to the symbol table.  NAMESPACE is
2052    the name of the enclosing namespace.  */
2053
2054 static void
2055 add_partial_namespace (struct partial_die_info *pdi,
2056                        CORE_ADDR *lowpc, CORE_ADDR *highpc,
2057                        struct dwarf2_cu *cu)
2058 {
2059   struct objfile *objfile = cu->objfile;
2060
2061   /* Add a symbol for the namespace.  */
2062
2063   add_partial_symbol (pdi, cu);
2064
2065   /* Now scan partial symbols in that namespace.  */
2066
2067   if (pdi->has_children)
2068     scan_partial_symbols (pdi->die_child, lowpc, highpc, cu);
2069 }
2070
2071 /* See if we can figure out if the class lives in a namespace.  We do
2072    this by looking for a member function; its demangled name will
2073    contain namespace info, if there is any.  */
2074
2075 static void
2076 guess_structure_name (struct partial_die_info *struct_pdi,
2077                       struct dwarf2_cu *cu)
2078 {
2079   if ((cu->language == language_cplus
2080        || cu->language == language_java)
2081       && cu->has_namespace_info == 0
2082       && struct_pdi->has_children)
2083     {
2084       /* NOTE: carlton/2003-10-07: Getting the info this way changes
2085          what template types look like, because the demangler
2086          frequently doesn't give the same name as the debug info.  We
2087          could fix this by only using the demangled name to get the
2088          prefix (but see comment in read_structure_type).  */
2089
2090       struct partial_die_info *child_pdi = struct_pdi->die_child;
2091       struct partial_die_info *real_pdi;
2092
2093       /* If this DIE (this DIE's specification, if any) has a parent, then
2094          we should not do this.  We'll prepend the parent's fully qualified
2095          name when we create the partial symbol.  */
2096
2097       real_pdi = struct_pdi;
2098       while (real_pdi->has_specification)
2099         real_pdi = find_partial_die (real_pdi->spec_offset, cu);
2100
2101       if (real_pdi->die_parent != NULL)
2102         return;
2103
2104       while (child_pdi != NULL)
2105         {
2106           if (child_pdi->tag == DW_TAG_subprogram)
2107             {
2108               char *actual_class_name
2109                 = language_class_name_from_physname (cu->language_defn,
2110                                                      child_pdi->name);
2111               if (actual_class_name != NULL)
2112                 {
2113                   struct_pdi->name
2114                     = obsavestring (actual_class_name,
2115                                     strlen (actual_class_name),
2116                                     &cu->comp_unit_obstack);
2117                   xfree (actual_class_name);
2118                 }
2119               break;
2120             }
2121
2122           child_pdi = child_pdi->die_sibling;
2123         }
2124     }
2125 }
2126
2127 /* Read a partial die corresponding to an enumeration type.  */
2128
2129 static void
2130 add_partial_enumeration (struct partial_die_info *enum_pdi,
2131                          struct dwarf2_cu *cu)
2132 {
2133   struct objfile *objfile = cu->objfile;
2134   bfd *abfd = objfile->obfd;
2135   struct partial_die_info *pdi;
2136
2137   if (enum_pdi->name != NULL)
2138     add_partial_symbol (enum_pdi, cu);
2139
2140   pdi = enum_pdi->die_child;
2141   while (pdi)
2142     {
2143       if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
2144         complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
2145       else
2146         add_partial_symbol (pdi, cu);
2147       pdi = pdi->die_sibling;
2148     }
2149 }
2150
2151 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
2152    Return the corresponding abbrev, or NULL if the number is zero (indicating
2153    an empty DIE).  In either case *BYTES_READ will be set to the length of
2154    the initial number.  */
2155
2156 static struct abbrev_info *
2157 peek_die_abbrev (gdb_byte *info_ptr, unsigned int *bytes_read,
2158                  struct dwarf2_cu *cu)
2159 {
2160   bfd *abfd = cu->objfile->obfd;
2161   unsigned int abbrev_number;
2162   struct abbrev_info *abbrev;
2163
2164   abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
2165
2166   if (abbrev_number == 0)
2167     return NULL;
2168
2169   abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
2170   if (!abbrev)
2171     {
2172       error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"), abbrev_number,
2173                       bfd_get_filename (abfd));
2174     }
2175
2176   return abbrev;
2177 }
2178
2179 /* Scan the debug information for CU starting at INFO_PTR.  Returns a
2180    pointer to the end of a series of DIEs, terminated by an empty
2181    DIE.  Any children of the skipped DIEs will also be skipped.  */
2182
2183 static gdb_byte *
2184 skip_children (gdb_byte *info_ptr, struct dwarf2_cu *cu)
2185 {
2186   struct abbrev_info *abbrev;
2187   unsigned int bytes_read;
2188
2189   while (1)
2190     {
2191       abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
2192       if (abbrev == NULL)
2193         return info_ptr + bytes_read;
2194       else
2195         info_ptr = skip_one_die (info_ptr + bytes_read, abbrev, cu);
2196     }
2197 }
2198
2199 /* Scan the debug information for CU starting at INFO_PTR.  INFO_PTR
2200    should point just after the initial uleb128 of a DIE, and the
2201    abbrev corresponding to that skipped uleb128 should be passed in
2202    ABBREV.  Returns a pointer to this DIE's sibling, skipping any
2203    children.  */
2204
2205 static gdb_byte *
2206 skip_one_die (gdb_byte *info_ptr, struct abbrev_info *abbrev,
2207               struct dwarf2_cu *cu)
2208 {
2209   unsigned int bytes_read;
2210   struct attribute attr;
2211   bfd *abfd = cu->objfile->obfd;
2212   unsigned int form, i;
2213
2214   for (i = 0; i < abbrev->num_attrs; i++)
2215     {
2216       /* The only abbrev we care about is DW_AT_sibling.  */
2217       if (abbrev->attrs[i].name == DW_AT_sibling)
2218         {
2219           read_attribute (&attr, &abbrev->attrs[i],
2220                           abfd, info_ptr, cu);
2221           if (attr.form == DW_FORM_ref_addr)
2222             complaint (&symfile_complaints, _("ignoring absolute DW_AT_sibling"));
2223           else
2224             return dwarf2_per_objfile->info_buffer
2225               + dwarf2_get_ref_die_offset (&attr, cu);
2226         }
2227
2228       /* If it isn't DW_AT_sibling, skip this attribute.  */
2229       form = abbrev->attrs[i].form;
2230     skip_attribute:
2231       switch (form)
2232         {
2233         case DW_FORM_addr:
2234         case DW_FORM_ref_addr:
2235           info_ptr += cu->header.addr_size;
2236           break;
2237         case DW_FORM_data1:
2238         case DW_FORM_ref1:
2239         case DW_FORM_flag:
2240           info_ptr += 1;
2241           break;
2242         case DW_FORM_data2:
2243         case DW_FORM_ref2:
2244           info_ptr += 2;
2245           break;
2246         case DW_FORM_data4:
2247         case DW_FORM_ref4:
2248           info_ptr += 4;
2249           break;
2250         case DW_FORM_data8:
2251         case DW_FORM_ref8:
2252           info_ptr += 8;
2253           break;
2254         case DW_FORM_string:
2255           read_string (abfd, info_ptr, &bytes_read);
2256           info_ptr += bytes_read;
2257           break;
2258         case DW_FORM_strp:
2259           info_ptr += cu->header.offset_size;
2260           break;
2261         case DW_FORM_block:
2262           info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
2263           info_ptr += bytes_read;
2264           break;
2265         case DW_FORM_block1:
2266           info_ptr += 1 + read_1_byte (abfd, info_ptr);
2267           break;
2268         case DW_FORM_block2:
2269           info_ptr += 2 + read_2_bytes (abfd, info_ptr);
2270           break;
2271         case DW_FORM_block4:
2272           info_ptr += 4 + read_4_bytes (abfd, info_ptr);
2273           break;
2274         case DW_FORM_sdata:
2275         case DW_FORM_udata:
2276         case DW_FORM_ref_udata:
2277           info_ptr = skip_leb128 (abfd, info_ptr);
2278           break;
2279         case DW_FORM_indirect:
2280           form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
2281           info_ptr += bytes_read;
2282           /* We need to continue parsing from here, so just go back to
2283              the top.  */
2284           goto skip_attribute;
2285
2286         default:
2287           error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
2288                  dwarf_form_name (form),
2289                  bfd_get_filename (abfd));
2290         }
2291     }
2292
2293   if (abbrev->has_children)
2294     return skip_children (info_ptr, cu);
2295   else
2296     return info_ptr;
2297 }
2298
2299 /* Locate ORIG_PDI's sibling; INFO_PTR should point to the start of
2300    the next DIE after ORIG_PDI.  */
2301
2302 static gdb_byte *
2303 locate_pdi_sibling (struct partial_die_info *orig_pdi, gdb_byte *info_ptr,
2304                     bfd *abfd, struct dwarf2_cu *cu)
2305 {
2306   /* Do we know the sibling already?  */
2307
2308   if (orig_pdi->sibling)
2309     return orig_pdi->sibling;
2310
2311   /* Are there any children to deal with?  */
2312
2313   if (!orig_pdi->has_children)
2314     return info_ptr;
2315
2316   /* Skip the children the long way.  */
2317
2318   return skip_children (info_ptr, cu);
2319 }
2320
2321 /* Expand this partial symbol table into a full symbol table.  */
2322
2323 static void
2324 dwarf2_psymtab_to_symtab (struct partial_symtab *pst)
2325 {
2326   /* FIXME: This is barely more than a stub.  */
2327   if (pst != NULL)
2328     {
2329       if (pst->readin)
2330         {
2331           warning (_("bug: psymtab for %s is already read in."), pst->filename);
2332         }
2333       else
2334         {
2335           if (info_verbose)
2336             {
2337               printf_filtered (_("Reading in symbols for %s..."), pst->filename);
2338               gdb_flush (gdb_stdout);
2339             }
2340
2341           /* Restore our global data.  */
2342           dwarf2_per_objfile = objfile_data (pst->objfile,
2343                                              dwarf2_objfile_data_key);
2344
2345           psymtab_to_symtab_1 (pst);
2346
2347           /* Finish up the debug error message.  */
2348           if (info_verbose)
2349             printf_filtered (_("done.\n"));
2350         }
2351     }
2352 }
2353
2354 /* Add PER_CU to the queue.  */
2355
2356 static void
2357 queue_comp_unit (struct dwarf2_per_cu_data *per_cu)
2358 {
2359   struct dwarf2_queue_item *item;
2360
2361   per_cu->queued = 1;
2362   item = xmalloc (sizeof (*item));
2363   item->per_cu = per_cu;
2364   item->next = NULL;
2365
2366   if (dwarf2_queue == NULL)
2367     dwarf2_queue = item;
2368   else
2369     dwarf2_queue_tail->next = item;
2370
2371   dwarf2_queue_tail = item;
2372 }
2373
2374 /* Process the queue.  */
2375
2376 static void
2377 process_queue (struct objfile *objfile)
2378 {
2379   struct dwarf2_queue_item *item, *next_item;
2380
2381   /* Initially, there is just one item on the queue.  Load its DIEs,
2382      and the DIEs of any other compilation units it requires,
2383      transitively.  */
2384
2385   for (item = dwarf2_queue; item != NULL; item = item->next)
2386     {
2387       /* Read in this compilation unit.  This may add new items to
2388          the end of the queue.  */
2389       load_full_comp_unit (item->per_cu);
2390
2391       item->per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
2392       dwarf2_per_objfile->read_in_chain = item->per_cu;
2393
2394       /* If this compilation unit has already had full symbols created,
2395          reset the TYPE fields in each DIE.  */
2396       if (item->per_cu->psymtab->readin)
2397         reset_die_and_siblings_types (item->per_cu->cu->dies,
2398                                       item->per_cu->cu);
2399     }
2400
2401   /* Now everything left on the queue needs to be read in.  Process
2402      them, one at a time, removing from the queue as we finish.  */
2403   for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
2404     {
2405       if (!item->per_cu->psymtab->readin)
2406         process_full_comp_unit (item->per_cu);
2407
2408       item->per_cu->queued = 0;
2409       next_item = item->next;
2410       xfree (item);
2411     }
2412
2413   dwarf2_queue_tail = NULL;
2414 }
2415
2416 /* Free all allocated queue entries.  This function only releases anything if
2417    an error was thrown; if the queue was processed then it would have been
2418    freed as we went along.  */
2419
2420 static void
2421 dwarf2_release_queue (void *dummy)
2422 {
2423   struct dwarf2_queue_item *item, *last;
2424
2425   item = dwarf2_queue;
2426   while (item)
2427     {
2428       /* Anything still marked queued is likely to be in an
2429          inconsistent state, so discard it.  */
2430       if (item->per_cu->queued)
2431         {
2432           if (item->per_cu->cu != NULL)
2433             free_one_cached_comp_unit (item->per_cu->cu);
2434           item->per_cu->queued = 0;
2435         }
2436
2437       last = item;
2438       item = item->next;
2439       xfree (last);
2440     }
2441
2442   dwarf2_queue = dwarf2_queue_tail = NULL;
2443 }
2444
2445 /* Read in full symbols for PST, and anything it depends on.  */
2446
2447 static void
2448 psymtab_to_symtab_1 (struct partial_symtab *pst)
2449 {
2450   struct dwarf2_per_cu_data *per_cu;
2451   struct cleanup *back_to;
2452   int i;
2453
2454   for (i = 0; i < pst->number_of_dependencies; i++)
2455     if (!pst->dependencies[i]->readin)
2456       {
2457         /* Inform about additional files that need to be read in.  */
2458         if (info_verbose)
2459           {
2460             /* FIXME: i18n: Need to make this a single string.  */
2461             fputs_filtered (" ", gdb_stdout);
2462             wrap_here ("");
2463             fputs_filtered ("and ", gdb_stdout);
2464             wrap_here ("");
2465             printf_filtered ("%s...", pst->dependencies[i]->filename);
2466             wrap_here ("");     /* Flush output */
2467             gdb_flush (gdb_stdout);
2468           }
2469         psymtab_to_symtab_1 (pst->dependencies[i]);
2470       }
2471
2472   per_cu = (struct dwarf2_per_cu_data *) pst->read_symtab_private;
2473
2474   if (per_cu == NULL)
2475     {
2476       /* It's an include file, no symbols to read for it.
2477          Everything is in the parent symtab.  */
2478       pst->readin = 1;
2479       return;
2480     }
2481
2482   back_to = make_cleanup (dwarf2_release_queue, NULL);
2483
2484   queue_comp_unit (per_cu);
2485
2486   process_queue (pst->objfile);
2487
2488   /* Age the cache, releasing compilation units that have not
2489      been used recently.  */
2490   age_cached_comp_units ();
2491
2492   do_cleanups (back_to);
2493 }
2494
2495 /* Load the DIEs associated with PST and PER_CU into memory.  */
2496
2497 static struct dwarf2_cu *
2498 load_full_comp_unit (struct dwarf2_per_cu_data *per_cu)
2499 {
2500   struct partial_symtab *pst = per_cu->psymtab;
2501   bfd *abfd = pst->objfile->obfd;
2502   struct dwarf2_cu *cu;
2503   unsigned long offset;
2504   gdb_byte *info_ptr;
2505   struct cleanup *back_to, *free_cu_cleanup;
2506   struct attribute *attr;
2507   CORE_ADDR baseaddr;
2508
2509   /* Set local variables from the partial symbol table info.  */
2510   offset = per_cu->offset;
2511
2512   info_ptr = dwarf2_per_objfile->info_buffer + offset;
2513
2514   cu = xmalloc (sizeof (struct dwarf2_cu));
2515   memset (cu, 0, sizeof (struct dwarf2_cu));
2516
2517   /* If an error occurs while loading, release our storage.  */
2518   free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
2519
2520   cu->objfile = pst->objfile;
2521
2522   /* read in the comp_unit header  */
2523   info_ptr = read_comp_unit_head (&cu->header, info_ptr, abfd);
2524
2525   /* Read the abbrevs for this compilation unit  */
2526   dwarf2_read_abbrevs (abfd, cu);
2527   back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
2528
2529   cu->header.offset = offset;
2530
2531   cu->per_cu = per_cu;
2532   per_cu->cu = cu;
2533
2534   /* We use this obstack for block values in dwarf_alloc_block.  */
2535   obstack_init (&cu->comp_unit_obstack);
2536
2537   cu->dies = read_comp_unit (info_ptr, abfd, cu);
2538
2539   /* We try not to read any attributes in this function, because not
2540      all objfiles needed for references have been loaded yet, and symbol
2541      table processing isn't initialized.  But we have to set the CU language,
2542      or we won't be able to build types correctly.  */
2543   attr = dwarf2_attr (cu->dies, DW_AT_language, cu);
2544   if (attr)
2545     set_cu_language (DW_UNSND (attr), cu);
2546   else
2547     set_cu_language (language_minimal, cu);
2548
2549   do_cleanups (back_to);
2550
2551   /* We've successfully allocated this compilation unit.  Let our caller
2552      clean it up when finished with it.  */
2553   discard_cleanups (free_cu_cleanup);
2554
2555   return cu;
2556 }
2557
2558 /* Generate full symbol information for PST and CU, whose DIEs have
2559    already been loaded into memory.  */
2560
2561 static void
2562 process_full_comp_unit (struct dwarf2_per_cu_data *per_cu)
2563 {
2564   struct partial_symtab *pst = per_cu->psymtab;
2565   struct dwarf2_cu *cu = per_cu->cu;
2566   struct objfile *objfile = pst->objfile;
2567   bfd *abfd = objfile->obfd;
2568   CORE_ADDR lowpc, highpc;
2569   struct symtab *symtab;
2570   struct cleanup *back_to;
2571   struct attribute *attr;
2572   CORE_ADDR baseaddr;
2573
2574   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2575
2576   /* We're in the global namespace.  */
2577   processing_current_prefix = "";
2578
2579   buildsym_init ();
2580   back_to = make_cleanup (really_free_pendings, NULL);
2581
2582   cu->list_in_scope = &file_symbols;
2583
2584   /* Find the base address of the compilation unit for range lists and
2585      location lists.  It will normally be specified by DW_AT_low_pc.
2586      In DWARF-3 draft 4, the base address could be overridden by
2587      DW_AT_entry_pc.  It's been removed, but GCC still uses this for
2588      compilation units with discontinuous ranges.  */
2589
2590   cu->header.base_known = 0;
2591   cu->header.base_address = 0;
2592
2593   attr = dwarf2_attr (cu->dies, DW_AT_entry_pc, cu);
2594   if (attr)
2595     {
2596       cu->header.base_address = DW_ADDR (attr);
2597       cu->header.base_known = 1;
2598     }
2599   else
2600     {
2601       attr = dwarf2_attr (cu->dies, DW_AT_low_pc, cu);
2602       if (attr)
2603         {
2604           cu->header.base_address = DW_ADDR (attr);
2605           cu->header.base_known = 1;
2606         }
2607     }
2608
2609   /* Do line number decoding in read_file_scope () */
2610   process_die (cu->dies, cu);
2611
2612   /* Some compilers don't define a DW_AT_high_pc attribute for the
2613      compilation unit.  If the DW_AT_high_pc is missing, synthesize
2614      it, by scanning the DIE's below the compilation unit.  */
2615   get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
2616
2617   symtab = end_symtab (highpc + baseaddr, objfile, SECT_OFF_TEXT (objfile));
2618
2619   /* Set symtab language to language from DW_AT_language.
2620      If the compilation is from a C file generated by language preprocessors,
2621      do not set the language if it was already deduced by start_subfile.  */
2622   if (symtab != NULL
2623       && !(cu->language == language_c && symtab->language != language_c))
2624     {
2625       symtab->language = cu->language;
2626     }
2627   pst->symtab = symtab;
2628   pst->readin = 1;
2629
2630   do_cleanups (back_to);
2631 }
2632
2633 /* Process a die and its children.  */
2634
2635 static void
2636 process_die (struct die_info *die, struct dwarf2_cu *cu)
2637 {
2638   switch (die->tag)
2639     {
2640     case DW_TAG_padding:
2641       break;
2642     case DW_TAG_compile_unit:
2643       read_file_scope (die, cu);
2644       break;
2645     case DW_TAG_subprogram:
2646       read_subroutine_type (die, cu);
2647       read_func_scope (die, cu);
2648       break;
2649     case DW_TAG_inlined_subroutine:
2650       /* FIXME:  These are ignored for now.
2651          They could be used to set breakpoints on all inlined instances
2652          of a function and make GDB `next' properly over inlined functions.  */
2653       break;
2654     case DW_TAG_lexical_block:
2655     case DW_TAG_try_block:
2656     case DW_TAG_catch_block:
2657       read_lexical_block_scope (die, cu);
2658       break;
2659     case DW_TAG_class_type:
2660     case DW_TAG_structure_type:
2661     case DW_TAG_union_type:
2662       read_structure_type (die, cu);
2663       process_structure_scope (die, cu);
2664       break;
2665     case DW_TAG_enumeration_type:
2666       read_enumeration_type (die, cu);
2667       process_enumeration_scope (die, cu);
2668       break;
2669
2670     /* FIXME drow/2004-03-14: These initialize die->type, but do not create
2671        a symbol or process any children.  Therefore it doesn't do anything
2672        that won't be done on-demand by read_type_die.  */
2673     case DW_TAG_subroutine_type:
2674       read_subroutine_type (die, cu);
2675       break;
2676     case DW_TAG_set_type:
2677       read_set_type (die, cu);
2678       break;
2679     case DW_TAG_array_type:
2680       read_array_type (die, cu);
2681       break;
2682     case DW_TAG_pointer_type:
2683       read_tag_pointer_type (die, cu);
2684       break;
2685     case DW_TAG_ptr_to_member_type:
2686       read_tag_ptr_to_member_type (die, cu);
2687       break;
2688     case DW_TAG_reference_type:
2689       read_tag_reference_type (die, cu);
2690       break;
2691     case DW_TAG_string_type:
2692       read_tag_string_type (die, cu);
2693       break;
2694     /* END FIXME */
2695
2696     case DW_TAG_base_type:
2697       read_base_type (die, cu);
2698       /* Add a typedef symbol for the type definition, if it has a
2699          DW_AT_name.  */
2700       new_symbol (die, die->type, cu);
2701       break;
2702     case DW_TAG_subrange_type:
2703       read_subrange_type (die, cu);
2704       /* Add a typedef symbol for the type definition, if it has a
2705          DW_AT_name.  */
2706       new_symbol (die, die->type, cu);
2707       break;
2708     case DW_TAG_common_block:
2709       read_common_block (die, cu);
2710       break;
2711     case DW_TAG_common_inclusion:
2712       break;
2713     case DW_TAG_namespace:
2714       processing_has_namespace_info = 1;
2715       read_namespace (die, cu);
2716       break;
2717     case DW_TAG_imported_declaration:
2718     case DW_TAG_imported_module:
2719       /* FIXME: carlton/2002-10-16: Eventually, we should use the
2720          information contained in these.  DW_TAG_imported_declaration
2721          dies shouldn't have children; DW_TAG_imported_module dies
2722          shouldn't in the C++ case, but conceivably could in the
2723          Fortran case, so we'll have to replace this gdb_assert if
2724          Fortran compilers start generating that info.  */
2725       processing_has_namespace_info = 1;
2726       gdb_assert (die->child == NULL);
2727       break;
2728     default:
2729       new_symbol (die, NULL, cu);
2730       break;
2731     }
2732 }
2733
2734 static void
2735 initialize_cu_func_list (struct dwarf2_cu *cu)
2736 {
2737   cu->first_fn = cu->last_fn = cu->cached_fn = NULL;
2738 }
2739
2740 static void
2741 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
2742 {
2743   struct objfile *objfile = cu->objfile;
2744   struct comp_unit_head *cu_header = &cu->header;
2745   struct cleanup *back_to = make_cleanup (null_cleanup, 0);
2746   CORE_ADDR lowpc = ((CORE_ADDR) -1);
2747   CORE_ADDR highpc = ((CORE_ADDR) 0);
2748   struct attribute *attr;
2749   char *name = "<unknown>";
2750   char *comp_dir = NULL;
2751   struct die_info *child_die;
2752   bfd *abfd = objfile->obfd;
2753   struct line_header *line_header = 0;
2754   CORE_ADDR baseaddr;
2755   
2756   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2757
2758   get_scope_pc_bounds (die, &lowpc, &highpc, cu);
2759
2760   /* If we didn't find a lowpc, set it to highpc to avoid complaints
2761      from finish_block.  */
2762   if (lowpc == ((CORE_ADDR) -1))
2763     lowpc = highpc;
2764   lowpc += baseaddr;
2765   highpc += baseaddr;
2766
2767   attr = dwarf2_attr (die, DW_AT_name, cu);
2768   if (attr)
2769     {
2770       name = DW_STRING (attr);
2771     }
2772   attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
2773   if (attr)
2774     {
2775       comp_dir = DW_STRING (attr);
2776       if (comp_dir)
2777         {
2778           /* Irix 6.2 native cc prepends <machine>.: to the compilation
2779              directory, get rid of it.  */
2780           char *cp = strchr (comp_dir, ':');
2781
2782           if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/')
2783             comp_dir = cp + 1;
2784         }
2785     }
2786
2787   attr = dwarf2_attr (die, DW_AT_language, cu);
2788   if (attr)
2789     {
2790       set_cu_language (DW_UNSND (attr), cu);
2791     }
2792
2793   attr = dwarf2_attr (die, DW_AT_producer, cu);
2794   if (attr) 
2795     cu->producer = DW_STRING (attr);
2796   
2797   /* We assume that we're processing GCC output. */
2798   processing_gcc_compilation = 2;
2799 #if 0
2800   /* FIXME:Do something here.  */
2801   if (dip->at_producer != NULL)
2802     {
2803       handle_producer (dip->at_producer);
2804     }
2805 #endif
2806
2807   /* The compilation unit may be in a different language or objfile,
2808      zero out all remembered fundamental types.  */
2809   memset (cu->ftypes, 0, FT_NUM_MEMBERS * sizeof (struct type *));
2810
2811   start_symtab (name, comp_dir, lowpc);
2812   record_debugformat ("DWARF 2");
2813
2814   initialize_cu_func_list (cu);
2815
2816   /* Process all dies in compilation unit.  */
2817   if (die->child != NULL)
2818     {
2819       child_die = die->child;
2820       while (child_die && child_die->tag)
2821         {
2822           process_die (child_die, cu);
2823           child_die = sibling_die (child_die);
2824         }
2825     }
2826
2827   /* Decode line number information if present.  */
2828   attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
2829   if (attr)
2830     {
2831       unsigned int line_offset = DW_UNSND (attr);
2832       line_header = dwarf_decode_line_header (line_offset, abfd, cu);
2833       if (line_header)
2834         {
2835           make_cleanup ((make_cleanup_ftype *) free_line_header,
2836                         (void *) line_header);
2837           dwarf_decode_lines (line_header, comp_dir, abfd, cu, NULL);
2838         }
2839     }
2840
2841   /* Decode macro information, if present.  Dwarf 2 macro information
2842      refers to information in the line number info statement program
2843      header, so we can only read it if we've read the header
2844      successfully.  */
2845   attr = dwarf2_attr (die, DW_AT_macro_info, cu);
2846   if (attr && line_header)
2847     {
2848       unsigned int macro_offset = DW_UNSND (attr);
2849       dwarf_decode_macros (line_header, macro_offset,
2850                            comp_dir, abfd, cu);
2851     }
2852   do_cleanups (back_to);
2853 }
2854
2855 static void
2856 add_to_cu_func_list (const char *name, CORE_ADDR lowpc, CORE_ADDR highpc,
2857                      struct dwarf2_cu *cu)
2858 {
2859   struct function_range *thisfn;
2860
2861   thisfn = (struct function_range *)
2862     obstack_alloc (&cu->comp_unit_obstack, sizeof (struct function_range));
2863   thisfn->name = name;
2864   thisfn->lowpc = lowpc;
2865   thisfn->highpc = highpc;
2866   thisfn->seen_line = 0;
2867   thisfn->next = NULL;
2868
2869   if (cu->last_fn == NULL)
2870       cu->first_fn = thisfn;
2871   else
2872       cu->last_fn->next = thisfn;
2873
2874   cu->last_fn = thisfn;
2875 }
2876
2877 static void
2878 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
2879 {
2880   struct objfile *objfile = cu->objfile;
2881   struct context_stack *new;
2882   CORE_ADDR lowpc;
2883   CORE_ADDR highpc;
2884   struct die_info *child_die;
2885   struct attribute *attr;
2886   char *name;
2887   const char *previous_prefix = processing_current_prefix;
2888   struct cleanup *back_to = NULL;
2889   CORE_ADDR baseaddr;
2890
2891   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2892
2893   name = dwarf2_linkage_name (die, cu);
2894
2895   /* Ignore functions with missing or empty names and functions with
2896      missing or invalid low and high pc attributes.  */
2897   if (name == NULL || !dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu))
2898     return;
2899
2900   if (cu->language == language_cplus
2901       || cu->language == language_java)
2902     {
2903       struct die_info *spec_die = die_specification (die, cu);
2904
2905       /* NOTE: carlton/2004-01-23: We have to be careful in the
2906          presence of DW_AT_specification.  For example, with GCC 3.4,
2907          given the code
2908
2909            namespace N {
2910              void foo() {
2911                // Definition of N::foo.
2912              }
2913            }
2914
2915          then we'll have a tree of DIEs like this:
2916
2917          1: DW_TAG_compile_unit
2918            2: DW_TAG_namespace        // N
2919              3: DW_TAG_subprogram     // declaration of N::foo
2920            4: DW_TAG_subprogram       // definition of N::foo
2921                 DW_AT_specification   // refers to die #3
2922
2923          Thus, when processing die #4, we have to pretend that we're
2924          in the context of its DW_AT_specification, namely the contex
2925          of die #3.  */
2926         
2927       if (spec_die != NULL)
2928         {
2929           char *specification_prefix = determine_prefix (spec_die, cu);
2930           processing_current_prefix = specification_prefix;
2931           back_to = make_cleanup (xfree, specification_prefix);
2932         }
2933     }
2934
2935   lowpc += baseaddr;
2936   highpc += baseaddr;
2937
2938   /* Record the function range for dwarf_decode_lines.  */
2939   add_to_cu_func_list (name, lowpc, highpc, cu);
2940
2941   new = push_context (0, lowpc);
2942   new->name = new_symbol (die, die->type, cu);
2943
2944   /* If there is a location expression for DW_AT_frame_base, record
2945      it.  */
2946   attr = dwarf2_attr (die, DW_AT_frame_base, cu);
2947   if (attr)
2948     /* FIXME: cagney/2004-01-26: The DW_AT_frame_base's location
2949        expression is being recorded directly in the function's symbol
2950        and not in a separate frame-base object.  I guess this hack is
2951        to avoid adding some sort of frame-base adjunct/annex to the
2952        function's symbol :-(.  The problem with doing this is that it
2953        results in a function symbol with a location expression that
2954        has nothing to do with the location of the function, ouch!  The
2955        relationship should be: a function's symbol has-a frame base; a
2956        frame-base has-a location expression.  */
2957     dwarf2_symbol_mark_computed (attr, new->name, cu);
2958
2959   cu->list_in_scope = &local_symbols;
2960
2961   if (die->child != NULL)
2962     {
2963       child_die = die->child;
2964       while (child_die && child_die->tag)
2965         {
2966           process_die (child_die, cu);
2967           child_die = sibling_die (child_die);
2968         }
2969     }
2970
2971   new = pop_context ();
2972   /* Make a block for the local symbols within.  */
2973   finish_block (new->name, &local_symbols, new->old_blocks,
2974                 lowpc, highpc, objfile);
2975   
2976   /* In C++, we can have functions nested inside functions (e.g., when
2977      a function declares a class that has methods).  This means that
2978      when we finish processing a function scope, we may need to go
2979      back to building a containing block's symbol lists.  */
2980   local_symbols = new->locals;
2981   param_symbols = new->params;
2982
2983   /* If we've finished processing a top-level function, subsequent
2984      symbols go in the file symbol list.  */
2985   if (outermost_context_p ())
2986     cu->list_in_scope = &file_symbols;
2987
2988   processing_current_prefix = previous_prefix;
2989   if (back_to != NULL)
2990     do_cleanups (back_to);
2991 }
2992
2993 /* Process all the DIES contained within a lexical block scope.  Start
2994    a new scope, process the dies, and then close the scope.  */
2995
2996 static void
2997 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
2998 {
2999   struct objfile *objfile = cu->objfile;
3000   struct context_stack *new;
3001   CORE_ADDR lowpc, highpc;
3002   struct die_info *child_die;
3003   CORE_ADDR baseaddr;
3004
3005   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3006
3007   /* Ignore blocks with missing or invalid low and high pc attributes.  */
3008   /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
3009      as multiple lexical blocks?  Handling children in a sane way would
3010      be nasty.  Might be easier to properly extend generic blocks to 
3011      describe ranges.  */
3012   if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu))
3013     return;
3014   lowpc += baseaddr;
3015   highpc += baseaddr;
3016
3017   push_context (0, lowpc);
3018   if (die->child != NULL)
3019     {
3020       child_die = die->child;
3021       while (child_die && child_die->tag)
3022         {
3023           process_die (child_die, cu);
3024           child_die = sibling_die (child_die);
3025         }
3026     }
3027   new = pop_context ();
3028
3029   if (local_symbols != NULL)
3030     {
3031       finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
3032                     highpc, objfile);
3033     }
3034   local_symbols = new->locals;
3035 }
3036
3037 /* Get low and high pc attributes from a die.  Return 1 if the attributes
3038    are present and valid, otherwise, return 0.  Return -1 if the range is
3039    discontinuous, i.e. derived from DW_AT_ranges information.  */
3040 static int
3041 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
3042                       CORE_ADDR *highpc, struct dwarf2_cu *cu)
3043 {
3044   struct objfile *objfile = cu->objfile;
3045   struct comp_unit_head *cu_header = &cu->header;
3046   struct attribute *attr;
3047   bfd *obfd = objfile->obfd;
3048   CORE_ADDR low = 0;
3049   CORE_ADDR high = 0;
3050   int ret = 0;
3051
3052   attr = dwarf2_attr (die, DW_AT_high_pc, cu);
3053   if (attr)
3054     {
3055       high = DW_ADDR (attr);
3056       attr = dwarf2_attr (die, DW_AT_low_pc, cu);
3057       if (attr)
3058         low = DW_ADDR (attr);
3059       else
3060         /* Found high w/o low attribute.  */
3061         return 0;
3062
3063       /* Found consecutive range of addresses.  */
3064       ret = 1;
3065     }
3066   else
3067     {
3068       attr = dwarf2_attr (die, DW_AT_ranges, cu);
3069       if (attr != NULL)
3070         {
3071           unsigned int addr_size = cu_header->addr_size;
3072           CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
3073           /* Value of the DW_AT_ranges attribute is the offset in the
3074              .debug_ranges section.  */
3075           unsigned int offset = DW_UNSND (attr);
3076           /* Base address selection entry.  */
3077           CORE_ADDR base;
3078           int found_base;
3079           unsigned int dummy;
3080           gdb_byte *buffer;
3081           CORE_ADDR marker;
3082           int low_set;
3083  
3084           found_base = cu_header->base_known;
3085           base = cu_header->base_address;
3086
3087           if (offset >= dwarf2_per_objfile->ranges_size)
3088             {
3089               complaint (&symfile_complaints,
3090                          _("Offset %d out of bounds for DW_AT_ranges attribute"),
3091                          offset);
3092               return 0;
3093             }
3094           buffer = dwarf2_per_objfile->ranges_buffer + offset;
3095
3096           /* Read in the largest possible address.  */
3097           marker = read_address (obfd, buffer, cu, &dummy);
3098           if ((marker & mask) == mask)
3099             {
3100               /* If we found the largest possible address, then
3101                  read the base address.  */
3102               base = read_address (obfd, buffer + addr_size, cu, &dummy);
3103               buffer += 2 * addr_size;
3104               offset += 2 * addr_size;
3105               found_base = 1;
3106             }
3107
3108           low_set = 0;
3109
3110           while (1)
3111             {
3112               CORE_ADDR range_beginning, range_end;
3113
3114               range_beginning = read_address (obfd, buffer, cu, &dummy);
3115               buffer += addr_size;
3116               range_end = read_address (obfd, buffer, cu, &dummy);
3117               buffer += addr_size;
3118               offset += 2 * addr_size;
3119
3120               /* An end of list marker is a pair of zero addresses.  */
3121               if (range_beginning == 0 && range_end == 0)
3122                 /* Found the end of list entry.  */
3123                 break;
3124
3125               /* Each base address selection entry is a pair of 2 values.
3126                  The first is the largest possible address, the second is
3127                  the base address.  Check for a base address here.  */
3128               if ((range_beginning & mask) == mask)
3129                 {
3130                   /* If we found the largest possible address, then
3131                      read the base address.  */
3132                   base = read_address (obfd, buffer + addr_size, cu, &dummy);
3133                   found_base = 1;
3134                   continue;
3135                 }
3136
3137               if (!found_base)
3138                 {
3139                   /* We have no valid base address for the ranges
3140                      data.  */
3141                   complaint (&symfile_complaints,
3142                              _("Invalid .debug_ranges data (no base address)"));
3143                   return 0;
3144                 }
3145
3146               range_beginning += base;
3147               range_end += base;
3148
3149               /* FIXME: This is recording everything as a low-high
3150                  segment of consecutive addresses.  We should have a
3151                  data structure for discontiguous block ranges
3152                  instead.  */
3153               if (! low_set)
3154                 {
3155                   low = range_beginning;
3156                   high = range_end;
3157                   low_set = 1;
3158                 }
3159               else
3160                 {
3161                   if (range_beginning < low)
3162                     low = range_beginning;
3163                   if (range_end > high)
3164                     high = range_end;
3165                 }
3166             }
3167
3168           if (! low_set)
3169             /* If the first entry is an end-of-list marker, the range
3170                describes an empty scope, i.e. no instructions.  */
3171             return 0;
3172
3173           ret = -1;
3174         }
3175     }
3176
3177   if (high < low)
3178     return 0;
3179
3180   /* When using the GNU linker, .gnu.linkonce. sections are used to
3181      eliminate duplicate copies of functions and vtables and such.
3182      The linker will arbitrarily choose one and discard the others.
3183      The AT_*_pc values for such functions refer to local labels in
3184      these sections.  If the section from that file was discarded, the
3185      labels are not in the output, so the relocs get a value of 0.
3186      If this is a discarded function, mark the pc bounds as invalid,
3187      so that GDB will ignore it.  */
3188   if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
3189     return 0;
3190
3191   *lowpc = low;
3192   *highpc = high;
3193   return ret;
3194 }
3195
3196 /* Get the low and high pc's represented by the scope DIE, and store
3197    them in *LOWPC and *HIGHPC.  If the correct values can't be
3198    determined, set *LOWPC to -1 and *HIGHPC to 0.  */
3199
3200 static void
3201 get_scope_pc_bounds (struct die_info *die,
3202                      CORE_ADDR *lowpc, CORE_ADDR *highpc,
3203                      struct dwarf2_cu *cu)
3204 {
3205   CORE_ADDR best_low = (CORE_ADDR) -1;
3206   CORE_ADDR best_high = (CORE_ADDR) 0;
3207   CORE_ADDR current_low, current_high;
3208
3209   if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu))
3210     {
3211       best_low = current_low;
3212       best_high = current_high;
3213     }
3214   else
3215     {
3216       struct die_info *child = die->child;
3217
3218       while (child && child->tag)
3219         {
3220           switch (child->tag) {
3221           case DW_TAG_subprogram:
3222             if (dwarf2_get_pc_bounds (child, &current_low, &current_high, cu))
3223               {
3224                 best_low = min (best_low, current_low);
3225                 best_high = max (best_high, current_high);
3226               }
3227             break;
3228           case DW_TAG_namespace:
3229             /* FIXME: carlton/2004-01-16: Should we do this for
3230                DW_TAG_class_type/DW_TAG_structure_type, too?  I think
3231                that current GCC's always emit the DIEs corresponding
3232                to definitions of methods of classes as children of a
3233                DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
3234                the DIEs giving the declarations, which could be
3235                anywhere).  But I don't see any reason why the
3236                standards says that they have to be there.  */
3237             get_scope_pc_bounds (child, &current_low, &current_high, cu);
3238
3239             if (current_low != ((CORE_ADDR) -1))
3240               {
3241                 best_low = min (best_low, current_low);
3242                 best_high = max (best_high, current_high);
3243               }
3244             break;
3245           default:
3246             /* Ignore. */
3247             break;
3248           }
3249
3250           child = sibling_die (child);
3251         }
3252     }
3253
3254   *lowpc = best_low;
3255   *highpc = best_high;
3256 }
3257
3258 /* Add an aggregate field to the field list.  */
3259
3260 static void
3261 dwarf2_add_field (struct field_info *fip, struct die_info *die,
3262                   struct dwarf2_cu *cu)
3263
3264   struct objfile *objfile = cu->objfile;
3265   struct nextfield *new_field;
3266   struct attribute *attr;
3267   struct field *fp;
3268   char *fieldname = "";
3269
3270   /* Allocate a new field list entry and link it in.  */
3271   new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
3272   make_cleanup (xfree, new_field);
3273   memset (new_field, 0, sizeof (struct nextfield));
3274   new_field->next = fip->fields;
3275   fip->fields = new_field;
3276   fip->nfields++;
3277
3278   /* Handle accessibility and virtuality of field.
3279      The default accessibility for members is public, the default
3280      accessibility for inheritance is private.  */
3281   if (die->tag != DW_TAG_inheritance)
3282     new_field->accessibility = DW_ACCESS_public;
3283   else
3284     new_field->accessibility = DW_ACCESS_private;
3285   new_field->virtuality = DW_VIRTUALITY_none;
3286
3287   attr = dwarf2_attr (die, DW_AT_accessibility, cu);
3288   if (attr)
3289     new_field->accessibility = DW_UNSND (attr);
3290   if (new_field->accessibility != DW_ACCESS_public)
3291     fip->non_public_fields = 1;
3292   attr = dwarf2_attr (die, DW_AT_virtuality, cu);
3293   if (attr)
3294     new_field->virtuality = DW_UNSND (attr);
3295
3296   fp = &new_field->field;
3297
3298   if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
3299     {
3300       /* Data member other than a C++ static data member.  */
3301       
3302       /* Get type of field.  */
3303       fp->type = die_type (die, cu);
3304
3305       FIELD_STATIC_KIND (*fp) = 0;
3306
3307       /* Get bit size of field (zero if none).  */
3308       attr = dwarf2_attr (die, DW_AT_bit_size, cu);
3309       if (attr)
3310         {
3311           FIELD_BITSIZE (*fp) = DW_UNSND (attr);
3312         }
3313       else
3314         {
3315           FIELD_BITSIZE (*fp) = 0;
3316         }
3317
3318       /* Get bit offset of field.  */
3319       attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
3320       if (attr)
3321         {
3322           FIELD_BITPOS (*fp) =
3323             decode_locdesc (DW_BLOCK (attr), cu) * bits_per_byte;
3324         }
3325       else
3326         FIELD_BITPOS (*fp) = 0;
3327       attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
3328       if (attr)
3329         {
3330           if (BITS_BIG_ENDIAN)
3331             {
3332               /* For big endian bits, the DW_AT_bit_offset gives the
3333                  additional bit offset from the MSB of the containing
3334                  anonymous object to the MSB of the field.  We don't
3335                  have to do anything special since we don't need to
3336                  know the size of the anonymous object.  */
3337               FIELD_BITPOS (*fp) += DW_UNSND (attr);
3338             }
3339           else
3340             {
3341               /* For little endian bits, compute the bit offset to the
3342                  MSB of the anonymous object, subtract off the number of
3343                  bits from the MSB of the field to the MSB of the
3344                  object, and then subtract off the number of bits of
3345                  the field itself.  The result is the bit offset of
3346                  the LSB of the field.  */
3347               int anonymous_size;
3348               int bit_offset = DW_UNSND (attr);
3349
3350               attr = dwarf2_attr (die, DW_AT_byte_size, cu);
3351               if (attr)
3352                 {
3353                   /* The size of the anonymous object containing
3354                      the bit field is explicit, so use the
3355                      indicated size (in bytes).  */
3356                   anonymous_size = DW_UNSND (attr);
3357                 }
3358               else
3359                 {
3360                   /* The size of the anonymous object containing
3361                      the bit field must be inferred from the type
3362                      attribute of the data member containing the
3363                      bit field.  */
3364                   anonymous_size = TYPE_LENGTH (fp->type);
3365                 }
3366               FIELD_BITPOS (*fp) += anonymous_size * bits_per_byte
3367                 - bit_offset - FIELD_BITSIZE (*fp);
3368             }
3369         }
3370
3371       /* Get name of field.  */
3372       attr = dwarf2_attr (die, DW_AT_name, cu);
3373       if (attr && DW_STRING (attr))
3374         fieldname = DW_STRING (attr);
3375
3376       /* The name is already allocated along with this objfile, so we don't
3377          need to duplicate it for the type.  */
3378       fp->name = fieldname;
3379
3380       /* Change accessibility for artificial fields (e.g. virtual table
3381          pointer or virtual base class pointer) to private.  */
3382       if (dwarf2_attr (die, DW_AT_artificial, cu))
3383         {
3384           new_field->accessibility = DW_ACCESS_private;
3385           fip->non_public_fields = 1;
3386         }
3387     }
3388   else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
3389     {
3390       /* C++ static member.  */
3391
3392       /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
3393          is a declaration, but all versions of G++ as of this writing
3394          (so through at least 3.2.1) incorrectly generate
3395          DW_TAG_variable tags.  */
3396       
3397       char *physname;
3398
3399       /* Get name of field.  */
3400       attr = dwarf2_attr (die, DW_AT_name, cu);
3401       if (attr && DW_STRING (attr))
3402         fieldname = DW_STRING (attr);
3403       else
3404         return;
3405
3406       /* Get physical name.  */
3407       physname = dwarf2_linkage_name (die, cu);
3408
3409       /* The name is already allocated along with this objfile, so we don't
3410          need to duplicate it for the type.  */
3411       SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
3412       FIELD_TYPE (*fp) = die_type (die, cu);
3413       FIELD_NAME (*fp) = fieldname;
3414     }
3415   else if (die->tag == DW_TAG_inheritance)
3416     {
3417       /* C++ base class field.  */
3418       attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
3419       if (attr)
3420         FIELD_BITPOS (*fp) = (decode_locdesc (DW_BLOCK (attr), cu)
3421                               * bits_per_byte);
3422       FIELD_BITSIZE (*fp) = 0;
3423       FIELD_STATIC_KIND (*fp) = 0;
3424       FIELD_TYPE (*fp) = die_type (die, cu);
3425       FIELD_NAME (*fp) = type_name_no_tag (fp->type);
3426       fip->nbaseclasses++;
3427     }
3428 }
3429
3430 /* Create the vector of fields, and attach it to the type.  */
3431
3432 static void
3433 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
3434                               struct dwarf2_cu *cu)
3435 {
3436   int nfields = fip->nfields;
3437
3438   /* Record the field count, allocate space for the array of fields,
3439      and create blank accessibility bitfields if necessary.  */
3440   TYPE_NFIELDS (type) = nfields;
3441   TYPE_FIELDS (type) = (struct field *)
3442     TYPE_ALLOC (type, sizeof (struct field) * nfields);
3443   memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
3444
3445   if (fip->non_public_fields)
3446     {
3447       ALLOCATE_CPLUS_STRUCT_TYPE (type);
3448
3449       TYPE_FIELD_PRIVATE_BITS (type) =
3450         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
3451       B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
3452
3453       TYPE_FIELD_PROTECTED_BITS (type) =
3454         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
3455       B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
3456
3457       TYPE_FIELD_IGNORE_BITS (type) =
3458         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
3459       B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
3460     }
3461
3462   /* If the type has baseclasses, allocate and clear a bit vector for
3463      TYPE_FIELD_VIRTUAL_BITS.  */
3464   if (fip->nbaseclasses)
3465     {
3466       int num_bytes = B_BYTES (fip->nbaseclasses);
3467       unsigned char *pointer;
3468
3469       ALLOCATE_CPLUS_STRUCT_TYPE (type);
3470       pointer = TYPE_ALLOC (type, num_bytes);
3471       TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
3472       B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
3473       TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
3474     }
3475
3476   /* Copy the saved-up fields into the field vector.  Start from the head
3477      of the list, adding to the tail of the field array, so that they end
3478      up in the same order in the array in which they were added to the list.  */
3479   while (nfields-- > 0)
3480     {
3481       TYPE_FIELD (type, nfields) = fip->fields->field;
3482       switch (fip->fields->accessibility)
3483         {
3484         case DW_ACCESS_private:
3485           SET_TYPE_FIELD_PRIVATE (type, nfields);
3486           break;
3487
3488         case DW_ACCESS_protected:
3489           SET_TYPE_FIELD_PROTECTED (type, nfields);
3490           break;
3491
3492         case DW_ACCESS_public:
3493           break;
3494
3495         default:
3496           /* Unknown accessibility.  Complain and treat it as public.  */
3497           {
3498             complaint (&symfile_complaints, _("unsupported accessibility %d"),
3499                        fip->fields->accessibility);
3500           }
3501           break;
3502         }
3503       if (nfields < fip->nbaseclasses)
3504         {
3505           switch (fip->fields->virtuality)
3506             {
3507             case DW_VIRTUALITY_virtual:
3508             case DW_VIRTUALITY_pure_virtual:
3509               SET_TYPE_FIELD_VIRTUAL (type, nfields);
3510               break;
3511             }
3512         }
3513       fip->fields = fip->fields->next;
3514     }
3515 }
3516
3517 /* Add a member function to the proper fieldlist.  */
3518
3519 static void
3520 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
3521                       struct type *type, struct dwarf2_cu *cu)
3522 {
3523   struct objfile *objfile = cu->objfile;
3524   struct attribute *attr;
3525   struct fnfieldlist *flp;
3526   int i;
3527   struct fn_field *fnp;
3528   char *fieldname;
3529   char *physname;
3530   struct nextfnfield *new_fnfield;
3531
3532   /* Get name of member function.  */
3533   attr = dwarf2_attr (die, DW_AT_name, cu);
3534   if (attr && DW_STRING (attr))
3535     fieldname = DW_STRING (attr);
3536   else
3537     return;
3538
3539   /* Get the mangled name.  */
3540   physname = dwarf2_linkage_name (die, cu);
3541
3542   /* Look up member function name in fieldlist.  */
3543   for (i = 0; i < fip->nfnfields; i++)
3544     {
3545       if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
3546         break;
3547     }
3548
3549   /* Create new list element if necessary.  */
3550   if (i < fip->nfnfields)
3551     flp = &fip->fnfieldlists[i];
3552   else
3553     {
3554       if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
3555         {
3556           fip->fnfieldlists = (struct fnfieldlist *)
3557             xrealloc (fip->fnfieldlists,
3558                       (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
3559                       * sizeof (struct fnfieldlist));
3560           if (fip->nfnfields == 0)
3561             make_cleanup (free_current_contents, &fip->fnfieldlists);
3562         }
3563       flp = &fip->fnfieldlists[fip->nfnfields];
3564       flp->name = fieldname;
3565       flp->length = 0;
3566       flp->head = NULL;
3567       fip->nfnfields++;
3568     }
3569
3570   /* Create a new member function field and chain it to the field list
3571      entry. */
3572   new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
3573   make_cleanup (xfree, new_fnfield);
3574   memset (new_fnfield, 0, sizeof (struct nextfnfield));
3575   new_fnfield->next = flp->head;
3576   flp->head = new_fnfield;
3577   flp->length++;
3578
3579   /* Fill in the member function field info.  */
3580   fnp = &new_fnfield->fnfield;
3581   /* The name is already allocated along with this objfile, so we don't
3582      need to duplicate it for the type.  */
3583   fnp->physname = physname ? physname : "";
3584   fnp->type = alloc_type (objfile);
3585   if (die->type && TYPE_CODE (die->type) == TYPE_CODE_FUNC)
3586     {
3587       int nparams = TYPE_NFIELDS (die->type);
3588
3589       /* TYPE is the domain of this method, and DIE->TYPE is the type
3590            of the method itself (TYPE_CODE_METHOD).  */
3591       smash_to_method_type (fnp->type, type,
3592                             TYPE_TARGET_TYPE (die->type),
3593                             TYPE_FIELDS (die->type),
3594                             TYPE_NFIELDS (die->type),
3595                             TYPE_VARARGS (die->type));
3596
3597       /* Handle static member functions.
3598          Dwarf2 has no clean way to discern C++ static and non-static
3599          member functions. G++ helps GDB by marking the first
3600          parameter for non-static member functions (which is the
3601          this pointer) as artificial. We obtain this information
3602          from read_subroutine_type via TYPE_FIELD_ARTIFICIAL.  */
3603       if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (die->type, 0) == 0)
3604         fnp->voffset = VOFFSET_STATIC;
3605     }
3606   else
3607     complaint (&symfile_complaints, _("member function type missing for '%s'"),
3608                physname);
3609
3610   /* Get fcontext from DW_AT_containing_type if present.  */
3611   if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
3612     fnp->fcontext = die_containing_type (die, cu);
3613
3614   /* dwarf2 doesn't have stubbed physical names, so the setting of is_const
3615      and is_volatile is irrelevant, as it is needed by gdb_mangle_name only.  */
3616
3617   /* Get accessibility.  */
3618   attr = dwarf2_attr (die, DW_AT_accessibility, cu);
3619   if (attr)
3620     {
3621       switch (DW_UNSND (attr))
3622         {
3623         case DW_ACCESS_private:
3624           fnp->is_private = 1;
3625           break;
3626         case DW_ACCESS_protected:
3627           fnp->is_protected = 1;
3628           break;
3629         }
3630     }
3631
3632   /* Check for artificial methods.  */
3633   attr = dwarf2_attr (die, DW_AT_artificial, cu);
3634   if (attr && DW_UNSND (attr) != 0)
3635     fnp->is_artificial = 1;
3636
3637   /* Get index in virtual function table if it is a virtual member function.  */
3638   attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
3639   if (attr)
3640     {
3641       /* Support the .debug_loc offsets */
3642       if (attr_form_is_block (attr))
3643         {
3644           fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
3645         }
3646       else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
3647         {
3648           dwarf2_complex_location_expr_complaint ();
3649         }
3650       else
3651         {
3652           dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
3653                                                  fieldname);
3654         }
3655    }
3656 }
3657
3658 /* Create the vector of member function fields, and attach it to the type.  */
3659
3660 static void
3661 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
3662                                  struct dwarf2_cu *cu)
3663 {
3664   struct fnfieldlist *flp;
3665   int total_length = 0;
3666   int i;
3667
3668   ALLOCATE_CPLUS_STRUCT_TYPE (type);
3669   TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
3670     TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
3671
3672   for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
3673     {
3674       struct nextfnfield *nfp = flp->head;
3675       struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
3676       int k;
3677
3678       TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
3679       TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
3680       fn_flp->fn_fields = (struct fn_field *)
3681         TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
3682       for (k = flp->length; (k--, nfp); nfp = nfp->next)
3683         fn_flp->fn_fields[k] = nfp->fnfield;
3684
3685       total_length += flp->length;
3686     }
3687
3688   TYPE_NFN_FIELDS (type) = fip->nfnfields;
3689   TYPE_NFN_FIELDS_TOTAL (type) = total_length;
3690 }
3691
3692
3693 /* Returns non-zero if NAME is the name of a vtable member in CU's
3694    language, zero otherwise.  */
3695 static int
3696 is_vtable_name (const char *name, struct dwarf2_cu *cu)
3697 {
3698   static const char vptr[] = "_vptr";
3699   static const char vtable[] = "vtable";
3700
3701   /* Look for the C++ and Java forms of the vtable.  */
3702   if ((cu->language == language_java
3703        && strncmp (name, vtable, sizeof (vtable) - 1) == 0)
3704        || (strncmp (name, vptr, sizeof (vptr) - 1) == 0
3705        && is_cplus_marker (name[sizeof (vptr) - 1])))
3706     return 1;
3707
3708   return 0;
3709 }
3710
3711 /* GCC outputs unnamed structures that are really pointers to member
3712    functions, with the ABI-specified layout.  If DIE (from CU) describes
3713    such a structure, set its type, and return nonzero.  Otherwise return
3714    zero.
3715
3716    GCC shouldn't do this; it should just output pointer to member DIEs.
3717    This is GCC PR debug/28767.  */
3718
3719 static int
3720 quirk_gcc_member_function_pointer (struct die_info *die, struct dwarf2_cu *cu)
3721 {
3722   struct objfile *objfile = cu->objfile;
3723   struct type *type;
3724   struct die_info *pfn_die, *delta_die;
3725   struct attribute *pfn_name, *delta_name;
3726   struct type *pfn_type, *domain_type;
3727
3728   /* Check for a structure with no name and two children.  */
3729   if (die->tag != DW_TAG_structure_type
3730       || dwarf2_attr (die, DW_AT_name, cu) != NULL
3731       || die->child == NULL
3732       || die->child->sibling == NULL
3733       || (die->child->sibling->sibling != NULL
3734           && die->child->sibling->sibling->tag != DW_TAG_padding))
3735     return 0;
3736
3737   /* Check for __pfn and __delta members.  */
3738   pfn_die = die->child;
3739   pfn_name = dwarf2_attr (pfn_die, DW_AT_name, cu);
3740   if (pfn_die->tag != DW_TAG_member
3741       || pfn_name == NULL
3742       || DW_STRING (pfn_name) == NULL
3743       || strcmp ("__pfn", DW_STRING (pfn_name)) != 0)
3744     return 0;
3745
3746   delta_die = pfn_die->sibling;
3747   delta_name = dwarf2_attr (delta_die, DW_AT_name, cu);
3748   if (delta_die->tag != DW_TAG_member
3749       || delta_name == NULL
3750       || DW_STRING (delta_name) == NULL
3751       || strcmp ("__delta", DW_STRING (delta_name)) != 0)
3752     return 0;
3753
3754   /* Find the type of the method.  */
3755   pfn_type = die_type (pfn_die, cu);
3756   if (pfn_type == NULL
3757       || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
3758       || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
3759     return 0;
3760
3761   /* Look for the "this" argument.  */
3762   pfn_type = TYPE_TARGET_TYPE (pfn_type);
3763   if (TYPE_NFIELDS (pfn_type) == 0
3764       || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
3765     return 0;
3766
3767   domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
3768   type = alloc_type (objfile);
3769   smash_to_method_type (type, domain_type, TYPE_TARGET_TYPE (pfn_type),
3770                         TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
3771                         TYPE_VARARGS (pfn_type));
3772   type = lookup_pointer_type (type);
3773   set_die_type (die, type, cu);
3774
3775   return 1;
3776 }
3777
3778 /* Called when we find the DIE that starts a structure or union scope
3779    (definition) to process all dies that define the members of the
3780    structure or union.
3781
3782    NOTE: we need to call struct_type regardless of whether or not the
3783    DIE has an at_name attribute, since it might be an anonymous
3784    structure or union.  This gets the type entered into our set of
3785    user defined types.
3786
3787    However, if the structure is incomplete (an opaque struct/union)
3788    then suppress creating a symbol table entry for it since gdb only
3789    wants to find the one with the complete definition.  Note that if
3790    it is complete, we just call new_symbol, which does it's own
3791    checking about whether the struct/union is anonymous or not (and
3792    suppresses creating a symbol table entry itself).  */
3793
3794 static void
3795 read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
3796 {
3797   struct objfile *objfile = cu->objfile;
3798   struct type *type;
3799   struct attribute *attr;
3800   const char *previous_prefix = processing_current_prefix;
3801   struct cleanup *back_to = NULL;
3802
3803   if (die->type)
3804     return;
3805
3806   if (quirk_gcc_member_function_pointer (die, cu))
3807     return;
3808
3809   type = alloc_type (objfile);
3810   INIT_CPLUS_SPECIFIC (type);
3811   attr = dwarf2_attr (die, DW_AT_name, cu);
3812   if (attr && DW_STRING (attr))
3813     {
3814       if (cu->language == language_cplus
3815           || cu->language == language_java)
3816         {
3817           char *new_prefix = determine_class_name (die, cu);
3818           TYPE_TAG_NAME (type) = obsavestring (new_prefix,
3819                                                strlen (new_prefix),
3820                                                &objfile->objfile_obstack);
3821           back_to = make_cleanup (xfree, new_prefix);
3822           processing_current_prefix = new_prefix;
3823         }
3824       else
3825         {
3826           /* The name is already allocated along with this objfile, so
3827              we don't need to duplicate it for the type.  */
3828           TYPE_TAG_NAME (type) = DW_STRING (attr);
3829         }
3830     }
3831
3832   if (die->tag == DW_TAG_structure_type)
3833     {
3834       TYPE_CODE (type) = TYPE_CODE_STRUCT;
3835     }
3836   else if (die->tag == DW_TAG_union_type)
3837     {
3838       TYPE_CODE (type) = TYPE_CODE_UNION;
3839     }
3840   else
3841     {
3842       /* FIXME: TYPE_CODE_CLASS is currently defined to TYPE_CODE_STRUCT
3843          in gdbtypes.h.  */
3844       TYPE_CODE (type) = TYPE_CODE_CLASS;
3845     }
3846
3847   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
3848   if (attr)
3849     {
3850       TYPE_LENGTH (type) = DW_UNSND (attr);
3851     }
3852   else
3853     {
3854       TYPE_LENGTH (type) = 0;
3855     }
3856
3857   if (die_is_declaration (die, cu))
3858     TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
3859
3860   /* We need to add the type field to the die immediately so we don't
3861      infinitely recurse when dealing with pointers to the structure
3862      type within the structure itself. */
3863   set_die_type (die, type, cu);
3864
3865   if (die->child != NULL && ! die_is_declaration (die, cu))
3866     {
3867       struct field_info fi;
3868       struct die_info *child_die;
3869       struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
3870
3871       memset (&fi, 0, sizeof (struct field_info));
3872
3873       child_die = die->child;
3874
3875       while (child_die && child_die->tag)
3876         {
3877           if (child_die->tag == DW_TAG_member
3878               || child_die->tag == DW_TAG_variable)
3879             {
3880               /* NOTE: carlton/2002-11-05: A C++ static data member
3881                  should be a DW_TAG_member that is a declaration, but
3882                  all versions of G++ as of this writing (so through at
3883                  least 3.2.1) incorrectly generate DW_TAG_variable
3884                  tags for them instead.  */
3885               dwarf2_add_field (&fi, child_die, cu);
3886             }
3887           else if (child_die->tag == DW_TAG_subprogram)
3888             {
3889               /* C++ member function. */
3890               read_type_die (child_die, cu);
3891               dwarf2_add_member_fn (&fi, child_die, type, cu);
3892             }
3893           else if (child_die->tag == DW_TAG_inheritance)
3894             {
3895               /* C++ base class field.  */
3896               dwarf2_add_field (&fi, child_die, cu);
3897             }
3898           child_die = sibling_die (child_die);
3899         }
3900
3901       /* Attach fields and member functions to the type.  */
3902       if (fi.nfields)
3903         dwarf2_attach_fields_to_type (&fi, type, cu);
3904       if (fi.nfnfields)
3905         {
3906           dwarf2_attach_fn_fields_to_type (&fi, type, cu);
3907
3908           /* Get the type which refers to the base class (possibly this
3909              class itself) which contains the vtable pointer for the current
3910              class from the DW_AT_containing_type attribute.  */
3911
3912           if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
3913             {
3914               struct type *t = die_containing_type (die, cu);
3915
3916               TYPE_VPTR_BASETYPE (type) = t;
3917               if (type == t)
3918                 {
3919                   int i;
3920
3921                   /* Our own class provides vtbl ptr.  */
3922                   for (i = TYPE_NFIELDS (t) - 1;
3923                        i >= TYPE_N_BASECLASSES (t);
3924                        --i)
3925                     {
3926                       char *fieldname = TYPE_FIELD_NAME (t, i);
3927
3928                       if (is_vtable_name (fieldname, cu))
3929                         {
3930                           TYPE_VPTR_FIELDNO (type) = i;
3931                           break;
3932                         }
3933                     }
3934
3935                   /* Complain if virtual function table field not found.  */
3936                   if (i < TYPE_N_BASECLASSES (t))
3937                     complaint (&symfile_complaints,
3938                                _("virtual function table pointer not found when defining class '%s'"),
3939                                TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
3940                                "");
3941                 }
3942               else
3943                 {
3944                   TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
3945                 }
3946             }
3947           else if (cu->producer
3948                    && strncmp (cu->producer,
3949                                "IBM(R) XL C/C++ Advanced Edition", 32) == 0)
3950             {
3951               /* The IBM XLC compiler does not provide direct indication
3952                  of the containing type, but the vtable pointer is
3953                  always named __vfp.  */
3954
3955               int i;
3956
3957               for (i = TYPE_NFIELDS (type) - 1;
3958                    i >= TYPE_N_BASECLASSES (type);
3959                    --i)
3960                 {
3961                   if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
3962                     {
3963                       TYPE_VPTR_FIELDNO (type) = i;
3964                       TYPE_VPTR_BASETYPE (type) = type;
3965                       break;
3966                     }
3967                 }
3968             }
3969         }
3970
3971       do_cleanups (back_to);
3972     }
3973
3974   processing_current_prefix = previous_prefix;
3975   if (back_to != NULL)
3976     do_cleanups (back_to);
3977 }
3978
3979 static void
3980 process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
3981 {
3982   struct objfile *objfile = cu->objfile;
3983   const char *previous_prefix = processing_current_prefix;
3984   struct die_info *child_die = die->child;
3985
3986   if (TYPE_TAG_NAME (die->type) != NULL)
3987     processing_current_prefix = TYPE_TAG_NAME (die->type);
3988
3989   /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
3990      snapshots) has been known to create a die giving a declaration
3991      for a class that has, as a child, a die giving a definition for a
3992      nested class.  So we have to process our children even if the
3993      current die is a declaration.  Normally, of course, a declaration
3994      won't have any children at all.  */
3995
3996   while (child_die != NULL && child_die->tag)
3997     {
3998       if (child_die->tag == DW_TAG_member
3999           || child_die->tag == DW_TAG_variable
4000           || child_die->tag == DW_TAG_inheritance)
4001         {
4002           /* Do nothing.  */
4003         }
4004       else
4005         process_die (child_die, cu);
4006
4007       child_die = sibling_die (child_die);
4008     }
4009
4010   if (die->child != NULL && ! die_is_declaration (die, cu))
4011     new_symbol (die, die->type, cu);
4012
4013   processing_current_prefix = previous_prefix;
4014 }
4015
4016 /* Given a DW_AT_enumeration_type die, set its type.  We do not
4017    complete the type's fields yet, or create any symbols.  */
4018
4019 static void
4020 read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
4021 {
4022   struct objfile *objfile = cu->objfile;
4023   struct type *type;
4024   struct attribute *attr;
4025
4026   if (die->type)
4027     return;
4028
4029   type = alloc_type (objfile);
4030
4031   TYPE_CODE (type) = TYPE_CODE_ENUM;
4032   attr = dwarf2_attr (die, DW_AT_name, cu);
4033   if (attr && DW_STRING (attr))
4034     {
4035       char *name = DW_STRING (attr);
4036
4037       if (processing_has_namespace_info)
4038         {
4039           TYPE_TAG_NAME (type) = typename_concat (&objfile->objfile_obstack,
4040                                                   processing_current_prefix,
4041                                                   name, cu);
4042         }
4043       else
4044         {
4045           /* The name is already allocated along with this objfile, so
4046              we don't need to duplicate it for the type.  */
4047           TYPE_TAG_NAME (type) = name;
4048         }
4049     }
4050
4051   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
4052   if (attr)
4053     {
4054       TYPE_LENGTH (type) = DW_UNSND (attr);
4055     }
4056   else
4057     {
4058       TYPE_LENGTH (type) = 0;
4059     }
4060
4061   set_die_type (die, type, cu);
4062 }
4063
4064 /* Determine the name of the type represented by DIE, which should be
4065    a named C++ or Java compound type.  Return the name in question; the caller
4066    is responsible for xfree()'ing it.  */
4067
4068 static char *
4069 determine_class_name (struct die_info *die, struct dwarf2_cu *cu)
4070 {
4071   struct cleanup *back_to = NULL;
4072   struct die_info *spec_die = die_specification (die, cu);
4073   char *new_prefix = NULL;
4074
4075   /* If this is the definition of a class that is declared by another
4076      die, then processing_current_prefix may not be accurate; see
4077      read_func_scope for a similar example.  */
4078   if (spec_die != NULL)
4079     {
4080       char *specification_prefix = determine_prefix (spec_die, cu);
4081       processing_current_prefix = specification_prefix;
4082       back_to = make_cleanup (xfree, specification_prefix);
4083     }
4084
4085   /* If we don't have namespace debug info, guess the name by trying
4086      to demangle the names of members, just like we did in
4087      guess_structure_name.  */
4088   if (!processing_has_namespace_info)
4089     {
4090       struct die_info *child;
4091
4092       for (child = die->child;
4093            child != NULL && child->tag != 0;
4094            child = sibling_die (child))
4095         {
4096           if (child->tag == DW_TAG_subprogram)
4097             {
4098               new_prefix 
4099                 = language_class_name_from_physname (cu->language_defn,
4100                                                      dwarf2_linkage_name
4101                                                      (child, cu));
4102
4103               if (new_prefix != NULL)
4104                 break;
4105             }
4106         }
4107     }
4108
4109   if (new_prefix == NULL)
4110     {
4111       const char *name = dwarf2_name (die, cu);
4112       new_prefix = typename_concat (NULL, processing_current_prefix,
4113                                     name ? name : "<<anonymous>>", 
4114                                     cu);
4115     }
4116
4117   if (back_to != NULL)
4118     do_cleanups (back_to);
4119
4120   return new_prefix;
4121 }
4122
4123 /* Given a pointer to a die which begins an enumeration, process all
4124    the dies that define the members of the enumeration, and create the
4125    symbol for the enumeration type.
4126
4127    NOTE: We reverse the order of the element list.  */
4128
4129 static void
4130 process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
4131 {
4132   struct objfile *objfile = cu->objfile;
4133   struct die_info *child_die;
4134   struct field *fields;
4135   struct attribute *attr;
4136   struct symbol *sym;
4137   int num_fields;
4138   int unsigned_enum = 1;
4139
4140   num_fields = 0;
4141   fields = NULL;
4142   if (die->child != NULL)
4143     {
4144       child_die = die->child;
4145       while (child_die && child_die->tag)
4146         {
4147           if (child_die->tag != DW_TAG_enumerator)
4148             {
4149               process_die (child_die, cu);
4150             }
4151           else
4152             {
4153               attr = dwarf2_attr (child_die, DW_AT_name, cu);
4154               if (attr)
4155                 {
4156                   sym = new_symbol (child_die, die->type, cu);
4157                   if (SYMBOL_VALUE (sym) < 0)
4158                     unsigned_enum = 0;
4159
4160                   if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
4161                     {
4162                       fields = (struct field *)
4163                         xrealloc (fields,
4164                                   (num_fields + DW_FIELD_ALLOC_CHUNK)
4165                                   * sizeof (struct field));
4166                     }
4167
4168                   FIELD_NAME (fields[num_fields]) = DEPRECATED_SYMBOL_NAME (sym);
4169                   FIELD_TYPE (fields[num_fields]) = NULL;
4170                   FIELD_BITPOS (fields[num_fields]) = SYMBOL_VALUE (sym);
4171                   FIELD_BITSIZE (fields[num_fields]) = 0;
4172                   FIELD_STATIC_KIND (fields[num_fields]) = 0;
4173
4174                   num_fields++;
4175                 }
4176             }
4177
4178           child_die = sibling_die (child_die);
4179         }
4180
4181       if (num_fields)
4182         {
4183           TYPE_NFIELDS (die->type) = num_fields;
4184           TYPE_FIELDS (die->type) = (struct field *)
4185             TYPE_ALLOC (die->type, sizeof (struct field) * num_fields);
4186           memcpy (TYPE_FIELDS (die->type), fields,
4187                   sizeof (struct field) * num_fields);
4188           xfree (fields);
4189         }
4190       if (unsigned_enum)
4191         TYPE_FLAGS (die->type) |= TYPE_FLAG_UNSIGNED;
4192     }
4193
4194   new_symbol (die, die->type, cu);
4195 }
4196
4197 /* Extract all information from a DW_TAG_array_type DIE and put it in
4198    the DIE's type field.  For now, this only handles one dimensional
4199    arrays.  */
4200
4201 static void
4202 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
4203 {
4204   struct objfile *objfile = cu->objfile;
4205   struct die_info *child_die;
4206   struct type *type = NULL;
4207   struct type *element_type, *range_type, *index_type;
4208   struct type **range_types = NULL;
4209   struct attribute *attr;
4210   int ndim = 0;
4211   struct cleanup *back_to;
4212
4213   /* Return if we've already decoded this type. */
4214   if (die->type)
4215     {
4216       return;
4217     }
4218
4219   element_type = die_type (die, cu);
4220
4221   /* Irix 6.2 native cc creates array types without children for
4222      arrays with unspecified length.  */
4223   if (die->child == NULL)
4224     {
4225       index_type = dwarf2_fundamental_type (objfile, FT_INTEGER, cu);
4226       range_type = create_range_type (NULL, index_type, 0, -1);
4227       set_die_type (die, create_array_type (NULL, element_type, range_type),
4228                     cu);
4229       return;
4230     }
4231
4232   back_to = make_cleanup (null_cleanup, NULL);
4233   child_die = die->child;
4234   while (child_die && child_die->tag)
4235     {
4236       if (child_die->tag == DW_TAG_subrange_type)
4237         {
4238           read_subrange_type (child_die, cu);
4239
4240           if (child_die->type != NULL)
4241             {
4242               /* The range type was succesfully read. Save it for
4243                  the array type creation.  */
4244               if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
4245                 {
4246                   range_types = (struct type **)
4247                     xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
4248                               * sizeof (struct type *));
4249                   if (ndim == 0)
4250                     make_cleanup (free_current_contents, &range_types);
4251                 }
4252               range_types[ndim++] = child_die->type;
4253             }
4254         }
4255       child_die = sibling_die (child_die);
4256     }
4257
4258   /* Dwarf2 dimensions are output from left to right, create the
4259      necessary array types in backwards order.  */
4260
4261   type = element_type;
4262
4263   if (read_array_order (die, cu) == DW_ORD_col_major)
4264     {
4265       int i = 0;
4266       while (i < ndim)
4267         type = create_array_type (NULL, type, range_types[i++]);
4268     }
4269   else
4270     {
4271       while (ndim-- > 0)
4272         type = create_array_type (NULL, type, range_types[ndim]);
4273     }
4274
4275   /* Understand Dwarf2 support for vector types (like they occur on
4276      the PowerPC w/ AltiVec).  Gcc just adds another attribute to the
4277      array type.  This is not part of the Dwarf2/3 standard yet, but a
4278      custom vendor extension.  The main difference between a regular
4279      array and the vector variant is that vectors are passed by value
4280      to functions.  */
4281   attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
4282   if (attr)
4283     TYPE_FLAGS (type) |= TYPE_FLAG_VECTOR;
4284
4285   attr = dwarf2_attr (die, DW_AT_name, cu);
4286   if (attr && DW_STRING (attr))
4287     TYPE_NAME (type) = DW_STRING (attr);
4288   
4289   do_cleanups (back_to);
4290
4291   /* Install the type in the die. */
4292   set_die_type (die, type, cu);
4293 }
4294
4295 static enum dwarf_array_dim_ordering
4296 read_array_order (struct die_info *die, struct dwarf2_cu *cu) 
4297 {
4298   struct attribute *attr;
4299
4300   attr = dwarf2_attr (die, DW_AT_ordering, cu);
4301
4302   if (attr) return DW_SND (attr);
4303
4304   /*
4305     GNU F77 is a special case, as at 08/2004 array type info is the
4306     opposite order to the dwarf2 specification, but data is still 
4307     laid out as per normal fortran.
4308
4309     FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need 
4310     version checking.
4311   */
4312
4313   if (cu->language == language_fortran &&
4314       cu->producer && strstr (cu->producer, "GNU F77"))
4315     {
4316       return DW_ORD_row_major;
4317     }
4318
4319   switch (cu->language_defn->la_array_ordering) 
4320     {
4321     case array_column_major:
4322       return DW_ORD_col_major;
4323     case array_row_major:
4324     default:
4325       return DW_ORD_row_major;
4326     };
4327 }
4328
4329 /* Extract all information from a DW_TAG_set_type DIE and put it in
4330    the DIE's type field. */
4331
4332 static void
4333 read_set_type (struct die_info *die, struct dwarf2_cu *cu)
4334 {
4335   if (die->type == NULL)
4336     die->type = create_set_type ((struct type *) NULL, die_type (die, cu));
4337 }
4338
4339 /* First cut: install each common block member as a global variable.  */
4340
4341 static void
4342 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
4343 {
4344   struct die_info *child_die;
4345   struct attribute *attr;
4346   struct symbol *sym;
4347   CORE_ADDR base = (CORE_ADDR) 0;
4348
4349   attr = dwarf2_attr (die, DW_AT_location, cu);
4350   if (attr)
4351     {
4352       /* Support the .debug_loc offsets */
4353       if (attr_form_is_block (attr))
4354         {
4355           base = decode_locdesc (DW_BLOCK (attr), cu);
4356         }
4357       else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
4358         {
4359           dwarf2_complex_location_expr_complaint ();
4360         }
4361       else
4362         {
4363           dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
4364                                                  "common block member");
4365         }
4366     }
4367   if (die->child != NULL)
4368     {
4369       child_die = die->child;
4370       while (child_die && child_die->tag)
4371         {
4372           sym = new_symbol (child_die, NULL, cu);
4373           attr = dwarf2_attr (child_die, DW_AT_data_member_location, cu);
4374           if (attr)
4375             {
4376               SYMBOL_VALUE_ADDRESS (sym) =
4377                 base + decode_locdesc (DW_BLOCK (attr), cu);
4378               add_symbol_to_list (sym, &global_symbols);
4379             }
4380           child_die = sibling_die (child_die);
4381         }
4382     }
4383 }
4384
4385 /* Read a C++ namespace.  */
4386
4387 static void
4388 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
4389 {
4390   struct objfile *objfile = cu->objfile;
4391   const char *previous_prefix = processing_current_prefix;
4392   const char *name;
4393   int is_anonymous;
4394   struct die_info *current_die;
4395   struct cleanup *back_to = make_cleanup (null_cleanup, 0);
4396
4397   name = namespace_name (die, &is_anonymous, cu);
4398
4399   /* Now build the name of the current namespace.  */
4400
4401   if (previous_prefix[0] == '\0')
4402     {
4403       processing_current_prefix = name;
4404     }
4405   else
4406     {
4407       char *temp_name = typename_concat (NULL, previous_prefix, name, cu);
4408       make_cleanup (xfree, temp_name);
4409       processing_current_prefix = temp_name;
4410     }
4411
4412   /* Add a symbol associated to this if we haven't seen the namespace
4413      before.  Also, add a using directive if it's an anonymous
4414      namespace.  */
4415
4416   if (dwarf2_extension (die, cu) == NULL)
4417     {
4418       struct type *type;
4419
4420       /* FIXME: carlton/2003-06-27: Once GDB is more const-correct,
4421          this cast will hopefully become unnecessary.  */
4422       type = init_type (TYPE_CODE_NAMESPACE, 0, 0,
4423                         (char *) processing_current_prefix,
4424                         objfile);
4425       TYPE_TAG_NAME (type) = TYPE_NAME (type);
4426
4427       new_symbol (die, type, cu);
4428       set_die_type (die, type, cu);
4429
4430       if (is_anonymous)
4431         cp_add_using_directive (processing_current_prefix,
4432                                 strlen (previous_prefix),
4433                                 strlen (processing_current_prefix));
4434     }
4435
4436   if (die->child != NULL)
4437     {
4438       struct die_info *child_die = die->child;
4439       
4440       while (child_die && child_die->tag)
4441         {
4442           process_die (child_die, cu);
4443           child_die = sibling_die (child_die);
4444         }
4445     }
4446
4447   processing_current_prefix = previous_prefix;
4448   do_cleanups (back_to);
4449 }
4450
4451 /* Return the name of the namespace represented by DIE.  Set
4452    *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
4453    namespace.  */
4454
4455 static const char *
4456 namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
4457 {
4458   struct die_info *current_die;
4459   const char *name = NULL;
4460
4461   /* Loop through the extensions until we find a name.  */
4462
4463   for (current_die = die;
4464        current_die != NULL;
4465        current_die = dwarf2_extension (die, cu))
4466     {
4467       name = dwarf2_name (current_die, cu);
4468       if (name != NULL)
4469         break;
4470     }
4471
4472   /* Is it an anonymous namespace?  */
4473
4474   *is_anonymous = (name == NULL);
4475   if (*is_anonymous)
4476     name = "(anonymous namespace)";
4477
4478   return name;
4479 }
4480
4481 /* Extract all information from a DW_TAG_pointer_type DIE and add to
4482    the user defined type vector.  */
4483
4484 static void
4485 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
4486 {
4487   struct comp_unit_head *cu_header = &cu->header;
4488   struct type *type;
4489   struct attribute *attr_byte_size;
4490   struct attribute *attr_address_class;
4491   int byte_size, addr_class;
4492
4493   if (die->type)
4494     {
4495       return;
4496     }
4497
4498   type = lookup_pointer_type (die_type (die, cu));
4499
4500   attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
4501   if (attr_byte_size)
4502     byte_size = DW_UNSND (attr_byte_size);
4503   else
4504     byte_size = cu_header->addr_size;
4505
4506   attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
4507   if (attr_address_class)
4508     addr_class = DW_UNSND (attr_address_class);
4509   else
4510     addr_class = DW_ADDR_none;
4511
4512   /* If the pointer size or address class is different than the
4513      default, create a type variant marked as such and set the
4514      length accordingly.  */
4515   if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
4516     {
4517       if (ADDRESS_CLASS_TYPE_FLAGS_P ())
4518         {
4519           int type_flags;
4520
4521           type_flags = ADDRESS_CLASS_TYPE_FLAGS (byte_size, addr_class);
4522           gdb_assert ((type_flags & ~TYPE_FLAG_ADDRESS_CLASS_ALL) == 0);
4523           type = make_type_with_address_space (type, type_flags);
4524         }
4525       else if (TYPE_LENGTH (type) != byte_size)
4526         {
4527           complaint (&symfile_complaints, _("invalid pointer size %d"), byte_size);
4528         }
4529       else {
4530         /* Should we also complain about unhandled address classes?  */
4531       }
4532     }
4533
4534   TYPE_LENGTH (type) = byte_size;
4535   set_die_type (die, type, cu);
4536 }
4537
4538 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
4539    the user defined type vector.  */
4540
4541 static void
4542 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
4543 {
4544   struct objfile *objfile = cu->objfile;
4545   struct type *type;
4546   struct type *to_type;
4547   struct type *domain;
4548
4549   if (die->type)
4550     {
4551       return;
4552     }
4553
4554   type = alloc_type (objfile);
4555   to_type = die_type (die, cu);
4556   domain = die_containing_type (die, cu);
4557   smash_to_member_type (type, domain, to_type);
4558
4559   set_die_type (die, type, cu);
4560 }
4561
4562 /* Extract all information from a DW_TAG_reference_type DIE and add to
4563    the user defined type vector.  */
4564
4565 static void
4566 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
4567 {
4568   struct comp_unit_head *cu_header = &cu->header;
4569   struct type *type;
4570   struct attribute *attr;
4571
4572   if (die->type)
4573     {
4574       return;
4575     }
4576
4577   type = lookup_reference_type (die_type (die, cu));
4578   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
4579   if (attr)
4580     {
4581       TYPE_LENGTH (type) = DW_UNSND (attr);
4582     }
4583   else
4584     {
4585       TYPE_LENGTH (type) = cu_header->addr_size;
4586     }
4587   set_die_type (die, type, cu);
4588 }
4589
4590 static void
4591 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
4592 {
4593   struct type *base_type;
4594
4595   if (die->type)
4596     {
4597       return;
4598     }
4599
4600   base_type = die_type (die, cu);
4601   set_die_type (die, make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0),
4602                 cu);
4603 }
4604
4605 static void
4606 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
4607 {
4608   struct type *base_type;
4609
4610   if (die->type)
4611     {
4612       return;
4613     }
4614
4615   base_type = die_type (die, cu);
4616   set_die_type (die, make_cv_type (TYPE_CONST (base_type), 1, base_type, 0),
4617                 cu);
4618 }
4619
4620 /* Extract all information from a DW_TAG_string_type DIE and add to
4621    the user defined type vector.  It isn't really a user defined type,
4622    but it behaves like one, with other DIE's using an AT_user_def_type
4623    attribute to reference it.  */
4624
4625 static void
4626 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
4627 {
4628   struct objfile *objfile = cu->objfile;
4629   struct type *type, *range_type, *index_type, *char_type;
4630   struct attribute *attr;
4631   unsigned int length;
4632
4633   if (die->type)
4634     {
4635       return;
4636     }
4637
4638   attr = dwarf2_attr (die, DW_AT_string_length, cu);
4639   if (attr)
4640     {
4641       length = DW_UNSND (attr);
4642     }
4643   else
4644     {
4645       /* check for the DW_AT_byte_size attribute */
4646       attr = dwarf2_attr (die, DW_AT_byte_size, cu);
4647       if (attr)
4648         {
4649           length = DW_UNSND (attr);
4650         }
4651       else
4652         {
4653           length = 1;
4654         }
4655     }
4656   index_type = dwarf2_fundamental_type (objfile, FT_INTEGER, cu);
4657   range_type = create_range_type (NULL, index_type, 1, length);
4658   if (cu->language == language_fortran)
4659     {
4660       /* Need to create a unique string type for bounds
4661          information */
4662       type = create_string_type (0, range_type);
4663     }
4664   else
4665     {
4666       char_type = dwarf2_fundamental_type (objfile, FT_CHAR, cu);
4667       type = create_string_type (char_type, range_type);
4668     }
4669   set_die_type (die, type, cu);
4670 }
4671
4672 /* Handle DIES due to C code like:
4673
4674    struct foo
4675    {
4676    int (*funcp)(int a, long l);
4677    int b;
4678    };
4679
4680    ('funcp' generates a DW_TAG_subroutine_type DIE)
4681  */
4682
4683 static void
4684 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
4685 {
4686   struct type *type;            /* Type that this function returns */
4687   struct type *ftype;           /* Function that returns above type */
4688   struct attribute *attr;
4689
4690   /* Decode the type that this subroutine returns */
4691   if (die->type)
4692     {
4693       return;
4694     }
4695   type = die_type (die, cu);
4696   ftype = make_function_type (type, (struct type **) 0);
4697
4698   /* All functions in C++ and Java have prototypes.  */
4699   attr = dwarf2_attr (die, DW_AT_prototyped, cu);
4700   if ((attr && (DW_UNSND (attr) != 0))
4701       || cu->language == language_cplus
4702       || cu->language == language_java)
4703     TYPE_FLAGS (ftype) |= TYPE_FLAG_PROTOTYPED;
4704
4705   if (die->child != NULL)
4706     {
4707       struct die_info *child_die;
4708       int nparams = 0;
4709       int iparams = 0;
4710
4711       /* Count the number of parameters.
4712          FIXME: GDB currently ignores vararg functions, but knows about
4713          vararg member functions.  */
4714       child_die = die->child;
4715       while (child_die && child_die->tag)
4716         {
4717           if (child_die->tag == DW_TAG_formal_parameter)
4718             nparams++;
4719           else if (child_die->tag == DW_TAG_unspecified_parameters)
4720             TYPE_FLAGS (ftype) |= TYPE_FLAG_VARARGS;
4721           child_die = sibling_die (child_die);
4722         }
4723
4724       /* Allocate storage for parameters and fill them in.  */
4725       TYPE_NFIELDS (ftype) = nparams;
4726       TYPE_FIELDS (ftype) = (struct field *)
4727         TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
4728
4729       child_die = die->child;
4730       while (child_die && child_die->tag)
4731         {
4732           if (child_die->tag == DW_TAG_formal_parameter)
4733             {
4734               /* Dwarf2 has no clean way to discern C++ static and non-static
4735                  member functions. G++ helps GDB by marking the first
4736                  parameter for non-static member functions (which is the
4737                  this pointer) as artificial. We pass this information
4738                  to dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.  */
4739               attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
4740               if (attr)
4741                 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
4742               else
4743                 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
4744               TYPE_FIELD_TYPE (ftype, iparams) = die_type (child_die, cu);
4745               iparams++;
4746             }
4747           child_die = sibling_die (child_die);
4748         }
4749     }
4750
4751   set_die_type (die, ftype, cu);
4752 }
4753
4754 static void
4755 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
4756 {
4757   struct objfile *objfile = cu->objfile;
4758   struct attribute *attr;
4759   char *name = NULL;
4760
4761   if (!die->type)
4762     {
4763       attr = dwarf2_attr (die, DW_AT_name, cu);
4764       if (attr && DW_STRING (attr))
4765         {
4766           name = DW_STRING (attr);
4767         }
4768       set_die_type (die, init_type (TYPE_CODE_TYPEDEF, 0,
4769                                     TYPE_FLAG_TARGET_STUB, name, objfile),
4770                     cu);
4771       TYPE_TARGET_TYPE (die->type) = die_type (die, cu);
4772     }
4773 }
4774
4775 /* Find a representation of a given base type and install
4776    it in the TYPE field of the die.  */
4777
4778 static void
4779 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
4780 {
4781   struct objfile *objfile = cu->objfile;
4782   struct type *type;
4783   struct attribute *attr;
4784   int encoding = 0, size = 0;
4785
4786   /* If we've already decoded this die, this is a no-op. */
4787   if (die->type)
4788     {
4789       return;
4790     }
4791
4792   attr = dwarf2_attr (die, DW_AT_encoding, cu);
4793   if (attr)
4794     {
4795       encoding = DW_UNSND (attr);
4796     }
4797   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
4798   if (attr)
4799     {
4800       size = DW_UNSND (attr);
4801     }
4802   attr = dwarf2_attr (die, DW_AT_name, cu);
4803   if (attr && DW_STRING (attr))
4804     {
4805       enum type_code code = TYPE_CODE_INT;
4806       int type_flags = 0;
4807
4808       switch (encoding)
4809         {
4810         case DW_ATE_address:
4811           /* Turn DW_ATE_address into a void * pointer.  */
4812           code = TYPE_CODE_PTR;
4813           type_flags |= TYPE_FLAG_UNSIGNED;
4814           break;
4815         case DW_ATE_boolean:
4816           code = TYPE_CODE_BOOL;
4817           type_flags |= TYPE_FLAG_UNSIGNED;
4818           break;
4819         case DW_ATE_complex_float:
4820           code = TYPE_CODE_COMPLEX;
4821           break;
4822         case DW_ATE_float:
4823           code = TYPE_CODE_FLT;
4824           break;
4825         case DW_ATE_signed:
4826           break;
4827         case DW_ATE_unsigned:
4828           type_flags |= TYPE_FLAG_UNSIGNED;
4829           break;
4830         case DW_ATE_signed_char:
4831           if (cu->language == language_m2)
4832             code = TYPE_CODE_CHAR;
4833           break;
4834         case DW_ATE_unsigned_char:
4835           if (cu->language == language_m2)
4836             code = TYPE_CODE_CHAR;
4837           type_flags |= TYPE_FLAG_UNSIGNED;
4838           break;
4839         default:
4840           complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
4841                      dwarf_type_encoding_name (encoding));
4842           break;
4843         }
4844       type = init_type (code, size, type_flags, DW_STRING (attr), objfile);
4845       if (encoding == DW_ATE_address)
4846         TYPE_TARGET_TYPE (type) = dwarf2_fundamental_type (objfile, FT_VOID,
4847                                                            cu);
4848       else if (encoding == DW_ATE_complex_float)
4849         {
4850           if (size == 32)
4851             TYPE_TARGET_TYPE (type)
4852               = dwarf2_fundamental_type (objfile, FT_EXT_PREC_FLOAT, cu);
4853           else if (size == 16)
4854             TYPE_TARGET_TYPE (type)
4855               = dwarf2_fundamental_type (objfile, FT_DBL_PREC_FLOAT, cu);
4856           else if (size == 8)
4857             TYPE_TARGET_TYPE (type)
4858               = dwarf2_fundamental_type (objfile, FT_FLOAT, cu);
4859         }
4860     }
4861   else
4862     {
4863       type = dwarf_base_type (encoding, size, cu);
4864     }
4865   set_die_type (die, type, cu);
4866 }
4867
4868 /* Read the given DW_AT_subrange DIE.  */
4869
4870 static void
4871 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
4872 {
4873   struct type *base_type;
4874   struct type *range_type;
4875   struct attribute *attr;
4876   int low = 0;
4877   int high = -1;
4878   
4879   /* If we have already decoded this die, then nothing more to do.  */
4880   if (die->type)
4881     return;
4882
4883   base_type = die_type (die, cu);
4884   if (base_type == NULL)
4885     {
4886       complaint (&symfile_complaints,
4887                 _("DW_AT_type missing from DW_TAG_subrange_type"));
4888       return;
4889     }
4890
4891   if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
4892     base_type = alloc_type (NULL);
4893
4894   if (cu->language == language_fortran)
4895     { 
4896       /* FORTRAN implies a lower bound of 1, if not given.  */
4897       low = 1;
4898     }
4899
4900   /* FIXME: For variable sized arrays either of these could be
4901      a variable rather than a constant value.  We'll allow it,
4902      but we don't know how to handle it.  */
4903   attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
4904   if (attr)
4905     low = dwarf2_get_attr_constant_value (attr, 0);
4906
4907   attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
4908   if (attr)
4909     {       
4910       if (attr->form == DW_FORM_block1)
4911         {
4912           /* GCC encodes arrays with unspecified or dynamic length
4913              with a DW_FORM_block1 attribute.
4914              FIXME: GDB does not yet know how to handle dynamic
4915              arrays properly, treat them as arrays with unspecified
4916              length for now.
4917
4918              FIXME: jimb/2003-09-22: GDB does not really know
4919              how to handle arrays of unspecified length
4920              either; we just represent them as zero-length
4921              arrays.  Choose an appropriate upper bound given
4922              the lower bound we've computed above.  */
4923           high = low - 1;
4924         }
4925       else
4926         high = dwarf2_get_attr_constant_value (attr, 1);
4927     }
4928
4929   range_type = create_range_type (NULL, base_type, low, high);
4930
4931   attr = dwarf2_attr (die, DW_AT_name, cu);
4932   if (attr && DW_STRING (attr))
4933     TYPE_NAME (range_type) = DW_STRING (attr);
4934   
4935   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
4936   if (attr)
4937     TYPE_LENGTH (range_type) = DW_UNSND (attr);
4938
4939   set_die_type (die, range_type, cu);
4940 }
4941   
4942 static void
4943 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
4944 {
4945   struct type *type;
4946   struct attribute *attr;
4947
4948   if (die->type)
4949     return;
4950
4951   /* For now, we only support the C meaning of an unspecified type: void.  */
4952
4953   attr = dwarf2_attr (die, DW_AT_name, cu);
4954   type = init_type (TYPE_CODE_VOID, 0, 0, attr ? DW_STRING (attr) : "",
4955                     cu->objfile);
4956
4957   set_die_type (die, type, cu);
4958 }
4959
4960 /* Read a whole compilation unit into a linked list of dies.  */
4961
4962 static struct die_info *
4963 read_comp_unit (gdb_byte *info_ptr, bfd *abfd, struct dwarf2_cu *cu)
4964 {
4965   return read_die_and_children (info_ptr, abfd, cu, &info_ptr, NULL);
4966 }
4967
4968 /* Read a single die and all its descendents.  Set the die's sibling
4969    field to NULL; set other fields in the die correctly, and set all
4970    of the descendents' fields correctly.  Set *NEW_INFO_PTR to the
4971    location of the info_ptr after reading all of those dies.  PARENT
4972    is the parent of the die in question.  */
4973
4974 static struct die_info *
4975 read_die_and_children (gdb_byte *info_ptr, bfd *abfd,
4976                        struct dwarf2_cu *cu,
4977                        gdb_byte **new_info_ptr,
4978                        struct die_info *parent)
4979 {
4980   struct die_info *die;
4981   gdb_byte *cur_ptr;
4982   int has_children;
4983
4984   cur_ptr = read_full_die (&die, abfd, info_ptr, cu, &has_children);
4985   store_in_ref_table (die->offset, die, cu);
4986
4987   if (has_children)
4988     {
4989       die->child = read_die_and_siblings (cur_ptr, abfd, cu,
4990                                           new_info_ptr, die);
4991     }
4992   else
4993     {
4994       die->child = NULL;
4995       *new_info_ptr = cur_ptr;
4996     }
4997
4998   die->sibling = NULL;
4999   die->parent = parent;
5000   return die;
5001 }
5002
5003 /* Read a die, all of its descendents, and all of its siblings; set
5004    all of the fields of all of the dies correctly.  Arguments are as
5005    in read_die_and_children.  */
5006
5007 static struct die_info *
5008 read_die_and_siblings (gdb_byte *info_ptr, bfd *abfd,
5009                        struct dwarf2_cu *cu,
5010                        gdb_byte **new_info_ptr,
5011                        struct die_info *parent)
5012 {
5013   struct die_info *first_die, *last_sibling;
5014   gdb_byte *cur_ptr;
5015
5016   cur_ptr = info_ptr;
5017   first_die = last_sibling = NULL;
5018
5019   while (1)
5020     {
5021       struct die_info *die
5022         = read_die_and_children (cur_ptr, abfd, cu, &cur_ptr, parent);
5023
5024       if (!first_die)
5025         {
5026           first_die = die;
5027         }
5028       else
5029         {
5030           last_sibling->sibling = die;
5031         }
5032
5033       if (die->tag == 0)
5034         {
5035           *new_info_ptr = cur_ptr;
5036           return first_die;
5037         }
5038       else
5039         {
5040           last_sibling = die;
5041         }
5042     }
5043 }
5044
5045 /* Free a linked list of dies.  */
5046
5047 static void
5048 free_die_list (struct die_info *dies)
5049 {
5050   struct die_info *die, *next;
5051
5052   die = dies;
5053   while (die)
5054     {
5055       if (die->child != NULL)
5056         free_die_list (die->child);
5057       next = die->sibling;
5058       xfree (die->attrs);
5059       xfree (die);
5060       die = next;
5061     }
5062 }
5063
5064 /* Read the contents of the section at OFFSET and of size SIZE from the
5065    object file specified by OBJFILE into the objfile_obstack and return it.  */
5066
5067 gdb_byte *
5068 dwarf2_read_section (struct objfile *objfile, asection *sectp)
5069 {
5070   bfd *abfd = objfile->obfd;
5071   gdb_byte *buf, *retbuf;
5072   bfd_size_type size = bfd_get_section_size (sectp);
5073
5074   if (size == 0)
5075     return NULL;
5076
5077   buf = obstack_alloc (&objfile->objfile_obstack, size);
5078   retbuf = symfile_relocate_debug_section (abfd, sectp, buf);
5079   if (retbuf != NULL)
5080     return retbuf;
5081
5082   if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
5083       || bfd_bread (buf, size, abfd) != size)
5084     error (_("Dwarf Error: Can't read DWARF data from '%s'"),
5085            bfd_get_filename (abfd));
5086
5087   return buf;
5088 }
5089
5090 /* In DWARF version 2, the description of the debugging information is
5091    stored in a separate .debug_abbrev section.  Before we read any
5092    dies from a section we read in all abbreviations and install them
5093    in a hash table.  This function also sets flags in CU describing
5094    the data found in the abbrev table.  */
5095
5096 static void
5097 dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu)
5098 {
5099   struct comp_unit_head *cu_header = &cu->header;
5100   gdb_byte *abbrev_ptr;
5101   struct abbrev_info *cur_abbrev;
5102   unsigned int abbrev_number, bytes_read, abbrev_name;
5103   unsigned int abbrev_form, hash_number;
5104   struct attr_abbrev *cur_attrs;
5105   unsigned int allocated_attrs;
5106
5107   /* Initialize dwarf2 abbrevs */
5108   obstack_init (&cu->abbrev_obstack);
5109   cu->dwarf2_abbrevs = obstack_alloc (&cu->abbrev_obstack,
5110                                       (ABBREV_HASH_SIZE
5111                                        * sizeof (struct abbrev_info *)));
5112   memset (cu->dwarf2_abbrevs, 0,
5113           ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
5114
5115   abbrev_ptr = dwarf2_per_objfile->abbrev_buffer + cu_header->abbrev_offset;
5116   abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5117   abbrev_ptr += bytes_read;
5118
5119   allocated_attrs = ATTR_ALLOC_CHUNK;
5120   cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
5121   
5122   /* loop until we reach an abbrev number of 0 */
5123   while (abbrev_number)
5124     {
5125       cur_abbrev = dwarf_alloc_abbrev (cu);
5126
5127       /* read in abbrev header */
5128       cur_abbrev->number = abbrev_number;
5129       cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5130       abbrev_ptr += bytes_read;
5131       cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
5132       abbrev_ptr += 1;
5133
5134       if (cur_abbrev->tag == DW_TAG_namespace)
5135         cu->has_namespace_info = 1;
5136
5137       /* now read in declarations */
5138       abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5139       abbrev_ptr += bytes_read;
5140       abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5141       abbrev_ptr += bytes_read;
5142       while (abbrev_name)
5143         {
5144           if (cur_abbrev->num_attrs == allocated_attrs)
5145             {
5146               allocated_attrs += ATTR_ALLOC_CHUNK;
5147               cur_attrs
5148                 = xrealloc (cur_attrs, (allocated_attrs
5149                                         * sizeof (struct attr_abbrev)));
5150             }
5151
5152           /* Record whether this compilation unit might have
5153              inter-compilation-unit references.  If we don't know what form
5154              this attribute will have, then it might potentially be a
5155              DW_FORM_ref_addr, so we conservatively expect inter-CU
5156              references.  */
5157
5158           if (abbrev_form == DW_FORM_ref_addr
5159               || abbrev_form == DW_FORM_indirect)
5160             cu->has_form_ref_addr = 1;
5161
5162           cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
5163           cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
5164           abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5165           abbrev_ptr += bytes_read;
5166           abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5167           abbrev_ptr += bytes_read;
5168         }
5169
5170       cur_abbrev->attrs = obstack_alloc (&cu->abbrev_obstack,
5171                                          (cur_abbrev->num_attrs
5172                                           * sizeof (struct attr_abbrev)));
5173       memcpy (cur_abbrev->attrs, cur_attrs,
5174               cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
5175
5176       hash_number = abbrev_number % ABBREV_HASH_SIZE;
5177       cur_abbrev->next = cu->dwarf2_abbrevs[hash_number];
5178       cu->dwarf2_abbrevs[hash_number] = cur_abbrev;
5179
5180       /* Get next abbreviation.
5181          Under Irix6 the abbreviations for a compilation unit are not
5182          always properly terminated with an abbrev number of 0.
5183          Exit loop if we encounter an abbreviation which we have
5184          already read (which means we are about to read the abbreviations
5185          for the next compile unit) or if the end of the abbreviation
5186          table is reached.  */
5187       if ((unsigned int) (abbrev_ptr - dwarf2_per_objfile->abbrev_buffer)
5188           >= dwarf2_per_objfile->abbrev_size)
5189         break;
5190       abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5191       abbrev_ptr += bytes_read;
5192       if (dwarf2_lookup_abbrev (abbrev_number, cu) != NULL)
5193         break;
5194     }
5195
5196   xfree (cur_attrs);
5197 }
5198
5199 /* Release the memory used by the abbrev table for a compilation unit.  */
5200
5201 static void
5202 dwarf2_free_abbrev_table (void *ptr_to_cu)
5203 {
5204   struct dwarf2_cu *cu = ptr_to_cu;
5205
5206   obstack_free (&cu->abbrev_obstack, NULL);
5207   cu->dwarf2_abbrevs = NULL;
5208 }
5209
5210 /* Lookup an abbrev_info structure in the abbrev hash table.  */
5211
5212 static struct abbrev_info *
5213 dwarf2_lookup_abbrev (unsigned int number, struct dwarf2_cu *cu)
5214 {
5215   unsigned int hash_number;
5216   struct abbrev_info *abbrev;
5217
5218   hash_number = number % ABBREV_HASH_SIZE;
5219   abbrev = cu->dwarf2_abbrevs[hash_number];
5220
5221   while (abbrev)
5222     {
5223       if (abbrev->number == number)
5224         return abbrev;
5225       else
5226         abbrev = abbrev->next;
5227     }
5228   return NULL;
5229 }
5230
5231 /* Returns nonzero if TAG represents a type that we might generate a partial
5232    symbol for.  */
5233
5234 static int
5235 is_type_tag_for_partial (int tag)
5236 {
5237   switch (tag)
5238     {
5239 #if 0
5240     /* Some types that would be reasonable to generate partial symbols for,
5241        that we don't at present.  */
5242     case DW_TAG_array_type:
5243     case DW_TAG_file_type:
5244     case DW_TAG_ptr_to_member_type:
5245     case DW_TAG_set_type:
5246     case DW_TAG_string_type:
5247     case DW_TAG_subroutine_type:
5248 #endif
5249     case DW_TAG_base_type:
5250     case DW_TAG_class_type:
5251     case DW_TAG_enumeration_type:
5252     case DW_TAG_structure_type:
5253     case DW_TAG_subrange_type:
5254     case DW_TAG_typedef:
5255     case DW_TAG_union_type:
5256       return 1;
5257     default:
5258       return 0;
5259     }
5260 }
5261
5262 /* Load all DIEs that are interesting for partial symbols into memory.  */
5263
5264 static struct partial_die_info *
5265 load_partial_dies (bfd *abfd, gdb_byte *info_ptr, int building_psymtab,
5266                    struct dwarf2_cu *cu)
5267 {
5268   struct partial_die_info *part_die;
5269   struct partial_die_info *parent_die, *last_die, *first_die = NULL;
5270   struct abbrev_info *abbrev;
5271   unsigned int bytes_read;
5272   unsigned int load_all = 0;
5273
5274   int nesting_level = 1;
5275
5276   parent_die = NULL;
5277   last_die = NULL;
5278
5279   if (cu->per_cu && cu->per_cu->load_all_dies)
5280     load_all = 1;
5281
5282   cu->partial_dies
5283     = htab_create_alloc_ex (cu->header.length / 12,
5284                             partial_die_hash,
5285                             partial_die_eq,
5286                             NULL,
5287                             &cu->comp_unit_obstack,
5288                             hashtab_obstack_allocate,
5289                             dummy_obstack_deallocate);
5290
5291   part_die = obstack_alloc (&cu->comp_unit_obstack,
5292                             sizeof (struct partial_die_info));
5293
5294   while (1)
5295     {
5296       abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
5297
5298       /* A NULL abbrev means the end of a series of children.  */
5299       if (abbrev == NULL)
5300         {
5301           if (--nesting_level == 0)
5302             {
5303               /* PART_DIE was probably the last thing allocated on the
5304                  comp_unit_obstack, so we could call obstack_free
5305                  here.  We don't do that because the waste is small,
5306                  and will be cleaned up when we're done with this
5307                  compilation unit.  This way, we're also more robust
5308                  against other users of the comp_unit_obstack.  */
5309               return first_die;
5310             }
5311           info_ptr += bytes_read;
5312           last_die = parent_die;
5313           parent_die = parent_die->die_parent;
5314           continue;
5315         }
5316
5317       /* Check whether this DIE is interesting enough to save.  Normally
5318          we would not be interested in members here, but there may be
5319          later variables referencing them via DW_AT_specification (for
5320          static members).  */
5321       if (!load_all
5322           && !is_type_tag_for_partial (abbrev->tag)
5323           && abbrev->tag != DW_TAG_enumerator
5324           && abbrev->tag != DW_TAG_subprogram
5325           && abbrev->tag != DW_TAG_variable
5326           && abbrev->tag != DW_TAG_namespace
5327           && abbrev->tag != DW_TAG_member)
5328         {
5329           /* Otherwise we skip to the next sibling, if any.  */
5330           info_ptr = skip_one_die (info_ptr + bytes_read, abbrev, cu);
5331           continue;
5332         }
5333
5334       info_ptr = read_partial_die (part_die, abbrev, bytes_read,
5335                                    abfd, info_ptr, cu);
5336
5337       /* This two-pass algorithm for processing partial symbols has a
5338          high cost in cache pressure.  Thus, handle some simple cases
5339          here which cover the majority of C partial symbols.  DIEs
5340          which neither have specification tags in them, nor could have
5341          specification tags elsewhere pointing at them, can simply be
5342          processed and discarded.
5343
5344          This segment is also optional; scan_partial_symbols and
5345          add_partial_symbol will handle these DIEs if we chain
5346          them in normally.  When compilers which do not emit large
5347          quantities of duplicate debug information are more common,
5348          this code can probably be removed.  */
5349
5350       /* Any complete simple types at the top level (pretty much all
5351          of them, for a language without namespaces), can be processed
5352          directly.  */
5353       if (parent_die == NULL
5354           && part_die->has_specification == 0
5355           && part_die->is_declaration == 0
5356           && (part_die->tag == DW_TAG_typedef
5357               || part_die->tag == DW_TAG_base_type
5358               || part_die->tag == DW_TAG_subrange_type))
5359         {
5360           if (building_psymtab && part_die->name != NULL)
5361             add_psymbol_to_list (part_die->name, strlen (part_die->name),
5362                                  VAR_DOMAIN, LOC_TYPEDEF,
5363                                  &cu->objfile->static_psymbols,
5364                                  0, (CORE_ADDR) 0, cu->language, cu->objfile);
5365           info_ptr = locate_pdi_sibling (part_die, info_ptr, abfd, cu);
5366           continue;
5367         }
5368
5369       /* If we're at the second level, and we're an enumerator, and
5370          our parent has no specification (meaning possibly lives in a
5371          namespace elsewhere), then we can add the partial symbol now
5372          instead of queueing it.  */
5373       if (part_die->tag == DW_TAG_enumerator
5374           && parent_die != NULL
5375           && parent_die->die_parent == NULL
5376           && parent_die->tag == DW_TAG_enumeration_type
5377           && parent_die->has_specification == 0)
5378         {
5379           if (part_die->name == NULL)
5380             complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
5381           else if (building_psymtab)
5382             add_psymbol_to_list (part_die->name, strlen (part_die->name),
5383                                  VAR_DOMAIN, LOC_CONST,
5384                                  (cu->language == language_cplus
5385                                   || cu->language == language_java)
5386                                  ? &cu->objfile->global_psymbols
5387                                  : &cu->objfile->static_psymbols,
5388                                  0, (CORE_ADDR) 0, cu->language, cu->objfile);
5389
5390           info_ptr = locate_pdi_sibling (part_die, info_ptr, abfd, cu);
5391           continue;
5392         }
5393
5394       /* We'll save this DIE so link it in.  */
5395       part_die->die_parent = parent_die;
5396       part_die->die_sibling = NULL;
5397       part_die->die_child = NULL;
5398
5399       if (last_die && last_die == parent_die)
5400         last_die->die_child = part_die;
5401       else if (last_die)
5402         last_die->die_sibling = part_die;
5403
5404       last_die = part_die;
5405
5406       if (first_die == NULL)
5407         first_die = part_die;
5408
5409       /* Maybe add the DIE to the hash table.  Not all DIEs that we
5410          find interesting need to be in the hash table, because we
5411          also have the parent/sibling/child chains; only those that we
5412          might refer to by offset later during partial symbol reading.
5413
5414          For now this means things that might have be the target of a
5415          DW_AT_specification, DW_AT_abstract_origin, or
5416          DW_AT_extension.  DW_AT_extension will refer only to
5417          namespaces; DW_AT_abstract_origin refers to functions (and
5418          many things under the function DIE, but we do not recurse
5419          into function DIEs during partial symbol reading) and
5420          possibly variables as well; DW_AT_specification refers to
5421          declarations.  Declarations ought to have the DW_AT_declaration
5422          flag.  It happens that GCC forgets to put it in sometimes, but
5423          only for functions, not for types.
5424
5425          Adding more things than necessary to the hash table is harmless
5426          except for the performance cost.  Adding too few will result in
5427          wasted time in find_partial_die, when we reread the compilation
5428          unit with load_all_dies set.  */
5429
5430       if (load_all
5431           || abbrev->tag == DW_TAG_subprogram
5432           || abbrev->tag == DW_TAG_variable
5433           || abbrev->tag == DW_TAG_namespace
5434           || part_die->is_declaration)
5435         {
5436           void **slot;
5437
5438           slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
5439                                            part_die->offset, INSERT);
5440           *slot = part_die;
5441         }
5442
5443       part_die = obstack_alloc (&cu->comp_unit_obstack,
5444                                 sizeof (struct partial_die_info));
5445
5446       /* For some DIEs we want to follow their children (if any).  For C
5447          we have no reason to follow the children of structures; for other
5448          languages we have to, both so that we can get at method physnames
5449          to infer fully qualified class names, and for DW_AT_specification.  */
5450       if (last_die->has_children
5451           && (load_all
5452               || last_die->tag == DW_TAG_namespace
5453               || last_die->tag == DW_TAG_enumeration_type
5454               || (cu->language != language_c
5455                   && (last_die->tag == DW_TAG_class_type
5456                       || last_die->tag == DW_TAG_structure_type
5457                       || last_die->tag == DW_TAG_union_type))))
5458         {
5459           nesting_level++;
5460           parent_die = last_die;
5461           continue;
5462         }
5463
5464       /* Otherwise we skip to the next sibling, if any.  */
5465       info_ptr = locate_pdi_sibling (last_die, info_ptr, abfd, cu);
5466
5467       /* Back to the top, do it again.  */
5468     }
5469 }
5470
5471 /* Read a minimal amount of information into the minimal die structure.  */
5472
5473 static gdb_byte *
5474 read_partial_die (struct partial_die_info *part_die,
5475                   struct abbrev_info *abbrev,
5476                   unsigned int abbrev_len, bfd *abfd,
5477                   gdb_byte *info_ptr, struct dwarf2_cu *cu)
5478 {
5479   unsigned int bytes_read, i;
5480   struct attribute attr;
5481   int has_low_pc_attr = 0;
5482   int has_high_pc_attr = 0;
5483
5484   memset (part_die, 0, sizeof (struct partial_die_info));
5485
5486   part_die->offset = info_ptr - dwarf2_per_objfile->info_buffer;
5487
5488   info_ptr += abbrev_len;
5489
5490   if (abbrev == NULL)
5491     return info_ptr;
5492
5493   part_die->tag = abbrev->tag;
5494   part_die->has_children = abbrev->has_children;
5495
5496   for (i = 0; i < abbrev->num_attrs; ++i)
5497     {
5498       info_ptr = read_attribute (&attr, &abbrev->attrs[i], abfd, info_ptr, cu);
5499
5500       /* Store the data if it is of an attribute we want to keep in a
5501          partial symbol table.  */
5502       switch (attr.name)
5503         {
5504         case DW_AT_name:
5505
5506           /* Prefer DW_AT_MIPS_linkage_name over DW_AT_name.  */
5507           if (part_die->name == NULL)
5508             part_die->name = DW_STRING (&attr);
5509           break;
5510         case DW_AT_comp_dir:
5511           if (part_die->dirname == NULL)
5512             part_die->dirname = DW_STRING (&attr);
5513           break;
5514         case DW_AT_MIPS_linkage_name:
5515           part_die->name = DW_STRING (&attr);
5516           break;
5517         case DW_AT_low_pc:
5518           has_low_pc_attr = 1;
5519           part_die->lowpc = DW_ADDR (&attr);
5520           break;
5521         case DW_AT_high_pc:
5522           has_high_pc_attr = 1;
5523           part_die->highpc = DW_ADDR (&attr);
5524           break;
5525         case DW_AT_location:
5526           /* Support the .debug_loc offsets */
5527           if (attr_form_is_block (&attr))
5528             {
5529                part_die->locdesc = DW_BLOCK (&attr);
5530             }
5531           else if (attr.form == DW_FORM_data4 || attr.form == DW_FORM_data8)
5532             {
5533               dwarf2_complex_location_expr_complaint ();
5534             }
5535           else
5536             {
5537               dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
5538                                                      "partial symbol information");
5539             }
5540           break;
5541         case DW_AT_language:
5542           part_die->language = DW_UNSND (&attr);
5543           break;
5544         case DW_AT_external:
5545           part_die->is_external = DW_UNSND (&attr);
5546           break;
5547         case DW_AT_declaration:
5548           part_die->is_declaration = DW_UNSND (&attr);
5549           break;
5550         case DW_AT_type:
5551           part_die->has_type = 1;
5552           break;
5553         case DW_AT_abstract_origin:
5554         case DW_AT_specification:
5555         case DW_AT_extension:
5556           part_die->has_specification = 1;
5557           part_die->spec_offset = dwarf2_get_ref_die_offset (&attr, cu);
5558           break;
5559         case DW_AT_sibling:
5560           /* Ignore absolute siblings, they might point outside of
5561              the current compile unit.  */
5562           if (attr.form == DW_FORM_ref_addr)
5563             complaint (&symfile_complaints, _("ignoring absolute DW_AT_sibling"));
5564           else
5565             part_die->sibling = dwarf2_per_objfile->info_buffer
5566               + dwarf2_get_ref_die_offset (&attr, cu);
5567           break;
5568         case DW_AT_stmt_list:
5569           part_die->has_stmt_list = 1;
5570           part_die->line_offset = DW_UNSND (&attr);
5571           break;
5572         default:
5573           break;
5574         }
5575     }
5576
5577   /* When using the GNU linker, .gnu.linkonce. sections are used to
5578      eliminate duplicate copies of functions and vtables and such.
5579      The linker will arbitrarily choose one and discard the others.
5580      The AT_*_pc values for such functions refer to local labels in
5581      these sections.  If the section from that file was discarded, the
5582      labels are not in the output, so the relocs get a value of 0.
5583      If this is a discarded function, mark the pc bounds as invalid,
5584      so that GDB will ignore it.  */
5585   if (has_low_pc_attr && has_high_pc_attr
5586       && part_die->lowpc < part_die->highpc
5587       && (part_die->lowpc != 0
5588           || dwarf2_per_objfile->has_section_at_zero))
5589     part_die->has_pc_info = 1;
5590   return info_ptr;
5591 }
5592
5593 /* Find a cached partial DIE at OFFSET in CU.  */
5594
5595 static struct partial_die_info *
5596 find_partial_die_in_comp_unit (unsigned long offset, struct dwarf2_cu *cu)
5597 {
5598   struct partial_die_info *lookup_die = NULL;
5599   struct partial_die_info part_die;
5600
5601   part_die.offset = offset;
5602   lookup_die = htab_find_with_hash (cu->partial_dies, &part_die, offset);
5603
5604   return lookup_die;
5605 }
5606
5607 /* Find a partial DIE at OFFSET, which may or may not be in CU.  */
5608
5609 static struct partial_die_info *
5610 find_partial_die (unsigned long offset, struct dwarf2_cu *cu)
5611 {
5612   struct dwarf2_per_cu_data *per_cu = NULL;
5613   struct partial_die_info *pd = NULL;
5614
5615   if (offset >= cu->header.offset
5616       && offset < cu->header.offset + cu->header.length)
5617     {
5618       pd = find_partial_die_in_comp_unit (offset, cu);
5619       if (pd != NULL)
5620         return pd;
5621     }
5622
5623   per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile);
5624
5625   if (per_cu->cu == NULL)
5626     {
5627       load_comp_unit (per_cu, cu->objfile);
5628       per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
5629       dwarf2_per_objfile->read_in_chain = per_cu;
5630     }
5631
5632   per_cu->cu->last_used = 0;
5633   pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
5634
5635   if (pd == NULL && per_cu->load_all_dies == 0)
5636     {
5637       struct cleanup *back_to;
5638       struct partial_die_info comp_unit_die;
5639       struct abbrev_info *abbrev;
5640       unsigned int bytes_read;
5641       char *info_ptr;
5642
5643       per_cu->load_all_dies = 1;
5644
5645       /* Re-read the DIEs.  */
5646       back_to = make_cleanup (null_cleanup, 0);
5647       if (per_cu->cu->dwarf2_abbrevs == NULL)
5648         {
5649           dwarf2_read_abbrevs (per_cu->cu->objfile->obfd, per_cu->cu);
5650           back_to = make_cleanup (dwarf2_free_abbrev_table, per_cu->cu);
5651         }
5652       info_ptr = per_cu->cu->header.first_die_ptr;
5653       abbrev = peek_die_abbrev (info_ptr, &bytes_read, per_cu->cu);
5654       info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read,
5655                                    per_cu->cu->objfile->obfd, info_ptr,
5656                                    per_cu->cu);
5657       if (comp_unit_die.has_children)
5658         load_partial_dies (per_cu->cu->objfile->obfd, info_ptr, 0, per_cu->cu);
5659       do_cleanups (back_to);
5660
5661       pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
5662     }
5663
5664   if (pd == NULL)
5665     internal_error (__FILE__, __LINE__,
5666                     _("could not find partial DIE 0x%lx in cache [from module %s]\n"),
5667                     offset, bfd_get_filename (cu->objfile->obfd));
5668   return pd;
5669 }
5670
5671 /* Adjust PART_DIE before generating a symbol for it.  This function
5672    may set the is_external flag or change the DIE's name.  */
5673
5674 static void
5675 fixup_partial_die (struct partial_die_info *part_die,
5676                    struct dwarf2_cu *cu)
5677 {
5678   /* If we found a reference attribute and the DIE has no name, try
5679      to find a name in the referred to DIE.  */
5680
5681   if (part_die->name == NULL && part_die->has_specification)
5682     {
5683       struct partial_die_info *spec_die;
5684
5685       spec_die = find_partial_die (part_die->spec_offset, cu);
5686
5687       fixup_partial_die (spec_die, cu);
5688
5689       if (spec_die->name)
5690         {
5691           part_die->name = spec_die->name;
5692
5693           /* Copy DW_AT_external attribute if it is set.  */
5694           if (spec_die->is_external)
5695             part_die->is_external = spec_die->is_external;
5696         }
5697     }
5698
5699   /* Set default names for some unnamed DIEs.  */
5700   if (part_die->name == NULL && (part_die->tag == DW_TAG_structure_type
5701                                  || part_die->tag == DW_TAG_class_type))
5702     part_die->name = "(anonymous class)";
5703
5704   if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
5705     part_die->name = "(anonymous namespace)";
5706
5707   if (part_die->tag == DW_TAG_structure_type
5708       || part_die->tag == DW_TAG_class_type
5709       || part_die->tag == DW_TAG_union_type)
5710     guess_structure_name (part_die, cu);
5711 }
5712
5713 /* Read the die from the .debug_info section buffer.  Set DIEP to
5714    point to a newly allocated die with its information, except for its
5715    child, sibling, and parent fields.  Set HAS_CHILDREN to tell
5716    whether the die has children or not.  */
5717
5718 static gdb_byte *
5719 read_full_die (struct die_info **diep, bfd *abfd, gdb_byte *info_ptr,
5720                struct dwarf2_cu *cu, int *has_children)
5721 {
5722   unsigned int abbrev_number, bytes_read, i, offset;
5723   struct abbrev_info *abbrev;
5724   struct die_info *die;
5725
5726   offset = info_ptr - dwarf2_per_objfile->info_buffer;
5727   abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
5728   info_ptr += bytes_read;
5729   if (!abbrev_number)
5730     {
5731       die = dwarf_alloc_die ();
5732       die->tag = 0;
5733       die->abbrev = abbrev_number;
5734       die->type = NULL;
5735       *diep = die;
5736       *has_children = 0;
5737       return info_ptr;
5738     }
5739
5740   abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
5741   if (!abbrev)
5742     {
5743       error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
5744              abbrev_number,
5745              bfd_get_filename (abfd));
5746     }
5747   die = dwarf_alloc_die ();
5748   die->offset = offset;
5749   die->tag = abbrev->tag;
5750   die->abbrev = abbrev_number;
5751   die->type = NULL;
5752
5753   die->num_attrs = abbrev->num_attrs;
5754   die->attrs = (struct attribute *)
5755     xmalloc (die->num_attrs * sizeof (struct attribute));
5756
5757   for (i = 0; i < abbrev->num_attrs; ++i)
5758     {
5759       info_ptr = read_attribute (&die->attrs[i], &abbrev->attrs[i],
5760                                  abfd, info_ptr, cu);
5761
5762       /* If this attribute is an absolute reference to a different
5763          compilation unit, make sure that compilation unit is loaded
5764          also.  */
5765       if (die->attrs[i].form == DW_FORM_ref_addr
5766           && (DW_ADDR (&die->attrs[i]) < cu->header.offset
5767               || (DW_ADDR (&die->attrs[i])
5768                   >= cu->header.offset + cu->header.length)))
5769         {
5770           struct dwarf2_per_cu_data *per_cu;
5771           per_cu = dwarf2_find_containing_comp_unit (DW_ADDR (&die->attrs[i]),
5772                                                      cu->objfile);
5773
5774           /* Mark the dependence relation so that we don't flush PER_CU
5775              too early.  */
5776           dwarf2_add_dependence (cu, per_cu);
5777
5778           /* If it's already on the queue, we have nothing to do.  */
5779           if (per_cu->queued)
5780             continue;
5781
5782           /* If the compilation unit is already loaded, just mark it as
5783              used.  */
5784           if (per_cu->cu != NULL)
5785             {
5786               per_cu->cu->last_used = 0;
5787               continue;
5788             }
5789
5790           /* Add it to the queue.  */
5791           queue_comp_unit (per_cu);
5792        }
5793     }
5794
5795   *diep = die;
5796   *has_children = abbrev->has_children;
5797   return info_ptr;
5798 }
5799
5800 /* Read an attribute value described by an attribute form.  */
5801
5802 static gdb_byte *
5803 read_attribute_value (struct attribute *attr, unsigned form,
5804                       bfd *abfd, gdb_byte *info_ptr,
5805                       struct dwarf2_cu *cu)
5806 {
5807   struct comp_unit_head *cu_header = &cu->header;
5808   unsigned int bytes_read;
5809   struct dwarf_block *blk;
5810
5811   attr->form = form;
5812   switch (form)
5813     {
5814     case DW_FORM_addr:
5815     case DW_FORM_ref_addr:
5816       DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
5817       info_ptr += bytes_read;
5818       break;
5819     case DW_FORM_block2:
5820       blk = dwarf_alloc_block (cu);
5821       blk->size = read_2_bytes (abfd, info_ptr);
5822       info_ptr += 2;
5823       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
5824       info_ptr += blk->size;
5825       DW_BLOCK (attr) = blk;
5826       break;
5827     case DW_FORM_block4:
5828       blk = dwarf_alloc_block (cu);
5829       blk->size = read_4_bytes (abfd, info_ptr);
5830       info_ptr += 4;
5831       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
5832       info_ptr += blk->size;
5833       DW_BLOCK (attr) = blk;
5834       break;
5835     case DW_FORM_data2:
5836       DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
5837       info_ptr += 2;
5838       break;
5839     case DW_FORM_data4:
5840       DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
5841       info_ptr += 4;
5842       break;
5843     case DW_FORM_data8:
5844       DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
5845       info_ptr += 8;
5846       break;
5847     case DW_FORM_string:
5848       DW_STRING (attr) = read_string (abfd, info_ptr, &bytes_read);
5849       info_ptr += bytes_read;
5850       break;
5851     case DW_FORM_strp:
5852       DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
5853                                                &bytes_read);
5854       info_ptr += bytes_read;
5855       break;
5856     case DW_FORM_block:
5857       blk = dwarf_alloc_block (cu);
5858       blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
5859       info_ptr += bytes_read;
5860       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
5861       info_ptr += blk->size;
5862       DW_BLOCK (attr) = blk;
5863       break;
5864     case DW_FORM_block1:
5865       blk = dwarf_alloc_block (cu);
5866       blk->size = read_1_byte (abfd, info_ptr);
5867       info_ptr += 1;
5868       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
5869       info_ptr += blk->size;
5870       DW_BLOCK (attr) = blk;
5871       break;
5872     case DW_FORM_data1:
5873       DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
5874       info_ptr += 1;
5875       break;
5876     case DW_FORM_flag:
5877       DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
5878       info_ptr += 1;
5879       break;
5880     case DW_FORM_sdata:
5881       DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
5882       info_ptr += bytes_read;
5883       break;
5884     case DW_FORM_udata:
5885       DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
5886       info_ptr += bytes_read;
5887       break;
5888     case DW_FORM_ref1:
5889       DW_ADDR (attr) = cu->header.offset + read_1_byte (abfd, info_ptr);
5890       info_ptr += 1;
5891       break;
5892     case DW_FORM_ref2:
5893       DW_ADDR (attr) = cu->header.offset + read_2_bytes (abfd, info_ptr);
5894       info_ptr += 2;
5895       break;
5896     case DW_FORM_ref4:
5897       DW_ADDR (attr) = cu->header.offset + read_4_bytes (abfd, info_ptr);
5898       info_ptr += 4;
5899       break;
5900     case DW_FORM_ref8:
5901       DW_ADDR (attr) = cu->header.offset + read_8_bytes (abfd, info_ptr);
5902       info_ptr += 8;
5903       break;
5904     case DW_FORM_ref_udata:
5905       DW_ADDR (attr) = (cu->header.offset
5906                         + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
5907       info_ptr += bytes_read;
5908       break;
5909     case DW_FORM_indirect:
5910       form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
5911       info_ptr += bytes_read;
5912       info_ptr = read_attribute_value (attr, form, abfd, info_ptr, cu);
5913       break;
5914     default:
5915       error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
5916              dwarf_form_name (form),
5917              bfd_get_filename (abfd));
5918     }
5919   return info_ptr;
5920 }
5921
5922 /* Read an attribute described by an abbreviated attribute.  */
5923
5924 static gdb_byte *
5925 read_attribute (struct attribute *attr, struct attr_abbrev *abbrev,
5926                 bfd *abfd, gdb_byte *info_ptr, struct dwarf2_cu *cu)
5927 {
5928   attr->name = abbrev->name;
5929   return read_attribute_value (attr, abbrev->form, abfd, info_ptr, cu);
5930 }
5931
5932 /* read dwarf information from a buffer */
5933
5934 static unsigned int
5935 read_1_byte (bfd *abfd, gdb_byte *buf)
5936 {
5937   return bfd_get_8 (abfd, buf);
5938 }
5939
5940 static int
5941 read_1_signed_byte (bfd *abfd, gdb_byte *buf)
5942 {
5943   return bfd_get_signed_8 (abfd, buf);
5944 }
5945
5946 static unsigned int
5947 read_2_bytes (bfd *abfd, gdb_byte *buf)
5948 {
5949   return bfd_get_16 (abfd, buf);
5950 }
5951
5952 static int
5953 read_2_signed_bytes (bfd *abfd, gdb_byte *buf)
5954 {
5955   return bfd_get_signed_16 (abfd, buf);
5956 }
5957
5958 static unsigned int
5959 read_4_bytes (bfd *abfd, gdb_byte *buf)
5960 {
5961   return bfd_get_32 (abfd, buf);
5962 }
5963
5964 static int
5965 read_4_signed_bytes (bfd *abfd, gdb_byte *buf)
5966 {
5967   return bfd_get_signed_32 (abfd, buf);
5968 }
5969
5970 static unsigned long
5971 read_8_bytes (bfd *abfd, gdb_byte *buf)
5972 {
5973   return bfd_get_64 (abfd, buf);
5974 }
5975
5976 static CORE_ADDR
5977 read_address (bfd *abfd, gdb_byte *buf, struct dwarf2_cu *cu,
5978               unsigned int *bytes_read)
5979 {
5980   struct comp_unit_head *cu_header = &cu->header;
5981   CORE_ADDR retval = 0;
5982
5983   if (cu_header->signed_addr_p)
5984     {
5985       switch (cu_header->addr_size)
5986         {
5987         case 2:
5988           retval = bfd_get_signed_16 (abfd, buf);
5989           break;
5990         case 4:
5991           retval = bfd_get_signed_32 (abfd, buf);
5992           break;
5993         case 8:
5994           retval = bfd_get_signed_64 (abfd, buf);
5995           break;
5996         default:
5997           internal_error (__FILE__, __LINE__,
5998                           _("read_address: bad switch, signed [in module %s]"),
5999                           bfd_get_filename (abfd));
6000         }
6001     }
6002   else
6003     {
6004       switch (cu_header->addr_size)
6005         {
6006         case 2:
6007           retval = bfd_get_16 (abfd, buf);
6008           break;
6009         case 4:
6010           retval = bfd_get_32 (abfd, buf);
6011           break;
6012         case 8:
6013           retval = bfd_get_64 (abfd, buf);
6014           break;
6015         default:
6016           internal_error (__FILE__, __LINE__,
6017                           _("read_address: bad switch, unsigned [in module %s]"),
6018                           bfd_get_filename (abfd));
6019         }
6020     }
6021
6022   *bytes_read = cu_header->addr_size;
6023   return retval;
6024 }
6025
6026 /* Read the initial length from a section.  The (draft) DWARF 3
6027    specification allows the initial length to take up either 4 bytes
6028    or 12 bytes.  If the first 4 bytes are 0xffffffff, then the next 8
6029    bytes describe the length and all offsets will be 8 bytes in length
6030    instead of 4.
6031
6032    An older, non-standard 64-bit format is also handled by this
6033    function.  The older format in question stores the initial length
6034    as an 8-byte quantity without an escape value.  Lengths greater
6035    than 2^32 aren't very common which means that the initial 4 bytes
6036    is almost always zero.  Since a length value of zero doesn't make
6037    sense for the 32-bit format, this initial zero can be considered to
6038    be an escape value which indicates the presence of the older 64-bit
6039    format.  As written, the code can't detect (old format) lengths
6040    greater than 4GB.  If it becomes necessary to handle lengths
6041    somewhat larger than 4GB, we could allow other small values (such
6042    as the non-sensical values of 1, 2, and 3) to also be used as
6043    escape values indicating the presence of the old format.
6044
6045    The value returned via bytes_read should be used to increment the
6046    relevant pointer after calling read_initial_length().
6047    
6048    As a side effect, this function sets the fields initial_length_size
6049    and offset_size in cu_header to the values appropriate for the
6050    length field.  (The format of the initial length field determines
6051    the width of file offsets to be fetched later with read_offset().)
6052    
6053    [ Note:  read_initial_length() and read_offset() are based on the
6054      document entitled "DWARF Debugging Information Format", revision
6055      3, draft 8, dated November 19, 2001.  This document was obtained
6056      from:
6057
6058         http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
6059      
6060      This document is only a draft and is subject to change.  (So beware.)
6061
6062      Details regarding the older, non-standard 64-bit format were
6063      determined empirically by examining 64-bit ELF files produced by
6064      the SGI toolchain on an IRIX 6.5 machine.
6065
6066      - Kevin, July 16, 2002
6067    ] */
6068
6069 static LONGEST
6070 read_initial_length (bfd *abfd, gdb_byte *buf, struct comp_unit_head *cu_header,
6071                      unsigned int *bytes_read)
6072 {
6073   LONGEST length = bfd_get_32 (abfd, buf);
6074
6075   if (length == 0xffffffff)
6076     {
6077       length = bfd_get_64 (abfd, buf + 4);
6078       *bytes_read = 12;
6079     }
6080   else if (length == 0)
6081     {
6082       /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX.  */
6083       length = bfd_get_64 (abfd, buf);
6084       *bytes_read = 8;
6085     }
6086   else
6087     {
6088       *bytes_read = 4;
6089     }
6090
6091   if (cu_header)
6092     {
6093       gdb_assert (cu_header->initial_length_size == 0
6094                   || cu_header->initial_length_size == 4
6095                   || cu_header->initial_length_size == 8
6096                   || cu_header->initial_length_size == 12);
6097
6098       if (cu_header->initial_length_size != 0
6099           && cu_header->initial_length_size != *bytes_read)
6100         complaint (&symfile_complaints,
6101                    _("intermixed 32-bit and 64-bit DWARF sections"));
6102
6103       cu_header->initial_length_size = *bytes_read;
6104       cu_header->offset_size = (*bytes_read == 4) ? 4 : 8;
6105     }
6106
6107   return length;
6108 }
6109
6110 /* Read an offset from the data stream.  The size of the offset is
6111    given by cu_header->offset_size.  */
6112
6113 static LONGEST
6114 read_offset (bfd *abfd, gdb_byte *buf, const struct comp_unit_head *cu_header,
6115              unsigned int *bytes_read)
6116 {
6117   LONGEST retval = 0;
6118
6119   switch (cu_header->offset_size)
6120     {
6121     case 4:
6122       retval = bfd_get_32 (abfd, buf);
6123       *bytes_read = 4;
6124       break;
6125     case 8:
6126       retval = bfd_get_64 (abfd, buf);
6127       *bytes_read = 8;
6128       break;
6129     default:
6130       internal_error (__FILE__, __LINE__,
6131                       _("read_offset: bad switch [in module %s]"),
6132                       bfd_get_filename (abfd));
6133     }
6134
6135   return retval;
6136 }
6137
6138 static gdb_byte *
6139 read_n_bytes (bfd *abfd, gdb_byte *buf, unsigned int size)
6140 {
6141   /* If the size of a host char is 8 bits, we can return a pointer
6142      to the buffer, otherwise we have to copy the data to a buffer
6143      allocated on the temporary obstack.  */
6144   gdb_assert (HOST_CHAR_BIT == 8);
6145   return buf;
6146 }
6147
6148 static char *
6149 read_string (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
6150 {
6151   /* If the size of a host char is 8 bits, we can return a pointer
6152      to the string, otherwise we have to copy the string to a buffer
6153      allocated on the temporary obstack.  */
6154   gdb_assert (HOST_CHAR_BIT == 8);
6155   if (*buf == '\0')
6156     {
6157       *bytes_read_ptr = 1;
6158       return NULL;
6159     }
6160   *bytes_read_ptr = strlen ((char *) buf) + 1;
6161   return (char *) buf;
6162 }
6163
6164 static char *
6165 read_indirect_string (bfd *abfd, gdb_byte *buf,
6166                       const struct comp_unit_head *cu_header,
6167                       unsigned int *bytes_read_ptr)
6168 {
6169   LONGEST str_offset = read_offset (abfd, buf, cu_header,
6170                                     bytes_read_ptr);
6171
6172   if (dwarf2_per_objfile->str_buffer == NULL)
6173     {
6174       error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
6175                       bfd_get_filename (abfd));
6176       return NULL;
6177     }
6178   if (str_offset >= dwarf2_per_objfile->str_size)
6179     {
6180       error (_("DW_FORM_strp pointing outside of .debug_str section [in module %s]"),
6181                       bfd_get_filename (abfd));
6182       return NULL;
6183     }
6184   gdb_assert (HOST_CHAR_BIT == 8);
6185   if (dwarf2_per_objfile->str_buffer[str_offset] == '\0')
6186     return NULL;
6187   return (char *) (dwarf2_per_objfile->str_buffer + str_offset);
6188 }
6189
6190 static unsigned long
6191 read_unsigned_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
6192 {
6193   unsigned long result;
6194   unsigned int num_read;
6195   int i, shift;
6196   unsigned char byte;
6197
6198   result = 0;
6199   shift = 0;
6200   num_read = 0;
6201   i = 0;
6202   while (1)
6203     {
6204       byte = bfd_get_8 (abfd, buf);
6205       buf++;
6206       num_read++;
6207       result |= ((unsigned long)(byte & 127) << shift);
6208       if ((byte & 128) == 0)
6209         {
6210           break;
6211         }
6212       shift += 7;
6213     }
6214   *bytes_read_ptr = num_read;
6215   return result;
6216 }
6217
6218 static long
6219 read_signed_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
6220 {
6221   long result;
6222   int i, shift, num_read;
6223   unsigned char byte;
6224
6225   result = 0;
6226   shift = 0;
6227   num_read = 0;
6228   i = 0;
6229   while (1)
6230     {
6231       byte = bfd_get_8 (abfd, buf);
6232       buf++;
6233       num_read++;
6234       result |= ((long)(byte & 127) << shift);
6235       shift += 7;
6236       if ((byte & 128) == 0)
6237         {
6238           break;
6239         }
6240     }
6241   if ((shift < 8 * sizeof (result)) && (byte & 0x40))
6242     result |= -(((long)1) << shift);
6243   *bytes_read_ptr = num_read;
6244   return result;
6245 }
6246
6247 /* Return a pointer to just past the end of an LEB128 number in BUF.  */
6248
6249 static gdb_byte *
6250 skip_leb128 (bfd *abfd, gdb_byte *buf)
6251 {
6252   int byte;
6253
6254   while (1)
6255     {
6256       byte = bfd_get_8 (abfd, buf);
6257       buf++;
6258       if ((byte & 128) == 0)
6259         return buf;
6260     }
6261 }
6262
6263 static void
6264 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
6265 {
6266   switch (lang)
6267     {
6268     case DW_LANG_C89:
6269     case DW_LANG_C:
6270       cu->language = language_c;
6271       break;
6272     case DW_LANG_C_plus_plus:
6273       cu->language = language_cplus;
6274       break;
6275     case DW_LANG_Fortran77:
6276     case DW_LANG_Fortran90:
6277     case DW_LANG_Fortran95:
6278       cu->language = language_fortran;
6279       break;
6280     case DW_LANG_Mips_Assembler:
6281       cu->language = language_asm;
6282       break;
6283     case DW_LANG_Java:
6284       cu->language = language_java;
6285       break;
6286     case DW_LANG_Ada83:
6287     case DW_LANG_Ada95:
6288       cu->language = language_ada;
6289       break;
6290     case DW_LANG_Modula2:
6291       cu->language = language_m2;
6292       break;
6293     case DW_LANG_Cobol74:
6294     case DW_LANG_Cobol85:
6295     case DW_LANG_Pascal83:
6296     default:
6297       cu->language = language_minimal;
6298       break;
6299     }
6300   cu->language_defn = language_def (cu->language);
6301 }
6302
6303 /* Return the named attribute or NULL if not there.  */
6304
6305 static struct attribute *
6306 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
6307 {
6308   unsigned int i;
6309   struct attribute *spec = NULL;
6310
6311   for (i = 0; i < die->num_attrs; ++i)
6312     {
6313       if (die->attrs[i].name == name)
6314         return &die->attrs[i];
6315       if (die->attrs[i].name == DW_AT_specification
6316           || die->attrs[i].name == DW_AT_abstract_origin)
6317         spec = &die->attrs[i];
6318     }
6319
6320   if (spec)
6321     return dwarf2_attr (follow_die_ref (die, spec, cu), name, cu);
6322
6323   return NULL;
6324 }
6325
6326 /* Return non-zero iff the attribute NAME is defined for the given DIE,
6327    and holds a non-zero value.  This function should only be used for
6328    DW_FORM_flag attributes.  */
6329
6330 static int
6331 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
6332 {
6333   struct attribute *attr = dwarf2_attr (die, name, cu);
6334
6335   return (attr && DW_UNSND (attr));
6336 }
6337
6338 static int
6339 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
6340 {
6341   /* A DIE is a declaration if it has a DW_AT_declaration attribute
6342      which value is non-zero.  However, we have to be careful with
6343      DIEs having a DW_AT_specification attribute, because dwarf2_attr()
6344      (via dwarf2_flag_true_p) follows this attribute.  So we may
6345      end up accidently finding a declaration attribute that belongs
6346      to a different DIE referenced by the specification attribute,
6347      even though the given DIE does not have a declaration attribute.  */
6348   return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
6349           && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
6350 }
6351
6352 /* Return the die giving the specification for DIE, if there is
6353    one.  */
6354
6355 static struct die_info *
6356 die_specification (struct die_info *die, struct dwarf2_cu *cu)
6357 {
6358   struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification, cu);
6359
6360   if (spec_attr == NULL)
6361     return NULL;
6362   else
6363     return follow_die_ref (die, spec_attr, cu);
6364 }
6365
6366 /* Free the line_header structure *LH, and any arrays and strings it
6367    refers to.  */
6368 static void
6369 free_line_header (struct line_header *lh)
6370 {
6371   if (lh->standard_opcode_lengths)
6372     xfree (lh->standard_opcode_lengths);
6373
6374   /* Remember that all the lh->file_names[i].name pointers are
6375      pointers into debug_line_buffer, and don't need to be freed.  */
6376   if (lh->file_names)
6377     xfree (lh->file_names);
6378
6379   /* Similarly for the include directory names.  */
6380   if (lh->include_dirs)
6381     xfree (lh->include_dirs);
6382
6383   xfree (lh);
6384 }
6385
6386
6387 /* Add an entry to LH's include directory table.  */
6388 static void
6389 add_include_dir (struct line_header *lh, char *include_dir)
6390 {
6391   /* Grow the array if necessary.  */
6392   if (lh->include_dirs_size == 0)
6393     {
6394       lh->include_dirs_size = 1; /* for testing */
6395       lh->include_dirs = xmalloc (lh->include_dirs_size
6396                                   * sizeof (*lh->include_dirs));
6397     }
6398   else if (lh->num_include_dirs >= lh->include_dirs_size)
6399     {
6400       lh->include_dirs_size *= 2;
6401       lh->include_dirs = xrealloc (lh->include_dirs,
6402                                    (lh->include_dirs_size
6403                                     * sizeof (*lh->include_dirs)));
6404     }
6405
6406   lh->include_dirs[lh->num_include_dirs++] = include_dir;
6407 }
6408  
6409
6410 /* Add an entry to LH's file name table.  */
6411 static void
6412 add_file_name (struct line_header *lh,
6413                char *name,
6414                unsigned int dir_index,
6415                unsigned int mod_time,
6416                unsigned int length)
6417 {
6418   struct file_entry *fe;
6419
6420   /* Grow the array if necessary.  */
6421   if (lh->file_names_size == 0)
6422     {
6423       lh->file_names_size = 1; /* for testing */
6424       lh->file_names = xmalloc (lh->file_names_size
6425                                 * sizeof (*lh->file_names));
6426     }
6427   else if (lh->num_file_names >= lh->file_names_size)
6428     {
6429       lh->file_names_size *= 2;
6430       lh->file_names = xrealloc (lh->file_names,
6431                                  (lh->file_names_size
6432                                   * sizeof (*lh->file_names)));
6433     }
6434
6435   fe = &lh->file_names[lh->num_file_names++];
6436   fe->name = name;
6437   fe->dir_index = dir_index;
6438   fe->mod_time = mod_time;
6439   fe->length = length;
6440   fe->included_p = 0;
6441 }
6442  
6443
6444 /* Read the statement program header starting at OFFSET in
6445    .debug_line, according to the endianness of ABFD.  Return a pointer
6446    to a struct line_header, allocated using xmalloc.
6447
6448    NOTE: the strings in the include directory and file name tables of
6449    the returned object point into debug_line_buffer, and must not be
6450    freed.  */
6451 static struct line_header *
6452 dwarf_decode_line_header (unsigned int offset, bfd *abfd,
6453                           struct dwarf2_cu *cu)
6454 {
6455   struct cleanup *back_to;
6456   struct line_header *lh;
6457   gdb_byte *line_ptr;
6458   unsigned int bytes_read;
6459   int i;
6460   char *cur_dir, *cur_file;
6461
6462   if (dwarf2_per_objfile->line_buffer == NULL)
6463     {
6464       complaint (&symfile_complaints, _("missing .debug_line section"));
6465       return 0;
6466     }
6467
6468   /* Make sure that at least there's room for the total_length field.
6469      That could be 12 bytes long, but we're just going to fudge that.  */
6470   if (offset + 4 >= dwarf2_per_objfile->line_size)
6471     {
6472       dwarf2_statement_list_fits_in_line_number_section_complaint ();
6473       return 0;
6474     }
6475
6476   lh = xmalloc (sizeof (*lh));
6477   memset (lh, 0, sizeof (*lh));
6478   back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
6479                           (void *) lh);
6480
6481   line_ptr = dwarf2_per_objfile->line_buffer + offset;
6482
6483   /* Read in the header.  */
6484   lh->total_length = 
6485     read_initial_length (abfd, line_ptr, &cu->header, &bytes_read);
6486   line_ptr += bytes_read;
6487   if (line_ptr + lh->total_length > (dwarf2_per_objfile->line_buffer
6488                                      + dwarf2_per_objfile->line_size))
6489     {
6490       dwarf2_statement_list_fits_in_line_number_section_complaint ();
6491       return 0;
6492     }
6493   lh->statement_program_end = line_ptr + lh->total_length;
6494   lh->version = read_2_bytes (abfd, line_ptr);
6495   line_ptr += 2;
6496   lh->header_length = read_offset (abfd, line_ptr, &cu->header, &bytes_read);
6497   line_ptr += bytes_read;
6498   lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
6499   line_ptr += 1;
6500   lh->default_is_stmt = read_1_byte (abfd, line_ptr);
6501   line_ptr += 1;
6502   lh->line_base = read_1_signed_byte (abfd, line_ptr);
6503   line_ptr += 1;
6504   lh->line_range = read_1_byte (abfd, line_ptr);
6505   line_ptr += 1;
6506   lh->opcode_base = read_1_byte (abfd, line_ptr);
6507   line_ptr += 1;
6508   lh->standard_opcode_lengths
6509     = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
6510
6511   lh->standard_opcode_lengths[0] = 1;  /* This should never be used anyway.  */
6512   for (i = 1; i < lh->opcode_base; ++i)
6513     {
6514       lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
6515       line_ptr += 1;
6516     }
6517
6518   /* Read directory table.  */
6519   while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL)
6520     {
6521       line_ptr += bytes_read;
6522       add_include_dir (lh, cur_dir);
6523     }
6524   line_ptr += bytes_read;
6525
6526   /* Read file name table.  */
6527   while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL)
6528     {
6529       unsigned int dir_index, mod_time, length;
6530
6531       line_ptr += bytes_read;
6532       dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6533       line_ptr += bytes_read;
6534       mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6535       line_ptr += bytes_read;
6536       length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6537       line_ptr += bytes_read;
6538
6539       add_file_name (lh, cur_file, dir_index, mod_time, length);
6540     }
6541   line_ptr += bytes_read;
6542   lh->statement_program_start = line_ptr; 
6543
6544   if (line_ptr > (dwarf2_per_objfile->line_buffer
6545                   + dwarf2_per_objfile->line_size))
6546     complaint (&symfile_complaints,
6547                _("line number info header doesn't fit in `.debug_line' section"));
6548
6549   discard_cleanups (back_to);
6550   return lh;
6551 }
6552
6553 /* This function exists to work around a bug in certain compilers
6554    (particularly GCC 2.95), in which the first line number marker of a
6555    function does not show up until after the prologue, right before
6556    the second line number marker.  This function shifts ADDRESS down
6557    to the beginning of the function if necessary, and is called on
6558    addresses passed to record_line.  */
6559
6560 static CORE_ADDR
6561 check_cu_functions (CORE_ADDR address, struct dwarf2_cu *cu)
6562 {
6563   struct function_range *fn;
6564
6565   /* Find the function_range containing address.  */
6566   if (!cu->first_fn)
6567     return address;
6568
6569   if (!cu->cached_fn)
6570     cu->cached_fn = cu->first_fn;
6571
6572   fn = cu->cached_fn;
6573   while (fn)
6574     if (fn->lowpc <= address && fn->highpc > address)
6575       goto found;
6576     else
6577       fn = fn->next;
6578
6579   fn = cu->first_fn;
6580   while (fn && fn != cu->cached_fn)
6581     if (fn->lowpc <= address && fn->highpc > address)
6582       goto found;
6583     else
6584       fn = fn->next;
6585
6586   return address;
6587
6588  found:
6589   if (fn->seen_line)
6590     return address;
6591   if (address != fn->lowpc)
6592     complaint (&symfile_complaints,
6593                _("misplaced first line number at 0x%lx for '%s'"),
6594                (unsigned long) address, fn->name);
6595   fn->seen_line = 1;
6596   return fn->lowpc;
6597 }
6598
6599 /* Decode the Line Number Program (LNP) for the given line_header
6600    structure and CU.  The actual information extracted and the type
6601    of structures created from the LNP depends on the value of PST.
6602
6603    1. If PST is NULL, then this procedure uses the data from the program
6604       to create all necessary symbol tables, and their linetables.
6605       The compilation directory of the file is passed in COMP_DIR,
6606       and must not be NULL.
6607    
6608    2. If PST is not NULL, this procedure reads the program to determine
6609       the list of files included by the unit represented by PST, and
6610       builds all the associated partial symbol tables.  In this case,
6611       the value of COMP_DIR is ignored, and can thus be NULL (the COMP_DIR
6612       is not used to compute the full name of the symtab, and therefore
6613       omitting it when building the partial symtab does not introduce
6614       the potential for inconsistency - a partial symtab and its associated
6615       symbtab having a different fullname -).  */
6616
6617 static void
6618 dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd,
6619                     struct dwarf2_cu *cu, struct partial_symtab *pst)
6620 {
6621   gdb_byte *line_ptr;
6622   gdb_byte *line_end;
6623   unsigned int bytes_read;
6624   unsigned char op_code, extended_op, adj_opcode;
6625   CORE_ADDR baseaddr;
6626   struct objfile *objfile = cu->objfile;
6627   const int decode_for_pst_p = (pst != NULL);
6628
6629   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
6630
6631   line_ptr = lh->statement_program_start;
6632   line_end = lh->statement_program_end;
6633
6634   /* Read the statement sequences until there's nothing left.  */
6635   while (line_ptr < line_end)
6636     {
6637       /* state machine registers  */
6638       CORE_ADDR address = 0;
6639       unsigned int file = 1;
6640       unsigned int line = 1;
6641       unsigned int column = 0;
6642       int is_stmt = lh->default_is_stmt;
6643       int basic_block = 0;
6644       int end_sequence = 0;
6645
6646       if (!decode_for_pst_p && lh->num_file_names >= file)
6647         {
6648           /* Start a subfile for the current file of the state machine.  */
6649           /* lh->include_dirs and lh->file_names are 0-based, but the
6650              directory and file name numbers in the statement program
6651              are 1-based.  */
6652           struct file_entry *fe = &lh->file_names[file - 1];
6653           char *dir = NULL;
6654
6655           if (fe->dir_index)
6656             dir = lh->include_dirs[fe->dir_index - 1];
6657
6658           dwarf2_start_subfile (fe->name, dir, comp_dir);
6659         }
6660
6661       /* Decode the table.  */
6662       while (!end_sequence)
6663         {
6664           op_code = read_1_byte (abfd, line_ptr);
6665           line_ptr += 1;
6666
6667           if (op_code >= lh->opcode_base)
6668             {           
6669               /* Special operand.  */
6670               adj_opcode = op_code - lh->opcode_base;
6671               address += (adj_opcode / lh->line_range)
6672                 * lh->minimum_instruction_length;
6673               line += lh->line_base + (adj_opcode % lh->line_range);
6674               lh->file_names[file - 1].included_p = 1;
6675               if (!decode_for_pst_p)
6676                 {
6677                   /* Append row to matrix using current values.  */
6678                   record_line (current_subfile, line, 
6679                                check_cu_functions (address, cu));
6680                 }
6681               basic_block = 1;
6682             }
6683           else switch (op_code)
6684             {
6685             case DW_LNS_extended_op:
6686               read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6687               line_ptr += bytes_read;
6688               extended_op = read_1_byte (abfd, line_ptr);
6689               line_ptr += 1;
6690               switch (extended_op)
6691                 {
6692                 case DW_LNE_end_sequence:
6693                   end_sequence = 1;
6694                   lh->file_names[file - 1].included_p = 1;
6695                   if (!decode_for_pst_p)
6696                     record_line (current_subfile, 0, address);
6697                   break;
6698                 case DW_LNE_set_address:
6699                   address = read_address (abfd, line_ptr, cu, &bytes_read);
6700                   line_ptr += bytes_read;
6701                   address += baseaddr;
6702                   break;
6703                 case DW_LNE_define_file:
6704                   {
6705                     char *cur_file;
6706                     unsigned int dir_index, mod_time, length;
6707                     
6708                     cur_file = read_string (abfd, line_ptr, &bytes_read);
6709                     line_ptr += bytes_read;
6710                     dir_index =
6711                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6712                     line_ptr += bytes_read;
6713                     mod_time =
6714                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6715                     line_ptr += bytes_read;
6716                     length =
6717                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6718                     line_ptr += bytes_read;
6719                     add_file_name (lh, cur_file, dir_index, mod_time, length);
6720                   }
6721                   break;
6722                 default:
6723                   complaint (&symfile_complaints,
6724                              _("mangled .debug_line section"));
6725                   return;
6726                 }
6727               break;
6728             case DW_LNS_copy:
6729               lh->file_names[file - 1].included_p = 1;
6730               if (!decode_for_pst_p)
6731                 record_line (current_subfile, line, 
6732                              check_cu_functions (address, cu));
6733               basic_block = 0;
6734               break;
6735             case DW_LNS_advance_pc:
6736               address += lh->minimum_instruction_length
6737                 * read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6738               line_ptr += bytes_read;
6739               break;
6740             case DW_LNS_advance_line:
6741               line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
6742               line_ptr += bytes_read;
6743               break;
6744             case DW_LNS_set_file:
6745               {
6746                 /* The arrays lh->include_dirs and lh->file_names are
6747                    0-based, but the directory and file name numbers in
6748                    the statement program are 1-based.  */
6749                 struct file_entry *fe;
6750                 char *dir = NULL;
6751
6752                 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6753                 line_ptr += bytes_read;
6754                 fe = &lh->file_names[file - 1];
6755                 if (fe->dir_index)
6756                   dir = lh->include_dirs[fe->dir_index - 1];
6757
6758                 if (!decode_for_pst_p)
6759                   dwarf2_start_subfile (fe->name, dir, comp_dir);
6760               }
6761               break;
6762             case DW_LNS_set_column:
6763               column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6764               line_ptr += bytes_read;
6765               break;
6766             case DW_LNS_negate_stmt:
6767               is_stmt = (!is_stmt);
6768               break;
6769             case DW_LNS_set_basic_block:
6770               basic_block = 1;
6771               break;
6772             /* Add to the address register of the state machine the
6773                address increment value corresponding to special opcode
6774                255.  I.e., this value is scaled by the minimum
6775                instruction length since special opcode 255 would have
6776                scaled the the increment.  */
6777             case DW_LNS_const_add_pc:
6778               address += (lh->minimum_instruction_length
6779                           * ((255 - lh->opcode_base) / lh->line_range));
6780               break;
6781             case DW_LNS_fixed_advance_pc:
6782               address += read_2_bytes (abfd, line_ptr);
6783               line_ptr += 2;
6784               break;
6785             default:
6786               {
6787                 /* Unknown standard opcode, ignore it.  */
6788                 int i;
6789
6790                 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
6791                   {
6792                     (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6793                     line_ptr += bytes_read;
6794                   }
6795               }
6796             }
6797         }
6798     }
6799
6800   if (decode_for_pst_p)
6801     {
6802       int file_index;
6803
6804       /* Now that we're done scanning the Line Header Program, we can
6805          create the psymtab of each included file.  */
6806       for (file_index = 0; file_index < lh->num_file_names; file_index++)
6807         if (lh->file_names[file_index].included_p == 1)
6808           {
6809             const struct file_entry fe = lh->file_names [file_index];
6810             char *include_name = fe.name;
6811             char *dir_name = NULL;
6812             char *pst_filename = pst->filename;
6813
6814             if (fe.dir_index)
6815               dir_name = lh->include_dirs[fe.dir_index - 1];
6816
6817             if (!IS_ABSOLUTE_PATH (include_name) && dir_name != NULL)
6818               {
6819                 include_name = concat (dir_name, SLASH_STRING,
6820                                        include_name, (char *)NULL);
6821                 make_cleanup (xfree, include_name);
6822               }
6823
6824             if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
6825               {
6826                 pst_filename = concat (pst->dirname, SLASH_STRING,
6827                                        pst_filename, (char *)NULL);
6828                 make_cleanup (xfree, pst_filename);
6829               }
6830
6831             if (strcmp (include_name, pst_filename) != 0)
6832               dwarf2_create_include_psymtab (include_name, pst, objfile);
6833           }
6834     }
6835 }
6836
6837 /* Start a subfile for DWARF.  FILENAME is the name of the file and
6838    DIRNAME the name of the source directory which contains FILENAME
6839    or NULL if not known.  COMP_DIR is the compilation directory for the
6840    linetable's compilation unit or NULL if not known.
6841    This routine tries to keep line numbers from identical absolute and
6842    relative file names in a common subfile.
6843
6844    Using the `list' example from the GDB testsuite, which resides in
6845    /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
6846    of /srcdir/list0.c yields the following debugging information for list0.c:
6847
6848    DW_AT_name:          /srcdir/list0.c
6849    DW_AT_comp_dir:              /compdir
6850    files.files[0].name: list0.h
6851    files.files[0].dir:  /srcdir
6852    files.files[1].name: list0.c
6853    files.files[1].dir:  /srcdir
6854
6855    The line number information for list0.c has to end up in a single
6856    subfile, so that `break /srcdir/list0.c:1' works as expected.
6857    start_subfile will ensure that this happens provided that we pass the
6858    concatenation of files.files[1].dir and files.files[1].name as the
6859    subfile's name.  */
6860
6861 static void
6862 dwarf2_start_subfile (char *filename, char *dirname, char *comp_dir)
6863 {
6864   char *fullname;
6865
6866   /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
6867      `start_symtab' will always pass the contents of DW_AT_comp_dir as
6868      second argument to start_subfile.  To be consistent, we do the
6869      same here.  In order not to lose the line information directory,
6870      we concatenate it to the filename when it makes sense.
6871      Note that the Dwarf3 standard says (speaking of filenames in line
6872      information): ``The directory index is ignored for file names
6873      that represent full path names''.  Thus ignoring dirname in the
6874      `else' branch below isn't an issue.  */
6875
6876   if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
6877     fullname = concat (dirname, SLASH_STRING, filename, (char *)NULL);
6878   else
6879     fullname = filename;
6880
6881   start_subfile (fullname, comp_dir);
6882
6883   if (fullname != filename)
6884     xfree (fullname);
6885 }
6886
6887 static void
6888 var_decode_location (struct attribute *attr, struct symbol *sym,
6889                      struct dwarf2_cu *cu)
6890 {
6891   struct objfile *objfile = cu->objfile;
6892   struct comp_unit_head *cu_header = &cu->header;
6893
6894   /* NOTE drow/2003-01-30: There used to be a comment and some special
6895      code here to turn a symbol with DW_AT_external and a
6896      SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol.  This was
6897      necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
6898      with some versions of binutils) where shared libraries could have
6899      relocations against symbols in their debug information - the
6900      minimal symbol would have the right address, but the debug info
6901      would not.  It's no longer necessary, because we will explicitly
6902      apply relocations when we read in the debug information now.  */
6903
6904   /* A DW_AT_location attribute with no contents indicates that a
6905      variable has been optimized away.  */
6906   if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
6907     {
6908       SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
6909       return;
6910     }
6911
6912   /* Handle one degenerate form of location expression specially, to
6913      preserve GDB's previous behavior when section offsets are
6914      specified.  If this is just a DW_OP_addr then mark this symbol
6915      as LOC_STATIC.  */
6916
6917   if (attr_form_is_block (attr)
6918       && DW_BLOCK (attr)->size == 1 + cu_header->addr_size
6919       && DW_BLOCK (attr)->data[0] == DW_OP_addr)
6920     {
6921       unsigned int dummy;
6922
6923       SYMBOL_VALUE_ADDRESS (sym) =
6924         read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
6925       fixup_symbol_section (sym, objfile);
6926       SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
6927                                               SYMBOL_SECTION (sym));
6928       SYMBOL_CLASS (sym) = LOC_STATIC;
6929       return;
6930     }
6931
6932   /* NOTE drow/2002-01-30: It might be worthwhile to have a static
6933      expression evaluator, and use LOC_COMPUTED only when necessary
6934      (i.e. when the value of a register or memory location is
6935      referenced, or a thread-local block, etc.).  Then again, it might
6936      not be worthwhile.  I'm assuming that it isn't unless performance
6937      or memory numbers show me otherwise.  */
6938
6939   dwarf2_symbol_mark_computed (attr, sym, cu);
6940   SYMBOL_CLASS (sym) = LOC_COMPUTED;
6941 }
6942
6943 /* Given a pointer to a DWARF information entry, figure out if we need
6944    to make a symbol table entry for it, and if so, create a new entry
6945    and return a pointer to it.
6946    If TYPE is NULL, determine symbol type from the die, otherwise
6947    used the passed type.  */
6948
6949 static struct symbol *
6950 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
6951 {
6952   struct objfile *objfile = cu->objfile;
6953   struct symbol *sym = NULL;
6954   char *name;
6955   struct attribute *attr = NULL;
6956   struct attribute *attr2 = NULL;
6957   CORE_ADDR baseaddr;
6958
6959   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
6960
6961   if (die->tag != DW_TAG_namespace)
6962     name = dwarf2_linkage_name (die, cu);
6963   else
6964     name = TYPE_NAME (type);
6965
6966   if (name)
6967     {
6968       sym = (struct symbol *) obstack_alloc (&objfile->objfile_obstack,
6969                                              sizeof (struct symbol));
6970       OBJSTAT (objfile, n_syms++);
6971       memset (sym, 0, sizeof (struct symbol));
6972
6973       /* Cache this symbol's name and the name's demangled form (if any).  */
6974       SYMBOL_LANGUAGE (sym) = cu->language;
6975       SYMBOL_SET_NAMES (sym, name, strlen (name), objfile);
6976
6977       /* Default assumptions.
6978          Use the passed type or decode it from the die.  */
6979       SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
6980       SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
6981       if (type != NULL)
6982         SYMBOL_TYPE (sym) = type;
6983       else
6984         SYMBOL_TYPE (sym) = die_type (die, cu);
6985       attr = dwarf2_attr (die, DW_AT_decl_line, cu);
6986       if (attr)
6987         {
6988           SYMBOL_LINE (sym) = DW_UNSND (attr);
6989         }
6990       switch (die->tag)
6991         {
6992         case DW_TAG_label:
6993           attr = dwarf2_attr (die, DW_AT_low_pc, cu);
6994           if (attr)
6995             {
6996               SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
6997             }
6998           SYMBOL_CLASS (sym) = LOC_LABEL;
6999           break;
7000         case DW_TAG_subprogram:
7001           /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
7002              finish_block.  */
7003           SYMBOL_CLASS (sym) = LOC_BLOCK;
7004           attr2 = dwarf2_attr (die, DW_AT_external, cu);
7005           if (attr2 && (DW_UNSND (attr2) != 0))
7006             {
7007               add_symbol_to_list (sym, &global_symbols);
7008             }
7009           else
7010             {
7011               add_symbol_to_list (sym, cu->list_in_scope);
7012             }
7013           break;
7014         case DW_TAG_variable:
7015           /* Compilation with minimal debug info may result in variables
7016              with missing type entries. Change the misleading `void' type
7017              to something sensible.  */
7018           if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
7019             SYMBOL_TYPE (sym) = init_type (TYPE_CODE_INT,
7020                                            TARGET_INT_BIT / HOST_CHAR_BIT, 0,
7021                                            "<variable, no debug info>",
7022                                            objfile);
7023           attr = dwarf2_attr (die, DW_AT_const_value, cu);
7024           if (attr)
7025             {
7026               dwarf2_const_value (attr, sym, cu);
7027               attr2 = dwarf2_attr (die, DW_AT_external, cu);
7028               if (attr2 && (DW_UNSND (attr2) != 0))
7029                 add_symbol_to_list (sym, &global_symbols);
7030               else
7031                 add_symbol_to_list (sym, cu->list_in_scope);
7032               break;
7033             }
7034           attr = dwarf2_attr (die, DW_AT_location, cu);
7035           if (attr)
7036             {
7037               var_decode_location (attr, sym, cu);
7038               attr2 = dwarf2_attr (die, DW_AT_external, cu);
7039               if (attr2 && (DW_UNSND (attr2) != 0))
7040                 add_symbol_to_list (sym, &global_symbols);
7041               else
7042                 add_symbol_to_list (sym, cu->list_in_scope);
7043             }
7044           else
7045             {
7046               /* We do not know the address of this symbol.
7047                  If it is an external symbol and we have type information
7048                  for it, enter the symbol as a LOC_UNRESOLVED symbol.
7049                  The address of the variable will then be determined from
7050                  the minimal symbol table whenever the variable is
7051                  referenced.  */
7052               attr2 = dwarf2_attr (die, DW_AT_external, cu);
7053               if (attr2 && (DW_UNSND (attr2) != 0)
7054                   && dwarf2_attr (die, DW_AT_type, cu) != NULL)
7055                 {
7056                   SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
7057                   add_symbol_to_list (sym, &global_symbols);
7058                 }
7059             }
7060           break;
7061         case DW_TAG_formal_parameter:
7062           attr = dwarf2_attr (die, DW_AT_location, cu);
7063           if (attr)
7064             {
7065               var_decode_location (attr, sym, cu);
7066               /* FIXME drow/2003-07-31: Is LOC_COMPUTED_ARG necessary?  */
7067               if (SYMBOL_CLASS (sym) == LOC_COMPUTED)
7068                 SYMBOL_CLASS (sym) = LOC_COMPUTED_ARG;
7069             }
7070           attr = dwarf2_attr (die, DW_AT_const_value, cu);
7071           if (attr)
7072             {
7073               dwarf2_const_value (attr, sym, cu);
7074             }
7075           add_symbol_to_list (sym, cu->list_in_scope);
7076           break;
7077         case DW_TAG_unspecified_parameters:
7078           /* From varargs functions; gdb doesn't seem to have any
7079              interest in this information, so just ignore it for now.
7080              (FIXME?) */
7081           break;
7082         case DW_TAG_class_type:
7083         case DW_TAG_structure_type:
7084         case DW_TAG_union_type:
7085         case DW_TAG_set_type:
7086         case DW_TAG_enumeration_type:
7087           SYMBOL_CLASS (sym) = LOC_TYPEDEF;
7088           SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
7089
7090           /* Make sure that the symbol includes appropriate enclosing
7091              classes/namespaces in its name.  These are calculated in
7092              read_structure_type, and the correct name is saved in
7093              the type.  */
7094
7095           if (cu->language == language_cplus
7096               || cu->language == language_java)
7097             {
7098               struct type *type = SYMBOL_TYPE (sym);
7099               
7100               if (TYPE_TAG_NAME (type) != NULL)
7101                 {
7102                   /* FIXME: carlton/2003-11-10: Should this use
7103                      SYMBOL_SET_NAMES instead?  (The same problem also
7104                      arises further down in this function.)  */
7105                   /* The type's name is already allocated along with
7106                      this objfile, so we don't need to duplicate it
7107                      for the symbol.  */
7108                   SYMBOL_LINKAGE_NAME (sym) = TYPE_TAG_NAME (type);
7109                 }
7110             }
7111
7112           {
7113             /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
7114                really ever be static objects: otherwise, if you try
7115                to, say, break of a class's method and you're in a file
7116                which doesn't mention that class, it won't work unless
7117                the check for all static symbols in lookup_symbol_aux
7118                saves you.  See the OtherFileClass tests in
7119                gdb.c++/namespace.exp.  */
7120
7121             struct pending **list_to_add;
7122
7123             list_to_add = (cu->list_in_scope == &file_symbols
7124                            && (cu->language == language_cplus
7125                                || cu->language == language_java)
7126                            ? &global_symbols : cu->list_in_scope);
7127           
7128             add_symbol_to_list (sym, list_to_add);
7129
7130             /* The semantics of C++ state that "struct foo { ... }" also
7131                defines a typedef for "foo".  A Java class declaration also
7132                defines a typedef for the class.  Synthesize a typedef symbol
7133                so that "ptype foo" works as expected.  */
7134             if (cu->language == language_cplus
7135                 || cu->language == language_java)
7136               {
7137                 struct symbol *typedef_sym = (struct symbol *)
7138                   obstack_alloc (&objfile->objfile_obstack,
7139                                  sizeof (struct symbol));
7140                 *typedef_sym = *sym;
7141                 SYMBOL_DOMAIN (typedef_sym) = VAR_DOMAIN;
7142                 /* The symbol's name is already allocated along with
7143                    this objfile, so we don't need to duplicate it for
7144                    the type.  */
7145                 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
7146                   TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
7147                 add_symbol_to_list (typedef_sym, list_to_add);
7148               }
7149           }
7150           break;
7151         case DW_TAG_typedef:
7152           if (processing_has_namespace_info
7153               && processing_current_prefix[0] != '\0')
7154             {
7155               SYMBOL_LINKAGE_NAME (sym) = typename_concat (&objfile->objfile_obstack,
7156                                                            processing_current_prefix,
7157                                                            name, cu);
7158             }
7159           SYMBOL_CLASS (sym) = LOC_TYPEDEF;
7160           SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
7161           add_symbol_to_list (sym, cu->list_in_scope);
7162           break;
7163         case DW_TAG_base_type:
7164         case DW_TAG_subrange_type:
7165           SYMBOL_CLASS (sym) = LOC_TYPEDEF;
7166           SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
7167           add_symbol_to_list (sym, cu->list_in_scope);
7168           break;
7169         case DW_TAG_enumerator:
7170           if (processing_has_namespace_info
7171               && processing_current_prefix[0] != '\0')
7172             {
7173               SYMBOL_LINKAGE_NAME (sym) = typename_concat (&objfile->objfile_obstack,
7174                                                            processing_current_prefix,
7175                                                            name, cu);
7176             }
7177           attr = dwarf2_attr (die, DW_AT_const_value, cu);
7178           if (attr)
7179             {
7180               dwarf2_const_value (attr, sym, cu);
7181             }
7182           {
7183             /* NOTE: carlton/2003-11-10: See comment above in the
7184                DW_TAG_class_type, etc. block.  */
7185
7186             struct pending **list_to_add;
7187
7188             list_to_add = (cu->list_in_scope == &file_symbols
7189                            && (cu->language == language_cplus
7190                                || cu->language == language_java)
7191                            ? &global_symbols : cu->list_in_scope);
7192           
7193             add_symbol_to_list (sym, list_to_add);
7194           }
7195           break;
7196         case DW_TAG_namespace:
7197           SYMBOL_CLASS (sym) = LOC_TYPEDEF;
7198           add_symbol_to_list (sym, &global_symbols);
7199           break;
7200         default:
7201           /* Not a tag we recognize.  Hopefully we aren't processing
7202              trash data, but since we must specifically ignore things
7203              we don't recognize, there is nothing else we should do at
7204              this point. */
7205           complaint (&symfile_complaints, _("unsupported tag: '%s'"),
7206                      dwarf_tag_name (die->tag));
7207           break;
7208         }
7209     }
7210   return (sym);
7211 }
7212
7213 /* Copy constant value from an attribute to a symbol.  */
7214
7215 static void
7216 dwarf2_const_value (struct attribute *attr, struct symbol *sym,
7217                     struct dwarf2_cu *cu)
7218 {
7219   struct objfile *objfile = cu->objfile;
7220   struct comp_unit_head *cu_header = &cu->header;
7221   struct dwarf_block *blk;
7222
7223   switch (attr->form)
7224     {
7225     case DW_FORM_addr:
7226       if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != cu_header->addr_size)
7227         dwarf2_const_value_length_mismatch_complaint (DEPRECATED_SYMBOL_NAME (sym),
7228                                                       cu_header->addr_size,
7229                                                       TYPE_LENGTH (SYMBOL_TYPE
7230                                                                    (sym)));
7231       SYMBOL_VALUE_BYTES (sym) = 
7232         obstack_alloc (&objfile->objfile_obstack, cu_header->addr_size);
7233       /* NOTE: cagney/2003-05-09: In-lined store_address call with
7234          it's body - store_unsigned_integer.  */
7235       store_unsigned_integer (SYMBOL_VALUE_BYTES (sym), cu_header->addr_size,
7236                               DW_ADDR (attr));
7237       SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
7238       break;
7239     case DW_FORM_block1:
7240     case DW_FORM_block2:
7241     case DW_FORM_block4:
7242     case DW_FORM_block:
7243       blk = DW_BLOCK (attr);
7244       if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != blk->size)
7245         dwarf2_const_value_length_mismatch_complaint (DEPRECATED_SYMBOL_NAME (sym),
7246                                                       blk->size,
7247                                                       TYPE_LENGTH (SYMBOL_TYPE
7248                                                                    (sym)));
7249       SYMBOL_VALUE_BYTES (sym) =
7250         obstack_alloc (&objfile->objfile_obstack, blk->size);
7251       memcpy (SYMBOL_VALUE_BYTES (sym), blk->data, blk->size);
7252       SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
7253       break;
7254
7255       /* The DW_AT_const_value attributes are supposed to carry the
7256          symbol's value "represented as it would be on the target
7257          architecture."  By the time we get here, it's already been
7258          converted to host endianness, so we just need to sign- or
7259          zero-extend it as appropriate.  */
7260     case DW_FORM_data1:
7261       dwarf2_const_value_data (attr, sym, 8);
7262       break;
7263     case DW_FORM_data2:
7264       dwarf2_const_value_data (attr, sym, 16);
7265       break;
7266     case DW_FORM_data4:
7267       dwarf2_const_value_data (attr, sym, 32);
7268       break;
7269     case DW_FORM_data8:
7270       dwarf2_const_value_data (attr, sym, 64);
7271       break;
7272
7273     case DW_FORM_sdata:
7274       SYMBOL_VALUE (sym) = DW_SND (attr);
7275       SYMBOL_CLASS (sym) = LOC_CONST;
7276       break;
7277
7278     case DW_FORM_udata:
7279       SYMBOL_VALUE (sym) = DW_UNSND (attr);
7280       SYMBOL_CLASS (sym) = LOC_CONST;
7281       break;
7282
7283     default:
7284       complaint (&symfile_complaints,
7285                  _("unsupported const value attribute form: '%s'"),
7286                  dwarf_form_name (attr->form));
7287       SYMBOL_VALUE (sym) = 0;
7288       SYMBOL_CLASS (sym) = LOC_CONST;
7289       break;
7290     }
7291 }
7292
7293
7294 /* Given an attr with a DW_FORM_dataN value in host byte order, sign-
7295    or zero-extend it as appropriate for the symbol's type.  */
7296 static void
7297 dwarf2_const_value_data (struct attribute *attr,
7298                          struct symbol *sym,
7299                          int bits)
7300 {
7301   LONGEST l = DW_UNSND (attr);
7302
7303   if (bits < sizeof (l) * 8)
7304     {
7305       if (TYPE_UNSIGNED (SYMBOL_TYPE (sym)))
7306         l &= ((LONGEST) 1 << bits) - 1;
7307       else
7308         l = (l << (sizeof (l) * 8 - bits)) >> (sizeof (l) * 8 - bits);
7309     }
7310
7311   SYMBOL_VALUE (sym) = l;
7312   SYMBOL_CLASS (sym) = LOC_CONST;
7313 }
7314
7315
7316 /* Return the type of the die in question using its DW_AT_type attribute.  */
7317
7318 static struct type *
7319 die_type (struct die_info *die, struct dwarf2_cu *cu)
7320 {
7321   struct type *type;
7322   struct attribute *type_attr;
7323   struct die_info *type_die;
7324
7325   type_attr = dwarf2_attr (die, DW_AT_type, cu);
7326   if (!type_attr)
7327     {
7328       /* A missing DW_AT_type represents a void type.  */
7329       return dwarf2_fundamental_type (cu->objfile, FT_VOID, cu);
7330     }
7331   else
7332     type_die = follow_die_ref (die, type_attr, cu);
7333
7334   type = tag_type_to_type (type_die, cu);
7335   if (!type)
7336     {
7337       dump_die (type_die);
7338       error (_("Dwarf Error: Problem turning type die at offset into gdb type [in module %s]"),
7339                       cu->objfile->name);
7340     }
7341   return type;
7342 }
7343
7344 /* Return the containing type of the die in question using its
7345    DW_AT_containing_type attribute.  */
7346
7347 static struct type *
7348 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
7349 {
7350   struct type *type = NULL;
7351   struct attribute *type_attr;
7352   struct die_info *type_die = NULL;
7353
7354   type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
7355   if (type_attr)
7356     {
7357       type_die = follow_die_ref (die, type_attr, cu);
7358       type = tag_type_to_type (type_die, cu);
7359     }
7360   if (!type)
7361     {
7362       if (type_die)
7363         dump_die (type_die);
7364       error (_("Dwarf Error: Problem turning containing type into gdb type [in module %s]"), 
7365                       cu->objfile->name);
7366     }
7367   return type;
7368 }
7369
7370 static struct type *
7371 tag_type_to_type (struct die_info *die, struct dwarf2_cu *cu)
7372 {
7373   if (die->type)
7374     {
7375       return die->type;
7376     }
7377   else
7378     {
7379       read_type_die (die, cu);
7380       if (!die->type)
7381         {
7382           dump_die (die);
7383           error (_("Dwarf Error: Cannot find type of die [in module %s]"), 
7384                           cu->objfile->name);
7385         }
7386       return die->type;
7387     }
7388 }
7389
7390 static void
7391 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
7392 {
7393   char *prefix = determine_prefix (die, cu);
7394   const char *old_prefix = processing_current_prefix;
7395   struct cleanup *back_to = make_cleanup (xfree, prefix);
7396   processing_current_prefix = prefix;
7397   
7398   switch (die->tag)
7399     {
7400     case DW_TAG_class_type:
7401     case DW_TAG_structure_type:
7402     case DW_TAG_union_type:
7403       read_structure_type (die, cu);
7404       break;
7405     case DW_TAG_enumeration_type:
7406       read_enumeration_type (die, cu);
7407       break;
7408     case DW_TAG_subprogram:
7409     case DW_TAG_subroutine_type:
7410       read_subroutine_type (die, cu);
7411       break;
7412     case DW_TAG_array_type:
7413       read_array_type (die, cu);
7414       break;
7415     case DW_TAG_set_type:
7416       read_set_type (die, cu);
7417       break;
7418     case DW_TAG_pointer_type:
7419       read_tag_pointer_type (die, cu);
7420       break;
7421     case DW_TAG_ptr_to_member_type:
7422       read_tag_ptr_to_member_type (die, cu);
7423       break;
7424     case DW_TAG_reference_type:
7425       read_tag_reference_type (die, cu);
7426       break;
7427     case DW_TAG_const_type:
7428       read_tag_const_type (die, cu);
7429       break;
7430     case DW_TAG_volatile_type:
7431       read_tag_volatile_type (die, cu);
7432       break;
7433     case DW_TAG_string_type:
7434       read_tag_string_type (die, cu);
7435       break;
7436     case DW_TAG_typedef:
7437       read_typedef (die, cu);
7438       break;
7439     case DW_TAG_subrange_type:
7440       read_subrange_type (die, cu);
7441       break;
7442     case DW_TAG_base_type:
7443       read_base_type (die, cu);
7444       break;
7445     case DW_TAG_unspecified_type:
7446       read_unspecified_type (die, cu);
7447       break;
7448     default:
7449       complaint (&symfile_complaints, _("unexpected tag in read_type_die: '%s'"),
7450                  dwarf_tag_name (die->tag));
7451       break;
7452     }
7453
7454   processing_current_prefix = old_prefix;
7455   do_cleanups (back_to);
7456 }
7457
7458 /* Return the name of the namespace/class that DIE is defined within,
7459    or "" if we can't tell.  The caller should xfree the result.  */
7460
7461 /* NOTE: carlton/2004-01-23: See read_func_scope (and the comment
7462    therein) for an example of how to use this function to deal with
7463    DW_AT_specification.  */
7464
7465 static char *
7466 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
7467 {
7468   struct die_info *parent;
7469
7470   if (cu->language != language_cplus
7471       && cu->language != language_java)
7472     return NULL;
7473
7474   parent = die->parent;
7475
7476   if (parent == NULL)
7477     {
7478       return xstrdup ("");
7479     }
7480   else
7481     {
7482       switch (parent->tag) {
7483       case DW_TAG_namespace:
7484         {
7485           /* FIXME: carlton/2004-03-05: Should I follow extension dies
7486              before doing this check?  */
7487           if (parent->type != NULL && TYPE_TAG_NAME (parent->type) != NULL)
7488             {
7489               return xstrdup (TYPE_TAG_NAME (parent->type));
7490             }
7491           else
7492             {
7493               int dummy;
7494               char *parent_prefix = determine_prefix (parent, cu);
7495               char *retval = typename_concat (NULL, parent_prefix,
7496                                               namespace_name (parent, &dummy,
7497                                                               cu),
7498                                               cu);
7499               xfree (parent_prefix);
7500               return retval;
7501             }
7502         }
7503         break;
7504       case DW_TAG_class_type:
7505       case DW_TAG_structure_type:
7506         {
7507           if (parent->type != NULL && TYPE_TAG_NAME (parent->type) != NULL)
7508             {
7509               return xstrdup (TYPE_TAG_NAME (parent->type));
7510             }
7511           else
7512             {
7513               const char *old_prefix = processing_current_prefix;
7514               char *new_prefix = determine_prefix (parent, cu);
7515               char *retval;
7516
7517               processing_current_prefix = new_prefix;
7518               retval = determine_class_name (parent, cu);
7519               processing_current_prefix = old_prefix;
7520
7521               xfree (new_prefix);
7522               return retval;
7523             }
7524         }
7525       default:
7526         return determine_prefix (parent, cu);
7527       }
7528     }
7529 }
7530
7531 /* Return a newly-allocated string formed by concatenating PREFIX and
7532    SUFFIX with appropriate separator.  If PREFIX or SUFFIX is NULL or empty, then
7533    simply copy the SUFFIX or PREFIX, respectively.  If OBS is non-null,
7534    perform an obconcat, otherwise allocate storage for the result.  The CU argument
7535    is used to determine the language and hence, the appropriate separator.  */
7536
7537 #define MAX_SEP_LEN 2  /* sizeof ("::")  */
7538
7539 static char *
7540 typename_concat (struct obstack *obs, const char *prefix, const char *suffix, 
7541                  struct dwarf2_cu *cu)
7542 {
7543   char *sep;
7544
7545   if (suffix == NULL || suffix[0] == '\0' || prefix == NULL || prefix[0] == '\0')
7546     sep = "";
7547   else if (cu->language == language_java)
7548     sep = ".";
7549   else
7550     sep = "::";
7551
7552   if (obs == NULL)
7553     {
7554       char *retval = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
7555       retval[0] = '\0';
7556       
7557       if (prefix)
7558         {
7559           strcpy (retval, prefix);
7560           strcat (retval, sep);
7561         }
7562       if (suffix)
7563         strcat (retval, suffix);
7564       
7565       return retval;
7566     }
7567   else
7568     {
7569       /* We have an obstack.  */
7570       return obconcat (obs, prefix, sep, suffix);
7571     }
7572 }
7573
7574 static struct type *
7575 dwarf_base_type (int encoding, int size, struct dwarf2_cu *cu)
7576 {
7577   struct objfile *objfile = cu->objfile;
7578
7579   /* FIXME - this should not produce a new (struct type *)
7580      every time.  It should cache base types.  */
7581   struct type *type;
7582   switch (encoding)
7583     {
7584     case DW_ATE_address:
7585       type = dwarf2_fundamental_type (objfile, FT_VOID, cu);
7586       return type;
7587     case DW_ATE_boolean:
7588       type = dwarf2_fundamental_type (objfile, FT_BOOLEAN, cu);
7589       return type;
7590     case DW_ATE_complex_float:
7591       if (size == 16)
7592         {
7593           type = dwarf2_fundamental_type (objfile, FT_DBL_PREC_COMPLEX, cu);
7594         }
7595       else
7596         {
7597           type = dwarf2_fundamental_type (objfile, FT_COMPLEX, cu);
7598         }
7599       return type;
7600     case DW_ATE_float:
7601       if (size == 8)
7602         {
7603           type = dwarf2_fundamental_type (objfile, FT_DBL_PREC_FLOAT, cu);
7604         }
7605       else
7606         {
7607           type = dwarf2_fundamental_type (objfile, FT_FLOAT, cu);
7608         }
7609       return type;
7610     case DW_ATE_signed:
7611       switch (size)
7612         {
7613         case 1:
7614           type = dwarf2_fundamental_type (objfile, FT_SIGNED_CHAR, cu);
7615           break;
7616         case 2:
7617           type = dwarf2_fundamental_type (objfile, FT_SIGNED_SHORT, cu);
7618           break;
7619         default:
7620         case 4:
7621           type = dwarf2_fundamental_type (objfile, FT_SIGNED_INTEGER, cu);
7622           break;
7623         }
7624       return type;
7625     case DW_ATE_signed_char:
7626       type = dwarf2_fundamental_type (objfile, FT_SIGNED_CHAR, cu);
7627       return type;
7628     case DW_ATE_unsigned:
7629       switch (size)
7630         {
7631         case 1:
7632           type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_CHAR, cu);
7633           break;
7634         case 2:
7635           type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_SHORT, cu);
7636           break;
7637         default:
7638         case 4:
7639           type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_INTEGER, cu);
7640           break;
7641         }
7642       return type;
7643     case DW_ATE_unsigned_char:
7644       type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_CHAR, cu);
7645       return type;
7646     default:
7647       type = dwarf2_fundamental_type (objfile, FT_SIGNED_INTEGER, cu);
7648       return type;
7649     }
7650 }
7651
7652 #if 0
7653 struct die_info *
7654 copy_die (struct die_info *old_die)
7655 {
7656   struct die_info *new_die;
7657   int i, num_attrs;
7658
7659   new_die = (struct die_info *) xmalloc (sizeof (struct die_info));
7660   memset (new_die, 0, sizeof (struct die_info));
7661
7662   new_die->tag = old_die->tag;
7663   new_die->has_children = old_die->has_children;
7664   new_die->abbrev = old_die->abbrev;
7665   new_die->offset = old_die->offset;
7666   new_die->type = NULL;
7667
7668   num_attrs = old_die->num_attrs;
7669   new_die->num_attrs = num_attrs;
7670   new_die->attrs = (struct attribute *)
7671     xmalloc (num_attrs * sizeof (struct attribute));
7672
7673   for (i = 0; i < old_die->num_attrs; ++i)
7674     {
7675       new_die->attrs[i].name = old_die->attrs[i].name;
7676       new_die->attrs[i].form = old_die->attrs[i].form;
7677       new_die->attrs[i].u.addr = old_die->attrs[i].u.addr;
7678     }
7679
7680   new_die->next = NULL;
7681   return new_die;
7682 }
7683 #endif
7684
7685 /* Return sibling of die, NULL if no sibling.  */
7686
7687 static struct die_info *
7688 sibling_die (struct die_info *die)
7689 {
7690   return die->sibling;
7691 }
7692
7693 /* Get linkage name of a die, return NULL if not found.  */
7694
7695 static char *
7696 dwarf2_linkage_name (struct die_info *die, struct dwarf2_cu *cu)
7697 {
7698   struct attribute *attr;
7699
7700   attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
7701   if (attr && DW_STRING (attr))
7702     return DW_STRING (attr);
7703   attr = dwarf2_attr (die, DW_AT_name, cu);
7704   if (attr && DW_STRING (attr))
7705     return DW_STRING (attr);
7706   return NULL;
7707 }
7708
7709 /* Get name of a die, return NULL if not found.  */
7710
7711 static char *
7712 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
7713 {
7714   struct attribute *attr;
7715
7716   attr = dwarf2_attr (die, DW_AT_name, cu);
7717   if (attr && DW_STRING (attr))
7718     return DW_STRING (attr);
7719   return NULL;
7720 }
7721
7722 /* Return the die that this die in an extension of, or NULL if there
7723    is none.  */
7724
7725 static struct die_info *
7726 dwarf2_extension (struct die_info *die, struct dwarf2_cu *cu)
7727 {
7728   struct attribute *attr;
7729
7730   attr = dwarf2_attr (die, DW_AT_extension, cu);
7731   if (attr == NULL)
7732     return NULL;
7733
7734   return follow_die_ref (die, attr, cu);
7735 }
7736
7737 /* Convert a DIE tag into its string name.  */
7738
7739 static char *
7740 dwarf_tag_name (unsigned tag)
7741 {
7742   switch (tag)
7743     {
7744     case DW_TAG_padding:
7745       return "DW_TAG_padding";
7746     case DW_TAG_array_type:
7747       return "DW_TAG_array_type";
7748     case DW_TAG_class_type:
7749       return "DW_TAG_class_type";
7750     case DW_TAG_entry_point:
7751       return "DW_TAG_entry_point";
7752     case DW_TAG_enumeration_type:
7753       return "DW_TAG_enumeration_type";
7754     case DW_TAG_formal_parameter:
7755       return "DW_TAG_formal_parameter";
7756     case DW_TAG_imported_declaration:
7757       return "DW_TAG_imported_declaration";
7758     case DW_TAG_label:
7759       return "DW_TAG_label";
7760     case DW_TAG_lexical_block:
7761       return "DW_TAG_lexical_block";
7762     case DW_TAG_member:
7763       return "DW_TAG_member";
7764     case DW_TAG_pointer_type:
7765       return "DW_TAG_pointer_type";
7766     case DW_TAG_reference_type:
7767       return "DW_TAG_reference_type";
7768     case DW_TAG_compile_unit:
7769       return "DW_TAG_compile_unit";
7770     case DW_TAG_string_type:
7771       return "DW_TAG_string_type";
7772     case DW_TAG_structure_type:
7773       return "DW_TAG_structure_type";
7774     case DW_TAG_subroutine_type:
7775       return "DW_TAG_subroutine_type";
7776     case DW_TAG_typedef:
7777       return "DW_TAG_typedef";
7778     case DW_TAG_union_type:
7779       return "DW_TAG_union_type";
7780     case DW_TAG_unspecified_parameters:
7781       return "DW_TAG_unspecified_parameters";
7782     case DW_TAG_variant:
7783       return "DW_TAG_variant";
7784     case DW_TAG_common_block:
7785       return "DW_TAG_common_block";
7786     case DW_TAG_common_inclusion:
7787       return "DW_TAG_common_inclusion";
7788     case DW_TAG_inheritance:
7789       return "DW_TAG_inheritance";
7790     case DW_TAG_inlined_subroutine:
7791       return "DW_TAG_inlined_subroutine";
7792     case DW_TAG_module:
7793       return "DW_TAG_module";
7794     case DW_TAG_ptr_to_member_type:
7795       return "DW_TAG_ptr_to_member_type";
7796     case DW_TAG_set_type:
7797       return "DW_TAG_set_type";
7798     case DW_TAG_subrange_type:
7799       return "DW_TAG_subrange_type";
7800     case DW_TAG_with_stmt:
7801       return "DW_TAG_with_stmt";
7802     case DW_TAG_access_declaration:
7803       return "DW_TAG_access_declaration";
7804     case DW_TAG_base_type:
7805       return "DW_TAG_base_type";
7806     case DW_TAG_catch_block:
7807       return "DW_TAG_catch_block";
7808     case DW_TAG_const_type:
7809       return "DW_TAG_const_type";
7810     case DW_TAG_constant:
7811       return "DW_TAG_constant";
7812     case DW_TAG_enumerator:
7813       return "DW_TAG_enumerator";
7814     case DW_TAG_file_type:
7815       return "DW_TAG_file_type";
7816     case DW_TAG_friend:
7817       return "DW_TAG_friend";
7818     case DW_TAG_namelist:
7819       return "DW_TAG_namelist";
7820     case DW_TAG_namelist_item:
7821       return "DW_TAG_namelist_item";
7822     case DW_TAG_packed_type:
7823       return "DW_TAG_packed_type";
7824     case DW_TAG_subprogram:
7825       return "DW_TAG_subprogram";
7826     case DW_TAG_template_type_param:
7827       return "DW_TAG_template_type_param";
7828     case DW_TAG_template_value_param:
7829       return "DW_TAG_template_value_param";
7830     case DW_TAG_thrown_type:
7831       return "DW_TAG_thrown_type";
7832     case DW_TAG_try_block:
7833       return "DW_TAG_try_block";
7834     case DW_TAG_variant_part:
7835       return "DW_TAG_variant_part";
7836     case DW_TAG_variable:
7837       return "DW_TAG_variable";
7838     case DW_TAG_volatile_type:
7839       return "DW_TAG_volatile_type";
7840     case DW_TAG_dwarf_procedure:
7841       return "DW_TAG_dwarf_procedure";
7842     case DW_TAG_restrict_type:
7843       return "DW_TAG_restrict_type";
7844     case DW_TAG_interface_type:
7845       return "DW_TAG_interface_type";
7846     case DW_TAG_namespace:
7847       return "DW_TAG_namespace";
7848     case DW_TAG_imported_module:
7849       return "DW_TAG_imported_module";
7850     case DW_TAG_unspecified_type:
7851       return "DW_TAG_unspecified_type";
7852     case DW_TAG_partial_unit:
7853       return "DW_TAG_partial_unit";
7854     case DW_TAG_imported_unit:
7855       return "DW_TAG_imported_unit";
7856     case DW_TAG_MIPS_loop:
7857       return "DW_TAG_MIPS_loop";
7858     case DW_TAG_format_label:
7859       return "DW_TAG_format_label";
7860     case DW_TAG_function_template:
7861       return "DW_TAG_function_template";
7862     case DW_TAG_class_template:
7863       return "DW_TAG_class_template";
7864     default:
7865       return "DW_TAG_<unknown>";
7866     }
7867 }
7868
7869 /* Convert a DWARF attribute code into its string name.  */
7870
7871 static char *
7872 dwarf_attr_name (unsigned attr)
7873 {
7874   switch (attr)
7875     {
7876     case DW_AT_sibling:
7877       return "DW_AT_sibling";
7878     case DW_AT_location:
7879       return "DW_AT_location";
7880     case DW_AT_name:
7881       return "DW_AT_name";
7882     case DW_AT_ordering:
7883       return "DW_AT_ordering";
7884     case DW_AT_subscr_data:
7885       return "DW_AT_subscr_data";
7886     case DW_AT_byte_size:
7887       return "DW_AT_byte_size";
7888     case DW_AT_bit_offset:
7889       return "DW_AT_bit_offset";
7890     case DW_AT_bit_size:
7891       return "DW_AT_bit_size";
7892     case DW_AT_element_list:
7893       return "DW_AT_element_list";
7894     case DW_AT_stmt_list:
7895       return "DW_AT_stmt_list";
7896     case DW_AT_low_pc:
7897       return "DW_AT_low_pc";
7898     case DW_AT_high_pc:
7899       return "DW_AT_high_pc";
7900     case DW_AT_language:
7901       return "DW_AT_language";
7902     case DW_AT_member:
7903       return "DW_AT_member";
7904     case DW_AT_discr:
7905       return "DW_AT_discr";
7906     case DW_AT_discr_value:
7907       return "DW_AT_discr_value";
7908     case DW_AT_visibility:
7909       return "DW_AT_visibility";
7910     case DW_AT_import:
7911       return "DW_AT_import";
7912     case DW_AT_string_length:
7913       return "DW_AT_string_length";
7914     case DW_AT_common_reference:
7915       return "DW_AT_common_reference";
7916     case DW_AT_comp_dir:
7917       return "DW_AT_comp_dir";
7918     case DW_AT_const_value:
7919       return "DW_AT_const_value";
7920     case DW_AT_containing_type:
7921       return "DW_AT_containing_type";
7922     case DW_AT_default_value:
7923       return "DW_AT_default_value";
7924     case DW_AT_inline:
7925       return "DW_AT_inline";
7926     case DW_AT_is_optional:
7927       return "DW_AT_is_optional";
7928     case DW_AT_lower_bound:
7929       return "DW_AT_lower_bound";
7930     case DW_AT_producer:
7931       return "DW_AT_producer";
7932     case DW_AT_prototyped:
7933       return "DW_AT_prototyped";
7934     case DW_AT_return_addr:
7935       return "DW_AT_return_addr";
7936     case DW_AT_start_scope:
7937       return "DW_AT_start_scope";
7938     case DW_AT_stride_size:
7939       return "DW_AT_stride_size";
7940     case DW_AT_upper_bound:
7941       return "DW_AT_upper_bound";
7942     case DW_AT_abstract_origin:
7943       return "DW_AT_abstract_origin";
7944     case DW_AT_accessibility:
7945       return "DW_AT_accessibility";
7946     case DW_AT_address_class:
7947       return "DW_AT_address_class";
7948     case DW_AT_artificial:
7949       return "DW_AT_artificial";
7950     case DW_AT_base_types:
7951       return "DW_AT_base_types";
7952     case DW_AT_calling_convention:
7953       return "DW_AT_calling_convention";
7954     case DW_AT_count:
7955       return "DW_AT_count";
7956     case DW_AT_data_member_location:
7957       return "DW_AT_data_member_location";
7958     case DW_AT_decl_column:
7959       return "DW_AT_decl_column";
7960     case DW_AT_decl_file:
7961       return "DW_AT_decl_file";
7962     case DW_AT_decl_line:
7963       return "DW_AT_decl_line";
7964     case DW_AT_declaration:
7965       return "DW_AT_declaration";
7966     case DW_AT_discr_list:
7967       return "DW_AT_discr_list";
7968     case DW_AT_encoding:
7969       return "DW_AT_encoding";
7970     case DW_AT_external:
7971       return "DW_AT_external";
7972     case DW_AT_frame_base:
7973       return "DW_AT_frame_base";
7974     case DW_AT_friend:
7975       return "DW_AT_friend";
7976     case DW_AT_identifier_case:
7977       return "DW_AT_identifier_case";
7978     case DW_AT_macro_info:
7979       return "DW_AT_macro_info";
7980     case DW_AT_namelist_items:
7981       return "DW_AT_namelist_items";
7982     case DW_AT_priority:
7983       return "DW_AT_priority";
7984     case DW_AT_segment:
7985       return "DW_AT_segment";
7986     case DW_AT_specification:
7987       return "DW_AT_specification";
7988     case DW_AT_static_link:
7989       return "DW_AT_static_link";
7990     case DW_AT_type:
7991       return "DW_AT_type";
7992     case DW_AT_use_location:
7993       return "DW_AT_use_location";
7994     case DW_AT_variable_parameter:
7995       return "DW_AT_variable_parameter";
7996     case DW_AT_virtuality:
7997       return "DW_AT_virtuality";
7998     case DW_AT_vtable_elem_location:
7999       return "DW_AT_vtable_elem_location";
8000     case DW_AT_allocated:
8001       return "DW_AT_allocated";
8002     case DW_AT_associated:
8003       return "DW_AT_associated";
8004     case DW_AT_data_location:
8005       return "DW_AT_data_location";
8006     case DW_AT_stride:
8007       return "DW_AT_stride";
8008     case DW_AT_entry_pc:
8009       return "DW_AT_entry_pc";
8010     case DW_AT_use_UTF8:
8011       return "DW_AT_use_UTF8";
8012     case DW_AT_extension:
8013       return "DW_AT_extension";
8014     case DW_AT_ranges:
8015       return "DW_AT_ranges";
8016     case DW_AT_trampoline:
8017       return "DW_AT_trampoline";
8018     case DW_AT_call_column:
8019       return "DW_AT_call_column";
8020     case DW_AT_call_file:
8021       return "DW_AT_call_file";
8022     case DW_AT_call_line:
8023       return "DW_AT_call_line";
8024 #ifdef MIPS
8025     case DW_AT_MIPS_fde:
8026       return "DW_AT_MIPS_fde";
8027     case DW_AT_MIPS_loop_begin:
8028       return "DW_AT_MIPS_loop_begin";
8029     case DW_AT_MIPS_tail_loop_begin:
8030       return "DW_AT_MIPS_tail_loop_begin";
8031     case DW_AT_MIPS_epilog_begin:
8032       return "DW_AT_MIPS_epilog_begin";
8033     case DW_AT_MIPS_loop_unroll_factor:
8034       return "DW_AT_MIPS_loop_unroll_factor";
8035     case DW_AT_MIPS_software_pipeline_depth:
8036       return "DW_AT_MIPS_software_pipeline_depth";
8037 #endif
8038     case DW_AT_MIPS_linkage_name:
8039       return "DW_AT_MIPS_linkage_name";
8040
8041     case DW_AT_sf_names:
8042       return "DW_AT_sf_names";
8043     case DW_AT_src_info:
8044       return "DW_AT_src_info";
8045     case DW_AT_mac_info:
8046       return "DW_AT_mac_info";
8047     case DW_AT_src_coords:
8048       return "DW_AT_src_coords";
8049     case DW_AT_body_begin:
8050       return "DW_AT_body_begin";
8051     case DW_AT_body_end:
8052       return "DW_AT_body_end";
8053     case DW_AT_GNU_vector:
8054       return "DW_AT_GNU_vector";
8055     default:
8056       return "DW_AT_<unknown>";
8057     }
8058 }
8059
8060 /* Convert a DWARF value form code into its string name.  */
8061
8062 static char *
8063 dwarf_form_name (unsigned form)
8064 {
8065   switch (form)
8066     {
8067     case DW_FORM_addr:
8068       return "DW_FORM_addr";
8069     case DW_FORM_block2:
8070       return "DW_FORM_block2";
8071     case DW_FORM_block4:
8072       return "DW_FORM_block4";
8073     case DW_FORM_data2:
8074       return "DW_FORM_data2";
8075     case DW_FORM_data4:
8076       return "DW_FORM_data4";
8077     case DW_FORM_data8:
8078       return "DW_FORM_data8";
8079     case DW_FORM_string:
8080       return "DW_FORM_string";
8081     case DW_FORM_block:
8082       return "DW_FORM_block";
8083     case DW_FORM_block1:
8084       return "DW_FORM_block1";
8085     case DW_FORM_data1:
8086       return "DW_FORM_data1";
8087     case DW_FORM_flag:
8088       return "DW_FORM_flag";
8089     case DW_FORM_sdata:
8090       return "DW_FORM_sdata";
8091     case DW_FORM_strp:
8092       return "DW_FORM_strp";
8093     case DW_FORM_udata:
8094       return "DW_FORM_udata";
8095     case DW_FORM_ref_addr:
8096       return "DW_FORM_ref_addr";
8097     case DW_FORM_ref1:
8098       return "DW_FORM_ref1";
8099     case DW_FORM_ref2:
8100       return "DW_FORM_ref2";
8101     case DW_FORM_ref4:
8102       return "DW_FORM_ref4";
8103     case DW_FORM_ref8:
8104       return "DW_FORM_ref8";
8105     case DW_FORM_ref_udata:
8106       return "DW_FORM_ref_udata";
8107     case DW_FORM_indirect:
8108       return "DW_FORM_indirect";
8109     default:
8110       return "DW_FORM_<unknown>";
8111     }
8112 }
8113
8114 /* Convert a DWARF stack opcode into its string name.  */
8115
8116 static char *
8117 dwarf_stack_op_name (unsigned op)
8118 {
8119   switch (op)
8120     {
8121     case DW_OP_addr:
8122       return "DW_OP_addr";
8123     case DW_OP_deref:
8124       return "DW_OP_deref";
8125     case DW_OP_const1u:
8126       return "DW_OP_const1u";
8127     case DW_OP_const1s:
8128       return "DW_OP_const1s";
8129     case DW_OP_const2u:
8130       return "DW_OP_const2u";
8131     case DW_OP_const2s:
8132       return "DW_OP_const2s";
8133     case DW_OP_const4u:
8134       return "DW_OP_const4u";
8135     case DW_OP_const4s:
8136       return "DW_OP_const4s";
8137     case DW_OP_const8u:
8138       return "DW_OP_const8u";
8139     case DW_OP_const8s:
8140       return "DW_OP_const8s";
8141     case DW_OP_constu:
8142       return "DW_OP_constu";
8143     case DW_OP_consts:
8144       return "DW_OP_consts";
8145     case DW_OP_dup:
8146       return "DW_OP_dup";
8147     case DW_OP_drop:
8148       return "DW_OP_drop";
8149     case DW_OP_over:
8150       return "DW_OP_over";
8151     case DW_OP_pick:
8152       return "DW_OP_pick";
8153     case DW_OP_swap:
8154       return "DW_OP_swap";
8155     case DW_OP_rot:
8156       return "DW_OP_rot";
8157     case DW_OP_xderef:
8158       return "DW_OP_xderef";
8159     case DW_OP_abs:
8160       return "DW_OP_abs";
8161     case DW_OP_and:
8162       return "DW_OP_and";
8163     case DW_OP_div:
8164       return "DW_OP_div";
8165     case DW_OP_minus:
8166       return "DW_OP_minus";
8167     case DW_OP_mod:
8168       return "DW_OP_mod";
8169     case DW_OP_mul:
8170       return "DW_OP_mul";
8171     case DW_OP_neg:
8172       return "DW_OP_neg";
8173     case DW_OP_not:
8174       return "DW_OP_not";
8175     case DW_OP_or:
8176       return "DW_OP_or";
8177     case DW_OP_plus:
8178       return "DW_OP_plus";
8179     case DW_OP_plus_uconst:
8180       return "DW_OP_plus_uconst";
8181     case DW_OP_shl:
8182       return "DW_OP_shl";
8183     case DW_OP_shr:
8184       return "DW_OP_shr";
8185     case DW_OP_shra:
8186       return "DW_OP_shra";
8187     case DW_OP_xor:
8188       return "DW_OP_xor";
8189     case DW_OP_bra:
8190       return "DW_OP_bra";
8191     case DW_OP_eq:
8192       return "DW_OP_eq";
8193     case DW_OP_ge:
8194       return "DW_OP_ge";
8195     case DW_OP_gt:
8196       return "DW_OP_gt";
8197     case DW_OP_le:
8198       return "DW_OP_le";
8199     case DW_OP_lt:
8200       return "DW_OP_lt";
8201     case DW_OP_ne:
8202       return "DW_OP_ne";
8203     case DW_OP_skip:
8204       return "DW_OP_skip";
8205     case DW_OP_lit0:
8206       return "DW_OP_lit0";
8207     case DW_OP_lit1:
8208       return "DW_OP_lit1";
8209     case DW_OP_lit2:
8210       return "DW_OP_lit2";
8211     case DW_OP_lit3:
8212       return "DW_OP_lit3";
8213     case DW_OP_lit4:
8214       return "DW_OP_lit4";
8215     case DW_OP_lit5:
8216       return "DW_OP_lit5";
8217     case DW_OP_lit6:
8218       return "DW_OP_lit6";
8219     case DW_OP_lit7:
8220       return "DW_OP_lit7";
8221     case DW_OP_lit8:
8222       return "DW_OP_lit8";
8223     case DW_OP_lit9:
8224       return "DW_OP_lit9";
8225     case DW_OP_lit10:
8226       return "DW_OP_lit10";
8227     case DW_OP_lit11:
8228       return "DW_OP_lit11";
8229     case DW_OP_lit12:
8230       return "DW_OP_lit12";
8231     case DW_OP_lit13:
8232       return "DW_OP_lit13";
8233     case DW_OP_lit14:
8234       return "DW_OP_lit14";
8235     case DW_OP_lit15:
8236       return "DW_OP_lit15";
8237     case DW_OP_lit16:
8238       return "DW_OP_lit16";
8239     case DW_OP_lit17:
8240       return "DW_OP_lit17";
8241     case DW_OP_lit18:
8242       return "DW_OP_lit18";
8243     case DW_OP_lit19:
8244       return "DW_OP_lit19";
8245     case DW_OP_lit20:
8246       return "DW_OP_lit20";
8247     case DW_OP_lit21:
8248       return "DW_OP_lit21";
8249     case DW_OP_lit22:
8250       return "DW_OP_lit22";
8251     case DW_OP_lit23:
8252       return "DW_OP_lit23";
8253     case DW_OP_lit24:
8254       return "DW_OP_lit24";
8255     case DW_OP_lit25:
8256       return "DW_OP_lit25";
8257     case DW_OP_lit26:
8258       return "DW_OP_lit26";
8259     case DW_OP_lit27:
8260       return "DW_OP_lit27";
8261     case DW_OP_lit28:
8262       return "DW_OP_lit28";
8263     case DW_OP_lit29:
8264       return "DW_OP_lit29";
8265     case DW_OP_lit30:
8266       return "DW_OP_lit30";
8267     case DW_OP_lit31:
8268       return "DW_OP_lit31";
8269     case DW_OP_reg0:
8270       return "DW_OP_reg0";
8271     case DW_OP_reg1:
8272       return "DW_OP_reg1";
8273     case DW_OP_reg2:
8274       return "DW_OP_reg2";
8275     case DW_OP_reg3:
8276       return "DW_OP_reg3";
8277     case DW_OP_reg4:
8278       return "DW_OP_reg4";
8279     case DW_OP_reg5:
8280       return "DW_OP_reg5";
8281     case DW_OP_reg6:
8282       return "DW_OP_reg6";
8283     case DW_OP_reg7:
8284       return "DW_OP_reg7";
8285     case DW_OP_reg8:
8286       return "DW_OP_reg8";
8287     case DW_OP_reg9:
8288       return "DW_OP_reg9";
8289     case DW_OP_reg10:
8290       return "DW_OP_reg10";
8291     case DW_OP_reg11:
8292       return "DW_OP_reg11";
8293     case DW_OP_reg12:
8294       return "DW_OP_reg12";
8295     case DW_OP_reg13:
8296       return "DW_OP_reg13";
8297     case DW_OP_reg14:
8298       return "DW_OP_reg14";
8299     case DW_OP_reg15:
8300       return "DW_OP_reg15";
8301     case DW_OP_reg16:
8302       return "DW_OP_reg16";
8303     case DW_OP_reg17:
8304       return "DW_OP_reg17";
8305     case DW_OP_reg18:
8306       return "DW_OP_reg18";
8307     case DW_OP_reg19:
8308       return "DW_OP_reg19";
8309     case DW_OP_reg20:
8310       return "DW_OP_reg20";
8311     case DW_OP_reg21:
8312       return "DW_OP_reg21";
8313     case DW_OP_reg22:
8314       return "DW_OP_reg22";
8315     case DW_OP_reg23:
8316       return "DW_OP_reg23";
8317     case DW_OP_reg24:
8318       return "DW_OP_reg24";
8319     case DW_OP_reg25:
8320       return "DW_OP_reg25";
8321     case DW_OP_reg26:
8322       return "DW_OP_reg26";
8323     case DW_OP_reg27:
8324       return "DW_OP_reg27";
8325     case DW_OP_reg28:
8326       return "DW_OP_reg28";
8327     case DW_OP_reg29:
8328       return "DW_OP_reg29";
8329     case DW_OP_reg30:
8330       return "DW_OP_reg30";
8331     case DW_OP_reg31:
8332       return "DW_OP_reg31";
8333     case DW_OP_breg0:
8334       return "DW_OP_breg0";
8335     case DW_OP_breg1:
8336       return "DW_OP_breg1";
8337     case DW_OP_breg2:
8338       return "DW_OP_breg2";
8339     case DW_OP_breg3:
8340       return "DW_OP_breg3";
8341     case DW_OP_breg4:
8342       return "DW_OP_breg4";
8343     case DW_OP_breg5:
8344       return "DW_OP_breg5";
8345     case DW_OP_breg6:
8346       return "DW_OP_breg6";
8347     case DW_OP_breg7:
8348       return "DW_OP_breg7";
8349     case DW_OP_breg8:
8350       return "DW_OP_breg8";
8351     case DW_OP_breg9:
8352       return "DW_OP_breg9";
8353     case DW_OP_breg10:
8354       return "DW_OP_breg10";
8355     case DW_OP_breg11:
8356       return "DW_OP_breg11";
8357     case DW_OP_breg12:
8358       return "DW_OP_breg12";
8359     case DW_OP_breg13:
8360       return "DW_OP_breg13";
8361     case DW_OP_breg14:
8362       return "DW_OP_breg14";
8363     case DW_OP_breg15:
8364       return "DW_OP_breg15";
8365     case DW_OP_breg16:
8366       return "DW_OP_breg16";
8367     case DW_OP_breg17:
8368       return "DW_OP_breg17";
8369     case DW_OP_breg18:
8370       return "DW_OP_breg18";
8371     case DW_OP_breg19:
8372       return "DW_OP_breg19";
8373     case DW_OP_breg20:
8374       return "DW_OP_breg20";
8375     case DW_OP_breg21:
8376       return "DW_OP_breg21";
8377     case DW_OP_breg22:
8378       return "DW_OP_breg22";
8379     case DW_OP_breg23:
8380       return "DW_OP_breg23";
8381     case DW_OP_breg24:
8382       return "DW_OP_breg24";
8383     case DW_OP_breg25:
8384       return "DW_OP_breg25";
8385     case DW_OP_breg26:
8386       return "DW_OP_breg26";
8387     case DW_OP_breg27:
8388       return "DW_OP_breg27";
8389     case DW_OP_breg28:
8390       return "DW_OP_breg28";
8391     case DW_OP_breg29:
8392       return "DW_OP_breg29";
8393     case DW_OP_breg30:
8394       return "DW_OP_breg30";
8395     case DW_OP_breg31:
8396       return "DW_OP_breg31";
8397     case DW_OP_regx:
8398       return "DW_OP_regx";
8399     case DW_OP_fbreg:
8400       return "DW_OP_fbreg";
8401     case DW_OP_bregx:
8402       return "DW_OP_bregx";
8403     case DW_OP_piece:
8404       return "DW_OP_piece";
8405     case DW_OP_deref_size:
8406       return "DW_OP_deref_size";
8407     case DW_OP_xderef_size:
8408       return "DW_OP_xderef_size";
8409     case DW_OP_nop:
8410       return "DW_OP_nop";
8411       /* DWARF 3 extensions.  */
8412     case DW_OP_push_object_address:
8413       return "DW_OP_push_object_address";
8414     case DW_OP_call2:
8415       return "DW_OP_call2";
8416     case DW_OP_call4:
8417       return "DW_OP_call4";
8418     case DW_OP_call_ref:
8419       return "DW_OP_call_ref";
8420       /* GNU extensions.  */
8421     case DW_OP_GNU_push_tls_address:
8422       return "DW_OP_GNU_push_tls_address";
8423     default:
8424       return "OP_<unknown>";
8425     }
8426 }
8427
8428 static char *
8429 dwarf_bool_name (unsigned mybool)
8430 {
8431   if (mybool)
8432     return "TRUE";
8433   else
8434     return "FALSE";
8435 }
8436
8437 /* Convert a DWARF type code into its string name.  */
8438
8439 static char *
8440 dwarf_type_encoding_name (unsigned enc)
8441 {
8442   switch (enc)
8443     {
8444     case DW_ATE_address:
8445       return "DW_ATE_address";
8446     case DW_ATE_boolean:
8447       return "DW_ATE_boolean";
8448     case DW_ATE_complex_float:
8449       return "DW_ATE_complex_float";
8450     case DW_ATE_float:
8451       return "DW_ATE_float";
8452     case DW_ATE_signed:
8453       return "DW_ATE_signed";
8454     case DW_ATE_signed_char:
8455       return "DW_ATE_signed_char";
8456     case DW_ATE_unsigned:
8457       return "DW_ATE_unsigned";
8458     case DW_ATE_unsigned_char:
8459       return "DW_ATE_unsigned_char";
8460     case DW_ATE_imaginary_float:
8461       return "DW_ATE_imaginary_float";
8462     default:
8463       return "DW_ATE_<unknown>";
8464     }
8465 }
8466
8467 /* Convert a DWARF call frame info operation to its string name. */
8468
8469 #if 0
8470 static char *
8471 dwarf_cfi_name (unsigned cfi_opc)
8472 {
8473   switch (cfi_opc)
8474     {
8475     case DW_CFA_advance_loc:
8476       return "DW_CFA_advance_loc";
8477     case DW_CFA_offset:
8478       return "DW_CFA_offset";
8479     case DW_CFA_restore:
8480       return "DW_CFA_restore";
8481     case DW_CFA_nop:
8482       return "DW_CFA_nop";
8483     case DW_CFA_set_loc:
8484       return "DW_CFA_set_loc";
8485     case DW_CFA_advance_loc1:
8486       return "DW_CFA_advance_loc1";
8487     case DW_CFA_advance_loc2:
8488       return "DW_CFA_advance_loc2";
8489     case DW_CFA_advance_loc4:
8490       return "DW_CFA_advance_loc4";
8491     case DW_CFA_offset_extended:
8492       return "DW_CFA_offset_extended";
8493     case DW_CFA_restore_extended:
8494       return "DW_CFA_restore_extended";
8495     case DW_CFA_undefined:
8496       return "DW_CFA_undefined";
8497     case DW_CFA_same_value:
8498       return "DW_CFA_same_value";
8499     case DW_CFA_register:
8500       return "DW_CFA_register";
8501     case DW_CFA_remember_state:
8502       return "DW_CFA_remember_state";
8503     case DW_CFA_restore_state:
8504       return "DW_CFA_restore_state";
8505     case DW_CFA_def_cfa:
8506       return "DW_CFA_def_cfa";
8507     case DW_CFA_def_cfa_register:
8508       return "DW_CFA_def_cfa_register";
8509     case DW_CFA_def_cfa_offset:
8510       return "DW_CFA_def_cfa_offset";
8511
8512     /* DWARF 3 */
8513     case DW_CFA_def_cfa_expression:
8514       return "DW_CFA_def_cfa_expression";
8515     case DW_CFA_expression:
8516       return "DW_CFA_expression";
8517     case DW_CFA_offset_extended_sf:
8518       return "DW_CFA_offset_extended_sf";
8519     case DW_CFA_def_cfa_sf:
8520       return "DW_CFA_def_cfa_sf";
8521     case DW_CFA_def_cfa_offset_sf:
8522       return "DW_CFA_def_cfa_offset_sf";
8523
8524       /* SGI/MIPS specific */
8525     case DW_CFA_MIPS_advance_loc8:
8526       return "DW_CFA_MIPS_advance_loc8";
8527
8528     /* GNU extensions */
8529     case DW_CFA_GNU_window_save:
8530       return "DW_CFA_GNU_window_save";
8531     case DW_CFA_GNU_args_size:
8532       return "DW_CFA_GNU_args_size";
8533     case DW_CFA_GNU_negative_offset_extended:
8534       return "DW_CFA_GNU_negative_offset_extended";
8535
8536     default:
8537       return "DW_CFA_<unknown>";
8538     }
8539 }
8540 #endif
8541
8542 static void
8543 dump_die (struct die_info *die)
8544 {
8545   unsigned int i;
8546
8547   fprintf_unfiltered (gdb_stderr, "Die: %s (abbrev = %d, offset = %d)\n",
8548            dwarf_tag_name (die->tag), die->abbrev, die->offset);
8549   fprintf_unfiltered (gdb_stderr, "\thas children: %s\n",
8550            dwarf_bool_name (die->child != NULL));
8551
8552   fprintf_unfiltered (gdb_stderr, "\tattributes:\n");
8553   for (i = 0; i < die->num_attrs; ++i)
8554     {
8555       fprintf_unfiltered (gdb_stderr, "\t\t%s (%s) ",
8556                dwarf_attr_name (die->attrs[i].name),
8557                dwarf_form_name (die->attrs[i].form));
8558       switch (die->attrs[i].form)
8559         {
8560         case DW_FORM_ref_addr:
8561         case DW_FORM_addr:
8562           fprintf_unfiltered (gdb_stderr, "address: ");
8563           deprecated_print_address_numeric (DW_ADDR (&die->attrs[i]), 1, gdb_stderr);
8564           break;
8565         case DW_FORM_block2:
8566         case DW_FORM_block4:
8567         case DW_FORM_block:
8568         case DW_FORM_block1:
8569           fprintf_unfiltered (gdb_stderr, "block: size %d", DW_BLOCK (&die->attrs[i])->size);
8570           break;
8571         case DW_FORM_ref1:
8572         case DW_FORM_ref2:
8573         case DW_FORM_ref4:
8574           fprintf_unfiltered (gdb_stderr, "constant ref: %ld (adjusted)",
8575                               (long) (DW_ADDR (&die->attrs[i])));
8576           break;
8577         case DW_FORM_data1:
8578         case DW_FORM_data2:
8579         case DW_FORM_data4:
8580         case DW_FORM_data8:
8581         case DW_FORM_udata:
8582         case DW_FORM_sdata:
8583           fprintf_unfiltered (gdb_stderr, "constant: %ld", DW_UNSND (&die->attrs[i]));
8584           break;
8585         case DW_FORM_string:
8586         case DW_FORM_strp:
8587           fprintf_unfiltered (gdb_stderr, "string: \"%s\"",
8588                    DW_STRING (&die->attrs[i])
8589                    ? DW_STRING (&die->attrs[i]) : "");
8590           break;
8591         case DW_FORM_flag:
8592           if (DW_UNSND (&die->attrs[i]))
8593             fprintf_unfiltered (gdb_stderr, "flag: TRUE");
8594           else
8595             fprintf_unfiltered (gdb_stderr, "flag: FALSE");
8596           break;
8597         case DW_FORM_indirect:
8598           /* the reader will have reduced the indirect form to
8599              the "base form" so this form should not occur */
8600           fprintf_unfiltered (gdb_stderr, "unexpected attribute form: DW_FORM_indirect");
8601           break;
8602         default:
8603           fprintf_unfiltered (gdb_stderr, "unsupported attribute form: %d.",
8604                    die->attrs[i].form);
8605         }
8606       fprintf_unfiltered (gdb_stderr, "\n");
8607     }
8608 }
8609
8610 static void
8611 dump_die_list (struct die_info *die)
8612 {
8613   while (die)
8614     {
8615       dump_die (die);
8616       if (die->child != NULL)
8617         dump_die_list (die->child);
8618       if (die->sibling != NULL)
8619         dump_die_list (die->sibling);
8620     }
8621 }
8622
8623 static void
8624 store_in_ref_table (unsigned int offset, struct die_info *die,
8625                     struct dwarf2_cu *cu)
8626 {
8627   int h;
8628   struct die_info *old;
8629
8630   h = (offset % REF_HASH_SIZE);
8631   old = cu->die_ref_table[h];
8632   die->next_ref = old;
8633   cu->die_ref_table[h] = die;
8634 }
8635
8636 static unsigned int
8637 dwarf2_get_ref_die_offset (struct attribute *attr, struct dwarf2_cu *cu)
8638 {
8639   unsigned int result = 0;
8640
8641   switch (attr->form)
8642     {
8643     case DW_FORM_ref_addr:
8644     case DW_FORM_ref1:
8645     case DW_FORM_ref2:
8646     case DW_FORM_ref4:
8647     case DW_FORM_ref8:
8648     case DW_FORM_ref_udata:
8649       result = DW_ADDR (attr);
8650       break;
8651     default:
8652       complaint (&symfile_complaints,
8653                  _("unsupported die ref attribute form: '%s'"),
8654                  dwarf_form_name (attr->form));
8655     }
8656   return result;
8657 }
8658
8659 /* Return the constant value held by the given attribute.  Return -1
8660    if the value held by the attribute is not constant.  */
8661
8662 static int
8663 dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
8664 {
8665   if (attr->form == DW_FORM_sdata)
8666     return DW_SND (attr);
8667   else if (attr->form == DW_FORM_udata
8668            || attr->form == DW_FORM_data1
8669            || attr->form == DW_FORM_data2
8670            || attr->form == DW_FORM_data4
8671            || attr->form == DW_FORM_data8)
8672     return DW_UNSND (attr);
8673   else
8674     {
8675       complaint (&symfile_complaints, _("Attribute value is not a constant (%s)"),
8676                  dwarf_form_name (attr->form));
8677       return default_value;
8678     }
8679 }
8680
8681 static struct die_info *
8682 follow_die_ref (struct die_info *src_die, struct attribute *attr,
8683                 struct dwarf2_cu *cu)
8684 {
8685   struct die_info *die;
8686   unsigned int offset;
8687   int h;
8688   struct die_info temp_die;
8689   struct dwarf2_cu *target_cu;
8690
8691   offset = dwarf2_get_ref_die_offset (attr, cu);
8692
8693   if (DW_ADDR (attr) < cu->header.offset
8694       || DW_ADDR (attr) >= cu->header.offset + cu->header.length)
8695     {
8696       struct dwarf2_per_cu_data *per_cu;
8697       per_cu = dwarf2_find_containing_comp_unit (DW_ADDR (attr),
8698                                                  cu->objfile);
8699       target_cu = per_cu->cu;
8700     }
8701   else
8702     target_cu = cu;
8703
8704   h = (offset % REF_HASH_SIZE);
8705   die = target_cu->die_ref_table[h];
8706   while (die)
8707     {
8708       if (die->offset == offset)
8709         return die;
8710       die = die->next_ref;
8711     }
8712
8713   error (_("Dwarf Error: Cannot find DIE at 0x%lx referenced from DIE "
8714          "at 0x%lx [in module %s]"),
8715          (long) src_die->offset, (long) offset, cu->objfile->name);
8716
8717   return NULL;
8718 }
8719
8720 static struct type *
8721 dwarf2_fundamental_type (struct objfile *objfile, int typeid,
8722                          struct dwarf2_cu *cu)
8723 {
8724   if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
8725     {
8726       error (_("Dwarf Error: internal error - invalid fundamental type id %d [in module %s]"),
8727              typeid, objfile->name);
8728     }
8729
8730   /* Look for this particular type in the fundamental type vector.  If
8731      one is not found, create and install one appropriate for the
8732      current language and the current target machine. */
8733
8734   if (cu->ftypes[typeid] == NULL)
8735     {
8736       cu->ftypes[typeid] = cu->language_defn->la_fund_type (objfile, typeid);
8737     }
8738
8739   return (cu->ftypes[typeid]);
8740 }
8741
8742 /* Decode simple location descriptions.
8743    Given a pointer to a dwarf block that defines a location, compute
8744    the location and return the value.
8745
8746    NOTE drow/2003-11-18: This function is called in two situations
8747    now: for the address of static or global variables (partial symbols
8748    only) and for offsets into structures which are expected to be
8749    (more or less) constant.  The partial symbol case should go away,
8750    and only the constant case should remain.  That will let this
8751    function complain more accurately.  A few special modes are allowed
8752    without complaint for global variables (for instance, global
8753    register values and thread-local values).
8754
8755    A location description containing no operations indicates that the
8756    object is optimized out.  The return value is 0 for that case.
8757    FIXME drow/2003-11-16: No callers check for this case any more; soon all
8758    callers will only want a very basic result and this can become a
8759    complaint.
8760
8761    Note that stack[0] is unused except as a default error return.
8762    Note that stack overflow is not yet handled.  */
8763
8764 static CORE_ADDR
8765 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
8766 {
8767   struct objfile *objfile = cu->objfile;
8768   struct comp_unit_head *cu_header = &cu->header;
8769   int i;
8770   int size = blk->size;
8771   gdb_byte *data = blk->data;
8772   CORE_ADDR stack[64];
8773   int stacki;
8774   unsigned int bytes_read, unsnd;
8775   gdb_byte op;
8776
8777   i = 0;
8778   stacki = 0;
8779   stack[stacki] = 0;
8780
8781   while (i < size)
8782     {
8783       op = data[i++];
8784       switch (op)
8785         {
8786         case DW_OP_lit0:
8787         case DW_OP_lit1:
8788         case DW_OP_lit2:
8789         case DW_OP_lit3:
8790         case DW_OP_lit4:
8791         case DW_OP_lit5:
8792         case DW_OP_lit6:
8793         case DW_OP_lit7:
8794         case DW_OP_lit8:
8795         case DW_OP_lit9:
8796         case DW_OP_lit10:
8797         case DW_OP_lit11:
8798         case DW_OP_lit12:
8799         case DW_OP_lit13:
8800         case DW_OP_lit14:
8801         case DW_OP_lit15:
8802         case DW_OP_lit16:
8803         case DW_OP_lit17:
8804         case DW_OP_lit18:
8805         case DW_OP_lit19:
8806         case DW_OP_lit20:
8807         case DW_OP_lit21:
8808         case DW_OP_lit22:
8809         case DW_OP_lit23:
8810         case DW_OP_lit24:
8811         case DW_OP_lit25:
8812         case DW_OP_lit26:
8813         case DW_OP_lit27:
8814         case DW_OP_lit28:
8815         case DW_OP_lit29:
8816         case DW_OP_lit30:
8817         case DW_OP_lit31:
8818           stack[++stacki] = op - DW_OP_lit0;
8819           break;
8820
8821         case DW_OP_reg0:
8822         case DW_OP_reg1:
8823         case DW_OP_reg2:
8824         case DW_OP_reg3:
8825         case DW_OP_reg4:
8826         case DW_OP_reg5:
8827         case DW_OP_reg6:
8828         case DW_OP_reg7:
8829         case DW_OP_reg8:
8830         case DW_OP_reg9:
8831         case DW_OP_reg10:
8832         case DW_OP_reg11:
8833         case DW_OP_reg12:
8834         case DW_OP_reg13:
8835         case DW_OP_reg14:
8836         case DW_OP_reg15:
8837         case DW_OP_reg16:
8838         case DW_OP_reg17:
8839         case DW_OP_reg18:
8840         case DW_OP_reg19:
8841         case DW_OP_reg20:
8842         case DW_OP_reg21:
8843         case DW_OP_reg22:
8844         case DW_OP_reg23:
8845         case DW_OP_reg24:
8846         case DW_OP_reg25:
8847         case DW_OP_reg26:
8848         case DW_OP_reg27:
8849         case DW_OP_reg28:
8850         case DW_OP_reg29:
8851         case DW_OP_reg30:
8852         case DW_OP_reg31:
8853           stack[++stacki] = op - DW_OP_reg0;
8854           if (i < size)
8855             dwarf2_complex_location_expr_complaint ();
8856           break;
8857
8858         case DW_OP_regx:
8859           unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
8860           i += bytes_read;
8861           stack[++stacki] = unsnd;
8862           if (i < size)
8863             dwarf2_complex_location_expr_complaint ();
8864           break;
8865
8866         case DW_OP_addr:
8867           stack[++stacki] = read_address (objfile->obfd, &data[i],
8868                                           cu, &bytes_read);
8869           i += bytes_read;
8870           break;
8871
8872         case DW_OP_const1u:
8873           stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
8874           i += 1;
8875           break;
8876
8877         case DW_OP_const1s:
8878           stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
8879           i += 1;
8880           break;
8881
8882         case DW_OP_const2u:
8883           stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
8884           i += 2;
8885           break;
8886
8887         case DW_OP_const2s:
8888           stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
8889           i += 2;
8890           break;
8891
8892         case DW_OP_const4u:
8893           stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
8894           i += 4;
8895           break;
8896
8897         case DW_OP_const4s:
8898           stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
8899           i += 4;
8900           break;
8901
8902         case DW_OP_constu:
8903           stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
8904                                                   &bytes_read);
8905           i += bytes_read;
8906           break;
8907
8908         case DW_OP_consts:
8909           stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
8910           i += bytes_read;
8911           break;
8912
8913         case DW_OP_dup:
8914           stack[stacki + 1] = stack[stacki];
8915           stacki++;
8916           break;
8917
8918         case DW_OP_plus:
8919           stack[stacki - 1] += stack[stacki];
8920           stacki--;
8921           break;
8922
8923         case DW_OP_plus_uconst:
8924           stack[stacki] += read_unsigned_leb128 (NULL, (data + i), &bytes_read);
8925           i += bytes_read;
8926           break;
8927
8928         case DW_OP_minus:
8929           stack[stacki - 1] -= stack[stacki];
8930           stacki--;
8931           break;
8932
8933         case DW_OP_deref:
8934           /* If we're not the last op, then we definitely can't encode
8935              this using GDB's address_class enum.  This is valid for partial
8936              global symbols, although the variable's address will be bogus
8937              in the psymtab.  */
8938           if (i < size)
8939             dwarf2_complex_location_expr_complaint ();
8940           break;
8941
8942         case DW_OP_GNU_push_tls_address:
8943           /* The top of the stack has the offset from the beginning
8944              of the thread control block at which the variable is located.  */
8945           /* Nothing should follow this operator, so the top of stack would
8946              be returned.  */
8947           /* This is valid for partial global symbols, but the variable's
8948              address will be bogus in the psymtab.  */
8949           if (i < size)
8950             dwarf2_complex_location_expr_complaint ();
8951           break;
8952
8953         default:
8954           complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
8955                      dwarf_stack_op_name (op));
8956           return (stack[stacki]);
8957         }
8958     }
8959   return (stack[stacki]);
8960 }
8961
8962 /* memory allocation interface */
8963
8964 static struct dwarf_block *
8965 dwarf_alloc_block (struct dwarf2_cu *cu)
8966 {
8967   struct dwarf_block *blk;
8968
8969   blk = (struct dwarf_block *)
8970     obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
8971   return (blk);
8972 }
8973
8974 static struct abbrev_info *
8975 dwarf_alloc_abbrev (struct dwarf2_cu *cu)
8976 {
8977   struct abbrev_info *abbrev;
8978
8979   abbrev = (struct abbrev_info *)
8980     obstack_alloc (&cu->abbrev_obstack, sizeof (struct abbrev_info));
8981   memset (abbrev, 0, sizeof (struct abbrev_info));
8982   return (abbrev);
8983 }
8984
8985 static struct die_info *
8986 dwarf_alloc_die (void)
8987 {
8988   struct die_info *die;
8989
8990   die = (struct die_info *) xmalloc (sizeof (struct die_info));
8991   memset (die, 0, sizeof (struct die_info));
8992   return (die);
8993 }
8994
8995 \f
8996 /* Macro support.  */
8997
8998
8999 /* Return the full name of file number I in *LH's file name table.
9000    Use COMP_DIR as the name of the current directory of the
9001    compilation.  The result is allocated using xmalloc; the caller is
9002    responsible for freeing it.  */
9003 static char *
9004 file_full_name (int file, struct line_header *lh, const char *comp_dir)
9005 {
9006   /* Is the file number a valid index into the line header's file name
9007      table?  Remember that file numbers start with one, not zero.  */
9008   if (1 <= file && file <= lh->num_file_names)
9009     {
9010       struct file_entry *fe = &lh->file_names[file - 1];
9011   
9012       if (IS_ABSOLUTE_PATH (fe->name))
9013         return xstrdup (fe->name);
9014       else
9015         {
9016           const char *dir;
9017           int dir_len;
9018           char *full_name;
9019
9020           if (fe->dir_index)
9021             dir = lh->include_dirs[fe->dir_index - 1];
9022           else
9023             dir = comp_dir;
9024
9025           if (dir)
9026             {
9027               dir_len = strlen (dir);
9028               full_name = xmalloc (dir_len + 1 + strlen (fe->name) + 1);
9029               strcpy (full_name, dir);
9030               full_name[dir_len] = '/';
9031               strcpy (full_name + dir_len + 1, fe->name);
9032               return full_name;
9033             }
9034           else
9035             return xstrdup (fe->name);
9036         }
9037     }
9038   else
9039     {
9040       /* The compiler produced a bogus file number.  We can at least
9041          record the macro definitions made in the file, even if we
9042          won't be able to find the file by name.  */
9043       char fake_name[80];
9044       sprintf (fake_name, "<bad macro file number %d>", file);
9045
9046       complaint (&symfile_complaints, 
9047                  _("bad file number in macro information (%d)"),
9048                  file);
9049
9050       return xstrdup (fake_name);
9051     }
9052 }
9053
9054
9055 static struct macro_source_file *
9056 macro_start_file (int file, int line,
9057                   struct macro_source_file *current_file,
9058                   const char *comp_dir,
9059                   struct line_header *lh, struct objfile *objfile)
9060 {
9061   /* The full name of this source file.  */
9062   char *full_name = file_full_name (file, lh, comp_dir);
9063
9064   /* We don't create a macro table for this compilation unit
9065      at all until we actually get a filename.  */
9066   if (! pending_macros)
9067     pending_macros = new_macro_table (&objfile->objfile_obstack,
9068                                       objfile->macro_cache);
9069
9070   if (! current_file)
9071     /* If we have no current file, then this must be the start_file
9072        directive for the compilation unit's main source file.  */
9073     current_file = macro_set_main (pending_macros, full_name);
9074   else
9075     current_file = macro_include (current_file, line, full_name);
9076
9077   xfree (full_name);
9078               
9079   return current_file;
9080 }
9081
9082
9083 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
9084    followed by a null byte.  */
9085 static char *
9086 copy_string (const char *buf, int len)
9087 {
9088   char *s = xmalloc (len + 1);
9089   memcpy (s, buf, len);
9090   s[len] = '\0';
9091
9092   return s;
9093 }
9094
9095
9096 static const char *
9097 consume_improper_spaces (const char *p, const char *body)
9098 {
9099   if (*p == ' ')
9100     {
9101       complaint (&symfile_complaints,
9102                  _("macro definition contains spaces in formal argument list:\n`%s'"),
9103                  body);
9104
9105       while (*p == ' ')
9106         p++;
9107     }
9108
9109   return p;
9110 }
9111
9112
9113 static void
9114 parse_macro_definition (struct macro_source_file *file, int line,
9115                         const char *body)
9116 {
9117   const char *p;
9118
9119   /* The body string takes one of two forms.  For object-like macro
9120      definitions, it should be:
9121
9122         <macro name> " " <definition>
9123
9124      For function-like macro definitions, it should be:
9125
9126         <macro name> "() " <definition>
9127      or
9128         <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
9129
9130      Spaces may appear only where explicitly indicated, and in the
9131      <definition>.
9132
9133      The Dwarf 2 spec says that an object-like macro's name is always
9134      followed by a space, but versions of GCC around March 2002 omit
9135      the space when the macro's definition is the empty string. 
9136
9137      The Dwarf 2 spec says that there should be no spaces between the
9138      formal arguments in a function-like macro's formal argument list,
9139      but versions of GCC around March 2002 include spaces after the
9140      commas.  */
9141
9142
9143   /* Find the extent of the macro name.  The macro name is terminated
9144      by either a space or null character (for an object-like macro) or
9145      an opening paren (for a function-like macro).  */
9146   for (p = body; *p; p++)
9147     if (*p == ' ' || *p == '(')
9148       break;
9149
9150   if (*p == ' ' || *p == '\0')
9151     {
9152       /* It's an object-like macro.  */
9153       int name_len = p - body;
9154       char *name = copy_string (body, name_len);
9155       const char *replacement;
9156
9157       if (*p == ' ')
9158         replacement = body + name_len + 1;
9159       else
9160         {
9161           dwarf2_macro_malformed_definition_complaint (body);
9162           replacement = body + name_len;
9163         }
9164       
9165       macro_define_object (file, line, name, replacement);
9166
9167       xfree (name);
9168     }
9169   else if (*p == '(')
9170     {
9171       /* It's a function-like macro.  */
9172       char *name = copy_string (body, p - body);
9173       int argc = 0;
9174       int argv_size = 1;
9175       char **argv = xmalloc (argv_size * sizeof (*argv));
9176
9177       p++;
9178
9179       p = consume_improper_spaces (p, body);
9180
9181       /* Parse the formal argument list.  */
9182       while (*p && *p != ')')
9183         {
9184           /* Find the extent of the current argument name.  */
9185           const char *arg_start = p;
9186
9187           while (*p && *p != ',' && *p != ')' && *p != ' ')
9188             p++;
9189
9190           if (! *p || p == arg_start)
9191             dwarf2_macro_malformed_definition_complaint (body);
9192           else
9193             {
9194               /* Make sure argv has room for the new argument.  */
9195               if (argc >= argv_size)
9196                 {
9197                   argv_size *= 2;
9198                   argv = xrealloc (argv, argv_size * sizeof (*argv));
9199                 }
9200
9201               argv[argc++] = copy_string (arg_start, p - arg_start);
9202             }
9203
9204           p = consume_improper_spaces (p, body);
9205
9206           /* Consume the comma, if present.  */
9207           if (*p == ',')
9208             {
9209               p++;
9210
9211               p = consume_improper_spaces (p, body);
9212             }
9213         }
9214
9215       if (*p == ')')
9216         {
9217           p++;
9218
9219           if (*p == ' ')
9220             /* Perfectly formed definition, no complaints.  */
9221             macro_define_function (file, line, name,
9222                                    argc, (const char **) argv, 
9223                                    p + 1);
9224           else if (*p == '\0')
9225             {
9226               /* Complain, but do define it.  */
9227               dwarf2_macro_malformed_definition_complaint (body);
9228               macro_define_function (file, line, name,
9229                                      argc, (const char **) argv, 
9230                                      p);
9231             }
9232           else
9233             /* Just complain.  */
9234             dwarf2_macro_malformed_definition_complaint (body);
9235         }
9236       else
9237         /* Just complain.  */
9238         dwarf2_macro_malformed_definition_complaint (body);
9239
9240       xfree (name);
9241       {
9242         int i;
9243
9244         for (i = 0; i < argc; i++)
9245           xfree (argv[i]);
9246       }
9247       xfree (argv);
9248     }
9249   else
9250     dwarf2_macro_malformed_definition_complaint (body);
9251 }
9252
9253
9254 static void
9255 dwarf_decode_macros (struct line_header *lh, unsigned int offset,
9256                      char *comp_dir, bfd *abfd,
9257                      struct dwarf2_cu *cu)
9258 {
9259   gdb_byte *mac_ptr, *mac_end;
9260   struct macro_source_file *current_file = 0;
9261
9262   if (dwarf2_per_objfile->macinfo_buffer == NULL)
9263     {
9264       complaint (&symfile_complaints, _("missing .debug_macinfo section"));
9265       return;
9266     }
9267
9268   mac_ptr = dwarf2_per_objfile->macinfo_buffer + offset;
9269   mac_end = dwarf2_per_objfile->macinfo_buffer
9270     + dwarf2_per_objfile->macinfo_size;
9271
9272   for (;;)
9273     {
9274       enum dwarf_macinfo_record_type macinfo_type;
9275
9276       /* Do we at least have room for a macinfo type byte?  */
9277       if (mac_ptr >= mac_end)
9278         {
9279           dwarf2_macros_too_long_complaint ();
9280           return;
9281         }
9282
9283       macinfo_type = read_1_byte (abfd, mac_ptr);
9284       mac_ptr++;
9285
9286       switch (macinfo_type)
9287         {
9288           /* A zero macinfo type indicates the end of the macro
9289              information.  */
9290         case 0:
9291           return;
9292
9293         case DW_MACINFO_define:
9294         case DW_MACINFO_undef:
9295           {
9296             unsigned int bytes_read;
9297             int line;
9298             char *body;
9299
9300             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
9301             mac_ptr += bytes_read;
9302             body = read_string (abfd, mac_ptr, &bytes_read);
9303             mac_ptr += bytes_read;
9304
9305             if (! current_file)
9306               complaint (&symfile_complaints,
9307                          _("debug info gives macro %s outside of any file: %s"),
9308                          macinfo_type ==
9309                          DW_MACINFO_define ? "definition" : macinfo_type ==
9310                          DW_MACINFO_undef ? "undefinition" :
9311                          "something-or-other", body);
9312             else
9313               {
9314                 if (macinfo_type == DW_MACINFO_define)
9315                   parse_macro_definition (current_file, line, body);
9316                 else if (macinfo_type == DW_MACINFO_undef)
9317                   macro_undef (current_file, line, body);
9318               }
9319           }
9320           break;
9321
9322         case DW_MACINFO_start_file:
9323           {
9324             unsigned int bytes_read;
9325             int line, file;
9326
9327             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
9328             mac_ptr += bytes_read;
9329             file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
9330             mac_ptr += bytes_read;
9331
9332             current_file = macro_start_file (file, line,
9333                                              current_file, comp_dir,
9334                                              lh, cu->objfile);
9335           }
9336           break;
9337
9338         case DW_MACINFO_end_file:
9339           if (! current_file)
9340             complaint (&symfile_complaints,
9341                        _("macro debug info has an unmatched `close_file' directive"));
9342           else
9343             {
9344               current_file = current_file->included_by;
9345               if (! current_file)
9346                 {
9347                   enum dwarf_macinfo_record_type next_type;
9348
9349                   /* GCC circa March 2002 doesn't produce the zero
9350                      type byte marking the end of the compilation
9351                      unit.  Complain if it's not there, but exit no
9352                      matter what.  */
9353
9354                   /* Do we at least have room for a macinfo type byte?  */
9355                   if (mac_ptr >= mac_end)
9356                     {
9357                       dwarf2_macros_too_long_complaint ();
9358                       return;
9359                     }
9360
9361                   /* We don't increment mac_ptr here, so this is just
9362                      a look-ahead.  */
9363                   next_type = read_1_byte (abfd, mac_ptr);
9364                   if (next_type != 0)
9365                     complaint (&symfile_complaints,
9366                                _("no terminating 0-type entry for macros in `.debug_macinfo' section"));
9367
9368                   return;
9369                 }
9370             }
9371           break;
9372
9373         case DW_MACINFO_vendor_ext:
9374           {
9375             unsigned int bytes_read;
9376             int constant;
9377             char *string;
9378
9379             constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
9380             mac_ptr += bytes_read;
9381             string = read_string (abfd, mac_ptr, &bytes_read);
9382             mac_ptr += bytes_read;
9383
9384             /* We don't recognize any vendor extensions.  */
9385           }
9386           break;
9387         }
9388     }
9389 }
9390
9391 /* Check if the attribute's form is a DW_FORM_block*
9392    if so return true else false. */
9393 static int
9394 attr_form_is_block (struct attribute *attr)
9395 {
9396   return (attr == NULL ? 0 :
9397       attr->form == DW_FORM_block1
9398       || attr->form == DW_FORM_block2
9399       || attr->form == DW_FORM_block4
9400       || attr->form == DW_FORM_block);
9401 }
9402
9403 static void
9404 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
9405                              struct dwarf2_cu *cu)
9406 {
9407   if ((attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
9408       /* ".debug_loc" may not exist at all, or the offset may be outside
9409          the section.  If so, fall through to the complaint in the
9410          other branch.  */
9411       && DW_UNSND (attr) < dwarf2_per_objfile->loc_size)
9412     {
9413       struct dwarf2_loclist_baton *baton;
9414
9415       baton = obstack_alloc (&cu->objfile->objfile_obstack,
9416                              sizeof (struct dwarf2_loclist_baton));
9417       baton->objfile = cu->objfile;
9418
9419       /* We don't know how long the location list is, but make sure we
9420          don't run off the edge of the section.  */
9421       baton->size = dwarf2_per_objfile->loc_size - DW_UNSND (attr);
9422       baton->data = dwarf2_per_objfile->loc_buffer + DW_UNSND (attr);
9423       baton->base_address = cu->header.base_address;
9424       if (cu->header.base_known == 0)
9425         complaint (&symfile_complaints,
9426                    _("Location list used without specifying the CU base address."));
9427
9428       SYMBOL_OPS (sym) = &dwarf2_loclist_funcs;
9429       SYMBOL_LOCATION_BATON (sym) = baton;
9430     }
9431   else
9432     {
9433       struct dwarf2_locexpr_baton *baton;
9434
9435       baton = obstack_alloc (&cu->objfile->objfile_obstack,
9436                              sizeof (struct dwarf2_locexpr_baton));
9437       baton->objfile = cu->objfile;
9438
9439       if (attr_form_is_block (attr))
9440         {
9441           /* Note that we're just copying the block's data pointer
9442              here, not the actual data.  We're still pointing into the
9443              info_buffer for SYM's objfile; right now we never release
9444              that buffer, but when we do clean up properly this may
9445              need to change.  */
9446           baton->size = DW_BLOCK (attr)->size;
9447           baton->data = DW_BLOCK (attr)->data;
9448         }
9449       else
9450         {
9451           dwarf2_invalid_attrib_class_complaint ("location description",
9452                                                  SYMBOL_NATURAL_NAME (sym));
9453           baton->size = 0;
9454           baton->data = NULL;
9455         }
9456       
9457       SYMBOL_OPS (sym) = &dwarf2_locexpr_funcs;
9458       SYMBOL_LOCATION_BATON (sym) = baton;
9459     }
9460 }
9461
9462 /* Locate the compilation unit from CU's objfile which contains the
9463    DIE at OFFSET.  Raises an error on failure.  */
9464
9465 static struct dwarf2_per_cu_data *
9466 dwarf2_find_containing_comp_unit (unsigned long offset,
9467                                   struct objfile *objfile)
9468 {
9469   struct dwarf2_per_cu_data *this_cu;
9470   int low, high;
9471
9472   low = 0;
9473   high = dwarf2_per_objfile->n_comp_units - 1;
9474   while (high > low)
9475     {
9476       int mid = low + (high - low) / 2;
9477       if (dwarf2_per_objfile->all_comp_units[mid]->offset >= offset)
9478         high = mid;
9479       else
9480         low = mid + 1;
9481     }
9482   gdb_assert (low == high);
9483   if (dwarf2_per_objfile->all_comp_units[low]->offset > offset)
9484     {
9485       if (low == 0)
9486         error (_("Dwarf Error: could not find partial DIE containing "
9487                "offset 0x%lx [in module %s]"),
9488                (long) offset, bfd_get_filename (objfile->obfd));
9489
9490       gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset <= offset);
9491       return dwarf2_per_objfile->all_comp_units[low-1];
9492     }
9493   else
9494     {
9495       this_cu = dwarf2_per_objfile->all_comp_units[low];
9496       if (low == dwarf2_per_objfile->n_comp_units - 1
9497           && offset >= this_cu->offset + this_cu->length)
9498         error (_("invalid dwarf2 offset %ld"), offset);
9499       gdb_assert (offset < this_cu->offset + this_cu->length);
9500       return this_cu;
9501     }
9502 }
9503
9504 /* Locate the compilation unit from OBJFILE which is located at exactly
9505    OFFSET.  Raises an error on failure.  */
9506
9507 static struct dwarf2_per_cu_data *
9508 dwarf2_find_comp_unit (unsigned long offset, struct objfile *objfile)
9509 {
9510   struct dwarf2_per_cu_data *this_cu;
9511   this_cu = dwarf2_find_containing_comp_unit (offset, objfile);
9512   if (this_cu->offset != offset)
9513     error (_("no compilation unit with offset %ld."), offset);
9514   return this_cu;
9515 }
9516
9517 /* Release one cached compilation unit, CU.  We unlink it from the tree
9518    of compilation units, but we don't remove it from the read_in_chain;
9519    the caller is responsible for that.  */
9520
9521 static void
9522 free_one_comp_unit (void *data)
9523 {
9524   struct dwarf2_cu *cu = data;
9525
9526   if (cu->per_cu != NULL)
9527     cu->per_cu->cu = NULL;
9528   cu->per_cu = NULL;
9529
9530   obstack_free (&cu->comp_unit_obstack, NULL);
9531   if (cu->dies)
9532     free_die_list (cu->dies);
9533
9534   xfree (cu);
9535 }
9536
9537 /* This cleanup function is passed the address of a dwarf2_cu on the stack
9538    when we're finished with it.  We can't free the pointer itself, but be
9539    sure to unlink it from the cache.  Also release any associated storage
9540    and perform cache maintenance.
9541
9542    Only used during partial symbol parsing.  */
9543
9544 static void
9545 free_stack_comp_unit (void *data)
9546 {
9547   struct dwarf2_cu *cu = data;
9548
9549   obstack_free (&cu->comp_unit_obstack, NULL);
9550   cu->partial_dies = NULL;
9551
9552   if (cu->per_cu != NULL)
9553     {
9554       /* This compilation unit is on the stack in our caller, so we
9555          should not xfree it.  Just unlink it.  */
9556       cu->per_cu->cu = NULL;
9557       cu->per_cu = NULL;
9558
9559       /* If we had a per-cu pointer, then we may have other compilation
9560          units loaded, so age them now.  */
9561       age_cached_comp_units ();
9562     }
9563 }
9564
9565 /* Free all cached compilation units.  */
9566
9567 static void
9568 free_cached_comp_units (void *data)
9569 {
9570   struct dwarf2_per_cu_data *per_cu, **last_chain;
9571
9572   per_cu = dwarf2_per_objfile->read_in_chain;
9573   last_chain = &dwarf2_per_objfile->read_in_chain;
9574   while (per_cu != NULL)
9575     {
9576       struct dwarf2_per_cu_data *next_cu;
9577
9578       next_cu = per_cu->cu->read_in_chain;
9579
9580       free_one_comp_unit (per_cu->cu);
9581       *last_chain = next_cu;
9582
9583       per_cu = next_cu;
9584     }
9585 }
9586
9587 /* Increase the age counter on each cached compilation unit, and free
9588    any that are too old.  */
9589
9590 static void
9591 age_cached_comp_units (void)
9592 {
9593   struct dwarf2_per_cu_data *per_cu, **last_chain;
9594
9595   dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
9596   per_cu = dwarf2_per_objfile->read_in_chain;
9597   while (per_cu != NULL)
9598     {
9599       per_cu->cu->last_used ++;
9600       if (per_cu->cu->last_used <= dwarf2_max_cache_age)
9601         dwarf2_mark (per_cu->cu);
9602       per_cu = per_cu->cu->read_in_chain;
9603     }
9604
9605   per_cu = dwarf2_per_objfile->read_in_chain;
9606   last_chain = &dwarf2_per_objfile->read_in_chain;
9607   while (per_cu != NULL)
9608     {
9609       struct dwarf2_per_cu_data *next_cu;
9610
9611       next_cu = per_cu->cu->read_in_chain;
9612
9613       if (!per_cu->cu->mark)
9614         {
9615           free_one_comp_unit (per_cu->cu);
9616           *last_chain = next_cu;
9617         }
9618       else
9619         last_chain = &per_cu->cu->read_in_chain;
9620
9621       per_cu = next_cu;
9622     }
9623 }
9624
9625 /* Remove a single compilation unit from the cache.  */
9626
9627 static void
9628 free_one_cached_comp_unit (void *target_cu)
9629 {
9630   struct dwarf2_per_cu_data *per_cu, **last_chain;
9631
9632   per_cu = dwarf2_per_objfile->read_in_chain;
9633   last_chain = &dwarf2_per_objfile->read_in_chain;
9634   while (per_cu != NULL)
9635     {
9636       struct dwarf2_per_cu_data *next_cu;
9637
9638       next_cu = per_cu->cu->read_in_chain;
9639
9640       if (per_cu->cu == target_cu)
9641         {
9642           free_one_comp_unit (per_cu->cu);
9643           *last_chain = next_cu;
9644           break;
9645         }
9646       else
9647         last_chain = &per_cu->cu->read_in_chain;
9648
9649       per_cu = next_cu;
9650     }
9651 }
9652
9653 /* A pair of DIE offset and GDB type pointer.  We store these
9654    in a hash table separate from the DIEs, and preserve them
9655    when the DIEs are flushed out of cache.  */
9656
9657 struct dwarf2_offset_and_type
9658 {
9659   unsigned int offset;
9660   struct type *type;
9661 };
9662
9663 /* Hash function for a dwarf2_offset_and_type.  */
9664
9665 static hashval_t
9666 offset_and_type_hash (const void *item)
9667 {
9668   const struct dwarf2_offset_and_type *ofs = item;
9669   return ofs->offset;
9670 }
9671
9672 /* Equality function for a dwarf2_offset_and_type.  */
9673
9674 static int
9675 offset_and_type_eq (const void *item_lhs, const void *item_rhs)
9676 {
9677   const struct dwarf2_offset_and_type *ofs_lhs = item_lhs;
9678   const struct dwarf2_offset_and_type *ofs_rhs = item_rhs;
9679   return ofs_lhs->offset == ofs_rhs->offset;
9680 }
9681
9682 /* Set the type associated with DIE to TYPE.  Save it in CU's hash
9683    table if necessary.  */
9684
9685 static void
9686 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
9687 {
9688   struct dwarf2_offset_and_type **slot, ofs;
9689
9690   die->type = type;
9691
9692   if (cu->per_cu == NULL)
9693     return;
9694
9695   if (cu->per_cu->type_hash == NULL)
9696     cu->per_cu->type_hash
9697       = htab_create_alloc_ex (cu->header.length / 24,
9698                               offset_and_type_hash,
9699                               offset_and_type_eq,
9700                               NULL,
9701                               &cu->objfile->objfile_obstack,
9702                               hashtab_obstack_allocate,
9703                               dummy_obstack_deallocate);
9704
9705   ofs.offset = die->offset;
9706   ofs.type = type;
9707   slot = (struct dwarf2_offset_and_type **)
9708     htab_find_slot_with_hash (cu->per_cu->type_hash, &ofs, ofs.offset, INSERT);
9709   *slot = obstack_alloc (&cu->objfile->objfile_obstack, sizeof (**slot));
9710   **slot = ofs;
9711 }
9712
9713 /* Find the type for DIE in TYPE_HASH, or return NULL if DIE does not
9714    have a saved type.  */
9715
9716 static struct type *
9717 get_die_type (struct die_info *die, htab_t type_hash)
9718 {
9719   struct dwarf2_offset_and_type *slot, ofs;
9720
9721   ofs.offset = die->offset;
9722   slot = htab_find_with_hash (type_hash, &ofs, ofs.offset);
9723   if (slot)
9724     return slot->type;
9725   else
9726     return NULL;
9727 }
9728
9729 /* Restore the types of the DIE tree starting at START_DIE from the hash
9730    table saved in CU.  */
9731
9732 static void
9733 reset_die_and_siblings_types (struct die_info *start_die, struct dwarf2_cu *cu)
9734 {
9735   struct die_info *die;
9736
9737   if (cu->per_cu->type_hash == NULL)
9738     return;
9739
9740   for (die = start_die; die != NULL; die = die->sibling)
9741     {
9742       die->type = get_die_type (die, cu->per_cu->type_hash);
9743       if (die->child != NULL)
9744         reset_die_and_siblings_types (die->child, cu);
9745     }
9746 }
9747
9748 /* Set the mark field in CU and in every other compilation unit in the
9749    cache that we must keep because we are keeping CU.  */
9750
9751 /* Add a dependence relationship from CU to REF_PER_CU.  */
9752
9753 static void
9754 dwarf2_add_dependence (struct dwarf2_cu *cu,
9755                        struct dwarf2_per_cu_data *ref_per_cu)
9756 {
9757   void **slot;
9758
9759   if (cu->dependencies == NULL)
9760     cu->dependencies
9761       = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
9762                               NULL, &cu->comp_unit_obstack,
9763                               hashtab_obstack_allocate,
9764                               dummy_obstack_deallocate);
9765
9766   slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
9767   if (*slot == NULL)
9768     *slot = ref_per_cu;
9769 }
9770
9771 /* Set the mark field in CU and in every other compilation unit in the
9772    cache that we must keep because we are keeping CU.  */
9773
9774 static int
9775 dwarf2_mark_helper (void **slot, void *data)
9776 {
9777   struct dwarf2_per_cu_data *per_cu;
9778
9779   per_cu = (struct dwarf2_per_cu_data *) *slot;
9780   if (per_cu->cu->mark)
9781     return 1;
9782   per_cu->cu->mark = 1;
9783
9784   if (per_cu->cu->dependencies != NULL)
9785     htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
9786
9787   return 1;
9788 }
9789
9790 static void
9791 dwarf2_mark (struct dwarf2_cu *cu)
9792 {
9793   if (cu->mark)
9794     return;
9795   cu->mark = 1;
9796   if (cu->dependencies != NULL)
9797     htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
9798 }
9799
9800 static void
9801 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
9802 {
9803   while (per_cu)
9804     {
9805       per_cu->cu->mark = 0;
9806       per_cu = per_cu->cu->read_in_chain;
9807     }
9808 }
9809
9810 /* Trivial hash function for partial_die_info: the hash value of a DIE
9811    is its offset in .debug_info for this objfile.  */
9812
9813 static hashval_t
9814 partial_die_hash (const void *item)
9815 {
9816   const struct partial_die_info *part_die = item;
9817   return part_die->offset;
9818 }
9819
9820 /* Trivial comparison function for partial_die_info structures: two DIEs
9821    are equal if they have the same offset.  */
9822
9823 static int
9824 partial_die_eq (const void *item_lhs, const void *item_rhs)
9825 {
9826   const struct partial_die_info *part_die_lhs = item_lhs;
9827   const struct partial_die_info *part_die_rhs = item_rhs;
9828   return part_die_lhs->offset == part_die_rhs->offset;
9829 }
9830
9831 static struct cmd_list_element *set_dwarf2_cmdlist;
9832 static struct cmd_list_element *show_dwarf2_cmdlist;
9833
9834 static void
9835 set_dwarf2_cmd (char *args, int from_tty)
9836 {
9837   help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout);
9838 }
9839
9840 static void
9841 show_dwarf2_cmd (char *args, int from_tty)
9842
9843   cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
9844 }
9845
9846 void _initialize_dwarf2_read (void);
9847
9848 void
9849 _initialize_dwarf2_read (void)
9850 {
9851   dwarf2_objfile_data_key = register_objfile_data ();
9852
9853   add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
9854 Set DWARF 2 specific variables.\n\
9855 Configure DWARF 2 variables such as the cache size"),
9856                   &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
9857                   0/*allow-unknown*/, &maintenance_set_cmdlist);
9858
9859   add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
9860 Show DWARF 2 specific variables\n\
9861 Show DWARF 2 variables such as the cache size"),
9862                   &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
9863                   0/*allow-unknown*/, &maintenance_show_cmdlist);
9864
9865   add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
9866                             &dwarf2_max_cache_age, _("\
9867 Set the upper bound on the age of cached dwarf2 compilation units."), _("\
9868 Show the upper bound on the age of cached dwarf2 compilation units."), _("\
9869 A higher limit means that cached compilation units will be stored\n\
9870 in memory longer, and more total memory will be used.  Zero disables\n\
9871 caching, which can slow down startup."),
9872                             NULL,
9873                             show_dwarf2_max_cache_age,
9874                             &set_dwarf2_cmdlist,
9875                             &show_dwarf2_cmdlist);
9876 }