OSDN Git Service

2011-02-28 Michael Snyder <msnyder@vmware.com>
[pf3gnuchains/sourceware.git] / gdb / dwarf2read.c
1 /* DWARF 2 debugging format support for GDB.
2
3    Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4                  2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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.
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 3 of the License, or
19    (at your option) any later version.
20
21    This program is distributed in the hope that it will be useful,
22    but WITHOUT ANY WARRANTY; without even the implied warranty of
23    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24    GNU General Public License for more details.
25
26    You should have received a copy of the GNU General Public License
27    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
28
29 #include "defs.h"
30 #include "bfd.h"
31 #include "symtab.h"
32 #include "gdbtypes.h"
33 #include "objfiles.h"
34 #include "dwarf2.h"
35 #include "buildsym.h"
36 #include "demangle.h"
37 #include "expression.h"
38 #include "filenames.h"  /* for DOSish file names */
39 #include "macrotab.h"
40 #include "language.h"
41 #include "complaints.h"
42 #include "bcache.h"
43 #include "dwarf2expr.h"
44 #include "dwarf2loc.h"
45 #include "cp-support.h"
46 #include "hashtab.h"
47 #include "command.h"
48 #include "gdbcmd.h"
49 #include "block.h"
50 #include "addrmap.h"
51 #include "typeprint.h"
52 #include "jv-lang.h"
53 #include "psympriv.h"
54 #include "exceptions.h"
55 #include "gdb_stat.h"
56 #include "completer.h"
57 #include "vec.h"
58 #include "c-lang.h"
59 #include "valprint.h"
60
61 #include <fcntl.h>
62 #include "gdb_string.h"
63 #include "gdb_assert.h"
64 #include <sys/types.h>
65 #ifdef HAVE_ZLIB_H
66 #include <zlib.h>
67 #endif
68 #ifdef HAVE_MMAP
69 #include <sys/mman.h>
70 #ifndef MAP_FAILED
71 #define MAP_FAILED ((void *) -1)
72 #endif
73 #endif
74
75 typedef struct symbol *symbolp;
76 DEF_VEC_P (symbolp);
77
78 #if 0
79 /* .debug_info header for a compilation unit
80    Because of alignment constraints, this structure has padding and cannot
81    be mapped directly onto the beginning of the .debug_info section.  */
82 typedef struct comp_unit_header
83   {
84     unsigned int length;        /* length of the .debug_info
85                                    contribution */
86     unsigned short version;     /* version number -- 2 for DWARF
87                                    version 2 */
88     unsigned int abbrev_offset; /* offset into .debug_abbrev section */
89     unsigned char addr_size;    /* byte size of an address -- 4 */
90   }
91 _COMP_UNIT_HEADER;
92 #define _ACTUAL_COMP_UNIT_HEADER_SIZE 11
93 #endif
94
95 /* .debug_line statement program prologue
96    Because of alignment constraints, this structure has padding and cannot
97    be mapped directly onto the beginning of the .debug_info section.  */
98 typedef struct statement_prologue
99   {
100     unsigned int total_length;  /* byte length of the statement
101                                    information */
102     unsigned short version;     /* version number -- 2 for DWARF
103                                    version 2 */
104     unsigned int prologue_length;       /* # bytes between prologue &
105                                            stmt program */
106     unsigned char minimum_instruction_length;   /* byte size of
107                                                    smallest instr */
108     unsigned char default_is_stmt;      /* initial value of is_stmt
109                                            register */
110     char line_base;
111     unsigned char line_range;
112     unsigned char opcode_base;  /* number assigned to first special
113                                    opcode */
114     unsigned char *standard_opcode_lengths;
115   }
116 _STATEMENT_PROLOGUE;
117
118 /* When non-zero, dump DIEs after they are read in.  */
119 static int dwarf2_die_debug = 0;
120
121 static int pagesize;
122
123 /* When set, the file that we're processing is known to have debugging
124    info for C++ namespaces.  GCC 3.3.x did not produce this information,
125    but later versions do.  */
126
127 static int processing_has_namespace_info;
128
129 static const struct objfile_data *dwarf2_objfile_data_key;
130
131 struct dwarf2_section_info
132 {
133   asection *asection;
134   gdb_byte *buffer;
135   bfd_size_type size;
136   int was_mmapped;
137   /* True if we have tried to read this section.  */
138   int readin;
139 };
140
141 /* All offsets in the index are of this type.  It must be
142    architecture-independent.  */
143 typedef uint32_t offset_type;
144
145 DEF_VEC_I (offset_type);
146
147 /* A description of the mapped index.  The file format is described in
148    a comment by the code that writes the index.  */
149 struct mapped_index
150 {
151   /* The total length of the buffer.  */
152   off_t total_size;
153   /* A pointer to the address table data.  */
154   const gdb_byte *address_table;
155   /* Size of the address table data in bytes.  */
156   offset_type address_table_size;
157   /* The symbol table, implemented as a hash table.  */
158   const offset_type *symbol_table;
159   /* Size in slots, each slot is 2 offset_types.  */
160   offset_type symbol_table_slots;
161   /* A pointer to the constant pool.  */
162   const char *constant_pool;
163 };
164
165 struct dwarf2_per_objfile
166 {
167   struct dwarf2_section_info info;
168   struct dwarf2_section_info abbrev;
169   struct dwarf2_section_info line;
170   struct dwarf2_section_info loc;
171   struct dwarf2_section_info macinfo;
172   struct dwarf2_section_info str;
173   struct dwarf2_section_info ranges;
174   struct dwarf2_section_info types;
175   struct dwarf2_section_info frame;
176   struct dwarf2_section_info eh_frame;
177   struct dwarf2_section_info gdb_index;
178
179   /* Back link.  */
180   struct objfile *objfile;
181
182   /* A list of all the compilation units.  This is used to locate
183      the target compilation unit of a particular reference.  */
184   struct dwarf2_per_cu_data **all_comp_units;
185
186   /* The number of compilation units in ALL_COMP_UNITS.  */
187   int n_comp_units;
188
189   /* The number of .debug_types-related CUs.  */
190   int n_type_comp_units;
191
192   /* The .debug_types-related CUs.  */
193   struct dwarf2_per_cu_data **type_comp_units;
194
195   /* A chain of compilation units that are currently read in, so that
196      they can be freed later.  */
197   struct dwarf2_per_cu_data *read_in_chain;
198
199   /* A table mapping .debug_types signatures to its signatured_type entry.
200      This is NULL if the .debug_types section hasn't been read in yet.  */
201   htab_t signatured_types;
202
203   /* A flag indicating wether this objfile has a section loaded at a
204      VMA of 0.  */
205   int has_section_at_zero;
206
207   /* True if we are using the mapped index,
208      or we are faking it for OBJF_READNOW's sake.  */
209   unsigned char using_index;
210
211   /* The mapped index, or NULL if .gdb_index is missing or not being used.  */
212   struct mapped_index *index_table;
213
214   /* When using index_table, this keeps track of all quick_file_names entries.
215      TUs can share line table entries with CUs or other TUs, and there can be
216      a lot more TUs than unique line tables, so we maintain a separate table
217      of all line table entries to support the sharing.  */
218   htab_t quick_file_names_table;
219
220   /* Set during partial symbol reading, to prevent queueing of full
221      symbols.  */
222   int reading_partial_symbols;
223
224   /* Table mapping type .debug_info DIE offsets to types.
225      This is NULL if not allocated yet.
226      It (currently) makes sense to allocate debug_types_type_hash lazily.
227      To keep things simple we allocate both lazily.  */
228   htab_t debug_info_type_hash;
229
230   /* Table mapping type .debug_types DIE offsets to types.
231      This is NULL if not allocated yet.  */
232   htab_t debug_types_type_hash;
233 };
234
235 static struct dwarf2_per_objfile *dwarf2_per_objfile;
236
237 /* names of the debugging sections */
238
239 /* Note that if the debugging section has been compressed, it might
240    have a name like .zdebug_info.  */
241
242 #define INFO_SECTION     "debug_info"
243 #define ABBREV_SECTION   "debug_abbrev"
244 #define LINE_SECTION     "debug_line"
245 #define LOC_SECTION      "debug_loc"
246 #define MACINFO_SECTION  "debug_macinfo"
247 #define STR_SECTION      "debug_str"
248 #define RANGES_SECTION   "debug_ranges"
249 #define TYPES_SECTION    "debug_types"
250 #define FRAME_SECTION    "debug_frame"
251 #define EH_FRAME_SECTION "eh_frame"
252 #define GDB_INDEX_SECTION "gdb_index"
253
254 /* local data types */
255
256 /* We hold several abbreviation tables in memory at the same time.  */
257 #ifndef ABBREV_HASH_SIZE
258 #define ABBREV_HASH_SIZE 121
259 #endif
260
261 /* The data in a compilation unit header, after target2host
262    translation, looks like this.  */
263 struct comp_unit_head
264 {
265   unsigned int length;
266   short version;
267   unsigned char addr_size;
268   unsigned char signed_addr_p;
269   unsigned int abbrev_offset;
270
271   /* Size of file offsets; either 4 or 8.  */
272   unsigned int offset_size;
273
274   /* Size of the length field; either 4 or 12.  */
275   unsigned int initial_length_size;
276
277   /* Offset to the first byte of this compilation unit header in the
278      .debug_info section, for resolving relative reference dies.  */
279   unsigned int offset;
280
281   /* Offset to first die in this cu from the start of the cu.
282      This will be the first byte following the compilation unit header.  */
283   unsigned int first_die_offset;
284 };
285
286 /* Type used for delaying computation of method physnames.
287    See comments for compute_delayed_physnames.  */
288 struct delayed_method_info
289 {
290   /* The type to which the method is attached, i.e., its parent class.  */
291   struct type *type;
292
293   /* The index of the method in the type's function fieldlists.  */
294   int fnfield_index;
295
296   /* The index of the method in the fieldlist.  */
297   int index;
298
299   /* The name of the DIE.  */
300   const char *name;
301
302   /*  The DIE associated with this method.  */
303   struct die_info *die;
304 };
305
306 typedef struct delayed_method_info delayed_method_info;
307 DEF_VEC_O (delayed_method_info);
308
309 /* Internal state when decoding a particular compilation unit.  */
310 struct dwarf2_cu
311 {
312   /* The objfile containing this compilation unit.  */
313   struct objfile *objfile;
314
315   /* The header of the compilation unit.  */
316   struct comp_unit_head header;
317
318   /* Base address of this compilation unit.  */
319   CORE_ADDR base_address;
320
321   /* Non-zero if base_address has been set.  */
322   int base_known;
323
324   struct function_range *first_fn, *last_fn, *cached_fn;
325
326   /* The language we are debugging.  */
327   enum language language;
328   const struct language_defn *language_defn;
329
330   const char *producer;
331
332   /* The generic symbol table building routines have separate lists for
333      file scope symbols and all all other scopes (local scopes).  So
334      we need to select the right one to pass to add_symbol_to_list().
335      We do it by keeping a pointer to the correct list in list_in_scope.
336
337      FIXME: The original dwarf code just treated the file scope as the
338      first local scope, and all other local scopes as nested local
339      scopes, and worked fine.  Check to see if we really need to
340      distinguish these in buildsym.c.  */
341   struct pending **list_in_scope;
342
343   /* DWARF abbreviation table associated with this compilation unit.  */
344   struct abbrev_info **dwarf2_abbrevs;
345
346   /* Storage for the abbrev table.  */
347   struct obstack abbrev_obstack;
348
349   /* Hash table holding all the loaded partial DIEs.  */
350   htab_t partial_dies;
351
352   /* Storage for things with the same lifetime as this read-in compilation
353      unit, including partial DIEs.  */
354   struct obstack comp_unit_obstack;
355
356   /* When multiple dwarf2_cu structures are living in memory, this field
357      chains them all together, so that they can be released efficiently.
358      We will probably also want a generation counter so that most-recently-used
359      compilation units are cached...  */
360   struct dwarf2_per_cu_data *read_in_chain;
361
362   /* Backchain to our per_cu entry if the tree has been built.  */
363   struct dwarf2_per_cu_data *per_cu;
364
365   /* How many compilation units ago was this CU last referenced?  */
366   int last_used;
367
368   /* A hash table of die offsets for following references.  */
369   htab_t die_hash;
370
371   /* Full DIEs if read in.  */
372   struct die_info *dies;
373
374   /* A set of pointers to dwarf2_per_cu_data objects for compilation
375      units referenced by this one.  Only set during full symbol processing;
376      partial symbol tables do not have dependencies.  */
377   htab_t dependencies;
378
379   /* Header data from the line table, during full symbol processing.  */
380   struct line_header *line_header;
381
382   /* A list of methods which need to have physnames computed
383      after all type information has been read.  */
384   VEC (delayed_method_info) *method_list;
385
386   /* Mark used when releasing cached dies.  */
387   unsigned int mark : 1;
388
389   /* This flag will be set if this compilation unit might include
390      inter-compilation-unit references.  */
391   unsigned int has_form_ref_addr : 1;
392
393   /* This flag will be set if this compilation unit includes any
394      DW_TAG_namespace DIEs.  If we know that there are explicit
395      DIEs for namespaces, we don't need to try to infer them
396      from mangled names.  */
397   unsigned int has_namespace_info : 1;
398 };
399
400 /* Persistent data held for a compilation unit, even when not
401    processing it.  We put a pointer to this structure in the
402    read_symtab_private field of the psymtab.  If we encounter
403    inter-compilation-unit references, we also maintain a sorted
404    list of all compilation units.  */
405
406 struct dwarf2_per_cu_data
407 {
408   /* The start offset and length of this compilation unit.  2**29-1
409      bytes should suffice to store the length of any compilation unit
410      - if it doesn't, GDB will fall over anyway.
411      NOTE: Unlike comp_unit_head.length, this length includes
412      initial_length_size.  */
413   unsigned int offset;
414   unsigned int length : 29;
415
416   /* Flag indicating this compilation unit will be read in before
417      any of the current compilation units are processed.  */
418   unsigned int queued : 1;
419
420   /* This flag will be set if we need to load absolutely all DIEs
421      for this compilation unit, instead of just the ones we think
422      are interesting.  It gets set if we look for a DIE in the
423      hash table and don't find it.  */
424   unsigned int load_all_dies : 1;
425
426   /* Non-zero if this CU is from .debug_types.
427      Otherwise it's from .debug_info.  */
428   unsigned int from_debug_types : 1;
429
430   /* Set to non-NULL iff this CU is currently loaded.  When it gets freed out
431      of the CU cache it gets reset to NULL again.  */
432   struct dwarf2_cu *cu;
433
434   /* The corresponding objfile.  */
435   struct objfile *objfile;
436
437   /* When using partial symbol tables, the 'psymtab' field is active.
438      Otherwise the 'quick' field is active.  */
439   union
440   {
441     /* The partial symbol table associated with this compilation unit,
442        or NULL for partial units (which do not have an associated
443        symtab).  */
444     struct partial_symtab *psymtab;
445
446     /* Data needed by the "quick" functions.  */
447     struct dwarf2_per_cu_quick_data *quick;
448   } v;
449 };
450
451 /* Entry in the signatured_types hash table.  */
452
453 struct signatured_type
454 {
455   ULONGEST signature;
456
457   /* Offset in .debug_types of the TU (type_unit) for this type.  */
458   unsigned int offset;
459
460   /* Offset in .debug_types of the type defined by this TU.  */
461   unsigned int type_offset;
462
463   /* The CU(/TU) of this type.  */
464   struct dwarf2_per_cu_data per_cu;
465 };
466
467 /* Struct used to pass misc. parameters to read_die_and_children, et
468    al.  which are used for both .debug_info and .debug_types dies.
469    All parameters here are unchanging for the life of the call.  This
470    struct exists to abstract away the constant parameters of die
471    reading.  */
472
473 struct die_reader_specs
474 {
475   /* The bfd of this objfile.  */
476   bfd* abfd;
477
478   /* The CU of the DIE we are parsing.  */
479   struct dwarf2_cu *cu;
480
481   /* Pointer to start of section buffer.
482      This is either the start of .debug_info or .debug_types.  */
483   const gdb_byte *buffer;
484 };
485
486 /* The line number information for a compilation unit (found in the
487    .debug_line section) begins with a "statement program header",
488    which contains the following information.  */
489 struct line_header
490 {
491   unsigned int total_length;
492   unsigned short version;
493   unsigned int header_length;
494   unsigned char minimum_instruction_length;
495   unsigned char maximum_ops_per_instruction;
496   unsigned char default_is_stmt;
497   int line_base;
498   unsigned char line_range;
499   unsigned char opcode_base;
500
501   /* standard_opcode_lengths[i] is the number of operands for the
502      standard opcode whose value is i.  This means that
503      standard_opcode_lengths[0] is unused, and the last meaningful
504      element is standard_opcode_lengths[opcode_base - 1].  */
505   unsigned char *standard_opcode_lengths;
506
507   /* The include_directories table.  NOTE!  These strings are not
508      allocated with xmalloc; instead, they are pointers into
509      debug_line_buffer.  If you try to free them, `free' will get
510      indigestion.  */
511   unsigned int num_include_dirs, include_dirs_size;
512   char **include_dirs;
513
514   /* The file_names table.  NOTE!  These strings are not allocated
515      with xmalloc; instead, they are pointers into debug_line_buffer.
516      Don't try to free them directly.  */
517   unsigned int num_file_names, file_names_size;
518   struct file_entry
519   {
520     char *name;
521     unsigned int dir_index;
522     unsigned int mod_time;
523     unsigned int length;
524     int included_p; /* Non-zero if referenced by the Line Number Program.  */
525     struct symtab *symtab; /* The associated symbol table, if any.  */
526   } *file_names;
527
528   /* The start and end of the statement program following this
529      header.  These point into dwarf2_per_objfile->line_buffer.  */
530   gdb_byte *statement_program_start, *statement_program_end;
531 };
532
533 /* When we construct a partial symbol table entry we only
534    need this much information.  */
535 struct partial_die_info
536   {
537     /* Offset of this DIE.  */
538     unsigned int offset;
539
540     /* DWARF-2 tag for this DIE.  */
541     ENUM_BITFIELD(dwarf_tag) tag : 16;
542
543     /* Assorted flags describing the data found in this DIE.  */
544     unsigned int has_children : 1;
545     unsigned int is_external : 1;
546     unsigned int is_declaration : 1;
547     unsigned int has_type : 1;
548     unsigned int has_specification : 1;
549     unsigned int has_pc_info : 1;
550
551     /* Flag set if the SCOPE field of this structure has been
552        computed.  */
553     unsigned int scope_set : 1;
554
555     /* Flag set if the DIE has a byte_size attribute.  */
556     unsigned int has_byte_size : 1;
557
558     /* Flag set if any of the DIE's children are template arguments.  */
559     unsigned int has_template_arguments : 1;
560
561     /* Flag set if fixup_partial_die has been called on this die.  */
562     unsigned int fixup_called : 1;
563
564     /* The name of this DIE.  Normally the value of DW_AT_name, but
565        sometimes a default name for unnamed DIEs.  */
566     char *name;
567
568     /* The linkage name, if present.  */
569     const char *linkage_name;
570
571     /* The scope to prepend to our children.  This is generally
572        allocated on the comp_unit_obstack, so will disappear
573        when this compilation unit leaves the cache.  */
574     char *scope;
575
576     /* The location description associated with this DIE, if any.  */
577     struct dwarf_block *locdesc;
578
579     /* If HAS_PC_INFO, the PC range associated with this DIE.  */
580     CORE_ADDR lowpc;
581     CORE_ADDR highpc;
582
583     /* Pointer into the info_buffer (or types_buffer) pointing at the target of
584        DW_AT_sibling, if any.  */
585     /* NOTE: This member isn't strictly necessary, read_partial_die could
586        return DW_AT_sibling values to its caller load_partial_dies.  */
587     gdb_byte *sibling;
588
589     /* If HAS_SPECIFICATION, the offset of the DIE referred to by
590        DW_AT_specification (or DW_AT_abstract_origin or
591        DW_AT_extension).  */
592     unsigned int spec_offset;
593
594     /* Pointers to this DIE's parent, first child, and next sibling,
595        if any.  */
596     struct partial_die_info *die_parent, *die_child, *die_sibling;
597   };
598
599 /* This data structure holds the information of an abbrev.  */
600 struct abbrev_info
601   {
602     unsigned int number;        /* number identifying abbrev */
603     enum dwarf_tag tag;         /* dwarf tag */
604     unsigned short has_children;                /* boolean */
605     unsigned short num_attrs;   /* number of attributes */
606     struct attr_abbrev *attrs;  /* an array of attribute descriptions */
607     struct abbrev_info *next;   /* next in chain */
608   };
609
610 struct attr_abbrev
611   {
612     ENUM_BITFIELD(dwarf_attribute) name : 16;
613     ENUM_BITFIELD(dwarf_form) form : 16;
614   };
615
616 /* Attributes have a name and a value.  */
617 struct attribute
618   {
619     ENUM_BITFIELD(dwarf_attribute) name : 16;
620     ENUM_BITFIELD(dwarf_form) form : 15;
621
622     /* Has DW_STRING already been updated by dwarf2_canonicalize_name?  This
623        field should be in u.str (existing only for DW_STRING) but it is kept
624        here for better struct attribute alignment.  */
625     unsigned int string_is_canonical : 1;
626
627     union
628       {
629         char *str;
630         struct dwarf_block *blk;
631         ULONGEST unsnd;
632         LONGEST snd;
633         CORE_ADDR addr;
634         struct signatured_type *signatured_type;
635       }
636     u;
637   };
638
639 /* This data structure holds a complete die structure.  */
640 struct die_info
641   {
642     /* DWARF-2 tag for this DIE.  */
643     ENUM_BITFIELD(dwarf_tag) tag : 16;
644
645     /* Number of attributes */
646     unsigned char num_attrs;
647
648     /* True if we're presently building the full type name for the
649        type derived from this DIE.  */
650     unsigned char building_fullname : 1;
651
652     /* Abbrev number */
653     unsigned int abbrev;
654
655     /* Offset in .debug_info or .debug_types section.  */
656     unsigned int offset;
657
658     /* The dies in a compilation unit form an n-ary tree.  PARENT
659        points to this die's parent; CHILD points to the first child of
660        this node; and all the children of a given node are chained
661        together via their SIBLING fields.  */
662     struct die_info *child;     /* Its first child, if any.  */
663     struct die_info *sibling;   /* Its next sibling, if any.  */
664     struct die_info *parent;    /* Its parent, if any.  */
665
666     /* An array of attributes, with NUM_ATTRS elements.  There may be
667        zero, but it's not common and zero-sized arrays are not
668        sufficiently portable C.  */
669     struct attribute attrs[1];
670   };
671
672 struct function_range
673 {
674   const char *name;
675   CORE_ADDR lowpc, highpc;
676   int seen_line;
677   struct function_range *next;
678 };
679
680 /* Get at parts of an attribute structure.  */
681
682 #define DW_STRING(attr)    ((attr)->u.str)
683 #define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
684 #define DW_UNSND(attr)     ((attr)->u.unsnd)
685 #define DW_BLOCK(attr)     ((attr)->u.blk)
686 #define DW_SND(attr)       ((attr)->u.snd)
687 #define DW_ADDR(attr)      ((attr)->u.addr)
688 #define DW_SIGNATURED_TYPE(attr) ((attr)->u.signatured_type)
689
690 /* Blocks are a bunch of untyped bytes.  */
691 struct dwarf_block
692   {
693     unsigned int size;
694     gdb_byte *data;
695   };
696
697 #ifndef ATTR_ALLOC_CHUNK
698 #define ATTR_ALLOC_CHUNK 4
699 #endif
700
701 /* Allocate fields for structs, unions and enums in this size.  */
702 #ifndef DW_FIELD_ALLOC_CHUNK
703 #define DW_FIELD_ALLOC_CHUNK 4
704 #endif
705
706 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
707    but this would require a corresponding change in unpack_field_as_long
708    and friends.  */
709 static int bits_per_byte = 8;
710
711 /* The routines that read and process dies for a C struct or C++ class
712    pass lists of data member fields and lists of member function fields
713    in an instance of a field_info structure, as defined below.  */
714 struct field_info
715   {
716     /* List of data member and baseclasses fields.  */
717     struct nextfield
718       {
719         struct nextfield *next;
720         int accessibility;
721         int virtuality;
722         struct field field;
723       }
724      *fields, *baseclasses;
725
726     /* Number of fields (including baseclasses).  */
727     int nfields;
728
729     /* Number of baseclasses.  */
730     int nbaseclasses;
731
732     /* Set if the accesibility of one of the fields is not public.  */
733     int non_public_fields;
734
735     /* Member function fields array, entries are allocated in the order they
736        are encountered in the object file.  */
737     struct nextfnfield
738       {
739         struct nextfnfield *next;
740         struct fn_field fnfield;
741       }
742      *fnfields;
743
744     /* Member function fieldlist array, contains name of possibly overloaded
745        member function, number of overloaded member functions and a pointer
746        to the head of the member function field chain.  */
747     struct fnfieldlist
748       {
749         char *name;
750         int length;
751         struct nextfnfield *head;
752       }
753      *fnfieldlists;
754
755     /* Number of entries in the fnfieldlists array.  */
756     int nfnfields;
757
758     /* typedefs defined inside this class.  TYPEDEF_FIELD_LIST contains head of
759        a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements.  */
760     struct typedef_field_list
761       {
762         struct typedef_field field;
763         struct typedef_field_list *next;
764       }
765     *typedef_field_list;
766     unsigned typedef_field_list_count;
767   };
768
769 /* One item on the queue of compilation units to read in full symbols
770    for.  */
771 struct dwarf2_queue_item
772 {
773   struct dwarf2_per_cu_data *per_cu;
774   struct dwarf2_queue_item *next;
775 };
776
777 /* The current queue.  */
778 static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
779
780 /* Loaded secondary compilation units are kept in memory until they
781    have not been referenced for the processing of this many
782    compilation units.  Set this to zero to disable caching.  Cache
783    sizes of up to at least twenty will improve startup time for
784    typical inter-CU-reference binaries, at an obvious memory cost.  */
785 static int dwarf2_max_cache_age = 5;
786 static void
787 show_dwarf2_max_cache_age (struct ui_file *file, int from_tty,
788                            struct cmd_list_element *c, const char *value)
789 {
790   fprintf_filtered (file, _("The upper bound on the age of cached "
791                             "dwarf2 compilation units is %s.\n"),
792                     value);
793 }
794
795
796 /* Various complaints about symbol reading that don't abort the process.  */
797
798 static void
799 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
800 {
801   complaint (&symfile_complaints,
802              _("statement list doesn't fit in .debug_line section"));
803 }
804
805 static void
806 dwarf2_debug_line_missing_file_complaint (void)
807 {
808   complaint (&symfile_complaints,
809              _(".debug_line section has line data without a file"));
810 }
811
812 static void
813 dwarf2_debug_line_missing_end_sequence_complaint (void)
814 {
815   complaint (&symfile_complaints,
816              _(".debug_line section has line "
817                "program sequence without an end"));
818 }
819
820 static void
821 dwarf2_complex_location_expr_complaint (void)
822 {
823   complaint (&symfile_complaints, _("location expression too complex"));
824 }
825
826 static void
827 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
828                                               int arg3)
829 {
830   complaint (&symfile_complaints,
831              _("const value length mismatch for '%s', got %d, expected %d"),
832              arg1, arg2, arg3);
833 }
834
835 static void
836 dwarf2_macros_too_long_complaint (void)
837 {
838   complaint (&symfile_complaints,
839              _("macro info runs off end of `.debug_macinfo' section"));
840 }
841
842 static void
843 dwarf2_macro_malformed_definition_complaint (const char *arg1)
844 {
845   complaint (&symfile_complaints,
846              _("macro debug info contains a "
847                "malformed macro definition:\n`%s'"),
848              arg1);
849 }
850
851 static void
852 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
853 {
854   complaint (&symfile_complaints,
855              _("invalid attribute class or form for '%s' in '%s'"),
856              arg1, arg2);
857 }
858
859 /* local function prototypes */
860
861 static void dwarf2_locate_sections (bfd *, asection *, void *);
862
863 static void dwarf2_create_include_psymtab (char *, struct partial_symtab *,
864                                            struct objfile *);
865
866 static void dwarf2_build_psymtabs_hard (struct objfile *);
867
868 static void scan_partial_symbols (struct partial_die_info *,
869                                   CORE_ADDR *, CORE_ADDR *,
870                                   int, struct dwarf2_cu *);
871
872 static void add_partial_symbol (struct partial_die_info *,
873                                 struct dwarf2_cu *);
874
875 static void add_partial_namespace (struct partial_die_info *pdi,
876                                    CORE_ADDR *lowpc, CORE_ADDR *highpc,
877                                    int need_pc, struct dwarf2_cu *cu);
878
879 static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
880                                 CORE_ADDR *highpc, int need_pc,
881                                 struct dwarf2_cu *cu);
882
883 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
884                                      struct dwarf2_cu *cu);
885
886 static void add_partial_subprogram (struct partial_die_info *pdi,
887                                     CORE_ADDR *lowpc, CORE_ADDR *highpc,
888                                     int need_pc, struct dwarf2_cu *cu);
889
890 static gdb_byte *locate_pdi_sibling (struct partial_die_info *orig_pdi,
891                                      gdb_byte *buffer, gdb_byte *info_ptr,
892                                      bfd *abfd, struct dwarf2_cu *cu);
893
894 static void dwarf2_psymtab_to_symtab (struct partial_symtab *);
895
896 static void psymtab_to_symtab_1 (struct partial_symtab *);
897
898 static void dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu);
899
900 static void dwarf2_free_abbrev_table (void *);
901
902 static struct abbrev_info *peek_die_abbrev (gdb_byte *, unsigned int *,
903                                             struct dwarf2_cu *);
904
905 static struct abbrev_info *dwarf2_lookup_abbrev (unsigned int,
906                                                  struct dwarf2_cu *);
907
908 static struct partial_die_info *load_partial_dies (bfd *,
909                                                    gdb_byte *, gdb_byte *,
910                                                    int, struct dwarf2_cu *);
911
912 static gdb_byte *read_partial_die (struct partial_die_info *,
913                                    struct abbrev_info *abbrev,
914                                    unsigned int, bfd *,
915                                    gdb_byte *, gdb_byte *,
916                                    struct dwarf2_cu *);
917
918 static struct partial_die_info *find_partial_die (unsigned int,
919                                                   struct dwarf2_cu *);
920
921 static void fixup_partial_die (struct partial_die_info *,
922                                struct dwarf2_cu *);
923
924 static gdb_byte *read_attribute (struct attribute *, struct attr_abbrev *,
925                                  bfd *, gdb_byte *, struct dwarf2_cu *);
926
927 static gdb_byte *read_attribute_value (struct attribute *, unsigned,
928                                        bfd *, gdb_byte *, struct dwarf2_cu *);
929
930 static unsigned int read_1_byte (bfd *, gdb_byte *);
931
932 static int read_1_signed_byte (bfd *, gdb_byte *);
933
934 static unsigned int read_2_bytes (bfd *, gdb_byte *);
935
936 static unsigned int read_4_bytes (bfd *, gdb_byte *);
937
938 static ULONGEST read_8_bytes (bfd *, gdb_byte *);
939
940 static CORE_ADDR read_address (bfd *, gdb_byte *ptr, struct dwarf2_cu *,
941                                unsigned int *);
942
943 static LONGEST read_initial_length (bfd *, gdb_byte *, unsigned int *);
944
945 static LONGEST read_checked_initial_length_and_offset
946   (bfd *, gdb_byte *, const struct comp_unit_head *,
947    unsigned int *, unsigned int *);
948
949 static LONGEST read_offset (bfd *, gdb_byte *, const struct comp_unit_head *,
950                             unsigned int *);
951
952 static LONGEST read_offset_1 (bfd *, gdb_byte *, unsigned int);
953
954 static gdb_byte *read_n_bytes (bfd *, gdb_byte *, unsigned int);
955
956 static char *read_direct_string (bfd *, gdb_byte *, unsigned int *);
957
958 static char *read_indirect_string (bfd *, gdb_byte *,
959                                    const struct comp_unit_head *,
960                                    unsigned int *);
961
962 static unsigned long read_unsigned_leb128 (bfd *, gdb_byte *, unsigned int *);
963
964 static long read_signed_leb128 (bfd *, gdb_byte *, unsigned int *);
965
966 static gdb_byte *skip_leb128 (bfd *, gdb_byte *);
967
968 static void set_cu_language (unsigned int, struct dwarf2_cu *);
969
970 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
971                                       struct dwarf2_cu *);
972
973 static struct attribute *dwarf2_attr_no_follow (struct die_info *,
974                                                 unsigned int,
975                                                 struct dwarf2_cu *);
976
977 static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
978                                struct dwarf2_cu *cu);
979
980 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
981
982 static struct die_info *die_specification (struct die_info *die,
983                                            struct dwarf2_cu **);
984
985 static void free_line_header (struct line_header *lh);
986
987 static void add_file_name (struct line_header *, char *, unsigned int,
988                            unsigned int, unsigned int);
989
990 static struct line_header *(dwarf_decode_line_header
991                             (unsigned int offset,
992                              bfd *abfd, struct dwarf2_cu *cu));
993
994 static void dwarf_decode_lines (struct line_header *, const char *, bfd *,
995                                 struct dwarf2_cu *, struct partial_symtab *);
996
997 static void dwarf2_start_subfile (char *, const char *, const char *);
998
999 static struct symbol *new_symbol (struct die_info *, struct type *,
1000                                   struct dwarf2_cu *);
1001
1002 static struct symbol *new_symbol_full (struct die_info *, struct type *,
1003                                        struct dwarf2_cu *, struct symbol *);
1004
1005 static void dwarf2_const_value (struct attribute *, struct symbol *,
1006                                 struct dwarf2_cu *);
1007
1008 static void dwarf2_const_value_attr (struct attribute *attr,
1009                                      struct type *type,
1010                                      const char *name,
1011                                      struct obstack *obstack,
1012                                      struct dwarf2_cu *cu, long *value,
1013                                      gdb_byte **bytes,
1014                                      struct dwarf2_locexpr_baton **baton);
1015
1016 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
1017
1018 static int need_gnat_info (struct dwarf2_cu *);
1019
1020 static struct type *die_descriptive_type (struct die_info *,
1021                                           struct dwarf2_cu *);
1022
1023 static void set_descriptive_type (struct type *, struct die_info *,
1024                                   struct dwarf2_cu *);
1025
1026 static struct type *die_containing_type (struct die_info *,
1027                                          struct dwarf2_cu *);
1028
1029 static struct type *lookup_die_type (struct die_info *, struct attribute *,
1030                                      struct dwarf2_cu *);
1031
1032 static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
1033
1034 static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1035
1036 static char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
1037
1038 static char *typename_concat (struct obstack *obs, const char *prefix,
1039                               const char *suffix, int physname,
1040                               struct dwarf2_cu *cu);
1041
1042 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
1043
1044 static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1045
1046 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
1047
1048 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
1049
1050 static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1051                                struct dwarf2_cu *, struct partial_symtab *);
1052
1053 static int dwarf2_get_pc_bounds (struct die_info *,
1054                                  CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *,
1055                                  struct partial_symtab *);
1056
1057 static void get_scope_pc_bounds (struct die_info *,
1058                                  CORE_ADDR *, CORE_ADDR *,
1059                                  struct dwarf2_cu *);
1060
1061 static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1062                                         CORE_ADDR, struct dwarf2_cu *);
1063
1064 static void dwarf2_add_field (struct field_info *, struct die_info *,
1065                               struct dwarf2_cu *);
1066
1067 static void dwarf2_attach_fields_to_type (struct field_info *,
1068                                           struct type *, struct dwarf2_cu *);
1069
1070 static void dwarf2_add_member_fn (struct field_info *,
1071                                   struct die_info *, struct type *,
1072                                   struct dwarf2_cu *);
1073
1074 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
1075                                              struct type *,
1076                                              struct dwarf2_cu *);
1077
1078 static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
1079
1080 static void read_common_block (struct die_info *, struct dwarf2_cu *);
1081
1082 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
1083
1084 static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1085
1086 static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1087
1088 static struct type *read_module_type (struct die_info *die,
1089                                       struct dwarf2_cu *cu);
1090
1091 static const char *namespace_name (struct die_info *die,
1092                                    int *is_anonymous, struct dwarf2_cu *);
1093
1094 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
1095
1096 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
1097
1098 static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
1099                                                        struct dwarf2_cu *);
1100
1101 static struct die_info *read_comp_unit (gdb_byte *, struct dwarf2_cu *);
1102
1103 static struct die_info *read_die_and_children_1 (const struct die_reader_specs *reader,
1104                                                  gdb_byte *info_ptr,
1105                                                  gdb_byte **new_info_ptr,
1106                                                  struct die_info *parent);
1107
1108 static struct die_info *read_die_and_children (const struct die_reader_specs *reader,
1109                                                gdb_byte *info_ptr,
1110                                                gdb_byte **new_info_ptr,
1111                                                struct die_info *parent);
1112
1113 static struct die_info *read_die_and_siblings (const struct die_reader_specs *reader,
1114                                                gdb_byte *info_ptr,
1115                                                gdb_byte **new_info_ptr,
1116                                                struct die_info *parent);
1117
1118 static gdb_byte *read_full_die (const struct die_reader_specs *reader,
1119                                 struct die_info **, gdb_byte *,
1120                                 int *);
1121
1122 static void process_die (struct die_info *, struct dwarf2_cu *);
1123
1124 static char *dwarf2_canonicalize_name (char *, struct dwarf2_cu *,
1125                                        struct obstack *);
1126
1127 static char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
1128
1129 static const char *dwarf2_full_name (char *name,
1130                                      struct die_info *die,
1131                                      struct dwarf2_cu *cu);
1132
1133 static struct die_info *dwarf2_extension (struct die_info *die,
1134                                           struct dwarf2_cu **);
1135
1136 static char *dwarf_tag_name (unsigned int);
1137
1138 static char *dwarf_attr_name (unsigned int);
1139
1140 static char *dwarf_form_name (unsigned int);
1141
1142 static char *dwarf_bool_name (unsigned int);
1143
1144 static char *dwarf_type_encoding_name (unsigned int);
1145
1146 #if 0
1147 static char *dwarf_cfi_name (unsigned int);
1148 #endif
1149
1150 static struct die_info *sibling_die (struct die_info *);
1151
1152 static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1153
1154 static void dump_die_for_error (struct die_info *);
1155
1156 static void dump_die_1 (struct ui_file *, int level, int max_level,
1157                         struct die_info *);
1158
1159 /*static*/ void dump_die (struct die_info *, int max_level);
1160
1161 static void store_in_ref_table (struct die_info *,
1162                                 struct dwarf2_cu *);
1163
1164 static int is_ref_attr (struct attribute *);
1165
1166 static unsigned int dwarf2_get_ref_die_offset (struct attribute *);
1167
1168 static LONGEST dwarf2_get_attr_constant_value (struct attribute *, int);
1169
1170 static struct die_info *follow_die_ref_or_sig (struct die_info *,
1171                                                struct attribute *,
1172                                                struct dwarf2_cu **);
1173
1174 static struct die_info *follow_die_ref (struct die_info *,
1175                                         struct attribute *,
1176                                         struct dwarf2_cu **);
1177
1178 static struct die_info *follow_die_sig (struct die_info *,
1179                                         struct attribute *,
1180                                         struct dwarf2_cu **);
1181
1182 static void read_signatured_type_at_offset (struct objfile *objfile,
1183                                             unsigned int offset);
1184
1185 static void read_signatured_type (struct objfile *,
1186                                   struct signatured_type *type_sig);
1187
1188 /* memory allocation interface */
1189
1190 static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
1191
1192 static struct abbrev_info *dwarf_alloc_abbrev (struct dwarf2_cu *);
1193
1194 static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
1195
1196 static void initialize_cu_func_list (struct dwarf2_cu *);
1197
1198 static void add_to_cu_func_list (const char *, CORE_ADDR, CORE_ADDR,
1199                                  struct dwarf2_cu *);
1200
1201 static void dwarf_decode_macros (struct line_header *, unsigned int,
1202                                  char *, bfd *, struct dwarf2_cu *);
1203
1204 static int attr_form_is_block (struct attribute *);
1205
1206 static int attr_form_is_section_offset (struct attribute *);
1207
1208 static int attr_form_is_constant (struct attribute *);
1209
1210 static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1211                                    struct dwarf2_loclist_baton *baton,
1212                                    struct attribute *attr);
1213
1214 static void dwarf2_symbol_mark_computed (struct attribute *attr,
1215                                          struct symbol *sym,
1216                                          struct dwarf2_cu *cu);
1217
1218 static gdb_byte *skip_one_die (gdb_byte *buffer, gdb_byte *info_ptr,
1219                                struct abbrev_info *abbrev,
1220                                struct dwarf2_cu *cu);
1221
1222 static void free_stack_comp_unit (void *);
1223
1224 static hashval_t partial_die_hash (const void *item);
1225
1226 static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1227
1228 static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1229   (unsigned int offset, struct objfile *objfile);
1230
1231 static struct dwarf2_per_cu_data *dwarf2_find_comp_unit
1232   (unsigned int offset, struct objfile *objfile);
1233
1234 static void init_one_comp_unit (struct dwarf2_cu *cu,
1235                                 struct objfile *objfile);
1236
1237 static void prepare_one_comp_unit (struct dwarf2_cu *cu,
1238                                    struct die_info *comp_unit_die);
1239
1240 static void free_one_comp_unit (void *);
1241
1242 static void free_cached_comp_units (void *);
1243
1244 static void age_cached_comp_units (void);
1245
1246 static void free_one_cached_comp_unit (void *);
1247
1248 static struct type *set_die_type (struct die_info *, struct type *,
1249                                   struct dwarf2_cu *);
1250
1251 static void create_all_comp_units (struct objfile *);
1252
1253 static int create_debug_types_hash_table (struct objfile *objfile);
1254
1255 static void load_full_comp_unit (struct dwarf2_per_cu_data *,
1256                                  struct objfile *);
1257
1258 static void process_full_comp_unit (struct dwarf2_per_cu_data *);
1259
1260 static void dwarf2_add_dependence (struct dwarf2_cu *,
1261                                    struct dwarf2_per_cu_data *);
1262
1263 static void dwarf2_mark (struct dwarf2_cu *);
1264
1265 static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1266
1267 static struct type *get_die_type_at_offset (unsigned int,
1268                                             struct dwarf2_per_cu_data *per_cu);
1269
1270 static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
1271
1272 static void dwarf2_release_queue (void *dummy);
1273
1274 static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1275                              struct objfile *objfile);
1276
1277 static void process_queue (struct objfile *objfile);
1278
1279 static void find_file_and_directory (struct die_info *die,
1280                                      struct dwarf2_cu *cu,
1281                                      char **name, char **comp_dir);
1282
1283 static char *file_full_name (int file, struct line_header *lh,
1284                              const char *comp_dir);
1285
1286 static gdb_byte *partial_read_comp_unit_head (struct comp_unit_head *header,
1287                                               gdb_byte *info_ptr,
1288                                               gdb_byte *buffer,
1289                                               unsigned int buffer_size,
1290                                               bfd *abfd);
1291
1292 static void init_cu_die_reader (struct die_reader_specs *reader,
1293                                 struct dwarf2_cu *cu);
1294
1295 static htab_t allocate_signatured_type_table (struct objfile *objfile);
1296
1297 #if WORDS_BIGENDIAN
1298
1299 /* Convert VALUE between big- and little-endian.  */
1300 static offset_type
1301 byte_swap (offset_type value)
1302 {
1303   offset_type result;
1304
1305   result = (value & 0xff) << 24;
1306   result |= (value & 0xff00) << 8;
1307   result |= (value & 0xff0000) >> 8;
1308   result |= (value & 0xff000000) >> 24;
1309   return result;
1310 }
1311
1312 #define MAYBE_SWAP(V)  byte_swap (V)
1313
1314 #else
1315 #define MAYBE_SWAP(V) (V)
1316 #endif /* WORDS_BIGENDIAN */
1317
1318 /* The suffix for an index file.  */
1319 #define INDEX_SUFFIX ".gdb-index"
1320
1321 static const char *dwarf2_physname (char *name, struct die_info *die,
1322                                     struct dwarf2_cu *cu);
1323
1324 /* Try to locate the sections we need for DWARF 2 debugging
1325    information and return true if we have enough to do something.  */
1326
1327 int
1328 dwarf2_has_info (struct objfile *objfile)
1329 {
1330   dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
1331   if (!dwarf2_per_objfile)
1332     {
1333       /* Initialize per-objfile state.  */
1334       struct dwarf2_per_objfile *data
1335         = obstack_alloc (&objfile->objfile_obstack, sizeof (*data));
1336
1337       memset (data, 0, sizeof (*data));
1338       set_objfile_data (objfile, dwarf2_objfile_data_key, data);
1339       dwarf2_per_objfile = data;
1340
1341       bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections, NULL);
1342       dwarf2_per_objfile->objfile = objfile;
1343     }
1344   return (dwarf2_per_objfile->info.asection != NULL
1345           && dwarf2_per_objfile->abbrev.asection != NULL);
1346 }
1347
1348 /* When loading sections, we can either look for ".<name>", or for
1349  * ".z<name>", which indicates a compressed section.  */
1350
1351 static int
1352 section_is_p (const char *section_name, const char *name)
1353 {
1354   return (section_name[0] == '.'
1355           && (strcmp (section_name + 1, name) == 0
1356               || (section_name[1] == 'z'
1357                   && strcmp (section_name + 2, name) == 0)));
1358 }
1359
1360 /* This function is mapped across the sections and remembers the
1361    offset and size of each of the debugging sections we are interested
1362    in.  */
1363
1364 static void
1365 dwarf2_locate_sections (bfd *abfd, asection *sectp, void *ignore_ptr)
1366 {
1367   if (section_is_p (sectp->name, INFO_SECTION))
1368     {
1369       dwarf2_per_objfile->info.asection = sectp;
1370       dwarf2_per_objfile->info.size = bfd_get_section_size (sectp);
1371     }
1372   else if (section_is_p (sectp->name, ABBREV_SECTION))
1373     {
1374       dwarf2_per_objfile->abbrev.asection = sectp;
1375       dwarf2_per_objfile->abbrev.size = bfd_get_section_size (sectp);
1376     }
1377   else if (section_is_p (sectp->name, LINE_SECTION))
1378     {
1379       dwarf2_per_objfile->line.asection = sectp;
1380       dwarf2_per_objfile->line.size = bfd_get_section_size (sectp);
1381     }
1382   else if (section_is_p (sectp->name, LOC_SECTION))
1383     {
1384       dwarf2_per_objfile->loc.asection = sectp;
1385       dwarf2_per_objfile->loc.size = bfd_get_section_size (sectp);
1386     }
1387   else if (section_is_p (sectp->name, MACINFO_SECTION))
1388     {
1389       dwarf2_per_objfile->macinfo.asection = sectp;
1390       dwarf2_per_objfile->macinfo.size = bfd_get_section_size (sectp);
1391     }
1392   else if (section_is_p (sectp->name, STR_SECTION))
1393     {
1394       dwarf2_per_objfile->str.asection = sectp;
1395       dwarf2_per_objfile->str.size = bfd_get_section_size (sectp);
1396     }
1397   else if (section_is_p (sectp->name, FRAME_SECTION))
1398     {
1399       dwarf2_per_objfile->frame.asection = sectp;
1400       dwarf2_per_objfile->frame.size = bfd_get_section_size (sectp);
1401     }
1402   else if (section_is_p (sectp->name, EH_FRAME_SECTION))
1403     {
1404       flagword aflag = bfd_get_section_flags (ignore_abfd, sectp);
1405
1406       if (aflag & SEC_HAS_CONTENTS)
1407         {
1408           dwarf2_per_objfile->eh_frame.asection = sectp;
1409           dwarf2_per_objfile->eh_frame.size = bfd_get_section_size (sectp);
1410         }
1411     }
1412   else if (section_is_p (sectp->name, RANGES_SECTION))
1413     {
1414       dwarf2_per_objfile->ranges.asection = sectp;
1415       dwarf2_per_objfile->ranges.size = bfd_get_section_size (sectp);
1416     }
1417   else if (section_is_p (sectp->name, TYPES_SECTION))
1418     {
1419       dwarf2_per_objfile->types.asection = sectp;
1420       dwarf2_per_objfile->types.size = bfd_get_section_size (sectp);
1421     }
1422   else if (section_is_p (sectp->name, GDB_INDEX_SECTION))
1423     {
1424       dwarf2_per_objfile->gdb_index.asection = sectp;
1425       dwarf2_per_objfile->gdb_index.size = bfd_get_section_size (sectp);
1426     }
1427
1428   if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD)
1429       && bfd_section_vma (abfd, sectp) == 0)
1430     dwarf2_per_objfile->has_section_at_zero = 1;
1431 }
1432
1433 /* Decompress a section that was compressed using zlib.  Store the
1434    decompressed buffer, and its size, in OUTBUF and OUTSIZE.  */
1435
1436 static void
1437 zlib_decompress_section (struct objfile *objfile, asection *sectp,
1438                          gdb_byte **outbuf, bfd_size_type *outsize)
1439 {
1440   bfd *abfd = objfile->obfd;
1441 #ifndef HAVE_ZLIB_H
1442   error (_("Support for zlib-compressed DWARF data (from '%s') "
1443            "is disabled in this copy of GDB"),
1444          bfd_get_filename (abfd));
1445 #else
1446   bfd_size_type compressed_size = bfd_get_section_size (sectp);
1447   gdb_byte *compressed_buffer = xmalloc (compressed_size);
1448   struct cleanup *cleanup = make_cleanup (xfree, compressed_buffer);
1449   bfd_size_type uncompressed_size;
1450   gdb_byte *uncompressed_buffer;
1451   z_stream strm;
1452   int rc;
1453   int header_size = 12;
1454
1455   if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1456       || bfd_bread (compressed_buffer,
1457                     compressed_size, abfd) != compressed_size)
1458     error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1459            bfd_get_filename (abfd));
1460
1461   /* Read the zlib header.  In this case, it should be "ZLIB" followed
1462      by the uncompressed section size, 8 bytes in big-endian order.  */
1463   if (compressed_size < header_size
1464       || strncmp (compressed_buffer, "ZLIB", 4) != 0)
1465     error (_("Dwarf Error: Corrupt DWARF ZLIB header from '%s'"),
1466            bfd_get_filename (abfd));
1467   uncompressed_size = compressed_buffer[4]; uncompressed_size <<= 8;
1468   uncompressed_size += compressed_buffer[5]; uncompressed_size <<= 8;
1469   uncompressed_size += compressed_buffer[6]; uncompressed_size <<= 8;
1470   uncompressed_size += compressed_buffer[7]; uncompressed_size <<= 8;
1471   uncompressed_size += compressed_buffer[8]; uncompressed_size <<= 8;
1472   uncompressed_size += compressed_buffer[9]; uncompressed_size <<= 8;
1473   uncompressed_size += compressed_buffer[10]; uncompressed_size <<= 8;
1474   uncompressed_size += compressed_buffer[11];
1475
1476   /* It is possible the section consists of several compressed
1477      buffers concatenated together, so we uncompress in a loop.  */
1478   strm.zalloc = NULL;
1479   strm.zfree = NULL;
1480   strm.opaque = NULL;
1481   strm.avail_in = compressed_size - header_size;
1482   strm.next_in = (Bytef*) compressed_buffer + header_size;
1483   strm.avail_out = uncompressed_size;
1484   uncompressed_buffer = obstack_alloc (&objfile->objfile_obstack,
1485                                        uncompressed_size);
1486   rc = inflateInit (&strm);
1487   while (strm.avail_in > 0)
1488     {
1489       if (rc != Z_OK)
1490         error (_("Dwarf Error: setting up DWARF uncompression in '%s': %d"),
1491                bfd_get_filename (abfd), rc);
1492       strm.next_out = ((Bytef*) uncompressed_buffer
1493                        + (uncompressed_size - strm.avail_out));
1494       rc = inflate (&strm, Z_FINISH);
1495       if (rc != Z_STREAM_END)
1496         error (_("Dwarf Error: zlib error uncompressing from '%s': %d"),
1497                bfd_get_filename (abfd), rc);
1498       rc = inflateReset (&strm);
1499     }
1500   rc = inflateEnd (&strm);
1501   if (rc != Z_OK
1502       || strm.avail_out != 0)
1503     error (_("Dwarf Error: concluding DWARF uncompression in '%s': %d"),
1504            bfd_get_filename (abfd), rc);
1505
1506   do_cleanups (cleanup);
1507   *outbuf = uncompressed_buffer;
1508   *outsize = uncompressed_size;
1509 #endif
1510 }
1511
1512 /* A helper function that decides whether a section is empty.  */
1513
1514 static int
1515 dwarf2_section_empty_p (struct dwarf2_section_info *info)
1516 {
1517   return info->asection == NULL || info->size == 0;
1518 }
1519
1520 /* Read the contents of the section SECTP from object file specified by
1521    OBJFILE, store info about the section into INFO.
1522    If the section is compressed, uncompress it before returning.  */
1523
1524 static void
1525 dwarf2_read_section (struct objfile *objfile, struct dwarf2_section_info *info)
1526 {
1527   bfd *abfd = objfile->obfd;
1528   asection *sectp = info->asection;
1529   gdb_byte *buf, *retbuf;
1530   unsigned char header[4];
1531
1532   if (info->readin)
1533     return;
1534   info->buffer = NULL;
1535   info->was_mmapped = 0;
1536   info->readin = 1;
1537
1538   if (dwarf2_section_empty_p (info))
1539     return;
1540
1541   /* Check if the file has a 4-byte header indicating compression.  */
1542   if (info->size > sizeof (header)
1543       && bfd_seek (abfd, sectp->filepos, SEEK_SET) == 0
1544       && bfd_bread (header, sizeof (header), abfd) == sizeof (header))
1545     {
1546       /* Upon decompression, update the buffer and its size.  */
1547       if (strncmp (header, "ZLIB", sizeof (header)) == 0)
1548         {
1549           zlib_decompress_section (objfile, sectp, &info->buffer,
1550                                    &info->size);
1551           return;
1552         }
1553     }
1554
1555 #ifdef HAVE_MMAP
1556   if (pagesize == 0)
1557     pagesize = getpagesize ();
1558
1559   /* Only try to mmap sections which are large enough: we don't want to
1560      waste space due to fragmentation.  Also, only try mmap for sections
1561      without relocations.  */
1562
1563   if (info->size > 4 * pagesize && (sectp->flags & SEC_RELOC) == 0)
1564     {
1565       off_t pg_offset = sectp->filepos & ~(pagesize - 1);
1566       size_t map_length = info->size + sectp->filepos - pg_offset;
1567       caddr_t retbuf = bfd_mmap (abfd, 0, map_length, PROT_READ,
1568                                  MAP_PRIVATE, pg_offset);
1569
1570       if (retbuf != MAP_FAILED)
1571         {
1572           info->was_mmapped = 1;
1573           info->buffer = retbuf + (sectp->filepos & (pagesize - 1)) ;
1574 #if HAVE_POSIX_MADVISE
1575           posix_madvise (retbuf, map_length, POSIX_MADV_WILLNEED);
1576 #endif
1577           return;
1578         }
1579     }
1580 #endif
1581
1582   /* If we get here, we are a normal, not-compressed section.  */
1583   info->buffer = buf
1584     = obstack_alloc (&objfile->objfile_obstack, info->size);
1585
1586   /* When debugging .o files, we may need to apply relocations; see
1587      http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
1588      We never compress sections in .o files, so we only need to
1589      try this when the section is not compressed.  */
1590   retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
1591   if (retbuf != NULL)
1592     {
1593       info->buffer = retbuf;
1594       return;
1595     }
1596
1597   if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1598       || bfd_bread (buf, info->size, abfd) != info->size)
1599     error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1600            bfd_get_filename (abfd));
1601 }
1602
1603 /* A helper function that returns the size of a section in a safe way.
1604    If you are positive that the section has been read before using the
1605    size, then it is safe to refer to the dwarf2_section_info object's
1606    "size" field directly.  In other cases, you must call this
1607    function, because for compressed sections the size field is not set
1608    correctly until the section has been read.  */
1609
1610 static bfd_size_type
1611 dwarf2_section_size (struct objfile *objfile,
1612                      struct dwarf2_section_info *info)
1613 {
1614   if (!info->readin)
1615     dwarf2_read_section (objfile, info);
1616   return info->size;
1617 }
1618
1619 /* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
1620    SECTION_NAME.  */
1621
1622 void
1623 dwarf2_get_section_info (struct objfile *objfile, const char *section_name,
1624                          asection **sectp, gdb_byte **bufp,
1625                          bfd_size_type *sizep)
1626 {
1627   struct dwarf2_per_objfile *data
1628     = objfile_data (objfile, dwarf2_objfile_data_key);
1629   struct dwarf2_section_info *info;
1630
1631   /* We may see an objfile without any DWARF, in which case we just
1632      return nothing.  */
1633   if (data == NULL)
1634     {
1635       *sectp = NULL;
1636       *bufp = NULL;
1637       *sizep = 0;
1638       return;
1639     }
1640   if (section_is_p (section_name, EH_FRAME_SECTION))
1641     info = &data->eh_frame;
1642   else if (section_is_p (section_name, FRAME_SECTION))
1643     info = &data->frame;
1644   else
1645     gdb_assert_not_reached ("unexpected section");
1646
1647   dwarf2_read_section (objfile, info);
1648
1649   *sectp = info->asection;
1650   *bufp = info->buffer;
1651   *sizep = info->size;
1652 }
1653
1654 \f
1655 /* DWARF quick_symbols_functions support.  */
1656
1657 /* TUs can share .debug_line entries, and there can be a lot more TUs than
1658    unique line tables, so we maintain a separate table of all .debug_line
1659    derived entries to support the sharing.
1660    All the quick functions need is the list of file names.  We discard the
1661    line_header when we're done and don't need to record it here.  */
1662 struct quick_file_names
1663 {
1664   /* The offset in .debug_line of the line table.  We hash on this.  */
1665   unsigned int offset;
1666
1667   /* The number of entries in file_names, real_names.  */
1668   unsigned int num_file_names;
1669
1670   /* The file names from the line table, after being run through
1671      file_full_name.  */
1672   const char **file_names;
1673
1674   /* The file names from the line table after being run through
1675      gdb_realpath.  These are computed lazily.  */
1676   const char **real_names;
1677 };
1678
1679 /* When using the index (and thus not using psymtabs), each CU has an
1680    object of this type.  This is used to hold information needed by
1681    the various "quick" methods.  */
1682 struct dwarf2_per_cu_quick_data
1683 {
1684   /* The file table.  This can be NULL if there was no file table
1685      or it's currently not read in.
1686      NOTE: This points into dwarf2_per_objfile->quick_file_names_table.  */
1687   struct quick_file_names *file_names;
1688
1689   /* The corresponding symbol table.  This is NULL if symbols for this
1690      CU have not yet been read.  */
1691   struct symtab *symtab;
1692
1693   /* A temporary mark bit used when iterating over all CUs in
1694      expand_symtabs_matching.  */
1695   unsigned int mark : 1;
1696
1697   /* True if we've tried to read the file table and found there isn't one.
1698      There will be no point in trying to read it again next time.  */
1699   unsigned int no_file_data : 1;
1700 };
1701
1702 /* Hash function for a quick_file_names.  */
1703
1704 static hashval_t
1705 hash_file_name_entry (const void *e)
1706 {
1707   const struct quick_file_names *file_data = e;
1708
1709   return file_data->offset;
1710 }
1711
1712 /* Equality function for a quick_file_names.  */
1713
1714 static int
1715 eq_file_name_entry (const void *a, const void *b)
1716 {
1717   const struct quick_file_names *ea = a;
1718   const struct quick_file_names *eb = b;
1719
1720   return ea->offset == eb->offset;
1721 }
1722
1723 /* Delete function for a quick_file_names.  */
1724
1725 static void
1726 delete_file_name_entry (void *e)
1727 {
1728   struct quick_file_names *file_data = e;
1729   int i;
1730
1731   for (i = 0; i < file_data->num_file_names; ++i)
1732     {
1733       xfree ((void*) file_data->file_names[i]);
1734       if (file_data->real_names)
1735         xfree ((void*) file_data->real_names[i]);
1736     }
1737
1738   /* The space for the struct itself lives on objfile_obstack,
1739      so we don't free it here.  */
1740 }
1741
1742 /* Create a quick_file_names hash table.  */
1743
1744 static htab_t
1745 create_quick_file_names_table (unsigned int nr_initial_entries)
1746 {
1747   return htab_create_alloc (nr_initial_entries,
1748                             hash_file_name_entry, eq_file_name_entry,
1749                             delete_file_name_entry, xcalloc, xfree);
1750 }
1751
1752 /* Read in the symbols for PER_CU.  OBJFILE is the objfile from which
1753    this CU came.  */
1754
1755 static void
1756 dw2_do_instantiate_symtab (struct objfile *objfile,
1757                            struct dwarf2_per_cu_data *per_cu)
1758 {
1759   struct cleanup *back_to;
1760
1761   back_to = make_cleanup (dwarf2_release_queue, NULL);
1762
1763   queue_comp_unit (per_cu, objfile);
1764
1765   if (per_cu->from_debug_types)
1766     read_signatured_type_at_offset (objfile, per_cu->offset);
1767   else
1768     load_full_comp_unit (per_cu, objfile);
1769
1770   process_queue (objfile);
1771
1772   /* Age the cache, releasing compilation units that have not
1773      been used recently.  */
1774   age_cached_comp_units ();
1775
1776   do_cleanups (back_to);
1777 }
1778
1779 /* Ensure that the symbols for PER_CU have been read in.  OBJFILE is
1780    the objfile from which this CU came.  Returns the resulting symbol
1781    table.  */
1782
1783 static struct symtab *
1784 dw2_instantiate_symtab (struct objfile *objfile,
1785                         struct dwarf2_per_cu_data *per_cu)
1786 {
1787   if (!per_cu->v.quick->symtab)
1788     {
1789       struct cleanup *back_to = make_cleanup (free_cached_comp_units, NULL);
1790       increment_reading_symtab ();
1791       dw2_do_instantiate_symtab (objfile, per_cu);
1792       do_cleanups (back_to);
1793     }
1794   return per_cu->v.quick->symtab;
1795 }
1796
1797 /* Return the CU given its index.  */
1798
1799 static struct dwarf2_per_cu_data *
1800 dw2_get_cu (int index)
1801 {
1802   if (index >= dwarf2_per_objfile->n_comp_units)
1803     {
1804       index -= dwarf2_per_objfile->n_comp_units;
1805       return dwarf2_per_objfile->type_comp_units[index];
1806     }
1807   return dwarf2_per_objfile->all_comp_units[index];
1808 }
1809
1810 /* A helper function that knows how to read a 64-bit value in a way
1811    that doesn't make gdb die.  Returns 1 if the conversion went ok, 0
1812    otherwise.  */
1813
1814 static int
1815 extract_cu_value (const char *bytes, ULONGEST *result)
1816 {
1817   if (sizeof (ULONGEST) < 8)
1818     {
1819       int i;
1820
1821       /* Ignore the upper 4 bytes if they are all zero.  */
1822       for (i = 0; i < 4; ++i)
1823         if (bytes[i + 4] != 0)
1824           return 0;
1825
1826       *result = extract_unsigned_integer (bytes, 4, BFD_ENDIAN_LITTLE);
1827     }
1828   else
1829     *result = extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
1830   return 1;
1831 }
1832
1833 /* Read the CU list from the mapped index, and use it to create all
1834    the CU objects for this objfile.  Return 0 if something went wrong,
1835    1 if everything went ok.  */
1836
1837 static int
1838 create_cus_from_index (struct objfile *objfile, const gdb_byte *cu_list,
1839                        offset_type cu_list_elements)
1840 {
1841   offset_type i;
1842
1843   dwarf2_per_objfile->n_comp_units = cu_list_elements / 2;
1844   dwarf2_per_objfile->all_comp_units
1845     = obstack_alloc (&objfile->objfile_obstack,
1846                      dwarf2_per_objfile->n_comp_units
1847                      * sizeof (struct dwarf2_per_cu_data *));
1848
1849   for (i = 0; i < cu_list_elements; i += 2)
1850     {
1851       struct dwarf2_per_cu_data *the_cu;
1852       ULONGEST offset, length;
1853
1854       if (!extract_cu_value (cu_list, &offset)
1855           || !extract_cu_value (cu_list + 8, &length))
1856         return 0;
1857       cu_list += 2 * 8;
1858
1859       the_cu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1860                                struct dwarf2_per_cu_data);
1861       the_cu->offset = offset;
1862       the_cu->length = length;
1863       the_cu->objfile = objfile;
1864       the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1865                                         struct dwarf2_per_cu_quick_data);
1866       dwarf2_per_objfile->all_comp_units[i / 2] = the_cu;
1867     }
1868
1869   return 1;
1870 }
1871
1872 /* Create the signatured type hash table from the index.  */
1873
1874 static int
1875 create_signatured_type_table_from_index (struct objfile *objfile,
1876                                          const gdb_byte *bytes,
1877                                          offset_type elements)
1878 {
1879   offset_type i;
1880   htab_t sig_types_hash;
1881
1882   dwarf2_per_objfile->n_type_comp_units = elements / 3;
1883   dwarf2_per_objfile->type_comp_units
1884     = obstack_alloc (&objfile->objfile_obstack,
1885                      dwarf2_per_objfile->n_type_comp_units
1886                      * sizeof (struct dwarf2_per_cu_data *));
1887
1888   sig_types_hash = allocate_signatured_type_table (objfile);
1889
1890   for (i = 0; i < elements; i += 3)
1891     {
1892       struct signatured_type *type_sig;
1893       ULONGEST offset, type_offset, signature;
1894       void **slot;
1895
1896       if (!extract_cu_value (bytes, &offset)
1897           || !extract_cu_value (bytes + 8, &type_offset))
1898         return 0;
1899       signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
1900       bytes += 3 * 8;
1901
1902       type_sig = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1903                                  struct signatured_type);
1904       type_sig->signature = signature;
1905       type_sig->offset = offset;
1906       type_sig->type_offset = type_offset;
1907       type_sig->per_cu.from_debug_types = 1;
1908       type_sig->per_cu.offset = offset;
1909       type_sig->per_cu.objfile = objfile;
1910       type_sig->per_cu.v.quick
1911         = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1912                           struct dwarf2_per_cu_quick_data);
1913
1914       slot = htab_find_slot (sig_types_hash, type_sig, INSERT);
1915       *slot = type_sig;
1916
1917       dwarf2_per_objfile->type_comp_units[i / 3] = &type_sig->per_cu;
1918     }
1919
1920   dwarf2_per_objfile->signatured_types = sig_types_hash;
1921
1922   return 1;
1923 }
1924
1925 /* Read the address map data from the mapped index, and use it to
1926    populate the objfile's psymtabs_addrmap.  */
1927
1928 static void
1929 create_addrmap_from_index (struct objfile *objfile, struct mapped_index *index)
1930 {
1931   const gdb_byte *iter, *end;
1932   struct obstack temp_obstack;
1933   struct addrmap *mutable_map;
1934   struct cleanup *cleanup;
1935   CORE_ADDR baseaddr;
1936
1937   obstack_init (&temp_obstack);
1938   cleanup = make_cleanup_obstack_free (&temp_obstack);
1939   mutable_map = addrmap_create_mutable (&temp_obstack);
1940
1941   iter = index->address_table;
1942   end = iter + index->address_table_size;
1943
1944   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1945
1946   while (iter < end)
1947     {
1948       ULONGEST hi, lo, cu_index;
1949       lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
1950       iter += 8;
1951       hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
1952       iter += 8;
1953       cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
1954       iter += 4;
1955       
1956       addrmap_set_empty (mutable_map, lo + baseaddr, hi + baseaddr - 1,
1957                          dw2_get_cu (cu_index));
1958     }
1959
1960   objfile->psymtabs_addrmap = addrmap_create_fixed (mutable_map,
1961                                                     &objfile->objfile_obstack);
1962   do_cleanups (cleanup);
1963 }
1964
1965 /* The hash function for strings in the mapped index.  This is the
1966    same as the hashtab.c hash function, but we keep a separate copy to
1967    maintain control over the implementation.  This is necessary
1968    because the hash function is tied to the format of the mapped index
1969    file.  */
1970
1971 static hashval_t
1972 mapped_index_string_hash (const void *p)
1973 {
1974   const unsigned char *str = (const unsigned char *) p;
1975   hashval_t r = 0;
1976   unsigned char c;
1977
1978   while ((c = *str++) != 0)
1979     r = r * 67 + c - 113;
1980
1981   return r;
1982 }
1983
1984 /* Find a slot in the mapped index INDEX for the object named NAME.
1985    If NAME is found, set *VEC_OUT to point to the CU vector in the
1986    constant pool and return 1.  If NAME cannot be found, return 0.  */
1987
1988 static int
1989 find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
1990                           offset_type **vec_out)
1991 {
1992   offset_type hash = mapped_index_string_hash (name);
1993   offset_type slot, step;
1994
1995   slot = hash & (index->symbol_table_slots - 1);
1996   step = ((hash * 17) & (index->symbol_table_slots - 1)) | 1;
1997
1998   for (;;)
1999     {
2000       /* Convert a slot number to an offset into the table.  */
2001       offset_type i = 2 * slot;
2002       const char *str;
2003       if (index->symbol_table[i] == 0 && index->symbol_table[i + 1] == 0)
2004         return 0;
2005
2006       str = index->constant_pool + MAYBE_SWAP (index->symbol_table[i]);
2007       if (!strcmp (name, str))
2008         {
2009           *vec_out = (offset_type *) (index->constant_pool
2010                                       + MAYBE_SWAP (index->symbol_table[i + 1]));
2011           return 1;
2012         }
2013
2014       slot = (slot + step) & (index->symbol_table_slots - 1);
2015     }
2016 }
2017
2018 /* Read the index file.  If everything went ok, initialize the "quick"
2019    elements of all the CUs and return 1.  Otherwise, return 0.  */
2020
2021 static int
2022 dwarf2_read_index (struct objfile *objfile)
2023 {
2024   char *addr;
2025   struct mapped_index *map;
2026   offset_type *metadata;
2027   const gdb_byte *cu_list;
2028   const gdb_byte *types_list = NULL;
2029   offset_type version, cu_list_elements;
2030   offset_type types_list_elements = 0;
2031   int i;
2032
2033   if (dwarf2_section_empty_p (&dwarf2_per_objfile->gdb_index))
2034     return 0;
2035
2036   /* Older elfutils strip versions could keep the section in the main
2037      executable while splitting it for the separate debug info file.  */
2038   if ((bfd_get_file_flags (dwarf2_per_objfile->gdb_index.asection)
2039        & SEC_HAS_CONTENTS) == 0)
2040     return 0;
2041
2042   dwarf2_read_section (objfile, &dwarf2_per_objfile->gdb_index);
2043
2044   addr = dwarf2_per_objfile->gdb_index.buffer;
2045   /* Version check.  */
2046   version = MAYBE_SWAP (*(offset_type *) addr);
2047   /* Versions earlier than 3 emitted every copy of a psymbol.  This
2048      causes the index to behave very poorly for certain requests.  Version 4
2049      contained incomplete addrmap.  So, it seems better to just ignore such
2050      indices.  */
2051   if (version < 4)
2052     return 0;
2053   /* Indexes with higher version than the one supported by GDB may be no
2054      longer backward compatible.  */
2055   if (version > 4)
2056     return 0;
2057
2058   map = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct mapped_index);
2059   map->total_size = dwarf2_per_objfile->gdb_index.size;
2060
2061   metadata = (offset_type *) (addr + sizeof (offset_type));
2062
2063   i = 0;
2064   cu_list = addr + MAYBE_SWAP (metadata[i]);
2065   cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
2066                       / 8);
2067   ++i;
2068
2069   types_list = addr + MAYBE_SWAP (metadata[i]);
2070   types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
2071                           - MAYBE_SWAP (metadata[i]))
2072                          / 8);
2073   ++i;
2074
2075   map->address_table = addr + MAYBE_SWAP (metadata[i]);
2076   map->address_table_size = (MAYBE_SWAP (metadata[i + 1])
2077                              - MAYBE_SWAP (metadata[i]));
2078   ++i;
2079
2080   map->symbol_table = (offset_type *) (addr + MAYBE_SWAP (metadata[i]));
2081   map->symbol_table_slots = ((MAYBE_SWAP (metadata[i + 1])
2082                               - MAYBE_SWAP (metadata[i]))
2083                              / (2 * sizeof (offset_type)));
2084   ++i;
2085
2086   map->constant_pool = addr + MAYBE_SWAP (metadata[i]);
2087
2088   if (!create_cus_from_index (objfile, cu_list, cu_list_elements))
2089     return 0;
2090
2091   if (types_list_elements
2092       && !create_signatured_type_table_from_index (objfile, types_list,
2093                                                    types_list_elements))
2094     return 0;
2095
2096   create_addrmap_from_index (objfile, map);
2097
2098   dwarf2_per_objfile->index_table = map;
2099   dwarf2_per_objfile->using_index = 1;
2100   dwarf2_per_objfile->quick_file_names_table =
2101     create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
2102
2103   return 1;
2104 }
2105
2106 /* A helper for the "quick" functions which sets the global
2107    dwarf2_per_objfile according to OBJFILE.  */
2108
2109 static void
2110 dw2_setup (struct objfile *objfile)
2111 {
2112   dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
2113   gdb_assert (dwarf2_per_objfile);
2114 }
2115
2116 /* A helper for the "quick" functions which attempts to read the line
2117    table for THIS_CU.  */
2118
2119 static struct quick_file_names *
2120 dw2_get_file_names (struct objfile *objfile,
2121                     struct dwarf2_per_cu_data *this_cu)
2122 {
2123   bfd *abfd = objfile->obfd;
2124   struct line_header *lh;
2125   struct attribute *attr;
2126   struct cleanup *cleanups;
2127   struct die_info *comp_unit_die;
2128   struct dwarf2_section_info* sec;
2129   gdb_byte *beg_of_comp_unit, *info_ptr, *buffer;
2130   int has_children, i;
2131   struct dwarf2_cu cu;
2132   unsigned int bytes_read, buffer_size;
2133   struct die_reader_specs reader_specs;
2134   char *name, *comp_dir;
2135   void **slot;
2136   struct quick_file_names *qfn;
2137   unsigned int line_offset;
2138
2139   if (this_cu->v.quick->file_names != NULL)
2140     return this_cu->v.quick->file_names;
2141   /* If we know there is no line data, no point in looking again.  */
2142   if (this_cu->v.quick->no_file_data)
2143     return NULL;
2144
2145   init_one_comp_unit (&cu, objfile);
2146   cleanups = make_cleanup (free_stack_comp_unit, &cu);
2147
2148   if (this_cu->from_debug_types)
2149     sec = &dwarf2_per_objfile->types;
2150   else
2151     sec = &dwarf2_per_objfile->info;
2152   dwarf2_read_section (objfile, sec);
2153   buffer_size = sec->size;
2154   buffer = sec->buffer;
2155   info_ptr = buffer + this_cu->offset;
2156   beg_of_comp_unit = info_ptr;
2157
2158   info_ptr = partial_read_comp_unit_head (&cu.header, info_ptr,
2159                                           buffer, buffer_size,
2160                                           abfd);
2161
2162   /* Complete the cu_header.  */
2163   cu.header.offset = beg_of_comp_unit - buffer;
2164   cu.header.first_die_offset = info_ptr - beg_of_comp_unit;
2165
2166   this_cu->cu = &cu;
2167   cu.per_cu = this_cu;
2168
2169   dwarf2_read_abbrevs (abfd, &cu);
2170   make_cleanup (dwarf2_free_abbrev_table, &cu);
2171
2172   if (this_cu->from_debug_types)
2173     info_ptr += 8 /*signature*/ + cu.header.offset_size;
2174   init_cu_die_reader (&reader_specs, &cu);
2175   read_full_die (&reader_specs, &comp_unit_die, info_ptr,
2176                  &has_children);
2177
2178   lh = NULL;
2179   slot = NULL;
2180   line_offset = 0;
2181   attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, &cu);
2182   if (attr)
2183     {
2184       struct quick_file_names find_entry;
2185
2186       line_offset = DW_UNSND (attr);
2187
2188       /* We may have already read in this line header (TU line header sharing).
2189          If we have we're done.  */
2190       find_entry.offset = line_offset;
2191       slot = htab_find_slot (dwarf2_per_objfile->quick_file_names_table,
2192                              &find_entry, INSERT);
2193       if (*slot != NULL)
2194         {
2195           do_cleanups (cleanups);
2196           this_cu->v.quick->file_names = *slot;
2197           return *slot;
2198         }
2199
2200       lh = dwarf_decode_line_header (line_offset, abfd, &cu);
2201     }
2202   if (lh == NULL)
2203     {
2204       do_cleanups (cleanups);
2205       this_cu->v.quick->no_file_data = 1;
2206       return NULL;
2207     }
2208
2209   qfn = obstack_alloc (&objfile->objfile_obstack, sizeof (*qfn));
2210   qfn->offset = line_offset;
2211   gdb_assert (slot != NULL);
2212   *slot = qfn;
2213
2214   find_file_and_directory (comp_unit_die, &cu, &name, &comp_dir);
2215
2216   qfn->num_file_names = lh->num_file_names;
2217   qfn->file_names = obstack_alloc (&objfile->objfile_obstack,
2218                                    lh->num_file_names * sizeof (char *));
2219   for (i = 0; i < lh->num_file_names; ++i)
2220     qfn->file_names[i] = file_full_name (i + 1, lh, comp_dir);
2221   qfn->real_names = NULL;
2222
2223   free_line_header (lh);
2224   do_cleanups (cleanups);
2225
2226   this_cu->v.quick->file_names = qfn;
2227   return qfn;
2228 }
2229
2230 /* A helper for the "quick" functions which computes and caches the
2231    real path for a given file name from the line table.  */
2232
2233 static const char *
2234 dw2_get_real_path (struct objfile *objfile,
2235                    struct quick_file_names *qfn, int index)
2236 {
2237   if (qfn->real_names == NULL)
2238     qfn->real_names = OBSTACK_CALLOC (&objfile->objfile_obstack,
2239                                       qfn->num_file_names, sizeof (char *));
2240
2241   if (qfn->real_names[index] == NULL)
2242     qfn->real_names[index] = gdb_realpath (qfn->file_names[index]);
2243
2244   return qfn->real_names[index];
2245 }
2246
2247 static struct symtab *
2248 dw2_find_last_source_symtab (struct objfile *objfile)
2249 {
2250   int index;
2251
2252   dw2_setup (objfile);
2253   index = dwarf2_per_objfile->n_comp_units - 1;
2254   return dw2_instantiate_symtab (objfile, dw2_get_cu (index));
2255 }
2256
2257 /* Traversal function for dw2_forget_cached_source_info.  */
2258
2259 static int
2260 dw2_free_cached_file_names (void **slot, void *info)
2261 {
2262   struct quick_file_names *file_data = (struct quick_file_names *) *slot;
2263
2264   if (file_data->real_names)
2265     {
2266       int i;
2267
2268       for (i = 0; i < file_data->num_file_names; ++i)
2269         {
2270           xfree ((void*) file_data->real_names[i]);
2271           file_data->real_names[i] = NULL;
2272         }
2273     }
2274
2275   return 1;
2276 }
2277
2278 static void
2279 dw2_forget_cached_source_info (struct objfile *objfile)
2280 {
2281   dw2_setup (objfile);
2282
2283   htab_traverse_noresize (dwarf2_per_objfile->quick_file_names_table,
2284                           dw2_free_cached_file_names, NULL);
2285 }
2286
2287 static int
2288 dw2_lookup_symtab (struct objfile *objfile, const char *name,
2289                    const char *full_path, const char *real_path,
2290                    struct symtab **result)
2291 {
2292   int i;
2293   int check_basename = lbasename (name) == name;
2294   struct dwarf2_per_cu_data *base_cu = NULL;
2295
2296   dw2_setup (objfile);
2297
2298   for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2299                    + dwarf2_per_objfile->n_type_comp_units); ++i)
2300     {
2301       int j;
2302       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2303       struct quick_file_names *file_data;
2304
2305       if (per_cu->v.quick->symtab)
2306         continue;
2307
2308       file_data = dw2_get_file_names (objfile, per_cu);
2309       if (file_data == NULL)
2310         continue;
2311
2312       for (j = 0; j < file_data->num_file_names; ++j)
2313         {
2314           const char *this_name = file_data->file_names[j];
2315
2316           if (FILENAME_CMP (name, this_name) == 0)
2317             {
2318               *result = dw2_instantiate_symtab (objfile, per_cu);
2319               return 1;
2320             }
2321
2322           if (check_basename && ! base_cu
2323               && FILENAME_CMP (lbasename (this_name), name) == 0)
2324             base_cu = per_cu;
2325
2326           if (full_path != NULL)
2327             {
2328               const char *this_real_name = dw2_get_real_path (objfile,
2329                                                               file_data, j);
2330
2331               if (this_real_name != NULL
2332                   && FILENAME_CMP (full_path, this_real_name) == 0)
2333                 {
2334                   *result = dw2_instantiate_symtab (objfile, per_cu);
2335                   return 1;
2336                 }
2337             }
2338
2339           if (real_path != NULL)
2340             {
2341               const char *this_real_name = dw2_get_real_path (objfile,
2342                                                               file_data, j);
2343
2344               if (this_real_name != NULL
2345                   && FILENAME_CMP (real_path, this_real_name) == 0)
2346                 {
2347                   *result = dw2_instantiate_symtab (objfile, per_cu);
2348                   return 1;
2349                 }
2350             }
2351         }
2352     }
2353
2354   if (base_cu)
2355     {
2356       *result = dw2_instantiate_symtab (objfile, base_cu);
2357       return 1;
2358     }
2359
2360   return 0;
2361 }
2362
2363 static struct symtab *
2364 dw2_lookup_symbol (struct objfile *objfile, int block_index,
2365                    const char *name, domain_enum domain)
2366 {
2367   /* We do all the work in the pre_expand_symtabs_matching hook
2368      instead.  */
2369   return NULL;
2370 }
2371
2372 /* A helper function that expands all symtabs that hold an object
2373    named NAME.  */
2374
2375 static void
2376 dw2_do_expand_symtabs_matching (struct objfile *objfile, const char *name)
2377 {
2378   dw2_setup (objfile);
2379
2380   /* index_table is NULL if OBJF_READNOW.  */
2381   if (dwarf2_per_objfile->index_table)
2382     {
2383       offset_type *vec;
2384
2385       if (find_slot_in_mapped_hash (dwarf2_per_objfile->index_table,
2386                                     name, &vec))
2387         {
2388           offset_type i, len = MAYBE_SWAP (*vec);
2389           for (i = 0; i < len; ++i)
2390             {
2391               offset_type cu_index = MAYBE_SWAP (vec[i + 1]);
2392               struct dwarf2_per_cu_data *per_cu = dw2_get_cu (cu_index);
2393
2394               dw2_instantiate_symtab (objfile, per_cu);
2395             }
2396         }
2397     }
2398 }
2399
2400 static void
2401 dw2_pre_expand_symtabs_matching (struct objfile *objfile,
2402                                  int kind, const char *name,
2403                                  domain_enum domain)
2404 {
2405   dw2_do_expand_symtabs_matching (objfile, name);
2406 }
2407
2408 static void
2409 dw2_print_stats (struct objfile *objfile)
2410 {
2411   int i, count;
2412
2413   dw2_setup (objfile);
2414   count = 0;
2415   for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2416                    + dwarf2_per_objfile->n_type_comp_units); ++i)
2417     {
2418       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2419
2420       if (!per_cu->v.quick->symtab)
2421         ++count;
2422     }
2423   printf_filtered (_("  Number of unread CUs: %d\n"), count);
2424 }
2425
2426 static void
2427 dw2_dump (struct objfile *objfile)
2428 {
2429   /* Nothing worth printing.  */
2430 }
2431
2432 static void
2433 dw2_relocate (struct objfile *objfile, struct section_offsets *new_offsets,
2434               struct section_offsets *delta)
2435 {
2436   /* There's nothing to relocate here.  */
2437 }
2438
2439 static void
2440 dw2_expand_symtabs_for_function (struct objfile *objfile,
2441                                  const char *func_name)
2442 {
2443   dw2_do_expand_symtabs_matching (objfile, func_name);
2444 }
2445
2446 static void
2447 dw2_expand_all_symtabs (struct objfile *objfile)
2448 {
2449   int i;
2450
2451   dw2_setup (objfile);
2452
2453   for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2454                    + dwarf2_per_objfile->n_type_comp_units); ++i)
2455     {
2456       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2457
2458       dw2_instantiate_symtab (objfile, per_cu);
2459     }
2460 }
2461
2462 static void
2463 dw2_expand_symtabs_with_filename (struct objfile *objfile,
2464                                   const char *filename)
2465 {
2466   int i;
2467
2468   dw2_setup (objfile);
2469
2470   /* We don't need to consider type units here.
2471      This is only called for examining code, e.g. expand_line_sal.
2472      There can be an order of magnitude (or more) more type units
2473      than comp units, and we avoid them if we can.  */
2474
2475   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
2476     {
2477       int j;
2478       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2479       struct quick_file_names *file_data;
2480
2481       if (per_cu->v.quick->symtab)
2482         continue;
2483
2484       file_data = dw2_get_file_names (objfile, per_cu);
2485       if (file_data == NULL)
2486         continue;
2487
2488       for (j = 0; j < file_data->num_file_names; ++j)
2489         {
2490           const char *this_name = file_data->file_names[j];
2491           if (FILENAME_CMP (this_name, filename) == 0)
2492             {
2493               dw2_instantiate_symtab (objfile, per_cu);
2494               break;
2495             }
2496         }
2497     }
2498 }
2499
2500 static const char *
2501 dw2_find_symbol_file (struct objfile *objfile, const char *name)
2502 {
2503   struct dwarf2_per_cu_data *per_cu;
2504   offset_type *vec;
2505   struct quick_file_names *file_data;
2506
2507   dw2_setup (objfile);
2508
2509   /* index_table is NULL if OBJF_READNOW.  */
2510   if (!dwarf2_per_objfile->index_table)
2511     return NULL;
2512
2513   if (!find_slot_in_mapped_hash (dwarf2_per_objfile->index_table,
2514                                  name, &vec))
2515     return NULL;
2516
2517   /* Note that this just looks at the very first one named NAME -- but
2518      actually we are looking for a function.  find_main_filename
2519      should be rewritten so that it doesn't require a custom hook.  It
2520      could just use the ordinary symbol tables.  */
2521   /* vec[0] is the length, which must always be >0.  */
2522   per_cu = dw2_get_cu (MAYBE_SWAP (vec[1]));
2523
2524   file_data = dw2_get_file_names (objfile, per_cu);
2525   if (file_data == NULL)
2526     return NULL;
2527
2528   return file_data->file_names[file_data->num_file_names - 1];
2529 }
2530
2531 static void
2532 dw2_map_matching_symbols (const char * name, domain_enum namespace,
2533                           struct objfile *objfile, int global,
2534                           int (*callback) (struct block *,
2535                                            struct symbol *, void *),
2536                           void *data, symbol_compare_ftype *match,
2537                           symbol_compare_ftype *ordered_compare)
2538 {
2539   /* Currently unimplemented; used for Ada.  The function can be called if the
2540      current language is Ada for a non-Ada objfile using GNU index.  As Ada
2541      does not look for non-Ada symbols this function should just return.  */
2542 }
2543
2544 static void
2545 dw2_expand_symtabs_matching (struct objfile *objfile,
2546                              int (*file_matcher) (const char *, void *),
2547                              int (*name_matcher) (const char *, void *),
2548                              domain_enum kind,
2549                              void *data)
2550 {
2551   int i;
2552   offset_type iter;
2553   struct mapped_index *index;
2554
2555   dw2_setup (objfile);
2556
2557   /* index_table is NULL if OBJF_READNOW.  */
2558   if (!dwarf2_per_objfile->index_table)
2559     return;
2560   index = dwarf2_per_objfile->index_table;
2561
2562   for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2563                    + dwarf2_per_objfile->n_type_comp_units); ++i)
2564     {
2565       int j;
2566       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2567       struct quick_file_names *file_data;
2568
2569       per_cu->v.quick->mark = 0;
2570       if (per_cu->v.quick->symtab)
2571         continue;
2572
2573       file_data = dw2_get_file_names (objfile, per_cu);
2574       if (file_data == NULL)
2575         continue;
2576
2577       for (j = 0; j < file_data->num_file_names; ++j)
2578         {
2579           if (file_matcher (file_data->file_names[j], data))
2580             {
2581               per_cu->v.quick->mark = 1;
2582               break;
2583             }
2584         }
2585     }
2586
2587   for (iter = 0; iter < index->symbol_table_slots; ++iter)
2588     {
2589       offset_type idx = 2 * iter;
2590       const char *name;
2591       offset_type *vec, vec_len, vec_idx;
2592
2593       if (index->symbol_table[idx] == 0 && index->symbol_table[idx + 1] == 0)
2594         continue;
2595
2596       name = index->constant_pool + MAYBE_SWAP (index->symbol_table[idx]);
2597
2598       if (! (*name_matcher) (name, data))
2599         continue;
2600
2601       /* The name was matched, now expand corresponding CUs that were
2602          marked.  */
2603       vec = (offset_type *) (index->constant_pool
2604                              + MAYBE_SWAP (index->symbol_table[idx + 1]));
2605       vec_len = MAYBE_SWAP (vec[0]);
2606       for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
2607         {
2608           struct dwarf2_per_cu_data *per_cu;
2609
2610           per_cu = dw2_get_cu (MAYBE_SWAP (vec[vec_idx + 1]));
2611           if (per_cu->v.quick->mark)
2612             dw2_instantiate_symtab (objfile, per_cu);
2613         }
2614     }
2615 }
2616
2617 static struct symtab *
2618 dw2_find_pc_sect_symtab (struct objfile *objfile,
2619                          struct minimal_symbol *msymbol,
2620                          CORE_ADDR pc,
2621                          struct obj_section *section,
2622                          int warn_if_readin)
2623 {
2624   struct dwarf2_per_cu_data *data;
2625
2626   dw2_setup (objfile);
2627
2628   if (!objfile->psymtabs_addrmap)
2629     return NULL;
2630
2631   data = addrmap_find (objfile->psymtabs_addrmap, pc);
2632   if (!data)
2633     return NULL;
2634
2635   if (warn_if_readin && data->v.quick->symtab)
2636     warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
2637              paddress (get_objfile_arch (objfile), pc));
2638
2639   return dw2_instantiate_symtab (objfile, data);
2640 }
2641
2642 static void
2643 dw2_map_symbol_names (struct objfile *objfile,
2644                       void (*fun) (const char *, void *),
2645                       void *data)
2646 {
2647   offset_type iter;
2648   struct mapped_index *index;
2649
2650   dw2_setup (objfile);
2651
2652   /* index_table is NULL if OBJF_READNOW.  */
2653   if (!dwarf2_per_objfile->index_table)
2654     return;
2655   index = dwarf2_per_objfile->index_table;
2656
2657   for (iter = 0; iter < index->symbol_table_slots; ++iter)
2658     {
2659       offset_type idx = 2 * iter;
2660       const char *name;
2661       offset_type *vec, vec_len, vec_idx;
2662
2663       if (index->symbol_table[idx] == 0 && index->symbol_table[idx + 1] == 0)
2664         continue;
2665
2666       name = (index->constant_pool + MAYBE_SWAP (index->symbol_table[idx]));
2667
2668       (*fun) (name, data);
2669     }
2670 }
2671
2672 static void
2673 dw2_map_symbol_filenames (struct objfile *objfile,
2674                           void (*fun) (const char *, const char *, void *),
2675                           void *data)
2676 {
2677   int i;
2678
2679   dw2_setup (objfile);
2680
2681   for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2682                    + dwarf2_per_objfile->n_type_comp_units); ++i)
2683     {
2684       int j;
2685       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2686       struct quick_file_names *file_data;
2687
2688       if (per_cu->v.quick->symtab)
2689         continue;
2690
2691       file_data = dw2_get_file_names (objfile, per_cu);
2692       if (file_data == NULL)
2693         continue;
2694
2695       for (j = 0; j < file_data->num_file_names; ++j)
2696         {
2697           const char *this_real_name = dw2_get_real_path (objfile, file_data,
2698                                                           j);
2699           (*fun) (file_data->file_names[j], this_real_name, data);
2700         }
2701     }
2702 }
2703
2704 static int
2705 dw2_has_symbols (struct objfile *objfile)
2706 {
2707   return 1;
2708 }
2709
2710 const struct quick_symbol_functions dwarf2_gdb_index_functions =
2711 {
2712   dw2_has_symbols,
2713   dw2_find_last_source_symtab,
2714   dw2_forget_cached_source_info,
2715   dw2_lookup_symtab,
2716   dw2_lookup_symbol,
2717   dw2_pre_expand_symtabs_matching,
2718   dw2_print_stats,
2719   dw2_dump,
2720   dw2_relocate,
2721   dw2_expand_symtabs_for_function,
2722   dw2_expand_all_symtabs,
2723   dw2_expand_symtabs_with_filename,
2724   dw2_find_symbol_file,
2725   dw2_map_matching_symbols,
2726   dw2_expand_symtabs_matching,
2727   dw2_find_pc_sect_symtab,
2728   dw2_map_symbol_names,
2729   dw2_map_symbol_filenames
2730 };
2731
2732 /* Initialize for reading DWARF for this objfile.  Return 0 if this
2733    file will use psymtabs, or 1 if using the GNU index.  */
2734
2735 int
2736 dwarf2_initialize_objfile (struct objfile *objfile)
2737 {
2738   /* If we're about to read full symbols, don't bother with the
2739      indices.  In this case we also don't care if some other debug
2740      format is making psymtabs, because they are all about to be
2741      expanded anyway.  */
2742   if ((objfile->flags & OBJF_READNOW))
2743     {
2744       int i;
2745
2746       dwarf2_per_objfile->using_index = 1;
2747       create_all_comp_units (objfile);
2748       create_debug_types_hash_table (objfile);
2749       dwarf2_per_objfile->quick_file_names_table =
2750         create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
2751
2752       for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2753                        + dwarf2_per_objfile->n_type_comp_units); ++i)
2754         {
2755           struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2756
2757           per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2758                                             struct dwarf2_per_cu_quick_data);
2759         }
2760
2761       /* Return 1 so that gdb sees the "quick" functions.  However,
2762          these functions will be no-ops because we will have expanded
2763          all symtabs.  */
2764       return 1;
2765     }
2766
2767   if (dwarf2_read_index (objfile))
2768     return 1;
2769
2770   dwarf2_build_psymtabs (objfile);
2771   return 0;
2772 }
2773
2774 \f
2775
2776 /* Build a partial symbol table.  */
2777
2778 void
2779 dwarf2_build_psymtabs (struct objfile *objfile)
2780 {
2781   if (objfile->global_psymbols.size == 0 && objfile->static_psymbols.size == 0)
2782     {
2783       init_psymbol_list (objfile, 1024);
2784     }
2785
2786   dwarf2_build_psymtabs_hard (objfile);
2787 }
2788
2789 /* Return TRUE if OFFSET is within CU_HEADER.  */
2790
2791 static inline int
2792 offset_in_cu_p (const struct comp_unit_head *cu_header, unsigned int offset)
2793 {
2794   unsigned int bottom = cu_header->offset;
2795   unsigned int top = (cu_header->offset
2796                       + cu_header->length
2797                       + cu_header->initial_length_size);
2798
2799   return (offset >= bottom && offset < top);
2800 }
2801
2802 /* Read in the comp unit header information from the debug_info at info_ptr.
2803    NOTE: This leaves members offset, first_die_offset to be filled in
2804    by the caller.  */
2805
2806 static gdb_byte *
2807 read_comp_unit_head (struct comp_unit_head *cu_header,
2808                      gdb_byte *info_ptr, bfd *abfd)
2809 {
2810   int signed_addr;
2811   unsigned int bytes_read;
2812
2813   cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
2814   cu_header->initial_length_size = bytes_read;
2815   cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
2816   info_ptr += bytes_read;
2817   cu_header->version = read_2_bytes (abfd, info_ptr);
2818   info_ptr += 2;
2819   cu_header->abbrev_offset = read_offset (abfd, info_ptr, cu_header,
2820                                           &bytes_read);
2821   info_ptr += bytes_read;
2822   cu_header->addr_size = read_1_byte (abfd, info_ptr);
2823   info_ptr += 1;
2824   signed_addr = bfd_get_sign_extend_vma (abfd);
2825   if (signed_addr < 0)
2826     internal_error (__FILE__, __LINE__,
2827                     _("read_comp_unit_head: dwarf from non elf file"));
2828   cu_header->signed_addr_p = signed_addr;
2829
2830   return info_ptr;
2831 }
2832
2833 static gdb_byte *
2834 partial_read_comp_unit_head (struct comp_unit_head *header, gdb_byte *info_ptr,
2835                              gdb_byte *buffer, unsigned int buffer_size,
2836                              bfd *abfd)
2837 {
2838   gdb_byte *beg_of_comp_unit = info_ptr;
2839
2840   info_ptr = read_comp_unit_head (header, info_ptr, abfd);
2841
2842   if (header->version != 2 && header->version != 3 && header->version != 4)
2843     error (_("Dwarf Error: wrong version in compilation unit header "
2844            "(is %d, should be 2, 3, or 4) [in module %s]"), header->version,
2845            bfd_get_filename (abfd));
2846
2847   if (header->abbrev_offset
2848       >= dwarf2_section_size (dwarf2_per_objfile->objfile,
2849                               &dwarf2_per_objfile->abbrev))
2850     error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
2851            "(offset 0x%lx + 6) [in module %s]"),
2852            (long) header->abbrev_offset,
2853            (long) (beg_of_comp_unit - buffer),
2854            bfd_get_filename (abfd));
2855
2856   if (beg_of_comp_unit + header->length + header->initial_length_size
2857       > buffer + buffer_size)
2858     error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
2859            "(offset 0x%lx + 0) [in module %s]"),
2860            (long) header->length,
2861            (long) (beg_of_comp_unit - buffer),
2862            bfd_get_filename (abfd));
2863
2864   return info_ptr;
2865 }
2866
2867 /* Read in the types comp unit header information from .debug_types entry at
2868    types_ptr.  The result is a pointer to one past the end of the header.  */
2869
2870 static gdb_byte *
2871 read_type_comp_unit_head (struct comp_unit_head *cu_header,
2872                           ULONGEST *signature,
2873                           gdb_byte *types_ptr, bfd *abfd)
2874 {
2875   gdb_byte *initial_types_ptr = types_ptr;
2876
2877   dwarf2_read_section (dwarf2_per_objfile->objfile,
2878                        &dwarf2_per_objfile->types);
2879   cu_header->offset = types_ptr - dwarf2_per_objfile->types.buffer;
2880
2881   types_ptr = read_comp_unit_head (cu_header, types_ptr, abfd);
2882
2883   *signature = read_8_bytes (abfd, types_ptr);
2884   types_ptr += 8;
2885   types_ptr += cu_header->offset_size;
2886   cu_header->first_die_offset = types_ptr - initial_types_ptr;
2887
2888   return types_ptr;
2889 }
2890
2891 /* Allocate a new partial symtab for file named NAME and mark this new
2892    partial symtab as being an include of PST.  */
2893
2894 static void
2895 dwarf2_create_include_psymtab (char *name, struct partial_symtab *pst,
2896                                struct objfile *objfile)
2897 {
2898   struct partial_symtab *subpst = allocate_psymtab (name, objfile);
2899
2900   subpst->section_offsets = pst->section_offsets;
2901   subpst->textlow = 0;
2902   subpst->texthigh = 0;
2903
2904   subpst->dependencies = (struct partial_symtab **)
2905     obstack_alloc (&objfile->objfile_obstack,
2906                    sizeof (struct partial_symtab *));
2907   subpst->dependencies[0] = pst;
2908   subpst->number_of_dependencies = 1;
2909
2910   subpst->globals_offset = 0;
2911   subpst->n_global_syms = 0;
2912   subpst->statics_offset = 0;
2913   subpst->n_static_syms = 0;
2914   subpst->symtab = NULL;
2915   subpst->read_symtab = pst->read_symtab;
2916   subpst->readin = 0;
2917
2918   /* No private part is necessary for include psymtabs.  This property
2919      can be used to differentiate between such include psymtabs and
2920      the regular ones.  */
2921   subpst->read_symtab_private = NULL;
2922 }
2923
2924 /* Read the Line Number Program data and extract the list of files
2925    included by the source file represented by PST.  Build an include
2926    partial symtab for each of these included files.  */
2927
2928 static void
2929 dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
2930                                struct die_info *die,
2931                                struct partial_symtab *pst)
2932 {
2933   struct objfile *objfile = cu->objfile;
2934   bfd *abfd = objfile->obfd;
2935   struct line_header *lh = NULL;
2936   struct attribute *attr;
2937
2938   attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
2939   if (attr)
2940     {
2941       unsigned int line_offset = DW_UNSND (attr);
2942
2943       lh = dwarf_decode_line_header (line_offset, abfd, cu);
2944     }
2945   if (lh == NULL)
2946     return;  /* No linetable, so no includes.  */
2947
2948   /* NOTE: pst->dirname is DW_AT_comp_dir (if present).  */
2949   dwarf_decode_lines (lh, pst->dirname, abfd, cu, pst);
2950
2951   free_line_header (lh);
2952 }
2953
2954 static hashval_t
2955 hash_type_signature (const void *item)
2956 {
2957   const struct signatured_type *type_sig = item;
2958
2959   /* This drops the top 32 bits of the signature, but is ok for a hash.  */
2960   return type_sig->signature;
2961 }
2962
2963 static int
2964 eq_type_signature (const void *item_lhs, const void *item_rhs)
2965 {
2966   const struct signatured_type *lhs = item_lhs;
2967   const struct signatured_type *rhs = item_rhs;
2968
2969   return lhs->signature == rhs->signature;
2970 }
2971
2972 /* Allocate a hash table for signatured types.  */
2973
2974 static htab_t
2975 allocate_signatured_type_table (struct objfile *objfile)
2976 {
2977   return htab_create_alloc_ex (41,
2978                                hash_type_signature,
2979                                eq_type_signature,
2980                                NULL,
2981                                &objfile->objfile_obstack,
2982                                hashtab_obstack_allocate,
2983                                dummy_obstack_deallocate);
2984 }
2985
2986 /* A helper function to add a signatured type CU to a list.  */
2987
2988 static int
2989 add_signatured_type_cu_to_list (void **slot, void *datum)
2990 {
2991   struct signatured_type *sigt = *slot;
2992   struct dwarf2_per_cu_data ***datap = datum;
2993
2994   **datap = &sigt->per_cu;
2995   ++*datap;
2996
2997   return 1;
2998 }
2999
3000 /* Create the hash table of all entries in the .debug_types section.
3001    The result is zero if there is an error (e.g. missing .debug_types section),
3002    otherwise non-zero.  */
3003
3004 static int
3005 create_debug_types_hash_table (struct objfile *objfile)
3006 {
3007   gdb_byte *info_ptr;
3008   htab_t types_htab;
3009   struct dwarf2_per_cu_data **iter;
3010
3011   dwarf2_read_section (objfile, &dwarf2_per_objfile->types);
3012   info_ptr = dwarf2_per_objfile->types.buffer;
3013
3014   if (info_ptr == NULL)
3015     {
3016       dwarf2_per_objfile->signatured_types = NULL;
3017       return 0;
3018     }
3019
3020   types_htab = allocate_signatured_type_table (objfile);
3021
3022   if (dwarf2_die_debug)
3023     fprintf_unfiltered (gdb_stdlog, "Signatured types:\n");
3024
3025   while (info_ptr < dwarf2_per_objfile->types.buffer
3026          + dwarf2_per_objfile->types.size)
3027     {
3028       unsigned int offset;
3029       unsigned int offset_size;
3030       unsigned int type_offset;
3031       unsigned int length, initial_length_size;
3032       unsigned short version;
3033       ULONGEST signature;
3034       struct signatured_type *type_sig;
3035       void **slot;
3036       gdb_byte *ptr = info_ptr;
3037
3038       offset = ptr - dwarf2_per_objfile->types.buffer;
3039
3040       /* We need to read the type's signature in order to build the hash
3041          table, but we don't need to read anything else just yet.  */
3042
3043       /* Sanity check to ensure entire cu is present.  */
3044       length = read_initial_length (objfile->obfd, ptr, &initial_length_size);
3045       if (ptr + length + initial_length_size
3046           > dwarf2_per_objfile->types.buffer + dwarf2_per_objfile->types.size)
3047         {
3048           complaint (&symfile_complaints,
3049                      _("debug type entry runs off end "
3050                        "of `.debug_types' section, ignored"));
3051           break;
3052         }
3053
3054       offset_size = initial_length_size == 4 ? 4 : 8;
3055       ptr += initial_length_size;
3056       version = bfd_get_16 (objfile->obfd, ptr);
3057       ptr += 2;
3058       ptr += offset_size; /* abbrev offset */
3059       ptr += 1; /* address size */
3060       signature = bfd_get_64 (objfile->obfd, ptr);
3061       ptr += 8;
3062       type_offset = read_offset_1 (objfile->obfd, ptr, offset_size);
3063
3064       type_sig = obstack_alloc (&objfile->objfile_obstack, sizeof (*type_sig));
3065       memset (type_sig, 0, sizeof (*type_sig));
3066       type_sig->signature = signature;
3067       type_sig->offset = offset;
3068       type_sig->type_offset = type_offset;
3069       type_sig->per_cu.objfile = objfile;
3070       type_sig->per_cu.from_debug_types = 1;
3071
3072       slot = htab_find_slot (types_htab, type_sig, INSERT);
3073       gdb_assert (slot != NULL);
3074       *slot = type_sig;
3075
3076       if (dwarf2_die_debug)
3077         fprintf_unfiltered (gdb_stdlog, "  offset 0x%x, signature 0x%s\n",
3078                             offset, phex (signature, sizeof (signature)));
3079
3080       info_ptr = info_ptr + initial_length_size + length;
3081     }
3082
3083   dwarf2_per_objfile->signatured_types = types_htab;
3084
3085   dwarf2_per_objfile->n_type_comp_units = htab_elements (types_htab);
3086   dwarf2_per_objfile->type_comp_units
3087     = obstack_alloc (&objfile->objfile_obstack,
3088                      dwarf2_per_objfile->n_type_comp_units
3089                      * sizeof (struct dwarf2_per_cu_data *));
3090   iter = &dwarf2_per_objfile->type_comp_units[0];
3091   htab_traverse_noresize (types_htab, add_signatured_type_cu_to_list, &iter);
3092   gdb_assert (iter - &dwarf2_per_objfile->type_comp_units[0]
3093               == dwarf2_per_objfile->n_type_comp_units);
3094
3095   return 1;
3096 }
3097
3098 /* Lookup a signature based type.
3099    Returns NULL if SIG is not present in the table.  */
3100
3101 static struct signatured_type *
3102 lookup_signatured_type (struct objfile *objfile, ULONGEST sig)
3103 {
3104   struct signatured_type find_entry, *entry;
3105
3106   if (dwarf2_per_objfile->signatured_types == NULL)
3107     {
3108       complaint (&symfile_complaints,
3109                  _("missing `.debug_types' section for DW_FORM_sig8 die"));
3110       return 0;
3111     }
3112
3113   find_entry.signature = sig;
3114   entry = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
3115   return entry;
3116 }
3117
3118 /* Initialize a die_reader_specs struct from a dwarf2_cu struct.  */
3119
3120 static void
3121 init_cu_die_reader (struct die_reader_specs *reader,
3122                     struct dwarf2_cu *cu)
3123 {
3124   reader->abfd = cu->objfile->obfd;
3125   reader->cu = cu;
3126   if (cu->per_cu->from_debug_types)
3127     {
3128       gdb_assert (dwarf2_per_objfile->types.readin);
3129       reader->buffer = dwarf2_per_objfile->types.buffer;
3130     }
3131   else
3132     {
3133       gdb_assert (dwarf2_per_objfile->info.readin);
3134       reader->buffer = dwarf2_per_objfile->info.buffer;
3135     }
3136 }
3137
3138 /* Find the base address of the compilation unit for range lists and
3139    location lists.  It will normally be specified by DW_AT_low_pc.
3140    In DWARF-3 draft 4, the base address could be overridden by
3141    DW_AT_entry_pc.  It's been removed, but GCC still uses this for
3142    compilation units with discontinuous ranges.  */
3143
3144 static void
3145 dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
3146 {
3147   struct attribute *attr;
3148
3149   cu->base_known = 0;
3150   cu->base_address = 0;
3151
3152   attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
3153   if (attr)
3154     {
3155       cu->base_address = DW_ADDR (attr);
3156       cu->base_known = 1;
3157     }
3158   else
3159     {
3160       attr = dwarf2_attr (die, DW_AT_low_pc, cu);
3161       if (attr)
3162         {
3163           cu->base_address = DW_ADDR (attr);
3164           cu->base_known = 1;
3165         }
3166     }
3167 }
3168
3169 /* Subroutine of process_type_comp_unit and dwarf2_build_psymtabs_hard
3170    to combine the common parts.
3171    Process a compilation unit for a psymtab.
3172    BUFFER is a pointer to the beginning of the dwarf section buffer,
3173    either .debug_info or debug_types.
3174    INFO_PTR is a pointer to the start of the CU.
3175    Returns a pointer to the next CU.  */
3176
3177 static gdb_byte *
3178 process_psymtab_comp_unit (struct objfile *objfile,
3179                            struct dwarf2_per_cu_data *this_cu,
3180                            gdb_byte *buffer, gdb_byte *info_ptr,
3181                            unsigned int buffer_size)
3182 {
3183   bfd *abfd = objfile->obfd;
3184   gdb_byte *beg_of_comp_unit = info_ptr;
3185   struct die_info *comp_unit_die;
3186   struct partial_symtab *pst;
3187   CORE_ADDR baseaddr;
3188   struct cleanup *back_to_inner;
3189   struct dwarf2_cu cu;
3190   int has_children, has_pc_info;
3191   struct attribute *attr;
3192   CORE_ADDR best_lowpc = 0, best_highpc = 0;
3193   struct die_reader_specs reader_specs;
3194
3195   init_one_comp_unit (&cu, objfile);
3196   back_to_inner = make_cleanup (free_stack_comp_unit, &cu);
3197
3198   info_ptr = partial_read_comp_unit_head (&cu.header, info_ptr,
3199                                           buffer, buffer_size,
3200                                           abfd);
3201
3202   /* Complete the cu_header.  */
3203   cu.header.offset = beg_of_comp_unit - buffer;
3204   cu.header.first_die_offset = info_ptr - beg_of_comp_unit;
3205
3206   cu.list_in_scope = &file_symbols;
3207
3208   /* If this compilation unit was already read in, free the
3209      cached copy in order to read it in again.  This is
3210      necessary because we skipped some symbols when we first
3211      read in the compilation unit (see load_partial_dies).
3212      This problem could be avoided, but the benefit is
3213      unclear.  */
3214   if (this_cu->cu != NULL)
3215     free_one_cached_comp_unit (this_cu->cu);
3216
3217   /* Note that this is a pointer to our stack frame, being
3218      added to a global data structure.  It will be cleaned up
3219      in free_stack_comp_unit when we finish with this
3220      compilation unit.  */
3221   this_cu->cu = &cu;
3222   cu.per_cu = this_cu;
3223
3224   /* Read the abbrevs for this compilation unit into a table.  */
3225   dwarf2_read_abbrevs (abfd, &cu);
3226   make_cleanup (dwarf2_free_abbrev_table, &cu);
3227
3228   /* Read the compilation unit die.  */
3229   if (this_cu->from_debug_types)
3230     info_ptr += 8 /*signature*/ + cu.header.offset_size;
3231   init_cu_die_reader (&reader_specs, &cu);
3232   info_ptr = read_full_die (&reader_specs, &comp_unit_die, info_ptr,
3233                             &has_children);
3234
3235   if (this_cu->from_debug_types)
3236     {
3237       /* offset,length haven't been set yet for type units.  */
3238       this_cu->offset = cu.header.offset;
3239       this_cu->length = cu.header.length + cu.header.initial_length_size;
3240     }
3241   else if (comp_unit_die->tag == DW_TAG_partial_unit)
3242     {
3243       info_ptr = (beg_of_comp_unit + cu.header.length
3244                   + cu.header.initial_length_size);
3245       do_cleanups (back_to_inner);
3246       return info_ptr;
3247     }
3248
3249   prepare_one_comp_unit (&cu, comp_unit_die);
3250
3251   /* Allocate a new partial symbol table structure.  */
3252   attr = dwarf2_attr (comp_unit_die, DW_AT_name, &cu);
3253   pst = start_psymtab_common (objfile, objfile->section_offsets,
3254                               (attr != NULL) ? DW_STRING (attr) : "",
3255                               /* TEXTLOW and TEXTHIGH are set below.  */
3256                               0,
3257                               objfile->global_psymbols.next,
3258                               objfile->static_psymbols.next);
3259
3260   attr = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, &cu);
3261   if (attr != NULL)
3262     pst->dirname = DW_STRING (attr);
3263
3264   pst->read_symtab_private = this_cu;
3265
3266   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3267
3268   /* Store the function that reads in the rest of the symbol table.  */
3269   pst->read_symtab = dwarf2_psymtab_to_symtab;
3270
3271   this_cu->v.psymtab = pst;
3272
3273   dwarf2_find_base_address (comp_unit_die, &cu);
3274
3275   /* Possibly set the default values of LOWPC and HIGHPC from
3276      `DW_AT_ranges'.  */
3277   has_pc_info = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
3278                                       &best_highpc, &cu, pst);
3279   if (has_pc_info == 1 && best_lowpc < best_highpc)
3280     /* Store the contiguous range if it is not empty; it can be empty for
3281        CUs with no code.  */
3282     addrmap_set_empty (objfile->psymtabs_addrmap,
3283                        best_lowpc + baseaddr,
3284                        best_highpc + baseaddr - 1, pst);
3285
3286   /* Check if comp unit has_children.
3287      If so, read the rest of the partial symbols from this comp unit.
3288      If not, there's no more debug_info for this comp unit.  */
3289   if (has_children)
3290     {
3291       struct partial_die_info *first_die;
3292       CORE_ADDR lowpc, highpc;
3293
3294       lowpc = ((CORE_ADDR) -1);
3295       highpc = ((CORE_ADDR) 0);
3296
3297       first_die = load_partial_dies (abfd, buffer, info_ptr, 1, &cu);
3298
3299       scan_partial_symbols (first_die, &lowpc, &highpc,
3300                             ! has_pc_info, &cu);
3301
3302       /* If we didn't find a lowpc, set it to highpc to avoid
3303          complaints from `maint check'.  */
3304       if (lowpc == ((CORE_ADDR) -1))
3305         lowpc = highpc;
3306
3307       /* If the compilation unit didn't have an explicit address range,
3308          then use the information extracted from its child dies.  */
3309       if (! has_pc_info)
3310         {
3311           best_lowpc = lowpc;
3312           best_highpc = highpc;
3313         }
3314     }
3315   pst->textlow = best_lowpc + baseaddr;
3316   pst->texthigh = best_highpc + baseaddr;
3317
3318   pst->n_global_syms = objfile->global_psymbols.next -
3319     (objfile->global_psymbols.list + pst->globals_offset);
3320   pst->n_static_syms = objfile->static_psymbols.next -
3321     (objfile->static_psymbols.list + pst->statics_offset);
3322   sort_pst_symbols (pst);
3323
3324   info_ptr = (beg_of_comp_unit + cu.header.length
3325               + cu.header.initial_length_size);
3326
3327   if (this_cu->from_debug_types)
3328     {
3329       /* It's not clear we want to do anything with stmt lists here.
3330          Waiting to see what gcc ultimately does.  */
3331     }
3332   else
3333     {
3334       /* Get the list of files included in the current compilation unit,
3335          and build a psymtab for each of them.  */
3336       dwarf2_build_include_psymtabs (&cu, comp_unit_die, pst);
3337     }
3338
3339   do_cleanups (back_to_inner);
3340
3341   return info_ptr;
3342 }
3343
3344 /* Traversal function for htab_traverse_noresize.
3345    Process one .debug_types comp-unit.  */
3346
3347 static int
3348 process_type_comp_unit (void **slot, void *info)
3349 {
3350   struct signatured_type *entry = (struct signatured_type *) *slot;
3351   struct objfile *objfile = (struct objfile *) info;
3352   struct dwarf2_per_cu_data *this_cu;
3353
3354   this_cu = &entry->per_cu;
3355
3356   gdb_assert (dwarf2_per_objfile->types.readin);
3357   process_psymtab_comp_unit (objfile, this_cu,
3358                              dwarf2_per_objfile->types.buffer,
3359                              dwarf2_per_objfile->types.buffer + entry->offset,
3360                              dwarf2_per_objfile->types.size);
3361
3362   return 1;
3363 }
3364
3365 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
3366    Build partial symbol tables for the .debug_types comp-units.  */
3367
3368 static void
3369 build_type_psymtabs (struct objfile *objfile)
3370 {
3371   if (! create_debug_types_hash_table (objfile))
3372     return;
3373
3374   htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
3375                           process_type_comp_unit, objfile);
3376 }
3377
3378 /* A cleanup function that clears objfile's psymtabs_addrmap field.  */
3379
3380 static void
3381 psymtabs_addrmap_cleanup (void *o)
3382 {
3383   struct objfile *objfile = o;
3384
3385   objfile->psymtabs_addrmap = NULL;
3386 }
3387
3388 /* Build the partial symbol table by doing a quick pass through the
3389    .debug_info and .debug_abbrev sections.  */
3390
3391 static void
3392 dwarf2_build_psymtabs_hard (struct objfile *objfile)
3393 {
3394   gdb_byte *info_ptr;
3395   struct cleanup *back_to, *addrmap_cleanup;
3396   struct obstack temp_obstack;
3397
3398   dwarf2_per_objfile->reading_partial_symbols = 1;
3399
3400   dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
3401   info_ptr = dwarf2_per_objfile->info.buffer;
3402
3403   /* Any cached compilation units will be linked by the per-objfile
3404      read_in_chain.  Make sure to free them when we're done.  */
3405   back_to = make_cleanup (free_cached_comp_units, NULL);
3406
3407   build_type_psymtabs (objfile);
3408
3409   create_all_comp_units (objfile);
3410
3411   /* Create a temporary address map on a temporary obstack.  We later
3412      copy this to the final obstack.  */
3413   obstack_init (&temp_obstack);
3414   make_cleanup_obstack_free (&temp_obstack);
3415   objfile->psymtabs_addrmap = addrmap_create_mutable (&temp_obstack);
3416   addrmap_cleanup = make_cleanup (psymtabs_addrmap_cleanup, objfile);
3417
3418   /* Since the objects we're extracting from .debug_info vary in
3419      length, only the individual functions to extract them (like
3420      read_comp_unit_head and load_partial_die) can really know whether
3421      the buffer is large enough to hold another complete object.
3422
3423      At the moment, they don't actually check that.  If .debug_info
3424      holds just one extra byte after the last compilation unit's dies,
3425      then read_comp_unit_head will happily read off the end of the
3426      buffer.  read_partial_die is similarly casual.  Those functions
3427      should be fixed.
3428
3429      For this loop condition, simply checking whether there's any data
3430      left at all should be sufficient.  */
3431
3432   while (info_ptr < (dwarf2_per_objfile->info.buffer
3433                      + dwarf2_per_objfile->info.size))
3434     {
3435       struct dwarf2_per_cu_data *this_cu;
3436
3437       this_cu = dwarf2_find_comp_unit (info_ptr
3438                                        - dwarf2_per_objfile->info.buffer,
3439                                        objfile);
3440
3441       info_ptr = process_psymtab_comp_unit (objfile, this_cu,
3442                                             dwarf2_per_objfile->info.buffer,
3443                                             info_ptr,
3444                                             dwarf2_per_objfile->info.size);
3445     }
3446
3447   objfile->psymtabs_addrmap = addrmap_create_fixed (objfile->psymtabs_addrmap,
3448                                                     &objfile->objfile_obstack);
3449   discard_cleanups (addrmap_cleanup);
3450
3451   do_cleanups (back_to);
3452 }
3453
3454 /* Load the partial DIEs for a secondary CU into memory.  */
3455
3456 static void
3457 load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu,
3458                         struct objfile *objfile)
3459 {
3460   bfd *abfd = objfile->obfd;
3461   gdb_byte *info_ptr, *beg_of_comp_unit;
3462   struct die_info *comp_unit_die;
3463   struct dwarf2_cu *cu;
3464   struct cleanup *free_abbrevs_cleanup, *free_cu_cleanup = NULL;
3465   int has_children;
3466   struct die_reader_specs reader_specs;
3467   int read_cu = 0;
3468
3469   gdb_assert (! this_cu->from_debug_types);
3470
3471   gdb_assert (dwarf2_per_objfile->info.readin);
3472   info_ptr = dwarf2_per_objfile->info.buffer + this_cu->offset;
3473   beg_of_comp_unit = info_ptr;
3474
3475   if (this_cu->cu == NULL)
3476     {
3477       cu = xmalloc (sizeof (*cu));
3478       init_one_comp_unit (cu, objfile);
3479
3480       read_cu = 1;
3481
3482       /* If an error occurs while loading, release our storage.  */
3483       free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
3484
3485       info_ptr = partial_read_comp_unit_head (&cu->header, info_ptr,
3486                                               dwarf2_per_objfile->info.buffer,
3487                                               dwarf2_per_objfile->info.size,
3488                                               abfd);
3489
3490       /* Complete the cu_header.  */
3491       cu->header.offset = this_cu->offset;
3492       cu->header.first_die_offset = info_ptr - beg_of_comp_unit;
3493
3494       /* Link this compilation unit into the compilation unit tree.  */
3495       this_cu->cu = cu;
3496       cu->per_cu = this_cu;
3497
3498       /* Link this CU into read_in_chain.  */
3499       this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
3500       dwarf2_per_objfile->read_in_chain = this_cu;
3501     }
3502   else
3503     {
3504       cu = this_cu->cu;
3505       info_ptr += cu->header.first_die_offset;
3506     }
3507
3508   /* Read the abbrevs for this compilation unit into a table.  */
3509   gdb_assert (cu->dwarf2_abbrevs == NULL);
3510   dwarf2_read_abbrevs (abfd, cu);
3511   free_abbrevs_cleanup = make_cleanup (dwarf2_free_abbrev_table, cu);
3512
3513   /* Read the compilation unit die.  */
3514   init_cu_die_reader (&reader_specs, cu);
3515   info_ptr = read_full_die (&reader_specs, &comp_unit_die, info_ptr,
3516                             &has_children);
3517
3518   prepare_one_comp_unit (cu, comp_unit_die);
3519
3520   /* Check if comp unit has_children.
3521      If so, read the rest of the partial symbols from this comp unit.
3522      If not, there's no more debug_info for this comp unit.  */
3523   if (has_children)
3524     load_partial_dies (abfd, dwarf2_per_objfile->info.buffer, info_ptr, 0, cu);
3525
3526   do_cleanups (free_abbrevs_cleanup);
3527
3528   if (read_cu)
3529     {
3530       /* We've successfully allocated this compilation unit.  Let our
3531          caller clean it up when finished with it.  */
3532       discard_cleanups (free_cu_cleanup);
3533     }
3534 }
3535
3536 /* Create a list of all compilation units in OBJFILE.  We do this only
3537    if an inter-comp-unit reference is found; presumably if there is one,
3538    there will be many, and one will occur early in the .debug_info section.
3539    So there's no point in building this list incrementally.  */
3540
3541 static void
3542 create_all_comp_units (struct objfile *objfile)
3543 {
3544   int n_allocated;
3545   int n_comp_units;
3546   struct dwarf2_per_cu_data **all_comp_units;
3547   gdb_byte *info_ptr;
3548
3549   dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
3550   info_ptr = dwarf2_per_objfile->info.buffer;
3551
3552   n_comp_units = 0;
3553   n_allocated = 10;
3554   all_comp_units = xmalloc (n_allocated
3555                             * sizeof (struct dwarf2_per_cu_data *));
3556
3557   while (info_ptr < dwarf2_per_objfile->info.buffer
3558          + dwarf2_per_objfile->info.size)
3559     {
3560       unsigned int length, initial_length_size;
3561       struct dwarf2_per_cu_data *this_cu;
3562       unsigned int offset;
3563
3564       offset = info_ptr - dwarf2_per_objfile->info.buffer;
3565
3566       /* Read just enough information to find out where the next
3567          compilation unit is.  */
3568       length = read_initial_length (objfile->obfd, info_ptr,
3569                                     &initial_length_size);
3570
3571       /* Save the compilation unit for later lookup.  */
3572       this_cu = obstack_alloc (&objfile->objfile_obstack,
3573                                sizeof (struct dwarf2_per_cu_data));
3574       memset (this_cu, 0, sizeof (*this_cu));
3575       this_cu->offset = offset;
3576       this_cu->length = length + initial_length_size;
3577       this_cu->objfile = objfile;
3578
3579       if (n_comp_units == n_allocated)
3580         {
3581           n_allocated *= 2;
3582           all_comp_units = xrealloc (all_comp_units,
3583                                      n_allocated
3584                                      * sizeof (struct dwarf2_per_cu_data *));
3585         }
3586       all_comp_units[n_comp_units++] = this_cu;
3587
3588       info_ptr = info_ptr + this_cu->length;
3589     }
3590
3591   dwarf2_per_objfile->all_comp_units
3592     = obstack_alloc (&objfile->objfile_obstack,
3593                      n_comp_units * sizeof (struct dwarf2_per_cu_data *));
3594   memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
3595           n_comp_units * sizeof (struct dwarf2_per_cu_data *));
3596   xfree (all_comp_units);
3597   dwarf2_per_objfile->n_comp_units = n_comp_units;
3598 }
3599
3600 /* Process all loaded DIEs for compilation unit CU, starting at
3601    FIRST_DIE.  The caller should pass NEED_PC == 1 if the compilation
3602    unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
3603    DW_AT_ranges).  If NEED_PC is set, then this function will set
3604    *LOWPC and *HIGHPC to the lowest and highest PC values found in CU
3605    and record the covered ranges in the addrmap.  */
3606
3607 static void
3608 scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
3609                       CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
3610 {
3611   struct partial_die_info *pdi;
3612
3613   /* Now, march along the PDI's, descending into ones which have
3614      interesting children but skipping the children of the other ones,
3615      until we reach the end of the compilation unit.  */
3616
3617   pdi = first_die;
3618
3619   while (pdi != NULL)
3620     {
3621       fixup_partial_die (pdi, cu);
3622
3623       /* Anonymous namespaces or modules have no name but have interesting
3624          children, so we need to look at them.  Ditto for anonymous
3625          enums.  */
3626
3627       if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
3628           || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type)
3629         {
3630           switch (pdi->tag)
3631             {
3632             case DW_TAG_subprogram:
3633               add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
3634               break;
3635             case DW_TAG_constant:
3636             case DW_TAG_variable:
3637             case DW_TAG_typedef:
3638             case DW_TAG_union_type:
3639               if (!pdi->is_declaration)
3640                 {
3641                   add_partial_symbol (pdi, cu);
3642                 }
3643               break;
3644             case DW_TAG_class_type:
3645             case DW_TAG_interface_type:
3646             case DW_TAG_structure_type:
3647               if (!pdi->is_declaration)
3648                 {
3649                   add_partial_symbol (pdi, cu);
3650                 }
3651               break;
3652             case DW_TAG_enumeration_type:
3653               if (!pdi->is_declaration)
3654                 add_partial_enumeration (pdi, cu);
3655               break;
3656             case DW_TAG_base_type:
3657             case DW_TAG_subrange_type:
3658               /* File scope base type definitions are added to the partial
3659                  symbol table.  */
3660               add_partial_symbol (pdi, cu);
3661               break;
3662             case DW_TAG_namespace:
3663               add_partial_namespace (pdi, lowpc, highpc, need_pc, cu);
3664               break;
3665             case DW_TAG_module:
3666               add_partial_module (pdi, lowpc, highpc, need_pc, cu);
3667               break;
3668             default:
3669               break;
3670             }
3671         }
3672
3673       /* If the die has a sibling, skip to the sibling.  */
3674
3675       pdi = pdi->die_sibling;
3676     }
3677 }
3678
3679 /* Functions used to compute the fully scoped name of a partial DIE.
3680
3681    Normally, this is simple.  For C++, the parent DIE's fully scoped
3682    name is concatenated with "::" and the partial DIE's name.  For
3683    Java, the same thing occurs except that "." is used instead of "::".
3684    Enumerators are an exception; they use the scope of their parent
3685    enumeration type, i.e. the name of the enumeration type is not
3686    prepended to the enumerator.
3687
3688    There are two complexities.  One is DW_AT_specification; in this
3689    case "parent" means the parent of the target of the specification,
3690    instead of the direct parent of the DIE.  The other is compilers
3691    which do not emit DW_TAG_namespace; in this case we try to guess
3692    the fully qualified name of structure types from their members'
3693    linkage names.  This must be done using the DIE's children rather
3694    than the children of any DW_AT_specification target.  We only need
3695    to do this for structures at the top level, i.e. if the target of
3696    any DW_AT_specification (if any; otherwise the DIE itself) does not
3697    have a parent.  */
3698
3699 /* Compute the scope prefix associated with PDI's parent, in
3700    compilation unit CU.  The result will be allocated on CU's
3701    comp_unit_obstack, or a copy of the already allocated PDI->NAME
3702    field.  NULL is returned if no prefix is necessary.  */
3703 static char *
3704 partial_die_parent_scope (struct partial_die_info *pdi,
3705                           struct dwarf2_cu *cu)
3706 {
3707   char *grandparent_scope;
3708   struct partial_die_info *parent, *real_pdi;
3709
3710   /* We need to look at our parent DIE; if we have a DW_AT_specification,
3711      then this means the parent of the specification DIE.  */
3712
3713   real_pdi = pdi;
3714   while (real_pdi->has_specification)
3715     real_pdi = find_partial_die (real_pdi->spec_offset, cu);
3716
3717   parent = real_pdi->die_parent;
3718   if (parent == NULL)
3719     return NULL;
3720
3721   if (parent->scope_set)
3722     return parent->scope;
3723
3724   fixup_partial_die (parent, cu);
3725
3726   grandparent_scope = partial_die_parent_scope (parent, cu);
3727
3728   /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
3729      DW_TAG_namespace DIEs with a name of "::" for the global namespace.
3730      Work around this problem here.  */
3731   if (cu->language == language_cplus
3732       && parent->tag == DW_TAG_namespace
3733       && strcmp (parent->name, "::") == 0
3734       && grandparent_scope == NULL)
3735     {
3736       parent->scope = NULL;
3737       parent->scope_set = 1;
3738       return NULL;
3739     }
3740
3741   if (parent->tag == DW_TAG_namespace
3742       || parent->tag == DW_TAG_module
3743       || parent->tag == DW_TAG_structure_type
3744       || parent->tag == DW_TAG_class_type
3745       || parent->tag == DW_TAG_interface_type
3746       || parent->tag == DW_TAG_union_type
3747       || parent->tag == DW_TAG_enumeration_type)
3748     {
3749       if (grandparent_scope == NULL)
3750         parent->scope = parent->name;
3751       else
3752         parent->scope = typename_concat (&cu->comp_unit_obstack,
3753                                          grandparent_scope,
3754                                          parent->name, 0, cu);
3755     }
3756   else if (parent->tag == DW_TAG_enumerator)
3757     /* Enumerators should not get the name of the enumeration as a prefix.  */
3758     parent->scope = grandparent_scope;
3759   else
3760     {
3761       /* FIXME drow/2004-04-01: What should we be doing with
3762          function-local names?  For partial symbols, we should probably be
3763          ignoring them.  */
3764       complaint (&symfile_complaints,
3765                  _("unhandled containing DIE tag %d for DIE at %d"),
3766                  parent->tag, pdi->offset);
3767       parent->scope = grandparent_scope;
3768     }
3769
3770   parent->scope_set = 1;
3771   return parent->scope;
3772 }
3773
3774 /* Return the fully scoped name associated with PDI, from compilation unit
3775    CU.  The result will be allocated with malloc.  */
3776 static char *
3777 partial_die_full_name (struct partial_die_info *pdi,
3778                        struct dwarf2_cu *cu)
3779 {
3780   char *parent_scope;
3781
3782   /* If this is a template instantiation, we can not work out the
3783      template arguments from partial DIEs.  So, unfortunately, we have
3784      to go through the full DIEs.  At least any work we do building
3785      types here will be reused if full symbols are loaded later.  */
3786   if (pdi->has_template_arguments)
3787     {
3788       fixup_partial_die (pdi, cu);
3789
3790       if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
3791         {
3792           struct die_info *die;
3793           struct attribute attr;
3794           struct dwarf2_cu *ref_cu = cu;
3795
3796           attr.name = 0;
3797           attr.form = DW_FORM_ref_addr;
3798           attr.u.addr = pdi->offset;
3799           die = follow_die_ref (NULL, &attr, &ref_cu);
3800
3801           return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
3802         }
3803     }
3804
3805   parent_scope = partial_die_parent_scope (pdi, cu);
3806   if (parent_scope == NULL)
3807     return NULL;
3808   else
3809     return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
3810 }
3811
3812 static void
3813 add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
3814 {
3815   struct objfile *objfile = cu->objfile;
3816   CORE_ADDR addr = 0;
3817   char *actual_name = NULL;
3818   const struct partial_symbol *psym = NULL;
3819   CORE_ADDR baseaddr;
3820   int built_actual_name = 0;
3821
3822   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3823
3824   actual_name = partial_die_full_name (pdi, cu);
3825   if (actual_name)
3826     built_actual_name = 1;
3827
3828   if (actual_name == NULL)
3829     actual_name = pdi->name;
3830
3831   switch (pdi->tag)
3832     {
3833     case DW_TAG_subprogram:
3834       if (pdi->is_external || cu->language == language_ada)
3835         {
3836           /* brobecker/2007-12-26: Normally, only "external" DIEs are part
3837              of the global scope.  But in Ada, we want to be able to access
3838              nested procedures globally.  So all Ada subprograms are stored
3839              in the global scope.  */
3840           /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
3841              mst_text, objfile); */
3842           psym = add_psymbol_to_list (actual_name, strlen (actual_name),
3843                                       built_actual_name,
3844                                       VAR_DOMAIN, LOC_BLOCK,
3845                                       &objfile->global_psymbols,
3846                                       0, pdi->lowpc + baseaddr,
3847                                       cu->language, objfile);
3848         }
3849       else
3850         {
3851           /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
3852              mst_file_text, objfile); */
3853           psym = add_psymbol_to_list (actual_name, strlen (actual_name),
3854                                       built_actual_name,
3855                                       VAR_DOMAIN, LOC_BLOCK,
3856                                       &objfile->static_psymbols,
3857                                       0, pdi->lowpc + baseaddr,
3858                                       cu->language, objfile);
3859         }
3860       break;
3861     case DW_TAG_constant:
3862       {
3863         struct psymbol_allocation_list *list;
3864
3865         if (pdi->is_external)
3866           list = &objfile->global_psymbols;
3867         else
3868           list = &objfile->static_psymbols;
3869         psym = add_psymbol_to_list (actual_name, strlen (actual_name),
3870                                     built_actual_name, VAR_DOMAIN, LOC_STATIC,
3871                                     list, 0, 0, cu->language, objfile);
3872
3873       }
3874       break;
3875     case DW_TAG_variable:
3876       if (pdi->locdesc)
3877         addr = decode_locdesc (pdi->locdesc, cu);
3878
3879       if (pdi->locdesc
3880           && addr == 0
3881           && !dwarf2_per_objfile->has_section_at_zero)
3882         {
3883           /* A global or static variable may also have been stripped
3884              out by the linker if unused, in which case its address
3885              will be nullified; do not add such variables into partial
3886              symbol table then.  */
3887         }
3888       else if (pdi->is_external)
3889         {
3890           /* Global Variable.
3891              Don't enter into the minimal symbol tables as there is
3892              a minimal symbol table entry from the ELF symbols already.
3893              Enter into partial symbol table if it has a location
3894              descriptor or a type.
3895              If the location descriptor is missing, new_symbol will create
3896              a LOC_UNRESOLVED symbol, the address of the variable will then
3897              be determined from the minimal symbol table whenever the variable
3898              is referenced.
3899              The address for the partial symbol table entry is not
3900              used by GDB, but it comes in handy for debugging partial symbol
3901              table building.  */
3902
3903           if (pdi->locdesc || pdi->has_type)
3904             psym = add_psymbol_to_list (actual_name, strlen (actual_name),
3905                                         built_actual_name,
3906                                         VAR_DOMAIN, LOC_STATIC,
3907                                         &objfile->global_psymbols,
3908                                         0, addr + baseaddr,
3909                                         cu->language, objfile);
3910         }
3911       else
3912         {
3913           /* Static Variable.  Skip symbols without location descriptors.  */
3914           if (pdi->locdesc == NULL)
3915             {
3916               if (built_actual_name)
3917                 xfree (actual_name);
3918               return;
3919             }
3920           /*prim_record_minimal_symbol (actual_name, addr + baseaddr,
3921              mst_file_data, objfile); */
3922           psym = add_psymbol_to_list (actual_name, strlen (actual_name),
3923                                       built_actual_name,
3924                                       VAR_DOMAIN, LOC_STATIC,
3925                                       &objfile->static_psymbols,
3926                                       0, addr + baseaddr,
3927                                       cu->language, objfile);
3928         }
3929       break;
3930     case DW_TAG_typedef:
3931     case DW_TAG_base_type:
3932     case DW_TAG_subrange_type:
3933       add_psymbol_to_list (actual_name, strlen (actual_name),
3934                            built_actual_name,
3935                            VAR_DOMAIN, LOC_TYPEDEF,
3936                            &objfile->static_psymbols,
3937                            0, (CORE_ADDR) 0, cu->language, objfile);
3938       break;
3939     case DW_TAG_namespace:
3940       add_psymbol_to_list (actual_name, strlen (actual_name),
3941                            built_actual_name,
3942                            VAR_DOMAIN, LOC_TYPEDEF,
3943                            &objfile->global_psymbols,
3944                            0, (CORE_ADDR) 0, cu->language, objfile);
3945       break;
3946     case DW_TAG_class_type:
3947     case DW_TAG_interface_type:
3948     case DW_TAG_structure_type:
3949     case DW_TAG_union_type:
3950     case DW_TAG_enumeration_type:
3951       /* Skip external references.  The DWARF standard says in the section
3952          about "Structure, Union, and Class Type Entries": "An incomplete
3953          structure, union or class type is represented by a structure,
3954          union or class entry that does not have a byte size attribute
3955          and that has a DW_AT_declaration attribute."  */
3956       if (!pdi->has_byte_size && pdi->is_declaration)
3957         {
3958           if (built_actual_name)
3959             xfree (actual_name);
3960           return;
3961         }
3962
3963       /* NOTE: carlton/2003-10-07: See comment in new_symbol about
3964          static vs. global.  */
3965       add_psymbol_to_list (actual_name, strlen (actual_name),
3966                            built_actual_name,
3967                            STRUCT_DOMAIN, LOC_TYPEDEF,
3968                            (cu->language == language_cplus
3969                             || cu->language == language_java)
3970                            ? &objfile->global_psymbols
3971                            : &objfile->static_psymbols,
3972                            0, (CORE_ADDR) 0, cu->language, objfile);
3973
3974       break;
3975     case DW_TAG_enumerator:
3976       add_psymbol_to_list (actual_name, strlen (actual_name),
3977                            built_actual_name,
3978                            VAR_DOMAIN, LOC_CONST,
3979                            (cu->language == language_cplus
3980                             || cu->language == language_java)
3981                            ? &objfile->global_psymbols
3982                            : &objfile->static_psymbols,
3983                            0, (CORE_ADDR) 0, cu->language, objfile);
3984       break;
3985     default:
3986       break;
3987     }
3988
3989   if (built_actual_name)
3990     xfree (actual_name);
3991 }
3992
3993 /* Read a partial die corresponding to a namespace; also, add a symbol
3994    corresponding to that namespace to the symbol table.  NAMESPACE is
3995    the name of the enclosing namespace.  */
3996
3997 static void
3998 add_partial_namespace (struct partial_die_info *pdi,
3999                        CORE_ADDR *lowpc, CORE_ADDR *highpc,
4000                        int need_pc, struct dwarf2_cu *cu)
4001 {
4002   /* Add a symbol for the namespace.  */
4003
4004   add_partial_symbol (pdi, cu);
4005
4006   /* Now scan partial symbols in that namespace.  */
4007
4008   if (pdi->has_children)
4009     scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
4010 }
4011
4012 /* Read a partial die corresponding to a Fortran module.  */
4013
4014 static void
4015 add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
4016                     CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
4017 {
4018   /* Now scan partial symbols in that module.  */
4019
4020   if (pdi->has_children)
4021     scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
4022 }
4023
4024 /* Read a partial die corresponding to a subprogram and create a partial
4025    symbol for that subprogram.  When the CU language allows it, this
4026    routine also defines a partial symbol for each nested subprogram
4027    that this subprogram contains.
4028
4029    DIE my also be a lexical block, in which case we simply search
4030    recursively for suprograms defined inside that lexical block.
4031    Again, this is only performed when the CU language allows this
4032    type of definitions.  */
4033
4034 static void
4035 add_partial_subprogram (struct partial_die_info *pdi,
4036                         CORE_ADDR *lowpc, CORE_ADDR *highpc,
4037                         int need_pc, struct dwarf2_cu *cu)
4038 {
4039   if (pdi->tag == DW_TAG_subprogram)
4040     {
4041       if (pdi->has_pc_info)
4042         {
4043           if (pdi->lowpc < *lowpc)
4044             *lowpc = pdi->lowpc;
4045           if (pdi->highpc > *highpc)
4046             *highpc = pdi->highpc;
4047           if (need_pc)
4048             {
4049               CORE_ADDR baseaddr;
4050               struct objfile *objfile = cu->objfile;
4051
4052               baseaddr = ANOFFSET (objfile->section_offsets,
4053                                    SECT_OFF_TEXT (objfile));
4054               addrmap_set_empty (objfile->psymtabs_addrmap,
4055                                  pdi->lowpc + baseaddr,
4056                                  pdi->highpc - 1 + baseaddr,
4057                                  cu->per_cu->v.psymtab);
4058             }
4059           if (!pdi->is_declaration)
4060             /* Ignore subprogram DIEs that do not have a name, they are
4061                illegal.  Do not emit a complaint at this point, we will
4062                do so when we convert this psymtab into a symtab.  */
4063             if (pdi->name)
4064               add_partial_symbol (pdi, cu);
4065         }
4066     }
4067
4068   if (! pdi->has_children)
4069     return;
4070
4071   if (cu->language == language_ada)
4072     {
4073       pdi = pdi->die_child;
4074       while (pdi != NULL)
4075         {
4076           fixup_partial_die (pdi, cu);
4077           if (pdi->tag == DW_TAG_subprogram
4078               || pdi->tag == DW_TAG_lexical_block)
4079             add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
4080           pdi = pdi->die_sibling;
4081         }
4082     }
4083 }
4084
4085 /* Read a partial die corresponding to an enumeration type.  */
4086
4087 static void
4088 add_partial_enumeration (struct partial_die_info *enum_pdi,
4089                          struct dwarf2_cu *cu)
4090 {
4091   struct partial_die_info *pdi;
4092
4093   if (enum_pdi->name != NULL)
4094     add_partial_symbol (enum_pdi, cu);
4095
4096   pdi = enum_pdi->die_child;
4097   while (pdi)
4098     {
4099       if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
4100         complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
4101       else
4102         add_partial_symbol (pdi, cu);
4103       pdi = pdi->die_sibling;
4104     }
4105 }
4106
4107 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
4108    Return the corresponding abbrev, or NULL if the number is zero (indicating
4109    an empty DIE).  In either case *BYTES_READ will be set to the length of
4110    the initial number.  */
4111
4112 static struct abbrev_info *
4113 peek_die_abbrev (gdb_byte *info_ptr, unsigned int *bytes_read,
4114                  struct dwarf2_cu *cu)
4115 {
4116   bfd *abfd = cu->objfile->obfd;
4117   unsigned int abbrev_number;
4118   struct abbrev_info *abbrev;
4119
4120   abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
4121
4122   if (abbrev_number == 0)
4123     return NULL;
4124
4125   abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
4126   if (!abbrev)
4127     {
4128       error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"),
4129              abbrev_number, bfd_get_filename (abfd));
4130     }
4131
4132   return abbrev;
4133 }
4134
4135 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
4136    Returns a pointer to the end of a series of DIEs, terminated by an empty
4137    DIE.  Any children of the skipped DIEs will also be skipped.  */
4138
4139 static gdb_byte *
4140 skip_children (gdb_byte *buffer, gdb_byte *info_ptr, struct dwarf2_cu *cu)
4141 {
4142   struct abbrev_info *abbrev;
4143   unsigned int bytes_read;
4144
4145   while (1)
4146     {
4147       abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
4148       if (abbrev == NULL)
4149         return info_ptr + bytes_read;
4150       else
4151         info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
4152     }
4153 }
4154
4155 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
4156    INFO_PTR should point just after the initial uleb128 of a DIE, and the
4157    abbrev corresponding to that skipped uleb128 should be passed in
4158    ABBREV.  Returns a pointer to this DIE's sibling, skipping any
4159    children.  */
4160
4161 static gdb_byte *
4162 skip_one_die (gdb_byte *buffer, gdb_byte *info_ptr,
4163               struct abbrev_info *abbrev, struct dwarf2_cu *cu)
4164 {
4165   unsigned int bytes_read;
4166   struct attribute attr;
4167   bfd *abfd = cu->objfile->obfd;
4168   unsigned int form, i;
4169
4170   for (i = 0; i < abbrev->num_attrs; i++)
4171     {
4172       /* The only abbrev we care about is DW_AT_sibling.  */
4173       if (abbrev->attrs[i].name == DW_AT_sibling)
4174         {
4175           read_attribute (&attr, &abbrev->attrs[i],
4176                           abfd, info_ptr, cu);
4177           if (attr.form == DW_FORM_ref_addr)
4178             complaint (&symfile_complaints,
4179                        _("ignoring absolute DW_AT_sibling"));
4180           else
4181             return buffer + dwarf2_get_ref_die_offset (&attr);
4182         }
4183
4184       /* If it isn't DW_AT_sibling, skip this attribute.  */
4185       form = abbrev->attrs[i].form;
4186     skip_attribute:
4187       switch (form)
4188         {
4189         case DW_FORM_ref_addr:
4190           /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
4191              and later it is offset sized.  */
4192           if (cu->header.version == 2)
4193             info_ptr += cu->header.addr_size;
4194           else
4195             info_ptr += cu->header.offset_size;
4196           break;
4197         case DW_FORM_addr:
4198           info_ptr += cu->header.addr_size;
4199           break;
4200         case DW_FORM_data1:
4201         case DW_FORM_ref1:
4202         case DW_FORM_flag:
4203           info_ptr += 1;
4204           break;
4205         case DW_FORM_flag_present:
4206           break;
4207         case DW_FORM_data2:
4208         case DW_FORM_ref2:
4209           info_ptr += 2;
4210           break;
4211         case DW_FORM_data4:
4212         case DW_FORM_ref4:
4213           info_ptr += 4;
4214           break;
4215         case DW_FORM_data8:
4216         case DW_FORM_ref8:
4217         case DW_FORM_sig8:
4218           info_ptr += 8;
4219           break;
4220         case DW_FORM_string:
4221           read_direct_string (abfd, info_ptr, &bytes_read);
4222           info_ptr += bytes_read;
4223           break;
4224         case DW_FORM_sec_offset:
4225         case DW_FORM_strp:
4226           info_ptr += cu->header.offset_size;
4227           break;
4228         case DW_FORM_exprloc:
4229         case DW_FORM_block:
4230           info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4231           info_ptr += bytes_read;
4232           break;
4233         case DW_FORM_block1:
4234           info_ptr += 1 + read_1_byte (abfd, info_ptr);
4235           break;
4236         case DW_FORM_block2:
4237           info_ptr += 2 + read_2_bytes (abfd, info_ptr);
4238           break;
4239         case DW_FORM_block4:
4240           info_ptr += 4 + read_4_bytes (abfd, info_ptr);
4241           break;
4242         case DW_FORM_sdata:
4243         case DW_FORM_udata:
4244         case DW_FORM_ref_udata:
4245           info_ptr = skip_leb128 (abfd, info_ptr);
4246           break;
4247         case DW_FORM_indirect:
4248           form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4249           info_ptr += bytes_read;
4250           /* We need to continue parsing from here, so just go back to
4251              the top.  */
4252           goto skip_attribute;
4253
4254         default:
4255           error (_("Dwarf Error: Cannot handle %s "
4256                    "in DWARF reader [in module %s]"),
4257                  dwarf_form_name (form),
4258                  bfd_get_filename (abfd));
4259         }
4260     }
4261
4262   if (abbrev->has_children)
4263     return skip_children (buffer, info_ptr, cu);
4264   else
4265     return info_ptr;
4266 }
4267
4268 /* Locate ORIG_PDI's sibling.
4269    INFO_PTR should point to the start of the next DIE after ORIG_PDI
4270    in BUFFER.  */
4271
4272 static gdb_byte *
4273 locate_pdi_sibling (struct partial_die_info *orig_pdi,
4274                     gdb_byte *buffer, gdb_byte *info_ptr,
4275                     bfd *abfd, struct dwarf2_cu *cu)
4276 {
4277   /* Do we know the sibling already?  */
4278
4279   if (orig_pdi->sibling)
4280     return orig_pdi->sibling;
4281
4282   /* Are there any children to deal with?  */
4283
4284   if (!orig_pdi->has_children)
4285     return info_ptr;
4286
4287   /* Skip the children the long way.  */
4288
4289   return skip_children (buffer, info_ptr, cu);
4290 }
4291
4292 /* Expand this partial symbol table into a full symbol table.  */
4293
4294 static void
4295 dwarf2_psymtab_to_symtab (struct partial_symtab *pst)
4296 {
4297   if (pst != NULL)
4298     {
4299       if (pst->readin)
4300         {
4301           warning (_("bug: psymtab for %s is already read in."),
4302                    pst->filename);
4303         }
4304       else
4305         {
4306           if (info_verbose)
4307             {
4308               printf_filtered (_("Reading in symbols for %s..."),
4309                                pst->filename);
4310               gdb_flush (gdb_stdout);
4311             }
4312
4313           /* Restore our global data.  */
4314           dwarf2_per_objfile = objfile_data (pst->objfile,
4315                                              dwarf2_objfile_data_key);
4316
4317           /* If this psymtab is constructed from a debug-only objfile, the
4318              has_section_at_zero flag will not necessarily be correct.  We
4319              can get the correct value for this flag by looking at the data
4320              associated with the (presumably stripped) associated objfile.  */
4321           if (pst->objfile->separate_debug_objfile_backlink)
4322             {
4323               struct dwarf2_per_objfile *dpo_backlink
4324                 = objfile_data (pst->objfile->separate_debug_objfile_backlink,
4325                                 dwarf2_objfile_data_key);
4326
4327               dwarf2_per_objfile->has_section_at_zero
4328                 = dpo_backlink->has_section_at_zero;
4329             }
4330
4331           dwarf2_per_objfile->reading_partial_symbols = 0;
4332
4333           psymtab_to_symtab_1 (pst);
4334
4335           /* Finish up the debug error message.  */
4336           if (info_verbose)
4337             printf_filtered (_("done.\n"));
4338         }
4339     }
4340 }
4341
4342 /* Add PER_CU to the queue.  */
4343
4344 static void
4345 queue_comp_unit (struct dwarf2_per_cu_data *per_cu, struct objfile *objfile)
4346 {
4347   struct dwarf2_queue_item *item;
4348
4349   per_cu->queued = 1;
4350   item = xmalloc (sizeof (*item));
4351   item->per_cu = per_cu;
4352   item->next = NULL;
4353
4354   if (dwarf2_queue == NULL)
4355     dwarf2_queue = item;
4356   else
4357     dwarf2_queue_tail->next = item;
4358
4359   dwarf2_queue_tail = item;
4360 }
4361
4362 /* Process the queue.  */
4363
4364 static void
4365 process_queue (struct objfile *objfile)
4366 {
4367   struct dwarf2_queue_item *item, *next_item;
4368
4369   /* The queue starts out with one item, but following a DIE reference
4370      may load a new CU, adding it to the end of the queue.  */
4371   for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
4372     {
4373       if (dwarf2_per_objfile->using_index
4374           ? !item->per_cu->v.quick->symtab
4375           : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
4376         process_full_comp_unit (item->per_cu);
4377
4378       item->per_cu->queued = 0;
4379       next_item = item->next;
4380       xfree (item);
4381     }
4382
4383   dwarf2_queue_tail = NULL;
4384 }
4385
4386 /* Free all allocated queue entries.  This function only releases anything if
4387    an error was thrown; if the queue was processed then it would have been
4388    freed as we went along.  */
4389
4390 static void
4391 dwarf2_release_queue (void *dummy)
4392 {
4393   struct dwarf2_queue_item *item, *last;
4394
4395   item = dwarf2_queue;
4396   while (item)
4397     {
4398       /* Anything still marked queued is likely to be in an
4399          inconsistent state, so discard it.  */
4400       if (item->per_cu->queued)
4401         {
4402           if (item->per_cu->cu != NULL)
4403             free_one_cached_comp_unit (item->per_cu->cu);
4404           item->per_cu->queued = 0;
4405         }
4406
4407       last = item;
4408       item = item->next;
4409       xfree (last);
4410     }
4411
4412   dwarf2_queue = dwarf2_queue_tail = NULL;
4413 }
4414
4415 /* Read in full symbols for PST, and anything it depends on.  */
4416
4417 static void
4418 psymtab_to_symtab_1 (struct partial_symtab *pst)
4419 {
4420   struct dwarf2_per_cu_data *per_cu;
4421   struct cleanup *back_to;
4422   int i;
4423
4424   for (i = 0; i < pst->number_of_dependencies; i++)
4425     if (!pst->dependencies[i]->readin)
4426       {
4427         /* Inform about additional files that need to be read in.  */
4428         if (info_verbose)
4429           {
4430             /* FIXME: i18n: Need to make this a single string.  */
4431             fputs_filtered (" ", gdb_stdout);
4432             wrap_here ("");
4433             fputs_filtered ("and ", gdb_stdout);
4434             wrap_here ("");
4435             printf_filtered ("%s...", pst->dependencies[i]->filename);
4436             wrap_here ("");     /* Flush output.  */
4437             gdb_flush (gdb_stdout);
4438           }
4439         psymtab_to_symtab_1 (pst->dependencies[i]);
4440       }
4441
4442   per_cu = pst->read_symtab_private;
4443
4444   if (per_cu == NULL)
4445     {
4446       /* It's an include file, no symbols to read for it.
4447          Everything is in the parent symtab.  */
4448       pst->readin = 1;
4449       return;
4450     }
4451
4452   dw2_do_instantiate_symtab (pst->objfile, per_cu);
4453 }
4454
4455 /* Load the DIEs associated with PER_CU into memory.  */
4456
4457 static void
4458 load_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
4459                      struct objfile *objfile)
4460 {
4461   bfd *abfd = objfile->obfd;
4462   struct dwarf2_cu *cu;
4463   unsigned int offset;
4464   gdb_byte *info_ptr, *beg_of_comp_unit;
4465   struct cleanup *free_abbrevs_cleanup = NULL, *free_cu_cleanup = NULL;
4466   struct attribute *attr;
4467   int read_cu = 0;
4468
4469   gdb_assert (! per_cu->from_debug_types);
4470
4471   /* Set local variables from the partial symbol table info.  */
4472   offset = per_cu->offset;
4473
4474   dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
4475   info_ptr = dwarf2_per_objfile->info.buffer + offset;
4476   beg_of_comp_unit = info_ptr;
4477
4478   if (per_cu->cu == NULL)
4479     {
4480       cu = xmalloc (sizeof (*cu));
4481       init_one_comp_unit (cu, objfile);
4482
4483       read_cu = 1;
4484
4485       /* If an error occurs while loading, release our storage.  */
4486       free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
4487
4488       /* Read in the comp_unit header.  */
4489       info_ptr = read_comp_unit_head (&cu->header, info_ptr, abfd);
4490
4491       /* Complete the cu_header.  */
4492       cu->header.offset = offset;
4493       cu->header.first_die_offset = info_ptr - beg_of_comp_unit;
4494
4495       /* Read the abbrevs for this compilation unit.  */
4496       dwarf2_read_abbrevs (abfd, cu);
4497       free_abbrevs_cleanup = make_cleanup (dwarf2_free_abbrev_table, cu);
4498
4499       /* Link this compilation unit into the compilation unit tree.  */
4500       per_cu->cu = cu;
4501       cu->per_cu = per_cu;
4502
4503       /* Link this CU into read_in_chain.  */
4504       per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
4505       dwarf2_per_objfile->read_in_chain = per_cu;
4506     }
4507   else
4508     {
4509       cu = per_cu->cu;
4510       info_ptr += cu->header.first_die_offset;
4511     }
4512
4513   cu->dies = read_comp_unit (info_ptr, cu);
4514
4515   /* We try not to read any attributes in this function, because not
4516      all objfiles needed for references have been loaded yet, and symbol
4517      table processing isn't initialized.  But we have to set the CU language,
4518      or we won't be able to build types correctly.  */
4519   prepare_one_comp_unit (cu, cu->dies);
4520
4521   /* Similarly, if we do not read the producer, we can not apply
4522      producer-specific interpretation.  */
4523   attr = dwarf2_attr (cu->dies, DW_AT_producer, cu);
4524   if (attr)
4525     cu->producer = DW_STRING (attr);
4526
4527   if (read_cu)
4528     {
4529       do_cleanups (free_abbrevs_cleanup);
4530
4531       /* We've successfully allocated this compilation unit.  Let our
4532          caller clean it up when finished with it.  */
4533       discard_cleanups (free_cu_cleanup);
4534     }
4535 }
4536
4537 /* Add a DIE to the delayed physname list.  */
4538
4539 static void
4540 add_to_method_list (struct type *type, int fnfield_index, int index,
4541                     const char *name, struct die_info *die,
4542                     struct dwarf2_cu *cu)
4543 {
4544   struct delayed_method_info mi;
4545   mi.type = type;
4546   mi.fnfield_index = fnfield_index;
4547   mi.index = index;
4548   mi.name = name;
4549   mi.die = die;
4550   VEC_safe_push (delayed_method_info, cu->method_list, &mi);
4551 }
4552
4553 /* A cleanup for freeing the delayed method list.  */
4554
4555 static void
4556 free_delayed_list (void *ptr)
4557 {
4558   struct dwarf2_cu *cu = (struct dwarf2_cu *) ptr;
4559   if (cu->method_list != NULL)
4560     {
4561       VEC_free (delayed_method_info, cu->method_list);
4562       cu->method_list = NULL;
4563     }
4564 }
4565
4566 /* Compute the physnames of any methods on the CU's method list.
4567
4568    The computation of method physnames is delayed in order to avoid the
4569    (bad) condition that one of the method's formal parameters is of an as yet
4570    incomplete type.  */
4571
4572 static void
4573 compute_delayed_physnames (struct dwarf2_cu *cu)
4574 {
4575   int i;
4576   struct delayed_method_info *mi;
4577   for (i = 0; VEC_iterate (delayed_method_info, cu->method_list, i, mi) ; ++i)
4578     {
4579       char *physname;
4580       struct fn_fieldlist *fn_flp
4581         = &TYPE_FN_FIELDLIST (mi->type, mi->fnfield_index);
4582       physname = (char *) dwarf2_physname ((char *) mi->name, mi->die, cu);
4583       fn_flp->fn_fields[mi->index].physname = physname ? physname : "";
4584     }
4585 }
4586
4587 /* Generate full symbol information for PST and CU, whose DIEs have
4588    already been loaded into memory.  */
4589
4590 static void
4591 process_full_comp_unit (struct dwarf2_per_cu_data *per_cu)
4592 {
4593   struct dwarf2_cu *cu = per_cu->cu;
4594   struct objfile *objfile = per_cu->objfile;
4595   CORE_ADDR lowpc, highpc;
4596   struct symtab *symtab;
4597   struct cleanup *back_to, *delayed_list_cleanup;
4598   CORE_ADDR baseaddr;
4599
4600   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
4601
4602   buildsym_init ();
4603   back_to = make_cleanup (really_free_pendings, NULL);
4604   delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
4605
4606   cu->list_in_scope = &file_symbols;
4607
4608   dwarf2_find_base_address (cu->dies, cu);
4609
4610   /* Do line number decoding in read_file_scope () */
4611   process_die (cu->dies, cu);
4612
4613   /* Now that we have processed all the DIEs in the CU, all the types 
4614      should be complete, and it should now be safe to compute all of the
4615      physnames.  */
4616   compute_delayed_physnames (cu);
4617   do_cleanups (delayed_list_cleanup);
4618
4619   /* Some compilers don't define a DW_AT_high_pc attribute for the
4620      compilation unit.  If the DW_AT_high_pc is missing, synthesize
4621      it, by scanning the DIE's below the compilation unit.  */
4622   get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
4623
4624   symtab = end_symtab (highpc + baseaddr, objfile, SECT_OFF_TEXT (objfile));
4625
4626   /* Set symtab language to language from DW_AT_language.
4627      If the compilation is from a C file generated by language preprocessors,
4628      do not set the language if it was already deduced by start_subfile.  */
4629   if (symtab != NULL
4630       && !(cu->language == language_c && symtab->language != language_c))
4631     {
4632       symtab->language = cu->language;
4633     }
4634
4635   if (dwarf2_per_objfile->using_index)
4636     per_cu->v.quick->symtab = symtab;
4637   else
4638     {
4639       struct partial_symtab *pst = per_cu->v.psymtab;
4640       pst->symtab = symtab;
4641       pst->readin = 1;
4642     }
4643
4644   do_cleanups (back_to);
4645 }
4646
4647 /* Process a die and its children.  */
4648
4649 static void
4650 process_die (struct die_info *die, struct dwarf2_cu *cu)
4651 {
4652   switch (die->tag)
4653     {
4654     case DW_TAG_padding:
4655       break;
4656     case DW_TAG_compile_unit:
4657       read_file_scope (die, cu);
4658       break;
4659     case DW_TAG_type_unit:
4660       read_type_unit_scope (die, cu);
4661       break;
4662     case DW_TAG_subprogram:
4663     case DW_TAG_inlined_subroutine:
4664       read_func_scope (die, cu);
4665       break;
4666     case DW_TAG_lexical_block:
4667     case DW_TAG_try_block:
4668     case DW_TAG_catch_block:
4669       read_lexical_block_scope (die, cu);
4670       break;
4671     case DW_TAG_class_type:
4672     case DW_TAG_interface_type:
4673     case DW_TAG_structure_type:
4674     case DW_TAG_union_type:
4675       process_structure_scope (die, cu);
4676       break;
4677     case DW_TAG_enumeration_type:
4678       process_enumeration_scope (die, cu);
4679       break;
4680
4681     /* These dies have a type, but processing them does not create
4682        a symbol or recurse to process the children.  Therefore we can
4683        read them on-demand through read_type_die.  */
4684     case DW_TAG_subroutine_type:
4685     case DW_TAG_set_type:
4686     case DW_TAG_array_type:
4687     case DW_TAG_pointer_type:
4688     case DW_TAG_ptr_to_member_type:
4689     case DW_TAG_reference_type:
4690     case DW_TAG_string_type:
4691       break;
4692
4693     case DW_TAG_base_type:
4694     case DW_TAG_subrange_type:
4695     case DW_TAG_typedef:
4696       /* Add a typedef symbol for the type definition, if it has a
4697          DW_AT_name.  */
4698       new_symbol (die, read_type_die (die, cu), cu);
4699       break;
4700     case DW_TAG_common_block:
4701       read_common_block (die, cu);
4702       break;
4703     case DW_TAG_common_inclusion:
4704       break;
4705     case DW_TAG_namespace:
4706       processing_has_namespace_info = 1;
4707       read_namespace (die, cu);
4708       break;
4709     case DW_TAG_module:
4710       processing_has_namespace_info = 1;
4711       read_module (die, cu);
4712       break;
4713     case DW_TAG_imported_declaration:
4714     case DW_TAG_imported_module:
4715       processing_has_namespace_info = 1;
4716       if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
4717                                  || cu->language != language_fortran))
4718         complaint (&symfile_complaints, _("Tag '%s' has unexpected children"),
4719                    dwarf_tag_name (die->tag));
4720       read_import_statement (die, cu);
4721       break;
4722     default:
4723       new_symbol (die, NULL, cu);
4724       break;
4725     }
4726 }
4727
4728 /* A helper function for dwarf2_compute_name which determines whether DIE
4729    needs to have the name of the scope prepended to the name listed in the
4730    die.  */
4731
4732 static int
4733 die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
4734 {
4735   struct attribute *attr;
4736
4737   switch (die->tag)
4738     {
4739     case DW_TAG_namespace:
4740     case DW_TAG_typedef:
4741     case DW_TAG_class_type:
4742     case DW_TAG_interface_type:
4743     case DW_TAG_structure_type:
4744     case DW_TAG_union_type:
4745     case DW_TAG_enumeration_type:
4746     case DW_TAG_enumerator:
4747     case DW_TAG_subprogram:
4748     case DW_TAG_member:
4749       return 1;
4750
4751     case DW_TAG_variable:
4752     case DW_TAG_constant:
4753       /* We only need to prefix "globally" visible variables.  These include
4754          any variable marked with DW_AT_external or any variable that
4755          lives in a namespace.  [Variables in anonymous namespaces
4756          require prefixing, but they are not DW_AT_external.]  */
4757
4758       if (dwarf2_attr (die, DW_AT_specification, cu))
4759         {
4760           struct dwarf2_cu *spec_cu = cu;
4761
4762           return die_needs_namespace (die_specification (die, &spec_cu),
4763                                       spec_cu);
4764         }
4765
4766       attr = dwarf2_attr (die, DW_AT_external, cu);
4767       if (attr == NULL && die->parent->tag != DW_TAG_namespace
4768           && die->parent->tag != DW_TAG_module)
4769         return 0;
4770       /* A variable in a lexical block of some kind does not need a
4771          namespace, even though in C++ such variables may be external
4772          and have a mangled name.  */
4773       if (die->parent->tag ==  DW_TAG_lexical_block
4774           || die->parent->tag ==  DW_TAG_try_block
4775           || die->parent->tag ==  DW_TAG_catch_block
4776           || die->parent->tag == DW_TAG_subprogram)
4777         return 0;
4778       return 1;
4779
4780     default:
4781       return 0;
4782     }
4783 }
4784
4785 /* Retrieve the last character from a mem_file.  */
4786
4787 static void
4788 do_ui_file_peek_last (void *object, const char *buffer, long length)
4789 {
4790   char *last_char_p = (char *) object;
4791
4792   if (length > 0)
4793     *last_char_p = buffer[length - 1];
4794 }
4795
4796 /* Compute the fully qualified name of DIE in CU.  If PHYSNAME is nonzero,
4797    compute the physname for the object, which include a method's
4798    formal parameters (C++/Java) and return type (Java).
4799
4800    For Ada, return the DIE's linkage name rather than the fully qualified
4801    name.  PHYSNAME is ignored..
4802
4803    The result is allocated on the objfile_obstack and canonicalized.  */
4804
4805 static const char *
4806 dwarf2_compute_name (char *name, struct die_info *die, struct dwarf2_cu *cu,
4807                      int physname)
4808 {
4809   if (name == NULL)
4810     name = dwarf2_name (die, cu);
4811
4812   /* For Fortran GDB prefers DW_AT_*linkage_name if present but otherwise
4813      compute it by typename_concat inside GDB.  */
4814   if (cu->language == language_ada
4815       || (cu->language == language_fortran && physname))
4816     {
4817       /* For Ada unit, we prefer the linkage name over the name, as
4818          the former contains the exported name, which the user expects
4819          to be able to reference.  Ideally, we want the user to be able
4820          to reference this entity using either natural or linkage name,
4821          but we haven't started looking at this enhancement yet.  */
4822       struct attribute *attr;
4823
4824       attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
4825       if (attr == NULL)
4826         attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
4827       if (attr && DW_STRING (attr))
4828         return DW_STRING (attr);
4829     }
4830
4831   /* These are the only languages we know how to qualify names in.  */
4832   if (name != NULL
4833       && (cu->language == language_cplus || cu->language == language_java
4834           || cu->language == language_fortran))
4835     {
4836       if (die_needs_namespace (die, cu))
4837         {
4838           long length;
4839           char *prefix;
4840           struct ui_file *buf;
4841
4842           prefix = determine_prefix (die, cu);
4843           buf = mem_fileopen ();
4844           if (*prefix != '\0')
4845             {
4846               char *prefixed_name = typename_concat (NULL, prefix, name,
4847                                                      physname, cu);
4848
4849               fputs_unfiltered (prefixed_name, buf);
4850               xfree (prefixed_name);
4851             }
4852           else
4853             fputs_unfiltered (name ? name : "", buf);
4854
4855           /* Template parameters may be specified in the DIE's DW_AT_name, or
4856              as children with DW_TAG_template_type_param or
4857              DW_TAG_value_type_param.  If the latter, add them to the name
4858              here.  If the name already has template parameters, then
4859              skip this step; some versions of GCC emit both, and
4860              it is more efficient to use the pre-computed name.
4861
4862              Something to keep in mind about this process: it is very
4863              unlikely, or in some cases downright impossible, to produce
4864              something that will match the mangled name of a function.
4865              If the definition of the function has the same debug info,
4866              we should be able to match up with it anyway.  But fallbacks
4867              using the minimal symbol, for instance to find a method
4868              implemented in a stripped copy of libstdc++, will not work.
4869              If we do not have debug info for the definition, we will have to
4870              match them up some other way.
4871
4872              When we do name matching there is a related problem with function
4873              templates; two instantiated function templates are allowed to
4874              differ only by their return types, which we do not add here.  */
4875
4876           if (cu->language == language_cplus && strchr (name, '<') == NULL)
4877             {
4878               struct attribute *attr;
4879               struct die_info *child;
4880               int first = 1;
4881
4882               die->building_fullname = 1;
4883
4884               for (child = die->child; child != NULL; child = child->sibling)
4885                 {
4886                   struct type *type;
4887                   long value;
4888                   gdb_byte *bytes;
4889                   struct dwarf2_locexpr_baton *baton;
4890                   struct value *v;
4891
4892                   if (child->tag != DW_TAG_template_type_param
4893                       && child->tag != DW_TAG_template_value_param)
4894                     continue;
4895
4896                   if (first)
4897                     {
4898                       fputs_unfiltered ("<", buf);
4899                       first = 0;
4900                     }
4901                   else
4902                     fputs_unfiltered (", ", buf);
4903
4904                   attr = dwarf2_attr (child, DW_AT_type, cu);
4905                   if (attr == NULL)
4906                     {
4907                       complaint (&symfile_complaints,
4908                                  _("template parameter missing DW_AT_type"));
4909                       fputs_unfiltered ("UNKNOWN_TYPE", buf);
4910                       continue;
4911                     }
4912                   type = die_type (child, cu);
4913
4914                   if (child->tag == DW_TAG_template_type_param)
4915                     {
4916                       c_print_type (type, "", buf, -1, 0);
4917                       continue;
4918                     }
4919
4920                   attr = dwarf2_attr (child, DW_AT_const_value, cu);
4921                   if (attr == NULL)
4922                     {
4923                       complaint (&symfile_complaints,
4924                                  _("template parameter missing "
4925                                    "DW_AT_const_value"));
4926                       fputs_unfiltered ("UNKNOWN_VALUE", buf);
4927                       continue;
4928                     }
4929
4930                   dwarf2_const_value_attr (attr, type, name,
4931                                            &cu->comp_unit_obstack, cu,
4932                                            &value, &bytes, &baton);
4933
4934                   if (TYPE_NOSIGN (type))
4935                     /* GDB prints characters as NUMBER 'CHAR'.  If that's
4936                        changed, this can use value_print instead.  */
4937                     c_printchar (value, type, buf);
4938                   else
4939                     {
4940                       struct value_print_options opts;
4941
4942                       if (baton != NULL)
4943                         v = dwarf2_evaluate_loc_desc (type, NULL,
4944                                                       baton->data,
4945                                                       baton->size,
4946                                                       baton->per_cu);
4947                       else if (bytes != NULL)
4948                         {
4949                           v = allocate_value (type);
4950                           memcpy (value_contents_writeable (v), bytes,
4951                                   TYPE_LENGTH (type));
4952                         }
4953                       else
4954                         v = value_from_longest (type, value);
4955
4956                       /* Specify decimal so that we do not depend on
4957                          the radix.  */
4958                       get_formatted_print_options (&opts, 'd');
4959                       opts.raw = 1;
4960                       value_print (v, buf, &opts);
4961                       release_value (v);
4962                       value_free (v);
4963                     }
4964                 }
4965
4966               die->building_fullname = 0;
4967
4968               if (!first)
4969                 {
4970                   /* Close the argument list, with a space if necessary
4971                      (nested templates).  */
4972                   char last_char = '\0';
4973                   ui_file_put (buf, do_ui_file_peek_last, &last_char);
4974                   if (last_char == '>')
4975                     fputs_unfiltered (" >", buf);
4976                   else
4977                     fputs_unfiltered (">", buf);
4978                 }
4979             }
4980
4981           /* For Java and C++ methods, append formal parameter type
4982              information, if PHYSNAME.  */
4983
4984           if (physname && die->tag == DW_TAG_subprogram
4985               && (cu->language == language_cplus
4986                   || cu->language == language_java))
4987             {
4988               struct type *type = read_type_die (die, cu);
4989
4990               c_type_print_args (type, buf, 0, cu->language);
4991
4992               if (cu->language == language_java)
4993                 {
4994                   /* For java, we must append the return type to method
4995                      names.  */
4996                   if (die->tag == DW_TAG_subprogram)
4997                     java_print_type (TYPE_TARGET_TYPE (type), "", buf,
4998                                      0, 0);
4999                 }
5000               else if (cu->language == language_cplus)
5001                 {
5002                   /* Assume that an artificial first parameter is
5003                      "this", but do not crash if it is not.  RealView
5004                      marks unnamed (and thus unused) parameters as
5005                      artificial; there is no way to differentiate
5006                      the two cases.  */
5007                   if (TYPE_NFIELDS (type) > 0
5008                       && TYPE_FIELD_ARTIFICIAL (type, 0)
5009                       && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
5010                       && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
5011                                                                         0))))
5012                     fputs_unfiltered (" const", buf);
5013                 }
5014             }
5015
5016           name = ui_file_obsavestring (buf, &cu->objfile->objfile_obstack,
5017                                        &length);
5018           ui_file_delete (buf);
5019
5020           if (cu->language == language_cplus)
5021             {
5022               char *cname
5023                 = dwarf2_canonicalize_name (name, cu,
5024                                             &cu->objfile->objfile_obstack);
5025
5026               if (cname != NULL)
5027                 name = cname;
5028             }
5029         }
5030     }
5031
5032   return name;
5033 }
5034
5035 /* Return the fully qualified name of DIE, based on its DW_AT_name.
5036    If scope qualifiers are appropriate they will be added.  The result
5037    will be allocated on the objfile_obstack, or NULL if the DIE does
5038    not have a name.  NAME may either be from a previous call to
5039    dwarf2_name or NULL.
5040
5041    The output string will be canonicalized (if C++/Java).  */
5042
5043 static const char *
5044 dwarf2_full_name (char *name, struct die_info *die, struct dwarf2_cu *cu)
5045 {
5046   return dwarf2_compute_name (name, die, cu, 0);
5047 }
5048
5049 /* Construct a physname for the given DIE in CU.  NAME may either be
5050    from a previous call to dwarf2_name or NULL.  The result will be
5051    allocated on the objfile_objstack or NULL if the DIE does not have a
5052    name.
5053
5054    The output string will be canonicalized (if C++/Java).  */
5055
5056 static const char *
5057 dwarf2_physname (char *name, struct die_info *die, struct dwarf2_cu *cu)
5058 {
5059   return dwarf2_compute_name (name, die, cu, 1);
5060 }
5061
5062 /* Read the import statement specified by the given die and record it.  */
5063
5064 static void
5065 read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
5066 {
5067   struct attribute *import_attr;
5068   struct die_info *imported_die;
5069   struct dwarf2_cu *imported_cu;
5070   const char *imported_name;
5071   const char *imported_name_prefix;
5072   const char *canonical_name;
5073   const char *import_alias;
5074   const char *imported_declaration = NULL;
5075   const char *import_prefix;
5076
5077   char *temp;
5078
5079   import_attr = dwarf2_attr (die, DW_AT_import, cu);
5080   if (import_attr == NULL)
5081     {
5082       complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
5083                  dwarf_tag_name (die->tag));
5084       return;
5085     }
5086
5087   imported_cu = cu;
5088   imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
5089   imported_name = dwarf2_name (imported_die, imported_cu);
5090   if (imported_name == NULL)
5091     {
5092       /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
5093
5094         The import in the following code:
5095         namespace A
5096           {
5097             typedef int B;
5098           }
5099
5100         int main ()
5101           {
5102             using A::B;
5103             B b;
5104             return b;
5105           }
5106
5107         ...
5108          <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
5109             <52>   DW_AT_decl_file   : 1
5110             <53>   DW_AT_decl_line   : 6
5111             <54>   DW_AT_import      : <0x75>
5112          <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
5113             <59>   DW_AT_name        : B
5114             <5b>   DW_AT_decl_file   : 1
5115             <5c>   DW_AT_decl_line   : 2
5116             <5d>   DW_AT_type        : <0x6e>
5117         ...
5118          <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
5119             <76>   DW_AT_byte_size   : 4
5120             <77>   DW_AT_encoding    : 5        (signed)
5121
5122         imports the wrong die ( 0x75 instead of 0x58 ).
5123         This case will be ignored until the gcc bug is fixed.  */
5124       return;
5125     }
5126
5127   /* Figure out the local name after import.  */
5128   import_alias = dwarf2_name (die, cu);
5129
5130   /* Figure out where the statement is being imported to.  */
5131   import_prefix = determine_prefix (die, cu);
5132
5133   /* Figure out what the scope of the imported die is and prepend it
5134      to the name of the imported die.  */
5135   imported_name_prefix = determine_prefix (imported_die, imported_cu);
5136
5137   if (imported_die->tag != DW_TAG_namespace
5138       && imported_die->tag != DW_TAG_module)
5139     {
5140       imported_declaration = imported_name;
5141       canonical_name = imported_name_prefix;
5142     }
5143   else if (strlen (imported_name_prefix) > 0)
5144     {
5145       temp = alloca (strlen (imported_name_prefix)
5146                      + 2 + strlen (imported_name) + 1);
5147       strcpy (temp, imported_name_prefix);
5148       strcat (temp, "::");
5149       strcat (temp, imported_name);
5150       canonical_name = temp;
5151     }
5152   else
5153     canonical_name = imported_name;
5154
5155   cp_add_using_directive (import_prefix,
5156                           canonical_name,
5157                           import_alias,
5158                           imported_declaration,
5159                           &cu->objfile->objfile_obstack);
5160 }
5161
5162 static void
5163 initialize_cu_func_list (struct dwarf2_cu *cu)
5164 {
5165   cu->first_fn = cu->last_fn = cu->cached_fn = NULL;
5166 }
5167
5168 /* Cleanup function for read_file_scope.  */
5169
5170 static void
5171 free_cu_line_header (void *arg)
5172 {
5173   struct dwarf2_cu *cu = arg;
5174
5175   free_line_header (cu->line_header);
5176   cu->line_header = NULL;
5177 }
5178
5179 static void
5180 find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu,
5181                          char **name, char **comp_dir)
5182 {
5183   struct attribute *attr;
5184
5185   *name = NULL;
5186   *comp_dir = NULL;
5187
5188   /* Find the filename.  Do not use dwarf2_name here, since the filename
5189      is not a source language identifier.  */
5190   attr = dwarf2_attr (die, DW_AT_name, cu);
5191   if (attr)
5192     {
5193       *name = DW_STRING (attr);
5194     }
5195
5196   attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
5197   if (attr)
5198     *comp_dir = DW_STRING (attr);
5199   else if (*name != NULL && IS_ABSOLUTE_PATH (*name))
5200     {
5201       *comp_dir = ldirname (*name);
5202       if (*comp_dir != NULL)
5203         make_cleanup (xfree, *comp_dir);
5204     }
5205   if (*comp_dir != NULL)
5206     {
5207       /* Irix 6.2 native cc prepends <machine>.: to the compilation
5208          directory, get rid of it.  */
5209       char *cp = strchr (*comp_dir, ':');
5210
5211       if (cp && cp != *comp_dir && cp[-1] == '.' && cp[1] == '/')
5212         *comp_dir = cp + 1;
5213     }
5214
5215   if (*name == NULL)
5216     *name = "<unknown>";
5217 }
5218
5219 /* Process DW_TAG_compile_unit.  */
5220
5221 static void
5222 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
5223 {
5224   struct objfile *objfile = cu->objfile;
5225   struct cleanup *back_to = make_cleanup (null_cleanup, 0);
5226   CORE_ADDR lowpc = ((CORE_ADDR) -1);
5227   CORE_ADDR highpc = ((CORE_ADDR) 0);
5228   struct attribute *attr;
5229   char *name = NULL;
5230   char *comp_dir = NULL;
5231   struct die_info *child_die;
5232   bfd *abfd = objfile->obfd;
5233   struct line_header *line_header = 0;
5234   CORE_ADDR baseaddr;
5235
5236   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5237
5238   get_scope_pc_bounds (die, &lowpc, &highpc, cu);
5239
5240   /* If we didn't find a lowpc, set it to highpc to avoid complaints
5241      from finish_block.  */
5242   if (lowpc == ((CORE_ADDR) -1))
5243     lowpc = highpc;
5244   lowpc += baseaddr;
5245   highpc += baseaddr;
5246
5247   find_file_and_directory (die, cu, &name, &comp_dir);
5248
5249   attr = dwarf2_attr (die, DW_AT_language, cu);
5250   if (attr)
5251     {
5252       set_cu_language (DW_UNSND (attr), cu);
5253     }
5254
5255   attr = dwarf2_attr (die, DW_AT_producer, cu);
5256   if (attr)
5257     cu->producer = DW_STRING (attr);
5258
5259   /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
5260      standardised yet.  As a workaround for the language detection we fall
5261      back to the DW_AT_producer string.  */
5262   if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
5263     cu->language = language_opencl;
5264
5265   /* We assume that we're processing GCC output.  */
5266   processing_gcc_compilation = 2;
5267
5268   processing_has_namespace_info = 0;
5269
5270   start_symtab (name, comp_dir, lowpc);
5271   record_debugformat ("DWARF 2");
5272   record_producer (cu->producer);
5273
5274   initialize_cu_func_list (cu);
5275
5276   /* Decode line number information if present.  We do this before
5277      processing child DIEs, so that the line header table is available
5278      for DW_AT_decl_file.  */
5279   attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
5280   if (attr)
5281     {
5282       unsigned int line_offset = DW_UNSND (attr);
5283       line_header = dwarf_decode_line_header (line_offset, abfd, cu);
5284       if (line_header)
5285         {
5286           cu->line_header = line_header;
5287           make_cleanup (free_cu_line_header, cu);
5288           dwarf_decode_lines (line_header, comp_dir, abfd, cu, NULL);
5289         }
5290     }
5291
5292   /* Process all dies in compilation unit.  */
5293   if (die->child != NULL)
5294     {
5295       child_die = die->child;
5296       while (child_die && child_die->tag)
5297         {
5298           process_die (child_die, cu);
5299           child_die = sibling_die (child_die);
5300         }
5301     }
5302
5303   /* Decode macro information, if present.  Dwarf 2 macro information
5304      refers to information in the line number info statement program
5305      header, so we can only read it if we've read the header
5306      successfully.  */
5307   attr = dwarf2_attr (die, DW_AT_macro_info, cu);
5308   if (attr && line_header)
5309     {
5310       unsigned int macro_offset = DW_UNSND (attr);
5311
5312       dwarf_decode_macros (line_header, macro_offset,
5313                            comp_dir, abfd, cu);
5314     }
5315   do_cleanups (back_to);
5316 }
5317
5318 /* Process DW_TAG_type_unit.
5319    For TUs we want to skip the first top level sibling if it's not the
5320    actual type being defined by this TU.  In this case the first top
5321    level sibling is there to provide context only.  */
5322
5323 static void
5324 read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
5325 {
5326   struct objfile *objfile = cu->objfile;
5327   struct cleanup *back_to = make_cleanup (null_cleanup, 0);
5328   CORE_ADDR lowpc;
5329   struct attribute *attr;
5330   char *name = NULL;
5331   char *comp_dir = NULL;
5332   struct die_info *child_die;
5333   bfd *abfd = objfile->obfd;
5334
5335   /* start_symtab needs a low pc, but we don't really have one.
5336      Do what read_file_scope would do in the absence of such info.  */
5337   lowpc = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5338
5339   /* Find the filename.  Do not use dwarf2_name here, since the filename
5340      is not a source language identifier.  */
5341   attr = dwarf2_attr (die, DW_AT_name, cu);
5342   if (attr)
5343     name = DW_STRING (attr);
5344
5345   attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
5346   if (attr)
5347     comp_dir = DW_STRING (attr);
5348   else if (name != NULL && IS_ABSOLUTE_PATH (name))
5349     {
5350       comp_dir = ldirname (name);
5351       if (comp_dir != NULL)
5352         make_cleanup (xfree, comp_dir);
5353     }
5354
5355   if (name == NULL)
5356     name = "<unknown>";
5357
5358   attr = dwarf2_attr (die, DW_AT_language, cu);
5359   if (attr)
5360     set_cu_language (DW_UNSND (attr), cu);
5361
5362   /* This isn't technically needed today.  It is done for symmetry
5363      with read_file_scope.  */
5364   attr = dwarf2_attr (die, DW_AT_producer, cu);
5365   if (attr)
5366     cu->producer = DW_STRING (attr);
5367
5368   /* We assume that we're processing GCC output.  */
5369   processing_gcc_compilation = 2;
5370
5371   processing_has_namespace_info = 0;
5372
5373   start_symtab (name, comp_dir, lowpc);
5374   record_debugformat ("DWARF 2");
5375   record_producer (cu->producer);
5376
5377   /* Process the dies in the type unit.  */
5378   if (die->child == NULL)
5379     {
5380       dump_die_for_error (die);
5381       error (_("Dwarf Error: Missing children for type unit [in module %s]"),
5382              bfd_get_filename (abfd));
5383     }
5384
5385   child_die = die->child;
5386
5387   while (child_die && child_die->tag)
5388     {
5389       process_die (child_die, cu);
5390
5391       child_die = sibling_die (child_die);
5392     }
5393
5394   do_cleanups (back_to);
5395 }
5396
5397 static void
5398 add_to_cu_func_list (const char *name, CORE_ADDR lowpc, CORE_ADDR highpc,
5399                      struct dwarf2_cu *cu)
5400 {
5401   struct function_range *thisfn;
5402
5403   thisfn = (struct function_range *)
5404     obstack_alloc (&cu->comp_unit_obstack, sizeof (struct function_range));
5405   thisfn->name = name;
5406   thisfn->lowpc = lowpc;
5407   thisfn->highpc = highpc;
5408   thisfn->seen_line = 0;
5409   thisfn->next = NULL;
5410
5411   if (cu->last_fn == NULL)
5412       cu->first_fn = thisfn;
5413   else
5414       cu->last_fn->next = thisfn;
5415
5416   cu->last_fn = thisfn;
5417 }
5418
5419 /* qsort helper for inherit_abstract_dies.  */
5420
5421 static int
5422 unsigned_int_compar (const void *ap, const void *bp)
5423 {
5424   unsigned int a = *(unsigned int *) ap;
5425   unsigned int b = *(unsigned int *) bp;
5426
5427   return (a > b) - (b > a);
5428 }
5429
5430 /* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
5431    Inherit only the children of the DW_AT_abstract_origin DIE not being
5432    already referenced by DW_AT_abstract_origin from the children of the
5433    current DIE.  */
5434
5435 static void
5436 inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
5437 {
5438   struct die_info *child_die;
5439   unsigned die_children_count;
5440   /* CU offsets which were referenced by children of the current DIE.  */
5441   unsigned *offsets;
5442   unsigned *offsets_end, *offsetp;
5443   /* Parent of DIE - referenced by DW_AT_abstract_origin.  */
5444   struct die_info *origin_die;
5445   /* Iterator of the ORIGIN_DIE children.  */
5446   struct die_info *origin_child_die;
5447   struct cleanup *cleanups;
5448   struct attribute *attr;
5449   struct dwarf2_cu *origin_cu;
5450   struct pending **origin_previous_list_in_scope;
5451
5452   attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
5453   if (!attr)
5454     return;
5455
5456   /* Note that following die references may follow to a die in a
5457      different cu.  */
5458
5459   origin_cu = cu;
5460   origin_die = follow_die_ref (die, attr, &origin_cu);
5461
5462   /* We're inheriting ORIGIN's children into the scope we'd put DIE's
5463      symbols in.  */
5464   origin_previous_list_in_scope = origin_cu->list_in_scope;
5465   origin_cu->list_in_scope = cu->list_in_scope;
5466
5467   if (die->tag != origin_die->tag
5468       && !(die->tag == DW_TAG_inlined_subroutine
5469            && origin_die->tag == DW_TAG_subprogram))
5470     complaint (&symfile_complaints,
5471                _("DIE 0x%x and its abstract origin 0x%x have different tags"),
5472                die->offset, origin_die->offset);
5473
5474   child_die = die->child;
5475   die_children_count = 0;
5476   while (child_die && child_die->tag)
5477     {
5478       child_die = sibling_die (child_die);
5479       die_children_count++;
5480     }
5481   offsets = xmalloc (sizeof (*offsets) * die_children_count);
5482   cleanups = make_cleanup (xfree, offsets);
5483
5484   offsets_end = offsets;
5485   child_die = die->child;
5486   while (child_die && child_die->tag)
5487     {
5488       /* For each CHILD_DIE, find the corresponding child of
5489          ORIGIN_DIE.  If there is more than one layer of
5490          DW_AT_abstract_origin, follow them all; there shouldn't be,
5491          but GCC versions at least through 4.4 generate this (GCC PR
5492          40573).  */
5493       struct die_info *child_origin_die = child_die;
5494       struct dwarf2_cu *child_origin_cu = cu;
5495
5496       while (1)
5497         {
5498           attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
5499                               child_origin_cu);
5500           if (attr == NULL)
5501             break;
5502           child_origin_die = follow_die_ref (child_origin_die, attr,
5503                                              &child_origin_cu);
5504         }
5505
5506       /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
5507          counterpart may exist.  */
5508       if (child_origin_die != child_die)
5509         {
5510           if (child_die->tag != child_origin_die->tag
5511               && !(child_die->tag == DW_TAG_inlined_subroutine
5512                    && child_origin_die->tag == DW_TAG_subprogram))
5513             complaint (&symfile_complaints,
5514                        _("Child DIE 0x%x and its abstract origin 0x%x have "
5515                          "different tags"), child_die->offset,
5516                        child_origin_die->offset);
5517           if (child_origin_die->parent != origin_die)
5518             complaint (&symfile_complaints,
5519                        _("Child DIE 0x%x and its abstract origin 0x%x have "
5520                          "different parents"), child_die->offset,
5521                        child_origin_die->offset);
5522           else
5523             *offsets_end++ = child_origin_die->offset;
5524         }
5525       child_die = sibling_die (child_die);
5526     }
5527   qsort (offsets, offsets_end - offsets, sizeof (*offsets),
5528          unsigned_int_compar);
5529   for (offsetp = offsets + 1; offsetp < offsets_end; offsetp++)
5530     if (offsetp[-1] == *offsetp)
5531       complaint (&symfile_complaints,
5532                  _("Multiple children of DIE 0x%x refer "
5533                    "to DIE 0x%x as their abstract origin"),
5534                  die->offset, *offsetp);
5535
5536   offsetp = offsets;
5537   origin_child_die = origin_die->child;
5538   while (origin_child_die && origin_child_die->tag)
5539     {
5540       /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children?  */
5541       while (offsetp < offsets_end && *offsetp < origin_child_die->offset)
5542         offsetp++;
5543       if (offsetp >= offsets_end || *offsetp > origin_child_die->offset)
5544         {
5545           /* Found that ORIGIN_CHILD_DIE is really not referenced.  */
5546           process_die (origin_child_die, origin_cu);
5547         }
5548       origin_child_die = sibling_die (origin_child_die);
5549     }
5550   origin_cu->list_in_scope = origin_previous_list_in_scope;
5551
5552   do_cleanups (cleanups);
5553 }
5554
5555 static void
5556 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
5557 {
5558   struct objfile *objfile = cu->objfile;
5559   struct context_stack *new;
5560   CORE_ADDR lowpc;
5561   CORE_ADDR highpc;
5562   struct die_info *child_die;
5563   struct attribute *attr, *call_line, *call_file;
5564   char *name;
5565   CORE_ADDR baseaddr;
5566   struct block *block;
5567   int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
5568   VEC (symbolp) *template_args = NULL;
5569   struct template_symbol *templ_func = NULL;
5570
5571   if (inlined_func)
5572     {
5573       /* If we do not have call site information, we can't show the
5574          caller of this inlined function.  That's too confusing, so
5575          only use the scope for local variables.  */
5576       call_line = dwarf2_attr (die, DW_AT_call_line, cu);
5577       call_file = dwarf2_attr (die, DW_AT_call_file, cu);
5578       if (call_line == NULL || call_file == NULL)
5579         {
5580           read_lexical_block_scope (die, cu);
5581           return;
5582         }
5583     }
5584
5585   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5586
5587   name = dwarf2_name (die, cu);
5588
5589   /* Ignore functions with missing or empty names.  These are actually
5590      illegal according to the DWARF standard.  */
5591   if (name == NULL)
5592     {
5593       complaint (&symfile_complaints,
5594                  _("missing name for subprogram DIE at %d"), die->offset);
5595       return;
5596     }
5597
5598   /* Ignore functions with missing or invalid low and high pc attributes.  */
5599   if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
5600     {
5601       attr = dwarf2_attr (die, DW_AT_external, cu);
5602       if (!attr || !DW_UNSND (attr))
5603         complaint (&symfile_complaints,
5604                    _("cannot get low and high bounds "
5605                      "for subprogram DIE at %d"),
5606                    die->offset);
5607       return;
5608     }
5609
5610   lowpc += baseaddr;
5611   highpc += baseaddr;
5612
5613   /* Record the function range for dwarf_decode_lines.  */
5614   add_to_cu_func_list (name, lowpc, highpc, cu);
5615
5616   /* If we have any template arguments, then we must allocate a
5617      different sort of symbol.  */
5618   for (child_die = die->child; child_die; child_die = sibling_die (child_die))
5619     {
5620       if (child_die->tag == DW_TAG_template_type_param
5621           || child_die->tag == DW_TAG_template_value_param)
5622         {
5623           templ_func = OBSTACK_ZALLOC (&objfile->objfile_obstack,
5624                                        struct template_symbol);
5625           templ_func->base.is_cplus_template_function = 1;
5626           break;
5627         }
5628     }
5629
5630   new = push_context (0, lowpc);
5631   new->name = new_symbol_full (die, read_type_die (die, cu), cu,
5632                                (struct symbol *) templ_func);
5633
5634   /* If there is a location expression for DW_AT_frame_base, record
5635      it.  */
5636   attr = dwarf2_attr (die, DW_AT_frame_base, cu);
5637   if (attr)
5638     /* FIXME: cagney/2004-01-26: The DW_AT_frame_base's location
5639        expression is being recorded directly in the function's symbol
5640        and not in a separate frame-base object.  I guess this hack is
5641        to avoid adding some sort of frame-base adjunct/annex to the
5642        function's symbol :-(.  The problem with doing this is that it
5643        results in a function symbol with a location expression that
5644        has nothing to do with the location of the function, ouch!  The
5645        relationship should be: a function's symbol has-a frame base; a
5646        frame-base has-a location expression.  */
5647     dwarf2_symbol_mark_computed (attr, new->name, cu);
5648
5649   cu->list_in_scope = &local_symbols;
5650
5651   if (die->child != NULL)
5652     {
5653       child_die = die->child;
5654       while (child_die && child_die->tag)
5655         {
5656           if (child_die->tag == DW_TAG_template_type_param
5657               || child_die->tag == DW_TAG_template_value_param)
5658             {
5659               struct symbol *arg = new_symbol (child_die, NULL, cu);
5660
5661               if (arg != NULL)
5662                 VEC_safe_push (symbolp, template_args, arg);
5663             }
5664           else
5665             process_die (child_die, cu);
5666           child_die = sibling_die (child_die);
5667         }
5668     }
5669
5670   inherit_abstract_dies (die, cu);
5671
5672   /* If we have a DW_AT_specification, we might need to import using
5673      directives from the context of the specification DIE.  See the
5674      comment in determine_prefix.  */
5675   if (cu->language == language_cplus
5676       && dwarf2_attr (die, DW_AT_specification, cu))
5677     {
5678       struct dwarf2_cu *spec_cu = cu;
5679       struct die_info *spec_die = die_specification (die, &spec_cu);
5680
5681       while (spec_die)
5682         {
5683           child_die = spec_die->child;
5684           while (child_die && child_die->tag)
5685             {
5686               if (child_die->tag == DW_TAG_imported_module)
5687                 process_die (child_die, spec_cu);
5688               child_die = sibling_die (child_die);
5689             }
5690
5691           /* In some cases, GCC generates specification DIEs that
5692              themselves contain DW_AT_specification attributes.  */
5693           spec_die = die_specification (spec_die, &spec_cu);
5694         }
5695     }
5696
5697   new = pop_context ();
5698   /* Make a block for the local symbols within.  */
5699   block = finish_block (new->name, &local_symbols, new->old_blocks,
5700                         lowpc, highpc, objfile);
5701
5702   /* For C++, set the block's scope.  */
5703   if (cu->language == language_cplus || cu->language == language_fortran)
5704     cp_set_block_scope (new->name, block, &objfile->objfile_obstack,
5705                         determine_prefix (die, cu),
5706                         processing_has_namespace_info);
5707
5708   /* If we have address ranges, record them.  */
5709   dwarf2_record_block_ranges (die, block, baseaddr, cu);
5710
5711   /* Attach template arguments to function.  */
5712   if (! VEC_empty (symbolp, template_args))
5713     {
5714       gdb_assert (templ_func != NULL);
5715
5716       templ_func->n_template_arguments = VEC_length (symbolp, template_args);
5717       templ_func->template_arguments
5718         = obstack_alloc (&objfile->objfile_obstack,
5719                          (templ_func->n_template_arguments
5720                           * sizeof (struct symbol *)));
5721       memcpy (templ_func->template_arguments,
5722               VEC_address (symbolp, template_args),
5723               (templ_func->n_template_arguments * sizeof (struct symbol *)));
5724       VEC_free (symbolp, template_args);
5725     }
5726
5727   /* In C++, we can have functions nested inside functions (e.g., when
5728      a function declares a class that has methods).  This means that
5729      when we finish processing a function scope, we may need to go
5730      back to building a containing block's symbol lists.  */
5731   local_symbols = new->locals;
5732   param_symbols = new->params;
5733   using_directives = new->using_directives;
5734
5735   /* If we've finished processing a top-level function, subsequent
5736      symbols go in the file symbol list.  */
5737   if (outermost_context_p ())
5738     cu->list_in_scope = &file_symbols;
5739 }
5740
5741 /* Process all the DIES contained within a lexical block scope.  Start
5742    a new scope, process the dies, and then close the scope.  */
5743
5744 static void
5745 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
5746 {
5747   struct objfile *objfile = cu->objfile;
5748   struct context_stack *new;
5749   CORE_ADDR lowpc, highpc;
5750   struct die_info *child_die;
5751   CORE_ADDR baseaddr;
5752
5753   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5754
5755   /* Ignore blocks with missing or invalid low and high pc attributes.  */
5756   /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
5757      as multiple lexical blocks?  Handling children in a sane way would
5758      be nasty.  Might be easier to properly extend generic blocks to
5759      describe ranges.  */
5760   if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
5761     return;
5762   lowpc += baseaddr;
5763   highpc += baseaddr;
5764
5765   push_context (0, lowpc);
5766   if (die->child != NULL)
5767     {
5768       child_die = die->child;
5769       while (child_die && child_die->tag)
5770         {
5771           process_die (child_die, cu);
5772           child_die = sibling_die (child_die);
5773         }
5774     }
5775   new = pop_context ();
5776
5777   if (local_symbols != NULL || using_directives != NULL)
5778     {
5779       struct block *block
5780         = finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
5781                         highpc, objfile);
5782
5783       /* Note that recording ranges after traversing children, as we
5784          do here, means that recording a parent's ranges entails
5785          walking across all its children's ranges as they appear in
5786          the address map, which is quadratic behavior.
5787
5788          It would be nicer to record the parent's ranges before
5789          traversing its children, simply overriding whatever you find
5790          there.  But since we don't even decide whether to create a
5791          block until after we've traversed its children, that's hard
5792          to do.  */
5793       dwarf2_record_block_ranges (die, block, baseaddr, cu);
5794     }
5795   local_symbols = new->locals;
5796   using_directives = new->using_directives;
5797 }
5798
5799 /* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
5800    Return 1 if the attributes are present and valid, otherwise, return 0.
5801    If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'.  */
5802
5803 static int
5804 dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
5805                     CORE_ADDR *high_return, struct dwarf2_cu *cu,
5806                     struct partial_symtab *ranges_pst)
5807 {
5808   struct objfile *objfile = cu->objfile;
5809   struct comp_unit_head *cu_header = &cu->header;
5810   bfd *obfd = objfile->obfd;
5811   unsigned int addr_size = cu_header->addr_size;
5812   CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
5813   /* Base address selection entry.  */
5814   CORE_ADDR base;
5815   int found_base;
5816   unsigned int dummy;
5817   gdb_byte *buffer;
5818   CORE_ADDR marker;
5819   int low_set;
5820   CORE_ADDR low = 0;
5821   CORE_ADDR high = 0;
5822   CORE_ADDR baseaddr;
5823
5824   found_base = cu->base_known;
5825   base = cu->base_address;
5826
5827   dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
5828   if (offset >= dwarf2_per_objfile->ranges.size)
5829     {
5830       complaint (&symfile_complaints,
5831                  _("Offset %d out of bounds for DW_AT_ranges attribute"),
5832                  offset);
5833       return 0;
5834     }
5835   buffer = dwarf2_per_objfile->ranges.buffer + offset;
5836
5837   /* Read in the largest possible address.  */
5838   marker = read_address (obfd, buffer, cu, &dummy);
5839   if ((marker & mask) == mask)
5840     {
5841       /* If we found the largest possible address, then
5842          read the base address.  */
5843       base = read_address (obfd, buffer + addr_size, cu, &dummy);
5844       buffer += 2 * addr_size;
5845       offset += 2 * addr_size;
5846       found_base = 1;
5847     }
5848
5849   low_set = 0;
5850
5851   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5852
5853   while (1)
5854     {
5855       CORE_ADDR range_beginning, range_end;
5856
5857       range_beginning = read_address (obfd, buffer, cu, &dummy);
5858       buffer += addr_size;
5859       range_end = read_address (obfd, buffer, cu, &dummy);
5860       buffer += addr_size;
5861       offset += 2 * addr_size;
5862
5863       /* An end of list marker is a pair of zero addresses.  */
5864       if (range_beginning == 0 && range_end == 0)
5865         /* Found the end of list entry.  */
5866         break;
5867
5868       /* Each base address selection entry is a pair of 2 values.
5869          The first is the largest possible address, the second is
5870          the base address.  Check for a base address here.  */
5871       if ((range_beginning & mask) == mask)
5872         {
5873           /* If we found the largest possible address, then
5874              read the base address.  */
5875           base = read_address (obfd, buffer + addr_size, cu, &dummy);
5876           found_base = 1;
5877           continue;
5878         }
5879
5880       if (!found_base)
5881         {
5882           /* We have no valid base address for the ranges
5883              data.  */
5884           complaint (&symfile_complaints,
5885                      _("Invalid .debug_ranges data (no base address)"));
5886           return 0;
5887         }
5888
5889       if (range_beginning > range_end)
5890         {
5891           /* Inverted range entries are invalid.  */
5892           complaint (&symfile_complaints,
5893                      _("Invalid .debug_ranges data (inverted range)"));
5894           return 0;
5895         }
5896
5897       /* Empty range entries have no effect.  */
5898       if (range_beginning == range_end)
5899         continue;
5900
5901       range_beginning += base;
5902       range_end += base;
5903
5904       if (ranges_pst != NULL)
5905         addrmap_set_empty (objfile->psymtabs_addrmap,
5906                            range_beginning + baseaddr,
5907                            range_end - 1 + baseaddr,
5908                            ranges_pst);
5909
5910       /* FIXME: This is recording everything as a low-high
5911          segment of consecutive addresses.  We should have a
5912          data structure for discontiguous block ranges
5913          instead.  */
5914       if (! low_set)
5915         {
5916           low = range_beginning;
5917           high = range_end;
5918           low_set = 1;
5919         }
5920       else
5921         {
5922           if (range_beginning < low)
5923             low = range_beginning;
5924           if (range_end > high)
5925             high = range_end;
5926         }
5927     }
5928
5929   if (! low_set)
5930     /* If the first entry is an end-of-list marker, the range
5931        describes an empty scope, i.e. no instructions.  */
5932     return 0;
5933
5934   if (low_return)
5935     *low_return = low;
5936   if (high_return)
5937     *high_return = high;
5938   return 1;
5939 }
5940
5941 /* Get low and high pc attributes from a die.  Return 1 if the attributes
5942    are present and valid, otherwise, return 0.  Return -1 if the range is
5943    discontinuous, i.e. derived from DW_AT_ranges information.  */
5944 static int
5945 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
5946                       CORE_ADDR *highpc, struct dwarf2_cu *cu,
5947                       struct partial_symtab *pst)
5948 {
5949   struct attribute *attr;
5950   CORE_ADDR low = 0;
5951   CORE_ADDR high = 0;
5952   int ret = 0;
5953
5954   attr = dwarf2_attr (die, DW_AT_high_pc, cu);
5955   if (attr)
5956     {
5957       high = DW_ADDR (attr);
5958       attr = dwarf2_attr (die, DW_AT_low_pc, cu);
5959       if (attr)
5960         low = DW_ADDR (attr);
5961       else
5962         /* Found high w/o low attribute.  */
5963         return 0;
5964
5965       /* Found consecutive range of addresses.  */
5966       ret = 1;
5967     }
5968   else
5969     {
5970       attr = dwarf2_attr (die, DW_AT_ranges, cu);
5971       if (attr != NULL)
5972         {
5973           /* Value of the DW_AT_ranges attribute is the offset in the
5974              .debug_ranges section.  */
5975           if (!dwarf2_ranges_read (DW_UNSND (attr), &low, &high, cu, pst))
5976             return 0;
5977           /* Found discontinuous range of addresses.  */
5978           ret = -1;
5979         }
5980     }
5981
5982   if (high < low)
5983     return 0;
5984
5985   /* When using the GNU linker, .gnu.linkonce. sections are used to
5986      eliminate duplicate copies of functions and vtables and such.
5987      The linker will arbitrarily choose one and discard the others.
5988      The AT_*_pc values for such functions refer to local labels in
5989      these sections.  If the section from that file was discarded, the
5990      labels are not in the output, so the relocs get a value of 0.
5991      If this is a discarded function, mark the pc bounds as invalid,
5992      so that GDB will ignore it.  */
5993   if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
5994     return 0;
5995
5996   *lowpc = low;
5997   *highpc = high;
5998   return ret;
5999 }
6000
6001 /* Assuming that DIE represents a subprogram DIE or a lexical block, get
6002    its low and high PC addresses.  Do nothing if these addresses could not
6003    be determined.  Otherwise, set LOWPC to the low address if it is smaller,
6004    and HIGHPC to the high address if greater than HIGHPC.  */
6005
6006 static void
6007 dwarf2_get_subprogram_pc_bounds (struct die_info *die,
6008                                  CORE_ADDR *lowpc, CORE_ADDR *highpc,
6009                                  struct dwarf2_cu *cu)
6010 {
6011   CORE_ADDR low, high;
6012   struct die_info *child = die->child;
6013
6014   if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL))
6015     {
6016       *lowpc = min (*lowpc, low);
6017       *highpc = max (*highpc, high);
6018     }
6019
6020   /* If the language does not allow nested subprograms (either inside
6021      subprograms or lexical blocks), we're done.  */
6022   if (cu->language != language_ada)
6023     return;
6024
6025   /* Check all the children of the given DIE.  If it contains nested
6026      subprograms, then check their pc bounds.  Likewise, we need to
6027      check lexical blocks as well, as they may also contain subprogram
6028      definitions.  */
6029   while (child && child->tag)
6030     {
6031       if (child->tag == DW_TAG_subprogram
6032           || child->tag == DW_TAG_lexical_block)
6033         dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
6034       child = sibling_die (child);
6035     }
6036 }
6037
6038 /* Get the low and high pc's represented by the scope DIE, and store
6039    them in *LOWPC and *HIGHPC.  If the correct values can't be
6040    determined, set *LOWPC to -1 and *HIGHPC to 0.  */
6041
6042 static void
6043 get_scope_pc_bounds (struct die_info *die,
6044                      CORE_ADDR *lowpc, CORE_ADDR *highpc,
6045                      struct dwarf2_cu *cu)
6046 {
6047   CORE_ADDR best_low = (CORE_ADDR) -1;
6048   CORE_ADDR best_high = (CORE_ADDR) 0;
6049   CORE_ADDR current_low, current_high;
6050
6051   if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL))
6052     {
6053       best_low = current_low;
6054       best_high = current_high;
6055     }
6056   else
6057     {
6058       struct die_info *child = die->child;
6059
6060       while (child && child->tag)
6061         {
6062           switch (child->tag) {
6063           case DW_TAG_subprogram:
6064             dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
6065             break;
6066           case DW_TAG_namespace:
6067           case DW_TAG_module:
6068             /* FIXME: carlton/2004-01-16: Should we do this for
6069                DW_TAG_class_type/DW_TAG_structure_type, too?  I think
6070                that current GCC's always emit the DIEs corresponding
6071                to definitions of methods of classes as children of a
6072                DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
6073                the DIEs giving the declarations, which could be
6074                anywhere).  But I don't see any reason why the
6075                standards says that they have to be there.  */
6076             get_scope_pc_bounds (child, &current_low, &current_high, cu);
6077
6078             if (current_low != ((CORE_ADDR) -1))
6079               {
6080                 best_low = min (best_low, current_low);
6081                 best_high = max (best_high, current_high);
6082               }
6083             break;
6084           default:
6085             /* Ignore.  */
6086             break;
6087           }
6088
6089           child = sibling_die (child);
6090         }
6091     }
6092
6093   *lowpc = best_low;
6094   *highpc = best_high;
6095 }
6096
6097 /* Record the address ranges for BLOCK, offset by BASEADDR, as given
6098    in DIE.  */
6099 static void
6100 dwarf2_record_block_ranges (struct die_info *die, struct block *block,
6101                             CORE_ADDR baseaddr, struct dwarf2_cu *cu)
6102 {
6103   struct attribute *attr;
6104
6105   attr = dwarf2_attr (die, DW_AT_high_pc, cu);
6106   if (attr)
6107     {
6108       CORE_ADDR high = DW_ADDR (attr);
6109
6110       attr = dwarf2_attr (die, DW_AT_low_pc, cu);
6111       if (attr)
6112         {
6113           CORE_ADDR low = DW_ADDR (attr);
6114
6115           record_block_range (block, baseaddr + low, baseaddr + high - 1);
6116         }
6117     }
6118
6119   attr = dwarf2_attr (die, DW_AT_ranges, cu);
6120   if (attr)
6121     {
6122       bfd *obfd = cu->objfile->obfd;
6123
6124       /* The value of the DW_AT_ranges attribute is the offset of the
6125          address range list in the .debug_ranges section.  */
6126       unsigned long offset = DW_UNSND (attr);
6127       gdb_byte *buffer = dwarf2_per_objfile->ranges.buffer + offset;
6128
6129       /* For some target architectures, but not others, the
6130          read_address function sign-extends the addresses it returns.
6131          To recognize base address selection entries, we need a
6132          mask.  */
6133       unsigned int addr_size = cu->header.addr_size;
6134       CORE_ADDR base_select_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
6135
6136       /* The base address, to which the next pair is relative.  Note
6137          that this 'base' is a DWARF concept: most entries in a range
6138          list are relative, to reduce the number of relocs against the
6139          debugging information.  This is separate from this function's
6140          'baseaddr' argument, which GDB uses to relocate debugging
6141          information from a shared library based on the address at
6142          which the library was loaded.  */
6143       CORE_ADDR base = cu->base_address;
6144       int base_known = cu->base_known;
6145
6146       gdb_assert (dwarf2_per_objfile->ranges.readin);
6147       if (offset >= dwarf2_per_objfile->ranges.size)
6148         {
6149           complaint (&symfile_complaints,
6150                      _("Offset %lu out of bounds for DW_AT_ranges attribute"),
6151                      offset);
6152           return;
6153         }
6154
6155       for (;;)
6156         {
6157           unsigned int bytes_read;
6158           CORE_ADDR start, end;
6159
6160           start = read_address (obfd, buffer, cu, &bytes_read);
6161           buffer += bytes_read;
6162           end = read_address (obfd, buffer, cu, &bytes_read);
6163           buffer += bytes_read;
6164
6165           /* Did we find the end of the range list?  */
6166           if (start == 0 && end == 0)
6167             break;
6168
6169           /* Did we find a base address selection entry?  */
6170           else if ((start & base_select_mask) == base_select_mask)
6171             {
6172               base = end;
6173               base_known = 1;
6174             }
6175
6176           /* We found an ordinary address range.  */
6177           else
6178             {
6179               if (!base_known)
6180                 {
6181                   complaint (&symfile_complaints,
6182                              _("Invalid .debug_ranges data "
6183                                "(no base address)"));
6184                   return;
6185                 }
6186
6187               if (start > end)
6188                 {
6189                   /* Inverted range entries are invalid.  */
6190                   complaint (&symfile_complaints,
6191                              _("Invalid .debug_ranges data "
6192                                "(inverted range)"));
6193                   return;
6194                 }
6195
6196               /* Empty range entries have no effect.  */
6197               if (start == end)
6198                 continue;
6199
6200               record_block_range (block,
6201                                   baseaddr + base + start,
6202                                   baseaddr + base + end - 1);
6203             }
6204         }
6205     }
6206 }
6207
6208 /* Add an aggregate field to the field list.  */
6209
6210 static void
6211 dwarf2_add_field (struct field_info *fip, struct die_info *die,
6212                   struct dwarf2_cu *cu)
6213 {
6214   struct objfile *objfile = cu->objfile;
6215   struct gdbarch *gdbarch = get_objfile_arch (objfile);
6216   struct nextfield *new_field;
6217   struct attribute *attr;
6218   struct field *fp;
6219   char *fieldname = "";
6220
6221   /* Allocate a new field list entry and link it in.  */
6222   new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
6223   make_cleanup (xfree, new_field);
6224   memset (new_field, 0, sizeof (struct nextfield));
6225
6226   if (die->tag == DW_TAG_inheritance)
6227     {
6228       new_field->next = fip->baseclasses;
6229       fip->baseclasses = new_field;
6230     }
6231   else
6232     {
6233       new_field->next = fip->fields;
6234       fip->fields = new_field;
6235     }
6236   fip->nfields++;
6237
6238   /* Handle accessibility and virtuality of field.
6239      The default accessibility for members is public, the default
6240      accessibility for inheritance is private.  */
6241   if (die->tag != DW_TAG_inheritance)
6242     new_field->accessibility = DW_ACCESS_public;
6243   else
6244     new_field->accessibility = DW_ACCESS_private;
6245   new_field->virtuality = DW_VIRTUALITY_none;
6246
6247   attr = dwarf2_attr (die, DW_AT_accessibility, cu);
6248   if (attr)
6249     new_field->accessibility = DW_UNSND (attr);
6250   if (new_field->accessibility != DW_ACCESS_public)
6251     fip->non_public_fields = 1;
6252   attr = dwarf2_attr (die, DW_AT_virtuality, cu);
6253   if (attr)
6254     new_field->virtuality = DW_UNSND (attr);
6255
6256   fp = &new_field->field;
6257
6258   if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
6259     {
6260       /* Data member other than a C++ static data member.  */
6261
6262       /* Get type of field.  */
6263       fp->type = die_type (die, cu);
6264
6265       SET_FIELD_BITPOS (*fp, 0);
6266
6267       /* Get bit size of field (zero if none).  */
6268       attr = dwarf2_attr (die, DW_AT_bit_size, cu);
6269       if (attr)
6270         {
6271           FIELD_BITSIZE (*fp) = DW_UNSND (attr);
6272         }
6273       else
6274         {
6275           FIELD_BITSIZE (*fp) = 0;
6276         }
6277
6278       /* Get bit offset of field.  */
6279       attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
6280       if (attr)
6281         {
6282           int byte_offset = 0;
6283
6284           if (attr_form_is_section_offset (attr))
6285             dwarf2_complex_location_expr_complaint ();
6286           else if (attr_form_is_constant (attr))
6287             byte_offset = dwarf2_get_attr_constant_value (attr, 0);
6288           else if (attr_form_is_block (attr))
6289             byte_offset = decode_locdesc (DW_BLOCK (attr), cu);
6290           else
6291             dwarf2_complex_location_expr_complaint ();
6292
6293           SET_FIELD_BITPOS (*fp, byte_offset * bits_per_byte);
6294         }
6295       attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
6296       if (attr)
6297         {
6298           if (gdbarch_bits_big_endian (gdbarch))
6299             {
6300               /* For big endian bits, the DW_AT_bit_offset gives the
6301                  additional bit offset from the MSB of the containing
6302                  anonymous object to the MSB of the field.  We don't
6303                  have to do anything special since we don't need to
6304                  know the size of the anonymous object.  */
6305               FIELD_BITPOS (*fp) += DW_UNSND (attr);
6306             }
6307           else
6308             {
6309               /* For little endian bits, compute the bit offset to the
6310                  MSB of the anonymous object, subtract off the number of
6311                  bits from the MSB of the field to the MSB of the
6312                  object, and then subtract off the number of bits of
6313                  the field itself.  The result is the bit offset of
6314                  the LSB of the field.  */
6315               int anonymous_size;
6316               int bit_offset = DW_UNSND (attr);
6317
6318               attr = dwarf2_attr (die, DW_AT_byte_size, cu);
6319               if (attr)
6320                 {
6321                   /* The size of the anonymous object containing
6322                      the bit field is explicit, so use the
6323                      indicated size (in bytes).  */
6324                   anonymous_size = DW_UNSND (attr);
6325                 }
6326               else
6327                 {
6328                   /* The size of the anonymous object containing
6329                      the bit field must be inferred from the type
6330                      attribute of the data member containing the
6331                      bit field.  */
6332                   anonymous_size = TYPE_LENGTH (fp->type);
6333                 }
6334               FIELD_BITPOS (*fp) += anonymous_size * bits_per_byte
6335                 - bit_offset - FIELD_BITSIZE (*fp);
6336             }
6337         }
6338
6339       /* Get name of field.  */
6340       fieldname = dwarf2_name (die, cu);
6341       if (fieldname == NULL)
6342         fieldname = "";
6343
6344       /* The name is already allocated along with this objfile, so we don't
6345          need to duplicate it for the type.  */
6346       fp->name = fieldname;
6347
6348       /* Change accessibility for artificial fields (e.g. virtual table
6349          pointer or virtual base class pointer) to private.  */
6350       if (dwarf2_attr (die, DW_AT_artificial, cu))
6351         {
6352           FIELD_ARTIFICIAL (*fp) = 1;
6353           new_field->accessibility = DW_ACCESS_private;
6354           fip->non_public_fields = 1;
6355         }
6356     }
6357   else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
6358     {
6359       /* C++ static member.  */
6360
6361       /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
6362          is a declaration, but all versions of G++ as of this writing
6363          (so through at least 3.2.1) incorrectly generate
6364          DW_TAG_variable tags.  */
6365
6366       char *physname;
6367
6368       /* Get name of field.  */
6369       fieldname = dwarf2_name (die, cu);
6370       if (fieldname == NULL)
6371         return;
6372
6373       attr = dwarf2_attr (die, DW_AT_const_value, cu);
6374       if (attr
6375           /* Only create a symbol if this is an external value.
6376              new_symbol checks this and puts the value in the global symbol
6377              table, which we want.  If it is not external, new_symbol
6378              will try to put the value in cu->list_in_scope which is wrong.  */
6379           && dwarf2_flag_true_p (die, DW_AT_external, cu))
6380         {
6381           /* A static const member, not much different than an enum as far as
6382              we're concerned, except that we can support more types.  */
6383           new_symbol (die, NULL, cu);
6384         }
6385
6386       /* Get physical name.  */
6387       physname = (char *) dwarf2_physname (fieldname, die, cu);
6388
6389       /* The name is already allocated along with this objfile, so we don't
6390          need to duplicate it for the type.  */
6391       SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
6392       FIELD_TYPE (*fp) = die_type (die, cu);
6393       FIELD_NAME (*fp) = fieldname;
6394     }
6395   else if (die->tag == DW_TAG_inheritance)
6396     {
6397       /* C++ base class field.  */
6398       attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
6399       if (attr)
6400         {
6401           int byte_offset = 0;
6402
6403           if (attr_form_is_section_offset (attr))
6404             dwarf2_complex_location_expr_complaint ();
6405           else if (attr_form_is_constant (attr))
6406             byte_offset = dwarf2_get_attr_constant_value (attr, 0);
6407           else if (attr_form_is_block (attr))
6408             byte_offset = decode_locdesc (DW_BLOCK (attr), cu);
6409           else
6410             dwarf2_complex_location_expr_complaint ();
6411
6412           SET_FIELD_BITPOS (*fp, byte_offset * bits_per_byte);
6413         }
6414       FIELD_BITSIZE (*fp) = 0;
6415       FIELD_TYPE (*fp) = die_type (die, cu);
6416       FIELD_NAME (*fp) = type_name_no_tag (fp->type);
6417       fip->nbaseclasses++;
6418     }
6419 }
6420
6421 /* Add a typedef defined in the scope of the FIP's class.  */
6422
6423 static void
6424 dwarf2_add_typedef (struct field_info *fip, struct die_info *die,
6425                     struct dwarf2_cu *cu)
6426 {
6427   struct objfile *objfile = cu->objfile;
6428   struct typedef_field_list *new_field;
6429   struct attribute *attr;
6430   struct typedef_field *fp;
6431   char *fieldname = "";
6432
6433   /* Allocate a new field list entry and link it in.  */
6434   new_field = xzalloc (sizeof (*new_field));
6435   make_cleanup (xfree, new_field);
6436
6437   gdb_assert (die->tag == DW_TAG_typedef);
6438
6439   fp = &new_field->field;
6440
6441   /* Get name of field.  */
6442   fp->name = dwarf2_name (die, cu);
6443   if (fp->name == NULL)
6444     return;
6445
6446   fp->type = read_type_die (die, cu);
6447
6448   new_field->next = fip->typedef_field_list;
6449   fip->typedef_field_list = new_field;
6450   fip->typedef_field_list_count++;
6451 }
6452
6453 /* Create the vector of fields, and attach it to the type.  */
6454
6455 static void
6456 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
6457                               struct dwarf2_cu *cu)
6458 {
6459   int nfields = fip->nfields;
6460
6461   /* Record the field count, allocate space for the array of fields,
6462      and create blank accessibility bitfields if necessary.  */
6463   TYPE_NFIELDS (type) = nfields;
6464   TYPE_FIELDS (type) = (struct field *)
6465     TYPE_ALLOC (type, sizeof (struct field) * nfields);
6466   memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
6467
6468   if (fip->non_public_fields && cu->language != language_ada)
6469     {
6470       ALLOCATE_CPLUS_STRUCT_TYPE (type);
6471
6472       TYPE_FIELD_PRIVATE_BITS (type) =
6473         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
6474       B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
6475
6476       TYPE_FIELD_PROTECTED_BITS (type) =
6477         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
6478       B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
6479
6480       TYPE_FIELD_IGNORE_BITS (type) =
6481         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
6482       B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
6483     }
6484
6485   /* If the type has baseclasses, allocate and clear a bit vector for
6486      TYPE_FIELD_VIRTUAL_BITS.  */
6487   if (fip->nbaseclasses && cu->language != language_ada)
6488     {
6489       int num_bytes = B_BYTES (fip->nbaseclasses);
6490       unsigned char *pointer;
6491
6492       ALLOCATE_CPLUS_STRUCT_TYPE (type);
6493       pointer = TYPE_ALLOC (type, num_bytes);
6494       TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
6495       B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
6496       TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
6497     }
6498
6499   /* Copy the saved-up fields into the field vector.  Start from the head of
6500      the list, adding to the tail of the field array, so that they end up in
6501      the same order in the array in which they were added to the list.  */
6502   while (nfields-- > 0)
6503     {
6504       struct nextfield *fieldp;
6505
6506       if (fip->fields)
6507         {
6508           fieldp = fip->fields;
6509           fip->fields = fieldp->next;
6510         }
6511       else
6512         {
6513           fieldp = fip->baseclasses;
6514           fip->baseclasses = fieldp->next;
6515         }
6516
6517       TYPE_FIELD (type, nfields) = fieldp->field;
6518       switch (fieldp->accessibility)
6519         {
6520         case DW_ACCESS_private:
6521           if (cu->language != language_ada)
6522             SET_TYPE_FIELD_PRIVATE (type, nfields);
6523           break;
6524
6525         case DW_ACCESS_protected:
6526           if (cu->language != language_ada)
6527             SET_TYPE_FIELD_PROTECTED (type, nfields);
6528           break;
6529
6530         case DW_ACCESS_public:
6531           break;
6532
6533         default:
6534           /* Unknown accessibility.  Complain and treat it as public.  */
6535           {
6536             complaint (&symfile_complaints, _("unsupported accessibility %d"),
6537                        fieldp->accessibility);
6538           }
6539           break;
6540         }
6541       if (nfields < fip->nbaseclasses)
6542         {
6543           switch (fieldp->virtuality)
6544             {
6545             case DW_VIRTUALITY_virtual:
6546             case DW_VIRTUALITY_pure_virtual:
6547               if (cu->language == language_ada)
6548                 error (_("unexpected virtuality in component of Ada type"));
6549               SET_TYPE_FIELD_VIRTUAL (type, nfields);
6550               break;
6551             }
6552         }
6553     }
6554 }
6555
6556 /* Add a member function to the proper fieldlist.  */
6557
6558 static void
6559 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
6560                       struct type *type, struct dwarf2_cu *cu)
6561 {
6562   struct objfile *objfile = cu->objfile;
6563   struct attribute *attr;
6564   struct fnfieldlist *flp;
6565   int i;
6566   struct fn_field *fnp;
6567   char *fieldname;
6568   struct nextfnfield *new_fnfield;
6569   struct type *this_type;
6570
6571   if (cu->language == language_ada)
6572     error (_("unexpected member function in Ada type"));
6573
6574   /* Get name of member function.  */
6575   fieldname = dwarf2_name (die, cu);
6576   if (fieldname == NULL)
6577     return;
6578
6579   /* Look up member function name in fieldlist.  */
6580   for (i = 0; i < fip->nfnfields; i++)
6581     {
6582       if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
6583         break;
6584     }
6585
6586   /* Create new list element if necessary.  */
6587   if (i < fip->nfnfields)
6588     flp = &fip->fnfieldlists[i];
6589   else
6590     {
6591       if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
6592         {
6593           fip->fnfieldlists = (struct fnfieldlist *)
6594             xrealloc (fip->fnfieldlists,
6595                       (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
6596                       * sizeof (struct fnfieldlist));
6597           if (fip->nfnfields == 0)
6598             make_cleanup (free_current_contents, &fip->fnfieldlists);
6599         }
6600       flp = &fip->fnfieldlists[fip->nfnfields];
6601       flp->name = fieldname;
6602       flp->length = 0;
6603       flp->head = NULL;
6604       i = fip->nfnfields++;
6605     }
6606
6607   /* Create a new member function field and chain it to the field list
6608      entry.  */
6609   new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
6610   make_cleanup (xfree, new_fnfield);
6611   memset (new_fnfield, 0, sizeof (struct nextfnfield));
6612   new_fnfield->next = flp->head;
6613   flp->head = new_fnfield;
6614   flp->length++;
6615
6616   /* Fill in the member function field info.  */
6617   fnp = &new_fnfield->fnfield;
6618
6619   /* Delay processing of the physname until later.  */
6620   if (cu->language == language_cplus || cu->language == language_java)
6621     {
6622       add_to_method_list (type, i, flp->length - 1, fieldname,
6623                           die, cu);
6624     }
6625   else
6626     {
6627       char *physname = (char *) dwarf2_physname (fieldname, die, cu);
6628       fnp->physname = physname ? physname : "";
6629     }
6630
6631   fnp->type = alloc_type (objfile);
6632   this_type = read_type_die (die, cu);
6633   if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
6634     {
6635       int nparams = TYPE_NFIELDS (this_type);
6636
6637       /* TYPE is the domain of this method, and THIS_TYPE is the type
6638            of the method itself (TYPE_CODE_METHOD).  */
6639       smash_to_method_type (fnp->type, type,
6640                             TYPE_TARGET_TYPE (this_type),
6641                             TYPE_FIELDS (this_type),
6642                             TYPE_NFIELDS (this_type),
6643                             TYPE_VARARGS (this_type));
6644
6645       /* Handle static member functions.
6646          Dwarf2 has no clean way to discern C++ static and non-static
6647          member functions.  G++ helps GDB by marking the first
6648          parameter for non-static member functions (which is the this
6649          pointer) as artificial.  We obtain this information from
6650          read_subroutine_type via TYPE_FIELD_ARTIFICIAL.  */
6651       if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
6652         fnp->voffset = VOFFSET_STATIC;
6653     }
6654   else
6655     complaint (&symfile_complaints, _("member function type missing for '%s'"),
6656                dwarf2_full_name (fieldname, die, cu));
6657
6658   /* Get fcontext from DW_AT_containing_type if present.  */
6659   if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
6660     fnp->fcontext = die_containing_type (die, cu);
6661
6662   /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
6663      is_volatile is irrelevant, as it is needed by gdb_mangle_name only.  */
6664
6665   /* Get accessibility.  */
6666   attr = dwarf2_attr (die, DW_AT_accessibility, cu);
6667   if (attr)
6668     {
6669       switch (DW_UNSND (attr))
6670         {
6671         case DW_ACCESS_private:
6672           fnp->is_private = 1;
6673           break;
6674         case DW_ACCESS_protected:
6675           fnp->is_protected = 1;
6676           break;
6677         }
6678     }
6679
6680   /* Check for artificial methods.  */
6681   attr = dwarf2_attr (die, DW_AT_artificial, cu);
6682   if (attr && DW_UNSND (attr) != 0)
6683     fnp->is_artificial = 1;
6684
6685   /* Get index in virtual function table if it is a virtual member
6686      function.  For older versions of GCC, this is an offset in the
6687      appropriate virtual table, as specified by DW_AT_containing_type.
6688      For everyone else, it is an expression to be evaluated relative
6689      to the object address.  */
6690
6691   attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
6692   if (attr)
6693     {
6694       if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
6695         {
6696           if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
6697             {
6698               /* Old-style GCC.  */
6699               fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
6700             }
6701           else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
6702                    || (DW_BLOCK (attr)->size > 1
6703                        && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
6704                        && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
6705             {
6706               struct dwarf_block blk;
6707               int offset;
6708
6709               offset = (DW_BLOCK (attr)->data[0] == DW_OP_deref
6710                         ? 1 : 2);
6711               blk.size = DW_BLOCK (attr)->size - offset;
6712               blk.data = DW_BLOCK (attr)->data + offset;
6713               fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
6714               if ((fnp->voffset % cu->header.addr_size) != 0)
6715                 dwarf2_complex_location_expr_complaint ();
6716               else
6717                 fnp->voffset /= cu->header.addr_size;
6718               fnp->voffset += 2;
6719             }
6720           else
6721             dwarf2_complex_location_expr_complaint ();
6722
6723           if (!fnp->fcontext)
6724             fnp->fcontext = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
6725         }
6726       else if (attr_form_is_section_offset (attr))
6727         {
6728           dwarf2_complex_location_expr_complaint ();
6729         }
6730       else
6731         {
6732           dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
6733                                                  fieldname);
6734         }
6735     }
6736   else
6737     {
6738       attr = dwarf2_attr (die, DW_AT_virtuality, cu);
6739       if (attr && DW_UNSND (attr))
6740         {
6741           /* GCC does this, as of 2008-08-25; PR debug/37237.  */
6742           complaint (&symfile_complaints,
6743                      _("Member function \"%s\" (offset %d) is virtual "
6744                        "but the vtable offset is not specified"),
6745                      fieldname, die->offset);
6746           ALLOCATE_CPLUS_STRUCT_TYPE (type);
6747           TYPE_CPLUS_DYNAMIC (type) = 1;
6748         }
6749     }
6750 }
6751
6752 /* Create the vector of member function fields, and attach it to the type.  */
6753
6754 static void
6755 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
6756                                  struct dwarf2_cu *cu)
6757 {
6758   struct fnfieldlist *flp;
6759   int total_length = 0;
6760   int i;
6761
6762   if (cu->language == language_ada)
6763     error (_("unexpected member functions in Ada type"));
6764
6765   ALLOCATE_CPLUS_STRUCT_TYPE (type);
6766   TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
6767     TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
6768
6769   for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
6770     {
6771       struct nextfnfield *nfp = flp->head;
6772       struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
6773       int k;
6774
6775       TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
6776       TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
6777       fn_flp->fn_fields = (struct fn_field *)
6778         TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
6779       for (k = flp->length; (k--, nfp); nfp = nfp->next)
6780         fn_flp->fn_fields[k] = nfp->fnfield;
6781
6782       total_length += flp->length;
6783     }
6784
6785   TYPE_NFN_FIELDS (type) = fip->nfnfields;
6786   TYPE_NFN_FIELDS_TOTAL (type) = total_length;
6787 }
6788
6789 /* Returns non-zero if NAME is the name of a vtable member in CU's
6790    language, zero otherwise.  */
6791 static int
6792 is_vtable_name (const char *name, struct dwarf2_cu *cu)
6793 {
6794   static const char vptr[] = "_vptr";
6795   static const char vtable[] = "vtable";
6796
6797   /* Look for the C++ and Java forms of the vtable.  */
6798   if ((cu->language == language_java
6799        && strncmp (name, vtable, sizeof (vtable) - 1) == 0)
6800        || (strncmp (name, vptr, sizeof (vptr) - 1) == 0
6801        && is_cplus_marker (name[sizeof (vptr) - 1])))
6802     return 1;
6803
6804   return 0;
6805 }
6806
6807 /* GCC outputs unnamed structures that are really pointers to member
6808    functions, with the ABI-specified layout.  If TYPE describes
6809    such a structure, smash it into a member function type.
6810
6811    GCC shouldn't do this; it should just output pointer to member DIEs.
6812    This is GCC PR debug/28767.  */
6813
6814 static void
6815 quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
6816 {
6817   struct type *pfn_type, *domain_type, *new_type;
6818
6819   /* Check for a structure with no name and two children.  */
6820   if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
6821     return;
6822
6823   /* Check for __pfn and __delta members.  */
6824   if (TYPE_FIELD_NAME (type, 0) == NULL
6825       || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
6826       || TYPE_FIELD_NAME (type, 1) == NULL
6827       || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
6828     return;
6829
6830   /* Find the type of the method.  */
6831   pfn_type = TYPE_FIELD_TYPE (type, 0);
6832   if (pfn_type == NULL
6833       || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
6834       || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
6835     return;
6836
6837   /* Look for the "this" argument.  */
6838   pfn_type = TYPE_TARGET_TYPE (pfn_type);
6839   if (TYPE_NFIELDS (pfn_type) == 0
6840       /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
6841       || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
6842     return;
6843
6844   domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
6845   new_type = alloc_type (objfile);
6846   smash_to_method_type (new_type, domain_type, TYPE_TARGET_TYPE (pfn_type),
6847                         TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
6848                         TYPE_VARARGS (pfn_type));
6849   smash_to_methodptr_type (type, new_type);
6850 }
6851
6852 /* Called when we find the DIE that starts a structure or union scope
6853    (definition) to create a type for the structure or union.  Fill in
6854    the type's name and general properties; the members will not be
6855    processed until process_structure_type.
6856
6857    NOTE: we need to call these functions regardless of whether or not the
6858    DIE has a DW_AT_name attribute, since it might be an anonymous
6859    structure or union.  This gets the type entered into our set of
6860    user defined types.
6861
6862    However, if the structure is incomplete (an opaque struct/union)
6863    then suppress creating a symbol table entry for it since gdb only
6864    wants to find the one with the complete definition.  Note that if
6865    it is complete, we just call new_symbol, which does it's own
6866    checking about whether the struct/union is anonymous or not (and
6867    suppresses creating a symbol table entry itself).  */
6868
6869 static struct type *
6870 read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
6871 {
6872   struct objfile *objfile = cu->objfile;
6873   struct type *type;
6874   struct attribute *attr;
6875   char *name;
6876
6877   /* If the definition of this type lives in .debug_types, read that type.
6878      Don't follow DW_AT_specification though, that will take us back up
6879      the chain and we want to go down.  */
6880   attr = dwarf2_attr_no_follow (die, DW_AT_signature, cu);
6881   if (attr)
6882     {
6883       struct dwarf2_cu *type_cu = cu;
6884       struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
6885
6886       /* We could just recurse on read_structure_type, but we need to call
6887          get_die_type to ensure only one type for this DIE is created.
6888          This is important, for example, because for c++ classes we need
6889          TYPE_NAME set which is only done by new_symbol.  Blech.  */
6890       type = read_type_die (type_die, type_cu);
6891
6892       /* TYPE_CU may not be the same as CU.
6893          Ensure TYPE is recorded in CU's type_hash table.  */
6894       return set_die_type (die, type, cu);
6895     }
6896
6897   type = alloc_type (objfile);
6898   INIT_CPLUS_SPECIFIC (type);
6899
6900   name = dwarf2_name (die, cu);
6901   if (name != NULL)
6902     {
6903       if (cu->language == language_cplus
6904           || cu->language == language_java)
6905         {
6906           char *full_name = (char *) dwarf2_full_name (name, die, cu);
6907
6908           /* dwarf2_full_name might have already finished building the DIE's
6909              type.  If so, there is no need to continue.  */
6910           if (get_die_type (die, cu) != NULL)
6911             return get_die_type (die, cu);
6912
6913           TYPE_TAG_NAME (type) = full_name;
6914           if (die->tag == DW_TAG_structure_type
6915               || die->tag == DW_TAG_class_type)
6916             TYPE_NAME (type) = TYPE_TAG_NAME (type);
6917         }
6918       else
6919         {
6920           /* The name is already allocated along with this objfile, so
6921              we don't need to duplicate it for the type.  */
6922           TYPE_TAG_NAME (type) = (char *) name;
6923           if (die->tag == DW_TAG_class_type)
6924             TYPE_NAME (type) = TYPE_TAG_NAME (type);
6925         }
6926     }
6927
6928   if (die->tag == DW_TAG_structure_type)
6929     {
6930       TYPE_CODE (type) = TYPE_CODE_STRUCT;
6931     }
6932   else if (die->tag == DW_TAG_union_type)
6933     {
6934       TYPE_CODE (type) = TYPE_CODE_UNION;
6935     }
6936   else
6937     {
6938       TYPE_CODE (type) = TYPE_CODE_CLASS;
6939     }
6940
6941   if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
6942     TYPE_DECLARED_CLASS (type) = 1;
6943
6944   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
6945   if (attr)
6946     {
6947       TYPE_LENGTH (type) = DW_UNSND (attr);
6948     }
6949   else
6950     {
6951       TYPE_LENGTH (type) = 0;
6952     }
6953
6954   TYPE_STUB_SUPPORTED (type) = 1;
6955   if (die_is_declaration (die, cu))
6956     TYPE_STUB (type) = 1;
6957   else if (attr == NULL && die->child == NULL
6958            && producer_is_realview (cu->producer))
6959     /* RealView does not output the required DW_AT_declaration
6960        on incomplete types.  */
6961     TYPE_STUB (type) = 1;
6962
6963   /* We need to add the type field to the die immediately so we don't
6964      infinitely recurse when dealing with pointers to the structure
6965      type within the structure itself.  */
6966   set_die_type (die, type, cu);
6967
6968   /* set_die_type should be already done.  */
6969   set_descriptive_type (type, die, cu);
6970
6971   return type;
6972 }
6973
6974 /* Finish creating a structure or union type, including filling in
6975    its members and creating a symbol for it.  */
6976
6977 static void
6978 process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
6979 {
6980   struct objfile *objfile = cu->objfile;
6981   struct die_info *child_die = die->child;
6982   struct type *type;
6983
6984   type = get_die_type (die, cu);
6985   if (type == NULL)
6986     type = read_structure_type (die, cu);
6987
6988   if (die->child != NULL && ! die_is_declaration (die, cu))
6989     {
6990       struct field_info fi;
6991       struct die_info *child_die;
6992       VEC (symbolp) *template_args = NULL;
6993       struct cleanup *back_to = make_cleanup (null_cleanup, 0);
6994
6995       memset (&fi, 0, sizeof (struct field_info));
6996
6997       child_die = die->child;
6998
6999       while (child_die && child_die->tag)
7000         {
7001           if (child_die->tag == DW_TAG_member
7002               || child_die->tag == DW_TAG_variable)
7003             {
7004               /* NOTE: carlton/2002-11-05: A C++ static data member
7005                  should be a DW_TAG_member that is a declaration, but
7006                  all versions of G++ as of this writing (so through at
7007                  least 3.2.1) incorrectly generate DW_TAG_variable
7008                  tags for them instead.  */
7009               dwarf2_add_field (&fi, child_die, cu);
7010             }
7011           else if (child_die->tag == DW_TAG_subprogram)
7012             {
7013               /* C++ member function.  */
7014               dwarf2_add_member_fn (&fi, child_die, type, cu);
7015             }
7016           else if (child_die->tag == DW_TAG_inheritance)
7017             {
7018               /* C++ base class field.  */
7019               dwarf2_add_field (&fi, child_die, cu);
7020             }
7021           else if (child_die->tag == DW_TAG_typedef)
7022             dwarf2_add_typedef (&fi, child_die, cu);
7023           else if (child_die->tag == DW_TAG_template_type_param
7024                    || child_die->tag == DW_TAG_template_value_param)
7025             {
7026               struct symbol *arg = new_symbol (child_die, NULL, cu);
7027
7028               if (arg != NULL)
7029                 VEC_safe_push (symbolp, template_args, arg);
7030             }
7031
7032           child_die = sibling_die (child_die);
7033         }
7034
7035       /* Attach template arguments to type.  */
7036       if (! VEC_empty (symbolp, template_args))
7037         {
7038           ALLOCATE_CPLUS_STRUCT_TYPE (type);
7039           TYPE_N_TEMPLATE_ARGUMENTS (type)
7040             = VEC_length (symbolp, template_args);
7041           TYPE_TEMPLATE_ARGUMENTS (type)
7042             = obstack_alloc (&objfile->objfile_obstack,
7043                              (TYPE_N_TEMPLATE_ARGUMENTS (type)
7044                               * sizeof (struct symbol *)));
7045           memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
7046                   VEC_address (symbolp, template_args),
7047                   (TYPE_N_TEMPLATE_ARGUMENTS (type)
7048                    * sizeof (struct symbol *)));
7049           VEC_free (symbolp, template_args);
7050         }
7051
7052       /* Attach fields and member functions to the type.  */
7053       if (fi.nfields)
7054         dwarf2_attach_fields_to_type (&fi, type, cu);
7055       if (fi.nfnfields)
7056         {
7057           dwarf2_attach_fn_fields_to_type (&fi, type, cu);
7058
7059           /* Get the type which refers to the base class (possibly this
7060              class itself) which contains the vtable pointer for the current
7061              class from the DW_AT_containing_type attribute.  This use of
7062              DW_AT_containing_type is a GNU extension.  */
7063
7064           if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
7065             {
7066               struct type *t = die_containing_type (die, cu);
7067
7068               TYPE_VPTR_BASETYPE (type) = t;
7069               if (type == t)
7070                 {
7071                   int i;
7072
7073                   /* Our own class provides vtbl ptr.  */
7074                   for (i = TYPE_NFIELDS (t) - 1;
7075                        i >= TYPE_N_BASECLASSES (t);
7076                        --i)
7077                     {
7078                       char *fieldname = TYPE_FIELD_NAME (t, i);
7079
7080                       if (is_vtable_name (fieldname, cu))
7081                         {
7082                           TYPE_VPTR_FIELDNO (type) = i;
7083                           break;
7084                         }
7085                     }
7086
7087                   /* Complain if virtual function table field not found.  */
7088                   if (i < TYPE_N_BASECLASSES (t))
7089                     complaint (&symfile_complaints,
7090                                _("virtual function table pointer "
7091                                  "not found when defining class '%s'"),
7092                                TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
7093                                "");
7094                 }
7095               else
7096                 {
7097                   TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
7098                 }
7099             }
7100           else if (cu->producer
7101                    && strncmp (cu->producer,
7102                                "IBM(R) XL C/C++ Advanced Edition", 32) == 0)
7103             {
7104               /* The IBM XLC compiler does not provide direct indication
7105                  of the containing type, but the vtable pointer is
7106                  always named __vfp.  */
7107
7108               int i;
7109
7110               for (i = TYPE_NFIELDS (type) - 1;
7111                    i >= TYPE_N_BASECLASSES (type);
7112                    --i)
7113                 {
7114                   if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
7115                     {
7116                       TYPE_VPTR_FIELDNO (type) = i;
7117                       TYPE_VPTR_BASETYPE (type) = type;
7118                       break;
7119                     }
7120                 }
7121             }
7122         }
7123
7124       /* Copy fi.typedef_field_list linked list elements content into the
7125          allocated array TYPE_TYPEDEF_FIELD_ARRAY (type).  */
7126       if (fi.typedef_field_list)
7127         {
7128           int i = fi.typedef_field_list_count;
7129
7130           ALLOCATE_CPLUS_STRUCT_TYPE (type);
7131           TYPE_TYPEDEF_FIELD_ARRAY (type)
7132             = TYPE_ALLOC (type, sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * i);
7133           TYPE_TYPEDEF_FIELD_COUNT (type) = i;
7134
7135           /* Reverse the list order to keep the debug info elements order.  */
7136           while (--i >= 0)
7137             {
7138               struct typedef_field *dest, *src;
7139
7140               dest = &TYPE_TYPEDEF_FIELD (type, i);
7141               src = &fi.typedef_field_list->field;
7142               fi.typedef_field_list = fi.typedef_field_list->next;
7143               *dest = *src;
7144             }
7145         }
7146
7147       do_cleanups (back_to);
7148     }
7149
7150   quirk_gcc_member_function_pointer (type, cu->objfile);
7151
7152   /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
7153      snapshots) has been known to create a die giving a declaration
7154      for a class that has, as a child, a die giving a definition for a
7155      nested class.  So we have to process our children even if the
7156      current die is a declaration.  Normally, of course, a declaration
7157      won't have any children at all.  */
7158
7159   while (child_die != NULL && child_die->tag)
7160     {
7161       if (child_die->tag == DW_TAG_member
7162           || child_die->tag == DW_TAG_variable
7163           || child_die->tag == DW_TAG_inheritance
7164           || child_die->tag == DW_TAG_template_value_param
7165           || child_die->tag == DW_TAG_template_type_param)
7166         {
7167           /* Do nothing.  */
7168         }
7169       else
7170         process_die (child_die, cu);
7171
7172       child_die = sibling_die (child_die);
7173     }
7174
7175   /* Do not consider external references.  According to the DWARF standard,
7176      these DIEs are identified by the fact that they have no byte_size
7177      attribute, and a declaration attribute.  */
7178   if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
7179       || !die_is_declaration (die, cu))
7180     new_symbol (die, type, cu);
7181 }
7182
7183 /* Given a DW_AT_enumeration_type die, set its type.  We do not
7184    complete the type's fields yet, or create any symbols.  */
7185
7186 static struct type *
7187 read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
7188 {
7189   struct objfile *objfile = cu->objfile;
7190   struct type *type;
7191   struct attribute *attr;
7192   const char *name;
7193
7194   /* If the definition of this type lives in .debug_types, read that type.
7195      Don't follow DW_AT_specification though, that will take us back up
7196      the chain and we want to go down.  */
7197   attr = dwarf2_attr_no_follow (die, DW_AT_signature, cu);
7198   if (attr)
7199     {
7200       struct dwarf2_cu *type_cu = cu;
7201       struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
7202
7203       type = read_type_die (type_die, type_cu);
7204
7205       /* TYPE_CU may not be the same as CU.
7206          Ensure TYPE is recorded in CU's type_hash table.  */
7207       return set_die_type (die, type, cu);
7208     }
7209
7210   type = alloc_type (objfile);
7211
7212   TYPE_CODE (type) = TYPE_CODE_ENUM;
7213   name = dwarf2_full_name (NULL, die, cu);
7214   if (name != NULL)
7215     TYPE_TAG_NAME (type) = (char *) name;
7216
7217   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7218   if (attr)
7219     {
7220       TYPE_LENGTH (type) = DW_UNSND (attr);
7221     }
7222   else
7223     {
7224       TYPE_LENGTH (type) = 0;
7225     }
7226
7227   /* The enumeration DIE can be incomplete.  In Ada, any type can be
7228      declared as private in the package spec, and then defined only
7229      inside the package body.  Such types are known as Taft Amendment
7230      Types.  When another package uses such a type, an incomplete DIE
7231      may be generated by the compiler.  */
7232   if (die_is_declaration (die, cu))
7233     TYPE_STUB (type) = 1;
7234
7235   return set_die_type (die, type, cu);
7236 }
7237
7238 /* Given a pointer to a die which begins an enumeration, process all
7239    the dies that define the members of the enumeration, and create the
7240    symbol for the enumeration type.
7241
7242    NOTE: We reverse the order of the element list.  */
7243
7244 static void
7245 process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
7246 {
7247   struct type *this_type;
7248
7249   this_type = get_die_type (die, cu);
7250   if (this_type == NULL)
7251     this_type = read_enumeration_type (die, cu);
7252
7253   if (die->child != NULL)
7254     {
7255       struct die_info *child_die;
7256       struct symbol *sym;
7257       struct field *fields = NULL;
7258       int num_fields = 0;
7259       int unsigned_enum = 1;
7260       char *name;
7261
7262       child_die = die->child;
7263       while (child_die && child_die->tag)
7264         {
7265           if (child_die->tag != DW_TAG_enumerator)
7266             {
7267               process_die (child_die, cu);
7268             }
7269           else
7270             {
7271               name = dwarf2_name (child_die, cu);
7272               if (name)
7273                 {
7274                   sym = new_symbol (child_die, this_type, cu);
7275                   if (SYMBOL_VALUE (sym) < 0)
7276                     unsigned_enum = 0;
7277
7278                   if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
7279                     {
7280                       fields = (struct field *)
7281                         xrealloc (fields,
7282                                   (num_fields + DW_FIELD_ALLOC_CHUNK)
7283                                   * sizeof (struct field));
7284                     }
7285
7286                   FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
7287                   FIELD_TYPE (fields[num_fields]) = NULL;
7288                   SET_FIELD_BITPOS (fields[num_fields], SYMBOL_VALUE (sym));
7289                   FIELD_BITSIZE (fields[num_fields]) = 0;
7290
7291                   num_fields++;
7292                 }
7293             }
7294
7295           child_die = sibling_die (child_die);
7296         }
7297
7298       if (num_fields)
7299         {
7300           TYPE_NFIELDS (this_type) = num_fields;
7301           TYPE_FIELDS (this_type) = (struct field *)
7302             TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
7303           memcpy (TYPE_FIELDS (this_type), fields,
7304                   sizeof (struct field) * num_fields);
7305           xfree (fields);
7306         }
7307       if (unsigned_enum)
7308         TYPE_UNSIGNED (this_type) = 1;
7309     }
7310
7311   new_symbol (die, this_type, cu);
7312 }
7313
7314 /* Extract all information from a DW_TAG_array_type DIE and put it in
7315    the DIE's type field.  For now, this only handles one dimensional
7316    arrays.  */
7317
7318 static struct type *
7319 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
7320 {
7321   struct objfile *objfile = cu->objfile;
7322   struct die_info *child_die;
7323   struct type *type;
7324   struct type *element_type, *range_type, *index_type;
7325   struct type **range_types = NULL;
7326   struct attribute *attr;
7327   int ndim = 0;
7328   struct cleanup *back_to;
7329   char *name;
7330
7331   element_type = die_type (die, cu);
7332
7333   /* The die_type call above may have already set the type for this DIE.  */
7334   type = get_die_type (die, cu);
7335   if (type)
7336     return type;
7337
7338   /* Irix 6.2 native cc creates array types without children for
7339      arrays with unspecified length.  */
7340   if (die->child == NULL)
7341     {
7342       index_type = objfile_type (objfile)->builtin_int;
7343       range_type = create_range_type (NULL, index_type, 0, -1);
7344       type = create_array_type (NULL, element_type, range_type);
7345       return set_die_type (die, type, cu);
7346     }
7347
7348   back_to = make_cleanup (null_cleanup, NULL);
7349   child_die = die->child;
7350   while (child_die && child_die->tag)
7351     {
7352       if (child_die->tag == DW_TAG_subrange_type)
7353         {
7354           struct type *child_type = read_type_die (child_die, cu);
7355
7356           if (child_type != NULL)
7357             {
7358               /* The range type was succesfully read.  Save it for the
7359                  array type creation.  */
7360               if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
7361                 {
7362                   range_types = (struct type **)
7363                     xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
7364                               * sizeof (struct type *));
7365                   if (ndim == 0)
7366                     make_cleanup (free_current_contents, &range_types);
7367                 }
7368               range_types[ndim++] = child_type;
7369             }
7370         }
7371       child_die = sibling_die (child_die);
7372     }
7373
7374   /* Dwarf2 dimensions are output from left to right, create the
7375      necessary array types in backwards order.  */
7376
7377   type = element_type;
7378
7379   if (read_array_order (die, cu) == DW_ORD_col_major)
7380     {
7381       int i = 0;
7382
7383       while (i < ndim)
7384         type = create_array_type (NULL, type, range_types[i++]);
7385     }
7386   else
7387     {
7388       while (ndim-- > 0)
7389         type = create_array_type (NULL, type, range_types[ndim]);
7390     }
7391
7392   /* Understand Dwarf2 support for vector types (like they occur on
7393      the PowerPC w/ AltiVec).  Gcc just adds another attribute to the
7394      array type.  This is not part of the Dwarf2/3 standard yet, but a
7395      custom vendor extension.  The main difference between a regular
7396      array and the vector variant is that vectors are passed by value
7397      to functions.  */
7398   attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
7399   if (attr)
7400     make_vector_type (type);
7401
7402   /* The DIE may have DW_AT_byte_size set.  For example an OpenCL
7403      implementation may choose to implement triple vectors using this
7404      attribute.  */
7405   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7406   if (attr)
7407     {
7408       if (DW_UNSND (attr) >= TYPE_LENGTH (type))
7409         TYPE_LENGTH (type) = DW_UNSND (attr);
7410       else
7411         complaint (&symfile_complaints,
7412                    _("DW_AT_byte_size for array type smaller "
7413                      "than the total size of elements"));
7414     }
7415
7416   name = dwarf2_name (die, cu);
7417   if (name)
7418     TYPE_NAME (type) = name;
7419
7420   /* Install the type in the die.  */
7421   set_die_type (die, type, cu);
7422
7423   /* set_die_type should be already done.  */
7424   set_descriptive_type (type, die, cu);
7425
7426   do_cleanups (back_to);
7427
7428   return type;
7429 }
7430
7431 static enum dwarf_array_dim_ordering
7432 read_array_order (struct die_info *die, struct dwarf2_cu *cu)
7433 {
7434   struct attribute *attr;
7435
7436   attr = dwarf2_attr (die, DW_AT_ordering, cu);
7437
7438   if (attr) return DW_SND (attr);
7439
7440   /* GNU F77 is a special case, as at 08/2004 array type info is the
7441      opposite order to the dwarf2 specification, but data is still
7442      laid out as per normal fortran.
7443
7444      FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
7445      version checking.  */
7446
7447   if (cu->language == language_fortran
7448       && cu->producer && strstr (cu->producer, "GNU F77"))
7449     {
7450       return DW_ORD_row_major;
7451     }
7452
7453   switch (cu->language_defn->la_array_ordering)
7454     {
7455     case array_column_major:
7456       return DW_ORD_col_major;
7457     case array_row_major:
7458     default:
7459       return DW_ORD_row_major;
7460     };
7461 }
7462
7463 /* Extract all information from a DW_TAG_set_type DIE and put it in
7464    the DIE's type field.  */
7465
7466 static struct type *
7467 read_set_type (struct die_info *die, struct dwarf2_cu *cu)
7468 {
7469   struct type *domain_type, *set_type;
7470   struct attribute *attr;
7471
7472   domain_type = die_type (die, cu);
7473
7474   /* The die_type call above may have already set the type for this DIE.  */
7475   set_type = get_die_type (die, cu);
7476   if (set_type)
7477     return set_type;
7478
7479   set_type = create_set_type (NULL, domain_type);
7480
7481   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7482   if (attr)
7483     TYPE_LENGTH (set_type) = DW_UNSND (attr);
7484
7485   return set_die_type (die, set_type, cu);
7486 }
7487
7488 /* First cut: install each common block member as a global variable.  */
7489
7490 static void
7491 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
7492 {
7493   struct die_info *child_die;
7494   struct attribute *attr;
7495   struct symbol *sym;
7496   CORE_ADDR base = (CORE_ADDR) 0;
7497
7498   attr = dwarf2_attr (die, DW_AT_location, cu);
7499   if (attr)
7500     {
7501       /* Support the .debug_loc offsets.  */
7502       if (attr_form_is_block (attr))
7503         {
7504           base = decode_locdesc (DW_BLOCK (attr), cu);
7505         }
7506       else if (attr_form_is_section_offset (attr))
7507         {
7508           dwarf2_complex_location_expr_complaint ();
7509         }
7510       else
7511         {
7512           dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
7513                                                  "common block member");
7514         }
7515     }
7516   if (die->child != NULL)
7517     {
7518       child_die = die->child;
7519       while (child_die && child_die->tag)
7520         {
7521           sym = new_symbol (child_die, NULL, cu);
7522           attr = dwarf2_attr (child_die, DW_AT_data_member_location, cu);
7523           if (sym != NULL && attr != NULL)
7524             {
7525               CORE_ADDR byte_offset = 0;
7526
7527               if (attr_form_is_section_offset (attr))
7528                 dwarf2_complex_location_expr_complaint ();
7529               else if (attr_form_is_constant (attr))
7530                 byte_offset = dwarf2_get_attr_constant_value (attr, 0);
7531               else if (attr_form_is_block (attr))
7532                 byte_offset = decode_locdesc (DW_BLOCK (attr), cu);
7533               else
7534                 dwarf2_complex_location_expr_complaint ();
7535
7536               SYMBOL_VALUE_ADDRESS (sym) = base + byte_offset;
7537               add_symbol_to_list (sym, &global_symbols);
7538             }
7539           child_die = sibling_die (child_die);
7540         }
7541     }
7542 }
7543
7544 /* Create a type for a C++ namespace.  */
7545
7546 static struct type *
7547 read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
7548 {
7549   struct objfile *objfile = cu->objfile;
7550   const char *previous_prefix, *name;
7551   int is_anonymous;
7552   struct type *type;
7553
7554   /* For extensions, reuse the type of the original namespace.  */
7555   if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
7556     {
7557       struct die_info *ext_die;
7558       struct dwarf2_cu *ext_cu = cu;
7559
7560       ext_die = dwarf2_extension (die, &ext_cu);
7561       type = read_type_die (ext_die, ext_cu);
7562
7563       /* EXT_CU may not be the same as CU.
7564          Ensure TYPE is recorded in CU's type_hash table.  */
7565       return set_die_type (die, type, cu);
7566     }
7567
7568   name = namespace_name (die, &is_anonymous, cu);
7569
7570   /* Now build the name of the current namespace.  */
7571
7572   previous_prefix = determine_prefix (die, cu);
7573   if (previous_prefix[0] != '\0')
7574     name = typename_concat (&objfile->objfile_obstack,
7575                             previous_prefix, name, 0, cu);
7576
7577   /* Create the type.  */
7578   type = init_type (TYPE_CODE_NAMESPACE, 0, 0, NULL,
7579                     objfile);
7580   TYPE_NAME (type) = (char *) name;
7581   TYPE_TAG_NAME (type) = TYPE_NAME (type);
7582
7583   return set_die_type (die, type, cu);
7584 }
7585
7586 /* Read a C++ namespace.  */
7587
7588 static void
7589 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
7590 {
7591   struct objfile *objfile = cu->objfile;
7592   int is_anonymous;
7593
7594   /* Add a symbol associated to this if we haven't seen the namespace
7595      before.  Also, add a using directive if it's an anonymous
7596      namespace.  */
7597
7598   if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
7599     {
7600       struct type *type;
7601
7602       type = read_type_die (die, cu);
7603       new_symbol (die, type, cu);
7604
7605       namespace_name (die, &is_anonymous, cu);
7606       if (is_anonymous)
7607         {
7608           const char *previous_prefix = determine_prefix (die, cu);
7609
7610           cp_add_using_directive (previous_prefix, TYPE_NAME (type), NULL,
7611                                   NULL, &objfile->objfile_obstack);
7612         }
7613     }
7614
7615   if (die->child != NULL)
7616     {
7617       struct die_info *child_die = die->child;
7618
7619       while (child_die && child_die->tag)
7620         {
7621           process_die (child_die, cu);
7622           child_die = sibling_die (child_die);
7623         }
7624     }
7625 }
7626
7627 /* Read a Fortran module as type.  This DIE can be only a declaration used for
7628    imported module.  Still we need that type as local Fortran "use ... only"
7629    declaration imports depend on the created type in determine_prefix.  */
7630
7631 static struct type *
7632 read_module_type (struct die_info *die, struct dwarf2_cu *cu)
7633 {
7634   struct objfile *objfile = cu->objfile;
7635   char *module_name;
7636   struct type *type;
7637
7638   module_name = dwarf2_name (die, cu);
7639   if (!module_name)
7640     complaint (&symfile_complaints,
7641                _("DW_TAG_module has no name, offset 0x%x"),
7642                die->offset);
7643   type = init_type (TYPE_CODE_MODULE, 0, 0, module_name, objfile);
7644
7645   /* determine_prefix uses TYPE_TAG_NAME.  */
7646   TYPE_TAG_NAME (type) = TYPE_NAME (type);
7647
7648   return set_die_type (die, type, cu);
7649 }
7650
7651 /* Read a Fortran module.  */
7652
7653 static void
7654 read_module (struct die_info *die, struct dwarf2_cu *cu)
7655 {
7656   struct die_info *child_die = die->child;
7657
7658   while (child_die && child_die->tag)
7659     {
7660       process_die (child_die, cu);
7661       child_die = sibling_die (child_die);
7662     }
7663 }
7664
7665 /* Return the name of the namespace represented by DIE.  Set
7666    *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
7667    namespace.  */
7668
7669 static const char *
7670 namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
7671 {
7672   struct die_info *current_die;
7673   const char *name = NULL;
7674
7675   /* Loop through the extensions until we find a name.  */
7676
7677   for (current_die = die;
7678        current_die != NULL;
7679        current_die = dwarf2_extension (die, &cu))
7680     {
7681       name = dwarf2_name (current_die, cu);
7682       if (name != NULL)
7683         break;
7684     }
7685
7686   /* Is it an anonymous namespace?  */
7687
7688   *is_anonymous = (name == NULL);
7689   if (*is_anonymous)
7690     name = "(anonymous namespace)";
7691
7692   return name;
7693 }
7694
7695 /* Extract all information from a DW_TAG_pointer_type DIE and add to
7696    the user defined type vector.  */
7697
7698 static struct type *
7699 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
7700 {
7701   struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
7702   struct comp_unit_head *cu_header = &cu->header;
7703   struct type *type;
7704   struct attribute *attr_byte_size;
7705   struct attribute *attr_address_class;
7706   int byte_size, addr_class;
7707   struct type *target_type;
7708
7709   target_type = die_type (die, cu);
7710
7711   /* The die_type call above may have already set the type for this DIE.  */
7712   type = get_die_type (die, cu);
7713   if (type)
7714     return type;
7715
7716   type = lookup_pointer_type (target_type);
7717
7718   attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
7719   if (attr_byte_size)
7720     byte_size = DW_UNSND (attr_byte_size);
7721   else
7722     byte_size = cu_header->addr_size;
7723
7724   attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
7725   if (attr_address_class)
7726     addr_class = DW_UNSND (attr_address_class);
7727   else
7728     addr_class = DW_ADDR_none;
7729
7730   /* If the pointer size or address class is different than the
7731      default, create a type variant marked as such and set the
7732      length accordingly.  */
7733   if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
7734     {
7735       if (gdbarch_address_class_type_flags_p (gdbarch))
7736         {
7737           int type_flags;
7738
7739           type_flags = gdbarch_address_class_type_flags
7740                          (gdbarch, byte_size, addr_class);
7741           gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
7742                       == 0);
7743           type = make_type_with_address_space (type, type_flags);
7744         }
7745       else if (TYPE_LENGTH (type) != byte_size)
7746         {
7747           complaint (&symfile_complaints,
7748                      _("invalid pointer size %d"), byte_size);
7749         }
7750       else
7751         {
7752           /* Should we also complain about unhandled address classes?  */
7753         }
7754     }
7755
7756   TYPE_LENGTH (type) = byte_size;
7757   return set_die_type (die, type, cu);
7758 }
7759
7760 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
7761    the user defined type vector.  */
7762
7763 static struct type *
7764 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
7765 {
7766   struct type *type;
7767   struct type *to_type;
7768   struct type *domain;
7769
7770   to_type = die_type (die, cu);
7771   domain = die_containing_type (die, cu);
7772
7773   /* The calls above may have already set the type for this DIE.  */
7774   type = get_die_type (die, cu);
7775   if (type)
7776     return type;
7777
7778   if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
7779     type = lookup_methodptr_type (to_type);
7780   else
7781     type = lookup_memberptr_type (to_type, domain);
7782
7783   return set_die_type (die, type, cu);
7784 }
7785
7786 /* Extract all information from a DW_TAG_reference_type DIE and add to
7787    the user defined type vector.  */
7788
7789 static struct type *
7790 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
7791 {
7792   struct comp_unit_head *cu_header = &cu->header;
7793   struct type *type, *target_type;
7794   struct attribute *attr;
7795
7796   target_type = die_type (die, cu);
7797
7798   /* The die_type call above may have already set the type for this DIE.  */
7799   type = get_die_type (die, cu);
7800   if (type)
7801     return type;
7802
7803   type = lookup_reference_type (target_type);
7804   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7805   if (attr)
7806     {
7807       TYPE_LENGTH (type) = DW_UNSND (attr);
7808     }
7809   else
7810     {
7811       TYPE_LENGTH (type) = cu_header->addr_size;
7812     }
7813   return set_die_type (die, type, cu);
7814 }
7815
7816 static struct type *
7817 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
7818 {
7819   struct type *base_type, *cv_type;
7820
7821   base_type = die_type (die, cu);
7822
7823   /* The die_type call above may have already set the type for this DIE.  */
7824   cv_type = get_die_type (die, cu);
7825   if (cv_type)
7826     return cv_type;
7827
7828   /* In case the const qualifier is applied to an array type, the element type
7829      is so qualified, not the array type (section 6.7.3 of C99).  */
7830   if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
7831     {
7832       struct type *el_type, *inner_array;
7833
7834       base_type = copy_type (base_type);
7835       inner_array = base_type;
7836
7837       while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
7838         {
7839           TYPE_TARGET_TYPE (inner_array) =
7840             copy_type (TYPE_TARGET_TYPE (inner_array));
7841           inner_array = TYPE_TARGET_TYPE (inner_array);
7842         }
7843
7844       el_type = TYPE_TARGET_TYPE (inner_array);
7845       TYPE_TARGET_TYPE (inner_array) =
7846         make_cv_type (1, TYPE_VOLATILE (el_type), el_type, NULL);
7847
7848       return set_die_type (die, base_type, cu);
7849     }
7850
7851   cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
7852   return set_die_type (die, cv_type, cu);
7853 }
7854
7855 static struct type *
7856 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
7857 {
7858   struct type *base_type, *cv_type;
7859
7860   base_type = die_type (die, cu);
7861
7862   /* The die_type call above may have already set the type for this DIE.  */
7863   cv_type = get_die_type (die, cu);
7864   if (cv_type)
7865     return cv_type;
7866
7867   cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
7868   return set_die_type (die, cv_type, cu);
7869 }
7870
7871 /* Extract all information from a DW_TAG_string_type DIE and add to
7872    the user defined type vector.  It isn't really a user defined type,
7873    but it behaves like one, with other DIE's using an AT_user_def_type
7874    attribute to reference it.  */
7875
7876 static struct type *
7877 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
7878 {
7879   struct objfile *objfile = cu->objfile;
7880   struct gdbarch *gdbarch = get_objfile_arch (objfile);
7881   struct type *type, *range_type, *index_type, *char_type;
7882   struct attribute *attr;
7883   unsigned int length;
7884
7885   attr = dwarf2_attr (die, DW_AT_string_length, cu);
7886   if (attr)
7887     {
7888       length = DW_UNSND (attr);
7889     }
7890   else
7891     {
7892       /* Check for the DW_AT_byte_size attribute.  */
7893       attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7894       if (attr)
7895         {
7896           length = DW_UNSND (attr);
7897         }
7898       else
7899         {
7900           length = 1;
7901         }
7902     }
7903
7904   index_type = objfile_type (objfile)->builtin_int;
7905   range_type = create_range_type (NULL, index_type, 1, length);
7906   char_type = language_string_char_type (cu->language_defn, gdbarch);
7907   type = create_string_type (NULL, char_type, range_type);
7908
7909   return set_die_type (die, type, cu);
7910 }
7911
7912 /* Handle DIES due to C code like:
7913
7914    struct foo
7915    {
7916    int (*funcp)(int a, long l);
7917    int b;
7918    };
7919
7920    ('funcp' generates a DW_TAG_subroutine_type DIE).  */
7921
7922 static struct type *
7923 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
7924 {
7925   struct type *type;            /* Type that this function returns.  */
7926   struct type *ftype;           /* Function that returns above type.  */
7927   struct attribute *attr;
7928
7929   type = die_type (die, cu);
7930
7931   /* The die_type call above may have already set the type for this DIE.  */
7932   ftype = get_die_type (die, cu);
7933   if (ftype)
7934     return ftype;
7935
7936   ftype = lookup_function_type (type);
7937
7938   /* All functions in C++, Pascal and Java have prototypes.  */
7939   attr = dwarf2_attr (die, DW_AT_prototyped, cu);
7940   if ((attr && (DW_UNSND (attr) != 0))
7941       || cu->language == language_cplus
7942       || cu->language == language_java
7943       || cu->language == language_pascal)
7944     TYPE_PROTOTYPED (ftype) = 1;
7945   else if (producer_is_realview (cu->producer))
7946     /* RealView does not emit DW_AT_prototyped.  We can not
7947        distinguish prototyped and unprototyped functions; default to
7948        prototyped, since that is more common in modern code (and
7949        RealView warns about unprototyped functions).  */
7950     TYPE_PROTOTYPED (ftype) = 1;
7951
7952   /* Store the calling convention in the type if it's available in
7953      the subroutine die.  Otherwise set the calling convention to
7954      the default value DW_CC_normal.  */
7955   attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
7956   if (attr)
7957     TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
7958   else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
7959     TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
7960   else
7961     TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
7962
7963   /* We need to add the subroutine type to the die immediately so
7964      we don't infinitely recurse when dealing with parameters
7965      declared as the same subroutine type.  */
7966   set_die_type (die, ftype, cu);
7967
7968   if (die->child != NULL)
7969     {
7970       struct type *void_type = objfile_type (cu->objfile)->builtin_void;
7971       struct die_info *child_die;
7972       int nparams, iparams;
7973
7974       /* Count the number of parameters.
7975          FIXME: GDB currently ignores vararg functions, but knows about
7976          vararg member functions.  */
7977       nparams = 0;
7978       child_die = die->child;
7979       while (child_die && child_die->tag)
7980         {
7981           if (child_die->tag == DW_TAG_formal_parameter)
7982             nparams++;
7983           else if (child_die->tag == DW_TAG_unspecified_parameters)
7984             TYPE_VARARGS (ftype) = 1;
7985           child_die = sibling_die (child_die);
7986         }
7987
7988       /* Allocate storage for parameters and fill them in.  */
7989       TYPE_NFIELDS (ftype) = nparams;
7990       TYPE_FIELDS (ftype) = (struct field *)
7991         TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
7992
7993       /* TYPE_FIELD_TYPE must never be NULL.  Pre-fill the array to ensure it
7994          even if we error out during the parameters reading below.  */
7995       for (iparams = 0; iparams < nparams; iparams++)
7996         TYPE_FIELD_TYPE (ftype, iparams) = void_type;
7997
7998       iparams = 0;
7999       child_die = die->child;
8000       while (child_die && child_die->tag)
8001         {
8002           if (child_die->tag == DW_TAG_formal_parameter)
8003             {
8004               struct type *arg_type;
8005
8006               /* DWARF version 2 has no clean way to discern C++
8007                  static and non-static member functions.  G++ helps
8008                  GDB by marking the first parameter for non-static
8009                  member functions (which is the this pointer) as
8010                  artificial.  We pass this information to
8011                  dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
8012
8013                  DWARF version 3 added DW_AT_object_pointer, which GCC
8014                  4.5 does not yet generate.  */
8015               attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
8016               if (attr)
8017                 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
8018               else
8019                 {
8020                   TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
8021
8022                   /* GCC/43521: In java, the formal parameter
8023                      "this" is sometimes not marked with DW_AT_artificial.  */
8024                   if (cu->language == language_java)
8025                     {
8026                       const char *name = dwarf2_name (child_die, cu);
8027
8028                       if (name && !strcmp (name, "this"))
8029                         TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 1;
8030                     }
8031                 }
8032               arg_type = die_type (child_die, cu);
8033
8034               /* RealView does not mark THIS as const, which the testsuite
8035                  expects.  GCC marks THIS as const in method definitions,
8036                  but not in the class specifications (GCC PR 43053).  */
8037               if (cu->language == language_cplus && !TYPE_CONST (arg_type)
8038                   && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
8039                 {
8040                   int is_this = 0;
8041                   struct dwarf2_cu *arg_cu = cu;
8042                   const char *name = dwarf2_name (child_die, cu);
8043
8044                   attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
8045                   if (attr)
8046                     {
8047                       /* If the compiler emits this, use it.  */
8048                       if (follow_die_ref (die, attr, &arg_cu) == child_die)
8049                         is_this = 1;
8050                     }
8051                   else if (name && strcmp (name, "this") == 0)
8052                     /* Function definitions will have the argument names.  */
8053                     is_this = 1;
8054                   else if (name == NULL && iparams == 0)
8055                     /* Declarations may not have the names, so like
8056                        elsewhere in GDB, assume an artificial first
8057                        argument is "this".  */
8058                     is_this = 1;
8059
8060                   if (is_this)
8061                     arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
8062                                              arg_type, 0);
8063                 }
8064
8065               TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
8066               iparams++;
8067             }
8068           child_die = sibling_die (child_die);
8069         }
8070     }
8071
8072   return ftype;
8073 }
8074
8075 static struct type *
8076 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
8077 {
8078   struct objfile *objfile = cu->objfile;
8079   const char *name = NULL;
8080   struct type *this_type;
8081
8082   name = dwarf2_full_name (NULL, die, cu);
8083   this_type = init_type (TYPE_CODE_TYPEDEF, 0,
8084                          TYPE_FLAG_TARGET_STUB, NULL, objfile);
8085   TYPE_NAME (this_type) = (char *) name;
8086   set_die_type (die, this_type, cu);
8087   TYPE_TARGET_TYPE (this_type) = die_type (die, cu);
8088   return this_type;
8089 }
8090
8091 /* Find a representation of a given base type and install
8092    it in the TYPE field of the die.  */
8093
8094 static struct type *
8095 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
8096 {
8097   struct objfile *objfile = cu->objfile;
8098   struct type *type;
8099   struct attribute *attr;
8100   int encoding = 0, size = 0;
8101   char *name;
8102   enum type_code code = TYPE_CODE_INT;
8103   int type_flags = 0;
8104   struct type *target_type = NULL;
8105
8106   attr = dwarf2_attr (die, DW_AT_encoding, cu);
8107   if (attr)
8108     {
8109       encoding = DW_UNSND (attr);
8110     }
8111   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
8112   if (attr)
8113     {
8114       size = DW_UNSND (attr);
8115     }
8116   name = dwarf2_name (die, cu);
8117   if (!name)
8118     {
8119       complaint (&symfile_complaints,
8120                  _("DW_AT_name missing from DW_TAG_base_type"));
8121     }
8122
8123   switch (encoding)
8124     {
8125       case DW_ATE_address:
8126         /* Turn DW_ATE_address into a void * pointer.  */
8127         code = TYPE_CODE_PTR;
8128         type_flags |= TYPE_FLAG_UNSIGNED;
8129         target_type = init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
8130         break;
8131       case DW_ATE_boolean:
8132         code = TYPE_CODE_BOOL;
8133         type_flags |= TYPE_FLAG_UNSIGNED;
8134         break;
8135       case DW_ATE_complex_float:
8136         code = TYPE_CODE_COMPLEX;
8137         target_type = init_type (TYPE_CODE_FLT, size / 2, 0, NULL, objfile);
8138         break;
8139       case DW_ATE_decimal_float:
8140         code = TYPE_CODE_DECFLOAT;
8141         break;
8142       case DW_ATE_float:
8143         code = TYPE_CODE_FLT;
8144         break;
8145       case DW_ATE_signed:
8146         break;
8147       case DW_ATE_unsigned:
8148         type_flags |= TYPE_FLAG_UNSIGNED;
8149         break;
8150       case DW_ATE_signed_char:
8151         if (cu->language == language_ada || cu->language == language_m2
8152             || cu->language == language_pascal)
8153           code = TYPE_CODE_CHAR;
8154         break;
8155       case DW_ATE_unsigned_char:
8156         if (cu->language == language_ada || cu->language == language_m2
8157             || cu->language == language_pascal)
8158           code = TYPE_CODE_CHAR;
8159         type_flags |= TYPE_FLAG_UNSIGNED;
8160         break;
8161       case DW_ATE_UTF:
8162         /* We just treat this as an integer and then recognize the
8163            type by name elsewhere.  */
8164         break;
8165
8166       default:
8167         complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
8168                    dwarf_type_encoding_name (encoding));
8169         break;
8170     }
8171
8172   type = init_type (code, size, type_flags, NULL, objfile);
8173   TYPE_NAME (type) = name;
8174   TYPE_TARGET_TYPE (type) = target_type;
8175
8176   if (name && strcmp (name, "char") == 0)
8177     TYPE_NOSIGN (type) = 1;
8178
8179   return set_die_type (die, type, cu);
8180 }
8181
8182 /* Read the given DW_AT_subrange DIE.  */
8183
8184 static struct type *
8185 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
8186 {
8187   struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
8188   struct type *base_type;
8189   struct type *range_type;
8190   struct attribute *attr;
8191   LONGEST low = 0;
8192   LONGEST high = -1;
8193   char *name;
8194   LONGEST negative_mask;
8195
8196   base_type = die_type (die, cu);
8197   /* Preserve BASE_TYPE's original type, just set its LENGTH.  */
8198   check_typedef (base_type);
8199
8200   /* The die_type call above may have already set the type for this DIE.  */
8201   range_type = get_die_type (die, cu);
8202   if (range_type)
8203     return range_type;
8204
8205   if (cu->language == language_fortran)
8206     {
8207       /* FORTRAN implies a lower bound of 1, if not given.  */
8208       low = 1;
8209     }
8210
8211   /* FIXME: For variable sized arrays either of these could be
8212      a variable rather than a constant value.  We'll allow it,
8213      but we don't know how to handle it.  */
8214   attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
8215   if (attr)
8216     low = dwarf2_get_attr_constant_value (attr, 0);
8217
8218   attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
8219   if (attr)
8220     {
8221       if (attr->form == DW_FORM_block1 || is_ref_attr (attr))
8222         {
8223           /* GCC encodes arrays with unspecified or dynamic length
8224              with a DW_FORM_block1 attribute or a reference attribute.
8225              FIXME: GDB does not yet know how to handle dynamic
8226              arrays properly, treat them as arrays with unspecified
8227              length for now.
8228
8229              FIXME: jimb/2003-09-22: GDB does not really know
8230              how to handle arrays of unspecified length
8231              either; we just represent them as zero-length
8232              arrays.  Choose an appropriate upper bound given
8233              the lower bound we've computed above.  */
8234           high = low - 1;
8235         }
8236       else
8237         high = dwarf2_get_attr_constant_value (attr, 1);
8238     }
8239   else
8240     {
8241       attr = dwarf2_attr (die, DW_AT_count, cu);
8242       if (attr)
8243         {
8244           int count = dwarf2_get_attr_constant_value (attr, 1);
8245           high = low + count - 1;
8246         }
8247       else
8248         {
8249           /* Unspecified array length.  */
8250           high = low - 1;
8251         }
8252     }
8253
8254   /* Dwarf-2 specifications explicitly allows to create subrange types
8255      without specifying a base type.
8256      In that case, the base type must be set to the type of
8257      the lower bound, upper bound or count, in that order, if any of these
8258      three attributes references an object that has a type.
8259      If no base type is found, the Dwarf-2 specifications say that
8260      a signed integer type of size equal to the size of an address should
8261      be used.
8262      For the following C code: `extern char gdb_int [];'
8263      GCC produces an empty range DIE.
8264      FIXME: muller/2010-05-28: Possible references to object for low bound,
8265      high bound or count are not yet handled by this code.  */
8266   if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
8267     {
8268       struct objfile *objfile = cu->objfile;
8269       struct gdbarch *gdbarch = get_objfile_arch (objfile);
8270       int addr_size = gdbarch_addr_bit (gdbarch) /8;
8271       struct type *int_type = objfile_type (objfile)->builtin_int;
8272
8273       /* Test "int", "long int", and "long long int" objfile types,
8274          and select the first one having a size above or equal to the
8275          architecture address size.  */
8276       if (int_type && TYPE_LENGTH (int_type) >= addr_size)
8277         base_type = int_type;
8278       else
8279         {
8280           int_type = objfile_type (objfile)->builtin_long;
8281           if (int_type && TYPE_LENGTH (int_type) >= addr_size)
8282             base_type = int_type;
8283           else
8284             {
8285               int_type = objfile_type (objfile)->builtin_long_long;
8286               if (int_type && TYPE_LENGTH (int_type) >= addr_size)
8287                 base_type = int_type;
8288             }
8289         }
8290     }
8291
8292   negative_mask =
8293     (LONGEST) -1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1);
8294   if (!TYPE_UNSIGNED (base_type) && (low & negative_mask))
8295     low |= negative_mask;
8296   if (!TYPE_UNSIGNED (base_type) && (high & negative_mask))
8297     high |= negative_mask;
8298
8299   range_type = create_range_type (NULL, base_type, low, high);
8300
8301   /* Mark arrays with dynamic length at least as an array of unspecified
8302      length.  GDB could check the boundary but before it gets implemented at
8303      least allow accessing the array elements.  */
8304   if (attr && attr->form == DW_FORM_block1)
8305     TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
8306
8307   /* Ada expects an empty array on no boundary attributes.  */
8308   if (attr == NULL && cu->language != language_ada)
8309     TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
8310
8311   name = dwarf2_name (die, cu);
8312   if (name)
8313     TYPE_NAME (range_type) = name;
8314
8315   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
8316   if (attr)
8317     TYPE_LENGTH (range_type) = DW_UNSND (attr);
8318
8319   set_die_type (die, range_type, cu);
8320
8321   /* set_die_type should be already done.  */
8322   set_descriptive_type (range_type, die, cu);
8323
8324   return range_type;
8325 }
8326
8327 static struct type *
8328 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
8329 {
8330   struct type *type;
8331
8332   /* For now, we only support the C meaning of an unspecified type: void.  */
8333
8334   type = init_type (TYPE_CODE_VOID, 0, 0, NULL, cu->objfile);
8335   TYPE_NAME (type) = dwarf2_name (die, cu);
8336
8337   return set_die_type (die, type, cu);
8338 }
8339
8340 /* Trivial hash function for die_info: the hash value of a DIE
8341    is its offset in .debug_info for this objfile.  */
8342
8343 static hashval_t
8344 die_hash (const void *item)
8345 {
8346   const struct die_info *die = item;
8347
8348   return die->offset;
8349 }
8350
8351 /* Trivial comparison function for die_info structures: two DIEs
8352    are equal if they have the same offset.  */
8353
8354 static int
8355 die_eq (const void *item_lhs, const void *item_rhs)
8356 {
8357   const struct die_info *die_lhs = item_lhs;
8358   const struct die_info *die_rhs = item_rhs;
8359
8360   return die_lhs->offset == die_rhs->offset;
8361 }
8362
8363 /* Read a whole compilation unit into a linked list of dies.  */
8364
8365 static struct die_info *
8366 read_comp_unit (gdb_byte *info_ptr, struct dwarf2_cu *cu)
8367 {
8368   struct die_reader_specs reader_specs;
8369   int read_abbrevs = 0;
8370   struct cleanup *back_to = NULL;
8371   struct die_info *die;
8372
8373   if (cu->dwarf2_abbrevs == NULL)
8374     {
8375       dwarf2_read_abbrevs (cu->objfile->obfd, cu);
8376       back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
8377       read_abbrevs = 1;
8378     }
8379
8380   gdb_assert (cu->die_hash == NULL);
8381   cu->die_hash
8382     = htab_create_alloc_ex (cu->header.length / 12,
8383                             die_hash,
8384                             die_eq,
8385                             NULL,
8386                             &cu->comp_unit_obstack,
8387                             hashtab_obstack_allocate,
8388                             dummy_obstack_deallocate);
8389
8390   init_cu_die_reader (&reader_specs, cu);
8391
8392   die = read_die_and_children (&reader_specs, info_ptr, &info_ptr, NULL);
8393
8394   if (read_abbrevs)
8395     do_cleanups (back_to);
8396
8397   return die;
8398 }
8399
8400 /* Main entry point for reading a DIE and all children.
8401    Read the DIE and dump it if requested.  */
8402
8403 static struct die_info *
8404 read_die_and_children (const struct die_reader_specs *reader,
8405                        gdb_byte *info_ptr,
8406                        gdb_byte **new_info_ptr,
8407                        struct die_info *parent)
8408 {
8409   struct die_info *result = read_die_and_children_1 (reader, info_ptr,
8410                                                      new_info_ptr, parent);
8411
8412   if (dwarf2_die_debug)
8413     {
8414       fprintf_unfiltered (gdb_stdlog,
8415                           "\nRead die from %s of %s:\n",
8416                           reader->buffer == dwarf2_per_objfile->info.buffer
8417                           ? ".debug_info"
8418                           : reader->buffer == dwarf2_per_objfile->types.buffer
8419                           ? ".debug_types"
8420                           : "unknown section",
8421                           reader->abfd->filename);
8422       dump_die (result, dwarf2_die_debug);
8423     }
8424
8425   return result;
8426 }
8427
8428 /* Read a single die and all its descendents.  Set the die's sibling
8429    field to NULL; set other fields in the die correctly, and set all
8430    of the descendents' fields correctly.  Set *NEW_INFO_PTR to the
8431    location of the info_ptr after reading all of those dies.  PARENT
8432    is the parent of the die in question.  */
8433
8434 static struct die_info *
8435 read_die_and_children_1 (const struct die_reader_specs *reader,
8436                          gdb_byte *info_ptr,
8437                          gdb_byte **new_info_ptr,
8438                          struct die_info *parent)
8439 {
8440   struct die_info *die;
8441   gdb_byte *cur_ptr;
8442   int has_children;
8443
8444   cur_ptr = read_full_die (reader, &die, info_ptr, &has_children);
8445   if (die == NULL)
8446     {
8447       *new_info_ptr = cur_ptr;
8448       return NULL;
8449     }
8450   store_in_ref_table (die, reader->cu);
8451
8452   if (has_children)
8453     die->child = read_die_and_siblings (reader, cur_ptr, new_info_ptr, die);
8454   else
8455     {
8456       die->child = NULL;
8457       *new_info_ptr = cur_ptr;
8458     }
8459
8460   die->sibling = NULL;
8461   die->parent = parent;
8462   return die;
8463 }
8464
8465 /* Read a die, all of its descendents, and all of its siblings; set
8466    all of the fields of all of the dies correctly.  Arguments are as
8467    in read_die_and_children.  */
8468
8469 static struct die_info *
8470 read_die_and_siblings (const struct die_reader_specs *reader,
8471                        gdb_byte *info_ptr,
8472                        gdb_byte **new_info_ptr,
8473                        struct die_info *parent)
8474 {
8475   struct die_info *first_die, *last_sibling;
8476   gdb_byte *cur_ptr;
8477
8478   cur_ptr = info_ptr;
8479   first_die = last_sibling = NULL;
8480
8481   while (1)
8482     {
8483       struct die_info *die
8484         = read_die_and_children_1 (reader, cur_ptr, &cur_ptr, parent);
8485
8486       if (die == NULL)
8487         {
8488           *new_info_ptr = cur_ptr;
8489           return first_die;
8490         }
8491
8492       if (!first_die)
8493         first_die = die;
8494       else
8495         last_sibling->sibling = die;
8496
8497       last_sibling = die;
8498     }
8499 }
8500
8501 /* Read the die from the .debug_info section buffer.  Set DIEP to
8502    point to a newly allocated die with its information, except for its
8503    child, sibling, and parent fields.  Set HAS_CHILDREN to tell
8504    whether the die has children or not.  */
8505
8506 static gdb_byte *
8507 read_full_die (const struct die_reader_specs *reader,
8508                struct die_info **diep, gdb_byte *info_ptr,
8509                int *has_children)
8510 {
8511   unsigned int abbrev_number, bytes_read, i, offset;
8512   struct abbrev_info *abbrev;
8513   struct die_info *die;
8514   struct dwarf2_cu *cu = reader->cu;
8515   bfd *abfd = reader->abfd;
8516
8517   offset = info_ptr - reader->buffer;
8518   abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
8519   info_ptr += bytes_read;
8520   if (!abbrev_number)
8521     {
8522       *diep = NULL;
8523       *has_children = 0;
8524       return info_ptr;
8525     }
8526
8527   abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
8528   if (!abbrev)
8529     error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
8530            abbrev_number,
8531            bfd_get_filename (abfd));
8532
8533   die = dwarf_alloc_die (cu, abbrev->num_attrs);
8534   die->offset = offset;
8535   die->tag = abbrev->tag;
8536   die->abbrev = abbrev_number;
8537
8538   die->num_attrs = abbrev->num_attrs;
8539
8540   for (i = 0; i < abbrev->num_attrs; ++i)
8541     info_ptr = read_attribute (&die->attrs[i], &abbrev->attrs[i],
8542                                abfd, info_ptr, cu);
8543
8544   *diep = die;
8545   *has_children = abbrev->has_children;
8546   return info_ptr;
8547 }
8548
8549 /* In DWARF version 2, the description of the debugging information is
8550    stored in a separate .debug_abbrev section.  Before we read any
8551    dies from a section we read in all abbreviations and install them
8552    in a hash table.  This function also sets flags in CU describing
8553    the data found in the abbrev table.  */
8554
8555 static void
8556 dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu)
8557 {
8558   struct comp_unit_head *cu_header = &cu->header;
8559   gdb_byte *abbrev_ptr;
8560   struct abbrev_info *cur_abbrev;
8561   unsigned int abbrev_number, bytes_read, abbrev_name;
8562   unsigned int abbrev_form, hash_number;
8563   struct attr_abbrev *cur_attrs;
8564   unsigned int allocated_attrs;
8565
8566   /* Initialize dwarf2 abbrevs.  */
8567   obstack_init (&cu->abbrev_obstack);
8568   cu->dwarf2_abbrevs = obstack_alloc (&cu->abbrev_obstack,
8569                                       (ABBREV_HASH_SIZE
8570                                        * sizeof (struct abbrev_info *)));
8571   memset (cu->dwarf2_abbrevs, 0,
8572           ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
8573
8574   dwarf2_read_section (dwarf2_per_objfile->objfile,
8575                        &dwarf2_per_objfile->abbrev);
8576   abbrev_ptr = dwarf2_per_objfile->abbrev.buffer + cu_header->abbrev_offset;
8577   abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8578   abbrev_ptr += bytes_read;
8579
8580   allocated_attrs = ATTR_ALLOC_CHUNK;
8581   cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
8582
8583   /* Loop until we reach an abbrev number of 0.  */
8584   while (abbrev_number)
8585     {
8586       cur_abbrev = dwarf_alloc_abbrev (cu);
8587
8588       /* read in abbrev header */
8589       cur_abbrev->number = abbrev_number;
8590       cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8591       abbrev_ptr += bytes_read;
8592       cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
8593       abbrev_ptr += 1;
8594
8595       if (cur_abbrev->tag == DW_TAG_namespace)
8596         cu->has_namespace_info = 1;
8597
8598       /* now read in declarations */
8599       abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8600       abbrev_ptr += bytes_read;
8601       abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8602       abbrev_ptr += bytes_read;
8603       while (abbrev_name)
8604         {
8605           if (cur_abbrev->num_attrs == allocated_attrs)
8606             {
8607               allocated_attrs += ATTR_ALLOC_CHUNK;
8608               cur_attrs
8609                 = xrealloc (cur_attrs, (allocated_attrs
8610                                         * sizeof (struct attr_abbrev)));
8611             }
8612
8613           /* Record whether this compilation unit might have
8614              inter-compilation-unit references.  If we don't know what form
8615              this attribute will have, then it might potentially be a
8616              DW_FORM_ref_addr, so we conservatively expect inter-CU
8617              references.  */
8618
8619           if (abbrev_form == DW_FORM_ref_addr
8620               || abbrev_form == DW_FORM_indirect)
8621             cu->has_form_ref_addr = 1;
8622
8623           cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
8624           cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
8625           abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8626           abbrev_ptr += bytes_read;
8627           abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8628           abbrev_ptr += bytes_read;
8629         }
8630
8631       cur_abbrev->attrs = obstack_alloc (&cu->abbrev_obstack,
8632                                          (cur_abbrev->num_attrs
8633                                           * sizeof (struct attr_abbrev)));
8634       memcpy (cur_abbrev->attrs, cur_attrs,
8635               cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
8636
8637       hash_number = abbrev_number % ABBREV_HASH_SIZE;
8638       cur_abbrev->next = cu->dwarf2_abbrevs[hash_number];
8639       cu->dwarf2_abbrevs[hash_number] = cur_abbrev;
8640
8641       /* Get next abbreviation.
8642          Under Irix6 the abbreviations for a compilation unit are not
8643          always properly terminated with an abbrev number of 0.
8644          Exit loop if we encounter an abbreviation which we have
8645          already read (which means we are about to read the abbreviations
8646          for the next compile unit) or if the end of the abbreviation
8647          table is reached.  */
8648       if ((unsigned int) (abbrev_ptr - dwarf2_per_objfile->abbrev.buffer)
8649           >= dwarf2_per_objfile->abbrev.size)
8650         break;
8651       abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8652       abbrev_ptr += bytes_read;
8653       if (dwarf2_lookup_abbrev (abbrev_number, cu) != NULL)
8654         break;
8655     }
8656
8657   xfree (cur_attrs);
8658 }
8659
8660 /* Release the memory used by the abbrev table for a compilation unit.  */
8661
8662 static void
8663 dwarf2_free_abbrev_table (void *ptr_to_cu)
8664 {
8665   struct dwarf2_cu *cu = ptr_to_cu;
8666
8667   obstack_free (&cu->abbrev_obstack, NULL);
8668   cu->dwarf2_abbrevs = NULL;
8669 }
8670
8671 /* Lookup an abbrev_info structure in the abbrev hash table.  */
8672
8673 static struct abbrev_info *
8674 dwarf2_lookup_abbrev (unsigned int number, struct dwarf2_cu *cu)
8675 {
8676   unsigned int hash_number;
8677   struct abbrev_info *abbrev;
8678
8679   hash_number = number % ABBREV_HASH_SIZE;
8680   abbrev = cu->dwarf2_abbrevs[hash_number];
8681
8682   while (abbrev)
8683     {
8684       if (abbrev->number == number)
8685         return abbrev;
8686       else
8687         abbrev = abbrev->next;
8688     }
8689   return NULL;
8690 }
8691
8692 /* Returns nonzero if TAG represents a type that we might generate a partial
8693    symbol for.  */
8694
8695 static int
8696 is_type_tag_for_partial (int tag)
8697 {
8698   switch (tag)
8699     {
8700 #if 0
8701     /* Some types that would be reasonable to generate partial symbols for,
8702        that we don't at present.  */
8703     case DW_TAG_array_type:
8704     case DW_TAG_file_type:
8705     case DW_TAG_ptr_to_member_type:
8706     case DW_TAG_set_type:
8707     case DW_TAG_string_type:
8708     case DW_TAG_subroutine_type:
8709 #endif
8710     case DW_TAG_base_type:
8711     case DW_TAG_class_type:
8712     case DW_TAG_interface_type:
8713     case DW_TAG_enumeration_type:
8714     case DW_TAG_structure_type:
8715     case DW_TAG_subrange_type:
8716     case DW_TAG_typedef:
8717     case DW_TAG_union_type:
8718       return 1;
8719     default:
8720       return 0;
8721     }
8722 }
8723
8724 /* Load all DIEs that are interesting for partial symbols into memory.  */
8725
8726 static struct partial_die_info *
8727 load_partial_dies (bfd *abfd, gdb_byte *buffer, gdb_byte *info_ptr,
8728                    int building_psymtab, struct dwarf2_cu *cu)
8729 {
8730   struct partial_die_info *part_die;
8731   struct partial_die_info *parent_die, *last_die, *first_die = NULL;
8732   struct abbrev_info *abbrev;
8733   unsigned int bytes_read;
8734   unsigned int load_all = 0;
8735
8736   int nesting_level = 1;
8737
8738   parent_die = NULL;
8739   last_die = NULL;
8740
8741   if (cu->per_cu && cu->per_cu->load_all_dies)
8742     load_all = 1;
8743
8744   cu->partial_dies
8745     = htab_create_alloc_ex (cu->header.length / 12,
8746                             partial_die_hash,
8747                             partial_die_eq,
8748                             NULL,
8749                             &cu->comp_unit_obstack,
8750                             hashtab_obstack_allocate,
8751                             dummy_obstack_deallocate);
8752
8753   part_die = obstack_alloc (&cu->comp_unit_obstack,
8754                             sizeof (struct partial_die_info));
8755
8756   while (1)
8757     {
8758       abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
8759
8760       /* A NULL abbrev means the end of a series of children.  */
8761       if (abbrev == NULL)
8762         {
8763           if (--nesting_level == 0)
8764             {
8765               /* PART_DIE was probably the last thing allocated on the
8766                  comp_unit_obstack, so we could call obstack_free
8767                  here.  We don't do that because the waste is small,
8768                  and will be cleaned up when we're done with this
8769                  compilation unit.  This way, we're also more robust
8770                  against other users of the comp_unit_obstack.  */
8771               return first_die;
8772             }
8773           info_ptr += bytes_read;
8774           last_die = parent_die;
8775           parent_die = parent_die->die_parent;
8776           continue;
8777         }
8778
8779       /* Check for template arguments.  We never save these; if
8780          they're seen, we just mark the parent, and go on our way.  */
8781       if (parent_die != NULL
8782           && cu->language == language_cplus
8783           && (abbrev->tag == DW_TAG_template_type_param
8784               || abbrev->tag == DW_TAG_template_value_param))
8785         {
8786           parent_die->has_template_arguments = 1;
8787
8788           if (!load_all)
8789             {
8790               /* We don't need a partial DIE for the template argument.  */
8791               info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev,
8792                                        cu);
8793               continue;
8794             }
8795         }
8796
8797       /* We only recurse into subprograms looking for template arguments.
8798          Skip their other children.  */
8799       if (!load_all
8800           && cu->language == language_cplus
8801           && parent_die != NULL
8802           && parent_die->tag == DW_TAG_subprogram)
8803         {
8804           info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
8805           continue;
8806         }
8807
8808       /* Check whether this DIE is interesting enough to save.  Normally
8809          we would not be interested in members here, but there may be
8810          later variables referencing them via DW_AT_specification (for
8811          static members).  */
8812       if (!load_all
8813           && !is_type_tag_for_partial (abbrev->tag)
8814           && abbrev->tag != DW_TAG_constant
8815           && abbrev->tag != DW_TAG_enumerator
8816           && abbrev->tag != DW_TAG_subprogram
8817           && abbrev->tag != DW_TAG_lexical_block
8818           && abbrev->tag != DW_TAG_variable
8819           && abbrev->tag != DW_TAG_namespace
8820           && abbrev->tag != DW_TAG_module
8821           && abbrev->tag != DW_TAG_member)
8822         {
8823           /* Otherwise we skip to the next sibling, if any.  */
8824           info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
8825           continue;
8826         }
8827
8828       info_ptr = read_partial_die (part_die, abbrev, bytes_read, abfd,
8829                                    buffer, info_ptr, cu);
8830
8831       /* This two-pass algorithm for processing partial symbols has a
8832          high cost in cache pressure.  Thus, handle some simple cases
8833          here which cover the majority of C partial symbols.  DIEs
8834          which neither have specification tags in them, nor could have
8835          specification tags elsewhere pointing at them, can simply be
8836          processed and discarded.
8837
8838          This segment is also optional; scan_partial_symbols and
8839          add_partial_symbol will handle these DIEs if we chain
8840          them in normally.  When compilers which do not emit large
8841          quantities of duplicate debug information are more common,
8842          this code can probably be removed.  */
8843
8844       /* Any complete simple types at the top level (pretty much all
8845          of them, for a language without namespaces), can be processed
8846          directly.  */
8847       if (parent_die == NULL
8848           && part_die->has_specification == 0
8849           && part_die->is_declaration == 0
8850           && (part_die->tag == DW_TAG_typedef
8851               || part_die->tag == DW_TAG_base_type
8852               || part_die->tag == DW_TAG_subrange_type))
8853         {
8854           if (building_psymtab && part_die->name != NULL)
8855             add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
8856                                  VAR_DOMAIN, LOC_TYPEDEF,
8857                                  &cu->objfile->static_psymbols,
8858                                  0, (CORE_ADDR) 0, cu->language, cu->objfile);
8859           info_ptr = locate_pdi_sibling (part_die, buffer, info_ptr, abfd, cu);
8860           continue;
8861         }
8862
8863       /* If we're at the second level, and we're an enumerator, and
8864          our parent has no specification (meaning possibly lives in a
8865          namespace elsewhere), then we can add the partial symbol now
8866          instead of queueing it.  */
8867       if (part_die->tag == DW_TAG_enumerator
8868           && parent_die != NULL
8869           && parent_die->die_parent == NULL
8870           && parent_die->tag == DW_TAG_enumeration_type
8871           && parent_die->has_specification == 0)
8872         {
8873           if (part_die->name == NULL)
8874             complaint (&symfile_complaints,
8875                        _("malformed enumerator DIE ignored"));
8876           else if (building_psymtab)
8877             add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
8878                                  VAR_DOMAIN, LOC_CONST,
8879                                  (cu->language == language_cplus
8880                                   || cu->language == language_java)
8881                                  ? &cu->objfile->global_psymbols
8882                                  : &cu->objfile->static_psymbols,
8883                                  0, (CORE_ADDR) 0, cu->language, cu->objfile);
8884
8885           info_ptr = locate_pdi_sibling (part_die, buffer, info_ptr, abfd, cu);
8886           continue;
8887         }
8888
8889       /* We'll save this DIE so link it in.  */
8890       part_die->die_parent = parent_die;
8891       part_die->die_sibling = NULL;
8892       part_die->die_child = NULL;
8893
8894       if (last_die && last_die == parent_die)
8895         last_die->die_child = part_die;
8896       else if (last_die)
8897         last_die->die_sibling = part_die;
8898
8899       last_die = part_die;
8900
8901       if (first_die == NULL)
8902         first_die = part_die;
8903
8904       /* Maybe add the DIE to the hash table.  Not all DIEs that we
8905          find interesting need to be in the hash table, because we
8906          also have the parent/sibling/child chains; only those that we
8907          might refer to by offset later during partial symbol reading.
8908
8909          For now this means things that might have be the target of a
8910          DW_AT_specification, DW_AT_abstract_origin, or
8911          DW_AT_extension.  DW_AT_extension will refer only to
8912          namespaces; DW_AT_abstract_origin refers to functions (and
8913          many things under the function DIE, but we do not recurse
8914          into function DIEs during partial symbol reading) and
8915          possibly variables as well; DW_AT_specification refers to
8916          declarations.  Declarations ought to have the DW_AT_declaration
8917          flag.  It happens that GCC forgets to put it in sometimes, but
8918          only for functions, not for types.
8919
8920          Adding more things than necessary to the hash table is harmless
8921          except for the performance cost.  Adding too few will result in
8922          wasted time in find_partial_die, when we reread the compilation
8923          unit with load_all_dies set.  */
8924
8925       if (load_all
8926           || abbrev->tag == DW_TAG_constant
8927           || abbrev->tag == DW_TAG_subprogram
8928           || abbrev->tag == DW_TAG_variable
8929           || abbrev->tag == DW_TAG_namespace
8930           || part_die->is_declaration)
8931         {
8932           void **slot;
8933
8934           slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
8935                                            part_die->offset, INSERT);
8936           *slot = part_die;
8937         }
8938
8939       part_die = obstack_alloc (&cu->comp_unit_obstack,
8940                                 sizeof (struct partial_die_info));
8941
8942       /* For some DIEs we want to follow their children (if any).  For C
8943          we have no reason to follow the children of structures; for other
8944          languages we have to, so that we can get at method physnames
8945          to infer fully qualified class names, for DW_AT_specification,
8946          and for C++ template arguments.  For C++, we also look one level
8947          inside functions to find template arguments (if the name of the
8948          function does not already contain the template arguments).
8949
8950          For Ada, we need to scan the children of subprograms and lexical
8951          blocks as well because Ada allows the definition of nested
8952          entities that could be interesting for the debugger, such as
8953          nested subprograms for instance.  */
8954       if (last_die->has_children
8955           && (load_all
8956               || last_die->tag == DW_TAG_namespace
8957               || last_die->tag == DW_TAG_module
8958               || last_die->tag == DW_TAG_enumeration_type
8959               || (cu->language == language_cplus
8960                   && last_die->tag == DW_TAG_subprogram
8961                   && (last_die->name == NULL
8962                       || strchr (last_die->name, '<') == NULL))
8963               || (cu->language != language_c
8964                   && (last_die->tag == DW_TAG_class_type
8965                       || last_die->tag == DW_TAG_interface_type
8966                       || last_die->tag == DW_TAG_structure_type
8967                       || last_die->tag == DW_TAG_union_type))
8968               || (cu->language == language_ada
8969                   && (last_die->tag == DW_TAG_subprogram
8970                       || last_die->tag == DW_TAG_lexical_block))))
8971         {
8972           nesting_level++;
8973           parent_die = last_die;
8974           continue;
8975         }
8976
8977       /* Otherwise we skip to the next sibling, if any.  */
8978       info_ptr = locate_pdi_sibling (last_die, buffer, info_ptr, abfd, cu);
8979
8980       /* Back to the top, do it again.  */
8981     }
8982 }
8983
8984 /* Read a minimal amount of information into the minimal die structure.  */
8985
8986 static gdb_byte *
8987 read_partial_die (struct partial_die_info *part_die,
8988                   struct abbrev_info *abbrev,
8989                   unsigned int abbrev_len, bfd *abfd,
8990                   gdb_byte *buffer, gdb_byte *info_ptr,
8991                   struct dwarf2_cu *cu)
8992 {
8993   unsigned int i;
8994   struct attribute attr;
8995   int has_low_pc_attr = 0;
8996   int has_high_pc_attr = 0;
8997
8998   memset (part_die, 0, sizeof (struct partial_die_info));
8999
9000   part_die->offset = info_ptr - buffer;
9001
9002   info_ptr += abbrev_len;
9003
9004   if (abbrev == NULL)
9005     return info_ptr;
9006
9007   part_die->tag = abbrev->tag;
9008   part_die->has_children = abbrev->has_children;
9009
9010   for (i = 0; i < abbrev->num_attrs; ++i)
9011     {
9012       info_ptr = read_attribute (&attr, &abbrev->attrs[i], abfd, info_ptr, cu);
9013
9014       /* Store the data if it is of an attribute we want to keep in a
9015          partial symbol table.  */
9016       switch (attr.name)
9017         {
9018         case DW_AT_name:
9019           switch (part_die->tag)
9020             {
9021             case DW_TAG_compile_unit:
9022             case DW_TAG_type_unit:
9023               /* Compilation units have a DW_AT_name that is a filename, not
9024                  a source language identifier.  */
9025             case DW_TAG_enumeration_type:
9026             case DW_TAG_enumerator:
9027               /* These tags always have simple identifiers already; no need
9028                  to canonicalize them.  */
9029               part_die->name = DW_STRING (&attr);
9030               break;
9031             default:
9032               part_die->name
9033                 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
9034                                             &cu->objfile->objfile_obstack);
9035               break;
9036             }
9037           break;
9038         case DW_AT_linkage_name:
9039         case DW_AT_MIPS_linkage_name:
9040           /* Note that both forms of linkage name might appear.  We
9041              assume they will be the same, and we only store the last
9042              one we see.  */
9043           if (cu->language == language_ada)
9044             part_die->name = DW_STRING (&attr);
9045           part_die->linkage_name = DW_STRING (&attr);
9046           break;
9047         case DW_AT_low_pc:
9048           has_low_pc_attr = 1;
9049           part_die->lowpc = DW_ADDR (&attr);
9050           break;
9051         case DW_AT_high_pc:
9052           has_high_pc_attr = 1;
9053           part_die->highpc = DW_ADDR (&attr);
9054           break;
9055         case DW_AT_location:
9056           /* Support the .debug_loc offsets.  */
9057           if (attr_form_is_block (&attr))
9058             {
9059                part_die->locdesc = DW_BLOCK (&attr);
9060             }
9061           else if (attr_form_is_section_offset (&attr))
9062             {
9063               dwarf2_complex_location_expr_complaint ();
9064             }
9065           else
9066             {
9067               dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
9068                                                      "partial symbol information");
9069             }
9070           break;
9071         case DW_AT_external:
9072           part_die->is_external = DW_UNSND (&attr);
9073           break;
9074         case DW_AT_declaration:
9075           part_die->is_declaration = DW_UNSND (&attr);
9076           break;
9077         case DW_AT_type:
9078           part_die->has_type = 1;
9079           break;
9080         case DW_AT_abstract_origin:
9081         case DW_AT_specification:
9082         case DW_AT_extension:
9083           part_die->has_specification = 1;
9084           part_die->spec_offset = dwarf2_get_ref_die_offset (&attr);
9085           break;
9086         case DW_AT_sibling:
9087           /* Ignore absolute siblings, they might point outside of
9088              the current compile unit.  */
9089           if (attr.form == DW_FORM_ref_addr)
9090             complaint (&symfile_complaints,
9091                        _("ignoring absolute DW_AT_sibling"));
9092           else
9093             part_die->sibling = buffer + dwarf2_get_ref_die_offset (&attr);
9094           break;
9095         case DW_AT_byte_size:
9096           part_die->has_byte_size = 1;
9097           break;
9098         case DW_AT_calling_convention:
9099           /* DWARF doesn't provide a way to identify a program's source-level
9100              entry point.  DW_AT_calling_convention attributes are only meant
9101              to describe functions' calling conventions.
9102
9103              However, because it's a necessary piece of information in
9104              Fortran, and because DW_CC_program is the only piece of debugging
9105              information whose definition refers to a 'main program' at all,
9106              several compilers have begun marking Fortran main programs with
9107              DW_CC_program --- even when those functions use the standard
9108              calling conventions.
9109
9110              So until DWARF specifies a way to provide this information and
9111              compilers pick up the new representation, we'll support this
9112              practice.  */
9113           if (DW_UNSND (&attr) == DW_CC_program
9114               && cu->language == language_fortran)
9115             {
9116               set_main_name (part_die->name);
9117
9118               /* As this DIE has a static linkage the name would be difficult
9119                  to look up later.  */
9120               language_of_main = language_fortran;
9121             }
9122           break;
9123         default:
9124           break;
9125         }
9126     }
9127
9128   /* When using the GNU linker, .gnu.linkonce. sections are used to
9129      eliminate duplicate copies of functions and vtables and such.
9130      The linker will arbitrarily choose one and discard the others.
9131      The AT_*_pc values for such functions refer to local labels in
9132      these sections.  If the section from that file was discarded, the
9133      labels are not in the output, so the relocs get a value of 0.
9134      If this is a discarded function, mark the pc bounds as invalid,
9135      so that GDB will ignore it.  */
9136   if (has_low_pc_attr && has_high_pc_attr
9137       && part_die->lowpc < part_die->highpc
9138       && (part_die->lowpc != 0
9139           || dwarf2_per_objfile->has_section_at_zero))
9140     part_die->has_pc_info = 1;
9141
9142   return info_ptr;
9143 }
9144
9145 /* Find a cached partial DIE at OFFSET in CU.  */
9146
9147 static struct partial_die_info *
9148 find_partial_die_in_comp_unit (unsigned int offset, struct dwarf2_cu *cu)
9149 {
9150   struct partial_die_info *lookup_die = NULL;
9151   struct partial_die_info part_die;
9152
9153   part_die.offset = offset;
9154   lookup_die = htab_find_with_hash (cu->partial_dies, &part_die, offset);
9155
9156   return lookup_die;
9157 }
9158
9159 /* Find a partial DIE at OFFSET, which may or may not be in CU,
9160    except in the case of .debug_types DIEs which do not reference
9161    outside their CU (they do however referencing other types via
9162    DW_FORM_sig8).  */
9163
9164 static struct partial_die_info *
9165 find_partial_die (unsigned int offset, struct dwarf2_cu *cu)
9166 {
9167   struct dwarf2_per_cu_data *per_cu = NULL;
9168   struct partial_die_info *pd = NULL;
9169
9170   if (cu->per_cu->from_debug_types)
9171     {
9172       pd = find_partial_die_in_comp_unit (offset, cu);
9173       if (pd != NULL)
9174         return pd;
9175       goto not_found;
9176     }
9177
9178   if (offset_in_cu_p (&cu->header, offset))
9179     {
9180       pd = find_partial_die_in_comp_unit (offset, cu);
9181       if (pd != NULL)
9182         return pd;
9183     }
9184
9185   per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile);
9186
9187   if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
9188     load_partial_comp_unit (per_cu, cu->objfile);
9189
9190   per_cu->cu->last_used = 0;
9191   pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
9192
9193   if (pd == NULL && per_cu->load_all_dies == 0)
9194     {
9195       struct cleanup *back_to;
9196       struct partial_die_info comp_unit_die;
9197       struct abbrev_info *abbrev;
9198       unsigned int bytes_read;
9199       char *info_ptr;
9200
9201       per_cu->load_all_dies = 1;
9202
9203       /* Re-read the DIEs.  */
9204       back_to = make_cleanup (null_cleanup, 0);
9205       if (per_cu->cu->dwarf2_abbrevs == NULL)
9206         {
9207           dwarf2_read_abbrevs (per_cu->cu->objfile->obfd, per_cu->cu);
9208           make_cleanup (dwarf2_free_abbrev_table, per_cu->cu);
9209         }
9210       info_ptr = (dwarf2_per_objfile->info.buffer
9211                   + per_cu->cu->header.offset
9212                   + per_cu->cu->header.first_die_offset);
9213       abbrev = peek_die_abbrev (info_ptr, &bytes_read, per_cu->cu);
9214       info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read,
9215                                    per_cu->cu->objfile->obfd,
9216                                    dwarf2_per_objfile->info.buffer, info_ptr,
9217                                    per_cu->cu);
9218       if (comp_unit_die.has_children)
9219         load_partial_dies (per_cu->cu->objfile->obfd,
9220                            dwarf2_per_objfile->info.buffer, info_ptr,
9221                            0, per_cu->cu);
9222       do_cleanups (back_to);
9223
9224       pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
9225     }
9226
9227  not_found:
9228
9229   if (pd == NULL)
9230     internal_error (__FILE__, __LINE__,
9231                     _("could not find partial DIE 0x%x "
9232                       "in cache [from module %s]\n"),
9233                     offset, bfd_get_filename (cu->objfile->obfd));
9234   return pd;
9235 }
9236
9237 /* See if we can figure out if the class lives in a namespace.  We do
9238    this by looking for a member function; its demangled name will
9239    contain namespace info, if there is any.  */
9240
9241 static void
9242 guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
9243                                   struct dwarf2_cu *cu)
9244 {
9245   /* NOTE: carlton/2003-10-07: Getting the info this way changes
9246      what template types look like, because the demangler
9247      frequently doesn't give the same name as the debug info.  We
9248      could fix this by only using the demangled name to get the
9249      prefix (but see comment in read_structure_type).  */
9250
9251   struct partial_die_info *real_pdi;
9252   struct partial_die_info *child_pdi;
9253
9254   /* If this DIE (this DIE's specification, if any) has a parent, then
9255      we should not do this.  We'll prepend the parent's fully qualified
9256      name when we create the partial symbol.  */
9257
9258   real_pdi = struct_pdi;
9259   while (real_pdi->has_specification)
9260     real_pdi = find_partial_die (real_pdi->spec_offset, cu);
9261
9262   if (real_pdi->die_parent != NULL)
9263     return;
9264
9265   for (child_pdi = struct_pdi->die_child;
9266        child_pdi != NULL;
9267        child_pdi = child_pdi->die_sibling)
9268     {
9269       if (child_pdi->tag == DW_TAG_subprogram
9270           && child_pdi->linkage_name != NULL)
9271         {
9272           char *actual_class_name
9273             = language_class_name_from_physname (cu->language_defn,
9274                                                  child_pdi->linkage_name);
9275           if (actual_class_name != NULL)
9276             {
9277               struct_pdi->name
9278                 = obsavestring (actual_class_name,
9279                                 strlen (actual_class_name),
9280                                 &cu->objfile->objfile_obstack);
9281               xfree (actual_class_name);
9282             }
9283           break;
9284         }
9285     }
9286 }
9287
9288 /* Adjust PART_DIE before generating a symbol for it.  This function
9289    may set the is_external flag or change the DIE's name.  */
9290
9291 static void
9292 fixup_partial_die (struct partial_die_info *part_die,
9293                    struct dwarf2_cu *cu)
9294 {
9295   /* Once we've fixed up a die, there's no point in doing so again.
9296      This also avoids a memory leak if we were to call
9297      guess_partial_die_structure_name multiple times.  */
9298   if (part_die->fixup_called)
9299     return;
9300
9301   /* If we found a reference attribute and the DIE has no name, try
9302      to find a name in the referred to DIE.  */
9303
9304   if (part_die->name == NULL && part_die->has_specification)
9305     {
9306       struct partial_die_info *spec_die;
9307
9308       spec_die = find_partial_die (part_die->spec_offset, cu);
9309
9310       fixup_partial_die (spec_die, cu);
9311
9312       if (spec_die->name)
9313         {
9314           part_die->name = spec_die->name;
9315
9316           /* Copy DW_AT_external attribute if it is set.  */
9317           if (spec_die->is_external)
9318             part_die->is_external = spec_die->is_external;
9319         }
9320     }
9321
9322   /* Set default names for some unnamed DIEs.  */
9323
9324   if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
9325     part_die->name = "(anonymous namespace)";
9326
9327   /* If there is no parent die to provide a namespace, and there are
9328      children, see if we can determine the namespace from their linkage
9329      name.
9330      NOTE: We need to do this even if cu->has_namespace_info != 0.
9331      gcc-4.5 -gdwarf-4 can drop the enclosing namespace.  */
9332   if (cu->language == language_cplus
9333       && dwarf2_per_objfile->types.asection != NULL
9334       && part_die->die_parent == NULL
9335       && part_die->has_children
9336       && (part_die->tag == DW_TAG_class_type
9337           || part_die->tag == DW_TAG_structure_type
9338           || part_die->tag == DW_TAG_union_type))
9339     guess_partial_die_structure_name (part_die, cu);
9340
9341   part_die->fixup_called = 1;
9342 }
9343
9344 /* Read an attribute value described by an attribute form.  */
9345
9346 static gdb_byte *
9347 read_attribute_value (struct attribute *attr, unsigned form,
9348                       bfd *abfd, gdb_byte *info_ptr,
9349                       struct dwarf2_cu *cu)
9350 {
9351   struct comp_unit_head *cu_header = &cu->header;
9352   unsigned int bytes_read;
9353   struct dwarf_block *blk;
9354
9355   attr->form = form;
9356   switch (form)
9357     {
9358     case DW_FORM_ref_addr:
9359       if (cu->header.version == 2)
9360         DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
9361       else
9362         DW_ADDR (attr) = read_offset (abfd, info_ptr,
9363                                       &cu->header, &bytes_read);
9364       info_ptr += bytes_read;
9365       break;
9366     case DW_FORM_addr:
9367       DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
9368       info_ptr += bytes_read;
9369       break;
9370     case DW_FORM_block2:
9371       blk = dwarf_alloc_block (cu);
9372       blk->size = read_2_bytes (abfd, info_ptr);
9373       info_ptr += 2;
9374       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9375       info_ptr += blk->size;
9376       DW_BLOCK (attr) = blk;
9377       break;
9378     case DW_FORM_block4:
9379       blk = dwarf_alloc_block (cu);
9380       blk->size = read_4_bytes (abfd, info_ptr);
9381       info_ptr += 4;
9382       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9383       info_ptr += blk->size;
9384       DW_BLOCK (attr) = blk;
9385       break;
9386     case DW_FORM_data2:
9387       DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
9388       info_ptr += 2;
9389       break;
9390     case DW_FORM_data4:
9391       DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
9392       info_ptr += 4;
9393       break;
9394     case DW_FORM_data8:
9395       DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
9396       info_ptr += 8;
9397       break;
9398     case DW_FORM_sec_offset:
9399       DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
9400       info_ptr += bytes_read;
9401       break;
9402     case DW_FORM_string:
9403       DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
9404       DW_STRING_IS_CANONICAL (attr) = 0;
9405       info_ptr += bytes_read;
9406       break;
9407     case DW_FORM_strp:
9408       DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
9409                                                &bytes_read);
9410       DW_STRING_IS_CANONICAL (attr) = 0;
9411       info_ptr += bytes_read;
9412       break;
9413     case DW_FORM_exprloc:
9414     case DW_FORM_block:
9415       blk = dwarf_alloc_block (cu);
9416       blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9417       info_ptr += bytes_read;
9418       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9419       info_ptr += blk->size;
9420       DW_BLOCK (attr) = blk;
9421       break;
9422     case DW_FORM_block1:
9423       blk = dwarf_alloc_block (cu);
9424       blk->size = read_1_byte (abfd, info_ptr);
9425       info_ptr += 1;
9426       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9427       info_ptr += blk->size;
9428       DW_BLOCK (attr) = blk;
9429       break;
9430     case DW_FORM_data1:
9431       DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
9432       info_ptr += 1;
9433       break;
9434     case DW_FORM_flag:
9435       DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
9436       info_ptr += 1;
9437       break;
9438     case DW_FORM_flag_present:
9439       DW_UNSND (attr) = 1;
9440       break;
9441     case DW_FORM_sdata:
9442       DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
9443       info_ptr += bytes_read;
9444       break;
9445     case DW_FORM_udata:
9446       DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9447       info_ptr += bytes_read;
9448       break;
9449     case DW_FORM_ref1:
9450       DW_ADDR (attr) = cu->header.offset + read_1_byte (abfd, info_ptr);
9451       info_ptr += 1;
9452       break;
9453     case DW_FORM_ref2:
9454       DW_ADDR (attr) = cu->header.offset + read_2_bytes (abfd, info_ptr);
9455       info_ptr += 2;
9456       break;
9457     case DW_FORM_ref4:
9458       DW_ADDR (attr) = cu->header.offset + read_4_bytes (abfd, info_ptr);
9459       info_ptr += 4;
9460       break;
9461     case DW_FORM_ref8:
9462       DW_ADDR (attr) = cu->header.offset + read_8_bytes (abfd, info_ptr);
9463       info_ptr += 8;
9464       break;
9465     case DW_FORM_sig8:
9466       /* Convert the signature to something we can record in DW_UNSND
9467          for later lookup.
9468          NOTE: This is NULL if the type wasn't found.  */
9469       DW_SIGNATURED_TYPE (attr) =
9470         lookup_signatured_type (cu->objfile, read_8_bytes (abfd, info_ptr));
9471       info_ptr += 8;
9472       break;
9473     case DW_FORM_ref_udata:
9474       DW_ADDR (attr) = (cu->header.offset
9475                         + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
9476       info_ptr += bytes_read;
9477       break;
9478     case DW_FORM_indirect:
9479       form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9480       info_ptr += bytes_read;
9481       info_ptr = read_attribute_value (attr, form, abfd, info_ptr, cu);
9482       break;
9483     default:
9484       error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
9485              dwarf_form_name (form),
9486              bfd_get_filename (abfd));
9487     }
9488
9489   /* We have seen instances where the compiler tried to emit a byte
9490      size attribute of -1 which ended up being encoded as an unsigned
9491      0xffffffff.  Although 0xffffffff is technically a valid size value,
9492      an object of this size seems pretty unlikely so we can relatively
9493      safely treat these cases as if the size attribute was invalid and
9494      treat them as zero by default.  */
9495   if (attr->name == DW_AT_byte_size
9496       && form == DW_FORM_data4
9497       && DW_UNSND (attr) >= 0xffffffff)
9498     {
9499       complaint
9500         (&symfile_complaints,
9501          _("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
9502          hex_string (DW_UNSND (attr)));
9503       DW_UNSND (attr) = 0;
9504     }
9505
9506   return info_ptr;
9507 }
9508
9509 /* Read an attribute described by an abbreviated attribute.  */
9510
9511 static gdb_byte *
9512 read_attribute (struct attribute *attr, struct attr_abbrev *abbrev,
9513                 bfd *abfd, gdb_byte *info_ptr, struct dwarf2_cu *cu)
9514 {
9515   attr->name = abbrev->name;
9516   return read_attribute_value (attr, abbrev->form, abfd, info_ptr, cu);
9517 }
9518
9519 /* Read dwarf information from a buffer.  */
9520
9521 static unsigned int
9522 read_1_byte (bfd *abfd, gdb_byte *buf)
9523 {
9524   return bfd_get_8 (abfd, buf);
9525 }
9526
9527 static int
9528 read_1_signed_byte (bfd *abfd, gdb_byte *buf)
9529 {
9530   return bfd_get_signed_8 (abfd, buf);
9531 }
9532
9533 static unsigned int
9534 read_2_bytes (bfd *abfd, gdb_byte *buf)
9535 {
9536   return bfd_get_16 (abfd, buf);
9537 }
9538
9539 static int
9540 read_2_signed_bytes (bfd *abfd, gdb_byte *buf)
9541 {
9542   return bfd_get_signed_16 (abfd, buf);
9543 }
9544
9545 static unsigned int
9546 read_4_bytes (bfd *abfd, gdb_byte *buf)
9547 {
9548   return bfd_get_32 (abfd, buf);
9549 }
9550
9551 static int
9552 read_4_signed_bytes (bfd *abfd, gdb_byte *buf)
9553 {
9554   return bfd_get_signed_32 (abfd, buf);
9555 }
9556
9557 static ULONGEST
9558 read_8_bytes (bfd *abfd, gdb_byte *buf)
9559 {
9560   return bfd_get_64 (abfd, buf);
9561 }
9562
9563 static CORE_ADDR
9564 read_address (bfd *abfd, gdb_byte *buf, struct dwarf2_cu *cu,
9565               unsigned int *bytes_read)
9566 {
9567   struct comp_unit_head *cu_header = &cu->header;
9568   CORE_ADDR retval = 0;
9569
9570   if (cu_header->signed_addr_p)
9571     {
9572       switch (cu_header->addr_size)
9573         {
9574         case 2:
9575           retval = bfd_get_signed_16 (abfd, buf);
9576           break;
9577         case 4:
9578           retval = bfd_get_signed_32 (abfd, buf);
9579           break;
9580         case 8:
9581           retval = bfd_get_signed_64 (abfd, buf);
9582           break;
9583         default:
9584           internal_error (__FILE__, __LINE__,
9585                           _("read_address: bad switch, signed [in module %s]"),
9586                           bfd_get_filename (abfd));
9587         }
9588     }
9589   else
9590     {
9591       switch (cu_header->addr_size)
9592         {
9593         case 2:
9594           retval = bfd_get_16 (abfd, buf);
9595           break;
9596         case 4:
9597           retval = bfd_get_32 (abfd, buf);
9598           break;
9599         case 8:
9600           retval = bfd_get_64 (abfd, buf);
9601           break;
9602         default:
9603           internal_error (__FILE__, __LINE__,
9604                           _("read_address: bad switch, "
9605                             "unsigned [in module %s]"),
9606                           bfd_get_filename (abfd));
9607         }
9608     }
9609
9610   *bytes_read = cu_header->addr_size;
9611   return retval;
9612 }
9613
9614 /* Read the initial length from a section.  The (draft) DWARF 3
9615    specification allows the initial length to take up either 4 bytes
9616    or 12 bytes.  If the first 4 bytes are 0xffffffff, then the next 8
9617    bytes describe the length and all offsets will be 8 bytes in length
9618    instead of 4.
9619
9620    An older, non-standard 64-bit format is also handled by this
9621    function.  The older format in question stores the initial length
9622    as an 8-byte quantity without an escape value.  Lengths greater
9623    than 2^32 aren't very common which means that the initial 4 bytes
9624    is almost always zero.  Since a length value of zero doesn't make
9625    sense for the 32-bit format, this initial zero can be considered to
9626    be an escape value which indicates the presence of the older 64-bit
9627    format.  As written, the code can't detect (old format) lengths
9628    greater than 4GB.  If it becomes necessary to handle lengths
9629    somewhat larger than 4GB, we could allow other small values (such
9630    as the non-sensical values of 1, 2, and 3) to also be used as
9631    escape values indicating the presence of the old format.
9632
9633    The value returned via bytes_read should be used to increment the
9634    relevant pointer after calling read_initial_length().
9635
9636    [ Note:  read_initial_length() and read_offset() are based on the
9637      document entitled "DWARF Debugging Information Format", revision
9638      3, draft 8, dated November 19, 2001.  This document was obtained
9639      from:
9640
9641         http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
9642
9643      This document is only a draft and is subject to change.  (So beware.)
9644
9645      Details regarding the older, non-standard 64-bit format were
9646      determined empirically by examining 64-bit ELF files produced by
9647      the SGI toolchain on an IRIX 6.5 machine.
9648
9649      - Kevin, July 16, 2002
9650    ] */
9651
9652 static LONGEST
9653 read_initial_length (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read)
9654 {
9655   LONGEST length = bfd_get_32 (abfd, buf);
9656
9657   if (length == 0xffffffff)
9658     {
9659       length = bfd_get_64 (abfd, buf + 4);
9660       *bytes_read = 12;
9661     }
9662   else if (length == 0)
9663     {
9664       /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX.  */
9665       length = bfd_get_64 (abfd, buf);
9666       *bytes_read = 8;
9667     }
9668   else
9669     {
9670       *bytes_read = 4;
9671     }
9672
9673   return length;
9674 }
9675
9676 /* Cover function for read_initial_length.
9677    Returns the length of the object at BUF, and stores the size of the
9678    initial length in *BYTES_READ and stores the size that offsets will be in
9679    *OFFSET_SIZE.
9680    If the initial length size is not equivalent to that specified in
9681    CU_HEADER then issue a complaint.
9682    This is useful when reading non-comp-unit headers.  */
9683
9684 static LONGEST
9685 read_checked_initial_length_and_offset (bfd *abfd, gdb_byte *buf,
9686                                         const struct comp_unit_head *cu_header,
9687                                         unsigned int *bytes_read,
9688                                         unsigned int *offset_size)
9689 {
9690   LONGEST length = read_initial_length (abfd, buf, bytes_read);
9691
9692   gdb_assert (cu_header->initial_length_size == 4
9693               || cu_header->initial_length_size == 8
9694               || cu_header->initial_length_size == 12);
9695
9696   if (cu_header->initial_length_size != *bytes_read)
9697     complaint (&symfile_complaints,
9698                _("intermixed 32-bit and 64-bit DWARF sections"));
9699
9700   *offset_size = (*bytes_read == 4) ? 4 : 8;
9701   return length;
9702 }
9703
9704 /* Read an offset from the data stream.  The size of the offset is
9705    given by cu_header->offset_size.  */
9706
9707 static LONGEST
9708 read_offset (bfd *abfd, gdb_byte *buf, const struct comp_unit_head *cu_header,
9709              unsigned int *bytes_read)
9710 {
9711   LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
9712
9713   *bytes_read = cu_header->offset_size;
9714   return offset;
9715 }
9716
9717 /* Read an offset from the data stream.  */
9718
9719 static LONGEST
9720 read_offset_1 (bfd *abfd, gdb_byte *buf, unsigned int offset_size)
9721 {
9722   LONGEST retval = 0;
9723
9724   switch (offset_size)
9725     {
9726     case 4:
9727       retval = bfd_get_32 (abfd, buf);
9728       break;
9729     case 8:
9730       retval = bfd_get_64 (abfd, buf);
9731       break;
9732     default:
9733       internal_error (__FILE__, __LINE__,
9734                       _("read_offset_1: bad switch [in module %s]"),
9735                       bfd_get_filename (abfd));
9736     }
9737
9738   return retval;
9739 }
9740
9741 static gdb_byte *
9742 read_n_bytes (bfd *abfd, gdb_byte *buf, unsigned int size)
9743 {
9744   /* If the size of a host char is 8 bits, we can return a pointer
9745      to the buffer, otherwise we have to copy the data to a buffer
9746      allocated on the temporary obstack.  */
9747   gdb_assert (HOST_CHAR_BIT == 8);
9748   return buf;
9749 }
9750
9751 static char *
9752 read_direct_string (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
9753 {
9754   /* If the size of a host char is 8 bits, we can return a pointer
9755      to the string, otherwise we have to copy the string to a buffer
9756      allocated on the temporary obstack.  */
9757   gdb_assert (HOST_CHAR_BIT == 8);
9758   if (*buf == '\0')
9759     {
9760       *bytes_read_ptr = 1;
9761       return NULL;
9762     }
9763   *bytes_read_ptr = strlen ((char *) buf) + 1;
9764   return (char *) buf;
9765 }
9766
9767 static char *
9768 read_indirect_string (bfd *abfd, gdb_byte *buf,
9769                       const struct comp_unit_head *cu_header,
9770                       unsigned int *bytes_read_ptr)
9771 {
9772   LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
9773
9774   dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->str);
9775   if (dwarf2_per_objfile->str.buffer == NULL)
9776     {
9777       error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
9778                       bfd_get_filename (abfd));
9779       return NULL;
9780     }
9781   if (str_offset >= dwarf2_per_objfile->str.size)
9782     {
9783       error (_("DW_FORM_strp pointing outside of "
9784                ".debug_str section [in module %s]"),
9785              bfd_get_filename (abfd));
9786       return NULL;
9787     }
9788   gdb_assert (HOST_CHAR_BIT == 8);
9789   if (dwarf2_per_objfile->str.buffer[str_offset] == '\0')
9790     return NULL;
9791   return (char *) (dwarf2_per_objfile->str.buffer + str_offset);
9792 }
9793
9794 static unsigned long
9795 read_unsigned_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
9796 {
9797   unsigned long result;
9798   unsigned int num_read;
9799   int i, shift;
9800   unsigned char byte;
9801
9802   result = 0;
9803   shift = 0;
9804   num_read = 0;
9805   i = 0;
9806   while (1)
9807     {
9808       byte = bfd_get_8 (abfd, buf);
9809       buf++;
9810       num_read++;
9811       result |= ((unsigned long)(byte & 127) << shift);
9812       if ((byte & 128) == 0)
9813         {
9814           break;
9815         }
9816       shift += 7;
9817     }
9818   *bytes_read_ptr = num_read;
9819   return result;
9820 }
9821
9822 static long
9823 read_signed_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
9824 {
9825   long result;
9826   int i, shift, num_read;
9827   unsigned char byte;
9828
9829   result = 0;
9830   shift = 0;
9831   num_read = 0;
9832   i = 0;
9833   while (1)
9834     {
9835       byte = bfd_get_8 (abfd, buf);
9836       buf++;
9837       num_read++;
9838       result |= ((long)(byte & 127) << shift);
9839       shift += 7;
9840       if ((byte & 128) == 0)
9841         {
9842           break;
9843         }
9844     }
9845   if ((shift < 8 * sizeof (result)) && (byte & 0x40))
9846     result |= -(((long)1) << shift);
9847   *bytes_read_ptr = num_read;
9848   return result;
9849 }
9850
9851 /* Return a pointer to just past the end of an LEB128 number in BUF.  */
9852
9853 static gdb_byte *
9854 skip_leb128 (bfd *abfd, gdb_byte *buf)
9855 {
9856   int byte;
9857
9858   while (1)
9859     {
9860       byte = bfd_get_8 (abfd, buf);
9861       buf++;
9862       if ((byte & 128) == 0)
9863         return buf;
9864     }
9865 }
9866
9867 static void
9868 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
9869 {
9870   switch (lang)
9871     {
9872     case DW_LANG_C89:
9873     case DW_LANG_C99:
9874     case DW_LANG_C:
9875       cu->language = language_c;
9876       break;
9877     case DW_LANG_C_plus_plus:
9878       cu->language = language_cplus;
9879       break;
9880     case DW_LANG_D:
9881       cu->language = language_d;
9882       break;
9883     case DW_LANG_Fortran77:
9884     case DW_LANG_Fortran90:
9885     case DW_LANG_Fortran95:
9886       cu->language = language_fortran;
9887       break;
9888     case DW_LANG_Mips_Assembler:
9889       cu->language = language_asm;
9890       break;
9891     case DW_LANG_Java:
9892       cu->language = language_java;
9893       break;
9894     case DW_LANG_Ada83:
9895     case DW_LANG_Ada95:
9896       cu->language = language_ada;
9897       break;
9898     case DW_LANG_Modula2:
9899       cu->language = language_m2;
9900       break;
9901     case DW_LANG_Pascal83:
9902       cu->language = language_pascal;
9903       break;
9904     case DW_LANG_ObjC:
9905       cu->language = language_objc;
9906       break;
9907     case DW_LANG_Cobol74:
9908     case DW_LANG_Cobol85:
9909     default:
9910       cu->language = language_minimal;
9911       break;
9912     }
9913   cu->language_defn = language_def (cu->language);
9914 }
9915
9916 /* Return the named attribute or NULL if not there.  */
9917
9918 static struct attribute *
9919 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
9920 {
9921   unsigned int i;
9922   struct attribute *spec = NULL;
9923
9924   for (i = 0; i < die->num_attrs; ++i)
9925     {
9926       if (die->attrs[i].name == name)
9927         return &die->attrs[i];
9928       if (die->attrs[i].name == DW_AT_specification
9929           || die->attrs[i].name == DW_AT_abstract_origin)
9930         spec = &die->attrs[i];
9931     }
9932
9933   if (spec)
9934     {
9935       die = follow_die_ref (die, spec, &cu);
9936       return dwarf2_attr (die, name, cu);
9937     }
9938
9939   return NULL;
9940 }
9941
9942 /* Return the named attribute or NULL if not there,
9943    but do not follow DW_AT_specification, etc.
9944    This is for use in contexts where we're reading .debug_types dies.
9945    Following DW_AT_specification, DW_AT_abstract_origin will take us
9946    back up the chain, and we want to go down.  */
9947
9948 static struct attribute *
9949 dwarf2_attr_no_follow (struct die_info *die, unsigned int name,
9950                        struct dwarf2_cu *cu)
9951 {
9952   unsigned int i;
9953
9954   for (i = 0; i < die->num_attrs; ++i)
9955     if (die->attrs[i].name == name)
9956       return &die->attrs[i];
9957
9958   return NULL;
9959 }
9960
9961 /* Return non-zero iff the attribute NAME is defined for the given DIE,
9962    and holds a non-zero value.  This function should only be used for
9963    DW_FORM_flag or DW_FORM_flag_present attributes.  */
9964
9965 static int
9966 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
9967 {
9968   struct attribute *attr = dwarf2_attr (die, name, cu);
9969
9970   return (attr && DW_UNSND (attr));
9971 }
9972
9973 static int
9974 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
9975 {
9976   /* A DIE is a declaration if it has a DW_AT_declaration attribute
9977      which value is non-zero.  However, we have to be careful with
9978      DIEs having a DW_AT_specification attribute, because dwarf2_attr()
9979      (via dwarf2_flag_true_p) follows this attribute.  So we may
9980      end up accidently finding a declaration attribute that belongs
9981      to a different DIE referenced by the specification attribute,
9982      even though the given DIE does not have a declaration attribute.  */
9983   return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
9984           && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
9985 }
9986
9987 /* Return the die giving the specification for DIE, if there is
9988    one.  *SPEC_CU is the CU containing DIE on input, and the CU
9989    containing the return value on output.  If there is no
9990    specification, but there is an abstract origin, that is
9991    returned.  */
9992
9993 static struct die_info *
9994 die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
9995 {
9996   struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
9997                                              *spec_cu);
9998
9999   if (spec_attr == NULL)
10000     spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
10001
10002   if (spec_attr == NULL)
10003     return NULL;
10004   else
10005     return follow_die_ref (die, spec_attr, spec_cu);
10006 }
10007
10008 /* Free the line_header structure *LH, and any arrays and strings it
10009    refers to.
10010    NOTE: This is also used as a "cleanup" function.  */
10011
10012 static void
10013 free_line_header (struct line_header *lh)
10014 {
10015   if (lh->standard_opcode_lengths)
10016     xfree (lh->standard_opcode_lengths);
10017
10018   /* Remember that all the lh->file_names[i].name pointers are
10019      pointers into debug_line_buffer, and don't need to be freed.  */
10020   if (lh->file_names)
10021     xfree (lh->file_names);
10022
10023   /* Similarly for the include directory names.  */
10024   if (lh->include_dirs)
10025     xfree (lh->include_dirs);
10026
10027   xfree (lh);
10028 }
10029
10030 /* Add an entry to LH's include directory table.  */
10031
10032 static void
10033 add_include_dir (struct line_header *lh, char *include_dir)
10034 {
10035   /* Grow the array if necessary.  */
10036   if (lh->include_dirs_size == 0)
10037     {
10038       lh->include_dirs_size = 1; /* for testing */
10039       lh->include_dirs = xmalloc (lh->include_dirs_size
10040                                   * sizeof (*lh->include_dirs));
10041     }
10042   else if (lh->num_include_dirs >= lh->include_dirs_size)
10043     {
10044       lh->include_dirs_size *= 2;
10045       lh->include_dirs = xrealloc (lh->include_dirs,
10046                                    (lh->include_dirs_size
10047                                     * sizeof (*lh->include_dirs)));
10048     }
10049
10050   lh->include_dirs[lh->num_include_dirs++] = include_dir;
10051 }
10052
10053 /* Add an entry to LH's file name table.  */
10054
10055 static void
10056 add_file_name (struct line_header *lh,
10057                char *name,
10058                unsigned int dir_index,
10059                unsigned int mod_time,
10060                unsigned int length)
10061 {
10062   struct file_entry *fe;
10063
10064   /* Grow the array if necessary.  */
10065   if (lh->file_names_size == 0)
10066     {
10067       lh->file_names_size = 1; /* for testing */
10068       lh->file_names = xmalloc (lh->file_names_size
10069                                 * sizeof (*lh->file_names));
10070     }
10071   else if (lh->num_file_names >= lh->file_names_size)
10072     {
10073       lh->file_names_size *= 2;
10074       lh->file_names = xrealloc (lh->file_names,
10075                                  (lh->file_names_size
10076                                   * sizeof (*lh->file_names)));
10077     }
10078
10079   fe = &lh->file_names[lh->num_file_names++];
10080   fe->name = name;
10081   fe->dir_index = dir_index;
10082   fe->mod_time = mod_time;
10083   fe->length = length;
10084   fe->included_p = 0;
10085   fe->symtab = NULL;
10086 }
10087
10088 /* Read the statement program header starting at OFFSET in
10089    .debug_line, according to the endianness of ABFD.  Return a pointer
10090    to a struct line_header, allocated using xmalloc.
10091
10092    NOTE: the strings in the include directory and file name tables of
10093    the returned object point into debug_line_buffer, and must not be
10094    freed.  */
10095
10096 static struct line_header *
10097 dwarf_decode_line_header (unsigned int offset, bfd *abfd,
10098                           struct dwarf2_cu *cu)
10099 {
10100   struct cleanup *back_to;
10101   struct line_header *lh;
10102   gdb_byte *line_ptr;
10103   unsigned int bytes_read, offset_size;
10104   int i;
10105   char *cur_dir, *cur_file;
10106
10107   dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->line);
10108   if (dwarf2_per_objfile->line.buffer == NULL)
10109     {
10110       complaint (&symfile_complaints, _("missing .debug_line section"));
10111       return 0;
10112     }
10113
10114   /* Make sure that at least there's room for the total_length field.
10115      That could be 12 bytes long, but we're just going to fudge that.  */
10116   if (offset + 4 >= dwarf2_per_objfile->line.size)
10117     {
10118       dwarf2_statement_list_fits_in_line_number_section_complaint ();
10119       return 0;
10120     }
10121
10122   lh = xmalloc (sizeof (*lh));
10123   memset (lh, 0, sizeof (*lh));
10124   back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
10125                           (void *) lh);
10126
10127   line_ptr = dwarf2_per_objfile->line.buffer + offset;
10128
10129   /* Read in the header.  */
10130   lh->total_length =
10131     read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
10132                                             &bytes_read, &offset_size);
10133   line_ptr += bytes_read;
10134   if (line_ptr + lh->total_length > (dwarf2_per_objfile->line.buffer
10135                                      + dwarf2_per_objfile->line.size))
10136     {
10137       dwarf2_statement_list_fits_in_line_number_section_complaint ();
10138       return 0;
10139     }
10140   lh->statement_program_end = line_ptr + lh->total_length;
10141   lh->version = read_2_bytes (abfd, line_ptr);
10142   line_ptr += 2;
10143   lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
10144   line_ptr += offset_size;
10145   lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
10146   line_ptr += 1;
10147   if (lh->version >= 4)
10148     {
10149       lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
10150       line_ptr += 1;
10151     }
10152   else
10153     lh->maximum_ops_per_instruction = 1;
10154
10155   if (lh->maximum_ops_per_instruction == 0)
10156     {
10157       lh->maximum_ops_per_instruction = 1;
10158       complaint (&symfile_complaints,
10159                  _("invalid maximum_ops_per_instruction "
10160                    "in `.debug_line' section"));
10161     }
10162
10163   lh->default_is_stmt = read_1_byte (abfd, line_ptr);
10164   line_ptr += 1;
10165   lh->line_base = read_1_signed_byte (abfd, line_ptr);
10166   line_ptr += 1;
10167   lh->line_range = read_1_byte (abfd, line_ptr);
10168   line_ptr += 1;
10169   lh->opcode_base = read_1_byte (abfd, line_ptr);
10170   line_ptr += 1;
10171   lh->standard_opcode_lengths
10172     = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
10173
10174   lh->standard_opcode_lengths[0] = 1;  /* This should never be used anyway.  */
10175   for (i = 1; i < lh->opcode_base; ++i)
10176     {
10177       lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
10178       line_ptr += 1;
10179     }
10180
10181   /* Read directory table.  */
10182   while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
10183     {
10184       line_ptr += bytes_read;
10185       add_include_dir (lh, cur_dir);
10186     }
10187   line_ptr += bytes_read;
10188
10189   /* Read file name table.  */
10190   while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
10191     {
10192       unsigned int dir_index, mod_time, length;
10193
10194       line_ptr += bytes_read;
10195       dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10196       line_ptr += bytes_read;
10197       mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10198       line_ptr += bytes_read;
10199       length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10200       line_ptr += bytes_read;
10201
10202       add_file_name (lh, cur_file, dir_index, mod_time, length);
10203     }
10204   line_ptr += bytes_read;
10205   lh->statement_program_start = line_ptr;
10206
10207   if (line_ptr > (dwarf2_per_objfile->line.buffer
10208                   + dwarf2_per_objfile->line.size))
10209     complaint (&symfile_complaints,
10210                _("line number info header doesn't "
10211                  "fit in `.debug_line' section"));
10212
10213   discard_cleanups (back_to);
10214   return lh;
10215 }
10216
10217 /* This function exists to work around a bug in certain compilers
10218    (particularly GCC 2.95), in which the first line number marker of a
10219    function does not show up until after the prologue, right before
10220    the second line number marker.  This function shifts ADDRESS down
10221    to the beginning of the function if necessary, and is called on
10222    addresses passed to record_line.  */
10223
10224 static CORE_ADDR
10225 check_cu_functions (CORE_ADDR address, struct dwarf2_cu *cu)
10226 {
10227   struct function_range *fn;
10228
10229   /* Find the function_range containing address.  */
10230   if (!cu->first_fn)
10231     return address;
10232
10233   if (!cu->cached_fn)
10234     cu->cached_fn = cu->first_fn;
10235
10236   fn = cu->cached_fn;
10237   while (fn)
10238     if (fn->lowpc <= address && fn->highpc > address)
10239       goto found;
10240     else
10241       fn = fn->next;
10242
10243   fn = cu->first_fn;
10244   while (fn && fn != cu->cached_fn)
10245     if (fn->lowpc <= address && fn->highpc > address)
10246       goto found;
10247     else
10248       fn = fn->next;
10249
10250   return address;
10251
10252  found:
10253   if (fn->seen_line)
10254     return address;
10255   if (address != fn->lowpc)
10256     complaint (&symfile_complaints,
10257                _("misplaced first line number at 0x%lx for '%s'"),
10258                (unsigned long) address, fn->name);
10259   fn->seen_line = 1;
10260   return fn->lowpc;
10261 }
10262
10263 /* Subroutine of dwarf_decode_lines to simplify it.
10264    Return the file name of the psymtab for included file FILE_INDEX
10265    in line header LH of PST.
10266    COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
10267    If space for the result is malloc'd, it will be freed by a cleanup.
10268    Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename.  */
10269
10270 static char *
10271 psymtab_include_file_name (const struct line_header *lh, int file_index,
10272                            const struct partial_symtab *pst,
10273                            const char *comp_dir)
10274 {
10275   const struct file_entry fe = lh->file_names [file_index];
10276   char *include_name = fe.name;
10277   char *include_name_to_compare = include_name;
10278   char *dir_name = NULL;
10279   const char *pst_filename;
10280   char *copied_name = NULL;
10281   int file_is_pst;
10282
10283   if (fe.dir_index)
10284     dir_name = lh->include_dirs[fe.dir_index - 1];
10285
10286   if (!IS_ABSOLUTE_PATH (include_name)
10287       && (dir_name != NULL || comp_dir != NULL))
10288     {
10289       /* Avoid creating a duplicate psymtab for PST.
10290          We do this by comparing INCLUDE_NAME and PST_FILENAME.
10291          Before we do the comparison, however, we need to account
10292          for DIR_NAME and COMP_DIR.
10293          First prepend dir_name (if non-NULL).  If we still don't
10294          have an absolute path prepend comp_dir (if non-NULL).
10295          However, the directory we record in the include-file's
10296          psymtab does not contain COMP_DIR (to match the
10297          corresponding symtab(s)).
10298
10299          Example:
10300
10301          bash$ cd /tmp
10302          bash$ gcc -g ./hello.c
10303          include_name = "hello.c"
10304          dir_name = "."
10305          DW_AT_comp_dir = comp_dir = "/tmp"
10306          DW_AT_name = "./hello.c"  */
10307
10308       if (dir_name != NULL)
10309         {
10310           include_name = concat (dir_name, SLASH_STRING,
10311                                  include_name, (char *)NULL);
10312           include_name_to_compare = include_name;
10313           make_cleanup (xfree, include_name);
10314         }
10315       if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
10316         {
10317           include_name_to_compare = concat (comp_dir, SLASH_STRING,
10318                                             include_name, (char *)NULL);
10319         }
10320     }
10321
10322   pst_filename = pst->filename;
10323   if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
10324     {
10325       copied_name = concat (pst->dirname, SLASH_STRING,
10326                             pst_filename, (char *)NULL);
10327       pst_filename = copied_name;
10328     }
10329
10330   file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
10331
10332   if (include_name_to_compare != include_name)
10333     xfree (include_name_to_compare);
10334   if (copied_name != NULL)
10335     xfree (copied_name);
10336
10337   if (file_is_pst)
10338     return NULL;
10339   return include_name;
10340 }
10341
10342 /* Decode the Line Number Program (LNP) for the given line_header
10343    structure and CU.  The actual information extracted and the type
10344    of structures created from the LNP depends on the value of PST.
10345
10346    1. If PST is NULL, then this procedure uses the data from the program
10347       to create all necessary symbol tables, and their linetables.
10348
10349    2. If PST is not NULL, this procedure reads the program to determine
10350       the list of files included by the unit represented by PST, and
10351       builds all the associated partial symbol tables.
10352
10353    COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
10354    It is used for relative paths in the line table.
10355    NOTE: When processing partial symtabs (pst != NULL),
10356    comp_dir == pst->dirname.
10357
10358    NOTE: It is important that psymtabs have the same file name (via strcmp)
10359    as the corresponding symtab.  Since COMP_DIR is not used in the name of the
10360    symtab we don't use it in the name of the psymtabs we create.
10361    E.g. expand_line_sal requires this when finding psymtabs to expand.
10362    A good testcase for this is mb-inline.exp.  */
10363
10364 static void
10365 dwarf_decode_lines (struct line_header *lh, const char *comp_dir, bfd *abfd,
10366                     struct dwarf2_cu *cu, struct partial_symtab *pst)
10367 {
10368   gdb_byte *line_ptr, *extended_end;
10369   gdb_byte *line_end;
10370   unsigned int bytes_read, extended_len;
10371   unsigned char op_code, extended_op, adj_opcode;
10372   CORE_ADDR baseaddr;
10373   struct objfile *objfile = cu->objfile;
10374   struct gdbarch *gdbarch = get_objfile_arch (objfile);
10375   const int decode_for_pst_p = (pst != NULL);
10376   struct subfile *last_subfile = NULL, *first_subfile = current_subfile;
10377
10378   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
10379
10380   line_ptr = lh->statement_program_start;
10381   line_end = lh->statement_program_end;
10382
10383   /* Read the statement sequences until there's nothing left.  */
10384   while (line_ptr < line_end)
10385     {
10386       /* state machine registers  */
10387       CORE_ADDR address = 0;
10388       unsigned int file = 1;
10389       unsigned int line = 1;
10390       unsigned int column = 0;
10391       int is_stmt = lh->default_is_stmt;
10392       int basic_block = 0;
10393       int end_sequence = 0;
10394       CORE_ADDR addr;
10395       unsigned char op_index = 0;
10396
10397       if (!decode_for_pst_p && lh->num_file_names >= file)
10398         {
10399           /* Start a subfile for the current file of the state machine.  */
10400           /* lh->include_dirs and lh->file_names are 0-based, but the
10401              directory and file name numbers in the statement program
10402              are 1-based.  */
10403           struct file_entry *fe = &lh->file_names[file - 1];
10404           char *dir = NULL;
10405
10406           if (fe->dir_index)
10407             dir = lh->include_dirs[fe->dir_index - 1];
10408
10409           dwarf2_start_subfile (fe->name, dir, comp_dir);
10410         }
10411
10412       /* Decode the table.  */
10413       while (!end_sequence)
10414         {
10415           op_code = read_1_byte (abfd, line_ptr);
10416           line_ptr += 1;
10417           if (line_ptr > line_end)
10418             {
10419               dwarf2_debug_line_missing_end_sequence_complaint ();
10420               break;
10421             }
10422
10423           if (op_code >= lh->opcode_base)
10424             {
10425               /* Special operand.  */
10426               adj_opcode = op_code - lh->opcode_base;
10427               address += (((op_index + (adj_opcode / lh->line_range))
10428                            / lh->maximum_ops_per_instruction)
10429                           * lh->minimum_instruction_length);
10430               op_index = ((op_index + (adj_opcode / lh->line_range))
10431                           % lh->maximum_ops_per_instruction);
10432               line += lh->line_base + (adj_opcode % lh->line_range);
10433               if (lh->num_file_names < file || file == 0)
10434                 dwarf2_debug_line_missing_file_complaint ();
10435               /* For now we ignore lines not starting on an
10436                  instruction boundary.  */
10437               else if (op_index == 0)
10438                 {
10439                   lh->file_names[file - 1].included_p = 1;
10440                   if (!decode_for_pst_p && is_stmt)
10441                     {
10442                       if (last_subfile != current_subfile)
10443                         {
10444                           addr = gdbarch_addr_bits_remove (gdbarch, address);
10445                           if (last_subfile)
10446                             record_line (last_subfile, 0, addr);
10447                           last_subfile = current_subfile;
10448                         }
10449                       /* Append row to matrix using current values.  */
10450                       addr = check_cu_functions (address, cu);
10451                       addr = gdbarch_addr_bits_remove (gdbarch, addr);
10452                       record_line (current_subfile, line, addr);
10453                     }
10454                 }
10455               basic_block = 0;
10456             }
10457           else switch (op_code)
10458             {
10459             case DW_LNS_extended_op:
10460               extended_len = read_unsigned_leb128 (abfd, line_ptr,
10461                                                    &bytes_read);
10462               line_ptr += bytes_read;
10463               extended_end = line_ptr + extended_len;
10464               extended_op = read_1_byte (abfd, line_ptr);
10465               line_ptr += 1;
10466               switch (extended_op)
10467                 {
10468                 case DW_LNE_end_sequence:
10469                   end_sequence = 1;
10470                   break;
10471                 case DW_LNE_set_address:
10472                   address = read_address (abfd, line_ptr, cu, &bytes_read);
10473                   op_index = 0;
10474                   line_ptr += bytes_read;
10475                   address += baseaddr;
10476                   break;
10477                 case DW_LNE_define_file:
10478                   {
10479                     char *cur_file;
10480                     unsigned int dir_index, mod_time, length;
10481
10482                     cur_file = read_direct_string (abfd, line_ptr,
10483                                                    &bytes_read);
10484                     line_ptr += bytes_read;
10485                     dir_index =
10486                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10487                     line_ptr += bytes_read;
10488                     mod_time =
10489                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10490                     line_ptr += bytes_read;
10491                     length =
10492                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10493                     line_ptr += bytes_read;
10494                     add_file_name (lh, cur_file, dir_index, mod_time, length);
10495                   }
10496                   break;
10497                 case DW_LNE_set_discriminator:
10498                   /* The discriminator is not interesting to the debugger;
10499                      just ignore it.  */
10500                   line_ptr = extended_end;
10501                   break;
10502                 default:
10503                   complaint (&symfile_complaints,
10504                              _("mangled .debug_line section"));
10505                   return;
10506                 }
10507               /* Make sure that we parsed the extended op correctly.  If e.g.
10508                  we expected a different address size than the producer used,
10509                  we may have read the wrong number of bytes.  */
10510               if (line_ptr != extended_end)
10511                 {
10512                   complaint (&symfile_complaints,
10513                              _("mangled .debug_line section"));
10514                   return;
10515                 }
10516               break;
10517             case DW_LNS_copy:
10518               if (lh->num_file_names < file || file == 0)
10519                 dwarf2_debug_line_missing_file_complaint ();
10520               else
10521                 {
10522                   lh->file_names[file - 1].included_p = 1;
10523                   if (!decode_for_pst_p && is_stmt)
10524                     {
10525                       if (last_subfile != current_subfile)
10526                         {
10527                           addr = gdbarch_addr_bits_remove (gdbarch, address);
10528                           if (last_subfile)
10529                             record_line (last_subfile, 0, addr);
10530                           last_subfile = current_subfile;
10531                         }
10532                       addr = check_cu_functions (address, cu);
10533                       addr = gdbarch_addr_bits_remove (gdbarch, addr);
10534                       record_line (current_subfile, line, addr);
10535                     }
10536                 }
10537               basic_block = 0;
10538               break;
10539             case DW_LNS_advance_pc:
10540               {
10541                 CORE_ADDR adjust
10542                   = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10543
10544                 address += (((op_index + adjust)
10545                              / lh->maximum_ops_per_instruction)
10546                             * lh->minimum_instruction_length);
10547                 op_index = ((op_index + adjust)
10548                             % lh->maximum_ops_per_instruction);
10549                 line_ptr += bytes_read;
10550               }
10551               break;
10552             case DW_LNS_advance_line:
10553               line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
10554               line_ptr += bytes_read;
10555               break;
10556             case DW_LNS_set_file:
10557               {
10558                 /* The arrays lh->include_dirs and lh->file_names are
10559                    0-based, but the directory and file name numbers in
10560                    the statement program are 1-based.  */
10561                 struct file_entry *fe;
10562                 char *dir = NULL;
10563
10564                 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10565                 line_ptr += bytes_read;
10566                 if (lh->num_file_names < file || file == 0)
10567                   dwarf2_debug_line_missing_file_complaint ();
10568                 else
10569                   {
10570                     fe = &lh->file_names[file - 1];
10571                     if (fe->dir_index)
10572                       dir = lh->include_dirs[fe->dir_index - 1];
10573                     if (!decode_for_pst_p)
10574                       {
10575                         last_subfile = current_subfile;
10576                         dwarf2_start_subfile (fe->name, dir, comp_dir);
10577                       }
10578                   }
10579               }
10580               break;
10581             case DW_LNS_set_column:
10582               column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10583               line_ptr += bytes_read;
10584               break;
10585             case DW_LNS_negate_stmt:
10586               is_stmt = (!is_stmt);
10587               break;
10588             case DW_LNS_set_basic_block:
10589               basic_block = 1;
10590               break;
10591             /* Add to the address register of the state machine the
10592                address increment value corresponding to special opcode
10593                255.  I.e., this value is scaled by the minimum
10594                instruction length since special opcode 255 would have
10595                scaled the increment.  */
10596             case DW_LNS_const_add_pc:
10597               {
10598                 CORE_ADDR adjust = (255 - lh->opcode_base) / lh->line_range;
10599
10600                 address += (((op_index + adjust)
10601                              / lh->maximum_ops_per_instruction)
10602                             * lh->minimum_instruction_length);
10603                 op_index = ((op_index + adjust)
10604                             % lh->maximum_ops_per_instruction);
10605               }
10606               break;
10607             case DW_LNS_fixed_advance_pc:
10608               address += read_2_bytes (abfd, line_ptr);
10609               op_index = 0;
10610               line_ptr += 2;
10611               break;
10612             default:
10613               {
10614                 /* Unknown standard opcode, ignore it.  */
10615                 int i;
10616
10617                 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
10618                   {
10619                     (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10620                     line_ptr += bytes_read;
10621                   }
10622               }
10623             }
10624         }
10625       if (lh->num_file_names < file || file == 0)
10626         dwarf2_debug_line_missing_file_complaint ();
10627       else
10628         {
10629           lh->file_names[file - 1].included_p = 1;
10630           if (!decode_for_pst_p)
10631             {
10632               addr = gdbarch_addr_bits_remove (gdbarch, address);
10633               record_line (current_subfile, 0, addr);
10634             }
10635         }
10636     }
10637
10638   if (decode_for_pst_p)
10639     {
10640       int file_index;
10641
10642       /* Now that we're done scanning the Line Header Program, we can
10643          create the psymtab of each included file.  */
10644       for (file_index = 0; file_index < lh->num_file_names; file_index++)
10645         if (lh->file_names[file_index].included_p == 1)
10646           {
10647             char *include_name =
10648               psymtab_include_file_name (lh, file_index, pst, comp_dir);
10649             if (include_name != NULL)
10650               dwarf2_create_include_psymtab (include_name, pst, objfile);
10651           }
10652     }
10653   else
10654     {
10655       /* Make sure a symtab is created for every file, even files
10656          which contain only variables (i.e. no code with associated
10657          line numbers).  */
10658
10659       int i;
10660       struct file_entry *fe;
10661
10662       for (i = 0; i < lh->num_file_names; i++)
10663         {
10664           char *dir = NULL;
10665
10666           fe = &lh->file_names[i];
10667           if (fe->dir_index)
10668             dir = lh->include_dirs[fe->dir_index - 1];
10669           dwarf2_start_subfile (fe->name, dir, comp_dir);
10670
10671           /* Skip the main file; we don't need it, and it must be
10672              allocated last, so that it will show up before the
10673              non-primary symtabs in the objfile's symtab list.  */
10674           if (current_subfile == first_subfile)
10675             continue;
10676
10677           if (current_subfile->symtab == NULL)
10678             current_subfile->symtab = allocate_symtab (current_subfile->name,
10679                                                        cu->objfile);
10680           fe->symtab = current_subfile->symtab;
10681         }
10682     }
10683 }
10684
10685 /* Start a subfile for DWARF.  FILENAME is the name of the file and
10686    DIRNAME the name of the source directory which contains FILENAME
10687    or NULL if not known.  COMP_DIR is the compilation directory for the
10688    linetable's compilation unit or NULL if not known.
10689    This routine tries to keep line numbers from identical absolute and
10690    relative file names in a common subfile.
10691
10692    Using the `list' example from the GDB testsuite, which resides in
10693    /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
10694    of /srcdir/list0.c yields the following debugging information for list0.c:
10695
10696    DW_AT_name:          /srcdir/list0.c
10697    DW_AT_comp_dir:              /compdir
10698    files.files[0].name: list0.h
10699    files.files[0].dir:  /srcdir
10700    files.files[1].name: list0.c
10701    files.files[1].dir:  /srcdir
10702
10703    The line number information for list0.c has to end up in a single
10704    subfile, so that `break /srcdir/list0.c:1' works as expected.
10705    start_subfile will ensure that this happens provided that we pass the
10706    concatenation of files.files[1].dir and files.files[1].name as the
10707    subfile's name.  */
10708
10709 static void
10710 dwarf2_start_subfile (char *filename, const char *dirname,
10711                       const char *comp_dir)
10712 {
10713   char *fullname;
10714
10715   /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
10716      `start_symtab' will always pass the contents of DW_AT_comp_dir as
10717      second argument to start_subfile.  To be consistent, we do the
10718      same here.  In order not to lose the line information directory,
10719      we concatenate it to the filename when it makes sense.
10720      Note that the Dwarf3 standard says (speaking of filenames in line
10721      information): ``The directory index is ignored for file names
10722      that represent full path names''.  Thus ignoring dirname in the
10723      `else' branch below isn't an issue.  */
10724
10725   if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
10726     fullname = concat (dirname, SLASH_STRING, filename, (char *)NULL);
10727   else
10728     fullname = filename;
10729
10730   start_subfile (fullname, comp_dir);
10731
10732   if (fullname != filename)
10733     xfree (fullname);
10734 }
10735
10736 static void
10737 var_decode_location (struct attribute *attr, struct symbol *sym,
10738                      struct dwarf2_cu *cu)
10739 {
10740   struct objfile *objfile = cu->objfile;
10741   struct comp_unit_head *cu_header = &cu->header;
10742
10743   /* NOTE drow/2003-01-30: There used to be a comment and some special
10744      code here to turn a symbol with DW_AT_external and a
10745      SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol.  This was
10746      necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
10747      with some versions of binutils) where shared libraries could have
10748      relocations against symbols in their debug information - the
10749      minimal symbol would have the right address, but the debug info
10750      would not.  It's no longer necessary, because we will explicitly
10751      apply relocations when we read in the debug information now.  */
10752
10753   /* A DW_AT_location attribute with no contents indicates that a
10754      variable has been optimized away.  */
10755   if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
10756     {
10757       SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
10758       return;
10759     }
10760
10761   /* Handle one degenerate form of location expression specially, to
10762      preserve GDB's previous behavior when section offsets are
10763      specified.  If this is just a DW_OP_addr then mark this symbol
10764      as LOC_STATIC.  */
10765
10766   if (attr_form_is_block (attr)
10767       && DW_BLOCK (attr)->size == 1 + cu_header->addr_size
10768       && DW_BLOCK (attr)->data[0] == DW_OP_addr)
10769     {
10770       unsigned int dummy;
10771
10772       SYMBOL_VALUE_ADDRESS (sym) =
10773         read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
10774       SYMBOL_CLASS (sym) = LOC_STATIC;
10775       fixup_symbol_section (sym, objfile);
10776       SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
10777                                               SYMBOL_SECTION (sym));
10778       return;
10779     }
10780
10781   /* NOTE drow/2002-01-30: It might be worthwhile to have a static
10782      expression evaluator, and use LOC_COMPUTED only when necessary
10783      (i.e. when the value of a register or memory location is
10784      referenced, or a thread-local block, etc.).  Then again, it might
10785      not be worthwhile.  I'm assuming that it isn't unless performance
10786      or memory numbers show me otherwise.  */
10787
10788   dwarf2_symbol_mark_computed (attr, sym, cu);
10789   SYMBOL_CLASS (sym) = LOC_COMPUTED;
10790 }
10791
10792 /* Given a pointer to a DWARF information entry, figure out if we need
10793    to make a symbol table entry for it, and if so, create a new entry
10794    and return a pointer to it.
10795    If TYPE is NULL, determine symbol type from the die, otherwise
10796    used the passed type.
10797    If SPACE is not NULL, use it to hold the new symbol.  If it is
10798    NULL, allocate a new symbol on the objfile's obstack.  */
10799
10800 static struct symbol *
10801 new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
10802                  struct symbol *space)
10803 {
10804   struct objfile *objfile = cu->objfile;
10805   struct symbol *sym = NULL;
10806   char *name;
10807   struct attribute *attr = NULL;
10808   struct attribute *attr2 = NULL;
10809   CORE_ADDR baseaddr;
10810   struct pending **list_to_add = NULL;
10811
10812   int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
10813
10814   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
10815
10816   name = dwarf2_name (die, cu);
10817   if (name)
10818     {
10819       const char *linkagename;
10820       int suppress_add = 0;
10821
10822       if (space)
10823         sym = space;
10824       else
10825         sym = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct symbol);
10826       OBJSTAT (objfile, n_syms++);
10827
10828       /* Cache this symbol's name and the name's demangled form (if any).  */
10829       SYMBOL_SET_LANGUAGE (sym, cu->language);
10830       linkagename = dwarf2_physname (name, die, cu);
10831       SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
10832
10833       /* Fortran does not have mangling standard and the mangling does differ
10834          between gfortran, iFort etc.  */
10835       if (cu->language == language_fortran
10836           && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
10837         symbol_set_demangled_name (&(sym->ginfo),
10838                                    (char *) dwarf2_full_name (name, die, cu),
10839                                    NULL);
10840
10841       /* Default assumptions.
10842          Use the passed type or decode it from the die.  */
10843       SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
10844       SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
10845       if (type != NULL)
10846         SYMBOL_TYPE (sym) = type;
10847       else
10848         SYMBOL_TYPE (sym) = die_type (die, cu);
10849       attr = dwarf2_attr (die,
10850                           inlined_func ? DW_AT_call_line : DW_AT_decl_line,
10851                           cu);
10852       if (attr)
10853         {
10854           SYMBOL_LINE (sym) = DW_UNSND (attr);
10855         }
10856
10857       attr = dwarf2_attr (die,
10858                           inlined_func ? DW_AT_call_file : DW_AT_decl_file,
10859                           cu);
10860       if (attr)
10861         {
10862           int file_index = DW_UNSND (attr);
10863
10864           if (cu->line_header == NULL
10865               || file_index > cu->line_header->num_file_names)
10866             complaint (&symfile_complaints,
10867                        _("file index out of range"));
10868           else if (file_index > 0)
10869             {
10870               struct file_entry *fe;
10871
10872               fe = &cu->line_header->file_names[file_index - 1];
10873               SYMBOL_SYMTAB (sym) = fe->symtab;
10874             }
10875         }
10876
10877       switch (die->tag)
10878         {
10879         case DW_TAG_label:
10880           attr = dwarf2_attr (die, DW_AT_low_pc, cu);
10881           if (attr)
10882             {
10883               SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
10884             }
10885           SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
10886           SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
10887           SYMBOL_CLASS (sym) = LOC_LABEL;
10888           add_symbol_to_list (sym, cu->list_in_scope);
10889           break;
10890         case DW_TAG_subprogram:
10891           /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
10892              finish_block.  */
10893           SYMBOL_CLASS (sym) = LOC_BLOCK;
10894           attr2 = dwarf2_attr (die, DW_AT_external, cu);
10895           if ((attr2 && (DW_UNSND (attr2) != 0))
10896               || cu->language == language_ada)
10897             {
10898               /* Subprograms marked external are stored as a global symbol.
10899                  Ada subprograms, whether marked external or not, are always
10900                  stored as a global symbol, because we want to be able to
10901                  access them globally.  For instance, we want to be able
10902                  to break on a nested subprogram without having to
10903                  specify the context.  */
10904               list_to_add = &global_symbols;
10905             }
10906           else
10907             {
10908               list_to_add = cu->list_in_scope;
10909             }
10910           break;
10911         case DW_TAG_inlined_subroutine:
10912           /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
10913              finish_block.  */
10914           SYMBOL_CLASS (sym) = LOC_BLOCK;
10915           SYMBOL_INLINED (sym) = 1;
10916           /* Do not add the symbol to any lists.  It will be found via
10917              BLOCK_FUNCTION from the blockvector.  */
10918           break;
10919         case DW_TAG_template_value_param:
10920           suppress_add = 1;
10921           /* Fall through.  */
10922         case DW_TAG_constant:
10923         case DW_TAG_variable:
10924         case DW_TAG_member:
10925           /* Compilation with minimal debug info may result in
10926              variables with missing type entries.  Change the
10927              misleading `void' type to something sensible.  */
10928           if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
10929             SYMBOL_TYPE (sym)
10930               = objfile_type (objfile)->nodebug_data_symbol;
10931
10932           attr = dwarf2_attr (die, DW_AT_const_value, cu);
10933           /* In the case of DW_TAG_member, we should only be called for
10934              static const members.  */
10935           if (die->tag == DW_TAG_member)
10936             {
10937               /* dwarf2_add_field uses die_is_declaration,
10938                  so we do the same.  */
10939               gdb_assert (die_is_declaration (die, cu));
10940               gdb_assert (attr);
10941             }
10942           if (attr)
10943             {
10944               dwarf2_const_value (attr, sym, cu);
10945               attr2 = dwarf2_attr (die, DW_AT_external, cu);
10946               if (!suppress_add)
10947                 {
10948                   if (attr2 && (DW_UNSND (attr2) != 0))
10949                     list_to_add = &global_symbols;
10950                   else
10951                     list_to_add = cu->list_in_scope;
10952                 }
10953               break;
10954             }
10955           attr = dwarf2_attr (die, DW_AT_location, cu);
10956           if (attr)
10957             {
10958               var_decode_location (attr, sym, cu);
10959               attr2 = dwarf2_attr (die, DW_AT_external, cu);
10960               if (SYMBOL_CLASS (sym) == LOC_STATIC
10961                   && SYMBOL_VALUE_ADDRESS (sym) == 0
10962                   && !dwarf2_per_objfile->has_section_at_zero)
10963                 {
10964                   /* When a static variable is eliminated by the linker,
10965                      the corresponding debug information is not stripped
10966                      out, but the variable address is set to null;
10967                      do not add such variables into symbol table.  */
10968                 }
10969               else if (attr2 && (DW_UNSND (attr2) != 0))
10970                 {
10971                   /* Workaround gfortran PR debug/40040 - it uses
10972                      DW_AT_location for variables in -fPIC libraries which may
10973                      get overriden by other libraries/executable and get
10974                      a different address.  Resolve it by the minimal symbol
10975                      which may come from inferior's executable using copy
10976                      relocation.  Make this workaround only for gfortran as for
10977                      other compilers GDB cannot guess the minimal symbol
10978                      Fortran mangling kind.  */
10979                   if (cu->language == language_fortran && die->parent
10980                       && die->parent->tag == DW_TAG_module
10981                       && cu->producer
10982                       && strncmp (cu->producer, "GNU Fortran ", 12) == 0)
10983                     SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
10984
10985                   /* A variable with DW_AT_external is never static,
10986                      but it may be block-scoped.  */
10987                   list_to_add = (cu->list_in_scope == &file_symbols
10988                                  ? &global_symbols : cu->list_in_scope);
10989                 }
10990               else
10991                 list_to_add = cu->list_in_scope;
10992             }
10993           else
10994             {
10995               /* We do not know the address of this symbol.
10996                  If it is an external symbol and we have type information
10997                  for it, enter the symbol as a LOC_UNRESOLVED symbol.
10998                  The address of the variable will then be determined from
10999                  the minimal symbol table whenever the variable is
11000                  referenced.  */
11001               attr2 = dwarf2_attr (die, DW_AT_external, cu);
11002               if (attr2 && (DW_UNSND (attr2) != 0)
11003                   && dwarf2_attr (die, DW_AT_type, cu) != NULL)
11004                 {
11005                   /* A variable with DW_AT_external is never static, but it
11006                      may be block-scoped.  */
11007                   list_to_add = (cu->list_in_scope == &file_symbols
11008                                  ? &global_symbols : cu->list_in_scope);
11009
11010                   SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
11011                 }
11012               else if (!die_is_declaration (die, cu))
11013                 {
11014                   /* Use the default LOC_OPTIMIZED_OUT class.  */
11015                   gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
11016                   if (!suppress_add)
11017                     list_to_add = cu->list_in_scope;
11018                 }
11019             }
11020           break;
11021         case DW_TAG_formal_parameter:
11022           /* If we are inside a function, mark this as an argument.  If
11023              not, we might be looking at an argument to an inlined function
11024              when we do not have enough information to show inlined frames;
11025              pretend it's a local variable in that case so that the user can
11026              still see it.  */
11027           if (context_stack_depth > 0
11028               && context_stack[context_stack_depth - 1].name != NULL)
11029             SYMBOL_IS_ARGUMENT (sym) = 1;
11030           attr = dwarf2_attr (die, DW_AT_location, cu);
11031           if (attr)
11032             {
11033               var_decode_location (attr, sym, cu);
11034             }
11035           attr = dwarf2_attr (die, DW_AT_const_value, cu);
11036           if (attr)
11037             {
11038               dwarf2_const_value (attr, sym, cu);
11039             }
11040           attr = dwarf2_attr (die, DW_AT_variable_parameter, cu);
11041           if (attr && DW_UNSND (attr))
11042             {
11043               struct type *ref_type;
11044
11045               ref_type = lookup_reference_type (SYMBOL_TYPE (sym));
11046               SYMBOL_TYPE (sym) = ref_type;
11047             }
11048
11049           list_to_add = cu->list_in_scope;
11050           break;
11051         case DW_TAG_unspecified_parameters:
11052           /* From varargs functions; gdb doesn't seem to have any
11053              interest in this information, so just ignore it for now.
11054              (FIXME?) */
11055           break;
11056         case DW_TAG_template_type_param:
11057           suppress_add = 1;
11058           /* Fall through.  */
11059         case DW_TAG_class_type:
11060         case DW_TAG_interface_type:
11061         case DW_TAG_structure_type:
11062         case DW_TAG_union_type:
11063         case DW_TAG_set_type:
11064         case DW_TAG_enumeration_type:
11065           SYMBOL_CLASS (sym) = LOC_TYPEDEF;
11066           SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
11067
11068           {
11069             /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
11070                really ever be static objects: otherwise, if you try
11071                to, say, break of a class's method and you're in a file
11072                which doesn't mention that class, it won't work unless
11073                the check for all static symbols in lookup_symbol_aux
11074                saves you.  See the OtherFileClass tests in
11075                gdb.c++/namespace.exp.  */
11076
11077             if (!suppress_add)
11078               {
11079                 list_to_add = (cu->list_in_scope == &file_symbols
11080                                && (cu->language == language_cplus
11081                                    || cu->language == language_java)
11082                                ? &global_symbols : cu->list_in_scope);
11083
11084                 /* The semantics of C++ state that "struct foo {
11085                    ... }" also defines a typedef for "foo".  A Java
11086                    class declaration also defines a typedef for the
11087                    class.  */
11088                 if (cu->language == language_cplus
11089                     || cu->language == language_java
11090                     || cu->language == language_ada)
11091                   {
11092                     /* The symbol's name is already allocated along
11093                        with this objfile, so we don't need to
11094                        duplicate it for the type.  */
11095                     if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
11096                       TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
11097                   }
11098               }
11099           }
11100           break;
11101         case DW_TAG_typedef:
11102           SYMBOL_CLASS (sym) = LOC_TYPEDEF;
11103           SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
11104           list_to_add = cu->list_in_scope;
11105           break;
11106         case DW_TAG_base_type:
11107         case DW_TAG_subrange_type:
11108           SYMBOL_CLASS (sym) = LOC_TYPEDEF;
11109           SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
11110           list_to_add = cu->list_in_scope;
11111           break;
11112         case DW_TAG_enumerator:
11113           attr = dwarf2_attr (die, DW_AT_const_value, cu);
11114           if (attr)
11115             {
11116               dwarf2_const_value (attr, sym, cu);
11117             }
11118           {
11119             /* NOTE: carlton/2003-11-10: See comment above in the
11120                DW_TAG_class_type, etc. block.  */
11121
11122             list_to_add = (cu->list_in_scope == &file_symbols
11123                            && (cu->language == language_cplus
11124                                || cu->language == language_java)
11125                            ? &global_symbols : cu->list_in_scope);
11126           }
11127           break;
11128         case DW_TAG_namespace:
11129           SYMBOL_CLASS (sym) = LOC_TYPEDEF;
11130           list_to_add = &global_symbols;
11131           break;
11132         default:
11133           /* Not a tag we recognize.  Hopefully we aren't processing
11134              trash data, but since we must specifically ignore things
11135              we don't recognize, there is nothing else we should do at
11136              this point.  */
11137           complaint (&symfile_complaints, _("unsupported tag: '%s'"),
11138                      dwarf_tag_name (die->tag));
11139           break;
11140         }
11141
11142       if (suppress_add)
11143         {
11144           sym->hash_next = objfile->template_symbols;
11145           objfile->template_symbols = sym;
11146           list_to_add = NULL;
11147         }
11148
11149       if (list_to_add != NULL)
11150         add_symbol_to_list (sym, list_to_add);
11151
11152       /* For the benefit of old versions of GCC, check for anonymous
11153          namespaces based on the demangled name.  */
11154       if (!processing_has_namespace_info
11155           && cu->language == language_cplus)
11156         cp_scan_for_anonymous_namespaces (sym);
11157     }
11158   return (sym);
11159 }
11160
11161 /* A wrapper for new_symbol_full that always allocates a new symbol.  */
11162
11163 static struct symbol *
11164 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
11165 {
11166   return new_symbol_full (die, type, cu, NULL);
11167 }
11168
11169 /* Given an attr with a DW_FORM_dataN value in host byte order,
11170    zero-extend it as appropriate for the symbol's type.  The DWARF
11171    standard (v4) is not entirely clear about the meaning of using
11172    DW_FORM_dataN for a constant with a signed type, where the type is
11173    wider than the data.  The conclusion of a discussion on the DWARF
11174    list was that this is unspecified.  We choose to always zero-extend
11175    because that is the interpretation long in use by GCC.  */
11176
11177 static gdb_byte *
11178 dwarf2_const_value_data (struct attribute *attr, struct type *type,
11179                          const char *name, struct obstack *obstack,
11180                          struct dwarf2_cu *cu, long *value, int bits)
11181 {
11182   struct objfile *objfile = cu->objfile;
11183   enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
11184                                 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
11185   LONGEST l = DW_UNSND (attr);
11186
11187   if (bits < sizeof (*value) * 8)
11188     {
11189       l &= ((LONGEST) 1 << bits) - 1;
11190       *value = l;
11191     }
11192   else if (bits == sizeof (*value) * 8)
11193     *value = l;
11194   else
11195     {
11196       gdb_byte *bytes = obstack_alloc (obstack, bits / 8);
11197       store_unsigned_integer (bytes, bits / 8, byte_order, l);
11198       return bytes;
11199     }
11200
11201   return NULL;
11202 }
11203
11204 /* Read a constant value from an attribute.  Either set *VALUE, or if
11205    the value does not fit in *VALUE, set *BYTES - either already
11206    allocated on the objfile obstack, or newly allocated on OBSTACK,
11207    or, set *BATON, if we translated the constant to a location
11208    expression.  */
11209
11210 static void
11211 dwarf2_const_value_attr (struct attribute *attr, struct type *type,
11212                          const char *name, struct obstack *obstack,
11213                          struct dwarf2_cu *cu,
11214                          long *value, gdb_byte **bytes,
11215                          struct dwarf2_locexpr_baton **baton)
11216 {
11217   struct objfile *objfile = cu->objfile;
11218   struct comp_unit_head *cu_header = &cu->header;
11219   struct dwarf_block *blk;
11220   enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
11221                                 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
11222
11223   *value = 0;
11224   *bytes = NULL;
11225   *baton = NULL;
11226
11227   switch (attr->form)
11228     {
11229     case DW_FORM_addr:
11230       {
11231         gdb_byte *data;
11232
11233         if (TYPE_LENGTH (type) != cu_header->addr_size)
11234           dwarf2_const_value_length_mismatch_complaint (name,
11235                                                         cu_header->addr_size,
11236                                                         TYPE_LENGTH (type));
11237         /* Symbols of this form are reasonably rare, so we just
11238            piggyback on the existing location code rather than writing
11239            a new implementation of symbol_computed_ops.  */
11240         *baton = obstack_alloc (&objfile->objfile_obstack,
11241                                 sizeof (struct dwarf2_locexpr_baton));
11242         (*baton)->per_cu = cu->per_cu;
11243         gdb_assert ((*baton)->per_cu);
11244
11245         (*baton)->size = 2 + cu_header->addr_size;
11246         data = obstack_alloc (&objfile->objfile_obstack, (*baton)->size);
11247         (*baton)->data = data;
11248
11249         data[0] = DW_OP_addr;
11250         store_unsigned_integer (&data[1], cu_header->addr_size,
11251                                 byte_order, DW_ADDR (attr));
11252         data[cu_header->addr_size + 1] = DW_OP_stack_value;
11253       }
11254       break;
11255     case DW_FORM_string:
11256     case DW_FORM_strp:
11257       /* DW_STRING is already allocated on the objfile obstack, point
11258          directly to it.  */
11259       *bytes = (gdb_byte *) DW_STRING (attr);
11260       break;
11261     case DW_FORM_block1:
11262     case DW_FORM_block2:
11263     case DW_FORM_block4:
11264     case DW_FORM_block:
11265     case DW_FORM_exprloc:
11266       blk = DW_BLOCK (attr);
11267       if (TYPE_LENGTH (type) != blk->size)
11268         dwarf2_const_value_length_mismatch_complaint (name, blk->size,
11269                                                       TYPE_LENGTH (type));
11270       *bytes = blk->data;
11271       break;
11272
11273       /* The DW_AT_const_value attributes are supposed to carry the
11274          symbol's value "represented as it would be on the target
11275          architecture."  By the time we get here, it's already been
11276          converted to host endianness, so we just need to sign- or
11277          zero-extend it as appropriate.  */
11278     case DW_FORM_data1:
11279       *bytes = dwarf2_const_value_data (attr, type, name,
11280                                         obstack, cu, value, 8);
11281       break;
11282     case DW_FORM_data2:
11283       *bytes = dwarf2_const_value_data (attr, type, name,
11284                                         obstack, cu, value, 16);
11285       break;
11286     case DW_FORM_data4:
11287       *bytes = dwarf2_const_value_data (attr, type, name,
11288                                         obstack, cu, value, 32);
11289       break;
11290     case DW_FORM_data8:
11291       *bytes = dwarf2_const_value_data (attr, type, name,
11292                                         obstack, cu, value, 64);
11293       break;
11294
11295     case DW_FORM_sdata:
11296       *value = DW_SND (attr);
11297       break;
11298
11299     case DW_FORM_udata:
11300       *value = DW_UNSND (attr);
11301       break;
11302
11303     default:
11304       complaint (&symfile_complaints,
11305                  _("unsupported const value attribute form: '%s'"),
11306                  dwarf_form_name (attr->form));
11307       *value = 0;
11308       break;
11309     }
11310 }
11311
11312
11313 /* Copy constant value from an attribute to a symbol.  */
11314
11315 static void
11316 dwarf2_const_value (struct attribute *attr, struct symbol *sym,
11317                     struct dwarf2_cu *cu)
11318 {
11319   struct objfile *objfile = cu->objfile;
11320   struct comp_unit_head *cu_header = &cu->header;
11321   long value;
11322   gdb_byte *bytes;
11323   struct dwarf2_locexpr_baton *baton;
11324
11325   dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
11326                            SYMBOL_PRINT_NAME (sym),
11327                            &objfile->objfile_obstack, cu,
11328                            &value, &bytes, &baton);
11329
11330   if (baton != NULL)
11331     {
11332       SYMBOL_COMPUTED_OPS (sym) = &dwarf2_locexpr_funcs;
11333       SYMBOL_LOCATION_BATON (sym) = baton;
11334       SYMBOL_CLASS (sym) = LOC_COMPUTED;
11335     }
11336   else if (bytes != NULL)
11337      {
11338       SYMBOL_VALUE_BYTES (sym) = bytes;
11339       SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
11340     }
11341   else
11342     {
11343       SYMBOL_VALUE (sym) = value;
11344       SYMBOL_CLASS (sym) = LOC_CONST;
11345     }
11346 }
11347
11348 /* Return the type of the die in question using its DW_AT_type attribute.  */
11349
11350 static struct type *
11351 die_type (struct die_info *die, struct dwarf2_cu *cu)
11352 {
11353   struct attribute *type_attr;
11354
11355   type_attr = dwarf2_attr (die, DW_AT_type, cu);
11356   if (!type_attr)
11357     {
11358       /* A missing DW_AT_type represents a void type.  */
11359       return objfile_type (cu->objfile)->builtin_void;
11360     }
11361
11362   return lookup_die_type (die, type_attr, cu);
11363 }
11364
11365 /* True iff CU's producer generates GNAT Ada auxiliary information
11366    that allows to find parallel types through that information instead
11367    of having to do expensive parallel lookups by type name.  */
11368
11369 static int
11370 need_gnat_info (struct dwarf2_cu *cu)
11371 {
11372   /* FIXME: brobecker/2010-10-12: As of now, only the AdaCore version
11373      of GNAT produces this auxiliary information, without any indication
11374      that it is produced.  Part of enhancing the FSF version of GNAT
11375      to produce that information will be to put in place an indicator
11376      that we can use in order to determine whether the descriptive type
11377      info is available or not.  One suggestion that has been made is
11378      to use a new attribute, attached to the CU die.  For now, assume
11379      that the descriptive type info is not available.  */
11380   return 0;
11381 }
11382
11383 /* Return the auxiliary type of the die in question using its
11384    DW_AT_GNAT_descriptive_type attribute.  Returns NULL if the
11385    attribute is not present.  */
11386
11387 static struct type *
11388 die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
11389 {
11390   struct attribute *type_attr;
11391
11392   type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
11393   if (!type_attr)
11394     return NULL;
11395
11396   return lookup_die_type (die, type_attr, cu);
11397 }
11398
11399 /* If DIE has a descriptive_type attribute, then set the TYPE's
11400    descriptive type accordingly.  */
11401
11402 static void
11403 set_descriptive_type (struct type *type, struct die_info *die,
11404                       struct dwarf2_cu *cu)
11405 {
11406   struct type *descriptive_type = die_descriptive_type (die, cu);
11407
11408   if (descriptive_type)
11409     {
11410       ALLOCATE_GNAT_AUX_TYPE (type);
11411       TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
11412     }
11413 }
11414
11415 /* Return the containing type of the die in question using its
11416    DW_AT_containing_type attribute.  */
11417
11418 static struct type *
11419 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
11420 {
11421   struct attribute *type_attr;
11422
11423   type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
11424   if (!type_attr)
11425     error (_("Dwarf Error: Problem turning containing type into gdb type "
11426              "[in module %s]"), cu->objfile->name);
11427
11428   return lookup_die_type (die, type_attr, cu);
11429 }
11430
11431 /* Look up the type of DIE in CU using its type attribute ATTR.
11432    If there is no type substitute an error marker.  */
11433
11434 static struct type *
11435 lookup_die_type (struct die_info *die, struct attribute *attr,
11436                  struct dwarf2_cu *cu)
11437 {
11438   struct type *this_type;
11439
11440   /* First see if we have it cached.  */
11441
11442   if (is_ref_attr (attr))
11443     {
11444       unsigned int offset = dwarf2_get_ref_die_offset (attr);
11445
11446       this_type = get_die_type_at_offset (offset, cu->per_cu);
11447     }
11448   else if (attr->form == DW_FORM_sig8)
11449     {
11450       struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
11451       struct dwarf2_cu *sig_cu;
11452       unsigned int offset;
11453
11454       /* sig_type will be NULL if the signatured type is missing from
11455          the debug info.  */
11456       if (sig_type == NULL)
11457         error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
11458                  "at 0x%x [in module %s]"),
11459                die->offset, cu->objfile->name);
11460
11461       gdb_assert (sig_type->per_cu.from_debug_types);
11462       offset = sig_type->offset + sig_type->type_offset;
11463       this_type = get_die_type_at_offset (offset, &sig_type->per_cu);
11464     }
11465   else
11466     {
11467       dump_die_for_error (die);
11468       error (_("Dwarf Error: Bad type attribute %s [in module %s]"),
11469              dwarf_attr_name (attr->name), cu->objfile->name);
11470     }
11471
11472   /* If not cached we need to read it in.  */
11473
11474   if (this_type == NULL)
11475     {
11476       struct die_info *type_die;
11477       struct dwarf2_cu *type_cu = cu;
11478
11479       type_die = follow_die_ref_or_sig (die, attr, &type_cu);
11480       /* If the type is cached, we should have found it above.  */
11481       gdb_assert (get_die_type (type_die, type_cu) == NULL);
11482       this_type = read_type_die_1 (type_die, type_cu);
11483     }
11484
11485   /* If we still don't have a type use an error marker.  */
11486
11487   if (this_type == NULL)
11488     {
11489       char *message, *saved;
11490
11491       /* read_type_die already issued a complaint.  */
11492       message = xstrprintf (_("<unknown type in %s, CU 0x%x, DIE 0x%x>"),
11493                             cu->objfile->name,
11494                             cu->header.offset,
11495                             die->offset);
11496       saved = obstack_copy0 (&cu->objfile->objfile_obstack,
11497                              message, strlen (message));
11498       xfree (message);
11499
11500       this_type = init_type (TYPE_CODE_ERROR, 0, 0, saved, cu->objfile);
11501     }
11502
11503   return this_type;
11504 }
11505
11506 /* Return the type in DIE, CU.
11507    Returns NULL for invalid types.
11508
11509    This first does a lookup in the appropriate type_hash table,
11510    and only reads the die in if necessary.
11511
11512    NOTE: This can be called when reading in partial or full symbols.  */
11513
11514 static struct type *
11515 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
11516 {
11517   struct type *this_type;
11518
11519   this_type = get_die_type (die, cu);
11520   if (this_type)
11521     return this_type;
11522
11523   return read_type_die_1 (die, cu);
11524 }
11525
11526 /* Read the type in DIE, CU.
11527    Returns NULL for invalid types.  */
11528
11529 static struct type *
11530 read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
11531 {
11532   struct type *this_type = NULL;
11533
11534   switch (die->tag)
11535     {
11536     case DW_TAG_class_type:
11537     case DW_TAG_interface_type:
11538     case DW_TAG_structure_type:
11539     case DW_TAG_union_type:
11540       this_type = read_structure_type (die, cu);
11541       break;
11542     case DW_TAG_enumeration_type:
11543       this_type = read_enumeration_type (die, cu);
11544       break;
11545     case DW_TAG_subprogram:
11546     case DW_TAG_subroutine_type:
11547     case DW_TAG_inlined_subroutine:
11548       this_type = read_subroutine_type (die, cu);
11549       break;
11550     case DW_TAG_array_type:
11551       this_type = read_array_type (die, cu);
11552       break;
11553     case DW_TAG_set_type:
11554       this_type = read_set_type (die, cu);
11555       break;
11556     case DW_TAG_pointer_type:
11557       this_type = read_tag_pointer_type (die, cu);
11558       break;
11559     case DW_TAG_ptr_to_member_type:
11560       this_type = read_tag_ptr_to_member_type (die, cu);
11561       break;
11562     case DW_TAG_reference_type:
11563       this_type = read_tag_reference_type (die, cu);
11564       break;
11565     case DW_TAG_const_type:
11566       this_type = read_tag_const_type (die, cu);
11567       break;
11568     case DW_TAG_volatile_type:
11569       this_type = read_tag_volatile_type (die, cu);
11570       break;
11571     case DW_TAG_string_type:
11572       this_type = read_tag_string_type (die, cu);
11573       break;
11574     case DW_TAG_typedef:
11575       this_type = read_typedef (die, cu);
11576       break;
11577     case DW_TAG_subrange_type:
11578       this_type = read_subrange_type (die, cu);
11579       break;
11580     case DW_TAG_base_type:
11581       this_type = read_base_type (die, cu);
11582       break;
11583     case DW_TAG_unspecified_type:
11584       this_type = read_unspecified_type (die, cu);
11585       break;
11586     case DW_TAG_namespace:
11587       this_type = read_namespace_type (die, cu);
11588       break;
11589     case DW_TAG_module:
11590       this_type = read_module_type (die, cu);
11591       break;
11592     default:
11593       complaint (&symfile_complaints,
11594                  _("unexpected tag in read_type_die: '%s'"),
11595                  dwarf_tag_name (die->tag));
11596       break;
11597     }
11598
11599   return this_type;
11600 }
11601
11602 /* See if we can figure out if the class lives in a namespace.  We do
11603    this by looking for a member function; its demangled name will
11604    contain namespace info, if there is any.
11605    Return the computed name or NULL.
11606    Space for the result is allocated on the objfile's obstack.
11607    This is the full-die version of guess_partial_die_structure_name.
11608    In this case we know DIE has no useful parent.  */
11609
11610 static char *
11611 guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
11612 {
11613   struct die_info *spec_die;
11614   struct dwarf2_cu *spec_cu;
11615   struct die_info *child;
11616
11617   spec_cu = cu;
11618   spec_die = die_specification (die, &spec_cu);
11619   if (spec_die != NULL)
11620     {
11621       die = spec_die;
11622       cu = spec_cu;
11623     }
11624
11625   for (child = die->child;
11626        child != NULL;
11627        child = child->sibling)
11628     {
11629       if (child->tag == DW_TAG_subprogram)
11630         {
11631           struct attribute *attr;
11632
11633           attr = dwarf2_attr (child, DW_AT_linkage_name, cu);
11634           if (attr == NULL)
11635             attr = dwarf2_attr (child, DW_AT_MIPS_linkage_name, cu);
11636           if (attr != NULL)
11637             {
11638               char *actual_name
11639                 = language_class_name_from_physname (cu->language_defn,
11640                                                      DW_STRING (attr));
11641               char *name = NULL;
11642
11643               if (actual_name != NULL)
11644                 {
11645                   char *die_name = dwarf2_name (die, cu);
11646
11647                   if (die_name != NULL
11648                       && strcmp (die_name, actual_name) != 0)
11649                     {
11650                       /* Strip off the class name from the full name.
11651                          We want the prefix.  */
11652                       int die_name_len = strlen (die_name);
11653                       int actual_name_len = strlen (actual_name);
11654
11655                       /* Test for '::' as a sanity check.  */
11656                       if (actual_name_len > die_name_len + 2
11657                           && actual_name[actual_name_len
11658                                          - die_name_len - 1] == ':')
11659                         name =
11660                           obsavestring (actual_name,
11661                                         actual_name_len - die_name_len - 2,
11662                                         &cu->objfile->objfile_obstack);
11663                     }
11664                 }
11665               xfree (actual_name);
11666               return name;
11667             }
11668         }
11669     }
11670
11671   return NULL;
11672 }
11673
11674 /* Return the name of the namespace/class that DIE is defined within,
11675    or "" if we can't tell.  The caller should not xfree the result.
11676
11677    For example, if we're within the method foo() in the following
11678    code:
11679
11680    namespace N {
11681      class C {
11682        void foo () {
11683        }
11684      };
11685    }
11686
11687    then determine_prefix on foo's die will return "N::C".  */
11688
11689 static char *
11690 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
11691 {
11692   struct die_info *parent, *spec_die;
11693   struct dwarf2_cu *spec_cu;
11694   struct type *parent_type;
11695
11696   if (cu->language != language_cplus && cu->language != language_java
11697       && cu->language != language_fortran)
11698     return "";
11699
11700   /* We have to be careful in the presence of DW_AT_specification.
11701      For example, with GCC 3.4, given the code
11702
11703      namespace N {
11704        void foo() {
11705          // Definition of N::foo.
11706        }
11707      }
11708
11709      then we'll have a tree of DIEs like this:
11710
11711      1: DW_TAG_compile_unit
11712        2: DW_TAG_namespace        // N
11713          3: DW_TAG_subprogram     // declaration of N::foo
11714        4: DW_TAG_subprogram       // definition of N::foo
11715             DW_AT_specification   // refers to die #3
11716
11717      Thus, when processing die #4, we have to pretend that we're in
11718      the context of its DW_AT_specification, namely the contex of die
11719      #3.  */
11720   spec_cu = cu;
11721   spec_die = die_specification (die, &spec_cu);
11722   if (spec_die == NULL)
11723     parent = die->parent;
11724   else
11725     {
11726       parent = spec_die->parent;
11727       cu = spec_cu;
11728     }
11729
11730   if (parent == NULL)
11731     return "";
11732   else if (parent->building_fullname)
11733     {
11734       const char *name;
11735       const char *parent_name;
11736
11737       /* It has been seen on RealView 2.2 built binaries,
11738          DW_TAG_template_type_param types actually _defined_ as
11739          children of the parent class:
11740
11741          enum E {};
11742          template class <class Enum> Class{};
11743          Class<enum E> class_e;
11744
11745          1: DW_TAG_class_type (Class)
11746            2: DW_TAG_enumeration_type (E)
11747              3: DW_TAG_enumerator (enum1:0)
11748              3: DW_TAG_enumerator (enum2:1)
11749              ...
11750            2: DW_TAG_template_type_param
11751               DW_AT_type  DW_FORM_ref_udata (E)
11752
11753          Besides being broken debug info, it can put GDB into an
11754          infinite loop.  Consider:
11755
11756          When we're building the full name for Class<E>, we'll start
11757          at Class, and go look over its template type parameters,
11758          finding E.  We'll then try to build the full name of E, and
11759          reach here.  We're now trying to build the full name of E,
11760          and look over the parent DIE for containing scope.  In the
11761          broken case, if we followed the parent DIE of E, we'd again
11762          find Class, and once again go look at its template type
11763          arguments, etc., etc.  Simply don't consider such parent die
11764          as source-level parent of this die (it can't be, the language
11765          doesn't allow it), and break the loop here.  */
11766       name = dwarf2_name (die, cu);
11767       parent_name = dwarf2_name (parent, cu);
11768       complaint (&symfile_complaints,
11769                  _("template param type '%s' defined within parent '%s'"),
11770                  name ? name : "<unknown>",
11771                  parent_name ? parent_name : "<unknown>");
11772       return "";
11773     }
11774   else
11775     switch (parent->tag)
11776       {
11777       case DW_TAG_namespace:
11778         parent_type = read_type_die (parent, cu);
11779         /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
11780            DW_TAG_namespace DIEs with a name of "::" for the global namespace.
11781            Work around this problem here.  */
11782         if (cu->language == language_cplus
11783             && strcmp (TYPE_TAG_NAME (parent_type), "::") == 0)
11784           return "";
11785         /* We give a name to even anonymous namespaces.  */
11786         return TYPE_TAG_NAME (parent_type);
11787       case DW_TAG_class_type:
11788       case DW_TAG_interface_type:
11789       case DW_TAG_structure_type:
11790       case DW_TAG_union_type:
11791       case DW_TAG_module:
11792         parent_type = read_type_die (parent, cu);
11793         if (TYPE_TAG_NAME (parent_type) != NULL)
11794           return TYPE_TAG_NAME (parent_type);
11795         else
11796           /* An anonymous structure is only allowed non-static data
11797              members; no typedefs, no member functions, et cetera.
11798              So it does not need a prefix.  */
11799           return "";
11800       case DW_TAG_compile_unit:
11801         /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace.  Cope.  */
11802         if (cu->language == language_cplus
11803             && dwarf2_per_objfile->types.asection != NULL
11804             && die->child != NULL
11805             && (die->tag == DW_TAG_class_type
11806                 || die->tag == DW_TAG_structure_type
11807                 || die->tag == DW_TAG_union_type))
11808           {
11809             char *name = guess_full_die_structure_name (die, cu);
11810             if (name != NULL)
11811               return name;
11812           }
11813         return "";
11814       default:
11815         return determine_prefix (parent, cu);
11816       }
11817 }
11818
11819 /* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
11820    with appropriate separator.  If PREFIX or SUFFIX is NULL or empty, then
11821    simply copy the SUFFIX or PREFIX, respectively.  If OBS is non-null, perform
11822    an obconcat, otherwise allocate storage for the result.  The CU argument is
11823    used to determine the language and hence, the appropriate separator.  */
11824
11825 #define MAX_SEP_LEN 7  /* strlen ("__") + strlen ("_MOD_")  */
11826
11827 static char *
11828 typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
11829                  int physname, struct dwarf2_cu *cu)
11830 {
11831   const char *lead = "";
11832   const char *sep;
11833
11834   if (suffix == NULL || suffix[0] == '\0'
11835       || prefix == NULL || prefix[0] == '\0')
11836     sep = "";
11837   else if (cu->language == language_java)
11838     sep = ".";
11839   else if (cu->language == language_fortran && physname)
11840     {
11841       /* This is gfortran specific mangling.  Normally DW_AT_linkage_name or
11842          DW_AT_MIPS_linkage_name is preferred and used instead.  */
11843
11844       lead = "__";
11845       sep = "_MOD_";
11846     }
11847   else
11848     sep = "::";
11849
11850   if (prefix == NULL)
11851     prefix = "";
11852   if (suffix == NULL)
11853     suffix = "";
11854
11855   if (obs == NULL)
11856     {
11857       char *retval
11858         = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
11859
11860       strcpy (retval, lead);
11861       strcat (retval, prefix);
11862       strcat (retval, sep);
11863       strcat (retval, suffix);
11864       return retval;
11865     }
11866   else
11867     {
11868       /* We have an obstack.  */
11869       return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
11870     }
11871 }
11872
11873 /* Return sibling of die, NULL if no sibling.  */
11874
11875 static struct die_info *
11876 sibling_die (struct die_info *die)
11877 {
11878   return die->sibling;
11879 }
11880
11881 /* Get name of a die, return NULL if not found.  */
11882
11883 static char *
11884 dwarf2_canonicalize_name (char *name, struct dwarf2_cu *cu,
11885                           struct obstack *obstack)
11886 {
11887   if (name && cu->language == language_cplus)
11888     {
11889       char *canon_name = cp_canonicalize_string (name);
11890
11891       if (canon_name != NULL)
11892         {
11893           if (strcmp (canon_name, name) != 0)
11894             name = obsavestring (canon_name, strlen (canon_name),
11895                                  obstack);
11896           xfree (canon_name);
11897         }
11898     }
11899
11900   return name;
11901 }
11902
11903 /* Get name of a die, return NULL if not found.  */
11904
11905 static char *
11906 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
11907 {
11908   struct attribute *attr;
11909
11910   attr = dwarf2_attr (die, DW_AT_name, cu);
11911   if (!attr || !DW_STRING (attr))
11912     return NULL;
11913
11914   switch (die->tag)
11915     {
11916     case DW_TAG_compile_unit:
11917       /* Compilation units have a DW_AT_name that is a filename, not
11918          a source language identifier.  */
11919     case DW_TAG_enumeration_type:
11920     case DW_TAG_enumerator:
11921       /* These tags always have simple identifiers already; no need
11922          to canonicalize them.  */
11923       return DW_STRING (attr);
11924
11925     case DW_TAG_subprogram:
11926       /* Java constructors will all be named "<init>", so return
11927          the class name when we see this special case.  */
11928       if (cu->language == language_java
11929           && DW_STRING (attr) != NULL
11930           && strcmp (DW_STRING (attr), "<init>") == 0)
11931         {
11932           struct dwarf2_cu *spec_cu = cu;
11933           struct die_info *spec_die;
11934
11935           /* GCJ will output '<init>' for Java constructor names.
11936              For this special case, return the name of the parent class.  */
11937
11938           /* GCJ may output suprogram DIEs with AT_specification set.
11939              If so, use the name of the specified DIE.  */
11940           spec_die = die_specification (die, &spec_cu);
11941           if (spec_die != NULL)
11942             return dwarf2_name (spec_die, spec_cu);
11943
11944           do
11945             {
11946               die = die->parent;
11947               if (die->tag == DW_TAG_class_type)
11948                 return dwarf2_name (die, cu);
11949             }
11950           while (die->tag != DW_TAG_compile_unit);
11951         }
11952       break;
11953
11954     case DW_TAG_class_type:
11955     case DW_TAG_interface_type:
11956     case DW_TAG_structure_type:
11957     case DW_TAG_union_type:
11958       /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
11959          structures or unions.  These were of the form "._%d" in GCC 4.1,
11960          or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
11961          and GCC 4.4.  We work around this problem by ignoring these.  */
11962       if (strncmp (DW_STRING (attr), "._", 2) == 0
11963           || strncmp (DW_STRING (attr), "<anonymous", 10) == 0)
11964         return NULL;
11965       break;
11966
11967     default:
11968       break;
11969     }
11970
11971   if (!DW_STRING_IS_CANONICAL (attr))
11972     {
11973       DW_STRING (attr)
11974         = dwarf2_canonicalize_name (DW_STRING (attr), cu,
11975                                     &cu->objfile->objfile_obstack);
11976       DW_STRING_IS_CANONICAL (attr) = 1;
11977     }
11978   return DW_STRING (attr);
11979 }
11980
11981 /* Return the die that this die in an extension of, or NULL if there
11982    is none.  *EXT_CU is the CU containing DIE on input, and the CU
11983    containing the return value on output.  */
11984
11985 static struct die_info *
11986 dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
11987 {
11988   struct attribute *attr;
11989
11990   attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
11991   if (attr == NULL)
11992     return NULL;
11993
11994   return follow_die_ref (die, attr, ext_cu);
11995 }
11996
11997 /* Convert a DIE tag into its string name.  */
11998
11999 static char *
12000 dwarf_tag_name (unsigned tag)
12001 {
12002   switch (tag)
12003     {
12004     case DW_TAG_padding:
12005       return "DW_TAG_padding";
12006     case DW_TAG_array_type:
12007       return "DW_TAG_array_type";
12008     case DW_TAG_class_type:
12009       return "DW_TAG_class_type";
12010     case DW_TAG_entry_point:
12011       return "DW_TAG_entry_point";
12012     case DW_TAG_enumeration_type:
12013       return "DW_TAG_enumeration_type";
12014     case DW_TAG_formal_parameter:
12015       return "DW_TAG_formal_parameter";
12016     case DW_TAG_imported_declaration:
12017       return "DW_TAG_imported_declaration";
12018     case DW_TAG_label:
12019       return "DW_TAG_label";
12020     case DW_TAG_lexical_block:
12021       return "DW_TAG_lexical_block";
12022     case DW_TAG_member:
12023       return "DW_TAG_member";
12024     case DW_TAG_pointer_type:
12025       return "DW_TAG_pointer_type";
12026     case DW_TAG_reference_type:
12027       return "DW_TAG_reference_type";
12028     case DW_TAG_compile_unit:
12029       return "DW_TAG_compile_unit";
12030     case DW_TAG_string_type:
12031       return "DW_TAG_string_type";
12032     case DW_TAG_structure_type:
12033       return "DW_TAG_structure_type";
12034     case DW_TAG_subroutine_type:
12035       return "DW_TAG_subroutine_type";
12036     case DW_TAG_typedef:
12037       return "DW_TAG_typedef";
12038     case DW_TAG_union_type:
12039       return "DW_TAG_union_type";
12040     case DW_TAG_unspecified_parameters:
12041       return "DW_TAG_unspecified_parameters";
12042     case DW_TAG_variant:
12043       return "DW_TAG_variant";
12044     case DW_TAG_common_block:
12045       return "DW_TAG_common_block";
12046     case DW_TAG_common_inclusion:
12047       return "DW_TAG_common_inclusion";
12048     case DW_TAG_inheritance:
12049       return "DW_TAG_inheritance";
12050     case DW_TAG_inlined_subroutine:
12051       return "DW_TAG_inlined_subroutine";
12052     case DW_TAG_module:
12053       return "DW_TAG_module";
12054     case DW_TAG_ptr_to_member_type:
12055       return "DW_TAG_ptr_to_member_type";
12056     case DW_TAG_set_type:
12057       return "DW_TAG_set_type";
12058     case DW_TAG_subrange_type:
12059       return "DW_TAG_subrange_type";
12060     case DW_TAG_with_stmt:
12061       return "DW_TAG_with_stmt";
12062     case DW_TAG_access_declaration:
12063       return "DW_TAG_access_declaration";
12064     case DW_TAG_base_type:
12065       return "DW_TAG_base_type";
12066     case DW_TAG_catch_block:
12067       return "DW_TAG_catch_block";
12068     case DW_TAG_const_type:
12069       return "DW_TAG_const_type";
12070     case DW_TAG_constant:
12071       return "DW_TAG_constant";
12072     case DW_TAG_enumerator:
12073       return "DW_TAG_enumerator";
12074     case DW_TAG_file_type:
12075       return "DW_TAG_file_type";
12076     case DW_TAG_friend:
12077       return "DW_TAG_friend";
12078     case DW_TAG_namelist:
12079       return "DW_TAG_namelist";
12080     case DW_TAG_namelist_item:
12081       return "DW_TAG_namelist_item";
12082     case DW_TAG_packed_type:
12083       return "DW_TAG_packed_type";
12084     case DW_TAG_subprogram:
12085       return "DW_TAG_subprogram";
12086     case DW_TAG_template_type_param:
12087       return "DW_TAG_template_type_param";
12088     case DW_TAG_template_value_param:
12089       return "DW_TAG_template_value_param";
12090     case DW_TAG_thrown_type:
12091       return "DW_TAG_thrown_type";
12092     case DW_TAG_try_block:
12093       return "DW_TAG_try_block";
12094     case DW_TAG_variant_part:
12095       return "DW_TAG_variant_part";
12096     case DW_TAG_variable:
12097       return "DW_TAG_variable";
12098     case DW_TAG_volatile_type:
12099       return "DW_TAG_volatile_type";
12100     case DW_TAG_dwarf_procedure:
12101       return "DW_TAG_dwarf_procedure";
12102     case DW_TAG_restrict_type:
12103       return "DW_TAG_restrict_type";
12104     case DW_TAG_interface_type:
12105       return "DW_TAG_interface_type";
12106     case DW_TAG_namespace:
12107       return "DW_TAG_namespace";
12108     case DW_TAG_imported_module:
12109       return "DW_TAG_imported_module";
12110     case DW_TAG_unspecified_type:
12111       return "DW_TAG_unspecified_type";
12112     case DW_TAG_partial_unit:
12113       return "DW_TAG_partial_unit";
12114     case DW_TAG_imported_unit:
12115       return "DW_TAG_imported_unit";
12116     case DW_TAG_condition:
12117       return "DW_TAG_condition";
12118     case DW_TAG_shared_type:
12119       return "DW_TAG_shared_type";
12120     case DW_TAG_type_unit:
12121       return "DW_TAG_type_unit";
12122     case DW_TAG_MIPS_loop:
12123       return "DW_TAG_MIPS_loop";
12124     case DW_TAG_HP_array_descriptor:
12125       return "DW_TAG_HP_array_descriptor";
12126     case DW_TAG_format_label:
12127       return "DW_TAG_format_label";
12128     case DW_TAG_function_template:
12129       return "DW_TAG_function_template";
12130     case DW_TAG_class_template:
12131       return "DW_TAG_class_template";
12132     case DW_TAG_GNU_BINCL:
12133       return "DW_TAG_GNU_BINCL";
12134     case DW_TAG_GNU_EINCL:
12135       return "DW_TAG_GNU_EINCL";
12136     case DW_TAG_upc_shared_type:
12137       return "DW_TAG_upc_shared_type";
12138     case DW_TAG_upc_strict_type:
12139       return "DW_TAG_upc_strict_type";
12140     case DW_TAG_upc_relaxed_type:
12141       return "DW_TAG_upc_relaxed_type";
12142     case DW_TAG_PGI_kanji_type:
12143       return "DW_TAG_PGI_kanji_type";
12144     case DW_TAG_PGI_interface_block:
12145       return "DW_TAG_PGI_interface_block";
12146     default:
12147       return "DW_TAG_<unknown>";
12148     }
12149 }
12150
12151 /* Convert a DWARF attribute code into its string name.  */
12152
12153 static char *
12154 dwarf_attr_name (unsigned attr)
12155 {
12156   switch (attr)
12157     {
12158     case DW_AT_sibling:
12159       return "DW_AT_sibling";
12160     case DW_AT_location:
12161       return "DW_AT_location";
12162     case DW_AT_name:
12163       return "DW_AT_name";
12164     case DW_AT_ordering:
12165       return "DW_AT_ordering";
12166     case DW_AT_subscr_data:
12167       return "DW_AT_subscr_data";
12168     case DW_AT_byte_size:
12169       return "DW_AT_byte_size";
12170     case DW_AT_bit_offset:
12171       return "DW_AT_bit_offset";
12172     case DW_AT_bit_size:
12173       return "DW_AT_bit_size";
12174     case DW_AT_element_list:
12175       return "DW_AT_element_list";
12176     case DW_AT_stmt_list:
12177       return "DW_AT_stmt_list";
12178     case DW_AT_low_pc:
12179       return "DW_AT_low_pc";
12180     case DW_AT_high_pc:
12181       return "DW_AT_high_pc";
12182     case DW_AT_language:
12183       return "DW_AT_language";
12184     case DW_AT_member:
12185       return "DW_AT_member";
12186     case DW_AT_discr:
12187       return "DW_AT_discr";
12188     case DW_AT_discr_value:
12189       return "DW_AT_discr_value";
12190     case DW_AT_visibility:
12191       return "DW_AT_visibility";
12192     case DW_AT_import:
12193       return "DW_AT_import";
12194     case DW_AT_string_length:
12195       return "DW_AT_string_length";
12196     case DW_AT_common_reference:
12197       return "DW_AT_common_reference";
12198     case DW_AT_comp_dir:
12199       return "DW_AT_comp_dir";
12200     case DW_AT_const_value:
12201       return "DW_AT_const_value";
12202     case DW_AT_containing_type:
12203       return "DW_AT_containing_type";
12204     case DW_AT_default_value:
12205       return "DW_AT_default_value";
12206     case DW_AT_inline:
12207       return "DW_AT_inline";
12208     case DW_AT_is_optional:
12209       return "DW_AT_is_optional";
12210     case DW_AT_lower_bound:
12211       return "DW_AT_lower_bound";
12212     case DW_AT_producer:
12213       return "DW_AT_producer";
12214     case DW_AT_prototyped:
12215       return "DW_AT_prototyped";
12216     case DW_AT_return_addr:
12217       return "DW_AT_return_addr";
12218     case DW_AT_start_scope:
12219       return "DW_AT_start_scope";
12220     case DW_AT_bit_stride:
12221       return "DW_AT_bit_stride";
12222     case DW_AT_upper_bound:
12223       return "DW_AT_upper_bound";
12224     case DW_AT_abstract_origin:
12225       return "DW_AT_abstract_origin";
12226     case DW_AT_accessibility:
12227       return "DW_AT_accessibility";
12228     case DW_AT_address_class:
12229       return "DW_AT_address_class";
12230     case DW_AT_artificial:
12231       return "DW_AT_artificial";
12232     case DW_AT_base_types:
12233       return "DW_AT_base_types";
12234     case DW_AT_calling_convention:
12235       return "DW_AT_calling_convention";
12236     case DW_AT_count:
12237       return "DW_AT_count";
12238     case DW_AT_data_member_location:
12239       return "DW_AT_data_member_location";
12240     case DW_AT_decl_column:
12241       return "DW_AT_decl_column";
12242     case DW_AT_decl_file:
12243       return "DW_AT_decl_file";
12244     case DW_AT_decl_line:
12245       return "DW_AT_decl_line";
12246     case DW_AT_declaration:
12247       return "DW_AT_declaration";
12248     case DW_AT_discr_list:
12249       return "DW_AT_discr_list";
12250     case DW_AT_encoding:
12251       return "DW_AT_encoding";
12252     case DW_AT_external:
12253       return "DW_AT_external";
12254     case DW_AT_frame_base:
12255       return "DW_AT_frame_base";
12256     case DW_AT_friend:
12257       return "DW_AT_friend";
12258     case DW_AT_identifier_case:
12259       return "DW_AT_identifier_case";
12260     case DW_AT_macro_info:
12261       return "DW_AT_macro_info";
12262     case DW_AT_namelist_items:
12263       return "DW_AT_namelist_items";
12264     case DW_AT_priority:
12265       return "DW_AT_priority";
12266     case DW_AT_segment:
12267       return "DW_AT_segment";
12268     case DW_AT_specification:
12269       return "DW_AT_specification";
12270     case DW_AT_static_link:
12271       return "DW_AT_static_link";
12272     case DW_AT_type:
12273       return "DW_AT_type";
12274     case DW_AT_use_location:
12275       return "DW_AT_use_location";
12276     case DW_AT_variable_parameter:
12277       return "DW_AT_variable_parameter";
12278     case DW_AT_virtuality:
12279       return "DW_AT_virtuality";
12280     case DW_AT_vtable_elem_location:
12281       return "DW_AT_vtable_elem_location";
12282     /* DWARF 3 values.  */
12283     case DW_AT_allocated:
12284       return "DW_AT_allocated";
12285     case DW_AT_associated:
12286       return "DW_AT_associated";
12287     case DW_AT_data_location:
12288       return "DW_AT_data_location";
12289     case DW_AT_byte_stride:
12290       return "DW_AT_byte_stride";
12291     case DW_AT_entry_pc:
12292       return "DW_AT_entry_pc";
12293     case DW_AT_use_UTF8:
12294       return "DW_AT_use_UTF8";
12295     case DW_AT_extension:
12296       return "DW_AT_extension";
12297     case DW_AT_ranges:
12298       return "DW_AT_ranges";
12299     case DW_AT_trampoline:
12300       return "DW_AT_trampoline";
12301     case DW_AT_call_column:
12302       return "DW_AT_call_column";
12303     case DW_AT_call_file:
12304       return "DW_AT_call_file";
12305     case DW_AT_call_line:
12306       return "DW_AT_call_line";
12307     case DW_AT_description:
12308       return "DW_AT_description";
12309     case DW_AT_binary_scale:
12310       return "DW_AT_binary_scale";
12311     case DW_AT_decimal_scale:
12312       return "DW_AT_decimal_scale";
12313     case DW_AT_small:
12314       return "DW_AT_small";
12315     case DW_AT_decimal_sign:
12316       return "DW_AT_decimal_sign";
12317     case DW_AT_digit_count:
12318       return "DW_AT_digit_count";
12319     case DW_AT_picture_string:
12320       return "DW_AT_picture_string";
12321     case DW_AT_mutable:
12322       return "DW_AT_mutable";
12323     case DW_AT_threads_scaled:
12324       return "DW_AT_threads_scaled";
12325     case DW_AT_explicit:
12326       return "DW_AT_explicit";
12327     case DW_AT_object_pointer:
12328       return "DW_AT_object_pointer";
12329     case DW_AT_endianity:
12330       return "DW_AT_endianity";
12331     case DW_AT_elemental:
12332       return "DW_AT_elemental";
12333     case DW_AT_pure:
12334       return "DW_AT_pure";
12335     case DW_AT_recursive:
12336       return "DW_AT_recursive";
12337     /* DWARF 4 values.  */
12338     case DW_AT_signature:
12339       return "DW_AT_signature";
12340     case DW_AT_linkage_name:
12341       return "DW_AT_linkage_name";
12342     /* SGI/MIPS extensions.  */
12343 #ifdef MIPS /* collides with DW_AT_HP_block_index */
12344     case DW_AT_MIPS_fde:
12345       return "DW_AT_MIPS_fde";
12346 #endif
12347     case DW_AT_MIPS_loop_begin:
12348       return "DW_AT_MIPS_loop_begin";
12349     case DW_AT_MIPS_tail_loop_begin:
12350       return "DW_AT_MIPS_tail_loop_begin";
12351     case DW_AT_MIPS_epilog_begin:
12352       return "DW_AT_MIPS_epilog_begin";
12353     case DW_AT_MIPS_loop_unroll_factor:
12354       return "DW_AT_MIPS_loop_unroll_factor";
12355     case DW_AT_MIPS_software_pipeline_depth:
12356       return "DW_AT_MIPS_software_pipeline_depth";
12357     case DW_AT_MIPS_linkage_name:
12358       return "DW_AT_MIPS_linkage_name";
12359     case DW_AT_MIPS_stride:
12360       return "DW_AT_MIPS_stride";
12361     case DW_AT_MIPS_abstract_name:
12362       return "DW_AT_MIPS_abstract_name";
12363     case DW_AT_MIPS_clone_origin:
12364       return "DW_AT_MIPS_clone_origin";
12365     case DW_AT_MIPS_has_inlines:
12366       return "DW_AT_MIPS_has_inlines";
12367     /* HP extensions.  */
12368 #ifndef MIPS /* collides with DW_AT_MIPS_fde */
12369     case DW_AT_HP_block_index:
12370       return "DW_AT_HP_block_index";
12371 #endif
12372     case DW_AT_HP_unmodifiable:
12373       return "DW_AT_HP_unmodifiable";
12374     case DW_AT_HP_actuals_stmt_list:
12375       return "DW_AT_HP_actuals_stmt_list";
12376     case DW_AT_HP_proc_per_section:
12377       return "DW_AT_HP_proc_per_section";
12378     case DW_AT_HP_raw_data_ptr:
12379       return "DW_AT_HP_raw_data_ptr";
12380     case DW_AT_HP_pass_by_reference:
12381       return "DW_AT_HP_pass_by_reference";
12382     case DW_AT_HP_opt_level:
12383       return "DW_AT_HP_opt_level";
12384     case DW_AT_HP_prof_version_id:
12385       return "DW_AT_HP_prof_version_id";
12386     case DW_AT_HP_opt_flags:
12387       return "DW_AT_HP_opt_flags";
12388     case DW_AT_HP_cold_region_low_pc:
12389       return "DW_AT_HP_cold_region_low_pc";
12390     case DW_AT_HP_cold_region_high_pc:
12391       return "DW_AT_HP_cold_region_high_pc";
12392     case DW_AT_HP_all_variables_modifiable:
12393       return "DW_AT_HP_all_variables_modifiable";
12394     case DW_AT_HP_linkage_name:
12395       return "DW_AT_HP_linkage_name";
12396     case DW_AT_HP_prof_flags:
12397       return "DW_AT_HP_prof_flags";
12398     /* GNU extensions.  */
12399     case DW_AT_sf_names:
12400       return "DW_AT_sf_names";
12401     case DW_AT_src_info:
12402       return "DW_AT_src_info";
12403     case DW_AT_mac_info:
12404       return "DW_AT_mac_info";
12405     case DW_AT_src_coords:
12406       return "DW_AT_src_coords";
12407     case DW_AT_body_begin:
12408       return "DW_AT_body_begin";
12409     case DW_AT_body_end:
12410       return "DW_AT_body_end";
12411     case DW_AT_GNU_vector:
12412       return "DW_AT_GNU_vector";
12413     case DW_AT_GNU_odr_signature:
12414       return "DW_AT_GNU_odr_signature";
12415     /* VMS extensions.  */
12416     case DW_AT_VMS_rtnbeg_pd_address:
12417       return "DW_AT_VMS_rtnbeg_pd_address";
12418     /* UPC extension.  */
12419     case DW_AT_upc_threads_scaled:
12420       return "DW_AT_upc_threads_scaled";
12421     /* PGI (STMicroelectronics) extensions.  */
12422     case DW_AT_PGI_lbase:
12423       return "DW_AT_PGI_lbase";
12424     case DW_AT_PGI_soffset:
12425       return "DW_AT_PGI_soffset";
12426     case DW_AT_PGI_lstride:
12427       return "DW_AT_PGI_lstride";
12428     default:
12429       return "DW_AT_<unknown>";
12430     }
12431 }
12432
12433 /* Convert a DWARF value form code into its string name.  */
12434
12435 static char *
12436 dwarf_form_name (unsigned form)
12437 {
12438   switch (form)
12439     {
12440     case DW_FORM_addr:
12441       return "DW_FORM_addr";
12442     case DW_FORM_block2:
12443       return "DW_FORM_block2";
12444     case DW_FORM_block4:
12445       return "DW_FORM_block4";
12446     case DW_FORM_data2:
12447       return "DW_FORM_data2";
12448     case DW_FORM_data4:
12449       return "DW_FORM_data4";
12450     case DW_FORM_data8:
12451       return "DW_FORM_data8";
12452     case DW_FORM_string:
12453       return "DW_FORM_string";
12454     case DW_FORM_block:
12455       return "DW_FORM_block";
12456     case DW_FORM_block1:
12457       return "DW_FORM_block1";
12458     case DW_FORM_data1:
12459       return "DW_FORM_data1";
12460     case DW_FORM_flag:
12461       return "DW_FORM_flag";
12462     case DW_FORM_sdata:
12463       return "DW_FORM_sdata";
12464     case DW_FORM_strp:
12465       return "DW_FORM_strp";
12466     case DW_FORM_udata:
12467       return "DW_FORM_udata";
12468     case DW_FORM_ref_addr:
12469       return "DW_FORM_ref_addr";
12470     case DW_FORM_ref1:
12471       return "DW_FORM_ref1";
12472     case DW_FORM_ref2:
12473       return "DW_FORM_ref2";
12474     case DW_FORM_ref4:
12475       return "DW_FORM_ref4";
12476     case DW_FORM_ref8:
12477       return "DW_FORM_ref8";
12478     case DW_FORM_ref_udata:
12479       return "DW_FORM_ref_udata";
12480     case DW_FORM_indirect:
12481       return "DW_FORM_indirect";
12482     case DW_FORM_sec_offset:
12483       return "DW_FORM_sec_offset";
12484     case DW_FORM_exprloc:
12485       return "DW_FORM_exprloc";
12486     case DW_FORM_flag_present:
12487       return "DW_FORM_flag_present";
12488     case DW_FORM_sig8:
12489       return "DW_FORM_sig8";
12490     default:
12491       return "DW_FORM_<unknown>";
12492     }
12493 }
12494
12495 /* Convert a DWARF stack opcode into its string name.  */
12496
12497 const char *
12498 dwarf_stack_op_name (unsigned op)
12499 {
12500   switch (op)
12501     {
12502     case DW_OP_addr:
12503       return "DW_OP_addr";
12504     case DW_OP_deref:
12505       return "DW_OP_deref";
12506     case DW_OP_const1u:
12507       return "DW_OP_const1u";
12508     case DW_OP_const1s:
12509       return "DW_OP_const1s";
12510     case DW_OP_const2u:
12511       return "DW_OP_const2u";
12512     case DW_OP_const2s:
12513       return "DW_OP_const2s";
12514     case DW_OP_const4u:
12515       return "DW_OP_const4u";
12516     case DW_OP_const4s:
12517       return "DW_OP_const4s";
12518     case DW_OP_const8u:
12519       return "DW_OP_const8u";
12520     case DW_OP_const8s:
12521       return "DW_OP_const8s";
12522     case DW_OP_constu:
12523       return "DW_OP_constu";
12524     case DW_OP_consts:
12525       return "DW_OP_consts";
12526     case DW_OP_dup:
12527       return "DW_OP_dup";
12528     case DW_OP_drop:
12529       return "DW_OP_drop";
12530     case DW_OP_over:
12531       return "DW_OP_over";
12532     case DW_OP_pick:
12533       return "DW_OP_pick";
12534     case DW_OP_swap:
12535       return "DW_OP_swap";
12536     case DW_OP_rot:
12537       return "DW_OP_rot";
12538     case DW_OP_xderef:
12539       return "DW_OP_xderef";
12540     case DW_OP_abs:
12541       return "DW_OP_abs";
12542     case DW_OP_and:
12543       return "DW_OP_and";
12544     case DW_OP_div:
12545       return "DW_OP_div";
12546     case DW_OP_minus:
12547       return "DW_OP_minus";
12548     case DW_OP_mod:
12549       return "DW_OP_mod";
12550     case DW_OP_mul:
12551       return "DW_OP_mul";
12552     case DW_OP_neg:
12553       return "DW_OP_neg";
12554     case DW_OP_not:
12555       return "DW_OP_not";
12556     case DW_OP_or:
12557       return "DW_OP_or";
12558     case DW_OP_plus:
12559       return "DW_OP_plus";
12560     case DW_OP_plus_uconst:
12561       return "DW_OP_plus_uconst";
12562     case DW_OP_shl:
12563       return "DW_OP_shl";
12564     case DW_OP_shr:
12565       return "DW_OP_shr";
12566     case DW_OP_shra:
12567       return "DW_OP_shra";
12568     case DW_OP_xor:
12569       return "DW_OP_xor";
12570     case DW_OP_bra:
12571       return "DW_OP_bra";
12572     case DW_OP_eq:
12573       return "DW_OP_eq";
12574     case DW_OP_ge:
12575       return "DW_OP_ge";
12576     case DW_OP_gt:
12577       return "DW_OP_gt";
12578     case DW_OP_le:
12579       return "DW_OP_le";
12580     case DW_OP_lt:
12581       return "DW_OP_lt";
12582     case DW_OP_ne:
12583       return "DW_OP_ne";
12584     case DW_OP_skip:
12585       return "DW_OP_skip";
12586     case DW_OP_lit0:
12587       return "DW_OP_lit0";
12588     case DW_OP_lit1:
12589       return "DW_OP_lit1";
12590     case DW_OP_lit2:
12591       return "DW_OP_lit2";
12592     case DW_OP_lit3:
12593       return "DW_OP_lit3";
12594     case DW_OP_lit4:
12595       return "DW_OP_lit4";
12596     case DW_OP_lit5:
12597       return "DW_OP_lit5";
12598     case DW_OP_lit6:
12599       return "DW_OP_lit6";
12600     case DW_OP_lit7:
12601       return "DW_OP_lit7";
12602     case DW_OP_lit8:
12603       return "DW_OP_lit8";
12604     case DW_OP_lit9:
12605       return "DW_OP_lit9";
12606     case DW_OP_lit10:
12607       return "DW_OP_lit10";
12608     case DW_OP_lit11:
12609       return "DW_OP_lit11";
12610     case DW_OP_lit12:
12611       return "DW_OP_lit12";
12612     case DW_OP_lit13:
12613       return "DW_OP_lit13";
12614     case DW_OP_lit14:
12615       return "DW_OP_lit14";
12616     case DW_OP_lit15:
12617       return "DW_OP_lit15";
12618     case DW_OP_lit16:
12619       return "DW_OP_lit16";
12620     case DW_OP_lit17:
12621       return "DW_OP_lit17";
12622     case DW_OP_lit18:
12623       return "DW_OP_lit18";
12624     case DW_OP_lit19:
12625       return "DW_OP_lit19";
12626     case DW_OP_lit20:
12627       return "DW_OP_lit20";
12628     case DW_OP_lit21:
12629       return "DW_OP_lit21";
12630     case DW_OP_lit22:
12631       return "DW_OP_lit22";
12632     case DW_OP_lit23:
12633       return "DW_OP_lit23";
12634     case DW_OP_lit24:
12635       return "DW_OP_lit24";
12636     case DW_OP_lit25:
12637       return "DW_OP_lit25";
12638     case DW_OP_lit26:
12639       return "DW_OP_lit26";
12640     case DW_OP_lit27:
12641       return "DW_OP_lit27";
12642     case DW_OP_lit28:
12643       return "DW_OP_lit28";
12644     case DW_OP_lit29:
12645       return "DW_OP_lit29";
12646     case DW_OP_lit30:
12647       return "DW_OP_lit30";
12648     case DW_OP_lit31:
12649       return "DW_OP_lit31";
12650     case DW_OP_reg0:
12651       return "DW_OP_reg0";
12652     case DW_OP_reg1:
12653       return "DW_OP_reg1";
12654     case DW_OP_reg2:
12655       return "DW_OP_reg2";
12656     case DW_OP_reg3:
12657       return "DW_OP_reg3";
12658     case DW_OP_reg4:
12659       return "DW_OP_reg4";
12660     case DW_OP_reg5:
12661       return "DW_OP_reg5";
12662     case DW_OP_reg6:
12663       return "DW_OP_reg6";
12664     case DW_OP_reg7:
12665       return "DW_OP_reg7";
12666     case DW_OP_reg8:
12667       return "DW_OP_reg8";
12668     case DW_OP_reg9:
12669       return "DW_OP_reg9";
12670     case DW_OP_reg10:
12671       return "DW_OP_reg10";
12672     case DW_OP_reg11:
12673       return "DW_OP_reg11";
12674     case DW_OP_reg12:
12675       return "DW_OP_reg12";
12676     case DW_OP_reg13:
12677       return "DW_OP_reg13";
12678     case DW_OP_reg14:
12679       return "DW_OP_reg14";
12680     case DW_OP_reg15:
12681       return "DW_OP_reg15";
12682     case DW_OP_reg16:
12683       return "DW_OP_reg16";
12684     case DW_OP_reg17:
12685       return "DW_OP_reg17";
12686     case DW_OP_reg18:
12687       return "DW_OP_reg18";
12688     case DW_OP_reg19:
12689       return "DW_OP_reg19";
12690     case DW_OP_reg20:
12691       return "DW_OP_reg20";
12692     case DW_OP_reg21:
12693       return "DW_OP_reg21";
12694     case DW_OP_reg22:
12695       return "DW_OP_reg22";
12696     case DW_OP_reg23:
12697       return "DW_OP_reg23";
12698     case DW_OP_reg24:
12699       return "DW_OP_reg24";
12700     case DW_OP_reg25:
12701       return "DW_OP_reg25";
12702     case DW_OP_reg26:
12703       return "DW_OP_reg26";
12704     case DW_OP_reg27:
12705       return "DW_OP_reg27";
12706     case DW_OP_reg28:
12707       return "DW_OP_reg28";
12708     case DW_OP_reg29:
12709       return "DW_OP_reg29";
12710     case DW_OP_reg30:
12711       return "DW_OP_reg30";
12712     case DW_OP_reg31:
12713       return "DW_OP_reg31";
12714     case DW_OP_breg0:
12715       return "DW_OP_breg0";
12716     case DW_OP_breg1:
12717       return "DW_OP_breg1";
12718     case DW_OP_breg2:
12719       return "DW_OP_breg2";
12720     case DW_OP_breg3:
12721       return "DW_OP_breg3";
12722     case DW_OP_breg4:
12723       return "DW_OP_breg4";
12724     case DW_OP_breg5:
12725       return "DW_OP_breg5";
12726     case DW_OP_breg6:
12727       return "DW_OP_breg6";
12728     case DW_OP_breg7:
12729       return "DW_OP_breg7";
12730     case DW_OP_breg8:
12731       return "DW_OP_breg8";
12732     case DW_OP_breg9:
12733       return "DW_OP_breg9";
12734     case DW_OP_breg10:
12735       return "DW_OP_breg10";
12736     case DW_OP_breg11:
12737       return "DW_OP_breg11";
12738     case DW_OP_breg12:
12739       return "DW_OP_breg12";
12740     case DW_OP_breg13:
12741       return "DW_OP_breg13";
12742     case DW_OP_breg14:
12743       return "DW_OP_breg14";
12744     case DW_OP_breg15:
12745       return "DW_OP_breg15";
12746     case DW_OP_breg16:
12747       return "DW_OP_breg16";
12748     case DW_OP_breg17:
12749       return "DW_OP_breg17";
12750     case DW_OP_breg18:
12751       return "DW_OP_breg18";
12752     case DW_OP_breg19:
12753       return "DW_OP_breg19";
12754     case DW_OP_breg20:
12755       return "DW_OP_breg20";
12756     case DW_OP_breg21:
12757       return "DW_OP_breg21";
12758     case DW_OP_breg22:
12759       return "DW_OP_breg22";
12760     case DW_OP_breg23:
12761       return "DW_OP_breg23";
12762     case DW_OP_breg24:
12763       return "DW_OP_breg24";
12764     case DW_OP_breg25:
12765       return "DW_OP_breg25";
12766     case DW_OP_breg26:
12767       return "DW_OP_breg26";
12768     case DW_OP_breg27:
12769       return "DW_OP_breg27";
12770     case DW_OP_breg28:
12771       return "DW_OP_breg28";
12772     case DW_OP_breg29:
12773       return "DW_OP_breg29";
12774     case DW_OP_breg30:
12775       return "DW_OP_breg30";
12776     case DW_OP_breg31:
12777       return "DW_OP_breg31";
12778     case DW_OP_regx:
12779       return "DW_OP_regx";
12780     case DW_OP_fbreg:
12781       return "DW_OP_fbreg";
12782     case DW_OP_bregx:
12783       return "DW_OP_bregx";
12784     case DW_OP_piece:
12785       return "DW_OP_piece";
12786     case DW_OP_deref_size:
12787       return "DW_OP_deref_size";
12788     case DW_OP_xderef_size:
12789       return "DW_OP_xderef_size";
12790     case DW_OP_nop:
12791       return "DW_OP_nop";
12792     /* DWARF 3 extensions.  */
12793     case DW_OP_push_object_address:
12794       return "DW_OP_push_object_address";
12795     case DW_OP_call2:
12796       return "DW_OP_call2";
12797     case DW_OP_call4:
12798       return "DW_OP_call4";
12799     case DW_OP_call_ref:
12800       return "DW_OP_call_ref";
12801     case DW_OP_form_tls_address:
12802       return "DW_OP_form_tls_address";
12803     case DW_OP_call_frame_cfa:
12804       return "DW_OP_call_frame_cfa";
12805     case DW_OP_bit_piece:
12806       return "DW_OP_bit_piece";
12807     /* DWARF 4 extensions.  */
12808     case DW_OP_implicit_value:
12809       return "DW_OP_implicit_value";
12810     case DW_OP_stack_value:
12811       return "DW_OP_stack_value";
12812     /* GNU extensions.  */
12813     case DW_OP_GNU_push_tls_address:
12814       return "DW_OP_GNU_push_tls_address";
12815     case DW_OP_GNU_uninit:
12816       return "DW_OP_GNU_uninit";
12817     case DW_OP_GNU_implicit_pointer:
12818       return "DW_OP_GNU_implicit_pointer";
12819     default:
12820       return NULL;
12821     }
12822 }
12823
12824 static char *
12825 dwarf_bool_name (unsigned mybool)
12826 {
12827   if (mybool)
12828     return "TRUE";
12829   else
12830     return "FALSE";
12831 }
12832
12833 /* Convert a DWARF type code into its string name.  */
12834
12835 static char *
12836 dwarf_type_encoding_name (unsigned enc)
12837 {
12838   switch (enc)
12839     {
12840     case DW_ATE_void:
12841       return "DW_ATE_void";
12842     case DW_ATE_address:
12843       return "DW_ATE_address";
12844     case DW_ATE_boolean:
12845       return "DW_ATE_boolean";
12846     case DW_ATE_complex_float:
12847       return "DW_ATE_complex_float";
12848     case DW_ATE_float:
12849       return "DW_ATE_float";
12850     case DW_ATE_signed:
12851       return "DW_ATE_signed";
12852     case DW_ATE_signed_char:
12853       return "DW_ATE_signed_char";
12854     case DW_ATE_unsigned:
12855       return "DW_ATE_unsigned";
12856     case DW_ATE_unsigned_char:
12857       return "DW_ATE_unsigned_char";
12858     /* DWARF 3.  */
12859     case DW_ATE_imaginary_float:
12860       return "DW_ATE_imaginary_float";
12861     case DW_ATE_packed_decimal:
12862       return "DW_ATE_packed_decimal";
12863     case DW_ATE_numeric_string:
12864       return "DW_ATE_numeric_string";
12865     case DW_ATE_edited:
12866       return "DW_ATE_edited";
12867     case DW_ATE_signed_fixed:
12868       return "DW_ATE_signed_fixed";
12869     case DW_ATE_unsigned_fixed:
12870       return "DW_ATE_unsigned_fixed";
12871     case DW_ATE_decimal_float:
12872       return "DW_ATE_decimal_float";
12873     /* DWARF 4.  */
12874     case DW_ATE_UTF:
12875       return "DW_ATE_UTF";
12876     /* HP extensions.  */
12877     case DW_ATE_HP_float80:
12878       return "DW_ATE_HP_float80";
12879     case DW_ATE_HP_complex_float80:
12880       return "DW_ATE_HP_complex_float80";
12881     case DW_ATE_HP_float128:
12882       return "DW_ATE_HP_float128";
12883     case DW_ATE_HP_complex_float128:
12884       return "DW_ATE_HP_complex_float128";
12885     case DW_ATE_HP_floathpintel:
12886       return "DW_ATE_HP_floathpintel";
12887     case DW_ATE_HP_imaginary_float80:
12888       return "DW_ATE_HP_imaginary_float80";
12889     case DW_ATE_HP_imaginary_float128:
12890       return "DW_ATE_HP_imaginary_float128";
12891     default:
12892       return "DW_ATE_<unknown>";
12893     }
12894 }
12895
12896 /* Convert a DWARF call frame info operation to its string name.  */
12897
12898 #if 0
12899 static char *
12900 dwarf_cfi_name (unsigned cfi_opc)
12901 {
12902   switch (cfi_opc)
12903     {
12904     case DW_CFA_advance_loc:
12905       return "DW_CFA_advance_loc";
12906     case DW_CFA_offset:
12907       return "DW_CFA_offset";
12908     case DW_CFA_restore:
12909       return "DW_CFA_restore";
12910     case DW_CFA_nop:
12911       return "DW_CFA_nop";
12912     case DW_CFA_set_loc:
12913       return "DW_CFA_set_loc";
12914     case DW_CFA_advance_loc1:
12915       return "DW_CFA_advance_loc1";
12916     case DW_CFA_advance_loc2:
12917       return "DW_CFA_advance_loc2";
12918     case DW_CFA_advance_loc4:
12919       return "DW_CFA_advance_loc4";
12920     case DW_CFA_offset_extended:
12921       return "DW_CFA_offset_extended";
12922     case DW_CFA_restore_extended:
12923       return "DW_CFA_restore_extended";
12924     case DW_CFA_undefined:
12925       return "DW_CFA_undefined";
12926     case DW_CFA_same_value:
12927       return "DW_CFA_same_value";
12928     case DW_CFA_register:
12929       return "DW_CFA_register";
12930     case DW_CFA_remember_state:
12931       return "DW_CFA_remember_state";
12932     case DW_CFA_restore_state:
12933       return "DW_CFA_restore_state";
12934     case DW_CFA_def_cfa:
12935       return "DW_CFA_def_cfa";
12936     case DW_CFA_def_cfa_register:
12937       return "DW_CFA_def_cfa_register";
12938     case DW_CFA_def_cfa_offset:
12939       return "DW_CFA_def_cfa_offset";
12940     /* DWARF 3.  */
12941     case DW_CFA_def_cfa_expression:
12942       return "DW_CFA_def_cfa_expression";
12943     case DW_CFA_expression:
12944       return "DW_CFA_expression";
12945     case DW_CFA_offset_extended_sf:
12946       return "DW_CFA_offset_extended_sf";
12947     case DW_CFA_def_cfa_sf:
12948       return "DW_CFA_def_cfa_sf";
12949     case DW_CFA_def_cfa_offset_sf:
12950       return "DW_CFA_def_cfa_offset_sf";
12951     case DW_CFA_val_offset:
12952       return "DW_CFA_val_offset";
12953     case DW_CFA_val_offset_sf:
12954       return "DW_CFA_val_offset_sf";
12955     case DW_CFA_val_expression:
12956       return "DW_CFA_val_expression";
12957     /* SGI/MIPS specific.  */
12958     case DW_CFA_MIPS_advance_loc8:
12959       return "DW_CFA_MIPS_advance_loc8";
12960     /* GNU extensions.  */
12961     case DW_CFA_GNU_window_save:
12962       return "DW_CFA_GNU_window_save";
12963     case DW_CFA_GNU_args_size:
12964       return "DW_CFA_GNU_args_size";
12965     case DW_CFA_GNU_negative_offset_extended:
12966       return "DW_CFA_GNU_negative_offset_extended";
12967     default:
12968       return "DW_CFA_<unknown>";
12969     }
12970 }
12971 #endif
12972
12973 static void
12974 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
12975 {
12976   unsigned int i;
12977
12978   print_spaces (indent, f);
12979   fprintf_unfiltered (f, "Die: %s (abbrev %d, offset 0x%x)\n",
12980            dwarf_tag_name (die->tag), die->abbrev, die->offset);
12981
12982   if (die->parent != NULL)
12983     {
12984       print_spaces (indent, f);
12985       fprintf_unfiltered (f, "  parent at offset: 0x%x\n",
12986                           die->parent->offset);
12987     }
12988
12989   print_spaces (indent, f);
12990   fprintf_unfiltered (f, "  has children: %s\n",
12991            dwarf_bool_name (die->child != NULL));
12992
12993   print_spaces (indent, f);
12994   fprintf_unfiltered (f, "  attributes:\n");
12995
12996   for (i = 0; i < die->num_attrs; ++i)
12997     {
12998       print_spaces (indent, f);
12999       fprintf_unfiltered (f, "    %s (%s) ",
13000                dwarf_attr_name (die->attrs[i].name),
13001                dwarf_form_name (die->attrs[i].form));
13002
13003       switch (die->attrs[i].form)
13004         {
13005         case DW_FORM_ref_addr:
13006         case DW_FORM_addr:
13007           fprintf_unfiltered (f, "address: ");
13008           fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
13009           break;
13010         case DW_FORM_block2:
13011         case DW_FORM_block4:
13012         case DW_FORM_block:
13013         case DW_FORM_block1:
13014           fprintf_unfiltered (f, "block: size %d",
13015                               DW_BLOCK (&die->attrs[i])->size);
13016           break;
13017         case DW_FORM_exprloc:
13018           fprintf_unfiltered (f, "expression: size %u",
13019                               DW_BLOCK (&die->attrs[i])->size);
13020           break;
13021         case DW_FORM_ref1:
13022         case DW_FORM_ref2:
13023         case DW_FORM_ref4:
13024           fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
13025                               (long) (DW_ADDR (&die->attrs[i])));
13026           break;
13027         case DW_FORM_data1:
13028         case DW_FORM_data2:
13029         case DW_FORM_data4:
13030         case DW_FORM_data8:
13031         case DW_FORM_udata:
13032         case DW_FORM_sdata:
13033           fprintf_unfiltered (f, "constant: %s",
13034                               pulongest (DW_UNSND (&die->attrs[i])));
13035           break;
13036         case DW_FORM_sec_offset:
13037           fprintf_unfiltered (f, "section offset: %s",
13038                               pulongest (DW_UNSND (&die->attrs[i])));
13039           break;
13040         case DW_FORM_sig8:
13041           if (DW_SIGNATURED_TYPE (&die->attrs[i]) != NULL)
13042             fprintf_unfiltered (f, "signatured type, offset: 0x%x",
13043                                 DW_SIGNATURED_TYPE (&die->attrs[i])->offset);
13044           else
13045             fprintf_unfiltered (f, "signatured type, offset: unknown");
13046           break;
13047         case DW_FORM_string:
13048         case DW_FORM_strp:
13049           fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
13050                    DW_STRING (&die->attrs[i])
13051                    ? DW_STRING (&die->attrs[i]) : "",
13052                    DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
13053           break;
13054         case DW_FORM_flag:
13055           if (DW_UNSND (&die->attrs[i]))
13056             fprintf_unfiltered (f, "flag: TRUE");
13057           else
13058             fprintf_unfiltered (f, "flag: FALSE");
13059           break;
13060         case DW_FORM_flag_present:
13061           fprintf_unfiltered (f, "flag: TRUE");
13062           break;
13063         case DW_FORM_indirect:
13064           /* The reader will have reduced the indirect form to
13065              the "base form" so this form should not occur.  */
13066           fprintf_unfiltered (f, 
13067                               "unexpected attribute form: DW_FORM_indirect");
13068           break;
13069         default:
13070           fprintf_unfiltered (f, "unsupported attribute form: %d.",
13071                    die->attrs[i].form);
13072           break;
13073         }
13074       fprintf_unfiltered (f, "\n");
13075     }
13076 }
13077
13078 static void
13079 dump_die_for_error (struct die_info *die)
13080 {
13081   dump_die_shallow (gdb_stderr, 0, die);
13082 }
13083
13084 static void
13085 dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
13086 {
13087   int indent = level * 4;
13088
13089   gdb_assert (die != NULL);
13090
13091   if (level >= max_level)
13092     return;
13093
13094   dump_die_shallow (f, indent, die);
13095
13096   if (die->child != NULL)
13097     {
13098       print_spaces (indent, f);
13099       fprintf_unfiltered (f, "  Children:");
13100       if (level + 1 < max_level)
13101         {
13102           fprintf_unfiltered (f, "\n");
13103           dump_die_1 (f, level + 1, max_level, die->child);
13104         }
13105       else
13106         {
13107           fprintf_unfiltered (f,
13108                               " [not printed, max nesting level reached]\n");
13109         }
13110     }
13111
13112   if (die->sibling != NULL && level > 0)
13113     {
13114       dump_die_1 (f, level, max_level, die->sibling);
13115     }
13116 }
13117
13118 /* This is called from the pdie macro in gdbinit.in.
13119    It's not static so gcc will keep a copy callable from gdb.  */
13120
13121 void
13122 dump_die (struct die_info *die, int max_level)
13123 {
13124   dump_die_1 (gdb_stdlog, 0, max_level, die);
13125 }
13126
13127 static void
13128 store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
13129 {
13130   void **slot;
13131
13132   slot = htab_find_slot_with_hash (cu->die_hash, die, die->offset, INSERT);
13133
13134   *slot = die;
13135 }
13136
13137 static int
13138 is_ref_attr (struct attribute *attr)
13139 {
13140   switch (attr->form)
13141     {
13142     case DW_FORM_ref_addr:
13143     case DW_FORM_ref1:
13144     case DW_FORM_ref2:
13145     case DW_FORM_ref4:
13146     case DW_FORM_ref8:
13147     case DW_FORM_ref_udata:
13148       return 1;
13149     default:
13150       return 0;
13151     }
13152 }
13153
13154 static unsigned int
13155 dwarf2_get_ref_die_offset (struct attribute *attr)
13156 {
13157   if (is_ref_attr (attr))
13158     return DW_ADDR (attr);
13159
13160   complaint (&symfile_complaints,
13161              _("unsupported die ref attribute form: '%s'"),
13162              dwarf_form_name (attr->form));
13163   return 0;
13164 }
13165
13166 /* Return the constant value held by ATTR.  Return DEFAULT_VALUE if
13167  * the value held by the attribute is not constant.  */
13168
13169 static LONGEST
13170 dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
13171 {
13172   if (attr->form == DW_FORM_sdata)
13173     return DW_SND (attr);
13174   else if (attr->form == DW_FORM_udata
13175            || attr->form == DW_FORM_data1
13176            || attr->form == DW_FORM_data2
13177            || attr->form == DW_FORM_data4
13178            || attr->form == DW_FORM_data8)
13179     return DW_UNSND (attr);
13180   else
13181     {
13182       complaint (&symfile_complaints,
13183                  _("Attribute value is not a constant (%s)"),
13184                  dwarf_form_name (attr->form));
13185       return default_value;
13186     }
13187 }
13188
13189 /* THIS_CU has a reference to PER_CU.  If necessary, load the new compilation
13190    unit and add it to our queue.
13191    The result is non-zero if PER_CU was queued, otherwise the result is zero
13192    meaning either PER_CU is already queued or it is already loaded.  */
13193
13194 static int
13195 maybe_queue_comp_unit (struct dwarf2_cu *this_cu,
13196                        struct dwarf2_per_cu_data *per_cu)
13197 {
13198   /* We may arrive here during partial symbol reading, if we need full
13199      DIEs to process an unusual case (e.g. template arguments).  Do
13200      not queue PER_CU, just tell our caller to load its DIEs.  */
13201   if (dwarf2_per_objfile->reading_partial_symbols)
13202     {
13203       if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
13204         return 1;
13205       return 0;
13206     }
13207
13208   /* Mark the dependence relation so that we don't flush PER_CU
13209      too early.  */
13210   dwarf2_add_dependence (this_cu, per_cu);
13211
13212   /* If it's already on the queue, we have nothing to do.  */
13213   if (per_cu->queued)
13214     return 0;
13215
13216   /* If the compilation unit is already loaded, just mark it as
13217      used.  */
13218   if (per_cu->cu != NULL)
13219     {
13220       per_cu->cu->last_used = 0;
13221       return 0;
13222     }
13223
13224   /* Add it to the queue.  */
13225   queue_comp_unit (per_cu, this_cu->objfile);
13226
13227   return 1;
13228 }
13229
13230 /* Follow reference or signature attribute ATTR of SRC_DIE.
13231    On entry *REF_CU is the CU of SRC_DIE.
13232    On exit *REF_CU is the CU of the result.  */
13233
13234 static struct die_info *
13235 follow_die_ref_or_sig (struct die_info *src_die, struct attribute *attr,
13236                        struct dwarf2_cu **ref_cu)
13237 {
13238   struct die_info *die;
13239
13240   if (is_ref_attr (attr))
13241     die = follow_die_ref (src_die, attr, ref_cu);
13242   else if (attr->form == DW_FORM_sig8)
13243     die = follow_die_sig (src_die, attr, ref_cu);
13244   else
13245     {
13246       dump_die_for_error (src_die);
13247       error (_("Dwarf Error: Expected reference attribute [in module %s]"),
13248              (*ref_cu)->objfile->name);
13249     }
13250
13251   return die;
13252 }
13253
13254 /* Follow reference OFFSET.
13255    On entry *REF_CU is the CU of the source die referencing OFFSET.
13256    On exit *REF_CU is the CU of the result.
13257    Returns NULL if OFFSET is invalid.  */
13258
13259 static struct die_info *
13260 follow_die_offset (unsigned int offset, struct dwarf2_cu **ref_cu)
13261 {
13262   struct die_info temp_die;
13263   struct dwarf2_cu *target_cu, *cu = *ref_cu;
13264
13265   gdb_assert (cu->per_cu != NULL);
13266
13267   target_cu = cu;
13268
13269   if (cu->per_cu->from_debug_types)
13270     {
13271       /* .debug_types CUs cannot reference anything outside their CU.
13272          If they need to, they have to reference a signatured type via
13273          DW_FORM_sig8.  */
13274       if (! offset_in_cu_p (&cu->header, offset))
13275         return NULL;
13276     }
13277   else if (! offset_in_cu_p (&cu->header, offset))
13278     {
13279       struct dwarf2_per_cu_data *per_cu;
13280
13281       per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile);
13282
13283       /* If necessary, add it to the queue and load its DIEs.  */
13284       if (maybe_queue_comp_unit (cu, per_cu))
13285         load_full_comp_unit (per_cu, cu->objfile);
13286
13287       target_cu = per_cu->cu;
13288     }
13289   else if (cu->dies == NULL)
13290     {
13291       /* We're loading full DIEs during partial symbol reading.  */
13292       gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
13293       load_full_comp_unit (cu->per_cu, cu->objfile);
13294     }
13295
13296   *ref_cu = target_cu;
13297   temp_die.offset = offset;
13298   return htab_find_with_hash (target_cu->die_hash, &temp_die, offset);
13299 }
13300
13301 /* Follow reference attribute ATTR of SRC_DIE.
13302    On entry *REF_CU is the CU of SRC_DIE.
13303    On exit *REF_CU is the CU of the result.  */
13304
13305 static struct die_info *
13306 follow_die_ref (struct die_info *src_die, struct attribute *attr,
13307                 struct dwarf2_cu **ref_cu)
13308 {
13309   unsigned int offset = dwarf2_get_ref_die_offset (attr);
13310   struct dwarf2_cu *cu = *ref_cu;
13311   struct die_info *die;
13312
13313   die = follow_die_offset (offset, ref_cu);
13314   if (!die)
13315     error (_("Dwarf Error: Cannot find DIE at 0x%x referenced from DIE "
13316            "at 0x%x [in module %s]"),
13317            offset, src_die->offset, cu->objfile->name);
13318
13319   return die;
13320 }
13321
13322 /* Return DWARF block and its CU referenced by OFFSET at PER_CU.  Returned
13323    value is intended for DW_OP_call*.  */
13324
13325 struct dwarf2_locexpr_baton
13326 dwarf2_fetch_die_location_block (unsigned int offset,
13327                                  struct dwarf2_per_cu_data *per_cu,
13328                                  CORE_ADDR (*get_frame_pc) (void *baton),
13329                                  void *baton)
13330 {
13331   struct dwarf2_cu *cu = per_cu->cu;
13332   struct die_info *die;
13333   struct attribute *attr;
13334   struct dwarf2_locexpr_baton retval;
13335
13336   dw2_setup (per_cu->objfile);
13337
13338   die = follow_die_offset (offset, &cu);
13339   if (!die)
13340     error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
13341            offset, per_cu->cu->objfile->name);
13342
13343   attr = dwarf2_attr (die, DW_AT_location, cu);
13344   if (!attr)
13345     {
13346       /* DWARF: "If there is no such attribute, then there is no effect.".  */
13347
13348       retval.data = NULL;
13349       retval.size = 0;
13350     }
13351   else if (attr_form_is_section_offset (attr))
13352     {
13353       struct dwarf2_loclist_baton loclist_baton;
13354       CORE_ADDR pc = (*get_frame_pc) (baton);
13355       size_t size;
13356
13357       fill_in_loclist_baton (cu, &loclist_baton, attr);
13358
13359       retval.data = dwarf2_find_location_expression (&loclist_baton,
13360                                                      &size, pc);
13361       retval.size = size;
13362     }
13363   else
13364     {
13365       if (!attr_form_is_block (attr))
13366         error (_("Dwarf Error: DIE at 0x%x referenced in module %s "
13367                  "is neither DW_FORM_block* nor DW_FORM_exprloc"),
13368                offset, per_cu->cu->objfile->name);
13369
13370       retval.data = DW_BLOCK (attr)->data;
13371       retval.size = DW_BLOCK (attr)->size;
13372     }
13373   retval.per_cu = cu->per_cu;
13374   return retval;
13375 }
13376
13377 /* Follow the signature attribute ATTR in SRC_DIE.
13378    On entry *REF_CU is the CU of SRC_DIE.
13379    On exit *REF_CU is the CU of the result.  */
13380
13381 static struct die_info *
13382 follow_die_sig (struct die_info *src_die, struct attribute *attr,
13383                 struct dwarf2_cu **ref_cu)
13384 {
13385   struct objfile *objfile = (*ref_cu)->objfile;
13386   struct die_info temp_die;
13387   struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
13388   struct dwarf2_cu *sig_cu;
13389   struct die_info *die;
13390
13391   /* sig_type will be NULL if the signatured type is missing from
13392      the debug info.  */
13393   if (sig_type == NULL)
13394     error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
13395              "at 0x%x [in module %s]"),
13396            src_die->offset, objfile->name);
13397
13398   /* If necessary, add it to the queue and load its DIEs.  */
13399
13400   if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu))
13401     read_signatured_type (objfile, sig_type);
13402
13403   gdb_assert (sig_type->per_cu.cu != NULL);
13404
13405   sig_cu = sig_type->per_cu.cu;
13406   temp_die.offset = sig_cu->header.offset + sig_type->type_offset;
13407   die = htab_find_with_hash (sig_cu->die_hash, &temp_die, temp_die.offset);
13408   if (die)
13409     {
13410       *ref_cu = sig_cu;
13411       return die;
13412     }
13413
13414   error (_("Dwarf Error: Cannot find signatured DIE at 0x%x referenced "
13415          "from DIE at 0x%x [in module %s]"),
13416          sig_type->type_offset, src_die->offset, objfile->name);
13417 }
13418
13419 /* Given an offset of a signatured type, return its signatured_type.  */
13420
13421 static struct signatured_type *
13422 lookup_signatured_type_at_offset (struct objfile *objfile, unsigned int offset)
13423 {
13424   gdb_byte *info_ptr = dwarf2_per_objfile->types.buffer + offset;
13425   unsigned int length, initial_length_size;
13426   unsigned int sig_offset;
13427   struct signatured_type find_entry, *type_sig;
13428
13429   length = read_initial_length (objfile->obfd, info_ptr, &initial_length_size);
13430   sig_offset = (initial_length_size
13431                 + 2 /*version*/
13432                 + (initial_length_size == 4 ? 4 : 8) /*debug_abbrev_offset*/
13433                 + 1 /*address_size*/);
13434   find_entry.signature = bfd_get_64 (objfile->obfd, info_ptr + sig_offset);
13435   type_sig = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
13436
13437   /* This is only used to lookup previously recorded types.
13438      If we didn't find it, it's our bug.  */
13439   gdb_assert (type_sig != NULL);
13440   gdb_assert (offset == type_sig->offset);
13441
13442   return type_sig;
13443 }
13444
13445 /* Read in signatured type at OFFSET and build its CU and die(s).  */
13446
13447 static void
13448 read_signatured_type_at_offset (struct objfile *objfile,
13449                                 unsigned int offset)
13450 {
13451   struct signatured_type *type_sig;
13452
13453   dwarf2_read_section (objfile, &dwarf2_per_objfile->types);
13454
13455   /* We have the section offset, but we need the signature to do the
13456      hash table lookup.  */
13457   type_sig = lookup_signatured_type_at_offset (objfile, offset);
13458
13459   gdb_assert (type_sig->per_cu.cu == NULL);
13460
13461   read_signatured_type (objfile, type_sig);
13462
13463   gdb_assert (type_sig->per_cu.cu != NULL);
13464 }
13465
13466 /* Read in a signatured type and build its CU and DIEs.  */
13467
13468 static void
13469 read_signatured_type (struct objfile *objfile,
13470                       struct signatured_type *type_sig)
13471 {
13472   gdb_byte *types_ptr;
13473   struct die_reader_specs reader_specs;
13474   struct dwarf2_cu *cu;
13475   ULONGEST signature;
13476   struct cleanup *back_to, *free_cu_cleanup;
13477
13478   dwarf2_read_section (objfile, &dwarf2_per_objfile->types);
13479   types_ptr = dwarf2_per_objfile->types.buffer + type_sig->offset;
13480
13481   gdb_assert (type_sig->per_cu.cu == NULL);
13482
13483   cu = xmalloc (sizeof (*cu));
13484   init_one_comp_unit (cu, objfile);
13485
13486   type_sig->per_cu.cu = cu;
13487   cu->per_cu = &type_sig->per_cu;
13488
13489   /* If an error occurs while loading, release our storage.  */
13490   free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
13491
13492   types_ptr = read_type_comp_unit_head (&cu->header, &signature,
13493                                         types_ptr, objfile->obfd);
13494   gdb_assert (signature == type_sig->signature);
13495
13496   cu->die_hash
13497     = htab_create_alloc_ex (cu->header.length / 12,
13498                             die_hash,
13499                             die_eq,
13500                             NULL,
13501                             &cu->comp_unit_obstack,
13502                             hashtab_obstack_allocate,
13503                             dummy_obstack_deallocate);
13504
13505   dwarf2_read_abbrevs (cu->objfile->obfd, cu);
13506   back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
13507
13508   init_cu_die_reader (&reader_specs, cu);
13509
13510   cu->dies = read_die_and_children (&reader_specs, types_ptr, &types_ptr,
13511                                     NULL /*parent*/);
13512
13513   /* We try not to read any attributes in this function, because not
13514      all objfiles needed for references have been loaded yet, and symbol
13515      table processing isn't initialized.  But we have to set the CU language,
13516      or we won't be able to build types correctly.  */
13517   prepare_one_comp_unit (cu, cu->dies);
13518
13519   do_cleanups (back_to);
13520
13521   /* We've successfully allocated this compilation unit.  Let our caller
13522      clean it up when finished with it.  */
13523   discard_cleanups (free_cu_cleanup);
13524
13525   type_sig->per_cu.cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
13526   dwarf2_per_objfile->read_in_chain = &type_sig->per_cu;
13527 }
13528
13529 /* Decode simple location descriptions.
13530    Given a pointer to a dwarf block that defines a location, compute
13531    the location and return the value.
13532
13533    NOTE drow/2003-11-18: This function is called in two situations
13534    now: for the address of static or global variables (partial symbols
13535    only) and for offsets into structures which are expected to be
13536    (more or less) constant.  The partial symbol case should go away,
13537    and only the constant case should remain.  That will let this
13538    function complain more accurately.  A few special modes are allowed
13539    without complaint for global variables (for instance, global
13540    register values and thread-local values).
13541
13542    A location description containing no operations indicates that the
13543    object is optimized out.  The return value is 0 for that case.
13544    FIXME drow/2003-11-16: No callers check for this case any more; soon all
13545    callers will only want a very basic result and this can become a
13546    complaint.
13547
13548    Note that stack[0] is unused except as a default error return.  */
13549
13550 static CORE_ADDR
13551 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
13552 {
13553   struct objfile *objfile = cu->objfile;
13554   int i;
13555   int size = blk->size;
13556   gdb_byte *data = blk->data;
13557   CORE_ADDR stack[64];
13558   int stacki;
13559   unsigned int bytes_read, unsnd;
13560   gdb_byte op;
13561
13562   i = 0;
13563   stacki = 0;
13564   stack[stacki] = 0;
13565   stack[++stacki] = 0;
13566
13567   while (i < size)
13568     {
13569       op = data[i++];
13570       switch (op)
13571         {
13572         case DW_OP_lit0:
13573         case DW_OP_lit1:
13574         case DW_OP_lit2:
13575         case DW_OP_lit3:
13576         case DW_OP_lit4:
13577         case DW_OP_lit5:
13578         case DW_OP_lit6:
13579         case DW_OP_lit7:
13580         case DW_OP_lit8:
13581         case DW_OP_lit9:
13582         case DW_OP_lit10:
13583         case DW_OP_lit11:
13584         case DW_OP_lit12:
13585         case DW_OP_lit13:
13586         case DW_OP_lit14:
13587         case DW_OP_lit15:
13588         case DW_OP_lit16:
13589         case DW_OP_lit17:
13590         case DW_OP_lit18:
13591         case DW_OP_lit19:
13592         case DW_OP_lit20:
13593         case DW_OP_lit21:
13594         case DW_OP_lit22:
13595         case DW_OP_lit23:
13596         case DW_OP_lit24:
13597         case DW_OP_lit25:
13598         case DW_OP_lit26:
13599         case DW_OP_lit27:
13600         case DW_OP_lit28:
13601         case DW_OP_lit29:
13602         case DW_OP_lit30:
13603         case DW_OP_lit31:
13604           stack[++stacki] = op - DW_OP_lit0;
13605           break;
13606
13607         case DW_OP_reg0:
13608         case DW_OP_reg1:
13609         case DW_OP_reg2:
13610         case DW_OP_reg3:
13611         case DW_OP_reg4:
13612         case DW_OP_reg5:
13613         case DW_OP_reg6:
13614         case DW_OP_reg7:
13615         case DW_OP_reg8:
13616         case DW_OP_reg9:
13617         case DW_OP_reg10:
13618         case DW_OP_reg11:
13619         case DW_OP_reg12:
13620         case DW_OP_reg13:
13621         case DW_OP_reg14:
13622         case DW_OP_reg15:
13623         case DW_OP_reg16:
13624         case DW_OP_reg17:
13625         case DW_OP_reg18:
13626         case DW_OP_reg19:
13627         case DW_OP_reg20:
13628         case DW_OP_reg21:
13629         case DW_OP_reg22:
13630         case DW_OP_reg23:
13631         case DW_OP_reg24:
13632         case DW_OP_reg25:
13633         case DW_OP_reg26:
13634         case DW_OP_reg27:
13635         case DW_OP_reg28:
13636         case DW_OP_reg29:
13637         case DW_OP_reg30:
13638         case DW_OP_reg31:
13639           stack[++stacki] = op - DW_OP_reg0;
13640           if (i < size)
13641             dwarf2_complex_location_expr_complaint ();
13642           break;
13643
13644         case DW_OP_regx:
13645           unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
13646           i += bytes_read;
13647           stack[++stacki] = unsnd;
13648           if (i < size)
13649             dwarf2_complex_location_expr_complaint ();
13650           break;
13651
13652         case DW_OP_addr:
13653           stack[++stacki] = read_address (objfile->obfd, &data[i],
13654                                           cu, &bytes_read);
13655           i += bytes_read;
13656           break;
13657
13658         case DW_OP_const1u:
13659           stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
13660           i += 1;
13661           break;
13662
13663         case DW_OP_const1s:
13664           stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
13665           i += 1;
13666           break;
13667
13668         case DW_OP_const2u:
13669           stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
13670           i += 2;
13671           break;
13672
13673         case DW_OP_const2s:
13674           stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
13675           i += 2;
13676           break;
13677
13678         case DW_OP_const4u:
13679           stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
13680           i += 4;
13681           break;
13682
13683         case DW_OP_const4s:
13684           stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
13685           i += 4;
13686           break;
13687
13688         case DW_OP_constu:
13689           stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
13690                                                   &bytes_read);
13691           i += bytes_read;
13692           break;
13693
13694         case DW_OP_consts:
13695           stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
13696           i += bytes_read;
13697           break;
13698
13699         case DW_OP_dup:
13700           stack[stacki + 1] = stack[stacki];
13701           stacki++;
13702           break;
13703
13704         case DW_OP_plus:
13705           stack[stacki - 1] += stack[stacki];
13706           stacki--;
13707           break;
13708
13709         case DW_OP_plus_uconst:
13710           stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
13711                                                  &bytes_read);
13712           i += bytes_read;
13713           break;
13714
13715         case DW_OP_minus:
13716           stack[stacki - 1] -= stack[stacki];
13717           stacki--;
13718           break;
13719
13720         case DW_OP_deref:
13721           /* If we're not the last op, then we definitely can't encode
13722              this using GDB's address_class enum.  This is valid for partial
13723              global symbols, although the variable's address will be bogus
13724              in the psymtab.  */
13725           if (i < size)
13726             dwarf2_complex_location_expr_complaint ();
13727           break;
13728
13729         case DW_OP_GNU_push_tls_address:
13730           /* The top of the stack has the offset from the beginning
13731              of the thread control block at which the variable is located.  */
13732           /* Nothing should follow this operator, so the top of stack would
13733              be returned.  */
13734           /* This is valid for partial global symbols, but the variable's
13735              address will be bogus in the psymtab.  */
13736           if (i < size)
13737             dwarf2_complex_location_expr_complaint ();
13738           break;
13739
13740         case DW_OP_GNU_uninit:
13741           break;
13742
13743         default:
13744           {
13745             const char *name = dwarf_stack_op_name (op);
13746
13747             if (name)
13748               complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
13749                          name);
13750             else
13751               complaint (&symfile_complaints, _("unsupported stack op: '%02x'"),
13752                          op);
13753           }
13754
13755           return (stack[stacki]);
13756         }
13757
13758       /* Enforce maximum stack depth of SIZE-1 to avoid writing
13759          outside of the allocated space.  Also enforce minimum>0.  */
13760       if (stacki >= ARRAY_SIZE (stack) - 1)
13761         {
13762           complaint (&symfile_complaints,
13763                      _("location description stack overflow"));
13764           return 0;
13765         }
13766
13767       if (stacki <= 0)
13768         {
13769           complaint (&symfile_complaints,
13770                      _("location description stack underflow"));
13771           return 0;
13772         }
13773     }
13774   return (stack[stacki]);
13775 }
13776
13777 /* memory allocation interface */
13778
13779 static struct dwarf_block *
13780 dwarf_alloc_block (struct dwarf2_cu *cu)
13781 {
13782   struct dwarf_block *blk;
13783
13784   blk = (struct dwarf_block *)
13785     obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
13786   return (blk);
13787 }
13788
13789 static struct abbrev_info *
13790 dwarf_alloc_abbrev (struct dwarf2_cu *cu)
13791 {
13792   struct abbrev_info *abbrev;
13793
13794   abbrev = (struct abbrev_info *)
13795     obstack_alloc (&cu->abbrev_obstack, sizeof (struct abbrev_info));
13796   memset (abbrev, 0, sizeof (struct abbrev_info));
13797   return (abbrev);
13798 }
13799
13800 static struct die_info *
13801 dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
13802 {
13803   struct die_info *die;
13804   size_t size = sizeof (struct die_info);
13805
13806   if (num_attrs > 1)
13807     size += (num_attrs - 1) * sizeof (struct attribute);
13808
13809   die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
13810   memset (die, 0, sizeof (struct die_info));
13811   return (die);
13812 }
13813
13814 \f
13815 /* Macro support.  */
13816
13817 /* Return the full name of file number I in *LH's file name table.
13818    Use COMP_DIR as the name of the current directory of the
13819    compilation.  The result is allocated using xmalloc; the caller is
13820    responsible for freeing it.  */
13821 static char *
13822 file_full_name (int file, struct line_header *lh, const char *comp_dir)
13823 {
13824   /* Is the file number a valid index into the line header's file name
13825      table?  Remember that file numbers start with one, not zero.  */
13826   if (1 <= file && file <= lh->num_file_names)
13827     {
13828       struct file_entry *fe = &lh->file_names[file - 1];
13829
13830       if (IS_ABSOLUTE_PATH (fe->name))
13831         return xstrdup (fe->name);
13832       else
13833         {
13834           const char *dir;
13835           int dir_len;
13836           char *full_name;
13837
13838           if (fe->dir_index)
13839             dir = lh->include_dirs[fe->dir_index - 1];
13840           else
13841             dir = comp_dir;
13842
13843           if (dir)
13844             {
13845               dir_len = strlen (dir);
13846               full_name = xmalloc (dir_len + 1 + strlen (fe->name) + 1);
13847               strcpy (full_name, dir);
13848               full_name[dir_len] = '/';
13849               strcpy (full_name + dir_len + 1, fe->name);
13850               return full_name;
13851             }
13852           else
13853             return xstrdup (fe->name);
13854         }
13855     }
13856   else
13857     {
13858       /* The compiler produced a bogus file number.  We can at least
13859          record the macro definitions made in the file, even if we
13860          won't be able to find the file by name.  */
13861       char fake_name[80];
13862
13863       sprintf (fake_name, "<bad macro file number %d>", file);
13864
13865       complaint (&symfile_complaints,
13866                  _("bad file number in macro information (%d)"),
13867                  file);
13868
13869       return xstrdup (fake_name);
13870     }
13871 }
13872
13873
13874 static struct macro_source_file *
13875 macro_start_file (int file, int line,
13876                   struct macro_source_file *current_file,
13877                   const char *comp_dir,
13878                   struct line_header *lh, struct objfile *objfile)
13879 {
13880   /* The full name of this source file.  */
13881   char *full_name = file_full_name (file, lh, comp_dir);
13882
13883   /* We don't create a macro table for this compilation unit
13884      at all until we actually get a filename.  */
13885   if (! pending_macros)
13886     pending_macros = new_macro_table (&objfile->objfile_obstack,
13887                                       objfile->macro_cache);
13888
13889   if (! current_file)
13890     /* If we have no current file, then this must be the start_file
13891        directive for the compilation unit's main source file.  */
13892     current_file = macro_set_main (pending_macros, full_name);
13893   else
13894     current_file = macro_include (current_file, line, full_name);
13895
13896   xfree (full_name);
13897
13898   return current_file;
13899 }
13900
13901
13902 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
13903    followed by a null byte.  */
13904 static char *
13905 copy_string (const char *buf, int len)
13906 {
13907   char *s = xmalloc (len + 1);
13908
13909   memcpy (s, buf, len);
13910   s[len] = '\0';
13911   return s;
13912 }
13913
13914
13915 static const char *
13916 consume_improper_spaces (const char *p, const char *body)
13917 {
13918   if (*p == ' ')
13919     {
13920       complaint (&symfile_complaints,
13921                  _("macro definition contains spaces "
13922                    "in formal argument list:\n`%s'"),
13923                  body);
13924
13925       while (*p == ' ')
13926         p++;
13927     }
13928
13929   return p;
13930 }
13931
13932
13933 static void
13934 parse_macro_definition (struct macro_source_file *file, int line,
13935                         const char *body)
13936 {
13937   const char *p;
13938
13939   /* The body string takes one of two forms.  For object-like macro
13940      definitions, it should be:
13941
13942         <macro name> " " <definition>
13943
13944      For function-like macro definitions, it should be:
13945
13946         <macro name> "() " <definition>
13947      or
13948         <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
13949
13950      Spaces may appear only where explicitly indicated, and in the
13951      <definition>.
13952
13953      The Dwarf 2 spec says that an object-like macro's name is always
13954      followed by a space, but versions of GCC around March 2002 omit
13955      the space when the macro's definition is the empty string.
13956
13957      The Dwarf 2 spec says that there should be no spaces between the
13958      formal arguments in a function-like macro's formal argument list,
13959      but versions of GCC around March 2002 include spaces after the
13960      commas.  */
13961
13962
13963   /* Find the extent of the macro name.  The macro name is terminated
13964      by either a space or null character (for an object-like macro) or
13965      an opening paren (for a function-like macro).  */
13966   for (p = body; *p; p++)
13967     if (*p == ' ' || *p == '(')
13968       break;
13969
13970   if (*p == ' ' || *p == '\0')
13971     {
13972       /* It's an object-like macro.  */
13973       int name_len = p - body;
13974       char *name = copy_string (body, name_len);
13975       const char *replacement;
13976
13977       if (*p == ' ')
13978         replacement = body + name_len + 1;
13979       else
13980         {
13981           dwarf2_macro_malformed_definition_complaint (body);
13982           replacement = body + name_len;
13983         }
13984
13985       macro_define_object (file, line, name, replacement);
13986
13987       xfree (name);
13988     }
13989   else if (*p == '(')
13990     {
13991       /* It's a function-like macro.  */
13992       char *name = copy_string (body, p - body);
13993       int argc = 0;
13994       int argv_size = 1;
13995       char **argv = xmalloc (argv_size * sizeof (*argv));
13996
13997       p++;
13998
13999       p = consume_improper_spaces (p, body);
14000
14001       /* Parse the formal argument list.  */
14002       while (*p && *p != ')')
14003         {
14004           /* Find the extent of the current argument name.  */
14005           const char *arg_start = p;
14006
14007           while (*p && *p != ',' && *p != ')' && *p != ' ')
14008             p++;
14009
14010           if (! *p || p == arg_start)
14011             dwarf2_macro_malformed_definition_complaint (body);
14012           else
14013             {
14014               /* Make sure argv has room for the new argument.  */
14015               if (argc >= argv_size)
14016                 {
14017                   argv_size *= 2;
14018                   argv = xrealloc (argv, argv_size * sizeof (*argv));
14019                 }
14020
14021               argv[argc++] = copy_string (arg_start, p - arg_start);
14022             }
14023
14024           p = consume_improper_spaces (p, body);
14025
14026           /* Consume the comma, if present.  */
14027           if (*p == ',')
14028             {
14029               p++;
14030
14031               p = consume_improper_spaces (p, body);
14032             }
14033         }
14034
14035       if (*p == ')')
14036         {
14037           p++;
14038
14039           if (*p == ' ')
14040             /* Perfectly formed definition, no complaints.  */
14041             macro_define_function (file, line, name,
14042                                    argc, (const char **) argv,
14043                                    p + 1);
14044           else if (*p == '\0')
14045             {
14046               /* Complain, but do define it.  */
14047               dwarf2_macro_malformed_definition_complaint (body);
14048               macro_define_function (file, line, name,
14049                                      argc, (const char **) argv,
14050                                      p);
14051             }
14052           else
14053             /* Just complain.  */
14054             dwarf2_macro_malformed_definition_complaint (body);
14055         }
14056       else
14057         /* Just complain.  */
14058         dwarf2_macro_malformed_definition_complaint (body);
14059
14060       xfree (name);
14061       {
14062         int i;
14063
14064         for (i = 0; i < argc; i++)
14065           xfree (argv[i]);
14066       }
14067       xfree (argv);
14068     }
14069   else
14070     dwarf2_macro_malformed_definition_complaint (body);
14071 }
14072
14073
14074 static void
14075 dwarf_decode_macros (struct line_header *lh, unsigned int offset,
14076                      char *comp_dir, bfd *abfd,
14077                      struct dwarf2_cu *cu)
14078 {
14079   gdb_byte *mac_ptr, *mac_end;
14080   struct macro_source_file *current_file = 0;
14081   enum dwarf_macinfo_record_type macinfo_type;
14082   int at_commandline;
14083
14084   dwarf2_read_section (dwarf2_per_objfile->objfile,
14085                        &dwarf2_per_objfile->macinfo);
14086   if (dwarf2_per_objfile->macinfo.buffer == NULL)
14087     {
14088       complaint (&symfile_complaints, _("missing .debug_macinfo section"));
14089       return;
14090     }
14091
14092   /* First pass: Find the name of the base filename.
14093      This filename is needed in order to process all macros whose definition
14094      (or undefinition) comes from the command line.  These macros are defined
14095      before the first DW_MACINFO_start_file entry, and yet still need to be
14096      associated to the base file.
14097
14098      To determine the base file name, we scan the macro definitions until we
14099      reach the first DW_MACINFO_start_file entry.  We then initialize
14100      CURRENT_FILE accordingly so that any macro definition found before the
14101      first DW_MACINFO_start_file can still be associated to the base file.  */
14102
14103   mac_ptr = dwarf2_per_objfile->macinfo.buffer + offset;
14104   mac_end = dwarf2_per_objfile->macinfo.buffer
14105     + dwarf2_per_objfile->macinfo.size;
14106
14107   do
14108     {
14109       /* Do we at least have room for a macinfo type byte?  */
14110       if (mac_ptr >= mac_end)
14111         {
14112           /* Complaint is printed during the second pass as GDB will probably
14113              stop the first pass earlier upon finding
14114              DW_MACINFO_start_file.  */
14115           break;
14116         }
14117
14118       macinfo_type = read_1_byte (abfd, mac_ptr);
14119       mac_ptr++;
14120
14121       switch (macinfo_type)
14122         {
14123           /* A zero macinfo type indicates the end of the macro
14124              information.  */
14125         case 0:
14126           break;
14127
14128         case DW_MACINFO_define:
14129         case DW_MACINFO_undef:
14130           /* Only skip the data by MAC_PTR.  */
14131           {
14132             unsigned int bytes_read;
14133
14134             read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14135             mac_ptr += bytes_read;
14136             read_direct_string (abfd, mac_ptr, &bytes_read);
14137             mac_ptr += bytes_read;
14138           }
14139           break;
14140
14141         case DW_MACINFO_start_file:
14142           {
14143             unsigned int bytes_read;
14144             int line, file;
14145
14146             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14147             mac_ptr += bytes_read;
14148             file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14149             mac_ptr += bytes_read;
14150
14151             current_file = macro_start_file (file, line, current_file,
14152                                              comp_dir, lh, cu->objfile);
14153           }
14154           break;
14155
14156         case DW_MACINFO_end_file:
14157           /* No data to skip by MAC_PTR.  */
14158           break;
14159
14160         case DW_MACINFO_vendor_ext:
14161           /* Only skip the data by MAC_PTR.  */
14162           {
14163             unsigned int bytes_read;
14164
14165             read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14166             mac_ptr += bytes_read;
14167             read_direct_string (abfd, mac_ptr, &bytes_read);
14168             mac_ptr += bytes_read;
14169           }
14170           break;
14171
14172         default:
14173           break;
14174         }
14175     } while (macinfo_type != 0 && current_file == NULL);
14176
14177   /* Second pass: Process all entries.
14178
14179      Use the AT_COMMAND_LINE flag to determine whether we are still processing
14180      command-line macro definitions/undefinitions.  This flag is unset when we
14181      reach the first DW_MACINFO_start_file entry.  */
14182
14183   mac_ptr = dwarf2_per_objfile->macinfo.buffer + offset;
14184
14185   /* Determines if GDB is still before first DW_MACINFO_start_file.  If true
14186      GDB is still reading the definitions from command line.  First
14187      DW_MACINFO_start_file will need to be ignored as it was already executed
14188      to create CURRENT_FILE for the main source holding also the command line
14189      definitions.  On first met DW_MACINFO_start_file this flag is reset to
14190      normally execute all the remaining DW_MACINFO_start_file macinfos.  */
14191
14192   at_commandline = 1;
14193
14194   do
14195     {
14196       /* Do we at least have room for a macinfo type byte?  */
14197       if (mac_ptr >= mac_end)
14198         {
14199           dwarf2_macros_too_long_complaint ();
14200           break;
14201         }
14202
14203       macinfo_type = read_1_byte (abfd, mac_ptr);
14204       mac_ptr++;
14205
14206       switch (macinfo_type)
14207         {
14208           /* A zero macinfo type indicates the end of the macro
14209              information.  */
14210         case 0:
14211           break;
14212
14213         case DW_MACINFO_define:
14214         case DW_MACINFO_undef:
14215           {
14216             unsigned int bytes_read;
14217             int line;
14218             char *body;
14219
14220             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14221             mac_ptr += bytes_read;
14222             body = read_direct_string (abfd, mac_ptr, &bytes_read);
14223             mac_ptr += bytes_read;
14224
14225             if (! current_file)
14226               {
14227                 /* DWARF violation as no main source is present.  */
14228                 complaint (&symfile_complaints,
14229                            _("debug info with no main source gives macro %s "
14230                              "on line %d: %s"),
14231                            macinfo_type == DW_MACINFO_define ?
14232                              _("definition") :
14233                                macinfo_type == DW_MACINFO_undef ?
14234                                  _("undefinition") :
14235                                  _("something-or-other"), line, body);
14236                 break;
14237               }
14238             if ((line == 0 && !at_commandline)
14239                 || (line != 0 && at_commandline))
14240               complaint (&symfile_complaints,
14241                          _("debug info gives %s macro %s with %s line %d: %s"),
14242                          at_commandline ? _("command-line") : _("in-file"),
14243                          macinfo_type == DW_MACINFO_define ?
14244                            _("definition") :
14245                              macinfo_type == DW_MACINFO_undef ?
14246                                _("undefinition") :
14247                                _("something-or-other"),
14248                          line == 0 ? _("zero") : _("non-zero"), line, body);
14249
14250             if (macinfo_type == DW_MACINFO_define)
14251               parse_macro_definition (current_file, line, body);
14252             else if (macinfo_type == DW_MACINFO_undef)
14253               macro_undef (current_file, line, body);
14254           }
14255           break;
14256
14257         case DW_MACINFO_start_file:
14258           {
14259             unsigned int bytes_read;
14260             int line, file;
14261
14262             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14263             mac_ptr += bytes_read;
14264             file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14265             mac_ptr += bytes_read;
14266
14267             if ((line == 0 && !at_commandline)
14268                 || (line != 0 && at_commandline))
14269               complaint (&symfile_complaints,
14270                          _("debug info gives source %d included "
14271                            "from %s at %s line %d"),
14272                          file, at_commandline ? _("command-line") : _("file"),
14273                          line == 0 ? _("zero") : _("non-zero"), line);
14274
14275             if (at_commandline)
14276               {
14277                 /* This DW_MACINFO_start_file was executed in the pass one.  */
14278                 at_commandline = 0;
14279               }
14280             else
14281               current_file = macro_start_file (file, line,
14282                                                current_file, comp_dir,
14283                                                lh, cu->objfile);
14284           }
14285           break;
14286
14287         case DW_MACINFO_end_file:
14288           if (! current_file)
14289             complaint (&symfile_complaints,
14290                        _("macro debug info has an unmatched "
14291                          "`close_file' directive"));
14292           else
14293             {
14294               current_file = current_file->included_by;
14295               if (! current_file)
14296                 {
14297                   enum dwarf_macinfo_record_type next_type;
14298
14299                   /* GCC circa March 2002 doesn't produce the zero
14300                      type byte marking the end of the compilation
14301                      unit.  Complain if it's not there, but exit no
14302                      matter what.  */
14303
14304                   /* Do we at least have room for a macinfo type byte?  */
14305                   if (mac_ptr >= mac_end)
14306                     {
14307                       dwarf2_macros_too_long_complaint ();
14308                       return;
14309                     }
14310
14311                   /* We don't increment mac_ptr here, so this is just
14312                      a look-ahead.  */
14313                   next_type = read_1_byte (abfd, mac_ptr);
14314                   if (next_type != 0)
14315                     complaint (&symfile_complaints,
14316                                _("no terminating 0-type entry for "
14317                                  "macros in `.debug_macinfo' section"));
14318
14319                   return;
14320                 }
14321             }
14322           break;
14323
14324         case DW_MACINFO_vendor_ext:
14325           {
14326             unsigned int bytes_read;
14327             int constant;
14328
14329             constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14330             mac_ptr += bytes_read;
14331             read_direct_string (abfd, mac_ptr, &bytes_read);
14332             mac_ptr += bytes_read;
14333
14334             /* We don't recognize any vendor extensions.  */
14335           }
14336           break;
14337         }
14338     } while (macinfo_type != 0);
14339 }
14340
14341 /* Check if the attribute's form is a DW_FORM_block*
14342    if so return true else false.  */
14343 static int
14344 attr_form_is_block (struct attribute *attr)
14345 {
14346   return (attr == NULL ? 0 :
14347       attr->form == DW_FORM_block1
14348       || attr->form == DW_FORM_block2
14349       || attr->form == DW_FORM_block4
14350       || attr->form == DW_FORM_block
14351       || attr->form == DW_FORM_exprloc);
14352 }
14353
14354 /* Return non-zero if ATTR's value is a section offset --- classes
14355    lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
14356    You may use DW_UNSND (attr) to retrieve such offsets.
14357
14358    Section 7.5.4, "Attribute Encodings", explains that no attribute
14359    may have a value that belongs to more than one of these classes; it
14360    would be ambiguous if we did, because we use the same forms for all
14361    of them.  */
14362 static int
14363 attr_form_is_section_offset (struct attribute *attr)
14364 {
14365   return (attr->form == DW_FORM_data4
14366           || attr->form == DW_FORM_data8
14367           || attr->form == DW_FORM_sec_offset);
14368 }
14369
14370
14371 /* Return non-zero if ATTR's value falls in the 'constant' class, or
14372    zero otherwise.  When this function returns true, you can apply
14373    dwarf2_get_attr_constant_value to it.
14374
14375    However, note that for some attributes you must check
14376    attr_form_is_section_offset before using this test.  DW_FORM_data4
14377    and DW_FORM_data8 are members of both the constant class, and of
14378    the classes that contain offsets into other debug sections
14379    (lineptr, loclistptr, macptr or rangelistptr).  The DWARF spec says
14380    that, if an attribute's can be either a constant or one of the
14381    section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
14382    taken as section offsets, not constants.  */
14383 static int
14384 attr_form_is_constant (struct attribute *attr)
14385 {
14386   switch (attr->form)
14387     {
14388     case DW_FORM_sdata:
14389     case DW_FORM_udata:
14390     case DW_FORM_data1:
14391     case DW_FORM_data2:
14392     case DW_FORM_data4:
14393     case DW_FORM_data8:
14394       return 1;
14395     default:
14396       return 0;
14397     }
14398 }
14399
14400 /* A helper function that fills in a dwarf2_loclist_baton.  */
14401
14402 static void
14403 fill_in_loclist_baton (struct dwarf2_cu *cu,
14404                        struct dwarf2_loclist_baton *baton,
14405                        struct attribute *attr)
14406 {
14407   dwarf2_read_section (dwarf2_per_objfile->objfile,
14408                        &dwarf2_per_objfile->loc);
14409
14410   baton->per_cu = cu->per_cu;
14411   gdb_assert (baton->per_cu);
14412   /* We don't know how long the location list is, but make sure we
14413      don't run off the edge of the section.  */
14414   baton->size = dwarf2_per_objfile->loc.size - DW_UNSND (attr);
14415   baton->data = dwarf2_per_objfile->loc.buffer + DW_UNSND (attr);
14416   baton->base_address = cu->base_address;
14417 }
14418
14419 static void
14420 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
14421                              struct dwarf2_cu *cu)
14422 {
14423   if (attr_form_is_section_offset (attr)
14424       /* ".debug_loc" may not exist at all, or the offset may be outside
14425          the section.  If so, fall through to the complaint in the
14426          other branch.  */
14427       && DW_UNSND (attr) < dwarf2_section_size (dwarf2_per_objfile->objfile,
14428                                                 &dwarf2_per_objfile->loc))
14429     {
14430       struct dwarf2_loclist_baton *baton;
14431
14432       baton = obstack_alloc (&cu->objfile->objfile_obstack,
14433                              sizeof (struct dwarf2_loclist_baton));
14434
14435       fill_in_loclist_baton (cu, baton, attr);
14436
14437       if (cu->base_known == 0)
14438         complaint (&symfile_complaints,
14439                    _("Location list used without "
14440                      "specifying the CU base address."));
14441
14442       SYMBOL_COMPUTED_OPS (sym) = &dwarf2_loclist_funcs;
14443       SYMBOL_LOCATION_BATON (sym) = baton;
14444     }
14445   else
14446     {
14447       struct dwarf2_locexpr_baton *baton;
14448
14449       baton = obstack_alloc (&cu->objfile->objfile_obstack,
14450                              sizeof (struct dwarf2_locexpr_baton));
14451       baton->per_cu = cu->per_cu;
14452       gdb_assert (baton->per_cu);
14453
14454       if (attr_form_is_block (attr))
14455         {
14456           /* Note that we're just copying the block's data pointer
14457              here, not the actual data.  We're still pointing into the
14458              info_buffer for SYM's objfile; right now we never release
14459              that buffer, but when we do clean up properly this may
14460              need to change.  */
14461           baton->size = DW_BLOCK (attr)->size;
14462           baton->data = DW_BLOCK (attr)->data;
14463         }
14464       else
14465         {
14466           dwarf2_invalid_attrib_class_complaint ("location description",
14467                                                  SYMBOL_NATURAL_NAME (sym));
14468           baton->size = 0;
14469           baton->data = NULL;
14470         }
14471
14472       SYMBOL_COMPUTED_OPS (sym) = &dwarf2_locexpr_funcs;
14473       SYMBOL_LOCATION_BATON (sym) = baton;
14474     }
14475 }
14476
14477 /* Return the OBJFILE associated with the compilation unit CU.  If CU
14478    came from a separate debuginfo file, then the master objfile is
14479    returned.  */
14480
14481 struct objfile *
14482 dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
14483 {
14484   struct objfile *objfile = per_cu->objfile;
14485
14486   /* Return the master objfile, so that we can report and look up the
14487      correct file containing this variable.  */
14488   if (objfile->separate_debug_objfile_backlink)
14489     objfile = objfile->separate_debug_objfile_backlink;
14490
14491   return objfile;
14492 }
14493
14494 /* Return the address size given in the compilation unit header for CU.  */
14495
14496 CORE_ADDR
14497 dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
14498 {
14499   if (per_cu->cu)
14500     return per_cu->cu->header.addr_size;
14501   else
14502     {
14503       /* If the CU is not currently read in, we re-read its header.  */
14504       struct objfile *objfile = per_cu->objfile;
14505       struct dwarf2_per_objfile *per_objfile
14506         = objfile_data (objfile, dwarf2_objfile_data_key);
14507       gdb_byte *info_ptr = per_objfile->info.buffer + per_cu->offset;
14508       struct comp_unit_head cu_header;
14509
14510       memset (&cu_header, 0, sizeof cu_header);
14511       read_comp_unit_head (&cu_header, info_ptr, objfile->obfd);
14512       return cu_header.addr_size;
14513     }
14514 }
14515
14516 /* Return the offset size given in the compilation unit header for CU.  */
14517
14518 int
14519 dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
14520 {
14521   if (per_cu->cu)
14522     return per_cu->cu->header.offset_size;
14523   else
14524     {
14525       /* If the CU is not currently read in, we re-read its header.  */
14526       struct objfile *objfile = per_cu->objfile;
14527       struct dwarf2_per_objfile *per_objfile
14528         = objfile_data (objfile, dwarf2_objfile_data_key);
14529       gdb_byte *info_ptr = per_objfile->info.buffer + per_cu->offset;
14530       struct comp_unit_head cu_header;
14531
14532       memset (&cu_header, 0, sizeof cu_header);
14533       read_comp_unit_head (&cu_header, info_ptr, objfile->obfd);
14534       return cu_header.offset_size;
14535     }
14536 }
14537
14538 /* Return the text offset of the CU.  The returned offset comes from
14539    this CU's objfile.  If this objfile came from a separate debuginfo
14540    file, then the offset may be different from the corresponding
14541    offset in the parent objfile.  */
14542
14543 CORE_ADDR
14544 dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
14545 {
14546   struct objfile *objfile = per_cu->objfile;
14547
14548   return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
14549 }
14550
14551 /* Locate the .debug_info compilation unit from CU's objfile which contains
14552    the DIE at OFFSET.  Raises an error on failure.  */
14553
14554 static struct dwarf2_per_cu_data *
14555 dwarf2_find_containing_comp_unit (unsigned int offset,
14556                                   struct objfile *objfile)
14557 {
14558   struct dwarf2_per_cu_data *this_cu;
14559   int low, high;
14560
14561   low = 0;
14562   high = dwarf2_per_objfile->n_comp_units - 1;
14563   while (high > low)
14564     {
14565       int mid = low + (high - low) / 2;
14566
14567       if (dwarf2_per_objfile->all_comp_units[mid]->offset >= offset)
14568         high = mid;
14569       else
14570         low = mid + 1;
14571     }
14572   gdb_assert (low == high);
14573   if (dwarf2_per_objfile->all_comp_units[low]->offset > offset)
14574     {
14575       if (low == 0)
14576         error (_("Dwarf Error: could not find partial DIE containing "
14577                "offset 0x%lx [in module %s]"),
14578                (long) offset, bfd_get_filename (objfile->obfd));
14579
14580       gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset <= offset);
14581       return dwarf2_per_objfile->all_comp_units[low-1];
14582     }
14583   else
14584     {
14585       this_cu = dwarf2_per_objfile->all_comp_units[low];
14586       if (low == dwarf2_per_objfile->n_comp_units - 1
14587           && offset >= this_cu->offset + this_cu->length)
14588         error (_("invalid dwarf2 offset %u"), offset);
14589       gdb_assert (offset < this_cu->offset + this_cu->length);
14590       return this_cu;
14591     }
14592 }
14593
14594 /* Locate the compilation unit from OBJFILE which is located at exactly
14595    OFFSET.  Raises an error on failure.  */
14596
14597 static struct dwarf2_per_cu_data *
14598 dwarf2_find_comp_unit (unsigned int offset, struct objfile *objfile)
14599 {
14600   struct dwarf2_per_cu_data *this_cu;
14601
14602   this_cu = dwarf2_find_containing_comp_unit (offset, objfile);
14603   if (this_cu->offset != offset)
14604     error (_("no compilation unit with offset %u."), offset);
14605   return this_cu;
14606 }
14607
14608 /* Initialize dwarf2_cu CU for OBJFILE in a pre-allocated space.  */
14609
14610 static void
14611 init_one_comp_unit (struct dwarf2_cu *cu, struct objfile *objfile)
14612 {
14613   memset (cu, 0, sizeof (*cu));
14614   cu->objfile = objfile;
14615   obstack_init (&cu->comp_unit_obstack);
14616 }
14617
14618 /* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE.  */
14619
14620 static void
14621 prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die)
14622 {
14623   struct attribute *attr;
14624
14625   /* Set the language we're debugging.  */
14626   attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
14627   if (attr)
14628     set_cu_language (DW_UNSND (attr), cu);
14629   else
14630     set_cu_language (language_minimal, cu);
14631 }
14632
14633 /* Release one cached compilation unit, CU.  We unlink it from the tree
14634    of compilation units, but we don't remove it from the read_in_chain;
14635    the caller is responsible for that.
14636    NOTE: DATA is a void * because this function is also used as a
14637    cleanup routine.  */
14638
14639 static void
14640 free_one_comp_unit (void *data)
14641 {
14642   struct dwarf2_cu *cu = data;
14643
14644   if (cu->per_cu != NULL)
14645     cu->per_cu->cu = NULL;
14646   cu->per_cu = NULL;
14647
14648   obstack_free (&cu->comp_unit_obstack, NULL);
14649
14650   xfree (cu);
14651 }
14652
14653 /* This cleanup function is passed the address of a dwarf2_cu on the stack
14654    when we're finished with it.  We can't free the pointer itself, but be
14655    sure to unlink it from the cache.  Also release any associated storage
14656    and perform cache maintenance.
14657
14658    Only used during partial symbol parsing.  */
14659
14660 static void
14661 free_stack_comp_unit (void *data)
14662 {
14663   struct dwarf2_cu *cu = data;
14664
14665   obstack_free (&cu->comp_unit_obstack, NULL);
14666   cu->partial_dies = NULL;
14667
14668   if (cu->per_cu != NULL)
14669     {
14670       /* This compilation unit is on the stack in our caller, so we
14671          should not xfree it.  Just unlink it.  */
14672       cu->per_cu->cu = NULL;
14673       cu->per_cu = NULL;
14674
14675       /* If we had a per-cu pointer, then we may have other compilation
14676          units loaded, so age them now.  */
14677       age_cached_comp_units ();
14678     }
14679 }
14680
14681 /* Free all cached compilation units.  */
14682
14683 static void
14684 free_cached_comp_units (void *data)
14685 {
14686   struct dwarf2_per_cu_data *per_cu, **last_chain;
14687
14688   per_cu = dwarf2_per_objfile->read_in_chain;
14689   last_chain = &dwarf2_per_objfile->read_in_chain;
14690   while (per_cu != NULL)
14691     {
14692       struct dwarf2_per_cu_data *next_cu;
14693
14694       next_cu = per_cu->cu->read_in_chain;
14695
14696       free_one_comp_unit (per_cu->cu);
14697       *last_chain = next_cu;
14698
14699       per_cu = next_cu;
14700     }
14701 }
14702
14703 /* Increase the age counter on each cached compilation unit, and free
14704    any that are too old.  */
14705
14706 static void
14707 age_cached_comp_units (void)
14708 {
14709   struct dwarf2_per_cu_data *per_cu, **last_chain;
14710
14711   dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
14712   per_cu = dwarf2_per_objfile->read_in_chain;
14713   while (per_cu != NULL)
14714     {
14715       per_cu->cu->last_used ++;
14716       if (per_cu->cu->last_used <= dwarf2_max_cache_age)
14717         dwarf2_mark (per_cu->cu);
14718       per_cu = per_cu->cu->read_in_chain;
14719     }
14720
14721   per_cu = dwarf2_per_objfile->read_in_chain;
14722   last_chain = &dwarf2_per_objfile->read_in_chain;
14723   while (per_cu != NULL)
14724     {
14725       struct dwarf2_per_cu_data *next_cu;
14726
14727       next_cu = per_cu->cu->read_in_chain;
14728
14729       if (!per_cu->cu->mark)
14730         {
14731           free_one_comp_unit (per_cu->cu);
14732           *last_chain = next_cu;
14733         }
14734       else
14735         last_chain = &per_cu->cu->read_in_chain;
14736
14737       per_cu = next_cu;
14738     }
14739 }
14740
14741 /* Remove a single compilation unit from the cache.  */
14742
14743 static void
14744 free_one_cached_comp_unit (void *target_cu)
14745 {
14746   struct dwarf2_per_cu_data *per_cu, **last_chain;
14747
14748   per_cu = dwarf2_per_objfile->read_in_chain;
14749   last_chain = &dwarf2_per_objfile->read_in_chain;
14750   while (per_cu != NULL)
14751     {
14752       struct dwarf2_per_cu_data *next_cu;
14753
14754       next_cu = per_cu->cu->read_in_chain;
14755
14756       if (per_cu->cu == target_cu)
14757         {
14758           free_one_comp_unit (per_cu->cu);
14759           *last_chain = next_cu;
14760           break;
14761         }
14762       else
14763         last_chain = &per_cu->cu->read_in_chain;
14764
14765       per_cu = next_cu;
14766     }
14767 }
14768
14769 /* Release all extra memory associated with OBJFILE.  */
14770
14771 void
14772 dwarf2_free_objfile (struct objfile *objfile)
14773 {
14774   dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
14775
14776   if (dwarf2_per_objfile == NULL)
14777     return;
14778
14779   /* Cached DIE trees use xmalloc and the comp_unit_obstack.  */
14780   free_cached_comp_units (NULL);
14781
14782   if (dwarf2_per_objfile->quick_file_names_table)
14783     htab_delete (dwarf2_per_objfile->quick_file_names_table);
14784
14785   /* Everything else should be on the objfile obstack.  */
14786 }
14787
14788 /* A pair of DIE offset and GDB type pointer.  We store these
14789    in a hash table separate from the DIEs, and preserve them
14790    when the DIEs are flushed out of cache.  */
14791
14792 struct dwarf2_offset_and_type
14793 {
14794   unsigned int offset;
14795   struct type *type;
14796 };
14797
14798 /* Hash function for a dwarf2_offset_and_type.  */
14799
14800 static hashval_t
14801 offset_and_type_hash (const void *item)
14802 {
14803   const struct dwarf2_offset_and_type *ofs = item;
14804
14805   return ofs->offset;
14806 }
14807
14808 /* Equality function for a dwarf2_offset_and_type.  */
14809
14810 static int
14811 offset_and_type_eq (const void *item_lhs, const void *item_rhs)
14812 {
14813   const struct dwarf2_offset_and_type *ofs_lhs = item_lhs;
14814   const struct dwarf2_offset_and_type *ofs_rhs = item_rhs;
14815
14816   return ofs_lhs->offset == ofs_rhs->offset;
14817 }
14818
14819 /* Set the type associated with DIE to TYPE.  Save it in CU's hash
14820    table if necessary.  For convenience, return TYPE.
14821
14822    The DIEs reading must have careful ordering to:
14823     * Not cause infite loops trying to read in DIEs as a prerequisite for
14824       reading current DIE.
14825     * Not trying to dereference contents of still incompletely read in types
14826       while reading in other DIEs.
14827     * Enable referencing still incompletely read in types just by a pointer to
14828       the type without accessing its fields.
14829
14830    Therefore caller should follow these rules:
14831      * Try to fetch any prerequisite types we may need to build this DIE type
14832        before building the type and calling set_die_type.
14833      * After building type call set_die_type for current DIE as soon as
14834        possible before fetching more types to complete the current type.
14835      * Make the type as complete as possible before fetching more types.  */
14836
14837 static struct type *
14838 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
14839 {
14840   struct dwarf2_offset_and_type **slot, ofs;
14841   struct objfile *objfile = cu->objfile;
14842   htab_t *type_hash_ptr;
14843
14844   /* For Ada types, make sure that the gnat-specific data is always
14845      initialized (if not already set).  There are a few types where
14846      we should not be doing so, because the type-specific area is
14847      already used to hold some other piece of info (eg: TYPE_CODE_FLT
14848      where the type-specific area is used to store the floatformat).
14849      But this is not a problem, because the gnat-specific information
14850      is actually not needed for these types.  */
14851   if (need_gnat_info (cu)
14852       && TYPE_CODE (type) != TYPE_CODE_FUNC
14853       && TYPE_CODE (type) != TYPE_CODE_FLT
14854       && !HAVE_GNAT_AUX_INFO (type))
14855     INIT_GNAT_SPECIFIC (type);
14856
14857   if (cu->per_cu->from_debug_types)
14858     type_hash_ptr = &dwarf2_per_objfile->debug_types_type_hash;
14859   else
14860     type_hash_ptr = &dwarf2_per_objfile->debug_info_type_hash;
14861
14862   if (*type_hash_ptr == NULL)
14863     {
14864       *type_hash_ptr
14865         = htab_create_alloc_ex (127,
14866                                 offset_and_type_hash,
14867                                 offset_and_type_eq,
14868                                 NULL,
14869                                 &objfile->objfile_obstack,
14870                                 hashtab_obstack_allocate,
14871                                 dummy_obstack_deallocate);
14872     }
14873
14874   ofs.offset = die->offset;
14875   ofs.type = type;
14876   slot = (struct dwarf2_offset_and_type **)
14877     htab_find_slot_with_hash (*type_hash_ptr, &ofs, ofs.offset, INSERT);
14878   if (*slot)
14879     complaint (&symfile_complaints,
14880                _("A problem internal to GDB: DIE 0x%x has type already set"),
14881                die->offset);
14882   *slot = obstack_alloc (&objfile->objfile_obstack, sizeof (**slot));
14883   **slot = ofs;
14884   return type;
14885 }
14886
14887 /* Look up the type for the die at DIE_OFFSET in the appropriate type_hash
14888    table, or return NULL if the die does not have a saved type.  */
14889
14890 static struct type *
14891 get_die_type_at_offset (unsigned int offset,
14892                         struct dwarf2_per_cu_data *per_cu)
14893 {
14894   struct dwarf2_offset_and_type *slot, ofs;
14895   htab_t type_hash;
14896
14897   if (per_cu->from_debug_types)
14898     type_hash = dwarf2_per_objfile->debug_types_type_hash;
14899   else
14900     type_hash = dwarf2_per_objfile->debug_info_type_hash;
14901   if (type_hash == NULL)
14902     return NULL;
14903
14904   ofs.offset = offset;
14905   slot = htab_find_with_hash (type_hash, &ofs, ofs.offset);
14906   if (slot)
14907     return slot->type;
14908   else
14909     return NULL;
14910 }
14911
14912 /* Look up the type for DIE in the appropriate type_hash table,
14913    or return NULL if DIE does not have a saved type.  */
14914
14915 static struct type *
14916 get_die_type (struct die_info *die, struct dwarf2_cu *cu)
14917 {
14918   return get_die_type_at_offset (die->offset, cu->per_cu);
14919 }
14920
14921 /* Add a dependence relationship from CU to REF_PER_CU.  */
14922
14923 static void
14924 dwarf2_add_dependence (struct dwarf2_cu *cu,
14925                        struct dwarf2_per_cu_data *ref_per_cu)
14926 {
14927   void **slot;
14928
14929   if (cu->dependencies == NULL)
14930     cu->dependencies
14931       = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
14932                               NULL, &cu->comp_unit_obstack,
14933                               hashtab_obstack_allocate,
14934                               dummy_obstack_deallocate);
14935
14936   slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
14937   if (*slot == NULL)
14938     *slot = ref_per_cu;
14939 }
14940
14941 /* Subroutine of dwarf2_mark to pass to htab_traverse.
14942    Set the mark field in every compilation unit in the
14943    cache that we must keep because we are keeping CU.  */
14944
14945 static int
14946 dwarf2_mark_helper (void **slot, void *data)
14947 {
14948   struct dwarf2_per_cu_data *per_cu;
14949
14950   per_cu = (struct dwarf2_per_cu_data *) *slot;
14951   if (per_cu->cu->mark)
14952     return 1;
14953   per_cu->cu->mark = 1;
14954
14955   if (per_cu->cu->dependencies != NULL)
14956     htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
14957
14958   return 1;
14959 }
14960
14961 /* Set the mark field in CU and in every other compilation unit in the
14962    cache that we must keep because we are keeping CU.  */
14963
14964 static void
14965 dwarf2_mark (struct dwarf2_cu *cu)
14966 {
14967   if (cu->mark)
14968     return;
14969   cu->mark = 1;
14970   if (cu->dependencies != NULL)
14971     htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
14972 }
14973
14974 static void
14975 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
14976 {
14977   while (per_cu)
14978     {
14979       per_cu->cu->mark = 0;
14980       per_cu = per_cu->cu->read_in_chain;
14981     }
14982 }
14983
14984 /* Trivial hash function for partial_die_info: the hash value of a DIE
14985    is its offset in .debug_info for this objfile.  */
14986
14987 static hashval_t
14988 partial_die_hash (const void *item)
14989 {
14990   const struct partial_die_info *part_die = item;
14991
14992   return part_die->offset;
14993 }
14994
14995 /* Trivial comparison function for partial_die_info structures: two DIEs
14996    are equal if they have the same offset.  */
14997
14998 static int
14999 partial_die_eq (const void *item_lhs, const void *item_rhs)
15000 {
15001   const struct partial_die_info *part_die_lhs = item_lhs;
15002   const struct partial_die_info *part_die_rhs = item_rhs;
15003
15004   return part_die_lhs->offset == part_die_rhs->offset;
15005 }
15006
15007 static struct cmd_list_element *set_dwarf2_cmdlist;
15008 static struct cmd_list_element *show_dwarf2_cmdlist;
15009
15010 static void
15011 set_dwarf2_cmd (char *args, int from_tty)
15012 {
15013   help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout);
15014 }
15015
15016 static void
15017 show_dwarf2_cmd (char *args, int from_tty)
15018 {
15019   cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
15020 }
15021
15022 /* If section described by INFO was mmapped, munmap it now.  */
15023
15024 static void
15025 munmap_section_buffer (struct dwarf2_section_info *info)
15026 {
15027   if (info->was_mmapped)
15028     {
15029 #ifdef HAVE_MMAP
15030       intptr_t begin = (intptr_t) info->buffer;
15031       intptr_t map_begin = begin & ~(pagesize - 1);
15032       size_t map_length = info->size + begin - map_begin;
15033
15034       gdb_assert (munmap ((void *) map_begin, map_length) == 0);
15035 #else
15036       /* Without HAVE_MMAP, we should never be here to begin with.  */
15037       gdb_assert_not_reached ("no mmap support");
15038 #endif
15039     }
15040 }
15041
15042 /* munmap debug sections for OBJFILE, if necessary.  */
15043
15044 static void
15045 dwarf2_per_objfile_free (struct objfile *objfile, void *d)
15046 {
15047   struct dwarf2_per_objfile *data = d;
15048
15049   /* This is sorted according to the order they're defined in to make it easier
15050      to keep in sync.  */
15051   munmap_section_buffer (&data->info);
15052   munmap_section_buffer (&data->abbrev);
15053   munmap_section_buffer (&data->line);
15054   munmap_section_buffer (&data->loc);
15055   munmap_section_buffer (&data->macinfo);
15056   munmap_section_buffer (&data->str);
15057   munmap_section_buffer (&data->ranges);
15058   munmap_section_buffer (&data->types);
15059   munmap_section_buffer (&data->frame);
15060   munmap_section_buffer (&data->eh_frame);
15061   munmap_section_buffer (&data->gdb_index);
15062 }
15063
15064 \f
15065 /* The "save gdb-index" command.  */
15066
15067 /* The contents of the hash table we create when building the string
15068    table.  */
15069 struct strtab_entry
15070 {
15071   offset_type offset;
15072   const char *str;
15073 };
15074
15075 /* Hash function for a strtab_entry.  */
15076
15077 static hashval_t
15078 hash_strtab_entry (const void *e)
15079 {
15080   const struct strtab_entry *entry = e;
15081   return mapped_index_string_hash (entry->str);
15082 }
15083
15084 /* Equality function for a strtab_entry.  */
15085
15086 static int
15087 eq_strtab_entry (const void *a, const void *b)
15088 {
15089   const struct strtab_entry *ea = a;
15090   const struct strtab_entry *eb = b;
15091   return !strcmp (ea->str, eb->str);
15092 }
15093
15094 /* Create a strtab_entry hash table.  */
15095
15096 static htab_t
15097 create_strtab (void)
15098 {
15099   return htab_create_alloc (100, hash_strtab_entry, eq_strtab_entry,
15100                             xfree, xcalloc, xfree);
15101 }
15102
15103 /* Add a string to the constant pool.  Return the string's offset in
15104    host order.  */
15105
15106 static offset_type
15107 add_string (htab_t table, struct obstack *cpool, const char *str)
15108 {
15109   void **slot;
15110   struct strtab_entry entry;
15111   struct strtab_entry *result;
15112
15113   entry.str = str;
15114   slot = htab_find_slot (table, &entry, INSERT);
15115   if (*slot)
15116     result = *slot;
15117   else
15118     {
15119       result = XNEW (struct strtab_entry);
15120       result->offset = obstack_object_size (cpool);
15121       result->str = str;
15122       obstack_grow_str0 (cpool, str);
15123       *slot = result;
15124     }
15125   return result->offset;
15126 }
15127
15128 /* An entry in the symbol table.  */
15129 struct symtab_index_entry
15130 {
15131   /* The name of the symbol.  */
15132   const char *name;
15133   /* The offset of the name in the constant pool.  */
15134   offset_type index_offset;
15135   /* A sorted vector of the indices of all the CUs that hold an object
15136      of this name.  */
15137   VEC (offset_type) *cu_indices;
15138 };
15139
15140 /* The symbol table.  This is a power-of-2-sized hash table.  */
15141 struct mapped_symtab
15142 {
15143   offset_type n_elements;
15144   offset_type size;
15145   struct symtab_index_entry **data;
15146 };
15147
15148 /* Hash function for a symtab_index_entry.  */
15149
15150 static hashval_t
15151 hash_symtab_entry (const void *e)
15152 {
15153   const struct symtab_index_entry *entry = e;
15154   return iterative_hash (VEC_address (offset_type, entry->cu_indices),
15155                          sizeof (offset_type) * VEC_length (offset_type,
15156                                                             entry->cu_indices),
15157                          0);
15158 }
15159
15160 /* Equality function for a symtab_index_entry.  */
15161
15162 static int
15163 eq_symtab_entry (const void *a, const void *b)
15164 {
15165   const struct symtab_index_entry *ea = a;
15166   const struct symtab_index_entry *eb = b;
15167   int len = VEC_length (offset_type, ea->cu_indices);
15168   if (len != VEC_length (offset_type, eb->cu_indices))
15169     return 0;
15170   return !memcmp (VEC_address (offset_type, ea->cu_indices),
15171                   VEC_address (offset_type, eb->cu_indices),
15172                   sizeof (offset_type) * len);
15173 }
15174
15175 /* Destroy a symtab_index_entry.  */
15176
15177 static void
15178 delete_symtab_entry (void *p)
15179 {
15180   struct symtab_index_entry *entry = p;
15181   VEC_free (offset_type, entry->cu_indices);
15182   xfree (entry);
15183 }
15184
15185 /* Create a hash table holding symtab_index_entry objects.  */
15186
15187 static htab_t
15188 create_symbol_hash_table (void)
15189 {
15190   return htab_create_alloc (100, hash_symtab_entry, eq_symtab_entry,
15191                             delete_symtab_entry, xcalloc, xfree);
15192 }
15193
15194 /* Create a new mapped symtab object.  */
15195
15196 static struct mapped_symtab *
15197 create_mapped_symtab (void)
15198 {
15199   struct mapped_symtab *symtab = XNEW (struct mapped_symtab);
15200   symtab->n_elements = 0;
15201   symtab->size = 1024;
15202   symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
15203   return symtab;
15204 }
15205
15206 /* Destroy a mapped_symtab.  */
15207
15208 static void
15209 cleanup_mapped_symtab (void *p)
15210 {
15211   struct mapped_symtab *symtab = p;
15212   /* The contents of the array are freed when the other hash table is
15213      destroyed.  */
15214   xfree (symtab->data);
15215   xfree (symtab);
15216 }
15217
15218 /* Find a slot in SYMTAB for the symbol NAME.  Returns a pointer to
15219    the slot.  */
15220
15221 static struct symtab_index_entry **
15222 find_slot (struct mapped_symtab *symtab, const char *name)
15223 {
15224   offset_type index, step, hash = mapped_index_string_hash (name);
15225
15226   index = hash & (symtab->size - 1);
15227   step = ((hash * 17) & (symtab->size - 1)) | 1;
15228
15229   for (;;)
15230     {
15231       if (!symtab->data[index] || !strcmp (name, symtab->data[index]->name))
15232         return &symtab->data[index];
15233       index = (index + step) & (symtab->size - 1);
15234     }
15235 }
15236
15237 /* Expand SYMTAB's hash table.  */
15238
15239 static void
15240 hash_expand (struct mapped_symtab *symtab)
15241 {
15242   offset_type old_size = symtab->size;
15243   offset_type i;
15244   struct symtab_index_entry **old_entries = symtab->data;
15245
15246   symtab->size *= 2;
15247   symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
15248
15249   for (i = 0; i < old_size; ++i)
15250     {
15251       if (old_entries[i])
15252         {
15253           struct symtab_index_entry **slot = find_slot (symtab,
15254                                                         old_entries[i]->name);
15255           *slot = old_entries[i];
15256         }
15257     }
15258
15259   xfree (old_entries);
15260 }
15261
15262 /* Add an entry to SYMTAB.  NAME is the name of the symbol.  CU_INDEX
15263    is the index of the CU in which the symbol appears.  */
15264
15265 static void
15266 add_index_entry (struct mapped_symtab *symtab, const char *name,
15267                  offset_type cu_index)
15268 {
15269   struct symtab_index_entry **slot;
15270
15271   ++symtab->n_elements;
15272   if (4 * symtab->n_elements / 3 >= symtab->size)
15273     hash_expand (symtab);
15274
15275   slot = find_slot (symtab, name);
15276   if (!*slot)
15277     {
15278       *slot = XNEW (struct symtab_index_entry);
15279       (*slot)->name = name;
15280       (*slot)->cu_indices = NULL;
15281     }
15282   /* Don't push an index twice.  Due to how we add entries we only
15283      have to check the last one.  */ 
15284   if (VEC_empty (offset_type, (*slot)->cu_indices)
15285       || VEC_length (offset_type, (*slot)->cu_indices) != cu_index)
15286     VEC_safe_push (offset_type, (*slot)->cu_indices, cu_index);
15287 }
15288
15289 /* Add a vector of indices to the constant pool.  */
15290
15291 static offset_type
15292 add_indices_to_cpool (htab_t symbol_hash_table, struct obstack *cpool,
15293                       struct symtab_index_entry *entry)
15294 {
15295   void **slot;
15296
15297   slot = htab_find_slot (symbol_hash_table, entry, INSERT);
15298   if (!*slot)
15299     {
15300       offset_type len = VEC_length (offset_type, entry->cu_indices);
15301       offset_type val = MAYBE_SWAP (len);
15302       offset_type iter;
15303       int i;
15304
15305       *slot = entry;
15306       entry->index_offset = obstack_object_size (cpool);
15307
15308       obstack_grow (cpool, &val, sizeof (val));
15309       for (i = 0;
15310            VEC_iterate (offset_type, entry->cu_indices, i, iter);
15311            ++i)
15312         {
15313           val = MAYBE_SWAP (iter);
15314           obstack_grow (cpool, &val, sizeof (val));
15315         }
15316     }
15317   else
15318     {
15319       struct symtab_index_entry *old_entry = *slot;
15320       entry->index_offset = old_entry->index_offset;
15321       entry = old_entry;
15322     }
15323   return entry->index_offset;
15324 }
15325
15326 /* Write the mapped hash table SYMTAB to the obstack OUTPUT, with
15327    constant pool entries going into the obstack CPOOL.  */
15328
15329 static void
15330 write_hash_table (struct mapped_symtab *symtab,
15331                   struct obstack *output, struct obstack *cpool)
15332 {
15333   offset_type i;
15334   htab_t symbol_hash_table;
15335   htab_t str_table;
15336
15337   symbol_hash_table = create_symbol_hash_table ();
15338   str_table = create_strtab ();
15339
15340   /* We add all the index vectors to the constant pool first, to
15341      ensure alignment is ok.  */
15342   for (i = 0; i < symtab->size; ++i)
15343     {
15344       if (symtab->data[i])
15345         add_indices_to_cpool (symbol_hash_table, cpool, symtab->data[i]);
15346     }
15347
15348   /* Now write out the hash table.  */
15349   for (i = 0; i < symtab->size; ++i)
15350     {
15351       offset_type str_off, vec_off;
15352
15353       if (symtab->data[i])
15354         {
15355           str_off = add_string (str_table, cpool, symtab->data[i]->name);
15356           vec_off = symtab->data[i]->index_offset;
15357         }
15358       else
15359         {
15360           /* While 0 is a valid constant pool index, it is not valid
15361              to have 0 for both offsets.  */
15362           str_off = 0;
15363           vec_off = 0;
15364         }
15365
15366       str_off = MAYBE_SWAP (str_off);
15367       vec_off = MAYBE_SWAP (vec_off);
15368
15369       obstack_grow (output, &str_off, sizeof (str_off));
15370       obstack_grow (output, &vec_off, sizeof (vec_off));
15371     }
15372
15373   htab_delete (str_table);
15374   htab_delete (symbol_hash_table);
15375 }
15376
15377 /* Struct to map psymtab to CU index in the index file.  */
15378 struct psymtab_cu_index_map
15379 {
15380   struct partial_symtab *psymtab;
15381   unsigned int cu_index;
15382 };
15383
15384 static hashval_t
15385 hash_psymtab_cu_index (const void *item)
15386 {
15387   const struct psymtab_cu_index_map *map = item;
15388
15389   return htab_hash_pointer (map->psymtab);
15390 }
15391
15392 static int
15393 eq_psymtab_cu_index (const void *item_lhs, const void *item_rhs)
15394 {
15395   const struct psymtab_cu_index_map *lhs = item_lhs;
15396   const struct psymtab_cu_index_map *rhs = item_rhs;
15397
15398   return lhs->psymtab == rhs->psymtab;
15399 }
15400
15401 /* Helper struct for building the address table.  */
15402 struct addrmap_index_data
15403 {
15404   struct objfile *objfile;
15405   struct obstack *addr_obstack;
15406   htab_t cu_index_htab;
15407
15408   /* Non-zero if the previous_* fields are valid.
15409      We can't write an entry until we see the next entry (since it is only then
15410      that we know the end of the entry).  */
15411   int previous_valid;
15412   /* Index of the CU in the table of all CUs in the index file.  */
15413   unsigned int previous_cu_index;
15414   /* Start address of the CU.  */
15415   CORE_ADDR previous_cu_start;
15416 };
15417
15418 /* Write an address entry to OBSTACK.  */
15419
15420 static void
15421 add_address_entry (struct objfile *objfile, struct obstack *obstack,
15422                    CORE_ADDR start, CORE_ADDR end, unsigned int cu_index)
15423 {
15424   offset_type cu_index_to_write;
15425   char addr[8];
15426   CORE_ADDR baseaddr;
15427
15428   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
15429
15430   store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, start - baseaddr);
15431   obstack_grow (obstack, addr, 8);
15432   store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, end - baseaddr);
15433   obstack_grow (obstack, addr, 8);
15434   cu_index_to_write = MAYBE_SWAP (cu_index);
15435   obstack_grow (obstack, &cu_index_to_write, sizeof (offset_type));
15436 }
15437
15438 /* Worker function for traversing an addrmap to build the address table.  */
15439
15440 static int
15441 add_address_entry_worker (void *datap, CORE_ADDR start_addr, void *obj)
15442 {
15443   struct addrmap_index_data *data = datap;
15444   struct partial_symtab *pst = obj;
15445   offset_type cu_index;
15446   void **slot;
15447
15448   if (data->previous_valid)
15449     add_address_entry (data->objfile, data->addr_obstack,
15450                        data->previous_cu_start, start_addr,
15451                        data->previous_cu_index);
15452
15453   data->previous_cu_start = start_addr;
15454   if (pst != NULL)
15455     {
15456       struct psymtab_cu_index_map find_map, *map;
15457       find_map.psymtab = pst;
15458       map = htab_find (data->cu_index_htab, &find_map);
15459       gdb_assert (map != NULL);
15460       data->previous_cu_index = map->cu_index;
15461       data->previous_valid = 1;
15462     }
15463   else
15464       data->previous_valid = 0;
15465
15466   return 0;
15467 }
15468
15469 /* Write OBJFILE's address map to OBSTACK.
15470    CU_INDEX_HTAB is used to map addrmap entries to their CU indices
15471    in the index file.  */
15472
15473 static void
15474 write_address_map (struct objfile *objfile, struct obstack *obstack,
15475                    htab_t cu_index_htab)
15476 {
15477   struct addrmap_index_data addrmap_index_data;
15478
15479   /* When writing the address table, we have to cope with the fact that
15480      the addrmap iterator only provides the start of a region; we have to
15481      wait until the next invocation to get the start of the next region.  */
15482
15483   addrmap_index_data.objfile = objfile;
15484   addrmap_index_data.addr_obstack = obstack;
15485   addrmap_index_data.cu_index_htab = cu_index_htab;
15486   addrmap_index_data.previous_valid = 0;
15487
15488   addrmap_foreach (objfile->psymtabs_addrmap, add_address_entry_worker,
15489                    &addrmap_index_data);
15490
15491   /* It's highly unlikely the last entry (end address = 0xff...ff)
15492      is valid, but we should still handle it.
15493      The end address is recorded as the start of the next region, but that
15494      doesn't work here.  To cope we pass 0xff...ff, this is a rare situation
15495      anyway.  */
15496   if (addrmap_index_data.previous_valid)
15497     add_address_entry (objfile, obstack,
15498                        addrmap_index_data.previous_cu_start, (CORE_ADDR) -1,
15499                        addrmap_index_data.previous_cu_index);
15500 }
15501
15502 /* Add a list of partial symbols to SYMTAB.  */
15503
15504 static void
15505 write_psymbols (struct mapped_symtab *symtab,
15506                 htab_t psyms_seen,
15507                 struct partial_symbol **psymp,
15508                 int count,
15509                 offset_type cu_index,
15510                 int is_static)
15511 {
15512   for (; count-- > 0; ++psymp)
15513     {
15514       void **slot, *lookup;
15515
15516       if (SYMBOL_LANGUAGE (*psymp) == language_ada)
15517         error (_("Ada is not currently supported by the index"));
15518
15519       /* We only want to add a given psymbol once.  However, we also
15520          want to account for whether it is global or static.  So, we
15521          may add it twice, using slightly different values.  */
15522       if (is_static)
15523         {
15524           uintptr_t val = 1 | (uintptr_t) *psymp;
15525
15526           lookup = (void *) val;
15527         }
15528       else
15529         lookup = *psymp;
15530
15531       /* Only add a given psymbol once.  */
15532       slot = htab_find_slot (psyms_seen, lookup, INSERT);
15533       if (!*slot)
15534         {
15535           *slot = lookup;
15536           add_index_entry (symtab, SYMBOL_NATURAL_NAME (*psymp), cu_index);
15537         }
15538     }
15539 }
15540
15541 /* Write the contents of an ("unfinished") obstack to FILE.  Throw an
15542    exception if there is an error.  */
15543
15544 static void
15545 write_obstack (FILE *file, struct obstack *obstack)
15546 {
15547   if (fwrite (obstack_base (obstack), 1, obstack_object_size (obstack),
15548               file)
15549       != obstack_object_size (obstack))
15550     error (_("couldn't data write to file"));
15551 }
15552
15553 /* Unlink a file if the argument is not NULL.  */
15554
15555 static void
15556 unlink_if_set (void *p)
15557 {
15558   char **filename = p;
15559   if (*filename)
15560     unlink (*filename);
15561 }
15562
15563 /* A helper struct used when iterating over debug_types.  */
15564 struct signatured_type_index_data
15565 {
15566   struct objfile *objfile;
15567   struct mapped_symtab *symtab;
15568   struct obstack *types_list;
15569   htab_t psyms_seen;
15570   int cu_index;
15571 };
15572
15573 /* A helper function that writes a single signatured_type to an
15574    obstack.  */
15575
15576 static int
15577 write_one_signatured_type (void **slot, void *d)
15578 {
15579   struct signatured_type_index_data *info = d;
15580   struct signatured_type *entry = (struct signatured_type *) *slot;
15581   struct dwarf2_per_cu_data *per_cu = &entry->per_cu;
15582   struct partial_symtab *psymtab = per_cu->v.psymtab;
15583   gdb_byte val[8];
15584
15585   write_psymbols (info->symtab,
15586                   info->psyms_seen,
15587                   info->objfile->global_psymbols.list
15588                   + psymtab->globals_offset,
15589                   psymtab->n_global_syms, info->cu_index,
15590                   0);
15591   write_psymbols (info->symtab,
15592                   info->psyms_seen,
15593                   info->objfile->static_psymbols.list
15594                   + psymtab->statics_offset,
15595                   psymtab->n_static_syms, info->cu_index,
15596                   1);
15597
15598   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->offset);
15599   obstack_grow (info->types_list, val, 8);
15600   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->type_offset);
15601   obstack_grow (info->types_list, val, 8);
15602   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->signature);
15603   obstack_grow (info->types_list, val, 8);
15604
15605   ++info->cu_index;
15606
15607   return 1;
15608 }
15609
15610 /* A cleanup function for an htab_t.  */
15611
15612 static void
15613 cleanup_htab (void *arg)
15614 {
15615   htab_delete (arg);
15616 }
15617
15618 /* Create an index file for OBJFILE in the directory DIR.  */
15619
15620 static void
15621 write_psymtabs_to_index (struct objfile *objfile, const char *dir)
15622 {
15623   struct cleanup *cleanup;
15624   char *filename, *cleanup_filename;
15625   struct obstack contents, addr_obstack, constant_pool, symtab_obstack;
15626   struct obstack cu_list, types_cu_list;
15627   int i;
15628   FILE *out_file;
15629   struct mapped_symtab *symtab;
15630   offset_type val, size_of_contents, total_len;
15631   struct stat st;
15632   char buf[8];
15633   htab_t psyms_seen;
15634   htab_t cu_index_htab;
15635   struct psymtab_cu_index_map *psymtab_cu_index_map;
15636
15637   if (!objfile->psymtabs)
15638     return;
15639   if (dwarf2_per_objfile->using_index)
15640     error (_("Cannot use an index to create the index"));
15641
15642   if (stat (objfile->name, &st) < 0)
15643     perror_with_name (objfile->name);
15644
15645   filename = concat (dir, SLASH_STRING, lbasename (objfile->name),
15646                      INDEX_SUFFIX, (char *) NULL);
15647   cleanup = make_cleanup (xfree, filename);
15648
15649   out_file = fopen (filename, "wb");
15650   if (!out_file)
15651     error (_("Can't open `%s' for writing"), filename);
15652
15653   cleanup_filename = filename;
15654   make_cleanup (unlink_if_set, &cleanup_filename);
15655
15656   symtab = create_mapped_symtab ();
15657   make_cleanup (cleanup_mapped_symtab, symtab);
15658
15659   obstack_init (&addr_obstack);
15660   make_cleanup_obstack_free (&addr_obstack);
15661
15662   obstack_init (&cu_list);
15663   make_cleanup_obstack_free (&cu_list);
15664
15665   obstack_init (&types_cu_list);
15666   make_cleanup_obstack_free (&types_cu_list);
15667
15668   psyms_seen = htab_create_alloc (100, htab_hash_pointer, htab_eq_pointer,
15669                                   NULL, xcalloc, xfree);
15670   make_cleanup (cleanup_htab, psyms_seen);
15671
15672   /* While we're scanning CU's create a table that maps a psymtab pointer
15673      (which is what addrmap records) to its index (which is what is recorded
15674      in the index file).  This will later be needed to write the address
15675      table.  */
15676   cu_index_htab = htab_create_alloc (100,
15677                                      hash_psymtab_cu_index,
15678                                      eq_psymtab_cu_index,
15679                                      NULL, xcalloc, xfree);
15680   make_cleanup (cleanup_htab, cu_index_htab);
15681   psymtab_cu_index_map = (struct psymtab_cu_index_map *)
15682     xmalloc (sizeof (struct psymtab_cu_index_map)
15683              * dwarf2_per_objfile->n_comp_units);
15684   make_cleanup (xfree, psymtab_cu_index_map);
15685
15686   /* The CU list is already sorted, so we don't need to do additional
15687      work here.  Also, the debug_types entries do not appear in
15688      all_comp_units, but only in their own hash table.  */
15689   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
15690     {
15691       struct dwarf2_per_cu_data *per_cu
15692         = dwarf2_per_objfile->all_comp_units[i];
15693       struct partial_symtab *psymtab = per_cu->v.psymtab;
15694       gdb_byte val[8];
15695       struct psymtab_cu_index_map *map;
15696       void **slot;
15697
15698       write_psymbols (symtab,
15699                       psyms_seen,
15700                       objfile->global_psymbols.list + psymtab->globals_offset,
15701                       psymtab->n_global_syms, i,
15702                       0);
15703       write_psymbols (symtab,
15704                       psyms_seen,
15705                       objfile->static_psymbols.list + psymtab->statics_offset,
15706                       psymtab->n_static_syms, i,
15707                       1);
15708
15709       map = &psymtab_cu_index_map[i];
15710       map->psymtab = psymtab;
15711       map->cu_index = i;
15712       slot = htab_find_slot (cu_index_htab, map, INSERT);
15713       gdb_assert (slot != NULL);
15714       gdb_assert (*slot == NULL);
15715       *slot = map;
15716
15717       store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->offset);
15718       obstack_grow (&cu_list, val, 8);
15719       store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->length);
15720       obstack_grow (&cu_list, val, 8);
15721     }
15722
15723   /* Dump the address map.  */
15724   write_address_map (objfile, &addr_obstack, cu_index_htab);
15725
15726   /* Write out the .debug_type entries, if any.  */
15727   if (dwarf2_per_objfile->signatured_types)
15728     {
15729       struct signatured_type_index_data sig_data;
15730
15731       sig_data.objfile = objfile;
15732       sig_data.symtab = symtab;
15733       sig_data.types_list = &types_cu_list;
15734       sig_data.psyms_seen = psyms_seen;
15735       sig_data.cu_index = dwarf2_per_objfile->n_comp_units;
15736       htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
15737                               write_one_signatured_type, &sig_data);
15738     }
15739
15740   obstack_init (&constant_pool);
15741   make_cleanup_obstack_free (&constant_pool);
15742   obstack_init (&symtab_obstack);
15743   make_cleanup_obstack_free (&symtab_obstack);
15744   write_hash_table (symtab, &symtab_obstack, &constant_pool);
15745
15746   obstack_init (&contents);
15747   make_cleanup_obstack_free (&contents);
15748   size_of_contents = 6 * sizeof (offset_type);
15749   total_len = size_of_contents;
15750
15751   /* The version number.  */
15752   val = MAYBE_SWAP (4);
15753   obstack_grow (&contents, &val, sizeof (val));
15754
15755   /* The offset of the CU list from the start of the file.  */
15756   val = MAYBE_SWAP (total_len);
15757   obstack_grow (&contents, &val, sizeof (val));
15758   total_len += obstack_object_size (&cu_list);
15759
15760   /* The offset of the types CU list from the start of the file.  */
15761   val = MAYBE_SWAP (total_len);
15762   obstack_grow (&contents, &val, sizeof (val));
15763   total_len += obstack_object_size (&types_cu_list);
15764
15765   /* The offset of the address table from the start of the file.  */
15766   val = MAYBE_SWAP (total_len);
15767   obstack_grow (&contents, &val, sizeof (val));
15768   total_len += obstack_object_size (&addr_obstack);
15769
15770   /* The offset of the symbol table from the start of the file.  */
15771   val = MAYBE_SWAP (total_len);
15772   obstack_grow (&contents, &val, sizeof (val));
15773   total_len += obstack_object_size (&symtab_obstack);
15774
15775   /* The offset of the constant pool from the start of the file.  */
15776   val = MAYBE_SWAP (total_len);
15777   obstack_grow (&contents, &val, sizeof (val));
15778   total_len += obstack_object_size (&constant_pool);
15779
15780   gdb_assert (obstack_object_size (&contents) == size_of_contents);
15781
15782   write_obstack (out_file, &contents);
15783   write_obstack (out_file, &cu_list);
15784   write_obstack (out_file, &types_cu_list);
15785   write_obstack (out_file, &addr_obstack);
15786   write_obstack (out_file, &symtab_obstack);
15787   write_obstack (out_file, &constant_pool);
15788
15789   fclose (out_file);
15790
15791   /* We want to keep the file, so we set cleanup_filename to NULL
15792      here.  See unlink_if_set.  */
15793   cleanup_filename = NULL;
15794
15795   do_cleanups (cleanup);
15796 }
15797
15798 /* The mapped index file format is designed to be directly mmap()able
15799    on any architecture.  In most cases, a datum is represented using a
15800    little-endian 32-bit integer value, called an offset_type.  Big
15801    endian machines must byte-swap the values before using them.
15802    Exceptions to this rule are noted.  The data is laid out such that
15803    alignment is always respected.
15804
15805    A mapped index consists of several sections.
15806
15807    1. The file header.  This is a sequence of values, of offset_type
15808    unless otherwise noted:
15809
15810    [0] The version number, currently 4.  Versions 1, 2 and 3 are
15811    obsolete.
15812    [1] The offset, from the start of the file, of the CU list.
15813    [2] The offset, from the start of the file, of the types CU list.
15814    Note that this section can be empty, in which case this offset will
15815    be equal to the next offset.
15816    [3] The offset, from the start of the file, of the address section.
15817    [4] The offset, from the start of the file, of the symbol table.
15818    [5] The offset, from the start of the file, of the constant pool.
15819
15820    2. The CU list.  This is a sequence of pairs of 64-bit
15821    little-endian values, sorted by the CU offset.  The first element
15822    in each pair is the offset of a CU in the .debug_info section.  The
15823    second element in each pair is the length of that CU.  References
15824    to a CU elsewhere in the map are done using a CU index, which is
15825    just the 0-based index into this table.  Note that if there are
15826    type CUs, then conceptually CUs and type CUs form a single list for
15827    the purposes of CU indices.
15828
15829    3. The types CU list.  This is a sequence of triplets of 64-bit
15830    little-endian values.  In a triplet, the first value is the CU
15831    offset, the second value is the type offset in the CU, and the
15832    third value is the type signature.  The types CU list is not
15833    sorted.
15834
15835    4. The address section.  The address section consists of a sequence
15836    of address entries.  Each address entry has three elements.
15837    [0] The low address.  This is a 64-bit little-endian value.
15838    [1] The high address.  This is a 64-bit little-endian value.
15839        Like DW_AT_high_pc, the value is one byte beyond the end.
15840    [2] The CU index.  This is an offset_type value.
15841
15842    5. The symbol table.  This is a hash table.  The size of the hash
15843    table is always a power of 2.  The initial hash and the step are
15844    currently defined by the `find_slot' function.
15845
15846    Each slot in the hash table consists of a pair of offset_type
15847    values.  The first value is the offset of the symbol's name in the
15848    constant pool.  The second value is the offset of the CU vector in
15849    the constant pool.
15850
15851    If both values are 0, then this slot in the hash table is empty.
15852    This is ok because while 0 is a valid constant pool index, it
15853    cannot be a valid index for both a string and a CU vector.
15854
15855    A string in the constant pool is stored as a \0-terminated string,
15856    as you'd expect.
15857
15858    A CU vector in the constant pool is a sequence of offset_type
15859    values.  The first value is the number of CU indices in the vector.
15860    Each subsequent value is the index of a CU in the CU list.  This
15861    element in the hash table is used to indicate which CUs define the
15862    symbol.
15863
15864    6. The constant pool.  This is simply a bunch of bytes.  It is
15865    organized so that alignment is correct: CU vectors are stored
15866    first, followed by strings.  */
15867
15868 static void
15869 save_gdb_index_command (char *arg, int from_tty)
15870 {
15871   struct objfile *objfile;
15872
15873   if (!arg || !*arg)
15874     error (_("usage: save gdb-index DIRECTORY"));
15875
15876   ALL_OBJFILES (objfile)
15877   {
15878     struct stat st;
15879
15880     /* If the objfile does not correspond to an actual file, skip it.  */
15881     if (stat (objfile->name, &st) < 0)
15882       continue;
15883
15884     dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
15885     if (dwarf2_per_objfile)
15886       {
15887         volatile struct gdb_exception except;
15888
15889         TRY_CATCH (except, RETURN_MASK_ERROR)
15890           {
15891             write_psymtabs_to_index (objfile, arg);
15892           }
15893         if (except.reason < 0)
15894           exception_fprintf (gdb_stderr, except,
15895                              _("Error while writing index for `%s': "),
15896                              objfile->name);
15897       }
15898   }
15899 }
15900
15901 \f
15902
15903 int dwarf2_always_disassemble;
15904
15905 static void
15906 show_dwarf2_always_disassemble (struct ui_file *file, int from_tty,
15907                                 struct cmd_list_element *c, const char *value)
15908 {
15909   fprintf_filtered (file,
15910                     _("Whether to always disassemble "
15911                       "DWARF expressions is %s.\n"),
15912                     value);
15913 }
15914
15915 void _initialize_dwarf2_read (void);
15916
15917 void
15918 _initialize_dwarf2_read (void)
15919 {
15920   struct cmd_list_element *c;
15921
15922   dwarf2_objfile_data_key
15923     = register_objfile_data_with_cleanup (NULL, dwarf2_per_objfile_free);
15924
15925   add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
15926 Set DWARF 2 specific variables.\n\
15927 Configure DWARF 2 variables such as the cache size"),
15928                   &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
15929                   0/*allow-unknown*/, &maintenance_set_cmdlist);
15930
15931   add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
15932 Show DWARF 2 specific variables\n\
15933 Show DWARF 2 variables such as the cache size"),
15934                   &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
15935                   0/*allow-unknown*/, &maintenance_show_cmdlist);
15936
15937   add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
15938                             &dwarf2_max_cache_age, _("\
15939 Set the upper bound on the age of cached dwarf2 compilation units."), _("\
15940 Show the upper bound on the age of cached dwarf2 compilation units."), _("\
15941 A higher limit means that cached compilation units will be stored\n\
15942 in memory longer, and more total memory will be used.  Zero disables\n\
15943 caching, which can slow down startup."),
15944                             NULL,
15945                             show_dwarf2_max_cache_age,
15946                             &set_dwarf2_cmdlist,
15947                             &show_dwarf2_cmdlist);
15948
15949   add_setshow_boolean_cmd ("always-disassemble", class_obscure,
15950                            &dwarf2_always_disassemble, _("\
15951 Set whether `info address' always disassembles DWARF expressions."), _("\
15952 Show whether `info address' always disassembles DWARF expressions."), _("\
15953 When enabled, DWARF expressions are always printed in an assembly-like\n\
15954 syntax.  When disabled, expressions will be printed in a more\n\
15955 conversational style, when possible."),
15956                            NULL,
15957                            show_dwarf2_always_disassemble,
15958                            &set_dwarf2_cmdlist,
15959                            &show_dwarf2_cmdlist);
15960
15961   add_setshow_zinteger_cmd ("dwarf2-die", no_class, &dwarf2_die_debug, _("\
15962 Set debugging of the dwarf2 DIE reader."), _("\
15963 Show debugging of the dwarf2 DIE reader."), _("\
15964 When enabled (non-zero), DIEs are dumped after they are read in.\n\
15965 The value is the maximum depth to print."),
15966                             NULL,
15967                             NULL,
15968                             &setdebuglist, &showdebuglist);
15969
15970   c = add_cmd ("gdb-index", class_files, save_gdb_index_command,
15971                _("\
15972 Save a gdb-index file.\n\
15973 Usage: save gdb-index DIRECTORY"),
15974                &save_cmdlist);
15975   set_cmd_completer (c, filename_completer);
15976 }