PR gdb/15538:
[platform/upstream/binutils.git] / gdb / dwarf2read.c
1 /* DWARF 2 debugging format support for GDB.
2
3    Copyright (C) 1994-2013 Free Software Foundation, Inc.
4
5    Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
6    Inc.  with support from Florida State University (under contract
7    with the Ada Joint Program Office), and Silicon Graphics, Inc.
8    Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
9    based on Fred Fish's (Cygnus Support) implementation of DWARF 1
10    support.
11
12    This file is part of GDB.
13
14    This program is free software; you can redistribute it and/or modify
15    it under the terms of the GNU General Public License as published by
16    the Free Software Foundation; either version 3 of the License, or
17    (at your option) any later version.
18
19    This program is distributed in the hope that it will be useful,
20    but WITHOUT ANY WARRANTY; without even the implied warranty of
21    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22    GNU General Public License for more details.
23
24    You should have received a copy of the GNU General Public License
25    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
26
27 /* FIXME: Various die-reading functions need to be more careful with
28    reading off the end of the section.
29    E.g., load_partial_dies, read_partial_die.  */
30
31 #include "defs.h"
32 #include "bfd.h"
33 #include "elf-bfd.h"
34 #include "symtab.h"
35 #include "gdbtypes.h"
36 #include "objfiles.h"
37 #include "dwarf2.h"
38 #include "buildsym.h"
39 #include "demangle.h"
40 #include "gdb-demangle.h"
41 #include "expression.h"
42 #include "filenames.h"  /* for DOSish file names */
43 #include "macrotab.h"
44 #include "language.h"
45 #include "complaints.h"
46 #include "bcache.h"
47 #include "dwarf2expr.h"
48 #include "dwarf2loc.h"
49 #include "cp-support.h"
50 #include "hashtab.h"
51 #include "command.h"
52 #include "gdbcmd.h"
53 #include "block.h"
54 #include "addrmap.h"
55 #include "typeprint.h"
56 #include "jv-lang.h"
57 #include "psympriv.h"
58 #include "exceptions.h"
59 #include "gdb_stat.h"
60 #include "completer.h"
61 #include "vec.h"
62 #include "c-lang.h"
63 #include "go-lang.h"
64 #include "valprint.h"
65 #include "gdbcore.h" /* for gnutarget */
66 #include "gdb/gdb-index.h"
67 #include <ctype.h>
68 #include "gdb_bfd.h"
69 #include "f-lang.h"
70 #include "source.h"
71 #include "filestuff.h"
72
73 #include <fcntl.h>
74 #include "gdb_string.h"
75 #include "gdb_assert.h"
76 #include <sys/types.h>
77
78 typedef struct symbol *symbolp;
79 DEF_VEC_P (symbolp);
80
81 /* When non-zero, print basic high level tracing messages.
82    This is in contrast to the low level DIE reading of dwarf2_die_debug.  */
83 static int dwarf2_read_debug = 0;
84
85 /* When non-zero, dump DIEs after they are read in.  */
86 static unsigned int dwarf2_die_debug = 0;
87
88 /* When non-zero, cross-check physname against demangler.  */
89 static int check_physname = 0;
90
91 /* When non-zero, do not reject deprecated .gdb_index sections.  */
92 static int use_deprecated_index_sections = 0;
93
94 static const struct objfile_data *dwarf2_objfile_data_key;
95
96 /* The "aclass" indices for various kinds of computed DWARF symbols.  */
97
98 static int dwarf2_locexpr_index;
99 static int dwarf2_loclist_index;
100 static int dwarf2_locexpr_block_index;
101 static int dwarf2_loclist_block_index;
102
103 struct dwarf2_section_info
104 {
105   asection *asection;
106   const gdb_byte *buffer;
107   bfd_size_type size;
108   /* True if we have tried to read this section.  */
109   int readin;
110 };
111
112 typedef struct dwarf2_section_info dwarf2_section_info_def;
113 DEF_VEC_O (dwarf2_section_info_def);
114
115 /* All offsets in the index are of this type.  It must be
116    architecture-independent.  */
117 typedef uint32_t offset_type;
118
119 DEF_VEC_I (offset_type);
120
121 /* Ensure only legit values are used.  */
122 #define DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE(cu_index, value) \
123   do { \
124     gdb_assert ((unsigned int) (value) <= 1); \
125     GDB_INDEX_SYMBOL_STATIC_SET_VALUE((cu_index), (value)); \
126   } while (0)
127
128 /* Ensure only legit values are used.  */
129 #define DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE(cu_index, value) \
130   do { \
131     gdb_assert ((value) >= GDB_INDEX_SYMBOL_KIND_TYPE \
132                 && (value) <= GDB_INDEX_SYMBOL_KIND_OTHER); \
133     GDB_INDEX_SYMBOL_KIND_SET_VALUE((cu_index), (value)); \
134   } while (0)
135
136 /* Ensure we don't use more than the alloted nuber of bits for the CU.  */
137 #define DW2_GDB_INDEX_CU_SET_VALUE(cu_index, value) \
138   do { \
139     gdb_assert (((value) & ~GDB_INDEX_CU_MASK) == 0); \
140     GDB_INDEX_CU_SET_VALUE((cu_index), (value)); \
141   } while (0)
142
143 /* A description of the mapped index.  The file format is described in
144    a comment by the code that writes the index.  */
145 struct mapped_index
146 {
147   /* Index data format version.  */
148   int version;
149
150   /* The total length of the buffer.  */
151   off_t total_size;
152
153   /* A pointer to the address table data.  */
154   const gdb_byte *address_table;
155
156   /* Size of the address table data in bytes.  */
157   offset_type address_table_size;
158
159   /* The symbol table, implemented as a hash table.  */
160   const offset_type *symbol_table;
161
162   /* Size in slots, each slot is 2 offset_types.  */
163   offset_type symbol_table_slots;
164
165   /* A pointer to the constant pool.  */
166   const char *constant_pool;
167 };
168
169 typedef struct dwarf2_per_cu_data *dwarf2_per_cu_ptr;
170 DEF_VEC_P (dwarf2_per_cu_ptr);
171
172 /* Collection of data recorded per objfile.
173    This hangs off of dwarf2_objfile_data_key.  */
174
175 struct dwarf2_per_objfile
176 {
177   struct dwarf2_section_info info;
178   struct dwarf2_section_info abbrev;
179   struct dwarf2_section_info line;
180   struct dwarf2_section_info loc;
181   struct dwarf2_section_info macinfo;
182   struct dwarf2_section_info macro;
183   struct dwarf2_section_info str;
184   struct dwarf2_section_info ranges;
185   struct dwarf2_section_info addr;
186   struct dwarf2_section_info frame;
187   struct dwarf2_section_info eh_frame;
188   struct dwarf2_section_info gdb_index;
189
190   VEC (dwarf2_section_info_def) *types;
191
192   /* Back link.  */
193   struct objfile *objfile;
194
195   /* Table of all the compilation units.  This is used to locate
196      the target compilation unit of a particular reference.  */
197   struct dwarf2_per_cu_data **all_comp_units;
198
199   /* The number of compilation units in ALL_COMP_UNITS.  */
200   int n_comp_units;
201
202   /* The number of .debug_types-related CUs.  */
203   int n_type_units;
204
205   /* The .debug_types-related CUs (TUs).  */
206   struct signatured_type **all_type_units;
207
208   /* The number of entries in all_type_unit_groups.  */
209   int n_type_unit_groups;
210
211   /* Table of type unit groups.
212      This exists to make it easy to iterate over all CUs and TU groups.  */
213   struct type_unit_group **all_type_unit_groups;
214
215   /* Table of struct type_unit_group objects.
216      The hash key is the DW_AT_stmt_list value.  */
217   htab_t type_unit_groups;
218
219   /* A table mapping .debug_types signatures to its signatured_type entry.
220      This is NULL if the .debug_types section hasn't been read in yet.  */
221   htab_t signatured_types;
222
223   /* Type unit statistics, to see how well the scaling improvements
224      are doing.  */
225   struct tu_stats
226   {
227     int nr_uniq_abbrev_tables;
228     int nr_symtabs;
229     int nr_symtab_sharers;
230     int nr_stmt_less_type_units;
231   } tu_stats;
232
233   /* A chain of compilation units that are currently read in, so that
234      they can be freed later.  */
235   struct dwarf2_per_cu_data *read_in_chain;
236
237   /* A table mapping DW_AT_dwo_name values to struct dwo_file objects.
238      This is NULL if the table hasn't been allocated yet.  */
239   htab_t dwo_files;
240
241   /* Non-zero if we've check for whether there is a DWP file.  */
242   int dwp_checked;
243
244   /* The DWP file if there is one, or NULL.  */
245   struct dwp_file *dwp_file;
246
247   /* The shared '.dwz' file, if one exists.  This is used when the
248      original data was compressed using 'dwz -m'.  */
249   struct dwz_file *dwz_file;
250
251   /* A flag indicating wether this objfile has a section loaded at a
252      VMA of 0.  */
253   int has_section_at_zero;
254
255   /* True if we are using the mapped index,
256      or we are faking it for OBJF_READNOW's sake.  */
257   unsigned char using_index;
258
259   /* The mapped index, or NULL if .gdb_index is missing or not being used.  */
260   struct mapped_index *index_table;
261
262   /* When using index_table, this keeps track of all quick_file_names entries.
263      TUs typically share line table entries with a CU, so we maintain a
264      separate table of all line table entries to support the sharing.
265      Note that while there can be way more TUs than CUs, we've already
266      sorted all the TUs into "type unit groups", grouped by their
267      DW_AT_stmt_list value.  Therefore the only sharing done here is with a
268      CU and its associated TU group if there is one.  */
269   htab_t quick_file_names_table;
270
271   /* Set during partial symbol reading, to prevent queueing of full
272      symbols.  */
273   int reading_partial_symbols;
274
275   /* Table mapping type DIEs to their struct type *.
276      This is NULL if not allocated yet.
277      The mapping is done via (CU/TU + DIE offset) -> type.  */
278   htab_t die_type_hash;
279
280   /* The CUs we recently read.  */
281   VEC (dwarf2_per_cu_ptr) *just_read_cus;
282 };
283
284 static struct dwarf2_per_objfile *dwarf2_per_objfile;
285
286 /* Default names of the debugging sections.  */
287
288 /* Note that if the debugging section has been compressed, it might
289    have a name like .zdebug_info.  */
290
291 static const struct dwarf2_debug_sections dwarf2_elf_names =
292 {
293   { ".debug_info", ".zdebug_info" },
294   { ".debug_abbrev", ".zdebug_abbrev" },
295   { ".debug_line", ".zdebug_line" },
296   { ".debug_loc", ".zdebug_loc" },
297   { ".debug_macinfo", ".zdebug_macinfo" },
298   { ".debug_macro", ".zdebug_macro" },
299   { ".debug_str", ".zdebug_str" },
300   { ".debug_ranges", ".zdebug_ranges" },
301   { ".debug_types", ".zdebug_types" },
302   { ".debug_addr", ".zdebug_addr" },
303   { ".debug_frame", ".zdebug_frame" },
304   { ".eh_frame", NULL },
305   { ".gdb_index", ".zgdb_index" },
306   23
307 };
308
309 /* List of DWO/DWP sections.  */
310
311 static const struct dwop_section_names
312 {
313   struct dwarf2_section_names abbrev_dwo;
314   struct dwarf2_section_names info_dwo;
315   struct dwarf2_section_names line_dwo;
316   struct dwarf2_section_names loc_dwo;
317   struct dwarf2_section_names macinfo_dwo;
318   struct dwarf2_section_names macro_dwo;
319   struct dwarf2_section_names str_dwo;
320   struct dwarf2_section_names str_offsets_dwo;
321   struct dwarf2_section_names types_dwo;
322   struct dwarf2_section_names cu_index;
323   struct dwarf2_section_names tu_index;
324 }
325 dwop_section_names =
326 {
327   { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo" },
328   { ".debug_info.dwo", ".zdebug_info.dwo" },
329   { ".debug_line.dwo", ".zdebug_line.dwo" },
330   { ".debug_loc.dwo", ".zdebug_loc.dwo" },
331   { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo" },
332   { ".debug_macro.dwo", ".zdebug_macro.dwo" },
333   { ".debug_str.dwo", ".zdebug_str.dwo" },
334   { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo" },
335   { ".debug_types.dwo", ".zdebug_types.dwo" },
336   { ".debug_cu_index", ".zdebug_cu_index" },
337   { ".debug_tu_index", ".zdebug_tu_index" },
338 };
339
340 /* local data types */
341
342 /* The data in a compilation unit header, after target2host
343    translation, looks like this.  */
344 struct comp_unit_head
345 {
346   unsigned int length;
347   short version;
348   unsigned char addr_size;
349   unsigned char signed_addr_p;
350   sect_offset abbrev_offset;
351
352   /* Size of file offsets; either 4 or 8.  */
353   unsigned int offset_size;
354
355   /* Size of the length field; either 4 or 12.  */
356   unsigned int initial_length_size;
357
358   /* Offset to the first byte of this compilation unit header in the
359      .debug_info section, for resolving relative reference dies.  */
360   sect_offset offset;
361
362   /* Offset to first die in this cu from the start of the cu.
363      This will be the first byte following the compilation unit header.  */
364   cu_offset first_die_offset;
365 };
366
367 /* Type used for delaying computation of method physnames.
368    See comments for compute_delayed_physnames.  */
369 struct delayed_method_info
370 {
371   /* The type to which the method is attached, i.e., its parent class.  */
372   struct type *type;
373
374   /* The index of the method in the type's function fieldlists.  */
375   int fnfield_index;
376
377   /* The index of the method in the fieldlist.  */
378   int index;
379
380   /* The name of the DIE.  */
381   const char *name;
382
383   /*  The DIE associated with this method.  */
384   struct die_info *die;
385 };
386
387 typedef struct delayed_method_info delayed_method_info;
388 DEF_VEC_O (delayed_method_info);
389
390 /* Internal state when decoding a particular compilation unit.  */
391 struct dwarf2_cu
392 {
393   /* The objfile containing this compilation unit.  */
394   struct objfile *objfile;
395
396   /* The header of the compilation unit.  */
397   struct comp_unit_head header;
398
399   /* Base address of this compilation unit.  */
400   CORE_ADDR base_address;
401
402   /* Non-zero if base_address has been set.  */
403   int base_known;
404
405   /* The language we are debugging.  */
406   enum language language;
407   const struct language_defn *language_defn;
408
409   const char *producer;
410
411   /* The generic symbol table building routines have separate lists for
412      file scope symbols and all all other scopes (local scopes).  So
413      we need to select the right one to pass to add_symbol_to_list().
414      We do it by keeping a pointer to the correct list in list_in_scope.
415
416      FIXME: The original dwarf code just treated the file scope as the
417      first local scope, and all other local scopes as nested local
418      scopes, and worked fine.  Check to see if we really need to
419      distinguish these in buildsym.c.  */
420   struct pending **list_in_scope;
421
422   /* The abbrev table for this CU.
423      Normally this points to the abbrev table in the objfile.
424      But if DWO_UNIT is non-NULL this is the abbrev table in the DWO file.  */
425   struct abbrev_table *abbrev_table;
426
427   /* Hash table holding all the loaded partial DIEs
428      with partial_die->offset.SECT_OFF as hash.  */
429   htab_t partial_dies;
430
431   /* Storage for things with the same lifetime as this read-in compilation
432      unit, including partial DIEs.  */
433   struct obstack comp_unit_obstack;
434
435   /* When multiple dwarf2_cu structures are living in memory, this field
436      chains them all together, so that they can be released efficiently.
437      We will probably also want a generation counter so that most-recently-used
438      compilation units are cached...  */
439   struct dwarf2_per_cu_data *read_in_chain;
440
441   /* Backchain to our per_cu entry if the tree has been built.  */
442   struct dwarf2_per_cu_data *per_cu;
443
444   /* How many compilation units ago was this CU last referenced?  */
445   int last_used;
446
447   /* A hash table of DIE cu_offset for following references with
448      die_info->offset.sect_off as hash.  */
449   htab_t die_hash;
450
451   /* Full DIEs if read in.  */
452   struct die_info *dies;
453
454   /* A set of pointers to dwarf2_per_cu_data objects for compilation
455      units referenced by this one.  Only set during full symbol processing;
456      partial symbol tables do not have dependencies.  */
457   htab_t dependencies;
458
459   /* Header data from the line table, during full symbol processing.  */
460   struct line_header *line_header;
461
462   /* A list of methods which need to have physnames computed
463      after all type information has been read.  */
464   VEC (delayed_method_info) *method_list;
465
466   /* To be copied to symtab->call_site_htab.  */
467   htab_t call_site_htab;
468
469   /* Non-NULL if this CU came from a DWO file.
470      There is an invariant here that is important to remember:
471      Except for attributes copied from the top level DIE in the "main"
472      (or "stub") file in preparation for reading the DWO file
473      (e.g., DW_AT_GNU_addr_base), we KISS: there is only *one* CU.
474      Either there isn't a DWO file (in which case this is NULL and the point
475      is moot), or there is and either we're not going to read it (in which
476      case this is NULL) or there is and we are reading it (in which case this
477      is non-NULL).  */
478   struct dwo_unit *dwo_unit;
479
480   /* The DW_AT_addr_base attribute if present, zero otherwise
481      (zero is a valid value though).
482      Note this value comes from the stub CU/TU's DIE.  */
483   ULONGEST addr_base;
484
485   /* The DW_AT_ranges_base attribute if present, zero otherwise
486      (zero is a valid value though).
487      Note this value comes from the stub CU/TU's DIE.
488      Also note that the value is zero in the non-DWO case so this value can
489      be used without needing to know whether DWO files are in use or not.
490      N.B. This does not apply to DW_AT_ranges appearing in
491      DW_TAG_compile_unit dies.  This is a bit of a wart, consider if ever
492      DW_AT_ranges appeared in the DW_TAG_compile_unit of DWO DIEs: then
493      DW_AT_ranges_base *would* have to be applied, and we'd have to care
494      whether the DW_AT_ranges attribute came from the skeleton or DWO.  */
495   ULONGEST ranges_base;
496
497   /* Mark used when releasing cached dies.  */
498   unsigned int mark : 1;
499
500   /* This CU references .debug_loc.  See the symtab->locations_valid field.
501      This test is imperfect as there may exist optimized debug code not using
502      any location list and still facing inlining issues if handled as
503      unoptimized code.  For a future better test see GCC PR other/32998.  */
504   unsigned int has_loclist : 1;
505
506   /* These cache the results for producer_is_* fields.  CHECKED_PRODUCER is set
507      if all the producer_is_* fields are valid.  This information is cached
508      because profiling CU expansion showed excessive time spent in
509      producer_is_gxx_lt_4_6.  */
510   unsigned int checked_producer : 1;
511   unsigned int producer_is_gxx_lt_4_6 : 1;
512   unsigned int producer_is_gcc_lt_4_3 : 1;
513   unsigned int producer_is_icc : 1;
514
515   /* When set, the file that we're processing is known to have
516      debugging info for C++ namespaces.  GCC 3.3.x did not produce
517      this information, but later versions do.  */
518
519   unsigned int processing_has_namespace_info : 1;
520 };
521
522 /* Persistent data held for a compilation unit, even when not
523    processing it.  We put a pointer to this structure in the
524    read_symtab_private field of the psymtab.  */
525
526 struct dwarf2_per_cu_data
527 {
528   /* The start offset and length of this compilation unit.
529      NOTE: Unlike comp_unit_head.length, this length includes
530      initial_length_size.
531      If the DIE refers to a DWO file, this is always of the original die,
532      not the DWO file.  */
533   sect_offset offset;
534   unsigned int length;
535
536   /* Flag indicating this compilation unit will be read in before
537      any of the current compilation units are processed.  */
538   unsigned int queued : 1;
539
540   /* This flag will be set when reading partial DIEs if we need to load
541      absolutely all DIEs for this compilation unit, instead of just the ones
542      we think are interesting.  It gets set if we look for a DIE in the
543      hash table and don't find it.  */
544   unsigned int load_all_dies : 1;
545
546   /* Non-zero if this CU is from .debug_types.
547      Struct dwarf2_per_cu_data is contained in struct signatured_type iff
548      this is non-zero.  */
549   unsigned int is_debug_types : 1;
550
551   /* Non-zero if this CU is from the .dwz file.  */
552   unsigned int is_dwz : 1;
553
554   /* The section this CU/TU lives in.
555      If the DIE refers to a DWO file, this is always the original die,
556      not the DWO file.  */
557   struct dwarf2_section_info *section;
558
559   /* Set to non-NULL iff this CU is currently loaded.  When it gets freed out
560      of the CU cache it gets reset to NULL again.  */
561   struct dwarf2_cu *cu;
562
563   /* The corresponding objfile.
564      Normally we can get the objfile from dwarf2_per_objfile.
565      However we can enter this file with just a "per_cu" handle.  */
566   struct objfile *objfile;
567
568   /* When using partial symbol tables, the 'psymtab' field is active.
569      Otherwise the 'quick' field is active.  */
570   union
571   {
572     /* The partial symbol table associated with this compilation unit,
573        or NULL for unread partial units.  */
574     struct partial_symtab *psymtab;
575
576     /* Data needed by the "quick" functions.  */
577     struct dwarf2_per_cu_quick_data *quick;
578   } v;
579
580   /* The CUs we import using DW_TAG_imported_unit.  This is filled in
581      while reading psymtabs, used to compute the psymtab dependencies,
582      and then cleared.  Then it is filled in again while reading full
583      symbols, and only deleted when the objfile is destroyed.
584
585      This is also used to work around a difference between the way gold
586      generates .gdb_index version <=7 and the way gdb does.  Arguably this
587      is a gold bug.  For symbols coming from TUs, gold records in the index
588      the CU that includes the TU instead of the TU itself.  This breaks
589      dw2_lookup_symbol: It assumes that if the index says symbol X lives
590      in CU/TU Y, then one need only expand Y and a subsequent lookup in Y
591      will find X.  Alas TUs live in their own symtab, so after expanding CU Y
592      we need to look in TU Z to find X.  Fortunately, this is akin to
593      DW_TAG_imported_unit, so we just use the same mechanism: For
594      .gdb_index version <=7 this also records the TUs that the CU referred
595      to.  Concurrently with this change gdb was modified to emit version 8
596      indices so we only pay a price for gold generated indices.  */
597   VEC (dwarf2_per_cu_ptr) *imported_symtabs;
598 };
599
600 /* Entry in the signatured_types hash table.  */
601
602 struct signatured_type
603 {
604   /* The "per_cu" object of this type.
605      This struct is used iff per_cu.is_debug_types.
606      N.B.: This is the first member so that it's easy to convert pointers
607      between them.  */
608   struct dwarf2_per_cu_data per_cu;
609
610   /* The type's signature.  */
611   ULONGEST signature;
612
613   /* Offset in the TU of the type's DIE, as read from the TU header.
614      If this TU is a DWO stub and the definition lives in a DWO file
615      (specified by DW_AT_GNU_dwo_name), this value is unusable.  */
616   cu_offset type_offset_in_tu;
617
618   /* Offset in the section of the type's DIE.
619      If the definition lives in a DWO file, this is the offset in the
620      .debug_types.dwo section.
621      The value is zero until the actual value is known.
622      Zero is otherwise not a valid section offset.  */
623   sect_offset type_offset_in_section;
624
625   /* Type units are grouped by their DW_AT_stmt_list entry so that they
626      can share them.  This points to the containing symtab.  */
627   struct type_unit_group *type_unit_group;
628
629   /* The type.
630      The first time we encounter this type we fully read it in and install it
631      in the symbol tables.  Subsequent times we only need the type.  */
632   struct type *type;
633 };
634
635 typedef struct signatured_type *sig_type_ptr;
636 DEF_VEC_P (sig_type_ptr);
637
638 /* A struct that can be used as a hash key for tables based on DW_AT_stmt_list.
639    This includes type_unit_group and quick_file_names.  */
640
641 struct stmt_list_hash
642 {
643   /* The DWO unit this table is from or NULL if there is none.  */
644   struct dwo_unit *dwo_unit;
645
646   /* Offset in .debug_line or .debug_line.dwo.  */
647   sect_offset line_offset;
648 };
649
650 /* Each element of dwarf2_per_objfile->type_unit_groups is a pointer to
651    an object of this type.  */
652
653 struct type_unit_group
654 {
655   /* dwarf2read.c's main "handle" on a TU symtab.
656      To simplify things we create an artificial CU that "includes" all the
657      type units using this stmt_list so that the rest of the code still has
658      a "per_cu" handle on the symtab.
659      This PER_CU is recognized by having no section.  */
660 #define IS_TYPE_UNIT_GROUP(per_cu) ((per_cu)->section == NULL)
661   struct dwarf2_per_cu_data per_cu;
662
663   /* The TUs that share this DW_AT_stmt_list entry.
664      This is added to while parsing type units to build partial symtabs,
665      and is deleted afterwards and not used again.  */
666   VEC (sig_type_ptr) *tus;
667
668   /* The primary symtab.
669      Type units in a group needn't all be defined in the same source file,
670      so we create an essentially anonymous symtab as the primary symtab.  */
671   struct symtab *primary_symtab;
672
673   /* The data used to construct the hash key.  */
674   struct stmt_list_hash hash;
675
676   /* The number of symtabs from the line header.
677      The value here must match line_header.num_file_names.  */
678   unsigned int num_symtabs;
679
680   /* The symbol tables for this TU (obtained from the files listed in
681      DW_AT_stmt_list).
682      WARNING: The order of entries here must match the order of entries
683      in the line header.  After the first TU using this type_unit_group, the
684      line header for the subsequent TUs is recreated from this.  This is done
685      because we need to use the same symtabs for each TU using the same
686      DW_AT_stmt_list value.  Also note that symtabs may be repeated here,
687      there's no guarantee the line header doesn't have duplicate entries.  */
688   struct symtab **symtabs;
689 };
690
691 /* These sections are what may appear in a DWO file.  */
692
693 struct dwo_sections
694 {
695   struct dwarf2_section_info abbrev;
696   struct dwarf2_section_info line;
697   struct dwarf2_section_info loc;
698   struct dwarf2_section_info macinfo;
699   struct dwarf2_section_info macro;
700   struct dwarf2_section_info str;
701   struct dwarf2_section_info str_offsets;
702   /* In the case of a virtual DWO file, these two are unused.  */
703   struct dwarf2_section_info info;
704   VEC (dwarf2_section_info_def) *types;
705 };
706
707 /* CUs/TUs in DWP/DWO files.  */
708
709 struct dwo_unit
710 {
711   /* Backlink to the containing struct dwo_file.  */
712   struct dwo_file *dwo_file;
713
714   /* The "id" that distinguishes this CU/TU.
715      .debug_info calls this "dwo_id", .debug_types calls this "signature".
716      Since signatures came first, we stick with it for consistency.  */
717   ULONGEST signature;
718
719   /* The section this CU/TU lives in, in the DWO file.  */
720   struct dwarf2_section_info *section;
721
722   /* Same as dwarf2_per_cu_data:{offset,length} but for the DWO section.  */
723   sect_offset offset;
724   unsigned int length;
725
726   /* For types, offset in the type's DIE of the type defined by this TU.  */
727   cu_offset type_offset_in_tu;
728 };
729
730 /* Data for one DWO file.
731    This includes virtual DWO files that have been packaged into a
732    DWP file.  */
733
734 struct dwo_file
735 {
736   /* The DW_AT_GNU_dwo_name attribute.
737      For virtual DWO files the name is constructed from the section offsets
738      of abbrev,line,loc,str_offsets so that we combine virtual DWO files
739      from related CU+TUs.  */
740   const char *dwo_name;
741
742   /* The DW_AT_comp_dir attribute.  */
743   const char *comp_dir;
744
745   /* The bfd, when the file is open.  Otherwise this is NULL.
746      This is unused(NULL) for virtual DWO files where we use dwp_file.dbfd.  */
747   bfd *dbfd;
748
749   /* Section info for this file.  */
750   struct dwo_sections sections;
751
752   /* The CU in the file.
753      We only support one because having more than one requires hacking the
754      dwo_name of each to match, which is highly unlikely to happen.
755      Doing this means all TUs can share comp_dir: We also assume that
756      DW_AT_comp_dir across all TUs in a DWO file will be identical.  */
757   struct dwo_unit *cu;
758
759   /* Table of TUs in the file.
760      Each element is a struct dwo_unit.  */
761   htab_t tus;
762 };
763
764 /* These sections are what may appear in a DWP file.  */
765
766 struct dwp_sections
767 {
768   struct dwarf2_section_info str;
769   struct dwarf2_section_info cu_index;
770   struct dwarf2_section_info tu_index;
771   /* The .debug_info.dwo, .debug_types.dwo, and other sections are referenced
772      by section number.  We don't need to record them here.  */
773 };
774
775 /* These sections are what may appear in a virtual DWO file.  */
776
777 struct virtual_dwo_sections
778 {
779   struct dwarf2_section_info abbrev;
780   struct dwarf2_section_info line;
781   struct dwarf2_section_info loc;
782   struct dwarf2_section_info macinfo;
783   struct dwarf2_section_info macro;
784   struct dwarf2_section_info str_offsets;
785   /* Each DWP hash table entry records one CU or one TU.
786      That is recorded here, and copied to dwo_unit.section.  */
787   struct dwarf2_section_info info_or_types;
788 };
789
790 /* Contents of DWP hash tables.  */
791
792 struct dwp_hash_table
793 {
794   uint32_t nr_units, nr_slots;
795   const gdb_byte *hash_table, *unit_table, *section_pool;
796 };
797
798 /* Data for one DWP file.  */
799
800 struct dwp_file
801 {
802   /* Name of the file.  */
803   const char *name;
804
805   /* The bfd, when the file is open.  Otherwise this is NULL.  */
806   bfd *dbfd;
807
808   /* Section info for this file.  */
809   struct dwp_sections sections;
810
811   /* Table of CUs in the file. */
812   const struct dwp_hash_table *cus;
813
814   /* Table of TUs in the file.  */
815   const struct dwp_hash_table *tus;
816
817   /* Table of loaded CUs/TUs.  Each entry is a struct dwo_unit *.  */
818   htab_t loaded_cutus;
819
820   /* Table to map ELF section numbers to their sections.  */
821   unsigned int num_sections;
822   asection **elf_sections;
823 };
824
825 /* This represents a '.dwz' file.  */
826
827 struct dwz_file
828 {
829   /* A dwz file can only contain a few sections.  */
830   struct dwarf2_section_info abbrev;
831   struct dwarf2_section_info info;
832   struct dwarf2_section_info str;
833   struct dwarf2_section_info line;
834   struct dwarf2_section_info macro;
835   struct dwarf2_section_info gdb_index;
836
837   /* The dwz's BFD.  */
838   bfd *dwz_bfd;
839 };
840
841 /* Struct used to pass misc. parameters to read_die_and_children, et
842    al.  which are used for both .debug_info and .debug_types dies.
843    All parameters here are unchanging for the life of the call.  This
844    struct exists to abstract away the constant parameters of die reading.  */
845
846 struct die_reader_specs
847 {
848   /* die_section->asection->owner.  */
849   bfd* abfd;
850
851   /* The CU of the DIE we are parsing.  */
852   struct dwarf2_cu *cu;
853
854   /* Non-NULL if reading a DWO file (including one packaged into a DWP).  */
855   struct dwo_file *dwo_file;
856
857   /* The section the die comes from.
858      This is either .debug_info or .debug_types, or the .dwo variants.  */
859   struct dwarf2_section_info *die_section;
860
861   /* die_section->buffer.  */
862   const gdb_byte *buffer;
863
864   /* The end of the buffer.  */
865   const gdb_byte *buffer_end;
866 };
867
868 /* Type of function passed to init_cutu_and_read_dies, et.al.  */
869 typedef void (die_reader_func_ftype) (const struct die_reader_specs *reader,
870                                       const gdb_byte *info_ptr,
871                                       struct die_info *comp_unit_die,
872                                       int has_children,
873                                       void *data);
874
875 /* The line number information for a compilation unit (found in the
876    .debug_line section) begins with a "statement program header",
877    which contains the following information.  */
878 struct line_header
879 {
880   unsigned int total_length;
881   unsigned short version;
882   unsigned int header_length;
883   unsigned char minimum_instruction_length;
884   unsigned char maximum_ops_per_instruction;
885   unsigned char default_is_stmt;
886   int line_base;
887   unsigned char line_range;
888   unsigned char opcode_base;
889
890   /* standard_opcode_lengths[i] is the number of operands for the
891      standard opcode whose value is i.  This means that
892      standard_opcode_lengths[0] is unused, and the last meaningful
893      element is standard_opcode_lengths[opcode_base - 1].  */
894   unsigned char *standard_opcode_lengths;
895
896   /* The include_directories table.  NOTE!  These strings are not
897      allocated with xmalloc; instead, they are pointers into
898      debug_line_buffer.  If you try to free them, `free' will get
899      indigestion.  */
900   unsigned int num_include_dirs, include_dirs_size;
901   const char **include_dirs;
902
903   /* The file_names table.  NOTE!  These strings are not allocated
904      with xmalloc; instead, they are pointers into debug_line_buffer.
905      Don't try to free them directly.  */
906   unsigned int num_file_names, file_names_size;
907   struct file_entry
908   {
909     const char *name;
910     unsigned int dir_index;
911     unsigned int mod_time;
912     unsigned int length;
913     int included_p; /* Non-zero if referenced by the Line Number Program.  */
914     struct symtab *symtab; /* The associated symbol table, if any.  */
915   } *file_names;
916
917   /* The start and end of the statement program following this
918      header.  These point into dwarf2_per_objfile->line_buffer.  */
919   const gdb_byte *statement_program_start, *statement_program_end;
920 };
921
922 /* When we construct a partial symbol table entry we only
923    need this much information.  */
924 struct partial_die_info
925   {
926     /* Offset of this DIE.  */
927     sect_offset offset;
928
929     /* DWARF-2 tag for this DIE.  */
930     ENUM_BITFIELD(dwarf_tag) tag : 16;
931
932     /* Assorted flags describing the data found in this DIE.  */
933     unsigned int has_children : 1;
934     unsigned int is_external : 1;
935     unsigned int is_declaration : 1;
936     unsigned int has_type : 1;
937     unsigned int has_specification : 1;
938     unsigned int has_pc_info : 1;
939     unsigned int may_be_inlined : 1;
940
941     /* Flag set if the SCOPE field of this structure has been
942        computed.  */
943     unsigned int scope_set : 1;
944
945     /* Flag set if the DIE has a byte_size attribute.  */
946     unsigned int has_byte_size : 1;
947
948     /* Flag set if any of the DIE's children are template arguments.  */
949     unsigned int has_template_arguments : 1;
950
951     /* Flag set if fixup_partial_die has been called on this die.  */
952     unsigned int fixup_called : 1;
953
954     /* Flag set if DW_TAG_imported_unit uses DW_FORM_GNU_ref_alt.  */
955     unsigned int is_dwz : 1;
956
957     /* Flag set if spec_offset uses DW_FORM_GNU_ref_alt.  */
958     unsigned int spec_is_dwz : 1;
959
960     /* The name of this DIE.  Normally the value of DW_AT_name, but
961        sometimes a default name for unnamed DIEs.  */
962     const char *name;
963
964     /* The linkage name, if present.  */
965     const char *linkage_name;
966
967     /* The scope to prepend to our children.  This is generally
968        allocated on the comp_unit_obstack, so will disappear
969        when this compilation unit leaves the cache.  */
970     const char *scope;
971
972     /* Some data associated with the partial DIE.  The tag determines
973        which field is live.  */
974     union
975     {
976       /* The location description associated with this DIE, if any.  */
977       struct dwarf_block *locdesc;
978       /* The offset of an import, for DW_TAG_imported_unit.  */
979       sect_offset offset;
980     } d;
981
982     /* If HAS_PC_INFO, the PC range associated with this DIE.  */
983     CORE_ADDR lowpc;
984     CORE_ADDR highpc;
985
986     /* Pointer into the info_buffer (or types_buffer) pointing at the target of
987        DW_AT_sibling, if any.  */
988     /* NOTE: This member isn't strictly necessary, read_partial_die could
989        return DW_AT_sibling values to its caller load_partial_dies.  */
990     const gdb_byte *sibling;
991
992     /* If HAS_SPECIFICATION, the offset of the DIE referred to by
993        DW_AT_specification (or DW_AT_abstract_origin or
994        DW_AT_extension).  */
995     sect_offset spec_offset;
996
997     /* Pointers to this DIE's parent, first child, and next sibling,
998        if any.  */
999     struct partial_die_info *die_parent, *die_child, *die_sibling;
1000   };
1001
1002 /* This data structure holds the information of an abbrev.  */
1003 struct abbrev_info
1004   {
1005     unsigned int number;        /* number identifying abbrev */
1006     enum dwarf_tag tag;         /* dwarf tag */
1007     unsigned short has_children;                /* boolean */
1008     unsigned short num_attrs;   /* number of attributes */
1009     struct attr_abbrev *attrs;  /* an array of attribute descriptions */
1010     struct abbrev_info *next;   /* next in chain */
1011   };
1012
1013 struct attr_abbrev
1014   {
1015     ENUM_BITFIELD(dwarf_attribute) name : 16;
1016     ENUM_BITFIELD(dwarf_form) form : 16;
1017   };
1018
1019 /* Size of abbrev_table.abbrev_hash_table.  */
1020 #define ABBREV_HASH_SIZE 121
1021
1022 /* Top level data structure to contain an abbreviation table.  */
1023
1024 struct abbrev_table
1025 {
1026   /* Where the abbrev table came from.
1027      This is used as a sanity check when the table is used.  */
1028   sect_offset offset;
1029
1030   /* Storage for the abbrev table.  */
1031   struct obstack abbrev_obstack;
1032
1033   /* Hash table of abbrevs.
1034      This is an array of size ABBREV_HASH_SIZE allocated in abbrev_obstack.
1035      It could be statically allocated, but the previous code didn't so we
1036      don't either.  */
1037   struct abbrev_info **abbrevs;
1038 };
1039
1040 /* Attributes have a name and a value.  */
1041 struct attribute
1042   {
1043     ENUM_BITFIELD(dwarf_attribute) name : 16;
1044     ENUM_BITFIELD(dwarf_form) form : 15;
1045
1046     /* Has DW_STRING already been updated by dwarf2_canonicalize_name?  This
1047        field should be in u.str (existing only for DW_STRING) but it is kept
1048        here for better struct attribute alignment.  */
1049     unsigned int string_is_canonical : 1;
1050
1051     union
1052       {
1053         const char *str;
1054         struct dwarf_block *blk;
1055         ULONGEST unsnd;
1056         LONGEST snd;
1057         CORE_ADDR addr;
1058         ULONGEST signature;
1059       }
1060     u;
1061   };
1062
1063 /* This data structure holds a complete die structure.  */
1064 struct die_info
1065   {
1066     /* DWARF-2 tag for this DIE.  */
1067     ENUM_BITFIELD(dwarf_tag) tag : 16;
1068
1069     /* Number of attributes */
1070     unsigned char num_attrs;
1071
1072     /* True if we're presently building the full type name for the
1073        type derived from this DIE.  */
1074     unsigned char building_fullname : 1;
1075
1076     /* Abbrev number */
1077     unsigned int abbrev;
1078
1079     /* Offset in .debug_info or .debug_types section.  */
1080     sect_offset offset;
1081
1082     /* The dies in a compilation unit form an n-ary tree.  PARENT
1083        points to this die's parent; CHILD points to the first child of
1084        this node; and all the children of a given node are chained
1085        together via their SIBLING fields.  */
1086     struct die_info *child;     /* Its first child, if any.  */
1087     struct die_info *sibling;   /* Its next sibling, if any.  */
1088     struct die_info *parent;    /* Its parent, if any.  */
1089
1090     /* An array of attributes, with NUM_ATTRS elements.  There may be
1091        zero, but it's not common and zero-sized arrays are not
1092        sufficiently portable C.  */
1093     struct attribute attrs[1];
1094   };
1095
1096 /* Get at parts of an attribute structure.  */
1097
1098 #define DW_STRING(attr)    ((attr)->u.str)
1099 #define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
1100 #define DW_UNSND(attr)     ((attr)->u.unsnd)
1101 #define DW_BLOCK(attr)     ((attr)->u.blk)
1102 #define DW_SND(attr)       ((attr)->u.snd)
1103 #define DW_ADDR(attr)      ((attr)->u.addr)
1104 #define DW_SIGNATURE(attr) ((attr)->u.signature)
1105
1106 /* Blocks are a bunch of untyped bytes.  */
1107 struct dwarf_block
1108   {
1109     size_t size;
1110
1111     /* Valid only if SIZE is not zero.  */
1112     const gdb_byte *data;
1113   };
1114
1115 #ifndef ATTR_ALLOC_CHUNK
1116 #define ATTR_ALLOC_CHUNK 4
1117 #endif
1118
1119 /* Allocate fields for structs, unions and enums in this size.  */
1120 #ifndef DW_FIELD_ALLOC_CHUNK
1121 #define DW_FIELD_ALLOC_CHUNK 4
1122 #endif
1123
1124 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
1125    but this would require a corresponding change in unpack_field_as_long
1126    and friends.  */
1127 static int bits_per_byte = 8;
1128
1129 /* The routines that read and process dies for a C struct or C++ class
1130    pass lists of data member fields and lists of member function fields
1131    in an instance of a field_info structure, as defined below.  */
1132 struct field_info
1133   {
1134     /* List of data member and baseclasses fields.  */
1135     struct nextfield
1136       {
1137         struct nextfield *next;
1138         int accessibility;
1139         int virtuality;
1140         struct field field;
1141       }
1142      *fields, *baseclasses;
1143
1144     /* Number of fields (including baseclasses).  */
1145     int nfields;
1146
1147     /* Number of baseclasses.  */
1148     int nbaseclasses;
1149
1150     /* Set if the accesibility of one of the fields is not public.  */
1151     int non_public_fields;
1152
1153     /* Member function fields array, entries are allocated in the order they
1154        are encountered in the object file.  */
1155     struct nextfnfield
1156       {
1157         struct nextfnfield *next;
1158         struct fn_field fnfield;
1159       }
1160      *fnfields;
1161
1162     /* Member function fieldlist array, contains name of possibly overloaded
1163        member function, number of overloaded member functions and a pointer
1164        to the head of the member function field chain.  */
1165     struct fnfieldlist
1166       {
1167         const char *name;
1168         int length;
1169         struct nextfnfield *head;
1170       }
1171      *fnfieldlists;
1172
1173     /* Number of entries in the fnfieldlists array.  */
1174     int nfnfields;
1175
1176     /* typedefs defined inside this class.  TYPEDEF_FIELD_LIST contains head of
1177        a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements.  */
1178     struct typedef_field_list
1179       {
1180         struct typedef_field field;
1181         struct typedef_field_list *next;
1182       }
1183     *typedef_field_list;
1184     unsigned typedef_field_list_count;
1185   };
1186
1187 /* One item on the queue of compilation units to read in full symbols
1188    for.  */
1189 struct dwarf2_queue_item
1190 {
1191   struct dwarf2_per_cu_data *per_cu;
1192   enum language pretend_language;
1193   struct dwarf2_queue_item *next;
1194 };
1195
1196 /* The current queue.  */
1197 static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
1198
1199 /* Loaded secondary compilation units are kept in memory until they
1200    have not been referenced for the processing of this many
1201    compilation units.  Set this to zero to disable caching.  Cache
1202    sizes of up to at least twenty will improve startup time for
1203    typical inter-CU-reference binaries, at an obvious memory cost.  */
1204 static int dwarf2_max_cache_age = 5;
1205 static void
1206 show_dwarf2_max_cache_age (struct ui_file *file, int from_tty,
1207                            struct cmd_list_element *c, const char *value)
1208 {
1209   fprintf_filtered (file, _("The upper bound on the age of cached "
1210                             "dwarf2 compilation units is %s.\n"),
1211                     value);
1212 }
1213
1214
1215 /* Various complaints about symbol reading that don't abort the process.  */
1216
1217 static void
1218 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
1219 {
1220   complaint (&symfile_complaints,
1221              _("statement list doesn't fit in .debug_line section"));
1222 }
1223
1224 static void
1225 dwarf2_debug_line_missing_file_complaint (void)
1226 {
1227   complaint (&symfile_complaints,
1228              _(".debug_line section has line data without a file"));
1229 }
1230
1231 static void
1232 dwarf2_debug_line_missing_end_sequence_complaint (void)
1233 {
1234   complaint (&symfile_complaints,
1235              _(".debug_line section has line "
1236                "program sequence without an end"));
1237 }
1238
1239 static void
1240 dwarf2_complex_location_expr_complaint (void)
1241 {
1242   complaint (&symfile_complaints, _("location expression too complex"));
1243 }
1244
1245 static void
1246 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
1247                                               int arg3)
1248 {
1249   complaint (&symfile_complaints,
1250              _("const value length mismatch for '%s', got %d, expected %d"),
1251              arg1, arg2, arg3);
1252 }
1253
1254 static void
1255 dwarf2_section_buffer_overflow_complaint (struct dwarf2_section_info *section)
1256 {
1257   complaint (&symfile_complaints,
1258              _("debug info runs off end of %s section"
1259                " [in module %s]"),
1260              section->asection->name,
1261              bfd_get_filename (section->asection->owner));
1262 }
1263
1264 static void
1265 dwarf2_macro_malformed_definition_complaint (const char *arg1)
1266 {
1267   complaint (&symfile_complaints,
1268              _("macro debug info contains a "
1269                "malformed macro definition:\n`%s'"),
1270              arg1);
1271 }
1272
1273 static void
1274 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
1275 {
1276   complaint (&symfile_complaints,
1277              _("invalid attribute class or form for '%s' in '%s'"),
1278              arg1, arg2);
1279 }
1280
1281 /* local function prototypes */
1282
1283 static void dwarf2_locate_sections (bfd *, asection *, void *);
1284
1285 static void dwarf2_find_base_address (struct die_info *die,
1286                                       struct dwarf2_cu *cu);
1287
1288 static struct partial_symtab *create_partial_symtab
1289   (struct dwarf2_per_cu_data *per_cu, const char *name);
1290
1291 static void dwarf2_build_psymtabs_hard (struct objfile *);
1292
1293 static void scan_partial_symbols (struct partial_die_info *,
1294                                   CORE_ADDR *, CORE_ADDR *,
1295                                   int, struct dwarf2_cu *);
1296
1297 static void add_partial_symbol (struct partial_die_info *,
1298                                 struct dwarf2_cu *);
1299
1300 static void add_partial_namespace (struct partial_die_info *pdi,
1301                                    CORE_ADDR *lowpc, CORE_ADDR *highpc,
1302                                    int need_pc, struct dwarf2_cu *cu);
1303
1304 static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
1305                                 CORE_ADDR *highpc, int need_pc,
1306                                 struct dwarf2_cu *cu);
1307
1308 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
1309                                      struct dwarf2_cu *cu);
1310
1311 static void add_partial_subprogram (struct partial_die_info *pdi,
1312                                     CORE_ADDR *lowpc, CORE_ADDR *highpc,
1313                                     int need_pc, struct dwarf2_cu *cu);
1314
1315 static void dwarf2_read_symtab (struct partial_symtab *,
1316                                 struct objfile *);
1317
1318 static void psymtab_to_symtab_1 (struct partial_symtab *);
1319
1320 static struct abbrev_info *abbrev_table_lookup_abbrev
1321   (const struct abbrev_table *, unsigned int);
1322
1323 static struct abbrev_table *abbrev_table_read_table
1324   (struct dwarf2_section_info *, sect_offset);
1325
1326 static void abbrev_table_free (struct abbrev_table *);
1327
1328 static void abbrev_table_free_cleanup (void *);
1329
1330 static void dwarf2_read_abbrevs (struct dwarf2_cu *,
1331                                  struct dwarf2_section_info *);
1332
1333 static void dwarf2_free_abbrev_table (void *);
1334
1335 static unsigned int peek_abbrev_code (bfd *, const gdb_byte *);
1336
1337 static struct partial_die_info *load_partial_dies
1338   (const struct die_reader_specs *, const gdb_byte *, int);
1339
1340 static const gdb_byte *read_partial_die (const struct die_reader_specs *,
1341                                          struct partial_die_info *,
1342                                          struct abbrev_info *,
1343                                          unsigned int,
1344                                          const gdb_byte *);
1345
1346 static struct partial_die_info *find_partial_die (sect_offset, int,
1347                                                   struct dwarf2_cu *);
1348
1349 static void fixup_partial_die (struct partial_die_info *,
1350                                struct dwarf2_cu *);
1351
1352 static const gdb_byte *read_attribute (const struct die_reader_specs *,
1353                                        struct attribute *, struct attr_abbrev *,
1354                                        const gdb_byte *);
1355
1356 static unsigned int read_1_byte (bfd *, const gdb_byte *);
1357
1358 static int read_1_signed_byte (bfd *, const gdb_byte *);
1359
1360 static unsigned int read_2_bytes (bfd *, const gdb_byte *);
1361
1362 static unsigned int read_4_bytes (bfd *, const gdb_byte *);
1363
1364 static ULONGEST read_8_bytes (bfd *, const gdb_byte *);
1365
1366 static CORE_ADDR read_address (bfd *, const gdb_byte *ptr, struct dwarf2_cu *,
1367                                unsigned int *);
1368
1369 static LONGEST read_initial_length (bfd *, const gdb_byte *, unsigned int *);
1370
1371 static LONGEST read_checked_initial_length_and_offset
1372   (bfd *, const gdb_byte *, const struct comp_unit_head *,
1373    unsigned int *, unsigned int *);
1374
1375 static LONGEST read_offset (bfd *, const gdb_byte *,
1376                             const struct comp_unit_head *,
1377                             unsigned int *);
1378
1379 static LONGEST read_offset_1 (bfd *, const gdb_byte *, unsigned int);
1380
1381 static sect_offset read_abbrev_offset (struct dwarf2_section_info *,
1382                                        sect_offset);
1383
1384 static const gdb_byte *read_n_bytes (bfd *, const gdb_byte *, unsigned int);
1385
1386 static const char *read_direct_string (bfd *, const gdb_byte *, unsigned int *);
1387
1388 static const char *read_indirect_string (bfd *, const gdb_byte *,
1389                                          const struct comp_unit_head *,
1390                                          unsigned int *);
1391
1392 static const char *read_indirect_string_from_dwz (struct dwz_file *, LONGEST);
1393
1394 static ULONGEST read_unsigned_leb128 (bfd *, const gdb_byte *, unsigned int *);
1395
1396 static LONGEST read_signed_leb128 (bfd *, const gdb_byte *, unsigned int *);
1397
1398 static CORE_ADDR read_addr_index_from_leb128 (struct dwarf2_cu *,
1399                                               const gdb_byte *,
1400                                               unsigned int *);
1401
1402 static const char *read_str_index (const struct die_reader_specs *reader,
1403                                    struct dwarf2_cu *cu, ULONGEST str_index);
1404
1405 static void set_cu_language (unsigned int, struct dwarf2_cu *);
1406
1407 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
1408                                       struct dwarf2_cu *);
1409
1410 static struct attribute *dwarf2_attr_no_follow (struct die_info *,
1411                                                 unsigned int);
1412
1413 static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
1414                                struct dwarf2_cu *cu);
1415
1416 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
1417
1418 static struct die_info *die_specification (struct die_info *die,
1419                                            struct dwarf2_cu **);
1420
1421 static void free_line_header (struct line_header *lh);
1422
1423 static struct line_header *dwarf_decode_line_header (unsigned int offset,
1424                                                      struct dwarf2_cu *cu);
1425
1426 static void dwarf_decode_lines (struct line_header *, const char *,
1427                                 struct dwarf2_cu *, struct partial_symtab *,
1428                                 int);
1429
1430 static void dwarf2_start_subfile (const char *, const char *, const char *);
1431
1432 static void dwarf2_start_symtab (struct dwarf2_cu *,
1433                                  const char *, const char *, CORE_ADDR);
1434
1435 static struct symbol *new_symbol (struct die_info *, struct type *,
1436                                   struct dwarf2_cu *);
1437
1438 static struct symbol *new_symbol_full (struct die_info *, struct type *,
1439                                        struct dwarf2_cu *, struct symbol *);
1440
1441 static void dwarf2_const_value (struct attribute *, struct symbol *,
1442                                 struct dwarf2_cu *);
1443
1444 static void dwarf2_const_value_attr (struct attribute *attr,
1445                                      struct type *type,
1446                                      const char *name,
1447                                      struct obstack *obstack,
1448                                      struct dwarf2_cu *cu, LONGEST *value,
1449                                      const gdb_byte **bytes,
1450                                      struct dwarf2_locexpr_baton **baton);
1451
1452 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
1453
1454 static int need_gnat_info (struct dwarf2_cu *);
1455
1456 static struct type *die_descriptive_type (struct die_info *,
1457                                           struct dwarf2_cu *);
1458
1459 static void set_descriptive_type (struct type *, struct die_info *,
1460                                   struct dwarf2_cu *);
1461
1462 static struct type *die_containing_type (struct die_info *,
1463                                          struct dwarf2_cu *);
1464
1465 static struct type *lookup_die_type (struct die_info *, struct attribute *,
1466                                      struct dwarf2_cu *);
1467
1468 static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
1469
1470 static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1471
1472 static const char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
1473
1474 static char *typename_concat (struct obstack *obs, const char *prefix,
1475                               const char *suffix, int physname,
1476                               struct dwarf2_cu *cu);
1477
1478 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
1479
1480 static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1481
1482 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
1483
1484 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
1485
1486 static void read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu);
1487
1488 static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1489                                struct dwarf2_cu *, struct partial_symtab *);
1490
1491 static int dwarf2_get_pc_bounds (struct die_info *,
1492                                  CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *,
1493                                  struct partial_symtab *);
1494
1495 static void get_scope_pc_bounds (struct die_info *,
1496                                  CORE_ADDR *, CORE_ADDR *,
1497                                  struct dwarf2_cu *);
1498
1499 static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1500                                         CORE_ADDR, struct dwarf2_cu *);
1501
1502 static void dwarf2_add_field (struct field_info *, struct die_info *,
1503                               struct dwarf2_cu *);
1504
1505 static void dwarf2_attach_fields_to_type (struct field_info *,
1506                                           struct type *, struct dwarf2_cu *);
1507
1508 static void dwarf2_add_member_fn (struct field_info *,
1509                                   struct die_info *, struct type *,
1510                                   struct dwarf2_cu *);
1511
1512 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
1513                                              struct type *,
1514                                              struct dwarf2_cu *);
1515
1516 static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
1517
1518 static void read_common_block (struct die_info *, struct dwarf2_cu *);
1519
1520 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
1521
1522 static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1523
1524 static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1525
1526 static struct type *read_module_type (struct die_info *die,
1527                                       struct dwarf2_cu *cu);
1528
1529 static const char *namespace_name (struct die_info *die,
1530                                    int *is_anonymous, struct dwarf2_cu *);
1531
1532 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
1533
1534 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
1535
1536 static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
1537                                                        struct dwarf2_cu *);
1538
1539 static struct die_info *read_die_and_siblings_1
1540   (const struct die_reader_specs *, const gdb_byte *, const gdb_byte **,
1541    struct die_info *);
1542
1543 static struct die_info *read_die_and_siblings (const struct die_reader_specs *,
1544                                                const gdb_byte *info_ptr,
1545                                                const gdb_byte **new_info_ptr,
1546                                                struct die_info *parent);
1547
1548 static const gdb_byte *read_full_die_1 (const struct die_reader_specs *,
1549                                         struct die_info **, const gdb_byte *,
1550                                         int *, int);
1551
1552 static const gdb_byte *read_full_die (const struct die_reader_specs *,
1553                                       struct die_info **, const gdb_byte *,
1554                                       int *);
1555
1556 static void process_die (struct die_info *, struct dwarf2_cu *);
1557
1558 static const char *dwarf2_canonicalize_name (const char *, struct dwarf2_cu *,
1559                                              struct obstack *);
1560
1561 static const char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
1562
1563 static const char *dwarf2_full_name (const char *name,
1564                                      struct die_info *die,
1565                                      struct dwarf2_cu *cu);
1566
1567 static const char *dwarf2_physname (const char *name, struct die_info *die,
1568                                     struct dwarf2_cu *cu);
1569
1570 static struct die_info *dwarf2_extension (struct die_info *die,
1571                                           struct dwarf2_cu **);
1572
1573 static const char *dwarf_tag_name (unsigned int);
1574
1575 static const char *dwarf_attr_name (unsigned int);
1576
1577 static const char *dwarf_form_name (unsigned int);
1578
1579 static char *dwarf_bool_name (unsigned int);
1580
1581 static const char *dwarf_type_encoding_name (unsigned int);
1582
1583 static struct die_info *sibling_die (struct die_info *);
1584
1585 static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1586
1587 static void dump_die_for_error (struct die_info *);
1588
1589 static void dump_die_1 (struct ui_file *, int level, int max_level,
1590                         struct die_info *);
1591
1592 /*static*/ void dump_die (struct die_info *, int max_level);
1593
1594 static void store_in_ref_table (struct die_info *,
1595                                 struct dwarf2_cu *);
1596
1597 static int is_ref_attr (struct attribute *);
1598
1599 static sect_offset dwarf2_get_ref_die_offset (struct attribute *);
1600
1601 static LONGEST dwarf2_get_attr_constant_value (struct attribute *, int);
1602
1603 static struct die_info *follow_die_ref_or_sig (struct die_info *,
1604                                                struct attribute *,
1605                                                struct dwarf2_cu **);
1606
1607 static struct die_info *follow_die_ref (struct die_info *,
1608                                         struct attribute *,
1609                                         struct dwarf2_cu **);
1610
1611 static struct die_info *follow_die_sig (struct die_info *,
1612                                         struct attribute *,
1613                                         struct dwarf2_cu **);
1614
1615 static struct type *get_signatured_type (struct die_info *, ULONGEST,
1616                                          struct dwarf2_cu *);
1617
1618 static struct type *get_DW_AT_signature_type (struct die_info *,
1619                                               struct attribute *,
1620                                               struct dwarf2_cu *);
1621
1622 static void load_full_type_unit (struct dwarf2_per_cu_data *per_cu);
1623
1624 static void read_signatured_type (struct signatured_type *);
1625
1626 static struct type_unit_group *get_type_unit_group
1627     (struct dwarf2_cu *, struct attribute *);
1628
1629 static void build_type_unit_groups (die_reader_func_ftype *, void *);
1630
1631 /* memory allocation interface */
1632
1633 static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
1634
1635 static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
1636
1637 static void dwarf_decode_macros (struct dwarf2_cu *, unsigned int,
1638                                  const char *, int);
1639
1640 static int attr_form_is_block (struct attribute *);
1641
1642 static int attr_form_is_section_offset (struct attribute *);
1643
1644 static int attr_form_is_constant (struct attribute *);
1645
1646 static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1647                                    struct dwarf2_loclist_baton *baton,
1648                                    struct attribute *attr);
1649
1650 static void dwarf2_symbol_mark_computed (struct attribute *attr,
1651                                          struct symbol *sym,
1652                                          struct dwarf2_cu *cu,
1653                                          int is_block);
1654
1655 static const gdb_byte *skip_one_die (const struct die_reader_specs *reader,
1656                                      const gdb_byte *info_ptr,
1657                                      struct abbrev_info *abbrev);
1658
1659 static void free_stack_comp_unit (void *);
1660
1661 static hashval_t partial_die_hash (const void *item);
1662
1663 static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1664
1665 static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1666   (sect_offset offset, unsigned int offset_in_dwz, struct objfile *objfile);
1667
1668 static void init_one_comp_unit (struct dwarf2_cu *cu,
1669                                 struct dwarf2_per_cu_data *per_cu);
1670
1671 static void prepare_one_comp_unit (struct dwarf2_cu *cu,
1672                                    struct die_info *comp_unit_die,
1673                                    enum language pretend_language);
1674
1675 static void free_heap_comp_unit (void *);
1676
1677 static void free_cached_comp_units (void *);
1678
1679 static void age_cached_comp_units (void);
1680
1681 static void free_one_cached_comp_unit (struct dwarf2_per_cu_data *);
1682
1683 static struct type *set_die_type (struct die_info *, struct type *,
1684                                   struct dwarf2_cu *);
1685
1686 static void create_all_comp_units (struct objfile *);
1687
1688 static int create_all_type_units (struct objfile *);
1689
1690 static void load_full_comp_unit (struct dwarf2_per_cu_data *,
1691                                  enum language);
1692
1693 static void process_full_comp_unit (struct dwarf2_per_cu_data *,
1694                                     enum language);
1695
1696 static void process_full_type_unit (struct dwarf2_per_cu_data *,
1697                                     enum language);
1698
1699 static void dwarf2_add_dependence (struct dwarf2_cu *,
1700                                    struct dwarf2_per_cu_data *);
1701
1702 static void dwarf2_mark (struct dwarf2_cu *);
1703
1704 static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1705
1706 static struct type *get_die_type_at_offset (sect_offset,
1707                                             struct dwarf2_per_cu_data *);
1708
1709 static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
1710
1711 static void dwarf2_release_queue (void *dummy);
1712
1713 static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1714                              enum language pretend_language);
1715
1716 static int maybe_queue_comp_unit (struct dwarf2_cu *this_cu,
1717                                   struct dwarf2_per_cu_data *per_cu,
1718                                   enum language pretend_language);
1719
1720 static void process_queue (void);
1721
1722 static void find_file_and_directory (struct die_info *die,
1723                                      struct dwarf2_cu *cu,
1724                                      const char **name, const char **comp_dir);
1725
1726 static char *file_full_name (int file, struct line_header *lh,
1727                              const char *comp_dir);
1728
1729 static const gdb_byte *read_and_check_comp_unit_head
1730   (struct comp_unit_head *header,
1731    struct dwarf2_section_info *section,
1732    struct dwarf2_section_info *abbrev_section, const gdb_byte *info_ptr,
1733    int is_debug_types_section);
1734
1735 static void init_cutu_and_read_dies
1736   (struct dwarf2_per_cu_data *this_cu, struct abbrev_table *abbrev_table,
1737    int use_existing_cu, int keep,
1738    die_reader_func_ftype *die_reader_func, void *data);
1739
1740 static void init_cutu_and_read_dies_simple
1741   (struct dwarf2_per_cu_data *this_cu,
1742    die_reader_func_ftype *die_reader_func, void *data);
1743
1744 static htab_t allocate_signatured_type_table (struct objfile *objfile);
1745
1746 static htab_t allocate_dwo_unit_table (struct objfile *objfile);
1747
1748 static struct dwo_unit *lookup_dwo_comp_unit
1749   (struct dwarf2_per_cu_data *, const char *, const char *, ULONGEST);
1750
1751 static struct dwo_unit *lookup_dwo_type_unit
1752   (struct signatured_type *, const char *, const char *);
1753
1754 static void free_dwo_file_cleanup (void *);
1755
1756 static void process_cu_includes (void);
1757
1758 static void check_producer (struct dwarf2_cu *cu);
1759
1760 #if WORDS_BIGENDIAN
1761
1762 /* Convert VALUE between big- and little-endian.  */
1763 static offset_type
1764 byte_swap (offset_type value)
1765 {
1766   offset_type result;
1767
1768   result = (value & 0xff) << 24;
1769   result |= (value & 0xff00) << 8;
1770   result |= (value & 0xff0000) >> 8;
1771   result |= (value & 0xff000000) >> 24;
1772   return result;
1773 }
1774
1775 #define MAYBE_SWAP(V)  byte_swap (V)
1776
1777 #else
1778 #define MAYBE_SWAP(V) (V)
1779 #endif /* WORDS_BIGENDIAN */
1780
1781 /* The suffix for an index file.  */
1782 #define INDEX_SUFFIX ".gdb-index"
1783
1784 /* Try to locate the sections we need for DWARF 2 debugging
1785    information and return true if we have enough to do something.
1786    NAMES points to the dwarf2 section names, or is NULL if the standard
1787    ELF names are used.  */
1788
1789 int
1790 dwarf2_has_info (struct objfile *objfile,
1791                  const struct dwarf2_debug_sections *names)
1792 {
1793   dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
1794   if (!dwarf2_per_objfile)
1795     {
1796       /* Initialize per-objfile state.  */
1797       struct dwarf2_per_objfile *data
1798         = obstack_alloc (&objfile->objfile_obstack, sizeof (*data));
1799
1800       memset (data, 0, sizeof (*data));
1801       set_objfile_data (objfile, dwarf2_objfile_data_key, data);
1802       dwarf2_per_objfile = data;
1803
1804       bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections,
1805                              (void *) names);
1806       dwarf2_per_objfile->objfile = objfile;
1807     }
1808   return (dwarf2_per_objfile->info.asection != NULL
1809           && dwarf2_per_objfile->abbrev.asection != NULL);
1810 }
1811
1812 /* When loading sections, we look either for uncompressed section or for
1813    compressed section names.  */
1814
1815 static int
1816 section_is_p (const char *section_name,
1817               const struct dwarf2_section_names *names)
1818 {
1819   if (names->normal != NULL
1820       && strcmp (section_name, names->normal) == 0)
1821     return 1;
1822   if (names->compressed != NULL
1823       && strcmp (section_name, names->compressed) == 0)
1824     return 1;
1825   return 0;
1826 }
1827
1828 /* This function is mapped across the sections and remembers the
1829    offset and size of each of the debugging sections we are interested
1830    in.  */
1831
1832 static void
1833 dwarf2_locate_sections (bfd *abfd, asection *sectp, void *vnames)
1834 {
1835   const struct dwarf2_debug_sections *names;
1836   flagword aflag = bfd_get_section_flags (abfd, sectp);
1837
1838   if (vnames == NULL)
1839     names = &dwarf2_elf_names;
1840   else
1841     names = (const struct dwarf2_debug_sections *) vnames;
1842
1843   if ((aflag & SEC_HAS_CONTENTS) == 0)
1844     {
1845     }
1846   else if (section_is_p (sectp->name, &names->info))
1847     {
1848       dwarf2_per_objfile->info.asection = sectp;
1849       dwarf2_per_objfile->info.size = bfd_get_section_size (sectp);
1850     }
1851   else if (section_is_p (sectp->name, &names->abbrev))
1852     {
1853       dwarf2_per_objfile->abbrev.asection = sectp;
1854       dwarf2_per_objfile->abbrev.size = bfd_get_section_size (sectp);
1855     }
1856   else if (section_is_p (sectp->name, &names->line))
1857     {
1858       dwarf2_per_objfile->line.asection = sectp;
1859       dwarf2_per_objfile->line.size = bfd_get_section_size (sectp);
1860     }
1861   else if (section_is_p (sectp->name, &names->loc))
1862     {
1863       dwarf2_per_objfile->loc.asection = sectp;
1864       dwarf2_per_objfile->loc.size = bfd_get_section_size (sectp);
1865     }
1866   else if (section_is_p (sectp->name, &names->macinfo))
1867     {
1868       dwarf2_per_objfile->macinfo.asection = sectp;
1869       dwarf2_per_objfile->macinfo.size = bfd_get_section_size (sectp);
1870     }
1871   else if (section_is_p (sectp->name, &names->macro))
1872     {
1873       dwarf2_per_objfile->macro.asection = sectp;
1874       dwarf2_per_objfile->macro.size = bfd_get_section_size (sectp);
1875     }
1876   else if (section_is_p (sectp->name, &names->str))
1877     {
1878       dwarf2_per_objfile->str.asection = sectp;
1879       dwarf2_per_objfile->str.size = bfd_get_section_size (sectp);
1880     }
1881   else if (section_is_p (sectp->name, &names->addr))
1882     {
1883       dwarf2_per_objfile->addr.asection = sectp;
1884       dwarf2_per_objfile->addr.size = bfd_get_section_size (sectp);
1885     }
1886   else if (section_is_p (sectp->name, &names->frame))
1887     {
1888       dwarf2_per_objfile->frame.asection = sectp;
1889       dwarf2_per_objfile->frame.size = bfd_get_section_size (sectp);
1890     }
1891   else if (section_is_p (sectp->name, &names->eh_frame))
1892     {
1893       dwarf2_per_objfile->eh_frame.asection = sectp;
1894       dwarf2_per_objfile->eh_frame.size = bfd_get_section_size (sectp);
1895     }
1896   else if (section_is_p (sectp->name, &names->ranges))
1897     {
1898       dwarf2_per_objfile->ranges.asection = sectp;
1899       dwarf2_per_objfile->ranges.size = bfd_get_section_size (sectp);
1900     }
1901   else if (section_is_p (sectp->name, &names->types))
1902     {
1903       struct dwarf2_section_info type_section;
1904
1905       memset (&type_section, 0, sizeof (type_section));
1906       type_section.asection = sectp;
1907       type_section.size = bfd_get_section_size (sectp);
1908
1909       VEC_safe_push (dwarf2_section_info_def, dwarf2_per_objfile->types,
1910                      &type_section);
1911     }
1912   else if (section_is_p (sectp->name, &names->gdb_index))
1913     {
1914       dwarf2_per_objfile->gdb_index.asection = sectp;
1915       dwarf2_per_objfile->gdb_index.size = bfd_get_section_size (sectp);
1916     }
1917
1918   if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD)
1919       && bfd_section_vma (abfd, sectp) == 0)
1920     dwarf2_per_objfile->has_section_at_zero = 1;
1921 }
1922
1923 /* A helper function that decides whether a section is empty,
1924    or not present.  */
1925
1926 static int
1927 dwarf2_section_empty_p (struct dwarf2_section_info *info)
1928 {
1929   return info->asection == NULL || info->size == 0;
1930 }
1931
1932 /* Read the contents of the section INFO.
1933    OBJFILE is the main object file, but not necessarily the file where
1934    the section comes from.  E.g., for DWO files INFO->asection->owner
1935    is the bfd of the DWO file.
1936    If the section is compressed, uncompress it before returning.  */
1937
1938 static void
1939 dwarf2_read_section (struct objfile *objfile, struct dwarf2_section_info *info)
1940 {
1941   asection *sectp = info->asection;
1942   bfd *abfd;
1943   gdb_byte *buf, *retbuf;
1944   unsigned char header[4];
1945
1946   if (info->readin)
1947     return;
1948   info->buffer = NULL;
1949   info->readin = 1;
1950
1951   if (dwarf2_section_empty_p (info))
1952     return;
1953
1954   abfd = sectp->owner;
1955
1956   /* If the section has relocations, we must read it ourselves.
1957      Otherwise we attach it to the BFD.  */
1958   if ((sectp->flags & SEC_RELOC) == 0)
1959     {
1960       info->buffer = gdb_bfd_map_section (sectp, &info->size);
1961       return;
1962     }
1963
1964   buf = obstack_alloc (&objfile->objfile_obstack, info->size);
1965   info->buffer = buf;
1966
1967   /* When debugging .o files, we may need to apply relocations; see
1968      http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
1969      We never compress sections in .o files, so we only need to
1970      try this when the section is not compressed.  */
1971   retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
1972   if (retbuf != NULL)
1973     {
1974       info->buffer = retbuf;
1975       return;
1976     }
1977
1978   if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1979       || bfd_bread (buf, info->size, abfd) != info->size)
1980     error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1981            bfd_get_filename (abfd));
1982 }
1983
1984 /* A helper function that returns the size of a section in a safe way.
1985    If you are positive that the section has been read before using the
1986    size, then it is safe to refer to the dwarf2_section_info object's
1987    "size" field directly.  In other cases, you must call this
1988    function, because for compressed sections the size field is not set
1989    correctly until the section has been read.  */
1990
1991 static bfd_size_type
1992 dwarf2_section_size (struct objfile *objfile,
1993                      struct dwarf2_section_info *info)
1994 {
1995   if (!info->readin)
1996     dwarf2_read_section (objfile, info);
1997   return info->size;
1998 }
1999
2000 /* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
2001    SECTION_NAME.  */
2002
2003 void
2004 dwarf2_get_section_info (struct objfile *objfile,
2005                          enum dwarf2_section_enum sect,
2006                          asection **sectp, const gdb_byte **bufp,
2007                          bfd_size_type *sizep)
2008 {
2009   struct dwarf2_per_objfile *data
2010     = objfile_data (objfile, dwarf2_objfile_data_key);
2011   struct dwarf2_section_info *info;
2012
2013   /* We may see an objfile without any DWARF, in which case we just
2014      return nothing.  */
2015   if (data == NULL)
2016     {
2017       *sectp = NULL;
2018       *bufp = NULL;
2019       *sizep = 0;
2020       return;
2021     }
2022   switch (sect)
2023     {
2024     case DWARF2_DEBUG_FRAME:
2025       info = &data->frame;
2026       break;
2027     case DWARF2_EH_FRAME:
2028       info = &data->eh_frame;
2029       break;
2030     default:
2031       gdb_assert_not_reached ("unexpected section");
2032     }
2033
2034   dwarf2_read_section (objfile, info);
2035
2036   *sectp = info->asection;
2037   *bufp = info->buffer;
2038   *sizep = info->size;
2039 }
2040
2041 /* A helper function to find the sections for a .dwz file.  */
2042
2043 static void
2044 locate_dwz_sections (bfd *abfd, asection *sectp, void *arg)
2045 {
2046   struct dwz_file *dwz_file = arg;
2047
2048   /* Note that we only support the standard ELF names, because .dwz
2049      is ELF-only (at the time of writing).  */
2050   if (section_is_p (sectp->name, &dwarf2_elf_names.abbrev))
2051     {
2052       dwz_file->abbrev.asection = sectp;
2053       dwz_file->abbrev.size = bfd_get_section_size (sectp);
2054     }
2055   else if (section_is_p (sectp->name, &dwarf2_elf_names.info))
2056     {
2057       dwz_file->info.asection = sectp;
2058       dwz_file->info.size = bfd_get_section_size (sectp);
2059     }
2060   else if (section_is_p (sectp->name, &dwarf2_elf_names.str))
2061     {
2062       dwz_file->str.asection = sectp;
2063       dwz_file->str.size = bfd_get_section_size (sectp);
2064     }
2065   else if (section_is_p (sectp->name, &dwarf2_elf_names.line))
2066     {
2067       dwz_file->line.asection = sectp;
2068       dwz_file->line.size = bfd_get_section_size (sectp);
2069     }
2070   else if (section_is_p (sectp->name, &dwarf2_elf_names.macro))
2071     {
2072       dwz_file->macro.asection = sectp;
2073       dwz_file->macro.size = bfd_get_section_size (sectp);
2074     }
2075   else if (section_is_p (sectp->name, &dwarf2_elf_names.gdb_index))
2076     {
2077       dwz_file->gdb_index.asection = sectp;
2078       dwz_file->gdb_index.size = bfd_get_section_size (sectp);
2079     }
2080 }
2081
2082 /* Open the separate '.dwz' debug file, if needed.  Error if the file
2083    cannot be found.  */
2084
2085 static struct dwz_file *
2086 dwarf2_get_dwz_file (void)
2087 {
2088   bfd *abfd, *dwz_bfd;
2089   asection *section;
2090   gdb_byte *data;
2091   struct cleanup *cleanup;
2092   const char *filename;
2093   struct dwz_file *result;
2094
2095   if (dwarf2_per_objfile->dwz_file != NULL)
2096     return dwarf2_per_objfile->dwz_file;
2097
2098   abfd = dwarf2_per_objfile->objfile->obfd;
2099   section = bfd_get_section_by_name (abfd, ".gnu_debugaltlink");
2100   if (section == NULL)
2101     error (_("could not find '.gnu_debugaltlink' section"));
2102   if (!bfd_malloc_and_get_section (abfd, section, &data))
2103     error (_("could not read '.gnu_debugaltlink' section: %s"),
2104            bfd_errmsg (bfd_get_error ()));
2105   cleanup = make_cleanup (xfree, data);
2106
2107   filename = (const char *) data;
2108   if (!IS_ABSOLUTE_PATH (filename))
2109     {
2110       char *abs = gdb_realpath (dwarf2_per_objfile->objfile->name);
2111       char *rel;
2112
2113       make_cleanup (xfree, abs);
2114       abs = ldirname (abs);
2115       make_cleanup (xfree, abs);
2116
2117       rel = concat (abs, SLASH_STRING, filename, (char *) NULL);
2118       make_cleanup (xfree, rel);
2119       filename = rel;
2120     }
2121
2122   /* The format is just a NUL-terminated file name, followed by the
2123      build-id.  For now, though, we ignore the build-id.  */
2124   dwz_bfd = gdb_bfd_open (filename, gnutarget, -1);
2125   if (dwz_bfd == NULL)
2126     error (_("could not read '%s': %s"), filename,
2127            bfd_errmsg (bfd_get_error ()));
2128
2129   if (!bfd_check_format (dwz_bfd, bfd_object))
2130     {
2131       gdb_bfd_unref (dwz_bfd);
2132       error (_("file '%s' was not usable: %s"), filename,
2133              bfd_errmsg (bfd_get_error ()));
2134     }
2135
2136   result = OBSTACK_ZALLOC (&dwarf2_per_objfile->objfile->objfile_obstack,
2137                            struct dwz_file);
2138   result->dwz_bfd = dwz_bfd;
2139
2140   bfd_map_over_sections (dwz_bfd, locate_dwz_sections, result);
2141
2142   do_cleanups (cleanup);
2143
2144   dwarf2_per_objfile->dwz_file = result;
2145   return result;
2146 }
2147 \f
2148 /* DWARF quick_symbols_functions support.  */
2149
2150 /* TUs can share .debug_line entries, and there can be a lot more TUs than
2151    unique line tables, so we maintain a separate table of all .debug_line
2152    derived entries to support the sharing.
2153    All the quick functions need is the list of file names.  We discard the
2154    line_header when we're done and don't need to record it here.  */
2155 struct quick_file_names
2156 {
2157   /* The data used to construct the hash key.  */
2158   struct stmt_list_hash hash;
2159
2160   /* The number of entries in file_names, real_names.  */
2161   unsigned int num_file_names;
2162
2163   /* The file names from the line table, after being run through
2164      file_full_name.  */
2165   const char **file_names;
2166
2167   /* The file names from the line table after being run through
2168      gdb_realpath.  These are computed lazily.  */
2169   const char **real_names;
2170 };
2171
2172 /* When using the index (and thus not using psymtabs), each CU has an
2173    object of this type.  This is used to hold information needed by
2174    the various "quick" methods.  */
2175 struct dwarf2_per_cu_quick_data
2176 {
2177   /* The file table.  This can be NULL if there was no file table
2178      or it's currently not read in.
2179      NOTE: This points into dwarf2_per_objfile->quick_file_names_table.  */
2180   struct quick_file_names *file_names;
2181
2182   /* The corresponding symbol table.  This is NULL if symbols for this
2183      CU have not yet been read.  */
2184   struct symtab *symtab;
2185
2186   /* A temporary mark bit used when iterating over all CUs in
2187      expand_symtabs_matching.  */
2188   unsigned int mark : 1;
2189
2190   /* True if we've tried to read the file table and found there isn't one.
2191      There will be no point in trying to read it again next time.  */
2192   unsigned int no_file_data : 1;
2193 };
2194
2195 /* Utility hash function for a stmt_list_hash.  */
2196
2197 static hashval_t
2198 hash_stmt_list_entry (const struct stmt_list_hash *stmt_list_hash)
2199 {
2200   hashval_t v = 0;
2201
2202   if (stmt_list_hash->dwo_unit != NULL)
2203     v += (uintptr_t) stmt_list_hash->dwo_unit->dwo_file;
2204   v += stmt_list_hash->line_offset.sect_off;
2205   return v;
2206 }
2207
2208 /* Utility equality function for a stmt_list_hash.  */
2209
2210 static int
2211 eq_stmt_list_entry (const struct stmt_list_hash *lhs,
2212                     const struct stmt_list_hash *rhs)
2213 {
2214   if ((lhs->dwo_unit != NULL) != (rhs->dwo_unit != NULL))
2215     return 0;
2216   if (lhs->dwo_unit != NULL
2217       && lhs->dwo_unit->dwo_file != rhs->dwo_unit->dwo_file)
2218     return 0;
2219
2220   return lhs->line_offset.sect_off == rhs->line_offset.sect_off;
2221 }
2222
2223 /* Hash function for a quick_file_names.  */
2224
2225 static hashval_t
2226 hash_file_name_entry (const void *e)
2227 {
2228   const struct quick_file_names *file_data = e;
2229
2230   return hash_stmt_list_entry (&file_data->hash);
2231 }
2232
2233 /* Equality function for a quick_file_names.  */
2234
2235 static int
2236 eq_file_name_entry (const void *a, const void *b)
2237 {
2238   const struct quick_file_names *ea = a;
2239   const struct quick_file_names *eb = b;
2240
2241   return eq_stmt_list_entry (&ea->hash, &eb->hash);
2242 }
2243
2244 /* Delete function for a quick_file_names.  */
2245
2246 static void
2247 delete_file_name_entry (void *e)
2248 {
2249   struct quick_file_names *file_data = e;
2250   int i;
2251
2252   for (i = 0; i < file_data->num_file_names; ++i)
2253     {
2254       xfree ((void*) file_data->file_names[i]);
2255       if (file_data->real_names)
2256         xfree ((void*) file_data->real_names[i]);
2257     }
2258
2259   /* The space for the struct itself lives on objfile_obstack,
2260      so we don't free it here.  */
2261 }
2262
2263 /* Create a quick_file_names hash table.  */
2264
2265 static htab_t
2266 create_quick_file_names_table (unsigned int nr_initial_entries)
2267 {
2268   return htab_create_alloc (nr_initial_entries,
2269                             hash_file_name_entry, eq_file_name_entry,
2270                             delete_file_name_entry, xcalloc, xfree);
2271 }
2272
2273 /* Read in PER_CU->CU.  This function is unrelated to symtabs, symtab would
2274    have to be created afterwards.  You should call age_cached_comp_units after
2275    processing PER_CU->CU.  dw2_setup must have been already called.  */
2276
2277 static void
2278 load_cu (struct dwarf2_per_cu_data *per_cu)
2279 {
2280   if (per_cu->is_debug_types)
2281     load_full_type_unit (per_cu);
2282   else
2283     load_full_comp_unit (per_cu, language_minimal);
2284
2285   gdb_assert (per_cu->cu != NULL);
2286
2287   dwarf2_find_base_address (per_cu->cu->dies, per_cu->cu);
2288 }
2289
2290 /* Read in the symbols for PER_CU.  */
2291
2292 static void
2293 dw2_do_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
2294 {
2295   struct cleanup *back_to;
2296
2297   /* Skip type_unit_groups, reading the type units they contain
2298      is handled elsewhere.  */
2299   if (IS_TYPE_UNIT_GROUP (per_cu))
2300     return;
2301
2302   back_to = make_cleanup (dwarf2_release_queue, NULL);
2303
2304   if (dwarf2_per_objfile->using_index
2305       ? per_cu->v.quick->symtab == NULL
2306       : (per_cu->v.psymtab == NULL || !per_cu->v.psymtab->readin))
2307     {
2308       queue_comp_unit (per_cu, language_minimal);
2309       load_cu (per_cu);
2310     }
2311
2312   process_queue ();
2313
2314   /* Age the cache, releasing compilation units that have not
2315      been used recently.  */
2316   age_cached_comp_units ();
2317
2318   do_cleanups (back_to);
2319 }
2320
2321 /* Ensure that the symbols for PER_CU have been read in.  OBJFILE is
2322    the objfile from which this CU came.  Returns the resulting symbol
2323    table.  */
2324
2325 static struct symtab *
2326 dw2_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
2327 {
2328   gdb_assert (dwarf2_per_objfile->using_index);
2329   if (!per_cu->v.quick->symtab)
2330     {
2331       struct cleanup *back_to = make_cleanup (free_cached_comp_units, NULL);
2332       increment_reading_symtab ();
2333       dw2_do_instantiate_symtab (per_cu);
2334       process_cu_includes ();
2335       do_cleanups (back_to);
2336     }
2337   return per_cu->v.quick->symtab;
2338 }
2339
2340 /* Return the CU given its index.
2341
2342    This is intended for loops like:
2343
2344    for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2345                     + dwarf2_per_objfile->n_type_units); ++i)
2346      {
2347        struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2348
2349        ...;
2350      }
2351 */
2352
2353 static struct dwarf2_per_cu_data *
2354 dw2_get_cu (int index)
2355 {
2356   if (index >= dwarf2_per_objfile->n_comp_units)
2357     {
2358       index -= dwarf2_per_objfile->n_comp_units;
2359       gdb_assert (index < dwarf2_per_objfile->n_type_units);
2360       return &dwarf2_per_objfile->all_type_units[index]->per_cu;
2361     }
2362
2363   return dwarf2_per_objfile->all_comp_units[index];
2364 }
2365
2366 /* Return the primary CU given its index.
2367    The difference between this function and dw2_get_cu is in the handling
2368    of type units (TUs).  Here we return the type_unit_group object.
2369
2370    This is intended for loops like:
2371
2372    for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2373                     + dwarf2_per_objfile->n_type_unit_groups); ++i)
2374      {
2375        struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
2376
2377        ...;
2378      }
2379 */
2380
2381 static struct dwarf2_per_cu_data *
2382 dw2_get_primary_cu (int index)
2383 {
2384   if (index >= dwarf2_per_objfile->n_comp_units)
2385     {
2386       index -= dwarf2_per_objfile->n_comp_units;
2387       gdb_assert (index < dwarf2_per_objfile->n_type_unit_groups);
2388       return &dwarf2_per_objfile->all_type_unit_groups[index]->per_cu;
2389     }
2390
2391   return dwarf2_per_objfile->all_comp_units[index];
2392 }
2393
2394 /* A helper for create_cus_from_index that handles a given list of
2395    CUs.  */
2396
2397 static void
2398 create_cus_from_index_list (struct objfile *objfile,
2399                             const gdb_byte *cu_list, offset_type n_elements,
2400                             struct dwarf2_section_info *section,
2401                             int is_dwz,
2402                             int base_offset)
2403 {
2404   offset_type i;
2405
2406   for (i = 0; i < n_elements; i += 2)
2407     {
2408       struct dwarf2_per_cu_data *the_cu;
2409       ULONGEST offset, length;
2410
2411       gdb_static_assert (sizeof (ULONGEST) >= 8);
2412       offset = extract_unsigned_integer (cu_list, 8, BFD_ENDIAN_LITTLE);
2413       length = extract_unsigned_integer (cu_list + 8, 8, BFD_ENDIAN_LITTLE);
2414       cu_list += 2 * 8;
2415
2416       the_cu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2417                                struct dwarf2_per_cu_data);
2418       the_cu->offset.sect_off = offset;
2419       the_cu->length = length;
2420       the_cu->objfile = objfile;
2421       the_cu->section = section;
2422       the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2423                                         struct dwarf2_per_cu_quick_data);
2424       the_cu->is_dwz = is_dwz;
2425       dwarf2_per_objfile->all_comp_units[base_offset + i / 2] = the_cu;
2426     }
2427 }
2428
2429 /* Read the CU list from the mapped index, and use it to create all
2430    the CU objects for this objfile.  */
2431
2432 static void
2433 create_cus_from_index (struct objfile *objfile,
2434                        const gdb_byte *cu_list, offset_type cu_list_elements,
2435                        const gdb_byte *dwz_list, offset_type dwz_elements)
2436 {
2437   struct dwz_file *dwz;
2438
2439   dwarf2_per_objfile->n_comp_units = (cu_list_elements + dwz_elements) / 2;
2440   dwarf2_per_objfile->all_comp_units
2441     = obstack_alloc (&objfile->objfile_obstack,
2442                      dwarf2_per_objfile->n_comp_units
2443                      * sizeof (struct dwarf2_per_cu_data *));
2444
2445   create_cus_from_index_list (objfile, cu_list, cu_list_elements,
2446                               &dwarf2_per_objfile->info, 0, 0);
2447
2448   if (dwz_elements == 0)
2449     return;
2450
2451   dwz = dwarf2_get_dwz_file ();
2452   create_cus_from_index_list (objfile, dwz_list, dwz_elements, &dwz->info, 1,
2453                               cu_list_elements / 2);
2454 }
2455
2456 /* Create the signatured type hash table from the index.  */
2457
2458 static void
2459 create_signatured_type_table_from_index (struct objfile *objfile,
2460                                          struct dwarf2_section_info *section,
2461                                          const gdb_byte *bytes,
2462                                          offset_type elements)
2463 {
2464   offset_type i;
2465   htab_t sig_types_hash;
2466
2467   dwarf2_per_objfile->n_type_units = elements / 3;
2468   dwarf2_per_objfile->all_type_units
2469     = obstack_alloc (&objfile->objfile_obstack,
2470                      dwarf2_per_objfile->n_type_units
2471                      * sizeof (struct signatured_type *));
2472
2473   sig_types_hash = allocate_signatured_type_table (objfile);
2474
2475   for (i = 0; i < elements; i += 3)
2476     {
2477       struct signatured_type *sig_type;
2478       ULONGEST offset, type_offset_in_tu, signature;
2479       void **slot;
2480
2481       gdb_static_assert (sizeof (ULONGEST) >= 8);
2482       offset = extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
2483       type_offset_in_tu = extract_unsigned_integer (bytes + 8, 8,
2484                                                     BFD_ENDIAN_LITTLE);
2485       signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
2486       bytes += 3 * 8;
2487
2488       sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2489                                  struct signatured_type);
2490       sig_type->signature = signature;
2491       sig_type->type_offset_in_tu.cu_off = type_offset_in_tu;
2492       sig_type->per_cu.is_debug_types = 1;
2493       sig_type->per_cu.section = section;
2494       sig_type->per_cu.offset.sect_off = offset;
2495       sig_type->per_cu.objfile = objfile;
2496       sig_type->per_cu.v.quick
2497         = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2498                           struct dwarf2_per_cu_quick_data);
2499
2500       slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
2501       *slot = sig_type;
2502
2503       dwarf2_per_objfile->all_type_units[i / 3] = sig_type;
2504     }
2505
2506   dwarf2_per_objfile->signatured_types = sig_types_hash;
2507 }
2508
2509 /* Read the address map data from the mapped index, and use it to
2510    populate the objfile's psymtabs_addrmap.  */
2511
2512 static void
2513 create_addrmap_from_index (struct objfile *objfile, struct mapped_index *index)
2514 {
2515   const gdb_byte *iter, *end;
2516   struct obstack temp_obstack;
2517   struct addrmap *mutable_map;
2518   struct cleanup *cleanup;
2519   CORE_ADDR baseaddr;
2520
2521   obstack_init (&temp_obstack);
2522   cleanup = make_cleanup_obstack_free (&temp_obstack);
2523   mutable_map = addrmap_create_mutable (&temp_obstack);
2524
2525   iter = index->address_table;
2526   end = iter + index->address_table_size;
2527
2528   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2529
2530   while (iter < end)
2531     {
2532       ULONGEST hi, lo, cu_index;
2533       lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2534       iter += 8;
2535       hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2536       iter += 8;
2537       cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
2538       iter += 4;
2539
2540       if (cu_index < dwarf2_per_objfile->n_comp_units)
2541         {
2542           addrmap_set_empty (mutable_map, lo + baseaddr, hi + baseaddr - 1,
2543                              dw2_get_cu (cu_index));
2544         }
2545       else
2546         {
2547           complaint (&symfile_complaints,
2548                      _(".gdb_index address table has invalid CU number %u"),
2549                      (unsigned) cu_index);
2550         }
2551     }
2552
2553   objfile->psymtabs_addrmap = addrmap_create_fixed (mutable_map,
2554                                                     &objfile->objfile_obstack);
2555   do_cleanups (cleanup);
2556 }
2557
2558 /* The hash function for strings in the mapped index.  This is the same as
2559    SYMBOL_HASH_NEXT, but we keep a separate copy to maintain control over the
2560    implementation.  This is necessary because the hash function is tied to the
2561    format of the mapped index file.  The hash values do not have to match with
2562    SYMBOL_HASH_NEXT.
2563    
2564    Use INT_MAX for INDEX_VERSION if you generate the current index format.  */
2565
2566 static hashval_t
2567 mapped_index_string_hash (int index_version, const void *p)
2568 {
2569   const unsigned char *str = (const unsigned char *) p;
2570   hashval_t r = 0;
2571   unsigned char c;
2572
2573   while ((c = *str++) != 0)
2574     {
2575       if (index_version >= 5)
2576         c = tolower (c);
2577       r = r * 67 + c - 113;
2578     }
2579
2580   return r;
2581 }
2582
2583 /* Find a slot in the mapped index INDEX for the object named NAME.
2584    If NAME is found, set *VEC_OUT to point to the CU vector in the
2585    constant pool and return 1.  If NAME cannot be found, return 0.  */
2586
2587 static int
2588 find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
2589                           offset_type **vec_out)
2590 {
2591   struct cleanup *back_to = make_cleanup (null_cleanup, 0);
2592   offset_type hash;
2593   offset_type slot, step;
2594   int (*cmp) (const char *, const char *);
2595
2596   if (current_language->la_language == language_cplus
2597       || current_language->la_language == language_java
2598       || current_language->la_language == language_fortran)
2599     {
2600       /* NAME is already canonical.  Drop any qualifiers as .gdb_index does
2601          not contain any.  */
2602       const char *paren = strchr (name, '(');
2603
2604       if (paren)
2605         {
2606           char *dup;
2607
2608           dup = xmalloc (paren - name + 1);
2609           memcpy (dup, name, paren - name);
2610           dup[paren - name] = 0;
2611
2612           make_cleanup (xfree, dup);
2613           name = dup;
2614         }
2615     }
2616
2617   /* Index version 4 did not support case insensitive searches.  But the
2618      indices for case insensitive languages are built in lowercase, therefore
2619      simulate our NAME being searched is also lowercased.  */
2620   hash = mapped_index_string_hash ((index->version == 4
2621                                     && case_sensitivity == case_sensitive_off
2622                                     ? 5 : index->version),
2623                                    name);
2624
2625   slot = hash & (index->symbol_table_slots - 1);
2626   step = ((hash * 17) & (index->symbol_table_slots - 1)) | 1;
2627   cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
2628
2629   for (;;)
2630     {
2631       /* Convert a slot number to an offset into the table.  */
2632       offset_type i = 2 * slot;
2633       const char *str;
2634       if (index->symbol_table[i] == 0 && index->symbol_table[i + 1] == 0)
2635         {
2636           do_cleanups (back_to);
2637           return 0;
2638         }
2639
2640       str = index->constant_pool + MAYBE_SWAP (index->symbol_table[i]);
2641       if (!cmp (name, str))
2642         {
2643           *vec_out = (offset_type *) (index->constant_pool
2644                                       + MAYBE_SWAP (index->symbol_table[i + 1]));
2645           do_cleanups (back_to);
2646           return 1;
2647         }
2648
2649       slot = (slot + step) & (index->symbol_table_slots - 1);
2650     }
2651 }
2652
2653 /* A helper function that reads the .gdb_index from SECTION and fills
2654    in MAP.  FILENAME is the name of the file containing the section;
2655    it is used for error reporting.  DEPRECATED_OK is nonzero if it is
2656    ok to use deprecated sections.
2657
2658    CU_LIST, CU_LIST_ELEMENTS, TYPES_LIST, and TYPES_LIST_ELEMENTS are
2659    out parameters that are filled in with information about the CU and
2660    TU lists in the section.
2661
2662    Returns 1 if all went well, 0 otherwise.  */
2663
2664 static int
2665 read_index_from_section (struct objfile *objfile,
2666                          const char *filename,
2667                          int deprecated_ok,
2668                          struct dwarf2_section_info *section,
2669                          struct mapped_index *map,
2670                          const gdb_byte **cu_list,
2671                          offset_type *cu_list_elements,
2672                          const gdb_byte **types_list,
2673                          offset_type *types_list_elements)
2674 {
2675   const gdb_byte *addr;
2676   offset_type version;
2677   offset_type *metadata;
2678   int i;
2679
2680   if (dwarf2_section_empty_p (section))
2681     return 0;
2682
2683   /* Older elfutils strip versions could keep the section in the main
2684      executable while splitting it for the separate debug info file.  */
2685   if ((bfd_get_file_flags (section->asection) & SEC_HAS_CONTENTS) == 0)
2686     return 0;
2687
2688   dwarf2_read_section (objfile, section);
2689
2690   addr = section->buffer;
2691   /* Version check.  */
2692   version = MAYBE_SWAP (*(offset_type *) addr);
2693   /* Versions earlier than 3 emitted every copy of a psymbol.  This
2694      causes the index to behave very poorly for certain requests.  Version 3
2695      contained incomplete addrmap.  So, it seems better to just ignore such
2696      indices.  */
2697   if (version < 4)
2698     {
2699       static int warning_printed = 0;
2700       if (!warning_printed)
2701         {
2702           warning (_("Skipping obsolete .gdb_index section in %s."),
2703                    filename);
2704           warning_printed = 1;
2705         }
2706       return 0;
2707     }
2708   /* Index version 4 uses a different hash function than index version
2709      5 and later.
2710
2711      Versions earlier than 6 did not emit psymbols for inlined
2712      functions.  Using these files will cause GDB not to be able to
2713      set breakpoints on inlined functions by name, so we ignore these
2714      indices unless the user has done
2715      "set use-deprecated-index-sections on".  */
2716   if (version < 6 && !deprecated_ok)
2717     {
2718       static int warning_printed = 0;
2719       if (!warning_printed)
2720         {
2721           warning (_("\
2722 Skipping deprecated .gdb_index section in %s.\n\
2723 Do \"set use-deprecated-index-sections on\" before the file is read\n\
2724 to use the section anyway."),
2725                    filename);
2726           warning_printed = 1;
2727         }
2728       return 0;
2729     }
2730   /* Version 7 indices generated by gold refer to the CU for a symbol instead
2731      of the TU (for symbols coming from TUs).  It's just a performance bug, and
2732      we can't distinguish gdb-generated indices from gold-generated ones, so
2733      nothing to do here.  */
2734
2735   /* Indexes with higher version than the one supported by GDB may be no
2736      longer backward compatible.  */
2737   if (version > 8)
2738     return 0;
2739
2740   map->version = version;
2741   map->total_size = section->size;
2742
2743   metadata = (offset_type *) (addr + sizeof (offset_type));
2744
2745   i = 0;
2746   *cu_list = addr + MAYBE_SWAP (metadata[i]);
2747   *cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
2748                        / 8);
2749   ++i;
2750
2751   *types_list = addr + MAYBE_SWAP (metadata[i]);
2752   *types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
2753                            - MAYBE_SWAP (metadata[i]))
2754                           / 8);
2755   ++i;
2756
2757   map->address_table = addr + MAYBE_SWAP (metadata[i]);
2758   map->address_table_size = (MAYBE_SWAP (metadata[i + 1])
2759                              - MAYBE_SWAP (metadata[i]));
2760   ++i;
2761
2762   map->symbol_table = (offset_type *) (addr + MAYBE_SWAP (metadata[i]));
2763   map->symbol_table_slots = ((MAYBE_SWAP (metadata[i + 1])
2764                               - MAYBE_SWAP (metadata[i]))
2765                              / (2 * sizeof (offset_type)));
2766   ++i;
2767
2768   map->constant_pool = (char *) (addr + MAYBE_SWAP (metadata[i]));
2769
2770   return 1;
2771 }
2772
2773
2774 /* Read the index file.  If everything went ok, initialize the "quick"
2775    elements of all the CUs and return 1.  Otherwise, return 0.  */
2776
2777 static int
2778 dwarf2_read_index (struct objfile *objfile)
2779 {
2780   struct mapped_index local_map, *map;
2781   const gdb_byte *cu_list, *types_list, *dwz_list = NULL;
2782   offset_type cu_list_elements, types_list_elements, dwz_list_elements = 0;
2783
2784   if (!read_index_from_section (objfile, objfile->name,
2785                                 use_deprecated_index_sections,
2786                                 &dwarf2_per_objfile->gdb_index, &local_map,
2787                                 &cu_list, &cu_list_elements,
2788                                 &types_list, &types_list_elements))
2789     return 0;
2790
2791   /* Don't use the index if it's empty.  */
2792   if (local_map.symbol_table_slots == 0)
2793     return 0;
2794
2795   /* If there is a .dwz file, read it so we can get its CU list as
2796      well.  */
2797   if (bfd_get_section_by_name (objfile->obfd, ".gnu_debugaltlink") != NULL)
2798     {
2799       struct dwz_file *dwz = dwarf2_get_dwz_file ();
2800       struct mapped_index dwz_map;
2801       const gdb_byte *dwz_types_ignore;
2802       offset_type dwz_types_elements_ignore;
2803
2804       if (!read_index_from_section (objfile, bfd_get_filename (dwz->dwz_bfd),
2805                                     1,
2806                                     &dwz->gdb_index, &dwz_map,
2807                                     &dwz_list, &dwz_list_elements,
2808                                     &dwz_types_ignore,
2809                                     &dwz_types_elements_ignore))
2810         {
2811           warning (_("could not read '.gdb_index' section from %s; skipping"),
2812                    bfd_get_filename (dwz->dwz_bfd));
2813           return 0;
2814         }
2815     }
2816
2817   create_cus_from_index (objfile, cu_list, cu_list_elements, dwz_list,
2818                          dwz_list_elements);
2819
2820   if (types_list_elements)
2821     {
2822       struct dwarf2_section_info *section;
2823
2824       /* We can only handle a single .debug_types when we have an
2825          index.  */
2826       if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) != 1)
2827         return 0;
2828
2829       section = VEC_index (dwarf2_section_info_def,
2830                            dwarf2_per_objfile->types, 0);
2831
2832       create_signatured_type_table_from_index (objfile, section, types_list,
2833                                                types_list_elements);
2834     }
2835
2836   create_addrmap_from_index (objfile, &local_map);
2837
2838   map = obstack_alloc (&objfile->objfile_obstack, sizeof (struct mapped_index));
2839   *map = local_map;
2840
2841   dwarf2_per_objfile->index_table = map;
2842   dwarf2_per_objfile->using_index = 1;
2843   dwarf2_per_objfile->quick_file_names_table =
2844     create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
2845
2846   return 1;
2847 }
2848
2849 /* A helper for the "quick" functions which sets the global
2850    dwarf2_per_objfile according to OBJFILE.  */
2851
2852 static void
2853 dw2_setup (struct objfile *objfile)
2854 {
2855   dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
2856   gdb_assert (dwarf2_per_objfile);
2857 }
2858
2859 /* die_reader_func for dw2_get_file_names.  */
2860
2861 static void
2862 dw2_get_file_names_reader (const struct die_reader_specs *reader,
2863                            const gdb_byte *info_ptr,
2864                            struct die_info *comp_unit_die,
2865                            int has_children,
2866                            void *data)
2867 {
2868   struct dwarf2_cu *cu = reader->cu;
2869   struct dwarf2_per_cu_data *this_cu = cu->per_cu;  
2870   struct objfile *objfile = dwarf2_per_objfile->objfile;
2871   struct dwarf2_per_cu_data *lh_cu;
2872   struct line_header *lh;
2873   struct attribute *attr;
2874   int i;
2875   const char *name, *comp_dir;
2876   void **slot;
2877   struct quick_file_names *qfn;
2878   unsigned int line_offset;
2879
2880   gdb_assert (! this_cu->is_debug_types);
2881
2882   /* Our callers never want to match partial units -- instead they
2883      will match the enclosing full CU.  */
2884   if (comp_unit_die->tag == DW_TAG_partial_unit)
2885     {
2886       this_cu->v.quick->no_file_data = 1;
2887       return;
2888     }
2889
2890   lh_cu = this_cu;
2891   lh = NULL;
2892   slot = NULL;
2893   line_offset = 0;
2894
2895   attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
2896   if (attr)
2897     {
2898       struct quick_file_names find_entry;
2899
2900       line_offset = DW_UNSND (attr);
2901
2902       /* We may have already read in this line header (TU line header sharing).
2903          If we have we're done.  */
2904       find_entry.hash.dwo_unit = cu->dwo_unit;
2905       find_entry.hash.line_offset.sect_off = line_offset;
2906       slot = htab_find_slot (dwarf2_per_objfile->quick_file_names_table,
2907                              &find_entry, INSERT);
2908       if (*slot != NULL)
2909         {
2910           lh_cu->v.quick->file_names = *slot;
2911           return;
2912         }
2913
2914       lh = dwarf_decode_line_header (line_offset, cu);
2915     }
2916   if (lh == NULL)
2917     {
2918       lh_cu->v.quick->no_file_data = 1;
2919       return;
2920     }
2921
2922   qfn = obstack_alloc (&objfile->objfile_obstack, sizeof (*qfn));
2923   qfn->hash.dwo_unit = cu->dwo_unit;
2924   qfn->hash.line_offset.sect_off = line_offset;
2925   gdb_assert (slot != NULL);
2926   *slot = qfn;
2927
2928   find_file_and_directory (comp_unit_die, cu, &name, &comp_dir);
2929
2930   qfn->num_file_names = lh->num_file_names;
2931   qfn->file_names = obstack_alloc (&objfile->objfile_obstack,
2932                                    lh->num_file_names * sizeof (char *));
2933   for (i = 0; i < lh->num_file_names; ++i)
2934     qfn->file_names[i] = file_full_name (i + 1, lh, comp_dir);
2935   qfn->real_names = NULL;
2936
2937   free_line_header (lh);
2938
2939   lh_cu->v.quick->file_names = qfn;
2940 }
2941
2942 /* A helper for the "quick" functions which attempts to read the line
2943    table for THIS_CU.  */
2944
2945 static struct quick_file_names *
2946 dw2_get_file_names (struct dwarf2_per_cu_data *this_cu)
2947 {
2948   /* This should never be called for TUs.  */
2949   gdb_assert (! this_cu->is_debug_types);
2950   /* Nor type unit groups.  */
2951   gdb_assert (! IS_TYPE_UNIT_GROUP (this_cu));
2952
2953   if (this_cu->v.quick->file_names != NULL)
2954     return this_cu->v.quick->file_names;
2955   /* If we know there is no line data, no point in looking again.  */
2956   if (this_cu->v.quick->no_file_data)
2957     return NULL;
2958
2959   init_cutu_and_read_dies_simple (this_cu, dw2_get_file_names_reader, NULL);
2960
2961   if (this_cu->v.quick->no_file_data)
2962     return NULL;
2963   return this_cu->v.quick->file_names;
2964 }
2965
2966 /* A helper for the "quick" functions which computes and caches the
2967    real path for a given file name from the line table.  */
2968
2969 static const char *
2970 dw2_get_real_path (struct objfile *objfile,
2971                    struct quick_file_names *qfn, int index)
2972 {
2973   if (qfn->real_names == NULL)
2974     qfn->real_names = OBSTACK_CALLOC (&objfile->objfile_obstack,
2975                                       qfn->num_file_names, sizeof (char *));
2976
2977   if (qfn->real_names[index] == NULL)
2978     qfn->real_names[index] = gdb_realpath (qfn->file_names[index]);
2979
2980   return qfn->real_names[index];
2981 }
2982
2983 static struct symtab *
2984 dw2_find_last_source_symtab (struct objfile *objfile)
2985 {
2986   int index;
2987
2988   dw2_setup (objfile);
2989   index = dwarf2_per_objfile->n_comp_units - 1;
2990   return dw2_instantiate_symtab (dw2_get_cu (index));
2991 }
2992
2993 /* Traversal function for dw2_forget_cached_source_info.  */
2994
2995 static int
2996 dw2_free_cached_file_names (void **slot, void *info)
2997 {
2998   struct quick_file_names *file_data = (struct quick_file_names *) *slot;
2999
3000   if (file_data->real_names)
3001     {
3002       int i;
3003
3004       for (i = 0; i < file_data->num_file_names; ++i)
3005         {
3006           xfree ((void*) file_data->real_names[i]);
3007           file_data->real_names[i] = NULL;
3008         }
3009     }
3010
3011   return 1;
3012 }
3013
3014 static void
3015 dw2_forget_cached_source_info (struct objfile *objfile)
3016 {
3017   dw2_setup (objfile);
3018
3019   htab_traverse_noresize (dwarf2_per_objfile->quick_file_names_table,
3020                           dw2_free_cached_file_names, NULL);
3021 }
3022
3023 /* Helper function for dw2_map_symtabs_matching_filename that expands
3024    the symtabs and calls the iterator.  */
3025
3026 static int
3027 dw2_map_expand_apply (struct objfile *objfile,
3028                       struct dwarf2_per_cu_data *per_cu,
3029                       const char *name, const char *real_path,
3030                       int (*callback) (struct symtab *, void *),
3031                       void *data)
3032 {
3033   struct symtab *last_made = objfile->symtabs;
3034
3035   /* Don't visit already-expanded CUs.  */
3036   if (per_cu->v.quick->symtab)
3037     return 0;
3038
3039   /* This may expand more than one symtab, and we want to iterate over
3040      all of them.  */
3041   dw2_instantiate_symtab (per_cu);
3042
3043   return iterate_over_some_symtabs (name, real_path, callback, data,
3044                                     objfile->symtabs, last_made);
3045 }
3046
3047 /* Implementation of the map_symtabs_matching_filename method.  */
3048
3049 static int
3050 dw2_map_symtabs_matching_filename (struct objfile *objfile, const char *name,
3051                                    const char *real_path,
3052                                    int (*callback) (struct symtab *, void *),
3053                                    void *data)
3054 {
3055   int i;
3056   const char *name_basename = lbasename (name);
3057
3058   dw2_setup (objfile);
3059
3060   /* The rule is CUs specify all the files, including those used by
3061      any TU, so there's no need to scan TUs here.  */
3062
3063   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3064     {
3065       int j;
3066       struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
3067       struct quick_file_names *file_data;
3068
3069       /* We only need to look at symtabs not already expanded.  */
3070       if (per_cu->v.quick->symtab)
3071         continue;
3072
3073       file_data = dw2_get_file_names (per_cu);
3074       if (file_data == NULL)
3075         continue;
3076
3077       for (j = 0; j < file_data->num_file_names; ++j)
3078         {
3079           const char *this_name = file_data->file_names[j];
3080           const char *this_real_name;
3081
3082           if (compare_filenames_for_search (this_name, name))
3083             {
3084               if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3085                                         callback, data))
3086                 return 1;
3087               continue;
3088             }
3089
3090           /* Before we invoke realpath, which can get expensive when many
3091              files are involved, do a quick comparison of the basenames.  */
3092           if (! basenames_may_differ
3093               && FILENAME_CMP (lbasename (this_name), name_basename) != 0)
3094             continue;
3095
3096           this_real_name = dw2_get_real_path (objfile, file_data, j);
3097           if (compare_filenames_for_search (this_real_name, name))
3098             {
3099               if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3100                                         callback, data))
3101                 return 1;
3102               continue;
3103             }
3104
3105           if (real_path != NULL)
3106             {
3107               gdb_assert (IS_ABSOLUTE_PATH (real_path));
3108               gdb_assert (IS_ABSOLUTE_PATH (name));
3109               if (this_real_name != NULL
3110                   && FILENAME_CMP (real_path, this_real_name) == 0)
3111                 {
3112                   if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3113                                             callback, data))
3114                     return 1;
3115                   continue;
3116                 }
3117             }
3118         }
3119     }
3120
3121   return 0;
3122 }
3123
3124 /* Struct used to manage iterating over all CUs looking for a symbol.  */
3125
3126 struct dw2_symtab_iterator
3127 {
3128   /* The internalized form of .gdb_index.  */
3129   struct mapped_index *index;
3130   /* If non-zero, only look for symbols that match BLOCK_INDEX.  */
3131   int want_specific_block;
3132   /* One of GLOBAL_BLOCK or STATIC_BLOCK.
3133      Unused if !WANT_SPECIFIC_BLOCK.  */
3134   int block_index;
3135   /* The kind of symbol we're looking for.  */
3136   domain_enum domain;
3137   /* The list of CUs from the index entry of the symbol,
3138      or NULL if not found.  */
3139   offset_type *vec;
3140   /* The next element in VEC to look at.  */
3141   int next;
3142   /* The number of elements in VEC, or zero if there is no match.  */
3143   int length;
3144 };
3145
3146 /* Initialize the index symtab iterator ITER.
3147    If WANT_SPECIFIC_BLOCK is non-zero, only look for symbols
3148    in block BLOCK_INDEX.  Otherwise BLOCK_INDEX is ignored.  */
3149
3150 static void
3151 dw2_symtab_iter_init (struct dw2_symtab_iterator *iter,
3152                       struct mapped_index *index,
3153                       int want_specific_block,
3154                       int block_index,
3155                       domain_enum domain,
3156                       const char *name)
3157 {
3158   iter->index = index;
3159   iter->want_specific_block = want_specific_block;
3160   iter->block_index = block_index;
3161   iter->domain = domain;
3162   iter->next = 0;
3163
3164   if (find_slot_in_mapped_hash (index, name, &iter->vec))
3165     iter->length = MAYBE_SWAP (*iter->vec);
3166   else
3167     {
3168       iter->vec = NULL;
3169       iter->length = 0;
3170     }
3171 }
3172
3173 /* Return the next matching CU or NULL if there are no more.  */
3174
3175 static struct dwarf2_per_cu_data *
3176 dw2_symtab_iter_next (struct dw2_symtab_iterator *iter)
3177 {
3178   for ( ; iter->next < iter->length; ++iter->next)
3179     {
3180       offset_type cu_index_and_attrs =
3181         MAYBE_SWAP (iter->vec[iter->next + 1]);
3182       offset_type cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
3183       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (cu_index);
3184       int want_static = iter->block_index != GLOBAL_BLOCK;
3185       /* This value is only valid for index versions >= 7.  */
3186       int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
3187       gdb_index_symbol_kind symbol_kind =
3188         GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3189       /* Only check the symbol attributes if they're present.
3190          Indices prior to version 7 don't record them,
3191          and indices >= 7 may elide them for certain symbols
3192          (gold does this).  */
3193       int attrs_valid =
3194         (iter->index->version >= 7
3195          && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3196
3197       /* Skip if already read in.  */
3198       if (per_cu->v.quick->symtab)
3199         continue;
3200
3201       if (attrs_valid
3202           && iter->want_specific_block
3203           && want_static != is_static)
3204         continue;
3205
3206       /* Only check the symbol's kind if it has one.  */
3207       if (attrs_valid)
3208         {
3209           switch (iter->domain)
3210             {
3211             case VAR_DOMAIN:
3212               if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE
3213                   && symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION
3214                   /* Some types are also in VAR_DOMAIN.  */
3215                   && symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3216                 continue;
3217               break;
3218             case STRUCT_DOMAIN:
3219               if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3220                 continue;
3221               break;
3222             case LABEL_DOMAIN:
3223               if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
3224                 continue;
3225               break;
3226             default:
3227               break;
3228             }
3229         }
3230
3231       ++iter->next;
3232       return per_cu;
3233     }
3234
3235   return NULL;
3236 }
3237
3238 static struct symtab *
3239 dw2_lookup_symbol (struct objfile *objfile, int block_index,
3240                    const char *name, domain_enum domain)
3241 {
3242   struct symtab *stab_best = NULL;
3243   struct mapped_index *index;
3244
3245   dw2_setup (objfile);
3246
3247   index = dwarf2_per_objfile->index_table;
3248
3249   /* index is NULL if OBJF_READNOW.  */
3250   if (index)
3251     {
3252       struct dw2_symtab_iterator iter;
3253       struct dwarf2_per_cu_data *per_cu;
3254
3255       dw2_symtab_iter_init (&iter, index, 1, block_index, domain, name);
3256
3257       while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
3258         {
3259           struct symbol *sym = NULL;
3260           struct symtab *stab = dw2_instantiate_symtab (per_cu);
3261
3262           /* Some caution must be observed with overloaded functions
3263              and methods, since the index will not contain any overload
3264              information (but NAME might contain it).  */
3265           if (stab->primary)
3266             {
3267               struct blockvector *bv = BLOCKVECTOR (stab);
3268               struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
3269
3270               sym = lookup_block_symbol (block, name, domain);
3271             }
3272
3273           if (sym && strcmp_iw (SYMBOL_SEARCH_NAME (sym), name) == 0)
3274             {
3275               if (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
3276                 return stab;
3277
3278               stab_best = stab;
3279             }
3280
3281           /* Keep looking through other CUs.  */
3282         }
3283     }
3284
3285   return stab_best;
3286 }
3287
3288 static void
3289 dw2_print_stats (struct objfile *objfile)
3290 {
3291   int i, total, count;
3292
3293   dw2_setup (objfile);
3294   total = dwarf2_per_objfile->n_comp_units + dwarf2_per_objfile->n_type_units;
3295   count = 0;
3296   for (i = 0; i < total; ++i)
3297     {
3298       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3299
3300       if (!per_cu->v.quick->symtab)
3301         ++count;
3302     }
3303   printf_filtered (_("  Number of read CUs: %d\n"), total - count);
3304   printf_filtered (_("  Number of unread CUs: %d\n"), count);
3305 }
3306
3307 static void
3308 dw2_dump (struct objfile *objfile)
3309 {
3310   /* Nothing worth printing.  */
3311 }
3312
3313 static void
3314 dw2_relocate (struct objfile *objfile,
3315               const struct section_offsets *new_offsets,
3316               const struct section_offsets *delta)
3317 {
3318   /* There's nothing to relocate here.  */
3319 }
3320
3321 static void
3322 dw2_expand_symtabs_for_function (struct objfile *objfile,
3323                                  const char *func_name)
3324 {
3325   struct mapped_index *index;
3326
3327   dw2_setup (objfile);
3328
3329   index = dwarf2_per_objfile->index_table;
3330
3331   /* index is NULL if OBJF_READNOW.  */
3332   if (index)
3333     {
3334       struct dw2_symtab_iterator iter;
3335       struct dwarf2_per_cu_data *per_cu;
3336
3337       /* Note: It doesn't matter what we pass for block_index here.  */
3338       dw2_symtab_iter_init (&iter, index, 0, GLOBAL_BLOCK, VAR_DOMAIN,
3339                             func_name);
3340
3341       while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
3342         dw2_instantiate_symtab (per_cu);
3343     }
3344 }
3345
3346 static void
3347 dw2_expand_all_symtabs (struct objfile *objfile)
3348 {
3349   int i;
3350
3351   dw2_setup (objfile);
3352
3353   for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3354                    + dwarf2_per_objfile->n_type_units); ++i)
3355     {
3356       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3357
3358       dw2_instantiate_symtab (per_cu);
3359     }
3360 }
3361
3362 static void
3363 dw2_expand_symtabs_with_fullname (struct objfile *objfile,
3364                                   const char *fullname)
3365 {
3366   int i;
3367
3368   dw2_setup (objfile);
3369
3370   /* We don't need to consider type units here.
3371      This is only called for examining code, e.g. expand_line_sal.
3372      There can be an order of magnitude (or more) more type units
3373      than comp units, and we avoid them if we can.  */
3374
3375   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3376     {
3377       int j;
3378       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3379       struct quick_file_names *file_data;
3380
3381       /* We only need to look at symtabs not already expanded.  */
3382       if (per_cu->v.quick->symtab)
3383         continue;
3384
3385       file_data = dw2_get_file_names (per_cu);
3386       if (file_data == NULL)
3387         continue;
3388
3389       for (j = 0; j < file_data->num_file_names; ++j)
3390         {
3391           const char *this_fullname = file_data->file_names[j];
3392
3393           if (filename_cmp (this_fullname, fullname) == 0)
3394             {
3395               dw2_instantiate_symtab (per_cu);
3396               break;
3397             }
3398         }
3399     }
3400 }
3401
3402 /* A helper function for dw2_find_symbol_file that finds the primary
3403    file name for a given CU.  This is a die_reader_func.  */
3404
3405 static void
3406 dw2_get_primary_filename_reader (const struct die_reader_specs *reader,
3407                                  const gdb_byte *info_ptr,
3408                                  struct die_info *comp_unit_die,
3409                                  int has_children,
3410                                  void *data)
3411 {
3412   const char **result_ptr = data;
3413   struct dwarf2_cu *cu = reader->cu;
3414   struct attribute *attr;
3415
3416   attr = dwarf2_attr (comp_unit_die, DW_AT_name, cu);
3417   if (attr == NULL)
3418     *result_ptr = NULL;
3419   else
3420     *result_ptr = DW_STRING (attr);
3421 }
3422
3423 static const char *
3424 dw2_find_symbol_file (struct objfile *objfile, const char *name)
3425 {
3426   struct dwarf2_per_cu_data *per_cu;
3427   offset_type *vec;
3428   const char *filename;
3429
3430   dw2_setup (objfile);
3431
3432   /* index_table is NULL if OBJF_READNOW.  */
3433   if (!dwarf2_per_objfile->index_table)
3434     {
3435       struct symtab *s;
3436
3437       ALL_OBJFILE_PRIMARY_SYMTABS (objfile, s)
3438         {
3439           struct blockvector *bv = BLOCKVECTOR (s);
3440           const struct block *block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
3441           struct symbol *sym = lookup_block_symbol (block, name, VAR_DOMAIN);
3442
3443           if (sym)
3444             {
3445               /* Only file extension of returned filename is recognized.  */
3446               return SYMBOL_SYMTAB (sym)->filename;
3447             }
3448         }
3449       return NULL;
3450     }
3451
3452   if (!find_slot_in_mapped_hash (dwarf2_per_objfile->index_table,
3453                                  name, &vec))
3454     return NULL;
3455
3456   /* Note that this just looks at the very first one named NAME -- but
3457      actually we are looking for a function.  find_main_filename
3458      should be rewritten so that it doesn't require a custom hook.  It
3459      could just use the ordinary symbol tables.  */
3460   /* vec[0] is the length, which must always be >0.  */
3461   per_cu = dw2_get_cu (GDB_INDEX_CU_VALUE (MAYBE_SWAP (vec[1])));
3462
3463   if (per_cu->v.quick->symtab != NULL)
3464     {
3465       /* Only file extension of returned filename is recognized.  */
3466       return per_cu->v.quick->symtab->filename;
3467     }
3468
3469   /* Initialize filename in case there's a problem reading the DWARF,
3470      dw2_get_primary_filename_reader may not get called.  */
3471   filename = NULL;
3472   init_cutu_and_read_dies (per_cu, NULL, 0, 0,
3473                            dw2_get_primary_filename_reader, &filename);
3474
3475   /* Only file extension of returned filename is recognized.  */
3476   return filename;
3477 }
3478
3479 static void
3480 dw2_map_matching_symbols (const char * name, domain_enum namespace,
3481                           struct objfile *objfile, int global,
3482                           int (*callback) (struct block *,
3483                                            struct symbol *, void *),
3484                           void *data, symbol_compare_ftype *match,
3485                           symbol_compare_ftype *ordered_compare)
3486 {
3487   /* Currently unimplemented; used for Ada.  The function can be called if the
3488      current language is Ada for a non-Ada objfile using GNU index.  As Ada
3489      does not look for non-Ada symbols this function should just return.  */
3490 }
3491
3492 static void
3493 dw2_expand_symtabs_matching
3494   (struct objfile *objfile,
3495    int (*file_matcher) (const char *, void *, int basenames),
3496    int (*name_matcher) (const char *, void *),
3497    enum search_domain kind,
3498    void *data)
3499 {
3500   int i;
3501   offset_type iter;
3502   struct mapped_index *index;
3503
3504   dw2_setup (objfile);
3505
3506   /* index_table is NULL if OBJF_READNOW.  */
3507   if (!dwarf2_per_objfile->index_table)
3508     return;
3509   index = dwarf2_per_objfile->index_table;
3510
3511   if (file_matcher != NULL)
3512     {
3513       struct cleanup *cleanup;
3514       htab_t visited_found, visited_not_found;
3515
3516       visited_found = htab_create_alloc (10,
3517                                          htab_hash_pointer, htab_eq_pointer,
3518                                          NULL, xcalloc, xfree);
3519       cleanup = make_cleanup_htab_delete (visited_found);
3520       visited_not_found = htab_create_alloc (10,
3521                                              htab_hash_pointer, htab_eq_pointer,
3522                                              NULL, xcalloc, xfree);
3523       make_cleanup_htab_delete (visited_not_found);
3524
3525       /* The rule is CUs specify all the files, including those used by
3526          any TU, so there's no need to scan TUs here.  */
3527
3528       for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3529         {
3530           int j;
3531           struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
3532           struct quick_file_names *file_data;
3533           void **slot;
3534
3535           per_cu->v.quick->mark = 0;
3536
3537           /* We only need to look at symtabs not already expanded.  */
3538           if (per_cu->v.quick->symtab)
3539             continue;
3540
3541           file_data = dw2_get_file_names (per_cu);
3542           if (file_data == NULL)
3543             continue;
3544
3545           if (htab_find (visited_not_found, file_data) != NULL)
3546             continue;
3547           else if (htab_find (visited_found, file_data) != NULL)
3548             {
3549               per_cu->v.quick->mark = 1;
3550               continue;
3551             }
3552
3553           for (j = 0; j < file_data->num_file_names; ++j)
3554             {
3555               const char *this_real_name;
3556
3557               if (file_matcher (file_data->file_names[j], data, 0))
3558                 {
3559                   per_cu->v.quick->mark = 1;
3560                   break;
3561                 }
3562
3563               /* Before we invoke realpath, which can get expensive when many
3564                  files are involved, do a quick comparison of the basenames.  */
3565               if (!basenames_may_differ
3566                   && !file_matcher (lbasename (file_data->file_names[j]),
3567                                     data, 1))
3568                 continue;
3569
3570               this_real_name = dw2_get_real_path (objfile, file_data, j);
3571               if (file_matcher (this_real_name, data, 0))
3572                 {
3573                   per_cu->v.quick->mark = 1;
3574                   break;
3575                 }
3576             }
3577
3578           slot = htab_find_slot (per_cu->v.quick->mark
3579                                  ? visited_found
3580                                  : visited_not_found,
3581                                  file_data, INSERT);
3582           *slot = file_data;
3583         }
3584
3585       do_cleanups (cleanup);
3586     }
3587
3588   for (iter = 0; iter < index->symbol_table_slots; ++iter)
3589     {
3590       offset_type idx = 2 * iter;
3591       const char *name;
3592       offset_type *vec, vec_len, vec_idx;
3593
3594       if (index->symbol_table[idx] == 0 && index->symbol_table[idx + 1] == 0)
3595         continue;
3596
3597       name = index->constant_pool + MAYBE_SWAP (index->symbol_table[idx]);
3598
3599       if (! (*name_matcher) (name, data))
3600         continue;
3601
3602       /* The name was matched, now expand corresponding CUs that were
3603          marked.  */
3604       vec = (offset_type *) (index->constant_pool
3605                              + MAYBE_SWAP (index->symbol_table[idx + 1]));
3606       vec_len = MAYBE_SWAP (vec[0]);
3607       for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
3608         {
3609           struct dwarf2_per_cu_data *per_cu;
3610           offset_type cu_index_and_attrs = MAYBE_SWAP (vec[vec_idx + 1]);
3611           gdb_index_symbol_kind symbol_kind =
3612             GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3613           int cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
3614
3615           /* Don't crash on bad data.  */
3616           if (cu_index >= (dwarf2_per_objfile->n_comp_units
3617                            + dwarf2_per_objfile->n_type_units))
3618             continue;
3619
3620           /* Only check the symbol's kind if it has one.
3621              Indices prior to version 7 don't record it.  */
3622           if (index->version >= 7)
3623             {
3624               switch (kind)
3625                 {
3626                 case VARIABLES_DOMAIN:
3627                   if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE)
3628                     continue;
3629                   break;
3630                 case FUNCTIONS_DOMAIN:
3631                   if (symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION)
3632                     continue;
3633                   break;
3634                 case TYPES_DOMAIN:
3635                   if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3636                     continue;
3637                   break;
3638                 default:
3639                   break;
3640                 }
3641             }
3642
3643           per_cu = dw2_get_cu (cu_index);
3644           if (file_matcher == NULL || per_cu->v.quick->mark)
3645             dw2_instantiate_symtab (per_cu);
3646         }
3647     }
3648 }
3649
3650 /* A helper for dw2_find_pc_sect_symtab which finds the most specific
3651    symtab.  */
3652
3653 static struct symtab *
3654 recursively_find_pc_sect_symtab (struct symtab *symtab, CORE_ADDR pc)
3655 {
3656   int i;
3657
3658   if (BLOCKVECTOR (symtab) != NULL
3659       && blockvector_contains_pc (BLOCKVECTOR (symtab), pc))
3660     return symtab;
3661
3662   if (symtab->includes == NULL)
3663     return NULL;
3664
3665   for (i = 0; symtab->includes[i]; ++i)
3666     {
3667       struct symtab *s = symtab->includes[i];
3668
3669       s = recursively_find_pc_sect_symtab (s, pc);
3670       if (s != NULL)
3671         return s;
3672     }
3673
3674   return NULL;
3675 }
3676
3677 static struct symtab *
3678 dw2_find_pc_sect_symtab (struct objfile *objfile,
3679                          struct minimal_symbol *msymbol,
3680                          CORE_ADDR pc,
3681                          struct obj_section *section,
3682                          int warn_if_readin)
3683 {
3684   struct dwarf2_per_cu_data *data;
3685   struct symtab *result;
3686
3687   dw2_setup (objfile);
3688
3689   if (!objfile->psymtabs_addrmap)
3690     return NULL;
3691
3692   data = addrmap_find (objfile->psymtabs_addrmap, pc);
3693   if (!data)
3694     return NULL;
3695
3696   if (warn_if_readin && data->v.quick->symtab)
3697     warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
3698              paddress (get_objfile_arch (objfile), pc));
3699
3700   result = recursively_find_pc_sect_symtab (dw2_instantiate_symtab (data), pc);
3701   gdb_assert (result != NULL);
3702   return result;
3703 }
3704
3705 static void
3706 dw2_map_symbol_filenames (struct objfile *objfile, symbol_filename_ftype *fun,
3707                           void *data, int need_fullname)
3708 {
3709   int i;
3710   struct cleanup *cleanup;
3711   htab_t visited = htab_create_alloc (10, htab_hash_pointer, htab_eq_pointer,
3712                                       NULL, xcalloc, xfree);
3713
3714   cleanup = make_cleanup_htab_delete (visited);
3715   dw2_setup (objfile);
3716
3717   /* The rule is CUs specify all the files, including those used by
3718      any TU, so there's no need to scan TUs here.
3719      We can ignore file names coming from already-expanded CUs.  */
3720
3721   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3722     {
3723       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3724
3725       if (per_cu->v.quick->symtab)
3726         {
3727           void **slot = htab_find_slot (visited, per_cu->v.quick->file_names,
3728                                         INSERT);
3729
3730           *slot = per_cu->v.quick->file_names;
3731         }
3732     }
3733
3734   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3735     {
3736       int j;
3737       struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
3738       struct quick_file_names *file_data;
3739       void **slot;
3740
3741       /* We only need to look at symtabs not already expanded.  */
3742       if (per_cu->v.quick->symtab)
3743         continue;
3744
3745       file_data = dw2_get_file_names (per_cu);
3746       if (file_data == NULL)
3747         continue;
3748
3749       slot = htab_find_slot (visited, file_data, INSERT);
3750       if (*slot)
3751         {
3752           /* Already visited.  */
3753           continue;
3754         }
3755       *slot = file_data;
3756
3757       for (j = 0; j < file_data->num_file_names; ++j)
3758         {
3759           const char *this_real_name;
3760
3761           if (need_fullname)
3762             this_real_name = dw2_get_real_path (objfile, file_data, j);
3763           else
3764             this_real_name = NULL;
3765           (*fun) (file_data->file_names[j], this_real_name, data);
3766         }
3767     }
3768
3769   do_cleanups (cleanup);
3770 }
3771
3772 static int
3773 dw2_has_symbols (struct objfile *objfile)
3774 {
3775   return 1;
3776 }
3777
3778 const struct quick_symbol_functions dwarf2_gdb_index_functions =
3779 {
3780   dw2_has_symbols,
3781   dw2_find_last_source_symtab,
3782   dw2_forget_cached_source_info,
3783   dw2_map_symtabs_matching_filename,
3784   dw2_lookup_symbol,
3785   dw2_print_stats,
3786   dw2_dump,
3787   dw2_relocate,
3788   dw2_expand_symtabs_for_function,
3789   dw2_expand_all_symtabs,
3790   dw2_expand_symtabs_with_fullname,
3791   dw2_find_symbol_file,
3792   dw2_map_matching_symbols,
3793   dw2_expand_symtabs_matching,
3794   dw2_find_pc_sect_symtab,
3795   dw2_map_symbol_filenames
3796 };
3797
3798 /* Initialize for reading DWARF for this objfile.  Return 0 if this
3799    file will use psymtabs, or 1 if using the GNU index.  */
3800
3801 int
3802 dwarf2_initialize_objfile (struct objfile *objfile)
3803 {
3804   /* If we're about to read full symbols, don't bother with the
3805      indices.  In this case we also don't care if some other debug
3806      format is making psymtabs, because they are all about to be
3807      expanded anyway.  */
3808   if ((objfile->flags & OBJF_READNOW))
3809     {
3810       int i;
3811
3812       dwarf2_per_objfile->using_index = 1;
3813       create_all_comp_units (objfile);
3814       create_all_type_units (objfile);
3815       dwarf2_per_objfile->quick_file_names_table =
3816         create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
3817
3818       for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3819                        + dwarf2_per_objfile->n_type_units); ++i)
3820         {
3821           struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3822
3823           per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3824                                             struct dwarf2_per_cu_quick_data);
3825         }
3826
3827       /* Return 1 so that gdb sees the "quick" functions.  However,
3828          these functions will be no-ops because we will have expanded
3829          all symtabs.  */
3830       return 1;
3831     }
3832
3833   if (dwarf2_read_index (objfile))
3834     return 1;
3835
3836   return 0;
3837 }
3838
3839 \f
3840
3841 /* Build a partial symbol table.  */
3842
3843 void
3844 dwarf2_build_psymtabs (struct objfile *objfile)
3845 {
3846   volatile struct gdb_exception except;
3847
3848   if (objfile->global_psymbols.size == 0 && objfile->static_psymbols.size == 0)
3849     {
3850       init_psymbol_list (objfile, 1024);
3851     }
3852
3853   TRY_CATCH (except, RETURN_MASK_ERROR)
3854     {
3855       /* This isn't really ideal: all the data we allocate on the
3856          objfile's obstack is still uselessly kept around.  However,
3857          freeing it seems unsafe.  */
3858       struct cleanup *cleanups = make_cleanup_discard_psymtabs (objfile);
3859
3860       dwarf2_build_psymtabs_hard (objfile);
3861       discard_cleanups (cleanups);
3862     }
3863   if (except.reason < 0)
3864     exception_print (gdb_stderr, except);
3865 }
3866
3867 /* Return the total length of the CU described by HEADER.  */
3868
3869 static unsigned int
3870 get_cu_length (const struct comp_unit_head *header)
3871 {
3872   return header->initial_length_size + header->length;
3873 }
3874
3875 /* Return TRUE if OFFSET is within CU_HEADER.  */
3876
3877 static inline int
3878 offset_in_cu_p (const struct comp_unit_head *cu_header, sect_offset offset)
3879 {
3880   sect_offset bottom = { cu_header->offset.sect_off };
3881   sect_offset top = { cu_header->offset.sect_off + get_cu_length (cu_header) };
3882
3883   return (offset.sect_off >= bottom.sect_off && offset.sect_off < top.sect_off);
3884 }
3885
3886 /* Find the base address of the compilation unit for range lists and
3887    location lists.  It will normally be specified by DW_AT_low_pc.
3888    In DWARF-3 draft 4, the base address could be overridden by
3889    DW_AT_entry_pc.  It's been removed, but GCC still uses this for
3890    compilation units with discontinuous ranges.  */
3891
3892 static void
3893 dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
3894 {
3895   struct attribute *attr;
3896
3897   cu->base_known = 0;
3898   cu->base_address = 0;
3899
3900   attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
3901   if (attr)
3902     {
3903       cu->base_address = DW_ADDR (attr);
3904       cu->base_known = 1;
3905     }
3906   else
3907     {
3908       attr = dwarf2_attr (die, DW_AT_low_pc, cu);
3909       if (attr)
3910         {
3911           cu->base_address = DW_ADDR (attr);
3912           cu->base_known = 1;
3913         }
3914     }
3915 }
3916
3917 /* Read in the comp unit header information from the debug_info at info_ptr.
3918    NOTE: This leaves members offset, first_die_offset to be filled in
3919    by the caller.  */
3920
3921 static const gdb_byte *
3922 read_comp_unit_head (struct comp_unit_head *cu_header,
3923                      const gdb_byte *info_ptr, bfd *abfd)
3924 {
3925   int signed_addr;
3926   unsigned int bytes_read;
3927
3928   cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
3929   cu_header->initial_length_size = bytes_read;
3930   cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
3931   info_ptr += bytes_read;
3932   cu_header->version = read_2_bytes (abfd, info_ptr);
3933   info_ptr += 2;
3934   cu_header->abbrev_offset.sect_off = read_offset (abfd, info_ptr, cu_header,
3935                                              &bytes_read);
3936   info_ptr += bytes_read;
3937   cu_header->addr_size = read_1_byte (abfd, info_ptr);
3938   info_ptr += 1;
3939   signed_addr = bfd_get_sign_extend_vma (abfd);
3940   if (signed_addr < 0)
3941     internal_error (__FILE__, __LINE__,
3942                     _("read_comp_unit_head: dwarf from non elf file"));
3943   cu_header->signed_addr_p = signed_addr;
3944
3945   return info_ptr;
3946 }
3947
3948 /* Helper function that returns the proper abbrev section for
3949    THIS_CU.  */
3950
3951 static struct dwarf2_section_info *
3952 get_abbrev_section_for_cu (struct dwarf2_per_cu_data *this_cu)
3953 {
3954   struct dwarf2_section_info *abbrev;
3955
3956   if (this_cu->is_dwz)
3957     abbrev = &dwarf2_get_dwz_file ()->abbrev;
3958   else
3959     abbrev = &dwarf2_per_objfile->abbrev;
3960
3961   return abbrev;
3962 }
3963
3964 /* Subroutine of read_and_check_comp_unit_head and
3965    read_and_check_type_unit_head to simplify them.
3966    Perform various error checking on the header.  */
3967
3968 static void
3969 error_check_comp_unit_head (struct comp_unit_head *header,
3970                             struct dwarf2_section_info *section,
3971                             struct dwarf2_section_info *abbrev_section)
3972 {
3973   bfd *abfd = section->asection->owner;
3974   const char *filename = bfd_get_filename (abfd);
3975
3976   if (header->version != 2 && header->version != 3 && header->version != 4)
3977     error (_("Dwarf Error: wrong version in compilation unit header "
3978            "(is %d, should be 2, 3, or 4) [in module %s]"), header->version,
3979            filename);
3980
3981   if (header->abbrev_offset.sect_off
3982       >= dwarf2_section_size (dwarf2_per_objfile->objfile, abbrev_section))
3983     error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
3984            "(offset 0x%lx + 6) [in module %s]"),
3985            (long) header->abbrev_offset.sect_off, (long) header->offset.sect_off,
3986            filename);
3987
3988   /* Cast to unsigned long to use 64-bit arithmetic when possible to
3989      avoid potential 32-bit overflow.  */
3990   if (((unsigned long) header->offset.sect_off + get_cu_length (header))
3991       > section->size)
3992     error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
3993            "(offset 0x%lx + 0) [in module %s]"),
3994            (long) header->length, (long) header->offset.sect_off,
3995            filename);
3996 }
3997
3998 /* Read in a CU/TU header and perform some basic error checking.
3999    The contents of the header are stored in HEADER.
4000    The result is a pointer to the start of the first DIE.  */
4001
4002 static const gdb_byte *
4003 read_and_check_comp_unit_head (struct comp_unit_head *header,
4004                                struct dwarf2_section_info *section,
4005                                struct dwarf2_section_info *abbrev_section,
4006                                const gdb_byte *info_ptr,
4007                                int is_debug_types_section)
4008 {
4009   const gdb_byte *beg_of_comp_unit = info_ptr;
4010   bfd *abfd = section->asection->owner;
4011
4012   header->offset.sect_off = beg_of_comp_unit - section->buffer;
4013
4014   info_ptr = read_comp_unit_head (header, info_ptr, abfd);
4015
4016   /* If we're reading a type unit, skip over the signature and
4017      type_offset fields.  */
4018   if (is_debug_types_section)
4019     info_ptr += 8 /*signature*/ + header->offset_size;
4020
4021   header->first_die_offset.cu_off = info_ptr - beg_of_comp_unit;
4022
4023   error_check_comp_unit_head (header, section, abbrev_section);
4024
4025   return info_ptr;
4026 }
4027
4028 /* Read in the types comp unit header information from .debug_types entry at
4029    types_ptr.  The result is a pointer to one past the end of the header.  */
4030
4031 static const gdb_byte *
4032 read_and_check_type_unit_head (struct comp_unit_head *header,
4033                                struct dwarf2_section_info *section,
4034                                struct dwarf2_section_info *abbrev_section,
4035                                const gdb_byte *info_ptr,
4036                                ULONGEST *signature,
4037                                cu_offset *type_offset_in_tu)
4038 {
4039   const gdb_byte *beg_of_comp_unit = info_ptr;
4040   bfd *abfd = section->asection->owner;
4041
4042   header->offset.sect_off = beg_of_comp_unit - section->buffer;
4043
4044   info_ptr = read_comp_unit_head (header, info_ptr, abfd);
4045
4046   /* If we're reading a type unit, skip over the signature and
4047      type_offset fields.  */
4048   if (signature != NULL)
4049     *signature = read_8_bytes (abfd, info_ptr);
4050   info_ptr += 8;
4051   if (type_offset_in_tu != NULL)
4052     type_offset_in_tu->cu_off = read_offset_1 (abfd, info_ptr,
4053                                                header->offset_size);
4054   info_ptr += header->offset_size;
4055
4056   header->first_die_offset.cu_off = info_ptr - beg_of_comp_unit;
4057
4058   error_check_comp_unit_head (header, section, abbrev_section);
4059
4060   return info_ptr;
4061 }
4062
4063 /* Fetch the abbreviation table offset from a comp or type unit header.  */
4064
4065 static sect_offset
4066 read_abbrev_offset (struct dwarf2_section_info *section,
4067                     sect_offset offset)
4068 {
4069   bfd *abfd = section->asection->owner;
4070   const gdb_byte *info_ptr;
4071   unsigned int length, initial_length_size, offset_size;
4072   sect_offset abbrev_offset;
4073
4074   dwarf2_read_section (dwarf2_per_objfile->objfile, section);
4075   info_ptr = section->buffer + offset.sect_off;
4076   length = read_initial_length (abfd, info_ptr, &initial_length_size);
4077   offset_size = initial_length_size == 4 ? 4 : 8;
4078   info_ptr += initial_length_size + 2 /*version*/;
4079   abbrev_offset.sect_off = read_offset_1 (abfd, info_ptr, offset_size);
4080   return abbrev_offset;
4081 }
4082
4083 /* Allocate a new partial symtab for file named NAME and mark this new
4084    partial symtab as being an include of PST.  */
4085
4086 static void
4087 dwarf2_create_include_psymtab (const char *name, struct partial_symtab *pst,
4088                                struct objfile *objfile)
4089 {
4090   struct partial_symtab *subpst = allocate_psymtab (name, objfile);
4091
4092   if (!IS_ABSOLUTE_PATH (subpst->filename))
4093     {
4094       /* It shares objfile->objfile_obstack.  */
4095       subpst->dirname = pst->dirname;
4096     }
4097
4098   subpst->section_offsets = pst->section_offsets;
4099   subpst->textlow = 0;
4100   subpst->texthigh = 0;
4101
4102   subpst->dependencies = (struct partial_symtab **)
4103     obstack_alloc (&objfile->objfile_obstack,
4104                    sizeof (struct partial_symtab *));
4105   subpst->dependencies[0] = pst;
4106   subpst->number_of_dependencies = 1;
4107
4108   subpst->globals_offset = 0;
4109   subpst->n_global_syms = 0;
4110   subpst->statics_offset = 0;
4111   subpst->n_static_syms = 0;
4112   subpst->symtab = NULL;
4113   subpst->read_symtab = pst->read_symtab;
4114   subpst->readin = 0;
4115
4116   /* No private part is necessary for include psymtabs.  This property
4117      can be used to differentiate between such include psymtabs and
4118      the regular ones.  */
4119   subpst->read_symtab_private = NULL;
4120 }
4121
4122 /* Read the Line Number Program data and extract the list of files
4123    included by the source file represented by PST.  Build an include
4124    partial symtab for each of these included files.  */
4125
4126 static void
4127 dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
4128                                struct die_info *die,
4129                                struct partial_symtab *pst)
4130 {
4131   struct line_header *lh = NULL;
4132   struct attribute *attr;
4133
4134   attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
4135   if (attr)
4136     lh = dwarf_decode_line_header (DW_UNSND (attr), cu);
4137   if (lh == NULL)
4138     return;  /* No linetable, so no includes.  */
4139
4140   /* NOTE: pst->dirname is DW_AT_comp_dir (if present).  */
4141   dwarf_decode_lines (lh, pst->dirname, cu, pst, 1);
4142
4143   free_line_header (lh);
4144 }
4145
4146 static hashval_t
4147 hash_signatured_type (const void *item)
4148 {
4149   const struct signatured_type *sig_type = item;
4150
4151   /* This drops the top 32 bits of the signature, but is ok for a hash.  */
4152   return sig_type->signature;
4153 }
4154
4155 static int
4156 eq_signatured_type (const void *item_lhs, const void *item_rhs)
4157 {
4158   const struct signatured_type *lhs = item_lhs;
4159   const struct signatured_type *rhs = item_rhs;
4160
4161   return lhs->signature == rhs->signature;
4162 }
4163
4164 /* Allocate a hash table for signatured types.  */
4165
4166 static htab_t
4167 allocate_signatured_type_table (struct objfile *objfile)
4168 {
4169   return htab_create_alloc_ex (41,
4170                                hash_signatured_type,
4171                                eq_signatured_type,
4172                                NULL,
4173                                &objfile->objfile_obstack,
4174                                hashtab_obstack_allocate,
4175                                dummy_obstack_deallocate);
4176 }
4177
4178 /* A helper function to add a signatured type CU to a table.  */
4179
4180 static int
4181 add_signatured_type_cu_to_table (void **slot, void *datum)
4182 {
4183   struct signatured_type *sigt = *slot;
4184   struct signatured_type ***datap = datum;
4185
4186   **datap = sigt;
4187   ++*datap;
4188
4189   return 1;
4190 }
4191
4192 /* Create the hash table of all entries in the .debug_types
4193    (or .debug_types.dwo) section(s).
4194    If reading a DWO file, then DWO_FILE is a pointer to the DWO file object,
4195    otherwise it is NULL.
4196
4197    The result is a pointer to the hash table or NULL if there are no types.
4198
4199    Note: This function processes DWO files only, not DWP files.  */
4200
4201 static htab_t
4202 create_debug_types_hash_table (struct dwo_file *dwo_file,
4203                                VEC (dwarf2_section_info_def) *types)
4204 {
4205   struct objfile *objfile = dwarf2_per_objfile->objfile;
4206   htab_t types_htab = NULL;
4207   int ix;
4208   struct dwarf2_section_info *section;
4209   struct dwarf2_section_info *abbrev_section;
4210
4211   if (VEC_empty (dwarf2_section_info_def, types))
4212     return NULL;
4213
4214   abbrev_section = (dwo_file != NULL
4215                     ? &dwo_file->sections.abbrev
4216                     : &dwarf2_per_objfile->abbrev);
4217
4218   if (dwarf2_read_debug)
4219     fprintf_unfiltered (gdb_stdlog, "Reading .debug_types%s for %s:\n",
4220                         dwo_file ? ".dwo" : "",
4221                         bfd_get_filename (abbrev_section->asection->owner));
4222
4223   for (ix = 0;
4224        VEC_iterate (dwarf2_section_info_def, types, ix, section);
4225        ++ix)
4226     {
4227       bfd *abfd;
4228       const gdb_byte *info_ptr, *end_ptr;
4229       struct dwarf2_section_info *abbrev_section;
4230
4231       dwarf2_read_section (objfile, section);
4232       info_ptr = section->buffer;
4233
4234       if (info_ptr == NULL)
4235         continue;
4236
4237       /* We can't set abfd until now because the section may be empty or
4238          not present, in which case section->asection will be NULL.  */
4239       abfd = section->asection->owner;
4240
4241       if (dwo_file)
4242         abbrev_section = &dwo_file->sections.abbrev;
4243       else
4244         abbrev_section = &dwarf2_per_objfile->abbrev;
4245
4246       /* We don't use init_cutu_and_read_dies_simple, or some such, here
4247          because we don't need to read any dies: the signature is in the
4248          header.  */
4249
4250       end_ptr = info_ptr + section->size;
4251       while (info_ptr < end_ptr)
4252         {
4253           sect_offset offset;
4254           cu_offset type_offset_in_tu;
4255           ULONGEST signature;
4256           struct signatured_type *sig_type;
4257           struct dwo_unit *dwo_tu;
4258           void **slot;
4259           const gdb_byte *ptr = info_ptr;
4260           struct comp_unit_head header;
4261           unsigned int length;
4262
4263           offset.sect_off = ptr - section->buffer;
4264
4265           /* We need to read the type's signature in order to build the hash
4266              table, but we don't need anything else just yet.  */
4267
4268           ptr = read_and_check_type_unit_head (&header, section,
4269                                                abbrev_section, ptr,
4270                                                &signature, &type_offset_in_tu);
4271
4272           length = get_cu_length (&header);
4273
4274           /* Skip dummy type units.  */
4275           if (ptr >= info_ptr + length
4276               || peek_abbrev_code (abfd, ptr) == 0)
4277             {
4278               info_ptr += length;
4279               continue;
4280             }
4281
4282           if (types_htab == NULL)
4283             {
4284               if (dwo_file)
4285                 types_htab = allocate_dwo_unit_table (objfile);
4286               else
4287                 types_htab = allocate_signatured_type_table (objfile);
4288             }
4289
4290           if (dwo_file)
4291             {
4292               sig_type = NULL;
4293               dwo_tu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4294                                        struct dwo_unit);
4295               dwo_tu->dwo_file = dwo_file;
4296               dwo_tu->signature = signature;
4297               dwo_tu->type_offset_in_tu = type_offset_in_tu;
4298               dwo_tu->section = section;
4299               dwo_tu->offset = offset;
4300               dwo_tu->length = length;
4301             }
4302           else
4303             {
4304               /* N.B.: type_offset is not usable if this type uses a DWO file.
4305                  The real type_offset is in the DWO file.  */
4306               dwo_tu = NULL;
4307               sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4308                                          struct signatured_type);
4309               sig_type->signature = signature;
4310               sig_type->type_offset_in_tu = type_offset_in_tu;
4311               sig_type->per_cu.objfile = objfile;
4312               sig_type->per_cu.is_debug_types = 1;
4313               sig_type->per_cu.section = section;
4314               sig_type->per_cu.offset = offset;
4315               sig_type->per_cu.length = length;
4316             }
4317
4318           slot = htab_find_slot (types_htab,
4319                                  dwo_file ? (void*) dwo_tu : (void *) sig_type,
4320                                  INSERT);
4321           gdb_assert (slot != NULL);
4322           if (*slot != NULL)
4323             {
4324               sect_offset dup_offset;
4325
4326               if (dwo_file)
4327                 {
4328                   const struct dwo_unit *dup_tu = *slot;
4329
4330                   dup_offset = dup_tu->offset;
4331                 }
4332               else
4333                 {
4334                   const struct signatured_type *dup_tu = *slot;
4335
4336                   dup_offset = dup_tu->per_cu.offset;
4337                 }
4338
4339               complaint (&symfile_complaints,
4340                          _("debug type entry at offset 0x%x is duplicate to"
4341                            " the entry at offset 0x%x, signature %s"),
4342                          offset.sect_off, dup_offset.sect_off,
4343                          hex_string (signature));
4344             }
4345           *slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
4346
4347           if (dwarf2_read_debug)
4348             fprintf_unfiltered (gdb_stdlog, "  offset 0x%x, signature %s\n",
4349                                 offset.sect_off,
4350                                 hex_string (signature));
4351
4352           info_ptr += length;
4353         }
4354     }
4355
4356   return types_htab;
4357 }
4358
4359 /* Create the hash table of all entries in the .debug_types section,
4360    and initialize all_type_units.
4361    The result is zero if there is an error (e.g. missing .debug_types section),
4362    otherwise non-zero.  */
4363
4364 static int
4365 create_all_type_units (struct objfile *objfile)
4366 {
4367   htab_t types_htab;
4368   struct signatured_type **iter;
4369
4370   types_htab = create_debug_types_hash_table (NULL, dwarf2_per_objfile->types);
4371   if (types_htab == NULL)
4372     {
4373       dwarf2_per_objfile->signatured_types = NULL;
4374       return 0;
4375     }
4376
4377   dwarf2_per_objfile->signatured_types = types_htab;
4378
4379   dwarf2_per_objfile->n_type_units = htab_elements (types_htab);
4380   dwarf2_per_objfile->all_type_units
4381     = obstack_alloc (&objfile->objfile_obstack,
4382                      dwarf2_per_objfile->n_type_units
4383                      * sizeof (struct signatured_type *));
4384   iter = &dwarf2_per_objfile->all_type_units[0];
4385   htab_traverse_noresize (types_htab, add_signatured_type_cu_to_table, &iter);
4386   gdb_assert (iter - &dwarf2_per_objfile->all_type_units[0]
4387               == dwarf2_per_objfile->n_type_units);
4388
4389   return 1;
4390 }
4391
4392 /* Lookup a signature based type for DW_FORM_ref_sig8.
4393    Returns NULL if signature SIG is not present in the table.
4394    It is up to the caller to complain about this.  */
4395
4396 static struct signatured_type *
4397 lookup_signatured_type (ULONGEST sig)
4398 {
4399   struct signatured_type find_entry, *entry;
4400
4401   if (dwarf2_per_objfile->signatured_types == NULL)
4402     return NULL;
4403   find_entry.signature = sig;
4404   entry = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
4405   return entry;
4406 }
4407 \f
4408 /* Low level DIE reading support.  */
4409
4410 /* Initialize a die_reader_specs struct from a dwarf2_cu struct.  */
4411
4412 static void
4413 init_cu_die_reader (struct die_reader_specs *reader,
4414                     struct dwarf2_cu *cu,
4415                     struct dwarf2_section_info *section,
4416                     struct dwo_file *dwo_file)
4417 {
4418   gdb_assert (section->readin && section->buffer != NULL);
4419   reader->abfd = section->asection->owner;
4420   reader->cu = cu;
4421   reader->dwo_file = dwo_file;
4422   reader->die_section = section;
4423   reader->buffer = section->buffer;
4424   reader->buffer_end = section->buffer + section->size;
4425 }
4426
4427 /* Subroutine of init_cutu_and_read_dies to simplify it.
4428    Read in the rest of a CU/TU top level DIE from DWO_UNIT.
4429    There's just a lot of work to do, and init_cutu_and_read_dies is big enough
4430    already.
4431
4432    STUB_COMP_UNIT_DIE is for the stub DIE, we copy over certain attributes
4433    from it to the DIE in the DWO.  If NULL we are skipping the stub.
4434    *RESULT_READER,*RESULT_INFO_PTR,*RESULT_COMP_UNIT_DIE,*RESULT_HAS_CHILDREN
4435    are filled in with the info of the DIE from the DWO file.
4436    ABBREV_TABLE_PROVIDED is non-zero if the caller of init_cutu_and_read_dies
4437    provided an abbrev table to use.
4438    The result is non-zero if a valid (non-dummy) DIE was found.  */
4439
4440 static int
4441 read_cutu_die_from_dwo (struct dwarf2_per_cu_data *this_cu,
4442                         struct dwo_unit *dwo_unit,
4443                         int abbrev_table_provided,
4444                         struct die_info *stub_comp_unit_die,
4445                         struct die_reader_specs *result_reader,
4446                         const gdb_byte **result_info_ptr,
4447                         struct die_info **result_comp_unit_die,
4448                         int *result_has_children)
4449 {
4450   struct objfile *objfile = dwarf2_per_objfile->objfile;
4451   struct dwarf2_cu *cu = this_cu->cu;
4452   struct dwarf2_section_info *section;
4453   bfd *abfd;
4454   const gdb_byte *begin_info_ptr, *info_ptr;
4455   const char *comp_dir_string;
4456   ULONGEST signature; /* Or dwo_id.  */
4457   struct attribute *comp_dir, *stmt_list, *low_pc, *high_pc, *ranges;
4458   int i,num_extra_attrs;
4459   struct dwarf2_section_info *dwo_abbrev_section;
4460   struct attribute *attr;
4461   struct die_info *comp_unit_die;
4462
4463   /* These attributes aren't processed until later:
4464      DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
4465      However, the attribute is found in the stub which we won't have later.
4466      In order to not impose this complication on the rest of the code,
4467      we read them here and copy them to the DWO CU/TU die.  */
4468
4469   stmt_list = NULL;
4470   low_pc = NULL;
4471   high_pc = NULL;
4472   ranges = NULL;
4473   comp_dir = NULL;
4474
4475   if (stub_comp_unit_die != NULL)
4476     {
4477       /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
4478          DWO file.  */
4479       if (! this_cu->is_debug_types)
4480         stmt_list = dwarf2_attr (stub_comp_unit_die, DW_AT_stmt_list, cu);
4481       low_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_low_pc, cu);
4482       high_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_high_pc, cu);
4483       ranges = dwarf2_attr (stub_comp_unit_die, DW_AT_ranges, cu);
4484       comp_dir = dwarf2_attr (stub_comp_unit_die, DW_AT_comp_dir, cu);
4485
4486       /* There should be a DW_AT_addr_base attribute here (if needed).
4487          We need the value before we can process DW_FORM_GNU_addr_index.  */
4488       cu->addr_base = 0;
4489       attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_addr_base, cu);
4490       if (attr)
4491         cu->addr_base = DW_UNSND (attr);
4492
4493       /* There should be a DW_AT_ranges_base attribute here (if needed).
4494          We need the value before we can process DW_AT_ranges.  */
4495       cu->ranges_base = 0;
4496       attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_ranges_base, cu);
4497       if (attr)
4498         cu->ranges_base = DW_UNSND (attr);
4499     }
4500
4501   /* Set up for reading the DWO CU/TU.  */
4502   cu->dwo_unit = dwo_unit;
4503   section = dwo_unit->section;
4504   dwarf2_read_section (objfile, section);
4505   abfd = section->asection->owner;
4506   begin_info_ptr = info_ptr = section->buffer + dwo_unit->offset.sect_off;
4507   dwo_abbrev_section = &dwo_unit->dwo_file->sections.abbrev;
4508   init_cu_die_reader (result_reader, cu, section, dwo_unit->dwo_file);
4509
4510   if (this_cu->is_debug_types)
4511     {
4512       ULONGEST header_signature;
4513       cu_offset type_offset_in_tu;
4514       struct signatured_type *sig_type = (struct signatured_type *) this_cu;
4515
4516       info_ptr = read_and_check_type_unit_head (&cu->header, section,
4517                                                 dwo_abbrev_section,
4518                                                 info_ptr,
4519                                                 &header_signature,
4520                                                 &type_offset_in_tu);
4521       gdb_assert (sig_type->signature == header_signature);
4522       gdb_assert (dwo_unit->offset.sect_off == cu->header.offset.sect_off);
4523       /* For DWOs coming from DWP files, we don't know the CU length
4524          nor the type's offset in the TU until now.  */
4525       dwo_unit->length = get_cu_length (&cu->header);
4526       dwo_unit->type_offset_in_tu = type_offset_in_tu;
4527
4528       /* Establish the type offset that can be used to lookup the type.
4529          For DWO files, we don't know it until now.  */
4530       sig_type->type_offset_in_section.sect_off =
4531         dwo_unit->offset.sect_off + dwo_unit->type_offset_in_tu.cu_off;
4532     }
4533   else
4534     {
4535       info_ptr = read_and_check_comp_unit_head (&cu->header, section,
4536                                                 dwo_abbrev_section,
4537                                                 info_ptr, 0);
4538       gdb_assert (dwo_unit->offset.sect_off == cu->header.offset.sect_off);
4539       /* For DWOs coming from DWP files, we don't know the CU length
4540          until now.  */
4541       dwo_unit->length = get_cu_length (&cu->header);
4542     }
4543
4544   /* Replace the CU's original abbrev table with the DWO's.
4545      Reminder: We can't read the abbrev table until we've read the header.  */
4546   if (abbrev_table_provided)
4547     {
4548       /* Don't free the provided abbrev table, the caller of
4549          init_cutu_and_read_dies owns it.  */
4550       dwarf2_read_abbrevs (cu, dwo_abbrev_section);
4551       /* Ensure the DWO abbrev table gets freed.  */
4552       make_cleanup (dwarf2_free_abbrev_table, cu);
4553     }
4554   else
4555     {
4556       dwarf2_free_abbrev_table (cu);
4557       dwarf2_read_abbrevs (cu, dwo_abbrev_section);
4558       /* Leave any existing abbrev table cleanup as is.  */
4559     }
4560
4561   /* Read in the die, but leave space to copy over the attributes
4562      from the stub.  This has the benefit of simplifying the rest of
4563      the code - all the work to maintain the illusion of a single
4564      DW_TAG_{compile,type}_unit DIE is done here.  */
4565   num_extra_attrs = ((stmt_list != NULL)
4566                      + (low_pc != NULL)
4567                      + (high_pc != NULL)
4568                      + (ranges != NULL)
4569                      + (comp_dir != NULL));
4570   info_ptr = read_full_die_1 (result_reader, result_comp_unit_die, info_ptr,
4571                               result_has_children, num_extra_attrs);
4572
4573   /* Copy over the attributes from the stub to the DIE we just read in.  */
4574   comp_unit_die = *result_comp_unit_die;
4575   i = comp_unit_die->num_attrs;
4576   if (stmt_list != NULL)
4577     comp_unit_die->attrs[i++] = *stmt_list;
4578   if (low_pc != NULL)
4579     comp_unit_die->attrs[i++] = *low_pc;
4580   if (high_pc != NULL)
4581     comp_unit_die->attrs[i++] = *high_pc;
4582   if (ranges != NULL)
4583     comp_unit_die->attrs[i++] = *ranges;
4584   if (comp_dir != NULL)
4585     comp_unit_die->attrs[i++] = *comp_dir;
4586   comp_unit_die->num_attrs += num_extra_attrs;
4587
4588   if (dwarf2_die_debug)
4589     {
4590       fprintf_unfiltered (gdb_stdlog,
4591                           "Read die from %s@0x%x of %s:\n",
4592                           bfd_section_name (abfd, section->asection),
4593                           (unsigned) (begin_info_ptr - section->buffer),
4594                           bfd_get_filename (abfd));
4595       dump_die (comp_unit_die, dwarf2_die_debug);
4596     }
4597
4598   /* Skip dummy compilation units.  */
4599   if (info_ptr >= begin_info_ptr + dwo_unit->length
4600       || peek_abbrev_code (abfd, info_ptr) == 0)
4601     return 0;
4602
4603   *result_info_ptr = info_ptr;
4604   return 1;
4605 }
4606
4607 /* Subroutine of init_cutu_and_read_dies to simplify it.
4608    Look up the DWO unit specified by COMP_UNIT_DIE of THIS_CU.
4609    Returns NULL if the specified DWO unit cannot be found.  */
4610
4611 static struct dwo_unit *
4612 lookup_dwo_unit (struct dwarf2_per_cu_data *this_cu,
4613                  struct die_info *comp_unit_die)
4614 {
4615   struct dwarf2_cu *cu = this_cu->cu;
4616   struct attribute *attr;
4617   ULONGEST signature;
4618   struct dwo_unit *dwo_unit;
4619   const char *comp_dir, *dwo_name;
4620
4621   /* Yeah, we look dwo_name up again, but it simplifies the code.  */
4622   attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
4623   gdb_assert (attr != NULL);
4624   dwo_name = DW_STRING (attr);
4625   comp_dir = NULL;
4626   attr = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, cu);
4627   if (attr)
4628     comp_dir = DW_STRING (attr);
4629
4630   if (this_cu->is_debug_types)
4631     {
4632       struct signatured_type *sig_type;
4633
4634       /* Since this_cu is the first member of struct signatured_type,
4635          we can go from a pointer to one to a pointer to the other.  */
4636       sig_type = (struct signatured_type *) this_cu;
4637       signature = sig_type->signature;
4638       dwo_unit = lookup_dwo_type_unit (sig_type, dwo_name, comp_dir);
4639     }
4640   else
4641     {
4642       struct attribute *attr;
4643
4644       attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
4645       if (! attr)
4646         error (_("Dwarf Error: missing dwo_id for dwo_name %s"
4647                  " [in module %s]"),
4648                dwo_name, this_cu->objfile->name);
4649       signature = DW_UNSND (attr);
4650       dwo_unit = lookup_dwo_comp_unit (this_cu, dwo_name, comp_dir,
4651                                        signature);
4652     }
4653
4654   return dwo_unit;
4655 }
4656
4657 /* Initialize a CU (or TU) and read its DIEs.
4658    If the CU defers to a DWO file, read the DWO file as well.
4659
4660    ABBREV_TABLE, if non-NULL, is the abbreviation table to use.
4661    Otherwise the table specified in the comp unit header is read in and used.
4662    This is an optimization for when we already have the abbrev table.
4663
4664    If USE_EXISTING_CU is non-zero, and THIS_CU->cu is non-NULL, then use it.
4665    Otherwise, a new CU is allocated with xmalloc.
4666
4667    If KEEP is non-zero, then if we allocated a dwarf2_cu we add it to
4668    read_in_chain.  Otherwise the dwarf2_cu data is freed at the end.
4669
4670    WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
4671    linker) then DIE_READER_FUNC will not get called.  */
4672
4673 static void
4674 init_cutu_and_read_dies (struct dwarf2_per_cu_data *this_cu,
4675                          struct abbrev_table *abbrev_table,
4676                          int use_existing_cu, int keep,
4677                          die_reader_func_ftype *die_reader_func,
4678                          void *data)
4679 {
4680   struct objfile *objfile = dwarf2_per_objfile->objfile;
4681   struct dwarf2_section_info *section = this_cu->section;
4682   bfd *abfd = section->asection->owner;
4683   struct dwarf2_cu *cu;
4684   const gdb_byte *begin_info_ptr, *info_ptr;
4685   struct die_reader_specs reader;
4686   struct die_info *comp_unit_die;
4687   int has_children;
4688   struct attribute *attr;
4689   struct cleanup *cleanups, *free_cu_cleanup = NULL;
4690   struct signatured_type *sig_type = NULL;
4691   struct dwarf2_section_info *abbrev_section;
4692   /* Non-zero if CU currently points to a DWO file and we need to
4693      reread it.  When this happens we need to reread the skeleton die
4694      before we can reread the DWO file.  */
4695   int rereading_dwo_cu = 0;
4696
4697   if (dwarf2_die_debug)
4698     fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset 0x%x\n",
4699                         this_cu->is_debug_types ? "type" : "comp",
4700                         this_cu->offset.sect_off);
4701
4702   if (use_existing_cu)
4703     gdb_assert (keep);
4704
4705   cleanups = make_cleanup (null_cleanup, NULL);
4706
4707   /* This is cheap if the section is already read in.  */
4708   dwarf2_read_section (objfile, section);
4709
4710   begin_info_ptr = info_ptr = section->buffer + this_cu->offset.sect_off;
4711
4712   abbrev_section = get_abbrev_section_for_cu (this_cu);
4713
4714   if (use_existing_cu && this_cu->cu != NULL)
4715     {
4716       cu = this_cu->cu;
4717
4718       /* If this CU is from a DWO file we need to start over, we need to
4719          refetch the attributes from the skeleton CU.
4720          This could be optimized by retrieving those attributes from when we
4721          were here the first time: the previous comp_unit_die was stored in
4722          comp_unit_obstack.  But there's no data yet that we need this
4723          optimization.  */
4724       if (cu->dwo_unit != NULL)
4725         rereading_dwo_cu = 1;
4726     }
4727   else
4728     {
4729       /* If !use_existing_cu, this_cu->cu must be NULL.  */
4730       gdb_assert (this_cu->cu == NULL);
4731
4732       cu = xmalloc (sizeof (*cu));
4733       init_one_comp_unit (cu, this_cu);
4734
4735       /* If an error occurs while loading, release our storage.  */
4736       free_cu_cleanup = make_cleanup (free_heap_comp_unit, cu);
4737     }
4738
4739   /* Get the header.  */
4740   if (cu->header.first_die_offset.cu_off != 0 && ! rereading_dwo_cu)
4741     {
4742       /* We already have the header, there's no need to read it in again.  */
4743       info_ptr += cu->header.first_die_offset.cu_off;
4744     }
4745   else
4746     {
4747       if (this_cu->is_debug_types)
4748         {
4749           ULONGEST signature;
4750           cu_offset type_offset_in_tu;
4751
4752           info_ptr = read_and_check_type_unit_head (&cu->header, section,
4753                                                     abbrev_section, info_ptr,
4754                                                     &signature,
4755                                                     &type_offset_in_tu);
4756
4757           /* Since per_cu is the first member of struct signatured_type,
4758              we can go from a pointer to one to a pointer to the other.  */
4759           sig_type = (struct signatured_type *) this_cu;
4760           gdb_assert (sig_type->signature == signature);
4761           gdb_assert (sig_type->type_offset_in_tu.cu_off
4762                       == type_offset_in_tu.cu_off);
4763           gdb_assert (this_cu->offset.sect_off == cu->header.offset.sect_off);
4764
4765           /* LENGTH has not been set yet for type units if we're
4766              using .gdb_index.  */
4767           this_cu->length = get_cu_length (&cu->header);
4768
4769           /* Establish the type offset that can be used to lookup the type.  */
4770           sig_type->type_offset_in_section.sect_off =
4771             this_cu->offset.sect_off + sig_type->type_offset_in_tu.cu_off;
4772         }
4773       else
4774         {
4775           info_ptr = read_and_check_comp_unit_head (&cu->header, section,
4776                                                     abbrev_section,
4777                                                     info_ptr, 0);
4778
4779           gdb_assert (this_cu->offset.sect_off == cu->header.offset.sect_off);
4780           gdb_assert (this_cu->length == get_cu_length (&cu->header));
4781         }
4782     }
4783
4784   /* Skip dummy compilation units.  */
4785   if (info_ptr >= begin_info_ptr + this_cu->length
4786       || peek_abbrev_code (abfd, info_ptr) == 0)
4787     {
4788       do_cleanups (cleanups);
4789       return;
4790     }
4791
4792   /* If we don't have them yet, read the abbrevs for this compilation unit.
4793      And if we need to read them now, make sure they're freed when we're
4794      done.  Note that it's important that if the CU had an abbrev table
4795      on entry we don't free it when we're done: Somewhere up the call stack
4796      it may be in use.  */
4797   if (abbrev_table != NULL)
4798     {
4799       gdb_assert (cu->abbrev_table == NULL);
4800       gdb_assert (cu->header.abbrev_offset.sect_off
4801                   == abbrev_table->offset.sect_off);
4802       cu->abbrev_table = abbrev_table;
4803     }
4804   else if (cu->abbrev_table == NULL)
4805     {
4806       dwarf2_read_abbrevs (cu, abbrev_section);
4807       make_cleanup (dwarf2_free_abbrev_table, cu);
4808     }
4809   else if (rereading_dwo_cu)
4810     {
4811       dwarf2_free_abbrev_table (cu);
4812       dwarf2_read_abbrevs (cu, abbrev_section);
4813     }
4814
4815   /* Read the top level CU/TU die.  */
4816   init_cu_die_reader (&reader, cu, section, NULL);
4817   info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
4818
4819   /* If we are in a DWO stub, process it and then read in the "real" CU/TU
4820      from the DWO file.
4821      Note that if USE_EXISTING_OK != 0, and THIS_CU->cu already contains a
4822      DWO CU, that this test will fail (the attribute will not be present).  */
4823   attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
4824   if (attr)
4825     {
4826       struct dwo_unit *dwo_unit;
4827       struct die_info *dwo_comp_unit_die;
4828
4829       if (has_children)
4830         {
4831           complaint (&symfile_complaints,
4832                      _("compilation unit with DW_AT_GNU_dwo_name"
4833                        " has children (offset 0x%x) [in module %s]"),
4834                      this_cu->offset.sect_off, bfd_get_filename (abfd));
4835         }
4836       dwo_unit = lookup_dwo_unit (this_cu, comp_unit_die);
4837       if (dwo_unit != NULL)
4838         {
4839           if (read_cutu_die_from_dwo (this_cu, dwo_unit,
4840                                       abbrev_table != NULL,
4841                                       comp_unit_die,
4842                                       &reader, &info_ptr,
4843                                       &dwo_comp_unit_die, &has_children) == 0)
4844             {
4845               /* Dummy die.  */
4846               do_cleanups (cleanups);
4847               return;
4848             }
4849           comp_unit_die = dwo_comp_unit_die;
4850         }
4851       else
4852         {
4853           /* Yikes, we couldn't find the rest of the DIE, we only have
4854              the stub.  A complaint has already been logged.  There's
4855              not much more we can do except pass on the stub DIE to
4856              die_reader_func.  We don't want to throw an error on bad
4857              debug info.  */
4858         }
4859     }
4860
4861   /* All of the above is setup for this call.  Yikes.  */
4862   die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
4863
4864   /* Done, clean up.  */
4865   if (free_cu_cleanup != NULL)
4866     {
4867       if (keep)
4868         {
4869           /* We've successfully allocated this compilation unit.  Let our
4870              caller clean it up when finished with it.  */
4871           discard_cleanups (free_cu_cleanup);
4872
4873           /* We can only discard free_cu_cleanup and all subsequent cleanups.
4874              So we have to manually free the abbrev table.  */
4875           dwarf2_free_abbrev_table (cu);
4876
4877           /* Link this CU into read_in_chain.  */
4878           this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
4879           dwarf2_per_objfile->read_in_chain = this_cu;
4880         }
4881       else
4882         do_cleanups (free_cu_cleanup);
4883     }
4884
4885   do_cleanups (cleanups);
4886 }
4887
4888 /* Read CU/TU THIS_CU in section SECTION,
4889    but do not follow DW_AT_GNU_dwo_name if present.
4890    DWOP_FILE, if non-NULL, is the DWO/DWP file to read (the caller is assumed
4891    to have already done the lookup to find the DWO/DWP file).
4892
4893    The caller is required to fill in THIS_CU->section, THIS_CU->offset, and
4894    THIS_CU->is_debug_types, but nothing else.
4895
4896    We fill in THIS_CU->length.
4897
4898    WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
4899    linker) then DIE_READER_FUNC will not get called.
4900
4901    THIS_CU->cu is always freed when done.
4902    This is done in order to not leave THIS_CU->cu in a state where we have
4903    to care whether it refers to the "main" CU or the DWO CU.  */
4904
4905 static void
4906 init_cutu_and_read_dies_no_follow (struct dwarf2_per_cu_data *this_cu,
4907                                    struct dwarf2_section_info *abbrev_section,
4908                                    struct dwo_file *dwo_file,
4909                                    die_reader_func_ftype *die_reader_func,
4910                                    void *data)
4911 {
4912   struct objfile *objfile = dwarf2_per_objfile->objfile;
4913   struct dwarf2_section_info *section = this_cu->section;
4914   bfd *abfd = section->asection->owner;
4915   struct dwarf2_cu cu;
4916   const gdb_byte *begin_info_ptr, *info_ptr;
4917   struct die_reader_specs reader;
4918   struct cleanup *cleanups;
4919   struct die_info *comp_unit_die;
4920   int has_children;
4921
4922   if (dwarf2_die_debug)
4923     fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset 0x%x\n",
4924                         this_cu->is_debug_types ? "type" : "comp",
4925                         this_cu->offset.sect_off);
4926
4927   gdb_assert (this_cu->cu == NULL);
4928
4929   /* This is cheap if the section is already read in.  */
4930   dwarf2_read_section (objfile, section);
4931
4932   init_one_comp_unit (&cu, this_cu);
4933
4934   cleanups = make_cleanup (free_stack_comp_unit, &cu);
4935
4936   begin_info_ptr = info_ptr = section->buffer + this_cu->offset.sect_off;
4937   info_ptr = read_and_check_comp_unit_head (&cu.header, section,
4938                                             abbrev_section, info_ptr,
4939                                             this_cu->is_debug_types);
4940
4941   this_cu->length = get_cu_length (&cu.header);
4942
4943   /* Skip dummy compilation units.  */
4944   if (info_ptr >= begin_info_ptr + this_cu->length
4945       || peek_abbrev_code (abfd, info_ptr) == 0)
4946     {
4947       do_cleanups (cleanups);
4948       return;
4949     }
4950
4951   dwarf2_read_abbrevs (&cu, abbrev_section);
4952   make_cleanup (dwarf2_free_abbrev_table, &cu);
4953
4954   init_cu_die_reader (&reader, &cu, section, dwo_file);
4955   info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
4956
4957   die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
4958
4959   do_cleanups (cleanups);
4960 }
4961
4962 /* Read a CU/TU, except that this does not look for DW_AT_GNU_dwo_name and
4963    does not lookup the specified DWO file.
4964    This cannot be used to read DWO files.
4965
4966    THIS_CU->cu is always freed when done.
4967    This is done in order to not leave THIS_CU->cu in a state where we have
4968    to care whether it refers to the "main" CU or the DWO CU.
4969    We can revisit this if the data shows there's a performance issue.  */
4970
4971 static void
4972 init_cutu_and_read_dies_simple (struct dwarf2_per_cu_data *this_cu,
4973                                 die_reader_func_ftype *die_reader_func,
4974                                 void *data)
4975 {
4976   init_cutu_and_read_dies_no_follow (this_cu,
4977                                      get_abbrev_section_for_cu (this_cu),
4978                                      NULL,
4979                                      die_reader_func, data);
4980 }
4981 \f
4982 /* Type Unit Groups.
4983
4984    Type Unit Groups are a way to collapse the set of all TUs (type units) into
4985    a more manageable set.  The grouping is done by DW_AT_stmt_list entry
4986    so that all types coming from the same compilation (.o file) are grouped
4987    together.  A future step could be to put the types in the same symtab as
4988    the CU the types ultimately came from.  */
4989
4990 static hashval_t
4991 hash_type_unit_group (const void *item)
4992 {
4993   const struct type_unit_group *tu_group = item;
4994
4995   return hash_stmt_list_entry (&tu_group->hash);
4996 }
4997
4998 static int
4999 eq_type_unit_group (const void *item_lhs, const void *item_rhs)
5000 {
5001   const struct type_unit_group *lhs = item_lhs;
5002   const struct type_unit_group *rhs = item_rhs;
5003
5004   return eq_stmt_list_entry (&lhs->hash, &rhs->hash);
5005 }
5006
5007 /* Allocate a hash table for type unit groups.  */
5008
5009 static htab_t
5010 allocate_type_unit_groups_table (void)
5011 {
5012   return htab_create_alloc_ex (3,
5013                                hash_type_unit_group,
5014                                eq_type_unit_group,
5015                                NULL,
5016                                &dwarf2_per_objfile->objfile->objfile_obstack,
5017                                hashtab_obstack_allocate,
5018                                dummy_obstack_deallocate);
5019 }
5020
5021 /* Type units that don't have DW_AT_stmt_list are grouped into their own
5022    partial symtabs.  We combine several TUs per psymtab to not let the size
5023    of any one psymtab grow too big.  */
5024 #define NO_STMT_LIST_TYPE_UNIT_PSYMTAB (1 << 31)
5025 #define NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE 10
5026
5027 /* Helper routine for get_type_unit_group.
5028    Create the type_unit_group object used to hold one or more TUs.  */
5029
5030 static struct type_unit_group *
5031 create_type_unit_group (struct dwarf2_cu *cu, sect_offset line_offset_struct)
5032 {
5033   struct objfile *objfile = dwarf2_per_objfile->objfile;
5034   struct dwarf2_per_cu_data *per_cu;
5035   struct type_unit_group *tu_group;
5036
5037   tu_group = OBSTACK_ZALLOC (&objfile->objfile_obstack,
5038                              struct type_unit_group);
5039   per_cu = &tu_group->per_cu;
5040   per_cu->objfile = objfile;
5041
5042   if (dwarf2_per_objfile->using_index)
5043     {
5044       per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
5045                                         struct dwarf2_per_cu_quick_data);
5046     }
5047   else
5048     {
5049       unsigned int line_offset = line_offset_struct.sect_off;
5050       struct partial_symtab *pst;
5051       char *name;
5052
5053       /* Give the symtab a useful name for debug purposes.  */
5054       if ((line_offset & NO_STMT_LIST_TYPE_UNIT_PSYMTAB) != 0)
5055         name = xstrprintf ("<type_units_%d>",
5056                            (line_offset & ~NO_STMT_LIST_TYPE_UNIT_PSYMTAB));
5057       else
5058         name = xstrprintf ("<type_units_at_0x%x>", line_offset);
5059
5060       pst = create_partial_symtab (per_cu, name);
5061       pst->anonymous = 1;
5062
5063       xfree (name);
5064     }
5065
5066   tu_group->hash.dwo_unit = cu->dwo_unit;
5067   tu_group->hash.line_offset = line_offset_struct;
5068
5069   return tu_group;
5070 }
5071
5072 /* Look up the type_unit_group for type unit CU, and create it if necessary.
5073    STMT_LIST is a DW_AT_stmt_list attribute.  */
5074
5075 static struct type_unit_group *
5076 get_type_unit_group (struct dwarf2_cu *cu, struct attribute *stmt_list)
5077 {
5078   struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
5079   struct type_unit_group *tu_group;
5080   void **slot;
5081   unsigned int line_offset;
5082   struct type_unit_group type_unit_group_for_lookup;
5083
5084   if (dwarf2_per_objfile->type_unit_groups == NULL)
5085     {
5086       dwarf2_per_objfile->type_unit_groups =
5087         allocate_type_unit_groups_table ();
5088     }
5089
5090   /* Do we need to create a new group, or can we use an existing one?  */
5091
5092   if (stmt_list)
5093     {
5094       line_offset = DW_UNSND (stmt_list);
5095       ++tu_stats->nr_symtab_sharers;
5096     }
5097   else
5098     {
5099       /* Ugh, no stmt_list.  Rare, but we have to handle it.
5100          We can do various things here like create one group per TU or
5101          spread them over multiple groups to split up the expansion work.
5102          To avoid worst case scenarios (too many groups or too large groups)
5103          we, umm, group them in bunches.  */
5104       line_offset = (NO_STMT_LIST_TYPE_UNIT_PSYMTAB
5105                      | (tu_stats->nr_stmt_less_type_units
5106                         / NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE));
5107       ++tu_stats->nr_stmt_less_type_units;
5108     }
5109
5110   type_unit_group_for_lookup.hash.dwo_unit = cu->dwo_unit;
5111   type_unit_group_for_lookup.hash.line_offset.sect_off = line_offset;
5112   slot = htab_find_slot (dwarf2_per_objfile->type_unit_groups,
5113                          &type_unit_group_for_lookup, INSERT);
5114   if (*slot != NULL)
5115     {
5116       tu_group = *slot;
5117       gdb_assert (tu_group != NULL);
5118     }
5119   else
5120     {
5121       sect_offset line_offset_struct;
5122
5123       line_offset_struct.sect_off = line_offset;
5124       tu_group = create_type_unit_group (cu, line_offset_struct);
5125       *slot = tu_group;
5126       ++tu_stats->nr_symtabs;
5127     }
5128
5129   return tu_group;
5130 }
5131
5132 /* Struct used to sort TUs by their abbreviation table offset.  */
5133
5134 struct tu_abbrev_offset
5135 {
5136   struct signatured_type *sig_type;
5137   sect_offset abbrev_offset;
5138 };
5139
5140 /* Helper routine for build_type_unit_groups, passed to qsort.  */
5141
5142 static int
5143 sort_tu_by_abbrev_offset (const void *ap, const void *bp)
5144 {
5145   const struct tu_abbrev_offset * const *a = ap;
5146   const struct tu_abbrev_offset * const *b = bp;
5147   unsigned int aoff = (*a)->abbrev_offset.sect_off;
5148   unsigned int boff = (*b)->abbrev_offset.sect_off;
5149
5150   return (aoff > boff) - (aoff < boff);
5151 }
5152
5153 /* A helper function to add a type_unit_group to a table.  */
5154
5155 static int
5156 add_type_unit_group_to_table (void **slot, void *datum)
5157 {
5158   struct type_unit_group *tu_group = *slot;
5159   struct type_unit_group ***datap = datum;
5160
5161   **datap = tu_group;
5162   ++*datap;
5163
5164   return 1;
5165 }
5166
5167 /* Efficiently read all the type units, calling init_cutu_and_read_dies on
5168    each one passing FUNC,DATA.
5169
5170    The efficiency is because we sort TUs by the abbrev table they use and
5171    only read each abbrev table once.  In one program there are 200K TUs
5172    sharing 8K abbrev tables.
5173
5174    The main purpose of this function is to support building the
5175    dwarf2_per_objfile->type_unit_groups table.
5176    TUs typically share the DW_AT_stmt_list of the CU they came from, so we
5177    can collapse the search space by grouping them by stmt_list.
5178    The savings can be significant, in the same program from above the 200K TUs
5179    share 8K stmt_list tables.
5180
5181    FUNC is expected to call get_type_unit_group, which will create the
5182    struct type_unit_group if necessary and add it to
5183    dwarf2_per_objfile->type_unit_groups.  */
5184
5185 static void
5186 build_type_unit_groups (die_reader_func_ftype *func, void *data)
5187 {
5188   struct objfile *objfile = dwarf2_per_objfile->objfile;
5189   struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
5190   struct cleanup *cleanups;
5191   struct abbrev_table *abbrev_table;
5192   sect_offset abbrev_offset;
5193   struct tu_abbrev_offset *sorted_by_abbrev;
5194   struct type_unit_group **iter;
5195   int i;
5196
5197   /* It's up to the caller to not call us multiple times.  */
5198   gdb_assert (dwarf2_per_objfile->type_unit_groups == NULL);
5199
5200   if (dwarf2_per_objfile->n_type_units == 0)
5201     return;
5202
5203   /* TUs typically share abbrev tables, and there can be way more TUs than
5204      abbrev tables.  Sort by abbrev table to reduce the number of times we
5205      read each abbrev table in.
5206      Alternatives are to punt or to maintain a cache of abbrev tables.
5207      This is simpler and efficient enough for now.
5208
5209      Later we group TUs by their DW_AT_stmt_list value (as this defines the
5210      symtab to use).  Typically TUs with the same abbrev offset have the same
5211      stmt_list value too so in practice this should work well.
5212
5213      The basic algorithm here is:
5214
5215       sort TUs by abbrev table
5216       for each TU with same abbrev table:
5217         read abbrev table if first user
5218         read TU top level DIE
5219           [IWBN if DWO skeletons had DW_AT_stmt_list]
5220         call FUNC  */
5221
5222   if (dwarf2_read_debug)
5223     fprintf_unfiltered (gdb_stdlog, "Building type unit groups ...\n");
5224
5225   /* Sort in a separate table to maintain the order of all_type_units
5226      for .gdb_index: TU indices directly index all_type_units.  */
5227   sorted_by_abbrev = XNEWVEC (struct tu_abbrev_offset,
5228                               dwarf2_per_objfile->n_type_units);
5229   for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
5230     {
5231       struct signatured_type *sig_type = dwarf2_per_objfile->all_type_units[i];
5232
5233       sorted_by_abbrev[i].sig_type = sig_type;
5234       sorted_by_abbrev[i].abbrev_offset =
5235         read_abbrev_offset (sig_type->per_cu.section,
5236                             sig_type->per_cu.offset);
5237     }
5238   cleanups = make_cleanup (xfree, sorted_by_abbrev);
5239   qsort (sorted_by_abbrev, dwarf2_per_objfile->n_type_units,
5240          sizeof (struct tu_abbrev_offset), sort_tu_by_abbrev_offset);
5241
5242   /* Note: In the .gdb_index case, get_type_unit_group may have already been
5243      called any number of times, so we don't reset tu_stats here.  */
5244
5245   abbrev_offset.sect_off = ~(unsigned) 0;
5246   abbrev_table = NULL;
5247   make_cleanup (abbrev_table_free_cleanup, &abbrev_table);
5248
5249   for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
5250     {
5251       const struct tu_abbrev_offset *tu = &sorted_by_abbrev[i];
5252
5253       /* Switch to the next abbrev table if necessary.  */
5254       if (abbrev_table == NULL
5255           || tu->abbrev_offset.sect_off != abbrev_offset.sect_off)
5256         {
5257           if (abbrev_table != NULL)
5258             {
5259               abbrev_table_free (abbrev_table);
5260               /* Reset to NULL in case abbrev_table_read_table throws
5261                  an error: abbrev_table_free_cleanup will get called.  */
5262               abbrev_table = NULL;
5263             }
5264           abbrev_offset = tu->abbrev_offset;
5265           abbrev_table =
5266             abbrev_table_read_table (&dwarf2_per_objfile->abbrev,
5267                                      abbrev_offset);
5268           ++tu_stats->nr_uniq_abbrev_tables;
5269         }
5270
5271       init_cutu_and_read_dies (&tu->sig_type->per_cu, abbrev_table, 0, 0,
5272                                func, data);
5273     }
5274
5275   /* Create a vector of pointers to primary type units to make it easy to
5276      iterate over them and CUs.  See dw2_get_primary_cu.  */
5277   dwarf2_per_objfile->n_type_unit_groups =
5278     htab_elements (dwarf2_per_objfile->type_unit_groups);
5279   dwarf2_per_objfile->all_type_unit_groups =
5280     obstack_alloc (&objfile->objfile_obstack,
5281                    dwarf2_per_objfile->n_type_unit_groups
5282                    * sizeof (struct type_unit_group *));
5283   iter = &dwarf2_per_objfile->all_type_unit_groups[0];
5284   htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
5285                           add_type_unit_group_to_table, &iter);
5286   gdb_assert (iter - &dwarf2_per_objfile->all_type_unit_groups[0]
5287               == dwarf2_per_objfile->n_type_unit_groups);
5288
5289   do_cleanups (cleanups);
5290
5291   if (dwarf2_read_debug)
5292     {
5293       fprintf_unfiltered (gdb_stdlog, "Done building type unit groups:\n");
5294       fprintf_unfiltered (gdb_stdlog, "  %d TUs\n",
5295                           dwarf2_per_objfile->n_type_units);
5296       fprintf_unfiltered (gdb_stdlog, "  %d uniq abbrev tables\n",
5297                           tu_stats->nr_uniq_abbrev_tables);
5298       fprintf_unfiltered (gdb_stdlog, "  %d symtabs from stmt_list entries\n",
5299                           tu_stats->nr_symtabs);
5300       fprintf_unfiltered (gdb_stdlog, "  %d symtab sharers\n",
5301                           tu_stats->nr_symtab_sharers);
5302       fprintf_unfiltered (gdb_stdlog, "  %d type units without a stmt_list\n",
5303                           tu_stats->nr_stmt_less_type_units);
5304     }
5305 }
5306 \f
5307 /* Partial symbol tables.  */
5308
5309 /* Create a psymtab named NAME and assign it to PER_CU.
5310
5311    The caller must fill in the following details:
5312    dirname, textlow, texthigh.  */
5313
5314 static struct partial_symtab *
5315 create_partial_symtab (struct dwarf2_per_cu_data *per_cu, const char *name)
5316 {
5317   struct objfile *objfile = per_cu->objfile;
5318   struct partial_symtab *pst;
5319
5320   pst = start_psymtab_common (objfile, objfile->section_offsets,
5321                               name, 0,
5322                               objfile->global_psymbols.next,
5323                               objfile->static_psymbols.next);
5324
5325   pst->psymtabs_addrmap_supported = 1;
5326
5327   /* This is the glue that links PST into GDB's symbol API.  */
5328   pst->read_symtab_private = per_cu;
5329   pst->read_symtab = dwarf2_read_symtab;
5330   per_cu->v.psymtab = pst;
5331
5332   return pst;
5333 }
5334
5335 /* die_reader_func for process_psymtab_comp_unit.  */
5336
5337 static void
5338 process_psymtab_comp_unit_reader (const struct die_reader_specs *reader,
5339                                   const gdb_byte *info_ptr,
5340                                   struct die_info *comp_unit_die,
5341                                   int has_children,
5342                                   void *data)
5343 {
5344   struct dwarf2_cu *cu = reader->cu;
5345   struct objfile *objfile = cu->objfile;
5346   struct dwarf2_per_cu_data *per_cu = cu->per_cu;
5347   struct attribute *attr;
5348   CORE_ADDR baseaddr;
5349   CORE_ADDR best_lowpc = 0, best_highpc = 0;
5350   struct partial_symtab *pst;
5351   int has_pc_info;
5352   const char *filename;
5353   int *want_partial_unit_ptr = data;
5354
5355   if (comp_unit_die->tag == DW_TAG_partial_unit
5356       && (want_partial_unit_ptr == NULL
5357           || !*want_partial_unit_ptr))
5358     return;
5359
5360   gdb_assert (! per_cu->is_debug_types);
5361
5362   prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
5363
5364   cu->list_in_scope = &file_symbols;
5365
5366   /* Allocate a new partial symbol table structure.  */
5367   attr = dwarf2_attr (comp_unit_die, DW_AT_name, cu);
5368   if (attr == NULL || !DW_STRING (attr))
5369     filename = "";
5370   else
5371     filename = DW_STRING (attr);
5372
5373   pst = create_partial_symtab (per_cu, filename);
5374
5375   /* This must be done before calling dwarf2_build_include_psymtabs.  */
5376   attr = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, cu);
5377   if (attr != NULL)
5378     pst->dirname = DW_STRING (attr);
5379
5380   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5381
5382   dwarf2_find_base_address (comp_unit_die, cu);
5383
5384   /* Possibly set the default values of LOWPC and HIGHPC from
5385      `DW_AT_ranges'.  */
5386   has_pc_info = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
5387                                       &best_highpc, cu, pst);
5388   if (has_pc_info == 1 && best_lowpc < best_highpc)
5389     /* Store the contiguous range if it is not empty; it can be empty for
5390        CUs with no code.  */
5391     addrmap_set_empty (objfile->psymtabs_addrmap,
5392                        best_lowpc + baseaddr,
5393                        best_highpc + baseaddr - 1, pst);
5394
5395   /* Check if comp unit has_children.
5396      If so, read the rest of the partial symbols from this comp unit.
5397      If not, there's no more debug_info for this comp unit.  */
5398   if (has_children)
5399     {
5400       struct partial_die_info *first_die;
5401       CORE_ADDR lowpc, highpc;
5402
5403       lowpc = ((CORE_ADDR) -1);
5404       highpc = ((CORE_ADDR) 0);
5405
5406       first_die = load_partial_dies (reader, info_ptr, 1);
5407
5408       scan_partial_symbols (first_die, &lowpc, &highpc,
5409                             ! has_pc_info, cu);
5410
5411       /* If we didn't find a lowpc, set it to highpc to avoid
5412          complaints from `maint check'.  */
5413       if (lowpc == ((CORE_ADDR) -1))
5414         lowpc = highpc;
5415
5416       /* If the compilation unit didn't have an explicit address range,
5417          then use the information extracted from its child dies.  */
5418       if (! has_pc_info)
5419         {
5420           best_lowpc = lowpc;
5421           best_highpc = highpc;
5422         }
5423     }
5424   pst->textlow = best_lowpc + baseaddr;
5425   pst->texthigh = best_highpc + baseaddr;
5426
5427   pst->n_global_syms = objfile->global_psymbols.next -
5428     (objfile->global_psymbols.list + pst->globals_offset);
5429   pst->n_static_syms = objfile->static_psymbols.next -
5430     (objfile->static_psymbols.list + pst->statics_offset);
5431   sort_pst_symbols (objfile, pst);
5432
5433   if (!VEC_empty (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs))
5434     {
5435       int i;
5436       int len = VEC_length (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
5437       struct dwarf2_per_cu_data *iter;
5438
5439       /* Fill in 'dependencies' here; we fill in 'users' in a
5440          post-pass.  */
5441       pst->number_of_dependencies = len;
5442       pst->dependencies = obstack_alloc (&objfile->objfile_obstack,
5443                                          len * sizeof (struct symtab *));
5444       for (i = 0;
5445            VEC_iterate (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
5446                         i, iter);
5447            ++i)
5448         pst->dependencies[i] = iter->v.psymtab;
5449
5450       VEC_free (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
5451     }
5452
5453   /* Get the list of files included in the current compilation unit,
5454      and build a psymtab for each of them.  */
5455   dwarf2_build_include_psymtabs (cu, comp_unit_die, pst);
5456
5457   if (dwarf2_read_debug)
5458     {
5459       struct gdbarch *gdbarch = get_objfile_arch (objfile);
5460
5461       fprintf_unfiltered (gdb_stdlog,
5462                           "Psymtab for %s unit @0x%x: %s - %s"
5463                           ", %d global, %d static syms\n",
5464                           per_cu->is_debug_types ? "type" : "comp",
5465                           per_cu->offset.sect_off,
5466                           paddress (gdbarch, pst->textlow),
5467                           paddress (gdbarch, pst->texthigh),
5468                           pst->n_global_syms, pst->n_static_syms);
5469     }
5470 }
5471
5472 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
5473    Process compilation unit THIS_CU for a psymtab.  */
5474
5475 static void
5476 process_psymtab_comp_unit (struct dwarf2_per_cu_data *this_cu,
5477                            int want_partial_unit)
5478 {
5479   /* If this compilation unit was already read in, free the
5480      cached copy in order to read it in again.  This is
5481      necessary because we skipped some symbols when we first
5482      read in the compilation unit (see load_partial_dies).
5483      This problem could be avoided, but the benefit is unclear.  */
5484   if (this_cu->cu != NULL)
5485     free_one_cached_comp_unit (this_cu);
5486
5487   gdb_assert (! this_cu->is_debug_types);
5488   init_cutu_and_read_dies (this_cu, NULL, 0, 0,
5489                            process_psymtab_comp_unit_reader,
5490                            &want_partial_unit);
5491
5492   /* Age out any secondary CUs.  */
5493   age_cached_comp_units ();
5494 }
5495
5496 /* Reader function for build_type_psymtabs.  */
5497
5498 static void
5499 build_type_psymtabs_reader (const struct die_reader_specs *reader,
5500                             const gdb_byte *info_ptr,
5501                             struct die_info *type_unit_die,
5502                             int has_children,
5503                             void *data)
5504 {
5505   struct objfile *objfile = dwarf2_per_objfile->objfile;
5506   struct dwarf2_cu *cu = reader->cu;
5507   struct dwarf2_per_cu_data *per_cu = cu->per_cu;
5508   struct signatured_type *sig_type;
5509   struct type_unit_group *tu_group;
5510   struct attribute *attr;
5511   struct partial_die_info *first_die;
5512   CORE_ADDR lowpc, highpc;
5513   struct partial_symtab *pst;
5514
5515   gdb_assert (data == NULL);
5516   gdb_assert (per_cu->is_debug_types);
5517   sig_type = (struct signatured_type *) per_cu;
5518
5519   if (! has_children)
5520     return;
5521
5522   attr = dwarf2_attr_no_follow (type_unit_die, DW_AT_stmt_list);
5523   tu_group = get_type_unit_group (cu, attr);
5524
5525   VEC_safe_push (sig_type_ptr, tu_group->tus, sig_type);
5526
5527   prepare_one_comp_unit (cu, type_unit_die, language_minimal);
5528   cu->list_in_scope = &file_symbols;
5529   pst = create_partial_symtab (per_cu, "");
5530   pst->anonymous = 1;
5531
5532   first_die = load_partial_dies (reader, info_ptr, 1);
5533
5534   lowpc = (CORE_ADDR) -1;
5535   highpc = (CORE_ADDR) 0;
5536   scan_partial_symbols (first_die, &lowpc, &highpc, 0, cu);
5537
5538   pst->n_global_syms = objfile->global_psymbols.next -
5539     (objfile->global_psymbols.list + pst->globals_offset);
5540   pst->n_static_syms = objfile->static_psymbols.next -
5541     (objfile->static_psymbols.list + pst->statics_offset);
5542   sort_pst_symbols (objfile, pst);
5543 }
5544
5545 /* Traversal function for build_type_psymtabs.  */
5546
5547 static int
5548 build_type_psymtab_dependencies (void **slot, void *info)
5549 {
5550   struct objfile *objfile = dwarf2_per_objfile->objfile;
5551   struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
5552   struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
5553   struct partial_symtab *pst = per_cu->v.psymtab;
5554   int len = VEC_length (sig_type_ptr, tu_group->tus);
5555   struct signatured_type *iter;
5556   int i;
5557
5558   gdb_assert (len > 0);
5559   gdb_assert (IS_TYPE_UNIT_GROUP (per_cu));
5560
5561   pst->number_of_dependencies = len;
5562   pst->dependencies = obstack_alloc (&objfile->objfile_obstack,
5563                                      len * sizeof (struct psymtab *));
5564   for (i = 0;
5565        VEC_iterate (sig_type_ptr, tu_group->tus, i, iter);
5566        ++i)
5567     {
5568       gdb_assert (iter->per_cu.is_debug_types);
5569       pst->dependencies[i] = iter->per_cu.v.psymtab;
5570       iter->type_unit_group = tu_group;
5571     }
5572
5573   VEC_free (sig_type_ptr, tu_group->tus);
5574
5575   return 1;
5576 }
5577
5578 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
5579    Build partial symbol tables for the .debug_types comp-units.  */
5580
5581 static void
5582 build_type_psymtabs (struct objfile *objfile)
5583 {
5584   if (! create_all_type_units (objfile))
5585     return;
5586
5587   build_type_unit_groups (build_type_psymtabs_reader, NULL);
5588
5589   /* Now that all TUs have been processed we can fill in the dependencies.  */
5590   htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
5591                           build_type_psymtab_dependencies, NULL);
5592 }
5593
5594 /* A cleanup function that clears objfile's psymtabs_addrmap field.  */
5595
5596 static void
5597 psymtabs_addrmap_cleanup (void *o)
5598 {
5599   struct objfile *objfile = o;
5600
5601   objfile->psymtabs_addrmap = NULL;
5602 }
5603
5604 /* Compute the 'user' field for each psymtab in OBJFILE.  */
5605
5606 static void
5607 set_partial_user (struct objfile *objfile)
5608 {
5609   int i;
5610
5611   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
5612     {
5613       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
5614       struct partial_symtab *pst = per_cu->v.psymtab;
5615       int j;
5616
5617       if (pst == NULL)
5618         continue;
5619
5620       for (j = 0; j < pst->number_of_dependencies; ++j)
5621         {
5622           /* Set the 'user' field only if it is not already set.  */
5623           if (pst->dependencies[j]->user == NULL)
5624             pst->dependencies[j]->user = pst;
5625         }
5626     }
5627 }
5628
5629 /* Build the partial symbol table by doing a quick pass through the
5630    .debug_info and .debug_abbrev sections.  */
5631
5632 static void
5633 dwarf2_build_psymtabs_hard (struct objfile *objfile)
5634 {
5635   struct cleanup *back_to, *addrmap_cleanup;
5636   struct obstack temp_obstack;
5637   int i;
5638
5639   if (dwarf2_read_debug)
5640     {
5641       fprintf_unfiltered (gdb_stdlog, "Building psymtabs of objfile %s ...\n",
5642                           objfile->name);
5643     }
5644
5645   dwarf2_per_objfile->reading_partial_symbols = 1;
5646
5647   dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
5648
5649   /* Any cached compilation units will be linked by the per-objfile
5650      read_in_chain.  Make sure to free them when we're done.  */
5651   back_to = make_cleanup (free_cached_comp_units, NULL);
5652
5653   build_type_psymtabs (objfile);
5654
5655   create_all_comp_units (objfile);
5656
5657   /* Create a temporary address map on a temporary obstack.  We later
5658      copy this to the final obstack.  */
5659   obstack_init (&temp_obstack);
5660   make_cleanup_obstack_free (&temp_obstack);
5661   objfile->psymtabs_addrmap = addrmap_create_mutable (&temp_obstack);
5662   addrmap_cleanup = make_cleanup (psymtabs_addrmap_cleanup, objfile);
5663
5664   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
5665     {
5666       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
5667
5668       process_psymtab_comp_unit (per_cu, 0);
5669     }
5670
5671   set_partial_user (objfile);
5672
5673   objfile->psymtabs_addrmap = addrmap_create_fixed (objfile->psymtabs_addrmap,
5674                                                     &objfile->objfile_obstack);
5675   discard_cleanups (addrmap_cleanup);
5676
5677   do_cleanups (back_to);
5678
5679   if (dwarf2_read_debug)
5680     fprintf_unfiltered (gdb_stdlog, "Done building psymtabs of %s\n",
5681                         objfile->name);
5682 }
5683
5684 /* die_reader_func for load_partial_comp_unit.  */
5685
5686 static void
5687 load_partial_comp_unit_reader (const struct die_reader_specs *reader,
5688                                const gdb_byte *info_ptr,
5689                                struct die_info *comp_unit_die,
5690                                int has_children,
5691                                void *data)
5692 {
5693   struct dwarf2_cu *cu = reader->cu;
5694
5695   prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
5696
5697   /* Check if comp unit has_children.
5698      If so, read the rest of the partial symbols from this comp unit.
5699      If not, there's no more debug_info for this comp unit.  */
5700   if (has_children)
5701     load_partial_dies (reader, info_ptr, 0);
5702 }
5703
5704 /* Load the partial DIEs for a secondary CU into memory.
5705    This is also used when rereading a primary CU with load_all_dies.  */
5706
5707 static void
5708 load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu)
5709 {
5710   init_cutu_and_read_dies (this_cu, NULL, 1, 1,
5711                            load_partial_comp_unit_reader, NULL);
5712 }
5713
5714 static void
5715 read_comp_units_from_section (struct objfile *objfile,
5716                               struct dwarf2_section_info *section,
5717                               unsigned int is_dwz,
5718                               int *n_allocated,
5719                               int *n_comp_units,
5720                               struct dwarf2_per_cu_data ***all_comp_units)
5721 {
5722   const gdb_byte *info_ptr;
5723   bfd *abfd = section->asection->owner;
5724
5725   if (dwarf2_read_debug)
5726     fprintf_unfiltered (gdb_stdlog, "Reading %s for %s\n",
5727                         section->asection->name, bfd_get_filename (abfd));
5728
5729   dwarf2_read_section (objfile, section);
5730
5731   info_ptr = section->buffer;
5732
5733   while (info_ptr < section->buffer + section->size)
5734     {
5735       unsigned int length, initial_length_size;
5736       struct dwarf2_per_cu_data *this_cu;
5737       sect_offset offset;
5738
5739       offset.sect_off = info_ptr - section->buffer;
5740
5741       /* Read just enough information to find out where the next
5742          compilation unit is.  */
5743       length = read_initial_length (abfd, info_ptr, &initial_length_size);
5744
5745       /* Save the compilation unit for later lookup.  */
5746       this_cu = obstack_alloc (&objfile->objfile_obstack,
5747                                sizeof (struct dwarf2_per_cu_data));
5748       memset (this_cu, 0, sizeof (*this_cu));
5749       this_cu->offset = offset;
5750       this_cu->length = length + initial_length_size;
5751       this_cu->is_dwz = is_dwz;
5752       this_cu->objfile = objfile;
5753       this_cu->section = section;
5754
5755       if (*n_comp_units == *n_allocated)
5756         {
5757           *n_allocated *= 2;
5758           *all_comp_units = xrealloc (*all_comp_units,
5759                                       *n_allocated
5760                                       * sizeof (struct dwarf2_per_cu_data *));
5761         }
5762       (*all_comp_units)[*n_comp_units] = this_cu;
5763       ++*n_comp_units;
5764
5765       info_ptr = info_ptr + this_cu->length;
5766     }
5767 }
5768
5769 /* Create a list of all compilation units in OBJFILE.
5770    This is only done for -readnow and building partial symtabs.  */
5771
5772 static void
5773 create_all_comp_units (struct objfile *objfile)
5774 {
5775   int n_allocated;
5776   int n_comp_units;
5777   struct dwarf2_per_cu_data **all_comp_units;
5778
5779   n_comp_units = 0;
5780   n_allocated = 10;
5781   all_comp_units = xmalloc (n_allocated
5782                             * sizeof (struct dwarf2_per_cu_data *));
5783
5784   read_comp_units_from_section (objfile, &dwarf2_per_objfile->info, 0,
5785                                 &n_allocated, &n_comp_units, &all_comp_units);
5786
5787   if (bfd_get_section_by_name (objfile->obfd, ".gnu_debugaltlink") != NULL)
5788     {
5789       struct dwz_file *dwz = dwarf2_get_dwz_file ();
5790
5791       read_comp_units_from_section (objfile, &dwz->info, 1,
5792                                     &n_allocated, &n_comp_units,
5793                                     &all_comp_units);
5794     }
5795
5796   dwarf2_per_objfile->all_comp_units
5797     = obstack_alloc (&objfile->objfile_obstack,
5798                      n_comp_units * sizeof (struct dwarf2_per_cu_data *));
5799   memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
5800           n_comp_units * sizeof (struct dwarf2_per_cu_data *));
5801   xfree (all_comp_units);
5802   dwarf2_per_objfile->n_comp_units = n_comp_units;
5803 }
5804
5805 /* Process all loaded DIEs for compilation unit CU, starting at
5806    FIRST_DIE.  The caller should pass NEED_PC == 1 if the compilation
5807    unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
5808    DW_AT_ranges).  If NEED_PC is set, then this function will set
5809    *LOWPC and *HIGHPC to the lowest and highest PC values found in CU
5810    and record the covered ranges in the addrmap.  */
5811
5812 static void
5813 scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
5814                       CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
5815 {
5816   struct partial_die_info *pdi;
5817
5818   /* Now, march along the PDI's, descending into ones which have
5819      interesting children but skipping the children of the other ones,
5820      until we reach the end of the compilation unit.  */
5821
5822   pdi = first_die;
5823
5824   while (pdi != NULL)
5825     {
5826       fixup_partial_die (pdi, cu);
5827
5828       /* Anonymous namespaces or modules have no name but have interesting
5829          children, so we need to look at them.  Ditto for anonymous
5830          enums.  */
5831
5832       if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
5833           || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type
5834           || pdi->tag == DW_TAG_imported_unit)
5835         {
5836           switch (pdi->tag)
5837             {
5838             case DW_TAG_subprogram:
5839               add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
5840               break;
5841             case DW_TAG_constant:
5842             case DW_TAG_variable:
5843             case DW_TAG_typedef:
5844             case DW_TAG_union_type:
5845               if (!pdi->is_declaration)
5846                 {
5847                   add_partial_symbol (pdi, cu);
5848                 }
5849               break;
5850             case DW_TAG_class_type:
5851             case DW_TAG_interface_type:
5852             case DW_TAG_structure_type:
5853               if (!pdi->is_declaration)
5854                 {
5855                   add_partial_symbol (pdi, cu);
5856                 }
5857               break;
5858             case DW_TAG_enumeration_type:
5859               if (!pdi->is_declaration)
5860                 add_partial_enumeration (pdi, cu);
5861               break;
5862             case DW_TAG_base_type:
5863             case DW_TAG_subrange_type:
5864               /* File scope base type definitions are added to the partial
5865                  symbol table.  */
5866               add_partial_symbol (pdi, cu);
5867               break;
5868             case DW_TAG_namespace:
5869               add_partial_namespace (pdi, lowpc, highpc, need_pc, cu);
5870               break;
5871             case DW_TAG_module:
5872               add_partial_module (pdi, lowpc, highpc, need_pc, cu);
5873               break;
5874             case DW_TAG_imported_unit:
5875               {
5876                 struct dwarf2_per_cu_data *per_cu;
5877
5878                 /* For now we don't handle imported units in type units.  */
5879                 if (cu->per_cu->is_debug_types)
5880                   {
5881                     error (_("Dwarf Error: DW_TAG_imported_unit is not"
5882                              " supported in type units [in module %s]"),
5883                            cu->objfile->name);
5884                   }
5885
5886                 per_cu = dwarf2_find_containing_comp_unit (pdi->d.offset,
5887                                                            pdi->is_dwz,
5888                                                            cu->objfile);
5889
5890                 /* Go read the partial unit, if needed.  */
5891                 if (per_cu->v.psymtab == NULL)
5892                   process_psymtab_comp_unit (per_cu, 1);
5893
5894                 VEC_safe_push (dwarf2_per_cu_ptr,
5895                                cu->per_cu->imported_symtabs, per_cu);
5896               }
5897               break;
5898             default:
5899               break;
5900             }
5901         }
5902
5903       /* If the die has a sibling, skip to the sibling.  */
5904
5905       pdi = pdi->die_sibling;
5906     }
5907 }
5908
5909 /* Functions used to compute the fully scoped name of a partial DIE.
5910
5911    Normally, this is simple.  For C++, the parent DIE's fully scoped
5912    name is concatenated with "::" and the partial DIE's name.  For
5913    Java, the same thing occurs except that "." is used instead of "::".
5914    Enumerators are an exception; they use the scope of their parent
5915    enumeration type, i.e. the name of the enumeration type is not
5916    prepended to the enumerator.
5917
5918    There are two complexities.  One is DW_AT_specification; in this
5919    case "parent" means the parent of the target of the specification,
5920    instead of the direct parent of the DIE.  The other is compilers
5921    which do not emit DW_TAG_namespace; in this case we try to guess
5922    the fully qualified name of structure types from their members'
5923    linkage names.  This must be done using the DIE's children rather
5924    than the children of any DW_AT_specification target.  We only need
5925    to do this for structures at the top level, i.e. if the target of
5926    any DW_AT_specification (if any; otherwise the DIE itself) does not
5927    have a parent.  */
5928
5929 /* Compute the scope prefix associated with PDI's parent, in
5930    compilation unit CU.  The result will be allocated on CU's
5931    comp_unit_obstack, or a copy of the already allocated PDI->NAME
5932    field.  NULL is returned if no prefix is necessary.  */
5933 static const char *
5934 partial_die_parent_scope (struct partial_die_info *pdi,
5935                           struct dwarf2_cu *cu)
5936 {
5937   const char *grandparent_scope;
5938   struct partial_die_info *parent, *real_pdi;
5939
5940   /* We need to look at our parent DIE; if we have a DW_AT_specification,
5941      then this means the parent of the specification DIE.  */
5942
5943   real_pdi = pdi;
5944   while (real_pdi->has_specification)
5945     real_pdi = find_partial_die (real_pdi->spec_offset,
5946                                  real_pdi->spec_is_dwz, cu);
5947
5948   parent = real_pdi->die_parent;
5949   if (parent == NULL)
5950     return NULL;
5951
5952   if (parent->scope_set)
5953     return parent->scope;
5954
5955   fixup_partial_die (parent, cu);
5956
5957   grandparent_scope = partial_die_parent_scope (parent, cu);
5958
5959   /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
5960      DW_TAG_namespace DIEs with a name of "::" for the global namespace.
5961      Work around this problem here.  */
5962   if (cu->language == language_cplus
5963       && parent->tag == DW_TAG_namespace
5964       && strcmp (parent->name, "::") == 0
5965       && grandparent_scope == NULL)
5966     {
5967       parent->scope = NULL;
5968       parent->scope_set = 1;
5969       return NULL;
5970     }
5971
5972   if (pdi->tag == DW_TAG_enumerator)
5973     /* Enumerators should not get the name of the enumeration as a prefix.  */
5974     parent->scope = grandparent_scope;
5975   else if (parent->tag == DW_TAG_namespace
5976       || parent->tag == DW_TAG_module
5977       || parent->tag == DW_TAG_structure_type
5978       || parent->tag == DW_TAG_class_type
5979       || parent->tag == DW_TAG_interface_type
5980       || parent->tag == DW_TAG_union_type
5981       || parent->tag == DW_TAG_enumeration_type)
5982     {
5983       if (grandparent_scope == NULL)
5984         parent->scope = parent->name;
5985       else
5986         parent->scope = typename_concat (&cu->comp_unit_obstack,
5987                                          grandparent_scope,
5988                                          parent->name, 0, cu);
5989     }
5990   else
5991     {
5992       /* FIXME drow/2004-04-01: What should we be doing with
5993          function-local names?  For partial symbols, we should probably be
5994          ignoring them.  */
5995       complaint (&symfile_complaints,
5996                  _("unhandled containing DIE tag %d for DIE at %d"),
5997                  parent->tag, pdi->offset.sect_off);
5998       parent->scope = grandparent_scope;
5999     }
6000
6001   parent->scope_set = 1;
6002   return parent->scope;
6003 }
6004
6005 /* Return the fully scoped name associated with PDI, from compilation unit
6006    CU.  The result will be allocated with malloc.  */
6007
6008 static char *
6009 partial_die_full_name (struct partial_die_info *pdi,
6010                        struct dwarf2_cu *cu)
6011 {
6012   const char *parent_scope;
6013
6014   /* If this is a template instantiation, we can not work out the
6015      template arguments from partial DIEs.  So, unfortunately, we have
6016      to go through the full DIEs.  At least any work we do building
6017      types here will be reused if full symbols are loaded later.  */
6018   if (pdi->has_template_arguments)
6019     {
6020       fixup_partial_die (pdi, cu);
6021
6022       if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
6023         {
6024           struct die_info *die;
6025           struct attribute attr;
6026           struct dwarf2_cu *ref_cu = cu;
6027
6028           /* DW_FORM_ref_addr is using section offset.  */
6029           attr.name = 0;
6030           attr.form = DW_FORM_ref_addr;
6031           attr.u.unsnd = pdi->offset.sect_off;
6032           die = follow_die_ref (NULL, &attr, &ref_cu);
6033
6034           return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
6035         }
6036     }
6037
6038   parent_scope = partial_die_parent_scope (pdi, cu);
6039   if (parent_scope == NULL)
6040     return NULL;
6041   else
6042     return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
6043 }
6044
6045 static void
6046 add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
6047 {
6048   struct objfile *objfile = cu->objfile;
6049   CORE_ADDR addr = 0;
6050   const char *actual_name = NULL;
6051   CORE_ADDR baseaddr;
6052   char *built_actual_name;
6053
6054   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
6055
6056   built_actual_name = partial_die_full_name (pdi, cu);
6057   if (built_actual_name != NULL)
6058     actual_name = built_actual_name;
6059
6060   if (actual_name == NULL)
6061     actual_name = pdi->name;
6062
6063   switch (pdi->tag)
6064     {
6065     case DW_TAG_subprogram:
6066       if (pdi->is_external || cu->language == language_ada)
6067         {
6068           /* brobecker/2007-12-26: Normally, only "external" DIEs are part
6069              of the global scope.  But in Ada, we want to be able to access
6070              nested procedures globally.  So all Ada subprograms are stored
6071              in the global scope.  */
6072           /* prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
6073              mst_text, objfile); */
6074           add_psymbol_to_list (actual_name, strlen (actual_name),
6075                                built_actual_name != NULL,
6076                                VAR_DOMAIN, LOC_BLOCK,
6077                                &objfile->global_psymbols,
6078                                0, pdi->lowpc + baseaddr,
6079                                cu->language, objfile);
6080         }
6081       else
6082         {
6083           /* prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
6084              mst_file_text, objfile); */
6085           add_psymbol_to_list (actual_name, strlen (actual_name),
6086                                built_actual_name != NULL,
6087                                VAR_DOMAIN, LOC_BLOCK,
6088                                &objfile->static_psymbols,
6089                                0, pdi->lowpc + baseaddr,
6090                                cu->language, objfile);
6091         }
6092       break;
6093     case DW_TAG_constant:
6094       {
6095         struct psymbol_allocation_list *list;
6096
6097         if (pdi->is_external)
6098           list = &objfile->global_psymbols;
6099         else
6100           list = &objfile->static_psymbols;
6101         add_psymbol_to_list (actual_name, strlen (actual_name),
6102                              built_actual_name != NULL, VAR_DOMAIN, LOC_STATIC,
6103                              list, 0, 0, cu->language, objfile);
6104       }
6105       break;
6106     case DW_TAG_variable:
6107       if (pdi->d.locdesc)
6108         addr = decode_locdesc (pdi->d.locdesc, cu);
6109
6110       if (pdi->d.locdesc
6111           && addr == 0
6112           && !dwarf2_per_objfile->has_section_at_zero)
6113         {
6114           /* A global or static variable may also have been stripped
6115              out by the linker if unused, in which case its address
6116              will be nullified; do not add such variables into partial
6117              symbol table then.  */
6118         }
6119       else if (pdi->is_external)
6120         {
6121           /* Global Variable.
6122              Don't enter into the minimal symbol tables as there is
6123              a minimal symbol table entry from the ELF symbols already.
6124              Enter into partial symbol table if it has a location
6125              descriptor or a type.
6126              If the location descriptor is missing, new_symbol will create
6127              a LOC_UNRESOLVED symbol, the address of the variable will then
6128              be determined from the minimal symbol table whenever the variable
6129              is referenced.
6130              The address for the partial symbol table entry is not
6131              used by GDB, but it comes in handy for debugging partial symbol
6132              table building.  */
6133
6134           if (pdi->d.locdesc || pdi->has_type)
6135             add_psymbol_to_list (actual_name, strlen (actual_name),
6136                                  built_actual_name != NULL,
6137                                  VAR_DOMAIN, LOC_STATIC,
6138                                  &objfile->global_psymbols,
6139                                  0, addr + baseaddr,
6140                                  cu->language, objfile);
6141         }
6142       else
6143         {
6144           /* Static Variable.  Skip symbols without location descriptors.  */
6145           if (pdi->d.locdesc == NULL)
6146             {
6147               xfree (built_actual_name);
6148               return;
6149             }
6150           /* prim_record_minimal_symbol (actual_name, addr + baseaddr,
6151              mst_file_data, objfile); */
6152           add_psymbol_to_list (actual_name, strlen (actual_name),
6153                                built_actual_name != NULL,
6154                                VAR_DOMAIN, LOC_STATIC,
6155                                &objfile->static_psymbols,
6156                                0, addr + baseaddr,
6157                                cu->language, objfile);
6158         }
6159       break;
6160     case DW_TAG_typedef:
6161     case DW_TAG_base_type:
6162     case DW_TAG_subrange_type:
6163       add_psymbol_to_list (actual_name, strlen (actual_name),
6164                            built_actual_name != NULL,
6165                            VAR_DOMAIN, LOC_TYPEDEF,
6166                            &objfile->static_psymbols,
6167                            0, (CORE_ADDR) 0, cu->language, objfile);
6168       break;
6169     case DW_TAG_namespace:
6170       add_psymbol_to_list (actual_name, strlen (actual_name),
6171                            built_actual_name != NULL,
6172                            VAR_DOMAIN, LOC_TYPEDEF,
6173                            &objfile->global_psymbols,
6174                            0, (CORE_ADDR) 0, cu->language, objfile);
6175       break;
6176     case DW_TAG_class_type:
6177     case DW_TAG_interface_type:
6178     case DW_TAG_structure_type:
6179     case DW_TAG_union_type:
6180     case DW_TAG_enumeration_type:
6181       /* Skip external references.  The DWARF standard says in the section
6182          about "Structure, Union, and Class Type Entries": "An incomplete
6183          structure, union or class type is represented by a structure,
6184          union or class entry that does not have a byte size attribute
6185          and that has a DW_AT_declaration attribute."  */
6186       if (!pdi->has_byte_size && pdi->is_declaration)
6187         {
6188           xfree (built_actual_name);
6189           return;
6190         }
6191
6192       /* NOTE: carlton/2003-10-07: See comment in new_symbol about
6193          static vs. global.  */
6194       add_psymbol_to_list (actual_name, strlen (actual_name),
6195                            built_actual_name != NULL,
6196                            STRUCT_DOMAIN, LOC_TYPEDEF,
6197                            (cu->language == language_cplus
6198                             || cu->language == language_java)
6199                            ? &objfile->global_psymbols
6200                            : &objfile->static_psymbols,
6201                            0, (CORE_ADDR) 0, cu->language, objfile);
6202
6203       break;
6204     case DW_TAG_enumerator:
6205       add_psymbol_to_list (actual_name, strlen (actual_name),
6206                            built_actual_name != NULL,
6207                            VAR_DOMAIN, LOC_CONST,
6208                            (cu->language == language_cplus
6209                             || cu->language == language_java)
6210                            ? &objfile->global_psymbols
6211                            : &objfile->static_psymbols,
6212                            0, (CORE_ADDR) 0, cu->language, objfile);
6213       break;
6214     default:
6215       break;
6216     }
6217
6218   xfree (built_actual_name);
6219 }
6220
6221 /* Read a partial die corresponding to a namespace; also, add a symbol
6222    corresponding to that namespace to the symbol table.  NAMESPACE is
6223    the name of the enclosing namespace.  */
6224
6225 static void
6226 add_partial_namespace (struct partial_die_info *pdi,
6227                        CORE_ADDR *lowpc, CORE_ADDR *highpc,
6228                        int need_pc, struct dwarf2_cu *cu)
6229 {
6230   /* Add a symbol for the namespace.  */
6231
6232   add_partial_symbol (pdi, cu);
6233
6234   /* Now scan partial symbols in that namespace.  */
6235
6236   if (pdi->has_children)
6237     scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
6238 }
6239
6240 /* Read a partial die corresponding to a Fortran module.  */
6241
6242 static void
6243 add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
6244                     CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
6245 {
6246   /* Now scan partial symbols in that module.  */
6247
6248   if (pdi->has_children)
6249     scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
6250 }
6251
6252 /* Read a partial die corresponding to a subprogram and create a partial
6253    symbol for that subprogram.  When the CU language allows it, this
6254    routine also defines a partial symbol for each nested subprogram
6255    that this subprogram contains.
6256
6257    DIE my also be a lexical block, in which case we simply search
6258    recursively for suprograms defined inside that lexical block.
6259    Again, this is only performed when the CU language allows this
6260    type of definitions.  */
6261
6262 static void
6263 add_partial_subprogram (struct partial_die_info *pdi,
6264                         CORE_ADDR *lowpc, CORE_ADDR *highpc,
6265                         int need_pc, struct dwarf2_cu *cu)
6266 {
6267   if (pdi->tag == DW_TAG_subprogram)
6268     {
6269       if (pdi->has_pc_info)
6270         {
6271           if (pdi->lowpc < *lowpc)
6272             *lowpc = pdi->lowpc;
6273           if (pdi->highpc > *highpc)
6274             *highpc = pdi->highpc;
6275           if (need_pc)
6276             {
6277               CORE_ADDR baseaddr;
6278               struct objfile *objfile = cu->objfile;
6279
6280               baseaddr = ANOFFSET (objfile->section_offsets,
6281                                    SECT_OFF_TEXT (objfile));
6282               addrmap_set_empty (objfile->psymtabs_addrmap,
6283                                  pdi->lowpc + baseaddr,
6284                                  pdi->highpc - 1 + baseaddr,
6285                                  cu->per_cu->v.psymtab);
6286             }
6287         }
6288
6289       if (pdi->has_pc_info || (!pdi->is_external && pdi->may_be_inlined))
6290         {
6291           if (!pdi->is_declaration)
6292             /* Ignore subprogram DIEs that do not have a name, they are
6293                illegal.  Do not emit a complaint at this point, we will
6294                do so when we convert this psymtab into a symtab.  */
6295             if (pdi->name)
6296               add_partial_symbol (pdi, cu);
6297         }
6298     }
6299
6300   if (! pdi->has_children)
6301     return;
6302
6303   if (cu->language == language_ada)
6304     {
6305       pdi = pdi->die_child;
6306       while (pdi != NULL)
6307         {
6308           fixup_partial_die (pdi, cu);
6309           if (pdi->tag == DW_TAG_subprogram
6310               || pdi->tag == DW_TAG_lexical_block)
6311             add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
6312           pdi = pdi->die_sibling;
6313         }
6314     }
6315 }
6316
6317 /* Read a partial die corresponding to an enumeration type.  */
6318
6319 static void
6320 add_partial_enumeration (struct partial_die_info *enum_pdi,
6321                          struct dwarf2_cu *cu)
6322 {
6323   struct partial_die_info *pdi;
6324
6325   if (enum_pdi->name != NULL)
6326     add_partial_symbol (enum_pdi, cu);
6327
6328   pdi = enum_pdi->die_child;
6329   while (pdi)
6330     {
6331       if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
6332         complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
6333       else
6334         add_partial_symbol (pdi, cu);
6335       pdi = pdi->die_sibling;
6336     }
6337 }
6338
6339 /* Return the initial uleb128 in the die at INFO_PTR.  */
6340
6341 static unsigned int
6342 peek_abbrev_code (bfd *abfd, const gdb_byte *info_ptr)
6343 {
6344   unsigned int bytes_read;
6345
6346   return read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
6347 }
6348
6349 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
6350    Return the corresponding abbrev, or NULL if the number is zero (indicating
6351    an empty DIE).  In either case *BYTES_READ will be set to the length of
6352    the initial number.  */
6353
6354 static struct abbrev_info *
6355 peek_die_abbrev (const gdb_byte *info_ptr, unsigned int *bytes_read,
6356                  struct dwarf2_cu *cu)
6357 {
6358   bfd *abfd = cu->objfile->obfd;
6359   unsigned int abbrev_number;
6360   struct abbrev_info *abbrev;
6361
6362   abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
6363
6364   if (abbrev_number == 0)
6365     return NULL;
6366
6367   abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
6368   if (!abbrev)
6369     {
6370       error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"),
6371              abbrev_number, bfd_get_filename (abfd));
6372     }
6373
6374   return abbrev;
6375 }
6376
6377 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
6378    Returns a pointer to the end of a series of DIEs, terminated by an empty
6379    DIE.  Any children of the skipped DIEs will also be skipped.  */
6380
6381 static const gdb_byte *
6382 skip_children (const struct die_reader_specs *reader, const gdb_byte *info_ptr)
6383 {
6384   struct dwarf2_cu *cu = reader->cu;
6385   struct abbrev_info *abbrev;
6386   unsigned int bytes_read;
6387
6388   while (1)
6389     {
6390       abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
6391       if (abbrev == NULL)
6392         return info_ptr + bytes_read;
6393       else
6394         info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
6395     }
6396 }
6397
6398 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
6399    INFO_PTR should point just after the initial uleb128 of a DIE, and the
6400    abbrev corresponding to that skipped uleb128 should be passed in
6401    ABBREV.  Returns a pointer to this DIE's sibling, skipping any
6402    children.  */
6403
6404 static const gdb_byte *
6405 skip_one_die (const struct die_reader_specs *reader, const gdb_byte *info_ptr,
6406               struct abbrev_info *abbrev)
6407 {
6408   unsigned int bytes_read;
6409   struct attribute attr;
6410   bfd *abfd = reader->abfd;
6411   struct dwarf2_cu *cu = reader->cu;
6412   const gdb_byte *buffer = reader->buffer;
6413   const gdb_byte *buffer_end = reader->buffer_end;
6414   const gdb_byte *start_info_ptr = info_ptr;
6415   unsigned int form, i;
6416
6417   for (i = 0; i < abbrev->num_attrs; i++)
6418     {
6419       /* The only abbrev we care about is DW_AT_sibling.  */
6420       if (abbrev->attrs[i].name == DW_AT_sibling)
6421         {
6422           read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
6423           if (attr.form == DW_FORM_ref_addr)
6424             complaint (&symfile_complaints,
6425                        _("ignoring absolute DW_AT_sibling"));
6426           else
6427             return buffer + dwarf2_get_ref_die_offset (&attr).sect_off;
6428         }
6429
6430       /* If it isn't DW_AT_sibling, skip this attribute.  */
6431       form = abbrev->attrs[i].form;
6432     skip_attribute:
6433       switch (form)
6434         {
6435         case DW_FORM_ref_addr:
6436           /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
6437              and later it is offset sized.  */
6438           if (cu->header.version == 2)
6439             info_ptr += cu->header.addr_size;
6440           else
6441             info_ptr += cu->header.offset_size;
6442           break;
6443         case DW_FORM_GNU_ref_alt:
6444           info_ptr += cu->header.offset_size;
6445           break;
6446         case DW_FORM_addr:
6447           info_ptr += cu->header.addr_size;
6448           break;
6449         case DW_FORM_data1:
6450         case DW_FORM_ref1:
6451         case DW_FORM_flag:
6452           info_ptr += 1;
6453           break;
6454         case DW_FORM_flag_present:
6455           break;
6456         case DW_FORM_data2:
6457         case DW_FORM_ref2:
6458           info_ptr += 2;
6459           break;
6460         case DW_FORM_data4:
6461         case DW_FORM_ref4:
6462           info_ptr += 4;
6463           break;
6464         case DW_FORM_data8:
6465         case DW_FORM_ref8:
6466         case DW_FORM_ref_sig8:
6467           info_ptr += 8;
6468           break;
6469         case DW_FORM_string:
6470           read_direct_string (abfd, info_ptr, &bytes_read);
6471           info_ptr += bytes_read;
6472           break;
6473         case DW_FORM_sec_offset:
6474         case DW_FORM_strp:
6475         case DW_FORM_GNU_strp_alt:
6476           info_ptr += cu->header.offset_size;
6477           break;
6478         case DW_FORM_exprloc:
6479         case DW_FORM_block:
6480           info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
6481           info_ptr += bytes_read;
6482           break;
6483         case DW_FORM_block1:
6484           info_ptr += 1 + read_1_byte (abfd, info_ptr);
6485           break;
6486         case DW_FORM_block2:
6487           info_ptr += 2 + read_2_bytes (abfd, info_ptr);
6488           break;
6489         case DW_FORM_block4:
6490           info_ptr += 4 + read_4_bytes (abfd, info_ptr);
6491           break;
6492         case DW_FORM_sdata:
6493         case DW_FORM_udata:
6494         case DW_FORM_ref_udata:
6495         case DW_FORM_GNU_addr_index:
6496         case DW_FORM_GNU_str_index:
6497           info_ptr = safe_skip_leb128 (info_ptr, buffer_end);
6498           break;
6499         case DW_FORM_indirect:
6500           form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
6501           info_ptr += bytes_read;
6502           /* We need to continue parsing from here, so just go back to
6503              the top.  */
6504           goto skip_attribute;
6505
6506         default:
6507           error (_("Dwarf Error: Cannot handle %s "
6508                    "in DWARF reader [in module %s]"),
6509                  dwarf_form_name (form),
6510                  bfd_get_filename (abfd));
6511         }
6512     }
6513
6514   if (abbrev->has_children)
6515     return skip_children (reader, info_ptr);
6516   else
6517     return info_ptr;
6518 }
6519
6520 /* Locate ORIG_PDI's sibling.
6521    INFO_PTR should point to the start of the next DIE after ORIG_PDI.  */
6522
6523 static const gdb_byte *
6524 locate_pdi_sibling (const struct die_reader_specs *reader,
6525                     struct partial_die_info *orig_pdi,
6526                     const gdb_byte *info_ptr)
6527 {
6528   /* Do we know the sibling already?  */
6529
6530   if (orig_pdi->sibling)
6531     return orig_pdi->sibling;
6532
6533   /* Are there any children to deal with?  */
6534
6535   if (!orig_pdi->has_children)
6536     return info_ptr;
6537
6538   /* Skip the children the long way.  */
6539
6540   return skip_children (reader, info_ptr);
6541 }
6542
6543 /* Expand this partial symbol table into a full symbol table.  SELF is
6544    not NULL.  */
6545
6546 static void
6547 dwarf2_read_symtab (struct partial_symtab *self,
6548                     struct objfile *objfile)
6549 {
6550   if (self->readin)
6551     {
6552       warning (_("bug: psymtab for %s is already read in."),
6553                self->filename);
6554     }
6555   else
6556     {
6557       if (info_verbose)
6558         {
6559           printf_filtered (_("Reading in symbols for %s..."),
6560                            self->filename);
6561           gdb_flush (gdb_stdout);
6562         }
6563
6564       /* Restore our global data.  */
6565       dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
6566
6567       /* If this psymtab is constructed from a debug-only objfile, the
6568          has_section_at_zero flag will not necessarily be correct.  We
6569          can get the correct value for this flag by looking at the data
6570          associated with the (presumably stripped) associated objfile.  */
6571       if (objfile->separate_debug_objfile_backlink)
6572         {
6573           struct dwarf2_per_objfile *dpo_backlink
6574             = objfile_data (objfile->separate_debug_objfile_backlink,
6575                             dwarf2_objfile_data_key);
6576
6577           dwarf2_per_objfile->has_section_at_zero
6578             = dpo_backlink->has_section_at_zero;
6579         }
6580
6581       dwarf2_per_objfile->reading_partial_symbols = 0;
6582
6583       psymtab_to_symtab_1 (self);
6584
6585       /* Finish up the debug error message.  */
6586       if (info_verbose)
6587         printf_filtered (_("done.\n"));
6588     }
6589
6590   process_cu_includes ();
6591 }
6592 \f
6593 /* Reading in full CUs.  */
6594
6595 /* Add PER_CU to the queue.  */
6596
6597 static void
6598 queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
6599                  enum language pretend_language)
6600 {
6601   struct dwarf2_queue_item *item;
6602
6603   per_cu->queued = 1;
6604   item = xmalloc (sizeof (*item));
6605   item->per_cu = per_cu;
6606   item->pretend_language = pretend_language;
6607   item->next = NULL;
6608
6609   if (dwarf2_queue == NULL)
6610     dwarf2_queue = item;
6611   else
6612     dwarf2_queue_tail->next = item;
6613
6614   dwarf2_queue_tail = item;
6615 }
6616
6617 /* THIS_CU has a reference to PER_CU.  If necessary, load the new compilation
6618    unit and add it to our queue.
6619    The result is non-zero if PER_CU was queued, otherwise the result is zero
6620    meaning either PER_CU is already queued or it is already loaded.  */
6621
6622 static int
6623 maybe_queue_comp_unit (struct dwarf2_cu *this_cu,
6624                        struct dwarf2_per_cu_data *per_cu,
6625                        enum language pretend_language)
6626 {
6627   /* We may arrive here during partial symbol reading, if we need full
6628      DIEs to process an unusual case (e.g. template arguments).  Do
6629      not queue PER_CU, just tell our caller to load its DIEs.  */
6630   if (dwarf2_per_objfile->reading_partial_symbols)
6631     {
6632       if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
6633         return 1;
6634       return 0;
6635     }
6636
6637   /* Mark the dependence relation so that we don't flush PER_CU
6638      too early.  */
6639   dwarf2_add_dependence (this_cu, per_cu);
6640
6641   /* If it's already on the queue, we have nothing to do.  */
6642   if (per_cu->queued)
6643     return 0;
6644
6645   /* If the compilation unit is already loaded, just mark it as
6646      used.  */
6647   if (per_cu->cu != NULL)
6648     {
6649       per_cu->cu->last_used = 0;
6650       return 0;
6651     }
6652
6653   /* Add it to the queue.  */
6654   queue_comp_unit (per_cu, pretend_language);
6655
6656   return 1;
6657 }
6658
6659 /* Process the queue.  */
6660
6661 static void
6662 process_queue (void)
6663 {
6664   struct dwarf2_queue_item *item, *next_item;
6665
6666   if (dwarf2_read_debug)
6667     {
6668       fprintf_unfiltered (gdb_stdlog,
6669                           "Expanding one or more symtabs of objfile %s ...\n",
6670                           dwarf2_per_objfile->objfile->name);
6671     }
6672
6673   /* The queue starts out with one item, but following a DIE reference
6674      may load a new CU, adding it to the end of the queue.  */
6675   for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
6676     {
6677       if (dwarf2_per_objfile->using_index
6678           ? !item->per_cu->v.quick->symtab
6679           : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
6680         {
6681           struct dwarf2_per_cu_data *per_cu = item->per_cu;
6682
6683           if (dwarf2_read_debug)
6684             {
6685               fprintf_unfiltered (gdb_stdlog,
6686                                   "Expanding symtab of %s at offset 0x%x\n",
6687                                   per_cu->is_debug_types ? "TU" : "CU",
6688                                   per_cu->offset.sect_off);
6689             }
6690
6691           if (per_cu->is_debug_types)
6692             process_full_type_unit (per_cu, item->pretend_language);
6693           else
6694             process_full_comp_unit (per_cu, item->pretend_language);
6695
6696           if (dwarf2_read_debug)
6697             {
6698               fprintf_unfiltered (gdb_stdlog,
6699                                   "Done expanding %s at offset 0x%x\n",
6700                                   per_cu->is_debug_types ? "TU" : "CU",
6701                                   per_cu->offset.sect_off);
6702             }
6703         }
6704
6705       item->per_cu->queued = 0;
6706       next_item = item->next;
6707       xfree (item);
6708     }
6709
6710   dwarf2_queue_tail = NULL;
6711
6712   if (dwarf2_read_debug)
6713     {
6714       fprintf_unfiltered (gdb_stdlog, "Done expanding symtabs of %s.\n",
6715                           dwarf2_per_objfile->objfile->name);
6716     }
6717 }
6718
6719 /* Free all allocated queue entries.  This function only releases anything if
6720    an error was thrown; if the queue was processed then it would have been
6721    freed as we went along.  */
6722
6723 static void
6724 dwarf2_release_queue (void *dummy)
6725 {
6726   struct dwarf2_queue_item *item, *last;
6727
6728   item = dwarf2_queue;
6729   while (item)
6730     {
6731       /* Anything still marked queued is likely to be in an
6732          inconsistent state, so discard it.  */
6733       if (item->per_cu->queued)
6734         {
6735           if (item->per_cu->cu != NULL)
6736             free_one_cached_comp_unit (item->per_cu);
6737           item->per_cu->queued = 0;
6738         }
6739
6740       last = item;
6741       item = item->next;
6742       xfree (last);
6743     }
6744
6745   dwarf2_queue = dwarf2_queue_tail = NULL;
6746 }
6747
6748 /* Read in full symbols for PST, and anything it depends on.  */
6749
6750 static void
6751 psymtab_to_symtab_1 (struct partial_symtab *pst)
6752 {
6753   struct dwarf2_per_cu_data *per_cu;
6754   int i;
6755
6756   if (pst->readin)
6757     return;
6758
6759   for (i = 0; i < pst->number_of_dependencies; i++)
6760     if (!pst->dependencies[i]->readin
6761         && pst->dependencies[i]->user == NULL)
6762       {
6763         /* Inform about additional files that need to be read in.  */
6764         if (info_verbose)
6765           {
6766             /* FIXME: i18n: Need to make this a single string.  */
6767             fputs_filtered (" ", gdb_stdout);
6768             wrap_here ("");
6769             fputs_filtered ("and ", gdb_stdout);
6770             wrap_here ("");
6771             printf_filtered ("%s...", pst->dependencies[i]->filename);
6772             wrap_here ("");     /* Flush output.  */
6773             gdb_flush (gdb_stdout);
6774           }
6775         psymtab_to_symtab_1 (pst->dependencies[i]);
6776       }
6777
6778   per_cu = pst->read_symtab_private;
6779
6780   if (per_cu == NULL)
6781     {
6782       /* It's an include file, no symbols to read for it.
6783          Everything is in the parent symtab.  */
6784       pst->readin = 1;
6785       return;
6786     }
6787
6788   dw2_do_instantiate_symtab (per_cu);
6789 }
6790
6791 /* Trivial hash function for die_info: the hash value of a DIE
6792    is its offset in .debug_info for this objfile.  */
6793
6794 static hashval_t
6795 die_hash (const void *item)
6796 {
6797   const struct die_info *die = item;
6798
6799   return die->offset.sect_off;
6800 }
6801
6802 /* Trivial comparison function for die_info structures: two DIEs
6803    are equal if they have the same offset.  */
6804
6805 static int
6806 die_eq (const void *item_lhs, const void *item_rhs)
6807 {
6808   const struct die_info *die_lhs = item_lhs;
6809   const struct die_info *die_rhs = item_rhs;
6810
6811   return die_lhs->offset.sect_off == die_rhs->offset.sect_off;
6812 }
6813
6814 /* die_reader_func for load_full_comp_unit.
6815    This is identical to read_signatured_type_reader,
6816    but is kept separate for now.  */
6817
6818 static void
6819 load_full_comp_unit_reader (const struct die_reader_specs *reader,
6820                             const gdb_byte *info_ptr,
6821                             struct die_info *comp_unit_die,
6822                             int has_children,
6823                             void *data)
6824 {
6825   struct dwarf2_cu *cu = reader->cu;
6826   enum language *language_ptr = data;
6827
6828   gdb_assert (cu->die_hash == NULL);
6829   cu->die_hash =
6830     htab_create_alloc_ex (cu->header.length / 12,
6831                           die_hash,
6832                           die_eq,
6833                           NULL,
6834                           &cu->comp_unit_obstack,
6835                           hashtab_obstack_allocate,
6836                           dummy_obstack_deallocate);
6837
6838   if (has_children)
6839     comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
6840                                                   &info_ptr, comp_unit_die);
6841   cu->dies = comp_unit_die;
6842   /* comp_unit_die is not stored in die_hash, no need.  */
6843
6844   /* We try not to read any attributes in this function, because not
6845      all CUs needed for references have been loaded yet, and symbol
6846      table processing isn't initialized.  But we have to set the CU language,
6847      or we won't be able to build types correctly.
6848      Similarly, if we do not read the producer, we can not apply
6849      producer-specific interpretation.  */
6850   prepare_one_comp_unit (cu, cu->dies, *language_ptr);
6851 }
6852
6853 /* Load the DIEs associated with PER_CU into memory.  */
6854
6855 static void
6856 load_full_comp_unit (struct dwarf2_per_cu_data *this_cu,
6857                      enum language pretend_language)
6858 {
6859   gdb_assert (! this_cu->is_debug_types);
6860
6861   init_cutu_and_read_dies (this_cu, NULL, 1, 1,
6862                            load_full_comp_unit_reader, &pretend_language);
6863 }
6864
6865 /* Add a DIE to the delayed physname list.  */
6866
6867 static void
6868 add_to_method_list (struct type *type, int fnfield_index, int index,
6869                     const char *name, struct die_info *die,
6870                     struct dwarf2_cu *cu)
6871 {
6872   struct delayed_method_info mi;
6873   mi.type = type;
6874   mi.fnfield_index = fnfield_index;
6875   mi.index = index;
6876   mi.name = name;
6877   mi.die = die;
6878   VEC_safe_push (delayed_method_info, cu->method_list, &mi);
6879 }
6880
6881 /* A cleanup for freeing the delayed method list.  */
6882
6883 static void
6884 free_delayed_list (void *ptr)
6885 {
6886   struct dwarf2_cu *cu = (struct dwarf2_cu *) ptr;
6887   if (cu->method_list != NULL)
6888     {
6889       VEC_free (delayed_method_info, cu->method_list);
6890       cu->method_list = NULL;
6891     }
6892 }
6893
6894 /* Compute the physnames of any methods on the CU's method list.
6895
6896    The computation of method physnames is delayed in order to avoid the
6897    (bad) condition that one of the method's formal parameters is of an as yet
6898    incomplete type.  */
6899
6900 static void
6901 compute_delayed_physnames (struct dwarf2_cu *cu)
6902 {
6903   int i;
6904   struct delayed_method_info *mi;
6905   for (i = 0; VEC_iterate (delayed_method_info, cu->method_list, i, mi) ; ++i)
6906     {
6907       const char *physname;
6908       struct fn_fieldlist *fn_flp
6909         = &TYPE_FN_FIELDLIST (mi->type, mi->fnfield_index);
6910       physname = dwarf2_physname (mi->name, mi->die, cu);
6911       fn_flp->fn_fields[mi->index].physname = physname ? physname : "";
6912     }
6913 }
6914
6915 /* Go objects should be embedded in a DW_TAG_module DIE,
6916    and it's not clear if/how imported objects will appear.
6917    To keep Go support simple until that's worked out,
6918    go back through what we've read and create something usable.
6919    We could do this while processing each DIE, and feels kinda cleaner,
6920    but that way is more invasive.
6921    This is to, for example, allow the user to type "p var" or "b main"
6922    without having to specify the package name, and allow lookups
6923    of module.object to work in contexts that use the expression
6924    parser.  */
6925
6926 static void
6927 fixup_go_packaging (struct dwarf2_cu *cu)
6928 {
6929   char *package_name = NULL;
6930   struct pending *list;
6931   int i;
6932
6933   for (list = global_symbols; list != NULL; list = list->next)
6934     {
6935       for (i = 0; i < list->nsyms; ++i)
6936         {
6937           struct symbol *sym = list->symbol[i];
6938
6939           if (SYMBOL_LANGUAGE (sym) == language_go
6940               && SYMBOL_CLASS (sym) == LOC_BLOCK)
6941             {
6942               char *this_package_name = go_symbol_package_name (sym);
6943
6944               if (this_package_name == NULL)
6945                 continue;
6946               if (package_name == NULL)
6947                 package_name = this_package_name;
6948               else
6949                 {
6950                   if (strcmp (package_name, this_package_name) != 0)
6951                     complaint (&symfile_complaints,
6952                                _("Symtab %s has objects from two different Go packages: %s and %s"),
6953                                (SYMBOL_SYMTAB (sym)
6954                           ? symtab_to_filename_for_display (SYMBOL_SYMTAB (sym))
6955                                 : cu->objfile->name),
6956                                this_package_name, package_name);
6957                   xfree (this_package_name);
6958                 }
6959             }
6960         }
6961     }
6962
6963   if (package_name != NULL)
6964     {
6965       struct objfile *objfile = cu->objfile;
6966       const char *saved_package_name = obstack_copy0 (&objfile->objfile_obstack,
6967                                                       package_name,
6968                                                       strlen (package_name));
6969       struct type *type = init_type (TYPE_CODE_MODULE, 0, 0,
6970                                      saved_package_name, objfile);
6971       struct symbol *sym;
6972
6973       TYPE_TAG_NAME (type) = TYPE_NAME (type);
6974
6975       sym = allocate_symbol (objfile);
6976       SYMBOL_SET_LANGUAGE (sym, language_go, &objfile->objfile_obstack);
6977       SYMBOL_SET_NAMES (sym, saved_package_name,
6978                         strlen (saved_package_name), 0, objfile);
6979       /* This is not VAR_DOMAIN because we want a way to ensure a lookup of,
6980          e.g., "main" finds the "main" module and not C's main().  */
6981       SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
6982       SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
6983       SYMBOL_TYPE (sym) = type;
6984
6985       add_symbol_to_list (sym, &global_symbols);
6986
6987       xfree (package_name);
6988     }
6989 }
6990
6991 /* Return the symtab for PER_CU.  This works properly regardless of
6992    whether we're using the index or psymtabs.  */
6993
6994 static struct symtab *
6995 get_symtab (struct dwarf2_per_cu_data *per_cu)
6996 {
6997   return (dwarf2_per_objfile->using_index
6998           ? per_cu->v.quick->symtab
6999           : per_cu->v.psymtab->symtab);
7000 }
7001
7002 /* A helper function for computing the list of all symbol tables
7003    included by PER_CU.  */
7004
7005 static void
7006 recursively_compute_inclusions (VEC (dwarf2_per_cu_ptr) **result,
7007                                 htab_t all_children,
7008                                 struct dwarf2_per_cu_data *per_cu)
7009 {
7010   void **slot;
7011   int ix;
7012   struct dwarf2_per_cu_data *iter;
7013
7014   slot = htab_find_slot (all_children, per_cu, INSERT);
7015   if (*slot != NULL)
7016     {
7017       /* This inclusion and its children have been processed.  */
7018       return;
7019     }
7020
7021   *slot = per_cu;
7022   /* Only add a CU if it has a symbol table.  */
7023   if (get_symtab (per_cu) != NULL)
7024     VEC_safe_push (dwarf2_per_cu_ptr, *result, per_cu);
7025
7026   for (ix = 0;
7027        VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs, ix, iter);
7028        ++ix)
7029     recursively_compute_inclusions (result, all_children, iter);
7030 }
7031
7032 /* Compute the symtab 'includes' fields for the symtab related to
7033    PER_CU.  */
7034
7035 static void
7036 compute_symtab_includes (struct dwarf2_per_cu_data *per_cu)
7037 {
7038   gdb_assert (! per_cu->is_debug_types);
7039
7040   if (!VEC_empty (dwarf2_per_cu_ptr, per_cu->imported_symtabs))
7041     {
7042       int ix, len;
7043       struct dwarf2_per_cu_data *iter;
7044       VEC (dwarf2_per_cu_ptr) *result_children = NULL;
7045       htab_t all_children;
7046       struct symtab *symtab = get_symtab (per_cu);
7047
7048       /* If we don't have a symtab, we can just skip this case.  */
7049       if (symtab == NULL)
7050         return;
7051
7052       all_children = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
7053                                         NULL, xcalloc, xfree);
7054
7055       for (ix = 0;
7056            VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs,
7057                         ix, iter);
7058            ++ix)
7059         recursively_compute_inclusions (&result_children, all_children, iter);
7060
7061       /* Now we have a transitive closure of all the included CUs, and
7062          for .gdb_index version 7 the included TUs, so we can convert it
7063          to a list of symtabs.  */
7064       len = VEC_length (dwarf2_per_cu_ptr, result_children);
7065       symtab->includes
7066         = obstack_alloc (&dwarf2_per_objfile->objfile->objfile_obstack,
7067                          (len + 1) * sizeof (struct symtab *));
7068       for (ix = 0;
7069            VEC_iterate (dwarf2_per_cu_ptr, result_children, ix, iter);
7070            ++ix)
7071         symtab->includes[ix] = get_symtab (iter);
7072       symtab->includes[len] = NULL;
7073
7074       VEC_free (dwarf2_per_cu_ptr, result_children);
7075       htab_delete (all_children);
7076     }
7077 }
7078
7079 /* Compute the 'includes' field for the symtabs of all the CUs we just
7080    read.  */
7081
7082 static void
7083 process_cu_includes (void)
7084 {
7085   int ix;
7086   struct dwarf2_per_cu_data *iter;
7087
7088   for (ix = 0;
7089        VEC_iterate (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus,
7090                     ix, iter);
7091        ++ix)
7092     {
7093       if (! iter->is_debug_types)
7094         compute_symtab_includes (iter);
7095     }
7096
7097   VEC_free (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus);
7098 }
7099
7100 /* Generate full symbol information for PER_CU, whose DIEs have
7101    already been loaded into memory.  */
7102
7103 static void
7104 process_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
7105                         enum language pretend_language)
7106 {
7107   struct dwarf2_cu *cu = per_cu->cu;
7108   struct objfile *objfile = per_cu->objfile;
7109   CORE_ADDR lowpc, highpc;
7110   struct symtab *symtab;
7111   struct cleanup *back_to, *delayed_list_cleanup;
7112   CORE_ADDR baseaddr;
7113   struct block *static_block;
7114
7115   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
7116
7117   buildsym_init ();
7118   back_to = make_cleanup (really_free_pendings, NULL);
7119   delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
7120
7121   cu->list_in_scope = &file_symbols;
7122
7123   cu->language = pretend_language;
7124   cu->language_defn = language_def (cu->language);
7125
7126   /* Do line number decoding in read_file_scope () */
7127   process_die (cu->dies, cu);
7128
7129   /* For now fudge the Go package.  */
7130   if (cu->language == language_go)
7131     fixup_go_packaging (cu);
7132
7133   /* Now that we have processed all the DIEs in the CU, all the types 
7134      should be complete, and it should now be safe to compute all of the
7135      physnames.  */
7136   compute_delayed_physnames (cu);
7137   do_cleanups (delayed_list_cleanup);
7138
7139   /* Some compilers don't define a DW_AT_high_pc attribute for the
7140      compilation unit.  If the DW_AT_high_pc is missing, synthesize
7141      it, by scanning the DIE's below the compilation unit.  */
7142   get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
7143
7144   static_block
7145     = end_symtab_get_static_block (highpc + baseaddr, objfile, 0, 1);
7146
7147   /* If the comp unit has DW_AT_ranges, it may have discontiguous ranges.
7148      Also, DW_AT_ranges may record ranges not belonging to any child DIEs
7149      (such as virtual method tables).  Record the ranges in STATIC_BLOCK's
7150      addrmap to help ensure it has an accurate map of pc values belonging to
7151      this comp unit.  */
7152   dwarf2_record_block_ranges (cu->dies, static_block, baseaddr, cu);
7153
7154   symtab = end_symtab_from_static_block (static_block, objfile,
7155                                          SECT_OFF_TEXT (objfile), 0);
7156
7157   if (symtab != NULL)
7158     {
7159       int gcc_4_minor = producer_is_gcc_ge_4 (cu->producer);
7160
7161       /* Set symtab language to language from DW_AT_language.  If the
7162          compilation is from a C file generated by language preprocessors, do
7163          not set the language if it was already deduced by start_subfile.  */
7164       if (!(cu->language == language_c && symtab->language != language_c))
7165         symtab->language = cu->language;
7166
7167       /* GCC-4.0 has started to support -fvar-tracking.  GCC-3.x still can
7168          produce DW_AT_location with location lists but it can be possibly
7169          invalid without -fvar-tracking.  Still up to GCC-4.4.x incl. 4.4.0
7170          there were bugs in prologue debug info, fixed later in GCC-4.5
7171          by "unwind info for epilogues" patch (which is not directly related).
7172
7173          For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
7174          needed, it would be wrong due to missing DW_AT_producer there.
7175
7176          Still one can confuse GDB by using non-standard GCC compilation
7177          options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
7178          */ 
7179       if (cu->has_loclist && gcc_4_minor >= 5)
7180         symtab->locations_valid = 1;
7181
7182       if (gcc_4_minor >= 5)
7183         symtab->epilogue_unwind_valid = 1;
7184
7185       symtab->call_site_htab = cu->call_site_htab;
7186     }
7187
7188   if (dwarf2_per_objfile->using_index)
7189     per_cu->v.quick->symtab = symtab;
7190   else
7191     {
7192       struct partial_symtab *pst = per_cu->v.psymtab;
7193       pst->symtab = symtab;
7194       pst->readin = 1;
7195     }
7196
7197   /* Push it for inclusion processing later.  */
7198   VEC_safe_push (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus, per_cu);
7199
7200   do_cleanups (back_to);
7201 }
7202
7203 /* Generate full symbol information for type unit PER_CU, whose DIEs have
7204    already been loaded into memory.  */
7205
7206 static void
7207 process_full_type_unit (struct dwarf2_per_cu_data *per_cu,
7208                         enum language pretend_language)
7209 {
7210   struct dwarf2_cu *cu = per_cu->cu;
7211   struct objfile *objfile = per_cu->objfile;
7212   struct symtab *symtab;
7213   struct cleanup *back_to, *delayed_list_cleanup;
7214   struct signatured_type *sig_type;
7215
7216   gdb_assert (per_cu->is_debug_types);
7217   sig_type = (struct signatured_type *) per_cu;
7218
7219   buildsym_init ();
7220   back_to = make_cleanup (really_free_pendings, NULL);
7221   delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
7222
7223   cu->list_in_scope = &file_symbols;
7224
7225   cu->language = pretend_language;
7226   cu->language_defn = language_def (cu->language);
7227
7228   /* The symbol tables are set up in read_type_unit_scope.  */
7229   process_die (cu->dies, cu);
7230
7231   /* For now fudge the Go package.  */
7232   if (cu->language == language_go)
7233     fixup_go_packaging (cu);
7234
7235   /* Now that we have processed all the DIEs in the CU, all the types 
7236      should be complete, and it should now be safe to compute all of the
7237      physnames.  */
7238   compute_delayed_physnames (cu);
7239   do_cleanups (delayed_list_cleanup);
7240
7241   /* TUs share symbol tables.
7242      If this is the first TU to use this symtab, complete the construction
7243      of it with end_expandable_symtab.  Otherwise, complete the addition of
7244      this TU's symbols to the existing symtab.  */
7245   if (sig_type->type_unit_group->primary_symtab == NULL)
7246     {
7247       symtab = end_expandable_symtab (0, objfile, SECT_OFF_TEXT (objfile));
7248       sig_type->type_unit_group->primary_symtab = symtab;
7249
7250       if (symtab != NULL)
7251         {
7252           /* Set symtab language to language from DW_AT_language.  If the
7253              compilation is from a C file generated by language preprocessors,
7254              do not set the language if it was already deduced by
7255              start_subfile.  */
7256           if (!(cu->language == language_c && symtab->language != language_c))
7257             symtab->language = cu->language;
7258         }
7259     }
7260   else
7261     {
7262       augment_type_symtab (objfile,
7263                            sig_type->type_unit_group->primary_symtab);
7264       symtab = sig_type->type_unit_group->primary_symtab;
7265     }
7266
7267   if (dwarf2_per_objfile->using_index)
7268     per_cu->v.quick->symtab = symtab;
7269   else
7270     {
7271       struct partial_symtab *pst = per_cu->v.psymtab;
7272       pst->symtab = symtab;
7273       pst->readin = 1;
7274     }
7275
7276   do_cleanups (back_to);
7277 }
7278
7279 /* Process an imported unit DIE.  */
7280
7281 static void
7282 process_imported_unit_die (struct die_info *die, struct dwarf2_cu *cu)
7283 {
7284   struct attribute *attr;
7285
7286   /* For now we don't handle imported units in type units.  */
7287   if (cu->per_cu->is_debug_types)
7288     {
7289       error (_("Dwarf Error: DW_TAG_imported_unit is not"
7290                " supported in type units [in module %s]"),
7291              cu->objfile->name);
7292     }
7293
7294   attr = dwarf2_attr (die, DW_AT_import, cu);
7295   if (attr != NULL)
7296     {
7297       struct dwarf2_per_cu_data *per_cu;
7298       struct symtab *imported_symtab;
7299       sect_offset offset;
7300       int is_dwz;
7301
7302       offset = dwarf2_get_ref_die_offset (attr);
7303       is_dwz = (attr->form == DW_FORM_GNU_ref_alt || cu->per_cu->is_dwz);
7304       per_cu = dwarf2_find_containing_comp_unit (offset, is_dwz, cu->objfile);
7305
7306       /* Queue the unit, if needed.  */
7307       if (maybe_queue_comp_unit (cu, per_cu, cu->language))
7308         load_full_comp_unit (per_cu, cu->language);
7309
7310       VEC_safe_push (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
7311                      per_cu);
7312     }
7313 }
7314
7315 /* Process a die and its children.  */
7316
7317 static void
7318 process_die (struct die_info *die, struct dwarf2_cu *cu)
7319 {
7320   switch (die->tag)
7321     {
7322     case DW_TAG_padding:
7323       break;
7324     case DW_TAG_compile_unit:
7325     case DW_TAG_partial_unit:
7326       read_file_scope (die, cu);
7327       break;
7328     case DW_TAG_type_unit:
7329       read_type_unit_scope (die, cu);
7330       break;
7331     case DW_TAG_subprogram:
7332     case DW_TAG_inlined_subroutine:
7333       read_func_scope (die, cu);
7334       break;
7335     case DW_TAG_lexical_block:
7336     case DW_TAG_try_block:
7337     case DW_TAG_catch_block:
7338       read_lexical_block_scope (die, cu);
7339       break;
7340     case DW_TAG_GNU_call_site:
7341       read_call_site_scope (die, cu);
7342       break;
7343     case DW_TAG_class_type:
7344     case DW_TAG_interface_type:
7345     case DW_TAG_structure_type:
7346     case DW_TAG_union_type:
7347       process_structure_scope (die, cu);
7348       break;
7349     case DW_TAG_enumeration_type:
7350       process_enumeration_scope (die, cu);
7351       break;
7352
7353     /* These dies have a type, but processing them does not create
7354        a symbol or recurse to process the children.  Therefore we can
7355        read them on-demand through read_type_die.  */
7356     case DW_TAG_subroutine_type:
7357     case DW_TAG_set_type:
7358     case DW_TAG_array_type:
7359     case DW_TAG_pointer_type:
7360     case DW_TAG_ptr_to_member_type:
7361     case DW_TAG_reference_type:
7362     case DW_TAG_string_type:
7363       break;
7364
7365     case DW_TAG_base_type:
7366     case DW_TAG_subrange_type:
7367     case DW_TAG_typedef:
7368       /* Add a typedef symbol for the type definition, if it has a
7369          DW_AT_name.  */
7370       new_symbol (die, read_type_die (die, cu), cu);
7371       break;
7372     case DW_TAG_common_block:
7373       read_common_block (die, cu);
7374       break;
7375     case DW_TAG_common_inclusion:
7376       break;
7377     case DW_TAG_namespace:
7378       cu->processing_has_namespace_info = 1;
7379       read_namespace (die, cu);
7380       break;
7381     case DW_TAG_module:
7382       cu->processing_has_namespace_info = 1;
7383       read_module (die, cu);
7384       break;
7385     case DW_TAG_imported_declaration:
7386     case DW_TAG_imported_module:
7387       cu->processing_has_namespace_info = 1;
7388       if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
7389                                  || cu->language != language_fortran))
7390         complaint (&symfile_complaints, _("Tag '%s' has unexpected children"),
7391                    dwarf_tag_name (die->tag));
7392       read_import_statement (die, cu);
7393       break;
7394
7395     case DW_TAG_imported_unit:
7396       process_imported_unit_die (die, cu);
7397       break;
7398
7399     default:
7400       new_symbol (die, NULL, cu);
7401       break;
7402     }
7403 }
7404 \f
7405 /* DWARF name computation.  */
7406
7407 /* A helper function for dwarf2_compute_name which determines whether DIE
7408    needs to have the name of the scope prepended to the name listed in the
7409    die.  */
7410
7411 static int
7412 die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
7413 {
7414   struct attribute *attr;
7415
7416   switch (die->tag)
7417     {
7418     case DW_TAG_namespace:
7419     case DW_TAG_typedef:
7420     case DW_TAG_class_type:
7421     case DW_TAG_interface_type:
7422     case DW_TAG_structure_type:
7423     case DW_TAG_union_type:
7424     case DW_TAG_enumeration_type:
7425     case DW_TAG_enumerator:
7426     case DW_TAG_subprogram:
7427     case DW_TAG_member:
7428       return 1;
7429
7430     case DW_TAG_variable:
7431     case DW_TAG_constant:
7432       /* We only need to prefix "globally" visible variables.  These include
7433          any variable marked with DW_AT_external or any variable that
7434          lives in a namespace.  [Variables in anonymous namespaces
7435          require prefixing, but they are not DW_AT_external.]  */
7436
7437       if (dwarf2_attr (die, DW_AT_specification, cu))
7438         {
7439           struct dwarf2_cu *spec_cu = cu;
7440
7441           return die_needs_namespace (die_specification (die, &spec_cu),
7442                                       spec_cu);
7443         }
7444
7445       attr = dwarf2_attr (die, DW_AT_external, cu);
7446       if (attr == NULL && die->parent->tag != DW_TAG_namespace
7447           && die->parent->tag != DW_TAG_module)
7448         return 0;
7449       /* A variable in a lexical block of some kind does not need a
7450          namespace, even though in C++ such variables may be external
7451          and have a mangled name.  */
7452       if (die->parent->tag ==  DW_TAG_lexical_block
7453           || die->parent->tag ==  DW_TAG_try_block
7454           || die->parent->tag ==  DW_TAG_catch_block
7455           || die->parent->tag == DW_TAG_subprogram)
7456         return 0;
7457       return 1;
7458
7459     default:
7460       return 0;
7461     }
7462 }
7463
7464 /* Retrieve the last character from a mem_file.  */
7465
7466 static void
7467 do_ui_file_peek_last (void *object, const char *buffer, long length)
7468 {
7469   char *last_char_p = (char *) object;
7470
7471   if (length > 0)
7472     *last_char_p = buffer[length - 1];
7473 }
7474
7475 /* Compute the fully qualified name of DIE in CU.  If PHYSNAME is nonzero,
7476    compute the physname for the object, which include a method's:
7477    - formal parameters (C++/Java),
7478    - receiver type (Go),
7479    - return type (Java).
7480
7481    The term "physname" is a bit confusing.
7482    For C++, for example, it is the demangled name.
7483    For Go, for example, it's the mangled name.
7484
7485    For Ada, return the DIE's linkage name rather than the fully qualified
7486    name.  PHYSNAME is ignored..
7487
7488    The result is allocated on the objfile_obstack and canonicalized.  */
7489
7490 static const char *
7491 dwarf2_compute_name (const char *name,
7492                      struct die_info *die, struct dwarf2_cu *cu,
7493                      int physname)
7494 {
7495   struct objfile *objfile = cu->objfile;
7496
7497   if (name == NULL)
7498     name = dwarf2_name (die, cu);
7499
7500   /* For Fortran GDB prefers DW_AT_*linkage_name if present but otherwise
7501      compute it by typename_concat inside GDB.  */
7502   if (cu->language == language_ada
7503       || (cu->language == language_fortran && physname))
7504     {
7505       /* For Ada unit, we prefer the linkage name over the name, as
7506          the former contains the exported name, which the user expects
7507          to be able to reference.  Ideally, we want the user to be able
7508          to reference this entity using either natural or linkage name,
7509          but we haven't started looking at this enhancement yet.  */
7510       struct attribute *attr;
7511
7512       attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
7513       if (attr == NULL)
7514         attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
7515       if (attr && DW_STRING (attr))
7516         return DW_STRING (attr);
7517     }
7518
7519   /* These are the only languages we know how to qualify names in.  */
7520   if (name != NULL
7521       && (cu->language == language_cplus || cu->language == language_java
7522           || cu->language == language_fortran))
7523     {
7524       if (die_needs_namespace (die, cu))
7525         {
7526           long length;
7527           const char *prefix;
7528           struct ui_file *buf;
7529
7530           prefix = determine_prefix (die, cu);
7531           buf = mem_fileopen ();
7532           if (*prefix != '\0')
7533             {
7534               char *prefixed_name = typename_concat (NULL, prefix, name,
7535                                                      physname, cu);
7536
7537               fputs_unfiltered (prefixed_name, buf);
7538               xfree (prefixed_name);
7539             }
7540           else
7541             fputs_unfiltered (name, buf);
7542
7543           /* Template parameters may be specified in the DIE's DW_AT_name, or
7544              as children with DW_TAG_template_type_param or
7545              DW_TAG_value_type_param.  If the latter, add them to the name
7546              here.  If the name already has template parameters, then
7547              skip this step; some versions of GCC emit both, and
7548              it is more efficient to use the pre-computed name.
7549
7550              Something to keep in mind about this process: it is very
7551              unlikely, or in some cases downright impossible, to produce
7552              something that will match the mangled name of a function.
7553              If the definition of the function has the same debug info,
7554              we should be able to match up with it anyway.  But fallbacks
7555              using the minimal symbol, for instance to find a method
7556              implemented in a stripped copy of libstdc++, will not work.
7557              If we do not have debug info for the definition, we will have to
7558              match them up some other way.
7559
7560              When we do name matching there is a related problem with function
7561              templates; two instantiated function templates are allowed to
7562              differ only by their return types, which we do not add here.  */
7563
7564           if (cu->language == language_cplus && strchr (name, '<') == NULL)
7565             {
7566               struct attribute *attr;
7567               struct die_info *child;
7568               int first = 1;
7569
7570               die->building_fullname = 1;
7571
7572               for (child = die->child; child != NULL; child = child->sibling)
7573                 {
7574                   struct type *type;
7575                   LONGEST value;
7576                   const gdb_byte *bytes;
7577                   struct dwarf2_locexpr_baton *baton;
7578                   struct value *v;
7579
7580                   if (child->tag != DW_TAG_template_type_param
7581                       && child->tag != DW_TAG_template_value_param)
7582                     continue;
7583
7584                   if (first)
7585                     {
7586                       fputs_unfiltered ("<", buf);
7587                       first = 0;
7588                     }
7589                   else
7590                     fputs_unfiltered (", ", buf);
7591
7592                   attr = dwarf2_attr (child, DW_AT_type, cu);
7593                   if (attr == NULL)
7594                     {
7595                       complaint (&symfile_complaints,
7596                                  _("template parameter missing DW_AT_type"));
7597                       fputs_unfiltered ("UNKNOWN_TYPE", buf);
7598                       continue;
7599                     }
7600                   type = die_type (child, cu);
7601
7602                   if (child->tag == DW_TAG_template_type_param)
7603                     {
7604                       c_print_type (type, "", buf, -1, 0, &type_print_raw_options);
7605                       continue;
7606                     }
7607
7608                   attr = dwarf2_attr (child, DW_AT_const_value, cu);
7609                   if (attr == NULL)
7610                     {
7611                       complaint (&symfile_complaints,
7612                                  _("template parameter missing "
7613                                    "DW_AT_const_value"));
7614                       fputs_unfiltered ("UNKNOWN_VALUE", buf);
7615                       continue;
7616                     }
7617
7618                   dwarf2_const_value_attr (attr, type, name,
7619                                            &cu->comp_unit_obstack, cu,
7620                                            &value, &bytes, &baton);
7621
7622                   if (TYPE_NOSIGN (type))
7623                     /* GDB prints characters as NUMBER 'CHAR'.  If that's
7624                        changed, this can use value_print instead.  */
7625                     c_printchar (value, type, buf);
7626                   else
7627                     {
7628                       struct value_print_options opts;
7629
7630                       if (baton != NULL)
7631                         v = dwarf2_evaluate_loc_desc (type, NULL,
7632                                                       baton->data,
7633                                                       baton->size,
7634                                                       baton->per_cu);
7635                       else if (bytes != NULL)
7636                         {
7637                           v = allocate_value (type);
7638                           memcpy (value_contents_writeable (v), bytes,
7639                                   TYPE_LENGTH (type));
7640                         }
7641                       else
7642                         v = value_from_longest (type, value);
7643
7644                       /* Specify decimal so that we do not depend on
7645                          the radix.  */
7646                       get_formatted_print_options (&opts, 'd');
7647                       opts.raw = 1;
7648                       value_print (v, buf, &opts);
7649                       release_value (v);
7650                       value_free (v);
7651                     }
7652                 }
7653
7654               die->building_fullname = 0;
7655
7656               if (!first)
7657                 {
7658                   /* Close the argument list, with a space if necessary
7659                      (nested templates).  */
7660                   char last_char = '\0';
7661                   ui_file_put (buf, do_ui_file_peek_last, &last_char);
7662                   if (last_char == '>')
7663                     fputs_unfiltered (" >", buf);
7664                   else
7665                     fputs_unfiltered (">", buf);
7666                 }
7667             }
7668
7669           /* For Java and C++ methods, append formal parameter type
7670              information, if PHYSNAME.  */
7671
7672           if (physname && die->tag == DW_TAG_subprogram
7673               && (cu->language == language_cplus
7674                   || cu->language == language_java))
7675             {
7676               struct type *type = read_type_die (die, cu);
7677
7678               c_type_print_args (type, buf, 1, cu->language,
7679                                  &type_print_raw_options);
7680
7681               if (cu->language == language_java)
7682                 {
7683                   /* For java, we must append the return type to method
7684                      names.  */
7685                   if (die->tag == DW_TAG_subprogram)
7686                     java_print_type (TYPE_TARGET_TYPE (type), "", buf,
7687                                      0, 0, &type_print_raw_options);
7688                 }
7689               else if (cu->language == language_cplus)
7690                 {
7691                   /* Assume that an artificial first parameter is
7692                      "this", but do not crash if it is not.  RealView
7693                      marks unnamed (and thus unused) parameters as
7694                      artificial; there is no way to differentiate
7695                      the two cases.  */
7696                   if (TYPE_NFIELDS (type) > 0
7697                       && TYPE_FIELD_ARTIFICIAL (type, 0)
7698                       && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
7699                       && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
7700                                                                         0))))
7701                     fputs_unfiltered (" const", buf);
7702                 }
7703             }
7704
7705           name = ui_file_obsavestring (buf, &objfile->objfile_obstack,
7706                                        &length);
7707           ui_file_delete (buf);
7708
7709           if (cu->language == language_cplus)
7710             {
7711               const char *cname
7712                 = dwarf2_canonicalize_name (name, cu,
7713                                             &objfile->objfile_obstack);
7714
7715               if (cname != NULL)
7716                 name = cname;
7717             }
7718         }
7719     }
7720
7721   return name;
7722 }
7723
7724 /* Return the fully qualified name of DIE, based on its DW_AT_name.
7725    If scope qualifiers are appropriate they will be added.  The result
7726    will be allocated on the objfile_obstack, or NULL if the DIE does
7727    not have a name.  NAME may either be from a previous call to
7728    dwarf2_name or NULL.
7729
7730    The output string will be canonicalized (if C++/Java).  */
7731
7732 static const char *
7733 dwarf2_full_name (const char *name, struct die_info *die, struct dwarf2_cu *cu)
7734 {
7735   return dwarf2_compute_name (name, die, cu, 0);
7736 }
7737
7738 /* Construct a physname for the given DIE in CU.  NAME may either be
7739    from a previous call to dwarf2_name or NULL.  The result will be
7740    allocated on the objfile_objstack or NULL if the DIE does not have a
7741    name.
7742
7743    The output string will be canonicalized (if C++/Java).  */
7744
7745 static const char *
7746 dwarf2_physname (const char *name, struct die_info *die, struct dwarf2_cu *cu)
7747 {
7748   struct objfile *objfile = cu->objfile;
7749   struct attribute *attr;
7750   const char *retval, *mangled = NULL, *canon = NULL;
7751   struct cleanup *back_to;
7752   int need_copy = 1;
7753
7754   /* In this case dwarf2_compute_name is just a shortcut not building anything
7755      on its own.  */
7756   if (!die_needs_namespace (die, cu))
7757     return dwarf2_compute_name (name, die, cu, 1);
7758
7759   back_to = make_cleanup (null_cleanup, NULL);
7760
7761   attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
7762   if (!attr)
7763     attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
7764
7765   /* DW_AT_linkage_name is missing in some cases - depend on what GDB
7766      has computed.  */
7767   if (attr && DW_STRING (attr))
7768     {
7769       char *demangled;
7770
7771       mangled = DW_STRING (attr);
7772
7773       /* Use DMGL_RET_DROP for C++ template functions to suppress their return
7774          type.  It is easier for GDB users to search for such functions as
7775          `name(params)' than `long name(params)'.  In such case the minimal
7776          symbol names do not match the full symbol names but for template
7777          functions there is never a need to look up their definition from their
7778          declaration so the only disadvantage remains the minimal symbol
7779          variant `long name(params)' does not have the proper inferior type.
7780          */
7781
7782       if (cu->language == language_go)
7783         {
7784           /* This is a lie, but we already lie to the caller new_symbol_full.
7785              new_symbol_full assumes we return the mangled name.
7786              This just undoes that lie until things are cleaned up.  */
7787           demangled = NULL;
7788         }
7789       else
7790         {
7791           demangled = gdb_demangle (mangled,
7792                                     (DMGL_PARAMS | DMGL_ANSI
7793                                      | (cu->language == language_java
7794                                         ? DMGL_JAVA | DMGL_RET_POSTFIX
7795                                         : DMGL_RET_DROP)));
7796         }
7797       if (demangled)
7798         {
7799           make_cleanup (xfree, demangled);
7800           canon = demangled;
7801         }
7802       else
7803         {
7804           canon = mangled;
7805           need_copy = 0;
7806         }
7807     }
7808
7809   if (canon == NULL || check_physname)
7810     {
7811       const char *physname = dwarf2_compute_name (name, die, cu, 1);
7812
7813       if (canon != NULL && strcmp (physname, canon) != 0)
7814         {
7815           /* It may not mean a bug in GDB.  The compiler could also
7816              compute DW_AT_linkage_name incorrectly.  But in such case
7817              GDB would need to be bug-to-bug compatible.  */
7818
7819           complaint (&symfile_complaints,
7820                      _("Computed physname <%s> does not match demangled <%s> "
7821                        "(from linkage <%s>) - DIE at 0x%x [in module %s]"),
7822                      physname, canon, mangled, die->offset.sect_off, objfile->name);
7823
7824           /* Prefer DW_AT_linkage_name (in the CANON form) - when it
7825              is available here - over computed PHYSNAME.  It is safer
7826              against both buggy GDB and buggy compilers.  */
7827
7828           retval = canon;
7829         }
7830       else
7831         {
7832           retval = physname;
7833           need_copy = 0;
7834         }
7835     }
7836   else
7837     retval = canon;
7838
7839   if (need_copy)
7840     retval = obstack_copy0 (&objfile->objfile_obstack, retval, strlen (retval));
7841
7842   do_cleanups (back_to);
7843   return retval;
7844 }
7845
7846 /* Read the import statement specified by the given die and record it.  */
7847
7848 static void
7849 read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
7850 {
7851   struct objfile *objfile = cu->objfile;
7852   struct attribute *import_attr;
7853   struct die_info *imported_die, *child_die;
7854   struct dwarf2_cu *imported_cu;
7855   const char *imported_name;
7856   const char *imported_name_prefix;
7857   const char *canonical_name;
7858   const char *import_alias;
7859   const char *imported_declaration = NULL;
7860   const char *import_prefix;
7861   VEC (const_char_ptr) *excludes = NULL;
7862   struct cleanup *cleanups;
7863
7864   import_attr = dwarf2_attr (die, DW_AT_import, cu);
7865   if (import_attr == NULL)
7866     {
7867       complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
7868                  dwarf_tag_name (die->tag));
7869       return;
7870     }
7871
7872   imported_cu = cu;
7873   imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
7874   imported_name = dwarf2_name (imported_die, imported_cu);
7875   if (imported_name == NULL)
7876     {
7877       /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
7878
7879         The import in the following code:
7880         namespace A
7881           {
7882             typedef int B;
7883           }
7884
7885         int main ()
7886           {
7887             using A::B;
7888             B b;
7889             return b;
7890           }
7891
7892         ...
7893          <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
7894             <52>   DW_AT_decl_file   : 1
7895             <53>   DW_AT_decl_line   : 6
7896             <54>   DW_AT_import      : <0x75>
7897          <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
7898             <59>   DW_AT_name        : B
7899             <5b>   DW_AT_decl_file   : 1
7900             <5c>   DW_AT_decl_line   : 2
7901             <5d>   DW_AT_type        : <0x6e>
7902         ...
7903          <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
7904             <76>   DW_AT_byte_size   : 4
7905             <77>   DW_AT_encoding    : 5        (signed)
7906
7907         imports the wrong die ( 0x75 instead of 0x58 ).
7908         This case will be ignored until the gcc bug is fixed.  */
7909       return;
7910     }
7911
7912   /* Figure out the local name after import.  */
7913   import_alias = dwarf2_name (die, cu);
7914
7915   /* Figure out where the statement is being imported to.  */
7916   import_prefix = determine_prefix (die, cu);
7917
7918   /* Figure out what the scope of the imported die is and prepend it
7919      to the name of the imported die.  */
7920   imported_name_prefix = determine_prefix (imported_die, imported_cu);
7921
7922   if (imported_die->tag != DW_TAG_namespace
7923       && imported_die->tag != DW_TAG_module)
7924     {
7925       imported_declaration = imported_name;
7926       canonical_name = imported_name_prefix;
7927     }
7928   else if (strlen (imported_name_prefix) > 0)
7929     canonical_name = obconcat (&objfile->objfile_obstack,
7930                                imported_name_prefix, "::", imported_name,
7931                                (char *) NULL);
7932   else
7933     canonical_name = imported_name;
7934
7935   cleanups = make_cleanup (VEC_cleanup (const_char_ptr), &excludes);
7936
7937   if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
7938     for (child_die = die->child; child_die && child_die->tag;
7939          child_die = sibling_die (child_die))
7940       {
7941         /* DWARF-4: A Fortran use statement with a “rename list” may be
7942            represented by an imported module entry with an import attribute
7943            referring to the module and owned entries corresponding to those
7944            entities that are renamed as part of being imported.  */
7945
7946         if (child_die->tag != DW_TAG_imported_declaration)
7947           {
7948             complaint (&symfile_complaints,
7949                        _("child DW_TAG_imported_declaration expected "
7950                          "- DIE at 0x%x [in module %s]"),
7951                        child_die->offset.sect_off, objfile->name);
7952             continue;
7953           }
7954
7955         import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
7956         if (import_attr == NULL)
7957           {
7958             complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
7959                        dwarf_tag_name (child_die->tag));
7960             continue;
7961           }
7962
7963         imported_cu = cu;
7964         imported_die = follow_die_ref_or_sig (child_die, import_attr,
7965                                               &imported_cu);
7966         imported_name = dwarf2_name (imported_die, imported_cu);
7967         if (imported_name == NULL)
7968           {
7969             complaint (&symfile_complaints,
7970                        _("child DW_TAG_imported_declaration has unknown "
7971                          "imported name - DIE at 0x%x [in module %s]"),
7972                        child_die->offset.sect_off, objfile->name);
7973             continue;
7974           }
7975
7976         VEC_safe_push (const_char_ptr, excludes, imported_name);
7977
7978         process_die (child_die, cu);
7979       }
7980
7981   cp_add_using_directive (import_prefix,
7982                           canonical_name,
7983                           import_alias,
7984                           imported_declaration,
7985                           excludes,
7986                           0,
7987                           &objfile->objfile_obstack);
7988
7989   do_cleanups (cleanups);
7990 }
7991
7992 /* Cleanup function for handle_DW_AT_stmt_list.  */
7993
7994 static void
7995 free_cu_line_header (void *arg)
7996 {
7997   struct dwarf2_cu *cu = arg;
7998
7999   free_line_header (cu->line_header);
8000   cu->line_header = NULL;
8001 }
8002
8003 /* Check for possibly missing DW_AT_comp_dir with relative .debug_line
8004    directory paths.  GCC SVN r127613 (new option -fdebug-prefix-map) fixed
8005    this, it was first present in GCC release 4.3.0.  */
8006
8007 static int
8008 producer_is_gcc_lt_4_3 (struct dwarf2_cu *cu)
8009 {
8010   if (!cu->checked_producer)
8011     check_producer (cu);
8012
8013   return cu->producer_is_gcc_lt_4_3;
8014 }
8015
8016 static void
8017 find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu,
8018                          const char **name, const char **comp_dir)
8019 {
8020   struct attribute *attr;
8021
8022   *name = NULL;
8023   *comp_dir = NULL;
8024
8025   /* Find the filename.  Do not use dwarf2_name here, since the filename
8026      is not a source language identifier.  */
8027   attr = dwarf2_attr (die, DW_AT_name, cu);
8028   if (attr)
8029     {
8030       *name = DW_STRING (attr);
8031     }
8032
8033   attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
8034   if (attr)
8035     *comp_dir = DW_STRING (attr);
8036   else if (producer_is_gcc_lt_4_3 (cu) && *name != NULL
8037            && IS_ABSOLUTE_PATH (*name))
8038     {
8039       char *d = ldirname (*name);
8040
8041       *comp_dir = d;
8042       if (d != NULL)
8043         make_cleanup (xfree, d);
8044     }
8045   if (*comp_dir != NULL)
8046     {
8047       /* Irix 6.2 native cc prepends <machine>.: to the compilation
8048          directory, get rid of it.  */
8049       char *cp = strchr (*comp_dir, ':');
8050
8051       if (cp && cp != *comp_dir && cp[-1] == '.' && cp[1] == '/')
8052         *comp_dir = cp + 1;
8053     }
8054
8055   if (*name == NULL)
8056     *name = "<unknown>";
8057 }
8058
8059 /* Handle DW_AT_stmt_list for a compilation unit.
8060    DIE is the DW_TAG_compile_unit die for CU.
8061    COMP_DIR is the compilation directory.
8062    WANT_LINE_INFO is non-zero if the pc/line-number mapping is needed.  */
8063
8064 static void
8065 handle_DW_AT_stmt_list (struct die_info *die, struct dwarf2_cu *cu,
8066                         const char *comp_dir) /* ARI: editCase function */
8067 {
8068   struct attribute *attr;
8069
8070   gdb_assert (! cu->per_cu->is_debug_types);
8071
8072   attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
8073   if (attr)
8074     {
8075       unsigned int line_offset = DW_UNSND (attr);
8076       struct line_header *line_header
8077         = dwarf_decode_line_header (line_offset, cu);
8078
8079       if (line_header)
8080         {
8081           cu->line_header = line_header;
8082           make_cleanup (free_cu_line_header, cu);
8083           dwarf_decode_lines (line_header, comp_dir, cu, NULL, 1);
8084         }
8085     }
8086 }
8087
8088 /* Process DW_TAG_compile_unit or DW_TAG_partial_unit.  */
8089
8090 static void
8091 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
8092 {
8093   struct objfile *objfile = dwarf2_per_objfile->objfile;
8094   struct cleanup *back_to = make_cleanup (null_cleanup, 0);
8095   CORE_ADDR lowpc = ((CORE_ADDR) -1);
8096   CORE_ADDR highpc = ((CORE_ADDR) 0);
8097   struct attribute *attr;
8098   const char *name = NULL;
8099   const char *comp_dir = NULL;
8100   struct die_info *child_die;
8101   bfd *abfd = objfile->obfd;
8102   CORE_ADDR baseaddr;
8103
8104   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
8105
8106   get_scope_pc_bounds (die, &lowpc, &highpc, cu);
8107
8108   /* If we didn't find a lowpc, set it to highpc to avoid complaints
8109      from finish_block.  */
8110   if (lowpc == ((CORE_ADDR) -1))
8111     lowpc = highpc;
8112   lowpc += baseaddr;
8113   highpc += baseaddr;
8114
8115   find_file_and_directory (die, cu, &name, &comp_dir);
8116
8117   prepare_one_comp_unit (cu, die, cu->language);
8118
8119   /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
8120      standardised yet.  As a workaround for the language detection we fall
8121      back to the DW_AT_producer string.  */
8122   if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
8123     cu->language = language_opencl;
8124
8125   /* Similar hack for Go.  */
8126   if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
8127     set_cu_language (DW_LANG_Go, cu);
8128
8129   dwarf2_start_symtab (cu, name, comp_dir, lowpc);
8130
8131   /* Decode line number information if present.  We do this before
8132      processing child DIEs, so that the line header table is available
8133      for DW_AT_decl_file.  */
8134   handle_DW_AT_stmt_list (die, cu, comp_dir);
8135
8136   /* Process all dies in compilation unit.  */
8137   if (die->child != NULL)
8138     {
8139       child_die = die->child;
8140       while (child_die && child_die->tag)
8141         {
8142           process_die (child_die, cu);
8143           child_die = sibling_die (child_die);
8144         }
8145     }
8146
8147   /* Decode macro information, if present.  Dwarf 2 macro information
8148      refers to information in the line number info statement program
8149      header, so we can only read it if we've read the header
8150      successfully.  */
8151   attr = dwarf2_attr (die, DW_AT_GNU_macros, cu);
8152   if (attr && cu->line_header)
8153     {
8154       if (dwarf2_attr (die, DW_AT_macro_info, cu))
8155         complaint (&symfile_complaints,
8156                    _("CU refers to both DW_AT_GNU_macros and DW_AT_macro_info"));
8157
8158       dwarf_decode_macros (cu, DW_UNSND (attr), comp_dir, 1);
8159     }
8160   else
8161     {
8162       attr = dwarf2_attr (die, DW_AT_macro_info, cu);
8163       if (attr && cu->line_header)
8164         {
8165           unsigned int macro_offset = DW_UNSND (attr);
8166
8167           dwarf_decode_macros (cu, macro_offset, comp_dir, 0);
8168         }
8169     }
8170
8171   do_cleanups (back_to);
8172 }
8173
8174 /* TU version of handle_DW_AT_stmt_list for read_type_unit_scope.
8175    Create the set of symtabs used by this TU, or if this TU is sharing
8176    symtabs with another TU and the symtabs have already been created
8177    then restore those symtabs in the line header.
8178    We don't need the pc/line-number mapping for type units.  */
8179
8180 static void
8181 setup_type_unit_groups (struct die_info *die, struct dwarf2_cu *cu)
8182 {
8183   struct objfile *objfile = dwarf2_per_objfile->objfile;
8184   struct dwarf2_per_cu_data *per_cu = cu->per_cu;
8185   struct type_unit_group *tu_group;
8186   int first_time;
8187   struct line_header *lh;
8188   struct attribute *attr;
8189   unsigned int i, line_offset;
8190   struct signatured_type *sig_type;
8191
8192   gdb_assert (per_cu->is_debug_types);
8193   sig_type = (struct signatured_type *) per_cu;
8194
8195   attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
8196
8197   /* If we're using .gdb_index (includes -readnow) then
8198      per_cu->type_unit_group may not have been set up yet.  */
8199   if (sig_type->type_unit_group == NULL)
8200     sig_type->type_unit_group = get_type_unit_group (cu, attr);
8201   tu_group = sig_type->type_unit_group;
8202
8203   /* If we've already processed this stmt_list there's no real need to
8204      do it again, we could fake it and just recreate the part we need
8205      (file name,index -> symtab mapping).  If data shows this optimization
8206      is useful we can do it then.  */
8207   first_time = tu_group->primary_symtab == NULL;
8208
8209   /* We have to handle the case of both a missing DW_AT_stmt_list or bad
8210      debug info.  */
8211   lh = NULL;
8212   if (attr != NULL)
8213     {
8214       line_offset = DW_UNSND (attr);
8215       lh = dwarf_decode_line_header (line_offset, cu);
8216     }
8217   if (lh == NULL)
8218     {
8219       if (first_time)
8220         dwarf2_start_symtab (cu, "", NULL, 0);
8221       else
8222         {
8223           gdb_assert (tu_group->symtabs == NULL);
8224           restart_symtab (0);
8225         }
8226       /* Note: The primary symtab will get allocated at the end.  */
8227       return;
8228     }
8229
8230   cu->line_header = lh;
8231   make_cleanup (free_cu_line_header, cu);
8232
8233   if (first_time)
8234     {
8235       dwarf2_start_symtab (cu, "", NULL, 0);
8236
8237       tu_group->num_symtabs = lh->num_file_names;
8238       tu_group->symtabs = XNEWVEC (struct symtab *, lh->num_file_names);
8239
8240       for (i = 0; i < lh->num_file_names; ++i)
8241         {
8242           const char *dir = NULL;
8243           struct file_entry *fe = &lh->file_names[i];
8244
8245           if (fe->dir_index)
8246             dir = lh->include_dirs[fe->dir_index - 1];
8247           dwarf2_start_subfile (fe->name, dir, NULL);
8248
8249           /* Note: We don't have to watch for the main subfile here, type units
8250              don't have DW_AT_name.  */
8251
8252           if (current_subfile->symtab == NULL)
8253             {
8254               /* NOTE: start_subfile will recognize when it's been passed
8255                  a file it has already seen.  So we can't assume there's a
8256                  simple mapping from lh->file_names to subfiles,
8257                  lh->file_names may contain dups.  */
8258               current_subfile->symtab = allocate_symtab (current_subfile->name,
8259                                                          objfile);
8260             }
8261
8262           fe->symtab = current_subfile->symtab;
8263           tu_group->symtabs[i] = fe->symtab;
8264         }
8265     }
8266   else
8267     {
8268       restart_symtab (0);
8269
8270       for (i = 0; i < lh->num_file_names; ++i)
8271         {
8272           struct file_entry *fe = &lh->file_names[i];
8273
8274           fe->symtab = tu_group->symtabs[i];
8275         }
8276     }
8277
8278   /* The main symtab is allocated last.  Type units don't have DW_AT_name
8279      so they don't have a "real" (so to speak) symtab anyway.
8280      There is later code that will assign the main symtab to all symbols
8281      that don't have one.  We need to handle the case of a symbol with a
8282      missing symtab (DW_AT_decl_file) anyway.  */
8283 }
8284
8285 /* Process DW_TAG_type_unit.
8286    For TUs we want to skip the first top level sibling if it's not the
8287    actual type being defined by this TU.  In this case the first top
8288    level sibling is there to provide context only.  */
8289
8290 static void
8291 read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
8292 {
8293   struct die_info *child_die;
8294
8295   prepare_one_comp_unit (cu, die, language_minimal);
8296
8297   /* Initialize (or reinitialize) the machinery for building symtabs.
8298      We do this before processing child DIEs, so that the line header table
8299      is available for DW_AT_decl_file.  */
8300   setup_type_unit_groups (die, cu);
8301
8302   if (die->child != NULL)
8303     {
8304       child_die = die->child;
8305       while (child_die && child_die->tag)
8306         {
8307           process_die (child_die, cu);
8308           child_die = sibling_die (child_die);
8309         }
8310     }
8311 }
8312 \f
8313 /* DWO/DWP files.
8314
8315    http://gcc.gnu.org/wiki/DebugFission
8316    http://gcc.gnu.org/wiki/DebugFissionDWP
8317
8318    To simplify handling of both DWO files ("object" files with the DWARF info)
8319    and DWP files (a file with the DWOs packaged up into one file), we treat
8320    DWP files as having a collection of virtual DWO files.  */
8321
8322 static hashval_t
8323 hash_dwo_file (const void *item)
8324 {
8325   const struct dwo_file *dwo_file = item;
8326
8327   return (htab_hash_string (dwo_file->dwo_name)
8328           + htab_hash_string (dwo_file->comp_dir));
8329 }
8330
8331 static int
8332 eq_dwo_file (const void *item_lhs, const void *item_rhs)
8333 {
8334   const struct dwo_file *lhs = item_lhs;
8335   const struct dwo_file *rhs = item_rhs;
8336
8337   return (strcmp (lhs->dwo_name, rhs->dwo_name) == 0
8338           && strcmp (lhs->comp_dir, rhs->comp_dir) == 0);
8339 }
8340
8341 /* Allocate a hash table for DWO files.  */
8342
8343 static htab_t
8344 allocate_dwo_file_hash_table (void)
8345 {
8346   struct objfile *objfile = dwarf2_per_objfile->objfile;
8347
8348   return htab_create_alloc_ex (41,
8349                                hash_dwo_file,
8350                                eq_dwo_file,
8351                                NULL,
8352                                &objfile->objfile_obstack,
8353                                hashtab_obstack_allocate,
8354                                dummy_obstack_deallocate);
8355 }
8356
8357 /* Lookup DWO file DWO_NAME.  */
8358
8359 static void **
8360 lookup_dwo_file_slot (const char *dwo_name, const char *comp_dir)
8361 {
8362   struct dwo_file find_entry;
8363   void **slot;
8364
8365   if (dwarf2_per_objfile->dwo_files == NULL)
8366     dwarf2_per_objfile->dwo_files = allocate_dwo_file_hash_table ();
8367
8368   memset (&find_entry, 0, sizeof (find_entry));
8369   find_entry.dwo_name = dwo_name;
8370   find_entry.comp_dir = comp_dir;
8371   slot = htab_find_slot (dwarf2_per_objfile->dwo_files, &find_entry, INSERT);
8372
8373   return slot;
8374 }
8375
8376 static hashval_t
8377 hash_dwo_unit (const void *item)
8378 {
8379   const struct dwo_unit *dwo_unit = item;
8380
8381   /* This drops the top 32 bits of the id, but is ok for a hash.  */
8382   return dwo_unit->signature;
8383 }
8384
8385 static int
8386 eq_dwo_unit (const void *item_lhs, const void *item_rhs)
8387 {
8388   const struct dwo_unit *lhs = item_lhs;
8389   const struct dwo_unit *rhs = item_rhs;
8390
8391   /* The signature is assumed to be unique within the DWO file.
8392      So while object file CU dwo_id's always have the value zero,
8393      that's OK, assuming each object file DWO file has only one CU,
8394      and that's the rule for now.  */
8395   return lhs->signature == rhs->signature;
8396 }
8397
8398 /* Allocate a hash table for DWO CUs,TUs.
8399    There is one of these tables for each of CUs,TUs for each DWO file.  */
8400
8401 static htab_t
8402 allocate_dwo_unit_table (struct objfile *objfile)
8403 {
8404   /* Start out with a pretty small number.
8405      Generally DWO files contain only one CU and maybe some TUs.  */
8406   return htab_create_alloc_ex (3,
8407                                hash_dwo_unit,
8408                                eq_dwo_unit,
8409                                NULL,
8410                                &objfile->objfile_obstack,
8411                                hashtab_obstack_allocate,
8412                                dummy_obstack_deallocate);
8413 }
8414
8415 /* Structure used to pass data to create_dwo_debug_info_hash_table_reader.  */
8416
8417 struct create_dwo_cu_data
8418 {
8419   struct dwo_file *dwo_file;
8420   struct dwo_unit dwo_unit;
8421 };
8422
8423 /* die_reader_func for create_dwo_cu.  */
8424
8425 static void
8426 create_dwo_cu_reader (const struct die_reader_specs *reader,
8427                       const gdb_byte *info_ptr,
8428                       struct die_info *comp_unit_die,
8429                       int has_children,
8430                       void *datap)
8431 {
8432   struct dwarf2_cu *cu = reader->cu;
8433   struct objfile *objfile = dwarf2_per_objfile->objfile;
8434   sect_offset offset = cu->per_cu->offset;
8435   struct dwarf2_section_info *section = cu->per_cu->section;
8436   struct create_dwo_cu_data *data = datap;
8437   struct dwo_file *dwo_file = data->dwo_file;
8438   struct dwo_unit *dwo_unit = &data->dwo_unit;
8439   struct attribute *attr;
8440
8441   attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
8442   if (attr == NULL)
8443     {
8444       complaint (&symfile_complaints,
8445                  _("Dwarf Error: debug entry at offset 0x%x is missing"
8446                    " its dwo_id [in module %s]"),
8447                  offset.sect_off, dwo_file->dwo_name);
8448       return;
8449     }
8450
8451   dwo_unit->dwo_file = dwo_file;
8452   dwo_unit->signature = DW_UNSND (attr);
8453   dwo_unit->section = section;
8454   dwo_unit->offset = offset;
8455   dwo_unit->length = cu->per_cu->length;
8456
8457   if (dwarf2_read_debug)
8458     fprintf_unfiltered (gdb_stdlog, "  offset 0x%x, dwo_id %s\n",
8459                         offset.sect_off, hex_string (dwo_unit->signature));
8460 }
8461
8462 /* Create the dwo_unit for the lone CU in DWO_FILE.
8463    Note: This function processes DWO files only, not DWP files.  */
8464
8465 static struct dwo_unit *
8466 create_dwo_cu (struct dwo_file *dwo_file)
8467 {
8468   struct objfile *objfile = dwarf2_per_objfile->objfile;
8469   struct dwarf2_section_info *section = &dwo_file->sections.info;
8470   bfd *abfd;
8471   htab_t cu_htab;
8472   const gdb_byte *info_ptr, *end_ptr;
8473   struct create_dwo_cu_data create_dwo_cu_data;
8474   struct dwo_unit *dwo_unit;
8475
8476   dwarf2_read_section (objfile, section);
8477   info_ptr = section->buffer;
8478
8479   if (info_ptr == NULL)
8480     return NULL;
8481
8482   /* We can't set abfd until now because the section may be empty or
8483      not present, in which case section->asection will be NULL.  */
8484   abfd = section->asection->owner;
8485
8486   if (dwarf2_read_debug)
8487     {
8488       fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
8489                           bfd_section_name (abfd, section->asection),
8490                           bfd_get_filename (abfd));
8491     }
8492
8493   create_dwo_cu_data.dwo_file = dwo_file;
8494   dwo_unit = NULL;
8495
8496   end_ptr = info_ptr + section->size;
8497   while (info_ptr < end_ptr)
8498     {
8499       struct dwarf2_per_cu_data per_cu;
8500
8501       memset (&create_dwo_cu_data.dwo_unit, 0,
8502               sizeof (create_dwo_cu_data.dwo_unit));
8503       memset (&per_cu, 0, sizeof (per_cu));
8504       per_cu.objfile = objfile;
8505       per_cu.is_debug_types = 0;
8506       per_cu.offset.sect_off = info_ptr - section->buffer;
8507       per_cu.section = section;
8508
8509       init_cutu_and_read_dies_no_follow (&per_cu,
8510                                          &dwo_file->sections.abbrev,
8511                                          dwo_file,
8512                                          create_dwo_cu_reader,
8513                                          &create_dwo_cu_data);
8514
8515       if (create_dwo_cu_data.dwo_unit.dwo_file != NULL)
8516         {
8517           /* If we've already found one, complain.  We only support one
8518              because having more than one requires hacking the dwo_name of
8519              each to match, which is highly unlikely to happen.  */
8520           if (dwo_unit != NULL)
8521             {
8522               complaint (&symfile_complaints,
8523                          _("Multiple CUs in DWO file %s [in module %s]"),
8524                          dwo_file->dwo_name, objfile->name);
8525               break;
8526             }
8527
8528           dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
8529           *dwo_unit = create_dwo_cu_data.dwo_unit;
8530         }
8531
8532       info_ptr += per_cu.length;
8533     }
8534
8535   return dwo_unit;
8536 }
8537
8538 /* DWP file .debug_{cu,tu}_index section format:
8539    [ref: http://gcc.gnu.org/wiki/DebugFissionDWP]
8540
8541    Both index sections have the same format, and serve to map a 64-bit
8542    signature to a set of section numbers.  Each section begins with a header,
8543    followed by a hash table of 64-bit signatures, a parallel table of 32-bit
8544    indexes, and a pool of 32-bit section numbers.  The index sections will be
8545    aligned at 8-byte boundaries in the file.
8546
8547    The index section header contains two unsigned 32-bit values (using the
8548    byte order of the application binary):
8549
8550     N, the number of compilation units or type units in the index
8551     M, the number of slots in the hash table
8552
8553   (We assume that N and M will not exceed 2^32 - 1.)
8554
8555   The size of the hash table, M, must be 2^k such that 2^k > 3*N/2.
8556
8557   The hash table begins at offset 8 in the section, and consists of an array
8558   of M 64-bit slots.  Each slot contains a 64-bit signature (using the byte
8559   order of the application binary).  Unused slots in the hash table are 0.
8560   (We rely on the extreme unlikeliness of a signature being exactly 0.)
8561
8562   The parallel table begins immediately after the hash table
8563   (at offset 8 + 8 * M from the beginning of the section), and consists of an
8564   array of 32-bit indexes (using the byte order of the application binary),
8565   corresponding 1-1 with slots in the hash table.  Each entry in the parallel
8566   table contains a 32-bit index into the pool of section numbers.  For unused
8567   hash table slots, the corresponding entry in the parallel table will be 0.
8568
8569   Given a 64-bit compilation unit signature or a type signature S, an entry
8570   in the hash table is located as follows:
8571
8572   1) Calculate a primary hash H = S & MASK(k), where MASK(k) is a mask with
8573      the low-order k bits all set to 1.
8574
8575   2) Calculate a secondary hash H' = (((S >> 32) & MASK(k)) | 1).
8576
8577   3) If the hash table entry at index H matches the signature, use that
8578      entry.  If the hash table entry at index H is unused (all zeroes),
8579      terminate the search: the signature is not present in the table.
8580
8581   4) Let H = (H + H') modulo M. Repeat at Step 3.
8582
8583   Because M > N and H' and M are relatively prime, the search is guaranteed
8584   to stop at an unused slot or find the match.
8585
8586   The pool of section numbers begins immediately following the hash table
8587   (at offset 8 + 12 * M from the beginning of the section).  The pool of
8588   section numbers consists of an array of 32-bit words (using the byte order
8589   of the application binary).  Each item in the array is indexed starting
8590   from 0.  The hash table entry provides the index of the first section
8591   number in the set.  Additional section numbers in the set follow, and the
8592   set is terminated by a 0 entry (section number 0 is not used in ELF).
8593
8594   In each set of section numbers, the .debug_info.dwo or .debug_types.dwo
8595   section must be the first entry in the set, and the .debug_abbrev.dwo must
8596   be the second entry. Other members of the set may follow in any order.  */
8597
8598 /* Create a hash table to map DWO IDs to their CU/TU entry in
8599    .debug_{info,types}.dwo in DWP_FILE.
8600    Returns NULL if there isn't one.
8601    Note: This function processes DWP files only, not DWO files.  */
8602
8603 static struct dwp_hash_table *
8604 create_dwp_hash_table (struct dwp_file *dwp_file, int is_debug_types)
8605 {
8606   struct objfile *objfile = dwarf2_per_objfile->objfile;
8607   bfd *dbfd = dwp_file->dbfd;
8608   const gdb_byte *index_ptr, *index_end;
8609   struct dwarf2_section_info *index;
8610   uint32_t version, nr_units, nr_slots;
8611   struct dwp_hash_table *htab;
8612
8613   if (is_debug_types)
8614     index = &dwp_file->sections.tu_index;
8615   else
8616     index = &dwp_file->sections.cu_index;
8617
8618   if (dwarf2_section_empty_p (index))
8619     return NULL;
8620   dwarf2_read_section (objfile, index);
8621
8622   index_ptr = index->buffer;
8623   index_end = index_ptr + index->size;
8624
8625   version = read_4_bytes (dbfd, index_ptr);
8626   index_ptr += 8; /* Skip the unused word.  */
8627   nr_units = read_4_bytes (dbfd, index_ptr);
8628   index_ptr += 4;
8629   nr_slots = read_4_bytes (dbfd, index_ptr);
8630   index_ptr += 4;
8631
8632   if (version != 1)
8633     {
8634       error (_("Dwarf Error: unsupported DWP file version (%u)"
8635                " [in module %s]"),
8636              version, dwp_file->name);
8637     }
8638   if (nr_slots != (nr_slots & -nr_slots))
8639     {
8640       error (_("Dwarf Error: number of slots in DWP hash table (%u)"
8641                " is not power of 2 [in module %s]"),
8642              nr_slots, dwp_file->name);
8643     }
8644
8645   htab = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_hash_table);
8646   htab->nr_units = nr_units;
8647   htab->nr_slots = nr_slots;
8648   htab->hash_table = index_ptr;
8649   htab->unit_table = htab->hash_table + sizeof (uint64_t) * nr_slots;
8650   htab->section_pool = htab->unit_table + sizeof (uint32_t) * nr_slots;
8651
8652   return htab;
8653 }
8654
8655 /* Update SECTIONS with the data from SECTP.
8656
8657    This function is like the other "locate" section routines that are
8658    passed to bfd_map_over_sections, but in this context the sections to
8659    read comes from the DWP hash table, not the full ELF section table.
8660
8661    The result is non-zero for success, or zero if an error was found.  */
8662
8663 static int
8664 locate_virtual_dwo_sections (asection *sectp,
8665                              struct virtual_dwo_sections *sections)
8666 {
8667   const struct dwop_section_names *names = &dwop_section_names;
8668
8669   if (section_is_p (sectp->name, &names->abbrev_dwo))
8670     {
8671       /* There can be only one.  */
8672       if (sections->abbrev.asection != NULL)
8673         return 0;
8674       sections->abbrev.asection = sectp;
8675       sections->abbrev.size = bfd_get_section_size (sectp);
8676     }
8677   else if (section_is_p (sectp->name, &names->info_dwo)
8678            || section_is_p (sectp->name, &names->types_dwo))
8679     {
8680       /* There can be only one.  */
8681       if (sections->info_or_types.asection != NULL)
8682         return 0;
8683       sections->info_or_types.asection = sectp;
8684       sections->info_or_types.size = bfd_get_section_size (sectp);
8685     }
8686   else if (section_is_p (sectp->name, &names->line_dwo))
8687     {
8688       /* There can be only one.  */
8689       if (sections->line.asection != NULL)
8690         return 0;
8691       sections->line.asection = sectp;
8692       sections->line.size = bfd_get_section_size (sectp);
8693     }
8694   else if (section_is_p (sectp->name, &names->loc_dwo))
8695     {
8696       /* There can be only one.  */
8697       if (sections->loc.asection != NULL)
8698         return 0;
8699       sections->loc.asection = sectp;
8700       sections->loc.size = bfd_get_section_size (sectp);
8701     }
8702   else if (section_is_p (sectp->name, &names->macinfo_dwo))
8703     {
8704       /* There can be only one.  */
8705       if (sections->macinfo.asection != NULL)
8706         return 0;
8707       sections->macinfo.asection = sectp;
8708       sections->macinfo.size = bfd_get_section_size (sectp);
8709     }
8710   else if (section_is_p (sectp->name, &names->macro_dwo))
8711     {
8712       /* There can be only one.  */
8713       if (sections->macro.asection != NULL)
8714         return 0;
8715       sections->macro.asection = sectp;
8716       sections->macro.size = bfd_get_section_size (sectp);
8717     }
8718   else if (section_is_p (sectp->name, &names->str_offsets_dwo))
8719     {
8720       /* There can be only one.  */
8721       if (sections->str_offsets.asection != NULL)
8722         return 0;
8723       sections->str_offsets.asection = sectp;
8724       sections->str_offsets.size = bfd_get_section_size (sectp);
8725     }
8726   else
8727     {
8728       /* No other kind of section is valid.  */
8729       return 0;
8730     }
8731
8732   return 1;
8733 }
8734
8735 /* Create a dwo_unit object for the DWO with signature SIGNATURE.
8736    HTAB is the hash table from the DWP file.
8737    SECTION_INDEX is the index of the DWO in HTAB.
8738    COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.  */
8739
8740 static struct dwo_unit *
8741 create_dwo_in_dwp (struct dwp_file *dwp_file,
8742                    const struct dwp_hash_table *htab,
8743                    uint32_t section_index,
8744                    const char *comp_dir,
8745                    ULONGEST signature, int is_debug_types)
8746 {
8747   struct objfile *objfile = dwarf2_per_objfile->objfile;
8748   bfd *dbfd = dwp_file->dbfd;
8749   const char *kind = is_debug_types ? "TU" : "CU";
8750   struct dwo_file *dwo_file;
8751   struct dwo_unit *dwo_unit;
8752   struct virtual_dwo_sections sections;
8753   void **dwo_file_slot;
8754   char *virtual_dwo_name;
8755   struct dwarf2_section_info *cutu;
8756   struct cleanup *cleanups;
8757   int i;
8758
8759   if (dwarf2_read_debug)
8760     {
8761       fprintf_unfiltered (gdb_stdlog, "Reading %s %u/%s in DWP file: %s\n",
8762                           kind,
8763                           section_index, hex_string (signature),
8764                           dwp_file->name);
8765     }
8766
8767   /* Fetch the sections of this DWO.
8768      Put a limit on the number of sections we look for so that bad data
8769      doesn't cause us to loop forever.  */
8770
8771 #define MAX_NR_DWO_SECTIONS \
8772   (1 /* .debug_info or .debug_types */ \
8773    + 1 /* .debug_abbrev */ \
8774    + 1 /* .debug_line */ \
8775    + 1 /* .debug_loc */ \
8776    + 1 /* .debug_str_offsets */ \
8777    + 1 /* .debug_macro */ \
8778    + 1 /* .debug_macinfo */ \
8779    + 1 /* trailing zero */)
8780
8781   memset (&sections, 0, sizeof (sections));
8782   cleanups = make_cleanup (null_cleanup, 0);
8783
8784   for (i = 0; i < MAX_NR_DWO_SECTIONS; ++i)
8785     {
8786       asection *sectp;
8787       uint32_t section_nr =
8788         read_4_bytes (dbfd,
8789                       htab->section_pool
8790                       + (section_index + i) * sizeof (uint32_t));
8791
8792       if (section_nr == 0)
8793         break;
8794       if (section_nr >= dwp_file->num_sections)
8795         {
8796           error (_("Dwarf Error: bad DWP hash table, section number too large"
8797                    " [in module %s]"),
8798                  dwp_file->name);
8799         }
8800
8801       sectp = dwp_file->elf_sections[section_nr];
8802       if (! locate_virtual_dwo_sections (sectp, &sections))
8803         {
8804           error (_("Dwarf Error: bad DWP hash table, invalid section found"
8805                    " [in module %s]"),
8806                  dwp_file->name);
8807         }
8808     }
8809
8810   if (i < 2
8811       || sections.info_or_types.asection == NULL
8812       || sections.abbrev.asection == NULL)
8813     {
8814       error (_("Dwarf Error: bad DWP hash table, missing DWO sections"
8815                " [in module %s]"),
8816              dwp_file->name);
8817     }
8818   if (i == MAX_NR_DWO_SECTIONS)
8819     {
8820       error (_("Dwarf Error: bad DWP hash table, too many DWO sections"
8821                " [in module %s]"),
8822              dwp_file->name);
8823     }
8824
8825   /* It's easier for the rest of the code if we fake a struct dwo_file and
8826      have dwo_unit "live" in that.  At least for now.
8827
8828      The DWP file can be made up of a random collection of CUs and TUs.
8829      However, for each CU + set of TUs that came from the same original DWO
8830      file, we want to combine them back into a virtual DWO file to save space
8831      (fewer struct dwo_file objects to allocated).  Remember that for really
8832      large apps there can be on the order of 8K CUs and 200K TUs, or more.  */
8833
8834   virtual_dwo_name =
8835     xstrprintf ("virtual-dwo/%d-%d-%d-%d",
8836                 sections.abbrev.asection ? sections.abbrev.asection->id : 0,
8837                 sections.line.asection ? sections.line.asection->id : 0,
8838                 sections.loc.asection ? sections.loc.asection->id : 0,
8839                 (sections.str_offsets.asection
8840                 ? sections.str_offsets.asection->id
8841                 : 0));
8842   make_cleanup (xfree, virtual_dwo_name);
8843   /* Can we use an existing virtual DWO file?  */
8844   dwo_file_slot = lookup_dwo_file_slot (virtual_dwo_name, comp_dir);
8845   /* Create one if necessary.  */
8846   if (*dwo_file_slot == NULL)
8847     {
8848       if (dwarf2_read_debug)
8849         {
8850           fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
8851                               virtual_dwo_name);
8852         }
8853       dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
8854       dwo_file->dwo_name = obstack_copy0 (&objfile->objfile_obstack,
8855                                           virtual_dwo_name,
8856                                           strlen (virtual_dwo_name));
8857       dwo_file->comp_dir = comp_dir;
8858       dwo_file->sections.abbrev = sections.abbrev;
8859       dwo_file->sections.line = sections.line;
8860       dwo_file->sections.loc = sections.loc;
8861       dwo_file->sections.macinfo = sections.macinfo;
8862       dwo_file->sections.macro = sections.macro;
8863       dwo_file->sections.str_offsets = sections.str_offsets;
8864       /* The "str" section is global to the entire DWP file.  */
8865       dwo_file->sections.str = dwp_file->sections.str;
8866       /* The info or types section is assigned later to dwo_unit,
8867          there's no need to record it in dwo_file.
8868          Also, we can't simply record type sections in dwo_file because
8869          we record a pointer into the vector in dwo_unit.  As we collect more
8870          types we'll grow the vector and eventually have to reallocate space
8871          for it, invalidating all the pointers into the current copy.  */
8872       *dwo_file_slot = dwo_file;
8873     }
8874   else
8875     {
8876       if (dwarf2_read_debug)
8877         {
8878           fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
8879                               virtual_dwo_name);
8880         }
8881       dwo_file = *dwo_file_slot;
8882     }
8883   do_cleanups (cleanups);
8884
8885   dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
8886   dwo_unit->dwo_file = dwo_file;
8887   dwo_unit->signature = signature;
8888   dwo_unit->section = obstack_alloc (&objfile->objfile_obstack,
8889                                      sizeof (struct dwarf2_section_info));
8890   *dwo_unit->section = sections.info_or_types;
8891   /* offset, length, type_offset_in_tu are set later.  */
8892
8893   return dwo_unit;
8894 }
8895
8896 /* Lookup the DWO with SIGNATURE in DWP_FILE.  */
8897
8898 static struct dwo_unit *
8899 lookup_dwo_in_dwp (struct dwp_file *dwp_file,
8900                    const struct dwp_hash_table *htab,
8901                    const char *comp_dir,
8902                    ULONGEST signature, int is_debug_types)
8903 {
8904   bfd *dbfd = dwp_file->dbfd;
8905   uint32_t mask = htab->nr_slots - 1;
8906   uint32_t hash = signature & mask;
8907   uint32_t hash2 = ((signature >> 32) & mask) | 1;
8908   unsigned int i;
8909   void **slot;
8910   struct dwo_unit find_dwo_cu, *dwo_cu;
8911
8912   memset (&find_dwo_cu, 0, sizeof (find_dwo_cu));
8913   find_dwo_cu.signature = signature;
8914   slot = htab_find_slot (dwp_file->loaded_cutus, &find_dwo_cu, INSERT);
8915
8916   if (*slot != NULL)
8917     return *slot;
8918
8919   /* Use a for loop so that we don't loop forever on bad debug info.  */
8920   for (i = 0; i < htab->nr_slots; ++i)
8921     {
8922       ULONGEST signature_in_table;
8923
8924       signature_in_table =
8925         read_8_bytes (dbfd, htab->hash_table + hash * sizeof (uint64_t));
8926       if (signature_in_table == signature)
8927         {
8928           uint32_t section_index =
8929             read_4_bytes (dbfd, htab->unit_table + hash * sizeof (uint32_t));
8930
8931           *slot = create_dwo_in_dwp (dwp_file, htab, section_index,
8932                                      comp_dir, signature, is_debug_types);
8933           return *slot;
8934         }
8935       if (signature_in_table == 0)
8936         return NULL;
8937       hash = (hash + hash2) & mask;
8938     }
8939
8940   error (_("Dwarf Error: bad DWP hash table, lookup didn't terminate"
8941            " [in module %s]"),
8942          dwp_file->name);
8943 }
8944
8945 /* Subroutine of open_dwo_file,open_dwp_file to simplify them.
8946    Open the file specified by FILE_NAME and hand it off to BFD for
8947    preliminary analysis.  Return a newly initialized bfd *, which
8948    includes a canonicalized copy of FILE_NAME.
8949    If IS_DWP is TRUE, we're opening a DWP file, otherwise a DWO file.
8950    In case of trouble, return NULL.
8951    NOTE: This function is derived from symfile_bfd_open.  */
8952
8953 static bfd *
8954 try_open_dwop_file (const char *file_name, int is_dwp)
8955 {
8956   bfd *sym_bfd;
8957   int desc, flags;
8958   char *absolute_name;
8959
8960   flags = OPF_TRY_CWD_FIRST;
8961   if (is_dwp)
8962     flags |= OPF_SEARCH_IN_PATH;
8963   desc = openp (debug_file_directory, flags, file_name,
8964                 O_RDONLY | O_BINARY, &absolute_name);
8965   if (desc < 0)
8966     return NULL;
8967
8968   sym_bfd = gdb_bfd_open (absolute_name, gnutarget, desc);
8969   if (!sym_bfd)
8970     {
8971       xfree (absolute_name);
8972       return NULL;
8973     }
8974   xfree (absolute_name);
8975   bfd_set_cacheable (sym_bfd, 1);
8976
8977   if (!bfd_check_format (sym_bfd, bfd_object))
8978     {
8979       gdb_bfd_unref (sym_bfd); /* This also closes desc.  */
8980       return NULL;
8981     }
8982
8983   return sym_bfd;
8984 }
8985
8986 /* Try to open DWO file FILE_NAME.
8987    COMP_DIR is the DW_AT_comp_dir attribute.
8988    The result is the bfd handle of the file.
8989    If there is a problem finding or opening the file, return NULL.
8990    Upon success, the canonicalized path of the file is stored in the bfd,
8991    same as symfile_bfd_open.  */
8992
8993 static bfd *
8994 open_dwo_file (const char *file_name, const char *comp_dir)
8995 {
8996   bfd *abfd;
8997
8998   if (IS_ABSOLUTE_PATH (file_name))
8999     return try_open_dwop_file (file_name, 0 /*is_dwp*/);
9000
9001   /* Before trying the search path, try DWO_NAME in COMP_DIR.  */
9002
9003   if (comp_dir != NULL)
9004     {
9005       char *path_to_try = concat (comp_dir, SLASH_STRING, file_name, NULL);
9006
9007       /* NOTE: If comp_dir is a relative path, this will also try the
9008          search path, which seems useful.  */
9009       abfd = try_open_dwop_file (path_to_try, 0 /*is_dwp*/);
9010       xfree (path_to_try);
9011       if (abfd != NULL)
9012         return abfd;
9013     }
9014
9015   /* That didn't work, try debug-file-directory, which, despite its name,
9016      is a list of paths.  */
9017
9018   if (*debug_file_directory == '\0')
9019     return NULL;
9020
9021   return try_open_dwop_file (file_name, 0 /*is_dwp*/);
9022 }
9023
9024 /* This function is mapped across the sections and remembers the offset and
9025    size of each of the DWO debugging sections we are interested in.  */
9026
9027 static void
9028 dwarf2_locate_dwo_sections (bfd *abfd, asection *sectp, void *dwo_sections_ptr)
9029 {
9030   struct dwo_sections *dwo_sections = dwo_sections_ptr;
9031   const struct dwop_section_names *names = &dwop_section_names;
9032
9033   if (section_is_p (sectp->name, &names->abbrev_dwo))
9034     {
9035       dwo_sections->abbrev.asection = sectp;
9036       dwo_sections->abbrev.size = bfd_get_section_size (sectp);
9037     }
9038   else if (section_is_p (sectp->name, &names->info_dwo))
9039     {
9040       dwo_sections->info.asection = sectp;
9041       dwo_sections->info.size = bfd_get_section_size (sectp);
9042     }
9043   else if (section_is_p (sectp->name, &names->line_dwo))
9044     {
9045       dwo_sections->line.asection = sectp;
9046       dwo_sections->line.size = bfd_get_section_size (sectp);
9047     }
9048   else if (section_is_p (sectp->name, &names->loc_dwo))
9049     {
9050       dwo_sections->loc.asection = sectp;
9051       dwo_sections->loc.size = bfd_get_section_size (sectp);
9052     }
9053   else if (section_is_p (sectp->name, &names->macinfo_dwo))
9054     {
9055       dwo_sections->macinfo.asection = sectp;
9056       dwo_sections->macinfo.size = bfd_get_section_size (sectp);
9057     }
9058   else if (section_is_p (sectp->name, &names->macro_dwo))
9059     {
9060       dwo_sections->macro.asection = sectp;
9061       dwo_sections->macro.size = bfd_get_section_size (sectp);
9062     }
9063   else if (section_is_p (sectp->name, &names->str_dwo))
9064     {
9065       dwo_sections->str.asection = sectp;
9066       dwo_sections->str.size = bfd_get_section_size (sectp);
9067     }
9068   else if (section_is_p (sectp->name, &names->str_offsets_dwo))
9069     {
9070       dwo_sections->str_offsets.asection = sectp;
9071       dwo_sections->str_offsets.size = bfd_get_section_size (sectp);
9072     }
9073   else if (section_is_p (sectp->name, &names->types_dwo))
9074     {
9075       struct dwarf2_section_info type_section;
9076
9077       memset (&type_section, 0, sizeof (type_section));
9078       type_section.asection = sectp;
9079       type_section.size = bfd_get_section_size (sectp);
9080       VEC_safe_push (dwarf2_section_info_def, dwo_sections->types,
9081                      &type_section);
9082     }
9083 }
9084
9085 /* Initialize the use of the DWO file specified by DWO_NAME and referenced
9086    by PER_CU.  This is for the non-DWP case.
9087    The result is NULL if DWO_NAME can't be found.  */
9088
9089 static struct dwo_file *
9090 open_and_init_dwo_file (struct dwarf2_per_cu_data *per_cu,
9091                         const char *dwo_name, const char *comp_dir)
9092 {
9093   struct objfile *objfile = dwarf2_per_objfile->objfile;
9094   struct dwo_file *dwo_file;
9095   bfd *dbfd;
9096   struct cleanup *cleanups;
9097
9098   dbfd = open_dwo_file (dwo_name, comp_dir);
9099   if (dbfd == NULL)
9100     {
9101       if (dwarf2_read_debug)
9102         fprintf_unfiltered (gdb_stdlog, "DWO file not found: %s\n", dwo_name);
9103       return NULL;
9104     }
9105   dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
9106   dwo_file->dwo_name = dwo_name;
9107   dwo_file->comp_dir = comp_dir;
9108   dwo_file->dbfd = dbfd;
9109
9110   cleanups = make_cleanup (free_dwo_file_cleanup, dwo_file);
9111
9112   bfd_map_over_sections (dbfd, dwarf2_locate_dwo_sections, &dwo_file->sections);
9113
9114   dwo_file->cu = create_dwo_cu (dwo_file);
9115
9116   dwo_file->tus = create_debug_types_hash_table (dwo_file,
9117                                                  dwo_file->sections.types);
9118
9119   discard_cleanups (cleanups);
9120
9121   if (dwarf2_read_debug)
9122     fprintf_unfiltered (gdb_stdlog, "DWO file found: %s\n", dwo_name);
9123
9124   return dwo_file;
9125 }
9126
9127 /* This function is mapped across the sections and remembers the offset and
9128    size of each of the DWP debugging sections we are interested in.  */
9129
9130 static void
9131 dwarf2_locate_dwp_sections (bfd *abfd, asection *sectp, void *dwp_file_ptr)
9132 {
9133   struct dwp_file *dwp_file = dwp_file_ptr;
9134   const struct dwop_section_names *names = &dwop_section_names;
9135   unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
9136
9137   /* Record the ELF section number for later lookup: this is what the
9138      .debug_cu_index,.debug_tu_index tables use.  */
9139   gdb_assert (elf_section_nr < dwp_file->num_sections);
9140   dwp_file->elf_sections[elf_section_nr] = sectp;
9141
9142   /* Look for specific sections that we need.  */
9143   if (section_is_p (sectp->name, &names->str_dwo))
9144     {
9145       dwp_file->sections.str.asection = sectp;
9146       dwp_file->sections.str.size = bfd_get_section_size (sectp);
9147     }
9148   else if (section_is_p (sectp->name, &names->cu_index))
9149     {
9150       dwp_file->sections.cu_index.asection = sectp;
9151       dwp_file->sections.cu_index.size = bfd_get_section_size (sectp);
9152     }
9153   else if (section_is_p (sectp->name, &names->tu_index))
9154     {
9155       dwp_file->sections.tu_index.asection = sectp;
9156       dwp_file->sections.tu_index.size = bfd_get_section_size (sectp);
9157     }
9158 }
9159
9160 /* Hash function for dwp_file loaded CUs/TUs.  */
9161
9162 static hashval_t
9163 hash_dwp_loaded_cutus (const void *item)
9164 {
9165   const struct dwo_unit *dwo_unit = item;
9166
9167   /* This drops the top 32 bits of the signature, but is ok for a hash.  */
9168   return dwo_unit->signature;
9169 }
9170
9171 /* Equality function for dwp_file loaded CUs/TUs.  */
9172
9173 static int
9174 eq_dwp_loaded_cutus (const void *a, const void *b)
9175 {
9176   const struct dwo_unit *dua = a;
9177   const struct dwo_unit *dub = b;
9178
9179   return dua->signature == dub->signature;
9180 }
9181
9182 /* Allocate a hash table for dwp_file loaded CUs/TUs.  */
9183
9184 static htab_t
9185 allocate_dwp_loaded_cutus_table (struct objfile *objfile)
9186 {
9187   return htab_create_alloc_ex (3,
9188                                hash_dwp_loaded_cutus,
9189                                eq_dwp_loaded_cutus,
9190                                NULL,
9191                                &objfile->objfile_obstack,
9192                                hashtab_obstack_allocate,
9193                                dummy_obstack_deallocate);
9194 }
9195
9196 /* Try to open DWP file FILE_NAME.
9197    The result is the bfd handle of the file.
9198    If there is a problem finding or opening the file, return NULL.
9199    Upon success, the canonicalized path of the file is stored in the bfd,
9200    same as symfile_bfd_open.  */
9201
9202 static bfd *
9203 open_dwp_file (const char *file_name)
9204 {
9205   return try_open_dwop_file (file_name, 1 /*is_dwp*/);
9206 }
9207
9208 /* Initialize the use of the DWP file for the current objfile.
9209    By convention the name of the DWP file is ${objfile}.dwp.
9210    The result is NULL if it can't be found.  */
9211
9212 static struct dwp_file *
9213 open_and_init_dwp_file (void)
9214 {
9215   struct objfile *objfile = dwarf2_per_objfile->objfile;
9216   struct dwp_file *dwp_file;
9217   char *dwp_name;
9218   bfd *dbfd;
9219   struct cleanup *cleanups;
9220
9221   dwp_name = xstrprintf ("%s.dwp", dwarf2_per_objfile->objfile->name);
9222   cleanups = make_cleanup (xfree, dwp_name);
9223
9224   dbfd = open_dwp_file (dwp_name);
9225   if (dbfd == NULL)
9226     {
9227       if (dwarf2_read_debug)
9228         fprintf_unfiltered (gdb_stdlog, "DWP file not found: %s\n", dwp_name);
9229       do_cleanups (cleanups);
9230       return NULL;
9231     }
9232   dwp_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_file);
9233   dwp_file->name = obstack_copy0 (&objfile->objfile_obstack,
9234                                   dwp_name, strlen (dwp_name));
9235   dwp_file->dbfd = dbfd;
9236   do_cleanups (cleanups);
9237
9238   /* +1: section 0 is unused */
9239   dwp_file->num_sections = bfd_count_sections (dbfd) + 1;
9240   dwp_file->elf_sections =
9241     OBSTACK_CALLOC (&objfile->objfile_obstack,
9242                     dwp_file->num_sections, asection *);
9243
9244   bfd_map_over_sections (dbfd, dwarf2_locate_dwp_sections, dwp_file);
9245
9246   dwp_file->cus = create_dwp_hash_table (dwp_file, 0);
9247
9248   dwp_file->tus = create_dwp_hash_table (dwp_file, 1);
9249
9250   dwp_file->loaded_cutus = allocate_dwp_loaded_cutus_table (objfile);
9251
9252   if (dwarf2_read_debug)
9253     {
9254       fprintf_unfiltered (gdb_stdlog, "DWP file found: %s\n", dwp_file->name);
9255       fprintf_unfiltered (gdb_stdlog,
9256                           "    %u CUs, %u TUs\n",
9257                           dwp_file->cus ? dwp_file->cus->nr_units : 0,
9258                           dwp_file->tus ? dwp_file->tus->nr_units : 0);
9259     }
9260
9261   return dwp_file;
9262 }
9263
9264 /* Wrapper around open_and_init_dwp_file, only open it once.  */
9265
9266 static struct dwp_file *
9267 get_dwp_file (void)
9268 {
9269   if (! dwarf2_per_objfile->dwp_checked)
9270     {
9271       dwarf2_per_objfile->dwp_file = open_and_init_dwp_file ();
9272       dwarf2_per_objfile->dwp_checked = 1;
9273     }
9274   return dwarf2_per_objfile->dwp_file;
9275 }
9276
9277 /* Subroutine of lookup_dwo_comp_unit, lookup_dwo_type_unit.
9278    Look up the CU/TU with signature SIGNATURE, either in DWO file DWO_NAME
9279    or in the DWP file for the objfile, referenced by THIS_UNIT.
9280    If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
9281    IS_DEBUG_TYPES is non-zero if reading a TU, otherwise read a CU.
9282
9283    This is called, for example, when wanting to read a variable with a
9284    complex location.  Therefore we don't want to do file i/o for every call.
9285    Therefore we don't want to look for a DWO file on every call.
9286    Therefore we first see if we've already seen SIGNATURE in a DWP file,
9287    then we check if we've already seen DWO_NAME, and only THEN do we check
9288    for a DWO file.
9289
9290    The result is a pointer to the dwo_unit object or NULL if we didn't find it
9291    (dwo_id mismatch or couldn't find the DWO/DWP file).  */
9292
9293 static struct dwo_unit *
9294 lookup_dwo_cutu (struct dwarf2_per_cu_data *this_unit,
9295                  const char *dwo_name, const char *comp_dir,
9296                  ULONGEST signature, int is_debug_types)
9297 {
9298   struct objfile *objfile = dwarf2_per_objfile->objfile;
9299   const char *kind = is_debug_types ? "TU" : "CU";
9300   void **dwo_file_slot;
9301   struct dwo_file *dwo_file;
9302   struct dwp_file *dwp_file;
9303
9304   /* First see if there's a DWP file.
9305      If we have a DWP file but didn't find the DWO inside it, don't
9306      look for the original DWO file.  It makes gdb behave differently
9307      depending on whether one is debugging in the build tree.  */
9308
9309   dwp_file = get_dwp_file ();
9310   if (dwp_file != NULL)
9311     {
9312       const struct dwp_hash_table *dwp_htab =
9313         is_debug_types ? dwp_file->tus : dwp_file->cus;
9314
9315       if (dwp_htab != NULL)
9316         {
9317           struct dwo_unit *dwo_cutu =
9318             lookup_dwo_in_dwp (dwp_file, dwp_htab, comp_dir,
9319                                signature, is_debug_types);
9320
9321           if (dwo_cutu != NULL)
9322             {
9323               if (dwarf2_read_debug)
9324                 {
9325                   fprintf_unfiltered (gdb_stdlog,
9326                                       "Virtual DWO %s %s found: @%s\n",
9327                                       kind, hex_string (signature),
9328                                       host_address_to_string (dwo_cutu));
9329                 }
9330               return dwo_cutu;
9331             }
9332         }
9333     }
9334   else
9335     {
9336       /* No DWP file, look for the DWO file.  */
9337
9338       dwo_file_slot = lookup_dwo_file_slot (dwo_name, comp_dir);
9339       if (*dwo_file_slot == NULL)
9340         {
9341           /* Read in the file and build a table of the CUs/TUs it contains.  */
9342           *dwo_file_slot = open_and_init_dwo_file (this_unit, dwo_name, comp_dir);
9343         }
9344       /* NOTE: This will be NULL if unable to open the file.  */
9345       dwo_file = *dwo_file_slot;
9346
9347       if (dwo_file != NULL)
9348         {
9349           struct dwo_unit *dwo_cutu = NULL;
9350
9351           if (is_debug_types && dwo_file->tus)
9352             {
9353               struct dwo_unit find_dwo_cutu;
9354
9355               memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
9356               find_dwo_cutu.signature = signature;
9357               dwo_cutu = htab_find (dwo_file->tus, &find_dwo_cutu);
9358             }
9359           else if (!is_debug_types && dwo_file->cu)
9360             {
9361               if (signature == dwo_file->cu->signature)
9362                 dwo_cutu = dwo_file->cu;
9363             }
9364
9365           if (dwo_cutu != NULL)
9366             {
9367               if (dwarf2_read_debug)
9368                 {
9369                   fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) found: @%s\n",
9370                                       kind, dwo_name, hex_string (signature),
9371                                       host_address_to_string (dwo_cutu));
9372                 }
9373               return dwo_cutu;
9374             }
9375         }
9376     }
9377
9378   /* We didn't find it.  This could mean a dwo_id mismatch, or
9379      someone deleted the DWO/DWP file, or the search path isn't set up
9380      correctly to find the file.  */
9381
9382   if (dwarf2_read_debug)
9383     {
9384       fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) not found\n",
9385                           kind, dwo_name, hex_string (signature));
9386     }
9387
9388   complaint (&symfile_complaints,
9389              _("Could not find DWO %s %s(%s) referenced by CU at offset 0x%x"
9390                " [in module %s]"),
9391              kind, dwo_name, hex_string (signature),
9392              this_unit->offset.sect_off, objfile->name);
9393   return NULL;
9394 }
9395
9396 /* Lookup the DWO CU DWO_NAME/SIGNATURE referenced from THIS_CU.
9397    See lookup_dwo_cutu_unit for details.  */
9398
9399 static struct dwo_unit *
9400 lookup_dwo_comp_unit (struct dwarf2_per_cu_data *this_cu,
9401                       const char *dwo_name, const char *comp_dir,
9402                       ULONGEST signature)
9403 {
9404   return lookup_dwo_cutu (this_cu, dwo_name, comp_dir, signature, 0);
9405 }
9406
9407 /* Lookup the DWO TU DWO_NAME/SIGNATURE referenced from THIS_TU.
9408    See lookup_dwo_cutu_unit for details.  */
9409
9410 static struct dwo_unit *
9411 lookup_dwo_type_unit (struct signatured_type *this_tu,
9412                       const char *dwo_name, const char *comp_dir)
9413 {
9414   return lookup_dwo_cutu (&this_tu->per_cu, dwo_name, comp_dir, this_tu->signature, 1);
9415 }
9416
9417 /* Free all resources associated with DWO_FILE.
9418    Close the DWO file and munmap the sections.
9419    All memory should be on the objfile obstack.  */
9420
9421 static void
9422 free_dwo_file (struct dwo_file *dwo_file, struct objfile *objfile)
9423 {
9424   int ix;
9425   struct dwarf2_section_info *section;
9426
9427   /* Note: dbfd is NULL for virtual DWO files.  */
9428   gdb_bfd_unref (dwo_file->dbfd);
9429
9430   VEC_free (dwarf2_section_info_def, dwo_file->sections.types);
9431 }
9432
9433 /* Wrapper for free_dwo_file for use in cleanups.  */
9434
9435 static void
9436 free_dwo_file_cleanup (void *arg)
9437 {
9438   struct dwo_file *dwo_file = (struct dwo_file *) arg;
9439   struct objfile *objfile = dwarf2_per_objfile->objfile;
9440
9441   free_dwo_file (dwo_file, objfile);
9442 }
9443
9444 /* Traversal function for free_dwo_files.  */
9445
9446 static int
9447 free_dwo_file_from_slot (void **slot, void *info)
9448 {
9449   struct dwo_file *dwo_file = (struct dwo_file *) *slot;
9450   struct objfile *objfile = (struct objfile *) info;
9451
9452   free_dwo_file (dwo_file, objfile);
9453
9454   return 1;
9455 }
9456
9457 /* Free all resources associated with DWO_FILES.  */
9458
9459 static void
9460 free_dwo_files (htab_t dwo_files, struct objfile *objfile)
9461 {
9462   htab_traverse_noresize (dwo_files, free_dwo_file_from_slot, objfile);
9463 }
9464 \f
9465 /* Read in various DIEs.  */
9466
9467 /* qsort helper for inherit_abstract_dies.  */
9468
9469 static int
9470 unsigned_int_compar (const void *ap, const void *bp)
9471 {
9472   unsigned int a = *(unsigned int *) ap;
9473   unsigned int b = *(unsigned int *) bp;
9474
9475   return (a > b) - (b > a);
9476 }
9477
9478 /* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
9479    Inherit only the children of the DW_AT_abstract_origin DIE not being
9480    already referenced by DW_AT_abstract_origin from the children of the
9481    current DIE.  */
9482
9483 static void
9484 inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
9485 {
9486   struct die_info *child_die;
9487   unsigned die_children_count;
9488   /* CU offsets which were referenced by children of the current DIE.  */
9489   sect_offset *offsets;
9490   sect_offset *offsets_end, *offsetp;
9491   /* Parent of DIE - referenced by DW_AT_abstract_origin.  */
9492   struct die_info *origin_die;
9493   /* Iterator of the ORIGIN_DIE children.  */
9494   struct die_info *origin_child_die;
9495   struct cleanup *cleanups;
9496   struct attribute *attr;
9497   struct dwarf2_cu *origin_cu;
9498   struct pending **origin_previous_list_in_scope;
9499
9500   attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
9501   if (!attr)
9502     return;
9503
9504   /* Note that following die references may follow to a die in a
9505      different cu.  */
9506
9507   origin_cu = cu;
9508   origin_die = follow_die_ref (die, attr, &origin_cu);
9509
9510   /* We're inheriting ORIGIN's children into the scope we'd put DIE's
9511      symbols in.  */
9512   origin_previous_list_in_scope = origin_cu->list_in_scope;
9513   origin_cu->list_in_scope = cu->list_in_scope;
9514
9515   if (die->tag != origin_die->tag
9516       && !(die->tag == DW_TAG_inlined_subroutine
9517            && origin_die->tag == DW_TAG_subprogram))
9518     complaint (&symfile_complaints,
9519                _("DIE 0x%x and its abstract origin 0x%x have different tags"),
9520                die->offset.sect_off, origin_die->offset.sect_off);
9521
9522   child_die = die->child;
9523   die_children_count = 0;
9524   while (child_die && child_die->tag)
9525     {
9526       child_die = sibling_die (child_die);
9527       die_children_count++;
9528     }
9529   offsets = xmalloc (sizeof (*offsets) * die_children_count);
9530   cleanups = make_cleanup (xfree, offsets);
9531
9532   offsets_end = offsets;
9533   child_die = die->child;
9534   while (child_die && child_die->tag)
9535     {
9536       /* For each CHILD_DIE, find the corresponding child of
9537          ORIGIN_DIE.  If there is more than one layer of
9538          DW_AT_abstract_origin, follow them all; there shouldn't be,
9539          but GCC versions at least through 4.4 generate this (GCC PR
9540          40573).  */
9541       struct die_info *child_origin_die = child_die;
9542       struct dwarf2_cu *child_origin_cu = cu;
9543
9544       while (1)
9545         {
9546           attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
9547                               child_origin_cu);
9548           if (attr == NULL)
9549             break;
9550           child_origin_die = follow_die_ref (child_origin_die, attr,
9551                                              &child_origin_cu);
9552         }
9553
9554       /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
9555          counterpart may exist.  */
9556       if (child_origin_die != child_die)
9557         {
9558           if (child_die->tag != child_origin_die->tag
9559               && !(child_die->tag == DW_TAG_inlined_subroutine
9560                    && child_origin_die->tag == DW_TAG_subprogram))
9561             complaint (&symfile_complaints,
9562                        _("Child DIE 0x%x and its abstract origin 0x%x have "
9563                          "different tags"), child_die->offset.sect_off,
9564                        child_origin_die->offset.sect_off);
9565           if (child_origin_die->parent != origin_die)
9566             complaint (&symfile_complaints,
9567                        _("Child DIE 0x%x and its abstract origin 0x%x have "
9568                          "different parents"), child_die->offset.sect_off,
9569                        child_origin_die->offset.sect_off);
9570           else
9571             *offsets_end++ = child_origin_die->offset;
9572         }
9573       child_die = sibling_die (child_die);
9574     }
9575   qsort (offsets, offsets_end - offsets, sizeof (*offsets),
9576          unsigned_int_compar);
9577   for (offsetp = offsets + 1; offsetp < offsets_end; offsetp++)
9578     if (offsetp[-1].sect_off == offsetp->sect_off)
9579       complaint (&symfile_complaints,
9580                  _("Multiple children of DIE 0x%x refer "
9581                    "to DIE 0x%x as their abstract origin"),
9582                  die->offset.sect_off, offsetp->sect_off);
9583
9584   offsetp = offsets;
9585   origin_child_die = origin_die->child;
9586   while (origin_child_die && origin_child_die->tag)
9587     {
9588       /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children?  */
9589       while (offsetp < offsets_end
9590              && offsetp->sect_off < origin_child_die->offset.sect_off)
9591         offsetp++;
9592       if (offsetp >= offsets_end
9593           || offsetp->sect_off > origin_child_die->offset.sect_off)
9594         {
9595           /* Found that ORIGIN_CHILD_DIE is really not referenced.  */
9596           process_die (origin_child_die, origin_cu);
9597         }
9598       origin_child_die = sibling_die (origin_child_die);
9599     }
9600   origin_cu->list_in_scope = origin_previous_list_in_scope;
9601
9602   do_cleanups (cleanups);
9603 }
9604
9605 static void
9606 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
9607 {
9608   struct objfile *objfile = cu->objfile;
9609   struct context_stack *new;
9610   CORE_ADDR lowpc;
9611   CORE_ADDR highpc;
9612   struct die_info *child_die;
9613   struct attribute *attr, *call_line, *call_file;
9614   const char *name;
9615   CORE_ADDR baseaddr;
9616   struct block *block;
9617   int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
9618   VEC (symbolp) *template_args = NULL;
9619   struct template_symbol *templ_func = NULL;
9620
9621   if (inlined_func)
9622     {
9623       /* If we do not have call site information, we can't show the
9624          caller of this inlined function.  That's too confusing, so
9625          only use the scope for local variables.  */
9626       call_line = dwarf2_attr (die, DW_AT_call_line, cu);
9627       call_file = dwarf2_attr (die, DW_AT_call_file, cu);
9628       if (call_line == NULL || call_file == NULL)
9629         {
9630           read_lexical_block_scope (die, cu);
9631           return;
9632         }
9633     }
9634
9635   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
9636
9637   name = dwarf2_name (die, cu);
9638
9639   /* Ignore functions with missing or empty names.  These are actually
9640      illegal according to the DWARF standard.  */
9641   if (name == NULL)
9642     {
9643       complaint (&symfile_complaints,
9644                  _("missing name for subprogram DIE at %d"),
9645                  die->offset.sect_off);
9646       return;
9647     }
9648
9649   /* Ignore functions with missing or invalid low and high pc attributes.  */
9650   if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
9651     {
9652       attr = dwarf2_attr (die, DW_AT_external, cu);
9653       if (!attr || !DW_UNSND (attr))
9654         complaint (&symfile_complaints,
9655                    _("cannot get low and high bounds "
9656                      "for subprogram DIE at %d"),
9657                    die->offset.sect_off);
9658       return;
9659     }
9660
9661   lowpc += baseaddr;
9662   highpc += baseaddr;
9663
9664   /* If we have any template arguments, then we must allocate a
9665      different sort of symbol.  */
9666   for (child_die = die->child; child_die; child_die = sibling_die (child_die))
9667     {
9668       if (child_die->tag == DW_TAG_template_type_param
9669           || child_die->tag == DW_TAG_template_value_param)
9670         {
9671           templ_func = allocate_template_symbol (objfile);
9672           templ_func->base.is_cplus_template_function = 1;
9673           break;
9674         }
9675     }
9676
9677   new = push_context (0, lowpc);
9678   new->name = new_symbol_full (die, read_type_die (die, cu), cu,
9679                                (struct symbol *) templ_func);
9680
9681   /* If there is a location expression for DW_AT_frame_base, record
9682      it.  */
9683   attr = dwarf2_attr (die, DW_AT_frame_base, cu);
9684   if (attr)
9685     dwarf2_symbol_mark_computed (attr, new->name, cu, 1);
9686
9687   cu->list_in_scope = &local_symbols;
9688
9689   if (die->child != NULL)
9690     {
9691       child_die = die->child;
9692       while (child_die && child_die->tag)
9693         {
9694           if (child_die->tag == DW_TAG_template_type_param
9695               || child_die->tag == DW_TAG_template_value_param)
9696             {
9697               struct symbol *arg = new_symbol (child_die, NULL, cu);
9698
9699               if (arg != NULL)
9700                 VEC_safe_push (symbolp, template_args, arg);
9701             }
9702           else
9703             process_die (child_die, cu);
9704           child_die = sibling_die (child_die);
9705         }
9706     }
9707
9708   inherit_abstract_dies (die, cu);
9709
9710   /* If we have a DW_AT_specification, we might need to import using
9711      directives from the context of the specification DIE.  See the
9712      comment in determine_prefix.  */
9713   if (cu->language == language_cplus
9714       && dwarf2_attr (die, DW_AT_specification, cu))
9715     {
9716       struct dwarf2_cu *spec_cu = cu;
9717       struct die_info *spec_die = die_specification (die, &spec_cu);
9718
9719       while (spec_die)
9720         {
9721           child_die = spec_die->child;
9722           while (child_die && child_die->tag)
9723             {
9724               if (child_die->tag == DW_TAG_imported_module)
9725                 process_die (child_die, spec_cu);
9726               child_die = sibling_die (child_die);
9727             }
9728
9729           /* In some cases, GCC generates specification DIEs that
9730              themselves contain DW_AT_specification attributes.  */
9731           spec_die = die_specification (spec_die, &spec_cu);
9732         }
9733     }
9734
9735   new = pop_context ();
9736   /* Make a block for the local symbols within.  */
9737   block = finish_block (new->name, &local_symbols, new->old_blocks,
9738                         lowpc, highpc, objfile);
9739
9740   /* For C++, set the block's scope.  */
9741   if ((cu->language == language_cplus || cu->language == language_fortran)
9742       && cu->processing_has_namespace_info)
9743     block_set_scope (block, determine_prefix (die, cu),
9744                      &objfile->objfile_obstack);
9745
9746   /* If we have address ranges, record them.  */
9747   dwarf2_record_block_ranges (die, block, baseaddr, cu);
9748
9749   /* Attach template arguments to function.  */
9750   if (! VEC_empty (symbolp, template_args))
9751     {
9752       gdb_assert (templ_func != NULL);
9753
9754       templ_func->n_template_arguments = VEC_length (symbolp, template_args);
9755       templ_func->template_arguments
9756         = obstack_alloc (&objfile->objfile_obstack,
9757                          (templ_func->n_template_arguments
9758                           * sizeof (struct symbol *)));
9759       memcpy (templ_func->template_arguments,
9760               VEC_address (symbolp, template_args),
9761               (templ_func->n_template_arguments * sizeof (struct symbol *)));
9762       VEC_free (symbolp, template_args);
9763     }
9764
9765   /* In C++, we can have functions nested inside functions (e.g., when
9766      a function declares a class that has methods).  This means that
9767      when we finish processing a function scope, we may need to go
9768      back to building a containing block's symbol lists.  */
9769   local_symbols = new->locals;
9770   using_directives = new->using_directives;
9771
9772   /* If we've finished processing a top-level function, subsequent
9773      symbols go in the file symbol list.  */
9774   if (outermost_context_p ())
9775     cu->list_in_scope = &file_symbols;
9776 }
9777
9778 /* Process all the DIES contained within a lexical block scope.  Start
9779    a new scope, process the dies, and then close the scope.  */
9780
9781 static void
9782 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
9783 {
9784   struct objfile *objfile = cu->objfile;
9785   struct context_stack *new;
9786   CORE_ADDR lowpc, highpc;
9787   struct die_info *child_die;
9788   CORE_ADDR baseaddr;
9789
9790   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
9791
9792   /* Ignore blocks with missing or invalid low and high pc attributes.  */
9793   /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
9794      as multiple lexical blocks?  Handling children in a sane way would
9795      be nasty.  Might be easier to properly extend generic blocks to
9796      describe ranges.  */
9797   if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
9798     return;
9799   lowpc += baseaddr;
9800   highpc += baseaddr;
9801
9802   push_context (0, lowpc);
9803   if (die->child != NULL)
9804     {
9805       child_die = die->child;
9806       while (child_die && child_die->tag)
9807         {
9808           process_die (child_die, cu);
9809           child_die = sibling_die (child_die);
9810         }
9811     }
9812   new = pop_context ();
9813
9814   if (local_symbols != NULL || using_directives != NULL)
9815     {
9816       struct block *block
9817         = finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
9818                         highpc, objfile);
9819
9820       /* Note that recording ranges after traversing children, as we
9821          do here, means that recording a parent's ranges entails
9822          walking across all its children's ranges as they appear in
9823          the address map, which is quadratic behavior.
9824
9825          It would be nicer to record the parent's ranges before
9826          traversing its children, simply overriding whatever you find
9827          there.  But since we don't even decide whether to create a
9828          block until after we've traversed its children, that's hard
9829          to do.  */
9830       dwarf2_record_block_ranges (die, block, baseaddr, cu);
9831     }
9832   local_symbols = new->locals;
9833   using_directives = new->using_directives;
9834 }
9835
9836 /* Read in DW_TAG_GNU_call_site and insert it to CU->call_site_htab.  */
9837
9838 static void
9839 read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu)
9840 {
9841   struct objfile *objfile = cu->objfile;
9842   struct gdbarch *gdbarch = get_objfile_arch (objfile);
9843   CORE_ADDR pc, baseaddr;
9844   struct attribute *attr;
9845   struct call_site *call_site, call_site_local;
9846   void **slot;
9847   int nparams;
9848   struct die_info *child_die;
9849
9850   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
9851
9852   attr = dwarf2_attr (die, DW_AT_low_pc, cu);
9853   if (!attr)
9854     {
9855       complaint (&symfile_complaints,
9856                  _("missing DW_AT_low_pc for DW_TAG_GNU_call_site "
9857                    "DIE 0x%x [in module %s]"),
9858                  die->offset.sect_off, objfile->name);
9859       return;
9860     }
9861   pc = DW_ADDR (attr) + baseaddr;
9862
9863   if (cu->call_site_htab == NULL)
9864     cu->call_site_htab = htab_create_alloc_ex (16, core_addr_hash, core_addr_eq,
9865                                                NULL, &objfile->objfile_obstack,
9866                                                hashtab_obstack_allocate, NULL);
9867   call_site_local.pc = pc;
9868   slot = htab_find_slot (cu->call_site_htab, &call_site_local, INSERT);
9869   if (*slot != NULL)
9870     {
9871       complaint (&symfile_complaints,
9872                  _("Duplicate PC %s for DW_TAG_GNU_call_site "
9873                    "DIE 0x%x [in module %s]"),
9874                  paddress (gdbarch, pc), die->offset.sect_off, objfile->name);
9875       return;
9876     }
9877
9878   /* Count parameters at the caller.  */
9879
9880   nparams = 0;
9881   for (child_die = die->child; child_die && child_die->tag;
9882        child_die = sibling_die (child_die))
9883     {
9884       if (child_die->tag != DW_TAG_GNU_call_site_parameter)
9885         {
9886           complaint (&symfile_complaints,
9887                      _("Tag %d is not DW_TAG_GNU_call_site_parameter in "
9888                        "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
9889                      child_die->tag, child_die->offset.sect_off, objfile->name);
9890           continue;
9891         }
9892
9893       nparams++;
9894     }
9895
9896   call_site = obstack_alloc (&objfile->objfile_obstack,
9897                              (sizeof (*call_site)
9898                               + (sizeof (*call_site->parameter)
9899                                  * (nparams - 1))));
9900   *slot = call_site;
9901   memset (call_site, 0, sizeof (*call_site) - sizeof (*call_site->parameter));
9902   call_site->pc = pc;
9903
9904   if (dwarf2_flag_true_p (die, DW_AT_GNU_tail_call, cu))
9905     {
9906       struct die_info *func_die;
9907
9908       /* Skip also over DW_TAG_inlined_subroutine.  */
9909       for (func_die = die->parent;
9910            func_die && func_die->tag != DW_TAG_subprogram
9911            && func_die->tag != DW_TAG_subroutine_type;
9912            func_die = func_die->parent);
9913
9914       /* DW_AT_GNU_all_call_sites is a superset
9915          of DW_AT_GNU_all_tail_call_sites.  */
9916       if (func_die
9917           && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_call_sites, cu)
9918           && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_tail_call_sites, cu))
9919         {
9920           /* TYPE_TAIL_CALL_LIST is not interesting in functions where it is
9921              not complete.  But keep CALL_SITE for look ups via call_site_htab,
9922              both the initial caller containing the real return address PC and
9923              the final callee containing the current PC of a chain of tail
9924              calls do not need to have the tail call list complete.  But any
9925              function candidate for a virtual tail call frame searched via
9926              TYPE_TAIL_CALL_LIST must have the tail call list complete to be
9927              determined unambiguously.  */
9928         }
9929       else
9930         {
9931           struct type *func_type = NULL;
9932
9933           if (func_die)
9934             func_type = get_die_type (func_die, cu);
9935           if (func_type != NULL)
9936             {
9937               gdb_assert (TYPE_CODE (func_type) == TYPE_CODE_FUNC);
9938
9939               /* Enlist this call site to the function.  */
9940               call_site->tail_call_next = TYPE_TAIL_CALL_LIST (func_type);
9941               TYPE_TAIL_CALL_LIST (func_type) = call_site;
9942             }
9943           else
9944             complaint (&symfile_complaints,
9945                        _("Cannot find function owning DW_TAG_GNU_call_site "
9946                          "DIE 0x%x [in module %s]"),
9947                        die->offset.sect_off, objfile->name);
9948         }
9949     }
9950
9951   attr = dwarf2_attr (die, DW_AT_GNU_call_site_target, cu);
9952   if (attr == NULL)
9953     attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
9954   SET_FIELD_DWARF_BLOCK (call_site->target, NULL);
9955   if (!attr || (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0))
9956     /* Keep NULL DWARF_BLOCK.  */;
9957   else if (attr_form_is_block (attr))
9958     {
9959       struct dwarf2_locexpr_baton *dlbaton;
9960
9961       dlbaton = obstack_alloc (&objfile->objfile_obstack, sizeof (*dlbaton));
9962       dlbaton->data = DW_BLOCK (attr)->data;
9963       dlbaton->size = DW_BLOCK (attr)->size;
9964       dlbaton->per_cu = cu->per_cu;
9965
9966       SET_FIELD_DWARF_BLOCK (call_site->target, dlbaton);
9967     }
9968   else if (is_ref_attr (attr))
9969     {
9970       struct dwarf2_cu *target_cu = cu;
9971       struct die_info *target_die;
9972
9973       target_die = follow_die_ref (die, attr, &target_cu);
9974       gdb_assert (target_cu->objfile == objfile);
9975       if (die_is_declaration (target_die, target_cu))
9976         {
9977           const char *target_physname = NULL;
9978           struct attribute *target_attr;
9979
9980           /* Prefer the mangled name; otherwise compute the demangled one.  */
9981           target_attr = dwarf2_attr (target_die, DW_AT_linkage_name, target_cu);
9982           if (target_attr == NULL)
9983             target_attr = dwarf2_attr (target_die, DW_AT_MIPS_linkage_name,
9984                                        target_cu);
9985           if (target_attr != NULL && DW_STRING (target_attr) != NULL)
9986             target_physname = DW_STRING (target_attr);
9987           else
9988             target_physname = dwarf2_physname (NULL, target_die, target_cu);
9989           if (target_physname == NULL)
9990             complaint (&symfile_complaints,
9991                        _("DW_AT_GNU_call_site_target target DIE has invalid "
9992                          "physname, for referencing DIE 0x%x [in module %s]"),
9993                        die->offset.sect_off, objfile->name);
9994           else
9995             SET_FIELD_PHYSNAME (call_site->target, target_physname);
9996         }
9997       else
9998         {
9999           CORE_ADDR lowpc;
10000
10001           /* DW_AT_entry_pc should be preferred.  */
10002           if (!dwarf2_get_pc_bounds (target_die, &lowpc, NULL, target_cu, NULL))
10003             complaint (&symfile_complaints,
10004                        _("DW_AT_GNU_call_site_target target DIE has invalid "
10005                          "low pc, for referencing DIE 0x%x [in module %s]"),
10006                        die->offset.sect_off, objfile->name);
10007           else
10008             SET_FIELD_PHYSADDR (call_site->target, lowpc + baseaddr);
10009         }
10010     }
10011   else
10012     complaint (&symfile_complaints,
10013                _("DW_TAG_GNU_call_site DW_AT_GNU_call_site_target is neither "
10014                  "block nor reference, for DIE 0x%x [in module %s]"),
10015                die->offset.sect_off, objfile->name);
10016
10017   call_site->per_cu = cu->per_cu;
10018
10019   for (child_die = die->child;
10020        child_die && child_die->tag;
10021        child_die = sibling_die (child_die))
10022     {
10023       struct call_site_parameter *parameter;
10024       struct attribute *loc, *origin;
10025
10026       if (child_die->tag != DW_TAG_GNU_call_site_parameter)
10027         {
10028           /* Already printed the complaint above.  */
10029           continue;
10030         }
10031
10032       gdb_assert (call_site->parameter_count < nparams);
10033       parameter = &call_site->parameter[call_site->parameter_count];
10034
10035       /* DW_AT_location specifies the register number or DW_AT_abstract_origin
10036          specifies DW_TAG_formal_parameter.  Value of the data assumed for the
10037          register is contained in DW_AT_GNU_call_site_value.  */
10038
10039       loc = dwarf2_attr (child_die, DW_AT_location, cu);
10040       origin = dwarf2_attr (child_die, DW_AT_abstract_origin, cu);
10041       if (loc == NULL && origin != NULL && is_ref_attr (origin))
10042         {
10043           sect_offset offset;
10044
10045           parameter->kind = CALL_SITE_PARAMETER_PARAM_OFFSET;
10046           offset = dwarf2_get_ref_die_offset (origin);
10047           if (!offset_in_cu_p (&cu->header, offset))
10048             {
10049               /* As DW_OP_GNU_parameter_ref uses CU-relative offset this
10050                  binding can be done only inside one CU.  Such referenced DIE
10051                  therefore cannot be even moved to DW_TAG_partial_unit.  */
10052               complaint (&symfile_complaints,
10053                          _("DW_AT_abstract_origin offset is not in CU for "
10054                            "DW_TAG_GNU_call_site child DIE 0x%x "
10055                            "[in module %s]"),
10056                          child_die->offset.sect_off, objfile->name);
10057               continue;
10058             }
10059           parameter->u.param_offset.cu_off = (offset.sect_off
10060                                               - cu->header.offset.sect_off);
10061         }
10062       else if (loc == NULL || origin != NULL || !attr_form_is_block (loc))
10063         {
10064           complaint (&symfile_complaints,
10065                      _("No DW_FORM_block* DW_AT_location for "
10066                        "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
10067                      child_die->offset.sect_off, objfile->name);
10068           continue;
10069         }
10070       else
10071         {
10072           parameter->u.dwarf_reg = dwarf_block_to_dwarf_reg
10073             (DW_BLOCK (loc)->data, &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size]);
10074           if (parameter->u.dwarf_reg != -1)
10075             parameter->kind = CALL_SITE_PARAMETER_DWARF_REG;
10076           else if (dwarf_block_to_sp_offset (gdbarch, DW_BLOCK (loc)->data,
10077                                     &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size],
10078                                              &parameter->u.fb_offset))
10079             parameter->kind = CALL_SITE_PARAMETER_FB_OFFSET;
10080           else
10081             {
10082               complaint (&symfile_complaints,
10083                          _("Only single DW_OP_reg or DW_OP_fbreg is supported "
10084                            "for DW_FORM_block* DW_AT_location is supported for "
10085                            "DW_TAG_GNU_call_site child DIE 0x%x "
10086                            "[in module %s]"),
10087                          child_die->offset.sect_off, objfile->name);
10088               continue;
10089             }
10090         }
10091
10092       attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_value, cu);
10093       if (!attr_form_is_block (attr))
10094         {
10095           complaint (&symfile_complaints,
10096                      _("No DW_FORM_block* DW_AT_GNU_call_site_value for "
10097                        "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
10098                      child_die->offset.sect_off, objfile->name);
10099           continue;
10100         }
10101       parameter->value = DW_BLOCK (attr)->data;
10102       parameter->value_size = DW_BLOCK (attr)->size;
10103
10104       /* Parameters are not pre-cleared by memset above.  */
10105       parameter->data_value = NULL;
10106       parameter->data_value_size = 0;
10107       call_site->parameter_count++;
10108
10109       attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_data_value, cu);
10110       if (attr)
10111         {
10112           if (!attr_form_is_block (attr))
10113             complaint (&symfile_complaints,
10114                        _("No DW_FORM_block* DW_AT_GNU_call_site_data_value for "
10115                          "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
10116                        child_die->offset.sect_off, objfile->name);
10117           else
10118             {
10119               parameter->data_value = DW_BLOCK (attr)->data;
10120               parameter->data_value_size = DW_BLOCK (attr)->size;
10121             }
10122         }
10123     }
10124 }
10125
10126 /* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
10127    Return 1 if the attributes are present and valid, otherwise, return 0.
10128    If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'.  */
10129
10130 static int
10131 dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
10132                     CORE_ADDR *high_return, struct dwarf2_cu *cu,
10133                     struct partial_symtab *ranges_pst)
10134 {
10135   struct objfile *objfile = cu->objfile;
10136   struct comp_unit_head *cu_header = &cu->header;
10137   bfd *obfd = objfile->obfd;
10138   unsigned int addr_size = cu_header->addr_size;
10139   CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
10140   /* Base address selection entry.  */
10141   CORE_ADDR base;
10142   int found_base;
10143   unsigned int dummy;
10144   const gdb_byte *buffer;
10145   CORE_ADDR marker;
10146   int low_set;
10147   CORE_ADDR low = 0;
10148   CORE_ADDR high = 0;
10149   CORE_ADDR baseaddr;
10150
10151   found_base = cu->base_known;
10152   base = cu->base_address;
10153
10154   dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
10155   if (offset >= dwarf2_per_objfile->ranges.size)
10156     {
10157       complaint (&symfile_complaints,
10158                  _("Offset %d out of bounds for DW_AT_ranges attribute"),
10159                  offset);
10160       return 0;
10161     }
10162   buffer = dwarf2_per_objfile->ranges.buffer + offset;
10163
10164   /* Read in the largest possible address.  */
10165   marker = read_address (obfd, buffer, cu, &dummy);
10166   if ((marker & mask) == mask)
10167     {
10168       /* If we found the largest possible address, then
10169          read the base address.  */
10170       base = read_address (obfd, buffer + addr_size, cu, &dummy);
10171       buffer += 2 * addr_size;
10172       offset += 2 * addr_size;
10173       found_base = 1;
10174     }
10175
10176   low_set = 0;
10177
10178   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
10179
10180   while (1)
10181     {
10182       CORE_ADDR range_beginning, range_end;
10183
10184       range_beginning = read_address (obfd, buffer, cu, &dummy);
10185       buffer += addr_size;
10186       range_end = read_address (obfd, buffer, cu, &dummy);
10187       buffer += addr_size;
10188       offset += 2 * addr_size;
10189
10190       /* An end of list marker is a pair of zero addresses.  */
10191       if (range_beginning == 0 && range_end == 0)
10192         /* Found the end of list entry.  */
10193         break;
10194
10195       /* Each base address selection entry is a pair of 2 values.
10196          The first is the largest possible address, the second is
10197          the base address.  Check for a base address here.  */
10198       if ((range_beginning & mask) == mask)
10199         {
10200           /* If we found the largest possible address, then
10201              read the base address.  */
10202           base = read_address (obfd, buffer + addr_size, cu, &dummy);
10203           found_base = 1;
10204           continue;
10205         }
10206
10207       if (!found_base)
10208         {
10209           /* We have no valid base address for the ranges
10210              data.  */
10211           complaint (&symfile_complaints,
10212                      _("Invalid .debug_ranges data (no base address)"));
10213           return 0;
10214         }
10215
10216       if (range_beginning > range_end)
10217         {
10218           /* Inverted range entries are invalid.  */
10219           complaint (&symfile_complaints,
10220                      _("Invalid .debug_ranges data (inverted range)"));
10221           return 0;
10222         }
10223
10224       /* Empty range entries have no effect.  */
10225       if (range_beginning == range_end)
10226         continue;
10227
10228       range_beginning += base;
10229       range_end += base;
10230
10231       /* A not-uncommon case of bad debug info.
10232          Don't pollute the addrmap with bad data.  */
10233       if (range_beginning + baseaddr == 0
10234           && !dwarf2_per_objfile->has_section_at_zero)
10235         {
10236           complaint (&symfile_complaints,
10237                      _(".debug_ranges entry has start address of zero"
10238                        " [in module %s]"), objfile->name);
10239           continue;
10240         }
10241
10242       if (ranges_pst != NULL)
10243         addrmap_set_empty (objfile->psymtabs_addrmap,
10244                            range_beginning + baseaddr,
10245                            range_end - 1 + baseaddr,
10246                            ranges_pst);
10247
10248       /* FIXME: This is recording everything as a low-high
10249          segment of consecutive addresses.  We should have a
10250          data structure for discontiguous block ranges
10251          instead.  */
10252       if (! low_set)
10253         {
10254           low = range_beginning;
10255           high = range_end;
10256           low_set = 1;
10257         }
10258       else
10259         {
10260           if (range_beginning < low)
10261             low = range_beginning;
10262           if (range_end > high)
10263             high = range_end;
10264         }
10265     }
10266
10267   if (! low_set)
10268     /* If the first entry is an end-of-list marker, the range
10269        describes an empty scope, i.e. no instructions.  */
10270     return 0;
10271
10272   if (low_return)
10273     *low_return = low;
10274   if (high_return)
10275     *high_return = high;
10276   return 1;
10277 }
10278
10279 /* Get low and high pc attributes from a die.  Return 1 if the attributes
10280    are present and valid, otherwise, return 0.  Return -1 if the range is
10281    discontinuous, i.e. derived from DW_AT_ranges information.  */
10282
10283 static int
10284 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
10285                       CORE_ADDR *highpc, struct dwarf2_cu *cu,
10286                       struct partial_symtab *pst)
10287 {
10288   struct attribute *attr;
10289   struct attribute *attr_high;
10290   CORE_ADDR low = 0;
10291   CORE_ADDR high = 0;
10292   int ret = 0;
10293
10294   attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
10295   if (attr_high)
10296     {
10297       attr = dwarf2_attr (die, DW_AT_low_pc, cu);
10298       if (attr)
10299         {
10300           low = DW_ADDR (attr);
10301           if (attr_high->form == DW_FORM_addr
10302               || attr_high->form == DW_FORM_GNU_addr_index)
10303             high = DW_ADDR (attr_high);
10304           else
10305             high = low + DW_UNSND (attr_high);
10306         }
10307       else
10308         /* Found high w/o low attribute.  */
10309         return 0;
10310
10311       /* Found consecutive range of addresses.  */
10312       ret = 1;
10313     }
10314   else
10315     {
10316       attr = dwarf2_attr (die, DW_AT_ranges, cu);
10317       if (attr != NULL)
10318         {
10319           /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
10320              We take advantage of the fact that DW_AT_ranges does not appear
10321              in DW_TAG_compile_unit of DWO files.  */
10322           int need_ranges_base = die->tag != DW_TAG_compile_unit;
10323           unsigned int ranges_offset = (DW_UNSND (attr)
10324                                         + (need_ranges_base
10325                                            ? cu->ranges_base
10326                                            : 0));
10327
10328           /* Value of the DW_AT_ranges attribute is the offset in the
10329              .debug_ranges section.  */
10330           if (!dwarf2_ranges_read (ranges_offset, &low, &high, cu, pst))
10331             return 0;
10332           /* Found discontinuous range of addresses.  */
10333           ret = -1;
10334         }
10335     }
10336
10337   /* read_partial_die has also the strict LOW < HIGH requirement.  */
10338   if (high <= low)
10339     return 0;
10340
10341   /* When using the GNU linker, .gnu.linkonce. sections are used to
10342      eliminate duplicate copies of functions and vtables and such.
10343      The linker will arbitrarily choose one and discard the others.
10344      The AT_*_pc values for such functions refer to local labels in
10345      these sections.  If the section from that file was discarded, the
10346      labels are not in the output, so the relocs get a value of 0.
10347      If this is a discarded function, mark the pc bounds as invalid,
10348      so that GDB will ignore it.  */
10349   if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
10350     return 0;
10351
10352   *lowpc = low;
10353   if (highpc)
10354     *highpc = high;
10355   return ret;
10356 }
10357
10358 /* Assuming that DIE represents a subprogram DIE or a lexical block, get
10359    its low and high PC addresses.  Do nothing if these addresses could not
10360    be determined.  Otherwise, set LOWPC to the low address if it is smaller,
10361    and HIGHPC to the high address if greater than HIGHPC.  */
10362
10363 static void
10364 dwarf2_get_subprogram_pc_bounds (struct die_info *die,
10365                                  CORE_ADDR *lowpc, CORE_ADDR *highpc,
10366                                  struct dwarf2_cu *cu)
10367 {
10368   CORE_ADDR low, high;
10369   struct die_info *child = die->child;
10370
10371   if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL))
10372     {
10373       *lowpc = min (*lowpc, low);
10374       *highpc = max (*highpc, high);
10375     }
10376
10377   /* If the language does not allow nested subprograms (either inside
10378      subprograms or lexical blocks), we're done.  */
10379   if (cu->language != language_ada)
10380     return;
10381
10382   /* Check all the children of the given DIE.  If it contains nested
10383      subprograms, then check their pc bounds.  Likewise, we need to
10384      check lexical blocks as well, as they may also contain subprogram
10385      definitions.  */
10386   while (child && child->tag)
10387     {
10388       if (child->tag == DW_TAG_subprogram
10389           || child->tag == DW_TAG_lexical_block)
10390         dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
10391       child = sibling_die (child);
10392     }
10393 }
10394
10395 /* Get the low and high pc's represented by the scope DIE, and store
10396    them in *LOWPC and *HIGHPC.  If the correct values can't be
10397    determined, set *LOWPC to -1 and *HIGHPC to 0.  */
10398
10399 static void
10400 get_scope_pc_bounds (struct die_info *die,
10401                      CORE_ADDR *lowpc, CORE_ADDR *highpc,
10402                      struct dwarf2_cu *cu)
10403 {
10404   CORE_ADDR best_low = (CORE_ADDR) -1;
10405   CORE_ADDR best_high = (CORE_ADDR) 0;
10406   CORE_ADDR current_low, current_high;
10407
10408   if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL))
10409     {
10410       best_low = current_low;
10411       best_high = current_high;
10412     }
10413   else
10414     {
10415       struct die_info *child = die->child;
10416
10417       while (child && child->tag)
10418         {
10419           switch (child->tag) {
10420           case DW_TAG_subprogram:
10421             dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
10422             break;
10423           case DW_TAG_namespace:
10424           case DW_TAG_module:
10425             /* FIXME: carlton/2004-01-16: Should we do this for
10426                DW_TAG_class_type/DW_TAG_structure_type, too?  I think
10427                that current GCC's always emit the DIEs corresponding
10428                to definitions of methods of classes as children of a
10429                DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
10430                the DIEs giving the declarations, which could be
10431                anywhere).  But I don't see any reason why the
10432                standards says that they have to be there.  */
10433             get_scope_pc_bounds (child, &current_low, &current_high, cu);
10434
10435             if (current_low != ((CORE_ADDR) -1))
10436               {
10437                 best_low = min (best_low, current_low);
10438                 best_high = max (best_high, current_high);
10439               }
10440             break;
10441           default:
10442             /* Ignore.  */
10443             break;
10444           }
10445
10446           child = sibling_die (child);
10447         }
10448     }
10449
10450   *lowpc = best_low;
10451   *highpc = best_high;
10452 }
10453
10454 /* Record the address ranges for BLOCK, offset by BASEADDR, as given
10455    in DIE.  */
10456
10457 static void
10458 dwarf2_record_block_ranges (struct die_info *die, struct block *block,
10459                             CORE_ADDR baseaddr, struct dwarf2_cu *cu)
10460 {
10461   struct objfile *objfile = cu->objfile;
10462   struct attribute *attr;
10463   struct attribute *attr_high;
10464
10465   attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
10466   if (attr_high)
10467     {
10468       attr = dwarf2_attr (die, DW_AT_low_pc, cu);
10469       if (attr)
10470         {
10471           CORE_ADDR low = DW_ADDR (attr);
10472           CORE_ADDR high;
10473           if (attr_high->form == DW_FORM_addr
10474               || attr_high->form == DW_FORM_GNU_addr_index)
10475             high = DW_ADDR (attr_high);
10476           else
10477             high = low + DW_UNSND (attr_high);
10478
10479           record_block_range (block, baseaddr + low, baseaddr + high - 1);
10480         }
10481     }
10482
10483   attr = dwarf2_attr (die, DW_AT_ranges, cu);
10484   if (attr)
10485     {
10486       bfd *obfd = objfile->obfd;
10487       /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
10488          We take advantage of the fact that DW_AT_ranges does not appear
10489          in DW_TAG_compile_unit of DWO files.  */
10490       int need_ranges_base = die->tag != DW_TAG_compile_unit;
10491
10492       /* The value of the DW_AT_ranges attribute is the offset of the
10493          address range list in the .debug_ranges section.  */
10494       unsigned long offset = (DW_UNSND (attr)
10495                               + (need_ranges_base ? cu->ranges_base : 0));
10496       const gdb_byte *buffer;
10497
10498       /* For some target architectures, but not others, the
10499          read_address function sign-extends the addresses it returns.
10500          To recognize base address selection entries, we need a
10501          mask.  */
10502       unsigned int addr_size = cu->header.addr_size;
10503       CORE_ADDR base_select_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
10504
10505       /* The base address, to which the next pair is relative.  Note
10506          that this 'base' is a DWARF concept: most entries in a range
10507          list are relative, to reduce the number of relocs against the
10508          debugging information.  This is separate from this function's
10509          'baseaddr' argument, which GDB uses to relocate debugging
10510          information from a shared library based on the address at
10511          which the library was loaded.  */
10512       CORE_ADDR base = cu->base_address;
10513       int base_known = cu->base_known;
10514
10515       dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
10516       if (offset >= dwarf2_per_objfile->ranges.size)
10517         {
10518           complaint (&symfile_complaints,
10519                      _("Offset %lu out of bounds for DW_AT_ranges attribute"),
10520                      offset);
10521           return;
10522         }
10523       buffer = dwarf2_per_objfile->ranges.buffer + offset;
10524
10525       for (;;)
10526         {
10527           unsigned int bytes_read;
10528           CORE_ADDR start, end;
10529
10530           start = read_address (obfd, buffer, cu, &bytes_read);
10531           buffer += bytes_read;
10532           end = read_address (obfd, buffer, cu, &bytes_read);
10533           buffer += bytes_read;
10534
10535           /* Did we find the end of the range list?  */
10536           if (start == 0 && end == 0)
10537             break;
10538
10539           /* Did we find a base address selection entry?  */
10540           else if ((start & base_select_mask) == base_select_mask)
10541             {
10542               base = end;
10543               base_known = 1;
10544             }
10545
10546           /* We found an ordinary address range.  */
10547           else
10548             {
10549               if (!base_known)
10550                 {
10551                   complaint (&symfile_complaints,
10552                              _("Invalid .debug_ranges data "
10553                                "(no base address)"));
10554                   return;
10555                 }
10556
10557               if (start > end)
10558                 {
10559                   /* Inverted range entries are invalid.  */
10560                   complaint (&symfile_complaints,
10561                              _("Invalid .debug_ranges data "
10562                                "(inverted range)"));
10563                   return;
10564                 }
10565
10566               /* Empty range entries have no effect.  */
10567               if (start == end)
10568                 continue;
10569
10570               start += base + baseaddr;
10571               end += base + baseaddr;
10572
10573               /* A not-uncommon case of bad debug info.
10574                  Don't pollute the addrmap with bad data.  */
10575               if (start == 0 && !dwarf2_per_objfile->has_section_at_zero)
10576                 {
10577                   complaint (&symfile_complaints,
10578                              _(".debug_ranges entry has start address of zero"
10579                                " [in module %s]"), objfile->name);
10580                   continue;
10581                 }
10582
10583               record_block_range (block, start, end - 1);
10584             }
10585         }
10586     }
10587 }
10588
10589 /* Check whether the producer field indicates either of GCC < 4.6, or the
10590    Intel C/C++ compiler, and cache the result in CU.  */
10591
10592 static void
10593 check_producer (struct dwarf2_cu *cu)
10594 {
10595   const char *cs;
10596   int major, minor, release;
10597
10598   if (cu->producer == NULL)
10599     {
10600       /* For unknown compilers expect their behavior is DWARF version
10601          compliant.
10602
10603          GCC started to support .debug_types sections by -gdwarf-4 since
10604          gcc-4.5.x.  As the .debug_types sections are missing DW_AT_producer
10605          for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
10606          combination.  gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
10607          interpreted incorrectly by GDB now - GCC PR debug/48229.  */
10608     }
10609   else if (strncmp (cu->producer, "GNU ", strlen ("GNU ")) == 0)
10610     {
10611       /* Skip any identifier after "GNU " - such as "C++" or "Java".  */
10612
10613       cs = &cu->producer[strlen ("GNU ")];
10614       while (*cs && !isdigit (*cs))
10615         cs++;
10616       if (sscanf (cs, "%d.%d.%d", &major, &minor, &release) != 3)
10617         {
10618           /* Not recognized as GCC.  */
10619         }
10620       else
10621         {
10622           cu->producer_is_gxx_lt_4_6 = major < 4 || (major == 4 && minor < 6);
10623           cu->producer_is_gcc_lt_4_3 = major < 4 || (major == 4 && minor < 3);
10624         }
10625     }
10626   else if (strncmp (cu->producer, "Intel(R) C", strlen ("Intel(R) C")) == 0)
10627     cu->producer_is_icc = 1;
10628   else
10629     {
10630       /* For other non-GCC compilers, expect their behavior is DWARF version
10631          compliant.  */
10632     }
10633
10634   cu->checked_producer = 1;
10635 }
10636
10637 /* Check for GCC PR debug/45124 fix which is not present in any G++ version up
10638    to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
10639    during 4.6.0 experimental.  */
10640
10641 static int
10642 producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
10643 {
10644   if (!cu->checked_producer)
10645     check_producer (cu);
10646
10647   return cu->producer_is_gxx_lt_4_6;
10648 }
10649
10650 /* Return the default accessibility type if it is not overriden by
10651    DW_AT_accessibility.  */
10652
10653 static enum dwarf_access_attribute
10654 dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
10655 {
10656   if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
10657     {
10658       /* The default DWARF 2 accessibility for members is public, the default
10659          accessibility for inheritance is private.  */
10660
10661       if (die->tag != DW_TAG_inheritance)
10662         return DW_ACCESS_public;
10663       else
10664         return DW_ACCESS_private;
10665     }
10666   else
10667     {
10668       /* DWARF 3+ defines the default accessibility a different way.  The same
10669          rules apply now for DW_TAG_inheritance as for the members and it only
10670          depends on the container kind.  */
10671
10672       if (die->parent->tag == DW_TAG_class_type)
10673         return DW_ACCESS_private;
10674       else
10675         return DW_ACCESS_public;
10676     }
10677 }
10678
10679 /* Look for DW_AT_data_member_location.  Set *OFFSET to the byte
10680    offset.  If the attribute was not found return 0, otherwise return
10681    1.  If it was found but could not properly be handled, set *OFFSET
10682    to 0.  */
10683
10684 static int
10685 handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
10686                              LONGEST *offset)
10687 {
10688   struct attribute *attr;
10689
10690   attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
10691   if (attr != NULL)
10692     {
10693       *offset = 0;
10694
10695       /* Note that we do not check for a section offset first here.
10696          This is because DW_AT_data_member_location is new in DWARF 4,
10697          so if we see it, we can assume that a constant form is really
10698          a constant and not a section offset.  */
10699       if (attr_form_is_constant (attr))
10700         *offset = dwarf2_get_attr_constant_value (attr, 0);
10701       else if (attr_form_is_section_offset (attr))
10702         dwarf2_complex_location_expr_complaint ();
10703       else if (attr_form_is_block (attr))
10704         *offset = decode_locdesc (DW_BLOCK (attr), cu);
10705       else
10706         dwarf2_complex_location_expr_complaint ();
10707
10708       return 1;
10709     }
10710
10711   return 0;
10712 }
10713
10714 /* Add an aggregate field to the field list.  */
10715
10716 static void
10717 dwarf2_add_field (struct field_info *fip, struct die_info *die,
10718                   struct dwarf2_cu *cu)
10719 {
10720   struct objfile *objfile = cu->objfile;
10721   struct gdbarch *gdbarch = get_objfile_arch (objfile);
10722   struct nextfield *new_field;
10723   struct attribute *attr;
10724   struct field *fp;
10725   const char *fieldname = "";
10726
10727   /* Allocate a new field list entry and link it in.  */
10728   new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
10729   make_cleanup (xfree, new_field);
10730   memset (new_field, 0, sizeof (struct nextfield));
10731
10732   if (die->tag == DW_TAG_inheritance)
10733     {
10734       new_field->next = fip->baseclasses;
10735       fip->baseclasses = new_field;
10736     }
10737   else
10738     {
10739       new_field->next = fip->fields;
10740       fip->fields = new_field;
10741     }
10742   fip->nfields++;
10743
10744   attr = dwarf2_attr (die, DW_AT_accessibility, cu);
10745   if (attr)
10746     new_field->accessibility = DW_UNSND (attr);
10747   else
10748     new_field->accessibility = dwarf2_default_access_attribute (die, cu);
10749   if (new_field->accessibility != DW_ACCESS_public)
10750     fip->non_public_fields = 1;
10751
10752   attr = dwarf2_attr (die, DW_AT_virtuality, cu);
10753   if (attr)
10754     new_field->virtuality = DW_UNSND (attr);
10755   else
10756     new_field->virtuality = DW_VIRTUALITY_none;
10757
10758   fp = &new_field->field;
10759
10760   if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
10761     {
10762       LONGEST offset;
10763
10764       /* Data member other than a C++ static data member.  */
10765
10766       /* Get type of field.  */
10767       fp->type = die_type (die, cu);
10768
10769       SET_FIELD_BITPOS (*fp, 0);
10770
10771       /* Get bit size of field (zero if none).  */
10772       attr = dwarf2_attr (die, DW_AT_bit_size, cu);
10773       if (attr)
10774         {
10775           FIELD_BITSIZE (*fp) = DW_UNSND (attr);
10776         }
10777       else
10778         {
10779           FIELD_BITSIZE (*fp) = 0;
10780         }
10781
10782       /* Get bit offset of field.  */
10783       if (handle_data_member_location (die, cu, &offset))
10784         SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
10785       attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
10786       if (attr)
10787         {
10788           if (gdbarch_bits_big_endian (gdbarch))
10789             {
10790               /* For big endian bits, the DW_AT_bit_offset gives the
10791                  additional bit offset from the MSB of the containing
10792                  anonymous object to the MSB of the field.  We don't
10793                  have to do anything special since we don't need to
10794                  know the size of the anonymous object.  */
10795               SET_FIELD_BITPOS (*fp, FIELD_BITPOS (*fp) + DW_UNSND (attr));
10796             }
10797           else
10798             {
10799               /* For little endian bits, compute the bit offset to the
10800                  MSB of the anonymous object, subtract off the number of
10801                  bits from the MSB of the field to the MSB of the
10802                  object, and then subtract off the number of bits of
10803                  the field itself.  The result is the bit offset of
10804                  the LSB of the field.  */
10805               int anonymous_size;
10806               int bit_offset = DW_UNSND (attr);
10807
10808               attr = dwarf2_attr (die, DW_AT_byte_size, cu);
10809               if (attr)
10810                 {
10811                   /* The size of the anonymous object containing
10812                      the bit field is explicit, so use the
10813                      indicated size (in bytes).  */
10814                   anonymous_size = DW_UNSND (attr);
10815                 }
10816               else
10817                 {
10818                   /* The size of the anonymous object containing
10819                      the bit field must be inferred from the type
10820                      attribute of the data member containing the
10821                      bit field.  */
10822                   anonymous_size = TYPE_LENGTH (fp->type);
10823                 }
10824               SET_FIELD_BITPOS (*fp,
10825                                 (FIELD_BITPOS (*fp)
10826                                  + anonymous_size * bits_per_byte
10827                                  - bit_offset - FIELD_BITSIZE (*fp)));
10828             }
10829         }
10830
10831       /* Get name of field.  */
10832       fieldname = dwarf2_name (die, cu);
10833       if (fieldname == NULL)
10834         fieldname = "";
10835
10836       /* The name is already allocated along with this objfile, so we don't
10837          need to duplicate it for the type.  */
10838       fp->name = fieldname;
10839
10840       /* Change accessibility for artificial fields (e.g. virtual table
10841          pointer or virtual base class pointer) to private.  */
10842       if (dwarf2_attr (die, DW_AT_artificial, cu))
10843         {
10844           FIELD_ARTIFICIAL (*fp) = 1;
10845           new_field->accessibility = DW_ACCESS_private;
10846           fip->non_public_fields = 1;
10847         }
10848     }
10849   else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
10850     {
10851       /* C++ static member.  */
10852
10853       /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
10854          is a declaration, but all versions of G++ as of this writing
10855          (so through at least 3.2.1) incorrectly generate
10856          DW_TAG_variable tags.  */
10857
10858       const char *physname;
10859
10860       /* Get name of field.  */
10861       fieldname = dwarf2_name (die, cu);
10862       if (fieldname == NULL)
10863         return;
10864
10865       attr = dwarf2_attr (die, DW_AT_const_value, cu);
10866       if (attr
10867           /* Only create a symbol if this is an external value.
10868              new_symbol checks this and puts the value in the global symbol
10869              table, which we want.  If it is not external, new_symbol
10870              will try to put the value in cu->list_in_scope which is wrong.  */
10871           && dwarf2_flag_true_p (die, DW_AT_external, cu))
10872         {
10873           /* A static const member, not much different than an enum as far as
10874              we're concerned, except that we can support more types.  */
10875           new_symbol (die, NULL, cu);
10876         }
10877
10878       /* Get physical name.  */
10879       physname = dwarf2_physname (fieldname, die, cu);
10880
10881       /* The name is already allocated along with this objfile, so we don't
10882          need to duplicate it for the type.  */
10883       SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
10884       FIELD_TYPE (*fp) = die_type (die, cu);
10885       FIELD_NAME (*fp) = fieldname;
10886     }
10887   else if (die->tag == DW_TAG_inheritance)
10888     {
10889       LONGEST offset;
10890
10891       /* C++ base class field.  */
10892       if (handle_data_member_location (die, cu, &offset))
10893         SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
10894       FIELD_BITSIZE (*fp) = 0;
10895       FIELD_TYPE (*fp) = die_type (die, cu);
10896       FIELD_NAME (*fp) = type_name_no_tag (fp->type);
10897       fip->nbaseclasses++;
10898     }
10899 }
10900
10901 /* Add a typedef defined in the scope of the FIP's class.  */
10902
10903 static void
10904 dwarf2_add_typedef (struct field_info *fip, struct die_info *die,
10905                     struct dwarf2_cu *cu)
10906 {
10907   struct objfile *objfile = cu->objfile;
10908   struct typedef_field_list *new_field;
10909   struct attribute *attr;
10910   struct typedef_field *fp;
10911   char *fieldname = "";
10912
10913   /* Allocate a new field list entry and link it in.  */
10914   new_field = xzalloc (sizeof (*new_field));
10915   make_cleanup (xfree, new_field);
10916
10917   gdb_assert (die->tag == DW_TAG_typedef);
10918
10919   fp = &new_field->field;
10920
10921   /* Get name of field.  */
10922   fp->name = dwarf2_name (die, cu);
10923   if (fp->name == NULL)
10924     return;
10925
10926   fp->type = read_type_die (die, cu);
10927
10928   new_field->next = fip->typedef_field_list;
10929   fip->typedef_field_list = new_field;
10930   fip->typedef_field_list_count++;
10931 }
10932
10933 /* Create the vector of fields, and attach it to the type.  */
10934
10935 static void
10936 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
10937                               struct dwarf2_cu *cu)
10938 {
10939   int nfields = fip->nfields;
10940
10941   /* Record the field count, allocate space for the array of fields,
10942      and create blank accessibility bitfields if necessary.  */
10943   TYPE_NFIELDS (type) = nfields;
10944   TYPE_FIELDS (type) = (struct field *)
10945     TYPE_ALLOC (type, sizeof (struct field) * nfields);
10946   memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
10947
10948   if (fip->non_public_fields && cu->language != language_ada)
10949     {
10950       ALLOCATE_CPLUS_STRUCT_TYPE (type);
10951
10952       TYPE_FIELD_PRIVATE_BITS (type) =
10953         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
10954       B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
10955
10956       TYPE_FIELD_PROTECTED_BITS (type) =
10957         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
10958       B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
10959
10960       TYPE_FIELD_IGNORE_BITS (type) =
10961         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
10962       B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
10963     }
10964
10965   /* If the type has baseclasses, allocate and clear a bit vector for
10966      TYPE_FIELD_VIRTUAL_BITS.  */
10967   if (fip->nbaseclasses && cu->language != language_ada)
10968     {
10969       int num_bytes = B_BYTES (fip->nbaseclasses);
10970       unsigned char *pointer;
10971
10972       ALLOCATE_CPLUS_STRUCT_TYPE (type);
10973       pointer = TYPE_ALLOC (type, num_bytes);
10974       TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
10975       B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
10976       TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
10977     }
10978
10979   /* Copy the saved-up fields into the field vector.  Start from the head of
10980      the list, adding to the tail of the field array, so that they end up in
10981      the same order in the array in which they were added to the list.  */
10982   while (nfields-- > 0)
10983     {
10984       struct nextfield *fieldp;
10985
10986       if (fip->fields)
10987         {
10988           fieldp = fip->fields;
10989           fip->fields = fieldp->next;
10990         }
10991       else
10992         {
10993           fieldp = fip->baseclasses;
10994           fip->baseclasses = fieldp->next;
10995         }
10996
10997       TYPE_FIELD (type, nfields) = fieldp->field;
10998       switch (fieldp->accessibility)
10999         {
11000         case DW_ACCESS_private:
11001           if (cu->language != language_ada)
11002             SET_TYPE_FIELD_PRIVATE (type, nfields);
11003           break;
11004
11005         case DW_ACCESS_protected:
11006           if (cu->language != language_ada)
11007             SET_TYPE_FIELD_PROTECTED (type, nfields);
11008           break;
11009
11010         case DW_ACCESS_public:
11011           break;
11012
11013         default:
11014           /* Unknown accessibility.  Complain and treat it as public.  */
11015           {
11016             complaint (&symfile_complaints, _("unsupported accessibility %d"),
11017                        fieldp->accessibility);
11018           }
11019           break;
11020         }
11021       if (nfields < fip->nbaseclasses)
11022         {
11023           switch (fieldp->virtuality)
11024             {
11025             case DW_VIRTUALITY_virtual:
11026             case DW_VIRTUALITY_pure_virtual:
11027               if (cu->language == language_ada)
11028                 error (_("unexpected virtuality in component of Ada type"));
11029               SET_TYPE_FIELD_VIRTUAL (type, nfields);
11030               break;
11031             }
11032         }
11033     }
11034 }
11035
11036 /* Return true if this member function is a constructor, false
11037    otherwise.  */
11038
11039 static int
11040 dwarf2_is_constructor (struct die_info *die, struct dwarf2_cu *cu)
11041 {
11042   const char *fieldname;
11043   const char *typename;
11044   int len;
11045
11046   if (die->parent == NULL)
11047     return 0;
11048
11049   if (die->parent->tag != DW_TAG_structure_type
11050       && die->parent->tag != DW_TAG_union_type
11051       && die->parent->tag != DW_TAG_class_type)
11052     return 0;
11053
11054   fieldname = dwarf2_name (die, cu);
11055   typename = dwarf2_name (die->parent, cu);
11056   if (fieldname == NULL || typename == NULL)
11057     return 0;
11058
11059   len = strlen (fieldname);
11060   return (strncmp (fieldname, typename, len) == 0
11061           && (typename[len] == '\0' || typename[len] == '<'));
11062 }
11063
11064 /* Add a member function to the proper fieldlist.  */
11065
11066 static void
11067 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
11068                       struct type *type, struct dwarf2_cu *cu)
11069 {
11070   struct objfile *objfile = cu->objfile;
11071   struct attribute *attr;
11072   struct fnfieldlist *flp;
11073   int i;
11074   struct fn_field *fnp;
11075   const char *fieldname;
11076   struct nextfnfield *new_fnfield;
11077   struct type *this_type;
11078   enum dwarf_access_attribute accessibility;
11079
11080   if (cu->language == language_ada)
11081     error (_("unexpected member function in Ada type"));
11082
11083   /* Get name of member function.  */
11084   fieldname = dwarf2_name (die, cu);
11085   if (fieldname == NULL)
11086     return;
11087
11088   /* Look up member function name in fieldlist.  */
11089   for (i = 0; i < fip->nfnfields; i++)
11090     {
11091       if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
11092         break;
11093     }
11094
11095   /* Create new list element if necessary.  */
11096   if (i < fip->nfnfields)
11097     flp = &fip->fnfieldlists[i];
11098   else
11099     {
11100       if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
11101         {
11102           fip->fnfieldlists = (struct fnfieldlist *)
11103             xrealloc (fip->fnfieldlists,
11104                       (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
11105                       * sizeof (struct fnfieldlist));
11106           if (fip->nfnfields == 0)
11107             make_cleanup (free_current_contents, &fip->fnfieldlists);
11108         }
11109       flp = &fip->fnfieldlists[fip->nfnfields];
11110       flp->name = fieldname;
11111       flp->length = 0;
11112       flp->head = NULL;
11113       i = fip->nfnfields++;
11114     }
11115
11116   /* Create a new member function field and chain it to the field list
11117      entry.  */
11118   new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
11119   make_cleanup (xfree, new_fnfield);
11120   memset (new_fnfield, 0, sizeof (struct nextfnfield));
11121   new_fnfield->next = flp->head;
11122   flp->head = new_fnfield;
11123   flp->length++;
11124
11125   /* Fill in the member function field info.  */
11126   fnp = &new_fnfield->fnfield;
11127
11128   /* Delay processing of the physname until later.  */
11129   if (cu->language == language_cplus || cu->language == language_java)
11130     {
11131       add_to_method_list (type, i, flp->length - 1, fieldname,
11132                           die, cu);
11133     }
11134   else
11135     {
11136       const char *physname = dwarf2_physname (fieldname, die, cu);
11137       fnp->physname = physname ? physname : "";
11138     }
11139
11140   fnp->type = alloc_type (objfile);
11141   this_type = read_type_die (die, cu);
11142   if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
11143     {
11144       int nparams = TYPE_NFIELDS (this_type);
11145
11146       /* TYPE is the domain of this method, and THIS_TYPE is the type
11147            of the method itself (TYPE_CODE_METHOD).  */
11148       smash_to_method_type (fnp->type, type,
11149                             TYPE_TARGET_TYPE (this_type),
11150                             TYPE_FIELDS (this_type),
11151                             TYPE_NFIELDS (this_type),
11152                             TYPE_VARARGS (this_type));
11153
11154       /* Handle static member functions.
11155          Dwarf2 has no clean way to discern C++ static and non-static
11156          member functions.  G++ helps GDB by marking the first
11157          parameter for non-static member functions (which is the this
11158          pointer) as artificial.  We obtain this information from
11159          read_subroutine_type via TYPE_FIELD_ARTIFICIAL.  */
11160       if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
11161         fnp->voffset = VOFFSET_STATIC;
11162     }
11163   else
11164     complaint (&symfile_complaints, _("member function type missing for '%s'"),
11165                dwarf2_full_name (fieldname, die, cu));
11166
11167   /* Get fcontext from DW_AT_containing_type if present.  */
11168   if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
11169     fnp->fcontext = die_containing_type (die, cu);
11170
11171   /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
11172      is_volatile is irrelevant, as it is needed by gdb_mangle_name only.  */
11173
11174   /* Get accessibility.  */
11175   attr = dwarf2_attr (die, DW_AT_accessibility, cu);
11176   if (attr)
11177     accessibility = DW_UNSND (attr);
11178   else
11179     accessibility = dwarf2_default_access_attribute (die, cu);
11180   switch (accessibility)
11181     {
11182     case DW_ACCESS_private:
11183       fnp->is_private = 1;
11184       break;
11185     case DW_ACCESS_protected:
11186       fnp->is_protected = 1;
11187       break;
11188     }
11189
11190   /* Check for artificial methods.  */
11191   attr = dwarf2_attr (die, DW_AT_artificial, cu);
11192   if (attr && DW_UNSND (attr) != 0)
11193     fnp->is_artificial = 1;
11194
11195   fnp->is_constructor = dwarf2_is_constructor (die, cu);
11196
11197   /* Get index in virtual function table if it is a virtual member
11198      function.  For older versions of GCC, this is an offset in the
11199      appropriate virtual table, as specified by DW_AT_containing_type.
11200      For everyone else, it is an expression to be evaluated relative
11201      to the object address.  */
11202
11203   attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
11204   if (attr)
11205     {
11206       if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
11207         {
11208           if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
11209             {
11210               /* Old-style GCC.  */
11211               fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
11212             }
11213           else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
11214                    || (DW_BLOCK (attr)->size > 1
11215                        && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
11216                        && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
11217             {
11218               struct dwarf_block blk;
11219               int offset;
11220
11221               offset = (DW_BLOCK (attr)->data[0] == DW_OP_deref
11222                         ? 1 : 2);
11223               blk.size = DW_BLOCK (attr)->size - offset;
11224               blk.data = DW_BLOCK (attr)->data + offset;
11225               fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
11226               if ((fnp->voffset % cu->header.addr_size) != 0)
11227                 dwarf2_complex_location_expr_complaint ();
11228               else
11229                 fnp->voffset /= cu->header.addr_size;
11230               fnp->voffset += 2;
11231             }
11232           else
11233             dwarf2_complex_location_expr_complaint ();
11234
11235           if (!fnp->fcontext)
11236             fnp->fcontext = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
11237         }
11238       else if (attr_form_is_section_offset (attr))
11239         {
11240           dwarf2_complex_location_expr_complaint ();
11241         }
11242       else
11243         {
11244           dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
11245                                                  fieldname);
11246         }
11247     }
11248   else
11249     {
11250       attr = dwarf2_attr (die, DW_AT_virtuality, cu);
11251       if (attr && DW_UNSND (attr))
11252         {
11253           /* GCC does this, as of 2008-08-25; PR debug/37237.  */
11254           complaint (&symfile_complaints,
11255                      _("Member function \"%s\" (offset %d) is virtual "
11256                        "but the vtable offset is not specified"),
11257                      fieldname, die->offset.sect_off);
11258           ALLOCATE_CPLUS_STRUCT_TYPE (type);
11259           TYPE_CPLUS_DYNAMIC (type) = 1;
11260         }
11261     }
11262 }
11263
11264 /* Create the vector of member function fields, and attach it to the type.  */
11265
11266 static void
11267 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
11268                                  struct dwarf2_cu *cu)
11269 {
11270   struct fnfieldlist *flp;
11271   int i;
11272
11273   if (cu->language == language_ada)
11274     error (_("unexpected member functions in Ada type"));
11275
11276   ALLOCATE_CPLUS_STRUCT_TYPE (type);
11277   TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
11278     TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
11279
11280   for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
11281     {
11282       struct nextfnfield *nfp = flp->head;
11283       struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
11284       int k;
11285
11286       TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
11287       TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
11288       fn_flp->fn_fields = (struct fn_field *)
11289         TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
11290       for (k = flp->length; (k--, nfp); nfp = nfp->next)
11291         fn_flp->fn_fields[k] = nfp->fnfield;
11292     }
11293
11294   TYPE_NFN_FIELDS (type) = fip->nfnfields;
11295 }
11296
11297 /* Returns non-zero if NAME is the name of a vtable member in CU's
11298    language, zero otherwise.  */
11299 static int
11300 is_vtable_name (const char *name, struct dwarf2_cu *cu)
11301 {
11302   static const char vptr[] = "_vptr";
11303   static const char vtable[] = "vtable";
11304
11305   /* Look for the C++ and Java forms of the vtable.  */
11306   if ((cu->language == language_java
11307        && strncmp (name, vtable, sizeof (vtable) - 1) == 0)
11308        || (strncmp (name, vptr, sizeof (vptr) - 1) == 0
11309        && is_cplus_marker (name[sizeof (vptr) - 1])))
11310     return 1;
11311
11312   return 0;
11313 }
11314
11315 /* GCC outputs unnamed structures that are really pointers to member
11316    functions, with the ABI-specified layout.  If TYPE describes
11317    such a structure, smash it into a member function type.
11318
11319    GCC shouldn't do this; it should just output pointer to member DIEs.
11320    This is GCC PR debug/28767.  */
11321
11322 static void
11323 quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
11324 {
11325   struct type *pfn_type, *domain_type, *new_type;
11326
11327   /* Check for a structure with no name and two children.  */
11328   if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
11329     return;
11330
11331   /* Check for __pfn and __delta members.  */
11332   if (TYPE_FIELD_NAME (type, 0) == NULL
11333       || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
11334       || TYPE_FIELD_NAME (type, 1) == NULL
11335       || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
11336     return;
11337
11338   /* Find the type of the method.  */
11339   pfn_type = TYPE_FIELD_TYPE (type, 0);
11340   if (pfn_type == NULL
11341       || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
11342       || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
11343     return;
11344
11345   /* Look for the "this" argument.  */
11346   pfn_type = TYPE_TARGET_TYPE (pfn_type);
11347   if (TYPE_NFIELDS (pfn_type) == 0
11348       /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
11349       || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
11350     return;
11351
11352   domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
11353   new_type = alloc_type (objfile);
11354   smash_to_method_type (new_type, domain_type, TYPE_TARGET_TYPE (pfn_type),
11355                         TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
11356                         TYPE_VARARGS (pfn_type));
11357   smash_to_methodptr_type (type, new_type);
11358 }
11359
11360 /* Return non-zero if the CU's PRODUCER string matches the Intel C/C++ compiler
11361    (icc).  */
11362
11363 static int
11364 producer_is_icc (struct dwarf2_cu *cu)
11365 {
11366   if (!cu->checked_producer)
11367     check_producer (cu);
11368
11369   return cu->producer_is_icc;
11370 }
11371
11372 /* Called when we find the DIE that starts a structure or union scope
11373    (definition) to create a type for the structure or union.  Fill in
11374    the type's name and general properties; the members will not be
11375    processed until process_structure_scope.
11376
11377    NOTE: we need to call these functions regardless of whether or not the
11378    DIE has a DW_AT_name attribute, since it might be an anonymous
11379    structure or union.  This gets the type entered into our set of
11380    user defined types.
11381
11382    However, if the structure is incomplete (an opaque struct/union)
11383    then suppress creating a symbol table entry for it since gdb only
11384    wants to find the one with the complete definition.  Note that if
11385    it is complete, we just call new_symbol, which does it's own
11386    checking about whether the struct/union is anonymous or not (and
11387    suppresses creating a symbol table entry itself).  */
11388
11389 static struct type *
11390 read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
11391 {
11392   struct objfile *objfile = cu->objfile;
11393   struct type *type;
11394   struct attribute *attr;
11395   const char *name;
11396
11397   /* If the definition of this type lives in .debug_types, read that type.
11398      Don't follow DW_AT_specification though, that will take us back up
11399      the chain and we want to go down.  */
11400   attr = dwarf2_attr_no_follow (die, DW_AT_signature);
11401   if (attr)
11402     {
11403       type = get_DW_AT_signature_type (die, attr, cu);
11404
11405       /* The type's CU may not be the same as CU.
11406          Ensure TYPE is recorded with CU in die_type_hash.  */
11407       return set_die_type (die, type, cu);
11408     }
11409
11410   type = alloc_type (objfile);
11411   INIT_CPLUS_SPECIFIC (type);
11412
11413   name = dwarf2_name (die, cu);
11414   if (name != NULL)
11415     {
11416       if (cu->language == language_cplus
11417           || cu->language == language_java)
11418         {
11419           const char *full_name = dwarf2_full_name (name, die, cu);
11420
11421           /* dwarf2_full_name might have already finished building the DIE's
11422              type.  If so, there is no need to continue.  */
11423           if (get_die_type (die, cu) != NULL)
11424             return get_die_type (die, cu);
11425
11426           TYPE_TAG_NAME (type) = full_name;
11427           if (die->tag == DW_TAG_structure_type
11428               || die->tag == DW_TAG_class_type)
11429             TYPE_NAME (type) = TYPE_TAG_NAME (type);
11430         }
11431       else
11432         {
11433           /* The name is already allocated along with this objfile, so
11434              we don't need to duplicate it for the type.  */
11435           TYPE_TAG_NAME (type) = name;
11436           if (die->tag == DW_TAG_class_type)
11437             TYPE_NAME (type) = TYPE_TAG_NAME (type);
11438         }
11439     }
11440
11441   if (die->tag == DW_TAG_structure_type)
11442     {
11443       TYPE_CODE (type) = TYPE_CODE_STRUCT;
11444     }
11445   else if (die->tag == DW_TAG_union_type)
11446     {
11447       TYPE_CODE (type) = TYPE_CODE_UNION;
11448     }
11449   else
11450     {
11451       TYPE_CODE (type) = TYPE_CODE_CLASS;
11452     }
11453
11454   if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
11455     TYPE_DECLARED_CLASS (type) = 1;
11456
11457   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11458   if (attr)
11459     {
11460       TYPE_LENGTH (type) = DW_UNSND (attr);
11461     }
11462   else
11463     {
11464       TYPE_LENGTH (type) = 0;
11465     }
11466
11467   if (producer_is_icc (cu))
11468     {
11469       /* ICC does not output the required DW_AT_declaration
11470          on incomplete types, but gives them a size of zero.  */
11471     }
11472   else
11473     TYPE_STUB_SUPPORTED (type) = 1;
11474
11475   if (die_is_declaration (die, cu))
11476     TYPE_STUB (type) = 1;
11477   else if (attr == NULL && die->child == NULL
11478            && producer_is_realview (cu->producer))
11479     /* RealView does not output the required DW_AT_declaration
11480        on incomplete types.  */
11481     TYPE_STUB (type) = 1;
11482
11483   /* We need to add the type field to the die immediately so we don't
11484      infinitely recurse when dealing with pointers to the structure
11485      type within the structure itself.  */
11486   set_die_type (die, type, cu);
11487
11488   /* set_die_type should be already done.  */
11489   set_descriptive_type (type, die, cu);
11490
11491   return type;
11492 }
11493
11494 /* Finish creating a structure or union type, including filling in
11495    its members and creating a symbol for it.  */
11496
11497 static void
11498 process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
11499 {
11500   struct objfile *objfile = cu->objfile;
11501   struct die_info *child_die = die->child;
11502   struct type *type;
11503
11504   type = get_die_type (die, cu);
11505   if (type == NULL)
11506     type = read_structure_type (die, cu);
11507
11508   if (die->child != NULL && ! die_is_declaration (die, cu))
11509     {
11510       struct field_info fi;
11511       struct die_info *child_die;
11512       VEC (symbolp) *template_args = NULL;
11513       struct cleanup *back_to = make_cleanup (null_cleanup, 0);
11514
11515       memset (&fi, 0, sizeof (struct field_info));
11516
11517       child_die = die->child;
11518
11519       while (child_die && child_die->tag)
11520         {
11521           if (child_die->tag == DW_TAG_member
11522               || child_die->tag == DW_TAG_variable)
11523             {
11524               /* NOTE: carlton/2002-11-05: A C++ static data member
11525                  should be a DW_TAG_member that is a declaration, but
11526                  all versions of G++ as of this writing (so through at
11527                  least 3.2.1) incorrectly generate DW_TAG_variable
11528                  tags for them instead.  */
11529               dwarf2_add_field (&fi, child_die, cu);
11530             }
11531           else if (child_die->tag == DW_TAG_subprogram)
11532             {
11533               /* C++ member function.  */
11534               dwarf2_add_member_fn (&fi, child_die, type, cu);
11535             }
11536           else if (child_die->tag == DW_TAG_inheritance)
11537             {
11538               /* C++ base class field.  */
11539               dwarf2_add_field (&fi, child_die, cu);
11540             }
11541           else if (child_die->tag == DW_TAG_typedef)
11542             dwarf2_add_typedef (&fi, child_die, cu);
11543           else if (child_die->tag == DW_TAG_template_type_param
11544                    || child_die->tag == DW_TAG_template_value_param)
11545             {
11546               struct symbol *arg = new_symbol (child_die, NULL, cu);
11547
11548               if (arg != NULL)
11549                 VEC_safe_push (symbolp, template_args, arg);
11550             }
11551
11552           child_die = sibling_die (child_die);
11553         }
11554
11555       /* Attach template arguments to type.  */
11556       if (! VEC_empty (symbolp, template_args))
11557         {
11558           ALLOCATE_CPLUS_STRUCT_TYPE (type);
11559           TYPE_N_TEMPLATE_ARGUMENTS (type)
11560             = VEC_length (symbolp, template_args);
11561           TYPE_TEMPLATE_ARGUMENTS (type)
11562             = obstack_alloc (&objfile->objfile_obstack,
11563                              (TYPE_N_TEMPLATE_ARGUMENTS (type)
11564                               * sizeof (struct symbol *)));
11565           memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
11566                   VEC_address (symbolp, template_args),
11567                   (TYPE_N_TEMPLATE_ARGUMENTS (type)
11568                    * sizeof (struct symbol *)));
11569           VEC_free (symbolp, template_args);
11570         }
11571
11572       /* Attach fields and member functions to the type.  */
11573       if (fi.nfields)
11574         dwarf2_attach_fields_to_type (&fi, type, cu);
11575       if (fi.nfnfields)
11576         {
11577           dwarf2_attach_fn_fields_to_type (&fi, type, cu);
11578
11579           /* Get the type which refers to the base class (possibly this
11580              class itself) which contains the vtable pointer for the current
11581              class from the DW_AT_containing_type attribute.  This use of
11582              DW_AT_containing_type is a GNU extension.  */
11583
11584           if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
11585             {
11586               struct type *t = die_containing_type (die, cu);
11587
11588               TYPE_VPTR_BASETYPE (type) = t;
11589               if (type == t)
11590                 {
11591                   int i;
11592
11593                   /* Our own class provides vtbl ptr.  */
11594                   for (i = TYPE_NFIELDS (t) - 1;
11595                        i >= TYPE_N_BASECLASSES (t);
11596                        --i)
11597                     {
11598                       const char *fieldname = TYPE_FIELD_NAME (t, i);
11599
11600                       if (is_vtable_name (fieldname, cu))
11601                         {
11602                           TYPE_VPTR_FIELDNO (type) = i;
11603                           break;
11604                         }
11605                     }
11606
11607                   /* Complain if virtual function table field not found.  */
11608                   if (i < TYPE_N_BASECLASSES (t))
11609                     complaint (&symfile_complaints,
11610                                _("virtual function table pointer "
11611                                  "not found when defining class '%s'"),
11612                                TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
11613                                "");
11614                 }
11615               else
11616                 {
11617                   TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
11618                 }
11619             }
11620           else if (cu->producer
11621                    && strncmp (cu->producer,
11622                                "IBM(R) XL C/C++ Advanced Edition", 32) == 0)
11623             {
11624               /* The IBM XLC compiler does not provide direct indication
11625                  of the containing type, but the vtable pointer is
11626                  always named __vfp.  */
11627
11628               int i;
11629
11630               for (i = TYPE_NFIELDS (type) - 1;
11631                    i >= TYPE_N_BASECLASSES (type);
11632                    --i)
11633                 {
11634                   if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
11635                     {
11636                       TYPE_VPTR_FIELDNO (type) = i;
11637                       TYPE_VPTR_BASETYPE (type) = type;
11638                       break;
11639                     }
11640                 }
11641             }
11642         }
11643
11644       /* Copy fi.typedef_field_list linked list elements content into the
11645          allocated array TYPE_TYPEDEF_FIELD_ARRAY (type).  */
11646       if (fi.typedef_field_list)
11647         {
11648           int i = fi.typedef_field_list_count;
11649
11650           ALLOCATE_CPLUS_STRUCT_TYPE (type);
11651           TYPE_TYPEDEF_FIELD_ARRAY (type)
11652             = TYPE_ALLOC (type, sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * i);
11653           TYPE_TYPEDEF_FIELD_COUNT (type) = i;
11654
11655           /* Reverse the list order to keep the debug info elements order.  */
11656           while (--i >= 0)
11657             {
11658               struct typedef_field *dest, *src;
11659
11660               dest = &TYPE_TYPEDEF_FIELD (type, i);
11661               src = &fi.typedef_field_list->field;
11662               fi.typedef_field_list = fi.typedef_field_list->next;
11663               *dest = *src;
11664             }
11665         }
11666
11667       do_cleanups (back_to);
11668
11669       if (HAVE_CPLUS_STRUCT (type))
11670         TYPE_CPLUS_REALLY_JAVA (type) = cu->language == language_java;
11671     }
11672
11673   quirk_gcc_member_function_pointer (type, objfile);
11674
11675   /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
11676      snapshots) has been known to create a die giving a declaration
11677      for a class that has, as a child, a die giving a definition for a
11678      nested class.  So we have to process our children even if the
11679      current die is a declaration.  Normally, of course, a declaration
11680      won't have any children at all.  */
11681
11682   while (child_die != NULL && child_die->tag)
11683     {
11684       if (child_die->tag == DW_TAG_member
11685           || child_die->tag == DW_TAG_variable
11686           || child_die->tag == DW_TAG_inheritance
11687           || child_die->tag == DW_TAG_template_value_param
11688           || child_die->tag == DW_TAG_template_type_param)
11689         {
11690           /* Do nothing.  */
11691         }
11692       else
11693         process_die (child_die, cu);
11694
11695       child_die = sibling_die (child_die);
11696     }
11697
11698   /* Do not consider external references.  According to the DWARF standard,
11699      these DIEs are identified by the fact that they have no byte_size
11700      attribute, and a declaration attribute.  */
11701   if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
11702       || !die_is_declaration (die, cu))
11703     new_symbol (die, type, cu);
11704 }
11705
11706 /* Given a DW_AT_enumeration_type die, set its type.  We do not
11707    complete the type's fields yet, or create any symbols.  */
11708
11709 static struct type *
11710 read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
11711 {
11712   struct objfile *objfile = cu->objfile;
11713   struct type *type;
11714   struct attribute *attr;
11715   const char *name;
11716
11717   /* If the definition of this type lives in .debug_types, read that type.
11718      Don't follow DW_AT_specification though, that will take us back up
11719      the chain and we want to go down.  */
11720   attr = dwarf2_attr_no_follow (die, DW_AT_signature);
11721   if (attr)
11722     {
11723       type = get_DW_AT_signature_type (die, attr, cu);
11724
11725       /* The type's CU may not be the same as CU.
11726          Ensure TYPE is recorded with CU in die_type_hash.  */
11727       return set_die_type (die, type, cu);
11728     }
11729
11730   type = alloc_type (objfile);
11731
11732   TYPE_CODE (type) = TYPE_CODE_ENUM;
11733   name = dwarf2_full_name (NULL, die, cu);
11734   if (name != NULL)
11735     TYPE_TAG_NAME (type) = name;
11736
11737   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11738   if (attr)
11739     {
11740       TYPE_LENGTH (type) = DW_UNSND (attr);
11741     }
11742   else
11743     {
11744       TYPE_LENGTH (type) = 0;
11745     }
11746
11747   /* The enumeration DIE can be incomplete.  In Ada, any type can be
11748      declared as private in the package spec, and then defined only
11749      inside the package body.  Such types are known as Taft Amendment
11750      Types.  When another package uses such a type, an incomplete DIE
11751      may be generated by the compiler.  */
11752   if (die_is_declaration (die, cu))
11753     TYPE_STUB (type) = 1;
11754
11755   return set_die_type (die, type, cu);
11756 }
11757
11758 /* Given a pointer to a die which begins an enumeration, process all
11759    the dies that define the members of the enumeration, and create the
11760    symbol for the enumeration type.
11761
11762    NOTE: We reverse the order of the element list.  */
11763
11764 static void
11765 process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
11766 {
11767   struct type *this_type;
11768
11769   this_type = get_die_type (die, cu);
11770   if (this_type == NULL)
11771     this_type = read_enumeration_type (die, cu);
11772
11773   if (die->child != NULL)
11774     {
11775       struct die_info *child_die;
11776       struct symbol *sym;
11777       struct field *fields = NULL;
11778       int num_fields = 0;
11779       int unsigned_enum = 1;
11780       const char *name;
11781       int flag_enum = 1;
11782       ULONGEST mask = 0;
11783
11784       child_die = die->child;
11785       while (child_die && child_die->tag)
11786         {
11787           if (child_die->tag != DW_TAG_enumerator)
11788             {
11789               process_die (child_die, cu);
11790             }
11791           else
11792             {
11793               name = dwarf2_name (child_die, cu);
11794               if (name)
11795                 {
11796                   sym = new_symbol (child_die, this_type, cu);
11797                   if (SYMBOL_VALUE (sym) < 0)
11798                     {
11799                       unsigned_enum = 0;
11800                       flag_enum = 0;
11801                     }
11802                   else if ((mask & SYMBOL_VALUE (sym)) != 0)
11803                     flag_enum = 0;
11804                   else
11805                     mask |= SYMBOL_VALUE (sym);
11806
11807                   if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
11808                     {
11809                       fields = (struct field *)
11810                         xrealloc (fields,
11811                                   (num_fields + DW_FIELD_ALLOC_CHUNK)
11812                                   * sizeof (struct field));
11813                     }
11814
11815                   FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
11816                   FIELD_TYPE (fields[num_fields]) = NULL;
11817                   SET_FIELD_ENUMVAL (fields[num_fields], SYMBOL_VALUE (sym));
11818                   FIELD_BITSIZE (fields[num_fields]) = 0;
11819
11820                   num_fields++;
11821                 }
11822             }
11823
11824           child_die = sibling_die (child_die);
11825         }
11826
11827       if (num_fields)
11828         {
11829           TYPE_NFIELDS (this_type) = num_fields;
11830           TYPE_FIELDS (this_type) = (struct field *)
11831             TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
11832           memcpy (TYPE_FIELDS (this_type), fields,
11833                   sizeof (struct field) * num_fields);
11834           xfree (fields);
11835         }
11836       if (unsigned_enum)
11837         TYPE_UNSIGNED (this_type) = 1;
11838       if (flag_enum)
11839         TYPE_FLAG_ENUM (this_type) = 1;
11840     }
11841
11842   /* If we are reading an enum from a .debug_types unit, and the enum
11843      is a declaration, and the enum is not the signatured type in the
11844      unit, then we do not want to add a symbol for it.  Adding a
11845      symbol would in some cases obscure the true definition of the
11846      enum, giving users an incomplete type when the definition is
11847      actually available.  Note that we do not want to do this for all
11848      enums which are just declarations, because C++0x allows forward
11849      enum declarations.  */
11850   if (cu->per_cu->is_debug_types
11851       && die_is_declaration (die, cu))
11852     {
11853       struct signatured_type *sig_type;
11854
11855       sig_type = (struct signatured_type *) cu->per_cu;
11856       gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
11857       if (sig_type->type_offset_in_section.sect_off != die->offset.sect_off)
11858         return;
11859     }
11860
11861   new_symbol (die, this_type, cu);
11862 }
11863
11864 /* Extract all information from a DW_TAG_array_type DIE and put it in
11865    the DIE's type field.  For now, this only handles one dimensional
11866    arrays.  */
11867
11868 static struct type *
11869 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
11870 {
11871   struct objfile *objfile = cu->objfile;
11872   struct die_info *child_die;
11873   struct type *type;
11874   struct type *element_type, *range_type, *index_type;
11875   struct type **range_types = NULL;
11876   struct attribute *attr;
11877   int ndim = 0;
11878   struct cleanup *back_to;
11879   const char *name;
11880
11881   element_type = die_type (die, cu);
11882
11883   /* The die_type call above may have already set the type for this DIE.  */
11884   type = get_die_type (die, cu);
11885   if (type)
11886     return type;
11887
11888   /* Irix 6.2 native cc creates array types without children for
11889      arrays with unspecified length.  */
11890   if (die->child == NULL)
11891     {
11892       index_type = objfile_type (objfile)->builtin_int;
11893       range_type = create_range_type (NULL, index_type, 0, -1);
11894       type = create_array_type (NULL, element_type, range_type);
11895       return set_die_type (die, type, cu);
11896     }
11897
11898   back_to = make_cleanup (null_cleanup, NULL);
11899   child_die = die->child;
11900   while (child_die && child_die->tag)
11901     {
11902       if (child_die->tag == DW_TAG_subrange_type)
11903         {
11904           struct type *child_type = read_type_die (child_die, cu);
11905
11906           if (child_type != NULL)
11907             {
11908               /* The range type was succesfully read.  Save it for the
11909                  array type creation.  */
11910               if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
11911                 {
11912                   range_types = (struct type **)
11913                     xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
11914                               * sizeof (struct type *));
11915                   if (ndim == 0)
11916                     make_cleanup (free_current_contents, &range_types);
11917                 }
11918               range_types[ndim++] = child_type;
11919             }
11920         }
11921       child_die = sibling_die (child_die);
11922     }
11923
11924   /* Dwarf2 dimensions are output from left to right, create the
11925      necessary array types in backwards order.  */
11926
11927   type = element_type;
11928
11929   if (read_array_order (die, cu) == DW_ORD_col_major)
11930     {
11931       int i = 0;
11932
11933       while (i < ndim)
11934         type = create_array_type (NULL, type, range_types[i++]);
11935     }
11936   else
11937     {
11938       while (ndim-- > 0)
11939         type = create_array_type (NULL, type, range_types[ndim]);
11940     }
11941
11942   /* Understand Dwarf2 support for vector types (like they occur on
11943      the PowerPC w/ AltiVec).  Gcc just adds another attribute to the
11944      array type.  This is not part of the Dwarf2/3 standard yet, but a
11945      custom vendor extension.  The main difference between a regular
11946      array and the vector variant is that vectors are passed by value
11947      to functions.  */
11948   attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
11949   if (attr)
11950     make_vector_type (type);
11951
11952   /* The DIE may have DW_AT_byte_size set.  For example an OpenCL
11953      implementation may choose to implement triple vectors using this
11954      attribute.  */
11955   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11956   if (attr)
11957     {
11958       if (DW_UNSND (attr) >= TYPE_LENGTH (type))
11959         TYPE_LENGTH (type) = DW_UNSND (attr);
11960       else
11961         complaint (&symfile_complaints,
11962                    _("DW_AT_byte_size for array type smaller "
11963                      "than the total size of elements"));
11964     }
11965
11966   name = dwarf2_name (die, cu);
11967   if (name)
11968     TYPE_NAME (type) = name;
11969
11970   /* Install the type in the die.  */
11971   set_die_type (die, type, cu);
11972
11973   /* set_die_type should be already done.  */
11974   set_descriptive_type (type, die, cu);
11975
11976   do_cleanups (back_to);
11977
11978   return type;
11979 }
11980
11981 static enum dwarf_array_dim_ordering
11982 read_array_order (struct die_info *die, struct dwarf2_cu *cu)
11983 {
11984   struct attribute *attr;
11985
11986   attr = dwarf2_attr (die, DW_AT_ordering, cu);
11987
11988   if (attr) return DW_SND (attr);
11989
11990   /* GNU F77 is a special case, as at 08/2004 array type info is the
11991      opposite order to the dwarf2 specification, but data is still
11992      laid out as per normal fortran.
11993
11994      FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
11995      version checking.  */
11996
11997   if (cu->language == language_fortran
11998       && cu->producer && strstr (cu->producer, "GNU F77"))
11999     {
12000       return DW_ORD_row_major;
12001     }
12002
12003   switch (cu->language_defn->la_array_ordering)
12004     {
12005     case array_column_major:
12006       return DW_ORD_col_major;
12007     case array_row_major:
12008     default:
12009       return DW_ORD_row_major;
12010     };
12011 }
12012
12013 /* Extract all information from a DW_TAG_set_type DIE and put it in
12014    the DIE's type field.  */
12015
12016 static struct type *
12017 read_set_type (struct die_info *die, struct dwarf2_cu *cu)
12018 {
12019   struct type *domain_type, *set_type;
12020   struct attribute *attr;
12021
12022   domain_type = die_type (die, cu);
12023
12024   /* The die_type call above may have already set the type for this DIE.  */
12025   set_type = get_die_type (die, cu);
12026   if (set_type)
12027     return set_type;
12028
12029   set_type = create_set_type (NULL, domain_type);
12030
12031   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12032   if (attr)
12033     TYPE_LENGTH (set_type) = DW_UNSND (attr);
12034
12035   return set_die_type (die, set_type, cu);
12036 }
12037
12038 /* A helper for read_common_block that creates a locexpr baton.
12039    SYM is the symbol which we are marking as computed.
12040    COMMON_DIE is the DIE for the common block.
12041    COMMON_LOC is the location expression attribute for the common
12042    block itself.
12043    MEMBER_LOC is the location expression attribute for the particular
12044    member of the common block that we are processing.
12045    CU is the CU from which the above come.  */
12046
12047 static void
12048 mark_common_block_symbol_computed (struct symbol *sym,
12049                                    struct die_info *common_die,
12050                                    struct attribute *common_loc,
12051                                    struct attribute *member_loc,
12052                                    struct dwarf2_cu *cu)
12053 {
12054   struct objfile *objfile = dwarf2_per_objfile->objfile;
12055   struct dwarf2_locexpr_baton *baton;
12056   gdb_byte *ptr;
12057   unsigned int cu_off;
12058   enum bfd_endian byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
12059   LONGEST offset = 0;
12060
12061   gdb_assert (common_loc && member_loc);
12062   gdb_assert (attr_form_is_block (common_loc));
12063   gdb_assert (attr_form_is_block (member_loc)
12064               || attr_form_is_constant (member_loc));
12065
12066   baton = obstack_alloc (&objfile->objfile_obstack,
12067                          sizeof (struct dwarf2_locexpr_baton));
12068   baton->per_cu = cu->per_cu;
12069   gdb_assert (baton->per_cu);
12070
12071   baton->size = 5 /* DW_OP_call4 */ + 1 /* DW_OP_plus */;
12072
12073   if (attr_form_is_constant (member_loc))
12074     {
12075       offset = dwarf2_get_attr_constant_value (member_loc, 0);
12076       baton->size += 1 /* DW_OP_addr */ + cu->header.addr_size;
12077     }
12078   else
12079     baton->size += DW_BLOCK (member_loc)->size;
12080
12081   ptr = obstack_alloc (&objfile->objfile_obstack, baton->size);
12082   baton->data = ptr;
12083
12084   *ptr++ = DW_OP_call4;
12085   cu_off = common_die->offset.sect_off - cu->per_cu->offset.sect_off;
12086   store_unsigned_integer (ptr, 4, byte_order, cu_off);
12087   ptr += 4;
12088
12089   if (attr_form_is_constant (member_loc))
12090     {
12091       *ptr++ = DW_OP_addr;
12092       store_unsigned_integer (ptr, cu->header.addr_size, byte_order, offset);
12093       ptr += cu->header.addr_size;
12094     }
12095   else
12096     {
12097       /* We have to copy the data here, because DW_OP_call4 will only
12098          use a DW_AT_location attribute.  */
12099       memcpy (ptr, DW_BLOCK (member_loc)->data, DW_BLOCK (member_loc)->size);
12100       ptr += DW_BLOCK (member_loc)->size;
12101     }
12102
12103   *ptr++ = DW_OP_plus;
12104   gdb_assert (ptr - baton->data == baton->size);
12105
12106   SYMBOL_LOCATION_BATON (sym) = baton;
12107   SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
12108 }
12109
12110 /* Create appropriate locally-scoped variables for all the
12111    DW_TAG_common_block entries.  Also create a struct common_block
12112    listing all such variables for `info common'.  COMMON_BLOCK_DOMAIN
12113    is used to sepate the common blocks name namespace from regular
12114    variable names.  */
12115
12116 static void
12117 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
12118 {
12119   struct attribute *attr;
12120
12121   attr = dwarf2_attr (die, DW_AT_location, cu);
12122   if (attr)
12123     {
12124       /* Support the .debug_loc offsets.  */
12125       if (attr_form_is_block (attr))
12126         {
12127           /* Ok.  */
12128         }
12129       else if (attr_form_is_section_offset (attr))
12130         {
12131           dwarf2_complex_location_expr_complaint ();
12132           attr = NULL;
12133         }
12134       else
12135         {
12136           dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
12137                                                  "common block member");
12138           attr = NULL;
12139         }
12140     }
12141
12142   if (die->child != NULL)
12143     {
12144       struct objfile *objfile = cu->objfile;
12145       struct die_info *child_die;
12146       size_t n_entries = 0, size;
12147       struct common_block *common_block;
12148       struct symbol *sym;
12149
12150       for (child_die = die->child;
12151            child_die && child_die->tag;
12152            child_die = sibling_die (child_die))
12153         ++n_entries;
12154
12155       size = (sizeof (struct common_block)
12156               + (n_entries - 1) * sizeof (struct symbol *));
12157       common_block = obstack_alloc (&objfile->objfile_obstack, size);
12158       memset (common_block->contents, 0, n_entries * sizeof (struct symbol *));
12159       common_block->n_entries = 0;
12160
12161       for (child_die = die->child;
12162            child_die && child_die->tag;
12163            child_die = sibling_die (child_die))
12164         {
12165           /* Create the symbol in the DW_TAG_common_block block in the current
12166              symbol scope.  */
12167           sym = new_symbol (child_die, NULL, cu);
12168           if (sym != NULL)
12169             {
12170               struct attribute *member_loc;
12171
12172               common_block->contents[common_block->n_entries++] = sym;
12173
12174               member_loc = dwarf2_attr (child_die, DW_AT_data_member_location,
12175                                         cu);
12176               if (member_loc)
12177                 {
12178                   /* GDB has handled this for a long time, but it is
12179                      not specified by DWARF.  It seems to have been
12180                      emitted by gfortran at least as recently as:
12181                      http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23057.  */
12182                   complaint (&symfile_complaints,
12183                              _("Variable in common block has "
12184                                "DW_AT_data_member_location "
12185                                "- DIE at 0x%x [in module %s]"),
12186                              child_die->offset.sect_off, cu->objfile->name);
12187
12188                   if (attr_form_is_section_offset (member_loc))
12189                     dwarf2_complex_location_expr_complaint ();
12190                   else if (attr_form_is_constant (member_loc)
12191                            || attr_form_is_block (member_loc))
12192                     {
12193                       if (attr)
12194                         mark_common_block_symbol_computed (sym, die, attr,
12195                                                            member_loc, cu);
12196                     }
12197                   else
12198                     dwarf2_complex_location_expr_complaint ();
12199                 }
12200             }
12201         }
12202
12203       sym = new_symbol (die, objfile_type (objfile)->builtin_void, cu);
12204       SYMBOL_VALUE_COMMON_BLOCK (sym) = common_block;
12205     }
12206 }
12207
12208 /* Create a type for a C++ namespace.  */
12209
12210 static struct type *
12211 read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
12212 {
12213   struct objfile *objfile = cu->objfile;
12214   const char *previous_prefix, *name;
12215   int is_anonymous;
12216   struct type *type;
12217
12218   /* For extensions, reuse the type of the original namespace.  */
12219   if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
12220     {
12221       struct die_info *ext_die;
12222       struct dwarf2_cu *ext_cu = cu;
12223
12224       ext_die = dwarf2_extension (die, &ext_cu);
12225       type = read_type_die (ext_die, ext_cu);
12226
12227       /* EXT_CU may not be the same as CU.
12228          Ensure TYPE is recorded with CU in die_type_hash.  */
12229       return set_die_type (die, type, cu);
12230     }
12231
12232   name = namespace_name (die, &is_anonymous, cu);
12233
12234   /* Now build the name of the current namespace.  */
12235
12236   previous_prefix = determine_prefix (die, cu);
12237   if (previous_prefix[0] != '\0')
12238     name = typename_concat (&objfile->objfile_obstack,
12239                             previous_prefix, name, 0, cu);
12240
12241   /* Create the type.  */
12242   type = init_type (TYPE_CODE_NAMESPACE, 0, 0, NULL,
12243                     objfile);
12244   TYPE_NAME (type) = name;
12245   TYPE_TAG_NAME (type) = TYPE_NAME (type);
12246
12247   return set_die_type (die, type, cu);
12248 }
12249
12250 /* Read a C++ namespace.  */
12251
12252 static void
12253 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
12254 {
12255   struct objfile *objfile = cu->objfile;
12256   int is_anonymous;
12257
12258   /* Add a symbol associated to this if we haven't seen the namespace
12259      before.  Also, add a using directive if it's an anonymous
12260      namespace.  */
12261
12262   if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
12263     {
12264       struct type *type;
12265
12266       type = read_type_die (die, cu);
12267       new_symbol (die, type, cu);
12268
12269       namespace_name (die, &is_anonymous, cu);
12270       if (is_anonymous)
12271         {
12272           const char *previous_prefix = determine_prefix (die, cu);
12273
12274           cp_add_using_directive (previous_prefix, TYPE_NAME (type), NULL,
12275                                   NULL, NULL, 0, &objfile->objfile_obstack);
12276         }
12277     }
12278
12279   if (die->child != NULL)
12280     {
12281       struct die_info *child_die = die->child;
12282
12283       while (child_die && child_die->tag)
12284         {
12285           process_die (child_die, cu);
12286           child_die = sibling_die (child_die);
12287         }
12288     }
12289 }
12290
12291 /* Read a Fortran module as type.  This DIE can be only a declaration used for
12292    imported module.  Still we need that type as local Fortran "use ... only"
12293    declaration imports depend on the created type in determine_prefix.  */
12294
12295 static struct type *
12296 read_module_type (struct die_info *die, struct dwarf2_cu *cu)
12297 {
12298   struct objfile *objfile = cu->objfile;
12299   const char *module_name;
12300   struct type *type;
12301
12302   module_name = dwarf2_name (die, cu);
12303   if (!module_name)
12304     complaint (&symfile_complaints,
12305                _("DW_TAG_module has no name, offset 0x%x"),
12306                die->offset.sect_off);
12307   type = init_type (TYPE_CODE_MODULE, 0, 0, module_name, objfile);
12308
12309   /* determine_prefix uses TYPE_TAG_NAME.  */
12310   TYPE_TAG_NAME (type) = TYPE_NAME (type);
12311
12312   return set_die_type (die, type, cu);
12313 }
12314
12315 /* Read a Fortran module.  */
12316
12317 static void
12318 read_module (struct die_info *die, struct dwarf2_cu *cu)
12319 {
12320   struct die_info *child_die = die->child;
12321
12322   while (child_die && child_die->tag)
12323     {
12324       process_die (child_die, cu);
12325       child_die = sibling_die (child_die);
12326     }
12327 }
12328
12329 /* Return the name of the namespace represented by DIE.  Set
12330    *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
12331    namespace.  */
12332
12333 static const char *
12334 namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
12335 {
12336   struct die_info *current_die;
12337   const char *name = NULL;
12338
12339   /* Loop through the extensions until we find a name.  */
12340
12341   for (current_die = die;
12342        current_die != NULL;
12343        current_die = dwarf2_extension (die, &cu))
12344     {
12345       name = dwarf2_name (current_die, cu);
12346       if (name != NULL)
12347         break;
12348     }
12349
12350   /* Is it an anonymous namespace?  */
12351
12352   *is_anonymous = (name == NULL);
12353   if (*is_anonymous)
12354     name = CP_ANONYMOUS_NAMESPACE_STR;
12355
12356   return name;
12357 }
12358
12359 /* Extract all information from a DW_TAG_pointer_type DIE and add to
12360    the user defined type vector.  */
12361
12362 static struct type *
12363 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
12364 {
12365   struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
12366   struct comp_unit_head *cu_header = &cu->header;
12367   struct type *type;
12368   struct attribute *attr_byte_size;
12369   struct attribute *attr_address_class;
12370   int byte_size, addr_class;
12371   struct type *target_type;
12372
12373   target_type = die_type (die, cu);
12374
12375   /* The die_type call above may have already set the type for this DIE.  */
12376   type = get_die_type (die, cu);
12377   if (type)
12378     return type;
12379
12380   type = lookup_pointer_type (target_type);
12381
12382   attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
12383   if (attr_byte_size)
12384     byte_size = DW_UNSND (attr_byte_size);
12385   else
12386     byte_size = cu_header->addr_size;
12387
12388   attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
12389   if (attr_address_class)
12390     addr_class = DW_UNSND (attr_address_class);
12391   else
12392     addr_class = DW_ADDR_none;
12393
12394   /* If the pointer size or address class is different than the
12395      default, create a type variant marked as such and set the
12396      length accordingly.  */
12397   if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
12398     {
12399       if (gdbarch_address_class_type_flags_p (gdbarch))
12400         {
12401           int type_flags;
12402
12403           type_flags = gdbarch_address_class_type_flags
12404                          (gdbarch, byte_size, addr_class);
12405           gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
12406                       == 0);
12407           type = make_type_with_address_space (type, type_flags);
12408         }
12409       else if (TYPE_LENGTH (type) != byte_size)
12410         {
12411           complaint (&symfile_complaints,
12412                      _("invalid pointer size %d"), byte_size);
12413         }
12414       else
12415         {
12416           /* Should we also complain about unhandled address classes?  */
12417         }
12418     }
12419
12420   TYPE_LENGTH (type) = byte_size;
12421   return set_die_type (die, type, cu);
12422 }
12423
12424 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
12425    the user defined type vector.  */
12426
12427 static struct type *
12428 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
12429 {
12430   struct type *type;
12431   struct type *to_type;
12432   struct type *domain;
12433
12434   to_type = die_type (die, cu);
12435   domain = die_containing_type (die, cu);
12436
12437   /* The calls above may have already set the type for this DIE.  */
12438   type = get_die_type (die, cu);
12439   if (type)
12440     return type;
12441
12442   if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
12443     type = lookup_methodptr_type (to_type);
12444   else if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_FUNC)
12445     {
12446       struct type *new_type = alloc_type (cu->objfile);
12447
12448       smash_to_method_type (new_type, domain, TYPE_TARGET_TYPE (to_type),
12449                             TYPE_FIELDS (to_type), TYPE_NFIELDS (to_type),
12450                             TYPE_VARARGS (to_type));
12451       type = lookup_methodptr_type (new_type);
12452     }
12453   else
12454     type = lookup_memberptr_type (to_type, domain);
12455
12456   return set_die_type (die, type, cu);
12457 }
12458
12459 /* Extract all information from a DW_TAG_reference_type DIE and add to
12460    the user defined type vector.  */
12461
12462 static struct type *
12463 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
12464 {
12465   struct comp_unit_head *cu_header = &cu->header;
12466   struct type *type, *target_type;
12467   struct attribute *attr;
12468
12469   target_type = die_type (die, cu);
12470
12471   /* The die_type call above may have already set the type for this DIE.  */
12472   type = get_die_type (die, cu);
12473   if (type)
12474     return type;
12475
12476   type = lookup_reference_type (target_type);
12477   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12478   if (attr)
12479     {
12480       TYPE_LENGTH (type) = DW_UNSND (attr);
12481     }
12482   else
12483     {
12484       TYPE_LENGTH (type) = cu_header->addr_size;
12485     }
12486   return set_die_type (die, type, cu);
12487 }
12488
12489 static struct type *
12490 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
12491 {
12492   struct type *base_type, *cv_type;
12493
12494   base_type = die_type (die, cu);
12495
12496   /* The die_type call above may have already set the type for this DIE.  */
12497   cv_type = get_die_type (die, cu);
12498   if (cv_type)
12499     return cv_type;
12500
12501   /* In case the const qualifier is applied to an array type, the element type
12502      is so qualified, not the array type (section 6.7.3 of C99).  */
12503   if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
12504     {
12505       struct type *el_type, *inner_array;
12506
12507       base_type = copy_type (base_type);
12508       inner_array = base_type;
12509
12510       while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
12511         {
12512           TYPE_TARGET_TYPE (inner_array) =
12513             copy_type (TYPE_TARGET_TYPE (inner_array));
12514           inner_array = TYPE_TARGET_TYPE (inner_array);
12515         }
12516
12517       el_type = TYPE_TARGET_TYPE (inner_array);
12518       TYPE_TARGET_TYPE (inner_array) =
12519         make_cv_type (1, TYPE_VOLATILE (el_type), el_type, NULL);
12520
12521       return set_die_type (die, base_type, cu);
12522     }
12523
12524   cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
12525   return set_die_type (die, cv_type, cu);
12526 }
12527
12528 static struct type *
12529 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
12530 {
12531   struct type *base_type, *cv_type;
12532
12533   base_type = die_type (die, cu);
12534
12535   /* The die_type call above may have already set the type for this DIE.  */
12536   cv_type = get_die_type (die, cu);
12537   if (cv_type)
12538     return cv_type;
12539
12540   cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
12541   return set_die_type (die, cv_type, cu);
12542 }
12543
12544 /* Handle DW_TAG_restrict_type.  */
12545
12546 static struct type *
12547 read_tag_restrict_type (struct die_info *die, struct dwarf2_cu *cu)
12548 {
12549   struct type *base_type, *cv_type;
12550
12551   base_type = die_type (die, cu);
12552
12553   /* The die_type call above may have already set the type for this DIE.  */
12554   cv_type = get_die_type (die, cu);
12555   if (cv_type)
12556     return cv_type;
12557
12558   cv_type = make_restrict_type (base_type);
12559   return set_die_type (die, cv_type, cu);
12560 }
12561
12562 /* Extract all information from a DW_TAG_string_type DIE and add to
12563    the user defined type vector.  It isn't really a user defined type,
12564    but it behaves like one, with other DIE's using an AT_user_def_type
12565    attribute to reference it.  */
12566
12567 static struct type *
12568 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
12569 {
12570   struct objfile *objfile = cu->objfile;
12571   struct gdbarch *gdbarch = get_objfile_arch (objfile);
12572   struct type *type, *range_type, *index_type, *char_type;
12573   struct attribute *attr;
12574   unsigned int length;
12575
12576   attr = dwarf2_attr (die, DW_AT_string_length, cu);
12577   if (attr)
12578     {
12579       length = DW_UNSND (attr);
12580     }
12581   else
12582     {
12583       /* Check for the DW_AT_byte_size attribute.  */
12584       attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12585       if (attr)
12586         {
12587           length = DW_UNSND (attr);
12588         }
12589       else
12590         {
12591           length = 1;
12592         }
12593     }
12594
12595   index_type = objfile_type (objfile)->builtin_int;
12596   range_type = create_range_type (NULL, index_type, 1, length);
12597   char_type = language_string_char_type (cu->language_defn, gdbarch);
12598   type = create_string_type (NULL, char_type, range_type);
12599
12600   return set_die_type (die, type, cu);
12601 }
12602
12603 /* Handle DIES due to C code like:
12604
12605    struct foo
12606    {
12607    int (*funcp)(int a, long l);
12608    int b;
12609    };
12610
12611    ('funcp' generates a DW_TAG_subroutine_type DIE).  */
12612
12613 static struct type *
12614 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
12615 {
12616   struct objfile *objfile = cu->objfile;
12617   struct type *type;            /* Type that this function returns.  */
12618   struct type *ftype;           /* Function that returns above type.  */
12619   struct attribute *attr;
12620
12621   type = die_type (die, cu);
12622
12623   /* The die_type call above may have already set the type for this DIE.  */
12624   ftype = get_die_type (die, cu);
12625   if (ftype)
12626     return ftype;
12627
12628   ftype = lookup_function_type (type);
12629
12630   /* All functions in C++, Pascal and Java have prototypes.  */
12631   attr = dwarf2_attr (die, DW_AT_prototyped, cu);
12632   if ((attr && (DW_UNSND (attr) != 0))
12633       || cu->language == language_cplus
12634       || cu->language == language_java
12635       || cu->language == language_pascal)
12636     TYPE_PROTOTYPED (ftype) = 1;
12637   else if (producer_is_realview (cu->producer))
12638     /* RealView does not emit DW_AT_prototyped.  We can not
12639        distinguish prototyped and unprototyped functions; default to
12640        prototyped, since that is more common in modern code (and
12641        RealView warns about unprototyped functions).  */
12642     TYPE_PROTOTYPED (ftype) = 1;
12643
12644   /* Store the calling convention in the type if it's available in
12645      the subroutine die.  Otherwise set the calling convention to
12646      the default value DW_CC_normal.  */
12647   attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
12648   if (attr)
12649     TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
12650   else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
12651     TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
12652   else
12653     TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
12654
12655   /* We need to add the subroutine type to the die immediately so
12656      we don't infinitely recurse when dealing with parameters
12657      declared as the same subroutine type.  */
12658   set_die_type (die, ftype, cu);
12659
12660   if (die->child != NULL)
12661     {
12662       struct type *void_type = objfile_type (objfile)->builtin_void;
12663       struct die_info *child_die;
12664       int nparams, iparams;
12665
12666       /* Count the number of parameters.
12667          FIXME: GDB currently ignores vararg functions, but knows about
12668          vararg member functions.  */
12669       nparams = 0;
12670       child_die = die->child;
12671       while (child_die && child_die->tag)
12672         {
12673           if (child_die->tag == DW_TAG_formal_parameter)
12674             nparams++;
12675           else if (child_die->tag == DW_TAG_unspecified_parameters)
12676             TYPE_VARARGS (ftype) = 1;
12677           child_die = sibling_die (child_die);
12678         }
12679
12680       /* Allocate storage for parameters and fill them in.  */
12681       TYPE_NFIELDS (ftype) = nparams;
12682       TYPE_FIELDS (ftype) = (struct field *)
12683         TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
12684
12685       /* TYPE_FIELD_TYPE must never be NULL.  Pre-fill the array to ensure it
12686          even if we error out during the parameters reading below.  */
12687       for (iparams = 0; iparams < nparams; iparams++)
12688         TYPE_FIELD_TYPE (ftype, iparams) = void_type;
12689
12690       iparams = 0;
12691       child_die = die->child;
12692       while (child_die && child_die->tag)
12693         {
12694           if (child_die->tag == DW_TAG_formal_parameter)
12695             {
12696               struct type *arg_type;
12697
12698               /* DWARF version 2 has no clean way to discern C++
12699                  static and non-static member functions.  G++ helps
12700                  GDB by marking the first parameter for non-static
12701                  member functions (which is the this pointer) as
12702                  artificial.  We pass this information to
12703                  dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
12704
12705                  DWARF version 3 added DW_AT_object_pointer, which GCC
12706                  4.5 does not yet generate.  */
12707               attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
12708               if (attr)
12709                 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
12710               else
12711                 {
12712                   TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
12713
12714                   /* GCC/43521: In java, the formal parameter
12715                      "this" is sometimes not marked with DW_AT_artificial.  */
12716                   if (cu->language == language_java)
12717                     {
12718                       const char *name = dwarf2_name (child_die, cu);
12719
12720                       if (name && !strcmp (name, "this"))
12721                         TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 1;
12722                     }
12723                 }
12724               arg_type = die_type (child_die, cu);
12725
12726               /* RealView does not mark THIS as const, which the testsuite
12727                  expects.  GCC marks THIS as const in method definitions,
12728                  but not in the class specifications (GCC PR 43053).  */
12729               if (cu->language == language_cplus && !TYPE_CONST (arg_type)
12730                   && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
12731                 {
12732                   int is_this = 0;
12733                   struct dwarf2_cu *arg_cu = cu;
12734                   const char *name = dwarf2_name (child_die, cu);
12735
12736                   attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
12737                   if (attr)
12738                     {
12739                       /* If the compiler emits this, use it.  */
12740                       if (follow_die_ref (die, attr, &arg_cu) == child_die)
12741                         is_this = 1;
12742                     }
12743                   else if (name && strcmp (name, "this") == 0)
12744                     /* Function definitions will have the argument names.  */
12745                     is_this = 1;
12746                   else if (name == NULL && iparams == 0)
12747                     /* Declarations may not have the names, so like
12748                        elsewhere in GDB, assume an artificial first
12749                        argument is "this".  */
12750                     is_this = 1;
12751
12752                   if (is_this)
12753                     arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
12754                                              arg_type, 0);
12755                 }
12756
12757               TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
12758               iparams++;
12759             }
12760           child_die = sibling_die (child_die);
12761         }
12762     }
12763
12764   return ftype;
12765 }
12766
12767 static struct type *
12768 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
12769 {
12770   struct objfile *objfile = cu->objfile;
12771   const char *name = NULL;
12772   struct type *this_type, *target_type;
12773
12774   name = dwarf2_full_name (NULL, die, cu);
12775   this_type = init_type (TYPE_CODE_TYPEDEF, 0,
12776                          TYPE_FLAG_TARGET_STUB, NULL, objfile);
12777   TYPE_NAME (this_type) = name;
12778   set_die_type (die, this_type, cu);
12779   target_type = die_type (die, cu);
12780   if (target_type != this_type)
12781     TYPE_TARGET_TYPE (this_type) = target_type;
12782   else
12783     {
12784       /* Self-referential typedefs are, it seems, not allowed by the DWARF
12785          spec and cause infinite loops in GDB.  */
12786       complaint (&symfile_complaints,
12787                  _("Self-referential DW_TAG_typedef "
12788                    "- DIE at 0x%x [in module %s]"),
12789                  die->offset.sect_off, objfile->name);
12790       TYPE_TARGET_TYPE (this_type) = NULL;
12791     }
12792   return this_type;
12793 }
12794
12795 /* Find a representation of a given base type and install
12796    it in the TYPE field of the die.  */
12797
12798 static struct type *
12799 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
12800 {
12801   struct objfile *objfile = cu->objfile;
12802   struct type *type;
12803   struct attribute *attr;
12804   int encoding = 0, size = 0;
12805   const char *name;
12806   enum type_code code = TYPE_CODE_INT;
12807   int type_flags = 0;
12808   struct type *target_type = NULL;
12809
12810   attr = dwarf2_attr (die, DW_AT_encoding, cu);
12811   if (attr)
12812     {
12813       encoding = DW_UNSND (attr);
12814     }
12815   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12816   if (attr)
12817     {
12818       size = DW_UNSND (attr);
12819     }
12820   name = dwarf2_name (die, cu);
12821   if (!name)
12822     {
12823       complaint (&symfile_complaints,
12824                  _("DW_AT_name missing from DW_TAG_base_type"));
12825     }
12826
12827   switch (encoding)
12828     {
12829       case DW_ATE_address:
12830         /* Turn DW_ATE_address into a void * pointer.  */
12831         code = TYPE_CODE_PTR;
12832         type_flags |= TYPE_FLAG_UNSIGNED;
12833         target_type = init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
12834         break;
12835       case DW_ATE_boolean:
12836         code = TYPE_CODE_BOOL;
12837         type_flags |= TYPE_FLAG_UNSIGNED;
12838         break;
12839       case DW_ATE_complex_float:
12840         code = TYPE_CODE_COMPLEX;
12841         target_type = init_type (TYPE_CODE_FLT, size / 2, 0, NULL, objfile);
12842         break;
12843       case DW_ATE_decimal_float:
12844         code = TYPE_CODE_DECFLOAT;
12845         break;
12846       case DW_ATE_float:
12847         code = TYPE_CODE_FLT;
12848         break;
12849       case DW_ATE_signed:
12850         break;
12851       case DW_ATE_unsigned:
12852         type_flags |= TYPE_FLAG_UNSIGNED;
12853         if (cu->language == language_fortran
12854             && name
12855             && strncmp (name, "character(", sizeof ("character(") - 1) == 0)
12856           code = TYPE_CODE_CHAR;
12857         break;
12858       case DW_ATE_signed_char:
12859         if (cu->language == language_ada || cu->language == language_m2
12860             || cu->language == language_pascal
12861             || cu->language == language_fortran)
12862           code = TYPE_CODE_CHAR;
12863         break;
12864       case DW_ATE_unsigned_char:
12865         if (cu->language == language_ada || cu->language == language_m2
12866             || cu->language == language_pascal
12867             || cu->language == language_fortran)
12868           code = TYPE_CODE_CHAR;
12869         type_flags |= TYPE_FLAG_UNSIGNED;
12870         break;
12871       case DW_ATE_UTF:
12872         /* We just treat this as an integer and then recognize the
12873            type by name elsewhere.  */
12874         break;
12875
12876       default:
12877         complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
12878                    dwarf_type_encoding_name (encoding));
12879         break;
12880     }
12881
12882   type = init_type (code, size, type_flags, NULL, objfile);
12883   TYPE_NAME (type) = name;
12884   TYPE_TARGET_TYPE (type) = target_type;
12885
12886   if (name && strcmp (name, "char") == 0)
12887     TYPE_NOSIGN (type) = 1;
12888
12889   return set_die_type (die, type, cu);
12890 }
12891
12892 /* Read the given DW_AT_subrange DIE.  */
12893
12894 static struct type *
12895 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
12896 {
12897   struct type *base_type, *orig_base_type;
12898   struct type *range_type;
12899   struct attribute *attr;
12900   LONGEST low, high;
12901   int low_default_is_valid;
12902   const char *name;
12903   LONGEST negative_mask;
12904
12905   orig_base_type = die_type (die, cu);
12906   /* If ORIG_BASE_TYPE is a typedef, it will not be TYPE_UNSIGNED,
12907      whereas the real type might be.  So, we use ORIG_BASE_TYPE when
12908      creating the range type, but we use the result of check_typedef
12909      when examining properties of the type.  */
12910   base_type = check_typedef (orig_base_type);
12911
12912   /* The die_type call above may have already set the type for this DIE.  */
12913   range_type = get_die_type (die, cu);
12914   if (range_type)
12915     return range_type;
12916
12917   /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
12918      omitting DW_AT_lower_bound.  */
12919   switch (cu->language)
12920     {
12921     case language_c:
12922     case language_cplus:
12923       low = 0;
12924       low_default_is_valid = 1;
12925       break;
12926     case language_fortran:
12927       low = 1;
12928       low_default_is_valid = 1;
12929       break;
12930     case language_d:
12931     case language_java:
12932     case language_objc:
12933       low = 0;
12934       low_default_is_valid = (cu->header.version >= 4);
12935       break;
12936     case language_ada:
12937     case language_m2:
12938     case language_pascal:
12939       low = 1;
12940       low_default_is_valid = (cu->header.version >= 4);
12941       break;
12942     default:
12943       low = 0;
12944       low_default_is_valid = 0;
12945       break;
12946     }
12947
12948   /* FIXME: For variable sized arrays either of these could be
12949      a variable rather than a constant value.  We'll allow it,
12950      but we don't know how to handle it.  */
12951   attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
12952   if (attr)
12953     low = dwarf2_get_attr_constant_value (attr, low);
12954   else if (!low_default_is_valid)
12955     complaint (&symfile_complaints, _("Missing DW_AT_lower_bound "
12956                                       "- DIE at 0x%x [in module %s]"),
12957                die->offset.sect_off, cu->objfile->name);
12958
12959   attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
12960   if (attr)
12961     {
12962       if (attr_form_is_block (attr) || is_ref_attr (attr))
12963         {
12964           /* GCC encodes arrays with unspecified or dynamic length
12965              with a DW_FORM_block1 attribute or a reference attribute.
12966              FIXME: GDB does not yet know how to handle dynamic
12967              arrays properly, treat them as arrays with unspecified
12968              length for now.
12969
12970              FIXME: jimb/2003-09-22: GDB does not really know
12971              how to handle arrays of unspecified length
12972              either; we just represent them as zero-length
12973              arrays.  Choose an appropriate upper bound given
12974              the lower bound we've computed above.  */
12975           high = low - 1;
12976         }
12977       else
12978         high = dwarf2_get_attr_constant_value (attr, 1);
12979     }
12980   else
12981     {
12982       attr = dwarf2_attr (die, DW_AT_count, cu);
12983       if (attr)
12984         {
12985           int count = dwarf2_get_attr_constant_value (attr, 1);
12986           high = low + count - 1;
12987         }
12988       else
12989         {
12990           /* Unspecified array length.  */
12991           high = low - 1;
12992         }
12993     }
12994
12995   /* Dwarf-2 specifications explicitly allows to create subrange types
12996      without specifying a base type.
12997      In that case, the base type must be set to the type of
12998      the lower bound, upper bound or count, in that order, if any of these
12999      three attributes references an object that has a type.
13000      If no base type is found, the Dwarf-2 specifications say that
13001      a signed integer type of size equal to the size of an address should
13002      be used.
13003      For the following C code: `extern char gdb_int [];'
13004      GCC produces an empty range DIE.
13005      FIXME: muller/2010-05-28: Possible references to object for low bound,
13006      high bound or count are not yet handled by this code.  */
13007   if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
13008     {
13009       struct objfile *objfile = cu->objfile;
13010       struct gdbarch *gdbarch = get_objfile_arch (objfile);
13011       int addr_size = gdbarch_addr_bit (gdbarch) /8;
13012       struct type *int_type = objfile_type (objfile)->builtin_int;
13013
13014       /* Test "int", "long int", and "long long int" objfile types,
13015          and select the first one having a size above or equal to the
13016          architecture address size.  */
13017       if (int_type && TYPE_LENGTH (int_type) >= addr_size)
13018         base_type = int_type;
13019       else
13020         {
13021           int_type = objfile_type (objfile)->builtin_long;
13022           if (int_type && TYPE_LENGTH (int_type) >= addr_size)
13023             base_type = int_type;
13024           else
13025             {
13026               int_type = objfile_type (objfile)->builtin_long_long;
13027               if (int_type && TYPE_LENGTH (int_type) >= addr_size)
13028                 base_type = int_type;
13029             }
13030         }
13031     }
13032
13033   negative_mask =
13034     (LONGEST) -1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1);
13035   if (!TYPE_UNSIGNED (base_type) && (low & negative_mask))
13036     low |= negative_mask;
13037   if (!TYPE_UNSIGNED (base_type) && (high & negative_mask))
13038     high |= negative_mask;
13039
13040   range_type = create_range_type (NULL, orig_base_type, low, high);
13041
13042   /* Mark arrays with dynamic length at least as an array of unspecified
13043      length.  GDB could check the boundary but before it gets implemented at
13044      least allow accessing the array elements.  */
13045   if (attr && attr_form_is_block (attr))
13046     TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
13047
13048   /* Ada expects an empty array on no boundary attributes.  */
13049   if (attr == NULL && cu->language != language_ada)
13050     TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
13051
13052   name = dwarf2_name (die, cu);
13053   if (name)
13054     TYPE_NAME (range_type) = name;
13055
13056   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
13057   if (attr)
13058     TYPE_LENGTH (range_type) = DW_UNSND (attr);
13059
13060   set_die_type (die, range_type, cu);
13061
13062   /* set_die_type should be already done.  */
13063   set_descriptive_type (range_type, die, cu);
13064
13065   return range_type;
13066 }
13067
13068 static struct type *
13069 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
13070 {
13071   struct type *type;
13072
13073   /* For now, we only support the C meaning of an unspecified type: void.  */
13074
13075   type = init_type (TYPE_CODE_VOID, 0, 0, NULL, cu->objfile);
13076   TYPE_NAME (type) = dwarf2_name (die, cu);
13077
13078   return set_die_type (die, type, cu);
13079 }
13080
13081 /* Read a single die and all its descendents.  Set the die's sibling
13082    field to NULL; set other fields in the die correctly, and set all
13083    of the descendents' fields correctly.  Set *NEW_INFO_PTR to the
13084    location of the info_ptr after reading all of those dies.  PARENT
13085    is the parent of the die in question.  */
13086
13087 static struct die_info *
13088 read_die_and_children (const struct die_reader_specs *reader,
13089                        const gdb_byte *info_ptr,
13090                        const gdb_byte **new_info_ptr,
13091                        struct die_info *parent)
13092 {
13093   struct die_info *die;
13094   const gdb_byte *cur_ptr;
13095   int has_children;
13096
13097   cur_ptr = read_full_die_1 (reader, &die, info_ptr, &has_children, 0);
13098   if (die == NULL)
13099     {
13100       *new_info_ptr = cur_ptr;
13101       return NULL;
13102     }
13103   store_in_ref_table (die, reader->cu);
13104
13105   if (has_children)
13106     die->child = read_die_and_siblings_1 (reader, cur_ptr, new_info_ptr, die);
13107   else
13108     {
13109       die->child = NULL;
13110       *new_info_ptr = cur_ptr;
13111     }
13112
13113   die->sibling = NULL;
13114   die->parent = parent;
13115   return die;
13116 }
13117
13118 /* Read a die, all of its descendents, and all of its siblings; set
13119    all of the fields of all of the dies correctly.  Arguments are as
13120    in read_die_and_children.  */
13121
13122 static struct die_info *
13123 read_die_and_siblings_1 (const struct die_reader_specs *reader,
13124                          const gdb_byte *info_ptr,
13125                          const gdb_byte **new_info_ptr,
13126                          struct die_info *parent)
13127 {
13128   struct die_info *first_die, *last_sibling;
13129   const gdb_byte *cur_ptr;
13130
13131   cur_ptr = info_ptr;
13132   first_die = last_sibling = NULL;
13133
13134   while (1)
13135     {
13136       struct die_info *die
13137         = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
13138
13139       if (die == NULL)
13140         {
13141           *new_info_ptr = cur_ptr;
13142           return first_die;
13143         }
13144
13145       if (!first_die)
13146         first_die = die;
13147       else
13148         last_sibling->sibling = die;
13149
13150       last_sibling = die;
13151     }
13152 }
13153
13154 /* Read a die, all of its descendents, and all of its siblings; set
13155    all of the fields of all of the dies correctly.  Arguments are as
13156    in read_die_and_children.
13157    This the main entry point for reading a DIE and all its children.  */
13158
13159 static struct die_info *
13160 read_die_and_siblings (const struct die_reader_specs *reader,
13161                        const gdb_byte *info_ptr,
13162                        const gdb_byte **new_info_ptr,
13163                        struct die_info *parent)
13164 {
13165   struct die_info *die = read_die_and_siblings_1 (reader, info_ptr,
13166                                                   new_info_ptr, parent);
13167
13168   if (dwarf2_die_debug)
13169     {
13170       fprintf_unfiltered (gdb_stdlog,
13171                           "Read die from %s@0x%x of %s:\n",
13172                           bfd_section_name (reader->abfd,
13173                                             reader->die_section->asection),
13174                           (unsigned) (info_ptr - reader->die_section->buffer),
13175                           bfd_get_filename (reader->abfd));
13176       dump_die (die, dwarf2_die_debug);
13177     }
13178
13179   return die;
13180 }
13181
13182 /* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
13183    attributes.
13184    The caller is responsible for filling in the extra attributes
13185    and updating (*DIEP)->num_attrs.
13186    Set DIEP to point to a newly allocated die with its information,
13187    except for its child, sibling, and parent fields.
13188    Set HAS_CHILDREN to tell whether the die has children or not.  */
13189
13190 static const gdb_byte *
13191 read_full_die_1 (const struct die_reader_specs *reader,
13192                  struct die_info **diep, const gdb_byte *info_ptr,
13193                  int *has_children, int num_extra_attrs)
13194 {
13195   unsigned int abbrev_number, bytes_read, i;
13196   sect_offset offset;
13197   struct abbrev_info *abbrev;
13198   struct die_info *die;
13199   struct dwarf2_cu *cu = reader->cu;
13200   bfd *abfd = reader->abfd;
13201
13202   offset.sect_off = info_ptr - reader->buffer;
13203   abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
13204   info_ptr += bytes_read;
13205   if (!abbrev_number)
13206     {
13207       *diep = NULL;
13208       *has_children = 0;
13209       return info_ptr;
13210     }
13211
13212   abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
13213   if (!abbrev)
13214     error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
13215            abbrev_number,
13216            bfd_get_filename (abfd));
13217
13218   die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
13219   die->offset = offset;
13220   die->tag = abbrev->tag;
13221   die->abbrev = abbrev_number;
13222
13223   /* Make the result usable.
13224      The caller needs to update num_attrs after adding the extra
13225      attributes.  */
13226   die->num_attrs = abbrev->num_attrs;
13227
13228   for (i = 0; i < abbrev->num_attrs; ++i)
13229     info_ptr = read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
13230                                info_ptr);
13231
13232   *diep = die;
13233   *has_children = abbrev->has_children;
13234   return info_ptr;
13235 }
13236
13237 /* Read a die and all its attributes.
13238    Set DIEP to point to a newly allocated die with its information,
13239    except for its child, sibling, and parent fields.
13240    Set HAS_CHILDREN to tell whether the die has children or not.  */
13241
13242 static const gdb_byte *
13243 read_full_die (const struct die_reader_specs *reader,
13244                struct die_info **diep, const gdb_byte *info_ptr,
13245                int *has_children)
13246 {
13247   const gdb_byte *result;
13248
13249   result = read_full_die_1 (reader, diep, info_ptr, has_children, 0);
13250
13251   if (dwarf2_die_debug)
13252     {
13253       fprintf_unfiltered (gdb_stdlog,
13254                           "Read die from %s@0x%x of %s:\n",
13255                           bfd_section_name (reader->abfd,
13256                                             reader->die_section->asection),
13257                           (unsigned) (info_ptr - reader->die_section->buffer),
13258                           bfd_get_filename (reader->abfd));
13259       dump_die (*diep, dwarf2_die_debug);
13260     }
13261
13262   return result;
13263 }
13264 \f
13265 /* Abbreviation tables.
13266
13267    In DWARF version 2, the description of the debugging information is
13268    stored in a separate .debug_abbrev section.  Before we read any
13269    dies from a section we read in all abbreviations and install them
13270    in a hash table.  */
13271
13272 /* Allocate space for a struct abbrev_info object in ABBREV_TABLE.  */
13273
13274 static struct abbrev_info *
13275 abbrev_table_alloc_abbrev (struct abbrev_table *abbrev_table)
13276 {
13277   struct abbrev_info *abbrev;
13278
13279   abbrev = (struct abbrev_info *)
13280     obstack_alloc (&abbrev_table->abbrev_obstack, sizeof (struct abbrev_info));
13281   memset (abbrev, 0, sizeof (struct abbrev_info));
13282   return abbrev;
13283 }
13284
13285 /* Add an abbreviation to the table.  */
13286
13287 static void
13288 abbrev_table_add_abbrev (struct abbrev_table *abbrev_table,
13289                          unsigned int abbrev_number,
13290                          struct abbrev_info *abbrev)
13291 {
13292   unsigned int hash_number;
13293
13294   hash_number = abbrev_number % ABBREV_HASH_SIZE;
13295   abbrev->next = abbrev_table->abbrevs[hash_number];
13296   abbrev_table->abbrevs[hash_number] = abbrev;
13297 }
13298
13299 /* Look up an abbrev in the table.
13300    Returns NULL if the abbrev is not found.  */
13301
13302 static struct abbrev_info *
13303 abbrev_table_lookup_abbrev (const struct abbrev_table *abbrev_table,
13304                             unsigned int abbrev_number)
13305 {
13306   unsigned int hash_number;
13307   struct abbrev_info *abbrev;
13308
13309   hash_number = abbrev_number % ABBREV_HASH_SIZE;
13310   abbrev = abbrev_table->abbrevs[hash_number];
13311
13312   while (abbrev)
13313     {
13314       if (abbrev->number == abbrev_number)
13315         return abbrev;
13316       abbrev = abbrev->next;
13317     }
13318   return NULL;
13319 }
13320
13321 /* Read in an abbrev table.  */
13322
13323 static struct abbrev_table *
13324 abbrev_table_read_table (struct dwarf2_section_info *section,
13325                          sect_offset offset)
13326 {
13327   struct objfile *objfile = dwarf2_per_objfile->objfile;
13328   bfd *abfd = section->asection->owner;
13329   struct abbrev_table *abbrev_table;
13330   const gdb_byte *abbrev_ptr;
13331   struct abbrev_info *cur_abbrev;
13332   unsigned int abbrev_number, bytes_read, abbrev_name;
13333   unsigned int abbrev_form;
13334   struct attr_abbrev *cur_attrs;
13335   unsigned int allocated_attrs;
13336
13337   abbrev_table = XMALLOC (struct abbrev_table);
13338   abbrev_table->offset = offset;
13339   obstack_init (&abbrev_table->abbrev_obstack);
13340   abbrev_table->abbrevs = obstack_alloc (&abbrev_table->abbrev_obstack,
13341                                          (ABBREV_HASH_SIZE
13342                                           * sizeof (struct abbrev_info *)));
13343   memset (abbrev_table->abbrevs, 0,
13344           ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
13345
13346   dwarf2_read_section (objfile, section);
13347   abbrev_ptr = section->buffer + offset.sect_off;
13348   abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13349   abbrev_ptr += bytes_read;
13350
13351   allocated_attrs = ATTR_ALLOC_CHUNK;
13352   cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
13353
13354   /* Loop until we reach an abbrev number of 0.  */
13355   while (abbrev_number)
13356     {
13357       cur_abbrev = abbrev_table_alloc_abbrev (abbrev_table);
13358
13359       /* read in abbrev header */
13360       cur_abbrev->number = abbrev_number;
13361       cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13362       abbrev_ptr += bytes_read;
13363       cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
13364       abbrev_ptr += 1;
13365
13366       /* now read in declarations */
13367       abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13368       abbrev_ptr += bytes_read;
13369       abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13370       abbrev_ptr += bytes_read;
13371       while (abbrev_name)
13372         {
13373           if (cur_abbrev->num_attrs == allocated_attrs)
13374             {
13375               allocated_attrs += ATTR_ALLOC_CHUNK;
13376               cur_attrs
13377                 = xrealloc (cur_attrs, (allocated_attrs
13378                                         * sizeof (struct attr_abbrev)));
13379             }
13380
13381           cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
13382           cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
13383           abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13384           abbrev_ptr += bytes_read;
13385           abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13386           abbrev_ptr += bytes_read;
13387         }
13388
13389       cur_abbrev->attrs = obstack_alloc (&abbrev_table->abbrev_obstack,
13390                                          (cur_abbrev->num_attrs
13391                                           * sizeof (struct attr_abbrev)));
13392       memcpy (cur_abbrev->attrs, cur_attrs,
13393               cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
13394
13395       abbrev_table_add_abbrev (abbrev_table, abbrev_number, cur_abbrev);
13396
13397       /* Get next abbreviation.
13398          Under Irix6 the abbreviations for a compilation unit are not
13399          always properly terminated with an abbrev number of 0.
13400          Exit loop if we encounter an abbreviation which we have
13401          already read (which means we are about to read the abbreviations
13402          for the next compile unit) or if the end of the abbreviation
13403          table is reached.  */
13404       if ((unsigned int) (abbrev_ptr - section->buffer) >= section->size)
13405         break;
13406       abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13407       abbrev_ptr += bytes_read;
13408       if (abbrev_table_lookup_abbrev (abbrev_table, abbrev_number) != NULL)
13409         break;
13410     }
13411
13412   xfree (cur_attrs);
13413   return abbrev_table;
13414 }
13415
13416 /* Free the resources held by ABBREV_TABLE.  */
13417
13418 static void
13419 abbrev_table_free (struct abbrev_table *abbrev_table)
13420 {
13421   obstack_free (&abbrev_table->abbrev_obstack, NULL);
13422   xfree (abbrev_table);
13423 }
13424
13425 /* Same as abbrev_table_free but as a cleanup.
13426    We pass in a pointer to the pointer to the table so that we can
13427    set the pointer to NULL when we're done.  It also simplifies
13428    build_type_unit_groups.  */
13429
13430 static void
13431 abbrev_table_free_cleanup (void *table_ptr)
13432 {
13433   struct abbrev_table **abbrev_table_ptr = table_ptr;
13434
13435   if (*abbrev_table_ptr != NULL)
13436     abbrev_table_free (*abbrev_table_ptr);
13437   *abbrev_table_ptr = NULL;
13438 }
13439
13440 /* Read the abbrev table for CU from ABBREV_SECTION.  */
13441
13442 static void
13443 dwarf2_read_abbrevs (struct dwarf2_cu *cu,
13444                      struct dwarf2_section_info *abbrev_section)
13445 {
13446   cu->abbrev_table =
13447     abbrev_table_read_table (abbrev_section, cu->header.abbrev_offset);
13448 }
13449
13450 /* Release the memory used by the abbrev table for a compilation unit.  */
13451
13452 static void
13453 dwarf2_free_abbrev_table (void *ptr_to_cu)
13454 {
13455   struct dwarf2_cu *cu = ptr_to_cu;
13456
13457   abbrev_table_free (cu->abbrev_table);
13458   /* Set this to NULL so that we SEGV if we try to read it later,
13459      and also because free_comp_unit verifies this is NULL.  */
13460   cu->abbrev_table = NULL;
13461 }
13462 \f
13463 /* Returns nonzero if TAG represents a type that we might generate a partial
13464    symbol for.  */
13465
13466 static int
13467 is_type_tag_for_partial (int tag)
13468 {
13469   switch (tag)
13470     {
13471 #if 0
13472     /* Some types that would be reasonable to generate partial symbols for,
13473        that we don't at present.  */
13474     case DW_TAG_array_type:
13475     case DW_TAG_file_type:
13476     case DW_TAG_ptr_to_member_type:
13477     case DW_TAG_set_type:
13478     case DW_TAG_string_type:
13479     case DW_TAG_subroutine_type:
13480 #endif
13481     case DW_TAG_base_type:
13482     case DW_TAG_class_type:
13483     case DW_TAG_interface_type:
13484     case DW_TAG_enumeration_type:
13485     case DW_TAG_structure_type:
13486     case DW_TAG_subrange_type:
13487     case DW_TAG_typedef:
13488     case DW_TAG_union_type:
13489       return 1;
13490     default:
13491       return 0;
13492     }
13493 }
13494
13495 /* Load all DIEs that are interesting for partial symbols into memory.  */
13496
13497 static struct partial_die_info *
13498 load_partial_dies (const struct die_reader_specs *reader,
13499                    const gdb_byte *info_ptr, int building_psymtab)
13500 {
13501   struct dwarf2_cu *cu = reader->cu;
13502   struct objfile *objfile = cu->objfile;
13503   struct partial_die_info *part_die;
13504   struct partial_die_info *parent_die, *last_die, *first_die = NULL;
13505   struct abbrev_info *abbrev;
13506   unsigned int bytes_read;
13507   unsigned int load_all = 0;
13508   int nesting_level = 1;
13509
13510   parent_die = NULL;
13511   last_die = NULL;
13512
13513   gdb_assert (cu->per_cu != NULL);
13514   if (cu->per_cu->load_all_dies)
13515     load_all = 1;
13516
13517   cu->partial_dies
13518     = htab_create_alloc_ex (cu->header.length / 12,
13519                             partial_die_hash,
13520                             partial_die_eq,
13521                             NULL,
13522                             &cu->comp_unit_obstack,
13523                             hashtab_obstack_allocate,
13524                             dummy_obstack_deallocate);
13525
13526   part_die = obstack_alloc (&cu->comp_unit_obstack,
13527                             sizeof (struct partial_die_info));
13528
13529   while (1)
13530     {
13531       abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
13532
13533       /* A NULL abbrev means the end of a series of children.  */
13534       if (abbrev == NULL)
13535         {
13536           if (--nesting_level == 0)
13537             {
13538               /* PART_DIE was probably the last thing allocated on the
13539                  comp_unit_obstack, so we could call obstack_free
13540                  here.  We don't do that because the waste is small,
13541                  and will be cleaned up when we're done with this
13542                  compilation unit.  This way, we're also more robust
13543                  against other users of the comp_unit_obstack.  */
13544               return first_die;
13545             }
13546           info_ptr += bytes_read;
13547           last_die = parent_die;
13548           parent_die = parent_die->die_parent;
13549           continue;
13550         }
13551
13552       /* Check for template arguments.  We never save these; if
13553          they're seen, we just mark the parent, and go on our way.  */
13554       if (parent_die != NULL
13555           && cu->language == language_cplus
13556           && (abbrev->tag == DW_TAG_template_type_param
13557               || abbrev->tag == DW_TAG_template_value_param))
13558         {
13559           parent_die->has_template_arguments = 1;
13560
13561           if (!load_all)
13562             {
13563               /* We don't need a partial DIE for the template argument.  */
13564               info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
13565               continue;
13566             }
13567         }
13568
13569       /* We only recurse into c++ subprograms looking for template arguments.
13570          Skip their other children.  */
13571       if (!load_all
13572           && cu->language == language_cplus
13573           && parent_die != NULL
13574           && parent_die->tag == DW_TAG_subprogram)
13575         {
13576           info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
13577           continue;
13578         }
13579
13580       /* Check whether this DIE is interesting enough to save.  Normally
13581          we would not be interested in members here, but there may be
13582          later variables referencing them via DW_AT_specification (for
13583          static members).  */
13584       if (!load_all
13585           && !is_type_tag_for_partial (abbrev->tag)
13586           && abbrev->tag != DW_TAG_constant
13587           && abbrev->tag != DW_TAG_enumerator
13588           && abbrev->tag != DW_TAG_subprogram
13589           && abbrev->tag != DW_TAG_lexical_block
13590           && abbrev->tag != DW_TAG_variable
13591           && abbrev->tag != DW_TAG_namespace
13592           && abbrev->tag != DW_TAG_module
13593           && abbrev->tag != DW_TAG_member
13594           && abbrev->tag != DW_TAG_imported_unit)
13595         {
13596           /* Otherwise we skip to the next sibling, if any.  */
13597           info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
13598           continue;
13599         }
13600
13601       info_ptr = read_partial_die (reader, part_die, abbrev, bytes_read,
13602                                    info_ptr);
13603
13604       /* This two-pass algorithm for processing partial symbols has a
13605          high cost in cache pressure.  Thus, handle some simple cases
13606          here which cover the majority of C partial symbols.  DIEs
13607          which neither have specification tags in them, nor could have
13608          specification tags elsewhere pointing at them, can simply be
13609          processed and discarded.
13610
13611          This segment is also optional; scan_partial_symbols and
13612          add_partial_symbol will handle these DIEs if we chain
13613          them in normally.  When compilers which do not emit large
13614          quantities of duplicate debug information are more common,
13615          this code can probably be removed.  */
13616
13617       /* Any complete simple types at the top level (pretty much all
13618          of them, for a language without namespaces), can be processed
13619          directly.  */
13620       if (parent_die == NULL
13621           && part_die->has_specification == 0
13622           && part_die->is_declaration == 0
13623           && ((part_die->tag == DW_TAG_typedef && !part_die->has_children)
13624               || part_die->tag == DW_TAG_base_type
13625               || part_die->tag == DW_TAG_subrange_type))
13626         {
13627           if (building_psymtab && part_die->name != NULL)
13628             add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
13629                                  VAR_DOMAIN, LOC_TYPEDEF,
13630                                  &objfile->static_psymbols,
13631                                  0, (CORE_ADDR) 0, cu->language, objfile);
13632           info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
13633           continue;
13634         }
13635
13636       /* The exception for DW_TAG_typedef with has_children above is
13637          a workaround of GCC PR debug/47510.  In the case of this complaint
13638          type_name_no_tag_or_error will error on such types later.
13639
13640          GDB skipped children of DW_TAG_typedef by the shortcut above and then
13641          it could not find the child DIEs referenced later, this is checked
13642          above.  In correct DWARF DW_TAG_typedef should have no children.  */
13643
13644       if (part_die->tag == DW_TAG_typedef && part_die->has_children)
13645         complaint (&symfile_complaints,
13646                    _("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
13647                      "- DIE at 0x%x [in module %s]"),
13648                    part_die->offset.sect_off, objfile->name);
13649
13650       /* If we're at the second level, and we're an enumerator, and
13651          our parent has no specification (meaning possibly lives in a
13652          namespace elsewhere), then we can add the partial symbol now
13653          instead of queueing it.  */
13654       if (part_die->tag == DW_TAG_enumerator
13655           && parent_die != NULL
13656           && parent_die->die_parent == NULL
13657           && parent_die->tag == DW_TAG_enumeration_type
13658           && parent_die->has_specification == 0)
13659         {
13660           if (part_die->name == NULL)
13661             complaint (&symfile_complaints,
13662                        _("malformed enumerator DIE ignored"));
13663           else if (building_psymtab)
13664             add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
13665                                  VAR_DOMAIN, LOC_CONST,
13666                                  (cu->language == language_cplus
13667                                   || cu->language == language_java)
13668                                  ? &objfile->global_psymbols
13669                                  : &objfile->static_psymbols,
13670                                  0, (CORE_ADDR) 0, cu->language, objfile);
13671
13672           info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
13673           continue;
13674         }
13675
13676       /* We'll save this DIE so link it in.  */
13677       part_die->die_parent = parent_die;
13678       part_die->die_sibling = NULL;
13679       part_die->die_child = NULL;
13680
13681       if (last_die && last_die == parent_die)
13682         last_die->die_child = part_die;
13683       else if (last_die)
13684         last_die->die_sibling = part_die;
13685
13686       last_die = part_die;
13687
13688       if (first_die == NULL)
13689         first_die = part_die;
13690
13691       /* Maybe add the DIE to the hash table.  Not all DIEs that we
13692          find interesting need to be in the hash table, because we
13693          also have the parent/sibling/child chains; only those that we
13694          might refer to by offset later during partial symbol reading.
13695
13696          For now this means things that might have be the target of a
13697          DW_AT_specification, DW_AT_abstract_origin, or
13698          DW_AT_extension.  DW_AT_extension will refer only to
13699          namespaces; DW_AT_abstract_origin refers to functions (and
13700          many things under the function DIE, but we do not recurse
13701          into function DIEs during partial symbol reading) and
13702          possibly variables as well; DW_AT_specification refers to
13703          declarations.  Declarations ought to have the DW_AT_declaration
13704          flag.  It happens that GCC forgets to put it in sometimes, but
13705          only for functions, not for types.
13706
13707          Adding more things than necessary to the hash table is harmless
13708          except for the performance cost.  Adding too few will result in
13709          wasted time in find_partial_die, when we reread the compilation
13710          unit with load_all_dies set.  */
13711
13712       if (load_all
13713           || abbrev->tag == DW_TAG_constant
13714           || abbrev->tag == DW_TAG_subprogram
13715           || abbrev->tag == DW_TAG_variable
13716           || abbrev->tag == DW_TAG_namespace
13717           || part_die->is_declaration)
13718         {
13719           void **slot;
13720
13721           slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
13722                                            part_die->offset.sect_off, INSERT);
13723           *slot = part_die;
13724         }
13725
13726       part_die = obstack_alloc (&cu->comp_unit_obstack,
13727                                 sizeof (struct partial_die_info));
13728
13729       /* For some DIEs we want to follow their children (if any).  For C
13730          we have no reason to follow the children of structures; for other
13731          languages we have to, so that we can get at method physnames
13732          to infer fully qualified class names, for DW_AT_specification,
13733          and for C++ template arguments.  For C++, we also look one level
13734          inside functions to find template arguments (if the name of the
13735          function does not already contain the template arguments).
13736
13737          For Ada, we need to scan the children of subprograms and lexical
13738          blocks as well because Ada allows the definition of nested
13739          entities that could be interesting for the debugger, such as
13740          nested subprograms for instance.  */
13741       if (last_die->has_children
13742           && (load_all
13743               || last_die->tag == DW_TAG_namespace
13744               || last_die->tag == DW_TAG_module
13745               || last_die->tag == DW_TAG_enumeration_type
13746               || (cu->language == language_cplus
13747                   && last_die->tag == DW_TAG_subprogram
13748                   && (last_die->name == NULL
13749                       || strchr (last_die->name, '<') == NULL))
13750               || (cu->language != language_c
13751                   && (last_die->tag == DW_TAG_class_type
13752                       || last_die->tag == DW_TAG_interface_type
13753                       || last_die->tag == DW_TAG_structure_type
13754                       || last_die->tag == DW_TAG_union_type))
13755               || (cu->language == language_ada
13756                   && (last_die->tag == DW_TAG_subprogram
13757                       || last_die->tag == DW_TAG_lexical_block))))
13758         {
13759           nesting_level++;
13760           parent_die = last_die;
13761           continue;
13762         }
13763
13764       /* Otherwise we skip to the next sibling, if any.  */
13765       info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
13766
13767       /* Back to the top, do it again.  */
13768     }
13769 }
13770
13771 /* Read a minimal amount of information into the minimal die structure.  */
13772
13773 static const gdb_byte *
13774 read_partial_die (const struct die_reader_specs *reader,
13775                   struct partial_die_info *part_die,
13776                   struct abbrev_info *abbrev, unsigned int abbrev_len,
13777                   const gdb_byte *info_ptr)
13778 {
13779   struct dwarf2_cu *cu = reader->cu;
13780   struct objfile *objfile = cu->objfile;
13781   const gdb_byte *buffer = reader->buffer;
13782   unsigned int i;
13783   struct attribute attr;
13784   int has_low_pc_attr = 0;
13785   int has_high_pc_attr = 0;
13786   int high_pc_relative = 0;
13787
13788   memset (part_die, 0, sizeof (struct partial_die_info));
13789
13790   part_die->offset.sect_off = info_ptr - buffer;
13791
13792   info_ptr += abbrev_len;
13793
13794   if (abbrev == NULL)
13795     return info_ptr;
13796
13797   part_die->tag = abbrev->tag;
13798   part_die->has_children = abbrev->has_children;
13799
13800   for (i = 0; i < abbrev->num_attrs; ++i)
13801     {
13802       info_ptr = read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
13803
13804       /* Store the data if it is of an attribute we want to keep in a
13805          partial symbol table.  */
13806       switch (attr.name)
13807         {
13808         case DW_AT_name:
13809           switch (part_die->tag)
13810             {
13811             case DW_TAG_compile_unit:
13812             case DW_TAG_partial_unit:
13813             case DW_TAG_type_unit:
13814               /* Compilation units have a DW_AT_name that is a filename, not
13815                  a source language identifier.  */
13816             case DW_TAG_enumeration_type:
13817             case DW_TAG_enumerator:
13818               /* These tags always have simple identifiers already; no need
13819                  to canonicalize them.  */
13820               part_die->name = DW_STRING (&attr);
13821               break;
13822             default:
13823               part_die->name
13824                 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
13825                                             &objfile->objfile_obstack);
13826               break;
13827             }
13828           break;
13829         case DW_AT_linkage_name:
13830         case DW_AT_MIPS_linkage_name:
13831           /* Note that both forms of linkage name might appear.  We
13832              assume they will be the same, and we only store the last
13833              one we see.  */
13834           if (cu->language == language_ada)
13835             part_die->name = DW_STRING (&attr);
13836           part_die->linkage_name = DW_STRING (&attr);
13837           break;
13838         case DW_AT_low_pc:
13839           has_low_pc_attr = 1;
13840           part_die->lowpc = DW_ADDR (&attr);
13841           break;
13842         case DW_AT_high_pc:
13843           has_high_pc_attr = 1;
13844           if (attr.form == DW_FORM_addr
13845               || attr.form == DW_FORM_GNU_addr_index)
13846             part_die->highpc = DW_ADDR (&attr);
13847           else
13848             {
13849               high_pc_relative = 1;
13850               part_die->highpc = DW_UNSND (&attr);
13851             }
13852           break;
13853         case DW_AT_location:
13854           /* Support the .debug_loc offsets.  */
13855           if (attr_form_is_block (&attr))
13856             {
13857                part_die->d.locdesc = DW_BLOCK (&attr);
13858             }
13859           else if (attr_form_is_section_offset (&attr))
13860             {
13861               dwarf2_complex_location_expr_complaint ();
13862             }
13863           else
13864             {
13865               dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
13866                                                      "partial symbol information");
13867             }
13868           break;
13869         case DW_AT_external:
13870           part_die->is_external = DW_UNSND (&attr);
13871           break;
13872         case DW_AT_declaration:
13873           part_die->is_declaration = DW_UNSND (&attr);
13874           break;
13875         case DW_AT_type:
13876           part_die->has_type = 1;
13877           break;
13878         case DW_AT_abstract_origin:
13879         case DW_AT_specification:
13880         case DW_AT_extension:
13881           part_die->has_specification = 1;
13882           part_die->spec_offset = dwarf2_get_ref_die_offset (&attr);
13883           part_die->spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
13884                                    || cu->per_cu->is_dwz);
13885           break;
13886         case DW_AT_sibling:
13887           /* Ignore absolute siblings, they might point outside of
13888              the current compile unit.  */
13889           if (attr.form == DW_FORM_ref_addr)
13890             complaint (&symfile_complaints,
13891                        _("ignoring absolute DW_AT_sibling"));
13892           else
13893             part_die->sibling = buffer + dwarf2_get_ref_die_offset (&attr).sect_off;
13894           break;
13895         case DW_AT_byte_size:
13896           part_die->has_byte_size = 1;
13897           break;
13898         case DW_AT_calling_convention:
13899           /* DWARF doesn't provide a way to identify a program's source-level
13900              entry point.  DW_AT_calling_convention attributes are only meant
13901              to describe functions' calling conventions.
13902
13903              However, because it's a necessary piece of information in
13904              Fortran, and because DW_CC_program is the only piece of debugging
13905              information whose definition refers to a 'main program' at all,
13906              several compilers have begun marking Fortran main programs with
13907              DW_CC_program --- even when those functions use the standard
13908              calling conventions.
13909
13910              So until DWARF specifies a way to provide this information and
13911              compilers pick up the new representation, we'll support this
13912              practice.  */
13913           if (DW_UNSND (&attr) == DW_CC_program
13914               && cu->language == language_fortran)
13915             {
13916               set_main_name (part_die->name);
13917
13918               /* As this DIE has a static linkage the name would be difficult
13919                  to look up later.  */
13920               language_of_main = language_fortran;
13921             }
13922           break;
13923         case DW_AT_inline:
13924           if (DW_UNSND (&attr) == DW_INL_inlined
13925               || DW_UNSND (&attr) == DW_INL_declared_inlined)
13926             part_die->may_be_inlined = 1;
13927           break;
13928
13929         case DW_AT_import:
13930           if (part_die->tag == DW_TAG_imported_unit)
13931             {
13932               part_die->d.offset = dwarf2_get_ref_die_offset (&attr);
13933               part_die->is_dwz = (attr.form == DW_FORM_GNU_ref_alt
13934                                   || cu->per_cu->is_dwz);
13935             }
13936           break;
13937
13938         default:
13939           break;
13940         }
13941     }
13942
13943   if (high_pc_relative)
13944     part_die->highpc += part_die->lowpc;
13945
13946   if (has_low_pc_attr && has_high_pc_attr)
13947     {
13948       /* When using the GNU linker, .gnu.linkonce. sections are used to
13949          eliminate duplicate copies of functions and vtables and such.
13950          The linker will arbitrarily choose one and discard the others.
13951          The AT_*_pc values for such functions refer to local labels in
13952          these sections.  If the section from that file was discarded, the
13953          labels are not in the output, so the relocs get a value of 0.
13954          If this is a discarded function, mark the pc bounds as invalid,
13955          so that GDB will ignore it.  */
13956       if (part_die->lowpc == 0 && !dwarf2_per_objfile->has_section_at_zero)
13957         {
13958           struct gdbarch *gdbarch = get_objfile_arch (objfile);
13959
13960           complaint (&symfile_complaints,
13961                      _("DW_AT_low_pc %s is zero "
13962                        "for DIE at 0x%x [in module %s]"),
13963                      paddress (gdbarch, part_die->lowpc),
13964                      part_die->offset.sect_off, objfile->name);
13965         }
13966       /* dwarf2_get_pc_bounds has also the strict low < high requirement.  */
13967       else if (part_die->lowpc >= part_die->highpc)
13968         {
13969           struct gdbarch *gdbarch = get_objfile_arch (objfile);
13970
13971           complaint (&symfile_complaints,
13972                      _("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
13973                        "for DIE at 0x%x [in module %s]"),
13974                      paddress (gdbarch, part_die->lowpc),
13975                      paddress (gdbarch, part_die->highpc),
13976                      part_die->offset.sect_off, objfile->name);
13977         }
13978       else
13979         part_die->has_pc_info = 1;
13980     }
13981
13982   return info_ptr;
13983 }
13984
13985 /* Find a cached partial DIE at OFFSET in CU.  */
13986
13987 static struct partial_die_info *
13988 find_partial_die_in_comp_unit (sect_offset offset, struct dwarf2_cu *cu)
13989 {
13990   struct partial_die_info *lookup_die = NULL;
13991   struct partial_die_info part_die;
13992
13993   part_die.offset = offset;
13994   lookup_die = htab_find_with_hash (cu->partial_dies, &part_die,
13995                                     offset.sect_off);
13996
13997   return lookup_die;
13998 }
13999
14000 /* Find a partial DIE at OFFSET, which may or may not be in CU,
14001    except in the case of .debug_types DIEs which do not reference
14002    outside their CU (they do however referencing other types via
14003    DW_FORM_ref_sig8).  */
14004
14005 static struct partial_die_info *
14006 find_partial_die (sect_offset offset, int offset_in_dwz, struct dwarf2_cu *cu)
14007 {
14008   struct objfile *objfile = cu->objfile;
14009   struct dwarf2_per_cu_data *per_cu = NULL;
14010   struct partial_die_info *pd = NULL;
14011
14012   if (offset_in_dwz == cu->per_cu->is_dwz
14013       && offset_in_cu_p (&cu->header, offset))
14014     {
14015       pd = find_partial_die_in_comp_unit (offset, cu);
14016       if (pd != NULL)
14017         return pd;
14018       /* We missed recording what we needed.
14019          Load all dies and try again.  */
14020       per_cu = cu->per_cu;
14021     }
14022   else
14023     {
14024       /* TUs don't reference other CUs/TUs (except via type signatures).  */
14025       if (cu->per_cu->is_debug_types)
14026         {
14027           error (_("Dwarf Error: Type Unit at offset 0x%lx contains"
14028                    " external reference to offset 0x%lx [in module %s].\n"),
14029                  (long) cu->header.offset.sect_off, (long) offset.sect_off,
14030                  bfd_get_filename (objfile->obfd));
14031         }
14032       per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
14033                                                  objfile);
14034
14035       if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
14036         load_partial_comp_unit (per_cu);
14037
14038       per_cu->cu->last_used = 0;
14039       pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
14040     }
14041
14042   /* If we didn't find it, and not all dies have been loaded,
14043      load them all and try again.  */
14044
14045   if (pd == NULL && per_cu->load_all_dies == 0)
14046     {
14047       per_cu->load_all_dies = 1;
14048
14049       /* This is nasty.  When we reread the DIEs, somewhere up the call chain
14050          THIS_CU->cu may already be in use.  So we can't just free it and
14051          replace its DIEs with the ones we read in.  Instead, we leave those
14052          DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
14053          and clobber THIS_CU->cu->partial_dies with the hash table for the new
14054          set.  */
14055       load_partial_comp_unit (per_cu);
14056
14057       pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
14058     }
14059
14060   if (pd == NULL)
14061     internal_error (__FILE__, __LINE__,
14062                     _("could not find partial DIE 0x%x "
14063                       "in cache [from module %s]\n"),
14064                     offset.sect_off, bfd_get_filename (objfile->obfd));
14065   return pd;
14066 }
14067
14068 /* See if we can figure out if the class lives in a namespace.  We do
14069    this by looking for a member function; its demangled name will
14070    contain namespace info, if there is any.  */
14071
14072 static void
14073 guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
14074                                   struct dwarf2_cu *cu)
14075 {
14076   /* NOTE: carlton/2003-10-07: Getting the info this way changes
14077      what template types look like, because the demangler
14078      frequently doesn't give the same name as the debug info.  We
14079      could fix this by only using the demangled name to get the
14080      prefix (but see comment in read_structure_type).  */
14081
14082   struct partial_die_info *real_pdi;
14083   struct partial_die_info *child_pdi;
14084
14085   /* If this DIE (this DIE's specification, if any) has a parent, then
14086      we should not do this.  We'll prepend the parent's fully qualified
14087      name when we create the partial symbol.  */
14088
14089   real_pdi = struct_pdi;
14090   while (real_pdi->has_specification)
14091     real_pdi = find_partial_die (real_pdi->spec_offset,
14092                                  real_pdi->spec_is_dwz, cu);
14093
14094   if (real_pdi->die_parent != NULL)
14095     return;
14096
14097   for (child_pdi = struct_pdi->die_child;
14098        child_pdi != NULL;
14099        child_pdi = child_pdi->die_sibling)
14100     {
14101       if (child_pdi->tag == DW_TAG_subprogram
14102           && child_pdi->linkage_name != NULL)
14103         {
14104           char *actual_class_name
14105             = language_class_name_from_physname (cu->language_defn,
14106                                                  child_pdi->linkage_name);
14107           if (actual_class_name != NULL)
14108             {
14109               struct_pdi->name
14110                 = obstack_copy0 (&cu->objfile->objfile_obstack,
14111                                  actual_class_name,
14112                                  strlen (actual_class_name));
14113               xfree (actual_class_name);
14114             }
14115           break;
14116         }
14117     }
14118 }
14119
14120 /* Adjust PART_DIE before generating a symbol for it.  This function
14121    may set the is_external flag or change the DIE's name.  */
14122
14123 static void
14124 fixup_partial_die (struct partial_die_info *part_die,
14125                    struct dwarf2_cu *cu)
14126 {
14127   /* Once we've fixed up a die, there's no point in doing so again.
14128      This also avoids a memory leak if we were to call
14129      guess_partial_die_structure_name multiple times.  */
14130   if (part_die->fixup_called)
14131     return;
14132
14133   /* If we found a reference attribute and the DIE has no name, try
14134      to find a name in the referred to DIE.  */
14135
14136   if (part_die->name == NULL && part_die->has_specification)
14137     {
14138       struct partial_die_info *spec_die;
14139
14140       spec_die = find_partial_die (part_die->spec_offset,
14141                                    part_die->spec_is_dwz, cu);
14142
14143       fixup_partial_die (spec_die, cu);
14144
14145       if (spec_die->name)
14146         {
14147           part_die->name = spec_die->name;
14148
14149           /* Copy DW_AT_external attribute if it is set.  */
14150           if (spec_die->is_external)
14151             part_die->is_external = spec_die->is_external;
14152         }
14153     }
14154
14155   /* Set default names for some unnamed DIEs.  */
14156
14157   if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
14158     part_die->name = CP_ANONYMOUS_NAMESPACE_STR;
14159
14160   /* If there is no parent die to provide a namespace, and there are
14161      children, see if we can determine the namespace from their linkage
14162      name.  */
14163   if (cu->language == language_cplus
14164       && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
14165       && part_die->die_parent == NULL
14166       && part_die->has_children
14167       && (part_die->tag == DW_TAG_class_type
14168           || part_die->tag == DW_TAG_structure_type
14169           || part_die->tag == DW_TAG_union_type))
14170     guess_partial_die_structure_name (part_die, cu);
14171
14172   /* GCC might emit a nameless struct or union that has a linkage
14173      name.  See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510.  */
14174   if (part_die->name == NULL
14175       && (part_die->tag == DW_TAG_class_type
14176           || part_die->tag == DW_TAG_interface_type
14177           || part_die->tag == DW_TAG_structure_type
14178           || part_die->tag == DW_TAG_union_type)
14179       && part_die->linkage_name != NULL)
14180     {
14181       char *demangled;
14182
14183       demangled = gdb_demangle (part_die->linkage_name, DMGL_TYPES);
14184       if (demangled)
14185         {
14186           const char *base;
14187
14188           /* Strip any leading namespaces/classes, keep only the base name.
14189              DW_AT_name for named DIEs does not contain the prefixes.  */
14190           base = strrchr (demangled, ':');
14191           if (base && base > demangled && base[-1] == ':')
14192             base++;
14193           else
14194             base = demangled;
14195
14196           part_die->name = obstack_copy0 (&cu->objfile->objfile_obstack,
14197                                           base, strlen (base));
14198           xfree (demangled);
14199         }
14200     }
14201
14202   part_die->fixup_called = 1;
14203 }
14204
14205 /* Read an attribute value described by an attribute form.  */
14206
14207 static const gdb_byte *
14208 read_attribute_value (const struct die_reader_specs *reader,
14209                       struct attribute *attr, unsigned form,
14210                       const gdb_byte *info_ptr)
14211 {
14212   struct dwarf2_cu *cu = reader->cu;
14213   bfd *abfd = reader->abfd;
14214   struct comp_unit_head *cu_header = &cu->header;
14215   unsigned int bytes_read;
14216   struct dwarf_block *blk;
14217
14218   attr->form = form;
14219   switch (form)
14220     {
14221     case DW_FORM_ref_addr:
14222       if (cu->header.version == 2)
14223         DW_UNSND (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
14224       else
14225         DW_UNSND (attr) = read_offset (abfd, info_ptr,
14226                                        &cu->header, &bytes_read);
14227       info_ptr += bytes_read;
14228       break;
14229     case DW_FORM_GNU_ref_alt:
14230       DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
14231       info_ptr += bytes_read;
14232       break;
14233     case DW_FORM_addr:
14234       DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
14235       info_ptr += bytes_read;
14236       break;
14237     case DW_FORM_block2:
14238       blk = dwarf_alloc_block (cu);
14239       blk->size = read_2_bytes (abfd, info_ptr);
14240       info_ptr += 2;
14241       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14242       info_ptr += blk->size;
14243       DW_BLOCK (attr) = blk;
14244       break;
14245     case DW_FORM_block4:
14246       blk = dwarf_alloc_block (cu);
14247       blk->size = read_4_bytes (abfd, info_ptr);
14248       info_ptr += 4;
14249       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14250       info_ptr += blk->size;
14251       DW_BLOCK (attr) = blk;
14252       break;
14253     case DW_FORM_data2:
14254       DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
14255       info_ptr += 2;
14256       break;
14257     case DW_FORM_data4:
14258       DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
14259       info_ptr += 4;
14260       break;
14261     case DW_FORM_data8:
14262       DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
14263       info_ptr += 8;
14264       break;
14265     case DW_FORM_sec_offset:
14266       DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
14267       info_ptr += bytes_read;
14268       break;
14269     case DW_FORM_string:
14270       DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
14271       DW_STRING_IS_CANONICAL (attr) = 0;
14272       info_ptr += bytes_read;
14273       break;
14274     case DW_FORM_strp:
14275       if (!cu->per_cu->is_dwz)
14276         {
14277           DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
14278                                                    &bytes_read);
14279           DW_STRING_IS_CANONICAL (attr) = 0;
14280           info_ptr += bytes_read;
14281           break;
14282         }
14283       /* FALLTHROUGH */
14284     case DW_FORM_GNU_strp_alt:
14285       {
14286         struct dwz_file *dwz = dwarf2_get_dwz_file ();
14287         LONGEST str_offset = read_offset (abfd, info_ptr, cu_header,
14288                                           &bytes_read);
14289
14290         DW_STRING (attr) = read_indirect_string_from_dwz (dwz, str_offset);
14291         DW_STRING_IS_CANONICAL (attr) = 0;
14292         info_ptr += bytes_read;
14293       }
14294       break;
14295     case DW_FORM_exprloc:
14296     case DW_FORM_block:
14297       blk = dwarf_alloc_block (cu);
14298       blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14299       info_ptr += bytes_read;
14300       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14301       info_ptr += blk->size;
14302       DW_BLOCK (attr) = blk;
14303       break;
14304     case DW_FORM_block1:
14305       blk = dwarf_alloc_block (cu);
14306       blk->size = read_1_byte (abfd, info_ptr);
14307       info_ptr += 1;
14308       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14309       info_ptr += blk->size;
14310       DW_BLOCK (attr) = blk;
14311       break;
14312     case DW_FORM_data1:
14313       DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
14314       info_ptr += 1;
14315       break;
14316     case DW_FORM_flag:
14317       DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
14318       info_ptr += 1;
14319       break;
14320     case DW_FORM_flag_present:
14321       DW_UNSND (attr) = 1;
14322       break;
14323     case DW_FORM_sdata:
14324       DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
14325       info_ptr += bytes_read;
14326       break;
14327     case DW_FORM_udata:
14328       DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14329       info_ptr += bytes_read;
14330       break;
14331     case DW_FORM_ref1:
14332       DW_UNSND (attr) = (cu->header.offset.sect_off
14333                          + read_1_byte (abfd, info_ptr));
14334       info_ptr += 1;
14335       break;
14336     case DW_FORM_ref2:
14337       DW_UNSND (attr) = (cu->header.offset.sect_off
14338                          + read_2_bytes (abfd, info_ptr));
14339       info_ptr += 2;
14340       break;
14341     case DW_FORM_ref4:
14342       DW_UNSND (attr) = (cu->header.offset.sect_off
14343                          + read_4_bytes (abfd, info_ptr));
14344       info_ptr += 4;
14345       break;
14346     case DW_FORM_ref8:
14347       DW_UNSND (attr) = (cu->header.offset.sect_off
14348                          + read_8_bytes (abfd, info_ptr));
14349       info_ptr += 8;
14350       break;
14351     case DW_FORM_ref_sig8:
14352       DW_SIGNATURE (attr) = read_8_bytes (abfd, info_ptr);
14353       info_ptr += 8;
14354       break;
14355     case DW_FORM_ref_udata:
14356       DW_UNSND (attr) = (cu->header.offset.sect_off
14357                          + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
14358       info_ptr += bytes_read;
14359       break;
14360     case DW_FORM_indirect:
14361       form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14362       info_ptr += bytes_read;
14363       info_ptr = read_attribute_value (reader, attr, form, info_ptr);
14364       break;
14365     case DW_FORM_GNU_addr_index:
14366       if (reader->dwo_file == NULL)
14367         {
14368           /* For now flag a hard error.
14369              Later we can turn this into a complaint.  */
14370           error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
14371                  dwarf_form_name (form),
14372                  bfd_get_filename (abfd));
14373         }
14374       DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr, &bytes_read);
14375       info_ptr += bytes_read;
14376       break;
14377     case DW_FORM_GNU_str_index:
14378       if (reader->dwo_file == NULL)
14379         {
14380           /* For now flag a hard error.
14381              Later we can turn this into a complaint if warranted.  */
14382           error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
14383                  dwarf_form_name (form),
14384                  bfd_get_filename (abfd));
14385         }
14386       {
14387         ULONGEST str_index =
14388           read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14389
14390         DW_STRING (attr) = read_str_index (reader, cu, str_index);
14391         DW_STRING_IS_CANONICAL (attr) = 0;
14392         info_ptr += bytes_read;
14393       }
14394       break;
14395     default:
14396       error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
14397              dwarf_form_name (form),
14398              bfd_get_filename (abfd));
14399     }
14400
14401   /* Super hack.  */
14402   if (cu->per_cu->is_dwz && is_ref_attr (attr))
14403     attr->form = DW_FORM_GNU_ref_alt;
14404
14405   /* We have seen instances where the compiler tried to emit a byte
14406      size attribute of -1 which ended up being encoded as an unsigned
14407      0xffffffff.  Although 0xffffffff is technically a valid size value,
14408      an object of this size seems pretty unlikely so we can relatively
14409      safely treat these cases as if the size attribute was invalid and
14410      treat them as zero by default.  */
14411   if (attr->name == DW_AT_byte_size
14412       && form == DW_FORM_data4
14413       && DW_UNSND (attr) >= 0xffffffff)
14414     {
14415       complaint
14416         (&symfile_complaints,
14417          _("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
14418          hex_string (DW_UNSND (attr)));
14419       DW_UNSND (attr) = 0;
14420     }
14421
14422   return info_ptr;
14423 }
14424
14425 /* Read an attribute described by an abbreviated attribute.  */
14426
14427 static const gdb_byte *
14428 read_attribute (const struct die_reader_specs *reader,
14429                 struct attribute *attr, struct attr_abbrev *abbrev,
14430                 const gdb_byte *info_ptr)
14431 {
14432   attr->name = abbrev->name;
14433   return read_attribute_value (reader, attr, abbrev->form, info_ptr);
14434 }
14435
14436 /* Read dwarf information from a buffer.  */
14437
14438 static unsigned int
14439 read_1_byte (bfd *abfd, const gdb_byte *buf)
14440 {
14441   return bfd_get_8 (abfd, buf);
14442 }
14443
14444 static int
14445 read_1_signed_byte (bfd *abfd, const gdb_byte *buf)
14446 {
14447   return bfd_get_signed_8 (abfd, buf);
14448 }
14449
14450 static unsigned int
14451 read_2_bytes (bfd *abfd, const gdb_byte *buf)
14452 {
14453   return bfd_get_16 (abfd, buf);
14454 }
14455
14456 static int
14457 read_2_signed_bytes (bfd *abfd, const gdb_byte *buf)
14458 {
14459   return bfd_get_signed_16 (abfd, buf);
14460 }
14461
14462 static unsigned int
14463 read_4_bytes (bfd *abfd, const gdb_byte *buf)
14464 {
14465   return bfd_get_32 (abfd, buf);
14466 }
14467
14468 static int
14469 read_4_signed_bytes (bfd *abfd, const gdb_byte *buf)
14470 {
14471   return bfd_get_signed_32 (abfd, buf);
14472 }
14473
14474 static ULONGEST
14475 read_8_bytes (bfd *abfd, const gdb_byte *buf)
14476 {
14477   return bfd_get_64 (abfd, buf);
14478 }
14479
14480 static CORE_ADDR
14481 read_address (bfd *abfd, const gdb_byte *buf, struct dwarf2_cu *cu,
14482               unsigned int *bytes_read)
14483 {
14484   struct comp_unit_head *cu_header = &cu->header;
14485   CORE_ADDR retval = 0;
14486
14487   if (cu_header->signed_addr_p)
14488     {
14489       switch (cu_header->addr_size)
14490         {
14491         case 2:
14492           retval = bfd_get_signed_16 (abfd, buf);
14493           break;
14494         case 4:
14495           retval = bfd_get_signed_32 (abfd, buf);
14496           break;
14497         case 8:
14498           retval = bfd_get_signed_64 (abfd, buf);
14499           break;
14500         default:
14501           internal_error (__FILE__, __LINE__,
14502                           _("read_address: bad switch, signed [in module %s]"),
14503                           bfd_get_filename (abfd));
14504         }
14505     }
14506   else
14507     {
14508       switch (cu_header->addr_size)
14509         {
14510         case 2:
14511           retval = bfd_get_16 (abfd, buf);
14512           break;
14513         case 4:
14514           retval = bfd_get_32 (abfd, buf);
14515           break;
14516         case 8:
14517           retval = bfd_get_64 (abfd, buf);
14518           break;
14519         default:
14520           internal_error (__FILE__, __LINE__,
14521                           _("read_address: bad switch, "
14522                             "unsigned [in module %s]"),
14523                           bfd_get_filename (abfd));
14524         }
14525     }
14526
14527   *bytes_read = cu_header->addr_size;
14528   return retval;
14529 }
14530
14531 /* Read the initial length from a section.  The (draft) DWARF 3
14532    specification allows the initial length to take up either 4 bytes
14533    or 12 bytes.  If the first 4 bytes are 0xffffffff, then the next 8
14534    bytes describe the length and all offsets will be 8 bytes in length
14535    instead of 4.
14536
14537    An older, non-standard 64-bit format is also handled by this
14538    function.  The older format in question stores the initial length
14539    as an 8-byte quantity without an escape value.  Lengths greater
14540    than 2^32 aren't very common which means that the initial 4 bytes
14541    is almost always zero.  Since a length value of zero doesn't make
14542    sense for the 32-bit format, this initial zero can be considered to
14543    be an escape value which indicates the presence of the older 64-bit
14544    format.  As written, the code can't detect (old format) lengths
14545    greater than 4GB.  If it becomes necessary to handle lengths
14546    somewhat larger than 4GB, we could allow other small values (such
14547    as the non-sensical values of 1, 2, and 3) to also be used as
14548    escape values indicating the presence of the old format.
14549
14550    The value returned via bytes_read should be used to increment the
14551    relevant pointer after calling read_initial_length().
14552
14553    [ Note:  read_initial_length() and read_offset() are based on the
14554      document entitled "DWARF Debugging Information Format", revision
14555      3, draft 8, dated November 19, 2001.  This document was obtained
14556      from:
14557
14558         http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
14559
14560      This document is only a draft and is subject to change.  (So beware.)
14561
14562      Details regarding the older, non-standard 64-bit format were
14563      determined empirically by examining 64-bit ELF files produced by
14564      the SGI toolchain on an IRIX 6.5 machine.
14565
14566      - Kevin, July 16, 2002
14567    ] */
14568
14569 static LONGEST
14570 read_initial_length (bfd *abfd, const gdb_byte *buf, unsigned int *bytes_read)
14571 {
14572   LONGEST length = bfd_get_32 (abfd, buf);
14573
14574   if (length == 0xffffffff)
14575     {
14576       length = bfd_get_64 (abfd, buf + 4);
14577       *bytes_read = 12;
14578     }
14579   else if (length == 0)
14580     {
14581       /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX.  */
14582       length = bfd_get_64 (abfd, buf);
14583       *bytes_read = 8;
14584     }
14585   else
14586     {
14587       *bytes_read = 4;
14588     }
14589
14590   return length;
14591 }
14592
14593 /* Cover function for read_initial_length.
14594    Returns the length of the object at BUF, and stores the size of the
14595    initial length in *BYTES_READ and stores the size that offsets will be in
14596    *OFFSET_SIZE.
14597    If the initial length size is not equivalent to that specified in
14598    CU_HEADER then issue a complaint.
14599    This is useful when reading non-comp-unit headers.  */
14600
14601 static LONGEST
14602 read_checked_initial_length_and_offset (bfd *abfd, const gdb_byte *buf,
14603                                         const struct comp_unit_head *cu_header,
14604                                         unsigned int *bytes_read,
14605                                         unsigned int *offset_size)
14606 {
14607   LONGEST length = read_initial_length (abfd, buf, bytes_read);
14608
14609   gdb_assert (cu_header->initial_length_size == 4
14610               || cu_header->initial_length_size == 8
14611               || cu_header->initial_length_size == 12);
14612
14613   if (cu_header->initial_length_size != *bytes_read)
14614     complaint (&symfile_complaints,
14615                _("intermixed 32-bit and 64-bit DWARF sections"));
14616
14617   *offset_size = (*bytes_read == 4) ? 4 : 8;
14618   return length;
14619 }
14620
14621 /* Read an offset from the data stream.  The size of the offset is
14622    given by cu_header->offset_size.  */
14623
14624 static LONGEST
14625 read_offset (bfd *abfd, const gdb_byte *buf,
14626              const struct comp_unit_head *cu_header,
14627              unsigned int *bytes_read)
14628 {
14629   LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
14630
14631   *bytes_read = cu_header->offset_size;
14632   return offset;
14633 }
14634
14635 /* Read an offset from the data stream.  */
14636
14637 static LONGEST
14638 read_offset_1 (bfd *abfd, const gdb_byte *buf, unsigned int offset_size)
14639 {
14640   LONGEST retval = 0;
14641
14642   switch (offset_size)
14643     {
14644     case 4:
14645       retval = bfd_get_32 (abfd, buf);
14646       break;
14647     case 8:
14648       retval = bfd_get_64 (abfd, buf);
14649       break;
14650     default:
14651       internal_error (__FILE__, __LINE__,
14652                       _("read_offset_1: bad switch [in module %s]"),
14653                       bfd_get_filename (abfd));
14654     }
14655
14656   return retval;
14657 }
14658
14659 static const gdb_byte *
14660 read_n_bytes (bfd *abfd, const gdb_byte *buf, unsigned int size)
14661 {
14662   /* If the size of a host char is 8 bits, we can return a pointer
14663      to the buffer, otherwise we have to copy the data to a buffer
14664      allocated on the temporary obstack.  */
14665   gdb_assert (HOST_CHAR_BIT == 8);
14666   return buf;
14667 }
14668
14669 static const char *
14670 read_direct_string (bfd *abfd, const gdb_byte *buf,
14671                     unsigned int *bytes_read_ptr)
14672 {
14673   /* If the size of a host char is 8 bits, we can return a pointer
14674      to the string, otherwise we have to copy the string to a buffer
14675      allocated on the temporary obstack.  */
14676   gdb_assert (HOST_CHAR_BIT == 8);
14677   if (*buf == '\0')
14678     {
14679       *bytes_read_ptr = 1;
14680       return NULL;
14681     }
14682   *bytes_read_ptr = strlen ((const char *) buf) + 1;
14683   return (const char *) buf;
14684 }
14685
14686 static const char *
14687 read_indirect_string_at_offset (bfd *abfd, LONGEST str_offset)
14688 {
14689   dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->str);
14690   if (dwarf2_per_objfile->str.buffer == NULL)
14691     error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
14692            bfd_get_filename (abfd));
14693   if (str_offset >= dwarf2_per_objfile->str.size)
14694     error (_("DW_FORM_strp pointing outside of "
14695              ".debug_str section [in module %s]"),
14696            bfd_get_filename (abfd));
14697   gdb_assert (HOST_CHAR_BIT == 8);
14698   if (dwarf2_per_objfile->str.buffer[str_offset] == '\0')
14699     return NULL;
14700   return (const char *) (dwarf2_per_objfile->str.buffer + str_offset);
14701 }
14702
14703 /* Read a string at offset STR_OFFSET in the .debug_str section from
14704    the .dwz file DWZ.  Throw an error if the offset is too large.  If
14705    the string consists of a single NUL byte, return NULL; otherwise
14706    return a pointer to the string.  */
14707
14708 static const char *
14709 read_indirect_string_from_dwz (struct dwz_file *dwz, LONGEST str_offset)
14710 {
14711   dwarf2_read_section (dwarf2_per_objfile->objfile, &dwz->str);
14712
14713   if (dwz->str.buffer == NULL)
14714     error (_("DW_FORM_GNU_strp_alt used without .debug_str "
14715              "section [in module %s]"),
14716            bfd_get_filename (dwz->dwz_bfd));
14717   if (str_offset >= dwz->str.size)
14718     error (_("DW_FORM_GNU_strp_alt pointing outside of "
14719              ".debug_str section [in module %s]"),
14720            bfd_get_filename (dwz->dwz_bfd));
14721   gdb_assert (HOST_CHAR_BIT == 8);
14722   if (dwz->str.buffer[str_offset] == '\0')
14723     return NULL;
14724   return (const char *) (dwz->str.buffer + str_offset);
14725 }
14726
14727 static const char *
14728 read_indirect_string (bfd *abfd, const gdb_byte *buf,
14729                       const struct comp_unit_head *cu_header,
14730                       unsigned int *bytes_read_ptr)
14731 {
14732   LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
14733
14734   return read_indirect_string_at_offset (abfd, str_offset);
14735 }
14736
14737 static ULONGEST
14738 read_unsigned_leb128 (bfd *abfd, const gdb_byte *buf,
14739                       unsigned int *bytes_read_ptr)
14740 {
14741   ULONGEST result;
14742   unsigned int num_read;
14743   int i, shift;
14744   unsigned char byte;
14745
14746   result = 0;
14747   shift = 0;
14748   num_read = 0;
14749   i = 0;
14750   while (1)
14751     {
14752       byte = bfd_get_8 (abfd, buf);
14753       buf++;
14754       num_read++;
14755       result |= ((ULONGEST) (byte & 127) << shift);
14756       if ((byte & 128) == 0)
14757         {
14758           break;
14759         }
14760       shift += 7;
14761     }
14762   *bytes_read_ptr = num_read;
14763   return result;
14764 }
14765
14766 static LONGEST
14767 read_signed_leb128 (bfd *abfd, const gdb_byte *buf,
14768                     unsigned int *bytes_read_ptr)
14769 {
14770   LONGEST result;
14771   int i, shift, num_read;
14772   unsigned char byte;
14773
14774   result = 0;
14775   shift = 0;
14776   num_read = 0;
14777   i = 0;
14778   while (1)
14779     {
14780       byte = bfd_get_8 (abfd, buf);
14781       buf++;
14782       num_read++;
14783       result |= ((LONGEST) (byte & 127) << shift);
14784       shift += 7;
14785       if ((byte & 128) == 0)
14786         {
14787           break;
14788         }
14789     }
14790   if ((shift < 8 * sizeof (result)) && (byte & 0x40))
14791     result |= -(((LONGEST) 1) << shift);
14792   *bytes_read_ptr = num_read;
14793   return result;
14794 }
14795
14796 /* Given index ADDR_INDEX in .debug_addr, fetch the value.
14797    ADDR_BASE is the DW_AT_GNU_addr_base attribute or zero.
14798    ADDR_SIZE is the size of addresses from the CU header.  */
14799
14800 static CORE_ADDR
14801 read_addr_index_1 (unsigned int addr_index, ULONGEST addr_base, int addr_size)
14802 {
14803   struct objfile *objfile = dwarf2_per_objfile->objfile;
14804   bfd *abfd = objfile->obfd;
14805   const gdb_byte *info_ptr;
14806
14807   dwarf2_read_section (objfile, &dwarf2_per_objfile->addr);
14808   if (dwarf2_per_objfile->addr.buffer == NULL)
14809     error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
14810            objfile->name);
14811   if (addr_base + addr_index * addr_size >= dwarf2_per_objfile->addr.size)
14812     error (_("DW_FORM_addr_index pointing outside of "
14813              ".debug_addr section [in module %s]"),
14814            objfile->name);
14815   info_ptr = (dwarf2_per_objfile->addr.buffer
14816               + addr_base + addr_index * addr_size);
14817   if (addr_size == 4)
14818     return bfd_get_32 (abfd, info_ptr);
14819   else
14820     return bfd_get_64 (abfd, info_ptr);
14821 }
14822
14823 /* Given index ADDR_INDEX in .debug_addr, fetch the value.  */
14824
14825 static CORE_ADDR
14826 read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
14827 {
14828   return read_addr_index_1 (addr_index, cu->addr_base, cu->header.addr_size);
14829 }
14830
14831 /* Given a pointer to an leb128 value, fetch the value from .debug_addr.  */
14832
14833 static CORE_ADDR
14834 read_addr_index_from_leb128 (struct dwarf2_cu *cu, const gdb_byte *info_ptr,
14835                              unsigned int *bytes_read)
14836 {
14837   bfd *abfd = cu->objfile->obfd;
14838   unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
14839
14840   return read_addr_index (cu, addr_index);
14841 }
14842
14843 /* Data structure to pass results from dwarf2_read_addr_index_reader
14844    back to dwarf2_read_addr_index.  */
14845
14846 struct dwarf2_read_addr_index_data
14847 {
14848   ULONGEST addr_base;
14849   int addr_size;
14850 };
14851
14852 /* die_reader_func for dwarf2_read_addr_index.  */
14853
14854 static void
14855 dwarf2_read_addr_index_reader (const struct die_reader_specs *reader,
14856                                const gdb_byte *info_ptr,
14857                                struct die_info *comp_unit_die,
14858                                int has_children,
14859                                void *data)
14860 {
14861   struct dwarf2_cu *cu = reader->cu;
14862   struct dwarf2_read_addr_index_data *aidata =
14863     (struct dwarf2_read_addr_index_data *) data;
14864
14865   aidata->addr_base = cu->addr_base;
14866   aidata->addr_size = cu->header.addr_size;
14867 }
14868
14869 /* Given an index in .debug_addr, fetch the value.
14870    NOTE: This can be called during dwarf expression evaluation,
14871    long after the debug information has been read, and thus per_cu->cu
14872    may no longer exist.  */
14873
14874 CORE_ADDR
14875 dwarf2_read_addr_index (struct dwarf2_per_cu_data *per_cu,
14876                         unsigned int addr_index)
14877 {
14878   struct objfile *objfile = per_cu->objfile;
14879   struct dwarf2_cu *cu = per_cu->cu;
14880   ULONGEST addr_base;
14881   int addr_size;
14882
14883   /* This is intended to be called from outside this file.  */
14884   dw2_setup (objfile);
14885
14886   /* We need addr_base and addr_size.
14887      If we don't have PER_CU->cu, we have to get it.
14888      Nasty, but the alternative is storing the needed info in PER_CU,
14889      which at this point doesn't seem justified: it's not clear how frequently
14890      it would get used and it would increase the size of every PER_CU.
14891      Entry points like dwarf2_per_cu_addr_size do a similar thing
14892      so we're not in uncharted territory here.
14893      Alas we need to be a bit more complicated as addr_base is contained
14894      in the DIE.
14895
14896      We don't need to read the entire CU(/TU).
14897      We just need the header and top level die.
14898
14899      IWBN to use the aging mechanism to let us lazily later discard the CU.
14900      For now we skip this optimization.  */
14901
14902   if (cu != NULL)
14903     {
14904       addr_base = cu->addr_base;
14905       addr_size = cu->header.addr_size;
14906     }
14907   else
14908     {
14909       struct dwarf2_read_addr_index_data aidata;
14910
14911       /* Note: We can't use init_cutu_and_read_dies_simple here,
14912          we need addr_base.  */
14913       init_cutu_and_read_dies (per_cu, NULL, 0, 0,
14914                                dwarf2_read_addr_index_reader, &aidata);
14915       addr_base = aidata.addr_base;
14916       addr_size = aidata.addr_size;
14917     }
14918
14919   return read_addr_index_1 (addr_index, addr_base, addr_size);
14920 }
14921
14922 /* Given a DW_AT_str_index, fetch the string.  */
14923
14924 static const char *
14925 read_str_index (const struct die_reader_specs *reader,
14926                 struct dwarf2_cu *cu, ULONGEST str_index)
14927 {
14928   struct objfile *objfile = dwarf2_per_objfile->objfile;
14929   const char *dwo_name = objfile->name;
14930   bfd *abfd = objfile->obfd;
14931   struct dwo_sections *sections = &reader->dwo_file->sections;
14932   const gdb_byte *info_ptr;
14933   ULONGEST str_offset;
14934
14935   dwarf2_read_section (objfile, &sections->str);
14936   dwarf2_read_section (objfile, &sections->str_offsets);
14937   if (sections->str.buffer == NULL)
14938     error (_("DW_FORM_str_index used without .debug_str.dwo section"
14939              " in CU at offset 0x%lx [in module %s]"),
14940            (long) cu->header.offset.sect_off, dwo_name);
14941   if (sections->str_offsets.buffer == NULL)
14942     error (_("DW_FORM_str_index used without .debug_str_offsets.dwo section"
14943              " in CU at offset 0x%lx [in module %s]"),
14944            (long) cu->header.offset.sect_off, dwo_name);
14945   if (str_index * cu->header.offset_size >= sections->str_offsets.size)
14946     error (_("DW_FORM_str_index pointing outside of .debug_str_offsets.dwo"
14947              " section in CU at offset 0x%lx [in module %s]"),
14948            (long) cu->header.offset.sect_off, dwo_name);
14949   info_ptr = (sections->str_offsets.buffer
14950               + str_index * cu->header.offset_size);
14951   if (cu->header.offset_size == 4)
14952     str_offset = bfd_get_32 (abfd, info_ptr);
14953   else
14954     str_offset = bfd_get_64 (abfd, info_ptr);
14955   if (str_offset >= sections->str.size)
14956     error (_("Offset from DW_FORM_str_index pointing outside of"
14957              " .debug_str.dwo section in CU at offset 0x%lx [in module %s]"),
14958            (long) cu->header.offset.sect_off, dwo_name);
14959   return (const char *) (sections->str.buffer + str_offset);
14960 }
14961
14962 /* Return the length of an LEB128 number in BUF.  */
14963
14964 static int
14965 leb128_size (const gdb_byte *buf)
14966 {
14967   const gdb_byte *begin = buf;
14968   gdb_byte byte;
14969
14970   while (1)
14971     {
14972       byte = *buf++;
14973       if ((byte & 128) == 0)
14974         return buf - begin;
14975     }
14976 }
14977
14978 static void
14979 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
14980 {
14981   switch (lang)
14982     {
14983     case DW_LANG_C89:
14984     case DW_LANG_C99:
14985     case DW_LANG_C:
14986       cu->language = language_c;
14987       break;
14988     case DW_LANG_C_plus_plus:
14989       cu->language = language_cplus;
14990       break;
14991     case DW_LANG_D:
14992       cu->language = language_d;
14993       break;
14994     case DW_LANG_Fortran77:
14995     case DW_LANG_Fortran90:
14996     case DW_LANG_Fortran95:
14997       cu->language = language_fortran;
14998       break;
14999     case DW_LANG_Go:
15000       cu->language = language_go;
15001       break;
15002     case DW_LANG_Mips_Assembler:
15003       cu->language = language_asm;
15004       break;
15005     case DW_LANG_Java:
15006       cu->language = language_java;
15007       break;
15008     case DW_LANG_Ada83:
15009     case DW_LANG_Ada95:
15010       cu->language = language_ada;
15011       break;
15012     case DW_LANG_Modula2:
15013       cu->language = language_m2;
15014       break;
15015     case DW_LANG_Pascal83:
15016       cu->language = language_pascal;
15017       break;
15018     case DW_LANG_ObjC:
15019       cu->language = language_objc;
15020       break;
15021     case DW_LANG_Cobol74:
15022     case DW_LANG_Cobol85:
15023     default:
15024       cu->language = language_minimal;
15025       break;
15026     }
15027   cu->language_defn = language_def (cu->language);
15028 }
15029
15030 /* Return the named attribute or NULL if not there.  */
15031
15032 static struct attribute *
15033 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
15034 {
15035   for (;;)
15036     {
15037       unsigned int i;
15038       struct attribute *spec = NULL;
15039
15040       for (i = 0; i < die->num_attrs; ++i)
15041         {
15042           if (die->attrs[i].name == name)
15043             return &die->attrs[i];
15044           if (die->attrs[i].name == DW_AT_specification
15045               || die->attrs[i].name == DW_AT_abstract_origin)
15046             spec = &die->attrs[i];
15047         }
15048
15049       if (!spec)
15050         break;
15051
15052       die = follow_die_ref (die, spec, &cu);
15053     }
15054
15055   return NULL;
15056 }
15057
15058 /* Return the named attribute or NULL if not there,
15059    but do not follow DW_AT_specification, etc.
15060    This is for use in contexts where we're reading .debug_types dies.
15061    Following DW_AT_specification, DW_AT_abstract_origin will take us
15062    back up the chain, and we want to go down.  */
15063
15064 static struct attribute *
15065 dwarf2_attr_no_follow (struct die_info *die, unsigned int name)
15066 {
15067   unsigned int i;
15068
15069   for (i = 0; i < die->num_attrs; ++i)
15070     if (die->attrs[i].name == name)
15071       return &die->attrs[i];
15072
15073   return NULL;
15074 }
15075
15076 /* Return non-zero iff the attribute NAME is defined for the given DIE,
15077    and holds a non-zero value.  This function should only be used for
15078    DW_FORM_flag or DW_FORM_flag_present attributes.  */
15079
15080 static int
15081 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
15082 {
15083   struct attribute *attr = dwarf2_attr (die, name, cu);
15084
15085   return (attr && DW_UNSND (attr));
15086 }
15087
15088 static int
15089 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
15090 {
15091   /* A DIE is a declaration if it has a DW_AT_declaration attribute
15092      which value is non-zero.  However, we have to be careful with
15093      DIEs having a DW_AT_specification attribute, because dwarf2_attr()
15094      (via dwarf2_flag_true_p) follows this attribute.  So we may
15095      end up accidently finding a declaration attribute that belongs
15096      to a different DIE referenced by the specification attribute,
15097      even though the given DIE does not have a declaration attribute.  */
15098   return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
15099           && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
15100 }
15101
15102 /* Return the die giving the specification for DIE, if there is
15103    one.  *SPEC_CU is the CU containing DIE on input, and the CU
15104    containing the return value on output.  If there is no
15105    specification, but there is an abstract origin, that is
15106    returned.  */
15107
15108 static struct die_info *
15109 die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
15110 {
15111   struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
15112                                              *spec_cu);
15113
15114   if (spec_attr == NULL)
15115     spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
15116
15117   if (spec_attr == NULL)
15118     return NULL;
15119   else
15120     return follow_die_ref (die, spec_attr, spec_cu);
15121 }
15122
15123 /* Free the line_header structure *LH, and any arrays and strings it
15124    refers to.
15125    NOTE: This is also used as a "cleanup" function.  */
15126
15127 static void
15128 free_line_header (struct line_header *lh)
15129 {
15130   if (lh->standard_opcode_lengths)
15131     xfree (lh->standard_opcode_lengths);
15132
15133   /* Remember that all the lh->file_names[i].name pointers are
15134      pointers into debug_line_buffer, and don't need to be freed.  */
15135   if (lh->file_names)
15136     xfree (lh->file_names);
15137
15138   /* Similarly for the include directory names.  */
15139   if (lh->include_dirs)
15140     xfree (lh->include_dirs);
15141
15142   xfree (lh);
15143 }
15144
15145 /* Add an entry to LH's include directory table.  */
15146
15147 static void
15148 add_include_dir (struct line_header *lh, const char *include_dir)
15149 {
15150   /* Grow the array if necessary.  */
15151   if (lh->include_dirs_size == 0)
15152     {
15153       lh->include_dirs_size = 1; /* for testing */
15154       lh->include_dirs = xmalloc (lh->include_dirs_size
15155                                   * sizeof (*lh->include_dirs));
15156     }
15157   else if (lh->num_include_dirs >= lh->include_dirs_size)
15158     {
15159       lh->include_dirs_size *= 2;
15160       lh->include_dirs = xrealloc (lh->include_dirs,
15161                                    (lh->include_dirs_size
15162                                     * sizeof (*lh->include_dirs)));
15163     }
15164
15165   lh->include_dirs[lh->num_include_dirs++] = include_dir;
15166 }
15167
15168 /* Add an entry to LH's file name table.  */
15169
15170 static void
15171 add_file_name (struct line_header *lh,
15172                const char *name,
15173                unsigned int dir_index,
15174                unsigned int mod_time,
15175                unsigned int length)
15176 {
15177   struct file_entry *fe;
15178
15179   /* Grow the array if necessary.  */
15180   if (lh->file_names_size == 0)
15181     {
15182       lh->file_names_size = 1; /* for testing */
15183       lh->file_names = xmalloc (lh->file_names_size
15184                                 * sizeof (*lh->file_names));
15185     }
15186   else if (lh->num_file_names >= lh->file_names_size)
15187     {
15188       lh->file_names_size *= 2;
15189       lh->file_names = xrealloc (lh->file_names,
15190                                  (lh->file_names_size
15191                                   * sizeof (*lh->file_names)));
15192     }
15193
15194   fe = &lh->file_names[lh->num_file_names++];
15195   fe->name = name;
15196   fe->dir_index = dir_index;
15197   fe->mod_time = mod_time;
15198   fe->length = length;
15199   fe->included_p = 0;
15200   fe->symtab = NULL;
15201 }
15202
15203 /* A convenience function to find the proper .debug_line section for a
15204    CU.  */
15205
15206 static struct dwarf2_section_info *
15207 get_debug_line_section (struct dwarf2_cu *cu)
15208 {
15209   struct dwarf2_section_info *section;
15210
15211   /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
15212      DWO file.  */
15213   if (cu->dwo_unit && cu->per_cu->is_debug_types)
15214     section = &cu->dwo_unit->dwo_file->sections.line;
15215   else if (cu->per_cu->is_dwz)
15216     {
15217       struct dwz_file *dwz = dwarf2_get_dwz_file ();
15218
15219       section = &dwz->line;
15220     }
15221   else
15222     section = &dwarf2_per_objfile->line;
15223
15224   return section;
15225 }
15226
15227 /* Read the statement program header starting at OFFSET in
15228    .debug_line, or .debug_line.dwo.  Return a pointer
15229    to a struct line_header, allocated using xmalloc.
15230
15231    NOTE: the strings in the include directory and file name tables of
15232    the returned object point into the dwarf line section buffer,
15233    and must not be freed.  */
15234
15235 static struct line_header *
15236 dwarf_decode_line_header (unsigned int offset, struct dwarf2_cu *cu)
15237 {
15238   struct cleanup *back_to;
15239   struct line_header *lh;
15240   const gdb_byte *line_ptr;
15241   unsigned int bytes_read, offset_size;
15242   int i;
15243   const char *cur_dir, *cur_file;
15244   struct dwarf2_section_info *section;
15245   bfd *abfd;
15246
15247   section = get_debug_line_section (cu);
15248   dwarf2_read_section (dwarf2_per_objfile->objfile, section);
15249   if (section->buffer == NULL)
15250     {
15251       if (cu->dwo_unit && cu->per_cu->is_debug_types)
15252         complaint (&symfile_complaints, _("missing .debug_line.dwo section"));
15253       else
15254         complaint (&symfile_complaints, _("missing .debug_line section"));
15255       return 0;
15256     }
15257
15258   /* We can't do this until we know the section is non-empty.
15259      Only then do we know we have such a section.  */
15260   abfd = section->asection->owner;
15261
15262   /* Make sure that at least there's room for the total_length field.
15263      That could be 12 bytes long, but we're just going to fudge that.  */
15264   if (offset + 4 >= section->size)
15265     {
15266       dwarf2_statement_list_fits_in_line_number_section_complaint ();
15267       return 0;
15268     }
15269
15270   lh = xmalloc (sizeof (*lh));
15271   memset (lh, 0, sizeof (*lh));
15272   back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
15273                           (void *) lh);
15274
15275   line_ptr = section->buffer + offset;
15276
15277   /* Read in the header.  */
15278   lh->total_length =
15279     read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
15280                                             &bytes_read, &offset_size);
15281   line_ptr += bytes_read;
15282   if (line_ptr + lh->total_length > (section->buffer + section->size))
15283     {
15284       dwarf2_statement_list_fits_in_line_number_section_complaint ();
15285       return 0;
15286     }
15287   lh->statement_program_end = line_ptr + lh->total_length;
15288   lh->version = read_2_bytes (abfd, line_ptr);
15289   line_ptr += 2;
15290   lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
15291   line_ptr += offset_size;
15292   lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
15293   line_ptr += 1;
15294   if (lh->version >= 4)
15295     {
15296       lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
15297       line_ptr += 1;
15298     }
15299   else
15300     lh->maximum_ops_per_instruction = 1;
15301
15302   if (lh->maximum_ops_per_instruction == 0)
15303     {
15304       lh->maximum_ops_per_instruction = 1;
15305       complaint (&symfile_complaints,
15306                  _("invalid maximum_ops_per_instruction "
15307                    "in `.debug_line' section"));
15308     }
15309
15310   lh->default_is_stmt = read_1_byte (abfd, line_ptr);
15311   line_ptr += 1;
15312   lh->line_base = read_1_signed_byte (abfd, line_ptr);
15313   line_ptr += 1;
15314   lh->line_range = read_1_byte (abfd, line_ptr);
15315   line_ptr += 1;
15316   lh->opcode_base = read_1_byte (abfd, line_ptr);
15317   line_ptr += 1;
15318   lh->standard_opcode_lengths
15319     = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
15320
15321   lh->standard_opcode_lengths[0] = 1;  /* This should never be used anyway.  */
15322   for (i = 1; i < lh->opcode_base; ++i)
15323     {
15324       lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
15325       line_ptr += 1;
15326     }
15327
15328   /* Read directory table.  */
15329   while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
15330     {
15331       line_ptr += bytes_read;
15332       add_include_dir (lh, cur_dir);
15333     }
15334   line_ptr += bytes_read;
15335
15336   /* Read file name table.  */
15337   while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
15338     {
15339       unsigned int dir_index, mod_time, length;
15340
15341       line_ptr += bytes_read;
15342       dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15343       line_ptr += bytes_read;
15344       mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15345       line_ptr += bytes_read;
15346       length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15347       line_ptr += bytes_read;
15348
15349       add_file_name (lh, cur_file, dir_index, mod_time, length);
15350     }
15351   line_ptr += bytes_read;
15352   lh->statement_program_start = line_ptr;
15353
15354   if (line_ptr > (section->buffer + section->size))
15355     complaint (&symfile_complaints,
15356                _("line number info header doesn't "
15357                  "fit in `.debug_line' section"));
15358
15359   discard_cleanups (back_to);
15360   return lh;
15361 }
15362
15363 /* Subroutine of dwarf_decode_lines to simplify it.
15364    Return the file name of the psymtab for included file FILE_INDEX
15365    in line header LH of PST.
15366    COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
15367    If space for the result is malloc'd, it will be freed by a cleanup.
15368    Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename.
15369
15370    The function creates dangling cleanup registration.  */
15371
15372 static const char *
15373 psymtab_include_file_name (const struct line_header *lh, int file_index,
15374                            const struct partial_symtab *pst,
15375                            const char *comp_dir)
15376 {
15377   const struct file_entry fe = lh->file_names [file_index];
15378   const char *include_name = fe.name;
15379   const char *include_name_to_compare = include_name;
15380   const char *dir_name = NULL;
15381   const char *pst_filename;
15382   char *copied_name = NULL;
15383   int file_is_pst;
15384
15385   if (fe.dir_index)
15386     dir_name = lh->include_dirs[fe.dir_index - 1];
15387
15388   if (!IS_ABSOLUTE_PATH (include_name)
15389       && (dir_name != NULL || comp_dir != NULL))
15390     {
15391       /* Avoid creating a duplicate psymtab for PST.
15392          We do this by comparing INCLUDE_NAME and PST_FILENAME.
15393          Before we do the comparison, however, we need to account
15394          for DIR_NAME and COMP_DIR.
15395          First prepend dir_name (if non-NULL).  If we still don't
15396          have an absolute path prepend comp_dir (if non-NULL).
15397          However, the directory we record in the include-file's
15398          psymtab does not contain COMP_DIR (to match the
15399          corresponding symtab(s)).
15400
15401          Example:
15402
15403          bash$ cd /tmp
15404          bash$ gcc -g ./hello.c
15405          include_name = "hello.c"
15406          dir_name = "."
15407          DW_AT_comp_dir = comp_dir = "/tmp"
15408          DW_AT_name = "./hello.c"  */
15409
15410       if (dir_name != NULL)
15411         {
15412           char *tem = concat (dir_name, SLASH_STRING,
15413                               include_name, (char *)NULL);
15414
15415           make_cleanup (xfree, tem);
15416           include_name = tem;
15417           include_name_to_compare = include_name;
15418         }
15419       if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
15420         {
15421           char *tem = concat (comp_dir, SLASH_STRING,
15422                               include_name, (char *)NULL);
15423
15424           make_cleanup (xfree, tem);
15425           include_name_to_compare = tem;
15426         }
15427     }
15428
15429   pst_filename = pst->filename;
15430   if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
15431     {
15432       copied_name = concat (pst->dirname, SLASH_STRING,
15433                             pst_filename, (char *)NULL);
15434       pst_filename = copied_name;
15435     }
15436
15437   file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
15438
15439   if (copied_name != NULL)
15440     xfree (copied_name);
15441
15442   if (file_is_pst)
15443     return NULL;
15444   return include_name;
15445 }
15446
15447 /* Ignore this record_line request.  */
15448
15449 static void
15450 noop_record_line (struct subfile *subfile, int line, CORE_ADDR pc)
15451 {
15452   return;
15453 }
15454
15455 /* Subroutine of dwarf_decode_lines to simplify it.
15456    Process the line number information in LH.  */
15457
15458 static void
15459 dwarf_decode_lines_1 (struct line_header *lh, const char *comp_dir,
15460                       struct dwarf2_cu *cu, struct partial_symtab *pst)
15461 {
15462   const gdb_byte *line_ptr, *extended_end;
15463   const gdb_byte *line_end;
15464   unsigned int bytes_read, extended_len;
15465   unsigned char op_code, extended_op, adj_opcode;
15466   CORE_ADDR baseaddr;
15467   struct objfile *objfile = cu->objfile;
15468   bfd *abfd = objfile->obfd;
15469   struct gdbarch *gdbarch = get_objfile_arch (objfile);
15470   const int decode_for_pst_p = (pst != NULL);
15471   struct subfile *last_subfile = NULL;
15472   void (*p_record_line) (struct subfile *subfile, int line, CORE_ADDR pc)
15473     = record_line;
15474
15475   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
15476
15477   line_ptr = lh->statement_program_start;
15478   line_end = lh->statement_program_end;
15479
15480   /* Read the statement sequences until there's nothing left.  */
15481   while (line_ptr < line_end)
15482     {
15483       /* state machine registers  */
15484       CORE_ADDR address = 0;
15485       unsigned int file = 1;
15486       unsigned int line = 1;
15487       unsigned int column = 0;
15488       int is_stmt = lh->default_is_stmt;
15489       int basic_block = 0;
15490       int end_sequence = 0;
15491       CORE_ADDR addr;
15492       unsigned char op_index = 0;
15493
15494       if (!decode_for_pst_p && lh->num_file_names >= file)
15495         {
15496           /* Start a subfile for the current file of the state machine.  */
15497           /* lh->include_dirs and lh->file_names are 0-based, but the
15498              directory and file name numbers in the statement program
15499              are 1-based.  */
15500           struct file_entry *fe = &lh->file_names[file - 1];
15501           const char *dir = NULL;
15502
15503           if (fe->dir_index)
15504             dir = lh->include_dirs[fe->dir_index - 1];
15505
15506           dwarf2_start_subfile (fe->name, dir, comp_dir);
15507         }
15508
15509       /* Decode the table.  */
15510       while (!end_sequence)
15511         {
15512           op_code = read_1_byte (abfd, line_ptr);
15513           line_ptr += 1;
15514           if (line_ptr > line_end)
15515             {
15516               dwarf2_debug_line_missing_end_sequence_complaint ();
15517               break;
15518             }
15519
15520           if (op_code >= lh->opcode_base)
15521             {
15522               /* Special operand.  */
15523               adj_opcode = op_code - lh->opcode_base;
15524               address += (((op_index + (adj_opcode / lh->line_range))
15525                            / lh->maximum_ops_per_instruction)
15526                           * lh->minimum_instruction_length);
15527               op_index = ((op_index + (adj_opcode / lh->line_range))
15528                           % lh->maximum_ops_per_instruction);
15529               line += lh->line_base + (adj_opcode % lh->line_range);
15530               if (lh->num_file_names < file || file == 0)
15531                 dwarf2_debug_line_missing_file_complaint ();
15532               /* For now we ignore lines not starting on an
15533                  instruction boundary.  */
15534               else if (op_index == 0)
15535                 {
15536                   lh->file_names[file - 1].included_p = 1;
15537                   if (!decode_for_pst_p && is_stmt)
15538                     {
15539                       if (last_subfile != current_subfile)
15540                         {
15541                           addr = gdbarch_addr_bits_remove (gdbarch, address);
15542                           if (last_subfile)
15543                             (*p_record_line) (last_subfile, 0, addr);
15544                           last_subfile = current_subfile;
15545                         }
15546                       /* Append row to matrix using current values.  */
15547                       addr = gdbarch_addr_bits_remove (gdbarch, address);
15548                       (*p_record_line) (current_subfile, line, addr);
15549                     }
15550                 }
15551               basic_block = 0;
15552             }
15553           else switch (op_code)
15554             {
15555             case DW_LNS_extended_op:
15556               extended_len = read_unsigned_leb128 (abfd, line_ptr,
15557                                                    &bytes_read);
15558               line_ptr += bytes_read;
15559               extended_end = line_ptr + extended_len;
15560               extended_op = read_1_byte (abfd, line_ptr);
15561               line_ptr += 1;
15562               switch (extended_op)
15563                 {
15564                 case DW_LNE_end_sequence:
15565                   p_record_line = record_line;
15566                   end_sequence = 1;
15567                   break;
15568                 case DW_LNE_set_address:
15569                   address = read_address (abfd, line_ptr, cu, &bytes_read);
15570
15571                   if (address == 0 && !dwarf2_per_objfile->has_section_at_zero)
15572                     {
15573                       /* This line table is for a function which has been
15574                          GCd by the linker.  Ignore it.  PR gdb/12528 */
15575
15576                       long line_offset
15577                         = line_ptr - get_debug_line_section (cu)->buffer;
15578
15579                       complaint (&symfile_complaints,
15580                                  _(".debug_line address at offset 0x%lx is 0 "
15581                                    "[in module %s]"),
15582                                  line_offset, objfile->name);
15583                       p_record_line = noop_record_line;
15584                     }
15585
15586                   op_index = 0;
15587                   line_ptr += bytes_read;
15588                   address += baseaddr;
15589                   break;
15590                 case DW_LNE_define_file:
15591                   {
15592                     const char *cur_file;
15593                     unsigned int dir_index, mod_time, length;
15594
15595                     cur_file = read_direct_string (abfd, line_ptr,
15596                                                    &bytes_read);
15597                     line_ptr += bytes_read;
15598                     dir_index =
15599                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15600                     line_ptr += bytes_read;
15601                     mod_time =
15602                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15603                     line_ptr += bytes_read;
15604                     length =
15605                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15606                     line_ptr += bytes_read;
15607                     add_file_name (lh, cur_file, dir_index, mod_time, length);
15608                   }
15609                   break;
15610                 case DW_LNE_set_discriminator:
15611                   /* The discriminator is not interesting to the debugger;
15612                      just ignore it.  */
15613                   line_ptr = extended_end;
15614                   break;
15615                 default:
15616                   complaint (&symfile_complaints,
15617                              _("mangled .debug_line section"));
15618                   return;
15619                 }
15620               /* Make sure that we parsed the extended op correctly.  If e.g.
15621                  we expected a different address size than the producer used,
15622                  we may have read the wrong number of bytes.  */
15623               if (line_ptr != extended_end)
15624                 {
15625                   complaint (&symfile_complaints,
15626                              _("mangled .debug_line section"));
15627                   return;
15628                 }
15629               break;
15630             case DW_LNS_copy:
15631               if (lh->num_file_names < file || file == 0)
15632                 dwarf2_debug_line_missing_file_complaint ();
15633               else
15634                 {
15635                   lh->file_names[file - 1].included_p = 1;
15636                   if (!decode_for_pst_p && is_stmt)
15637                     {
15638                       if (last_subfile != current_subfile)
15639                         {
15640                           addr = gdbarch_addr_bits_remove (gdbarch, address);
15641                           if (last_subfile)
15642                             (*p_record_line) (last_subfile, 0, addr);
15643                           last_subfile = current_subfile;
15644                         }
15645                       addr = gdbarch_addr_bits_remove (gdbarch, address);
15646                       (*p_record_line) (current_subfile, line, addr);
15647                     }
15648                 }
15649               basic_block = 0;
15650               break;
15651             case DW_LNS_advance_pc:
15652               {
15653                 CORE_ADDR adjust
15654                   = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15655
15656                 address += (((op_index + adjust)
15657                              / lh->maximum_ops_per_instruction)
15658                             * lh->minimum_instruction_length);
15659                 op_index = ((op_index + adjust)
15660                             % lh->maximum_ops_per_instruction);
15661                 line_ptr += bytes_read;
15662               }
15663               break;
15664             case DW_LNS_advance_line:
15665               line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
15666               line_ptr += bytes_read;
15667               break;
15668             case DW_LNS_set_file:
15669               {
15670                 /* The arrays lh->include_dirs and lh->file_names are
15671                    0-based, but the directory and file name numbers in
15672                    the statement program are 1-based.  */
15673                 struct file_entry *fe;
15674                 const char *dir = NULL;
15675
15676                 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15677                 line_ptr += bytes_read;
15678                 if (lh->num_file_names < file || file == 0)
15679                   dwarf2_debug_line_missing_file_complaint ();
15680                 else
15681                   {
15682                     fe = &lh->file_names[file - 1];
15683                     if (fe->dir_index)
15684                       dir = lh->include_dirs[fe->dir_index - 1];
15685                     if (!decode_for_pst_p)
15686                       {
15687                         last_subfile = current_subfile;
15688                         dwarf2_start_subfile (fe->name, dir, comp_dir);
15689                       }
15690                   }
15691               }
15692               break;
15693             case DW_LNS_set_column:
15694               column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15695               line_ptr += bytes_read;
15696               break;
15697             case DW_LNS_negate_stmt:
15698               is_stmt = (!is_stmt);
15699               break;
15700             case DW_LNS_set_basic_block:
15701               basic_block = 1;
15702               break;
15703             /* Add to the address register of the state machine the
15704                address increment value corresponding to special opcode
15705                255.  I.e., this value is scaled by the minimum
15706                instruction length since special opcode 255 would have
15707                scaled the increment.  */
15708             case DW_LNS_const_add_pc:
15709               {
15710                 CORE_ADDR adjust = (255 - lh->opcode_base) / lh->line_range;
15711
15712                 address += (((op_index + adjust)
15713                              / lh->maximum_ops_per_instruction)
15714                             * lh->minimum_instruction_length);
15715                 op_index = ((op_index + adjust)
15716                             % lh->maximum_ops_per_instruction);
15717               }
15718               break;
15719             case DW_LNS_fixed_advance_pc:
15720               address += read_2_bytes (abfd, line_ptr);
15721               op_index = 0;
15722               line_ptr += 2;
15723               break;
15724             default:
15725               {
15726                 /* Unknown standard opcode, ignore it.  */
15727                 int i;
15728
15729                 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
15730                   {
15731                     (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15732                     line_ptr += bytes_read;
15733                   }
15734               }
15735             }
15736         }
15737       if (lh->num_file_names < file || file == 0)
15738         dwarf2_debug_line_missing_file_complaint ();
15739       else
15740         {
15741           lh->file_names[file - 1].included_p = 1;
15742           if (!decode_for_pst_p)
15743             {
15744               addr = gdbarch_addr_bits_remove (gdbarch, address);
15745               (*p_record_line) (current_subfile, 0, addr);
15746             }
15747         }
15748     }
15749 }
15750
15751 /* Decode the Line Number Program (LNP) for the given line_header
15752    structure and CU.  The actual information extracted and the type
15753    of structures created from the LNP depends on the value of PST.
15754
15755    1. If PST is NULL, then this procedure uses the data from the program
15756       to create all necessary symbol tables, and their linetables.
15757
15758    2. If PST is not NULL, this procedure reads the program to determine
15759       the list of files included by the unit represented by PST, and
15760       builds all the associated partial symbol tables.
15761
15762    COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
15763    It is used for relative paths in the line table.
15764    NOTE: When processing partial symtabs (pst != NULL),
15765    comp_dir == pst->dirname.
15766
15767    NOTE: It is important that psymtabs have the same file name (via strcmp)
15768    as the corresponding symtab.  Since COMP_DIR is not used in the name of the
15769    symtab we don't use it in the name of the psymtabs we create.
15770    E.g. expand_line_sal requires this when finding psymtabs to expand.
15771    A good testcase for this is mb-inline.exp.  */
15772
15773 static void
15774 dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
15775                     struct dwarf2_cu *cu, struct partial_symtab *pst,
15776                     int want_line_info)
15777 {
15778   struct objfile *objfile = cu->objfile;
15779   const int decode_for_pst_p = (pst != NULL);
15780   struct subfile *first_subfile = current_subfile;
15781
15782   if (want_line_info)
15783     dwarf_decode_lines_1 (lh, comp_dir, cu, pst);
15784
15785   if (decode_for_pst_p)
15786     {
15787       int file_index;
15788
15789       /* Now that we're done scanning the Line Header Program, we can
15790          create the psymtab of each included file.  */
15791       for (file_index = 0; file_index < lh->num_file_names; file_index++)
15792         if (lh->file_names[file_index].included_p == 1)
15793           {
15794             const char *include_name =
15795               psymtab_include_file_name (lh, file_index, pst, comp_dir);
15796             if (include_name != NULL)
15797               dwarf2_create_include_psymtab (include_name, pst, objfile);
15798           }
15799     }
15800   else
15801     {
15802       /* Make sure a symtab is created for every file, even files
15803          which contain only variables (i.e. no code with associated
15804          line numbers).  */
15805       int i;
15806
15807       for (i = 0; i < lh->num_file_names; i++)
15808         {
15809           const char *dir = NULL;
15810           struct file_entry *fe;
15811
15812           fe = &lh->file_names[i];
15813           if (fe->dir_index)
15814             dir = lh->include_dirs[fe->dir_index - 1];
15815           dwarf2_start_subfile (fe->name, dir, comp_dir);
15816
15817           /* Skip the main file; we don't need it, and it must be
15818              allocated last, so that it will show up before the
15819              non-primary symtabs in the objfile's symtab list.  */
15820           if (current_subfile == first_subfile)
15821             continue;
15822
15823           if (current_subfile->symtab == NULL)
15824             current_subfile->symtab = allocate_symtab (current_subfile->name,
15825                                                        objfile);
15826           fe->symtab = current_subfile->symtab;
15827         }
15828     }
15829 }
15830
15831 /* Start a subfile for DWARF.  FILENAME is the name of the file and
15832    DIRNAME the name of the source directory which contains FILENAME
15833    or NULL if not known.  COMP_DIR is the compilation directory for the
15834    linetable's compilation unit or NULL if not known.
15835    This routine tries to keep line numbers from identical absolute and
15836    relative file names in a common subfile.
15837
15838    Using the `list' example from the GDB testsuite, which resides in
15839    /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
15840    of /srcdir/list0.c yields the following debugging information for list0.c:
15841
15842    DW_AT_name:          /srcdir/list0.c
15843    DW_AT_comp_dir:              /compdir
15844    files.files[0].name: list0.h
15845    files.files[0].dir:  /srcdir
15846    files.files[1].name: list0.c
15847    files.files[1].dir:  /srcdir
15848
15849    The line number information for list0.c has to end up in a single
15850    subfile, so that `break /srcdir/list0.c:1' works as expected.
15851    start_subfile will ensure that this happens provided that we pass the
15852    concatenation of files.files[1].dir and files.files[1].name as the
15853    subfile's name.  */
15854
15855 static void
15856 dwarf2_start_subfile (const char *filename, const char *dirname,
15857                       const char *comp_dir)
15858 {
15859   char *copy = NULL;
15860
15861   /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
15862      `start_symtab' will always pass the contents of DW_AT_comp_dir as
15863      second argument to start_subfile.  To be consistent, we do the
15864      same here.  In order not to lose the line information directory,
15865      we concatenate it to the filename when it makes sense.
15866      Note that the Dwarf3 standard says (speaking of filenames in line
15867      information): ``The directory index is ignored for file names
15868      that represent full path names''.  Thus ignoring dirname in the
15869      `else' branch below isn't an issue.  */
15870
15871   if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
15872     {
15873       copy = concat (dirname, SLASH_STRING, filename, (char *)NULL);
15874       filename = copy;
15875     }
15876
15877   start_subfile (filename, comp_dir);
15878
15879   if (copy != NULL)
15880     xfree (copy);
15881 }
15882
15883 /* Start a symtab for DWARF.
15884    NAME, COMP_DIR, LOW_PC are passed to start_symtab.  */
15885
15886 static void
15887 dwarf2_start_symtab (struct dwarf2_cu *cu,
15888                      const char *name, const char *comp_dir, CORE_ADDR low_pc)
15889 {
15890   start_symtab (name, comp_dir, low_pc);
15891   record_debugformat ("DWARF 2");
15892   record_producer (cu->producer);
15893
15894   /* We assume that we're processing GCC output.  */
15895   processing_gcc_compilation = 2;
15896
15897   cu->processing_has_namespace_info = 0;
15898 }
15899
15900 static void
15901 var_decode_location (struct attribute *attr, struct symbol *sym,
15902                      struct dwarf2_cu *cu)
15903 {
15904   struct objfile *objfile = cu->objfile;
15905   struct comp_unit_head *cu_header = &cu->header;
15906
15907   /* NOTE drow/2003-01-30: There used to be a comment and some special
15908      code here to turn a symbol with DW_AT_external and a
15909      SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol.  This was
15910      necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
15911      with some versions of binutils) where shared libraries could have
15912      relocations against symbols in their debug information - the
15913      minimal symbol would have the right address, but the debug info
15914      would not.  It's no longer necessary, because we will explicitly
15915      apply relocations when we read in the debug information now.  */
15916
15917   /* A DW_AT_location attribute with no contents indicates that a
15918      variable has been optimized away.  */
15919   if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
15920     {
15921       SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
15922       return;
15923     }
15924
15925   /* Handle one degenerate form of location expression specially, to
15926      preserve GDB's previous behavior when section offsets are
15927      specified.  If this is just a DW_OP_addr or DW_OP_GNU_addr_index
15928      then mark this symbol as LOC_STATIC.  */
15929
15930   if (attr_form_is_block (attr)
15931       && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
15932            && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
15933           || (DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
15934               && (DW_BLOCK (attr)->size
15935                   == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
15936     {
15937       unsigned int dummy;
15938
15939       if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
15940         SYMBOL_VALUE_ADDRESS (sym) =
15941           read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
15942       else
15943         SYMBOL_VALUE_ADDRESS (sym) =
15944           read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1, &dummy);
15945       SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
15946       fixup_symbol_section (sym, objfile);
15947       SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
15948                                               SYMBOL_SECTION (sym));
15949       return;
15950     }
15951
15952   /* NOTE drow/2002-01-30: It might be worthwhile to have a static
15953      expression evaluator, and use LOC_COMPUTED only when necessary
15954      (i.e. when the value of a register or memory location is
15955      referenced, or a thread-local block, etc.).  Then again, it might
15956      not be worthwhile.  I'm assuming that it isn't unless performance
15957      or memory numbers show me otherwise.  */
15958
15959   dwarf2_symbol_mark_computed (attr, sym, cu, 0);
15960
15961   if (SYMBOL_COMPUTED_OPS (sym)->location_has_loclist)
15962     cu->has_loclist = 1;
15963 }
15964
15965 /* Given a pointer to a DWARF information entry, figure out if we need
15966    to make a symbol table entry for it, and if so, create a new entry
15967    and return a pointer to it.
15968    If TYPE is NULL, determine symbol type from the die, otherwise
15969    used the passed type.
15970    If SPACE is not NULL, use it to hold the new symbol.  If it is
15971    NULL, allocate a new symbol on the objfile's obstack.  */
15972
15973 static struct symbol *
15974 new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
15975                  struct symbol *space)
15976 {
15977   struct objfile *objfile = cu->objfile;
15978   struct symbol *sym = NULL;
15979   const char *name;
15980   struct attribute *attr = NULL;
15981   struct attribute *attr2 = NULL;
15982   CORE_ADDR baseaddr;
15983   struct pending **list_to_add = NULL;
15984
15985   int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
15986
15987   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
15988
15989   name = dwarf2_name (die, cu);
15990   if (name)
15991     {
15992       const char *linkagename;
15993       int suppress_add = 0;
15994
15995       if (space)
15996         sym = space;
15997       else
15998         sym = allocate_symbol (objfile);
15999       OBJSTAT (objfile, n_syms++);
16000
16001       /* Cache this symbol's name and the name's demangled form (if any).  */
16002       SYMBOL_SET_LANGUAGE (sym, cu->language, &objfile->objfile_obstack);
16003       linkagename = dwarf2_physname (name, die, cu);
16004       SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
16005
16006       /* Fortran does not have mangling standard and the mangling does differ
16007          between gfortran, iFort etc.  */
16008       if (cu->language == language_fortran
16009           && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
16010         symbol_set_demangled_name (&(sym->ginfo),
16011                                    dwarf2_full_name (name, die, cu),
16012                                    NULL);
16013
16014       /* Default assumptions.
16015          Use the passed type or decode it from the die.  */
16016       SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
16017       SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
16018       if (type != NULL)
16019         SYMBOL_TYPE (sym) = type;
16020       else
16021         SYMBOL_TYPE (sym) = die_type (die, cu);
16022       attr = dwarf2_attr (die,
16023                           inlined_func ? DW_AT_call_line : DW_AT_decl_line,
16024                           cu);
16025       if (attr)
16026         {
16027           SYMBOL_LINE (sym) = DW_UNSND (attr);
16028         }
16029
16030       attr = dwarf2_attr (die,
16031                           inlined_func ? DW_AT_call_file : DW_AT_decl_file,
16032                           cu);
16033       if (attr)
16034         {
16035           int file_index = DW_UNSND (attr);
16036
16037           if (cu->line_header == NULL
16038               || file_index > cu->line_header->num_file_names)
16039             complaint (&symfile_complaints,
16040                        _("file index out of range"));
16041           else if (file_index > 0)
16042             {
16043               struct file_entry *fe;
16044
16045               fe = &cu->line_header->file_names[file_index - 1];
16046               SYMBOL_SYMTAB (sym) = fe->symtab;
16047             }
16048         }
16049
16050       switch (die->tag)
16051         {
16052         case DW_TAG_label:
16053           attr = dwarf2_attr (die, DW_AT_low_pc, cu);
16054           if (attr)
16055             {
16056               SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
16057             }
16058           SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
16059           SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
16060           SYMBOL_ACLASS_INDEX (sym) = LOC_LABEL;
16061           add_symbol_to_list (sym, cu->list_in_scope);
16062           break;
16063         case DW_TAG_subprogram:
16064           /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
16065              finish_block.  */
16066           SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
16067           attr2 = dwarf2_attr (die, DW_AT_external, cu);
16068           if ((attr2 && (DW_UNSND (attr2) != 0))
16069               || cu->language == language_ada)
16070             {
16071               /* Subprograms marked external are stored as a global symbol.
16072                  Ada subprograms, whether marked external or not, are always
16073                  stored as a global symbol, because we want to be able to
16074                  access them globally.  For instance, we want to be able
16075                  to break on a nested subprogram without having to
16076                  specify the context.  */
16077               list_to_add = &global_symbols;
16078             }
16079           else
16080             {
16081               list_to_add = cu->list_in_scope;
16082             }
16083           break;
16084         case DW_TAG_inlined_subroutine:
16085           /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
16086              finish_block.  */
16087           SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
16088           SYMBOL_INLINED (sym) = 1;
16089           list_to_add = cu->list_in_scope;
16090           break;
16091         case DW_TAG_template_value_param:
16092           suppress_add = 1;
16093           /* Fall through.  */
16094         case DW_TAG_constant:
16095         case DW_TAG_variable:
16096         case DW_TAG_member:
16097           /* Compilation with minimal debug info may result in
16098              variables with missing type entries.  Change the
16099              misleading `void' type to something sensible.  */
16100           if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
16101             SYMBOL_TYPE (sym)
16102               = objfile_type (objfile)->nodebug_data_symbol;
16103
16104           attr = dwarf2_attr (die, DW_AT_const_value, cu);
16105           /* In the case of DW_TAG_member, we should only be called for
16106              static const members.  */
16107           if (die->tag == DW_TAG_member)
16108             {
16109               /* dwarf2_add_field uses die_is_declaration,
16110                  so we do the same.  */
16111               gdb_assert (die_is_declaration (die, cu));
16112               gdb_assert (attr);
16113             }
16114           if (attr)
16115             {
16116               dwarf2_const_value (attr, sym, cu);
16117               attr2 = dwarf2_attr (die, DW_AT_external, cu);
16118               if (!suppress_add)
16119                 {
16120                   if (attr2 && (DW_UNSND (attr2) != 0))
16121                     list_to_add = &global_symbols;
16122                   else
16123                     list_to_add = cu->list_in_scope;
16124                 }
16125               break;
16126             }
16127           attr = dwarf2_attr (die, DW_AT_location, cu);
16128           if (attr)
16129             {
16130               var_decode_location (attr, sym, cu);
16131               attr2 = dwarf2_attr (die, DW_AT_external, cu);
16132
16133               /* Fortran explicitly imports any global symbols to the local
16134                  scope by DW_TAG_common_block.  */
16135               if (cu->language == language_fortran && die->parent
16136                   && die->parent->tag == DW_TAG_common_block)
16137                 attr2 = NULL;
16138
16139               if (SYMBOL_CLASS (sym) == LOC_STATIC
16140                   && SYMBOL_VALUE_ADDRESS (sym) == 0
16141                   && !dwarf2_per_objfile->has_section_at_zero)
16142                 {
16143                   /* When a static variable is eliminated by the linker,
16144                      the corresponding debug information is not stripped
16145                      out, but the variable address is set to null;
16146                      do not add such variables into symbol table.  */
16147                 }
16148               else if (attr2 && (DW_UNSND (attr2) != 0))
16149                 {
16150                   /* Workaround gfortran PR debug/40040 - it uses
16151                      DW_AT_location for variables in -fPIC libraries which may
16152                      get overriden by other libraries/executable and get
16153                      a different address.  Resolve it by the minimal symbol
16154                      which may come from inferior's executable using copy
16155                      relocation.  Make this workaround only for gfortran as for
16156                      other compilers GDB cannot guess the minimal symbol
16157                      Fortran mangling kind.  */
16158                   if (cu->language == language_fortran && die->parent
16159                       && die->parent->tag == DW_TAG_module
16160                       && cu->producer
16161                       && strncmp (cu->producer, "GNU Fortran ", 12) == 0)
16162                     SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
16163
16164                   /* A variable with DW_AT_external is never static,
16165                      but it may be block-scoped.  */
16166                   list_to_add = (cu->list_in_scope == &file_symbols
16167                                  ? &global_symbols : cu->list_in_scope);
16168                 }
16169               else
16170                 list_to_add = cu->list_in_scope;
16171             }
16172           else
16173             {
16174               /* We do not know the address of this symbol.
16175                  If it is an external symbol and we have type information
16176                  for it, enter the symbol as a LOC_UNRESOLVED symbol.
16177                  The address of the variable will then be determined from
16178                  the minimal symbol table whenever the variable is
16179                  referenced.  */
16180               attr2 = dwarf2_attr (die, DW_AT_external, cu);
16181
16182               /* Fortran explicitly imports any global symbols to the local
16183                  scope by DW_TAG_common_block.  */
16184               if (cu->language == language_fortran && die->parent
16185                   && die->parent->tag == DW_TAG_common_block)
16186                 {
16187                   /* SYMBOL_CLASS doesn't matter here because
16188                      read_common_block is going to reset it.  */
16189                   if (!suppress_add)
16190                     list_to_add = cu->list_in_scope;
16191                 }
16192               else if (attr2 && (DW_UNSND (attr2) != 0)
16193                        && dwarf2_attr (die, DW_AT_type, cu) != NULL)
16194                 {
16195                   /* A variable with DW_AT_external is never static, but it
16196                      may be block-scoped.  */
16197                   list_to_add = (cu->list_in_scope == &file_symbols
16198                                  ? &global_symbols : cu->list_in_scope);
16199
16200                   SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
16201                 }
16202               else if (!die_is_declaration (die, cu))
16203                 {
16204                   /* Use the default LOC_OPTIMIZED_OUT class.  */
16205                   gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
16206                   if (!suppress_add)
16207                     list_to_add = cu->list_in_scope;
16208                 }
16209             }
16210           break;
16211         case DW_TAG_formal_parameter:
16212           /* If we are inside a function, mark this as an argument.  If
16213              not, we might be looking at an argument to an inlined function
16214              when we do not have enough information to show inlined frames;
16215              pretend it's a local variable in that case so that the user can
16216              still see it.  */
16217           if (context_stack_depth > 0
16218               && context_stack[context_stack_depth - 1].name != NULL)
16219             SYMBOL_IS_ARGUMENT (sym) = 1;
16220           attr = dwarf2_attr (die, DW_AT_location, cu);
16221           if (attr)
16222             {
16223               var_decode_location (attr, sym, cu);
16224             }
16225           attr = dwarf2_attr (die, DW_AT_const_value, cu);
16226           if (attr)
16227             {
16228               dwarf2_const_value (attr, sym, cu);
16229             }
16230
16231           list_to_add = cu->list_in_scope;
16232           break;
16233         case DW_TAG_unspecified_parameters:
16234           /* From varargs functions; gdb doesn't seem to have any
16235              interest in this information, so just ignore it for now.
16236              (FIXME?) */
16237           break;
16238         case DW_TAG_template_type_param:
16239           suppress_add = 1;
16240           /* Fall through.  */
16241         case DW_TAG_class_type:
16242         case DW_TAG_interface_type:
16243         case DW_TAG_structure_type:
16244         case DW_TAG_union_type:
16245         case DW_TAG_set_type:
16246         case DW_TAG_enumeration_type:
16247           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16248           SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
16249
16250           {
16251             /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
16252                really ever be static objects: otherwise, if you try
16253                to, say, break of a class's method and you're in a file
16254                which doesn't mention that class, it won't work unless
16255                the check for all static symbols in lookup_symbol_aux
16256                saves you.  See the OtherFileClass tests in
16257                gdb.c++/namespace.exp.  */
16258
16259             if (!suppress_add)
16260               {
16261                 list_to_add = (cu->list_in_scope == &file_symbols
16262                                && (cu->language == language_cplus
16263                                    || cu->language == language_java)
16264                                ? &global_symbols : cu->list_in_scope);
16265
16266                 /* The semantics of C++ state that "struct foo {
16267                    ... }" also defines a typedef for "foo".  A Java
16268                    class declaration also defines a typedef for the
16269                    class.  */
16270                 if (cu->language == language_cplus
16271                     || cu->language == language_java
16272                     || cu->language == language_ada)
16273                   {
16274                     /* The symbol's name is already allocated along
16275                        with this objfile, so we don't need to
16276                        duplicate it for the type.  */
16277                     if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
16278                       TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
16279                   }
16280               }
16281           }
16282           break;
16283         case DW_TAG_typedef:
16284           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16285           SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
16286           list_to_add = cu->list_in_scope;
16287           break;
16288         case DW_TAG_base_type:
16289         case DW_TAG_subrange_type:
16290           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16291           SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
16292           list_to_add = cu->list_in_scope;
16293           break;
16294         case DW_TAG_enumerator:
16295           attr = dwarf2_attr (die, DW_AT_const_value, cu);
16296           if (attr)
16297             {
16298               dwarf2_const_value (attr, sym, cu);
16299             }
16300           {
16301             /* NOTE: carlton/2003-11-10: See comment above in the
16302                DW_TAG_class_type, etc. block.  */
16303
16304             list_to_add = (cu->list_in_scope == &file_symbols
16305                            && (cu->language == language_cplus
16306                                || cu->language == language_java)
16307                            ? &global_symbols : cu->list_in_scope);
16308           }
16309           break;
16310         case DW_TAG_namespace:
16311           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16312           list_to_add = &global_symbols;
16313           break;
16314         case DW_TAG_common_block:
16315           SYMBOL_ACLASS_INDEX (sym) = LOC_COMMON_BLOCK;
16316           SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
16317           add_symbol_to_list (sym, cu->list_in_scope);
16318           break;
16319         default:
16320           /* Not a tag we recognize.  Hopefully we aren't processing
16321              trash data, but since we must specifically ignore things
16322              we don't recognize, there is nothing else we should do at
16323              this point.  */
16324           complaint (&symfile_complaints, _("unsupported tag: '%s'"),
16325                      dwarf_tag_name (die->tag));
16326           break;
16327         }
16328
16329       if (suppress_add)
16330         {
16331           sym->hash_next = objfile->template_symbols;
16332           objfile->template_symbols = sym;
16333           list_to_add = NULL;
16334         }
16335
16336       if (list_to_add != NULL)
16337         add_symbol_to_list (sym, list_to_add);
16338
16339       /* For the benefit of old versions of GCC, check for anonymous
16340          namespaces based on the demangled name.  */
16341       if (!cu->processing_has_namespace_info
16342           && cu->language == language_cplus)
16343         cp_scan_for_anonymous_namespaces (sym, objfile);
16344     }
16345   return (sym);
16346 }
16347
16348 /* A wrapper for new_symbol_full that always allocates a new symbol.  */
16349
16350 static struct symbol *
16351 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
16352 {
16353   return new_symbol_full (die, type, cu, NULL);
16354 }
16355
16356 /* Given an attr with a DW_FORM_dataN value in host byte order,
16357    zero-extend it as appropriate for the symbol's type.  The DWARF
16358    standard (v4) is not entirely clear about the meaning of using
16359    DW_FORM_dataN for a constant with a signed type, where the type is
16360    wider than the data.  The conclusion of a discussion on the DWARF
16361    list was that this is unspecified.  We choose to always zero-extend
16362    because that is the interpretation long in use by GCC.  */
16363
16364 static gdb_byte *
16365 dwarf2_const_value_data (struct attribute *attr, struct obstack *obstack,
16366                          struct dwarf2_cu *cu, LONGEST *value, int bits)
16367 {
16368   struct objfile *objfile = cu->objfile;
16369   enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
16370                                 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
16371   LONGEST l = DW_UNSND (attr);
16372
16373   if (bits < sizeof (*value) * 8)
16374     {
16375       l &= ((LONGEST) 1 << bits) - 1;
16376       *value = l;
16377     }
16378   else if (bits == sizeof (*value) * 8)
16379     *value = l;
16380   else
16381     {
16382       gdb_byte *bytes = obstack_alloc (obstack, bits / 8);
16383       store_unsigned_integer (bytes, bits / 8, byte_order, l);
16384       return bytes;
16385     }
16386
16387   return NULL;
16388 }
16389
16390 /* Read a constant value from an attribute.  Either set *VALUE, or if
16391    the value does not fit in *VALUE, set *BYTES - either already
16392    allocated on the objfile obstack, or newly allocated on OBSTACK,
16393    or, set *BATON, if we translated the constant to a location
16394    expression.  */
16395
16396 static void
16397 dwarf2_const_value_attr (struct attribute *attr, struct type *type,
16398                          const char *name, struct obstack *obstack,
16399                          struct dwarf2_cu *cu,
16400                          LONGEST *value, const gdb_byte **bytes,
16401                          struct dwarf2_locexpr_baton **baton)
16402 {
16403   struct objfile *objfile = cu->objfile;
16404   struct comp_unit_head *cu_header = &cu->header;
16405   struct dwarf_block *blk;
16406   enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
16407                                 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
16408
16409   *value = 0;
16410   *bytes = NULL;
16411   *baton = NULL;
16412
16413   switch (attr->form)
16414     {
16415     case DW_FORM_addr:
16416     case DW_FORM_GNU_addr_index:
16417       {
16418         gdb_byte *data;
16419
16420         if (TYPE_LENGTH (type) != cu_header->addr_size)
16421           dwarf2_const_value_length_mismatch_complaint (name,
16422                                                         cu_header->addr_size,
16423                                                         TYPE_LENGTH (type));
16424         /* Symbols of this form are reasonably rare, so we just
16425            piggyback on the existing location code rather than writing
16426            a new implementation of symbol_computed_ops.  */
16427         *baton = obstack_alloc (obstack, sizeof (struct dwarf2_locexpr_baton));
16428         (*baton)->per_cu = cu->per_cu;
16429         gdb_assert ((*baton)->per_cu);
16430
16431         (*baton)->size = 2 + cu_header->addr_size;
16432         data = obstack_alloc (obstack, (*baton)->size);
16433         (*baton)->data = data;
16434
16435         data[0] = DW_OP_addr;
16436         store_unsigned_integer (&data[1], cu_header->addr_size,
16437                                 byte_order, DW_ADDR (attr));
16438         data[cu_header->addr_size + 1] = DW_OP_stack_value;
16439       }
16440       break;
16441     case DW_FORM_string:
16442     case DW_FORM_strp:
16443     case DW_FORM_GNU_str_index:
16444     case DW_FORM_GNU_strp_alt:
16445       /* DW_STRING is already allocated on the objfile obstack, point
16446          directly to it.  */
16447       *bytes = (const gdb_byte *) DW_STRING (attr);
16448       break;
16449     case DW_FORM_block1:
16450     case DW_FORM_block2:
16451     case DW_FORM_block4:
16452     case DW_FORM_block:
16453     case DW_FORM_exprloc:
16454       blk = DW_BLOCK (attr);
16455       if (TYPE_LENGTH (type) != blk->size)
16456         dwarf2_const_value_length_mismatch_complaint (name, blk->size,
16457                                                       TYPE_LENGTH (type));
16458       *bytes = blk->data;
16459       break;
16460
16461       /* The DW_AT_const_value attributes are supposed to carry the
16462          symbol's value "represented as it would be on the target
16463          architecture."  By the time we get here, it's already been
16464          converted to host endianness, so we just need to sign- or
16465          zero-extend it as appropriate.  */
16466     case DW_FORM_data1:
16467       *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 8);
16468       break;
16469     case DW_FORM_data2:
16470       *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 16);
16471       break;
16472     case DW_FORM_data4:
16473       *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 32);
16474       break;
16475     case DW_FORM_data8:
16476       *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 64);
16477       break;
16478
16479     case DW_FORM_sdata:
16480       *value = DW_SND (attr);
16481       break;
16482
16483     case DW_FORM_udata:
16484       *value = DW_UNSND (attr);
16485       break;
16486
16487     default:
16488       complaint (&symfile_complaints,
16489                  _("unsupported const value attribute form: '%s'"),
16490                  dwarf_form_name (attr->form));
16491       *value = 0;
16492       break;
16493     }
16494 }
16495
16496
16497 /* Copy constant value from an attribute to a symbol.  */
16498
16499 static void
16500 dwarf2_const_value (struct attribute *attr, struct symbol *sym,
16501                     struct dwarf2_cu *cu)
16502 {
16503   struct objfile *objfile = cu->objfile;
16504   struct comp_unit_head *cu_header = &cu->header;
16505   LONGEST value;
16506   const gdb_byte *bytes;
16507   struct dwarf2_locexpr_baton *baton;
16508
16509   dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
16510                            SYMBOL_PRINT_NAME (sym),
16511                            &objfile->objfile_obstack, cu,
16512                            &value, &bytes, &baton);
16513
16514   if (baton != NULL)
16515     {
16516       SYMBOL_LOCATION_BATON (sym) = baton;
16517       SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
16518     }
16519   else if (bytes != NULL)
16520      {
16521       SYMBOL_VALUE_BYTES (sym) = bytes;
16522       SYMBOL_ACLASS_INDEX (sym) = LOC_CONST_BYTES;
16523     }
16524   else
16525     {
16526       SYMBOL_VALUE (sym) = value;
16527       SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
16528     }
16529 }
16530
16531 /* Return the type of the die in question using its DW_AT_type attribute.  */
16532
16533 static struct type *
16534 die_type (struct die_info *die, struct dwarf2_cu *cu)
16535 {
16536   struct attribute *type_attr;
16537
16538   type_attr = dwarf2_attr (die, DW_AT_type, cu);
16539   if (!type_attr)
16540     {
16541       /* A missing DW_AT_type represents a void type.  */
16542       return objfile_type (cu->objfile)->builtin_void;
16543     }
16544
16545   return lookup_die_type (die, type_attr, cu);
16546 }
16547
16548 /* True iff CU's producer generates GNAT Ada auxiliary information
16549    that allows to find parallel types through that information instead
16550    of having to do expensive parallel lookups by type name.  */
16551
16552 static int
16553 need_gnat_info (struct dwarf2_cu *cu)
16554 {
16555   /* FIXME: brobecker/2010-10-12: As of now, only the AdaCore version
16556      of GNAT produces this auxiliary information, without any indication
16557      that it is produced.  Part of enhancing the FSF version of GNAT
16558      to produce that information will be to put in place an indicator
16559      that we can use in order to determine whether the descriptive type
16560      info is available or not.  One suggestion that has been made is
16561      to use a new attribute, attached to the CU die.  For now, assume
16562      that the descriptive type info is not available.  */
16563   return 0;
16564 }
16565
16566 /* Return the auxiliary type of the die in question using its
16567    DW_AT_GNAT_descriptive_type attribute.  Returns NULL if the
16568    attribute is not present.  */
16569
16570 static struct type *
16571 die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
16572 {
16573   struct attribute *type_attr;
16574
16575   type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
16576   if (!type_attr)
16577     return NULL;
16578
16579   return lookup_die_type (die, type_attr, cu);
16580 }
16581
16582 /* If DIE has a descriptive_type attribute, then set the TYPE's
16583    descriptive type accordingly.  */
16584
16585 static void
16586 set_descriptive_type (struct type *type, struct die_info *die,
16587                       struct dwarf2_cu *cu)
16588 {
16589   struct type *descriptive_type = die_descriptive_type (die, cu);
16590
16591   if (descriptive_type)
16592     {
16593       ALLOCATE_GNAT_AUX_TYPE (type);
16594       TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
16595     }
16596 }
16597
16598 /* Return the containing type of the die in question using its
16599    DW_AT_containing_type attribute.  */
16600
16601 static struct type *
16602 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
16603 {
16604   struct attribute *type_attr;
16605
16606   type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
16607   if (!type_attr)
16608     error (_("Dwarf Error: Problem turning containing type into gdb type "
16609              "[in module %s]"), cu->objfile->name);
16610
16611   return lookup_die_type (die, type_attr, cu);
16612 }
16613
16614 /* Return an error marker type to use for the ill formed type in DIE/CU.  */
16615
16616 static struct type *
16617 build_error_marker_type (struct dwarf2_cu *cu, struct die_info *die)
16618 {
16619   struct objfile *objfile = dwarf2_per_objfile->objfile;
16620   char *message, *saved;
16621
16622   message = xstrprintf (_("<unknown type in %s, CU 0x%x, DIE 0x%x>"),
16623                         objfile->name,
16624                         cu->header.offset.sect_off,
16625                         die->offset.sect_off);
16626   saved = obstack_copy0 (&objfile->objfile_obstack,
16627                          message, strlen (message));
16628   xfree (message);
16629
16630   return init_type (TYPE_CODE_ERROR, 0, 0, saved, objfile);
16631 }
16632
16633 /* Look up the type of DIE in CU using its type attribute ATTR.
16634    ATTR must be one of: DW_AT_type, DW_AT_GNAT_descriptive_type,
16635    DW_AT_containing_type.
16636    If there is no type substitute an error marker.  */
16637
16638 static struct type *
16639 lookup_die_type (struct die_info *die, struct attribute *attr,
16640                  struct dwarf2_cu *cu)
16641 {
16642   struct objfile *objfile = cu->objfile;
16643   struct type *this_type;
16644
16645   gdb_assert (attr->name == DW_AT_type
16646               || attr->name == DW_AT_GNAT_descriptive_type
16647               || attr->name == DW_AT_containing_type);
16648
16649   /* First see if we have it cached.  */
16650
16651   if (attr->form == DW_FORM_GNU_ref_alt)
16652     {
16653       struct dwarf2_per_cu_data *per_cu;
16654       sect_offset offset = dwarf2_get_ref_die_offset (attr);
16655
16656       per_cu = dwarf2_find_containing_comp_unit (offset, 1, cu->objfile);
16657       this_type = get_die_type_at_offset (offset, per_cu);
16658     }
16659   else if (is_ref_attr (attr))
16660     {
16661       sect_offset offset = dwarf2_get_ref_die_offset (attr);
16662
16663       this_type = get_die_type_at_offset (offset, cu->per_cu);
16664     }
16665   else if (attr->form == DW_FORM_ref_sig8)
16666     {
16667       ULONGEST signature = DW_SIGNATURE (attr);
16668
16669       return get_signatured_type (die, signature, cu);
16670     }
16671   else
16672     {
16673       complaint (&symfile_complaints,
16674                  _("Dwarf Error: Bad type attribute %s in DIE"
16675                    " at 0x%x [in module %s]"),
16676                  dwarf_attr_name (attr->name), die->offset.sect_off,
16677                  objfile->name);
16678       return build_error_marker_type (cu, die);
16679     }
16680
16681   /* If not cached we need to read it in.  */
16682
16683   if (this_type == NULL)
16684     {
16685       struct die_info *type_die = NULL;
16686       struct dwarf2_cu *type_cu = cu;
16687
16688       if (is_ref_attr (attr))
16689         type_die = follow_die_ref (die, attr, &type_cu);
16690       if (type_die == NULL)
16691         return build_error_marker_type (cu, die);
16692       /* If we find the type now, it's probably because the type came
16693          from an inter-CU reference and the type's CU got expanded before
16694          ours.  */
16695       this_type = read_type_die (type_die, type_cu);
16696     }
16697
16698   /* If we still don't have a type use an error marker.  */
16699
16700   if (this_type == NULL)
16701     return build_error_marker_type (cu, die);
16702
16703   return this_type;
16704 }
16705
16706 /* Return the type in DIE, CU.
16707    Returns NULL for invalid types.
16708
16709    This first does a lookup in die_type_hash,
16710    and only reads the die in if necessary.
16711
16712    NOTE: This can be called when reading in partial or full symbols.  */
16713
16714 static struct type *
16715 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
16716 {
16717   struct type *this_type;
16718
16719   this_type = get_die_type (die, cu);
16720   if (this_type)
16721     return this_type;
16722
16723   return read_type_die_1 (die, cu);
16724 }
16725
16726 /* Read the type in DIE, CU.
16727    Returns NULL for invalid types.  */
16728
16729 static struct type *
16730 read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
16731 {
16732   struct type *this_type = NULL;
16733
16734   switch (die->tag)
16735     {
16736     case DW_TAG_class_type:
16737     case DW_TAG_interface_type:
16738     case DW_TAG_structure_type:
16739     case DW_TAG_union_type:
16740       this_type = read_structure_type (die, cu);
16741       break;
16742     case DW_TAG_enumeration_type:
16743       this_type = read_enumeration_type (die, cu);
16744       break;
16745     case DW_TAG_subprogram:
16746     case DW_TAG_subroutine_type:
16747     case DW_TAG_inlined_subroutine:
16748       this_type = read_subroutine_type (die, cu);
16749       break;
16750     case DW_TAG_array_type:
16751       this_type = read_array_type (die, cu);
16752       break;
16753     case DW_TAG_set_type:
16754       this_type = read_set_type (die, cu);
16755       break;
16756     case DW_TAG_pointer_type:
16757       this_type = read_tag_pointer_type (die, cu);
16758       break;
16759     case DW_TAG_ptr_to_member_type:
16760       this_type = read_tag_ptr_to_member_type (die, cu);
16761       break;
16762     case DW_TAG_reference_type:
16763       this_type = read_tag_reference_type (die, cu);
16764       break;
16765     case DW_TAG_const_type:
16766       this_type = read_tag_const_type (die, cu);
16767       break;
16768     case DW_TAG_volatile_type:
16769       this_type = read_tag_volatile_type (die, cu);
16770       break;
16771     case DW_TAG_restrict_type:
16772       this_type = read_tag_restrict_type (die, cu);
16773       break;
16774     case DW_TAG_string_type:
16775       this_type = read_tag_string_type (die, cu);
16776       break;
16777     case DW_TAG_typedef:
16778       this_type = read_typedef (die, cu);
16779       break;
16780     case DW_TAG_subrange_type:
16781       this_type = read_subrange_type (die, cu);
16782       break;
16783     case DW_TAG_base_type:
16784       this_type = read_base_type (die, cu);
16785       break;
16786     case DW_TAG_unspecified_type:
16787       this_type = read_unspecified_type (die, cu);
16788       break;
16789     case DW_TAG_namespace:
16790       this_type = read_namespace_type (die, cu);
16791       break;
16792     case DW_TAG_module:
16793       this_type = read_module_type (die, cu);
16794       break;
16795     default:
16796       complaint (&symfile_complaints,
16797                  _("unexpected tag in read_type_die: '%s'"),
16798                  dwarf_tag_name (die->tag));
16799       break;
16800     }
16801
16802   return this_type;
16803 }
16804
16805 /* See if we can figure out if the class lives in a namespace.  We do
16806    this by looking for a member function; its demangled name will
16807    contain namespace info, if there is any.
16808    Return the computed name or NULL.
16809    Space for the result is allocated on the objfile's obstack.
16810    This is the full-die version of guess_partial_die_structure_name.
16811    In this case we know DIE has no useful parent.  */
16812
16813 static char *
16814 guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
16815 {
16816   struct die_info *spec_die;
16817   struct dwarf2_cu *spec_cu;
16818   struct die_info *child;
16819
16820   spec_cu = cu;
16821   spec_die = die_specification (die, &spec_cu);
16822   if (spec_die != NULL)
16823     {
16824       die = spec_die;
16825       cu = spec_cu;
16826     }
16827
16828   for (child = die->child;
16829        child != NULL;
16830        child = child->sibling)
16831     {
16832       if (child->tag == DW_TAG_subprogram)
16833         {
16834           struct attribute *attr;
16835
16836           attr = dwarf2_attr (child, DW_AT_linkage_name, cu);
16837           if (attr == NULL)
16838             attr = dwarf2_attr (child, DW_AT_MIPS_linkage_name, cu);
16839           if (attr != NULL)
16840             {
16841               char *actual_name
16842                 = language_class_name_from_physname (cu->language_defn,
16843                                                      DW_STRING (attr));
16844               char *name = NULL;
16845
16846               if (actual_name != NULL)
16847                 {
16848                   const char *die_name = dwarf2_name (die, cu);
16849
16850                   if (die_name != NULL
16851                       && strcmp (die_name, actual_name) != 0)
16852                     {
16853                       /* Strip off the class name from the full name.
16854                          We want the prefix.  */
16855                       int die_name_len = strlen (die_name);
16856                       int actual_name_len = strlen (actual_name);
16857
16858                       /* Test for '::' as a sanity check.  */
16859                       if (actual_name_len > die_name_len + 2
16860                           && actual_name[actual_name_len
16861                                          - die_name_len - 1] == ':')
16862                         name =
16863                           obstack_copy0 (&cu->objfile->objfile_obstack,
16864                                          actual_name,
16865                                          actual_name_len - die_name_len - 2);
16866                     }
16867                 }
16868               xfree (actual_name);
16869               return name;
16870             }
16871         }
16872     }
16873
16874   return NULL;
16875 }
16876
16877 /* GCC might emit a nameless typedef that has a linkage name.  Determine the
16878    prefix part in such case.  See
16879    http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510.  */
16880
16881 static char *
16882 anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
16883 {
16884   struct attribute *attr;
16885   char *base;
16886
16887   if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
16888       && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
16889     return NULL;
16890
16891   attr = dwarf2_attr (die, DW_AT_name, cu);
16892   if (attr != NULL && DW_STRING (attr) != NULL)
16893     return NULL;
16894
16895   attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
16896   if (attr == NULL)
16897     attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
16898   if (attr == NULL || DW_STRING (attr) == NULL)
16899     return NULL;
16900
16901   /* dwarf2_name had to be already called.  */
16902   gdb_assert (DW_STRING_IS_CANONICAL (attr));
16903
16904   /* Strip the base name, keep any leading namespaces/classes.  */
16905   base = strrchr (DW_STRING (attr), ':');
16906   if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
16907     return "";
16908
16909   return obstack_copy0 (&cu->objfile->objfile_obstack,
16910                         DW_STRING (attr), &base[-1] - DW_STRING (attr));
16911 }
16912
16913 /* Return the name of the namespace/class that DIE is defined within,
16914    or "" if we can't tell.  The caller should not xfree the result.
16915
16916    For example, if we're within the method foo() in the following
16917    code:
16918
16919    namespace N {
16920      class C {
16921        void foo () {
16922        }
16923      };
16924    }
16925
16926    then determine_prefix on foo's die will return "N::C".  */
16927
16928 static const char *
16929 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
16930 {
16931   struct die_info *parent, *spec_die;
16932   struct dwarf2_cu *spec_cu;
16933   struct type *parent_type;
16934   char *retval;
16935
16936   if (cu->language != language_cplus && cu->language != language_java
16937       && cu->language != language_fortran)
16938     return "";
16939
16940   retval = anonymous_struct_prefix (die, cu);
16941   if (retval)
16942     return retval;
16943
16944   /* We have to be careful in the presence of DW_AT_specification.
16945      For example, with GCC 3.4, given the code
16946
16947      namespace N {
16948        void foo() {
16949          // Definition of N::foo.
16950        }
16951      }
16952
16953      then we'll have a tree of DIEs like this:
16954
16955      1: DW_TAG_compile_unit
16956        2: DW_TAG_namespace        // N
16957          3: DW_TAG_subprogram     // declaration of N::foo
16958        4: DW_TAG_subprogram       // definition of N::foo
16959             DW_AT_specification   // refers to die #3
16960
16961      Thus, when processing die #4, we have to pretend that we're in
16962      the context of its DW_AT_specification, namely the contex of die
16963      #3.  */
16964   spec_cu = cu;
16965   spec_die = die_specification (die, &spec_cu);
16966   if (spec_die == NULL)
16967     parent = die->parent;
16968   else
16969     {
16970       parent = spec_die->parent;
16971       cu = spec_cu;
16972     }
16973
16974   if (parent == NULL)
16975     return "";
16976   else if (parent->building_fullname)
16977     {
16978       const char *name;
16979       const char *parent_name;
16980
16981       /* It has been seen on RealView 2.2 built binaries,
16982          DW_TAG_template_type_param types actually _defined_ as
16983          children of the parent class:
16984
16985          enum E {};
16986          template class <class Enum> Class{};
16987          Class<enum E> class_e;
16988
16989          1: DW_TAG_class_type (Class)
16990            2: DW_TAG_enumeration_type (E)
16991              3: DW_TAG_enumerator (enum1:0)
16992              3: DW_TAG_enumerator (enum2:1)
16993              ...
16994            2: DW_TAG_template_type_param
16995               DW_AT_type  DW_FORM_ref_udata (E)
16996
16997          Besides being broken debug info, it can put GDB into an
16998          infinite loop.  Consider:
16999
17000          When we're building the full name for Class<E>, we'll start
17001          at Class, and go look over its template type parameters,
17002          finding E.  We'll then try to build the full name of E, and
17003          reach here.  We're now trying to build the full name of E,
17004          and look over the parent DIE for containing scope.  In the
17005          broken case, if we followed the parent DIE of E, we'd again
17006          find Class, and once again go look at its template type
17007          arguments, etc., etc.  Simply don't consider such parent die
17008          as source-level parent of this die (it can't be, the language
17009          doesn't allow it), and break the loop here.  */
17010       name = dwarf2_name (die, cu);
17011       parent_name = dwarf2_name (parent, cu);
17012       complaint (&symfile_complaints,
17013                  _("template param type '%s' defined within parent '%s'"),
17014                  name ? name : "<unknown>",
17015                  parent_name ? parent_name : "<unknown>");
17016       return "";
17017     }
17018   else
17019     switch (parent->tag)
17020       {
17021       case DW_TAG_namespace:
17022         parent_type = read_type_die (parent, cu);
17023         /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
17024            DW_TAG_namespace DIEs with a name of "::" for the global namespace.
17025            Work around this problem here.  */
17026         if (cu->language == language_cplus
17027             && strcmp (TYPE_TAG_NAME (parent_type), "::") == 0)
17028           return "";
17029         /* We give a name to even anonymous namespaces.  */
17030         return TYPE_TAG_NAME (parent_type);
17031       case DW_TAG_class_type:
17032       case DW_TAG_interface_type:
17033       case DW_TAG_structure_type:
17034       case DW_TAG_union_type:
17035       case DW_TAG_module:
17036         parent_type = read_type_die (parent, cu);
17037         if (TYPE_TAG_NAME (parent_type) != NULL)
17038           return TYPE_TAG_NAME (parent_type);
17039         else
17040           /* An anonymous structure is only allowed non-static data
17041              members; no typedefs, no member functions, et cetera.
17042              So it does not need a prefix.  */
17043           return "";
17044       case DW_TAG_compile_unit:
17045       case DW_TAG_partial_unit:
17046         /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace.  Cope.  */
17047         if (cu->language == language_cplus
17048             && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
17049             && die->child != NULL
17050             && (die->tag == DW_TAG_class_type
17051                 || die->tag == DW_TAG_structure_type
17052                 || die->tag == DW_TAG_union_type))
17053           {
17054             char *name = guess_full_die_structure_name (die, cu);
17055             if (name != NULL)
17056               return name;
17057           }
17058         return "";
17059       default:
17060         return determine_prefix (parent, cu);
17061       }
17062 }
17063
17064 /* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
17065    with appropriate separator.  If PREFIX or SUFFIX is NULL or empty, then
17066    simply copy the SUFFIX or PREFIX, respectively.  If OBS is non-null, perform
17067    an obconcat, otherwise allocate storage for the result.  The CU argument is
17068    used to determine the language and hence, the appropriate separator.  */
17069
17070 #define MAX_SEP_LEN 7  /* strlen ("__") + strlen ("_MOD_")  */
17071
17072 static char *
17073 typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
17074                  int physname, struct dwarf2_cu *cu)
17075 {
17076   const char *lead = "";
17077   const char *sep;
17078
17079   if (suffix == NULL || suffix[0] == '\0'
17080       || prefix == NULL || prefix[0] == '\0')
17081     sep = "";
17082   else if (cu->language == language_java)
17083     sep = ".";
17084   else if (cu->language == language_fortran && physname)
17085     {
17086       /* This is gfortran specific mangling.  Normally DW_AT_linkage_name or
17087          DW_AT_MIPS_linkage_name is preferred and used instead.  */
17088
17089       lead = "__";
17090       sep = "_MOD_";
17091     }
17092   else
17093     sep = "::";
17094
17095   if (prefix == NULL)
17096     prefix = "";
17097   if (suffix == NULL)
17098     suffix = "";
17099
17100   if (obs == NULL)
17101     {
17102       char *retval
17103         = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
17104
17105       strcpy (retval, lead);
17106       strcat (retval, prefix);
17107       strcat (retval, sep);
17108       strcat (retval, suffix);
17109       return retval;
17110     }
17111   else
17112     {
17113       /* We have an obstack.  */
17114       return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
17115     }
17116 }
17117
17118 /* Return sibling of die, NULL if no sibling.  */
17119
17120 static struct die_info *
17121 sibling_die (struct die_info *die)
17122 {
17123   return die->sibling;
17124 }
17125
17126 /* Get name of a die, return NULL if not found.  */
17127
17128 static const char *
17129 dwarf2_canonicalize_name (const char *name, struct dwarf2_cu *cu,
17130                           struct obstack *obstack)
17131 {
17132   if (name && cu->language == language_cplus)
17133     {
17134       char *canon_name = cp_canonicalize_string (name);
17135
17136       if (canon_name != NULL)
17137         {
17138           if (strcmp (canon_name, name) != 0)
17139             name = obstack_copy0 (obstack, canon_name, strlen (canon_name));
17140           xfree (canon_name);
17141         }
17142     }
17143
17144   return name;
17145 }
17146
17147 /* Get name of a die, return NULL if not found.  */
17148
17149 static const char *
17150 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
17151 {
17152   struct attribute *attr;
17153
17154   attr = dwarf2_attr (die, DW_AT_name, cu);
17155   if ((!attr || !DW_STRING (attr))
17156       && die->tag != DW_TAG_class_type
17157       && die->tag != DW_TAG_interface_type
17158       && die->tag != DW_TAG_structure_type
17159       && die->tag != DW_TAG_union_type)
17160     return NULL;
17161
17162   switch (die->tag)
17163     {
17164     case DW_TAG_compile_unit:
17165     case DW_TAG_partial_unit:
17166       /* Compilation units have a DW_AT_name that is a filename, not
17167          a source language identifier.  */
17168     case DW_TAG_enumeration_type:
17169     case DW_TAG_enumerator:
17170       /* These tags always have simple identifiers already; no need
17171          to canonicalize them.  */
17172       return DW_STRING (attr);
17173
17174     case DW_TAG_subprogram:
17175       /* Java constructors will all be named "<init>", so return
17176          the class name when we see this special case.  */
17177       if (cu->language == language_java
17178           && DW_STRING (attr) != NULL
17179           && strcmp (DW_STRING (attr), "<init>") == 0)
17180         {
17181           struct dwarf2_cu *spec_cu = cu;
17182           struct die_info *spec_die;
17183
17184           /* GCJ will output '<init>' for Java constructor names.
17185              For this special case, return the name of the parent class.  */
17186
17187           /* GCJ may output suprogram DIEs with AT_specification set.
17188              If so, use the name of the specified DIE.  */
17189           spec_die = die_specification (die, &spec_cu);
17190           if (spec_die != NULL)
17191             return dwarf2_name (spec_die, spec_cu);
17192
17193           do
17194             {
17195               die = die->parent;
17196               if (die->tag == DW_TAG_class_type)
17197                 return dwarf2_name (die, cu);
17198             }
17199           while (die->tag != DW_TAG_compile_unit
17200                  && die->tag != DW_TAG_partial_unit);
17201         }
17202       break;
17203
17204     case DW_TAG_class_type:
17205     case DW_TAG_interface_type:
17206     case DW_TAG_structure_type:
17207     case DW_TAG_union_type:
17208       /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
17209          structures or unions.  These were of the form "._%d" in GCC 4.1,
17210          or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
17211          and GCC 4.4.  We work around this problem by ignoring these.  */
17212       if (attr && DW_STRING (attr)
17213           && (strncmp (DW_STRING (attr), "._", 2) == 0
17214               || strncmp (DW_STRING (attr), "<anonymous", 10) == 0))
17215         return NULL;
17216
17217       /* GCC might emit a nameless typedef that has a linkage name.  See
17218          http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510.  */
17219       if (!attr || DW_STRING (attr) == NULL)
17220         {
17221           char *demangled = NULL;
17222
17223           attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
17224           if (attr == NULL)
17225             attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
17226
17227           if (attr == NULL || DW_STRING (attr) == NULL)
17228             return NULL;
17229
17230           /* Avoid demangling DW_STRING (attr) the second time on a second
17231              call for the same DIE.  */
17232           if (!DW_STRING_IS_CANONICAL (attr))
17233             demangled = gdb_demangle (DW_STRING (attr), DMGL_TYPES);
17234
17235           if (demangled)
17236             {
17237               char *base;
17238
17239               /* FIXME: we already did this for the partial symbol... */
17240               DW_STRING (attr) = obstack_copy0 (&cu->objfile->objfile_obstack,
17241                                                 demangled, strlen (demangled));
17242               DW_STRING_IS_CANONICAL (attr) = 1;
17243               xfree (demangled);
17244
17245               /* Strip any leading namespaces/classes, keep only the base name.
17246                  DW_AT_name for named DIEs does not contain the prefixes.  */
17247               base = strrchr (DW_STRING (attr), ':');
17248               if (base && base > DW_STRING (attr) && base[-1] == ':')
17249                 return &base[1];
17250               else
17251                 return DW_STRING (attr);
17252             }
17253         }
17254       break;
17255
17256     default:
17257       break;
17258     }
17259
17260   if (!DW_STRING_IS_CANONICAL (attr))
17261     {
17262       DW_STRING (attr)
17263         = dwarf2_canonicalize_name (DW_STRING (attr), cu,
17264                                     &cu->objfile->objfile_obstack);
17265       DW_STRING_IS_CANONICAL (attr) = 1;
17266     }
17267   return DW_STRING (attr);
17268 }
17269
17270 /* Return the die that this die in an extension of, or NULL if there
17271    is none.  *EXT_CU is the CU containing DIE on input, and the CU
17272    containing the return value on output.  */
17273
17274 static struct die_info *
17275 dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
17276 {
17277   struct attribute *attr;
17278
17279   attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
17280   if (attr == NULL)
17281     return NULL;
17282
17283   return follow_die_ref (die, attr, ext_cu);
17284 }
17285
17286 /* Convert a DIE tag into its string name.  */
17287
17288 static const char *
17289 dwarf_tag_name (unsigned tag)
17290 {
17291   const char *name = get_DW_TAG_name (tag);
17292
17293   if (name == NULL)
17294     return "DW_TAG_<unknown>";
17295
17296   return name;
17297 }
17298
17299 /* Convert a DWARF attribute code into its string name.  */
17300
17301 static const char *
17302 dwarf_attr_name (unsigned attr)
17303 {
17304   const char *name;
17305
17306 #ifdef MIPS /* collides with DW_AT_HP_block_index */
17307   if (attr == DW_AT_MIPS_fde)
17308     return "DW_AT_MIPS_fde";
17309 #else
17310   if (attr == DW_AT_HP_block_index)
17311     return "DW_AT_HP_block_index";
17312 #endif
17313
17314   name = get_DW_AT_name (attr);
17315
17316   if (name == NULL)
17317     return "DW_AT_<unknown>";
17318
17319   return name;
17320 }
17321
17322 /* Convert a DWARF value form code into its string name.  */
17323
17324 static const char *
17325 dwarf_form_name (unsigned form)
17326 {
17327   const char *name = get_DW_FORM_name (form);
17328
17329   if (name == NULL)
17330     return "DW_FORM_<unknown>";
17331
17332   return name;
17333 }
17334
17335 static char *
17336 dwarf_bool_name (unsigned mybool)
17337 {
17338   if (mybool)
17339     return "TRUE";
17340   else
17341     return "FALSE";
17342 }
17343
17344 /* Convert a DWARF type code into its string name.  */
17345
17346 static const char *
17347 dwarf_type_encoding_name (unsigned enc)
17348 {
17349   const char *name = get_DW_ATE_name (enc);
17350
17351   if (name == NULL)
17352     return "DW_ATE_<unknown>";
17353
17354   return name;
17355 }
17356
17357 static void
17358 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
17359 {
17360   unsigned int i;
17361
17362   print_spaces (indent, f);
17363   fprintf_unfiltered (f, "Die: %s (abbrev %d, offset 0x%x)\n",
17364            dwarf_tag_name (die->tag), die->abbrev, die->offset.sect_off);
17365
17366   if (die->parent != NULL)
17367     {
17368       print_spaces (indent, f);
17369       fprintf_unfiltered (f, "  parent at offset: 0x%x\n",
17370                           die->parent->offset.sect_off);
17371     }
17372
17373   print_spaces (indent, f);
17374   fprintf_unfiltered (f, "  has children: %s\n",
17375            dwarf_bool_name (die->child != NULL));
17376
17377   print_spaces (indent, f);
17378   fprintf_unfiltered (f, "  attributes:\n");
17379
17380   for (i = 0; i < die->num_attrs; ++i)
17381     {
17382       print_spaces (indent, f);
17383       fprintf_unfiltered (f, "    %s (%s) ",
17384                dwarf_attr_name (die->attrs[i].name),
17385                dwarf_form_name (die->attrs[i].form));
17386
17387       switch (die->attrs[i].form)
17388         {
17389         case DW_FORM_addr:
17390         case DW_FORM_GNU_addr_index:
17391           fprintf_unfiltered (f, "address: ");
17392           fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
17393           break;
17394         case DW_FORM_block2:
17395         case DW_FORM_block4:
17396         case DW_FORM_block:
17397         case DW_FORM_block1:
17398           fprintf_unfiltered (f, "block: size %s",
17399                               pulongest (DW_BLOCK (&die->attrs[i])->size));
17400           break;
17401         case DW_FORM_exprloc:
17402           fprintf_unfiltered (f, "expression: size %s",
17403                               pulongest (DW_BLOCK (&die->attrs[i])->size));
17404           break;
17405         case DW_FORM_ref_addr:
17406           fprintf_unfiltered (f, "ref address: ");
17407           fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
17408           break;
17409         case DW_FORM_GNU_ref_alt:
17410           fprintf_unfiltered (f, "alt ref address: ");
17411           fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
17412           break;
17413         case DW_FORM_ref1:
17414         case DW_FORM_ref2:
17415         case DW_FORM_ref4:
17416         case DW_FORM_ref8:
17417         case DW_FORM_ref_udata:
17418           fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
17419                               (long) (DW_UNSND (&die->attrs[i])));
17420           break;
17421         case DW_FORM_data1:
17422         case DW_FORM_data2:
17423         case DW_FORM_data4:
17424         case DW_FORM_data8:
17425         case DW_FORM_udata:
17426         case DW_FORM_sdata:
17427           fprintf_unfiltered (f, "constant: %s",
17428                               pulongest (DW_UNSND (&die->attrs[i])));
17429           break;
17430         case DW_FORM_sec_offset:
17431           fprintf_unfiltered (f, "section offset: %s",
17432                               pulongest (DW_UNSND (&die->attrs[i])));
17433           break;
17434         case DW_FORM_ref_sig8:
17435           fprintf_unfiltered (f, "signature: %s",
17436                               hex_string (DW_SIGNATURE (&die->attrs[i])));
17437           break;
17438         case DW_FORM_string:
17439         case DW_FORM_strp:
17440         case DW_FORM_GNU_str_index:
17441         case DW_FORM_GNU_strp_alt:
17442           fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
17443                    DW_STRING (&die->attrs[i])
17444                    ? DW_STRING (&die->attrs[i]) : "",
17445                    DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
17446           break;
17447         case DW_FORM_flag:
17448           if (DW_UNSND (&die->attrs[i]))
17449             fprintf_unfiltered (f, "flag: TRUE");
17450           else
17451             fprintf_unfiltered (f, "flag: FALSE");
17452           break;
17453         case DW_FORM_flag_present:
17454           fprintf_unfiltered (f, "flag: TRUE");
17455           break;
17456         case DW_FORM_indirect:
17457           /* The reader will have reduced the indirect form to
17458              the "base form" so this form should not occur.  */
17459           fprintf_unfiltered (f, 
17460                               "unexpected attribute form: DW_FORM_indirect");
17461           break;
17462         default:
17463           fprintf_unfiltered (f, "unsupported attribute form: %d.",
17464                    die->attrs[i].form);
17465           break;
17466         }
17467       fprintf_unfiltered (f, "\n");
17468     }
17469 }
17470
17471 static void
17472 dump_die_for_error (struct die_info *die)
17473 {
17474   dump_die_shallow (gdb_stderr, 0, die);
17475 }
17476
17477 static void
17478 dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
17479 {
17480   int indent = level * 4;
17481
17482   gdb_assert (die != NULL);
17483
17484   if (level >= max_level)
17485     return;
17486
17487   dump_die_shallow (f, indent, die);
17488
17489   if (die->child != NULL)
17490     {
17491       print_spaces (indent, f);
17492       fprintf_unfiltered (f, "  Children:");
17493       if (level + 1 < max_level)
17494         {
17495           fprintf_unfiltered (f, "\n");
17496           dump_die_1 (f, level + 1, max_level, die->child);
17497         }
17498       else
17499         {
17500           fprintf_unfiltered (f,
17501                               " [not printed, max nesting level reached]\n");
17502         }
17503     }
17504
17505   if (die->sibling != NULL && level > 0)
17506     {
17507       dump_die_1 (f, level, max_level, die->sibling);
17508     }
17509 }
17510
17511 /* This is called from the pdie macro in gdbinit.in.
17512    It's not static so gcc will keep a copy callable from gdb.  */
17513
17514 void
17515 dump_die (struct die_info *die, int max_level)
17516 {
17517   dump_die_1 (gdb_stdlog, 0, max_level, die);
17518 }
17519
17520 static void
17521 store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
17522 {
17523   void **slot;
17524
17525   slot = htab_find_slot_with_hash (cu->die_hash, die, die->offset.sect_off,
17526                                    INSERT);
17527
17528   *slot = die;
17529 }
17530
17531 /* DW_ADDR is always stored already as sect_offset; despite for the forms
17532    besides DW_FORM_ref_addr it is stored as cu_offset in the DWARF file.  */
17533
17534 static int
17535 is_ref_attr (struct attribute *attr)
17536 {
17537   switch (attr->form)
17538     {
17539     case DW_FORM_ref_addr:
17540     case DW_FORM_ref1:
17541     case DW_FORM_ref2:
17542     case DW_FORM_ref4:
17543     case DW_FORM_ref8:
17544     case DW_FORM_ref_udata:
17545     case DW_FORM_GNU_ref_alt:
17546       return 1;
17547     default:
17548       return 0;
17549     }
17550 }
17551
17552 /* Return DIE offset of ATTR.  Return 0 with complaint if ATTR is not of the
17553    required kind.  */
17554
17555 static sect_offset
17556 dwarf2_get_ref_die_offset (struct attribute *attr)
17557 {
17558   sect_offset retval = { DW_UNSND (attr) };
17559
17560   if (is_ref_attr (attr))
17561     return retval;
17562
17563   retval.sect_off = 0;
17564   complaint (&symfile_complaints,
17565              _("unsupported die ref attribute form: '%s'"),
17566              dwarf_form_name (attr->form));
17567   return retval;
17568 }
17569
17570 /* Return the constant value held by ATTR.  Return DEFAULT_VALUE if
17571  * the value held by the attribute is not constant.  */
17572
17573 static LONGEST
17574 dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
17575 {
17576   if (attr->form == DW_FORM_sdata)
17577     return DW_SND (attr);
17578   else if (attr->form == DW_FORM_udata
17579            || attr->form == DW_FORM_data1
17580            || attr->form == DW_FORM_data2
17581            || attr->form == DW_FORM_data4
17582            || attr->form == DW_FORM_data8)
17583     return DW_UNSND (attr);
17584   else
17585     {
17586       complaint (&symfile_complaints,
17587                  _("Attribute value is not a constant (%s)"),
17588                  dwarf_form_name (attr->form));
17589       return default_value;
17590     }
17591 }
17592
17593 /* Follow reference or signature attribute ATTR of SRC_DIE.
17594    On entry *REF_CU is the CU of SRC_DIE.
17595    On exit *REF_CU is the CU of the result.  */
17596
17597 static struct die_info *
17598 follow_die_ref_or_sig (struct die_info *src_die, struct attribute *attr,
17599                        struct dwarf2_cu **ref_cu)
17600 {
17601   struct die_info *die;
17602
17603   if (is_ref_attr (attr))
17604     die = follow_die_ref (src_die, attr, ref_cu);
17605   else if (attr->form == DW_FORM_ref_sig8)
17606     die = follow_die_sig (src_die, attr, ref_cu);
17607   else
17608     {
17609       dump_die_for_error (src_die);
17610       error (_("Dwarf Error: Expected reference attribute [in module %s]"),
17611              (*ref_cu)->objfile->name);
17612     }
17613
17614   return die;
17615 }
17616
17617 /* Follow reference OFFSET.
17618    On entry *REF_CU is the CU of the source die referencing OFFSET.
17619    On exit *REF_CU is the CU of the result.
17620    Returns NULL if OFFSET is invalid.  */
17621
17622 static struct die_info *
17623 follow_die_offset (sect_offset offset, int offset_in_dwz,
17624                    struct dwarf2_cu **ref_cu)
17625 {
17626   struct die_info temp_die;
17627   struct dwarf2_cu *target_cu, *cu = *ref_cu;
17628
17629   gdb_assert (cu->per_cu != NULL);
17630
17631   target_cu = cu;
17632
17633   if (cu->per_cu->is_debug_types)
17634     {
17635       /* .debug_types CUs cannot reference anything outside their CU.
17636          If they need to, they have to reference a signatured type via
17637          DW_FORM_ref_sig8.  */
17638       if (! offset_in_cu_p (&cu->header, offset))
17639         return NULL;
17640     }
17641   else if (offset_in_dwz != cu->per_cu->is_dwz
17642            || ! offset_in_cu_p (&cu->header, offset))
17643     {
17644       struct dwarf2_per_cu_data *per_cu;
17645
17646       per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
17647                                                  cu->objfile);
17648
17649       /* If necessary, add it to the queue and load its DIEs.  */
17650       if (maybe_queue_comp_unit (cu, per_cu, cu->language))
17651         load_full_comp_unit (per_cu, cu->language);
17652
17653       target_cu = per_cu->cu;
17654     }
17655   else if (cu->dies == NULL)
17656     {
17657       /* We're loading full DIEs during partial symbol reading.  */
17658       gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
17659       load_full_comp_unit (cu->per_cu, language_minimal);
17660     }
17661
17662   *ref_cu = target_cu;
17663   temp_die.offset = offset;
17664   return htab_find_with_hash (target_cu->die_hash, &temp_die, offset.sect_off);
17665 }
17666
17667 /* Follow reference attribute ATTR of SRC_DIE.
17668    On entry *REF_CU is the CU of SRC_DIE.
17669    On exit *REF_CU is the CU of the result.  */
17670
17671 static struct die_info *
17672 follow_die_ref (struct die_info *src_die, struct attribute *attr,
17673                 struct dwarf2_cu **ref_cu)
17674 {
17675   sect_offset offset = dwarf2_get_ref_die_offset (attr);
17676   struct dwarf2_cu *cu = *ref_cu;
17677   struct die_info *die;
17678
17679   die = follow_die_offset (offset,
17680                            (attr->form == DW_FORM_GNU_ref_alt
17681                             || cu->per_cu->is_dwz),
17682                            ref_cu);
17683   if (!die)
17684     error (_("Dwarf Error: Cannot find DIE at 0x%x referenced from DIE "
17685            "at 0x%x [in module %s]"),
17686            offset.sect_off, src_die->offset.sect_off, cu->objfile->name);
17687
17688   return die;
17689 }
17690
17691 /* Return DWARF block referenced by DW_AT_location of DIE at OFFSET at PER_CU.
17692    Returned value is intended for DW_OP_call*.  Returned
17693    dwarf2_locexpr_baton->data has lifetime of PER_CU->OBJFILE.  */
17694
17695 struct dwarf2_locexpr_baton
17696 dwarf2_fetch_die_loc_sect_off (sect_offset offset,
17697                                struct dwarf2_per_cu_data *per_cu,
17698                                CORE_ADDR (*get_frame_pc) (void *baton),
17699                                void *baton)
17700 {
17701   struct dwarf2_cu *cu;
17702   struct die_info *die;
17703   struct attribute *attr;
17704   struct dwarf2_locexpr_baton retval;
17705
17706   dw2_setup (per_cu->objfile);
17707
17708   if (per_cu->cu == NULL)
17709     load_cu (per_cu);
17710   cu = per_cu->cu;
17711
17712   die = follow_die_offset (offset, per_cu->is_dwz, &cu);
17713   if (!die)
17714     error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
17715            offset.sect_off, per_cu->objfile->name);
17716
17717   attr = dwarf2_attr (die, DW_AT_location, cu);
17718   if (!attr)
17719     {
17720       /* DWARF: "If there is no such attribute, then there is no effect.".
17721          DATA is ignored if SIZE is 0.  */
17722
17723       retval.data = NULL;
17724       retval.size = 0;
17725     }
17726   else if (attr_form_is_section_offset (attr))
17727     {
17728       struct dwarf2_loclist_baton loclist_baton;
17729       CORE_ADDR pc = (*get_frame_pc) (baton);
17730       size_t size;
17731
17732       fill_in_loclist_baton (cu, &loclist_baton, attr);
17733
17734       retval.data = dwarf2_find_location_expression (&loclist_baton,
17735                                                      &size, pc);
17736       retval.size = size;
17737     }
17738   else
17739     {
17740       if (!attr_form_is_block (attr))
17741         error (_("Dwarf Error: DIE at 0x%x referenced in module %s "
17742                  "is neither DW_FORM_block* nor DW_FORM_exprloc"),
17743                offset.sect_off, per_cu->objfile->name);
17744
17745       retval.data = DW_BLOCK (attr)->data;
17746       retval.size = DW_BLOCK (attr)->size;
17747     }
17748   retval.per_cu = cu->per_cu;
17749
17750   age_cached_comp_units ();
17751
17752   return retval;
17753 }
17754
17755 /* Like dwarf2_fetch_die_loc_sect_off, but take a CU
17756    offset.  */
17757
17758 struct dwarf2_locexpr_baton
17759 dwarf2_fetch_die_loc_cu_off (cu_offset offset_in_cu,
17760                              struct dwarf2_per_cu_data *per_cu,
17761                              CORE_ADDR (*get_frame_pc) (void *baton),
17762                              void *baton)
17763 {
17764   sect_offset offset = { per_cu->offset.sect_off + offset_in_cu.cu_off };
17765
17766   return dwarf2_fetch_die_loc_sect_off (offset, per_cu, get_frame_pc, baton);
17767 }
17768
17769 /* Write a constant of a given type as target-ordered bytes into
17770    OBSTACK.  */
17771
17772 static const gdb_byte *
17773 write_constant_as_bytes (struct obstack *obstack,
17774                          enum bfd_endian byte_order,
17775                          struct type *type,
17776                          ULONGEST value,
17777                          LONGEST *len)
17778 {
17779   gdb_byte *result;
17780
17781   *len = TYPE_LENGTH (type);
17782   result = obstack_alloc (obstack, *len);
17783   store_unsigned_integer (result, *len, byte_order, value);
17784
17785   return result;
17786 }
17787
17788 /* If the DIE at OFFSET in PER_CU has a DW_AT_const_value, return a
17789    pointer to the constant bytes and set LEN to the length of the
17790    data.  If memory is needed, allocate it on OBSTACK.  If the DIE
17791    does not have a DW_AT_const_value, return NULL.  */
17792
17793 const gdb_byte *
17794 dwarf2_fetch_constant_bytes (sect_offset offset,
17795                              struct dwarf2_per_cu_data *per_cu,
17796                              struct obstack *obstack,
17797                              LONGEST *len)
17798 {
17799   struct dwarf2_cu *cu;
17800   struct die_info *die;
17801   struct attribute *attr;
17802   const gdb_byte *result = NULL;
17803   struct type *type;
17804   LONGEST value;
17805   enum bfd_endian byte_order;
17806
17807   dw2_setup (per_cu->objfile);
17808
17809   if (per_cu->cu == NULL)
17810     load_cu (per_cu);
17811   cu = per_cu->cu;
17812
17813   die = follow_die_offset (offset, per_cu->is_dwz, &cu);
17814   if (!die)
17815     error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
17816            offset.sect_off, per_cu->objfile->name);
17817
17818
17819   attr = dwarf2_attr (die, DW_AT_const_value, cu);
17820   if (attr == NULL)
17821     return NULL;
17822
17823   byte_order = (bfd_big_endian (per_cu->objfile->obfd)
17824                 ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
17825
17826   switch (attr->form)
17827     {
17828     case DW_FORM_addr:
17829     case DW_FORM_GNU_addr_index:
17830       {
17831         gdb_byte *tem;
17832
17833         *len = cu->header.addr_size;
17834         tem = obstack_alloc (obstack, *len);
17835         store_unsigned_integer (tem, *len, byte_order, DW_ADDR (attr));
17836         result = tem;
17837       }
17838       break;
17839     case DW_FORM_string:
17840     case DW_FORM_strp:
17841     case DW_FORM_GNU_str_index:
17842     case DW_FORM_GNU_strp_alt:
17843       /* DW_STRING is already allocated on the objfile obstack, point
17844          directly to it.  */
17845       result = (const gdb_byte *) DW_STRING (attr);
17846       *len = strlen (DW_STRING (attr));
17847       break;
17848     case DW_FORM_block1:
17849     case DW_FORM_block2:
17850     case DW_FORM_block4:
17851     case DW_FORM_block:
17852     case DW_FORM_exprloc:
17853       result = DW_BLOCK (attr)->data;
17854       *len = DW_BLOCK (attr)->size;
17855       break;
17856
17857       /* The DW_AT_const_value attributes are supposed to carry the
17858          symbol's value "represented as it would be on the target
17859          architecture."  By the time we get here, it's already been
17860          converted to host endianness, so we just need to sign- or
17861          zero-extend it as appropriate.  */
17862     case DW_FORM_data1:
17863       type = die_type (die, cu);
17864       result = dwarf2_const_value_data (attr, obstack, cu, &value, 8);
17865       if (result == NULL)
17866         result = write_constant_as_bytes (obstack, byte_order,
17867                                           type, value, len);
17868       break;
17869     case DW_FORM_data2:
17870       type = die_type (die, cu);
17871       result = dwarf2_const_value_data (attr, obstack, cu, &value, 16);
17872       if (result == NULL)
17873         result = write_constant_as_bytes (obstack, byte_order,
17874                                           type, value, len);
17875       break;
17876     case DW_FORM_data4:
17877       type = die_type (die, cu);
17878       result = dwarf2_const_value_data (attr, obstack, cu, &value, 32);
17879       if (result == NULL)
17880         result = write_constant_as_bytes (obstack, byte_order,
17881                                           type, value, len);
17882       break;
17883     case DW_FORM_data8:
17884       type = die_type (die, cu);
17885       result = dwarf2_const_value_data (attr, obstack, cu, &value, 64);
17886       if (result == NULL)
17887         result = write_constant_as_bytes (obstack, byte_order,
17888                                           type, value, len);
17889       break;
17890
17891     case DW_FORM_sdata:
17892       type = die_type (die, cu);
17893       result = write_constant_as_bytes (obstack, byte_order,
17894                                         type, DW_SND (attr), len);
17895       break;
17896
17897     case DW_FORM_udata:
17898       type = die_type (die, cu);
17899       result = write_constant_as_bytes (obstack, byte_order,
17900                                         type, DW_UNSND (attr), len);
17901       break;
17902
17903     default:
17904       complaint (&symfile_complaints,
17905                  _("unsupported const value attribute form: '%s'"),
17906                  dwarf_form_name (attr->form));
17907       break;
17908     }
17909
17910   return result;
17911 }
17912
17913 /* Return the type of the DIE at DIE_OFFSET in the CU named by
17914    PER_CU.  */
17915
17916 struct type *
17917 dwarf2_get_die_type (cu_offset die_offset,
17918                      struct dwarf2_per_cu_data *per_cu)
17919 {
17920   sect_offset die_offset_sect;
17921
17922   dw2_setup (per_cu->objfile);
17923
17924   die_offset_sect.sect_off = per_cu->offset.sect_off + die_offset.cu_off;
17925   return get_die_type_at_offset (die_offset_sect, per_cu);
17926 }
17927
17928 /* Follow type unit SIG_TYPE referenced by SRC_DIE.
17929    On entry *REF_CU is the CU of SRC_DIE.
17930    On exit *REF_CU is the CU of the result.
17931    Returns NULL if the referenced DIE isn't found.  */
17932
17933 static struct die_info *
17934 follow_die_sig_1 (struct die_info *src_die, struct signatured_type *sig_type,
17935                   struct dwarf2_cu **ref_cu)
17936 {
17937   struct objfile *objfile = (*ref_cu)->objfile;
17938   struct die_info temp_die;
17939   struct dwarf2_cu *sig_cu;
17940   struct die_info *die;
17941
17942   /* While it might be nice to assert sig_type->type == NULL here,
17943      we can get here for DW_AT_imported_declaration where we need
17944      the DIE not the type.  */
17945
17946   /* If necessary, add it to the queue and load its DIEs.  */
17947
17948   if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, language_minimal))
17949     read_signatured_type (sig_type);
17950
17951   gdb_assert (sig_type->per_cu.cu != NULL);
17952
17953   sig_cu = sig_type->per_cu.cu;
17954   gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
17955   temp_die.offset = sig_type->type_offset_in_section;
17956   die = htab_find_with_hash (sig_cu->die_hash, &temp_die,
17957                              temp_die.offset.sect_off);
17958   if (die)
17959     {
17960       /* For .gdb_index version 7 keep track of included TUs.
17961          http://sourceware.org/bugzilla/show_bug.cgi?id=15021.  */
17962       if (dwarf2_per_objfile->index_table != NULL
17963           && dwarf2_per_objfile->index_table->version <= 7)
17964         {
17965           VEC_safe_push (dwarf2_per_cu_ptr,
17966                          (*ref_cu)->per_cu->imported_symtabs,
17967                          sig_cu->per_cu);
17968         }
17969
17970       *ref_cu = sig_cu;
17971       return die;
17972     }
17973
17974   return NULL;
17975 }
17976
17977 /* Follow signatured type referenced by ATTR in SRC_DIE.
17978    On entry *REF_CU is the CU of SRC_DIE.
17979    On exit *REF_CU is the CU of the result.
17980    The result is the DIE of the type.
17981    If the referenced type cannot be found an error is thrown.  */
17982
17983 static struct die_info *
17984 follow_die_sig (struct die_info *src_die, struct attribute *attr,
17985                 struct dwarf2_cu **ref_cu)
17986 {
17987   ULONGEST signature = DW_SIGNATURE (attr);
17988   struct signatured_type *sig_type;
17989   struct die_info *die;
17990
17991   gdb_assert (attr->form == DW_FORM_ref_sig8);
17992
17993   sig_type = lookup_signatured_type (signature);
17994   /* sig_type will be NULL if the signatured type is missing from
17995      the debug info.  */
17996   if (sig_type == NULL)
17997     {
17998       error (_("Dwarf Error: Cannot find signatured DIE %s referenced"
17999                " from DIE at 0x%x [in module %s]"),
18000              hex_string (signature), src_die->offset.sect_off,
18001              (*ref_cu)->objfile->name);
18002     }
18003
18004   die = follow_die_sig_1 (src_die, sig_type, ref_cu);
18005   if (die == NULL)
18006     {
18007       dump_die_for_error (src_die);
18008       error (_("Dwarf Error: Problem reading signatured DIE %s referenced"
18009                " from DIE at 0x%x [in module %s]"),
18010              hex_string (signature), src_die->offset.sect_off,
18011              (*ref_cu)->objfile->name);
18012     }
18013
18014   return die;
18015 }
18016
18017 /* Get the type specified by SIGNATURE referenced in DIE/CU,
18018    reading in and processing the type unit if necessary.  */
18019
18020 static struct type *
18021 get_signatured_type (struct die_info *die, ULONGEST signature,
18022                      struct dwarf2_cu *cu)
18023 {
18024   struct signatured_type *sig_type;
18025   struct dwarf2_cu *type_cu;
18026   struct die_info *type_die;
18027   struct type *type;
18028
18029   sig_type = lookup_signatured_type (signature);
18030   /* sig_type will be NULL if the signatured type is missing from
18031      the debug info.  */
18032   if (sig_type == NULL)
18033     {
18034       complaint (&symfile_complaints,
18035                  _("Dwarf Error: Cannot find signatured DIE %s referenced"
18036                    " from DIE at 0x%x [in module %s]"),
18037                  hex_string (signature), die->offset.sect_off,
18038                  dwarf2_per_objfile->objfile->name);
18039       return build_error_marker_type (cu, die);
18040     }
18041
18042   /* If we already know the type we're done.  */
18043   if (sig_type->type != NULL)
18044     return sig_type->type;
18045
18046   type_cu = cu;
18047   type_die = follow_die_sig_1 (die, sig_type, &type_cu);
18048   if (type_die != NULL)
18049     {
18050       /* N.B. We need to call get_die_type to ensure only one type for this DIE
18051          is created.  This is important, for example, because for c++ classes
18052          we need TYPE_NAME set which is only done by new_symbol.  Blech.  */
18053       type = read_type_die (type_die, type_cu);
18054       if (type == NULL)
18055         {
18056           complaint (&symfile_complaints,
18057                      _("Dwarf Error: Cannot build signatured type %s"
18058                        " referenced from DIE at 0x%x [in module %s]"),
18059                      hex_string (signature), die->offset.sect_off,
18060                      dwarf2_per_objfile->objfile->name);
18061           type = build_error_marker_type (cu, die);
18062         }
18063     }
18064   else
18065     {
18066       complaint (&symfile_complaints,
18067                  _("Dwarf Error: Problem reading signatured DIE %s referenced"
18068                    " from DIE at 0x%x [in module %s]"),
18069                  hex_string (signature), die->offset.sect_off,
18070                  dwarf2_per_objfile->objfile->name);
18071       type = build_error_marker_type (cu, die);
18072     }
18073   sig_type->type = type;
18074
18075   return type;
18076 }
18077
18078 /* Get the type specified by the DW_AT_signature ATTR in DIE/CU,
18079    reading in and processing the type unit if necessary.  */
18080
18081 static struct type *
18082 get_DW_AT_signature_type (struct die_info *die, struct attribute *attr,
18083                           struct dwarf2_cu *cu) /* ARI: editCase function */
18084 {
18085   /* Yes, DW_AT_signature can use a non-ref_sig8 reference.  */
18086   if (is_ref_attr (attr))
18087     {
18088       struct dwarf2_cu *type_cu = cu;
18089       struct die_info *type_die = follow_die_ref (die, attr, &type_cu);
18090
18091       return read_type_die (type_die, type_cu);
18092     }
18093   else if (attr->form == DW_FORM_ref_sig8)
18094     {
18095       return get_signatured_type (die, DW_SIGNATURE (attr), cu);
18096     }
18097   else
18098     {
18099       complaint (&symfile_complaints,
18100                  _("Dwarf Error: DW_AT_signature has bad form %s in DIE"
18101                    " at 0x%x [in module %s]"),
18102                  dwarf_form_name (attr->form), die->offset.sect_off,
18103                  dwarf2_per_objfile->objfile->name);
18104       return build_error_marker_type (cu, die);
18105     }
18106 }
18107
18108 /* Load the DIEs associated with type unit PER_CU into memory.  */
18109
18110 static void
18111 load_full_type_unit (struct dwarf2_per_cu_data *per_cu)
18112 {
18113   struct signatured_type *sig_type;
18114
18115   /* Caller is responsible for ensuring type_unit_groups don't get here.  */
18116   gdb_assert (! IS_TYPE_UNIT_GROUP (per_cu));
18117
18118   /* We have the per_cu, but we need the signatured_type.
18119      Fortunately this is an easy translation.  */
18120   gdb_assert (per_cu->is_debug_types);
18121   sig_type = (struct signatured_type *) per_cu;
18122
18123   gdb_assert (per_cu->cu == NULL);
18124
18125   read_signatured_type (sig_type);
18126
18127   gdb_assert (per_cu->cu != NULL);
18128 }
18129
18130 /* die_reader_func for read_signatured_type.
18131    This is identical to load_full_comp_unit_reader,
18132    but is kept separate for now.  */
18133
18134 static void
18135 read_signatured_type_reader (const struct die_reader_specs *reader,
18136                              const gdb_byte *info_ptr,
18137                              struct die_info *comp_unit_die,
18138                              int has_children,
18139                              void *data)
18140 {
18141   struct dwarf2_cu *cu = reader->cu;
18142
18143   gdb_assert (cu->die_hash == NULL);
18144   cu->die_hash =
18145     htab_create_alloc_ex (cu->header.length / 12,
18146                           die_hash,
18147                           die_eq,
18148                           NULL,
18149                           &cu->comp_unit_obstack,
18150                           hashtab_obstack_allocate,
18151                           dummy_obstack_deallocate);
18152
18153   if (has_children)
18154     comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
18155                                                   &info_ptr, comp_unit_die);
18156   cu->dies = comp_unit_die;
18157   /* comp_unit_die is not stored in die_hash, no need.  */
18158
18159   /* We try not to read any attributes in this function, because not
18160      all CUs needed for references have been loaded yet, and symbol
18161      table processing isn't initialized.  But we have to set the CU language,
18162      or we won't be able to build types correctly.
18163      Similarly, if we do not read the producer, we can not apply
18164      producer-specific interpretation.  */
18165   prepare_one_comp_unit (cu, cu->dies, language_minimal);
18166 }
18167
18168 /* Read in a signatured type and build its CU and DIEs.
18169    If the type is a stub for the real type in a DWO file,
18170    read in the real type from the DWO file as well.  */
18171
18172 static void
18173 read_signatured_type (struct signatured_type *sig_type)
18174 {
18175   struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
18176
18177   gdb_assert (per_cu->is_debug_types);
18178   gdb_assert (per_cu->cu == NULL);
18179
18180   init_cutu_and_read_dies (per_cu, NULL, 0, 1,
18181                            read_signatured_type_reader, NULL);
18182 }
18183
18184 /* Decode simple location descriptions.
18185    Given a pointer to a dwarf block that defines a location, compute
18186    the location and return the value.
18187
18188    NOTE drow/2003-11-18: This function is called in two situations
18189    now: for the address of static or global variables (partial symbols
18190    only) and for offsets into structures which are expected to be
18191    (more or less) constant.  The partial symbol case should go away,
18192    and only the constant case should remain.  That will let this
18193    function complain more accurately.  A few special modes are allowed
18194    without complaint for global variables (for instance, global
18195    register values and thread-local values).
18196
18197    A location description containing no operations indicates that the
18198    object is optimized out.  The return value is 0 for that case.
18199    FIXME drow/2003-11-16: No callers check for this case any more; soon all
18200    callers will only want a very basic result and this can become a
18201    complaint.
18202
18203    Note that stack[0] is unused except as a default error return.  */
18204
18205 static CORE_ADDR
18206 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
18207 {
18208   struct objfile *objfile = cu->objfile;
18209   size_t i;
18210   size_t size = blk->size;
18211   const gdb_byte *data = blk->data;
18212   CORE_ADDR stack[64];
18213   int stacki;
18214   unsigned int bytes_read, unsnd;
18215   gdb_byte op;
18216
18217   i = 0;
18218   stacki = 0;
18219   stack[stacki] = 0;
18220   stack[++stacki] = 0;
18221
18222   while (i < size)
18223     {
18224       op = data[i++];
18225       switch (op)
18226         {
18227         case DW_OP_lit0:
18228         case DW_OP_lit1:
18229         case DW_OP_lit2:
18230         case DW_OP_lit3:
18231         case DW_OP_lit4:
18232         case DW_OP_lit5:
18233         case DW_OP_lit6:
18234         case DW_OP_lit7:
18235         case DW_OP_lit8:
18236         case DW_OP_lit9:
18237         case DW_OP_lit10:
18238         case DW_OP_lit11:
18239         case DW_OP_lit12:
18240         case DW_OP_lit13:
18241         case DW_OP_lit14:
18242         case DW_OP_lit15:
18243         case DW_OP_lit16:
18244         case DW_OP_lit17:
18245         case DW_OP_lit18:
18246         case DW_OP_lit19:
18247         case DW_OP_lit20:
18248         case DW_OP_lit21:
18249         case DW_OP_lit22:
18250         case DW_OP_lit23:
18251         case DW_OP_lit24:
18252         case DW_OP_lit25:
18253         case DW_OP_lit26:
18254         case DW_OP_lit27:
18255         case DW_OP_lit28:
18256         case DW_OP_lit29:
18257         case DW_OP_lit30:
18258         case DW_OP_lit31:
18259           stack[++stacki] = op - DW_OP_lit0;
18260           break;
18261
18262         case DW_OP_reg0:
18263         case DW_OP_reg1:
18264         case DW_OP_reg2:
18265         case DW_OP_reg3:
18266         case DW_OP_reg4:
18267         case DW_OP_reg5:
18268         case DW_OP_reg6:
18269         case DW_OP_reg7:
18270         case DW_OP_reg8:
18271         case DW_OP_reg9:
18272         case DW_OP_reg10:
18273         case DW_OP_reg11:
18274         case DW_OP_reg12:
18275         case DW_OP_reg13:
18276         case DW_OP_reg14:
18277         case DW_OP_reg15:
18278         case DW_OP_reg16:
18279         case DW_OP_reg17:
18280         case DW_OP_reg18:
18281         case DW_OP_reg19:
18282         case DW_OP_reg20:
18283         case DW_OP_reg21:
18284         case DW_OP_reg22:
18285         case DW_OP_reg23:
18286         case DW_OP_reg24:
18287         case DW_OP_reg25:
18288         case DW_OP_reg26:
18289         case DW_OP_reg27:
18290         case DW_OP_reg28:
18291         case DW_OP_reg29:
18292         case DW_OP_reg30:
18293         case DW_OP_reg31:
18294           stack[++stacki] = op - DW_OP_reg0;
18295           if (i < size)
18296             dwarf2_complex_location_expr_complaint ();
18297           break;
18298
18299         case DW_OP_regx:
18300           unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
18301           i += bytes_read;
18302           stack[++stacki] = unsnd;
18303           if (i < size)
18304             dwarf2_complex_location_expr_complaint ();
18305           break;
18306
18307         case DW_OP_addr:
18308           stack[++stacki] = read_address (objfile->obfd, &data[i],
18309                                           cu, &bytes_read);
18310           i += bytes_read;
18311           break;
18312
18313         case DW_OP_const1u:
18314           stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
18315           i += 1;
18316           break;
18317
18318         case DW_OP_const1s:
18319           stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
18320           i += 1;
18321           break;
18322
18323         case DW_OP_const2u:
18324           stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
18325           i += 2;
18326           break;
18327
18328         case DW_OP_const2s:
18329           stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
18330           i += 2;
18331           break;
18332
18333         case DW_OP_const4u:
18334           stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
18335           i += 4;
18336           break;
18337
18338         case DW_OP_const4s:
18339           stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
18340           i += 4;
18341           break;
18342
18343         case DW_OP_const8u:
18344           stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
18345           i += 8;
18346           break;
18347
18348         case DW_OP_constu:
18349           stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
18350                                                   &bytes_read);
18351           i += bytes_read;
18352           break;
18353
18354         case DW_OP_consts:
18355           stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
18356           i += bytes_read;
18357           break;
18358
18359         case DW_OP_dup:
18360           stack[stacki + 1] = stack[stacki];
18361           stacki++;
18362           break;
18363
18364         case DW_OP_plus:
18365           stack[stacki - 1] += stack[stacki];
18366           stacki--;
18367           break;
18368
18369         case DW_OP_plus_uconst:
18370           stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
18371                                                  &bytes_read);
18372           i += bytes_read;
18373           break;
18374
18375         case DW_OP_minus:
18376           stack[stacki - 1] -= stack[stacki];
18377           stacki--;
18378           break;
18379
18380         case DW_OP_deref:
18381           /* If we're not the last op, then we definitely can't encode
18382              this using GDB's address_class enum.  This is valid for partial
18383              global symbols, although the variable's address will be bogus
18384              in the psymtab.  */
18385           if (i < size)
18386             dwarf2_complex_location_expr_complaint ();
18387           break;
18388
18389         case DW_OP_GNU_push_tls_address:
18390           /* The top of the stack has the offset from the beginning
18391              of the thread control block at which the variable is located.  */
18392           /* Nothing should follow this operator, so the top of stack would
18393              be returned.  */
18394           /* This is valid for partial global symbols, but the variable's
18395              address will be bogus in the psymtab.  Make it always at least
18396              non-zero to not look as a variable garbage collected by linker
18397              which have DW_OP_addr 0.  */
18398           if (i < size)
18399             dwarf2_complex_location_expr_complaint ();
18400           stack[stacki]++;
18401           break;
18402
18403         case DW_OP_GNU_uninit:
18404           break;
18405
18406         case DW_OP_GNU_addr_index:
18407         case DW_OP_GNU_const_index:
18408           stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
18409                                                          &bytes_read);
18410           i += bytes_read;
18411           break;
18412
18413         default:
18414           {
18415             const char *name = get_DW_OP_name (op);
18416
18417             if (name)
18418               complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
18419                          name);
18420             else
18421               complaint (&symfile_complaints, _("unsupported stack op: '%02x'"),
18422                          op);
18423           }
18424
18425           return (stack[stacki]);
18426         }
18427
18428       /* Enforce maximum stack depth of SIZE-1 to avoid writing
18429          outside of the allocated space.  Also enforce minimum>0.  */
18430       if (stacki >= ARRAY_SIZE (stack) - 1)
18431         {
18432           complaint (&symfile_complaints,
18433                      _("location description stack overflow"));
18434           return 0;
18435         }
18436
18437       if (stacki <= 0)
18438         {
18439           complaint (&symfile_complaints,
18440                      _("location description stack underflow"));
18441           return 0;
18442         }
18443     }
18444   return (stack[stacki]);
18445 }
18446
18447 /* memory allocation interface */
18448
18449 static struct dwarf_block *
18450 dwarf_alloc_block (struct dwarf2_cu *cu)
18451 {
18452   struct dwarf_block *blk;
18453
18454   blk = (struct dwarf_block *)
18455     obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
18456   return (blk);
18457 }
18458
18459 static struct die_info *
18460 dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
18461 {
18462   struct die_info *die;
18463   size_t size = sizeof (struct die_info);
18464
18465   if (num_attrs > 1)
18466     size += (num_attrs - 1) * sizeof (struct attribute);
18467
18468   die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
18469   memset (die, 0, sizeof (struct die_info));
18470   return (die);
18471 }
18472
18473 \f
18474 /* Macro support.  */
18475
18476 /* Return file name relative to the compilation directory of file number I in
18477    *LH's file name table.  The result is allocated using xmalloc; the caller is
18478    responsible for freeing it.  */
18479
18480 static char *
18481 file_file_name (int file, struct line_header *lh)
18482 {
18483   /* Is the file number a valid index into the line header's file name
18484      table?  Remember that file numbers start with one, not zero.  */
18485   if (1 <= file && file <= lh->num_file_names)
18486     {
18487       struct file_entry *fe = &lh->file_names[file - 1];
18488
18489       if (IS_ABSOLUTE_PATH (fe->name) || fe->dir_index == 0)
18490         return xstrdup (fe->name);
18491       return concat (lh->include_dirs[fe->dir_index - 1], SLASH_STRING,
18492                      fe->name, NULL);
18493     }
18494   else
18495     {
18496       /* The compiler produced a bogus file number.  We can at least
18497          record the macro definitions made in the file, even if we
18498          won't be able to find the file by name.  */
18499       char fake_name[80];
18500
18501       xsnprintf (fake_name, sizeof (fake_name),
18502                  "<bad macro file number %d>", file);
18503
18504       complaint (&symfile_complaints,
18505                  _("bad file number in macro information (%d)"),
18506                  file);
18507
18508       return xstrdup (fake_name);
18509     }
18510 }
18511
18512 /* Return the full name of file number I in *LH's file name table.
18513    Use COMP_DIR as the name of the current directory of the
18514    compilation.  The result is allocated using xmalloc; the caller is
18515    responsible for freeing it.  */
18516 static char *
18517 file_full_name (int file, struct line_header *lh, const char *comp_dir)
18518 {
18519   /* Is the file number a valid index into the line header's file name
18520      table?  Remember that file numbers start with one, not zero.  */
18521   if (1 <= file && file <= lh->num_file_names)
18522     {
18523       char *relative = file_file_name (file, lh);
18524
18525       if (IS_ABSOLUTE_PATH (relative) || comp_dir == NULL)
18526         return relative;
18527       return reconcat (relative, comp_dir, SLASH_STRING, relative, NULL);
18528     }
18529   else
18530     return file_file_name (file, lh);
18531 }
18532
18533
18534 static struct macro_source_file *
18535 macro_start_file (int file, int line,
18536                   struct macro_source_file *current_file,
18537                   const char *comp_dir,
18538                   struct line_header *lh, struct objfile *objfile)
18539 {
18540   /* File name relative to the compilation directory of this source file.  */
18541   char *file_name = file_file_name (file, lh);
18542
18543   /* We don't create a macro table for this compilation unit
18544      at all until we actually get a filename.  */
18545   if (! pending_macros)
18546     pending_macros = new_macro_table (&objfile->per_bfd->storage_obstack,
18547                                       objfile->per_bfd->macro_cache,
18548                                       comp_dir);
18549
18550   if (! current_file)
18551     {
18552       /* If we have no current file, then this must be the start_file
18553          directive for the compilation unit's main source file.  */
18554       current_file = macro_set_main (pending_macros, file_name);
18555       macro_define_special (pending_macros);
18556     }
18557   else
18558     current_file = macro_include (current_file, line, file_name);
18559
18560   xfree (file_name);
18561
18562   return current_file;
18563 }
18564
18565
18566 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
18567    followed by a null byte.  */
18568 static char *
18569 copy_string (const char *buf, int len)
18570 {
18571   char *s = xmalloc (len + 1);
18572
18573   memcpy (s, buf, len);
18574   s[len] = '\0';
18575   return s;
18576 }
18577
18578
18579 static const char *
18580 consume_improper_spaces (const char *p, const char *body)
18581 {
18582   if (*p == ' ')
18583     {
18584       complaint (&symfile_complaints,
18585                  _("macro definition contains spaces "
18586                    "in formal argument list:\n`%s'"),
18587                  body);
18588
18589       while (*p == ' ')
18590         p++;
18591     }
18592
18593   return p;
18594 }
18595
18596
18597 static void
18598 parse_macro_definition (struct macro_source_file *file, int line,
18599                         const char *body)
18600 {
18601   const char *p;
18602
18603   /* The body string takes one of two forms.  For object-like macro
18604      definitions, it should be:
18605
18606         <macro name> " " <definition>
18607
18608      For function-like macro definitions, it should be:
18609
18610         <macro name> "() " <definition>
18611      or
18612         <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
18613
18614      Spaces may appear only where explicitly indicated, and in the
18615      <definition>.
18616
18617      The Dwarf 2 spec says that an object-like macro's name is always
18618      followed by a space, but versions of GCC around March 2002 omit
18619      the space when the macro's definition is the empty string.
18620
18621      The Dwarf 2 spec says that there should be no spaces between the
18622      formal arguments in a function-like macro's formal argument list,
18623      but versions of GCC around March 2002 include spaces after the
18624      commas.  */
18625
18626
18627   /* Find the extent of the macro name.  The macro name is terminated
18628      by either a space or null character (for an object-like macro) or
18629      an opening paren (for a function-like macro).  */
18630   for (p = body; *p; p++)
18631     if (*p == ' ' || *p == '(')
18632       break;
18633
18634   if (*p == ' ' || *p == '\0')
18635     {
18636       /* It's an object-like macro.  */
18637       int name_len = p - body;
18638       char *name = copy_string (body, name_len);
18639       const char *replacement;
18640
18641       if (*p == ' ')
18642         replacement = body + name_len + 1;
18643       else
18644         {
18645           dwarf2_macro_malformed_definition_complaint (body);
18646           replacement = body + name_len;
18647         }
18648
18649       macro_define_object (file, line, name, replacement);
18650
18651       xfree (name);
18652     }
18653   else if (*p == '(')
18654     {
18655       /* It's a function-like macro.  */
18656       char *name = copy_string (body, p - body);
18657       int argc = 0;
18658       int argv_size = 1;
18659       char **argv = xmalloc (argv_size * sizeof (*argv));
18660
18661       p++;
18662
18663       p = consume_improper_spaces (p, body);
18664
18665       /* Parse the formal argument list.  */
18666       while (*p && *p != ')')
18667         {
18668           /* Find the extent of the current argument name.  */
18669           const char *arg_start = p;
18670
18671           while (*p && *p != ',' && *p != ')' && *p != ' ')
18672             p++;
18673
18674           if (! *p || p == arg_start)
18675             dwarf2_macro_malformed_definition_complaint (body);
18676           else
18677             {
18678               /* Make sure argv has room for the new argument.  */
18679               if (argc >= argv_size)
18680                 {
18681                   argv_size *= 2;
18682                   argv = xrealloc (argv, argv_size * sizeof (*argv));
18683                 }
18684
18685               argv[argc++] = copy_string (arg_start, p - arg_start);
18686             }
18687
18688           p = consume_improper_spaces (p, body);
18689
18690           /* Consume the comma, if present.  */
18691           if (*p == ',')
18692             {
18693               p++;
18694
18695               p = consume_improper_spaces (p, body);
18696             }
18697         }
18698
18699       if (*p == ')')
18700         {
18701           p++;
18702
18703           if (*p == ' ')
18704             /* Perfectly formed definition, no complaints.  */
18705             macro_define_function (file, line, name,
18706                                    argc, (const char **) argv,
18707                                    p + 1);
18708           else if (*p == '\0')
18709             {
18710               /* Complain, but do define it.  */
18711               dwarf2_macro_malformed_definition_complaint (body);
18712               macro_define_function (file, line, name,
18713                                      argc, (const char **) argv,
18714                                      p);
18715             }
18716           else
18717             /* Just complain.  */
18718             dwarf2_macro_malformed_definition_complaint (body);
18719         }
18720       else
18721         /* Just complain.  */
18722         dwarf2_macro_malformed_definition_complaint (body);
18723
18724       xfree (name);
18725       {
18726         int i;
18727
18728         for (i = 0; i < argc; i++)
18729           xfree (argv[i]);
18730       }
18731       xfree (argv);
18732     }
18733   else
18734     dwarf2_macro_malformed_definition_complaint (body);
18735 }
18736
18737 /* Skip some bytes from BYTES according to the form given in FORM.
18738    Returns the new pointer.  */
18739
18740 static const gdb_byte *
18741 skip_form_bytes (bfd *abfd, const gdb_byte *bytes, const gdb_byte *buffer_end,
18742                  enum dwarf_form form,
18743                  unsigned int offset_size,
18744                  struct dwarf2_section_info *section)
18745 {
18746   unsigned int bytes_read;
18747
18748   switch (form)
18749     {
18750     case DW_FORM_data1:
18751     case DW_FORM_flag:
18752       ++bytes;
18753       break;
18754
18755     case DW_FORM_data2:
18756       bytes += 2;
18757       break;
18758
18759     case DW_FORM_data4:
18760       bytes += 4;
18761       break;
18762
18763     case DW_FORM_data8:
18764       bytes += 8;
18765       break;
18766
18767     case DW_FORM_string:
18768       read_direct_string (abfd, bytes, &bytes_read);
18769       bytes += bytes_read;
18770       break;
18771
18772     case DW_FORM_sec_offset:
18773     case DW_FORM_strp:
18774     case DW_FORM_GNU_strp_alt:
18775       bytes += offset_size;
18776       break;
18777
18778     case DW_FORM_block:
18779       bytes += read_unsigned_leb128 (abfd, bytes, &bytes_read);
18780       bytes += bytes_read;
18781       break;
18782
18783     case DW_FORM_block1:
18784       bytes += 1 + read_1_byte (abfd, bytes);
18785       break;
18786     case DW_FORM_block2:
18787       bytes += 2 + read_2_bytes (abfd, bytes);
18788       break;
18789     case DW_FORM_block4:
18790       bytes += 4 + read_4_bytes (abfd, bytes);
18791       break;
18792
18793     case DW_FORM_sdata:
18794     case DW_FORM_udata:
18795     case DW_FORM_GNU_addr_index:
18796     case DW_FORM_GNU_str_index:
18797       bytes = gdb_skip_leb128 (bytes, buffer_end);
18798       if (bytes == NULL)
18799         {
18800           dwarf2_section_buffer_overflow_complaint (section);
18801           return NULL;
18802         }
18803       break;
18804
18805     default:
18806       {
18807       complain:
18808         complaint (&symfile_complaints,
18809                    _("invalid form 0x%x in `%s'"),
18810                    form,
18811                    section->asection->name);
18812         return NULL;
18813       }
18814     }
18815
18816   return bytes;
18817 }
18818
18819 /* A helper for dwarf_decode_macros that handles skipping an unknown
18820    opcode.  Returns an updated pointer to the macro data buffer; or,
18821    on error, issues a complaint and returns NULL.  */
18822
18823 static const gdb_byte *
18824 skip_unknown_opcode (unsigned int opcode,
18825                      const gdb_byte **opcode_definitions,
18826                      const gdb_byte *mac_ptr, const gdb_byte *mac_end,
18827                      bfd *abfd,
18828                      unsigned int offset_size,
18829                      struct dwarf2_section_info *section)
18830 {
18831   unsigned int bytes_read, i;
18832   unsigned long arg;
18833   const gdb_byte *defn;
18834
18835   if (opcode_definitions[opcode] == NULL)
18836     {
18837       complaint (&symfile_complaints,
18838                  _("unrecognized DW_MACFINO opcode 0x%x"),
18839                  opcode);
18840       return NULL;
18841     }
18842
18843   defn = opcode_definitions[opcode];
18844   arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
18845   defn += bytes_read;
18846
18847   for (i = 0; i < arg; ++i)
18848     {
18849       mac_ptr = skip_form_bytes (abfd, mac_ptr, mac_end, defn[i], offset_size,
18850                                  section);
18851       if (mac_ptr == NULL)
18852         {
18853           /* skip_form_bytes already issued the complaint.  */
18854           return NULL;
18855         }
18856     }
18857
18858   return mac_ptr;
18859 }
18860
18861 /* A helper function which parses the header of a macro section.
18862    If the macro section is the extended (for now called "GNU") type,
18863    then this updates *OFFSET_SIZE.  Returns a pointer to just after
18864    the header, or issues a complaint and returns NULL on error.  */
18865
18866 static const gdb_byte *
18867 dwarf_parse_macro_header (const gdb_byte **opcode_definitions,
18868                           bfd *abfd,
18869                           const gdb_byte *mac_ptr,
18870                           unsigned int *offset_size,
18871                           int section_is_gnu)
18872 {
18873   memset (opcode_definitions, 0, 256 * sizeof (gdb_byte *));
18874
18875   if (section_is_gnu)
18876     {
18877       unsigned int version, flags;
18878
18879       version = read_2_bytes (abfd, mac_ptr);
18880       if (version != 4)
18881         {
18882           complaint (&symfile_complaints,
18883                      _("unrecognized version `%d' in .debug_macro section"),
18884                      version);
18885           return NULL;
18886         }
18887       mac_ptr += 2;
18888
18889       flags = read_1_byte (abfd, mac_ptr);
18890       ++mac_ptr;
18891       *offset_size = (flags & 1) ? 8 : 4;
18892
18893       if ((flags & 2) != 0)
18894         /* We don't need the line table offset.  */
18895         mac_ptr += *offset_size;
18896
18897       /* Vendor opcode descriptions.  */
18898       if ((flags & 4) != 0)
18899         {
18900           unsigned int i, count;
18901
18902           count = read_1_byte (abfd, mac_ptr);
18903           ++mac_ptr;
18904           for (i = 0; i < count; ++i)
18905             {
18906               unsigned int opcode, bytes_read;
18907               unsigned long arg;
18908
18909               opcode = read_1_byte (abfd, mac_ptr);
18910               ++mac_ptr;
18911               opcode_definitions[opcode] = mac_ptr;
18912               arg = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18913               mac_ptr += bytes_read;
18914               mac_ptr += arg;
18915             }
18916         }
18917     }
18918
18919   return mac_ptr;
18920 }
18921
18922 /* A helper for dwarf_decode_macros that handles the GNU extensions,
18923    including DW_MACRO_GNU_transparent_include.  */
18924
18925 static void
18926 dwarf_decode_macro_bytes (bfd *abfd,
18927                           const gdb_byte *mac_ptr, const gdb_byte *mac_end,
18928                           struct macro_source_file *current_file,
18929                           struct line_header *lh, const char *comp_dir,
18930                           struct dwarf2_section_info *section,
18931                           int section_is_gnu, int section_is_dwz,
18932                           unsigned int offset_size,
18933                           struct objfile *objfile,
18934                           htab_t include_hash)
18935 {
18936   enum dwarf_macro_record_type macinfo_type;
18937   int at_commandline;
18938   const gdb_byte *opcode_definitions[256];
18939
18940   mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
18941                                       &offset_size, section_is_gnu);
18942   if (mac_ptr == NULL)
18943     {
18944       /* We already issued a complaint.  */
18945       return;
18946     }
18947
18948   /* Determines if GDB is still before first DW_MACINFO_start_file.  If true
18949      GDB is still reading the definitions from command line.  First
18950      DW_MACINFO_start_file will need to be ignored as it was already executed
18951      to create CURRENT_FILE for the main source holding also the command line
18952      definitions.  On first met DW_MACINFO_start_file this flag is reset to
18953      normally execute all the remaining DW_MACINFO_start_file macinfos.  */
18954
18955   at_commandline = 1;
18956
18957   do
18958     {
18959       /* Do we at least have room for a macinfo type byte?  */
18960       if (mac_ptr >= mac_end)
18961         {
18962           dwarf2_section_buffer_overflow_complaint (section);
18963           break;
18964         }
18965
18966       macinfo_type = read_1_byte (abfd, mac_ptr);
18967       mac_ptr++;
18968
18969       /* Note that we rely on the fact that the corresponding GNU and
18970          DWARF constants are the same.  */
18971       switch (macinfo_type)
18972         {
18973           /* A zero macinfo type indicates the end of the macro
18974              information.  */
18975         case 0:
18976           break;
18977
18978         case DW_MACRO_GNU_define:
18979         case DW_MACRO_GNU_undef:
18980         case DW_MACRO_GNU_define_indirect:
18981         case DW_MACRO_GNU_undef_indirect:
18982         case DW_MACRO_GNU_define_indirect_alt:
18983         case DW_MACRO_GNU_undef_indirect_alt:
18984           {
18985             unsigned int bytes_read;
18986             int line;
18987             const char *body;
18988             int is_define;
18989
18990             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18991             mac_ptr += bytes_read;
18992
18993             if (macinfo_type == DW_MACRO_GNU_define
18994                 || macinfo_type == DW_MACRO_GNU_undef)
18995               {
18996                 body = read_direct_string (abfd, mac_ptr, &bytes_read);
18997                 mac_ptr += bytes_read;
18998               }
18999             else
19000               {
19001                 LONGEST str_offset;
19002
19003                 str_offset = read_offset_1 (abfd, mac_ptr, offset_size);
19004                 mac_ptr += offset_size;
19005
19006                 if (macinfo_type == DW_MACRO_GNU_define_indirect_alt
19007                     || macinfo_type == DW_MACRO_GNU_undef_indirect_alt
19008                     || section_is_dwz)
19009                   {
19010                     struct dwz_file *dwz = dwarf2_get_dwz_file ();
19011
19012                     body = read_indirect_string_from_dwz (dwz, str_offset);
19013                   }
19014                 else
19015                   body = read_indirect_string_at_offset (abfd, str_offset);
19016               }
19017
19018             is_define = (macinfo_type == DW_MACRO_GNU_define
19019                          || macinfo_type == DW_MACRO_GNU_define_indirect
19020                          || macinfo_type == DW_MACRO_GNU_define_indirect_alt);
19021             if (! current_file)
19022               {
19023                 /* DWARF violation as no main source is present.  */
19024                 complaint (&symfile_complaints,
19025                            _("debug info with no main source gives macro %s "
19026                              "on line %d: %s"),
19027                            is_define ? _("definition") : _("undefinition"),
19028                            line, body);
19029                 break;
19030               }
19031             if ((line == 0 && !at_commandline)
19032                 || (line != 0 && at_commandline))
19033               complaint (&symfile_complaints,
19034                          _("debug info gives %s macro %s with %s line %d: %s"),
19035                          at_commandline ? _("command-line") : _("in-file"),
19036                          is_define ? _("definition") : _("undefinition"),
19037                          line == 0 ? _("zero") : _("non-zero"), line, body);
19038
19039             if (is_define)
19040               parse_macro_definition (current_file, line, body);
19041             else
19042               {
19043                 gdb_assert (macinfo_type == DW_MACRO_GNU_undef
19044                             || macinfo_type == DW_MACRO_GNU_undef_indirect
19045                             || macinfo_type == DW_MACRO_GNU_undef_indirect_alt);
19046                 macro_undef (current_file, line, body);
19047               }
19048           }
19049           break;
19050
19051         case DW_MACRO_GNU_start_file:
19052           {
19053             unsigned int bytes_read;
19054             int line, file;
19055
19056             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19057             mac_ptr += bytes_read;
19058             file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19059             mac_ptr += bytes_read;
19060
19061             if ((line == 0 && !at_commandline)
19062                 || (line != 0 && at_commandline))
19063               complaint (&symfile_complaints,
19064                          _("debug info gives source %d included "
19065                            "from %s at %s line %d"),
19066                          file, at_commandline ? _("command-line") : _("file"),
19067                          line == 0 ? _("zero") : _("non-zero"), line);
19068
19069             if (at_commandline)
19070               {
19071                 /* This DW_MACRO_GNU_start_file was executed in the
19072                    pass one.  */
19073                 at_commandline = 0;
19074               }
19075             else
19076               current_file = macro_start_file (file, line,
19077                                                current_file, comp_dir,
19078                                                lh, objfile);
19079           }
19080           break;
19081
19082         case DW_MACRO_GNU_end_file:
19083           if (! current_file)
19084             complaint (&symfile_complaints,
19085                        _("macro debug info has an unmatched "
19086                          "`close_file' directive"));
19087           else
19088             {
19089               current_file = current_file->included_by;
19090               if (! current_file)
19091                 {
19092                   enum dwarf_macro_record_type next_type;
19093
19094                   /* GCC circa March 2002 doesn't produce the zero
19095                      type byte marking the end of the compilation
19096                      unit.  Complain if it's not there, but exit no
19097                      matter what.  */
19098
19099                   /* Do we at least have room for a macinfo type byte?  */
19100                   if (mac_ptr >= mac_end)
19101                     {
19102                       dwarf2_section_buffer_overflow_complaint (section);
19103                       return;
19104                     }
19105
19106                   /* We don't increment mac_ptr here, so this is just
19107                      a look-ahead.  */
19108                   next_type = read_1_byte (abfd, mac_ptr);
19109                   if (next_type != 0)
19110                     complaint (&symfile_complaints,
19111                                _("no terminating 0-type entry for "
19112                                  "macros in `.debug_macinfo' section"));
19113
19114                   return;
19115                 }
19116             }
19117           break;
19118
19119         case DW_MACRO_GNU_transparent_include:
19120         case DW_MACRO_GNU_transparent_include_alt:
19121           {
19122             LONGEST offset;
19123             void **slot;
19124             bfd *include_bfd = abfd;
19125             struct dwarf2_section_info *include_section = section;
19126             struct dwarf2_section_info alt_section;
19127             const gdb_byte *include_mac_end = mac_end;
19128             int is_dwz = section_is_dwz;
19129             const gdb_byte *new_mac_ptr;
19130
19131             offset = read_offset_1 (abfd, mac_ptr, offset_size);
19132             mac_ptr += offset_size;
19133
19134             if (macinfo_type == DW_MACRO_GNU_transparent_include_alt)
19135               {
19136                 struct dwz_file *dwz = dwarf2_get_dwz_file ();
19137
19138                 dwarf2_read_section (dwarf2_per_objfile->objfile,
19139                                      &dwz->macro);
19140
19141                 include_bfd = dwz->macro.asection->owner;
19142                 include_section = &dwz->macro;
19143                 include_mac_end = dwz->macro.buffer + dwz->macro.size;
19144                 is_dwz = 1;
19145               }
19146
19147             new_mac_ptr = include_section->buffer + offset;
19148             slot = htab_find_slot (include_hash, new_mac_ptr, INSERT);
19149
19150             if (*slot != NULL)
19151               {
19152                 /* This has actually happened; see
19153                    http://sourceware.org/bugzilla/show_bug.cgi?id=13568.  */
19154                 complaint (&symfile_complaints,
19155                            _("recursive DW_MACRO_GNU_transparent_include in "
19156                              ".debug_macro section"));
19157               }
19158             else
19159               {
19160                 *slot = (void *) new_mac_ptr;
19161
19162                 dwarf_decode_macro_bytes (include_bfd, new_mac_ptr,
19163                                           include_mac_end, current_file,
19164                                           lh, comp_dir,
19165                                           section, section_is_gnu, is_dwz,
19166                                           offset_size, objfile, include_hash);
19167
19168                 htab_remove_elt (include_hash, (void *) new_mac_ptr);
19169               }
19170           }
19171           break;
19172
19173         case DW_MACINFO_vendor_ext:
19174           if (!section_is_gnu)
19175             {
19176               unsigned int bytes_read;
19177               int constant;
19178
19179               constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19180               mac_ptr += bytes_read;
19181               read_direct_string (abfd, mac_ptr, &bytes_read);
19182               mac_ptr += bytes_read;
19183
19184               /* We don't recognize any vendor extensions.  */
19185               break;
19186             }
19187           /* FALLTHROUGH */
19188
19189         default:
19190           mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
19191                                          mac_ptr, mac_end, abfd, offset_size,
19192                                          section);
19193           if (mac_ptr == NULL)
19194             return;
19195           break;
19196         }
19197     } while (macinfo_type != 0);
19198 }
19199
19200 static void
19201 dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
19202                      const char *comp_dir, int section_is_gnu)
19203 {
19204   struct objfile *objfile = dwarf2_per_objfile->objfile;
19205   struct line_header *lh = cu->line_header;
19206   bfd *abfd;
19207   const gdb_byte *mac_ptr, *mac_end;
19208   struct macro_source_file *current_file = 0;
19209   enum dwarf_macro_record_type macinfo_type;
19210   unsigned int offset_size = cu->header.offset_size;
19211   const gdb_byte *opcode_definitions[256];
19212   struct cleanup *cleanup;
19213   htab_t include_hash;
19214   void **slot;
19215   struct dwarf2_section_info *section;
19216   const char *section_name;
19217
19218   if (cu->dwo_unit != NULL)
19219     {
19220       if (section_is_gnu)
19221         {
19222           section = &cu->dwo_unit->dwo_file->sections.macro;
19223           section_name = ".debug_macro.dwo";
19224         }
19225       else
19226         {
19227           section = &cu->dwo_unit->dwo_file->sections.macinfo;
19228           section_name = ".debug_macinfo.dwo";
19229         }
19230     }
19231   else
19232     {
19233       if (section_is_gnu)
19234         {
19235           section = &dwarf2_per_objfile->macro;
19236           section_name = ".debug_macro";
19237         }
19238       else
19239         {
19240           section = &dwarf2_per_objfile->macinfo;
19241           section_name = ".debug_macinfo";
19242         }
19243     }
19244
19245   dwarf2_read_section (objfile, section);
19246   if (section->buffer == NULL)
19247     {
19248       complaint (&symfile_complaints, _("missing %s section"), section_name);
19249       return;
19250     }
19251   abfd = section->asection->owner;
19252
19253   /* First pass: Find the name of the base filename.
19254      This filename is needed in order to process all macros whose definition
19255      (or undefinition) comes from the command line.  These macros are defined
19256      before the first DW_MACINFO_start_file entry, and yet still need to be
19257      associated to the base file.
19258
19259      To determine the base file name, we scan the macro definitions until we
19260      reach the first DW_MACINFO_start_file entry.  We then initialize
19261      CURRENT_FILE accordingly so that any macro definition found before the
19262      first DW_MACINFO_start_file can still be associated to the base file.  */
19263
19264   mac_ptr = section->buffer + offset;
19265   mac_end = section->buffer + section->size;
19266
19267   mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
19268                                       &offset_size, section_is_gnu);
19269   if (mac_ptr == NULL)
19270     {
19271       /* We already issued a complaint.  */
19272       return;
19273     }
19274
19275   do
19276     {
19277       /* Do we at least have room for a macinfo type byte?  */
19278       if (mac_ptr >= mac_end)
19279         {
19280           /* Complaint is printed during the second pass as GDB will probably
19281              stop the first pass earlier upon finding
19282              DW_MACINFO_start_file.  */
19283           break;
19284         }
19285
19286       macinfo_type = read_1_byte (abfd, mac_ptr);
19287       mac_ptr++;
19288
19289       /* Note that we rely on the fact that the corresponding GNU and
19290          DWARF constants are the same.  */
19291       switch (macinfo_type)
19292         {
19293           /* A zero macinfo type indicates the end of the macro
19294              information.  */
19295         case 0:
19296           break;
19297
19298         case DW_MACRO_GNU_define:
19299         case DW_MACRO_GNU_undef:
19300           /* Only skip the data by MAC_PTR.  */
19301           {
19302             unsigned int bytes_read;
19303
19304             read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19305             mac_ptr += bytes_read;
19306             read_direct_string (abfd, mac_ptr, &bytes_read);
19307             mac_ptr += bytes_read;
19308           }
19309           break;
19310
19311         case DW_MACRO_GNU_start_file:
19312           {
19313             unsigned int bytes_read;
19314             int line, file;
19315
19316             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19317             mac_ptr += bytes_read;
19318             file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19319             mac_ptr += bytes_read;
19320
19321             current_file = macro_start_file (file, line, current_file,
19322                                              comp_dir, lh, objfile);
19323           }
19324           break;
19325
19326         case DW_MACRO_GNU_end_file:
19327           /* No data to skip by MAC_PTR.  */
19328           break;
19329
19330         case DW_MACRO_GNU_define_indirect:
19331         case DW_MACRO_GNU_undef_indirect:
19332         case DW_MACRO_GNU_define_indirect_alt:
19333         case DW_MACRO_GNU_undef_indirect_alt:
19334           {
19335             unsigned int bytes_read;
19336
19337             read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19338             mac_ptr += bytes_read;
19339             mac_ptr += offset_size;
19340           }
19341           break;
19342
19343         case DW_MACRO_GNU_transparent_include:
19344         case DW_MACRO_GNU_transparent_include_alt:
19345           /* Note that, according to the spec, a transparent include
19346              chain cannot call DW_MACRO_GNU_start_file.  So, we can just
19347              skip this opcode.  */
19348           mac_ptr += offset_size;
19349           break;
19350
19351         case DW_MACINFO_vendor_ext:
19352           /* Only skip the data by MAC_PTR.  */
19353           if (!section_is_gnu)
19354             {
19355               unsigned int bytes_read;
19356
19357               read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19358               mac_ptr += bytes_read;
19359               read_direct_string (abfd, mac_ptr, &bytes_read);
19360               mac_ptr += bytes_read;
19361             }
19362           /* FALLTHROUGH */
19363
19364         default:
19365           mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
19366                                          mac_ptr, mac_end, abfd, offset_size,
19367                                          section);
19368           if (mac_ptr == NULL)
19369             return;
19370           break;
19371         }
19372     } while (macinfo_type != 0 && current_file == NULL);
19373
19374   /* Second pass: Process all entries.
19375
19376      Use the AT_COMMAND_LINE flag to determine whether we are still processing
19377      command-line macro definitions/undefinitions.  This flag is unset when we
19378      reach the first DW_MACINFO_start_file entry.  */
19379
19380   include_hash = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
19381                                     NULL, xcalloc, xfree);
19382   cleanup = make_cleanup_htab_delete (include_hash);
19383   mac_ptr = section->buffer + offset;
19384   slot = htab_find_slot (include_hash, mac_ptr, INSERT);
19385   *slot = (void *) mac_ptr;
19386   dwarf_decode_macro_bytes (abfd, mac_ptr, mac_end,
19387                             current_file, lh, comp_dir, section,
19388                             section_is_gnu, 0,
19389                             offset_size, objfile, include_hash);
19390   do_cleanups (cleanup);
19391 }
19392
19393 /* Check if the attribute's form is a DW_FORM_block*
19394    if so return true else false.  */
19395
19396 static int
19397 attr_form_is_block (struct attribute *attr)
19398 {
19399   return (attr == NULL ? 0 :
19400       attr->form == DW_FORM_block1
19401       || attr->form == DW_FORM_block2
19402       || attr->form == DW_FORM_block4
19403       || attr->form == DW_FORM_block
19404       || attr->form == DW_FORM_exprloc);
19405 }
19406
19407 /* Return non-zero if ATTR's value is a section offset --- classes
19408    lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
19409    You may use DW_UNSND (attr) to retrieve such offsets.
19410
19411    Section 7.5.4, "Attribute Encodings", explains that no attribute
19412    may have a value that belongs to more than one of these classes; it
19413    would be ambiguous if we did, because we use the same forms for all
19414    of them.  */
19415
19416 static int
19417 attr_form_is_section_offset (struct attribute *attr)
19418 {
19419   return (attr->form == DW_FORM_data4
19420           || attr->form == DW_FORM_data8
19421           || attr->form == DW_FORM_sec_offset);
19422 }
19423
19424 /* Return non-zero if ATTR's value falls in the 'constant' class, or
19425    zero otherwise.  When this function returns true, you can apply
19426    dwarf2_get_attr_constant_value to it.
19427
19428    However, note that for some attributes you must check
19429    attr_form_is_section_offset before using this test.  DW_FORM_data4
19430    and DW_FORM_data8 are members of both the constant class, and of
19431    the classes that contain offsets into other debug sections
19432    (lineptr, loclistptr, macptr or rangelistptr).  The DWARF spec says
19433    that, if an attribute's can be either a constant or one of the
19434    section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
19435    taken as section offsets, not constants.  */
19436
19437 static int
19438 attr_form_is_constant (struct attribute *attr)
19439 {
19440   switch (attr->form)
19441     {
19442     case DW_FORM_sdata:
19443     case DW_FORM_udata:
19444     case DW_FORM_data1:
19445     case DW_FORM_data2:
19446     case DW_FORM_data4:
19447     case DW_FORM_data8:
19448       return 1;
19449     default:
19450       return 0;
19451     }
19452 }
19453
19454 /* Return the .debug_loc section to use for CU.
19455    For DWO files use .debug_loc.dwo.  */
19456
19457 static struct dwarf2_section_info *
19458 cu_debug_loc_section (struct dwarf2_cu *cu)
19459 {
19460   if (cu->dwo_unit)
19461     return &cu->dwo_unit->dwo_file->sections.loc;
19462   return &dwarf2_per_objfile->loc;
19463 }
19464
19465 /* A helper function that fills in a dwarf2_loclist_baton.  */
19466
19467 static void
19468 fill_in_loclist_baton (struct dwarf2_cu *cu,
19469                        struct dwarf2_loclist_baton *baton,
19470                        struct attribute *attr)
19471 {
19472   struct dwarf2_section_info *section = cu_debug_loc_section (cu);
19473
19474   dwarf2_read_section (dwarf2_per_objfile->objfile, section);
19475
19476   baton->per_cu = cu->per_cu;
19477   gdb_assert (baton->per_cu);
19478   /* We don't know how long the location list is, but make sure we
19479      don't run off the edge of the section.  */
19480   baton->size = section->size - DW_UNSND (attr);
19481   baton->data = section->buffer + DW_UNSND (attr);
19482   baton->base_address = cu->base_address;
19483   baton->from_dwo = cu->dwo_unit != NULL;
19484 }
19485
19486 static void
19487 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
19488                              struct dwarf2_cu *cu, int is_block)
19489 {
19490   struct objfile *objfile = dwarf2_per_objfile->objfile;
19491   struct dwarf2_section_info *section = cu_debug_loc_section (cu);
19492
19493   if (attr_form_is_section_offset (attr)
19494       /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
19495          the section.  If so, fall through to the complaint in the
19496          other branch.  */
19497       && DW_UNSND (attr) < dwarf2_section_size (objfile, section))
19498     {
19499       struct dwarf2_loclist_baton *baton;
19500
19501       baton = obstack_alloc (&objfile->objfile_obstack,
19502                              sizeof (struct dwarf2_loclist_baton));
19503
19504       fill_in_loclist_baton (cu, baton, attr);
19505
19506       if (cu->base_known == 0)
19507         complaint (&symfile_complaints,
19508                    _("Location list used without "
19509                      "specifying the CU base address."));
19510
19511       SYMBOL_ACLASS_INDEX (sym) = (is_block
19512                                    ? dwarf2_loclist_block_index
19513                                    : dwarf2_loclist_index);
19514       SYMBOL_LOCATION_BATON (sym) = baton;
19515     }
19516   else
19517     {
19518       struct dwarf2_locexpr_baton *baton;
19519
19520       baton = obstack_alloc (&objfile->objfile_obstack,
19521                              sizeof (struct dwarf2_locexpr_baton));
19522       baton->per_cu = cu->per_cu;
19523       gdb_assert (baton->per_cu);
19524
19525       if (attr_form_is_block (attr))
19526         {
19527           /* Note that we're just copying the block's data pointer
19528              here, not the actual data.  We're still pointing into the
19529              info_buffer for SYM's objfile; right now we never release
19530              that buffer, but when we do clean up properly this may
19531              need to change.  */
19532           baton->size = DW_BLOCK (attr)->size;
19533           baton->data = DW_BLOCK (attr)->data;
19534         }
19535       else
19536         {
19537           dwarf2_invalid_attrib_class_complaint ("location description",
19538                                                  SYMBOL_NATURAL_NAME (sym));
19539           baton->size = 0;
19540         }
19541
19542       SYMBOL_ACLASS_INDEX (sym) = (is_block
19543                                    ? dwarf2_locexpr_block_index
19544                                    : dwarf2_locexpr_index);
19545       SYMBOL_LOCATION_BATON (sym) = baton;
19546     }
19547 }
19548
19549 /* Return the OBJFILE associated with the compilation unit CU.  If CU
19550    came from a separate debuginfo file, then the master objfile is
19551    returned.  */
19552
19553 struct objfile *
19554 dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
19555 {
19556   struct objfile *objfile = per_cu->objfile;
19557
19558   /* Return the master objfile, so that we can report and look up the
19559      correct file containing this variable.  */
19560   if (objfile->separate_debug_objfile_backlink)
19561     objfile = objfile->separate_debug_objfile_backlink;
19562
19563   return objfile;
19564 }
19565
19566 /* Return comp_unit_head for PER_CU, either already available in PER_CU->CU
19567    (CU_HEADERP is unused in such case) or prepare a temporary copy at
19568    CU_HEADERP first.  */
19569
19570 static const struct comp_unit_head *
19571 per_cu_header_read_in (struct comp_unit_head *cu_headerp,
19572                        struct dwarf2_per_cu_data *per_cu)
19573 {
19574   const gdb_byte *info_ptr;
19575
19576   if (per_cu->cu)
19577     return &per_cu->cu->header;
19578
19579   info_ptr = per_cu->section->buffer + per_cu->offset.sect_off;
19580
19581   memset (cu_headerp, 0, sizeof (*cu_headerp));
19582   read_comp_unit_head (cu_headerp, info_ptr, per_cu->objfile->obfd);
19583
19584   return cu_headerp;
19585 }
19586
19587 /* Return the address size given in the compilation unit header for CU.  */
19588
19589 int
19590 dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
19591 {
19592   struct comp_unit_head cu_header_local;
19593   const struct comp_unit_head *cu_headerp;
19594
19595   cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
19596
19597   return cu_headerp->addr_size;
19598 }
19599
19600 /* Return the offset size given in the compilation unit header for CU.  */
19601
19602 int
19603 dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
19604 {
19605   struct comp_unit_head cu_header_local;
19606   const struct comp_unit_head *cu_headerp;
19607
19608   cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
19609
19610   return cu_headerp->offset_size;
19611 }
19612
19613 /* See its dwarf2loc.h declaration.  */
19614
19615 int
19616 dwarf2_per_cu_ref_addr_size (struct dwarf2_per_cu_data *per_cu)
19617 {
19618   struct comp_unit_head cu_header_local;
19619   const struct comp_unit_head *cu_headerp;
19620
19621   cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
19622
19623   if (cu_headerp->version == 2)
19624     return cu_headerp->addr_size;
19625   else
19626     return cu_headerp->offset_size;
19627 }
19628
19629 /* Return the text offset of the CU.  The returned offset comes from
19630    this CU's objfile.  If this objfile came from a separate debuginfo
19631    file, then the offset may be different from the corresponding
19632    offset in the parent objfile.  */
19633
19634 CORE_ADDR
19635 dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
19636 {
19637   struct objfile *objfile = per_cu->objfile;
19638
19639   return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
19640 }
19641
19642 /* Locate the .debug_info compilation unit from CU's objfile which contains
19643    the DIE at OFFSET.  Raises an error on failure.  */
19644
19645 static struct dwarf2_per_cu_data *
19646 dwarf2_find_containing_comp_unit (sect_offset offset,
19647                                   unsigned int offset_in_dwz,
19648                                   struct objfile *objfile)
19649 {
19650   struct dwarf2_per_cu_data *this_cu;
19651   int low, high;
19652   const sect_offset *cu_off;
19653
19654   low = 0;
19655   high = dwarf2_per_objfile->n_comp_units - 1;
19656   while (high > low)
19657     {
19658       struct dwarf2_per_cu_data *mid_cu;
19659       int mid = low + (high - low) / 2;
19660
19661       mid_cu = dwarf2_per_objfile->all_comp_units[mid];
19662       cu_off = &mid_cu->offset;
19663       if (mid_cu->is_dwz > offset_in_dwz
19664           || (mid_cu->is_dwz == offset_in_dwz
19665               && cu_off->sect_off >= offset.sect_off))
19666         high = mid;
19667       else
19668         low = mid + 1;
19669     }
19670   gdb_assert (low == high);
19671   this_cu = dwarf2_per_objfile->all_comp_units[low];
19672   cu_off = &this_cu->offset;
19673   if (this_cu->is_dwz != offset_in_dwz || cu_off->sect_off > offset.sect_off)
19674     {
19675       if (low == 0 || this_cu->is_dwz != offset_in_dwz)
19676         error (_("Dwarf Error: could not find partial DIE containing "
19677                "offset 0x%lx [in module %s]"),
19678                (long) offset.sect_off, bfd_get_filename (objfile->obfd));
19679
19680       gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset.sect_off
19681                   <= offset.sect_off);
19682       return dwarf2_per_objfile->all_comp_units[low-1];
19683     }
19684   else
19685     {
19686       this_cu = dwarf2_per_objfile->all_comp_units[low];
19687       if (low == dwarf2_per_objfile->n_comp_units - 1
19688           && offset.sect_off >= this_cu->offset.sect_off + this_cu->length)
19689         error (_("invalid dwarf2 offset %u"), offset.sect_off);
19690       gdb_assert (offset.sect_off < this_cu->offset.sect_off + this_cu->length);
19691       return this_cu;
19692     }
19693 }
19694
19695 /* Initialize dwarf2_cu CU, owned by PER_CU.  */
19696
19697 static void
19698 init_one_comp_unit (struct dwarf2_cu *cu, struct dwarf2_per_cu_data *per_cu)
19699 {
19700   memset (cu, 0, sizeof (*cu));
19701   per_cu->cu = cu;
19702   cu->per_cu = per_cu;
19703   cu->objfile = per_cu->objfile;
19704   obstack_init (&cu->comp_unit_obstack);
19705 }
19706
19707 /* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE.  */
19708
19709 static void
19710 prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
19711                        enum language pretend_language)
19712 {
19713   struct attribute *attr;
19714
19715   /* Set the language we're debugging.  */
19716   attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
19717   if (attr)
19718     set_cu_language (DW_UNSND (attr), cu);
19719   else
19720     {
19721       cu->language = pretend_language;
19722       cu->language_defn = language_def (cu->language);
19723     }
19724
19725   attr = dwarf2_attr (comp_unit_die, DW_AT_producer, cu);
19726   if (attr)
19727     cu->producer = DW_STRING (attr);
19728 }
19729
19730 /* Release one cached compilation unit, CU.  We unlink it from the tree
19731    of compilation units, but we don't remove it from the read_in_chain;
19732    the caller is responsible for that.
19733    NOTE: DATA is a void * because this function is also used as a
19734    cleanup routine.  */
19735
19736 static void
19737 free_heap_comp_unit (void *data)
19738 {
19739   struct dwarf2_cu *cu = data;
19740
19741   gdb_assert (cu->per_cu != NULL);
19742   cu->per_cu->cu = NULL;
19743   cu->per_cu = NULL;
19744
19745   obstack_free (&cu->comp_unit_obstack, NULL);
19746
19747   xfree (cu);
19748 }
19749
19750 /* This cleanup function is passed the address of a dwarf2_cu on the stack
19751    when we're finished with it.  We can't free the pointer itself, but be
19752    sure to unlink it from the cache.  Also release any associated storage.  */
19753
19754 static void
19755 free_stack_comp_unit (void *data)
19756 {
19757   struct dwarf2_cu *cu = data;
19758
19759   gdb_assert (cu->per_cu != NULL);
19760   cu->per_cu->cu = NULL;
19761   cu->per_cu = NULL;
19762
19763   obstack_free (&cu->comp_unit_obstack, NULL);
19764   cu->partial_dies = NULL;
19765 }
19766
19767 /* Free all cached compilation units.  */
19768
19769 static void
19770 free_cached_comp_units (void *data)
19771 {
19772   struct dwarf2_per_cu_data *per_cu, **last_chain;
19773
19774   per_cu = dwarf2_per_objfile->read_in_chain;
19775   last_chain = &dwarf2_per_objfile->read_in_chain;
19776   while (per_cu != NULL)
19777     {
19778       struct dwarf2_per_cu_data *next_cu;
19779
19780       next_cu = per_cu->cu->read_in_chain;
19781
19782       free_heap_comp_unit (per_cu->cu);
19783       *last_chain = next_cu;
19784
19785       per_cu = next_cu;
19786     }
19787 }
19788
19789 /* Increase the age counter on each cached compilation unit, and free
19790    any that are too old.  */
19791
19792 static void
19793 age_cached_comp_units (void)
19794 {
19795   struct dwarf2_per_cu_data *per_cu, **last_chain;
19796
19797   dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
19798   per_cu = dwarf2_per_objfile->read_in_chain;
19799   while (per_cu != NULL)
19800     {
19801       per_cu->cu->last_used ++;
19802       if (per_cu->cu->last_used <= dwarf2_max_cache_age)
19803         dwarf2_mark (per_cu->cu);
19804       per_cu = per_cu->cu->read_in_chain;
19805     }
19806
19807   per_cu = dwarf2_per_objfile->read_in_chain;
19808   last_chain = &dwarf2_per_objfile->read_in_chain;
19809   while (per_cu != NULL)
19810     {
19811       struct dwarf2_per_cu_data *next_cu;
19812
19813       next_cu = per_cu->cu->read_in_chain;
19814
19815       if (!per_cu->cu->mark)
19816         {
19817           free_heap_comp_unit (per_cu->cu);
19818           *last_chain = next_cu;
19819         }
19820       else
19821         last_chain = &per_cu->cu->read_in_chain;
19822
19823       per_cu = next_cu;
19824     }
19825 }
19826
19827 /* Remove a single compilation unit from the cache.  */
19828
19829 static void
19830 free_one_cached_comp_unit (struct dwarf2_per_cu_data *target_per_cu)
19831 {
19832   struct dwarf2_per_cu_data *per_cu, **last_chain;
19833
19834   per_cu = dwarf2_per_objfile->read_in_chain;
19835   last_chain = &dwarf2_per_objfile->read_in_chain;
19836   while (per_cu != NULL)
19837     {
19838       struct dwarf2_per_cu_data *next_cu;
19839
19840       next_cu = per_cu->cu->read_in_chain;
19841
19842       if (per_cu == target_per_cu)
19843         {
19844           free_heap_comp_unit (per_cu->cu);
19845           per_cu->cu = NULL;
19846           *last_chain = next_cu;
19847           break;
19848         }
19849       else
19850         last_chain = &per_cu->cu->read_in_chain;
19851
19852       per_cu = next_cu;
19853     }
19854 }
19855
19856 /* Release all extra memory associated with OBJFILE.  */
19857
19858 void
19859 dwarf2_free_objfile (struct objfile *objfile)
19860 {
19861   dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
19862
19863   if (dwarf2_per_objfile == NULL)
19864     return;
19865
19866   /* Cached DIE trees use xmalloc and the comp_unit_obstack.  */
19867   free_cached_comp_units (NULL);
19868
19869   if (dwarf2_per_objfile->quick_file_names_table)
19870     htab_delete (dwarf2_per_objfile->quick_file_names_table);
19871
19872   /* Everything else should be on the objfile obstack.  */
19873 }
19874
19875 /* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
19876    We store these in a hash table separate from the DIEs, and preserve them
19877    when the DIEs are flushed out of cache.
19878
19879    The CU "per_cu" pointer is needed because offset alone is not enough to
19880    uniquely identify the type.  A file may have multiple .debug_types sections,
19881    or the type may come from a DWO file.  Furthermore, while it's more logical
19882    to use per_cu->section+offset, with Fission the section with the data is in
19883    the DWO file but we don't know that section at the point we need it.
19884    We have to use something in dwarf2_per_cu_data (or the pointer to it)
19885    because we can enter the lookup routine, get_die_type_at_offset, from
19886    outside this file, and thus won't necessarily have PER_CU->cu.
19887    Fortunately, PER_CU is stable for the life of the objfile.  */
19888
19889 struct dwarf2_per_cu_offset_and_type
19890 {
19891   const struct dwarf2_per_cu_data *per_cu;
19892   sect_offset offset;
19893   struct type *type;
19894 };
19895
19896 /* Hash function for a dwarf2_per_cu_offset_and_type.  */
19897
19898 static hashval_t
19899 per_cu_offset_and_type_hash (const void *item)
19900 {
19901   const struct dwarf2_per_cu_offset_and_type *ofs = item;
19902
19903   return (uintptr_t) ofs->per_cu + ofs->offset.sect_off;
19904 }
19905
19906 /* Equality function for a dwarf2_per_cu_offset_and_type.  */
19907
19908 static int
19909 per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
19910 {
19911   const struct dwarf2_per_cu_offset_and_type *ofs_lhs = item_lhs;
19912   const struct dwarf2_per_cu_offset_and_type *ofs_rhs = item_rhs;
19913
19914   return (ofs_lhs->per_cu == ofs_rhs->per_cu
19915           && ofs_lhs->offset.sect_off == ofs_rhs->offset.sect_off);
19916 }
19917
19918 /* Set the type associated with DIE to TYPE.  Save it in CU's hash
19919    table if necessary.  For convenience, return TYPE.
19920
19921    The DIEs reading must have careful ordering to:
19922     * Not cause infite loops trying to read in DIEs as a prerequisite for
19923       reading current DIE.
19924     * Not trying to dereference contents of still incompletely read in types
19925       while reading in other DIEs.
19926     * Enable referencing still incompletely read in types just by a pointer to
19927       the type without accessing its fields.
19928
19929    Therefore caller should follow these rules:
19930      * Try to fetch any prerequisite types we may need to build this DIE type
19931        before building the type and calling set_die_type.
19932      * After building type call set_die_type for current DIE as soon as
19933        possible before fetching more types to complete the current type.
19934      * Make the type as complete as possible before fetching more types.  */
19935
19936 static struct type *
19937 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
19938 {
19939   struct dwarf2_per_cu_offset_and_type **slot, ofs;
19940   struct objfile *objfile = cu->objfile;
19941
19942   /* For Ada types, make sure that the gnat-specific data is always
19943      initialized (if not already set).  There are a few types where
19944      we should not be doing so, because the type-specific area is
19945      already used to hold some other piece of info (eg: TYPE_CODE_FLT
19946      where the type-specific area is used to store the floatformat).
19947      But this is not a problem, because the gnat-specific information
19948      is actually not needed for these types.  */
19949   if (need_gnat_info (cu)
19950       && TYPE_CODE (type) != TYPE_CODE_FUNC
19951       && TYPE_CODE (type) != TYPE_CODE_FLT
19952       && !HAVE_GNAT_AUX_INFO (type))
19953     INIT_GNAT_SPECIFIC (type);
19954
19955   if (dwarf2_per_objfile->die_type_hash == NULL)
19956     {
19957       dwarf2_per_objfile->die_type_hash =
19958         htab_create_alloc_ex (127,
19959                               per_cu_offset_and_type_hash,
19960                               per_cu_offset_and_type_eq,
19961                               NULL,
19962                               &objfile->objfile_obstack,
19963                               hashtab_obstack_allocate,
19964                               dummy_obstack_deallocate);
19965     }
19966
19967   ofs.per_cu = cu->per_cu;
19968   ofs.offset = die->offset;
19969   ofs.type = type;
19970   slot = (struct dwarf2_per_cu_offset_and_type **)
19971     htab_find_slot (dwarf2_per_objfile->die_type_hash, &ofs, INSERT);
19972   if (*slot)
19973     complaint (&symfile_complaints,
19974                _("A problem internal to GDB: DIE 0x%x has type already set"),
19975                die->offset.sect_off);
19976   *slot = obstack_alloc (&objfile->objfile_obstack, sizeof (**slot));
19977   **slot = ofs;
19978   return type;
19979 }
19980
19981 /* Look up the type for the die at OFFSET in PER_CU in die_type_hash,
19982    or return NULL if the die does not have a saved type.  */
19983
19984 static struct type *
19985 get_die_type_at_offset (sect_offset offset,
19986                         struct dwarf2_per_cu_data *per_cu)
19987 {
19988   struct dwarf2_per_cu_offset_and_type *slot, ofs;
19989
19990   if (dwarf2_per_objfile->die_type_hash == NULL)
19991     return NULL;
19992
19993   ofs.per_cu = per_cu;
19994   ofs.offset = offset;
19995   slot = htab_find (dwarf2_per_objfile->die_type_hash, &ofs);
19996   if (slot)
19997     return slot->type;
19998   else
19999     return NULL;
20000 }
20001
20002 /* Look up the type for DIE in CU in die_type_hash,
20003    or return NULL if DIE does not have a saved type.  */
20004
20005 static struct type *
20006 get_die_type (struct die_info *die, struct dwarf2_cu *cu)
20007 {
20008   return get_die_type_at_offset (die->offset, cu->per_cu);
20009 }
20010
20011 /* Add a dependence relationship from CU to REF_PER_CU.  */
20012
20013 static void
20014 dwarf2_add_dependence (struct dwarf2_cu *cu,
20015                        struct dwarf2_per_cu_data *ref_per_cu)
20016 {
20017   void **slot;
20018
20019   if (cu->dependencies == NULL)
20020     cu->dependencies
20021       = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
20022                               NULL, &cu->comp_unit_obstack,
20023                               hashtab_obstack_allocate,
20024                               dummy_obstack_deallocate);
20025
20026   slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
20027   if (*slot == NULL)
20028     *slot = ref_per_cu;
20029 }
20030
20031 /* Subroutine of dwarf2_mark to pass to htab_traverse.
20032    Set the mark field in every compilation unit in the
20033    cache that we must keep because we are keeping CU.  */
20034
20035 static int
20036 dwarf2_mark_helper (void **slot, void *data)
20037 {
20038   struct dwarf2_per_cu_data *per_cu;
20039
20040   per_cu = (struct dwarf2_per_cu_data *) *slot;
20041
20042   /* cu->dependencies references may not yet have been ever read if QUIT aborts
20043      reading of the chain.  As such dependencies remain valid it is not much
20044      useful to track and undo them during QUIT cleanups.  */
20045   if (per_cu->cu == NULL)
20046     return 1;
20047
20048   if (per_cu->cu->mark)
20049     return 1;
20050   per_cu->cu->mark = 1;
20051
20052   if (per_cu->cu->dependencies != NULL)
20053     htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
20054
20055   return 1;
20056 }
20057
20058 /* Set the mark field in CU and in every other compilation unit in the
20059    cache that we must keep because we are keeping CU.  */
20060
20061 static void
20062 dwarf2_mark (struct dwarf2_cu *cu)
20063 {
20064   if (cu->mark)
20065     return;
20066   cu->mark = 1;
20067   if (cu->dependencies != NULL)
20068     htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
20069 }
20070
20071 static void
20072 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
20073 {
20074   while (per_cu)
20075     {
20076       per_cu->cu->mark = 0;
20077       per_cu = per_cu->cu->read_in_chain;
20078     }
20079 }
20080
20081 /* Trivial hash function for partial_die_info: the hash value of a DIE
20082    is its offset in .debug_info for this objfile.  */
20083
20084 static hashval_t
20085 partial_die_hash (const void *item)
20086 {
20087   const struct partial_die_info *part_die = item;
20088
20089   return part_die->offset.sect_off;
20090 }
20091
20092 /* Trivial comparison function for partial_die_info structures: two DIEs
20093    are equal if they have the same offset.  */
20094
20095 static int
20096 partial_die_eq (const void *item_lhs, const void *item_rhs)
20097 {
20098   const struct partial_die_info *part_die_lhs = item_lhs;
20099   const struct partial_die_info *part_die_rhs = item_rhs;
20100
20101   return part_die_lhs->offset.sect_off == part_die_rhs->offset.sect_off;
20102 }
20103
20104 static struct cmd_list_element *set_dwarf2_cmdlist;
20105 static struct cmd_list_element *show_dwarf2_cmdlist;
20106
20107 static void
20108 set_dwarf2_cmd (char *args, int from_tty)
20109 {
20110   help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout);
20111 }
20112
20113 static void
20114 show_dwarf2_cmd (char *args, int from_tty)
20115 {
20116   cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
20117 }
20118
20119 /* Free data associated with OBJFILE, if necessary.  */
20120
20121 static void
20122 dwarf2_per_objfile_free (struct objfile *objfile, void *d)
20123 {
20124   struct dwarf2_per_objfile *data = d;
20125   int ix;
20126
20127   for (ix = 0; ix < dwarf2_per_objfile->n_comp_units; ++ix)
20128     VEC_free (dwarf2_per_cu_ptr,
20129               dwarf2_per_objfile->all_comp_units[ix]->imported_symtabs);
20130
20131   for (ix = 0; ix < dwarf2_per_objfile->n_type_units; ++ix)
20132     VEC_free (dwarf2_per_cu_ptr,
20133               dwarf2_per_objfile->all_type_units[ix]->per_cu.imported_symtabs);
20134
20135   VEC_free (dwarf2_section_info_def, data->types);
20136
20137   if (data->dwo_files)
20138     free_dwo_files (data->dwo_files, objfile);
20139   if (data->dwp_file)
20140     gdb_bfd_unref (data->dwp_file->dbfd);
20141
20142   if (data->dwz_file && data->dwz_file->dwz_bfd)
20143     gdb_bfd_unref (data->dwz_file->dwz_bfd);
20144 }
20145
20146 \f
20147 /* The "save gdb-index" command.  */
20148
20149 /* The contents of the hash table we create when building the string
20150    table.  */
20151 struct strtab_entry
20152 {
20153   offset_type offset;
20154   const char *str;
20155 };
20156
20157 /* Hash function for a strtab_entry.
20158
20159    Function is used only during write_hash_table so no index format backward
20160    compatibility is needed.  */
20161
20162 static hashval_t
20163 hash_strtab_entry (const void *e)
20164 {
20165   const struct strtab_entry *entry = e;
20166   return mapped_index_string_hash (INT_MAX, entry->str);
20167 }
20168
20169 /* Equality function for a strtab_entry.  */
20170
20171 static int
20172 eq_strtab_entry (const void *a, const void *b)
20173 {
20174   const struct strtab_entry *ea = a;
20175   const struct strtab_entry *eb = b;
20176   return !strcmp (ea->str, eb->str);
20177 }
20178
20179 /* Create a strtab_entry hash table.  */
20180
20181 static htab_t
20182 create_strtab (void)
20183 {
20184   return htab_create_alloc (100, hash_strtab_entry, eq_strtab_entry,
20185                             xfree, xcalloc, xfree);
20186 }
20187
20188 /* Add a string to the constant pool.  Return the string's offset in
20189    host order.  */
20190
20191 static offset_type
20192 add_string (htab_t table, struct obstack *cpool, const char *str)
20193 {
20194   void **slot;
20195   struct strtab_entry entry;
20196   struct strtab_entry *result;
20197
20198   entry.str = str;
20199   slot = htab_find_slot (table, &entry, INSERT);
20200   if (*slot)
20201     result = *slot;
20202   else
20203     {
20204       result = XNEW (struct strtab_entry);
20205       result->offset = obstack_object_size (cpool);
20206       result->str = str;
20207       obstack_grow_str0 (cpool, str);
20208       *slot = result;
20209     }
20210   return result->offset;
20211 }
20212
20213 /* An entry in the symbol table.  */
20214 struct symtab_index_entry
20215 {
20216   /* The name of the symbol.  */
20217   const char *name;
20218   /* The offset of the name in the constant pool.  */
20219   offset_type index_offset;
20220   /* A sorted vector of the indices of all the CUs that hold an object
20221      of this name.  */
20222   VEC (offset_type) *cu_indices;
20223 };
20224
20225 /* The symbol table.  This is a power-of-2-sized hash table.  */
20226 struct mapped_symtab
20227 {
20228   offset_type n_elements;
20229   offset_type size;
20230   struct symtab_index_entry **data;
20231 };
20232
20233 /* Hash function for a symtab_index_entry.  */
20234
20235 static hashval_t
20236 hash_symtab_entry (const void *e)
20237 {
20238   const struct symtab_index_entry *entry = e;
20239   return iterative_hash (VEC_address (offset_type, entry->cu_indices),
20240                          sizeof (offset_type) * VEC_length (offset_type,
20241                                                             entry->cu_indices),
20242                          0);
20243 }
20244
20245 /* Equality function for a symtab_index_entry.  */
20246
20247 static int
20248 eq_symtab_entry (const void *a, const void *b)
20249 {
20250   const struct symtab_index_entry *ea = a;
20251   const struct symtab_index_entry *eb = b;
20252   int len = VEC_length (offset_type, ea->cu_indices);
20253   if (len != VEC_length (offset_type, eb->cu_indices))
20254     return 0;
20255   return !memcmp (VEC_address (offset_type, ea->cu_indices),
20256                   VEC_address (offset_type, eb->cu_indices),
20257                   sizeof (offset_type) * len);
20258 }
20259
20260 /* Destroy a symtab_index_entry.  */
20261
20262 static void
20263 delete_symtab_entry (void *p)
20264 {
20265   struct symtab_index_entry *entry = p;
20266   VEC_free (offset_type, entry->cu_indices);
20267   xfree (entry);
20268 }
20269
20270 /* Create a hash table holding symtab_index_entry objects.  */
20271
20272 static htab_t
20273 create_symbol_hash_table (void)
20274 {
20275   return htab_create_alloc (100, hash_symtab_entry, eq_symtab_entry,
20276                             delete_symtab_entry, xcalloc, xfree);
20277 }
20278
20279 /* Create a new mapped symtab object.  */
20280
20281 static struct mapped_symtab *
20282 create_mapped_symtab (void)
20283 {
20284   struct mapped_symtab *symtab = XNEW (struct mapped_symtab);
20285   symtab->n_elements = 0;
20286   symtab->size = 1024;
20287   symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
20288   return symtab;
20289 }
20290
20291 /* Destroy a mapped_symtab.  */
20292
20293 static void
20294 cleanup_mapped_symtab (void *p)
20295 {
20296   struct mapped_symtab *symtab = p;
20297   /* The contents of the array are freed when the other hash table is
20298      destroyed.  */
20299   xfree (symtab->data);
20300   xfree (symtab);
20301 }
20302
20303 /* Find a slot in SYMTAB for the symbol NAME.  Returns a pointer to
20304    the slot.
20305    
20306    Function is used only during write_hash_table so no index format backward
20307    compatibility is needed.  */
20308
20309 static struct symtab_index_entry **
20310 find_slot (struct mapped_symtab *symtab, const char *name)
20311 {
20312   offset_type index, step, hash = mapped_index_string_hash (INT_MAX, name);
20313
20314   index = hash & (symtab->size - 1);
20315   step = ((hash * 17) & (symtab->size - 1)) | 1;
20316
20317   for (;;)
20318     {
20319       if (!symtab->data[index] || !strcmp (name, symtab->data[index]->name))
20320         return &symtab->data[index];
20321       index = (index + step) & (symtab->size - 1);
20322     }
20323 }
20324
20325 /* Expand SYMTAB's hash table.  */
20326
20327 static void
20328 hash_expand (struct mapped_symtab *symtab)
20329 {
20330   offset_type old_size = symtab->size;
20331   offset_type i;
20332   struct symtab_index_entry **old_entries = symtab->data;
20333
20334   symtab->size *= 2;
20335   symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
20336
20337   for (i = 0; i < old_size; ++i)
20338     {
20339       if (old_entries[i])
20340         {
20341           struct symtab_index_entry **slot = find_slot (symtab,
20342                                                         old_entries[i]->name);
20343           *slot = old_entries[i];
20344         }
20345     }
20346
20347   xfree (old_entries);
20348 }
20349
20350 /* Add an entry to SYMTAB.  NAME is the name of the symbol.
20351    CU_INDEX is the index of the CU in which the symbol appears.
20352    IS_STATIC is one if the symbol is static, otherwise zero (global).  */
20353
20354 static void
20355 add_index_entry (struct mapped_symtab *symtab, const char *name,
20356                  int is_static, gdb_index_symbol_kind kind,
20357                  offset_type cu_index)
20358 {
20359   struct symtab_index_entry **slot;
20360   offset_type cu_index_and_attrs;
20361
20362   ++symtab->n_elements;
20363   if (4 * symtab->n_elements / 3 >= symtab->size)
20364     hash_expand (symtab);
20365
20366   slot = find_slot (symtab, name);
20367   if (!*slot)
20368     {
20369       *slot = XNEW (struct symtab_index_entry);
20370       (*slot)->name = name;
20371       /* index_offset is set later.  */
20372       (*slot)->cu_indices = NULL;
20373     }
20374
20375   cu_index_and_attrs = 0;
20376   DW2_GDB_INDEX_CU_SET_VALUE (cu_index_and_attrs, cu_index);
20377   DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE (cu_index_and_attrs, is_static);
20378   DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE (cu_index_and_attrs, kind);
20379
20380   /* We don't want to record an index value twice as we want to avoid the
20381      duplication.
20382      We process all global symbols and then all static symbols
20383      (which would allow us to avoid the duplication by only having to check
20384      the last entry pushed), but a symbol could have multiple kinds in one CU.
20385      To keep things simple we don't worry about the duplication here and
20386      sort and uniqufy the list after we've processed all symbols.  */
20387   VEC_safe_push (offset_type, (*slot)->cu_indices, cu_index_and_attrs);
20388 }
20389
20390 /* qsort helper routine for uniquify_cu_indices.  */
20391
20392 static int
20393 offset_type_compare (const void *ap, const void *bp)
20394 {
20395   offset_type a = *(offset_type *) ap;
20396   offset_type b = *(offset_type *) bp;
20397
20398   return (a > b) - (b > a);
20399 }
20400
20401 /* Sort and remove duplicates of all symbols' cu_indices lists.  */
20402
20403 static void
20404 uniquify_cu_indices (struct mapped_symtab *symtab)
20405 {
20406   int i;
20407
20408   for (i = 0; i < symtab->size; ++i)
20409     {
20410       struct symtab_index_entry *entry = symtab->data[i];
20411
20412       if (entry
20413           && entry->cu_indices != NULL)
20414         {
20415           unsigned int next_to_insert, next_to_check;
20416           offset_type last_value;
20417
20418           qsort (VEC_address (offset_type, entry->cu_indices),
20419                  VEC_length (offset_type, entry->cu_indices),
20420                  sizeof (offset_type), offset_type_compare);
20421
20422           last_value = VEC_index (offset_type, entry->cu_indices, 0);
20423           next_to_insert = 1;
20424           for (next_to_check = 1;
20425                next_to_check < VEC_length (offset_type, entry->cu_indices);
20426                ++next_to_check)
20427             {
20428               if (VEC_index (offset_type, entry->cu_indices, next_to_check)
20429                   != last_value)
20430                 {
20431                   last_value = VEC_index (offset_type, entry->cu_indices,
20432                                           next_to_check);
20433                   VEC_replace (offset_type, entry->cu_indices, next_to_insert,
20434                                last_value);
20435                   ++next_to_insert;
20436                 }
20437             }
20438           VEC_truncate (offset_type, entry->cu_indices, next_to_insert);
20439         }
20440     }
20441 }
20442
20443 /* Add a vector of indices to the constant pool.  */
20444
20445 static offset_type
20446 add_indices_to_cpool (htab_t symbol_hash_table, struct obstack *cpool,
20447                       struct symtab_index_entry *entry)
20448 {
20449   void **slot;
20450
20451   slot = htab_find_slot (symbol_hash_table, entry, INSERT);
20452   if (!*slot)
20453     {
20454       offset_type len = VEC_length (offset_type, entry->cu_indices);
20455       offset_type val = MAYBE_SWAP (len);
20456       offset_type iter;
20457       int i;
20458
20459       *slot = entry;
20460       entry->index_offset = obstack_object_size (cpool);
20461
20462       obstack_grow (cpool, &val, sizeof (val));
20463       for (i = 0;
20464            VEC_iterate (offset_type, entry->cu_indices, i, iter);
20465            ++i)
20466         {
20467           val = MAYBE_SWAP (iter);
20468           obstack_grow (cpool, &val, sizeof (val));
20469         }
20470     }
20471   else
20472     {
20473       struct symtab_index_entry *old_entry = *slot;
20474       entry->index_offset = old_entry->index_offset;
20475       entry = old_entry;
20476     }
20477   return entry->index_offset;
20478 }
20479
20480 /* Write the mapped hash table SYMTAB to the obstack OUTPUT, with
20481    constant pool entries going into the obstack CPOOL.  */
20482
20483 static void
20484 write_hash_table (struct mapped_symtab *symtab,
20485                   struct obstack *output, struct obstack *cpool)
20486 {
20487   offset_type i;
20488   htab_t symbol_hash_table;
20489   htab_t str_table;
20490
20491   symbol_hash_table = create_symbol_hash_table ();
20492   str_table = create_strtab ();
20493
20494   /* We add all the index vectors to the constant pool first, to
20495      ensure alignment is ok.  */
20496   for (i = 0; i < symtab->size; ++i)
20497     {
20498       if (symtab->data[i])
20499         add_indices_to_cpool (symbol_hash_table, cpool, symtab->data[i]);
20500     }
20501
20502   /* Now write out the hash table.  */
20503   for (i = 0; i < symtab->size; ++i)
20504     {
20505       offset_type str_off, vec_off;
20506
20507       if (symtab->data[i])
20508         {
20509           str_off = add_string (str_table, cpool, symtab->data[i]->name);
20510           vec_off = symtab->data[i]->index_offset;
20511         }
20512       else
20513         {
20514           /* While 0 is a valid constant pool index, it is not valid
20515              to have 0 for both offsets.  */
20516           str_off = 0;
20517           vec_off = 0;
20518         }
20519
20520       str_off = MAYBE_SWAP (str_off);
20521       vec_off = MAYBE_SWAP (vec_off);
20522
20523       obstack_grow (output, &str_off, sizeof (str_off));
20524       obstack_grow (output, &vec_off, sizeof (vec_off));
20525     }
20526
20527   htab_delete (str_table);
20528   htab_delete (symbol_hash_table);
20529 }
20530
20531 /* Struct to map psymtab to CU index in the index file.  */
20532 struct psymtab_cu_index_map
20533 {
20534   struct partial_symtab *psymtab;
20535   unsigned int cu_index;
20536 };
20537
20538 static hashval_t
20539 hash_psymtab_cu_index (const void *item)
20540 {
20541   const struct psymtab_cu_index_map *map = item;
20542
20543   return htab_hash_pointer (map->psymtab);
20544 }
20545
20546 static int
20547 eq_psymtab_cu_index (const void *item_lhs, const void *item_rhs)
20548 {
20549   const struct psymtab_cu_index_map *lhs = item_lhs;
20550   const struct psymtab_cu_index_map *rhs = item_rhs;
20551
20552   return lhs->psymtab == rhs->psymtab;
20553 }
20554
20555 /* Helper struct for building the address table.  */
20556 struct addrmap_index_data
20557 {
20558   struct objfile *objfile;
20559   struct obstack *addr_obstack;
20560   htab_t cu_index_htab;
20561
20562   /* Non-zero if the previous_* fields are valid.
20563      We can't write an entry until we see the next entry (since it is only then
20564      that we know the end of the entry).  */
20565   int previous_valid;
20566   /* Index of the CU in the table of all CUs in the index file.  */
20567   unsigned int previous_cu_index;
20568   /* Start address of the CU.  */
20569   CORE_ADDR previous_cu_start;
20570 };
20571
20572 /* Write an address entry to OBSTACK.  */
20573
20574 static void
20575 add_address_entry (struct objfile *objfile, struct obstack *obstack,
20576                    CORE_ADDR start, CORE_ADDR end, unsigned int cu_index)
20577 {
20578   offset_type cu_index_to_write;
20579   gdb_byte addr[8];
20580   CORE_ADDR baseaddr;
20581
20582   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
20583
20584   store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, start - baseaddr);
20585   obstack_grow (obstack, addr, 8);
20586   store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, end - baseaddr);
20587   obstack_grow (obstack, addr, 8);
20588   cu_index_to_write = MAYBE_SWAP (cu_index);
20589   obstack_grow (obstack, &cu_index_to_write, sizeof (offset_type));
20590 }
20591
20592 /* Worker function for traversing an addrmap to build the address table.  */
20593
20594 static int
20595 add_address_entry_worker (void *datap, CORE_ADDR start_addr, void *obj)
20596 {
20597   struct addrmap_index_data *data = datap;
20598   struct partial_symtab *pst = obj;
20599
20600   if (data->previous_valid)
20601     add_address_entry (data->objfile, data->addr_obstack,
20602                        data->previous_cu_start, start_addr,
20603                        data->previous_cu_index);
20604
20605   data->previous_cu_start = start_addr;
20606   if (pst != NULL)
20607     {
20608       struct psymtab_cu_index_map find_map, *map;
20609       find_map.psymtab = pst;
20610       map = htab_find (data->cu_index_htab, &find_map);
20611       gdb_assert (map != NULL);
20612       data->previous_cu_index = map->cu_index;
20613       data->previous_valid = 1;
20614     }
20615   else
20616       data->previous_valid = 0;
20617
20618   return 0;
20619 }
20620
20621 /* Write OBJFILE's address map to OBSTACK.
20622    CU_INDEX_HTAB is used to map addrmap entries to their CU indices
20623    in the index file.  */
20624
20625 static void
20626 write_address_map (struct objfile *objfile, struct obstack *obstack,
20627                    htab_t cu_index_htab)
20628 {
20629   struct addrmap_index_data addrmap_index_data;
20630
20631   /* When writing the address table, we have to cope with the fact that
20632      the addrmap iterator only provides the start of a region; we have to
20633      wait until the next invocation to get the start of the next region.  */
20634
20635   addrmap_index_data.objfile = objfile;
20636   addrmap_index_data.addr_obstack = obstack;
20637   addrmap_index_data.cu_index_htab = cu_index_htab;
20638   addrmap_index_data.previous_valid = 0;
20639
20640   addrmap_foreach (objfile->psymtabs_addrmap, add_address_entry_worker,
20641                    &addrmap_index_data);
20642
20643   /* It's highly unlikely the last entry (end address = 0xff...ff)
20644      is valid, but we should still handle it.
20645      The end address is recorded as the start of the next region, but that
20646      doesn't work here.  To cope we pass 0xff...ff, this is a rare situation
20647      anyway.  */
20648   if (addrmap_index_data.previous_valid)
20649     add_address_entry (objfile, obstack,
20650                        addrmap_index_data.previous_cu_start, (CORE_ADDR) -1,
20651                        addrmap_index_data.previous_cu_index);
20652 }
20653
20654 /* Return the symbol kind of PSYM.  */
20655
20656 static gdb_index_symbol_kind
20657 symbol_kind (struct partial_symbol *psym)
20658 {
20659   domain_enum domain = PSYMBOL_DOMAIN (psym);
20660   enum address_class aclass = PSYMBOL_CLASS (psym);
20661
20662   switch (domain)
20663     {
20664     case VAR_DOMAIN:
20665       switch (aclass)
20666         {
20667         case LOC_BLOCK:
20668           return GDB_INDEX_SYMBOL_KIND_FUNCTION;
20669         case LOC_TYPEDEF:
20670           return GDB_INDEX_SYMBOL_KIND_TYPE;
20671         case LOC_COMPUTED:
20672         case LOC_CONST_BYTES:
20673         case LOC_OPTIMIZED_OUT:
20674         case LOC_STATIC:
20675           return GDB_INDEX_SYMBOL_KIND_VARIABLE;
20676         case LOC_CONST:
20677           /* Note: It's currently impossible to recognize psyms as enum values
20678              short of reading the type info.  For now punt.  */
20679           return GDB_INDEX_SYMBOL_KIND_VARIABLE;
20680         default:
20681           /* There are other LOC_FOO values that one might want to classify
20682              as variables, but dwarf2read.c doesn't currently use them.  */
20683           return GDB_INDEX_SYMBOL_KIND_OTHER;
20684         }
20685     case STRUCT_DOMAIN:
20686       return GDB_INDEX_SYMBOL_KIND_TYPE;
20687     default:
20688       return GDB_INDEX_SYMBOL_KIND_OTHER;
20689     }
20690 }
20691
20692 /* Add a list of partial symbols to SYMTAB.  */
20693
20694 static void
20695 write_psymbols (struct mapped_symtab *symtab,
20696                 htab_t psyms_seen,
20697                 struct partial_symbol **psymp,
20698                 int count,
20699                 offset_type cu_index,
20700                 int is_static)
20701 {
20702   for (; count-- > 0; ++psymp)
20703     {
20704       struct partial_symbol *psym = *psymp;
20705       void **slot;
20706
20707       if (SYMBOL_LANGUAGE (psym) == language_ada)
20708         error (_("Ada is not currently supported by the index"));
20709
20710       /* Only add a given psymbol once.  */
20711       slot = htab_find_slot (psyms_seen, psym, INSERT);
20712       if (!*slot)
20713         {
20714           gdb_index_symbol_kind kind = symbol_kind (psym);
20715
20716           *slot = psym;
20717           add_index_entry (symtab, SYMBOL_SEARCH_NAME (psym),
20718                            is_static, kind, cu_index);
20719         }
20720     }
20721 }
20722
20723 /* Write the contents of an ("unfinished") obstack to FILE.  Throw an
20724    exception if there is an error.  */
20725
20726 static void
20727 write_obstack (FILE *file, struct obstack *obstack)
20728 {
20729   if (fwrite (obstack_base (obstack), 1, obstack_object_size (obstack),
20730               file)
20731       != obstack_object_size (obstack))
20732     error (_("couldn't data write to file"));
20733 }
20734
20735 /* Unlink a file if the argument is not NULL.  */
20736
20737 static void
20738 unlink_if_set (void *p)
20739 {
20740   char **filename = p;
20741   if (*filename)
20742     unlink (*filename);
20743 }
20744
20745 /* A helper struct used when iterating over debug_types.  */
20746 struct signatured_type_index_data
20747 {
20748   struct objfile *objfile;
20749   struct mapped_symtab *symtab;
20750   struct obstack *types_list;
20751   htab_t psyms_seen;
20752   int cu_index;
20753 };
20754
20755 /* A helper function that writes a single signatured_type to an
20756    obstack.  */
20757
20758 static int
20759 write_one_signatured_type (void **slot, void *d)
20760 {
20761   struct signatured_type_index_data *info = d;
20762   struct signatured_type *entry = (struct signatured_type *) *slot;
20763   struct partial_symtab *psymtab = entry->per_cu.v.psymtab;
20764   gdb_byte val[8];
20765
20766   write_psymbols (info->symtab,
20767                   info->psyms_seen,
20768                   info->objfile->global_psymbols.list
20769                   + psymtab->globals_offset,
20770                   psymtab->n_global_syms, info->cu_index,
20771                   0);
20772   write_psymbols (info->symtab,
20773                   info->psyms_seen,
20774                   info->objfile->static_psymbols.list
20775                   + psymtab->statics_offset,
20776                   psymtab->n_static_syms, info->cu_index,
20777                   1);
20778
20779   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
20780                           entry->per_cu.offset.sect_off);
20781   obstack_grow (info->types_list, val, 8);
20782   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
20783                           entry->type_offset_in_tu.cu_off);
20784   obstack_grow (info->types_list, val, 8);
20785   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->signature);
20786   obstack_grow (info->types_list, val, 8);
20787
20788   ++info->cu_index;
20789
20790   return 1;
20791 }
20792
20793 /* Recurse into all "included" dependencies and write their symbols as
20794    if they appeared in this psymtab.  */
20795
20796 static void
20797 recursively_write_psymbols (struct objfile *objfile,
20798                             struct partial_symtab *psymtab,
20799                             struct mapped_symtab *symtab,
20800                             htab_t psyms_seen,
20801                             offset_type cu_index)
20802 {
20803   int i;
20804
20805   for (i = 0; i < psymtab->number_of_dependencies; ++i)
20806     if (psymtab->dependencies[i]->user != NULL)
20807       recursively_write_psymbols (objfile, psymtab->dependencies[i],
20808                                   symtab, psyms_seen, cu_index);
20809
20810   write_psymbols (symtab,
20811                   psyms_seen,
20812                   objfile->global_psymbols.list + psymtab->globals_offset,
20813                   psymtab->n_global_syms, cu_index,
20814                   0);
20815   write_psymbols (symtab,
20816                   psyms_seen,
20817                   objfile->static_psymbols.list + psymtab->statics_offset,
20818                   psymtab->n_static_syms, cu_index,
20819                   1);
20820 }
20821
20822 /* Create an index file for OBJFILE in the directory DIR.  */
20823
20824 static void
20825 write_psymtabs_to_index (struct objfile *objfile, const char *dir)
20826 {
20827   struct cleanup *cleanup;
20828   char *filename, *cleanup_filename;
20829   struct obstack contents, addr_obstack, constant_pool, symtab_obstack;
20830   struct obstack cu_list, types_cu_list;
20831   int i;
20832   FILE *out_file;
20833   struct mapped_symtab *symtab;
20834   offset_type val, size_of_contents, total_len;
20835   struct stat st;
20836   htab_t psyms_seen;
20837   htab_t cu_index_htab;
20838   struct psymtab_cu_index_map *psymtab_cu_index_map;
20839
20840   if (!objfile->psymtabs || !objfile->psymtabs_addrmap)
20841     return;
20842
20843   if (dwarf2_per_objfile->using_index)
20844     error (_("Cannot use an index to create the index"));
20845
20846   if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) > 1)
20847     error (_("Cannot make an index when the file has multiple .debug_types sections"));
20848
20849   if (stat (objfile->name, &st) < 0)
20850     perror_with_name (objfile->name);
20851
20852   filename = concat (dir, SLASH_STRING, lbasename (objfile->name),
20853                      INDEX_SUFFIX, (char *) NULL);
20854   cleanup = make_cleanup (xfree, filename);
20855
20856   out_file = gdb_fopen_cloexec (filename, "wb");
20857   if (!out_file)
20858     error (_("Can't open `%s' for writing"), filename);
20859
20860   cleanup_filename = filename;
20861   make_cleanup (unlink_if_set, &cleanup_filename);
20862
20863   symtab = create_mapped_symtab ();
20864   make_cleanup (cleanup_mapped_symtab, symtab);
20865
20866   obstack_init (&addr_obstack);
20867   make_cleanup_obstack_free (&addr_obstack);
20868
20869   obstack_init (&cu_list);
20870   make_cleanup_obstack_free (&cu_list);
20871
20872   obstack_init (&types_cu_list);
20873   make_cleanup_obstack_free (&types_cu_list);
20874
20875   psyms_seen = htab_create_alloc (100, htab_hash_pointer, htab_eq_pointer,
20876                                   NULL, xcalloc, xfree);
20877   make_cleanup_htab_delete (psyms_seen);
20878
20879   /* While we're scanning CU's create a table that maps a psymtab pointer
20880      (which is what addrmap records) to its index (which is what is recorded
20881      in the index file).  This will later be needed to write the address
20882      table.  */
20883   cu_index_htab = htab_create_alloc (100,
20884                                      hash_psymtab_cu_index,
20885                                      eq_psymtab_cu_index,
20886                                      NULL, xcalloc, xfree);
20887   make_cleanup_htab_delete (cu_index_htab);
20888   psymtab_cu_index_map = (struct psymtab_cu_index_map *)
20889     xmalloc (sizeof (struct psymtab_cu_index_map)
20890              * dwarf2_per_objfile->n_comp_units);
20891   make_cleanup (xfree, psymtab_cu_index_map);
20892
20893   /* The CU list is already sorted, so we don't need to do additional
20894      work here.  Also, the debug_types entries do not appear in
20895      all_comp_units, but only in their own hash table.  */
20896   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
20897     {
20898       struct dwarf2_per_cu_data *per_cu
20899         = dwarf2_per_objfile->all_comp_units[i];
20900       struct partial_symtab *psymtab = per_cu->v.psymtab;
20901       gdb_byte val[8];
20902       struct psymtab_cu_index_map *map;
20903       void **slot;
20904
20905       if (psymtab->user == NULL)
20906         recursively_write_psymbols (objfile, psymtab, symtab, psyms_seen, i);
20907
20908       map = &psymtab_cu_index_map[i];
20909       map->psymtab = psymtab;
20910       map->cu_index = i;
20911       slot = htab_find_slot (cu_index_htab, map, INSERT);
20912       gdb_assert (slot != NULL);
20913       gdb_assert (*slot == NULL);
20914       *slot = map;
20915
20916       store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
20917                               per_cu->offset.sect_off);
20918       obstack_grow (&cu_list, val, 8);
20919       store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->length);
20920       obstack_grow (&cu_list, val, 8);
20921     }
20922
20923   /* Dump the address map.  */
20924   write_address_map (objfile, &addr_obstack, cu_index_htab);
20925
20926   /* Write out the .debug_type entries, if any.  */
20927   if (dwarf2_per_objfile->signatured_types)
20928     {
20929       struct signatured_type_index_data sig_data;
20930
20931       sig_data.objfile = objfile;
20932       sig_data.symtab = symtab;
20933       sig_data.types_list = &types_cu_list;
20934       sig_data.psyms_seen = psyms_seen;
20935       sig_data.cu_index = dwarf2_per_objfile->n_comp_units;
20936       htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
20937                               write_one_signatured_type, &sig_data);
20938     }
20939
20940   /* Now that we've processed all symbols we can shrink their cu_indices
20941      lists.  */
20942   uniquify_cu_indices (symtab);
20943
20944   obstack_init (&constant_pool);
20945   make_cleanup_obstack_free (&constant_pool);
20946   obstack_init (&symtab_obstack);
20947   make_cleanup_obstack_free (&symtab_obstack);
20948   write_hash_table (symtab, &symtab_obstack, &constant_pool);
20949
20950   obstack_init (&contents);
20951   make_cleanup_obstack_free (&contents);
20952   size_of_contents = 6 * sizeof (offset_type);
20953   total_len = size_of_contents;
20954
20955   /* The version number.  */
20956   val = MAYBE_SWAP (8);
20957   obstack_grow (&contents, &val, sizeof (val));
20958
20959   /* The offset of the CU list from the start of the file.  */
20960   val = MAYBE_SWAP (total_len);
20961   obstack_grow (&contents, &val, sizeof (val));
20962   total_len += obstack_object_size (&cu_list);
20963
20964   /* The offset of the types CU list from the start of the file.  */
20965   val = MAYBE_SWAP (total_len);
20966   obstack_grow (&contents, &val, sizeof (val));
20967   total_len += obstack_object_size (&types_cu_list);
20968
20969   /* The offset of the address table from the start of the file.  */
20970   val = MAYBE_SWAP (total_len);
20971   obstack_grow (&contents, &val, sizeof (val));
20972   total_len += obstack_object_size (&addr_obstack);
20973
20974   /* The offset of the symbol table from the start of the file.  */
20975   val = MAYBE_SWAP (total_len);
20976   obstack_grow (&contents, &val, sizeof (val));
20977   total_len += obstack_object_size (&symtab_obstack);
20978
20979   /* The offset of the constant pool from the start of the file.  */
20980   val = MAYBE_SWAP (total_len);
20981   obstack_grow (&contents, &val, sizeof (val));
20982   total_len += obstack_object_size (&constant_pool);
20983
20984   gdb_assert (obstack_object_size (&contents) == size_of_contents);
20985
20986   write_obstack (out_file, &contents);
20987   write_obstack (out_file, &cu_list);
20988   write_obstack (out_file, &types_cu_list);
20989   write_obstack (out_file, &addr_obstack);
20990   write_obstack (out_file, &symtab_obstack);
20991   write_obstack (out_file, &constant_pool);
20992
20993   fclose (out_file);
20994
20995   /* We want to keep the file, so we set cleanup_filename to NULL
20996      here.  See unlink_if_set.  */
20997   cleanup_filename = NULL;
20998
20999   do_cleanups (cleanup);
21000 }
21001
21002 /* Implementation of the `save gdb-index' command.
21003    
21004    Note that the file format used by this command is documented in the
21005    GDB manual.  Any changes here must be documented there.  */
21006
21007 static void
21008 save_gdb_index_command (char *arg, int from_tty)
21009 {
21010   struct objfile *objfile;
21011
21012   if (!arg || !*arg)
21013     error (_("usage: save gdb-index DIRECTORY"));
21014
21015   ALL_OBJFILES (objfile)
21016   {
21017     struct stat st;
21018
21019     /* If the objfile does not correspond to an actual file, skip it.  */
21020     if (stat (objfile->name, &st) < 0)
21021       continue;
21022
21023     dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
21024     if (dwarf2_per_objfile)
21025       {
21026         volatile struct gdb_exception except;
21027
21028         TRY_CATCH (except, RETURN_MASK_ERROR)
21029           {
21030             write_psymtabs_to_index (objfile, arg);
21031           }
21032         if (except.reason < 0)
21033           exception_fprintf (gdb_stderr, except,
21034                              _("Error while writing index for `%s': "),
21035                              objfile->name);
21036       }
21037   }
21038 }
21039
21040 \f
21041
21042 int dwarf2_always_disassemble;
21043
21044 static void
21045 show_dwarf2_always_disassemble (struct ui_file *file, int from_tty,
21046                                 struct cmd_list_element *c, const char *value)
21047 {
21048   fprintf_filtered (file,
21049                     _("Whether to always disassemble "
21050                       "DWARF expressions is %s.\n"),
21051                     value);
21052 }
21053
21054 static void
21055 show_check_physname (struct ui_file *file, int from_tty,
21056                      struct cmd_list_element *c, const char *value)
21057 {
21058   fprintf_filtered (file,
21059                     _("Whether to check \"physname\" is %s.\n"),
21060                     value);
21061 }
21062
21063 void _initialize_dwarf2_read (void);
21064
21065 void
21066 _initialize_dwarf2_read (void)
21067 {
21068   struct cmd_list_element *c;
21069
21070   dwarf2_objfile_data_key
21071     = register_objfile_data_with_cleanup (NULL, dwarf2_per_objfile_free);
21072
21073   add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
21074 Set DWARF 2 specific variables.\n\
21075 Configure DWARF 2 variables such as the cache size"),
21076                   &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
21077                   0/*allow-unknown*/, &maintenance_set_cmdlist);
21078
21079   add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
21080 Show DWARF 2 specific variables\n\
21081 Show DWARF 2 variables such as the cache size"),
21082                   &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
21083                   0/*allow-unknown*/, &maintenance_show_cmdlist);
21084
21085   add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
21086                             &dwarf2_max_cache_age, _("\
21087 Set the upper bound on the age of cached dwarf2 compilation units."), _("\
21088 Show the upper bound on the age of cached dwarf2 compilation units."), _("\
21089 A higher limit means that cached compilation units will be stored\n\
21090 in memory longer, and more total memory will be used.  Zero disables\n\
21091 caching, which can slow down startup."),
21092                             NULL,
21093                             show_dwarf2_max_cache_age,
21094                             &set_dwarf2_cmdlist,
21095                             &show_dwarf2_cmdlist);
21096
21097   add_setshow_boolean_cmd ("always-disassemble", class_obscure,
21098                            &dwarf2_always_disassemble, _("\
21099 Set whether `info address' always disassembles DWARF expressions."), _("\
21100 Show whether `info address' always disassembles DWARF expressions."), _("\
21101 When enabled, DWARF expressions are always printed in an assembly-like\n\
21102 syntax.  When disabled, expressions will be printed in a more\n\
21103 conversational style, when possible."),
21104                            NULL,
21105                            show_dwarf2_always_disassemble,
21106                            &set_dwarf2_cmdlist,
21107                            &show_dwarf2_cmdlist);
21108
21109   add_setshow_boolean_cmd ("dwarf2-read", no_class, &dwarf2_read_debug, _("\
21110 Set debugging of the dwarf2 reader."), _("\
21111 Show debugging of the dwarf2 reader."), _("\
21112 When enabled, debugging messages are printed during dwarf2 reading\n\
21113 and symtab expansion."),
21114                             NULL,
21115                             NULL,
21116                             &setdebuglist, &showdebuglist);
21117
21118   add_setshow_zuinteger_cmd ("dwarf2-die", no_class, &dwarf2_die_debug, _("\
21119 Set debugging of the dwarf2 DIE reader."), _("\
21120 Show debugging of the dwarf2 DIE reader."), _("\
21121 When enabled (non-zero), DIEs are dumped after they are read in.\n\
21122 The value is the maximum depth to print."),
21123                              NULL,
21124                              NULL,
21125                              &setdebuglist, &showdebuglist);
21126
21127   add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
21128 Set cross-checking of \"physname\" code against demangler."), _("\
21129 Show cross-checking of \"physname\" code against demangler."), _("\
21130 When enabled, GDB's internal \"physname\" code is checked against\n\
21131 the demangler."),
21132                            NULL, show_check_physname,
21133                            &setdebuglist, &showdebuglist);
21134
21135   add_setshow_boolean_cmd ("use-deprecated-index-sections",
21136                            no_class, &use_deprecated_index_sections, _("\
21137 Set whether to use deprecated gdb_index sections."), _("\
21138 Show whether to use deprecated gdb_index sections."), _("\
21139 When enabled, deprecated .gdb_index sections are used anyway.\n\
21140 Normally they are ignored either because of a missing feature or\n\
21141 performance issue.\n\
21142 Warning: This option must be enabled before gdb reads the file."),
21143                            NULL,
21144                            NULL,
21145                            &setlist, &showlist);
21146
21147   c = add_cmd ("gdb-index", class_files, save_gdb_index_command,
21148                _("\
21149 Save a gdb-index file.\n\
21150 Usage: save gdb-index DIRECTORY"),
21151                &save_cmdlist);
21152   set_cmd_completer (c, filename_completer);
21153
21154   dwarf2_locexpr_index = register_symbol_computed_impl (LOC_COMPUTED,
21155                                                         &dwarf2_locexpr_funcs);
21156   dwarf2_loclist_index = register_symbol_computed_impl (LOC_COMPUTED,
21157                                                         &dwarf2_loclist_funcs);
21158
21159   dwarf2_locexpr_block_index = register_symbol_block_impl (LOC_BLOCK,
21160                                         &dwarf2_block_frame_base_locexpr_funcs);
21161   dwarf2_loclist_block_index = register_symbol_block_impl (LOC_BLOCK,
21162                                         &dwarf2_block_frame_base_loclist_funcs);
21163 }