036ccfe15d29fd67c2e94ed89b83196eefeec8b7
[external/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 /* Assuming that DIE corresponds to a function, returns nonzero
12604    if the function is prototyped.  */
12605
12606 static int
12607 prototyped_function_p (struct die_info *die, struct dwarf2_cu *cu)
12608 {
12609   struct attribute *attr;
12610
12611   attr = dwarf2_attr (die, DW_AT_prototyped, cu);
12612   if (attr && (DW_UNSND (attr) != 0))
12613     return 1;
12614
12615   /* The DWARF standard implies that the DW_AT_prototyped attribute
12616      is only meaninful for C, but the concept also extends to other
12617      languages that allow unprototyped functions (Eg: Objective C).
12618      For all other languages, assume that functions are always
12619      prototyped.  */
12620   if (cu->language != language_c
12621       && cu->language != language_objc
12622       && cu->language != language_opencl)
12623     return 1;
12624
12625   /* RealView does not emit DW_AT_prototyped.  We can not distinguish
12626      prototyped and unprototyped functions; default to prototyped,
12627      since that is more common in modern code (and RealView warns
12628      about unprototyped functions).  */
12629   if (producer_is_realview (cu->producer))
12630     return 1;
12631
12632   return 0;
12633 }
12634
12635 /* Handle DIES due to C code like:
12636
12637    struct foo
12638    {
12639    int (*funcp)(int a, long l);
12640    int b;
12641    };
12642
12643    ('funcp' generates a DW_TAG_subroutine_type DIE).  */
12644
12645 static struct type *
12646 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
12647 {
12648   struct objfile *objfile = cu->objfile;
12649   struct type *type;            /* Type that this function returns.  */
12650   struct type *ftype;           /* Function that returns above type.  */
12651   struct attribute *attr;
12652
12653   type = die_type (die, cu);
12654
12655   /* The die_type call above may have already set the type for this DIE.  */
12656   ftype = get_die_type (die, cu);
12657   if (ftype)
12658     return ftype;
12659
12660   ftype = lookup_function_type (type);
12661
12662   if (prototyped_function_p (die, cu))
12663     TYPE_PROTOTYPED (ftype) = 1;
12664
12665   /* Store the calling convention in the type if it's available in
12666      the subroutine die.  Otherwise set the calling convention to
12667      the default value DW_CC_normal.  */
12668   attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
12669   if (attr)
12670     TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
12671   else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
12672     TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
12673   else
12674     TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
12675
12676   /* We need to add the subroutine type to the die immediately so
12677      we don't infinitely recurse when dealing with parameters
12678      declared as the same subroutine type.  */
12679   set_die_type (die, ftype, cu);
12680
12681   if (die->child != NULL)
12682     {
12683       struct type *void_type = objfile_type (objfile)->builtin_void;
12684       struct die_info *child_die;
12685       int nparams, iparams;
12686
12687       /* Count the number of parameters.
12688          FIXME: GDB currently ignores vararg functions, but knows about
12689          vararg member functions.  */
12690       nparams = 0;
12691       child_die = die->child;
12692       while (child_die && child_die->tag)
12693         {
12694           if (child_die->tag == DW_TAG_formal_parameter)
12695             nparams++;
12696           else if (child_die->tag == DW_TAG_unspecified_parameters)
12697             TYPE_VARARGS (ftype) = 1;
12698           child_die = sibling_die (child_die);
12699         }
12700
12701       /* Allocate storage for parameters and fill them in.  */
12702       TYPE_NFIELDS (ftype) = nparams;
12703       TYPE_FIELDS (ftype) = (struct field *)
12704         TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
12705
12706       /* TYPE_FIELD_TYPE must never be NULL.  Pre-fill the array to ensure it
12707          even if we error out during the parameters reading below.  */
12708       for (iparams = 0; iparams < nparams; iparams++)
12709         TYPE_FIELD_TYPE (ftype, iparams) = void_type;
12710
12711       iparams = 0;
12712       child_die = die->child;
12713       while (child_die && child_die->tag)
12714         {
12715           if (child_die->tag == DW_TAG_formal_parameter)
12716             {
12717               struct type *arg_type;
12718
12719               /* DWARF version 2 has no clean way to discern C++
12720                  static and non-static member functions.  G++ helps
12721                  GDB by marking the first parameter for non-static
12722                  member functions (which is the this pointer) as
12723                  artificial.  We pass this information to
12724                  dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
12725
12726                  DWARF version 3 added DW_AT_object_pointer, which GCC
12727                  4.5 does not yet generate.  */
12728               attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
12729               if (attr)
12730                 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
12731               else
12732                 {
12733                   TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
12734
12735                   /* GCC/43521: In java, the formal parameter
12736                      "this" is sometimes not marked with DW_AT_artificial.  */
12737                   if (cu->language == language_java)
12738                     {
12739                       const char *name = dwarf2_name (child_die, cu);
12740
12741                       if (name && !strcmp (name, "this"))
12742                         TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 1;
12743                     }
12744                 }
12745               arg_type = die_type (child_die, cu);
12746
12747               /* RealView does not mark THIS as const, which the testsuite
12748                  expects.  GCC marks THIS as const in method definitions,
12749                  but not in the class specifications (GCC PR 43053).  */
12750               if (cu->language == language_cplus && !TYPE_CONST (arg_type)
12751                   && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
12752                 {
12753                   int is_this = 0;
12754                   struct dwarf2_cu *arg_cu = cu;
12755                   const char *name = dwarf2_name (child_die, cu);
12756
12757                   attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
12758                   if (attr)
12759                     {
12760                       /* If the compiler emits this, use it.  */
12761                       if (follow_die_ref (die, attr, &arg_cu) == child_die)
12762                         is_this = 1;
12763                     }
12764                   else if (name && strcmp (name, "this") == 0)
12765                     /* Function definitions will have the argument names.  */
12766                     is_this = 1;
12767                   else if (name == NULL && iparams == 0)
12768                     /* Declarations may not have the names, so like
12769                        elsewhere in GDB, assume an artificial first
12770                        argument is "this".  */
12771                     is_this = 1;
12772
12773                   if (is_this)
12774                     arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
12775                                              arg_type, 0);
12776                 }
12777
12778               TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
12779               iparams++;
12780             }
12781           child_die = sibling_die (child_die);
12782         }
12783     }
12784
12785   return ftype;
12786 }
12787
12788 static struct type *
12789 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
12790 {
12791   struct objfile *objfile = cu->objfile;
12792   const char *name = NULL;
12793   struct type *this_type, *target_type;
12794
12795   name = dwarf2_full_name (NULL, die, cu);
12796   this_type = init_type (TYPE_CODE_TYPEDEF, 0,
12797                          TYPE_FLAG_TARGET_STUB, NULL, objfile);
12798   TYPE_NAME (this_type) = name;
12799   set_die_type (die, this_type, cu);
12800   target_type = die_type (die, cu);
12801   if (target_type != this_type)
12802     TYPE_TARGET_TYPE (this_type) = target_type;
12803   else
12804     {
12805       /* Self-referential typedefs are, it seems, not allowed by the DWARF
12806          spec and cause infinite loops in GDB.  */
12807       complaint (&symfile_complaints,
12808                  _("Self-referential DW_TAG_typedef "
12809                    "- DIE at 0x%x [in module %s]"),
12810                  die->offset.sect_off, objfile->name);
12811       TYPE_TARGET_TYPE (this_type) = NULL;
12812     }
12813   return this_type;
12814 }
12815
12816 /* Find a representation of a given base type and install
12817    it in the TYPE field of the die.  */
12818
12819 static struct type *
12820 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
12821 {
12822   struct objfile *objfile = cu->objfile;
12823   struct type *type;
12824   struct attribute *attr;
12825   int encoding = 0, size = 0;
12826   const char *name;
12827   enum type_code code = TYPE_CODE_INT;
12828   int type_flags = 0;
12829   struct type *target_type = NULL;
12830
12831   attr = dwarf2_attr (die, DW_AT_encoding, cu);
12832   if (attr)
12833     {
12834       encoding = DW_UNSND (attr);
12835     }
12836   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12837   if (attr)
12838     {
12839       size = DW_UNSND (attr);
12840     }
12841   name = dwarf2_name (die, cu);
12842   if (!name)
12843     {
12844       complaint (&symfile_complaints,
12845                  _("DW_AT_name missing from DW_TAG_base_type"));
12846     }
12847
12848   switch (encoding)
12849     {
12850       case DW_ATE_address:
12851         /* Turn DW_ATE_address into a void * pointer.  */
12852         code = TYPE_CODE_PTR;
12853         type_flags |= TYPE_FLAG_UNSIGNED;
12854         target_type = init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
12855         break;
12856       case DW_ATE_boolean:
12857         code = TYPE_CODE_BOOL;
12858         type_flags |= TYPE_FLAG_UNSIGNED;
12859         break;
12860       case DW_ATE_complex_float:
12861         code = TYPE_CODE_COMPLEX;
12862         target_type = init_type (TYPE_CODE_FLT, size / 2, 0, NULL, objfile);
12863         break;
12864       case DW_ATE_decimal_float:
12865         code = TYPE_CODE_DECFLOAT;
12866         break;
12867       case DW_ATE_float:
12868         code = TYPE_CODE_FLT;
12869         break;
12870       case DW_ATE_signed:
12871         break;
12872       case DW_ATE_unsigned:
12873         type_flags |= TYPE_FLAG_UNSIGNED;
12874         if (cu->language == language_fortran
12875             && name
12876             && strncmp (name, "character(", sizeof ("character(") - 1) == 0)
12877           code = TYPE_CODE_CHAR;
12878         break;
12879       case DW_ATE_signed_char:
12880         if (cu->language == language_ada || cu->language == language_m2
12881             || cu->language == language_pascal
12882             || cu->language == language_fortran)
12883           code = TYPE_CODE_CHAR;
12884         break;
12885       case DW_ATE_unsigned_char:
12886         if (cu->language == language_ada || cu->language == language_m2
12887             || cu->language == language_pascal
12888             || cu->language == language_fortran)
12889           code = TYPE_CODE_CHAR;
12890         type_flags |= TYPE_FLAG_UNSIGNED;
12891         break;
12892       case DW_ATE_UTF:
12893         /* We just treat this as an integer and then recognize the
12894            type by name elsewhere.  */
12895         break;
12896
12897       default:
12898         complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
12899                    dwarf_type_encoding_name (encoding));
12900         break;
12901     }
12902
12903   type = init_type (code, size, type_flags, NULL, objfile);
12904   TYPE_NAME (type) = name;
12905   TYPE_TARGET_TYPE (type) = target_type;
12906
12907   if (name && strcmp (name, "char") == 0)
12908     TYPE_NOSIGN (type) = 1;
12909
12910   return set_die_type (die, type, cu);
12911 }
12912
12913 /* Read the given DW_AT_subrange DIE.  */
12914
12915 static struct type *
12916 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
12917 {
12918   struct type *base_type, *orig_base_type;
12919   struct type *range_type;
12920   struct attribute *attr;
12921   LONGEST low, high;
12922   int low_default_is_valid;
12923   const char *name;
12924   LONGEST negative_mask;
12925
12926   orig_base_type = die_type (die, cu);
12927   /* If ORIG_BASE_TYPE is a typedef, it will not be TYPE_UNSIGNED,
12928      whereas the real type might be.  So, we use ORIG_BASE_TYPE when
12929      creating the range type, but we use the result of check_typedef
12930      when examining properties of the type.  */
12931   base_type = check_typedef (orig_base_type);
12932
12933   /* The die_type call above may have already set the type for this DIE.  */
12934   range_type = get_die_type (die, cu);
12935   if (range_type)
12936     return range_type;
12937
12938   /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
12939      omitting DW_AT_lower_bound.  */
12940   switch (cu->language)
12941     {
12942     case language_c:
12943     case language_cplus:
12944       low = 0;
12945       low_default_is_valid = 1;
12946       break;
12947     case language_fortran:
12948       low = 1;
12949       low_default_is_valid = 1;
12950       break;
12951     case language_d:
12952     case language_java:
12953     case language_objc:
12954       low = 0;
12955       low_default_is_valid = (cu->header.version >= 4);
12956       break;
12957     case language_ada:
12958     case language_m2:
12959     case language_pascal:
12960       low = 1;
12961       low_default_is_valid = (cu->header.version >= 4);
12962       break;
12963     default:
12964       low = 0;
12965       low_default_is_valid = 0;
12966       break;
12967     }
12968
12969   /* FIXME: For variable sized arrays either of these could be
12970      a variable rather than a constant value.  We'll allow it,
12971      but we don't know how to handle it.  */
12972   attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
12973   if (attr)
12974     low = dwarf2_get_attr_constant_value (attr, low);
12975   else if (!low_default_is_valid)
12976     complaint (&symfile_complaints, _("Missing DW_AT_lower_bound "
12977                                       "- DIE at 0x%x [in module %s]"),
12978                die->offset.sect_off, cu->objfile->name);
12979
12980   attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
12981   if (attr)
12982     {
12983       if (attr_form_is_block (attr) || is_ref_attr (attr))
12984         {
12985           /* GCC encodes arrays with unspecified or dynamic length
12986              with a DW_FORM_block1 attribute or a reference attribute.
12987              FIXME: GDB does not yet know how to handle dynamic
12988              arrays properly, treat them as arrays with unspecified
12989              length for now.
12990
12991              FIXME: jimb/2003-09-22: GDB does not really know
12992              how to handle arrays of unspecified length
12993              either; we just represent them as zero-length
12994              arrays.  Choose an appropriate upper bound given
12995              the lower bound we've computed above.  */
12996           high = low - 1;
12997         }
12998       else
12999         high = dwarf2_get_attr_constant_value (attr, 1);
13000     }
13001   else
13002     {
13003       attr = dwarf2_attr (die, DW_AT_count, cu);
13004       if (attr)
13005         {
13006           int count = dwarf2_get_attr_constant_value (attr, 1);
13007           high = low + count - 1;
13008         }
13009       else
13010         {
13011           /* Unspecified array length.  */
13012           high = low - 1;
13013         }
13014     }
13015
13016   /* Dwarf-2 specifications explicitly allows to create subrange types
13017      without specifying a base type.
13018      In that case, the base type must be set to the type of
13019      the lower bound, upper bound or count, in that order, if any of these
13020      three attributes references an object that has a type.
13021      If no base type is found, the Dwarf-2 specifications say that
13022      a signed integer type of size equal to the size of an address should
13023      be used.
13024      For the following C code: `extern char gdb_int [];'
13025      GCC produces an empty range DIE.
13026      FIXME: muller/2010-05-28: Possible references to object for low bound,
13027      high bound or count are not yet handled by this code.  */
13028   if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
13029     {
13030       struct objfile *objfile = cu->objfile;
13031       struct gdbarch *gdbarch = get_objfile_arch (objfile);
13032       int addr_size = gdbarch_addr_bit (gdbarch) /8;
13033       struct type *int_type = objfile_type (objfile)->builtin_int;
13034
13035       /* Test "int", "long int", and "long long int" objfile types,
13036          and select the first one having a size above or equal to the
13037          architecture address size.  */
13038       if (int_type && TYPE_LENGTH (int_type) >= addr_size)
13039         base_type = int_type;
13040       else
13041         {
13042           int_type = objfile_type (objfile)->builtin_long;
13043           if (int_type && TYPE_LENGTH (int_type) >= addr_size)
13044             base_type = int_type;
13045           else
13046             {
13047               int_type = objfile_type (objfile)->builtin_long_long;
13048               if (int_type && TYPE_LENGTH (int_type) >= addr_size)
13049                 base_type = int_type;
13050             }
13051         }
13052     }
13053
13054   negative_mask =
13055     (LONGEST) -1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1);
13056   if (!TYPE_UNSIGNED (base_type) && (low & negative_mask))
13057     low |= negative_mask;
13058   if (!TYPE_UNSIGNED (base_type) && (high & negative_mask))
13059     high |= negative_mask;
13060
13061   range_type = create_range_type (NULL, orig_base_type, low, high);
13062
13063   /* Mark arrays with dynamic length at least as an array of unspecified
13064      length.  GDB could check the boundary but before it gets implemented at
13065      least allow accessing the array elements.  */
13066   if (attr && attr_form_is_block (attr))
13067     TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
13068
13069   /* Ada expects an empty array on no boundary attributes.  */
13070   if (attr == NULL && cu->language != language_ada)
13071     TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
13072
13073   name = dwarf2_name (die, cu);
13074   if (name)
13075     TYPE_NAME (range_type) = name;
13076
13077   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
13078   if (attr)
13079     TYPE_LENGTH (range_type) = DW_UNSND (attr);
13080
13081   set_die_type (die, range_type, cu);
13082
13083   /* set_die_type should be already done.  */
13084   set_descriptive_type (range_type, die, cu);
13085
13086   return range_type;
13087 }
13088
13089 static struct type *
13090 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
13091 {
13092   struct type *type;
13093
13094   /* For now, we only support the C meaning of an unspecified type: void.  */
13095
13096   type = init_type (TYPE_CODE_VOID, 0, 0, NULL, cu->objfile);
13097   TYPE_NAME (type) = dwarf2_name (die, cu);
13098
13099   return set_die_type (die, type, cu);
13100 }
13101
13102 /* Read a single die and all its descendents.  Set the die's sibling
13103    field to NULL; set other fields in the die correctly, and set all
13104    of the descendents' fields correctly.  Set *NEW_INFO_PTR to the
13105    location of the info_ptr after reading all of those dies.  PARENT
13106    is the parent of the die in question.  */
13107
13108 static struct die_info *
13109 read_die_and_children (const struct die_reader_specs *reader,
13110                        const gdb_byte *info_ptr,
13111                        const gdb_byte **new_info_ptr,
13112                        struct die_info *parent)
13113 {
13114   struct die_info *die;
13115   const gdb_byte *cur_ptr;
13116   int has_children;
13117
13118   cur_ptr = read_full_die_1 (reader, &die, info_ptr, &has_children, 0);
13119   if (die == NULL)
13120     {
13121       *new_info_ptr = cur_ptr;
13122       return NULL;
13123     }
13124   store_in_ref_table (die, reader->cu);
13125
13126   if (has_children)
13127     die->child = read_die_and_siblings_1 (reader, cur_ptr, new_info_ptr, die);
13128   else
13129     {
13130       die->child = NULL;
13131       *new_info_ptr = cur_ptr;
13132     }
13133
13134   die->sibling = NULL;
13135   die->parent = parent;
13136   return die;
13137 }
13138
13139 /* Read a die, all of its descendents, and all of its siblings; set
13140    all of the fields of all of the dies correctly.  Arguments are as
13141    in read_die_and_children.  */
13142
13143 static struct die_info *
13144 read_die_and_siblings_1 (const struct die_reader_specs *reader,
13145                          const gdb_byte *info_ptr,
13146                          const gdb_byte **new_info_ptr,
13147                          struct die_info *parent)
13148 {
13149   struct die_info *first_die, *last_sibling;
13150   const gdb_byte *cur_ptr;
13151
13152   cur_ptr = info_ptr;
13153   first_die = last_sibling = NULL;
13154
13155   while (1)
13156     {
13157       struct die_info *die
13158         = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
13159
13160       if (die == NULL)
13161         {
13162           *new_info_ptr = cur_ptr;
13163           return first_die;
13164         }
13165
13166       if (!first_die)
13167         first_die = die;
13168       else
13169         last_sibling->sibling = die;
13170
13171       last_sibling = die;
13172     }
13173 }
13174
13175 /* Read a die, all of its descendents, and all of its siblings; set
13176    all of the fields of all of the dies correctly.  Arguments are as
13177    in read_die_and_children.
13178    This the main entry point for reading a DIE and all its children.  */
13179
13180 static struct die_info *
13181 read_die_and_siblings (const struct die_reader_specs *reader,
13182                        const gdb_byte *info_ptr,
13183                        const gdb_byte **new_info_ptr,
13184                        struct die_info *parent)
13185 {
13186   struct die_info *die = read_die_and_siblings_1 (reader, info_ptr,
13187                                                   new_info_ptr, parent);
13188
13189   if (dwarf2_die_debug)
13190     {
13191       fprintf_unfiltered (gdb_stdlog,
13192                           "Read die from %s@0x%x of %s:\n",
13193                           bfd_section_name (reader->abfd,
13194                                             reader->die_section->asection),
13195                           (unsigned) (info_ptr - reader->die_section->buffer),
13196                           bfd_get_filename (reader->abfd));
13197       dump_die (die, dwarf2_die_debug);
13198     }
13199
13200   return die;
13201 }
13202
13203 /* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
13204    attributes.
13205    The caller is responsible for filling in the extra attributes
13206    and updating (*DIEP)->num_attrs.
13207    Set DIEP to point to a newly allocated die with its information,
13208    except for its child, sibling, and parent fields.
13209    Set HAS_CHILDREN to tell whether the die has children or not.  */
13210
13211 static const gdb_byte *
13212 read_full_die_1 (const struct die_reader_specs *reader,
13213                  struct die_info **diep, const gdb_byte *info_ptr,
13214                  int *has_children, int num_extra_attrs)
13215 {
13216   unsigned int abbrev_number, bytes_read, i;
13217   sect_offset offset;
13218   struct abbrev_info *abbrev;
13219   struct die_info *die;
13220   struct dwarf2_cu *cu = reader->cu;
13221   bfd *abfd = reader->abfd;
13222
13223   offset.sect_off = info_ptr - reader->buffer;
13224   abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
13225   info_ptr += bytes_read;
13226   if (!abbrev_number)
13227     {
13228       *diep = NULL;
13229       *has_children = 0;
13230       return info_ptr;
13231     }
13232
13233   abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
13234   if (!abbrev)
13235     error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
13236            abbrev_number,
13237            bfd_get_filename (abfd));
13238
13239   die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
13240   die->offset = offset;
13241   die->tag = abbrev->tag;
13242   die->abbrev = abbrev_number;
13243
13244   /* Make the result usable.
13245      The caller needs to update num_attrs after adding the extra
13246      attributes.  */
13247   die->num_attrs = abbrev->num_attrs;
13248
13249   for (i = 0; i < abbrev->num_attrs; ++i)
13250     info_ptr = read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
13251                                info_ptr);
13252
13253   *diep = die;
13254   *has_children = abbrev->has_children;
13255   return info_ptr;
13256 }
13257
13258 /* Read a die and all its attributes.
13259    Set DIEP to point to a newly allocated die with its information,
13260    except for its child, sibling, and parent fields.
13261    Set HAS_CHILDREN to tell whether the die has children or not.  */
13262
13263 static const gdb_byte *
13264 read_full_die (const struct die_reader_specs *reader,
13265                struct die_info **diep, const gdb_byte *info_ptr,
13266                int *has_children)
13267 {
13268   const gdb_byte *result;
13269
13270   result = read_full_die_1 (reader, diep, info_ptr, has_children, 0);
13271
13272   if (dwarf2_die_debug)
13273     {
13274       fprintf_unfiltered (gdb_stdlog,
13275                           "Read die from %s@0x%x of %s:\n",
13276                           bfd_section_name (reader->abfd,
13277                                             reader->die_section->asection),
13278                           (unsigned) (info_ptr - reader->die_section->buffer),
13279                           bfd_get_filename (reader->abfd));
13280       dump_die (*diep, dwarf2_die_debug);
13281     }
13282
13283   return result;
13284 }
13285 \f
13286 /* Abbreviation tables.
13287
13288    In DWARF version 2, the description of the debugging information is
13289    stored in a separate .debug_abbrev section.  Before we read any
13290    dies from a section we read in all abbreviations and install them
13291    in a hash table.  */
13292
13293 /* Allocate space for a struct abbrev_info object in ABBREV_TABLE.  */
13294
13295 static struct abbrev_info *
13296 abbrev_table_alloc_abbrev (struct abbrev_table *abbrev_table)
13297 {
13298   struct abbrev_info *abbrev;
13299
13300   abbrev = (struct abbrev_info *)
13301     obstack_alloc (&abbrev_table->abbrev_obstack, sizeof (struct abbrev_info));
13302   memset (abbrev, 0, sizeof (struct abbrev_info));
13303   return abbrev;
13304 }
13305
13306 /* Add an abbreviation to the table.  */
13307
13308 static void
13309 abbrev_table_add_abbrev (struct abbrev_table *abbrev_table,
13310                          unsigned int abbrev_number,
13311                          struct abbrev_info *abbrev)
13312 {
13313   unsigned int hash_number;
13314
13315   hash_number = abbrev_number % ABBREV_HASH_SIZE;
13316   abbrev->next = abbrev_table->abbrevs[hash_number];
13317   abbrev_table->abbrevs[hash_number] = abbrev;
13318 }
13319
13320 /* Look up an abbrev in the table.
13321    Returns NULL if the abbrev is not found.  */
13322
13323 static struct abbrev_info *
13324 abbrev_table_lookup_abbrev (const struct abbrev_table *abbrev_table,
13325                             unsigned int abbrev_number)
13326 {
13327   unsigned int hash_number;
13328   struct abbrev_info *abbrev;
13329
13330   hash_number = abbrev_number % ABBREV_HASH_SIZE;
13331   abbrev = abbrev_table->abbrevs[hash_number];
13332
13333   while (abbrev)
13334     {
13335       if (abbrev->number == abbrev_number)
13336         return abbrev;
13337       abbrev = abbrev->next;
13338     }
13339   return NULL;
13340 }
13341
13342 /* Read in an abbrev table.  */
13343
13344 static struct abbrev_table *
13345 abbrev_table_read_table (struct dwarf2_section_info *section,
13346                          sect_offset offset)
13347 {
13348   struct objfile *objfile = dwarf2_per_objfile->objfile;
13349   bfd *abfd = section->asection->owner;
13350   struct abbrev_table *abbrev_table;
13351   const gdb_byte *abbrev_ptr;
13352   struct abbrev_info *cur_abbrev;
13353   unsigned int abbrev_number, bytes_read, abbrev_name;
13354   unsigned int abbrev_form;
13355   struct attr_abbrev *cur_attrs;
13356   unsigned int allocated_attrs;
13357
13358   abbrev_table = XMALLOC (struct abbrev_table);
13359   abbrev_table->offset = offset;
13360   obstack_init (&abbrev_table->abbrev_obstack);
13361   abbrev_table->abbrevs = obstack_alloc (&abbrev_table->abbrev_obstack,
13362                                          (ABBREV_HASH_SIZE
13363                                           * sizeof (struct abbrev_info *)));
13364   memset (abbrev_table->abbrevs, 0,
13365           ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
13366
13367   dwarf2_read_section (objfile, section);
13368   abbrev_ptr = section->buffer + offset.sect_off;
13369   abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13370   abbrev_ptr += bytes_read;
13371
13372   allocated_attrs = ATTR_ALLOC_CHUNK;
13373   cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
13374
13375   /* Loop until we reach an abbrev number of 0.  */
13376   while (abbrev_number)
13377     {
13378       cur_abbrev = abbrev_table_alloc_abbrev (abbrev_table);
13379
13380       /* read in abbrev header */
13381       cur_abbrev->number = abbrev_number;
13382       cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13383       abbrev_ptr += bytes_read;
13384       cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
13385       abbrev_ptr += 1;
13386
13387       /* now read in declarations */
13388       abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13389       abbrev_ptr += bytes_read;
13390       abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13391       abbrev_ptr += bytes_read;
13392       while (abbrev_name)
13393         {
13394           if (cur_abbrev->num_attrs == allocated_attrs)
13395             {
13396               allocated_attrs += ATTR_ALLOC_CHUNK;
13397               cur_attrs
13398                 = xrealloc (cur_attrs, (allocated_attrs
13399                                         * sizeof (struct attr_abbrev)));
13400             }
13401
13402           cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
13403           cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
13404           abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13405           abbrev_ptr += bytes_read;
13406           abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13407           abbrev_ptr += bytes_read;
13408         }
13409
13410       cur_abbrev->attrs = obstack_alloc (&abbrev_table->abbrev_obstack,
13411                                          (cur_abbrev->num_attrs
13412                                           * sizeof (struct attr_abbrev)));
13413       memcpy (cur_abbrev->attrs, cur_attrs,
13414               cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
13415
13416       abbrev_table_add_abbrev (abbrev_table, abbrev_number, cur_abbrev);
13417
13418       /* Get next abbreviation.
13419          Under Irix6 the abbreviations for a compilation unit are not
13420          always properly terminated with an abbrev number of 0.
13421          Exit loop if we encounter an abbreviation which we have
13422          already read (which means we are about to read the abbreviations
13423          for the next compile unit) or if the end of the abbreviation
13424          table is reached.  */
13425       if ((unsigned int) (abbrev_ptr - section->buffer) >= section->size)
13426         break;
13427       abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13428       abbrev_ptr += bytes_read;
13429       if (abbrev_table_lookup_abbrev (abbrev_table, abbrev_number) != NULL)
13430         break;
13431     }
13432
13433   xfree (cur_attrs);
13434   return abbrev_table;
13435 }
13436
13437 /* Free the resources held by ABBREV_TABLE.  */
13438
13439 static void
13440 abbrev_table_free (struct abbrev_table *abbrev_table)
13441 {
13442   obstack_free (&abbrev_table->abbrev_obstack, NULL);
13443   xfree (abbrev_table);
13444 }
13445
13446 /* Same as abbrev_table_free but as a cleanup.
13447    We pass in a pointer to the pointer to the table so that we can
13448    set the pointer to NULL when we're done.  It also simplifies
13449    build_type_unit_groups.  */
13450
13451 static void
13452 abbrev_table_free_cleanup (void *table_ptr)
13453 {
13454   struct abbrev_table **abbrev_table_ptr = table_ptr;
13455
13456   if (*abbrev_table_ptr != NULL)
13457     abbrev_table_free (*abbrev_table_ptr);
13458   *abbrev_table_ptr = NULL;
13459 }
13460
13461 /* Read the abbrev table for CU from ABBREV_SECTION.  */
13462
13463 static void
13464 dwarf2_read_abbrevs (struct dwarf2_cu *cu,
13465                      struct dwarf2_section_info *abbrev_section)
13466 {
13467   cu->abbrev_table =
13468     abbrev_table_read_table (abbrev_section, cu->header.abbrev_offset);
13469 }
13470
13471 /* Release the memory used by the abbrev table for a compilation unit.  */
13472
13473 static void
13474 dwarf2_free_abbrev_table (void *ptr_to_cu)
13475 {
13476   struct dwarf2_cu *cu = ptr_to_cu;
13477
13478   abbrev_table_free (cu->abbrev_table);
13479   /* Set this to NULL so that we SEGV if we try to read it later,
13480      and also because free_comp_unit verifies this is NULL.  */
13481   cu->abbrev_table = NULL;
13482 }
13483 \f
13484 /* Returns nonzero if TAG represents a type that we might generate a partial
13485    symbol for.  */
13486
13487 static int
13488 is_type_tag_for_partial (int tag)
13489 {
13490   switch (tag)
13491     {
13492 #if 0
13493     /* Some types that would be reasonable to generate partial symbols for,
13494        that we don't at present.  */
13495     case DW_TAG_array_type:
13496     case DW_TAG_file_type:
13497     case DW_TAG_ptr_to_member_type:
13498     case DW_TAG_set_type:
13499     case DW_TAG_string_type:
13500     case DW_TAG_subroutine_type:
13501 #endif
13502     case DW_TAG_base_type:
13503     case DW_TAG_class_type:
13504     case DW_TAG_interface_type:
13505     case DW_TAG_enumeration_type:
13506     case DW_TAG_structure_type:
13507     case DW_TAG_subrange_type:
13508     case DW_TAG_typedef:
13509     case DW_TAG_union_type:
13510       return 1;
13511     default:
13512       return 0;
13513     }
13514 }
13515
13516 /* Load all DIEs that are interesting for partial symbols into memory.  */
13517
13518 static struct partial_die_info *
13519 load_partial_dies (const struct die_reader_specs *reader,
13520                    const gdb_byte *info_ptr, int building_psymtab)
13521 {
13522   struct dwarf2_cu *cu = reader->cu;
13523   struct objfile *objfile = cu->objfile;
13524   struct partial_die_info *part_die;
13525   struct partial_die_info *parent_die, *last_die, *first_die = NULL;
13526   struct abbrev_info *abbrev;
13527   unsigned int bytes_read;
13528   unsigned int load_all = 0;
13529   int nesting_level = 1;
13530
13531   parent_die = NULL;
13532   last_die = NULL;
13533
13534   gdb_assert (cu->per_cu != NULL);
13535   if (cu->per_cu->load_all_dies)
13536     load_all = 1;
13537
13538   cu->partial_dies
13539     = htab_create_alloc_ex (cu->header.length / 12,
13540                             partial_die_hash,
13541                             partial_die_eq,
13542                             NULL,
13543                             &cu->comp_unit_obstack,
13544                             hashtab_obstack_allocate,
13545                             dummy_obstack_deallocate);
13546
13547   part_die = obstack_alloc (&cu->comp_unit_obstack,
13548                             sizeof (struct partial_die_info));
13549
13550   while (1)
13551     {
13552       abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
13553
13554       /* A NULL abbrev means the end of a series of children.  */
13555       if (abbrev == NULL)
13556         {
13557           if (--nesting_level == 0)
13558             {
13559               /* PART_DIE was probably the last thing allocated on the
13560                  comp_unit_obstack, so we could call obstack_free
13561                  here.  We don't do that because the waste is small,
13562                  and will be cleaned up when we're done with this
13563                  compilation unit.  This way, we're also more robust
13564                  against other users of the comp_unit_obstack.  */
13565               return first_die;
13566             }
13567           info_ptr += bytes_read;
13568           last_die = parent_die;
13569           parent_die = parent_die->die_parent;
13570           continue;
13571         }
13572
13573       /* Check for template arguments.  We never save these; if
13574          they're seen, we just mark the parent, and go on our way.  */
13575       if (parent_die != NULL
13576           && cu->language == language_cplus
13577           && (abbrev->tag == DW_TAG_template_type_param
13578               || abbrev->tag == DW_TAG_template_value_param))
13579         {
13580           parent_die->has_template_arguments = 1;
13581
13582           if (!load_all)
13583             {
13584               /* We don't need a partial DIE for the template argument.  */
13585               info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
13586               continue;
13587             }
13588         }
13589
13590       /* We only recurse into c++ subprograms looking for template arguments.
13591          Skip their other children.  */
13592       if (!load_all
13593           && cu->language == language_cplus
13594           && parent_die != NULL
13595           && parent_die->tag == DW_TAG_subprogram)
13596         {
13597           info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
13598           continue;
13599         }
13600
13601       /* Check whether this DIE is interesting enough to save.  Normally
13602          we would not be interested in members here, but there may be
13603          later variables referencing them via DW_AT_specification (for
13604          static members).  */
13605       if (!load_all
13606           && !is_type_tag_for_partial (abbrev->tag)
13607           && abbrev->tag != DW_TAG_constant
13608           && abbrev->tag != DW_TAG_enumerator
13609           && abbrev->tag != DW_TAG_subprogram
13610           && abbrev->tag != DW_TAG_lexical_block
13611           && abbrev->tag != DW_TAG_variable
13612           && abbrev->tag != DW_TAG_namespace
13613           && abbrev->tag != DW_TAG_module
13614           && abbrev->tag != DW_TAG_member
13615           && abbrev->tag != DW_TAG_imported_unit)
13616         {
13617           /* Otherwise we skip to the next sibling, if any.  */
13618           info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
13619           continue;
13620         }
13621
13622       info_ptr = read_partial_die (reader, part_die, abbrev, bytes_read,
13623                                    info_ptr);
13624
13625       /* This two-pass algorithm for processing partial symbols has a
13626          high cost in cache pressure.  Thus, handle some simple cases
13627          here which cover the majority of C partial symbols.  DIEs
13628          which neither have specification tags in them, nor could have
13629          specification tags elsewhere pointing at them, can simply be
13630          processed and discarded.
13631
13632          This segment is also optional; scan_partial_symbols and
13633          add_partial_symbol will handle these DIEs if we chain
13634          them in normally.  When compilers which do not emit large
13635          quantities of duplicate debug information are more common,
13636          this code can probably be removed.  */
13637
13638       /* Any complete simple types at the top level (pretty much all
13639          of them, for a language without namespaces), can be processed
13640          directly.  */
13641       if (parent_die == NULL
13642           && part_die->has_specification == 0
13643           && part_die->is_declaration == 0
13644           && ((part_die->tag == DW_TAG_typedef && !part_die->has_children)
13645               || part_die->tag == DW_TAG_base_type
13646               || part_die->tag == DW_TAG_subrange_type))
13647         {
13648           if (building_psymtab && part_die->name != NULL)
13649             add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
13650                                  VAR_DOMAIN, LOC_TYPEDEF,
13651                                  &objfile->static_psymbols,
13652                                  0, (CORE_ADDR) 0, cu->language, objfile);
13653           info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
13654           continue;
13655         }
13656
13657       /* The exception for DW_TAG_typedef with has_children above is
13658          a workaround of GCC PR debug/47510.  In the case of this complaint
13659          type_name_no_tag_or_error will error on such types later.
13660
13661          GDB skipped children of DW_TAG_typedef by the shortcut above and then
13662          it could not find the child DIEs referenced later, this is checked
13663          above.  In correct DWARF DW_TAG_typedef should have no children.  */
13664
13665       if (part_die->tag == DW_TAG_typedef && part_die->has_children)
13666         complaint (&symfile_complaints,
13667                    _("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
13668                      "- DIE at 0x%x [in module %s]"),
13669                    part_die->offset.sect_off, objfile->name);
13670
13671       /* If we're at the second level, and we're an enumerator, and
13672          our parent has no specification (meaning possibly lives in a
13673          namespace elsewhere), then we can add the partial symbol now
13674          instead of queueing it.  */
13675       if (part_die->tag == DW_TAG_enumerator
13676           && parent_die != NULL
13677           && parent_die->die_parent == NULL
13678           && parent_die->tag == DW_TAG_enumeration_type
13679           && parent_die->has_specification == 0)
13680         {
13681           if (part_die->name == NULL)
13682             complaint (&symfile_complaints,
13683                        _("malformed enumerator DIE ignored"));
13684           else if (building_psymtab)
13685             add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
13686                                  VAR_DOMAIN, LOC_CONST,
13687                                  (cu->language == language_cplus
13688                                   || cu->language == language_java)
13689                                  ? &objfile->global_psymbols
13690                                  : &objfile->static_psymbols,
13691                                  0, (CORE_ADDR) 0, cu->language, objfile);
13692
13693           info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
13694           continue;
13695         }
13696
13697       /* We'll save this DIE so link it in.  */
13698       part_die->die_parent = parent_die;
13699       part_die->die_sibling = NULL;
13700       part_die->die_child = NULL;
13701
13702       if (last_die && last_die == parent_die)
13703         last_die->die_child = part_die;
13704       else if (last_die)
13705         last_die->die_sibling = part_die;
13706
13707       last_die = part_die;
13708
13709       if (first_die == NULL)
13710         first_die = part_die;
13711
13712       /* Maybe add the DIE to the hash table.  Not all DIEs that we
13713          find interesting need to be in the hash table, because we
13714          also have the parent/sibling/child chains; only those that we
13715          might refer to by offset later during partial symbol reading.
13716
13717          For now this means things that might have be the target of a
13718          DW_AT_specification, DW_AT_abstract_origin, or
13719          DW_AT_extension.  DW_AT_extension will refer only to
13720          namespaces; DW_AT_abstract_origin refers to functions (and
13721          many things under the function DIE, but we do not recurse
13722          into function DIEs during partial symbol reading) and
13723          possibly variables as well; DW_AT_specification refers to
13724          declarations.  Declarations ought to have the DW_AT_declaration
13725          flag.  It happens that GCC forgets to put it in sometimes, but
13726          only for functions, not for types.
13727
13728          Adding more things than necessary to the hash table is harmless
13729          except for the performance cost.  Adding too few will result in
13730          wasted time in find_partial_die, when we reread the compilation
13731          unit with load_all_dies set.  */
13732
13733       if (load_all
13734           || abbrev->tag == DW_TAG_constant
13735           || abbrev->tag == DW_TAG_subprogram
13736           || abbrev->tag == DW_TAG_variable
13737           || abbrev->tag == DW_TAG_namespace
13738           || part_die->is_declaration)
13739         {
13740           void **slot;
13741
13742           slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
13743                                            part_die->offset.sect_off, INSERT);
13744           *slot = part_die;
13745         }
13746
13747       part_die = obstack_alloc (&cu->comp_unit_obstack,
13748                                 sizeof (struct partial_die_info));
13749
13750       /* For some DIEs we want to follow their children (if any).  For C
13751          we have no reason to follow the children of structures; for other
13752          languages we have to, so that we can get at method physnames
13753          to infer fully qualified class names, for DW_AT_specification,
13754          and for C++ template arguments.  For C++, we also look one level
13755          inside functions to find template arguments (if the name of the
13756          function does not already contain the template arguments).
13757
13758          For Ada, we need to scan the children of subprograms and lexical
13759          blocks as well because Ada allows the definition of nested
13760          entities that could be interesting for the debugger, such as
13761          nested subprograms for instance.  */
13762       if (last_die->has_children
13763           && (load_all
13764               || last_die->tag == DW_TAG_namespace
13765               || last_die->tag == DW_TAG_module
13766               || last_die->tag == DW_TAG_enumeration_type
13767               || (cu->language == language_cplus
13768                   && last_die->tag == DW_TAG_subprogram
13769                   && (last_die->name == NULL
13770                       || strchr (last_die->name, '<') == NULL))
13771               || (cu->language != language_c
13772                   && (last_die->tag == DW_TAG_class_type
13773                       || last_die->tag == DW_TAG_interface_type
13774                       || last_die->tag == DW_TAG_structure_type
13775                       || last_die->tag == DW_TAG_union_type))
13776               || (cu->language == language_ada
13777                   && (last_die->tag == DW_TAG_subprogram
13778                       || last_die->tag == DW_TAG_lexical_block))))
13779         {
13780           nesting_level++;
13781           parent_die = last_die;
13782           continue;
13783         }
13784
13785       /* Otherwise we skip to the next sibling, if any.  */
13786       info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
13787
13788       /* Back to the top, do it again.  */
13789     }
13790 }
13791
13792 /* Read a minimal amount of information into the minimal die structure.  */
13793
13794 static const gdb_byte *
13795 read_partial_die (const struct die_reader_specs *reader,
13796                   struct partial_die_info *part_die,
13797                   struct abbrev_info *abbrev, unsigned int abbrev_len,
13798                   const gdb_byte *info_ptr)
13799 {
13800   struct dwarf2_cu *cu = reader->cu;
13801   struct objfile *objfile = cu->objfile;
13802   const gdb_byte *buffer = reader->buffer;
13803   unsigned int i;
13804   struct attribute attr;
13805   int has_low_pc_attr = 0;
13806   int has_high_pc_attr = 0;
13807   int high_pc_relative = 0;
13808
13809   memset (part_die, 0, sizeof (struct partial_die_info));
13810
13811   part_die->offset.sect_off = info_ptr - buffer;
13812
13813   info_ptr += abbrev_len;
13814
13815   if (abbrev == NULL)
13816     return info_ptr;
13817
13818   part_die->tag = abbrev->tag;
13819   part_die->has_children = abbrev->has_children;
13820
13821   for (i = 0; i < abbrev->num_attrs; ++i)
13822     {
13823       info_ptr = read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
13824
13825       /* Store the data if it is of an attribute we want to keep in a
13826          partial symbol table.  */
13827       switch (attr.name)
13828         {
13829         case DW_AT_name:
13830           switch (part_die->tag)
13831             {
13832             case DW_TAG_compile_unit:
13833             case DW_TAG_partial_unit:
13834             case DW_TAG_type_unit:
13835               /* Compilation units have a DW_AT_name that is a filename, not
13836                  a source language identifier.  */
13837             case DW_TAG_enumeration_type:
13838             case DW_TAG_enumerator:
13839               /* These tags always have simple identifiers already; no need
13840                  to canonicalize them.  */
13841               part_die->name = DW_STRING (&attr);
13842               break;
13843             default:
13844               part_die->name
13845                 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
13846                                             &objfile->objfile_obstack);
13847               break;
13848             }
13849           break;
13850         case DW_AT_linkage_name:
13851         case DW_AT_MIPS_linkage_name:
13852           /* Note that both forms of linkage name might appear.  We
13853              assume they will be the same, and we only store the last
13854              one we see.  */
13855           if (cu->language == language_ada)
13856             part_die->name = DW_STRING (&attr);
13857           part_die->linkage_name = DW_STRING (&attr);
13858           break;
13859         case DW_AT_low_pc:
13860           has_low_pc_attr = 1;
13861           part_die->lowpc = DW_ADDR (&attr);
13862           break;
13863         case DW_AT_high_pc:
13864           has_high_pc_attr = 1;
13865           if (attr.form == DW_FORM_addr
13866               || attr.form == DW_FORM_GNU_addr_index)
13867             part_die->highpc = DW_ADDR (&attr);
13868           else
13869             {
13870               high_pc_relative = 1;
13871               part_die->highpc = DW_UNSND (&attr);
13872             }
13873           break;
13874         case DW_AT_location:
13875           /* Support the .debug_loc offsets.  */
13876           if (attr_form_is_block (&attr))
13877             {
13878                part_die->d.locdesc = DW_BLOCK (&attr);
13879             }
13880           else if (attr_form_is_section_offset (&attr))
13881             {
13882               dwarf2_complex_location_expr_complaint ();
13883             }
13884           else
13885             {
13886               dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
13887                                                      "partial symbol information");
13888             }
13889           break;
13890         case DW_AT_external:
13891           part_die->is_external = DW_UNSND (&attr);
13892           break;
13893         case DW_AT_declaration:
13894           part_die->is_declaration = DW_UNSND (&attr);
13895           break;
13896         case DW_AT_type:
13897           part_die->has_type = 1;
13898           break;
13899         case DW_AT_abstract_origin:
13900         case DW_AT_specification:
13901         case DW_AT_extension:
13902           part_die->has_specification = 1;
13903           part_die->spec_offset = dwarf2_get_ref_die_offset (&attr);
13904           part_die->spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
13905                                    || cu->per_cu->is_dwz);
13906           break;
13907         case DW_AT_sibling:
13908           /* Ignore absolute siblings, they might point outside of
13909              the current compile unit.  */
13910           if (attr.form == DW_FORM_ref_addr)
13911             complaint (&symfile_complaints,
13912                        _("ignoring absolute DW_AT_sibling"));
13913           else
13914             part_die->sibling = buffer + dwarf2_get_ref_die_offset (&attr).sect_off;
13915           break;
13916         case DW_AT_byte_size:
13917           part_die->has_byte_size = 1;
13918           break;
13919         case DW_AT_calling_convention:
13920           /* DWARF doesn't provide a way to identify a program's source-level
13921              entry point.  DW_AT_calling_convention attributes are only meant
13922              to describe functions' calling conventions.
13923
13924              However, because it's a necessary piece of information in
13925              Fortran, and because DW_CC_program is the only piece of debugging
13926              information whose definition refers to a 'main program' at all,
13927              several compilers have begun marking Fortran main programs with
13928              DW_CC_program --- even when those functions use the standard
13929              calling conventions.
13930
13931              So until DWARF specifies a way to provide this information and
13932              compilers pick up the new representation, we'll support this
13933              practice.  */
13934           if (DW_UNSND (&attr) == DW_CC_program
13935               && cu->language == language_fortran)
13936             {
13937               set_main_name (part_die->name);
13938
13939               /* As this DIE has a static linkage the name would be difficult
13940                  to look up later.  */
13941               language_of_main = language_fortran;
13942             }
13943           break;
13944         case DW_AT_inline:
13945           if (DW_UNSND (&attr) == DW_INL_inlined
13946               || DW_UNSND (&attr) == DW_INL_declared_inlined)
13947             part_die->may_be_inlined = 1;
13948           break;
13949
13950         case DW_AT_import:
13951           if (part_die->tag == DW_TAG_imported_unit)
13952             {
13953               part_die->d.offset = dwarf2_get_ref_die_offset (&attr);
13954               part_die->is_dwz = (attr.form == DW_FORM_GNU_ref_alt
13955                                   || cu->per_cu->is_dwz);
13956             }
13957           break;
13958
13959         default:
13960           break;
13961         }
13962     }
13963
13964   if (high_pc_relative)
13965     part_die->highpc += part_die->lowpc;
13966
13967   if (has_low_pc_attr && has_high_pc_attr)
13968     {
13969       /* When using the GNU linker, .gnu.linkonce. sections are used to
13970          eliminate duplicate copies of functions and vtables and such.
13971          The linker will arbitrarily choose one and discard the others.
13972          The AT_*_pc values for such functions refer to local labels in
13973          these sections.  If the section from that file was discarded, the
13974          labels are not in the output, so the relocs get a value of 0.
13975          If this is a discarded function, mark the pc bounds as invalid,
13976          so that GDB will ignore it.  */
13977       if (part_die->lowpc == 0 && !dwarf2_per_objfile->has_section_at_zero)
13978         {
13979           struct gdbarch *gdbarch = get_objfile_arch (objfile);
13980
13981           complaint (&symfile_complaints,
13982                      _("DW_AT_low_pc %s is zero "
13983                        "for DIE at 0x%x [in module %s]"),
13984                      paddress (gdbarch, part_die->lowpc),
13985                      part_die->offset.sect_off, objfile->name);
13986         }
13987       /* dwarf2_get_pc_bounds has also the strict low < high requirement.  */
13988       else if (part_die->lowpc >= part_die->highpc)
13989         {
13990           struct gdbarch *gdbarch = get_objfile_arch (objfile);
13991
13992           complaint (&symfile_complaints,
13993                      _("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
13994                        "for DIE at 0x%x [in module %s]"),
13995                      paddress (gdbarch, part_die->lowpc),
13996                      paddress (gdbarch, part_die->highpc),
13997                      part_die->offset.sect_off, objfile->name);
13998         }
13999       else
14000         part_die->has_pc_info = 1;
14001     }
14002
14003   return info_ptr;
14004 }
14005
14006 /* Find a cached partial DIE at OFFSET in CU.  */
14007
14008 static struct partial_die_info *
14009 find_partial_die_in_comp_unit (sect_offset offset, struct dwarf2_cu *cu)
14010 {
14011   struct partial_die_info *lookup_die = NULL;
14012   struct partial_die_info part_die;
14013
14014   part_die.offset = offset;
14015   lookup_die = htab_find_with_hash (cu->partial_dies, &part_die,
14016                                     offset.sect_off);
14017
14018   return lookup_die;
14019 }
14020
14021 /* Find a partial DIE at OFFSET, which may or may not be in CU,
14022    except in the case of .debug_types DIEs which do not reference
14023    outside their CU (they do however referencing other types via
14024    DW_FORM_ref_sig8).  */
14025
14026 static struct partial_die_info *
14027 find_partial_die (sect_offset offset, int offset_in_dwz, struct dwarf2_cu *cu)
14028 {
14029   struct objfile *objfile = cu->objfile;
14030   struct dwarf2_per_cu_data *per_cu = NULL;
14031   struct partial_die_info *pd = NULL;
14032
14033   if (offset_in_dwz == cu->per_cu->is_dwz
14034       && offset_in_cu_p (&cu->header, offset))
14035     {
14036       pd = find_partial_die_in_comp_unit (offset, cu);
14037       if (pd != NULL)
14038         return pd;
14039       /* We missed recording what we needed.
14040          Load all dies and try again.  */
14041       per_cu = cu->per_cu;
14042     }
14043   else
14044     {
14045       /* TUs don't reference other CUs/TUs (except via type signatures).  */
14046       if (cu->per_cu->is_debug_types)
14047         {
14048           error (_("Dwarf Error: Type Unit at offset 0x%lx contains"
14049                    " external reference to offset 0x%lx [in module %s].\n"),
14050                  (long) cu->header.offset.sect_off, (long) offset.sect_off,
14051                  bfd_get_filename (objfile->obfd));
14052         }
14053       per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
14054                                                  objfile);
14055
14056       if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
14057         load_partial_comp_unit (per_cu);
14058
14059       per_cu->cu->last_used = 0;
14060       pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
14061     }
14062
14063   /* If we didn't find it, and not all dies have been loaded,
14064      load them all and try again.  */
14065
14066   if (pd == NULL && per_cu->load_all_dies == 0)
14067     {
14068       per_cu->load_all_dies = 1;
14069
14070       /* This is nasty.  When we reread the DIEs, somewhere up the call chain
14071          THIS_CU->cu may already be in use.  So we can't just free it and
14072          replace its DIEs with the ones we read in.  Instead, we leave those
14073          DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
14074          and clobber THIS_CU->cu->partial_dies with the hash table for the new
14075          set.  */
14076       load_partial_comp_unit (per_cu);
14077
14078       pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
14079     }
14080
14081   if (pd == NULL)
14082     internal_error (__FILE__, __LINE__,
14083                     _("could not find partial DIE 0x%x "
14084                       "in cache [from module %s]\n"),
14085                     offset.sect_off, bfd_get_filename (objfile->obfd));
14086   return pd;
14087 }
14088
14089 /* See if we can figure out if the class lives in a namespace.  We do
14090    this by looking for a member function; its demangled name will
14091    contain namespace info, if there is any.  */
14092
14093 static void
14094 guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
14095                                   struct dwarf2_cu *cu)
14096 {
14097   /* NOTE: carlton/2003-10-07: Getting the info this way changes
14098      what template types look like, because the demangler
14099      frequently doesn't give the same name as the debug info.  We
14100      could fix this by only using the demangled name to get the
14101      prefix (but see comment in read_structure_type).  */
14102
14103   struct partial_die_info *real_pdi;
14104   struct partial_die_info *child_pdi;
14105
14106   /* If this DIE (this DIE's specification, if any) has a parent, then
14107      we should not do this.  We'll prepend the parent's fully qualified
14108      name when we create the partial symbol.  */
14109
14110   real_pdi = struct_pdi;
14111   while (real_pdi->has_specification)
14112     real_pdi = find_partial_die (real_pdi->spec_offset,
14113                                  real_pdi->spec_is_dwz, cu);
14114
14115   if (real_pdi->die_parent != NULL)
14116     return;
14117
14118   for (child_pdi = struct_pdi->die_child;
14119        child_pdi != NULL;
14120        child_pdi = child_pdi->die_sibling)
14121     {
14122       if (child_pdi->tag == DW_TAG_subprogram
14123           && child_pdi->linkage_name != NULL)
14124         {
14125           char *actual_class_name
14126             = language_class_name_from_physname (cu->language_defn,
14127                                                  child_pdi->linkage_name);
14128           if (actual_class_name != NULL)
14129             {
14130               struct_pdi->name
14131                 = obstack_copy0 (&cu->objfile->objfile_obstack,
14132                                  actual_class_name,
14133                                  strlen (actual_class_name));
14134               xfree (actual_class_name);
14135             }
14136           break;
14137         }
14138     }
14139 }
14140
14141 /* Adjust PART_DIE before generating a symbol for it.  This function
14142    may set the is_external flag or change the DIE's name.  */
14143
14144 static void
14145 fixup_partial_die (struct partial_die_info *part_die,
14146                    struct dwarf2_cu *cu)
14147 {
14148   /* Once we've fixed up a die, there's no point in doing so again.
14149      This also avoids a memory leak if we were to call
14150      guess_partial_die_structure_name multiple times.  */
14151   if (part_die->fixup_called)
14152     return;
14153
14154   /* If we found a reference attribute and the DIE has no name, try
14155      to find a name in the referred to DIE.  */
14156
14157   if (part_die->name == NULL && part_die->has_specification)
14158     {
14159       struct partial_die_info *spec_die;
14160
14161       spec_die = find_partial_die (part_die->spec_offset,
14162                                    part_die->spec_is_dwz, cu);
14163
14164       fixup_partial_die (spec_die, cu);
14165
14166       if (spec_die->name)
14167         {
14168           part_die->name = spec_die->name;
14169
14170           /* Copy DW_AT_external attribute if it is set.  */
14171           if (spec_die->is_external)
14172             part_die->is_external = spec_die->is_external;
14173         }
14174     }
14175
14176   /* Set default names for some unnamed DIEs.  */
14177
14178   if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
14179     part_die->name = CP_ANONYMOUS_NAMESPACE_STR;
14180
14181   /* If there is no parent die to provide a namespace, and there are
14182      children, see if we can determine the namespace from their linkage
14183      name.  */
14184   if (cu->language == language_cplus
14185       && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
14186       && part_die->die_parent == NULL
14187       && part_die->has_children
14188       && (part_die->tag == DW_TAG_class_type
14189           || part_die->tag == DW_TAG_structure_type
14190           || part_die->tag == DW_TAG_union_type))
14191     guess_partial_die_structure_name (part_die, cu);
14192
14193   /* GCC might emit a nameless struct or union that has a linkage
14194      name.  See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510.  */
14195   if (part_die->name == NULL
14196       && (part_die->tag == DW_TAG_class_type
14197           || part_die->tag == DW_TAG_interface_type
14198           || part_die->tag == DW_TAG_structure_type
14199           || part_die->tag == DW_TAG_union_type)
14200       && part_die->linkage_name != NULL)
14201     {
14202       char *demangled;
14203
14204       demangled = gdb_demangle (part_die->linkage_name, DMGL_TYPES);
14205       if (demangled)
14206         {
14207           const char *base;
14208
14209           /* Strip any leading namespaces/classes, keep only the base name.
14210              DW_AT_name for named DIEs does not contain the prefixes.  */
14211           base = strrchr (demangled, ':');
14212           if (base && base > demangled && base[-1] == ':')
14213             base++;
14214           else
14215             base = demangled;
14216
14217           part_die->name = obstack_copy0 (&cu->objfile->objfile_obstack,
14218                                           base, strlen (base));
14219           xfree (demangled);
14220         }
14221     }
14222
14223   part_die->fixup_called = 1;
14224 }
14225
14226 /* Read an attribute value described by an attribute form.  */
14227
14228 static const gdb_byte *
14229 read_attribute_value (const struct die_reader_specs *reader,
14230                       struct attribute *attr, unsigned form,
14231                       const gdb_byte *info_ptr)
14232 {
14233   struct dwarf2_cu *cu = reader->cu;
14234   bfd *abfd = reader->abfd;
14235   struct comp_unit_head *cu_header = &cu->header;
14236   unsigned int bytes_read;
14237   struct dwarf_block *blk;
14238
14239   attr->form = form;
14240   switch (form)
14241     {
14242     case DW_FORM_ref_addr:
14243       if (cu->header.version == 2)
14244         DW_UNSND (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
14245       else
14246         DW_UNSND (attr) = read_offset (abfd, info_ptr,
14247                                        &cu->header, &bytes_read);
14248       info_ptr += bytes_read;
14249       break;
14250     case DW_FORM_GNU_ref_alt:
14251       DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
14252       info_ptr += bytes_read;
14253       break;
14254     case DW_FORM_addr:
14255       DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
14256       info_ptr += bytes_read;
14257       break;
14258     case DW_FORM_block2:
14259       blk = dwarf_alloc_block (cu);
14260       blk->size = read_2_bytes (abfd, info_ptr);
14261       info_ptr += 2;
14262       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14263       info_ptr += blk->size;
14264       DW_BLOCK (attr) = blk;
14265       break;
14266     case DW_FORM_block4:
14267       blk = dwarf_alloc_block (cu);
14268       blk->size = read_4_bytes (abfd, info_ptr);
14269       info_ptr += 4;
14270       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14271       info_ptr += blk->size;
14272       DW_BLOCK (attr) = blk;
14273       break;
14274     case DW_FORM_data2:
14275       DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
14276       info_ptr += 2;
14277       break;
14278     case DW_FORM_data4:
14279       DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
14280       info_ptr += 4;
14281       break;
14282     case DW_FORM_data8:
14283       DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
14284       info_ptr += 8;
14285       break;
14286     case DW_FORM_sec_offset:
14287       DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
14288       info_ptr += bytes_read;
14289       break;
14290     case DW_FORM_string:
14291       DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
14292       DW_STRING_IS_CANONICAL (attr) = 0;
14293       info_ptr += bytes_read;
14294       break;
14295     case DW_FORM_strp:
14296       if (!cu->per_cu->is_dwz)
14297         {
14298           DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
14299                                                    &bytes_read);
14300           DW_STRING_IS_CANONICAL (attr) = 0;
14301           info_ptr += bytes_read;
14302           break;
14303         }
14304       /* FALLTHROUGH */
14305     case DW_FORM_GNU_strp_alt:
14306       {
14307         struct dwz_file *dwz = dwarf2_get_dwz_file ();
14308         LONGEST str_offset = read_offset (abfd, info_ptr, cu_header,
14309                                           &bytes_read);
14310
14311         DW_STRING (attr) = read_indirect_string_from_dwz (dwz, str_offset);
14312         DW_STRING_IS_CANONICAL (attr) = 0;
14313         info_ptr += bytes_read;
14314       }
14315       break;
14316     case DW_FORM_exprloc:
14317     case DW_FORM_block:
14318       blk = dwarf_alloc_block (cu);
14319       blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14320       info_ptr += bytes_read;
14321       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14322       info_ptr += blk->size;
14323       DW_BLOCK (attr) = blk;
14324       break;
14325     case DW_FORM_block1:
14326       blk = dwarf_alloc_block (cu);
14327       blk->size = read_1_byte (abfd, info_ptr);
14328       info_ptr += 1;
14329       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14330       info_ptr += blk->size;
14331       DW_BLOCK (attr) = blk;
14332       break;
14333     case DW_FORM_data1:
14334       DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
14335       info_ptr += 1;
14336       break;
14337     case DW_FORM_flag:
14338       DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
14339       info_ptr += 1;
14340       break;
14341     case DW_FORM_flag_present:
14342       DW_UNSND (attr) = 1;
14343       break;
14344     case DW_FORM_sdata:
14345       DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
14346       info_ptr += bytes_read;
14347       break;
14348     case DW_FORM_udata:
14349       DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14350       info_ptr += bytes_read;
14351       break;
14352     case DW_FORM_ref1:
14353       DW_UNSND (attr) = (cu->header.offset.sect_off
14354                          + read_1_byte (abfd, info_ptr));
14355       info_ptr += 1;
14356       break;
14357     case DW_FORM_ref2:
14358       DW_UNSND (attr) = (cu->header.offset.sect_off
14359                          + read_2_bytes (abfd, info_ptr));
14360       info_ptr += 2;
14361       break;
14362     case DW_FORM_ref4:
14363       DW_UNSND (attr) = (cu->header.offset.sect_off
14364                          + read_4_bytes (abfd, info_ptr));
14365       info_ptr += 4;
14366       break;
14367     case DW_FORM_ref8:
14368       DW_UNSND (attr) = (cu->header.offset.sect_off
14369                          + read_8_bytes (abfd, info_ptr));
14370       info_ptr += 8;
14371       break;
14372     case DW_FORM_ref_sig8:
14373       DW_SIGNATURE (attr) = read_8_bytes (abfd, info_ptr);
14374       info_ptr += 8;
14375       break;
14376     case DW_FORM_ref_udata:
14377       DW_UNSND (attr) = (cu->header.offset.sect_off
14378                          + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
14379       info_ptr += bytes_read;
14380       break;
14381     case DW_FORM_indirect:
14382       form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14383       info_ptr += bytes_read;
14384       info_ptr = read_attribute_value (reader, attr, form, info_ptr);
14385       break;
14386     case DW_FORM_GNU_addr_index:
14387       if (reader->dwo_file == NULL)
14388         {
14389           /* For now flag a hard error.
14390              Later we can turn this into a complaint.  */
14391           error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
14392                  dwarf_form_name (form),
14393                  bfd_get_filename (abfd));
14394         }
14395       DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr, &bytes_read);
14396       info_ptr += bytes_read;
14397       break;
14398     case DW_FORM_GNU_str_index:
14399       if (reader->dwo_file == NULL)
14400         {
14401           /* For now flag a hard error.
14402              Later we can turn this into a complaint if warranted.  */
14403           error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
14404                  dwarf_form_name (form),
14405                  bfd_get_filename (abfd));
14406         }
14407       {
14408         ULONGEST str_index =
14409           read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14410
14411         DW_STRING (attr) = read_str_index (reader, cu, str_index);
14412         DW_STRING_IS_CANONICAL (attr) = 0;
14413         info_ptr += bytes_read;
14414       }
14415       break;
14416     default:
14417       error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
14418              dwarf_form_name (form),
14419              bfd_get_filename (abfd));
14420     }
14421
14422   /* Super hack.  */
14423   if (cu->per_cu->is_dwz && is_ref_attr (attr))
14424     attr->form = DW_FORM_GNU_ref_alt;
14425
14426   /* We have seen instances where the compiler tried to emit a byte
14427      size attribute of -1 which ended up being encoded as an unsigned
14428      0xffffffff.  Although 0xffffffff is technically a valid size value,
14429      an object of this size seems pretty unlikely so we can relatively
14430      safely treat these cases as if the size attribute was invalid and
14431      treat them as zero by default.  */
14432   if (attr->name == DW_AT_byte_size
14433       && form == DW_FORM_data4
14434       && DW_UNSND (attr) >= 0xffffffff)
14435     {
14436       complaint
14437         (&symfile_complaints,
14438          _("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
14439          hex_string (DW_UNSND (attr)));
14440       DW_UNSND (attr) = 0;
14441     }
14442
14443   return info_ptr;
14444 }
14445
14446 /* Read an attribute described by an abbreviated attribute.  */
14447
14448 static const gdb_byte *
14449 read_attribute (const struct die_reader_specs *reader,
14450                 struct attribute *attr, struct attr_abbrev *abbrev,
14451                 const gdb_byte *info_ptr)
14452 {
14453   attr->name = abbrev->name;
14454   return read_attribute_value (reader, attr, abbrev->form, info_ptr);
14455 }
14456
14457 /* Read dwarf information from a buffer.  */
14458
14459 static unsigned int
14460 read_1_byte (bfd *abfd, const gdb_byte *buf)
14461 {
14462   return bfd_get_8 (abfd, buf);
14463 }
14464
14465 static int
14466 read_1_signed_byte (bfd *abfd, const gdb_byte *buf)
14467 {
14468   return bfd_get_signed_8 (abfd, buf);
14469 }
14470
14471 static unsigned int
14472 read_2_bytes (bfd *abfd, const gdb_byte *buf)
14473 {
14474   return bfd_get_16 (abfd, buf);
14475 }
14476
14477 static int
14478 read_2_signed_bytes (bfd *abfd, const gdb_byte *buf)
14479 {
14480   return bfd_get_signed_16 (abfd, buf);
14481 }
14482
14483 static unsigned int
14484 read_4_bytes (bfd *abfd, const gdb_byte *buf)
14485 {
14486   return bfd_get_32 (abfd, buf);
14487 }
14488
14489 static int
14490 read_4_signed_bytes (bfd *abfd, const gdb_byte *buf)
14491 {
14492   return bfd_get_signed_32 (abfd, buf);
14493 }
14494
14495 static ULONGEST
14496 read_8_bytes (bfd *abfd, const gdb_byte *buf)
14497 {
14498   return bfd_get_64 (abfd, buf);
14499 }
14500
14501 static CORE_ADDR
14502 read_address (bfd *abfd, const gdb_byte *buf, struct dwarf2_cu *cu,
14503               unsigned int *bytes_read)
14504 {
14505   struct comp_unit_head *cu_header = &cu->header;
14506   CORE_ADDR retval = 0;
14507
14508   if (cu_header->signed_addr_p)
14509     {
14510       switch (cu_header->addr_size)
14511         {
14512         case 2:
14513           retval = bfd_get_signed_16 (abfd, buf);
14514           break;
14515         case 4:
14516           retval = bfd_get_signed_32 (abfd, buf);
14517           break;
14518         case 8:
14519           retval = bfd_get_signed_64 (abfd, buf);
14520           break;
14521         default:
14522           internal_error (__FILE__, __LINE__,
14523                           _("read_address: bad switch, signed [in module %s]"),
14524                           bfd_get_filename (abfd));
14525         }
14526     }
14527   else
14528     {
14529       switch (cu_header->addr_size)
14530         {
14531         case 2:
14532           retval = bfd_get_16 (abfd, buf);
14533           break;
14534         case 4:
14535           retval = bfd_get_32 (abfd, buf);
14536           break;
14537         case 8:
14538           retval = bfd_get_64 (abfd, buf);
14539           break;
14540         default:
14541           internal_error (__FILE__, __LINE__,
14542                           _("read_address: bad switch, "
14543                             "unsigned [in module %s]"),
14544                           bfd_get_filename (abfd));
14545         }
14546     }
14547
14548   *bytes_read = cu_header->addr_size;
14549   return retval;
14550 }
14551
14552 /* Read the initial length from a section.  The (draft) DWARF 3
14553    specification allows the initial length to take up either 4 bytes
14554    or 12 bytes.  If the first 4 bytes are 0xffffffff, then the next 8
14555    bytes describe the length and all offsets will be 8 bytes in length
14556    instead of 4.
14557
14558    An older, non-standard 64-bit format is also handled by this
14559    function.  The older format in question stores the initial length
14560    as an 8-byte quantity without an escape value.  Lengths greater
14561    than 2^32 aren't very common which means that the initial 4 bytes
14562    is almost always zero.  Since a length value of zero doesn't make
14563    sense for the 32-bit format, this initial zero can be considered to
14564    be an escape value which indicates the presence of the older 64-bit
14565    format.  As written, the code can't detect (old format) lengths
14566    greater than 4GB.  If it becomes necessary to handle lengths
14567    somewhat larger than 4GB, we could allow other small values (such
14568    as the non-sensical values of 1, 2, and 3) to also be used as
14569    escape values indicating the presence of the old format.
14570
14571    The value returned via bytes_read should be used to increment the
14572    relevant pointer after calling read_initial_length().
14573
14574    [ Note:  read_initial_length() and read_offset() are based on the
14575      document entitled "DWARF Debugging Information Format", revision
14576      3, draft 8, dated November 19, 2001.  This document was obtained
14577      from:
14578
14579         http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
14580
14581      This document is only a draft and is subject to change.  (So beware.)
14582
14583      Details regarding the older, non-standard 64-bit format were
14584      determined empirically by examining 64-bit ELF files produced by
14585      the SGI toolchain on an IRIX 6.5 machine.
14586
14587      - Kevin, July 16, 2002
14588    ] */
14589
14590 static LONGEST
14591 read_initial_length (bfd *abfd, const gdb_byte *buf, unsigned int *bytes_read)
14592 {
14593   LONGEST length = bfd_get_32 (abfd, buf);
14594
14595   if (length == 0xffffffff)
14596     {
14597       length = bfd_get_64 (abfd, buf + 4);
14598       *bytes_read = 12;
14599     }
14600   else if (length == 0)
14601     {
14602       /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX.  */
14603       length = bfd_get_64 (abfd, buf);
14604       *bytes_read = 8;
14605     }
14606   else
14607     {
14608       *bytes_read = 4;
14609     }
14610
14611   return length;
14612 }
14613
14614 /* Cover function for read_initial_length.
14615    Returns the length of the object at BUF, and stores the size of the
14616    initial length in *BYTES_READ and stores the size that offsets will be in
14617    *OFFSET_SIZE.
14618    If the initial length size is not equivalent to that specified in
14619    CU_HEADER then issue a complaint.
14620    This is useful when reading non-comp-unit headers.  */
14621
14622 static LONGEST
14623 read_checked_initial_length_and_offset (bfd *abfd, const gdb_byte *buf,
14624                                         const struct comp_unit_head *cu_header,
14625                                         unsigned int *bytes_read,
14626                                         unsigned int *offset_size)
14627 {
14628   LONGEST length = read_initial_length (abfd, buf, bytes_read);
14629
14630   gdb_assert (cu_header->initial_length_size == 4
14631               || cu_header->initial_length_size == 8
14632               || cu_header->initial_length_size == 12);
14633
14634   if (cu_header->initial_length_size != *bytes_read)
14635     complaint (&symfile_complaints,
14636                _("intermixed 32-bit and 64-bit DWARF sections"));
14637
14638   *offset_size = (*bytes_read == 4) ? 4 : 8;
14639   return length;
14640 }
14641
14642 /* Read an offset from the data stream.  The size of the offset is
14643    given by cu_header->offset_size.  */
14644
14645 static LONGEST
14646 read_offset (bfd *abfd, const gdb_byte *buf,
14647              const struct comp_unit_head *cu_header,
14648              unsigned int *bytes_read)
14649 {
14650   LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
14651
14652   *bytes_read = cu_header->offset_size;
14653   return offset;
14654 }
14655
14656 /* Read an offset from the data stream.  */
14657
14658 static LONGEST
14659 read_offset_1 (bfd *abfd, const gdb_byte *buf, unsigned int offset_size)
14660 {
14661   LONGEST retval = 0;
14662
14663   switch (offset_size)
14664     {
14665     case 4:
14666       retval = bfd_get_32 (abfd, buf);
14667       break;
14668     case 8:
14669       retval = bfd_get_64 (abfd, buf);
14670       break;
14671     default:
14672       internal_error (__FILE__, __LINE__,
14673                       _("read_offset_1: bad switch [in module %s]"),
14674                       bfd_get_filename (abfd));
14675     }
14676
14677   return retval;
14678 }
14679
14680 static const gdb_byte *
14681 read_n_bytes (bfd *abfd, const gdb_byte *buf, unsigned int size)
14682 {
14683   /* If the size of a host char is 8 bits, we can return a pointer
14684      to the buffer, otherwise we have to copy the data to a buffer
14685      allocated on the temporary obstack.  */
14686   gdb_assert (HOST_CHAR_BIT == 8);
14687   return buf;
14688 }
14689
14690 static const char *
14691 read_direct_string (bfd *abfd, const gdb_byte *buf,
14692                     unsigned int *bytes_read_ptr)
14693 {
14694   /* If the size of a host char is 8 bits, we can return a pointer
14695      to the string, otherwise we have to copy the string to a buffer
14696      allocated on the temporary obstack.  */
14697   gdb_assert (HOST_CHAR_BIT == 8);
14698   if (*buf == '\0')
14699     {
14700       *bytes_read_ptr = 1;
14701       return NULL;
14702     }
14703   *bytes_read_ptr = strlen ((const char *) buf) + 1;
14704   return (const char *) buf;
14705 }
14706
14707 static const char *
14708 read_indirect_string_at_offset (bfd *abfd, LONGEST str_offset)
14709 {
14710   dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->str);
14711   if (dwarf2_per_objfile->str.buffer == NULL)
14712     error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
14713            bfd_get_filename (abfd));
14714   if (str_offset >= dwarf2_per_objfile->str.size)
14715     error (_("DW_FORM_strp pointing outside of "
14716              ".debug_str section [in module %s]"),
14717            bfd_get_filename (abfd));
14718   gdb_assert (HOST_CHAR_BIT == 8);
14719   if (dwarf2_per_objfile->str.buffer[str_offset] == '\0')
14720     return NULL;
14721   return (const char *) (dwarf2_per_objfile->str.buffer + str_offset);
14722 }
14723
14724 /* Read a string at offset STR_OFFSET in the .debug_str section from
14725    the .dwz file DWZ.  Throw an error if the offset is too large.  If
14726    the string consists of a single NUL byte, return NULL; otherwise
14727    return a pointer to the string.  */
14728
14729 static const char *
14730 read_indirect_string_from_dwz (struct dwz_file *dwz, LONGEST str_offset)
14731 {
14732   dwarf2_read_section (dwarf2_per_objfile->objfile, &dwz->str);
14733
14734   if (dwz->str.buffer == NULL)
14735     error (_("DW_FORM_GNU_strp_alt used without .debug_str "
14736              "section [in module %s]"),
14737            bfd_get_filename (dwz->dwz_bfd));
14738   if (str_offset >= dwz->str.size)
14739     error (_("DW_FORM_GNU_strp_alt pointing outside of "
14740              ".debug_str section [in module %s]"),
14741            bfd_get_filename (dwz->dwz_bfd));
14742   gdb_assert (HOST_CHAR_BIT == 8);
14743   if (dwz->str.buffer[str_offset] == '\0')
14744     return NULL;
14745   return (const char *) (dwz->str.buffer + str_offset);
14746 }
14747
14748 static const char *
14749 read_indirect_string (bfd *abfd, const gdb_byte *buf,
14750                       const struct comp_unit_head *cu_header,
14751                       unsigned int *bytes_read_ptr)
14752 {
14753   LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
14754
14755   return read_indirect_string_at_offset (abfd, str_offset);
14756 }
14757
14758 static ULONGEST
14759 read_unsigned_leb128 (bfd *abfd, const gdb_byte *buf,
14760                       unsigned int *bytes_read_ptr)
14761 {
14762   ULONGEST result;
14763   unsigned int num_read;
14764   int i, shift;
14765   unsigned char byte;
14766
14767   result = 0;
14768   shift = 0;
14769   num_read = 0;
14770   i = 0;
14771   while (1)
14772     {
14773       byte = bfd_get_8 (abfd, buf);
14774       buf++;
14775       num_read++;
14776       result |= ((ULONGEST) (byte & 127) << shift);
14777       if ((byte & 128) == 0)
14778         {
14779           break;
14780         }
14781       shift += 7;
14782     }
14783   *bytes_read_ptr = num_read;
14784   return result;
14785 }
14786
14787 static LONGEST
14788 read_signed_leb128 (bfd *abfd, const gdb_byte *buf,
14789                     unsigned int *bytes_read_ptr)
14790 {
14791   LONGEST result;
14792   int i, shift, num_read;
14793   unsigned char byte;
14794
14795   result = 0;
14796   shift = 0;
14797   num_read = 0;
14798   i = 0;
14799   while (1)
14800     {
14801       byte = bfd_get_8 (abfd, buf);
14802       buf++;
14803       num_read++;
14804       result |= ((LONGEST) (byte & 127) << shift);
14805       shift += 7;
14806       if ((byte & 128) == 0)
14807         {
14808           break;
14809         }
14810     }
14811   if ((shift < 8 * sizeof (result)) && (byte & 0x40))
14812     result |= -(((LONGEST) 1) << shift);
14813   *bytes_read_ptr = num_read;
14814   return result;
14815 }
14816
14817 /* Given index ADDR_INDEX in .debug_addr, fetch the value.
14818    ADDR_BASE is the DW_AT_GNU_addr_base attribute or zero.
14819    ADDR_SIZE is the size of addresses from the CU header.  */
14820
14821 static CORE_ADDR
14822 read_addr_index_1 (unsigned int addr_index, ULONGEST addr_base, int addr_size)
14823 {
14824   struct objfile *objfile = dwarf2_per_objfile->objfile;
14825   bfd *abfd = objfile->obfd;
14826   const gdb_byte *info_ptr;
14827
14828   dwarf2_read_section (objfile, &dwarf2_per_objfile->addr);
14829   if (dwarf2_per_objfile->addr.buffer == NULL)
14830     error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
14831            objfile->name);
14832   if (addr_base + addr_index * addr_size >= dwarf2_per_objfile->addr.size)
14833     error (_("DW_FORM_addr_index pointing outside of "
14834              ".debug_addr section [in module %s]"),
14835            objfile->name);
14836   info_ptr = (dwarf2_per_objfile->addr.buffer
14837               + addr_base + addr_index * addr_size);
14838   if (addr_size == 4)
14839     return bfd_get_32 (abfd, info_ptr);
14840   else
14841     return bfd_get_64 (abfd, info_ptr);
14842 }
14843
14844 /* Given index ADDR_INDEX in .debug_addr, fetch the value.  */
14845
14846 static CORE_ADDR
14847 read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
14848 {
14849   return read_addr_index_1 (addr_index, cu->addr_base, cu->header.addr_size);
14850 }
14851
14852 /* Given a pointer to an leb128 value, fetch the value from .debug_addr.  */
14853
14854 static CORE_ADDR
14855 read_addr_index_from_leb128 (struct dwarf2_cu *cu, const gdb_byte *info_ptr,
14856                              unsigned int *bytes_read)
14857 {
14858   bfd *abfd = cu->objfile->obfd;
14859   unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
14860
14861   return read_addr_index (cu, addr_index);
14862 }
14863
14864 /* Data structure to pass results from dwarf2_read_addr_index_reader
14865    back to dwarf2_read_addr_index.  */
14866
14867 struct dwarf2_read_addr_index_data
14868 {
14869   ULONGEST addr_base;
14870   int addr_size;
14871 };
14872
14873 /* die_reader_func for dwarf2_read_addr_index.  */
14874
14875 static void
14876 dwarf2_read_addr_index_reader (const struct die_reader_specs *reader,
14877                                const gdb_byte *info_ptr,
14878                                struct die_info *comp_unit_die,
14879                                int has_children,
14880                                void *data)
14881 {
14882   struct dwarf2_cu *cu = reader->cu;
14883   struct dwarf2_read_addr_index_data *aidata =
14884     (struct dwarf2_read_addr_index_data *) data;
14885
14886   aidata->addr_base = cu->addr_base;
14887   aidata->addr_size = cu->header.addr_size;
14888 }
14889
14890 /* Given an index in .debug_addr, fetch the value.
14891    NOTE: This can be called during dwarf expression evaluation,
14892    long after the debug information has been read, and thus per_cu->cu
14893    may no longer exist.  */
14894
14895 CORE_ADDR
14896 dwarf2_read_addr_index (struct dwarf2_per_cu_data *per_cu,
14897                         unsigned int addr_index)
14898 {
14899   struct objfile *objfile = per_cu->objfile;
14900   struct dwarf2_cu *cu = per_cu->cu;
14901   ULONGEST addr_base;
14902   int addr_size;
14903
14904   /* This is intended to be called from outside this file.  */
14905   dw2_setup (objfile);
14906
14907   /* We need addr_base and addr_size.
14908      If we don't have PER_CU->cu, we have to get it.
14909      Nasty, but the alternative is storing the needed info in PER_CU,
14910      which at this point doesn't seem justified: it's not clear how frequently
14911      it would get used and it would increase the size of every PER_CU.
14912      Entry points like dwarf2_per_cu_addr_size do a similar thing
14913      so we're not in uncharted territory here.
14914      Alas we need to be a bit more complicated as addr_base is contained
14915      in the DIE.
14916
14917      We don't need to read the entire CU(/TU).
14918      We just need the header and top level die.
14919
14920      IWBN to use the aging mechanism to let us lazily later discard the CU.
14921      For now we skip this optimization.  */
14922
14923   if (cu != NULL)
14924     {
14925       addr_base = cu->addr_base;
14926       addr_size = cu->header.addr_size;
14927     }
14928   else
14929     {
14930       struct dwarf2_read_addr_index_data aidata;
14931
14932       /* Note: We can't use init_cutu_and_read_dies_simple here,
14933          we need addr_base.  */
14934       init_cutu_and_read_dies (per_cu, NULL, 0, 0,
14935                                dwarf2_read_addr_index_reader, &aidata);
14936       addr_base = aidata.addr_base;
14937       addr_size = aidata.addr_size;
14938     }
14939
14940   return read_addr_index_1 (addr_index, addr_base, addr_size);
14941 }
14942
14943 /* Given a DW_AT_str_index, fetch the string.  */
14944
14945 static const char *
14946 read_str_index (const struct die_reader_specs *reader,
14947                 struct dwarf2_cu *cu, ULONGEST str_index)
14948 {
14949   struct objfile *objfile = dwarf2_per_objfile->objfile;
14950   const char *dwo_name = objfile->name;
14951   bfd *abfd = objfile->obfd;
14952   struct dwo_sections *sections = &reader->dwo_file->sections;
14953   const gdb_byte *info_ptr;
14954   ULONGEST str_offset;
14955
14956   dwarf2_read_section (objfile, &sections->str);
14957   dwarf2_read_section (objfile, &sections->str_offsets);
14958   if (sections->str.buffer == NULL)
14959     error (_("DW_FORM_str_index used without .debug_str.dwo section"
14960              " in CU at offset 0x%lx [in module %s]"),
14961            (long) cu->header.offset.sect_off, dwo_name);
14962   if (sections->str_offsets.buffer == NULL)
14963     error (_("DW_FORM_str_index used without .debug_str_offsets.dwo section"
14964              " in CU at offset 0x%lx [in module %s]"),
14965            (long) cu->header.offset.sect_off, dwo_name);
14966   if (str_index * cu->header.offset_size >= sections->str_offsets.size)
14967     error (_("DW_FORM_str_index pointing outside of .debug_str_offsets.dwo"
14968              " section in CU at offset 0x%lx [in module %s]"),
14969            (long) cu->header.offset.sect_off, dwo_name);
14970   info_ptr = (sections->str_offsets.buffer
14971               + str_index * cu->header.offset_size);
14972   if (cu->header.offset_size == 4)
14973     str_offset = bfd_get_32 (abfd, info_ptr);
14974   else
14975     str_offset = bfd_get_64 (abfd, info_ptr);
14976   if (str_offset >= sections->str.size)
14977     error (_("Offset from DW_FORM_str_index pointing outside of"
14978              " .debug_str.dwo section in CU at offset 0x%lx [in module %s]"),
14979            (long) cu->header.offset.sect_off, dwo_name);
14980   return (const char *) (sections->str.buffer + str_offset);
14981 }
14982
14983 /* Return the length of an LEB128 number in BUF.  */
14984
14985 static int
14986 leb128_size (const gdb_byte *buf)
14987 {
14988   const gdb_byte *begin = buf;
14989   gdb_byte byte;
14990
14991   while (1)
14992     {
14993       byte = *buf++;
14994       if ((byte & 128) == 0)
14995         return buf - begin;
14996     }
14997 }
14998
14999 static void
15000 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
15001 {
15002   switch (lang)
15003     {
15004     case DW_LANG_C89:
15005     case DW_LANG_C99:
15006     case DW_LANG_C:
15007     case DW_LANG_UPC:
15008       cu->language = language_c;
15009       break;
15010     case DW_LANG_C_plus_plus:
15011       cu->language = language_cplus;
15012       break;
15013     case DW_LANG_D:
15014       cu->language = language_d;
15015       break;
15016     case DW_LANG_Fortran77:
15017     case DW_LANG_Fortran90:
15018     case DW_LANG_Fortran95:
15019       cu->language = language_fortran;
15020       break;
15021     case DW_LANG_Go:
15022       cu->language = language_go;
15023       break;
15024     case DW_LANG_Mips_Assembler:
15025       cu->language = language_asm;
15026       break;
15027     case DW_LANG_Java:
15028       cu->language = language_java;
15029       break;
15030     case DW_LANG_Ada83:
15031     case DW_LANG_Ada95:
15032       cu->language = language_ada;
15033       break;
15034     case DW_LANG_Modula2:
15035       cu->language = language_m2;
15036       break;
15037     case DW_LANG_Pascal83:
15038       cu->language = language_pascal;
15039       break;
15040     case DW_LANG_ObjC:
15041       cu->language = language_objc;
15042       break;
15043     case DW_LANG_Cobol74:
15044     case DW_LANG_Cobol85:
15045     default:
15046       cu->language = language_minimal;
15047       break;
15048     }
15049   cu->language_defn = language_def (cu->language);
15050 }
15051
15052 /* Return the named attribute or NULL if not there.  */
15053
15054 static struct attribute *
15055 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
15056 {
15057   for (;;)
15058     {
15059       unsigned int i;
15060       struct attribute *spec = NULL;
15061
15062       for (i = 0; i < die->num_attrs; ++i)
15063         {
15064           if (die->attrs[i].name == name)
15065             return &die->attrs[i];
15066           if (die->attrs[i].name == DW_AT_specification
15067               || die->attrs[i].name == DW_AT_abstract_origin)
15068             spec = &die->attrs[i];
15069         }
15070
15071       if (!spec)
15072         break;
15073
15074       die = follow_die_ref (die, spec, &cu);
15075     }
15076
15077   return NULL;
15078 }
15079
15080 /* Return the named attribute or NULL if not there,
15081    but do not follow DW_AT_specification, etc.
15082    This is for use in contexts where we're reading .debug_types dies.
15083    Following DW_AT_specification, DW_AT_abstract_origin will take us
15084    back up the chain, and we want to go down.  */
15085
15086 static struct attribute *
15087 dwarf2_attr_no_follow (struct die_info *die, unsigned int name)
15088 {
15089   unsigned int i;
15090
15091   for (i = 0; i < die->num_attrs; ++i)
15092     if (die->attrs[i].name == name)
15093       return &die->attrs[i];
15094
15095   return NULL;
15096 }
15097
15098 /* Return non-zero iff the attribute NAME is defined for the given DIE,
15099    and holds a non-zero value.  This function should only be used for
15100    DW_FORM_flag or DW_FORM_flag_present attributes.  */
15101
15102 static int
15103 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
15104 {
15105   struct attribute *attr = dwarf2_attr (die, name, cu);
15106
15107   return (attr && DW_UNSND (attr));
15108 }
15109
15110 static int
15111 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
15112 {
15113   /* A DIE is a declaration if it has a DW_AT_declaration attribute
15114      which value is non-zero.  However, we have to be careful with
15115      DIEs having a DW_AT_specification attribute, because dwarf2_attr()
15116      (via dwarf2_flag_true_p) follows this attribute.  So we may
15117      end up accidently finding a declaration attribute that belongs
15118      to a different DIE referenced by the specification attribute,
15119      even though the given DIE does not have a declaration attribute.  */
15120   return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
15121           && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
15122 }
15123
15124 /* Return the die giving the specification for DIE, if there is
15125    one.  *SPEC_CU is the CU containing DIE on input, and the CU
15126    containing the return value on output.  If there is no
15127    specification, but there is an abstract origin, that is
15128    returned.  */
15129
15130 static struct die_info *
15131 die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
15132 {
15133   struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
15134                                              *spec_cu);
15135
15136   if (spec_attr == NULL)
15137     spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
15138
15139   if (spec_attr == NULL)
15140     return NULL;
15141   else
15142     return follow_die_ref (die, spec_attr, spec_cu);
15143 }
15144
15145 /* Free the line_header structure *LH, and any arrays and strings it
15146    refers to.
15147    NOTE: This is also used as a "cleanup" function.  */
15148
15149 static void
15150 free_line_header (struct line_header *lh)
15151 {
15152   if (lh->standard_opcode_lengths)
15153     xfree (lh->standard_opcode_lengths);
15154
15155   /* Remember that all the lh->file_names[i].name pointers are
15156      pointers into debug_line_buffer, and don't need to be freed.  */
15157   if (lh->file_names)
15158     xfree (lh->file_names);
15159
15160   /* Similarly for the include directory names.  */
15161   if (lh->include_dirs)
15162     xfree (lh->include_dirs);
15163
15164   xfree (lh);
15165 }
15166
15167 /* Add an entry to LH's include directory table.  */
15168
15169 static void
15170 add_include_dir (struct line_header *lh, const char *include_dir)
15171 {
15172   /* Grow the array if necessary.  */
15173   if (lh->include_dirs_size == 0)
15174     {
15175       lh->include_dirs_size = 1; /* for testing */
15176       lh->include_dirs = xmalloc (lh->include_dirs_size
15177                                   * sizeof (*lh->include_dirs));
15178     }
15179   else if (lh->num_include_dirs >= lh->include_dirs_size)
15180     {
15181       lh->include_dirs_size *= 2;
15182       lh->include_dirs = xrealloc (lh->include_dirs,
15183                                    (lh->include_dirs_size
15184                                     * sizeof (*lh->include_dirs)));
15185     }
15186
15187   lh->include_dirs[lh->num_include_dirs++] = include_dir;
15188 }
15189
15190 /* Add an entry to LH's file name table.  */
15191
15192 static void
15193 add_file_name (struct line_header *lh,
15194                const char *name,
15195                unsigned int dir_index,
15196                unsigned int mod_time,
15197                unsigned int length)
15198 {
15199   struct file_entry *fe;
15200
15201   /* Grow the array if necessary.  */
15202   if (lh->file_names_size == 0)
15203     {
15204       lh->file_names_size = 1; /* for testing */
15205       lh->file_names = xmalloc (lh->file_names_size
15206                                 * sizeof (*lh->file_names));
15207     }
15208   else if (lh->num_file_names >= lh->file_names_size)
15209     {
15210       lh->file_names_size *= 2;
15211       lh->file_names = xrealloc (lh->file_names,
15212                                  (lh->file_names_size
15213                                   * sizeof (*lh->file_names)));
15214     }
15215
15216   fe = &lh->file_names[lh->num_file_names++];
15217   fe->name = name;
15218   fe->dir_index = dir_index;
15219   fe->mod_time = mod_time;
15220   fe->length = length;
15221   fe->included_p = 0;
15222   fe->symtab = NULL;
15223 }
15224
15225 /* A convenience function to find the proper .debug_line section for a
15226    CU.  */
15227
15228 static struct dwarf2_section_info *
15229 get_debug_line_section (struct dwarf2_cu *cu)
15230 {
15231   struct dwarf2_section_info *section;
15232
15233   /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
15234      DWO file.  */
15235   if (cu->dwo_unit && cu->per_cu->is_debug_types)
15236     section = &cu->dwo_unit->dwo_file->sections.line;
15237   else if (cu->per_cu->is_dwz)
15238     {
15239       struct dwz_file *dwz = dwarf2_get_dwz_file ();
15240
15241       section = &dwz->line;
15242     }
15243   else
15244     section = &dwarf2_per_objfile->line;
15245
15246   return section;
15247 }
15248
15249 /* Read the statement program header starting at OFFSET in
15250    .debug_line, or .debug_line.dwo.  Return a pointer
15251    to a struct line_header, allocated using xmalloc.
15252
15253    NOTE: the strings in the include directory and file name tables of
15254    the returned object point into the dwarf line section buffer,
15255    and must not be freed.  */
15256
15257 static struct line_header *
15258 dwarf_decode_line_header (unsigned int offset, struct dwarf2_cu *cu)
15259 {
15260   struct cleanup *back_to;
15261   struct line_header *lh;
15262   const gdb_byte *line_ptr;
15263   unsigned int bytes_read, offset_size;
15264   int i;
15265   const char *cur_dir, *cur_file;
15266   struct dwarf2_section_info *section;
15267   bfd *abfd;
15268
15269   section = get_debug_line_section (cu);
15270   dwarf2_read_section (dwarf2_per_objfile->objfile, section);
15271   if (section->buffer == NULL)
15272     {
15273       if (cu->dwo_unit && cu->per_cu->is_debug_types)
15274         complaint (&symfile_complaints, _("missing .debug_line.dwo section"));
15275       else
15276         complaint (&symfile_complaints, _("missing .debug_line section"));
15277       return 0;
15278     }
15279
15280   /* We can't do this until we know the section is non-empty.
15281      Only then do we know we have such a section.  */
15282   abfd = section->asection->owner;
15283
15284   /* Make sure that at least there's room for the total_length field.
15285      That could be 12 bytes long, but we're just going to fudge that.  */
15286   if (offset + 4 >= section->size)
15287     {
15288       dwarf2_statement_list_fits_in_line_number_section_complaint ();
15289       return 0;
15290     }
15291
15292   lh = xmalloc (sizeof (*lh));
15293   memset (lh, 0, sizeof (*lh));
15294   back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
15295                           (void *) lh);
15296
15297   line_ptr = section->buffer + offset;
15298
15299   /* Read in the header.  */
15300   lh->total_length =
15301     read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
15302                                             &bytes_read, &offset_size);
15303   line_ptr += bytes_read;
15304   if (line_ptr + lh->total_length > (section->buffer + section->size))
15305     {
15306       dwarf2_statement_list_fits_in_line_number_section_complaint ();
15307       return 0;
15308     }
15309   lh->statement_program_end = line_ptr + lh->total_length;
15310   lh->version = read_2_bytes (abfd, line_ptr);
15311   line_ptr += 2;
15312   lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
15313   line_ptr += offset_size;
15314   lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
15315   line_ptr += 1;
15316   if (lh->version >= 4)
15317     {
15318       lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
15319       line_ptr += 1;
15320     }
15321   else
15322     lh->maximum_ops_per_instruction = 1;
15323
15324   if (lh->maximum_ops_per_instruction == 0)
15325     {
15326       lh->maximum_ops_per_instruction = 1;
15327       complaint (&symfile_complaints,
15328                  _("invalid maximum_ops_per_instruction "
15329                    "in `.debug_line' section"));
15330     }
15331
15332   lh->default_is_stmt = read_1_byte (abfd, line_ptr);
15333   line_ptr += 1;
15334   lh->line_base = read_1_signed_byte (abfd, line_ptr);
15335   line_ptr += 1;
15336   lh->line_range = read_1_byte (abfd, line_ptr);
15337   line_ptr += 1;
15338   lh->opcode_base = read_1_byte (abfd, line_ptr);
15339   line_ptr += 1;
15340   lh->standard_opcode_lengths
15341     = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
15342
15343   lh->standard_opcode_lengths[0] = 1;  /* This should never be used anyway.  */
15344   for (i = 1; i < lh->opcode_base; ++i)
15345     {
15346       lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
15347       line_ptr += 1;
15348     }
15349
15350   /* Read directory table.  */
15351   while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
15352     {
15353       line_ptr += bytes_read;
15354       add_include_dir (lh, cur_dir);
15355     }
15356   line_ptr += bytes_read;
15357
15358   /* Read file name table.  */
15359   while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
15360     {
15361       unsigned int dir_index, mod_time, length;
15362
15363       line_ptr += bytes_read;
15364       dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15365       line_ptr += bytes_read;
15366       mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15367       line_ptr += bytes_read;
15368       length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15369       line_ptr += bytes_read;
15370
15371       add_file_name (lh, cur_file, dir_index, mod_time, length);
15372     }
15373   line_ptr += bytes_read;
15374   lh->statement_program_start = line_ptr;
15375
15376   if (line_ptr > (section->buffer + section->size))
15377     complaint (&symfile_complaints,
15378                _("line number info header doesn't "
15379                  "fit in `.debug_line' section"));
15380
15381   discard_cleanups (back_to);
15382   return lh;
15383 }
15384
15385 /* Subroutine of dwarf_decode_lines to simplify it.
15386    Return the file name of the psymtab for included file FILE_INDEX
15387    in line header LH of PST.
15388    COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
15389    If space for the result is malloc'd, it will be freed by a cleanup.
15390    Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename.
15391
15392    The function creates dangling cleanup registration.  */
15393
15394 static const char *
15395 psymtab_include_file_name (const struct line_header *lh, int file_index,
15396                            const struct partial_symtab *pst,
15397                            const char *comp_dir)
15398 {
15399   const struct file_entry fe = lh->file_names [file_index];
15400   const char *include_name = fe.name;
15401   const char *include_name_to_compare = include_name;
15402   const char *dir_name = NULL;
15403   const char *pst_filename;
15404   char *copied_name = NULL;
15405   int file_is_pst;
15406
15407   if (fe.dir_index)
15408     dir_name = lh->include_dirs[fe.dir_index - 1];
15409
15410   if (!IS_ABSOLUTE_PATH (include_name)
15411       && (dir_name != NULL || comp_dir != NULL))
15412     {
15413       /* Avoid creating a duplicate psymtab for PST.
15414          We do this by comparing INCLUDE_NAME and PST_FILENAME.
15415          Before we do the comparison, however, we need to account
15416          for DIR_NAME and COMP_DIR.
15417          First prepend dir_name (if non-NULL).  If we still don't
15418          have an absolute path prepend comp_dir (if non-NULL).
15419          However, the directory we record in the include-file's
15420          psymtab does not contain COMP_DIR (to match the
15421          corresponding symtab(s)).
15422
15423          Example:
15424
15425          bash$ cd /tmp
15426          bash$ gcc -g ./hello.c
15427          include_name = "hello.c"
15428          dir_name = "."
15429          DW_AT_comp_dir = comp_dir = "/tmp"
15430          DW_AT_name = "./hello.c"  */
15431
15432       if (dir_name != NULL)
15433         {
15434           char *tem = concat (dir_name, SLASH_STRING,
15435                               include_name, (char *)NULL);
15436
15437           make_cleanup (xfree, tem);
15438           include_name = tem;
15439           include_name_to_compare = include_name;
15440         }
15441       if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
15442         {
15443           char *tem = concat (comp_dir, SLASH_STRING,
15444                               include_name, (char *)NULL);
15445
15446           make_cleanup (xfree, tem);
15447           include_name_to_compare = tem;
15448         }
15449     }
15450
15451   pst_filename = pst->filename;
15452   if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
15453     {
15454       copied_name = concat (pst->dirname, SLASH_STRING,
15455                             pst_filename, (char *)NULL);
15456       pst_filename = copied_name;
15457     }
15458
15459   file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
15460
15461   if (copied_name != NULL)
15462     xfree (copied_name);
15463
15464   if (file_is_pst)
15465     return NULL;
15466   return include_name;
15467 }
15468
15469 /* Ignore this record_line request.  */
15470
15471 static void
15472 noop_record_line (struct subfile *subfile, int line, CORE_ADDR pc)
15473 {
15474   return;
15475 }
15476
15477 /* Subroutine of dwarf_decode_lines to simplify it.
15478    Process the line number information in LH.  */
15479
15480 static void
15481 dwarf_decode_lines_1 (struct line_header *lh, const char *comp_dir,
15482                       struct dwarf2_cu *cu, struct partial_symtab *pst)
15483 {
15484   const gdb_byte *line_ptr, *extended_end;
15485   const gdb_byte *line_end;
15486   unsigned int bytes_read, extended_len;
15487   unsigned char op_code, extended_op, adj_opcode;
15488   CORE_ADDR baseaddr;
15489   struct objfile *objfile = cu->objfile;
15490   bfd *abfd = objfile->obfd;
15491   struct gdbarch *gdbarch = get_objfile_arch (objfile);
15492   const int decode_for_pst_p = (pst != NULL);
15493   struct subfile *last_subfile = NULL;
15494   void (*p_record_line) (struct subfile *subfile, int line, CORE_ADDR pc)
15495     = record_line;
15496
15497   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
15498
15499   line_ptr = lh->statement_program_start;
15500   line_end = lh->statement_program_end;
15501
15502   /* Read the statement sequences until there's nothing left.  */
15503   while (line_ptr < line_end)
15504     {
15505       /* state machine registers  */
15506       CORE_ADDR address = 0;
15507       unsigned int file = 1;
15508       unsigned int line = 1;
15509       unsigned int column = 0;
15510       int is_stmt = lh->default_is_stmt;
15511       int basic_block = 0;
15512       int end_sequence = 0;
15513       CORE_ADDR addr;
15514       unsigned char op_index = 0;
15515
15516       if (!decode_for_pst_p && lh->num_file_names >= file)
15517         {
15518           /* Start a subfile for the current file of the state machine.  */
15519           /* lh->include_dirs and lh->file_names are 0-based, but the
15520              directory and file name numbers in the statement program
15521              are 1-based.  */
15522           struct file_entry *fe = &lh->file_names[file - 1];
15523           const char *dir = NULL;
15524
15525           if (fe->dir_index)
15526             dir = lh->include_dirs[fe->dir_index - 1];
15527
15528           dwarf2_start_subfile (fe->name, dir, comp_dir);
15529         }
15530
15531       /* Decode the table.  */
15532       while (!end_sequence)
15533         {
15534           op_code = read_1_byte (abfd, line_ptr);
15535           line_ptr += 1;
15536           if (line_ptr > line_end)
15537             {
15538               dwarf2_debug_line_missing_end_sequence_complaint ();
15539               break;
15540             }
15541
15542           if (op_code >= lh->opcode_base)
15543             {
15544               /* Special operand.  */
15545               adj_opcode = op_code - lh->opcode_base;
15546               address += (((op_index + (adj_opcode / lh->line_range))
15547                            / lh->maximum_ops_per_instruction)
15548                           * lh->minimum_instruction_length);
15549               op_index = ((op_index + (adj_opcode / lh->line_range))
15550                           % lh->maximum_ops_per_instruction);
15551               line += lh->line_base + (adj_opcode % lh->line_range);
15552               if (lh->num_file_names < file || file == 0)
15553                 dwarf2_debug_line_missing_file_complaint ();
15554               /* For now we ignore lines not starting on an
15555                  instruction boundary.  */
15556               else if (op_index == 0)
15557                 {
15558                   lh->file_names[file - 1].included_p = 1;
15559                   if (!decode_for_pst_p && is_stmt)
15560                     {
15561                       if (last_subfile != current_subfile)
15562                         {
15563                           addr = gdbarch_addr_bits_remove (gdbarch, address);
15564                           if (last_subfile)
15565                             (*p_record_line) (last_subfile, 0, addr);
15566                           last_subfile = current_subfile;
15567                         }
15568                       /* Append row to matrix using current values.  */
15569                       addr = gdbarch_addr_bits_remove (gdbarch, address);
15570                       (*p_record_line) (current_subfile, line, addr);
15571                     }
15572                 }
15573               basic_block = 0;
15574             }
15575           else switch (op_code)
15576             {
15577             case DW_LNS_extended_op:
15578               extended_len = read_unsigned_leb128 (abfd, line_ptr,
15579                                                    &bytes_read);
15580               line_ptr += bytes_read;
15581               extended_end = line_ptr + extended_len;
15582               extended_op = read_1_byte (abfd, line_ptr);
15583               line_ptr += 1;
15584               switch (extended_op)
15585                 {
15586                 case DW_LNE_end_sequence:
15587                   p_record_line = record_line;
15588                   end_sequence = 1;
15589                   break;
15590                 case DW_LNE_set_address:
15591                   address = read_address (abfd, line_ptr, cu, &bytes_read);
15592
15593                   if (address == 0 && !dwarf2_per_objfile->has_section_at_zero)
15594                     {
15595                       /* This line table is for a function which has been
15596                          GCd by the linker.  Ignore it.  PR gdb/12528 */
15597
15598                       long line_offset
15599                         = line_ptr - get_debug_line_section (cu)->buffer;
15600
15601                       complaint (&symfile_complaints,
15602                                  _(".debug_line address at offset 0x%lx is 0 "
15603                                    "[in module %s]"),
15604                                  line_offset, objfile->name);
15605                       p_record_line = noop_record_line;
15606                     }
15607
15608                   op_index = 0;
15609                   line_ptr += bytes_read;
15610                   address += baseaddr;
15611                   break;
15612                 case DW_LNE_define_file:
15613                   {
15614                     const char *cur_file;
15615                     unsigned int dir_index, mod_time, length;
15616
15617                     cur_file = read_direct_string (abfd, line_ptr,
15618                                                    &bytes_read);
15619                     line_ptr += bytes_read;
15620                     dir_index =
15621                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15622                     line_ptr += bytes_read;
15623                     mod_time =
15624                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15625                     line_ptr += bytes_read;
15626                     length =
15627                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15628                     line_ptr += bytes_read;
15629                     add_file_name (lh, cur_file, dir_index, mod_time, length);
15630                   }
15631                   break;
15632                 case DW_LNE_set_discriminator:
15633                   /* The discriminator is not interesting to the debugger;
15634                      just ignore it.  */
15635                   line_ptr = extended_end;
15636                   break;
15637                 default:
15638                   complaint (&symfile_complaints,
15639                              _("mangled .debug_line section"));
15640                   return;
15641                 }
15642               /* Make sure that we parsed the extended op correctly.  If e.g.
15643                  we expected a different address size than the producer used,
15644                  we may have read the wrong number of bytes.  */
15645               if (line_ptr != extended_end)
15646                 {
15647                   complaint (&symfile_complaints,
15648                              _("mangled .debug_line section"));
15649                   return;
15650                 }
15651               break;
15652             case DW_LNS_copy:
15653               if (lh->num_file_names < file || file == 0)
15654                 dwarf2_debug_line_missing_file_complaint ();
15655               else
15656                 {
15657                   lh->file_names[file - 1].included_p = 1;
15658                   if (!decode_for_pst_p && is_stmt)
15659                     {
15660                       if (last_subfile != current_subfile)
15661                         {
15662                           addr = gdbarch_addr_bits_remove (gdbarch, address);
15663                           if (last_subfile)
15664                             (*p_record_line) (last_subfile, 0, addr);
15665                           last_subfile = current_subfile;
15666                         }
15667                       addr = gdbarch_addr_bits_remove (gdbarch, address);
15668                       (*p_record_line) (current_subfile, line, addr);
15669                     }
15670                 }
15671               basic_block = 0;
15672               break;
15673             case DW_LNS_advance_pc:
15674               {
15675                 CORE_ADDR adjust
15676                   = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15677
15678                 address += (((op_index + adjust)
15679                              / lh->maximum_ops_per_instruction)
15680                             * lh->minimum_instruction_length);
15681                 op_index = ((op_index + adjust)
15682                             % lh->maximum_ops_per_instruction);
15683                 line_ptr += bytes_read;
15684               }
15685               break;
15686             case DW_LNS_advance_line:
15687               line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
15688               line_ptr += bytes_read;
15689               break;
15690             case DW_LNS_set_file:
15691               {
15692                 /* The arrays lh->include_dirs and lh->file_names are
15693                    0-based, but the directory and file name numbers in
15694                    the statement program are 1-based.  */
15695                 struct file_entry *fe;
15696                 const char *dir = NULL;
15697
15698                 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15699                 line_ptr += bytes_read;
15700                 if (lh->num_file_names < file || file == 0)
15701                   dwarf2_debug_line_missing_file_complaint ();
15702                 else
15703                   {
15704                     fe = &lh->file_names[file - 1];
15705                     if (fe->dir_index)
15706                       dir = lh->include_dirs[fe->dir_index - 1];
15707                     if (!decode_for_pst_p)
15708                       {
15709                         last_subfile = current_subfile;
15710                         dwarf2_start_subfile (fe->name, dir, comp_dir);
15711                       }
15712                   }
15713               }
15714               break;
15715             case DW_LNS_set_column:
15716               column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15717               line_ptr += bytes_read;
15718               break;
15719             case DW_LNS_negate_stmt:
15720               is_stmt = (!is_stmt);
15721               break;
15722             case DW_LNS_set_basic_block:
15723               basic_block = 1;
15724               break;
15725             /* Add to the address register of the state machine the
15726                address increment value corresponding to special opcode
15727                255.  I.e., this value is scaled by the minimum
15728                instruction length since special opcode 255 would have
15729                scaled the increment.  */
15730             case DW_LNS_const_add_pc:
15731               {
15732                 CORE_ADDR adjust = (255 - lh->opcode_base) / lh->line_range;
15733
15734                 address += (((op_index + adjust)
15735                              / lh->maximum_ops_per_instruction)
15736                             * lh->minimum_instruction_length);
15737                 op_index = ((op_index + adjust)
15738                             % lh->maximum_ops_per_instruction);
15739               }
15740               break;
15741             case DW_LNS_fixed_advance_pc:
15742               address += read_2_bytes (abfd, line_ptr);
15743               op_index = 0;
15744               line_ptr += 2;
15745               break;
15746             default:
15747               {
15748                 /* Unknown standard opcode, ignore it.  */
15749                 int i;
15750
15751                 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
15752                   {
15753                     (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15754                     line_ptr += bytes_read;
15755                   }
15756               }
15757             }
15758         }
15759       if (lh->num_file_names < file || file == 0)
15760         dwarf2_debug_line_missing_file_complaint ();
15761       else
15762         {
15763           lh->file_names[file - 1].included_p = 1;
15764           if (!decode_for_pst_p)
15765             {
15766               addr = gdbarch_addr_bits_remove (gdbarch, address);
15767               (*p_record_line) (current_subfile, 0, addr);
15768             }
15769         }
15770     }
15771 }
15772
15773 /* Decode the Line Number Program (LNP) for the given line_header
15774    structure and CU.  The actual information extracted and the type
15775    of structures created from the LNP depends on the value of PST.
15776
15777    1. If PST is NULL, then this procedure uses the data from the program
15778       to create all necessary symbol tables, and their linetables.
15779
15780    2. If PST is not NULL, this procedure reads the program to determine
15781       the list of files included by the unit represented by PST, and
15782       builds all the associated partial symbol tables.
15783
15784    COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
15785    It is used for relative paths in the line table.
15786    NOTE: When processing partial symtabs (pst != NULL),
15787    comp_dir == pst->dirname.
15788
15789    NOTE: It is important that psymtabs have the same file name (via strcmp)
15790    as the corresponding symtab.  Since COMP_DIR is not used in the name of the
15791    symtab we don't use it in the name of the psymtabs we create.
15792    E.g. expand_line_sal requires this when finding psymtabs to expand.
15793    A good testcase for this is mb-inline.exp.  */
15794
15795 static void
15796 dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
15797                     struct dwarf2_cu *cu, struct partial_symtab *pst,
15798                     int want_line_info)
15799 {
15800   struct objfile *objfile = cu->objfile;
15801   const int decode_for_pst_p = (pst != NULL);
15802   struct subfile *first_subfile = current_subfile;
15803
15804   if (want_line_info)
15805     dwarf_decode_lines_1 (lh, comp_dir, cu, pst);
15806
15807   if (decode_for_pst_p)
15808     {
15809       int file_index;
15810
15811       /* Now that we're done scanning the Line Header Program, we can
15812          create the psymtab of each included file.  */
15813       for (file_index = 0; file_index < lh->num_file_names; file_index++)
15814         if (lh->file_names[file_index].included_p == 1)
15815           {
15816             const char *include_name =
15817               psymtab_include_file_name (lh, file_index, pst, comp_dir);
15818             if (include_name != NULL)
15819               dwarf2_create_include_psymtab (include_name, pst, objfile);
15820           }
15821     }
15822   else
15823     {
15824       /* Make sure a symtab is created for every file, even files
15825          which contain only variables (i.e. no code with associated
15826          line numbers).  */
15827       int i;
15828
15829       for (i = 0; i < lh->num_file_names; i++)
15830         {
15831           const char *dir = NULL;
15832           struct file_entry *fe;
15833
15834           fe = &lh->file_names[i];
15835           if (fe->dir_index)
15836             dir = lh->include_dirs[fe->dir_index - 1];
15837           dwarf2_start_subfile (fe->name, dir, comp_dir);
15838
15839           /* Skip the main file; we don't need it, and it must be
15840              allocated last, so that it will show up before the
15841              non-primary symtabs in the objfile's symtab list.  */
15842           if (current_subfile == first_subfile)
15843             continue;
15844
15845           if (current_subfile->symtab == NULL)
15846             current_subfile->symtab = allocate_symtab (current_subfile->name,
15847                                                        objfile);
15848           fe->symtab = current_subfile->symtab;
15849         }
15850     }
15851 }
15852
15853 /* Start a subfile for DWARF.  FILENAME is the name of the file and
15854    DIRNAME the name of the source directory which contains FILENAME
15855    or NULL if not known.  COMP_DIR is the compilation directory for the
15856    linetable's compilation unit or NULL if not known.
15857    This routine tries to keep line numbers from identical absolute and
15858    relative file names in a common subfile.
15859
15860    Using the `list' example from the GDB testsuite, which resides in
15861    /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
15862    of /srcdir/list0.c yields the following debugging information for list0.c:
15863
15864    DW_AT_name:          /srcdir/list0.c
15865    DW_AT_comp_dir:              /compdir
15866    files.files[0].name: list0.h
15867    files.files[0].dir:  /srcdir
15868    files.files[1].name: list0.c
15869    files.files[1].dir:  /srcdir
15870
15871    The line number information for list0.c has to end up in a single
15872    subfile, so that `break /srcdir/list0.c:1' works as expected.
15873    start_subfile will ensure that this happens provided that we pass the
15874    concatenation of files.files[1].dir and files.files[1].name as the
15875    subfile's name.  */
15876
15877 static void
15878 dwarf2_start_subfile (const char *filename, const char *dirname,
15879                       const char *comp_dir)
15880 {
15881   char *copy = NULL;
15882
15883   /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
15884      `start_symtab' will always pass the contents of DW_AT_comp_dir as
15885      second argument to start_subfile.  To be consistent, we do the
15886      same here.  In order not to lose the line information directory,
15887      we concatenate it to the filename when it makes sense.
15888      Note that the Dwarf3 standard says (speaking of filenames in line
15889      information): ``The directory index is ignored for file names
15890      that represent full path names''.  Thus ignoring dirname in the
15891      `else' branch below isn't an issue.  */
15892
15893   if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
15894     {
15895       copy = concat (dirname, SLASH_STRING, filename, (char *)NULL);
15896       filename = copy;
15897     }
15898
15899   start_subfile (filename, comp_dir);
15900
15901   if (copy != NULL)
15902     xfree (copy);
15903 }
15904
15905 /* Start a symtab for DWARF.
15906    NAME, COMP_DIR, LOW_PC are passed to start_symtab.  */
15907
15908 static void
15909 dwarf2_start_symtab (struct dwarf2_cu *cu,
15910                      const char *name, const char *comp_dir, CORE_ADDR low_pc)
15911 {
15912   start_symtab (name, comp_dir, low_pc);
15913   record_debugformat ("DWARF 2");
15914   record_producer (cu->producer);
15915
15916   /* We assume that we're processing GCC output.  */
15917   processing_gcc_compilation = 2;
15918
15919   cu->processing_has_namespace_info = 0;
15920 }
15921
15922 static void
15923 var_decode_location (struct attribute *attr, struct symbol *sym,
15924                      struct dwarf2_cu *cu)
15925 {
15926   struct objfile *objfile = cu->objfile;
15927   struct comp_unit_head *cu_header = &cu->header;
15928
15929   /* NOTE drow/2003-01-30: There used to be a comment and some special
15930      code here to turn a symbol with DW_AT_external and a
15931      SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol.  This was
15932      necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
15933      with some versions of binutils) where shared libraries could have
15934      relocations against symbols in their debug information - the
15935      minimal symbol would have the right address, but the debug info
15936      would not.  It's no longer necessary, because we will explicitly
15937      apply relocations when we read in the debug information now.  */
15938
15939   /* A DW_AT_location attribute with no contents indicates that a
15940      variable has been optimized away.  */
15941   if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
15942     {
15943       SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
15944       return;
15945     }
15946
15947   /* Handle one degenerate form of location expression specially, to
15948      preserve GDB's previous behavior when section offsets are
15949      specified.  If this is just a DW_OP_addr or DW_OP_GNU_addr_index
15950      then mark this symbol as LOC_STATIC.  */
15951
15952   if (attr_form_is_block (attr)
15953       && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
15954            && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
15955           || (DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
15956               && (DW_BLOCK (attr)->size
15957                   == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
15958     {
15959       unsigned int dummy;
15960
15961       if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
15962         SYMBOL_VALUE_ADDRESS (sym) =
15963           read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
15964       else
15965         SYMBOL_VALUE_ADDRESS (sym) =
15966           read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1, &dummy);
15967       SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
15968       fixup_symbol_section (sym, objfile);
15969       SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
15970                                               SYMBOL_SECTION (sym));
15971       return;
15972     }
15973
15974   /* NOTE drow/2002-01-30: It might be worthwhile to have a static
15975      expression evaluator, and use LOC_COMPUTED only when necessary
15976      (i.e. when the value of a register or memory location is
15977      referenced, or a thread-local block, etc.).  Then again, it might
15978      not be worthwhile.  I'm assuming that it isn't unless performance
15979      or memory numbers show me otherwise.  */
15980
15981   dwarf2_symbol_mark_computed (attr, sym, cu, 0);
15982
15983   if (SYMBOL_COMPUTED_OPS (sym)->location_has_loclist)
15984     cu->has_loclist = 1;
15985 }
15986
15987 /* Given a pointer to a DWARF information entry, figure out if we need
15988    to make a symbol table entry for it, and if so, create a new entry
15989    and return a pointer to it.
15990    If TYPE is NULL, determine symbol type from the die, otherwise
15991    used the passed type.
15992    If SPACE is not NULL, use it to hold the new symbol.  If it is
15993    NULL, allocate a new symbol on the objfile's obstack.  */
15994
15995 static struct symbol *
15996 new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
15997                  struct symbol *space)
15998 {
15999   struct objfile *objfile = cu->objfile;
16000   struct symbol *sym = NULL;
16001   const char *name;
16002   struct attribute *attr = NULL;
16003   struct attribute *attr2 = NULL;
16004   CORE_ADDR baseaddr;
16005   struct pending **list_to_add = NULL;
16006
16007   int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
16008
16009   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
16010
16011   name = dwarf2_name (die, cu);
16012   if (name)
16013     {
16014       const char *linkagename;
16015       int suppress_add = 0;
16016
16017       if (space)
16018         sym = space;
16019       else
16020         sym = allocate_symbol (objfile);
16021       OBJSTAT (objfile, n_syms++);
16022
16023       /* Cache this symbol's name and the name's demangled form (if any).  */
16024       SYMBOL_SET_LANGUAGE (sym, cu->language, &objfile->objfile_obstack);
16025       linkagename = dwarf2_physname (name, die, cu);
16026       SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
16027
16028       /* Fortran does not have mangling standard and the mangling does differ
16029          between gfortran, iFort etc.  */
16030       if (cu->language == language_fortran
16031           && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
16032         symbol_set_demangled_name (&(sym->ginfo),
16033                                    dwarf2_full_name (name, die, cu),
16034                                    NULL);
16035
16036       /* Default assumptions.
16037          Use the passed type or decode it from the die.  */
16038       SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
16039       SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
16040       if (type != NULL)
16041         SYMBOL_TYPE (sym) = type;
16042       else
16043         SYMBOL_TYPE (sym) = die_type (die, cu);
16044       attr = dwarf2_attr (die,
16045                           inlined_func ? DW_AT_call_line : DW_AT_decl_line,
16046                           cu);
16047       if (attr)
16048         {
16049           SYMBOL_LINE (sym) = DW_UNSND (attr);
16050         }
16051
16052       attr = dwarf2_attr (die,
16053                           inlined_func ? DW_AT_call_file : DW_AT_decl_file,
16054                           cu);
16055       if (attr)
16056         {
16057           int file_index = DW_UNSND (attr);
16058
16059           if (cu->line_header == NULL
16060               || file_index > cu->line_header->num_file_names)
16061             complaint (&symfile_complaints,
16062                        _("file index out of range"));
16063           else if (file_index > 0)
16064             {
16065               struct file_entry *fe;
16066
16067               fe = &cu->line_header->file_names[file_index - 1];
16068               SYMBOL_SYMTAB (sym) = fe->symtab;
16069             }
16070         }
16071
16072       switch (die->tag)
16073         {
16074         case DW_TAG_label:
16075           attr = dwarf2_attr (die, DW_AT_low_pc, cu);
16076           if (attr)
16077             {
16078               SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
16079             }
16080           SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
16081           SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
16082           SYMBOL_ACLASS_INDEX (sym) = LOC_LABEL;
16083           add_symbol_to_list (sym, cu->list_in_scope);
16084           break;
16085         case DW_TAG_subprogram:
16086           /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
16087              finish_block.  */
16088           SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
16089           attr2 = dwarf2_attr (die, DW_AT_external, cu);
16090           if ((attr2 && (DW_UNSND (attr2) != 0))
16091               || cu->language == language_ada)
16092             {
16093               /* Subprograms marked external are stored as a global symbol.
16094                  Ada subprograms, whether marked external or not, are always
16095                  stored as a global symbol, because we want to be able to
16096                  access them globally.  For instance, we want to be able
16097                  to break on a nested subprogram without having to
16098                  specify the context.  */
16099               list_to_add = &global_symbols;
16100             }
16101           else
16102             {
16103               list_to_add = cu->list_in_scope;
16104             }
16105           break;
16106         case DW_TAG_inlined_subroutine:
16107           /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
16108              finish_block.  */
16109           SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
16110           SYMBOL_INLINED (sym) = 1;
16111           list_to_add = cu->list_in_scope;
16112           break;
16113         case DW_TAG_template_value_param:
16114           suppress_add = 1;
16115           /* Fall through.  */
16116         case DW_TAG_constant:
16117         case DW_TAG_variable:
16118         case DW_TAG_member:
16119           /* Compilation with minimal debug info may result in
16120              variables with missing type entries.  Change the
16121              misleading `void' type to something sensible.  */
16122           if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
16123             SYMBOL_TYPE (sym)
16124               = objfile_type (objfile)->nodebug_data_symbol;
16125
16126           attr = dwarf2_attr (die, DW_AT_const_value, cu);
16127           /* In the case of DW_TAG_member, we should only be called for
16128              static const members.  */
16129           if (die->tag == DW_TAG_member)
16130             {
16131               /* dwarf2_add_field uses die_is_declaration,
16132                  so we do the same.  */
16133               gdb_assert (die_is_declaration (die, cu));
16134               gdb_assert (attr);
16135             }
16136           if (attr)
16137             {
16138               dwarf2_const_value (attr, sym, cu);
16139               attr2 = dwarf2_attr (die, DW_AT_external, cu);
16140               if (!suppress_add)
16141                 {
16142                   if (attr2 && (DW_UNSND (attr2) != 0))
16143                     list_to_add = &global_symbols;
16144                   else
16145                     list_to_add = cu->list_in_scope;
16146                 }
16147               break;
16148             }
16149           attr = dwarf2_attr (die, DW_AT_location, cu);
16150           if (attr)
16151             {
16152               var_decode_location (attr, sym, cu);
16153               attr2 = dwarf2_attr (die, DW_AT_external, cu);
16154
16155               /* Fortran explicitly imports any global symbols to the local
16156                  scope by DW_TAG_common_block.  */
16157               if (cu->language == language_fortran && die->parent
16158                   && die->parent->tag == DW_TAG_common_block)
16159                 attr2 = NULL;
16160
16161               if (SYMBOL_CLASS (sym) == LOC_STATIC
16162                   && SYMBOL_VALUE_ADDRESS (sym) == 0
16163                   && !dwarf2_per_objfile->has_section_at_zero)
16164                 {
16165                   /* When a static variable is eliminated by the linker,
16166                      the corresponding debug information is not stripped
16167                      out, but the variable address is set to null;
16168                      do not add such variables into symbol table.  */
16169                 }
16170               else if (attr2 && (DW_UNSND (attr2) != 0))
16171                 {
16172                   /* Workaround gfortran PR debug/40040 - it uses
16173                      DW_AT_location for variables in -fPIC libraries which may
16174                      get overriden by other libraries/executable and get
16175                      a different address.  Resolve it by the minimal symbol
16176                      which may come from inferior's executable using copy
16177                      relocation.  Make this workaround only for gfortran as for
16178                      other compilers GDB cannot guess the minimal symbol
16179                      Fortran mangling kind.  */
16180                   if (cu->language == language_fortran && die->parent
16181                       && die->parent->tag == DW_TAG_module
16182                       && cu->producer
16183                       && strncmp (cu->producer, "GNU Fortran ", 12) == 0)
16184                     SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
16185
16186                   /* A variable with DW_AT_external is never static,
16187                      but it may be block-scoped.  */
16188                   list_to_add = (cu->list_in_scope == &file_symbols
16189                                  ? &global_symbols : cu->list_in_scope);
16190                 }
16191               else
16192                 list_to_add = cu->list_in_scope;
16193             }
16194           else
16195             {
16196               /* We do not know the address of this symbol.
16197                  If it is an external symbol and we have type information
16198                  for it, enter the symbol as a LOC_UNRESOLVED symbol.
16199                  The address of the variable will then be determined from
16200                  the minimal symbol table whenever the variable is
16201                  referenced.  */
16202               attr2 = dwarf2_attr (die, DW_AT_external, cu);
16203
16204               /* Fortran explicitly imports any global symbols to the local
16205                  scope by DW_TAG_common_block.  */
16206               if (cu->language == language_fortran && die->parent
16207                   && die->parent->tag == DW_TAG_common_block)
16208                 {
16209                   /* SYMBOL_CLASS doesn't matter here because
16210                      read_common_block is going to reset it.  */
16211                   if (!suppress_add)
16212                     list_to_add = cu->list_in_scope;
16213                 }
16214               else if (attr2 && (DW_UNSND (attr2) != 0)
16215                        && dwarf2_attr (die, DW_AT_type, cu) != NULL)
16216                 {
16217                   /* A variable with DW_AT_external is never static, but it
16218                      may be block-scoped.  */
16219                   list_to_add = (cu->list_in_scope == &file_symbols
16220                                  ? &global_symbols : cu->list_in_scope);
16221
16222                   SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
16223                 }
16224               else if (!die_is_declaration (die, cu))
16225                 {
16226                   /* Use the default LOC_OPTIMIZED_OUT class.  */
16227                   gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
16228                   if (!suppress_add)
16229                     list_to_add = cu->list_in_scope;
16230                 }
16231             }
16232           break;
16233         case DW_TAG_formal_parameter:
16234           /* If we are inside a function, mark this as an argument.  If
16235              not, we might be looking at an argument to an inlined function
16236              when we do not have enough information to show inlined frames;
16237              pretend it's a local variable in that case so that the user can
16238              still see it.  */
16239           if (context_stack_depth > 0
16240               && context_stack[context_stack_depth - 1].name != NULL)
16241             SYMBOL_IS_ARGUMENT (sym) = 1;
16242           attr = dwarf2_attr (die, DW_AT_location, cu);
16243           if (attr)
16244             {
16245               var_decode_location (attr, sym, cu);
16246             }
16247           attr = dwarf2_attr (die, DW_AT_const_value, cu);
16248           if (attr)
16249             {
16250               dwarf2_const_value (attr, sym, cu);
16251             }
16252
16253           list_to_add = cu->list_in_scope;
16254           break;
16255         case DW_TAG_unspecified_parameters:
16256           /* From varargs functions; gdb doesn't seem to have any
16257              interest in this information, so just ignore it for now.
16258              (FIXME?) */
16259           break;
16260         case DW_TAG_template_type_param:
16261           suppress_add = 1;
16262           /* Fall through.  */
16263         case DW_TAG_class_type:
16264         case DW_TAG_interface_type:
16265         case DW_TAG_structure_type:
16266         case DW_TAG_union_type:
16267         case DW_TAG_set_type:
16268         case DW_TAG_enumeration_type:
16269           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16270           SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
16271
16272           {
16273             /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
16274                really ever be static objects: otherwise, if you try
16275                to, say, break of a class's method and you're in a file
16276                which doesn't mention that class, it won't work unless
16277                the check for all static symbols in lookup_symbol_aux
16278                saves you.  See the OtherFileClass tests in
16279                gdb.c++/namespace.exp.  */
16280
16281             if (!suppress_add)
16282               {
16283                 list_to_add = (cu->list_in_scope == &file_symbols
16284                                && (cu->language == language_cplus
16285                                    || cu->language == language_java)
16286                                ? &global_symbols : cu->list_in_scope);
16287
16288                 /* The semantics of C++ state that "struct foo {
16289                    ... }" also defines a typedef for "foo".  A Java
16290                    class declaration also defines a typedef for the
16291                    class.  */
16292                 if (cu->language == language_cplus
16293                     || cu->language == language_java
16294                     || cu->language == language_ada)
16295                   {
16296                     /* The symbol's name is already allocated along
16297                        with this objfile, so we don't need to
16298                        duplicate it for the type.  */
16299                     if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
16300                       TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
16301                   }
16302               }
16303           }
16304           break;
16305         case DW_TAG_typedef:
16306           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16307           SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
16308           list_to_add = cu->list_in_scope;
16309           break;
16310         case DW_TAG_base_type:
16311         case DW_TAG_subrange_type:
16312           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16313           SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
16314           list_to_add = cu->list_in_scope;
16315           break;
16316         case DW_TAG_enumerator:
16317           attr = dwarf2_attr (die, DW_AT_const_value, cu);
16318           if (attr)
16319             {
16320               dwarf2_const_value (attr, sym, cu);
16321             }
16322           {
16323             /* NOTE: carlton/2003-11-10: See comment above in the
16324                DW_TAG_class_type, etc. block.  */
16325
16326             list_to_add = (cu->list_in_scope == &file_symbols
16327                            && (cu->language == language_cplus
16328                                || cu->language == language_java)
16329                            ? &global_symbols : cu->list_in_scope);
16330           }
16331           break;
16332         case DW_TAG_namespace:
16333           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16334           list_to_add = &global_symbols;
16335           break;
16336         case DW_TAG_common_block:
16337           SYMBOL_ACLASS_INDEX (sym) = LOC_COMMON_BLOCK;
16338           SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
16339           add_symbol_to_list (sym, cu->list_in_scope);
16340           break;
16341         default:
16342           /* Not a tag we recognize.  Hopefully we aren't processing
16343              trash data, but since we must specifically ignore things
16344              we don't recognize, there is nothing else we should do at
16345              this point.  */
16346           complaint (&symfile_complaints, _("unsupported tag: '%s'"),
16347                      dwarf_tag_name (die->tag));
16348           break;
16349         }
16350
16351       if (suppress_add)
16352         {
16353           sym->hash_next = objfile->template_symbols;
16354           objfile->template_symbols = sym;
16355           list_to_add = NULL;
16356         }
16357
16358       if (list_to_add != NULL)
16359         add_symbol_to_list (sym, list_to_add);
16360
16361       /* For the benefit of old versions of GCC, check for anonymous
16362          namespaces based on the demangled name.  */
16363       if (!cu->processing_has_namespace_info
16364           && cu->language == language_cplus)
16365         cp_scan_for_anonymous_namespaces (sym, objfile);
16366     }
16367   return (sym);
16368 }
16369
16370 /* A wrapper for new_symbol_full that always allocates a new symbol.  */
16371
16372 static struct symbol *
16373 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
16374 {
16375   return new_symbol_full (die, type, cu, NULL);
16376 }
16377
16378 /* Given an attr with a DW_FORM_dataN value in host byte order,
16379    zero-extend it as appropriate for the symbol's type.  The DWARF
16380    standard (v4) is not entirely clear about the meaning of using
16381    DW_FORM_dataN for a constant with a signed type, where the type is
16382    wider than the data.  The conclusion of a discussion on the DWARF
16383    list was that this is unspecified.  We choose to always zero-extend
16384    because that is the interpretation long in use by GCC.  */
16385
16386 static gdb_byte *
16387 dwarf2_const_value_data (struct attribute *attr, struct obstack *obstack,
16388                          struct dwarf2_cu *cu, LONGEST *value, int bits)
16389 {
16390   struct objfile *objfile = cu->objfile;
16391   enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
16392                                 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
16393   LONGEST l = DW_UNSND (attr);
16394
16395   if (bits < sizeof (*value) * 8)
16396     {
16397       l &= ((LONGEST) 1 << bits) - 1;
16398       *value = l;
16399     }
16400   else if (bits == sizeof (*value) * 8)
16401     *value = l;
16402   else
16403     {
16404       gdb_byte *bytes = obstack_alloc (obstack, bits / 8);
16405       store_unsigned_integer (bytes, bits / 8, byte_order, l);
16406       return bytes;
16407     }
16408
16409   return NULL;
16410 }
16411
16412 /* Read a constant value from an attribute.  Either set *VALUE, or if
16413    the value does not fit in *VALUE, set *BYTES - either already
16414    allocated on the objfile obstack, or newly allocated on OBSTACK,
16415    or, set *BATON, if we translated the constant to a location
16416    expression.  */
16417
16418 static void
16419 dwarf2_const_value_attr (struct attribute *attr, struct type *type,
16420                          const char *name, struct obstack *obstack,
16421                          struct dwarf2_cu *cu,
16422                          LONGEST *value, const gdb_byte **bytes,
16423                          struct dwarf2_locexpr_baton **baton)
16424 {
16425   struct objfile *objfile = cu->objfile;
16426   struct comp_unit_head *cu_header = &cu->header;
16427   struct dwarf_block *blk;
16428   enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
16429                                 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
16430
16431   *value = 0;
16432   *bytes = NULL;
16433   *baton = NULL;
16434
16435   switch (attr->form)
16436     {
16437     case DW_FORM_addr:
16438     case DW_FORM_GNU_addr_index:
16439       {
16440         gdb_byte *data;
16441
16442         if (TYPE_LENGTH (type) != cu_header->addr_size)
16443           dwarf2_const_value_length_mismatch_complaint (name,
16444                                                         cu_header->addr_size,
16445                                                         TYPE_LENGTH (type));
16446         /* Symbols of this form are reasonably rare, so we just
16447            piggyback on the existing location code rather than writing
16448            a new implementation of symbol_computed_ops.  */
16449         *baton = obstack_alloc (obstack, sizeof (struct dwarf2_locexpr_baton));
16450         (*baton)->per_cu = cu->per_cu;
16451         gdb_assert ((*baton)->per_cu);
16452
16453         (*baton)->size = 2 + cu_header->addr_size;
16454         data = obstack_alloc (obstack, (*baton)->size);
16455         (*baton)->data = data;
16456
16457         data[0] = DW_OP_addr;
16458         store_unsigned_integer (&data[1], cu_header->addr_size,
16459                                 byte_order, DW_ADDR (attr));
16460         data[cu_header->addr_size + 1] = DW_OP_stack_value;
16461       }
16462       break;
16463     case DW_FORM_string:
16464     case DW_FORM_strp:
16465     case DW_FORM_GNU_str_index:
16466     case DW_FORM_GNU_strp_alt:
16467       /* DW_STRING is already allocated on the objfile obstack, point
16468          directly to it.  */
16469       *bytes = (const gdb_byte *) DW_STRING (attr);
16470       break;
16471     case DW_FORM_block1:
16472     case DW_FORM_block2:
16473     case DW_FORM_block4:
16474     case DW_FORM_block:
16475     case DW_FORM_exprloc:
16476       blk = DW_BLOCK (attr);
16477       if (TYPE_LENGTH (type) != blk->size)
16478         dwarf2_const_value_length_mismatch_complaint (name, blk->size,
16479                                                       TYPE_LENGTH (type));
16480       *bytes = blk->data;
16481       break;
16482
16483       /* The DW_AT_const_value attributes are supposed to carry the
16484          symbol's value "represented as it would be on the target
16485          architecture."  By the time we get here, it's already been
16486          converted to host endianness, so we just need to sign- or
16487          zero-extend it as appropriate.  */
16488     case DW_FORM_data1:
16489       *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 8);
16490       break;
16491     case DW_FORM_data2:
16492       *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 16);
16493       break;
16494     case DW_FORM_data4:
16495       *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 32);
16496       break;
16497     case DW_FORM_data8:
16498       *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 64);
16499       break;
16500
16501     case DW_FORM_sdata:
16502       *value = DW_SND (attr);
16503       break;
16504
16505     case DW_FORM_udata:
16506       *value = DW_UNSND (attr);
16507       break;
16508
16509     default:
16510       complaint (&symfile_complaints,
16511                  _("unsupported const value attribute form: '%s'"),
16512                  dwarf_form_name (attr->form));
16513       *value = 0;
16514       break;
16515     }
16516 }
16517
16518
16519 /* Copy constant value from an attribute to a symbol.  */
16520
16521 static void
16522 dwarf2_const_value (struct attribute *attr, struct symbol *sym,
16523                     struct dwarf2_cu *cu)
16524 {
16525   struct objfile *objfile = cu->objfile;
16526   struct comp_unit_head *cu_header = &cu->header;
16527   LONGEST value;
16528   const gdb_byte *bytes;
16529   struct dwarf2_locexpr_baton *baton;
16530
16531   dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
16532                            SYMBOL_PRINT_NAME (sym),
16533                            &objfile->objfile_obstack, cu,
16534                            &value, &bytes, &baton);
16535
16536   if (baton != NULL)
16537     {
16538       SYMBOL_LOCATION_BATON (sym) = baton;
16539       SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
16540     }
16541   else if (bytes != NULL)
16542      {
16543       SYMBOL_VALUE_BYTES (sym) = bytes;
16544       SYMBOL_ACLASS_INDEX (sym) = LOC_CONST_BYTES;
16545     }
16546   else
16547     {
16548       SYMBOL_VALUE (sym) = value;
16549       SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
16550     }
16551 }
16552
16553 /* Return the type of the die in question using its DW_AT_type attribute.  */
16554
16555 static struct type *
16556 die_type (struct die_info *die, struct dwarf2_cu *cu)
16557 {
16558   struct attribute *type_attr;
16559
16560   type_attr = dwarf2_attr (die, DW_AT_type, cu);
16561   if (!type_attr)
16562     {
16563       /* A missing DW_AT_type represents a void type.  */
16564       return objfile_type (cu->objfile)->builtin_void;
16565     }
16566
16567   return lookup_die_type (die, type_attr, cu);
16568 }
16569
16570 /* True iff CU's producer generates GNAT Ada auxiliary information
16571    that allows to find parallel types through that information instead
16572    of having to do expensive parallel lookups by type name.  */
16573
16574 static int
16575 need_gnat_info (struct dwarf2_cu *cu)
16576 {
16577   /* FIXME: brobecker/2010-10-12: As of now, only the AdaCore version
16578      of GNAT produces this auxiliary information, without any indication
16579      that it is produced.  Part of enhancing the FSF version of GNAT
16580      to produce that information will be to put in place an indicator
16581      that we can use in order to determine whether the descriptive type
16582      info is available or not.  One suggestion that has been made is
16583      to use a new attribute, attached to the CU die.  For now, assume
16584      that the descriptive type info is not available.  */
16585   return 0;
16586 }
16587
16588 /* Return the auxiliary type of the die in question using its
16589    DW_AT_GNAT_descriptive_type attribute.  Returns NULL if the
16590    attribute is not present.  */
16591
16592 static struct type *
16593 die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
16594 {
16595   struct attribute *type_attr;
16596
16597   type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
16598   if (!type_attr)
16599     return NULL;
16600
16601   return lookup_die_type (die, type_attr, cu);
16602 }
16603
16604 /* If DIE has a descriptive_type attribute, then set the TYPE's
16605    descriptive type accordingly.  */
16606
16607 static void
16608 set_descriptive_type (struct type *type, struct die_info *die,
16609                       struct dwarf2_cu *cu)
16610 {
16611   struct type *descriptive_type = die_descriptive_type (die, cu);
16612
16613   if (descriptive_type)
16614     {
16615       ALLOCATE_GNAT_AUX_TYPE (type);
16616       TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
16617     }
16618 }
16619
16620 /* Return the containing type of the die in question using its
16621    DW_AT_containing_type attribute.  */
16622
16623 static struct type *
16624 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
16625 {
16626   struct attribute *type_attr;
16627
16628   type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
16629   if (!type_attr)
16630     error (_("Dwarf Error: Problem turning containing type into gdb type "
16631              "[in module %s]"), cu->objfile->name);
16632
16633   return lookup_die_type (die, type_attr, cu);
16634 }
16635
16636 /* Return an error marker type to use for the ill formed type in DIE/CU.  */
16637
16638 static struct type *
16639 build_error_marker_type (struct dwarf2_cu *cu, struct die_info *die)
16640 {
16641   struct objfile *objfile = dwarf2_per_objfile->objfile;
16642   char *message, *saved;
16643
16644   message = xstrprintf (_("<unknown type in %s, CU 0x%x, DIE 0x%x>"),
16645                         objfile->name,
16646                         cu->header.offset.sect_off,
16647                         die->offset.sect_off);
16648   saved = obstack_copy0 (&objfile->objfile_obstack,
16649                          message, strlen (message));
16650   xfree (message);
16651
16652   return init_type (TYPE_CODE_ERROR, 0, 0, saved, objfile);
16653 }
16654
16655 /* Look up the type of DIE in CU using its type attribute ATTR.
16656    ATTR must be one of: DW_AT_type, DW_AT_GNAT_descriptive_type,
16657    DW_AT_containing_type.
16658    If there is no type substitute an error marker.  */
16659
16660 static struct type *
16661 lookup_die_type (struct die_info *die, struct attribute *attr,
16662                  struct dwarf2_cu *cu)
16663 {
16664   struct objfile *objfile = cu->objfile;
16665   struct type *this_type;
16666
16667   gdb_assert (attr->name == DW_AT_type
16668               || attr->name == DW_AT_GNAT_descriptive_type
16669               || attr->name == DW_AT_containing_type);
16670
16671   /* First see if we have it cached.  */
16672
16673   if (attr->form == DW_FORM_GNU_ref_alt)
16674     {
16675       struct dwarf2_per_cu_data *per_cu;
16676       sect_offset offset = dwarf2_get_ref_die_offset (attr);
16677
16678       per_cu = dwarf2_find_containing_comp_unit (offset, 1, cu->objfile);
16679       this_type = get_die_type_at_offset (offset, per_cu);
16680     }
16681   else if (is_ref_attr (attr))
16682     {
16683       sect_offset offset = dwarf2_get_ref_die_offset (attr);
16684
16685       this_type = get_die_type_at_offset (offset, cu->per_cu);
16686     }
16687   else if (attr->form == DW_FORM_ref_sig8)
16688     {
16689       ULONGEST signature = DW_SIGNATURE (attr);
16690
16691       return get_signatured_type (die, signature, cu);
16692     }
16693   else
16694     {
16695       complaint (&symfile_complaints,
16696                  _("Dwarf Error: Bad type attribute %s in DIE"
16697                    " at 0x%x [in module %s]"),
16698                  dwarf_attr_name (attr->name), die->offset.sect_off,
16699                  objfile->name);
16700       return build_error_marker_type (cu, die);
16701     }
16702
16703   /* If not cached we need to read it in.  */
16704
16705   if (this_type == NULL)
16706     {
16707       struct die_info *type_die = NULL;
16708       struct dwarf2_cu *type_cu = cu;
16709
16710       if (is_ref_attr (attr))
16711         type_die = follow_die_ref (die, attr, &type_cu);
16712       if (type_die == NULL)
16713         return build_error_marker_type (cu, die);
16714       /* If we find the type now, it's probably because the type came
16715          from an inter-CU reference and the type's CU got expanded before
16716          ours.  */
16717       this_type = read_type_die (type_die, type_cu);
16718     }
16719
16720   /* If we still don't have a type use an error marker.  */
16721
16722   if (this_type == NULL)
16723     return build_error_marker_type (cu, die);
16724
16725   return this_type;
16726 }
16727
16728 /* Return the type in DIE, CU.
16729    Returns NULL for invalid types.
16730
16731    This first does a lookup in die_type_hash,
16732    and only reads the die in if necessary.
16733
16734    NOTE: This can be called when reading in partial or full symbols.  */
16735
16736 static struct type *
16737 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
16738 {
16739   struct type *this_type;
16740
16741   this_type = get_die_type (die, cu);
16742   if (this_type)
16743     return this_type;
16744
16745   return read_type_die_1 (die, cu);
16746 }
16747
16748 /* Read the type in DIE, CU.
16749    Returns NULL for invalid types.  */
16750
16751 static struct type *
16752 read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
16753 {
16754   struct type *this_type = NULL;
16755
16756   switch (die->tag)
16757     {
16758     case DW_TAG_class_type:
16759     case DW_TAG_interface_type:
16760     case DW_TAG_structure_type:
16761     case DW_TAG_union_type:
16762       this_type = read_structure_type (die, cu);
16763       break;
16764     case DW_TAG_enumeration_type:
16765       this_type = read_enumeration_type (die, cu);
16766       break;
16767     case DW_TAG_subprogram:
16768     case DW_TAG_subroutine_type:
16769     case DW_TAG_inlined_subroutine:
16770       this_type = read_subroutine_type (die, cu);
16771       break;
16772     case DW_TAG_array_type:
16773       this_type = read_array_type (die, cu);
16774       break;
16775     case DW_TAG_set_type:
16776       this_type = read_set_type (die, cu);
16777       break;
16778     case DW_TAG_pointer_type:
16779       this_type = read_tag_pointer_type (die, cu);
16780       break;
16781     case DW_TAG_ptr_to_member_type:
16782       this_type = read_tag_ptr_to_member_type (die, cu);
16783       break;
16784     case DW_TAG_reference_type:
16785       this_type = read_tag_reference_type (die, cu);
16786       break;
16787     case DW_TAG_const_type:
16788       this_type = read_tag_const_type (die, cu);
16789       break;
16790     case DW_TAG_volatile_type:
16791       this_type = read_tag_volatile_type (die, cu);
16792       break;
16793     case DW_TAG_restrict_type:
16794       this_type = read_tag_restrict_type (die, cu);
16795       break;
16796     case DW_TAG_string_type:
16797       this_type = read_tag_string_type (die, cu);
16798       break;
16799     case DW_TAG_typedef:
16800       this_type = read_typedef (die, cu);
16801       break;
16802     case DW_TAG_subrange_type:
16803       this_type = read_subrange_type (die, cu);
16804       break;
16805     case DW_TAG_base_type:
16806       this_type = read_base_type (die, cu);
16807       break;
16808     case DW_TAG_unspecified_type:
16809       this_type = read_unspecified_type (die, cu);
16810       break;
16811     case DW_TAG_namespace:
16812       this_type = read_namespace_type (die, cu);
16813       break;
16814     case DW_TAG_module:
16815       this_type = read_module_type (die, cu);
16816       break;
16817     default:
16818       complaint (&symfile_complaints,
16819                  _("unexpected tag in read_type_die: '%s'"),
16820                  dwarf_tag_name (die->tag));
16821       break;
16822     }
16823
16824   return this_type;
16825 }
16826
16827 /* See if we can figure out if the class lives in a namespace.  We do
16828    this by looking for a member function; its demangled name will
16829    contain namespace info, if there is any.
16830    Return the computed name or NULL.
16831    Space for the result is allocated on the objfile's obstack.
16832    This is the full-die version of guess_partial_die_structure_name.
16833    In this case we know DIE has no useful parent.  */
16834
16835 static char *
16836 guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
16837 {
16838   struct die_info *spec_die;
16839   struct dwarf2_cu *spec_cu;
16840   struct die_info *child;
16841
16842   spec_cu = cu;
16843   spec_die = die_specification (die, &spec_cu);
16844   if (spec_die != NULL)
16845     {
16846       die = spec_die;
16847       cu = spec_cu;
16848     }
16849
16850   for (child = die->child;
16851        child != NULL;
16852        child = child->sibling)
16853     {
16854       if (child->tag == DW_TAG_subprogram)
16855         {
16856           struct attribute *attr;
16857
16858           attr = dwarf2_attr (child, DW_AT_linkage_name, cu);
16859           if (attr == NULL)
16860             attr = dwarf2_attr (child, DW_AT_MIPS_linkage_name, cu);
16861           if (attr != NULL)
16862             {
16863               char *actual_name
16864                 = language_class_name_from_physname (cu->language_defn,
16865                                                      DW_STRING (attr));
16866               char *name = NULL;
16867
16868               if (actual_name != NULL)
16869                 {
16870                   const char *die_name = dwarf2_name (die, cu);
16871
16872                   if (die_name != NULL
16873                       && strcmp (die_name, actual_name) != 0)
16874                     {
16875                       /* Strip off the class name from the full name.
16876                          We want the prefix.  */
16877                       int die_name_len = strlen (die_name);
16878                       int actual_name_len = strlen (actual_name);
16879
16880                       /* Test for '::' as a sanity check.  */
16881                       if (actual_name_len > die_name_len + 2
16882                           && actual_name[actual_name_len
16883                                          - die_name_len - 1] == ':')
16884                         name =
16885                           obstack_copy0 (&cu->objfile->objfile_obstack,
16886                                          actual_name,
16887                                          actual_name_len - die_name_len - 2);
16888                     }
16889                 }
16890               xfree (actual_name);
16891               return name;
16892             }
16893         }
16894     }
16895
16896   return NULL;
16897 }
16898
16899 /* GCC might emit a nameless typedef that has a linkage name.  Determine the
16900    prefix part in such case.  See
16901    http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510.  */
16902
16903 static char *
16904 anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
16905 {
16906   struct attribute *attr;
16907   char *base;
16908
16909   if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
16910       && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
16911     return NULL;
16912
16913   attr = dwarf2_attr (die, DW_AT_name, cu);
16914   if (attr != NULL && DW_STRING (attr) != NULL)
16915     return NULL;
16916
16917   attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
16918   if (attr == NULL)
16919     attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
16920   if (attr == NULL || DW_STRING (attr) == NULL)
16921     return NULL;
16922
16923   /* dwarf2_name had to be already called.  */
16924   gdb_assert (DW_STRING_IS_CANONICAL (attr));
16925
16926   /* Strip the base name, keep any leading namespaces/classes.  */
16927   base = strrchr (DW_STRING (attr), ':');
16928   if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
16929     return "";
16930
16931   return obstack_copy0 (&cu->objfile->objfile_obstack,
16932                         DW_STRING (attr), &base[-1] - DW_STRING (attr));
16933 }
16934
16935 /* Return the name of the namespace/class that DIE is defined within,
16936    or "" if we can't tell.  The caller should not xfree the result.
16937
16938    For example, if we're within the method foo() in the following
16939    code:
16940
16941    namespace N {
16942      class C {
16943        void foo () {
16944        }
16945      };
16946    }
16947
16948    then determine_prefix on foo's die will return "N::C".  */
16949
16950 static const char *
16951 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
16952 {
16953   struct die_info *parent, *spec_die;
16954   struct dwarf2_cu *spec_cu;
16955   struct type *parent_type;
16956   char *retval;
16957
16958   if (cu->language != language_cplus && cu->language != language_java
16959       && cu->language != language_fortran)
16960     return "";
16961
16962   retval = anonymous_struct_prefix (die, cu);
16963   if (retval)
16964     return retval;
16965
16966   /* We have to be careful in the presence of DW_AT_specification.
16967      For example, with GCC 3.4, given the code
16968
16969      namespace N {
16970        void foo() {
16971          // Definition of N::foo.
16972        }
16973      }
16974
16975      then we'll have a tree of DIEs like this:
16976
16977      1: DW_TAG_compile_unit
16978        2: DW_TAG_namespace        // N
16979          3: DW_TAG_subprogram     // declaration of N::foo
16980        4: DW_TAG_subprogram       // definition of N::foo
16981             DW_AT_specification   // refers to die #3
16982
16983      Thus, when processing die #4, we have to pretend that we're in
16984      the context of its DW_AT_specification, namely the contex of die
16985      #3.  */
16986   spec_cu = cu;
16987   spec_die = die_specification (die, &spec_cu);
16988   if (spec_die == NULL)
16989     parent = die->parent;
16990   else
16991     {
16992       parent = spec_die->parent;
16993       cu = spec_cu;
16994     }
16995
16996   if (parent == NULL)
16997     return "";
16998   else if (parent->building_fullname)
16999     {
17000       const char *name;
17001       const char *parent_name;
17002
17003       /* It has been seen on RealView 2.2 built binaries,
17004          DW_TAG_template_type_param types actually _defined_ as
17005          children of the parent class:
17006
17007          enum E {};
17008          template class <class Enum> Class{};
17009          Class<enum E> class_e;
17010
17011          1: DW_TAG_class_type (Class)
17012            2: DW_TAG_enumeration_type (E)
17013              3: DW_TAG_enumerator (enum1:0)
17014              3: DW_TAG_enumerator (enum2:1)
17015              ...
17016            2: DW_TAG_template_type_param
17017               DW_AT_type  DW_FORM_ref_udata (E)
17018
17019          Besides being broken debug info, it can put GDB into an
17020          infinite loop.  Consider:
17021
17022          When we're building the full name for Class<E>, we'll start
17023          at Class, and go look over its template type parameters,
17024          finding E.  We'll then try to build the full name of E, and
17025          reach here.  We're now trying to build the full name of E,
17026          and look over the parent DIE for containing scope.  In the
17027          broken case, if we followed the parent DIE of E, we'd again
17028          find Class, and once again go look at its template type
17029          arguments, etc., etc.  Simply don't consider such parent die
17030          as source-level parent of this die (it can't be, the language
17031          doesn't allow it), and break the loop here.  */
17032       name = dwarf2_name (die, cu);
17033       parent_name = dwarf2_name (parent, cu);
17034       complaint (&symfile_complaints,
17035                  _("template param type '%s' defined within parent '%s'"),
17036                  name ? name : "<unknown>",
17037                  parent_name ? parent_name : "<unknown>");
17038       return "";
17039     }
17040   else
17041     switch (parent->tag)
17042       {
17043       case DW_TAG_namespace:
17044         parent_type = read_type_die (parent, cu);
17045         /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
17046            DW_TAG_namespace DIEs with a name of "::" for the global namespace.
17047            Work around this problem here.  */
17048         if (cu->language == language_cplus
17049             && strcmp (TYPE_TAG_NAME (parent_type), "::") == 0)
17050           return "";
17051         /* We give a name to even anonymous namespaces.  */
17052         return TYPE_TAG_NAME (parent_type);
17053       case DW_TAG_class_type:
17054       case DW_TAG_interface_type:
17055       case DW_TAG_structure_type:
17056       case DW_TAG_union_type:
17057       case DW_TAG_module:
17058         parent_type = read_type_die (parent, cu);
17059         if (TYPE_TAG_NAME (parent_type) != NULL)
17060           return TYPE_TAG_NAME (parent_type);
17061         else
17062           /* An anonymous structure is only allowed non-static data
17063              members; no typedefs, no member functions, et cetera.
17064              So it does not need a prefix.  */
17065           return "";
17066       case DW_TAG_compile_unit:
17067       case DW_TAG_partial_unit:
17068         /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace.  Cope.  */
17069         if (cu->language == language_cplus
17070             && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
17071             && die->child != NULL
17072             && (die->tag == DW_TAG_class_type
17073                 || die->tag == DW_TAG_structure_type
17074                 || die->tag == DW_TAG_union_type))
17075           {
17076             char *name = guess_full_die_structure_name (die, cu);
17077             if (name != NULL)
17078               return name;
17079           }
17080         return "";
17081       default:
17082         return determine_prefix (parent, cu);
17083       }
17084 }
17085
17086 /* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
17087    with appropriate separator.  If PREFIX or SUFFIX is NULL or empty, then
17088    simply copy the SUFFIX or PREFIX, respectively.  If OBS is non-null, perform
17089    an obconcat, otherwise allocate storage for the result.  The CU argument is
17090    used to determine the language and hence, the appropriate separator.  */
17091
17092 #define MAX_SEP_LEN 7  /* strlen ("__") + strlen ("_MOD_")  */
17093
17094 static char *
17095 typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
17096                  int physname, struct dwarf2_cu *cu)
17097 {
17098   const char *lead = "";
17099   const char *sep;
17100
17101   if (suffix == NULL || suffix[0] == '\0'
17102       || prefix == NULL || prefix[0] == '\0')
17103     sep = "";
17104   else if (cu->language == language_java)
17105     sep = ".";
17106   else if (cu->language == language_fortran && physname)
17107     {
17108       /* This is gfortran specific mangling.  Normally DW_AT_linkage_name or
17109          DW_AT_MIPS_linkage_name is preferred and used instead.  */
17110
17111       lead = "__";
17112       sep = "_MOD_";
17113     }
17114   else
17115     sep = "::";
17116
17117   if (prefix == NULL)
17118     prefix = "";
17119   if (suffix == NULL)
17120     suffix = "";
17121
17122   if (obs == NULL)
17123     {
17124       char *retval
17125         = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
17126
17127       strcpy (retval, lead);
17128       strcat (retval, prefix);
17129       strcat (retval, sep);
17130       strcat (retval, suffix);
17131       return retval;
17132     }
17133   else
17134     {
17135       /* We have an obstack.  */
17136       return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
17137     }
17138 }
17139
17140 /* Return sibling of die, NULL if no sibling.  */
17141
17142 static struct die_info *
17143 sibling_die (struct die_info *die)
17144 {
17145   return die->sibling;
17146 }
17147
17148 /* Get name of a die, return NULL if not found.  */
17149
17150 static const char *
17151 dwarf2_canonicalize_name (const char *name, struct dwarf2_cu *cu,
17152                           struct obstack *obstack)
17153 {
17154   if (name && cu->language == language_cplus)
17155     {
17156       char *canon_name = cp_canonicalize_string (name);
17157
17158       if (canon_name != NULL)
17159         {
17160           if (strcmp (canon_name, name) != 0)
17161             name = obstack_copy0 (obstack, canon_name, strlen (canon_name));
17162           xfree (canon_name);
17163         }
17164     }
17165
17166   return name;
17167 }
17168
17169 /* Get name of a die, return NULL if not found.  */
17170
17171 static const char *
17172 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
17173 {
17174   struct attribute *attr;
17175
17176   attr = dwarf2_attr (die, DW_AT_name, cu);
17177   if ((!attr || !DW_STRING (attr))
17178       && die->tag != DW_TAG_class_type
17179       && die->tag != DW_TAG_interface_type
17180       && die->tag != DW_TAG_structure_type
17181       && die->tag != DW_TAG_union_type)
17182     return NULL;
17183
17184   switch (die->tag)
17185     {
17186     case DW_TAG_compile_unit:
17187     case DW_TAG_partial_unit:
17188       /* Compilation units have a DW_AT_name that is a filename, not
17189          a source language identifier.  */
17190     case DW_TAG_enumeration_type:
17191     case DW_TAG_enumerator:
17192       /* These tags always have simple identifiers already; no need
17193          to canonicalize them.  */
17194       return DW_STRING (attr);
17195
17196     case DW_TAG_subprogram:
17197       /* Java constructors will all be named "<init>", so return
17198          the class name when we see this special case.  */
17199       if (cu->language == language_java
17200           && DW_STRING (attr) != NULL
17201           && strcmp (DW_STRING (attr), "<init>") == 0)
17202         {
17203           struct dwarf2_cu *spec_cu = cu;
17204           struct die_info *spec_die;
17205
17206           /* GCJ will output '<init>' for Java constructor names.
17207              For this special case, return the name of the parent class.  */
17208
17209           /* GCJ may output suprogram DIEs with AT_specification set.
17210              If so, use the name of the specified DIE.  */
17211           spec_die = die_specification (die, &spec_cu);
17212           if (spec_die != NULL)
17213             return dwarf2_name (spec_die, spec_cu);
17214
17215           do
17216             {
17217               die = die->parent;
17218               if (die->tag == DW_TAG_class_type)
17219                 return dwarf2_name (die, cu);
17220             }
17221           while (die->tag != DW_TAG_compile_unit
17222                  && die->tag != DW_TAG_partial_unit);
17223         }
17224       break;
17225
17226     case DW_TAG_class_type:
17227     case DW_TAG_interface_type:
17228     case DW_TAG_structure_type:
17229     case DW_TAG_union_type:
17230       /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
17231          structures or unions.  These were of the form "._%d" in GCC 4.1,
17232          or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
17233          and GCC 4.4.  We work around this problem by ignoring these.  */
17234       if (attr && DW_STRING (attr)
17235           && (strncmp (DW_STRING (attr), "._", 2) == 0
17236               || strncmp (DW_STRING (attr), "<anonymous", 10) == 0))
17237         return NULL;
17238
17239       /* GCC might emit a nameless typedef that has a linkage name.  See
17240          http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510.  */
17241       if (!attr || DW_STRING (attr) == NULL)
17242         {
17243           char *demangled = NULL;
17244
17245           attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
17246           if (attr == NULL)
17247             attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
17248
17249           if (attr == NULL || DW_STRING (attr) == NULL)
17250             return NULL;
17251
17252           /* Avoid demangling DW_STRING (attr) the second time on a second
17253              call for the same DIE.  */
17254           if (!DW_STRING_IS_CANONICAL (attr))
17255             demangled = gdb_demangle (DW_STRING (attr), DMGL_TYPES);
17256
17257           if (demangled)
17258             {
17259               char *base;
17260
17261               /* FIXME: we already did this for the partial symbol... */
17262               DW_STRING (attr) = obstack_copy0 (&cu->objfile->objfile_obstack,
17263                                                 demangled, strlen (demangled));
17264               DW_STRING_IS_CANONICAL (attr) = 1;
17265               xfree (demangled);
17266
17267               /* Strip any leading namespaces/classes, keep only the base name.
17268                  DW_AT_name for named DIEs does not contain the prefixes.  */
17269               base = strrchr (DW_STRING (attr), ':');
17270               if (base && base > DW_STRING (attr) && base[-1] == ':')
17271                 return &base[1];
17272               else
17273                 return DW_STRING (attr);
17274             }
17275         }
17276       break;
17277
17278     default:
17279       break;
17280     }
17281
17282   if (!DW_STRING_IS_CANONICAL (attr))
17283     {
17284       DW_STRING (attr)
17285         = dwarf2_canonicalize_name (DW_STRING (attr), cu,
17286                                     &cu->objfile->objfile_obstack);
17287       DW_STRING_IS_CANONICAL (attr) = 1;
17288     }
17289   return DW_STRING (attr);
17290 }
17291
17292 /* Return the die that this die in an extension of, or NULL if there
17293    is none.  *EXT_CU is the CU containing DIE on input, and the CU
17294    containing the return value on output.  */
17295
17296 static struct die_info *
17297 dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
17298 {
17299   struct attribute *attr;
17300
17301   attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
17302   if (attr == NULL)
17303     return NULL;
17304
17305   return follow_die_ref (die, attr, ext_cu);
17306 }
17307
17308 /* Convert a DIE tag into its string name.  */
17309
17310 static const char *
17311 dwarf_tag_name (unsigned tag)
17312 {
17313   const char *name = get_DW_TAG_name (tag);
17314
17315   if (name == NULL)
17316     return "DW_TAG_<unknown>";
17317
17318   return name;
17319 }
17320
17321 /* Convert a DWARF attribute code into its string name.  */
17322
17323 static const char *
17324 dwarf_attr_name (unsigned attr)
17325 {
17326   const char *name;
17327
17328 #ifdef MIPS /* collides with DW_AT_HP_block_index */
17329   if (attr == DW_AT_MIPS_fde)
17330     return "DW_AT_MIPS_fde";
17331 #else
17332   if (attr == DW_AT_HP_block_index)
17333     return "DW_AT_HP_block_index";
17334 #endif
17335
17336   name = get_DW_AT_name (attr);
17337
17338   if (name == NULL)
17339     return "DW_AT_<unknown>";
17340
17341   return name;
17342 }
17343
17344 /* Convert a DWARF value form code into its string name.  */
17345
17346 static const char *
17347 dwarf_form_name (unsigned form)
17348 {
17349   const char *name = get_DW_FORM_name (form);
17350
17351   if (name == NULL)
17352     return "DW_FORM_<unknown>";
17353
17354   return name;
17355 }
17356
17357 static char *
17358 dwarf_bool_name (unsigned mybool)
17359 {
17360   if (mybool)
17361     return "TRUE";
17362   else
17363     return "FALSE";
17364 }
17365
17366 /* Convert a DWARF type code into its string name.  */
17367
17368 static const char *
17369 dwarf_type_encoding_name (unsigned enc)
17370 {
17371   const char *name = get_DW_ATE_name (enc);
17372
17373   if (name == NULL)
17374     return "DW_ATE_<unknown>";
17375
17376   return name;
17377 }
17378
17379 static void
17380 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
17381 {
17382   unsigned int i;
17383
17384   print_spaces (indent, f);
17385   fprintf_unfiltered (f, "Die: %s (abbrev %d, offset 0x%x)\n",
17386            dwarf_tag_name (die->tag), die->abbrev, die->offset.sect_off);
17387
17388   if (die->parent != NULL)
17389     {
17390       print_spaces (indent, f);
17391       fprintf_unfiltered (f, "  parent at offset: 0x%x\n",
17392                           die->parent->offset.sect_off);
17393     }
17394
17395   print_spaces (indent, f);
17396   fprintf_unfiltered (f, "  has children: %s\n",
17397            dwarf_bool_name (die->child != NULL));
17398
17399   print_spaces (indent, f);
17400   fprintf_unfiltered (f, "  attributes:\n");
17401
17402   for (i = 0; i < die->num_attrs; ++i)
17403     {
17404       print_spaces (indent, f);
17405       fprintf_unfiltered (f, "    %s (%s) ",
17406                dwarf_attr_name (die->attrs[i].name),
17407                dwarf_form_name (die->attrs[i].form));
17408
17409       switch (die->attrs[i].form)
17410         {
17411         case DW_FORM_addr:
17412         case DW_FORM_GNU_addr_index:
17413           fprintf_unfiltered (f, "address: ");
17414           fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
17415           break;
17416         case DW_FORM_block2:
17417         case DW_FORM_block4:
17418         case DW_FORM_block:
17419         case DW_FORM_block1:
17420           fprintf_unfiltered (f, "block: size %s",
17421                               pulongest (DW_BLOCK (&die->attrs[i])->size));
17422           break;
17423         case DW_FORM_exprloc:
17424           fprintf_unfiltered (f, "expression: size %s",
17425                               pulongest (DW_BLOCK (&die->attrs[i])->size));
17426           break;
17427         case DW_FORM_ref_addr:
17428           fprintf_unfiltered (f, "ref address: ");
17429           fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
17430           break;
17431         case DW_FORM_GNU_ref_alt:
17432           fprintf_unfiltered (f, "alt ref address: ");
17433           fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
17434           break;
17435         case DW_FORM_ref1:
17436         case DW_FORM_ref2:
17437         case DW_FORM_ref4:
17438         case DW_FORM_ref8:
17439         case DW_FORM_ref_udata:
17440           fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
17441                               (long) (DW_UNSND (&die->attrs[i])));
17442           break;
17443         case DW_FORM_data1:
17444         case DW_FORM_data2:
17445         case DW_FORM_data4:
17446         case DW_FORM_data8:
17447         case DW_FORM_udata:
17448         case DW_FORM_sdata:
17449           fprintf_unfiltered (f, "constant: %s",
17450                               pulongest (DW_UNSND (&die->attrs[i])));
17451           break;
17452         case DW_FORM_sec_offset:
17453           fprintf_unfiltered (f, "section offset: %s",
17454                               pulongest (DW_UNSND (&die->attrs[i])));
17455           break;
17456         case DW_FORM_ref_sig8:
17457           fprintf_unfiltered (f, "signature: %s",
17458                               hex_string (DW_SIGNATURE (&die->attrs[i])));
17459           break;
17460         case DW_FORM_string:
17461         case DW_FORM_strp:
17462         case DW_FORM_GNU_str_index:
17463         case DW_FORM_GNU_strp_alt:
17464           fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
17465                    DW_STRING (&die->attrs[i])
17466                    ? DW_STRING (&die->attrs[i]) : "",
17467                    DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
17468           break;
17469         case DW_FORM_flag:
17470           if (DW_UNSND (&die->attrs[i]))
17471             fprintf_unfiltered (f, "flag: TRUE");
17472           else
17473             fprintf_unfiltered (f, "flag: FALSE");
17474           break;
17475         case DW_FORM_flag_present:
17476           fprintf_unfiltered (f, "flag: TRUE");
17477           break;
17478         case DW_FORM_indirect:
17479           /* The reader will have reduced the indirect form to
17480              the "base form" so this form should not occur.  */
17481           fprintf_unfiltered (f, 
17482                               "unexpected attribute form: DW_FORM_indirect");
17483           break;
17484         default:
17485           fprintf_unfiltered (f, "unsupported attribute form: %d.",
17486                    die->attrs[i].form);
17487           break;
17488         }
17489       fprintf_unfiltered (f, "\n");
17490     }
17491 }
17492
17493 static void
17494 dump_die_for_error (struct die_info *die)
17495 {
17496   dump_die_shallow (gdb_stderr, 0, die);
17497 }
17498
17499 static void
17500 dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
17501 {
17502   int indent = level * 4;
17503
17504   gdb_assert (die != NULL);
17505
17506   if (level >= max_level)
17507     return;
17508
17509   dump_die_shallow (f, indent, die);
17510
17511   if (die->child != NULL)
17512     {
17513       print_spaces (indent, f);
17514       fprintf_unfiltered (f, "  Children:");
17515       if (level + 1 < max_level)
17516         {
17517           fprintf_unfiltered (f, "\n");
17518           dump_die_1 (f, level + 1, max_level, die->child);
17519         }
17520       else
17521         {
17522           fprintf_unfiltered (f,
17523                               " [not printed, max nesting level reached]\n");
17524         }
17525     }
17526
17527   if (die->sibling != NULL && level > 0)
17528     {
17529       dump_die_1 (f, level, max_level, die->sibling);
17530     }
17531 }
17532
17533 /* This is called from the pdie macro in gdbinit.in.
17534    It's not static so gcc will keep a copy callable from gdb.  */
17535
17536 void
17537 dump_die (struct die_info *die, int max_level)
17538 {
17539   dump_die_1 (gdb_stdlog, 0, max_level, die);
17540 }
17541
17542 static void
17543 store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
17544 {
17545   void **slot;
17546
17547   slot = htab_find_slot_with_hash (cu->die_hash, die, die->offset.sect_off,
17548                                    INSERT);
17549
17550   *slot = die;
17551 }
17552
17553 /* DW_ADDR is always stored already as sect_offset; despite for the forms
17554    besides DW_FORM_ref_addr it is stored as cu_offset in the DWARF file.  */
17555
17556 static int
17557 is_ref_attr (struct attribute *attr)
17558 {
17559   switch (attr->form)
17560     {
17561     case DW_FORM_ref_addr:
17562     case DW_FORM_ref1:
17563     case DW_FORM_ref2:
17564     case DW_FORM_ref4:
17565     case DW_FORM_ref8:
17566     case DW_FORM_ref_udata:
17567     case DW_FORM_GNU_ref_alt:
17568       return 1;
17569     default:
17570       return 0;
17571     }
17572 }
17573
17574 /* Return DIE offset of ATTR.  Return 0 with complaint if ATTR is not of the
17575    required kind.  */
17576
17577 static sect_offset
17578 dwarf2_get_ref_die_offset (struct attribute *attr)
17579 {
17580   sect_offset retval = { DW_UNSND (attr) };
17581
17582   if (is_ref_attr (attr))
17583     return retval;
17584
17585   retval.sect_off = 0;
17586   complaint (&symfile_complaints,
17587              _("unsupported die ref attribute form: '%s'"),
17588              dwarf_form_name (attr->form));
17589   return retval;
17590 }
17591
17592 /* Return the constant value held by ATTR.  Return DEFAULT_VALUE if
17593  * the value held by the attribute is not constant.  */
17594
17595 static LONGEST
17596 dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
17597 {
17598   if (attr->form == DW_FORM_sdata)
17599     return DW_SND (attr);
17600   else if (attr->form == DW_FORM_udata
17601            || attr->form == DW_FORM_data1
17602            || attr->form == DW_FORM_data2
17603            || attr->form == DW_FORM_data4
17604            || attr->form == DW_FORM_data8)
17605     return DW_UNSND (attr);
17606   else
17607     {
17608       complaint (&symfile_complaints,
17609                  _("Attribute value is not a constant (%s)"),
17610                  dwarf_form_name (attr->form));
17611       return default_value;
17612     }
17613 }
17614
17615 /* Follow reference or signature attribute ATTR of SRC_DIE.
17616    On entry *REF_CU is the CU of SRC_DIE.
17617    On exit *REF_CU is the CU of the result.  */
17618
17619 static struct die_info *
17620 follow_die_ref_or_sig (struct die_info *src_die, struct attribute *attr,
17621                        struct dwarf2_cu **ref_cu)
17622 {
17623   struct die_info *die;
17624
17625   if (is_ref_attr (attr))
17626     die = follow_die_ref (src_die, attr, ref_cu);
17627   else if (attr->form == DW_FORM_ref_sig8)
17628     die = follow_die_sig (src_die, attr, ref_cu);
17629   else
17630     {
17631       dump_die_for_error (src_die);
17632       error (_("Dwarf Error: Expected reference attribute [in module %s]"),
17633              (*ref_cu)->objfile->name);
17634     }
17635
17636   return die;
17637 }
17638
17639 /* Follow reference OFFSET.
17640    On entry *REF_CU is the CU of the source die referencing OFFSET.
17641    On exit *REF_CU is the CU of the result.
17642    Returns NULL if OFFSET is invalid.  */
17643
17644 static struct die_info *
17645 follow_die_offset (sect_offset offset, int offset_in_dwz,
17646                    struct dwarf2_cu **ref_cu)
17647 {
17648   struct die_info temp_die;
17649   struct dwarf2_cu *target_cu, *cu = *ref_cu;
17650
17651   gdb_assert (cu->per_cu != NULL);
17652
17653   target_cu = cu;
17654
17655   if (cu->per_cu->is_debug_types)
17656     {
17657       /* .debug_types CUs cannot reference anything outside their CU.
17658          If they need to, they have to reference a signatured type via
17659          DW_FORM_ref_sig8.  */
17660       if (! offset_in_cu_p (&cu->header, offset))
17661         return NULL;
17662     }
17663   else if (offset_in_dwz != cu->per_cu->is_dwz
17664            || ! offset_in_cu_p (&cu->header, offset))
17665     {
17666       struct dwarf2_per_cu_data *per_cu;
17667
17668       per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
17669                                                  cu->objfile);
17670
17671       /* If necessary, add it to the queue and load its DIEs.  */
17672       if (maybe_queue_comp_unit (cu, per_cu, cu->language))
17673         load_full_comp_unit (per_cu, cu->language);
17674
17675       target_cu = per_cu->cu;
17676     }
17677   else if (cu->dies == NULL)
17678     {
17679       /* We're loading full DIEs during partial symbol reading.  */
17680       gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
17681       load_full_comp_unit (cu->per_cu, language_minimal);
17682     }
17683
17684   *ref_cu = target_cu;
17685   temp_die.offset = offset;
17686   return htab_find_with_hash (target_cu->die_hash, &temp_die, offset.sect_off);
17687 }
17688
17689 /* Follow reference attribute ATTR of SRC_DIE.
17690    On entry *REF_CU is the CU of SRC_DIE.
17691    On exit *REF_CU is the CU of the result.  */
17692
17693 static struct die_info *
17694 follow_die_ref (struct die_info *src_die, struct attribute *attr,
17695                 struct dwarf2_cu **ref_cu)
17696 {
17697   sect_offset offset = dwarf2_get_ref_die_offset (attr);
17698   struct dwarf2_cu *cu = *ref_cu;
17699   struct die_info *die;
17700
17701   die = follow_die_offset (offset,
17702                            (attr->form == DW_FORM_GNU_ref_alt
17703                             || cu->per_cu->is_dwz),
17704                            ref_cu);
17705   if (!die)
17706     error (_("Dwarf Error: Cannot find DIE at 0x%x referenced from DIE "
17707            "at 0x%x [in module %s]"),
17708            offset.sect_off, src_die->offset.sect_off, cu->objfile->name);
17709
17710   return die;
17711 }
17712
17713 /* Return DWARF block referenced by DW_AT_location of DIE at OFFSET at PER_CU.
17714    Returned value is intended for DW_OP_call*.  Returned
17715    dwarf2_locexpr_baton->data has lifetime of PER_CU->OBJFILE.  */
17716
17717 struct dwarf2_locexpr_baton
17718 dwarf2_fetch_die_loc_sect_off (sect_offset offset,
17719                                struct dwarf2_per_cu_data *per_cu,
17720                                CORE_ADDR (*get_frame_pc) (void *baton),
17721                                void *baton)
17722 {
17723   struct dwarf2_cu *cu;
17724   struct die_info *die;
17725   struct attribute *attr;
17726   struct dwarf2_locexpr_baton retval;
17727
17728   dw2_setup (per_cu->objfile);
17729
17730   if (per_cu->cu == NULL)
17731     load_cu (per_cu);
17732   cu = per_cu->cu;
17733
17734   die = follow_die_offset (offset, per_cu->is_dwz, &cu);
17735   if (!die)
17736     error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
17737            offset.sect_off, per_cu->objfile->name);
17738
17739   attr = dwarf2_attr (die, DW_AT_location, cu);
17740   if (!attr)
17741     {
17742       /* DWARF: "If there is no such attribute, then there is no effect.".
17743          DATA is ignored if SIZE is 0.  */
17744
17745       retval.data = NULL;
17746       retval.size = 0;
17747     }
17748   else if (attr_form_is_section_offset (attr))
17749     {
17750       struct dwarf2_loclist_baton loclist_baton;
17751       CORE_ADDR pc = (*get_frame_pc) (baton);
17752       size_t size;
17753
17754       fill_in_loclist_baton (cu, &loclist_baton, attr);
17755
17756       retval.data = dwarf2_find_location_expression (&loclist_baton,
17757                                                      &size, pc);
17758       retval.size = size;
17759     }
17760   else
17761     {
17762       if (!attr_form_is_block (attr))
17763         error (_("Dwarf Error: DIE at 0x%x referenced in module %s "
17764                  "is neither DW_FORM_block* nor DW_FORM_exprloc"),
17765                offset.sect_off, per_cu->objfile->name);
17766
17767       retval.data = DW_BLOCK (attr)->data;
17768       retval.size = DW_BLOCK (attr)->size;
17769     }
17770   retval.per_cu = cu->per_cu;
17771
17772   age_cached_comp_units ();
17773
17774   return retval;
17775 }
17776
17777 /* Like dwarf2_fetch_die_loc_sect_off, but take a CU
17778    offset.  */
17779
17780 struct dwarf2_locexpr_baton
17781 dwarf2_fetch_die_loc_cu_off (cu_offset offset_in_cu,
17782                              struct dwarf2_per_cu_data *per_cu,
17783                              CORE_ADDR (*get_frame_pc) (void *baton),
17784                              void *baton)
17785 {
17786   sect_offset offset = { per_cu->offset.sect_off + offset_in_cu.cu_off };
17787
17788   return dwarf2_fetch_die_loc_sect_off (offset, per_cu, get_frame_pc, baton);
17789 }
17790
17791 /* Write a constant of a given type as target-ordered bytes into
17792    OBSTACK.  */
17793
17794 static const gdb_byte *
17795 write_constant_as_bytes (struct obstack *obstack,
17796                          enum bfd_endian byte_order,
17797                          struct type *type,
17798                          ULONGEST value,
17799                          LONGEST *len)
17800 {
17801   gdb_byte *result;
17802
17803   *len = TYPE_LENGTH (type);
17804   result = obstack_alloc (obstack, *len);
17805   store_unsigned_integer (result, *len, byte_order, value);
17806
17807   return result;
17808 }
17809
17810 /* If the DIE at OFFSET in PER_CU has a DW_AT_const_value, return a
17811    pointer to the constant bytes and set LEN to the length of the
17812    data.  If memory is needed, allocate it on OBSTACK.  If the DIE
17813    does not have a DW_AT_const_value, return NULL.  */
17814
17815 const gdb_byte *
17816 dwarf2_fetch_constant_bytes (sect_offset offset,
17817                              struct dwarf2_per_cu_data *per_cu,
17818                              struct obstack *obstack,
17819                              LONGEST *len)
17820 {
17821   struct dwarf2_cu *cu;
17822   struct die_info *die;
17823   struct attribute *attr;
17824   const gdb_byte *result = NULL;
17825   struct type *type;
17826   LONGEST value;
17827   enum bfd_endian byte_order;
17828
17829   dw2_setup (per_cu->objfile);
17830
17831   if (per_cu->cu == NULL)
17832     load_cu (per_cu);
17833   cu = per_cu->cu;
17834
17835   die = follow_die_offset (offset, per_cu->is_dwz, &cu);
17836   if (!die)
17837     error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
17838            offset.sect_off, per_cu->objfile->name);
17839
17840
17841   attr = dwarf2_attr (die, DW_AT_const_value, cu);
17842   if (attr == NULL)
17843     return NULL;
17844
17845   byte_order = (bfd_big_endian (per_cu->objfile->obfd)
17846                 ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
17847
17848   switch (attr->form)
17849     {
17850     case DW_FORM_addr:
17851     case DW_FORM_GNU_addr_index:
17852       {
17853         gdb_byte *tem;
17854
17855         *len = cu->header.addr_size;
17856         tem = obstack_alloc (obstack, *len);
17857         store_unsigned_integer (tem, *len, byte_order, DW_ADDR (attr));
17858         result = tem;
17859       }
17860       break;
17861     case DW_FORM_string:
17862     case DW_FORM_strp:
17863     case DW_FORM_GNU_str_index:
17864     case DW_FORM_GNU_strp_alt:
17865       /* DW_STRING is already allocated on the objfile obstack, point
17866          directly to it.  */
17867       result = (const gdb_byte *) DW_STRING (attr);
17868       *len = strlen (DW_STRING (attr));
17869       break;
17870     case DW_FORM_block1:
17871     case DW_FORM_block2:
17872     case DW_FORM_block4:
17873     case DW_FORM_block:
17874     case DW_FORM_exprloc:
17875       result = DW_BLOCK (attr)->data;
17876       *len = DW_BLOCK (attr)->size;
17877       break;
17878
17879       /* The DW_AT_const_value attributes are supposed to carry the
17880          symbol's value "represented as it would be on the target
17881          architecture."  By the time we get here, it's already been
17882          converted to host endianness, so we just need to sign- or
17883          zero-extend it as appropriate.  */
17884     case DW_FORM_data1:
17885       type = die_type (die, cu);
17886       result = dwarf2_const_value_data (attr, obstack, cu, &value, 8);
17887       if (result == NULL)
17888         result = write_constant_as_bytes (obstack, byte_order,
17889                                           type, value, len);
17890       break;
17891     case DW_FORM_data2:
17892       type = die_type (die, cu);
17893       result = dwarf2_const_value_data (attr, obstack, cu, &value, 16);
17894       if (result == NULL)
17895         result = write_constant_as_bytes (obstack, byte_order,
17896                                           type, value, len);
17897       break;
17898     case DW_FORM_data4:
17899       type = die_type (die, cu);
17900       result = dwarf2_const_value_data (attr, obstack, cu, &value, 32);
17901       if (result == NULL)
17902         result = write_constant_as_bytes (obstack, byte_order,
17903                                           type, value, len);
17904       break;
17905     case DW_FORM_data8:
17906       type = die_type (die, cu);
17907       result = dwarf2_const_value_data (attr, obstack, cu, &value, 64);
17908       if (result == NULL)
17909         result = write_constant_as_bytes (obstack, byte_order,
17910                                           type, value, len);
17911       break;
17912
17913     case DW_FORM_sdata:
17914       type = die_type (die, cu);
17915       result = write_constant_as_bytes (obstack, byte_order,
17916                                         type, DW_SND (attr), len);
17917       break;
17918
17919     case DW_FORM_udata:
17920       type = die_type (die, cu);
17921       result = write_constant_as_bytes (obstack, byte_order,
17922                                         type, DW_UNSND (attr), len);
17923       break;
17924
17925     default:
17926       complaint (&symfile_complaints,
17927                  _("unsupported const value attribute form: '%s'"),
17928                  dwarf_form_name (attr->form));
17929       break;
17930     }
17931
17932   return result;
17933 }
17934
17935 /* Return the type of the DIE at DIE_OFFSET in the CU named by
17936    PER_CU.  */
17937
17938 struct type *
17939 dwarf2_get_die_type (cu_offset die_offset,
17940                      struct dwarf2_per_cu_data *per_cu)
17941 {
17942   sect_offset die_offset_sect;
17943
17944   dw2_setup (per_cu->objfile);
17945
17946   die_offset_sect.sect_off = per_cu->offset.sect_off + die_offset.cu_off;
17947   return get_die_type_at_offset (die_offset_sect, per_cu);
17948 }
17949
17950 /* Follow type unit SIG_TYPE referenced by SRC_DIE.
17951    On entry *REF_CU is the CU of SRC_DIE.
17952    On exit *REF_CU is the CU of the result.
17953    Returns NULL if the referenced DIE isn't found.  */
17954
17955 static struct die_info *
17956 follow_die_sig_1 (struct die_info *src_die, struct signatured_type *sig_type,
17957                   struct dwarf2_cu **ref_cu)
17958 {
17959   struct objfile *objfile = (*ref_cu)->objfile;
17960   struct die_info temp_die;
17961   struct dwarf2_cu *sig_cu;
17962   struct die_info *die;
17963
17964   /* While it might be nice to assert sig_type->type == NULL here,
17965      we can get here for DW_AT_imported_declaration where we need
17966      the DIE not the type.  */
17967
17968   /* If necessary, add it to the queue and load its DIEs.  */
17969
17970   if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, language_minimal))
17971     read_signatured_type (sig_type);
17972
17973   gdb_assert (sig_type->per_cu.cu != NULL);
17974
17975   sig_cu = sig_type->per_cu.cu;
17976   gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
17977   temp_die.offset = sig_type->type_offset_in_section;
17978   die = htab_find_with_hash (sig_cu->die_hash, &temp_die,
17979                              temp_die.offset.sect_off);
17980   if (die)
17981     {
17982       /* For .gdb_index version 7 keep track of included TUs.
17983          http://sourceware.org/bugzilla/show_bug.cgi?id=15021.  */
17984       if (dwarf2_per_objfile->index_table != NULL
17985           && dwarf2_per_objfile->index_table->version <= 7)
17986         {
17987           VEC_safe_push (dwarf2_per_cu_ptr,
17988                          (*ref_cu)->per_cu->imported_symtabs,
17989                          sig_cu->per_cu);
17990         }
17991
17992       *ref_cu = sig_cu;
17993       return die;
17994     }
17995
17996   return NULL;
17997 }
17998
17999 /* Follow signatured type referenced by ATTR in SRC_DIE.
18000    On entry *REF_CU is the CU of SRC_DIE.
18001    On exit *REF_CU is the CU of the result.
18002    The result is the DIE of the type.
18003    If the referenced type cannot be found an error is thrown.  */
18004
18005 static struct die_info *
18006 follow_die_sig (struct die_info *src_die, struct attribute *attr,
18007                 struct dwarf2_cu **ref_cu)
18008 {
18009   ULONGEST signature = DW_SIGNATURE (attr);
18010   struct signatured_type *sig_type;
18011   struct die_info *die;
18012
18013   gdb_assert (attr->form == DW_FORM_ref_sig8);
18014
18015   sig_type = lookup_signatured_type (signature);
18016   /* sig_type will be NULL if the signatured type is missing from
18017      the debug info.  */
18018   if (sig_type == NULL)
18019     {
18020       error (_("Dwarf Error: Cannot find signatured DIE %s referenced"
18021                " from DIE at 0x%x [in module %s]"),
18022              hex_string (signature), src_die->offset.sect_off,
18023              (*ref_cu)->objfile->name);
18024     }
18025
18026   die = follow_die_sig_1 (src_die, sig_type, ref_cu);
18027   if (die == NULL)
18028     {
18029       dump_die_for_error (src_die);
18030       error (_("Dwarf Error: Problem reading signatured DIE %s referenced"
18031                " from DIE at 0x%x [in module %s]"),
18032              hex_string (signature), src_die->offset.sect_off,
18033              (*ref_cu)->objfile->name);
18034     }
18035
18036   return die;
18037 }
18038
18039 /* Get the type specified by SIGNATURE referenced in DIE/CU,
18040    reading in and processing the type unit if necessary.  */
18041
18042 static struct type *
18043 get_signatured_type (struct die_info *die, ULONGEST signature,
18044                      struct dwarf2_cu *cu)
18045 {
18046   struct signatured_type *sig_type;
18047   struct dwarf2_cu *type_cu;
18048   struct die_info *type_die;
18049   struct type *type;
18050
18051   sig_type = lookup_signatured_type (signature);
18052   /* sig_type will be NULL if the signatured type is missing from
18053      the debug info.  */
18054   if (sig_type == NULL)
18055     {
18056       complaint (&symfile_complaints,
18057                  _("Dwarf Error: Cannot find signatured DIE %s referenced"
18058                    " from DIE at 0x%x [in module %s]"),
18059                  hex_string (signature), die->offset.sect_off,
18060                  dwarf2_per_objfile->objfile->name);
18061       return build_error_marker_type (cu, die);
18062     }
18063
18064   /* If we already know the type we're done.  */
18065   if (sig_type->type != NULL)
18066     return sig_type->type;
18067
18068   type_cu = cu;
18069   type_die = follow_die_sig_1 (die, sig_type, &type_cu);
18070   if (type_die != NULL)
18071     {
18072       /* N.B. We need to call get_die_type to ensure only one type for this DIE
18073          is created.  This is important, for example, because for c++ classes
18074          we need TYPE_NAME set which is only done by new_symbol.  Blech.  */
18075       type = read_type_die (type_die, type_cu);
18076       if (type == NULL)
18077         {
18078           complaint (&symfile_complaints,
18079                      _("Dwarf Error: Cannot build signatured type %s"
18080                        " referenced from DIE at 0x%x [in module %s]"),
18081                      hex_string (signature), die->offset.sect_off,
18082                      dwarf2_per_objfile->objfile->name);
18083           type = build_error_marker_type (cu, die);
18084         }
18085     }
18086   else
18087     {
18088       complaint (&symfile_complaints,
18089                  _("Dwarf Error: Problem reading signatured DIE %s referenced"
18090                    " from DIE at 0x%x [in module %s]"),
18091                  hex_string (signature), die->offset.sect_off,
18092                  dwarf2_per_objfile->objfile->name);
18093       type = build_error_marker_type (cu, die);
18094     }
18095   sig_type->type = type;
18096
18097   return type;
18098 }
18099
18100 /* Get the type specified by the DW_AT_signature ATTR in DIE/CU,
18101    reading in and processing the type unit if necessary.  */
18102
18103 static struct type *
18104 get_DW_AT_signature_type (struct die_info *die, struct attribute *attr,
18105                           struct dwarf2_cu *cu) /* ARI: editCase function */
18106 {
18107   /* Yes, DW_AT_signature can use a non-ref_sig8 reference.  */
18108   if (is_ref_attr (attr))
18109     {
18110       struct dwarf2_cu *type_cu = cu;
18111       struct die_info *type_die = follow_die_ref (die, attr, &type_cu);
18112
18113       return read_type_die (type_die, type_cu);
18114     }
18115   else if (attr->form == DW_FORM_ref_sig8)
18116     {
18117       return get_signatured_type (die, DW_SIGNATURE (attr), cu);
18118     }
18119   else
18120     {
18121       complaint (&symfile_complaints,
18122                  _("Dwarf Error: DW_AT_signature has bad form %s in DIE"
18123                    " at 0x%x [in module %s]"),
18124                  dwarf_form_name (attr->form), die->offset.sect_off,
18125                  dwarf2_per_objfile->objfile->name);
18126       return build_error_marker_type (cu, die);
18127     }
18128 }
18129
18130 /* Load the DIEs associated with type unit PER_CU into memory.  */
18131
18132 static void
18133 load_full_type_unit (struct dwarf2_per_cu_data *per_cu)
18134 {
18135   struct signatured_type *sig_type;
18136
18137   /* Caller is responsible for ensuring type_unit_groups don't get here.  */
18138   gdb_assert (! IS_TYPE_UNIT_GROUP (per_cu));
18139
18140   /* We have the per_cu, but we need the signatured_type.
18141      Fortunately this is an easy translation.  */
18142   gdb_assert (per_cu->is_debug_types);
18143   sig_type = (struct signatured_type *) per_cu;
18144
18145   gdb_assert (per_cu->cu == NULL);
18146
18147   read_signatured_type (sig_type);
18148
18149   gdb_assert (per_cu->cu != NULL);
18150 }
18151
18152 /* die_reader_func for read_signatured_type.
18153    This is identical to load_full_comp_unit_reader,
18154    but is kept separate for now.  */
18155
18156 static void
18157 read_signatured_type_reader (const struct die_reader_specs *reader,
18158                              const gdb_byte *info_ptr,
18159                              struct die_info *comp_unit_die,
18160                              int has_children,
18161                              void *data)
18162 {
18163   struct dwarf2_cu *cu = reader->cu;
18164
18165   gdb_assert (cu->die_hash == NULL);
18166   cu->die_hash =
18167     htab_create_alloc_ex (cu->header.length / 12,
18168                           die_hash,
18169                           die_eq,
18170                           NULL,
18171                           &cu->comp_unit_obstack,
18172                           hashtab_obstack_allocate,
18173                           dummy_obstack_deallocate);
18174
18175   if (has_children)
18176     comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
18177                                                   &info_ptr, comp_unit_die);
18178   cu->dies = comp_unit_die;
18179   /* comp_unit_die is not stored in die_hash, no need.  */
18180
18181   /* We try not to read any attributes in this function, because not
18182      all CUs needed for references have been loaded yet, and symbol
18183      table processing isn't initialized.  But we have to set the CU language,
18184      or we won't be able to build types correctly.
18185      Similarly, if we do not read the producer, we can not apply
18186      producer-specific interpretation.  */
18187   prepare_one_comp_unit (cu, cu->dies, language_minimal);
18188 }
18189
18190 /* Read in a signatured type and build its CU and DIEs.
18191    If the type is a stub for the real type in a DWO file,
18192    read in the real type from the DWO file as well.  */
18193
18194 static void
18195 read_signatured_type (struct signatured_type *sig_type)
18196 {
18197   struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
18198
18199   gdb_assert (per_cu->is_debug_types);
18200   gdb_assert (per_cu->cu == NULL);
18201
18202   init_cutu_and_read_dies (per_cu, NULL, 0, 1,
18203                            read_signatured_type_reader, NULL);
18204 }
18205
18206 /* Decode simple location descriptions.
18207    Given a pointer to a dwarf block that defines a location, compute
18208    the location and return the value.
18209
18210    NOTE drow/2003-11-18: This function is called in two situations
18211    now: for the address of static or global variables (partial symbols
18212    only) and for offsets into structures which are expected to be
18213    (more or less) constant.  The partial symbol case should go away,
18214    and only the constant case should remain.  That will let this
18215    function complain more accurately.  A few special modes are allowed
18216    without complaint for global variables (for instance, global
18217    register values and thread-local values).
18218
18219    A location description containing no operations indicates that the
18220    object is optimized out.  The return value is 0 for that case.
18221    FIXME drow/2003-11-16: No callers check for this case any more; soon all
18222    callers will only want a very basic result and this can become a
18223    complaint.
18224
18225    Note that stack[0] is unused except as a default error return.  */
18226
18227 static CORE_ADDR
18228 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
18229 {
18230   struct objfile *objfile = cu->objfile;
18231   size_t i;
18232   size_t size = blk->size;
18233   const gdb_byte *data = blk->data;
18234   CORE_ADDR stack[64];
18235   int stacki;
18236   unsigned int bytes_read, unsnd;
18237   gdb_byte op;
18238
18239   i = 0;
18240   stacki = 0;
18241   stack[stacki] = 0;
18242   stack[++stacki] = 0;
18243
18244   while (i < size)
18245     {
18246       op = data[i++];
18247       switch (op)
18248         {
18249         case DW_OP_lit0:
18250         case DW_OP_lit1:
18251         case DW_OP_lit2:
18252         case DW_OP_lit3:
18253         case DW_OP_lit4:
18254         case DW_OP_lit5:
18255         case DW_OP_lit6:
18256         case DW_OP_lit7:
18257         case DW_OP_lit8:
18258         case DW_OP_lit9:
18259         case DW_OP_lit10:
18260         case DW_OP_lit11:
18261         case DW_OP_lit12:
18262         case DW_OP_lit13:
18263         case DW_OP_lit14:
18264         case DW_OP_lit15:
18265         case DW_OP_lit16:
18266         case DW_OP_lit17:
18267         case DW_OP_lit18:
18268         case DW_OP_lit19:
18269         case DW_OP_lit20:
18270         case DW_OP_lit21:
18271         case DW_OP_lit22:
18272         case DW_OP_lit23:
18273         case DW_OP_lit24:
18274         case DW_OP_lit25:
18275         case DW_OP_lit26:
18276         case DW_OP_lit27:
18277         case DW_OP_lit28:
18278         case DW_OP_lit29:
18279         case DW_OP_lit30:
18280         case DW_OP_lit31:
18281           stack[++stacki] = op - DW_OP_lit0;
18282           break;
18283
18284         case DW_OP_reg0:
18285         case DW_OP_reg1:
18286         case DW_OP_reg2:
18287         case DW_OP_reg3:
18288         case DW_OP_reg4:
18289         case DW_OP_reg5:
18290         case DW_OP_reg6:
18291         case DW_OP_reg7:
18292         case DW_OP_reg8:
18293         case DW_OP_reg9:
18294         case DW_OP_reg10:
18295         case DW_OP_reg11:
18296         case DW_OP_reg12:
18297         case DW_OP_reg13:
18298         case DW_OP_reg14:
18299         case DW_OP_reg15:
18300         case DW_OP_reg16:
18301         case DW_OP_reg17:
18302         case DW_OP_reg18:
18303         case DW_OP_reg19:
18304         case DW_OP_reg20:
18305         case DW_OP_reg21:
18306         case DW_OP_reg22:
18307         case DW_OP_reg23:
18308         case DW_OP_reg24:
18309         case DW_OP_reg25:
18310         case DW_OP_reg26:
18311         case DW_OP_reg27:
18312         case DW_OP_reg28:
18313         case DW_OP_reg29:
18314         case DW_OP_reg30:
18315         case DW_OP_reg31:
18316           stack[++stacki] = op - DW_OP_reg0;
18317           if (i < size)
18318             dwarf2_complex_location_expr_complaint ();
18319           break;
18320
18321         case DW_OP_regx:
18322           unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
18323           i += bytes_read;
18324           stack[++stacki] = unsnd;
18325           if (i < size)
18326             dwarf2_complex_location_expr_complaint ();
18327           break;
18328
18329         case DW_OP_addr:
18330           stack[++stacki] = read_address (objfile->obfd, &data[i],
18331                                           cu, &bytes_read);
18332           i += bytes_read;
18333           break;
18334
18335         case DW_OP_const1u:
18336           stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
18337           i += 1;
18338           break;
18339
18340         case DW_OP_const1s:
18341           stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
18342           i += 1;
18343           break;
18344
18345         case DW_OP_const2u:
18346           stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
18347           i += 2;
18348           break;
18349
18350         case DW_OP_const2s:
18351           stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
18352           i += 2;
18353           break;
18354
18355         case DW_OP_const4u:
18356           stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
18357           i += 4;
18358           break;
18359
18360         case DW_OP_const4s:
18361           stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
18362           i += 4;
18363           break;
18364
18365         case DW_OP_const8u:
18366           stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
18367           i += 8;
18368           break;
18369
18370         case DW_OP_constu:
18371           stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
18372                                                   &bytes_read);
18373           i += bytes_read;
18374           break;
18375
18376         case DW_OP_consts:
18377           stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
18378           i += bytes_read;
18379           break;
18380
18381         case DW_OP_dup:
18382           stack[stacki + 1] = stack[stacki];
18383           stacki++;
18384           break;
18385
18386         case DW_OP_plus:
18387           stack[stacki - 1] += stack[stacki];
18388           stacki--;
18389           break;
18390
18391         case DW_OP_plus_uconst:
18392           stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
18393                                                  &bytes_read);
18394           i += bytes_read;
18395           break;
18396
18397         case DW_OP_minus:
18398           stack[stacki - 1] -= stack[stacki];
18399           stacki--;
18400           break;
18401
18402         case DW_OP_deref:
18403           /* If we're not the last op, then we definitely can't encode
18404              this using GDB's address_class enum.  This is valid for partial
18405              global symbols, although the variable's address will be bogus
18406              in the psymtab.  */
18407           if (i < size)
18408             dwarf2_complex_location_expr_complaint ();
18409           break;
18410
18411         case DW_OP_GNU_push_tls_address:
18412           /* The top of the stack has the offset from the beginning
18413              of the thread control block at which the variable is located.  */
18414           /* Nothing should follow this operator, so the top of stack would
18415              be returned.  */
18416           /* This is valid for partial global symbols, but the variable's
18417              address will be bogus in the psymtab.  Make it always at least
18418              non-zero to not look as a variable garbage collected by linker
18419              which have DW_OP_addr 0.  */
18420           if (i < size)
18421             dwarf2_complex_location_expr_complaint ();
18422           stack[stacki]++;
18423           break;
18424
18425         case DW_OP_GNU_uninit:
18426           break;
18427
18428         case DW_OP_GNU_addr_index:
18429         case DW_OP_GNU_const_index:
18430           stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
18431                                                          &bytes_read);
18432           i += bytes_read;
18433           break;
18434
18435         default:
18436           {
18437             const char *name = get_DW_OP_name (op);
18438
18439             if (name)
18440               complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
18441                          name);
18442             else
18443               complaint (&symfile_complaints, _("unsupported stack op: '%02x'"),
18444                          op);
18445           }
18446
18447           return (stack[stacki]);
18448         }
18449
18450       /* Enforce maximum stack depth of SIZE-1 to avoid writing
18451          outside of the allocated space.  Also enforce minimum>0.  */
18452       if (stacki >= ARRAY_SIZE (stack) - 1)
18453         {
18454           complaint (&symfile_complaints,
18455                      _("location description stack overflow"));
18456           return 0;
18457         }
18458
18459       if (stacki <= 0)
18460         {
18461           complaint (&symfile_complaints,
18462                      _("location description stack underflow"));
18463           return 0;
18464         }
18465     }
18466   return (stack[stacki]);
18467 }
18468
18469 /* memory allocation interface */
18470
18471 static struct dwarf_block *
18472 dwarf_alloc_block (struct dwarf2_cu *cu)
18473 {
18474   struct dwarf_block *blk;
18475
18476   blk = (struct dwarf_block *)
18477     obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
18478   return (blk);
18479 }
18480
18481 static struct die_info *
18482 dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
18483 {
18484   struct die_info *die;
18485   size_t size = sizeof (struct die_info);
18486
18487   if (num_attrs > 1)
18488     size += (num_attrs - 1) * sizeof (struct attribute);
18489
18490   die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
18491   memset (die, 0, sizeof (struct die_info));
18492   return (die);
18493 }
18494
18495 \f
18496 /* Macro support.  */
18497
18498 /* Return file name relative to the compilation directory of file number I in
18499    *LH's file name table.  The result is allocated using xmalloc; the caller is
18500    responsible for freeing it.  */
18501
18502 static char *
18503 file_file_name (int file, struct line_header *lh)
18504 {
18505   /* Is the file number a valid index into the line header's file name
18506      table?  Remember that file numbers start with one, not zero.  */
18507   if (1 <= file && file <= lh->num_file_names)
18508     {
18509       struct file_entry *fe = &lh->file_names[file - 1];
18510
18511       if (IS_ABSOLUTE_PATH (fe->name) || fe->dir_index == 0)
18512         return xstrdup (fe->name);
18513       return concat (lh->include_dirs[fe->dir_index - 1], SLASH_STRING,
18514                      fe->name, NULL);
18515     }
18516   else
18517     {
18518       /* The compiler produced a bogus file number.  We can at least
18519          record the macro definitions made in the file, even if we
18520          won't be able to find the file by name.  */
18521       char fake_name[80];
18522
18523       xsnprintf (fake_name, sizeof (fake_name),
18524                  "<bad macro file number %d>", file);
18525
18526       complaint (&symfile_complaints,
18527                  _("bad file number in macro information (%d)"),
18528                  file);
18529
18530       return xstrdup (fake_name);
18531     }
18532 }
18533
18534 /* Return the full name of file number I in *LH's file name table.
18535    Use COMP_DIR as the name of the current directory of the
18536    compilation.  The result is allocated using xmalloc; the caller is
18537    responsible for freeing it.  */
18538 static char *
18539 file_full_name (int file, struct line_header *lh, const char *comp_dir)
18540 {
18541   /* Is the file number a valid index into the line header's file name
18542      table?  Remember that file numbers start with one, not zero.  */
18543   if (1 <= file && file <= lh->num_file_names)
18544     {
18545       char *relative = file_file_name (file, lh);
18546
18547       if (IS_ABSOLUTE_PATH (relative) || comp_dir == NULL)
18548         return relative;
18549       return reconcat (relative, comp_dir, SLASH_STRING, relative, NULL);
18550     }
18551   else
18552     return file_file_name (file, lh);
18553 }
18554
18555
18556 static struct macro_source_file *
18557 macro_start_file (int file, int line,
18558                   struct macro_source_file *current_file,
18559                   const char *comp_dir,
18560                   struct line_header *lh, struct objfile *objfile)
18561 {
18562   /* File name relative to the compilation directory of this source file.  */
18563   char *file_name = file_file_name (file, lh);
18564
18565   /* We don't create a macro table for this compilation unit
18566      at all until we actually get a filename.  */
18567   if (! pending_macros)
18568     pending_macros = new_macro_table (&objfile->per_bfd->storage_obstack,
18569                                       objfile->per_bfd->macro_cache,
18570                                       comp_dir);
18571
18572   if (! current_file)
18573     {
18574       /* If we have no current file, then this must be the start_file
18575          directive for the compilation unit's main source file.  */
18576       current_file = macro_set_main (pending_macros, file_name);
18577       macro_define_special (pending_macros);
18578     }
18579   else
18580     current_file = macro_include (current_file, line, file_name);
18581
18582   xfree (file_name);
18583
18584   return current_file;
18585 }
18586
18587
18588 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
18589    followed by a null byte.  */
18590 static char *
18591 copy_string (const char *buf, int len)
18592 {
18593   char *s = xmalloc (len + 1);
18594
18595   memcpy (s, buf, len);
18596   s[len] = '\0';
18597   return s;
18598 }
18599
18600
18601 static const char *
18602 consume_improper_spaces (const char *p, const char *body)
18603 {
18604   if (*p == ' ')
18605     {
18606       complaint (&symfile_complaints,
18607                  _("macro definition contains spaces "
18608                    "in formal argument list:\n`%s'"),
18609                  body);
18610
18611       while (*p == ' ')
18612         p++;
18613     }
18614
18615   return p;
18616 }
18617
18618
18619 static void
18620 parse_macro_definition (struct macro_source_file *file, int line,
18621                         const char *body)
18622 {
18623   const char *p;
18624
18625   /* The body string takes one of two forms.  For object-like macro
18626      definitions, it should be:
18627
18628         <macro name> " " <definition>
18629
18630      For function-like macro definitions, it should be:
18631
18632         <macro name> "() " <definition>
18633      or
18634         <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
18635
18636      Spaces may appear only where explicitly indicated, and in the
18637      <definition>.
18638
18639      The Dwarf 2 spec says that an object-like macro's name is always
18640      followed by a space, but versions of GCC around March 2002 omit
18641      the space when the macro's definition is the empty string.
18642
18643      The Dwarf 2 spec says that there should be no spaces between the
18644      formal arguments in a function-like macro's formal argument list,
18645      but versions of GCC around March 2002 include spaces after the
18646      commas.  */
18647
18648
18649   /* Find the extent of the macro name.  The macro name is terminated
18650      by either a space or null character (for an object-like macro) or
18651      an opening paren (for a function-like macro).  */
18652   for (p = body; *p; p++)
18653     if (*p == ' ' || *p == '(')
18654       break;
18655
18656   if (*p == ' ' || *p == '\0')
18657     {
18658       /* It's an object-like macro.  */
18659       int name_len = p - body;
18660       char *name = copy_string (body, name_len);
18661       const char *replacement;
18662
18663       if (*p == ' ')
18664         replacement = body + name_len + 1;
18665       else
18666         {
18667           dwarf2_macro_malformed_definition_complaint (body);
18668           replacement = body + name_len;
18669         }
18670
18671       macro_define_object (file, line, name, replacement);
18672
18673       xfree (name);
18674     }
18675   else if (*p == '(')
18676     {
18677       /* It's a function-like macro.  */
18678       char *name = copy_string (body, p - body);
18679       int argc = 0;
18680       int argv_size = 1;
18681       char **argv = xmalloc (argv_size * sizeof (*argv));
18682
18683       p++;
18684
18685       p = consume_improper_spaces (p, body);
18686
18687       /* Parse the formal argument list.  */
18688       while (*p && *p != ')')
18689         {
18690           /* Find the extent of the current argument name.  */
18691           const char *arg_start = p;
18692
18693           while (*p && *p != ',' && *p != ')' && *p != ' ')
18694             p++;
18695
18696           if (! *p || p == arg_start)
18697             dwarf2_macro_malformed_definition_complaint (body);
18698           else
18699             {
18700               /* Make sure argv has room for the new argument.  */
18701               if (argc >= argv_size)
18702                 {
18703                   argv_size *= 2;
18704                   argv = xrealloc (argv, argv_size * sizeof (*argv));
18705                 }
18706
18707               argv[argc++] = copy_string (arg_start, p - arg_start);
18708             }
18709
18710           p = consume_improper_spaces (p, body);
18711
18712           /* Consume the comma, if present.  */
18713           if (*p == ',')
18714             {
18715               p++;
18716
18717               p = consume_improper_spaces (p, body);
18718             }
18719         }
18720
18721       if (*p == ')')
18722         {
18723           p++;
18724
18725           if (*p == ' ')
18726             /* Perfectly formed definition, no complaints.  */
18727             macro_define_function (file, line, name,
18728                                    argc, (const char **) argv,
18729                                    p + 1);
18730           else if (*p == '\0')
18731             {
18732               /* Complain, but do define it.  */
18733               dwarf2_macro_malformed_definition_complaint (body);
18734               macro_define_function (file, line, name,
18735                                      argc, (const char **) argv,
18736                                      p);
18737             }
18738           else
18739             /* Just complain.  */
18740             dwarf2_macro_malformed_definition_complaint (body);
18741         }
18742       else
18743         /* Just complain.  */
18744         dwarf2_macro_malformed_definition_complaint (body);
18745
18746       xfree (name);
18747       {
18748         int i;
18749
18750         for (i = 0; i < argc; i++)
18751           xfree (argv[i]);
18752       }
18753       xfree (argv);
18754     }
18755   else
18756     dwarf2_macro_malformed_definition_complaint (body);
18757 }
18758
18759 /* Skip some bytes from BYTES according to the form given in FORM.
18760    Returns the new pointer.  */
18761
18762 static const gdb_byte *
18763 skip_form_bytes (bfd *abfd, const gdb_byte *bytes, const gdb_byte *buffer_end,
18764                  enum dwarf_form form,
18765                  unsigned int offset_size,
18766                  struct dwarf2_section_info *section)
18767 {
18768   unsigned int bytes_read;
18769
18770   switch (form)
18771     {
18772     case DW_FORM_data1:
18773     case DW_FORM_flag:
18774       ++bytes;
18775       break;
18776
18777     case DW_FORM_data2:
18778       bytes += 2;
18779       break;
18780
18781     case DW_FORM_data4:
18782       bytes += 4;
18783       break;
18784
18785     case DW_FORM_data8:
18786       bytes += 8;
18787       break;
18788
18789     case DW_FORM_string:
18790       read_direct_string (abfd, bytes, &bytes_read);
18791       bytes += bytes_read;
18792       break;
18793
18794     case DW_FORM_sec_offset:
18795     case DW_FORM_strp:
18796     case DW_FORM_GNU_strp_alt:
18797       bytes += offset_size;
18798       break;
18799
18800     case DW_FORM_block:
18801       bytes += read_unsigned_leb128 (abfd, bytes, &bytes_read);
18802       bytes += bytes_read;
18803       break;
18804
18805     case DW_FORM_block1:
18806       bytes += 1 + read_1_byte (abfd, bytes);
18807       break;
18808     case DW_FORM_block2:
18809       bytes += 2 + read_2_bytes (abfd, bytes);
18810       break;
18811     case DW_FORM_block4:
18812       bytes += 4 + read_4_bytes (abfd, bytes);
18813       break;
18814
18815     case DW_FORM_sdata:
18816     case DW_FORM_udata:
18817     case DW_FORM_GNU_addr_index:
18818     case DW_FORM_GNU_str_index:
18819       bytes = gdb_skip_leb128 (bytes, buffer_end);
18820       if (bytes == NULL)
18821         {
18822           dwarf2_section_buffer_overflow_complaint (section);
18823           return NULL;
18824         }
18825       break;
18826
18827     default:
18828       {
18829       complain:
18830         complaint (&symfile_complaints,
18831                    _("invalid form 0x%x in `%s'"),
18832                    form,
18833                    section->asection->name);
18834         return NULL;
18835       }
18836     }
18837
18838   return bytes;
18839 }
18840
18841 /* A helper for dwarf_decode_macros that handles skipping an unknown
18842    opcode.  Returns an updated pointer to the macro data buffer; or,
18843    on error, issues a complaint and returns NULL.  */
18844
18845 static const gdb_byte *
18846 skip_unknown_opcode (unsigned int opcode,
18847                      const gdb_byte **opcode_definitions,
18848                      const gdb_byte *mac_ptr, const gdb_byte *mac_end,
18849                      bfd *abfd,
18850                      unsigned int offset_size,
18851                      struct dwarf2_section_info *section)
18852 {
18853   unsigned int bytes_read, i;
18854   unsigned long arg;
18855   const gdb_byte *defn;
18856
18857   if (opcode_definitions[opcode] == NULL)
18858     {
18859       complaint (&symfile_complaints,
18860                  _("unrecognized DW_MACFINO opcode 0x%x"),
18861                  opcode);
18862       return NULL;
18863     }
18864
18865   defn = opcode_definitions[opcode];
18866   arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
18867   defn += bytes_read;
18868
18869   for (i = 0; i < arg; ++i)
18870     {
18871       mac_ptr = skip_form_bytes (abfd, mac_ptr, mac_end, defn[i], offset_size,
18872                                  section);
18873       if (mac_ptr == NULL)
18874         {
18875           /* skip_form_bytes already issued the complaint.  */
18876           return NULL;
18877         }
18878     }
18879
18880   return mac_ptr;
18881 }
18882
18883 /* A helper function which parses the header of a macro section.
18884    If the macro section is the extended (for now called "GNU") type,
18885    then this updates *OFFSET_SIZE.  Returns a pointer to just after
18886    the header, or issues a complaint and returns NULL on error.  */
18887
18888 static const gdb_byte *
18889 dwarf_parse_macro_header (const gdb_byte **opcode_definitions,
18890                           bfd *abfd,
18891                           const gdb_byte *mac_ptr,
18892                           unsigned int *offset_size,
18893                           int section_is_gnu)
18894 {
18895   memset (opcode_definitions, 0, 256 * sizeof (gdb_byte *));
18896
18897   if (section_is_gnu)
18898     {
18899       unsigned int version, flags;
18900
18901       version = read_2_bytes (abfd, mac_ptr);
18902       if (version != 4)
18903         {
18904           complaint (&symfile_complaints,
18905                      _("unrecognized version `%d' in .debug_macro section"),
18906                      version);
18907           return NULL;
18908         }
18909       mac_ptr += 2;
18910
18911       flags = read_1_byte (abfd, mac_ptr);
18912       ++mac_ptr;
18913       *offset_size = (flags & 1) ? 8 : 4;
18914
18915       if ((flags & 2) != 0)
18916         /* We don't need the line table offset.  */
18917         mac_ptr += *offset_size;
18918
18919       /* Vendor opcode descriptions.  */
18920       if ((flags & 4) != 0)
18921         {
18922           unsigned int i, count;
18923
18924           count = read_1_byte (abfd, mac_ptr);
18925           ++mac_ptr;
18926           for (i = 0; i < count; ++i)
18927             {
18928               unsigned int opcode, bytes_read;
18929               unsigned long arg;
18930
18931               opcode = read_1_byte (abfd, mac_ptr);
18932               ++mac_ptr;
18933               opcode_definitions[opcode] = mac_ptr;
18934               arg = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18935               mac_ptr += bytes_read;
18936               mac_ptr += arg;
18937             }
18938         }
18939     }
18940
18941   return mac_ptr;
18942 }
18943
18944 /* A helper for dwarf_decode_macros that handles the GNU extensions,
18945    including DW_MACRO_GNU_transparent_include.  */
18946
18947 static void
18948 dwarf_decode_macro_bytes (bfd *abfd,
18949                           const gdb_byte *mac_ptr, const gdb_byte *mac_end,
18950                           struct macro_source_file *current_file,
18951                           struct line_header *lh, const char *comp_dir,
18952                           struct dwarf2_section_info *section,
18953                           int section_is_gnu, int section_is_dwz,
18954                           unsigned int offset_size,
18955                           struct objfile *objfile,
18956                           htab_t include_hash)
18957 {
18958   enum dwarf_macro_record_type macinfo_type;
18959   int at_commandline;
18960   const gdb_byte *opcode_definitions[256];
18961
18962   mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
18963                                       &offset_size, section_is_gnu);
18964   if (mac_ptr == NULL)
18965     {
18966       /* We already issued a complaint.  */
18967       return;
18968     }
18969
18970   /* Determines if GDB is still before first DW_MACINFO_start_file.  If true
18971      GDB is still reading the definitions from command line.  First
18972      DW_MACINFO_start_file will need to be ignored as it was already executed
18973      to create CURRENT_FILE for the main source holding also the command line
18974      definitions.  On first met DW_MACINFO_start_file this flag is reset to
18975      normally execute all the remaining DW_MACINFO_start_file macinfos.  */
18976
18977   at_commandline = 1;
18978
18979   do
18980     {
18981       /* Do we at least have room for a macinfo type byte?  */
18982       if (mac_ptr >= mac_end)
18983         {
18984           dwarf2_section_buffer_overflow_complaint (section);
18985           break;
18986         }
18987
18988       macinfo_type = read_1_byte (abfd, mac_ptr);
18989       mac_ptr++;
18990
18991       /* Note that we rely on the fact that the corresponding GNU and
18992          DWARF constants are the same.  */
18993       switch (macinfo_type)
18994         {
18995           /* A zero macinfo type indicates the end of the macro
18996              information.  */
18997         case 0:
18998           break;
18999
19000         case DW_MACRO_GNU_define:
19001         case DW_MACRO_GNU_undef:
19002         case DW_MACRO_GNU_define_indirect:
19003         case DW_MACRO_GNU_undef_indirect:
19004         case DW_MACRO_GNU_define_indirect_alt:
19005         case DW_MACRO_GNU_undef_indirect_alt:
19006           {
19007             unsigned int bytes_read;
19008             int line;
19009             const char *body;
19010             int is_define;
19011
19012             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19013             mac_ptr += bytes_read;
19014
19015             if (macinfo_type == DW_MACRO_GNU_define
19016                 || macinfo_type == DW_MACRO_GNU_undef)
19017               {
19018                 body = read_direct_string (abfd, mac_ptr, &bytes_read);
19019                 mac_ptr += bytes_read;
19020               }
19021             else
19022               {
19023                 LONGEST str_offset;
19024
19025                 str_offset = read_offset_1 (abfd, mac_ptr, offset_size);
19026                 mac_ptr += offset_size;
19027
19028                 if (macinfo_type == DW_MACRO_GNU_define_indirect_alt
19029                     || macinfo_type == DW_MACRO_GNU_undef_indirect_alt
19030                     || section_is_dwz)
19031                   {
19032                     struct dwz_file *dwz = dwarf2_get_dwz_file ();
19033
19034                     body = read_indirect_string_from_dwz (dwz, str_offset);
19035                   }
19036                 else
19037                   body = read_indirect_string_at_offset (abfd, str_offset);
19038               }
19039
19040             is_define = (macinfo_type == DW_MACRO_GNU_define
19041                          || macinfo_type == DW_MACRO_GNU_define_indirect
19042                          || macinfo_type == DW_MACRO_GNU_define_indirect_alt);
19043             if (! current_file)
19044               {
19045                 /* DWARF violation as no main source is present.  */
19046                 complaint (&symfile_complaints,
19047                            _("debug info with no main source gives macro %s "
19048                              "on line %d: %s"),
19049                            is_define ? _("definition") : _("undefinition"),
19050                            line, body);
19051                 break;
19052               }
19053             if ((line == 0 && !at_commandline)
19054                 || (line != 0 && at_commandline))
19055               complaint (&symfile_complaints,
19056                          _("debug info gives %s macro %s with %s line %d: %s"),
19057                          at_commandline ? _("command-line") : _("in-file"),
19058                          is_define ? _("definition") : _("undefinition"),
19059                          line == 0 ? _("zero") : _("non-zero"), line, body);
19060
19061             if (is_define)
19062               parse_macro_definition (current_file, line, body);
19063             else
19064               {
19065                 gdb_assert (macinfo_type == DW_MACRO_GNU_undef
19066                             || macinfo_type == DW_MACRO_GNU_undef_indirect
19067                             || macinfo_type == DW_MACRO_GNU_undef_indirect_alt);
19068                 macro_undef (current_file, line, body);
19069               }
19070           }
19071           break;
19072
19073         case DW_MACRO_GNU_start_file:
19074           {
19075             unsigned int bytes_read;
19076             int line, file;
19077
19078             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19079             mac_ptr += bytes_read;
19080             file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19081             mac_ptr += bytes_read;
19082
19083             if ((line == 0 && !at_commandline)
19084                 || (line != 0 && at_commandline))
19085               complaint (&symfile_complaints,
19086                          _("debug info gives source %d included "
19087                            "from %s at %s line %d"),
19088                          file, at_commandline ? _("command-line") : _("file"),
19089                          line == 0 ? _("zero") : _("non-zero"), line);
19090
19091             if (at_commandline)
19092               {
19093                 /* This DW_MACRO_GNU_start_file was executed in the
19094                    pass one.  */
19095                 at_commandline = 0;
19096               }
19097             else
19098               current_file = macro_start_file (file, line,
19099                                                current_file, comp_dir,
19100                                                lh, objfile);
19101           }
19102           break;
19103
19104         case DW_MACRO_GNU_end_file:
19105           if (! current_file)
19106             complaint (&symfile_complaints,
19107                        _("macro debug info has an unmatched "
19108                          "`close_file' directive"));
19109           else
19110             {
19111               current_file = current_file->included_by;
19112               if (! current_file)
19113                 {
19114                   enum dwarf_macro_record_type next_type;
19115
19116                   /* GCC circa March 2002 doesn't produce the zero
19117                      type byte marking the end of the compilation
19118                      unit.  Complain if it's not there, but exit no
19119                      matter what.  */
19120
19121                   /* Do we at least have room for a macinfo type byte?  */
19122                   if (mac_ptr >= mac_end)
19123                     {
19124                       dwarf2_section_buffer_overflow_complaint (section);
19125                       return;
19126                     }
19127
19128                   /* We don't increment mac_ptr here, so this is just
19129                      a look-ahead.  */
19130                   next_type = read_1_byte (abfd, mac_ptr);
19131                   if (next_type != 0)
19132                     complaint (&symfile_complaints,
19133                                _("no terminating 0-type entry for "
19134                                  "macros in `.debug_macinfo' section"));
19135
19136                   return;
19137                 }
19138             }
19139           break;
19140
19141         case DW_MACRO_GNU_transparent_include:
19142         case DW_MACRO_GNU_transparent_include_alt:
19143           {
19144             LONGEST offset;
19145             void **slot;
19146             bfd *include_bfd = abfd;
19147             struct dwarf2_section_info *include_section = section;
19148             struct dwarf2_section_info alt_section;
19149             const gdb_byte *include_mac_end = mac_end;
19150             int is_dwz = section_is_dwz;
19151             const gdb_byte *new_mac_ptr;
19152
19153             offset = read_offset_1 (abfd, mac_ptr, offset_size);
19154             mac_ptr += offset_size;
19155
19156             if (macinfo_type == DW_MACRO_GNU_transparent_include_alt)
19157               {
19158                 struct dwz_file *dwz = dwarf2_get_dwz_file ();
19159
19160                 dwarf2_read_section (dwarf2_per_objfile->objfile,
19161                                      &dwz->macro);
19162
19163                 include_bfd = dwz->macro.asection->owner;
19164                 include_section = &dwz->macro;
19165                 include_mac_end = dwz->macro.buffer + dwz->macro.size;
19166                 is_dwz = 1;
19167               }
19168
19169             new_mac_ptr = include_section->buffer + offset;
19170             slot = htab_find_slot (include_hash, new_mac_ptr, INSERT);
19171
19172             if (*slot != NULL)
19173               {
19174                 /* This has actually happened; see
19175                    http://sourceware.org/bugzilla/show_bug.cgi?id=13568.  */
19176                 complaint (&symfile_complaints,
19177                            _("recursive DW_MACRO_GNU_transparent_include in "
19178                              ".debug_macro section"));
19179               }
19180             else
19181               {
19182                 *slot = (void *) new_mac_ptr;
19183
19184                 dwarf_decode_macro_bytes (include_bfd, new_mac_ptr,
19185                                           include_mac_end, current_file,
19186                                           lh, comp_dir,
19187                                           section, section_is_gnu, is_dwz,
19188                                           offset_size, objfile, include_hash);
19189
19190                 htab_remove_elt (include_hash, (void *) new_mac_ptr);
19191               }
19192           }
19193           break;
19194
19195         case DW_MACINFO_vendor_ext:
19196           if (!section_is_gnu)
19197             {
19198               unsigned int bytes_read;
19199               int constant;
19200
19201               constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19202               mac_ptr += bytes_read;
19203               read_direct_string (abfd, mac_ptr, &bytes_read);
19204               mac_ptr += bytes_read;
19205
19206               /* We don't recognize any vendor extensions.  */
19207               break;
19208             }
19209           /* FALLTHROUGH */
19210
19211         default:
19212           mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
19213                                          mac_ptr, mac_end, abfd, offset_size,
19214                                          section);
19215           if (mac_ptr == NULL)
19216             return;
19217           break;
19218         }
19219     } while (macinfo_type != 0);
19220 }
19221
19222 static void
19223 dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
19224                      const char *comp_dir, int section_is_gnu)
19225 {
19226   struct objfile *objfile = dwarf2_per_objfile->objfile;
19227   struct line_header *lh = cu->line_header;
19228   bfd *abfd;
19229   const gdb_byte *mac_ptr, *mac_end;
19230   struct macro_source_file *current_file = 0;
19231   enum dwarf_macro_record_type macinfo_type;
19232   unsigned int offset_size = cu->header.offset_size;
19233   const gdb_byte *opcode_definitions[256];
19234   struct cleanup *cleanup;
19235   htab_t include_hash;
19236   void **slot;
19237   struct dwarf2_section_info *section;
19238   const char *section_name;
19239
19240   if (cu->dwo_unit != NULL)
19241     {
19242       if (section_is_gnu)
19243         {
19244           section = &cu->dwo_unit->dwo_file->sections.macro;
19245           section_name = ".debug_macro.dwo";
19246         }
19247       else
19248         {
19249           section = &cu->dwo_unit->dwo_file->sections.macinfo;
19250           section_name = ".debug_macinfo.dwo";
19251         }
19252     }
19253   else
19254     {
19255       if (section_is_gnu)
19256         {
19257           section = &dwarf2_per_objfile->macro;
19258           section_name = ".debug_macro";
19259         }
19260       else
19261         {
19262           section = &dwarf2_per_objfile->macinfo;
19263           section_name = ".debug_macinfo";
19264         }
19265     }
19266
19267   dwarf2_read_section (objfile, section);
19268   if (section->buffer == NULL)
19269     {
19270       complaint (&symfile_complaints, _("missing %s section"), section_name);
19271       return;
19272     }
19273   abfd = section->asection->owner;
19274
19275   /* First pass: Find the name of the base filename.
19276      This filename is needed in order to process all macros whose definition
19277      (or undefinition) comes from the command line.  These macros are defined
19278      before the first DW_MACINFO_start_file entry, and yet still need to be
19279      associated to the base file.
19280
19281      To determine the base file name, we scan the macro definitions until we
19282      reach the first DW_MACINFO_start_file entry.  We then initialize
19283      CURRENT_FILE accordingly so that any macro definition found before the
19284      first DW_MACINFO_start_file can still be associated to the base file.  */
19285
19286   mac_ptr = section->buffer + offset;
19287   mac_end = section->buffer + section->size;
19288
19289   mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
19290                                       &offset_size, section_is_gnu);
19291   if (mac_ptr == NULL)
19292     {
19293       /* We already issued a complaint.  */
19294       return;
19295     }
19296
19297   do
19298     {
19299       /* Do we at least have room for a macinfo type byte?  */
19300       if (mac_ptr >= mac_end)
19301         {
19302           /* Complaint is printed during the second pass as GDB will probably
19303              stop the first pass earlier upon finding
19304              DW_MACINFO_start_file.  */
19305           break;
19306         }
19307
19308       macinfo_type = read_1_byte (abfd, mac_ptr);
19309       mac_ptr++;
19310
19311       /* Note that we rely on the fact that the corresponding GNU and
19312          DWARF constants are the same.  */
19313       switch (macinfo_type)
19314         {
19315           /* A zero macinfo type indicates the end of the macro
19316              information.  */
19317         case 0:
19318           break;
19319
19320         case DW_MACRO_GNU_define:
19321         case DW_MACRO_GNU_undef:
19322           /* Only skip the data by MAC_PTR.  */
19323           {
19324             unsigned int bytes_read;
19325
19326             read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19327             mac_ptr += bytes_read;
19328             read_direct_string (abfd, mac_ptr, &bytes_read);
19329             mac_ptr += bytes_read;
19330           }
19331           break;
19332
19333         case DW_MACRO_GNU_start_file:
19334           {
19335             unsigned int bytes_read;
19336             int line, file;
19337
19338             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19339             mac_ptr += bytes_read;
19340             file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19341             mac_ptr += bytes_read;
19342
19343             current_file = macro_start_file (file, line, current_file,
19344                                              comp_dir, lh, objfile);
19345           }
19346           break;
19347
19348         case DW_MACRO_GNU_end_file:
19349           /* No data to skip by MAC_PTR.  */
19350           break;
19351
19352         case DW_MACRO_GNU_define_indirect:
19353         case DW_MACRO_GNU_undef_indirect:
19354         case DW_MACRO_GNU_define_indirect_alt:
19355         case DW_MACRO_GNU_undef_indirect_alt:
19356           {
19357             unsigned int bytes_read;
19358
19359             read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19360             mac_ptr += bytes_read;
19361             mac_ptr += offset_size;
19362           }
19363           break;
19364
19365         case DW_MACRO_GNU_transparent_include:
19366         case DW_MACRO_GNU_transparent_include_alt:
19367           /* Note that, according to the spec, a transparent include
19368              chain cannot call DW_MACRO_GNU_start_file.  So, we can just
19369              skip this opcode.  */
19370           mac_ptr += offset_size;
19371           break;
19372
19373         case DW_MACINFO_vendor_ext:
19374           /* Only skip the data by MAC_PTR.  */
19375           if (!section_is_gnu)
19376             {
19377               unsigned int bytes_read;
19378
19379               read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
19380               mac_ptr += bytes_read;
19381               read_direct_string (abfd, mac_ptr, &bytes_read);
19382               mac_ptr += bytes_read;
19383             }
19384           /* FALLTHROUGH */
19385
19386         default:
19387           mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
19388                                          mac_ptr, mac_end, abfd, offset_size,
19389                                          section);
19390           if (mac_ptr == NULL)
19391             return;
19392           break;
19393         }
19394     } while (macinfo_type != 0 && current_file == NULL);
19395
19396   /* Second pass: Process all entries.
19397
19398      Use the AT_COMMAND_LINE flag to determine whether we are still processing
19399      command-line macro definitions/undefinitions.  This flag is unset when we
19400      reach the first DW_MACINFO_start_file entry.  */
19401
19402   include_hash = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
19403                                     NULL, xcalloc, xfree);
19404   cleanup = make_cleanup_htab_delete (include_hash);
19405   mac_ptr = section->buffer + offset;
19406   slot = htab_find_slot (include_hash, mac_ptr, INSERT);
19407   *slot = (void *) mac_ptr;
19408   dwarf_decode_macro_bytes (abfd, mac_ptr, mac_end,
19409                             current_file, lh, comp_dir, section,
19410                             section_is_gnu, 0,
19411                             offset_size, objfile, include_hash);
19412   do_cleanups (cleanup);
19413 }
19414
19415 /* Check if the attribute's form is a DW_FORM_block*
19416    if so return true else false.  */
19417
19418 static int
19419 attr_form_is_block (struct attribute *attr)
19420 {
19421   return (attr == NULL ? 0 :
19422       attr->form == DW_FORM_block1
19423       || attr->form == DW_FORM_block2
19424       || attr->form == DW_FORM_block4
19425       || attr->form == DW_FORM_block
19426       || attr->form == DW_FORM_exprloc);
19427 }
19428
19429 /* Return non-zero if ATTR's value is a section offset --- classes
19430    lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
19431    You may use DW_UNSND (attr) to retrieve such offsets.
19432
19433    Section 7.5.4, "Attribute Encodings", explains that no attribute
19434    may have a value that belongs to more than one of these classes; it
19435    would be ambiguous if we did, because we use the same forms for all
19436    of them.  */
19437
19438 static int
19439 attr_form_is_section_offset (struct attribute *attr)
19440 {
19441   return (attr->form == DW_FORM_data4
19442           || attr->form == DW_FORM_data8
19443           || attr->form == DW_FORM_sec_offset);
19444 }
19445
19446 /* Return non-zero if ATTR's value falls in the 'constant' class, or
19447    zero otherwise.  When this function returns true, you can apply
19448    dwarf2_get_attr_constant_value to it.
19449
19450    However, note that for some attributes you must check
19451    attr_form_is_section_offset before using this test.  DW_FORM_data4
19452    and DW_FORM_data8 are members of both the constant class, and of
19453    the classes that contain offsets into other debug sections
19454    (lineptr, loclistptr, macptr or rangelistptr).  The DWARF spec says
19455    that, if an attribute's can be either a constant or one of the
19456    section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
19457    taken as section offsets, not constants.  */
19458
19459 static int
19460 attr_form_is_constant (struct attribute *attr)
19461 {
19462   switch (attr->form)
19463     {
19464     case DW_FORM_sdata:
19465     case DW_FORM_udata:
19466     case DW_FORM_data1:
19467     case DW_FORM_data2:
19468     case DW_FORM_data4:
19469     case DW_FORM_data8:
19470       return 1;
19471     default:
19472       return 0;
19473     }
19474 }
19475
19476 /* Return the .debug_loc section to use for CU.
19477    For DWO files use .debug_loc.dwo.  */
19478
19479 static struct dwarf2_section_info *
19480 cu_debug_loc_section (struct dwarf2_cu *cu)
19481 {
19482   if (cu->dwo_unit)
19483     return &cu->dwo_unit->dwo_file->sections.loc;
19484   return &dwarf2_per_objfile->loc;
19485 }
19486
19487 /* A helper function that fills in a dwarf2_loclist_baton.  */
19488
19489 static void
19490 fill_in_loclist_baton (struct dwarf2_cu *cu,
19491                        struct dwarf2_loclist_baton *baton,
19492                        struct attribute *attr)
19493 {
19494   struct dwarf2_section_info *section = cu_debug_loc_section (cu);
19495
19496   dwarf2_read_section (dwarf2_per_objfile->objfile, section);
19497
19498   baton->per_cu = cu->per_cu;
19499   gdb_assert (baton->per_cu);
19500   /* We don't know how long the location list is, but make sure we
19501      don't run off the edge of the section.  */
19502   baton->size = section->size - DW_UNSND (attr);
19503   baton->data = section->buffer + DW_UNSND (attr);
19504   baton->base_address = cu->base_address;
19505   baton->from_dwo = cu->dwo_unit != NULL;
19506 }
19507
19508 static void
19509 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
19510                              struct dwarf2_cu *cu, int is_block)
19511 {
19512   struct objfile *objfile = dwarf2_per_objfile->objfile;
19513   struct dwarf2_section_info *section = cu_debug_loc_section (cu);
19514
19515   if (attr_form_is_section_offset (attr)
19516       /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
19517          the section.  If so, fall through to the complaint in the
19518          other branch.  */
19519       && DW_UNSND (attr) < dwarf2_section_size (objfile, section))
19520     {
19521       struct dwarf2_loclist_baton *baton;
19522
19523       baton = obstack_alloc (&objfile->objfile_obstack,
19524                              sizeof (struct dwarf2_loclist_baton));
19525
19526       fill_in_loclist_baton (cu, baton, attr);
19527
19528       if (cu->base_known == 0)
19529         complaint (&symfile_complaints,
19530                    _("Location list used without "
19531                      "specifying the CU base address."));
19532
19533       SYMBOL_ACLASS_INDEX (sym) = (is_block
19534                                    ? dwarf2_loclist_block_index
19535                                    : dwarf2_loclist_index);
19536       SYMBOL_LOCATION_BATON (sym) = baton;
19537     }
19538   else
19539     {
19540       struct dwarf2_locexpr_baton *baton;
19541
19542       baton = obstack_alloc (&objfile->objfile_obstack,
19543                              sizeof (struct dwarf2_locexpr_baton));
19544       baton->per_cu = cu->per_cu;
19545       gdb_assert (baton->per_cu);
19546
19547       if (attr_form_is_block (attr))
19548         {
19549           /* Note that we're just copying the block's data pointer
19550              here, not the actual data.  We're still pointing into the
19551              info_buffer for SYM's objfile; right now we never release
19552              that buffer, but when we do clean up properly this may
19553              need to change.  */
19554           baton->size = DW_BLOCK (attr)->size;
19555           baton->data = DW_BLOCK (attr)->data;
19556         }
19557       else
19558         {
19559           dwarf2_invalid_attrib_class_complaint ("location description",
19560                                                  SYMBOL_NATURAL_NAME (sym));
19561           baton->size = 0;
19562         }
19563
19564       SYMBOL_ACLASS_INDEX (sym) = (is_block
19565                                    ? dwarf2_locexpr_block_index
19566                                    : dwarf2_locexpr_index);
19567       SYMBOL_LOCATION_BATON (sym) = baton;
19568     }
19569 }
19570
19571 /* Return the OBJFILE associated with the compilation unit CU.  If CU
19572    came from a separate debuginfo file, then the master objfile is
19573    returned.  */
19574
19575 struct objfile *
19576 dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
19577 {
19578   struct objfile *objfile = per_cu->objfile;
19579
19580   /* Return the master objfile, so that we can report and look up the
19581      correct file containing this variable.  */
19582   if (objfile->separate_debug_objfile_backlink)
19583     objfile = objfile->separate_debug_objfile_backlink;
19584
19585   return objfile;
19586 }
19587
19588 /* Return comp_unit_head for PER_CU, either already available in PER_CU->CU
19589    (CU_HEADERP is unused in such case) or prepare a temporary copy at
19590    CU_HEADERP first.  */
19591
19592 static const struct comp_unit_head *
19593 per_cu_header_read_in (struct comp_unit_head *cu_headerp,
19594                        struct dwarf2_per_cu_data *per_cu)
19595 {
19596   const gdb_byte *info_ptr;
19597
19598   if (per_cu->cu)
19599     return &per_cu->cu->header;
19600
19601   info_ptr = per_cu->section->buffer + per_cu->offset.sect_off;
19602
19603   memset (cu_headerp, 0, sizeof (*cu_headerp));
19604   read_comp_unit_head (cu_headerp, info_ptr, per_cu->objfile->obfd);
19605
19606   return cu_headerp;
19607 }
19608
19609 /* Return the address size given in the compilation unit header for CU.  */
19610
19611 int
19612 dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
19613 {
19614   struct comp_unit_head cu_header_local;
19615   const struct comp_unit_head *cu_headerp;
19616
19617   cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
19618
19619   return cu_headerp->addr_size;
19620 }
19621
19622 /* Return the offset size given in the compilation unit header for CU.  */
19623
19624 int
19625 dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
19626 {
19627   struct comp_unit_head cu_header_local;
19628   const struct comp_unit_head *cu_headerp;
19629
19630   cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
19631
19632   return cu_headerp->offset_size;
19633 }
19634
19635 /* See its dwarf2loc.h declaration.  */
19636
19637 int
19638 dwarf2_per_cu_ref_addr_size (struct dwarf2_per_cu_data *per_cu)
19639 {
19640   struct comp_unit_head cu_header_local;
19641   const struct comp_unit_head *cu_headerp;
19642
19643   cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
19644
19645   if (cu_headerp->version == 2)
19646     return cu_headerp->addr_size;
19647   else
19648     return cu_headerp->offset_size;
19649 }
19650
19651 /* Return the text offset of the CU.  The returned offset comes from
19652    this CU's objfile.  If this objfile came from a separate debuginfo
19653    file, then the offset may be different from the corresponding
19654    offset in the parent objfile.  */
19655
19656 CORE_ADDR
19657 dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
19658 {
19659   struct objfile *objfile = per_cu->objfile;
19660
19661   return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
19662 }
19663
19664 /* Locate the .debug_info compilation unit from CU's objfile which contains
19665    the DIE at OFFSET.  Raises an error on failure.  */
19666
19667 static struct dwarf2_per_cu_data *
19668 dwarf2_find_containing_comp_unit (sect_offset offset,
19669                                   unsigned int offset_in_dwz,
19670                                   struct objfile *objfile)
19671 {
19672   struct dwarf2_per_cu_data *this_cu;
19673   int low, high;
19674   const sect_offset *cu_off;
19675
19676   low = 0;
19677   high = dwarf2_per_objfile->n_comp_units - 1;
19678   while (high > low)
19679     {
19680       struct dwarf2_per_cu_data *mid_cu;
19681       int mid = low + (high - low) / 2;
19682
19683       mid_cu = dwarf2_per_objfile->all_comp_units[mid];
19684       cu_off = &mid_cu->offset;
19685       if (mid_cu->is_dwz > offset_in_dwz
19686           || (mid_cu->is_dwz == offset_in_dwz
19687               && cu_off->sect_off >= offset.sect_off))
19688         high = mid;
19689       else
19690         low = mid + 1;
19691     }
19692   gdb_assert (low == high);
19693   this_cu = dwarf2_per_objfile->all_comp_units[low];
19694   cu_off = &this_cu->offset;
19695   if (this_cu->is_dwz != offset_in_dwz || cu_off->sect_off > offset.sect_off)
19696     {
19697       if (low == 0 || this_cu->is_dwz != offset_in_dwz)
19698         error (_("Dwarf Error: could not find partial DIE containing "
19699                "offset 0x%lx [in module %s]"),
19700                (long) offset.sect_off, bfd_get_filename (objfile->obfd));
19701
19702       gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset.sect_off
19703                   <= offset.sect_off);
19704       return dwarf2_per_objfile->all_comp_units[low-1];
19705     }
19706   else
19707     {
19708       this_cu = dwarf2_per_objfile->all_comp_units[low];
19709       if (low == dwarf2_per_objfile->n_comp_units - 1
19710           && offset.sect_off >= this_cu->offset.sect_off + this_cu->length)
19711         error (_("invalid dwarf2 offset %u"), offset.sect_off);
19712       gdb_assert (offset.sect_off < this_cu->offset.sect_off + this_cu->length);
19713       return this_cu;
19714     }
19715 }
19716
19717 /* Initialize dwarf2_cu CU, owned by PER_CU.  */
19718
19719 static void
19720 init_one_comp_unit (struct dwarf2_cu *cu, struct dwarf2_per_cu_data *per_cu)
19721 {
19722   memset (cu, 0, sizeof (*cu));
19723   per_cu->cu = cu;
19724   cu->per_cu = per_cu;
19725   cu->objfile = per_cu->objfile;
19726   obstack_init (&cu->comp_unit_obstack);
19727 }
19728
19729 /* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE.  */
19730
19731 static void
19732 prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
19733                        enum language pretend_language)
19734 {
19735   struct attribute *attr;
19736
19737   /* Set the language we're debugging.  */
19738   attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
19739   if (attr)
19740     set_cu_language (DW_UNSND (attr), cu);
19741   else
19742     {
19743       cu->language = pretend_language;
19744       cu->language_defn = language_def (cu->language);
19745     }
19746
19747   attr = dwarf2_attr (comp_unit_die, DW_AT_producer, cu);
19748   if (attr)
19749     cu->producer = DW_STRING (attr);
19750 }
19751
19752 /* Release one cached compilation unit, CU.  We unlink it from the tree
19753    of compilation units, but we don't remove it from the read_in_chain;
19754    the caller is responsible for that.
19755    NOTE: DATA is a void * because this function is also used as a
19756    cleanup routine.  */
19757
19758 static void
19759 free_heap_comp_unit (void *data)
19760 {
19761   struct dwarf2_cu *cu = data;
19762
19763   gdb_assert (cu->per_cu != NULL);
19764   cu->per_cu->cu = NULL;
19765   cu->per_cu = NULL;
19766
19767   obstack_free (&cu->comp_unit_obstack, NULL);
19768
19769   xfree (cu);
19770 }
19771
19772 /* This cleanup function is passed the address of a dwarf2_cu on the stack
19773    when we're finished with it.  We can't free the pointer itself, but be
19774    sure to unlink it from the cache.  Also release any associated storage.  */
19775
19776 static void
19777 free_stack_comp_unit (void *data)
19778 {
19779   struct dwarf2_cu *cu = data;
19780
19781   gdb_assert (cu->per_cu != NULL);
19782   cu->per_cu->cu = NULL;
19783   cu->per_cu = NULL;
19784
19785   obstack_free (&cu->comp_unit_obstack, NULL);
19786   cu->partial_dies = NULL;
19787 }
19788
19789 /* Free all cached compilation units.  */
19790
19791 static void
19792 free_cached_comp_units (void *data)
19793 {
19794   struct dwarf2_per_cu_data *per_cu, **last_chain;
19795
19796   per_cu = dwarf2_per_objfile->read_in_chain;
19797   last_chain = &dwarf2_per_objfile->read_in_chain;
19798   while (per_cu != NULL)
19799     {
19800       struct dwarf2_per_cu_data *next_cu;
19801
19802       next_cu = per_cu->cu->read_in_chain;
19803
19804       free_heap_comp_unit (per_cu->cu);
19805       *last_chain = next_cu;
19806
19807       per_cu = next_cu;
19808     }
19809 }
19810
19811 /* Increase the age counter on each cached compilation unit, and free
19812    any that are too old.  */
19813
19814 static void
19815 age_cached_comp_units (void)
19816 {
19817   struct dwarf2_per_cu_data *per_cu, **last_chain;
19818
19819   dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
19820   per_cu = dwarf2_per_objfile->read_in_chain;
19821   while (per_cu != NULL)
19822     {
19823       per_cu->cu->last_used ++;
19824       if (per_cu->cu->last_used <= dwarf2_max_cache_age)
19825         dwarf2_mark (per_cu->cu);
19826       per_cu = per_cu->cu->read_in_chain;
19827     }
19828
19829   per_cu = dwarf2_per_objfile->read_in_chain;
19830   last_chain = &dwarf2_per_objfile->read_in_chain;
19831   while (per_cu != NULL)
19832     {
19833       struct dwarf2_per_cu_data *next_cu;
19834
19835       next_cu = per_cu->cu->read_in_chain;
19836
19837       if (!per_cu->cu->mark)
19838         {
19839           free_heap_comp_unit (per_cu->cu);
19840           *last_chain = next_cu;
19841         }
19842       else
19843         last_chain = &per_cu->cu->read_in_chain;
19844
19845       per_cu = next_cu;
19846     }
19847 }
19848
19849 /* Remove a single compilation unit from the cache.  */
19850
19851 static void
19852 free_one_cached_comp_unit (struct dwarf2_per_cu_data *target_per_cu)
19853 {
19854   struct dwarf2_per_cu_data *per_cu, **last_chain;
19855
19856   per_cu = dwarf2_per_objfile->read_in_chain;
19857   last_chain = &dwarf2_per_objfile->read_in_chain;
19858   while (per_cu != NULL)
19859     {
19860       struct dwarf2_per_cu_data *next_cu;
19861
19862       next_cu = per_cu->cu->read_in_chain;
19863
19864       if (per_cu == target_per_cu)
19865         {
19866           free_heap_comp_unit (per_cu->cu);
19867           per_cu->cu = NULL;
19868           *last_chain = next_cu;
19869           break;
19870         }
19871       else
19872         last_chain = &per_cu->cu->read_in_chain;
19873
19874       per_cu = next_cu;
19875     }
19876 }
19877
19878 /* Release all extra memory associated with OBJFILE.  */
19879
19880 void
19881 dwarf2_free_objfile (struct objfile *objfile)
19882 {
19883   dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
19884
19885   if (dwarf2_per_objfile == NULL)
19886     return;
19887
19888   /* Cached DIE trees use xmalloc and the comp_unit_obstack.  */
19889   free_cached_comp_units (NULL);
19890
19891   if (dwarf2_per_objfile->quick_file_names_table)
19892     htab_delete (dwarf2_per_objfile->quick_file_names_table);
19893
19894   /* Everything else should be on the objfile obstack.  */
19895 }
19896
19897 /* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
19898    We store these in a hash table separate from the DIEs, and preserve them
19899    when the DIEs are flushed out of cache.
19900
19901    The CU "per_cu" pointer is needed because offset alone is not enough to
19902    uniquely identify the type.  A file may have multiple .debug_types sections,
19903    or the type may come from a DWO file.  Furthermore, while it's more logical
19904    to use per_cu->section+offset, with Fission the section with the data is in
19905    the DWO file but we don't know that section at the point we need it.
19906    We have to use something in dwarf2_per_cu_data (or the pointer to it)
19907    because we can enter the lookup routine, get_die_type_at_offset, from
19908    outside this file, and thus won't necessarily have PER_CU->cu.
19909    Fortunately, PER_CU is stable for the life of the objfile.  */
19910
19911 struct dwarf2_per_cu_offset_and_type
19912 {
19913   const struct dwarf2_per_cu_data *per_cu;
19914   sect_offset offset;
19915   struct type *type;
19916 };
19917
19918 /* Hash function for a dwarf2_per_cu_offset_and_type.  */
19919
19920 static hashval_t
19921 per_cu_offset_and_type_hash (const void *item)
19922 {
19923   const struct dwarf2_per_cu_offset_and_type *ofs = item;
19924
19925   return (uintptr_t) ofs->per_cu + ofs->offset.sect_off;
19926 }
19927
19928 /* Equality function for a dwarf2_per_cu_offset_and_type.  */
19929
19930 static int
19931 per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
19932 {
19933   const struct dwarf2_per_cu_offset_and_type *ofs_lhs = item_lhs;
19934   const struct dwarf2_per_cu_offset_and_type *ofs_rhs = item_rhs;
19935
19936   return (ofs_lhs->per_cu == ofs_rhs->per_cu
19937           && ofs_lhs->offset.sect_off == ofs_rhs->offset.sect_off);
19938 }
19939
19940 /* Set the type associated with DIE to TYPE.  Save it in CU's hash
19941    table if necessary.  For convenience, return TYPE.
19942
19943    The DIEs reading must have careful ordering to:
19944     * Not cause infite loops trying to read in DIEs as a prerequisite for
19945       reading current DIE.
19946     * Not trying to dereference contents of still incompletely read in types
19947       while reading in other DIEs.
19948     * Enable referencing still incompletely read in types just by a pointer to
19949       the type without accessing its fields.
19950
19951    Therefore caller should follow these rules:
19952      * Try to fetch any prerequisite types we may need to build this DIE type
19953        before building the type and calling set_die_type.
19954      * After building type call set_die_type for current DIE as soon as
19955        possible before fetching more types to complete the current type.
19956      * Make the type as complete as possible before fetching more types.  */
19957
19958 static struct type *
19959 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
19960 {
19961   struct dwarf2_per_cu_offset_and_type **slot, ofs;
19962   struct objfile *objfile = cu->objfile;
19963
19964   /* For Ada types, make sure that the gnat-specific data is always
19965      initialized (if not already set).  There are a few types where
19966      we should not be doing so, because the type-specific area is
19967      already used to hold some other piece of info (eg: TYPE_CODE_FLT
19968      where the type-specific area is used to store the floatformat).
19969      But this is not a problem, because the gnat-specific information
19970      is actually not needed for these types.  */
19971   if (need_gnat_info (cu)
19972       && TYPE_CODE (type) != TYPE_CODE_FUNC
19973       && TYPE_CODE (type) != TYPE_CODE_FLT
19974       && !HAVE_GNAT_AUX_INFO (type))
19975     INIT_GNAT_SPECIFIC (type);
19976
19977   if (dwarf2_per_objfile->die_type_hash == NULL)
19978     {
19979       dwarf2_per_objfile->die_type_hash =
19980         htab_create_alloc_ex (127,
19981                               per_cu_offset_and_type_hash,
19982                               per_cu_offset_and_type_eq,
19983                               NULL,
19984                               &objfile->objfile_obstack,
19985                               hashtab_obstack_allocate,
19986                               dummy_obstack_deallocate);
19987     }
19988
19989   ofs.per_cu = cu->per_cu;
19990   ofs.offset = die->offset;
19991   ofs.type = type;
19992   slot = (struct dwarf2_per_cu_offset_and_type **)
19993     htab_find_slot (dwarf2_per_objfile->die_type_hash, &ofs, INSERT);
19994   if (*slot)
19995     complaint (&symfile_complaints,
19996                _("A problem internal to GDB: DIE 0x%x has type already set"),
19997                die->offset.sect_off);
19998   *slot = obstack_alloc (&objfile->objfile_obstack, sizeof (**slot));
19999   **slot = ofs;
20000   return type;
20001 }
20002
20003 /* Look up the type for the die at OFFSET in PER_CU in die_type_hash,
20004    or return NULL if the die does not have a saved type.  */
20005
20006 static struct type *
20007 get_die_type_at_offset (sect_offset offset,
20008                         struct dwarf2_per_cu_data *per_cu)
20009 {
20010   struct dwarf2_per_cu_offset_and_type *slot, ofs;
20011
20012   if (dwarf2_per_objfile->die_type_hash == NULL)
20013     return NULL;
20014
20015   ofs.per_cu = per_cu;
20016   ofs.offset = offset;
20017   slot = htab_find (dwarf2_per_objfile->die_type_hash, &ofs);
20018   if (slot)
20019     return slot->type;
20020   else
20021     return NULL;
20022 }
20023
20024 /* Look up the type for DIE in CU in die_type_hash,
20025    or return NULL if DIE does not have a saved type.  */
20026
20027 static struct type *
20028 get_die_type (struct die_info *die, struct dwarf2_cu *cu)
20029 {
20030   return get_die_type_at_offset (die->offset, cu->per_cu);
20031 }
20032
20033 /* Add a dependence relationship from CU to REF_PER_CU.  */
20034
20035 static void
20036 dwarf2_add_dependence (struct dwarf2_cu *cu,
20037                        struct dwarf2_per_cu_data *ref_per_cu)
20038 {
20039   void **slot;
20040
20041   if (cu->dependencies == NULL)
20042     cu->dependencies
20043       = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
20044                               NULL, &cu->comp_unit_obstack,
20045                               hashtab_obstack_allocate,
20046                               dummy_obstack_deallocate);
20047
20048   slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
20049   if (*slot == NULL)
20050     *slot = ref_per_cu;
20051 }
20052
20053 /* Subroutine of dwarf2_mark to pass to htab_traverse.
20054    Set the mark field in every compilation unit in the
20055    cache that we must keep because we are keeping CU.  */
20056
20057 static int
20058 dwarf2_mark_helper (void **slot, void *data)
20059 {
20060   struct dwarf2_per_cu_data *per_cu;
20061
20062   per_cu = (struct dwarf2_per_cu_data *) *slot;
20063
20064   /* cu->dependencies references may not yet have been ever read if QUIT aborts
20065      reading of the chain.  As such dependencies remain valid it is not much
20066      useful to track and undo them during QUIT cleanups.  */
20067   if (per_cu->cu == NULL)
20068     return 1;
20069
20070   if (per_cu->cu->mark)
20071     return 1;
20072   per_cu->cu->mark = 1;
20073
20074   if (per_cu->cu->dependencies != NULL)
20075     htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
20076
20077   return 1;
20078 }
20079
20080 /* Set the mark field in CU and in every other compilation unit in the
20081    cache that we must keep because we are keeping CU.  */
20082
20083 static void
20084 dwarf2_mark (struct dwarf2_cu *cu)
20085 {
20086   if (cu->mark)
20087     return;
20088   cu->mark = 1;
20089   if (cu->dependencies != NULL)
20090     htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
20091 }
20092
20093 static void
20094 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
20095 {
20096   while (per_cu)
20097     {
20098       per_cu->cu->mark = 0;
20099       per_cu = per_cu->cu->read_in_chain;
20100     }
20101 }
20102
20103 /* Trivial hash function for partial_die_info: the hash value of a DIE
20104    is its offset in .debug_info for this objfile.  */
20105
20106 static hashval_t
20107 partial_die_hash (const void *item)
20108 {
20109   const struct partial_die_info *part_die = item;
20110
20111   return part_die->offset.sect_off;
20112 }
20113
20114 /* Trivial comparison function for partial_die_info structures: two DIEs
20115    are equal if they have the same offset.  */
20116
20117 static int
20118 partial_die_eq (const void *item_lhs, const void *item_rhs)
20119 {
20120   const struct partial_die_info *part_die_lhs = item_lhs;
20121   const struct partial_die_info *part_die_rhs = item_rhs;
20122
20123   return part_die_lhs->offset.sect_off == part_die_rhs->offset.sect_off;
20124 }
20125
20126 static struct cmd_list_element *set_dwarf2_cmdlist;
20127 static struct cmd_list_element *show_dwarf2_cmdlist;
20128
20129 static void
20130 set_dwarf2_cmd (char *args, int from_tty)
20131 {
20132   help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout);
20133 }
20134
20135 static void
20136 show_dwarf2_cmd (char *args, int from_tty)
20137 {
20138   cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
20139 }
20140
20141 /* Free data associated with OBJFILE, if necessary.  */
20142
20143 static void
20144 dwarf2_per_objfile_free (struct objfile *objfile, void *d)
20145 {
20146   struct dwarf2_per_objfile *data = d;
20147   int ix;
20148
20149   for (ix = 0; ix < dwarf2_per_objfile->n_comp_units; ++ix)
20150     VEC_free (dwarf2_per_cu_ptr,
20151               dwarf2_per_objfile->all_comp_units[ix]->imported_symtabs);
20152
20153   for (ix = 0; ix < dwarf2_per_objfile->n_type_units; ++ix)
20154     VEC_free (dwarf2_per_cu_ptr,
20155               dwarf2_per_objfile->all_type_units[ix]->per_cu.imported_symtabs);
20156
20157   VEC_free (dwarf2_section_info_def, data->types);
20158
20159   if (data->dwo_files)
20160     free_dwo_files (data->dwo_files, objfile);
20161   if (data->dwp_file)
20162     gdb_bfd_unref (data->dwp_file->dbfd);
20163
20164   if (data->dwz_file && data->dwz_file->dwz_bfd)
20165     gdb_bfd_unref (data->dwz_file->dwz_bfd);
20166 }
20167
20168 \f
20169 /* The "save gdb-index" command.  */
20170
20171 /* The contents of the hash table we create when building the string
20172    table.  */
20173 struct strtab_entry
20174 {
20175   offset_type offset;
20176   const char *str;
20177 };
20178
20179 /* Hash function for a strtab_entry.
20180
20181    Function is used only during write_hash_table so no index format backward
20182    compatibility is needed.  */
20183
20184 static hashval_t
20185 hash_strtab_entry (const void *e)
20186 {
20187   const struct strtab_entry *entry = e;
20188   return mapped_index_string_hash (INT_MAX, entry->str);
20189 }
20190
20191 /* Equality function for a strtab_entry.  */
20192
20193 static int
20194 eq_strtab_entry (const void *a, const void *b)
20195 {
20196   const struct strtab_entry *ea = a;
20197   const struct strtab_entry *eb = b;
20198   return !strcmp (ea->str, eb->str);
20199 }
20200
20201 /* Create a strtab_entry hash table.  */
20202
20203 static htab_t
20204 create_strtab (void)
20205 {
20206   return htab_create_alloc (100, hash_strtab_entry, eq_strtab_entry,
20207                             xfree, xcalloc, xfree);
20208 }
20209
20210 /* Add a string to the constant pool.  Return the string's offset in
20211    host order.  */
20212
20213 static offset_type
20214 add_string (htab_t table, struct obstack *cpool, const char *str)
20215 {
20216   void **slot;
20217   struct strtab_entry entry;
20218   struct strtab_entry *result;
20219
20220   entry.str = str;
20221   slot = htab_find_slot (table, &entry, INSERT);
20222   if (*slot)
20223     result = *slot;
20224   else
20225     {
20226       result = XNEW (struct strtab_entry);
20227       result->offset = obstack_object_size (cpool);
20228       result->str = str;
20229       obstack_grow_str0 (cpool, str);
20230       *slot = result;
20231     }
20232   return result->offset;
20233 }
20234
20235 /* An entry in the symbol table.  */
20236 struct symtab_index_entry
20237 {
20238   /* The name of the symbol.  */
20239   const char *name;
20240   /* The offset of the name in the constant pool.  */
20241   offset_type index_offset;
20242   /* A sorted vector of the indices of all the CUs that hold an object
20243      of this name.  */
20244   VEC (offset_type) *cu_indices;
20245 };
20246
20247 /* The symbol table.  This is a power-of-2-sized hash table.  */
20248 struct mapped_symtab
20249 {
20250   offset_type n_elements;
20251   offset_type size;
20252   struct symtab_index_entry **data;
20253 };
20254
20255 /* Hash function for a symtab_index_entry.  */
20256
20257 static hashval_t
20258 hash_symtab_entry (const void *e)
20259 {
20260   const struct symtab_index_entry *entry = e;
20261   return iterative_hash (VEC_address (offset_type, entry->cu_indices),
20262                          sizeof (offset_type) * VEC_length (offset_type,
20263                                                             entry->cu_indices),
20264                          0);
20265 }
20266
20267 /* Equality function for a symtab_index_entry.  */
20268
20269 static int
20270 eq_symtab_entry (const void *a, const void *b)
20271 {
20272   const struct symtab_index_entry *ea = a;
20273   const struct symtab_index_entry *eb = b;
20274   int len = VEC_length (offset_type, ea->cu_indices);
20275   if (len != VEC_length (offset_type, eb->cu_indices))
20276     return 0;
20277   return !memcmp (VEC_address (offset_type, ea->cu_indices),
20278                   VEC_address (offset_type, eb->cu_indices),
20279                   sizeof (offset_type) * len);
20280 }
20281
20282 /* Destroy a symtab_index_entry.  */
20283
20284 static void
20285 delete_symtab_entry (void *p)
20286 {
20287   struct symtab_index_entry *entry = p;
20288   VEC_free (offset_type, entry->cu_indices);
20289   xfree (entry);
20290 }
20291
20292 /* Create a hash table holding symtab_index_entry objects.  */
20293
20294 static htab_t
20295 create_symbol_hash_table (void)
20296 {
20297   return htab_create_alloc (100, hash_symtab_entry, eq_symtab_entry,
20298                             delete_symtab_entry, xcalloc, xfree);
20299 }
20300
20301 /* Create a new mapped symtab object.  */
20302
20303 static struct mapped_symtab *
20304 create_mapped_symtab (void)
20305 {
20306   struct mapped_symtab *symtab = XNEW (struct mapped_symtab);
20307   symtab->n_elements = 0;
20308   symtab->size = 1024;
20309   symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
20310   return symtab;
20311 }
20312
20313 /* Destroy a mapped_symtab.  */
20314
20315 static void
20316 cleanup_mapped_symtab (void *p)
20317 {
20318   struct mapped_symtab *symtab = p;
20319   /* The contents of the array are freed when the other hash table is
20320      destroyed.  */
20321   xfree (symtab->data);
20322   xfree (symtab);
20323 }
20324
20325 /* Find a slot in SYMTAB for the symbol NAME.  Returns a pointer to
20326    the slot.
20327    
20328    Function is used only during write_hash_table so no index format backward
20329    compatibility is needed.  */
20330
20331 static struct symtab_index_entry **
20332 find_slot (struct mapped_symtab *symtab, const char *name)
20333 {
20334   offset_type index, step, hash = mapped_index_string_hash (INT_MAX, name);
20335
20336   index = hash & (symtab->size - 1);
20337   step = ((hash * 17) & (symtab->size - 1)) | 1;
20338
20339   for (;;)
20340     {
20341       if (!symtab->data[index] || !strcmp (name, symtab->data[index]->name))
20342         return &symtab->data[index];
20343       index = (index + step) & (symtab->size - 1);
20344     }
20345 }
20346
20347 /* Expand SYMTAB's hash table.  */
20348
20349 static void
20350 hash_expand (struct mapped_symtab *symtab)
20351 {
20352   offset_type old_size = symtab->size;
20353   offset_type i;
20354   struct symtab_index_entry **old_entries = symtab->data;
20355
20356   symtab->size *= 2;
20357   symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
20358
20359   for (i = 0; i < old_size; ++i)
20360     {
20361       if (old_entries[i])
20362         {
20363           struct symtab_index_entry **slot = find_slot (symtab,
20364                                                         old_entries[i]->name);
20365           *slot = old_entries[i];
20366         }
20367     }
20368
20369   xfree (old_entries);
20370 }
20371
20372 /* Add an entry to SYMTAB.  NAME is the name of the symbol.
20373    CU_INDEX is the index of the CU in which the symbol appears.
20374    IS_STATIC is one if the symbol is static, otherwise zero (global).  */
20375
20376 static void
20377 add_index_entry (struct mapped_symtab *symtab, const char *name,
20378                  int is_static, gdb_index_symbol_kind kind,
20379                  offset_type cu_index)
20380 {
20381   struct symtab_index_entry **slot;
20382   offset_type cu_index_and_attrs;
20383
20384   ++symtab->n_elements;
20385   if (4 * symtab->n_elements / 3 >= symtab->size)
20386     hash_expand (symtab);
20387
20388   slot = find_slot (symtab, name);
20389   if (!*slot)
20390     {
20391       *slot = XNEW (struct symtab_index_entry);
20392       (*slot)->name = name;
20393       /* index_offset is set later.  */
20394       (*slot)->cu_indices = NULL;
20395     }
20396
20397   cu_index_and_attrs = 0;
20398   DW2_GDB_INDEX_CU_SET_VALUE (cu_index_and_attrs, cu_index);
20399   DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE (cu_index_and_attrs, is_static);
20400   DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE (cu_index_and_attrs, kind);
20401
20402   /* We don't want to record an index value twice as we want to avoid the
20403      duplication.
20404      We process all global symbols and then all static symbols
20405      (which would allow us to avoid the duplication by only having to check
20406      the last entry pushed), but a symbol could have multiple kinds in one CU.
20407      To keep things simple we don't worry about the duplication here and
20408      sort and uniqufy the list after we've processed all symbols.  */
20409   VEC_safe_push (offset_type, (*slot)->cu_indices, cu_index_and_attrs);
20410 }
20411
20412 /* qsort helper routine for uniquify_cu_indices.  */
20413
20414 static int
20415 offset_type_compare (const void *ap, const void *bp)
20416 {
20417   offset_type a = *(offset_type *) ap;
20418   offset_type b = *(offset_type *) bp;
20419
20420   return (a > b) - (b > a);
20421 }
20422
20423 /* Sort and remove duplicates of all symbols' cu_indices lists.  */
20424
20425 static void
20426 uniquify_cu_indices (struct mapped_symtab *symtab)
20427 {
20428   int i;
20429
20430   for (i = 0; i < symtab->size; ++i)
20431     {
20432       struct symtab_index_entry *entry = symtab->data[i];
20433
20434       if (entry
20435           && entry->cu_indices != NULL)
20436         {
20437           unsigned int next_to_insert, next_to_check;
20438           offset_type last_value;
20439
20440           qsort (VEC_address (offset_type, entry->cu_indices),
20441                  VEC_length (offset_type, entry->cu_indices),
20442                  sizeof (offset_type), offset_type_compare);
20443
20444           last_value = VEC_index (offset_type, entry->cu_indices, 0);
20445           next_to_insert = 1;
20446           for (next_to_check = 1;
20447                next_to_check < VEC_length (offset_type, entry->cu_indices);
20448                ++next_to_check)
20449             {
20450               if (VEC_index (offset_type, entry->cu_indices, next_to_check)
20451                   != last_value)
20452                 {
20453                   last_value = VEC_index (offset_type, entry->cu_indices,
20454                                           next_to_check);
20455                   VEC_replace (offset_type, entry->cu_indices, next_to_insert,
20456                                last_value);
20457                   ++next_to_insert;
20458                 }
20459             }
20460           VEC_truncate (offset_type, entry->cu_indices, next_to_insert);
20461         }
20462     }
20463 }
20464
20465 /* Add a vector of indices to the constant pool.  */
20466
20467 static offset_type
20468 add_indices_to_cpool (htab_t symbol_hash_table, struct obstack *cpool,
20469                       struct symtab_index_entry *entry)
20470 {
20471   void **slot;
20472
20473   slot = htab_find_slot (symbol_hash_table, entry, INSERT);
20474   if (!*slot)
20475     {
20476       offset_type len = VEC_length (offset_type, entry->cu_indices);
20477       offset_type val = MAYBE_SWAP (len);
20478       offset_type iter;
20479       int i;
20480
20481       *slot = entry;
20482       entry->index_offset = obstack_object_size (cpool);
20483
20484       obstack_grow (cpool, &val, sizeof (val));
20485       for (i = 0;
20486            VEC_iterate (offset_type, entry->cu_indices, i, iter);
20487            ++i)
20488         {
20489           val = MAYBE_SWAP (iter);
20490           obstack_grow (cpool, &val, sizeof (val));
20491         }
20492     }
20493   else
20494     {
20495       struct symtab_index_entry *old_entry = *slot;
20496       entry->index_offset = old_entry->index_offset;
20497       entry = old_entry;
20498     }
20499   return entry->index_offset;
20500 }
20501
20502 /* Write the mapped hash table SYMTAB to the obstack OUTPUT, with
20503    constant pool entries going into the obstack CPOOL.  */
20504
20505 static void
20506 write_hash_table (struct mapped_symtab *symtab,
20507                   struct obstack *output, struct obstack *cpool)
20508 {
20509   offset_type i;
20510   htab_t symbol_hash_table;
20511   htab_t str_table;
20512
20513   symbol_hash_table = create_symbol_hash_table ();
20514   str_table = create_strtab ();
20515
20516   /* We add all the index vectors to the constant pool first, to
20517      ensure alignment is ok.  */
20518   for (i = 0; i < symtab->size; ++i)
20519     {
20520       if (symtab->data[i])
20521         add_indices_to_cpool (symbol_hash_table, cpool, symtab->data[i]);
20522     }
20523
20524   /* Now write out the hash table.  */
20525   for (i = 0; i < symtab->size; ++i)
20526     {
20527       offset_type str_off, vec_off;
20528
20529       if (symtab->data[i])
20530         {
20531           str_off = add_string (str_table, cpool, symtab->data[i]->name);
20532           vec_off = symtab->data[i]->index_offset;
20533         }
20534       else
20535         {
20536           /* While 0 is a valid constant pool index, it is not valid
20537              to have 0 for both offsets.  */
20538           str_off = 0;
20539           vec_off = 0;
20540         }
20541
20542       str_off = MAYBE_SWAP (str_off);
20543       vec_off = MAYBE_SWAP (vec_off);
20544
20545       obstack_grow (output, &str_off, sizeof (str_off));
20546       obstack_grow (output, &vec_off, sizeof (vec_off));
20547     }
20548
20549   htab_delete (str_table);
20550   htab_delete (symbol_hash_table);
20551 }
20552
20553 /* Struct to map psymtab to CU index in the index file.  */
20554 struct psymtab_cu_index_map
20555 {
20556   struct partial_symtab *psymtab;
20557   unsigned int cu_index;
20558 };
20559
20560 static hashval_t
20561 hash_psymtab_cu_index (const void *item)
20562 {
20563   const struct psymtab_cu_index_map *map = item;
20564
20565   return htab_hash_pointer (map->psymtab);
20566 }
20567
20568 static int
20569 eq_psymtab_cu_index (const void *item_lhs, const void *item_rhs)
20570 {
20571   const struct psymtab_cu_index_map *lhs = item_lhs;
20572   const struct psymtab_cu_index_map *rhs = item_rhs;
20573
20574   return lhs->psymtab == rhs->psymtab;
20575 }
20576
20577 /* Helper struct for building the address table.  */
20578 struct addrmap_index_data
20579 {
20580   struct objfile *objfile;
20581   struct obstack *addr_obstack;
20582   htab_t cu_index_htab;
20583
20584   /* Non-zero if the previous_* fields are valid.
20585      We can't write an entry until we see the next entry (since it is only then
20586      that we know the end of the entry).  */
20587   int previous_valid;
20588   /* Index of the CU in the table of all CUs in the index file.  */
20589   unsigned int previous_cu_index;
20590   /* Start address of the CU.  */
20591   CORE_ADDR previous_cu_start;
20592 };
20593
20594 /* Write an address entry to OBSTACK.  */
20595
20596 static void
20597 add_address_entry (struct objfile *objfile, struct obstack *obstack,
20598                    CORE_ADDR start, CORE_ADDR end, unsigned int cu_index)
20599 {
20600   offset_type cu_index_to_write;
20601   gdb_byte addr[8];
20602   CORE_ADDR baseaddr;
20603
20604   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
20605
20606   store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, start - baseaddr);
20607   obstack_grow (obstack, addr, 8);
20608   store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, end - baseaddr);
20609   obstack_grow (obstack, addr, 8);
20610   cu_index_to_write = MAYBE_SWAP (cu_index);
20611   obstack_grow (obstack, &cu_index_to_write, sizeof (offset_type));
20612 }
20613
20614 /* Worker function for traversing an addrmap to build the address table.  */
20615
20616 static int
20617 add_address_entry_worker (void *datap, CORE_ADDR start_addr, void *obj)
20618 {
20619   struct addrmap_index_data *data = datap;
20620   struct partial_symtab *pst = obj;
20621
20622   if (data->previous_valid)
20623     add_address_entry (data->objfile, data->addr_obstack,
20624                        data->previous_cu_start, start_addr,
20625                        data->previous_cu_index);
20626
20627   data->previous_cu_start = start_addr;
20628   if (pst != NULL)
20629     {
20630       struct psymtab_cu_index_map find_map, *map;
20631       find_map.psymtab = pst;
20632       map = htab_find (data->cu_index_htab, &find_map);
20633       gdb_assert (map != NULL);
20634       data->previous_cu_index = map->cu_index;
20635       data->previous_valid = 1;
20636     }
20637   else
20638       data->previous_valid = 0;
20639
20640   return 0;
20641 }
20642
20643 /* Write OBJFILE's address map to OBSTACK.
20644    CU_INDEX_HTAB is used to map addrmap entries to their CU indices
20645    in the index file.  */
20646
20647 static void
20648 write_address_map (struct objfile *objfile, struct obstack *obstack,
20649                    htab_t cu_index_htab)
20650 {
20651   struct addrmap_index_data addrmap_index_data;
20652
20653   /* When writing the address table, we have to cope with the fact that
20654      the addrmap iterator only provides the start of a region; we have to
20655      wait until the next invocation to get the start of the next region.  */
20656
20657   addrmap_index_data.objfile = objfile;
20658   addrmap_index_data.addr_obstack = obstack;
20659   addrmap_index_data.cu_index_htab = cu_index_htab;
20660   addrmap_index_data.previous_valid = 0;
20661
20662   addrmap_foreach (objfile->psymtabs_addrmap, add_address_entry_worker,
20663                    &addrmap_index_data);
20664
20665   /* It's highly unlikely the last entry (end address = 0xff...ff)
20666      is valid, but we should still handle it.
20667      The end address is recorded as the start of the next region, but that
20668      doesn't work here.  To cope we pass 0xff...ff, this is a rare situation
20669      anyway.  */
20670   if (addrmap_index_data.previous_valid)
20671     add_address_entry (objfile, obstack,
20672                        addrmap_index_data.previous_cu_start, (CORE_ADDR) -1,
20673                        addrmap_index_data.previous_cu_index);
20674 }
20675
20676 /* Return the symbol kind of PSYM.  */
20677
20678 static gdb_index_symbol_kind
20679 symbol_kind (struct partial_symbol *psym)
20680 {
20681   domain_enum domain = PSYMBOL_DOMAIN (psym);
20682   enum address_class aclass = PSYMBOL_CLASS (psym);
20683
20684   switch (domain)
20685     {
20686     case VAR_DOMAIN:
20687       switch (aclass)
20688         {
20689         case LOC_BLOCK:
20690           return GDB_INDEX_SYMBOL_KIND_FUNCTION;
20691         case LOC_TYPEDEF:
20692           return GDB_INDEX_SYMBOL_KIND_TYPE;
20693         case LOC_COMPUTED:
20694         case LOC_CONST_BYTES:
20695         case LOC_OPTIMIZED_OUT:
20696         case LOC_STATIC:
20697           return GDB_INDEX_SYMBOL_KIND_VARIABLE;
20698         case LOC_CONST:
20699           /* Note: It's currently impossible to recognize psyms as enum values
20700              short of reading the type info.  For now punt.  */
20701           return GDB_INDEX_SYMBOL_KIND_VARIABLE;
20702         default:
20703           /* There are other LOC_FOO values that one might want to classify
20704              as variables, but dwarf2read.c doesn't currently use them.  */
20705           return GDB_INDEX_SYMBOL_KIND_OTHER;
20706         }
20707     case STRUCT_DOMAIN:
20708       return GDB_INDEX_SYMBOL_KIND_TYPE;
20709     default:
20710       return GDB_INDEX_SYMBOL_KIND_OTHER;
20711     }
20712 }
20713
20714 /* Add a list of partial symbols to SYMTAB.  */
20715
20716 static void
20717 write_psymbols (struct mapped_symtab *symtab,
20718                 htab_t psyms_seen,
20719                 struct partial_symbol **psymp,
20720                 int count,
20721                 offset_type cu_index,
20722                 int is_static)
20723 {
20724   for (; count-- > 0; ++psymp)
20725     {
20726       struct partial_symbol *psym = *psymp;
20727       void **slot;
20728
20729       if (SYMBOL_LANGUAGE (psym) == language_ada)
20730         error (_("Ada is not currently supported by the index"));
20731
20732       /* Only add a given psymbol once.  */
20733       slot = htab_find_slot (psyms_seen, psym, INSERT);
20734       if (!*slot)
20735         {
20736           gdb_index_symbol_kind kind = symbol_kind (psym);
20737
20738           *slot = psym;
20739           add_index_entry (symtab, SYMBOL_SEARCH_NAME (psym),
20740                            is_static, kind, cu_index);
20741         }
20742     }
20743 }
20744
20745 /* Write the contents of an ("unfinished") obstack to FILE.  Throw an
20746    exception if there is an error.  */
20747
20748 static void
20749 write_obstack (FILE *file, struct obstack *obstack)
20750 {
20751   if (fwrite (obstack_base (obstack), 1, obstack_object_size (obstack),
20752               file)
20753       != obstack_object_size (obstack))
20754     error (_("couldn't data write to file"));
20755 }
20756
20757 /* Unlink a file if the argument is not NULL.  */
20758
20759 static void
20760 unlink_if_set (void *p)
20761 {
20762   char **filename = p;
20763   if (*filename)
20764     unlink (*filename);
20765 }
20766
20767 /* A helper struct used when iterating over debug_types.  */
20768 struct signatured_type_index_data
20769 {
20770   struct objfile *objfile;
20771   struct mapped_symtab *symtab;
20772   struct obstack *types_list;
20773   htab_t psyms_seen;
20774   int cu_index;
20775 };
20776
20777 /* A helper function that writes a single signatured_type to an
20778    obstack.  */
20779
20780 static int
20781 write_one_signatured_type (void **slot, void *d)
20782 {
20783   struct signatured_type_index_data *info = d;
20784   struct signatured_type *entry = (struct signatured_type *) *slot;
20785   struct partial_symtab *psymtab = entry->per_cu.v.psymtab;
20786   gdb_byte val[8];
20787
20788   write_psymbols (info->symtab,
20789                   info->psyms_seen,
20790                   info->objfile->global_psymbols.list
20791                   + psymtab->globals_offset,
20792                   psymtab->n_global_syms, info->cu_index,
20793                   0);
20794   write_psymbols (info->symtab,
20795                   info->psyms_seen,
20796                   info->objfile->static_psymbols.list
20797                   + psymtab->statics_offset,
20798                   psymtab->n_static_syms, info->cu_index,
20799                   1);
20800
20801   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
20802                           entry->per_cu.offset.sect_off);
20803   obstack_grow (info->types_list, val, 8);
20804   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
20805                           entry->type_offset_in_tu.cu_off);
20806   obstack_grow (info->types_list, val, 8);
20807   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->signature);
20808   obstack_grow (info->types_list, val, 8);
20809
20810   ++info->cu_index;
20811
20812   return 1;
20813 }
20814
20815 /* Recurse into all "included" dependencies and write their symbols as
20816    if they appeared in this psymtab.  */
20817
20818 static void
20819 recursively_write_psymbols (struct objfile *objfile,
20820                             struct partial_symtab *psymtab,
20821                             struct mapped_symtab *symtab,
20822                             htab_t psyms_seen,
20823                             offset_type cu_index)
20824 {
20825   int i;
20826
20827   for (i = 0; i < psymtab->number_of_dependencies; ++i)
20828     if (psymtab->dependencies[i]->user != NULL)
20829       recursively_write_psymbols (objfile, psymtab->dependencies[i],
20830                                   symtab, psyms_seen, cu_index);
20831
20832   write_psymbols (symtab,
20833                   psyms_seen,
20834                   objfile->global_psymbols.list + psymtab->globals_offset,
20835                   psymtab->n_global_syms, cu_index,
20836                   0);
20837   write_psymbols (symtab,
20838                   psyms_seen,
20839                   objfile->static_psymbols.list + psymtab->statics_offset,
20840                   psymtab->n_static_syms, cu_index,
20841                   1);
20842 }
20843
20844 /* Create an index file for OBJFILE in the directory DIR.  */
20845
20846 static void
20847 write_psymtabs_to_index (struct objfile *objfile, const char *dir)
20848 {
20849   struct cleanup *cleanup;
20850   char *filename, *cleanup_filename;
20851   struct obstack contents, addr_obstack, constant_pool, symtab_obstack;
20852   struct obstack cu_list, types_cu_list;
20853   int i;
20854   FILE *out_file;
20855   struct mapped_symtab *symtab;
20856   offset_type val, size_of_contents, total_len;
20857   struct stat st;
20858   htab_t psyms_seen;
20859   htab_t cu_index_htab;
20860   struct psymtab_cu_index_map *psymtab_cu_index_map;
20861
20862   if (!objfile->psymtabs || !objfile->psymtabs_addrmap)
20863     return;
20864
20865   if (dwarf2_per_objfile->using_index)
20866     error (_("Cannot use an index to create the index"));
20867
20868   if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) > 1)
20869     error (_("Cannot make an index when the file has multiple .debug_types sections"));
20870
20871   if (stat (objfile->name, &st) < 0)
20872     perror_with_name (objfile->name);
20873
20874   filename = concat (dir, SLASH_STRING, lbasename (objfile->name),
20875                      INDEX_SUFFIX, (char *) NULL);
20876   cleanup = make_cleanup (xfree, filename);
20877
20878   out_file = gdb_fopen_cloexec (filename, "wb");
20879   if (!out_file)
20880     error (_("Can't open `%s' for writing"), filename);
20881
20882   cleanup_filename = filename;
20883   make_cleanup (unlink_if_set, &cleanup_filename);
20884
20885   symtab = create_mapped_symtab ();
20886   make_cleanup (cleanup_mapped_symtab, symtab);
20887
20888   obstack_init (&addr_obstack);
20889   make_cleanup_obstack_free (&addr_obstack);
20890
20891   obstack_init (&cu_list);
20892   make_cleanup_obstack_free (&cu_list);
20893
20894   obstack_init (&types_cu_list);
20895   make_cleanup_obstack_free (&types_cu_list);
20896
20897   psyms_seen = htab_create_alloc (100, htab_hash_pointer, htab_eq_pointer,
20898                                   NULL, xcalloc, xfree);
20899   make_cleanup_htab_delete (psyms_seen);
20900
20901   /* While we're scanning CU's create a table that maps a psymtab pointer
20902      (which is what addrmap records) to its index (which is what is recorded
20903      in the index file).  This will later be needed to write the address
20904      table.  */
20905   cu_index_htab = htab_create_alloc (100,
20906                                      hash_psymtab_cu_index,
20907                                      eq_psymtab_cu_index,
20908                                      NULL, xcalloc, xfree);
20909   make_cleanup_htab_delete (cu_index_htab);
20910   psymtab_cu_index_map = (struct psymtab_cu_index_map *)
20911     xmalloc (sizeof (struct psymtab_cu_index_map)
20912              * dwarf2_per_objfile->n_comp_units);
20913   make_cleanup (xfree, psymtab_cu_index_map);
20914
20915   /* The CU list is already sorted, so we don't need to do additional
20916      work here.  Also, the debug_types entries do not appear in
20917      all_comp_units, but only in their own hash table.  */
20918   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
20919     {
20920       struct dwarf2_per_cu_data *per_cu
20921         = dwarf2_per_objfile->all_comp_units[i];
20922       struct partial_symtab *psymtab = per_cu->v.psymtab;
20923       gdb_byte val[8];
20924       struct psymtab_cu_index_map *map;
20925       void **slot;
20926
20927       if (psymtab->user == NULL)
20928         recursively_write_psymbols (objfile, psymtab, symtab, psyms_seen, i);
20929
20930       map = &psymtab_cu_index_map[i];
20931       map->psymtab = psymtab;
20932       map->cu_index = i;
20933       slot = htab_find_slot (cu_index_htab, map, INSERT);
20934       gdb_assert (slot != NULL);
20935       gdb_assert (*slot == NULL);
20936       *slot = map;
20937
20938       store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
20939                               per_cu->offset.sect_off);
20940       obstack_grow (&cu_list, val, 8);
20941       store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->length);
20942       obstack_grow (&cu_list, val, 8);
20943     }
20944
20945   /* Dump the address map.  */
20946   write_address_map (objfile, &addr_obstack, cu_index_htab);
20947
20948   /* Write out the .debug_type entries, if any.  */
20949   if (dwarf2_per_objfile->signatured_types)
20950     {
20951       struct signatured_type_index_data sig_data;
20952
20953       sig_data.objfile = objfile;
20954       sig_data.symtab = symtab;
20955       sig_data.types_list = &types_cu_list;
20956       sig_data.psyms_seen = psyms_seen;
20957       sig_data.cu_index = dwarf2_per_objfile->n_comp_units;
20958       htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
20959                               write_one_signatured_type, &sig_data);
20960     }
20961
20962   /* Now that we've processed all symbols we can shrink their cu_indices
20963      lists.  */
20964   uniquify_cu_indices (symtab);
20965
20966   obstack_init (&constant_pool);
20967   make_cleanup_obstack_free (&constant_pool);
20968   obstack_init (&symtab_obstack);
20969   make_cleanup_obstack_free (&symtab_obstack);
20970   write_hash_table (symtab, &symtab_obstack, &constant_pool);
20971
20972   obstack_init (&contents);
20973   make_cleanup_obstack_free (&contents);
20974   size_of_contents = 6 * sizeof (offset_type);
20975   total_len = size_of_contents;
20976
20977   /* The version number.  */
20978   val = MAYBE_SWAP (8);
20979   obstack_grow (&contents, &val, sizeof (val));
20980
20981   /* The offset of the CU list from the start of the file.  */
20982   val = MAYBE_SWAP (total_len);
20983   obstack_grow (&contents, &val, sizeof (val));
20984   total_len += obstack_object_size (&cu_list);
20985
20986   /* The offset of the types CU list from the start of the file.  */
20987   val = MAYBE_SWAP (total_len);
20988   obstack_grow (&contents, &val, sizeof (val));
20989   total_len += obstack_object_size (&types_cu_list);
20990
20991   /* The offset of the address table from the start of the file.  */
20992   val = MAYBE_SWAP (total_len);
20993   obstack_grow (&contents, &val, sizeof (val));
20994   total_len += obstack_object_size (&addr_obstack);
20995
20996   /* The offset of the symbol table from the start of the file.  */
20997   val = MAYBE_SWAP (total_len);
20998   obstack_grow (&contents, &val, sizeof (val));
20999   total_len += obstack_object_size (&symtab_obstack);
21000
21001   /* The offset of the constant pool from the start of the file.  */
21002   val = MAYBE_SWAP (total_len);
21003   obstack_grow (&contents, &val, sizeof (val));
21004   total_len += obstack_object_size (&constant_pool);
21005
21006   gdb_assert (obstack_object_size (&contents) == size_of_contents);
21007
21008   write_obstack (out_file, &contents);
21009   write_obstack (out_file, &cu_list);
21010   write_obstack (out_file, &types_cu_list);
21011   write_obstack (out_file, &addr_obstack);
21012   write_obstack (out_file, &symtab_obstack);
21013   write_obstack (out_file, &constant_pool);
21014
21015   fclose (out_file);
21016
21017   /* We want to keep the file, so we set cleanup_filename to NULL
21018      here.  See unlink_if_set.  */
21019   cleanup_filename = NULL;
21020
21021   do_cleanups (cleanup);
21022 }
21023
21024 /* Implementation of the `save gdb-index' command.
21025    
21026    Note that the file format used by this command is documented in the
21027    GDB manual.  Any changes here must be documented there.  */
21028
21029 static void
21030 save_gdb_index_command (char *arg, int from_tty)
21031 {
21032   struct objfile *objfile;
21033
21034   if (!arg || !*arg)
21035     error (_("usage: save gdb-index DIRECTORY"));
21036
21037   ALL_OBJFILES (objfile)
21038   {
21039     struct stat st;
21040
21041     /* If the objfile does not correspond to an actual file, skip it.  */
21042     if (stat (objfile->name, &st) < 0)
21043       continue;
21044
21045     dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
21046     if (dwarf2_per_objfile)
21047       {
21048         volatile struct gdb_exception except;
21049
21050         TRY_CATCH (except, RETURN_MASK_ERROR)
21051           {
21052             write_psymtabs_to_index (objfile, arg);
21053           }
21054         if (except.reason < 0)
21055           exception_fprintf (gdb_stderr, except,
21056                              _("Error while writing index for `%s': "),
21057                              objfile->name);
21058       }
21059   }
21060 }
21061
21062 \f
21063
21064 int dwarf2_always_disassemble;
21065
21066 static void
21067 show_dwarf2_always_disassemble (struct ui_file *file, int from_tty,
21068                                 struct cmd_list_element *c, const char *value)
21069 {
21070   fprintf_filtered (file,
21071                     _("Whether to always disassemble "
21072                       "DWARF expressions is %s.\n"),
21073                     value);
21074 }
21075
21076 static void
21077 show_check_physname (struct ui_file *file, int from_tty,
21078                      struct cmd_list_element *c, const char *value)
21079 {
21080   fprintf_filtered (file,
21081                     _("Whether to check \"physname\" is %s.\n"),
21082                     value);
21083 }
21084
21085 void _initialize_dwarf2_read (void);
21086
21087 void
21088 _initialize_dwarf2_read (void)
21089 {
21090   struct cmd_list_element *c;
21091
21092   dwarf2_objfile_data_key
21093     = register_objfile_data_with_cleanup (NULL, dwarf2_per_objfile_free);
21094
21095   add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
21096 Set DWARF 2 specific variables.\n\
21097 Configure DWARF 2 variables such as the cache size"),
21098                   &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
21099                   0/*allow-unknown*/, &maintenance_set_cmdlist);
21100
21101   add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
21102 Show DWARF 2 specific variables\n\
21103 Show DWARF 2 variables such as the cache size"),
21104                   &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
21105                   0/*allow-unknown*/, &maintenance_show_cmdlist);
21106
21107   add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
21108                             &dwarf2_max_cache_age, _("\
21109 Set the upper bound on the age of cached dwarf2 compilation units."), _("\
21110 Show the upper bound on the age of cached dwarf2 compilation units."), _("\
21111 A higher limit means that cached compilation units will be stored\n\
21112 in memory longer, and more total memory will be used.  Zero disables\n\
21113 caching, which can slow down startup."),
21114                             NULL,
21115                             show_dwarf2_max_cache_age,
21116                             &set_dwarf2_cmdlist,
21117                             &show_dwarf2_cmdlist);
21118
21119   add_setshow_boolean_cmd ("always-disassemble", class_obscure,
21120                            &dwarf2_always_disassemble, _("\
21121 Set whether `info address' always disassembles DWARF expressions."), _("\
21122 Show whether `info address' always disassembles DWARF expressions."), _("\
21123 When enabled, DWARF expressions are always printed in an assembly-like\n\
21124 syntax.  When disabled, expressions will be printed in a more\n\
21125 conversational style, when possible."),
21126                            NULL,
21127                            show_dwarf2_always_disassemble,
21128                            &set_dwarf2_cmdlist,
21129                            &show_dwarf2_cmdlist);
21130
21131   add_setshow_boolean_cmd ("dwarf2-read", no_class, &dwarf2_read_debug, _("\
21132 Set debugging of the dwarf2 reader."), _("\
21133 Show debugging of the dwarf2 reader."), _("\
21134 When enabled, debugging messages are printed during dwarf2 reading\n\
21135 and symtab expansion."),
21136                             NULL,
21137                             NULL,
21138                             &setdebuglist, &showdebuglist);
21139
21140   add_setshow_zuinteger_cmd ("dwarf2-die", no_class, &dwarf2_die_debug, _("\
21141 Set debugging of the dwarf2 DIE reader."), _("\
21142 Show debugging of the dwarf2 DIE reader."), _("\
21143 When enabled (non-zero), DIEs are dumped after they are read in.\n\
21144 The value is the maximum depth to print."),
21145                              NULL,
21146                              NULL,
21147                              &setdebuglist, &showdebuglist);
21148
21149   add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
21150 Set cross-checking of \"physname\" code against demangler."), _("\
21151 Show cross-checking of \"physname\" code against demangler."), _("\
21152 When enabled, GDB's internal \"physname\" code is checked against\n\
21153 the demangler."),
21154                            NULL, show_check_physname,
21155                            &setdebuglist, &showdebuglist);
21156
21157   add_setshow_boolean_cmd ("use-deprecated-index-sections",
21158                            no_class, &use_deprecated_index_sections, _("\
21159 Set whether to use deprecated gdb_index sections."), _("\
21160 Show whether to use deprecated gdb_index sections."), _("\
21161 When enabled, deprecated .gdb_index sections are used anyway.\n\
21162 Normally they are ignored either because of a missing feature or\n\
21163 performance issue.\n\
21164 Warning: This option must be enabled before gdb reads the file."),
21165                            NULL,
21166                            NULL,
21167                            &setlist, &showlist);
21168
21169   c = add_cmd ("gdb-index", class_files, save_gdb_index_command,
21170                _("\
21171 Save a gdb-index file.\n\
21172 Usage: save gdb-index DIRECTORY"),
21173                &save_cmdlist);
21174   set_cmd_completer (c, filename_completer);
21175
21176   dwarf2_locexpr_index = register_symbol_computed_impl (LOC_COMPUTED,
21177                                                         &dwarf2_locexpr_funcs);
21178   dwarf2_loclist_index = register_symbol_computed_impl (LOC_COMPUTED,
21179                                                         &dwarf2_loclist_funcs);
21180
21181   dwarf2_locexpr_block_index = register_symbol_block_impl (LOC_BLOCK,
21182                                         &dwarf2_block_frame_base_locexpr_funcs);
21183   dwarf2_loclist_block_index = register_symbol_block_impl (LOC_BLOCK,
21184                                         &dwarf2_block_frame_base_loclist_funcs);
21185 }