* dwarf2read.c (struct dwarf2_per_cu_data): Rename member
[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
72 #include <fcntl.h>
73 #include "gdb_string.h"
74 #include "gdb_assert.h"
75 #include <sys/types.h>
76
77 typedef struct symbol *symbolp;
78 DEF_VEC_P (symbolp);
79
80 /* When non-zero, print basic high level tracing messages.
81    This is in contrast to the low level DIE reading of dwarf2_die_debug.  */
82 static int dwarf2_read_debug = 0;
83
84 /* When non-zero, dump DIEs after they are read in.  */
85 static unsigned int dwarf2_die_debug = 0;
86
87 /* When non-zero, cross-check physname against demangler.  */
88 static int check_physname = 0;
89
90 /* When non-zero, do not reject deprecated .gdb_index sections.  */
91 static int use_deprecated_index_sections = 0;
92
93 static const struct objfile_data *dwarf2_objfile_data_key;
94
95 /* The "aclass" indices for various kinds of computed DWARF symbols.  */
96
97 static int dwarf2_locexpr_index;
98 static int dwarf2_loclist_index;
99 static int dwarf2_locexpr_block_index;
100 static int dwarf2_loclist_block_index;
101
102 struct dwarf2_section_info
103 {
104   asection *asection;
105   gdb_byte *buffer;
106   bfd_size_type size;
107   /* True if we have tried to read this section.  */
108   int readin;
109 };
110
111 typedef struct dwarf2_section_info dwarf2_section_info_def;
112 DEF_VEC_O (dwarf2_section_info_def);
113
114 /* All offsets in the index are of this type.  It must be
115    architecture-independent.  */
116 typedef uint32_t offset_type;
117
118 DEF_VEC_I (offset_type);
119
120 /* Ensure only legit values are used.  */
121 #define DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE(cu_index, value) \
122   do { \
123     gdb_assert ((unsigned int) (value) <= 1); \
124     GDB_INDEX_SYMBOL_STATIC_SET_VALUE((cu_index), (value)); \
125   } while (0)
126
127 /* Ensure only legit values are used.  */
128 #define DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE(cu_index, value) \
129   do { \
130     gdb_assert ((value) >= GDB_INDEX_SYMBOL_KIND_TYPE \
131                 && (value) <= GDB_INDEX_SYMBOL_KIND_OTHER); \
132     GDB_INDEX_SYMBOL_KIND_SET_VALUE((cu_index), (value)); \
133   } while (0)
134
135 /* Ensure we don't use more than the alloted nuber of bits for the CU.  */
136 #define DW2_GDB_INDEX_CU_SET_VALUE(cu_index, value) \
137   do { \
138     gdb_assert (((value) & ~GDB_INDEX_CU_MASK) == 0); \
139     GDB_INDEX_CU_SET_VALUE((cu_index), (value)); \
140   } while (0)
141
142 /* A description of the mapped index.  The file format is described in
143    a comment by the code that writes the index.  */
144 struct mapped_index
145 {
146   /* Index data format version.  */
147   int version;
148
149   /* The total length of the buffer.  */
150   off_t total_size;
151
152   /* A pointer to the address table data.  */
153   const gdb_byte *address_table;
154
155   /* Size of the address table data in bytes.  */
156   offset_type address_table_size;
157
158   /* The symbol table, implemented as a hash table.  */
159   const offset_type *symbol_table;
160
161   /* Size in slots, each slot is 2 offset_types.  */
162   offset_type symbol_table_slots;
163
164   /* A pointer to the constant pool.  */
165   const char *constant_pool;
166 };
167
168 typedef struct dwarf2_per_cu_data *dwarf2_per_cu_ptr;
169 DEF_VEC_P (dwarf2_per_cu_ptr);
170
171 /* Collection of data recorded per objfile.
172    This hangs off of dwarf2_objfile_data_key.  */
173
174 struct dwarf2_per_objfile
175 {
176   struct dwarf2_section_info info;
177   struct dwarf2_section_info abbrev;
178   struct dwarf2_section_info line;
179   struct dwarf2_section_info loc;
180   struct dwarf2_section_info macinfo;
181   struct dwarf2_section_info macro;
182   struct dwarf2_section_info str;
183   struct dwarf2_section_info ranges;
184   struct dwarf2_section_info addr;
185   struct dwarf2_section_info frame;
186   struct dwarf2_section_info eh_frame;
187   struct dwarf2_section_info gdb_index;
188
189   VEC (dwarf2_section_info_def) *types;
190
191   /* Back link.  */
192   struct objfile *objfile;
193
194   /* Table of all the compilation units.  This is used to locate
195      the target compilation unit of a particular reference.  */
196   struct dwarf2_per_cu_data **all_comp_units;
197
198   /* The number of compilation units in ALL_COMP_UNITS.  */
199   int n_comp_units;
200
201   /* The number of .debug_types-related CUs.  */
202   int n_type_units;
203
204   /* The .debug_types-related CUs (TUs).  */
205   struct signatured_type **all_type_units;
206
207   /* The number of entries in all_type_unit_groups.  */
208   int n_type_unit_groups;
209
210   /* Table of type unit groups.
211      This exists to make it easy to iterate over all CUs and TU groups.  */
212   struct type_unit_group **all_type_unit_groups;
213
214   /* Table of struct type_unit_group objects.
215      The hash key is the DW_AT_stmt_list value.  */
216   htab_t type_unit_groups;
217
218   /* A table mapping .debug_types signatures to its signatured_type entry.
219      This is NULL if the .debug_types section hasn't been read in yet.  */
220   htab_t signatured_types;
221
222   /* Type unit statistics, to see how well the scaling improvements
223      are doing.  */
224   struct tu_stats
225   {
226     int nr_uniq_abbrev_tables;
227     int nr_symtabs;
228     int nr_symtab_sharers;
229     int nr_stmt_less_type_units;
230   } tu_stats;
231
232   /* A chain of compilation units that are currently read in, so that
233      they can be freed later.  */
234   struct dwarf2_per_cu_data *read_in_chain;
235
236   /* A table mapping DW_AT_dwo_name values to struct dwo_file objects.
237      This is NULL if the table hasn't been allocated yet.  */
238   htab_t dwo_files;
239
240   /* Non-zero if we've check for whether there is a DWP file.  */
241   int dwp_checked;
242
243   /* The DWP file if there is one, or NULL.  */
244   struct dwp_file *dwp_file;
245
246   /* The shared '.dwz' file, if one exists.  This is used when the
247      original data was compressed using 'dwz -m'.  */
248   struct dwz_file *dwz_file;
249
250   /* A flag indicating wether this objfile has a section loaded at a
251      VMA of 0.  */
252   int has_section_at_zero;
253
254   /* True if we are using the mapped index,
255      or we are faking it for OBJF_READNOW's sake.  */
256   unsigned char using_index;
257
258   /* The mapped index, or NULL if .gdb_index is missing or not being used.  */
259   struct mapped_index *index_table;
260
261   /* When using index_table, this keeps track of all quick_file_names entries.
262      TUs typically share line table entries with a CU, so we maintain a
263      separate table of all line table entries to support the sharing.
264      Note that while there can be way more TUs than CUs, we've already
265      sorted all the TUs into "type unit groups", grouped by their
266      DW_AT_stmt_list value.  Therefore the only sharing done here is with a
267      CU and its associated TU group if there is one.  */
268   htab_t quick_file_names_table;
269
270   /* Set during partial symbol reading, to prevent queueing of full
271      symbols.  */
272   int reading_partial_symbols;
273
274   /* Table mapping type DIEs to their struct type *.
275      This is NULL if not allocated yet.
276      The mapping is done via (CU/TU signature + DIE offset) -> type.  */
277   htab_t die_type_hash;
278
279   /* The CUs we recently read.  */
280   VEC (dwarf2_per_cu_ptr) *just_read_cus;
281 };
282
283 static struct dwarf2_per_objfile *dwarf2_per_objfile;
284
285 /* Default names of the debugging sections.  */
286
287 /* Note that if the debugging section has been compressed, it might
288    have a name like .zdebug_info.  */
289
290 static const struct dwarf2_debug_sections dwarf2_elf_names =
291 {
292   { ".debug_info", ".zdebug_info" },
293   { ".debug_abbrev", ".zdebug_abbrev" },
294   { ".debug_line", ".zdebug_line" },
295   { ".debug_loc", ".zdebug_loc" },
296   { ".debug_macinfo", ".zdebug_macinfo" },
297   { ".debug_macro", ".zdebug_macro" },
298   { ".debug_str", ".zdebug_str" },
299   { ".debug_ranges", ".zdebug_ranges" },
300   { ".debug_types", ".zdebug_types" },
301   { ".debug_addr", ".zdebug_addr" },
302   { ".debug_frame", ".zdebug_frame" },
303   { ".eh_frame", NULL },
304   { ".gdb_index", ".zgdb_index" },
305   23
306 };
307
308 /* List of DWO/DWP sections.  */
309
310 static const struct dwop_section_names
311 {
312   struct dwarf2_section_names abbrev_dwo;
313   struct dwarf2_section_names info_dwo;
314   struct dwarf2_section_names line_dwo;
315   struct dwarf2_section_names loc_dwo;
316   struct dwarf2_section_names macinfo_dwo;
317   struct dwarf2_section_names macro_dwo;
318   struct dwarf2_section_names str_dwo;
319   struct dwarf2_section_names str_offsets_dwo;
320   struct dwarf2_section_names types_dwo;
321   struct dwarf2_section_names cu_index;
322   struct dwarf2_section_names tu_index;
323 }
324 dwop_section_names =
325 {
326   { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo" },
327   { ".debug_info.dwo", ".zdebug_info.dwo" },
328   { ".debug_line.dwo", ".zdebug_line.dwo" },
329   { ".debug_loc.dwo", ".zdebug_loc.dwo" },
330   { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo" },
331   { ".debug_macro.dwo", ".zdebug_macro.dwo" },
332   { ".debug_str.dwo", ".zdebug_str.dwo" },
333   { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo" },
334   { ".debug_types.dwo", ".zdebug_types.dwo" },
335   { ".debug_cu_index", ".zdebug_cu_index" },
336   { ".debug_tu_index", ".zdebug_tu_index" },
337 };
338
339 /* local data types */
340
341 /* The data in a compilation unit header, after target2host
342    translation, looks like this.  */
343 struct comp_unit_head
344 {
345   unsigned int length;
346   short version;
347   unsigned char addr_size;
348   unsigned char signed_addr_p;
349   sect_offset abbrev_offset;
350
351   /* Size of file offsets; either 4 or 8.  */
352   unsigned int offset_size;
353
354   /* Size of the length field; either 4 or 12.  */
355   unsigned int initial_length_size;
356
357   /* Offset to the first byte of this compilation unit header in the
358      .debug_info section, for resolving relative reference dies.  */
359   sect_offset offset;
360
361   /* Offset to first die in this cu from the start of the cu.
362      This will be the first byte following the compilation unit header.  */
363   cu_offset first_die_offset;
364 };
365
366 /* Type used for delaying computation of method physnames.
367    See comments for compute_delayed_physnames.  */
368 struct delayed_method_info
369 {
370   /* The type to which the method is attached, i.e., its parent class.  */
371   struct type *type;
372
373   /* The index of the method in the type's function fieldlists.  */
374   int fnfield_index;
375
376   /* The index of the method in the fieldlist.  */
377   int index;
378
379   /* The name of the DIE.  */
380   const char *name;
381
382   /*  The DIE associated with this method.  */
383   struct die_info *die;
384 };
385
386 typedef struct delayed_method_info delayed_method_info;
387 DEF_VEC_O (delayed_method_info);
388
389 /* Internal state when decoding a particular compilation unit.  */
390 struct dwarf2_cu
391 {
392   /* The objfile containing this compilation unit.  */
393   struct objfile *objfile;
394
395   /* The header of the compilation unit.  */
396   struct comp_unit_head header;
397
398   /* Base address of this compilation unit.  */
399   CORE_ADDR base_address;
400
401   /* Non-zero if base_address has been set.  */
402   int base_known;
403
404   /* The language we are debugging.  */
405   enum language language;
406   const struct language_defn *language_defn;
407
408   const char *producer;
409
410   /* The generic symbol table building routines have separate lists for
411      file scope symbols and all all other scopes (local scopes).  So
412      we need to select the right one to pass to add_symbol_to_list().
413      We do it by keeping a pointer to the correct list in list_in_scope.
414
415      FIXME: The original dwarf code just treated the file scope as the
416      first local scope, and all other local scopes as nested local
417      scopes, and worked fine.  Check to see if we really need to
418      distinguish these in buildsym.c.  */
419   struct pending **list_in_scope;
420
421   /* The abbrev table for this CU.
422      Normally this points to the abbrev table in the objfile.
423      But if DWO_UNIT is non-NULL this is the abbrev table in the DWO file.  */
424   struct abbrev_table *abbrev_table;
425
426   /* Hash table holding all the loaded partial DIEs
427      with partial_die->offset.SECT_OFF as hash.  */
428   htab_t partial_dies;
429
430   /* Storage for things with the same lifetime as this read-in compilation
431      unit, including partial DIEs.  */
432   struct obstack comp_unit_obstack;
433
434   /* When multiple dwarf2_cu structures are living in memory, this field
435      chains them all together, so that they can be released efficiently.
436      We will probably also want a generation counter so that most-recently-used
437      compilation units are cached...  */
438   struct dwarf2_per_cu_data *read_in_chain;
439
440   /* Backchain to our per_cu entry if the tree has been built.  */
441   struct dwarf2_per_cu_data *per_cu;
442
443   /* How many compilation units ago was this CU last referenced?  */
444   int last_used;
445
446   /* A hash table of DIE cu_offset for following references with
447      die_info->offset.sect_off as hash.  */
448   htab_t die_hash;
449
450   /* Full DIEs if read in.  */
451   struct die_info *dies;
452
453   /* A set of pointers to dwarf2_per_cu_data objects for compilation
454      units referenced by this one.  Only set during full symbol processing;
455      partial symbol tables do not have dependencies.  */
456   htab_t dependencies;
457
458   /* Header data from the line table, during full symbol processing.  */
459   struct line_header *line_header;
460
461   /* A list of methods which need to have physnames computed
462      after all type information has been read.  */
463   VEC (delayed_method_info) *method_list;
464
465   /* To be copied to symtab->call_site_htab.  */
466   htab_t call_site_htab;
467
468   /* Non-NULL if this CU came from a DWO file.
469      There is an invariant here that is important to remember:
470      Except for attributes copied from the top level DIE in the "main"
471      (or "stub") file in preparation for reading the DWO file
472      (e.g., DW_AT_GNU_addr_base), we KISS: there is only *one* CU.
473      Either there isn't a DWO file (in which case this is NULL and the point
474      is moot), or there is and either we're not going to read it (in which
475      case this is NULL) or there is and we are reading it (in which case this
476      is non-NULL).  */
477   struct dwo_unit *dwo_unit;
478
479   /* The DW_AT_addr_base attribute if present, zero otherwise
480      (zero is a valid value though).
481      Note this value comes from the stub CU/TU's DIE.  */
482   ULONGEST addr_base;
483
484   /* The DW_AT_ranges_base attribute if present, zero otherwise
485      (zero is a valid value though).
486      Note this value comes from the stub CU/TU's DIE.
487      Also note that the value is zero in the non-DWO case so this value can
488      be used without needing to know whether DWO files are in use or not.
489      N.B. This does not apply to DW_AT_ranges appearing in
490      DW_TAG_compile_unit dies.  This is a bit of a wart, consider if ever
491      DW_AT_ranges appeared in the DW_TAG_compile_unit of DWO DIEs: then
492      DW_AT_ranges_base *would* have to be applied, and we'd have to care
493      whether the DW_AT_ranges attribute came from the skeleton or DWO.  */
494   ULONGEST ranges_base;
495
496   /* Mark used when releasing cached dies.  */
497   unsigned int mark : 1;
498
499   /* This CU references .debug_loc.  See the symtab->locations_valid field.
500      This test is imperfect as there may exist optimized debug code not using
501      any location list and still facing inlining issues if handled as
502      unoptimized code.  For a future better test see GCC PR other/32998.  */
503   unsigned int has_loclist : 1;
504
505   /* These cache the results for producer_is_* fields.  CHECKED_PRODUCER is set
506      if all the producer_is_* fields are valid.  This information is cached
507      because profiling CU expansion showed excessive time spent in
508      producer_is_gxx_lt_4_6.  */
509   unsigned int checked_producer : 1;
510   unsigned int producer_is_gxx_lt_4_6 : 1;
511   unsigned int producer_is_gcc_lt_4_3 : 1;
512   unsigned int producer_is_icc : 1;
513
514   /* When set, the file that we're processing is known to have
515      debugging info for C++ namespaces.  GCC 3.3.x did not produce
516      this information, but later versions do.  */
517
518   unsigned int processing_has_namespace_info : 1;
519 };
520
521 /* Persistent data held for a compilation unit, even when not
522    processing it.  We put a pointer to this structure in the
523    read_symtab_private field of the psymtab.  */
524
525 struct dwarf2_per_cu_data
526 {
527   /* The start offset and length of this compilation unit.
528      NOTE: Unlike comp_unit_head.length, this length includes
529      initial_length_size.
530      If the DIE refers to a DWO file, this is always of the original die,
531      not the DWO file.  */
532   sect_offset offset;
533   unsigned int length;
534
535   /* Flag indicating this compilation unit will be read in before
536      any of the current compilation units are processed.  */
537   unsigned int queued : 1;
538
539   /* This flag will be set when reading partial DIEs if we need to load
540      absolutely all DIEs for this compilation unit, instead of just the ones
541      we think are interesting.  It gets set if we look for a DIE in the
542      hash table and don't find it.  */
543   unsigned int load_all_dies : 1;
544
545   /* Non-zero if this CU is from .debug_types.  */
546   unsigned int is_debug_types : 1;
547
548   /* Non-zero if this CU is from the .dwz file.  */
549   unsigned int is_dwz : 1;
550
551   /* The section this CU/TU lives in.
552      If the DIE refers to a DWO file, this is always the original die,
553      not the DWO file.  */
554   struct dwarf2_section_info *section;
555
556   /* Set to non-NULL iff this CU is currently loaded.  When it gets freed out
557      of the CU cache it gets reset to NULL again.  */
558   struct dwarf2_cu *cu;
559
560   /* The corresponding objfile.
561      Normally we can get the objfile from dwarf2_per_objfile.
562      However we can enter this file with just a "per_cu" handle.  */
563   struct objfile *objfile;
564
565   /* When using partial symbol tables, the 'psymtab' field is active.
566      Otherwise the 'quick' field is active.  */
567   union
568   {
569     /* The partial symbol table associated with this compilation unit,
570        or NULL for unread partial units.  */
571     struct partial_symtab *psymtab;
572
573     /* Data needed by the "quick" functions.  */
574     struct dwarf2_per_cu_quick_data *quick;
575   } v;
576
577   /* The CUs we import using DW_TAG_imported_unit.  This is filled in
578      while reading psymtabs, used to compute the psymtab dependencies,
579      and then cleared.  Then it is filled in again while reading full
580      symbols, and only deleted when the objfile is destroyed.
581
582      This is also used to work around a difference between the way gold
583      generates .gdb_index version <=7 and the way gdb does.  Arguably this
584      is a gold bug.  For symbols coming from TUs, gold records in the index
585      the CU that includes the TU instead of the TU itself.  This breaks
586      dw2_lookup_symbol: It assumes that if the index says symbol X lives
587      in CU/TU Y, then one need only expand Y and a subsequent lookup in Y
588      will find X.  Alas TUs live in their own symtab, so after expanding CU Y
589      we need to look in TU Z to find X.  Fortunately, this is akin to
590      DW_TAG_imported_unit, so we just use the same mechanism: For
591      .gdb_index version <=7 this also records the TUs that the CU referred
592      to.  Concurrently with this change gdb was modified to emit version 8
593      indices so we only pay a price for gold generated indices.  */
594   VEC (dwarf2_per_cu_ptr) *imported_symtabs;
595
596   /* Type units are grouped by their DW_AT_stmt_list entry so that they
597      can share them.  If this is a TU, this points to the containing
598      symtab.  */
599   struct type_unit_group *type_unit_group;
600 };
601
602 /* Entry in the signatured_types hash table.  */
603
604 struct signatured_type
605 {
606   /* The "per_cu" object of this type.
607      N.B.: This is the first member so that it's easy to convert pointers
608      between them.  */
609   struct dwarf2_per_cu_data per_cu;
610
611   /* The type's signature.  */
612   ULONGEST signature;
613
614   /* Offset in the TU of the type's DIE, as read from the TU header.
615      If the definition lives in a DWO file, 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
626 /* A struct that can be used as a hash key for tables based on DW_AT_stmt_list.
627    This includes type_unit_group and quick_file_names.  */
628
629 struct stmt_list_hash
630 {
631   /* The DWO unit this table is from or NULL if there is none.  */
632   struct dwo_unit *dwo_unit;
633
634   /* Offset in .debug_line or .debug_line.dwo.  */
635   sect_offset line_offset;
636 };
637
638 /* Each element of dwarf2_per_objfile->type_unit_groups is a pointer to
639    an object of this type.  */
640
641 struct type_unit_group
642 {
643   /* dwarf2read.c's main "handle" on the symtab.
644      To simplify things we create an artificial CU that "includes" all the
645      type units using this stmt_list so that the rest of the code still has
646      a "per_cu" handle on the symtab.
647      This PER_CU is recognized by having no section.  */
648 #define IS_TYPE_UNIT_GROUP(per_cu) ((per_cu)->section == NULL)
649   struct dwarf2_per_cu_data per_cu;
650
651   union
652   {
653     /* The TUs that share this DW_AT_stmt_list entry.
654        This is added to while parsing type units to build partial symtabs,
655        and is deleted afterwards and not used again.  */
656     VEC (dwarf2_per_cu_ptr) *tus;
657
658     /* When reading the line table in "quick" functions, we need a real TU.
659        Any will do, we know they all share the same DW_AT_stmt_list entry.
660        For simplicity's sake, we pick the first one.  */
661     struct dwarf2_per_cu_data *first_tu;
662   } t;
663
664   /* The primary symtab.
665      Type units in a group needn't all be defined in the same source file,
666      so we create an essentially anonymous symtab as the primary symtab.  */
667   struct symtab *primary_symtab;
668
669   /* The data used to construct the hash key.  */
670   struct stmt_list_hash hash;
671
672   /* The number of symtabs from the line header.
673      The value here must match line_header.num_file_names.  */
674   unsigned int num_symtabs;
675
676   /* The symbol tables for this TU (obtained from the files listed in
677      DW_AT_stmt_list).
678      WARNING: The order of entries here must match the order of entries
679      in the line header.  After the first TU using this type_unit_group, the
680      line header for the subsequent TUs is recreated from this.  This is done
681      because we need to use the same symtabs for each TU using the same
682      DW_AT_stmt_list value.  Also note that symtabs may be repeated here,
683      there's no guarantee the line header doesn't have duplicate entries.  */
684   struct symtab **symtabs;
685 };
686
687 /* These sections are what may appear in a DWO file.  */
688
689 struct dwo_sections
690 {
691   struct dwarf2_section_info abbrev;
692   struct dwarf2_section_info line;
693   struct dwarf2_section_info loc;
694   struct dwarf2_section_info macinfo;
695   struct dwarf2_section_info macro;
696   struct dwarf2_section_info str;
697   struct dwarf2_section_info str_offsets;
698   /* In the case of a virtual DWO file, these two are unused.  */
699   struct dwarf2_section_info info;
700   VEC (dwarf2_section_info_def) *types;
701 };
702
703 /* Common bits of DWO CUs/TUs.  */
704
705 struct dwo_unit
706 {
707   /* Backlink to the containing struct dwo_file.  */
708   struct dwo_file *dwo_file;
709
710   /* The "id" that distinguishes this CU/TU.
711      .debug_info calls this "dwo_id", .debug_types calls this "signature".
712      Since signatures came first, we stick with it for consistency.  */
713   ULONGEST signature;
714
715   /* The section this CU/TU lives in, in the DWO file.  */
716   struct dwarf2_section_info *section;
717
718   /* Same as dwarf2_per_cu_data:{offset,length} but for the DWO section.  */
719   sect_offset offset;
720   unsigned int length;
721
722   /* For types, offset in the type's DIE of the type defined by this TU.  */
723   cu_offset type_offset_in_tu;
724 };
725
726 /* Data for one DWO file.
727    This includes virtual DWO files that have been packaged into a
728    DWP file.  */
729
730 struct dwo_file
731 {
732   /* The DW_AT_GNU_dwo_name attribute.  This is the hash key.
733      For virtual DWO files the name is constructed from the section offsets
734      of abbrev,line,loc,str_offsets so that we combine virtual DWO files
735      from related CU+TUs.  */
736   const char *name;
737
738   /* The bfd, when the file is open.  Otherwise this is NULL.
739      This is unused(NULL) for virtual DWO files where we use dwp_file.dbfd.  */
740   bfd *dbfd;
741
742   /* Section info for this file.  */
743   struct dwo_sections sections;
744
745   /* Table of CUs in the file.
746      Each element is a struct dwo_unit.  */
747   htab_t cus;
748
749   /* Table of TUs in the file.
750      Each element is a struct dwo_unit.  */
751   htab_t tus;
752 };
753
754 /* These sections are what may appear in a DWP file.  */
755
756 struct dwp_sections
757 {
758   struct dwarf2_section_info str;
759   struct dwarf2_section_info cu_index;
760   struct dwarf2_section_info tu_index;
761   /* The .debug_info.dwo, .debug_types.dwo, and other sections are referenced
762      by section number.  We don't need to record them here.  */
763 };
764
765 /* These sections are what may appear in a virtual DWO file.  */
766
767 struct virtual_dwo_sections
768 {
769   struct dwarf2_section_info abbrev;
770   struct dwarf2_section_info line;
771   struct dwarf2_section_info loc;
772   struct dwarf2_section_info macinfo;
773   struct dwarf2_section_info macro;
774   struct dwarf2_section_info str_offsets;
775   /* Each DWP hash table entry records one CU or one TU.
776      That is recorded here, and copied to dwo_unit.section.  */
777   struct dwarf2_section_info info_or_types;
778 };
779
780 /* Contents of DWP hash tables.  */
781
782 struct dwp_hash_table
783 {
784   uint32_t nr_units, nr_slots;
785   const gdb_byte *hash_table, *unit_table, *section_pool;
786 };
787
788 /* Data for one DWP file.  */
789
790 struct dwp_file
791 {
792   /* Name of the file.  */
793   const char *name;
794
795   /* The bfd, when the file is open.  Otherwise this is NULL.  */
796   bfd *dbfd;
797
798   /* Section info for this file.  */
799   struct dwp_sections sections;
800
801   /* Table of CUs in the file. */
802   const struct dwp_hash_table *cus;
803
804   /* Table of TUs in the file.  */
805   const struct dwp_hash_table *tus;
806
807   /* Table of loaded CUs/TUs.  Each entry is a struct dwo_unit *.  */
808   htab_t loaded_cutus;
809
810   /* Table to map ELF section numbers to their sections.  */
811   unsigned int num_sections;
812   asection **elf_sections;
813 };
814
815 /* This represents a '.dwz' file.  */
816
817 struct dwz_file
818 {
819   /* A dwz file can only contain a few sections.  */
820   struct dwarf2_section_info abbrev;
821   struct dwarf2_section_info info;
822   struct dwarf2_section_info str;
823   struct dwarf2_section_info line;
824   struct dwarf2_section_info macro;
825   struct dwarf2_section_info gdb_index;
826
827   /* The dwz's BFD.  */
828   bfd *dwz_bfd;
829 };
830
831 /* Struct used to pass misc. parameters to read_die_and_children, et
832    al.  which are used for both .debug_info and .debug_types dies.
833    All parameters here are unchanging for the life of the call.  This
834    struct exists to abstract away the constant parameters of die reading.  */
835
836 struct die_reader_specs
837 {
838   /* die_section->asection->owner.  */
839   bfd* abfd;
840
841   /* The CU of the DIE we are parsing.  */
842   struct dwarf2_cu *cu;
843
844   /* Non-NULL if reading a DWO file (including one packaged into a DWP).  */
845   struct dwo_file *dwo_file;
846
847   /* The section the die comes from.
848      This is either .debug_info or .debug_types, or the .dwo variants.  */
849   struct dwarf2_section_info *die_section;
850
851   /* die_section->buffer.  */
852   gdb_byte *buffer;
853
854   /* The end of the buffer.  */
855   const gdb_byte *buffer_end;
856 };
857
858 /* Type of function passed to init_cutu_and_read_dies, et.al.  */
859 typedef void (die_reader_func_ftype) (const struct die_reader_specs *reader,
860                                       gdb_byte *info_ptr,
861                                       struct die_info *comp_unit_die,
862                                       int has_children,
863                                       void *data);
864
865 /* The line number information for a compilation unit (found in the
866    .debug_line section) begins with a "statement program header",
867    which contains the following information.  */
868 struct line_header
869 {
870   unsigned int total_length;
871   unsigned short version;
872   unsigned int header_length;
873   unsigned char minimum_instruction_length;
874   unsigned char maximum_ops_per_instruction;
875   unsigned char default_is_stmt;
876   int line_base;
877   unsigned char line_range;
878   unsigned char opcode_base;
879
880   /* standard_opcode_lengths[i] is the number of operands for the
881      standard opcode whose value is i.  This means that
882      standard_opcode_lengths[0] is unused, and the last meaningful
883      element is standard_opcode_lengths[opcode_base - 1].  */
884   unsigned char *standard_opcode_lengths;
885
886   /* The include_directories table.  NOTE!  These strings are not
887      allocated with xmalloc; instead, they are pointers into
888      debug_line_buffer.  If you try to free them, `free' will get
889      indigestion.  */
890   unsigned int num_include_dirs, include_dirs_size;
891   char **include_dirs;
892
893   /* The file_names table.  NOTE!  These strings are not allocated
894      with xmalloc; instead, they are pointers into debug_line_buffer.
895      Don't try to free them directly.  */
896   unsigned int num_file_names, file_names_size;
897   struct file_entry
898   {
899     char *name;
900     unsigned int dir_index;
901     unsigned int mod_time;
902     unsigned int length;
903     int included_p; /* Non-zero if referenced by the Line Number Program.  */
904     struct symtab *symtab; /* The associated symbol table, if any.  */
905   } *file_names;
906
907   /* The start and end of the statement program following this
908      header.  These point into dwarf2_per_objfile->line_buffer.  */
909   gdb_byte *statement_program_start, *statement_program_end;
910 };
911
912 /* When we construct a partial symbol table entry we only
913    need this much information.  */
914 struct partial_die_info
915   {
916     /* Offset of this DIE.  */
917     sect_offset offset;
918
919     /* DWARF-2 tag for this DIE.  */
920     ENUM_BITFIELD(dwarf_tag) tag : 16;
921
922     /* Assorted flags describing the data found in this DIE.  */
923     unsigned int has_children : 1;
924     unsigned int is_external : 1;
925     unsigned int is_declaration : 1;
926     unsigned int has_type : 1;
927     unsigned int has_specification : 1;
928     unsigned int has_pc_info : 1;
929     unsigned int may_be_inlined : 1;
930
931     /* Flag set if the SCOPE field of this structure has been
932        computed.  */
933     unsigned int scope_set : 1;
934
935     /* Flag set if the DIE has a byte_size attribute.  */
936     unsigned int has_byte_size : 1;
937
938     /* Flag set if any of the DIE's children are template arguments.  */
939     unsigned int has_template_arguments : 1;
940
941     /* Flag set if fixup_partial_die has been called on this die.  */
942     unsigned int fixup_called : 1;
943
944     /* Flag set if DW_TAG_imported_unit uses DW_FORM_GNU_ref_alt.  */
945     unsigned int is_dwz : 1;
946
947     /* Flag set if spec_offset uses DW_FORM_GNU_ref_alt.  */
948     unsigned int spec_is_dwz : 1;
949
950     /* The name of this DIE.  Normally the value of DW_AT_name, but
951        sometimes a default name for unnamed DIEs.  */
952     const char *name;
953
954     /* The linkage name, if present.  */
955     const char *linkage_name;
956
957     /* The scope to prepend to our children.  This is generally
958        allocated on the comp_unit_obstack, so will disappear
959        when this compilation unit leaves the cache.  */
960     const char *scope;
961
962     /* Some data associated with the partial DIE.  The tag determines
963        which field is live.  */
964     union
965     {
966       /* The location description associated with this DIE, if any.  */
967       struct dwarf_block *locdesc;
968       /* The offset of an import, for DW_TAG_imported_unit.  */
969       sect_offset offset;
970     } d;
971
972     /* If HAS_PC_INFO, the PC range associated with this DIE.  */
973     CORE_ADDR lowpc;
974     CORE_ADDR highpc;
975
976     /* Pointer into the info_buffer (or types_buffer) pointing at the target of
977        DW_AT_sibling, if any.  */
978     /* NOTE: This member isn't strictly necessary, read_partial_die could
979        return DW_AT_sibling values to its caller load_partial_dies.  */
980     gdb_byte *sibling;
981
982     /* If HAS_SPECIFICATION, the offset of the DIE referred to by
983        DW_AT_specification (or DW_AT_abstract_origin or
984        DW_AT_extension).  */
985     sect_offset spec_offset;
986
987     /* Pointers to this DIE's parent, first child, and next sibling,
988        if any.  */
989     struct partial_die_info *die_parent, *die_child, *die_sibling;
990   };
991
992 /* This data structure holds the information of an abbrev.  */
993 struct abbrev_info
994   {
995     unsigned int number;        /* number identifying abbrev */
996     enum dwarf_tag tag;         /* dwarf tag */
997     unsigned short has_children;                /* boolean */
998     unsigned short num_attrs;   /* number of attributes */
999     struct attr_abbrev *attrs;  /* an array of attribute descriptions */
1000     struct abbrev_info *next;   /* next in chain */
1001   };
1002
1003 struct attr_abbrev
1004   {
1005     ENUM_BITFIELD(dwarf_attribute) name : 16;
1006     ENUM_BITFIELD(dwarf_form) form : 16;
1007   };
1008
1009 /* Size of abbrev_table.abbrev_hash_table.  */
1010 #define ABBREV_HASH_SIZE 121
1011
1012 /* Top level data structure to contain an abbreviation table.  */
1013
1014 struct abbrev_table
1015 {
1016   /* Where the abbrev table came from.
1017      This is used as a sanity check when the table is used.  */
1018   sect_offset offset;
1019
1020   /* Storage for the abbrev table.  */
1021   struct obstack abbrev_obstack;
1022
1023   /* Hash table of abbrevs.
1024      This is an array of size ABBREV_HASH_SIZE allocated in abbrev_obstack.
1025      It could be statically allocated, but the previous code didn't so we
1026      don't either.  */
1027   struct abbrev_info **abbrevs;
1028 };
1029
1030 /* Attributes have a name and a value.  */
1031 struct attribute
1032   {
1033     ENUM_BITFIELD(dwarf_attribute) name : 16;
1034     ENUM_BITFIELD(dwarf_form) form : 15;
1035
1036     /* Has DW_STRING already been updated by dwarf2_canonicalize_name?  This
1037        field should be in u.str (existing only for DW_STRING) but it is kept
1038        here for better struct attribute alignment.  */
1039     unsigned int string_is_canonical : 1;
1040
1041     union
1042       {
1043         const char *str;
1044         struct dwarf_block *blk;
1045         ULONGEST unsnd;
1046         LONGEST snd;
1047         CORE_ADDR addr;
1048         struct signatured_type *signatured_type;
1049       }
1050     u;
1051   };
1052
1053 /* This data structure holds a complete die structure.  */
1054 struct die_info
1055   {
1056     /* DWARF-2 tag for this DIE.  */
1057     ENUM_BITFIELD(dwarf_tag) tag : 16;
1058
1059     /* Number of attributes */
1060     unsigned char num_attrs;
1061
1062     /* True if we're presently building the full type name for the
1063        type derived from this DIE.  */
1064     unsigned char building_fullname : 1;
1065
1066     /* Abbrev number */
1067     unsigned int abbrev;
1068
1069     /* Offset in .debug_info or .debug_types section.  */
1070     sect_offset offset;
1071
1072     /* The dies in a compilation unit form an n-ary tree.  PARENT
1073        points to this die's parent; CHILD points to the first child of
1074        this node; and all the children of a given node are chained
1075        together via their SIBLING fields.  */
1076     struct die_info *child;     /* Its first child, if any.  */
1077     struct die_info *sibling;   /* Its next sibling, if any.  */
1078     struct die_info *parent;    /* Its parent, if any.  */
1079
1080     /* An array of attributes, with NUM_ATTRS elements.  There may be
1081        zero, but it's not common and zero-sized arrays are not
1082        sufficiently portable C.  */
1083     struct attribute attrs[1];
1084   };
1085
1086 /* Get at parts of an attribute structure.  */
1087
1088 #define DW_STRING(attr)    ((attr)->u.str)
1089 #define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
1090 #define DW_UNSND(attr)     ((attr)->u.unsnd)
1091 #define DW_BLOCK(attr)     ((attr)->u.blk)
1092 #define DW_SND(attr)       ((attr)->u.snd)
1093 #define DW_ADDR(attr)      ((attr)->u.addr)
1094 #define DW_SIGNATURED_TYPE(attr) ((attr)->u.signatured_type)
1095
1096 /* Blocks are a bunch of untyped bytes.  */
1097 struct dwarf_block
1098   {
1099     size_t size;
1100
1101     /* Valid only if SIZE is not zero.  */
1102     gdb_byte *data;
1103   };
1104
1105 #ifndef ATTR_ALLOC_CHUNK
1106 #define ATTR_ALLOC_CHUNK 4
1107 #endif
1108
1109 /* Allocate fields for structs, unions and enums in this size.  */
1110 #ifndef DW_FIELD_ALLOC_CHUNK
1111 #define DW_FIELD_ALLOC_CHUNK 4
1112 #endif
1113
1114 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
1115    but this would require a corresponding change in unpack_field_as_long
1116    and friends.  */
1117 static int bits_per_byte = 8;
1118
1119 /* The routines that read and process dies for a C struct or C++ class
1120    pass lists of data member fields and lists of member function fields
1121    in an instance of a field_info structure, as defined below.  */
1122 struct field_info
1123   {
1124     /* List of data member and baseclasses fields.  */
1125     struct nextfield
1126       {
1127         struct nextfield *next;
1128         int accessibility;
1129         int virtuality;
1130         struct field field;
1131       }
1132      *fields, *baseclasses;
1133
1134     /* Number of fields (including baseclasses).  */
1135     int nfields;
1136
1137     /* Number of baseclasses.  */
1138     int nbaseclasses;
1139
1140     /* Set if the accesibility of one of the fields is not public.  */
1141     int non_public_fields;
1142
1143     /* Member function fields array, entries are allocated in the order they
1144        are encountered in the object file.  */
1145     struct nextfnfield
1146       {
1147         struct nextfnfield *next;
1148         struct fn_field fnfield;
1149       }
1150      *fnfields;
1151
1152     /* Member function fieldlist array, contains name of possibly overloaded
1153        member function, number of overloaded member functions and a pointer
1154        to the head of the member function field chain.  */
1155     struct fnfieldlist
1156       {
1157         const char *name;
1158         int length;
1159         struct nextfnfield *head;
1160       }
1161      *fnfieldlists;
1162
1163     /* Number of entries in the fnfieldlists array.  */
1164     int nfnfields;
1165
1166     /* typedefs defined inside this class.  TYPEDEF_FIELD_LIST contains head of
1167        a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements.  */
1168     struct typedef_field_list
1169       {
1170         struct typedef_field field;
1171         struct typedef_field_list *next;
1172       }
1173     *typedef_field_list;
1174     unsigned typedef_field_list_count;
1175   };
1176
1177 /* One item on the queue of compilation units to read in full symbols
1178    for.  */
1179 struct dwarf2_queue_item
1180 {
1181   struct dwarf2_per_cu_data *per_cu;
1182   enum language pretend_language;
1183   struct dwarf2_queue_item *next;
1184 };
1185
1186 /* The current queue.  */
1187 static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
1188
1189 /* Loaded secondary compilation units are kept in memory until they
1190    have not been referenced for the processing of this many
1191    compilation units.  Set this to zero to disable caching.  Cache
1192    sizes of up to at least twenty will improve startup time for
1193    typical inter-CU-reference binaries, at an obvious memory cost.  */
1194 static int dwarf2_max_cache_age = 5;
1195 static void
1196 show_dwarf2_max_cache_age (struct ui_file *file, int from_tty,
1197                            struct cmd_list_element *c, const char *value)
1198 {
1199   fprintf_filtered (file, _("The upper bound on the age of cached "
1200                             "dwarf2 compilation units is %s.\n"),
1201                     value);
1202 }
1203
1204
1205 /* Various complaints about symbol reading that don't abort the process.  */
1206
1207 static void
1208 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
1209 {
1210   complaint (&symfile_complaints,
1211              _("statement list doesn't fit in .debug_line section"));
1212 }
1213
1214 static void
1215 dwarf2_debug_line_missing_file_complaint (void)
1216 {
1217   complaint (&symfile_complaints,
1218              _(".debug_line section has line data without a file"));
1219 }
1220
1221 static void
1222 dwarf2_debug_line_missing_end_sequence_complaint (void)
1223 {
1224   complaint (&symfile_complaints,
1225              _(".debug_line section has line "
1226                "program sequence without an end"));
1227 }
1228
1229 static void
1230 dwarf2_complex_location_expr_complaint (void)
1231 {
1232   complaint (&symfile_complaints, _("location expression too complex"));
1233 }
1234
1235 static void
1236 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
1237                                               int arg3)
1238 {
1239   complaint (&symfile_complaints,
1240              _("const value length mismatch for '%s', got %d, expected %d"),
1241              arg1, arg2, arg3);
1242 }
1243
1244 static void
1245 dwarf2_section_buffer_overflow_complaint (struct dwarf2_section_info *section)
1246 {
1247   complaint (&symfile_complaints,
1248              _("debug info runs off end of %s section"
1249                " [in module %s]"),
1250              section->asection->name,
1251              bfd_get_filename (section->asection->owner));
1252 }
1253
1254 static void
1255 dwarf2_macro_malformed_definition_complaint (const char *arg1)
1256 {
1257   complaint (&symfile_complaints,
1258              _("macro debug info contains a "
1259                "malformed macro definition:\n`%s'"),
1260              arg1);
1261 }
1262
1263 static void
1264 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
1265 {
1266   complaint (&symfile_complaints,
1267              _("invalid attribute class or form for '%s' in '%s'"),
1268              arg1, arg2);
1269 }
1270
1271 /* local function prototypes */
1272
1273 static void dwarf2_locate_sections (bfd *, asection *, void *);
1274
1275 static void dwarf2_create_include_psymtab (char *, struct partial_symtab *,
1276                                            struct objfile *);
1277
1278 static void dwarf2_find_base_address (struct die_info *die,
1279                                       struct dwarf2_cu *cu);
1280
1281 static struct partial_symtab *create_partial_symtab
1282   (struct dwarf2_per_cu_data *per_cu, const char *name);
1283
1284 static void dwarf2_build_psymtabs_hard (struct objfile *);
1285
1286 static void scan_partial_symbols (struct partial_die_info *,
1287                                   CORE_ADDR *, CORE_ADDR *,
1288                                   int, struct dwarf2_cu *);
1289
1290 static void add_partial_symbol (struct partial_die_info *,
1291                                 struct dwarf2_cu *);
1292
1293 static void add_partial_namespace (struct partial_die_info *pdi,
1294                                    CORE_ADDR *lowpc, CORE_ADDR *highpc,
1295                                    int need_pc, struct dwarf2_cu *cu);
1296
1297 static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
1298                                 CORE_ADDR *highpc, int need_pc,
1299                                 struct dwarf2_cu *cu);
1300
1301 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
1302                                      struct dwarf2_cu *cu);
1303
1304 static void add_partial_subprogram (struct partial_die_info *pdi,
1305                                     CORE_ADDR *lowpc, CORE_ADDR *highpc,
1306                                     int need_pc, struct dwarf2_cu *cu);
1307
1308 static void dwarf2_read_symtab (struct partial_symtab *,
1309                                 struct objfile *);
1310
1311 static void psymtab_to_symtab_1 (struct partial_symtab *);
1312
1313 static struct abbrev_info *abbrev_table_lookup_abbrev
1314   (const struct abbrev_table *, unsigned int);
1315
1316 static struct abbrev_table *abbrev_table_read_table
1317   (struct dwarf2_section_info *, sect_offset);
1318
1319 static void abbrev_table_free (struct abbrev_table *);
1320
1321 static void abbrev_table_free_cleanup (void *);
1322
1323 static void dwarf2_read_abbrevs (struct dwarf2_cu *,
1324                                  struct dwarf2_section_info *);
1325
1326 static void dwarf2_free_abbrev_table (void *);
1327
1328 static unsigned int peek_abbrev_code (bfd *, gdb_byte *);
1329
1330 static struct partial_die_info *load_partial_dies
1331   (const struct die_reader_specs *, gdb_byte *, int);
1332
1333 static gdb_byte *read_partial_die (const struct die_reader_specs *,
1334                                    struct partial_die_info *,
1335                                    struct abbrev_info *,
1336                                    unsigned int,
1337                                    gdb_byte *);
1338
1339 static struct partial_die_info *find_partial_die (sect_offset, int,
1340                                                   struct dwarf2_cu *);
1341
1342 static void fixup_partial_die (struct partial_die_info *,
1343                                struct dwarf2_cu *);
1344
1345 static gdb_byte *read_attribute (const struct die_reader_specs *,
1346                                  struct attribute *, struct attr_abbrev *,
1347                                  gdb_byte *);
1348
1349 static unsigned int read_1_byte (bfd *, const gdb_byte *);
1350
1351 static int read_1_signed_byte (bfd *, const gdb_byte *);
1352
1353 static unsigned int read_2_bytes (bfd *, const gdb_byte *);
1354
1355 static unsigned int read_4_bytes (bfd *, const gdb_byte *);
1356
1357 static ULONGEST read_8_bytes (bfd *, const gdb_byte *);
1358
1359 static CORE_ADDR read_address (bfd *, gdb_byte *ptr, struct dwarf2_cu *,
1360                                unsigned int *);
1361
1362 static LONGEST read_initial_length (bfd *, gdb_byte *, unsigned int *);
1363
1364 static LONGEST read_checked_initial_length_and_offset
1365   (bfd *, gdb_byte *, const struct comp_unit_head *,
1366    unsigned int *, unsigned int *);
1367
1368 static LONGEST read_offset (bfd *, gdb_byte *, const struct comp_unit_head *,
1369                             unsigned int *);
1370
1371 static LONGEST read_offset_1 (bfd *, gdb_byte *, unsigned int);
1372
1373 static sect_offset read_abbrev_offset (struct dwarf2_section_info *,
1374                                        sect_offset);
1375
1376 static gdb_byte *read_n_bytes (bfd *, gdb_byte *, unsigned int);
1377
1378 static char *read_direct_string (bfd *, gdb_byte *, unsigned int *);
1379
1380 static char *read_indirect_string (bfd *, gdb_byte *,
1381                                    const struct comp_unit_head *,
1382                                    unsigned int *);
1383
1384 static char *read_indirect_string_from_dwz (struct dwz_file *, LONGEST);
1385
1386 static ULONGEST read_unsigned_leb128 (bfd *, gdb_byte *, unsigned int *);
1387
1388 static LONGEST read_signed_leb128 (bfd *, gdb_byte *, unsigned int *);
1389
1390 static CORE_ADDR read_addr_index_from_leb128 (struct dwarf2_cu *, gdb_byte *,
1391                                               unsigned int *);
1392
1393 static char *read_str_index (const struct die_reader_specs *reader,
1394                              struct dwarf2_cu *cu, ULONGEST str_index);
1395
1396 static void set_cu_language (unsigned int, struct dwarf2_cu *);
1397
1398 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
1399                                       struct dwarf2_cu *);
1400
1401 static struct attribute *dwarf2_attr_no_follow (struct die_info *,
1402                                                 unsigned int);
1403
1404 static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
1405                                struct dwarf2_cu *cu);
1406
1407 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
1408
1409 static struct die_info *die_specification (struct die_info *die,
1410                                            struct dwarf2_cu **);
1411
1412 static void free_line_header (struct line_header *lh);
1413
1414 static void add_file_name (struct line_header *, char *, unsigned int,
1415                            unsigned int, unsigned int);
1416
1417 static struct line_header *dwarf_decode_line_header (unsigned int offset,
1418                                                      struct dwarf2_cu *cu);
1419
1420 static void dwarf_decode_lines (struct line_header *, const char *,
1421                                 struct dwarf2_cu *, struct partial_symtab *,
1422                                 int);
1423
1424 static void dwarf2_start_subfile (char *, const char *, const char *);
1425
1426 static void dwarf2_start_symtab (struct dwarf2_cu *,
1427                                  const char *, const char *, CORE_ADDR);
1428
1429 static struct symbol *new_symbol (struct die_info *, struct type *,
1430                                   struct dwarf2_cu *);
1431
1432 static struct symbol *new_symbol_full (struct die_info *, struct type *,
1433                                        struct dwarf2_cu *, struct symbol *);
1434
1435 static void dwarf2_const_value (struct attribute *, struct symbol *,
1436                                 struct dwarf2_cu *);
1437
1438 static void dwarf2_const_value_attr (struct attribute *attr,
1439                                      struct type *type,
1440                                      const char *name,
1441                                      struct obstack *obstack,
1442                                      struct dwarf2_cu *cu, LONGEST *value,
1443                                      gdb_byte **bytes,
1444                                      struct dwarf2_locexpr_baton **baton);
1445
1446 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
1447
1448 static int need_gnat_info (struct dwarf2_cu *);
1449
1450 static struct type *die_descriptive_type (struct die_info *,
1451                                           struct dwarf2_cu *);
1452
1453 static void set_descriptive_type (struct type *, struct die_info *,
1454                                   struct dwarf2_cu *);
1455
1456 static struct type *die_containing_type (struct die_info *,
1457                                          struct dwarf2_cu *);
1458
1459 static struct type *lookup_die_type (struct die_info *, struct attribute *,
1460                                      struct dwarf2_cu *);
1461
1462 static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
1463
1464 static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1465
1466 static const char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
1467
1468 static char *typename_concat (struct obstack *obs, const char *prefix,
1469                               const char *suffix, int physname,
1470                               struct dwarf2_cu *cu);
1471
1472 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
1473
1474 static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1475
1476 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
1477
1478 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
1479
1480 static void read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu);
1481
1482 static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1483                                struct dwarf2_cu *, struct partial_symtab *);
1484
1485 static int dwarf2_get_pc_bounds (struct die_info *,
1486                                  CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *,
1487                                  struct partial_symtab *);
1488
1489 static void get_scope_pc_bounds (struct die_info *,
1490                                  CORE_ADDR *, CORE_ADDR *,
1491                                  struct dwarf2_cu *);
1492
1493 static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1494                                         CORE_ADDR, struct dwarf2_cu *);
1495
1496 static void dwarf2_add_field (struct field_info *, struct die_info *,
1497                               struct dwarf2_cu *);
1498
1499 static void dwarf2_attach_fields_to_type (struct field_info *,
1500                                           struct type *, struct dwarf2_cu *);
1501
1502 static void dwarf2_add_member_fn (struct field_info *,
1503                                   struct die_info *, struct type *,
1504                                   struct dwarf2_cu *);
1505
1506 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
1507                                              struct type *,
1508                                              struct dwarf2_cu *);
1509
1510 static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
1511
1512 static void read_common_block (struct die_info *, struct dwarf2_cu *);
1513
1514 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
1515
1516 static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1517
1518 static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1519
1520 static struct type *read_module_type (struct die_info *die,
1521                                       struct dwarf2_cu *cu);
1522
1523 static const char *namespace_name (struct die_info *die,
1524                                    int *is_anonymous, struct dwarf2_cu *);
1525
1526 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
1527
1528 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
1529
1530 static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
1531                                                        struct dwarf2_cu *);
1532
1533 static struct die_info *read_die_and_children (const struct die_reader_specs *,
1534                                                gdb_byte *info_ptr,
1535                                                gdb_byte **new_info_ptr,
1536                                                struct die_info *parent);
1537
1538 static struct die_info *read_die_and_siblings (const struct die_reader_specs *,
1539                                                gdb_byte *info_ptr,
1540                                                gdb_byte **new_info_ptr,
1541                                                struct die_info *parent);
1542
1543 static gdb_byte *read_full_die_1 (const struct die_reader_specs *,
1544                                   struct die_info **, gdb_byte *, int *, int);
1545
1546 static gdb_byte *read_full_die (const struct die_reader_specs *,
1547                                 struct die_info **, gdb_byte *, int *);
1548
1549 static void process_die (struct die_info *, struct dwarf2_cu *);
1550
1551 static const char *dwarf2_canonicalize_name (const char *, struct dwarf2_cu *,
1552                                              struct obstack *);
1553
1554 static const char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
1555
1556 static const char *dwarf2_full_name (const char *name,
1557                                      struct die_info *die,
1558                                      struct dwarf2_cu *cu);
1559
1560 static const char *dwarf2_physname (const char *name, struct die_info *die,
1561                                     struct dwarf2_cu *cu);
1562
1563 static struct die_info *dwarf2_extension (struct die_info *die,
1564                                           struct dwarf2_cu **);
1565
1566 static const char *dwarf_tag_name (unsigned int);
1567
1568 static const char *dwarf_attr_name (unsigned int);
1569
1570 static const char *dwarf_form_name (unsigned int);
1571
1572 static char *dwarf_bool_name (unsigned int);
1573
1574 static const char *dwarf_type_encoding_name (unsigned int);
1575
1576 static struct die_info *sibling_die (struct die_info *);
1577
1578 static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1579
1580 static void dump_die_for_error (struct die_info *);
1581
1582 static void dump_die_1 (struct ui_file *, int level, int max_level,
1583                         struct die_info *);
1584
1585 /*static*/ void dump_die (struct die_info *, int max_level);
1586
1587 static void store_in_ref_table (struct die_info *,
1588                                 struct dwarf2_cu *);
1589
1590 static int is_ref_attr (struct attribute *);
1591
1592 static sect_offset dwarf2_get_ref_die_offset (struct attribute *);
1593
1594 static LONGEST dwarf2_get_attr_constant_value (struct attribute *, int);
1595
1596 static struct die_info *follow_die_ref_or_sig (struct die_info *,
1597                                                struct attribute *,
1598                                                struct dwarf2_cu **);
1599
1600 static struct die_info *follow_die_ref (struct die_info *,
1601                                         struct attribute *,
1602                                         struct dwarf2_cu **);
1603
1604 static struct die_info *follow_die_sig (struct die_info *,
1605                                         struct attribute *,
1606                                         struct dwarf2_cu **);
1607
1608 static struct signatured_type *lookup_signatured_type_at_offset
1609     (struct objfile *objfile,
1610      struct dwarf2_section_info *section, sect_offset offset);
1611
1612 static void load_full_type_unit (struct dwarf2_per_cu_data *per_cu);
1613
1614 static void read_signatured_type (struct signatured_type *);
1615
1616 static struct type_unit_group *get_type_unit_group
1617     (struct dwarf2_cu *, struct attribute *);
1618
1619 static void build_type_unit_groups (die_reader_func_ftype *, void *);
1620
1621 /* memory allocation interface */
1622
1623 static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
1624
1625 static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
1626
1627 static void dwarf_decode_macros (struct dwarf2_cu *, unsigned int,
1628                                  const char *, int);
1629
1630 static int attr_form_is_block (struct attribute *);
1631
1632 static int attr_form_is_section_offset (struct attribute *);
1633
1634 static int attr_form_is_constant (struct attribute *);
1635
1636 static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1637                                    struct dwarf2_loclist_baton *baton,
1638                                    struct attribute *attr);
1639
1640 static void dwarf2_symbol_mark_computed (struct attribute *attr,
1641                                          struct symbol *sym,
1642                                          struct dwarf2_cu *cu,
1643                                          int is_block);
1644
1645 static gdb_byte *skip_one_die (const struct die_reader_specs *reader,
1646                                gdb_byte *info_ptr,
1647                                struct abbrev_info *abbrev);
1648
1649 static void free_stack_comp_unit (void *);
1650
1651 static hashval_t partial_die_hash (const void *item);
1652
1653 static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1654
1655 static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1656   (sect_offset offset, unsigned int offset_in_dwz, struct objfile *objfile);
1657
1658 static void init_one_comp_unit (struct dwarf2_cu *cu,
1659                                 struct dwarf2_per_cu_data *per_cu);
1660
1661 static void prepare_one_comp_unit (struct dwarf2_cu *cu,
1662                                    struct die_info *comp_unit_die,
1663                                    enum language pretend_language);
1664
1665 static void free_heap_comp_unit (void *);
1666
1667 static void free_cached_comp_units (void *);
1668
1669 static void age_cached_comp_units (void);
1670
1671 static void free_one_cached_comp_unit (struct dwarf2_per_cu_data *);
1672
1673 static struct type *set_die_type (struct die_info *, struct type *,
1674                                   struct dwarf2_cu *);
1675
1676 static void create_all_comp_units (struct objfile *);
1677
1678 static int create_all_type_units (struct objfile *);
1679
1680 static void load_full_comp_unit (struct dwarf2_per_cu_data *,
1681                                  enum language);
1682
1683 static void process_full_comp_unit (struct dwarf2_per_cu_data *,
1684                                     enum language);
1685
1686 static void process_full_type_unit (struct dwarf2_per_cu_data *,
1687                                     enum language);
1688
1689 static void dwarf2_add_dependence (struct dwarf2_cu *,
1690                                    struct dwarf2_per_cu_data *);
1691
1692 static void dwarf2_mark (struct dwarf2_cu *);
1693
1694 static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1695
1696 static struct type *get_die_type_at_offset (sect_offset,
1697                                             struct dwarf2_per_cu_data *per_cu);
1698
1699 static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
1700
1701 static void dwarf2_release_queue (void *dummy);
1702
1703 static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1704                              enum language pretend_language);
1705
1706 static int maybe_queue_comp_unit (struct dwarf2_cu *this_cu,
1707                                   struct dwarf2_per_cu_data *per_cu,
1708                                   enum language pretend_language);
1709
1710 static void process_queue (void);
1711
1712 static void find_file_and_directory (struct die_info *die,
1713                                      struct dwarf2_cu *cu,
1714                                      const char **name, const char **comp_dir);
1715
1716 static char *file_full_name (int file, struct line_header *lh,
1717                              const char *comp_dir);
1718
1719 static gdb_byte *read_and_check_comp_unit_head
1720   (struct comp_unit_head *header,
1721    struct dwarf2_section_info *section,
1722    struct dwarf2_section_info *abbrev_section, gdb_byte *info_ptr,
1723    int is_debug_types_section);
1724
1725 static void init_cutu_and_read_dies
1726   (struct dwarf2_per_cu_data *this_cu, struct abbrev_table *abbrev_table,
1727    int use_existing_cu, int keep,
1728    die_reader_func_ftype *die_reader_func, void *data);
1729
1730 static void init_cutu_and_read_dies_simple
1731   (struct dwarf2_per_cu_data *this_cu,
1732    die_reader_func_ftype *die_reader_func, void *data);
1733
1734 static htab_t allocate_signatured_type_table (struct objfile *objfile);
1735
1736 static htab_t allocate_dwo_unit_table (struct objfile *objfile);
1737
1738 static struct dwo_unit *lookup_dwo_comp_unit
1739   (struct dwarf2_per_cu_data *, const char *, const char *, ULONGEST);
1740
1741 static struct dwo_unit *lookup_dwo_type_unit
1742   (struct signatured_type *, const char *, const char *);
1743
1744 static void free_dwo_file_cleanup (void *);
1745
1746 static void process_cu_includes (void);
1747
1748 static void check_producer (struct dwarf2_cu *cu);
1749
1750 #if WORDS_BIGENDIAN
1751
1752 /* Convert VALUE between big- and little-endian.  */
1753 static offset_type
1754 byte_swap (offset_type value)
1755 {
1756   offset_type result;
1757
1758   result = (value & 0xff) << 24;
1759   result |= (value & 0xff00) << 8;
1760   result |= (value & 0xff0000) >> 8;
1761   result |= (value & 0xff000000) >> 24;
1762   return result;
1763 }
1764
1765 #define MAYBE_SWAP(V)  byte_swap (V)
1766
1767 #else
1768 #define MAYBE_SWAP(V) (V)
1769 #endif /* WORDS_BIGENDIAN */
1770
1771 /* The suffix for an index file.  */
1772 #define INDEX_SUFFIX ".gdb-index"
1773
1774 /* Try to locate the sections we need for DWARF 2 debugging
1775    information and return true if we have enough to do something.
1776    NAMES points to the dwarf2 section names, or is NULL if the standard
1777    ELF names are used.  */
1778
1779 int
1780 dwarf2_has_info (struct objfile *objfile,
1781                  const struct dwarf2_debug_sections *names)
1782 {
1783   dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
1784   if (!dwarf2_per_objfile)
1785     {
1786       /* Initialize per-objfile state.  */
1787       struct dwarf2_per_objfile *data
1788         = obstack_alloc (&objfile->objfile_obstack, sizeof (*data));
1789
1790       memset (data, 0, sizeof (*data));
1791       set_objfile_data (objfile, dwarf2_objfile_data_key, data);
1792       dwarf2_per_objfile = data;
1793
1794       bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections,
1795                              (void *) names);
1796       dwarf2_per_objfile->objfile = objfile;
1797     }
1798   return (dwarf2_per_objfile->info.asection != NULL
1799           && dwarf2_per_objfile->abbrev.asection != NULL);
1800 }
1801
1802 /* When loading sections, we look either for uncompressed section or for
1803    compressed section names.  */
1804
1805 static int
1806 section_is_p (const char *section_name,
1807               const struct dwarf2_section_names *names)
1808 {
1809   if (names->normal != NULL
1810       && strcmp (section_name, names->normal) == 0)
1811     return 1;
1812   if (names->compressed != NULL
1813       && strcmp (section_name, names->compressed) == 0)
1814     return 1;
1815   return 0;
1816 }
1817
1818 /* This function is mapped across the sections and remembers the
1819    offset and size of each of the debugging sections we are interested
1820    in.  */
1821
1822 static void
1823 dwarf2_locate_sections (bfd *abfd, asection *sectp, void *vnames)
1824 {
1825   const struct dwarf2_debug_sections *names;
1826   flagword aflag = bfd_get_section_flags (abfd, sectp);
1827
1828   if (vnames == NULL)
1829     names = &dwarf2_elf_names;
1830   else
1831     names = (const struct dwarf2_debug_sections *) vnames;
1832
1833   if ((aflag & SEC_HAS_CONTENTS) == 0)
1834     {
1835     }
1836   else if (section_is_p (sectp->name, &names->info))
1837     {
1838       dwarf2_per_objfile->info.asection = sectp;
1839       dwarf2_per_objfile->info.size = bfd_get_section_size (sectp);
1840     }
1841   else if (section_is_p (sectp->name, &names->abbrev))
1842     {
1843       dwarf2_per_objfile->abbrev.asection = sectp;
1844       dwarf2_per_objfile->abbrev.size = bfd_get_section_size (sectp);
1845     }
1846   else if (section_is_p (sectp->name, &names->line))
1847     {
1848       dwarf2_per_objfile->line.asection = sectp;
1849       dwarf2_per_objfile->line.size = bfd_get_section_size (sectp);
1850     }
1851   else if (section_is_p (sectp->name, &names->loc))
1852     {
1853       dwarf2_per_objfile->loc.asection = sectp;
1854       dwarf2_per_objfile->loc.size = bfd_get_section_size (sectp);
1855     }
1856   else if (section_is_p (sectp->name, &names->macinfo))
1857     {
1858       dwarf2_per_objfile->macinfo.asection = sectp;
1859       dwarf2_per_objfile->macinfo.size = bfd_get_section_size (sectp);
1860     }
1861   else if (section_is_p (sectp->name, &names->macro))
1862     {
1863       dwarf2_per_objfile->macro.asection = sectp;
1864       dwarf2_per_objfile->macro.size = bfd_get_section_size (sectp);
1865     }
1866   else if (section_is_p (sectp->name, &names->str))
1867     {
1868       dwarf2_per_objfile->str.asection = sectp;
1869       dwarf2_per_objfile->str.size = bfd_get_section_size (sectp);
1870     }
1871   else if (section_is_p (sectp->name, &names->addr))
1872     {
1873       dwarf2_per_objfile->addr.asection = sectp;
1874       dwarf2_per_objfile->addr.size = bfd_get_section_size (sectp);
1875     }
1876   else if (section_is_p (sectp->name, &names->frame))
1877     {
1878       dwarf2_per_objfile->frame.asection = sectp;
1879       dwarf2_per_objfile->frame.size = bfd_get_section_size (sectp);
1880     }
1881   else if (section_is_p (sectp->name, &names->eh_frame))
1882     {
1883       dwarf2_per_objfile->eh_frame.asection = sectp;
1884       dwarf2_per_objfile->eh_frame.size = bfd_get_section_size (sectp);
1885     }
1886   else if (section_is_p (sectp->name, &names->ranges))
1887     {
1888       dwarf2_per_objfile->ranges.asection = sectp;
1889       dwarf2_per_objfile->ranges.size = bfd_get_section_size (sectp);
1890     }
1891   else if (section_is_p (sectp->name, &names->types))
1892     {
1893       struct dwarf2_section_info type_section;
1894
1895       memset (&type_section, 0, sizeof (type_section));
1896       type_section.asection = sectp;
1897       type_section.size = bfd_get_section_size (sectp);
1898
1899       VEC_safe_push (dwarf2_section_info_def, dwarf2_per_objfile->types,
1900                      &type_section);
1901     }
1902   else if (section_is_p (sectp->name, &names->gdb_index))
1903     {
1904       dwarf2_per_objfile->gdb_index.asection = sectp;
1905       dwarf2_per_objfile->gdb_index.size = bfd_get_section_size (sectp);
1906     }
1907
1908   if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD)
1909       && bfd_section_vma (abfd, sectp) == 0)
1910     dwarf2_per_objfile->has_section_at_zero = 1;
1911 }
1912
1913 /* A helper function that decides whether a section is empty,
1914    or not present.  */
1915
1916 static int
1917 dwarf2_section_empty_p (struct dwarf2_section_info *info)
1918 {
1919   return info->asection == NULL || info->size == 0;
1920 }
1921
1922 /* Read the contents of the section INFO.
1923    OBJFILE is the main object file, but not necessarily the file where
1924    the section comes from.  E.g., for DWO files INFO->asection->owner
1925    is the bfd of the DWO file.
1926    If the section is compressed, uncompress it before returning.  */
1927
1928 static void
1929 dwarf2_read_section (struct objfile *objfile, struct dwarf2_section_info *info)
1930 {
1931   asection *sectp = info->asection;
1932   bfd *abfd;
1933   gdb_byte *buf, *retbuf;
1934   unsigned char header[4];
1935
1936   if (info->readin)
1937     return;
1938   info->buffer = NULL;
1939   info->readin = 1;
1940
1941   if (dwarf2_section_empty_p (info))
1942     return;
1943
1944   abfd = sectp->owner;
1945
1946   /* If the section has relocations, we must read it ourselves.
1947      Otherwise we attach it to the BFD.  */
1948   if ((sectp->flags & SEC_RELOC) == 0)
1949     {
1950       const gdb_byte *bytes = gdb_bfd_map_section (sectp, &info->size);
1951
1952       /* We have to cast away const here for historical reasons.
1953          Fixing dwarf2read to be const-correct would be quite nice.  */
1954       info->buffer = (gdb_byte *) bytes;
1955       return;
1956     }
1957
1958   buf = obstack_alloc (&objfile->objfile_obstack, info->size);
1959   info->buffer = buf;
1960
1961   /* When debugging .o files, we may need to apply relocations; see
1962      http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
1963      We never compress sections in .o files, so we only need to
1964      try this when the section is not compressed.  */
1965   retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
1966   if (retbuf != NULL)
1967     {
1968       info->buffer = retbuf;
1969       return;
1970     }
1971
1972   if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1973       || bfd_bread (buf, info->size, abfd) != info->size)
1974     error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1975            bfd_get_filename (abfd));
1976 }
1977
1978 /* A helper function that returns the size of a section in a safe way.
1979    If you are positive that the section has been read before using the
1980    size, then it is safe to refer to the dwarf2_section_info object's
1981    "size" field directly.  In other cases, you must call this
1982    function, because for compressed sections the size field is not set
1983    correctly until the section has been read.  */
1984
1985 static bfd_size_type
1986 dwarf2_section_size (struct objfile *objfile,
1987                      struct dwarf2_section_info *info)
1988 {
1989   if (!info->readin)
1990     dwarf2_read_section (objfile, info);
1991   return info->size;
1992 }
1993
1994 /* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
1995    SECTION_NAME.  */
1996
1997 void
1998 dwarf2_get_section_info (struct objfile *objfile,
1999                          enum dwarf2_section_enum sect,
2000                          asection **sectp, gdb_byte **bufp,
2001                          bfd_size_type *sizep)
2002 {
2003   struct dwarf2_per_objfile *data
2004     = objfile_data (objfile, dwarf2_objfile_data_key);
2005   struct dwarf2_section_info *info;
2006
2007   /* We may see an objfile without any DWARF, in which case we just
2008      return nothing.  */
2009   if (data == NULL)
2010     {
2011       *sectp = NULL;
2012       *bufp = NULL;
2013       *sizep = 0;
2014       return;
2015     }
2016   switch (sect)
2017     {
2018     case DWARF2_DEBUG_FRAME:
2019       info = &data->frame;
2020       break;
2021     case DWARF2_EH_FRAME:
2022       info = &data->eh_frame;
2023       break;
2024     default:
2025       gdb_assert_not_reached ("unexpected section");
2026     }
2027
2028   dwarf2_read_section (objfile, info);
2029
2030   *sectp = info->asection;
2031   *bufp = info->buffer;
2032   *sizep = info->size;
2033 }
2034
2035 /* A helper function to find the sections for a .dwz file.  */
2036
2037 static void
2038 locate_dwz_sections (bfd *abfd, asection *sectp, void *arg)
2039 {
2040   struct dwz_file *dwz_file = arg;
2041
2042   /* Note that we only support the standard ELF names, because .dwz
2043      is ELF-only (at the time of writing).  */
2044   if (section_is_p (sectp->name, &dwarf2_elf_names.abbrev))
2045     {
2046       dwz_file->abbrev.asection = sectp;
2047       dwz_file->abbrev.size = bfd_get_section_size (sectp);
2048     }
2049   else if (section_is_p (sectp->name, &dwarf2_elf_names.info))
2050     {
2051       dwz_file->info.asection = sectp;
2052       dwz_file->info.size = bfd_get_section_size (sectp);
2053     }
2054   else if (section_is_p (sectp->name, &dwarf2_elf_names.str))
2055     {
2056       dwz_file->str.asection = sectp;
2057       dwz_file->str.size = bfd_get_section_size (sectp);
2058     }
2059   else if (section_is_p (sectp->name, &dwarf2_elf_names.line))
2060     {
2061       dwz_file->line.asection = sectp;
2062       dwz_file->line.size = bfd_get_section_size (sectp);
2063     }
2064   else if (section_is_p (sectp->name, &dwarf2_elf_names.macro))
2065     {
2066       dwz_file->macro.asection = sectp;
2067       dwz_file->macro.size = bfd_get_section_size (sectp);
2068     }
2069   else if (section_is_p (sectp->name, &dwarf2_elf_names.gdb_index))
2070     {
2071       dwz_file->gdb_index.asection = sectp;
2072       dwz_file->gdb_index.size = bfd_get_section_size (sectp);
2073     }
2074 }
2075
2076 /* Open the separate '.dwz' debug file, if needed.  Error if the file
2077    cannot be found.  */
2078
2079 static struct dwz_file *
2080 dwarf2_get_dwz_file (void)
2081 {
2082   bfd *abfd, *dwz_bfd;
2083   asection *section;
2084   gdb_byte *data;
2085   struct cleanup *cleanup;
2086   const char *filename;
2087   struct dwz_file *result;
2088
2089   if (dwarf2_per_objfile->dwz_file != NULL)
2090     return dwarf2_per_objfile->dwz_file;
2091
2092   abfd = dwarf2_per_objfile->objfile->obfd;
2093   section = bfd_get_section_by_name (abfd, ".gnu_debugaltlink");
2094   if (section == NULL)
2095     error (_("could not find '.gnu_debugaltlink' section"));
2096   if (!bfd_malloc_and_get_section (abfd, section, &data))
2097     error (_("could not read '.gnu_debugaltlink' section: %s"),
2098            bfd_errmsg (bfd_get_error ()));
2099   cleanup = make_cleanup (xfree, data);
2100
2101   filename = data;
2102   if (!IS_ABSOLUTE_PATH (filename))
2103     {
2104       char *abs = gdb_realpath (dwarf2_per_objfile->objfile->name);
2105       char *rel;
2106
2107       make_cleanup (xfree, abs);
2108       abs = ldirname (abs);
2109       make_cleanup (xfree, abs);
2110
2111       rel = concat (abs, SLASH_STRING, filename, (char *) NULL);
2112       make_cleanup (xfree, rel);
2113       filename = rel;
2114     }
2115
2116   /* The format is just a NUL-terminated file name, followed by the
2117      build-id.  For now, though, we ignore the build-id.  */
2118   dwz_bfd = gdb_bfd_open (filename, gnutarget, -1);
2119   if (dwz_bfd == NULL)
2120     error (_("could not read '%s': %s"), filename,
2121            bfd_errmsg (bfd_get_error ()));
2122
2123   if (!bfd_check_format (dwz_bfd, bfd_object))
2124     {
2125       gdb_bfd_unref (dwz_bfd);
2126       error (_("file '%s' was not usable: %s"), filename,
2127              bfd_errmsg (bfd_get_error ()));
2128     }
2129
2130   result = OBSTACK_ZALLOC (&dwarf2_per_objfile->objfile->objfile_obstack,
2131                            struct dwz_file);
2132   result->dwz_bfd = dwz_bfd;
2133
2134   bfd_map_over_sections (dwz_bfd, locate_dwz_sections, result);
2135
2136   do_cleanups (cleanup);
2137
2138   dwarf2_per_objfile->dwz_file = result;
2139   return result;
2140 }
2141 \f
2142 /* DWARF quick_symbols_functions support.  */
2143
2144 /* TUs can share .debug_line entries, and there can be a lot more TUs than
2145    unique line tables, so we maintain a separate table of all .debug_line
2146    derived entries to support the sharing.
2147    All the quick functions need is the list of file names.  We discard the
2148    line_header when we're done and don't need to record it here.  */
2149 struct quick_file_names
2150 {
2151   /* The data used to construct the hash key.  */
2152   struct stmt_list_hash hash;
2153
2154   /* The number of entries in file_names, real_names.  */
2155   unsigned int num_file_names;
2156
2157   /* The file names from the line table, after being run through
2158      file_full_name.  */
2159   const char **file_names;
2160
2161   /* The file names from the line table after being run through
2162      gdb_realpath.  These are computed lazily.  */
2163   const char **real_names;
2164 };
2165
2166 /* When using the index (and thus not using psymtabs), each CU has an
2167    object of this type.  This is used to hold information needed by
2168    the various "quick" methods.  */
2169 struct dwarf2_per_cu_quick_data
2170 {
2171   /* The file table.  This can be NULL if there was no file table
2172      or it's currently not read in.
2173      NOTE: This points into dwarf2_per_objfile->quick_file_names_table.  */
2174   struct quick_file_names *file_names;
2175
2176   /* The corresponding symbol table.  This is NULL if symbols for this
2177      CU have not yet been read.  */
2178   struct symtab *symtab;
2179
2180   /* A temporary mark bit used when iterating over all CUs in
2181      expand_symtabs_matching.  */
2182   unsigned int mark : 1;
2183
2184   /* True if we've tried to read the file table and found there isn't one.
2185      There will be no point in trying to read it again next time.  */
2186   unsigned int no_file_data : 1;
2187 };
2188
2189 /* Utility hash function for a stmt_list_hash.  */
2190
2191 static hashval_t
2192 hash_stmt_list_entry (const struct stmt_list_hash *stmt_list_hash)
2193 {
2194   hashval_t v = 0;
2195
2196   if (stmt_list_hash->dwo_unit != NULL)
2197     v += (uintptr_t) stmt_list_hash->dwo_unit->dwo_file;
2198   v += stmt_list_hash->line_offset.sect_off;
2199   return v;
2200 }
2201
2202 /* Utility equality function for a stmt_list_hash.  */
2203
2204 static int
2205 eq_stmt_list_entry (const struct stmt_list_hash *lhs,
2206                     const struct stmt_list_hash *rhs)
2207 {
2208   if ((lhs->dwo_unit != NULL) != (rhs->dwo_unit != NULL))
2209     return 0;
2210   if (lhs->dwo_unit != NULL
2211       && lhs->dwo_unit->dwo_file != rhs->dwo_unit->dwo_file)
2212     return 0;
2213
2214   return lhs->line_offset.sect_off == rhs->line_offset.sect_off;
2215 }
2216
2217 /* Hash function for a quick_file_names.  */
2218
2219 static hashval_t
2220 hash_file_name_entry (const void *e)
2221 {
2222   const struct quick_file_names *file_data = e;
2223
2224   return hash_stmt_list_entry (&file_data->hash);
2225 }
2226
2227 /* Equality function for a quick_file_names.  */
2228
2229 static int
2230 eq_file_name_entry (const void *a, const void *b)
2231 {
2232   const struct quick_file_names *ea = a;
2233   const struct quick_file_names *eb = b;
2234
2235   return eq_stmt_list_entry (&ea->hash, &eb->hash);
2236 }
2237
2238 /* Delete function for a quick_file_names.  */
2239
2240 static void
2241 delete_file_name_entry (void *e)
2242 {
2243   struct quick_file_names *file_data = e;
2244   int i;
2245
2246   for (i = 0; i < file_data->num_file_names; ++i)
2247     {
2248       xfree ((void*) file_data->file_names[i]);
2249       if (file_data->real_names)
2250         xfree ((void*) file_data->real_names[i]);
2251     }
2252
2253   /* The space for the struct itself lives on objfile_obstack,
2254      so we don't free it here.  */
2255 }
2256
2257 /* Create a quick_file_names hash table.  */
2258
2259 static htab_t
2260 create_quick_file_names_table (unsigned int nr_initial_entries)
2261 {
2262   return htab_create_alloc (nr_initial_entries,
2263                             hash_file_name_entry, eq_file_name_entry,
2264                             delete_file_name_entry, xcalloc, xfree);
2265 }
2266
2267 /* Read in PER_CU->CU.  This function is unrelated to symtabs, symtab would
2268    have to be created afterwards.  You should call age_cached_comp_units after
2269    processing PER_CU->CU.  dw2_setup must have been already called.  */
2270
2271 static void
2272 load_cu (struct dwarf2_per_cu_data *per_cu)
2273 {
2274   if (per_cu->is_debug_types)
2275     load_full_type_unit (per_cu);
2276   else
2277     load_full_comp_unit (per_cu, language_minimal);
2278
2279   gdb_assert (per_cu->cu != NULL);
2280
2281   dwarf2_find_base_address (per_cu->cu->dies, per_cu->cu);
2282 }
2283
2284 /* Read in the symbols for PER_CU.  */
2285
2286 static void
2287 dw2_do_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
2288 {
2289   struct cleanup *back_to;
2290
2291   /* Skip type_unit_groups, reading the type units they contain
2292      is handled elsewhere.  */
2293   if (IS_TYPE_UNIT_GROUP (per_cu))
2294     return;
2295
2296   back_to = make_cleanup (dwarf2_release_queue, NULL);
2297
2298   if (dwarf2_per_objfile->using_index
2299       ? per_cu->v.quick->symtab == NULL
2300       : (per_cu->v.psymtab == NULL || !per_cu->v.psymtab->readin))
2301     {
2302       queue_comp_unit (per_cu, language_minimal);
2303       load_cu (per_cu);
2304     }
2305
2306   process_queue ();
2307
2308   /* Age the cache, releasing compilation units that have not
2309      been used recently.  */
2310   age_cached_comp_units ();
2311
2312   do_cleanups (back_to);
2313 }
2314
2315 /* Ensure that the symbols for PER_CU have been read in.  OBJFILE is
2316    the objfile from which this CU came.  Returns the resulting symbol
2317    table.  */
2318
2319 static struct symtab *
2320 dw2_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
2321 {
2322   gdb_assert (dwarf2_per_objfile->using_index);
2323   if (!per_cu->v.quick->symtab)
2324     {
2325       struct cleanup *back_to = make_cleanup (free_cached_comp_units, NULL);
2326       increment_reading_symtab ();
2327       dw2_do_instantiate_symtab (per_cu);
2328       process_cu_includes ();
2329       do_cleanups (back_to);
2330     }
2331   return per_cu->v.quick->symtab;
2332 }
2333
2334 /* Return the CU given its index.
2335
2336    This is intended for loops like:
2337
2338    for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2339                     + dwarf2_per_objfile->n_type_units); ++i)
2340      {
2341        struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2342
2343        ...;
2344      }
2345 */
2346
2347 static struct dwarf2_per_cu_data *
2348 dw2_get_cu (int index)
2349 {
2350   if (index >= dwarf2_per_objfile->n_comp_units)
2351     {
2352       index -= dwarf2_per_objfile->n_comp_units;
2353       gdb_assert (index < dwarf2_per_objfile->n_type_units);
2354       return &dwarf2_per_objfile->all_type_units[index]->per_cu;
2355     }
2356
2357   return dwarf2_per_objfile->all_comp_units[index];
2358 }
2359
2360 /* Return the primary CU given its index.
2361    The difference between this function and dw2_get_cu is in the handling
2362    of type units (TUs).  Here we return the type_unit_group object.
2363
2364    This is intended for loops like:
2365
2366    for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2367                     + dwarf2_per_objfile->n_type_unit_groups); ++i)
2368      {
2369        struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
2370
2371        ...;
2372      }
2373 */
2374
2375 static struct dwarf2_per_cu_data *
2376 dw2_get_primary_cu (int index)
2377 {
2378   if (index >= dwarf2_per_objfile->n_comp_units)
2379     {
2380       index -= dwarf2_per_objfile->n_comp_units;
2381       gdb_assert (index < dwarf2_per_objfile->n_type_unit_groups);
2382       return &dwarf2_per_objfile->all_type_unit_groups[index]->per_cu;
2383     }
2384
2385   return dwarf2_per_objfile->all_comp_units[index];
2386 }
2387
2388 /* A helper for create_cus_from_index that handles a given list of
2389    CUs.  */
2390
2391 static void
2392 create_cus_from_index_list (struct objfile *objfile,
2393                             const gdb_byte *cu_list, offset_type n_elements,
2394                             struct dwarf2_section_info *section,
2395                             int is_dwz,
2396                             int base_offset)
2397 {
2398   offset_type i;
2399
2400   for (i = 0; i < n_elements; i += 2)
2401     {
2402       struct dwarf2_per_cu_data *the_cu;
2403       ULONGEST offset, length;
2404
2405       gdb_static_assert (sizeof (ULONGEST) >= 8);
2406       offset = extract_unsigned_integer (cu_list, 8, BFD_ENDIAN_LITTLE);
2407       length = extract_unsigned_integer (cu_list + 8, 8, BFD_ENDIAN_LITTLE);
2408       cu_list += 2 * 8;
2409
2410       the_cu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2411                                struct dwarf2_per_cu_data);
2412       the_cu->offset.sect_off = offset;
2413       the_cu->length = length;
2414       the_cu->objfile = objfile;
2415       the_cu->section = section;
2416       the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2417                                         struct dwarf2_per_cu_quick_data);
2418       the_cu->is_dwz = is_dwz;
2419       dwarf2_per_objfile->all_comp_units[base_offset + i / 2] = the_cu;
2420     }
2421 }
2422
2423 /* Read the CU list from the mapped index, and use it to create all
2424    the CU objects for this objfile.  */
2425
2426 static void
2427 create_cus_from_index (struct objfile *objfile,
2428                        const gdb_byte *cu_list, offset_type cu_list_elements,
2429                        const gdb_byte *dwz_list, offset_type dwz_elements)
2430 {
2431   struct dwz_file *dwz;
2432
2433   dwarf2_per_objfile->n_comp_units = (cu_list_elements + dwz_elements) / 2;
2434   dwarf2_per_objfile->all_comp_units
2435     = obstack_alloc (&objfile->objfile_obstack,
2436                      dwarf2_per_objfile->n_comp_units
2437                      * sizeof (struct dwarf2_per_cu_data *));
2438
2439   create_cus_from_index_list (objfile, cu_list, cu_list_elements,
2440                               &dwarf2_per_objfile->info, 0, 0);
2441
2442   if (dwz_elements == 0)
2443     return;
2444
2445   dwz = dwarf2_get_dwz_file ();
2446   create_cus_from_index_list (objfile, dwz_list, dwz_elements, &dwz->info, 1,
2447                               cu_list_elements / 2);
2448 }
2449
2450 /* Create the signatured type hash table from the index.  */
2451
2452 static void
2453 create_signatured_type_table_from_index (struct objfile *objfile,
2454                                          struct dwarf2_section_info *section,
2455                                          const gdb_byte *bytes,
2456                                          offset_type elements)
2457 {
2458   offset_type i;
2459   htab_t sig_types_hash;
2460
2461   dwarf2_per_objfile->n_type_units = elements / 3;
2462   dwarf2_per_objfile->all_type_units
2463     = obstack_alloc (&objfile->objfile_obstack,
2464                      dwarf2_per_objfile->n_type_units
2465                      * sizeof (struct signatured_type *));
2466
2467   sig_types_hash = allocate_signatured_type_table (objfile);
2468
2469   for (i = 0; i < elements; i += 3)
2470     {
2471       struct signatured_type *sig_type;
2472       ULONGEST offset, type_offset_in_tu, signature;
2473       void **slot;
2474
2475       gdb_static_assert (sizeof (ULONGEST) >= 8);
2476       offset = extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
2477       type_offset_in_tu = extract_unsigned_integer (bytes + 8, 8,
2478                                                     BFD_ENDIAN_LITTLE);
2479       signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
2480       bytes += 3 * 8;
2481
2482       sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2483                                  struct signatured_type);
2484       sig_type->signature = signature;
2485       sig_type->type_offset_in_tu.cu_off = type_offset_in_tu;
2486       sig_type->per_cu.is_debug_types = 1;
2487       sig_type->per_cu.section = section;
2488       sig_type->per_cu.offset.sect_off = offset;
2489       sig_type->per_cu.objfile = objfile;
2490       sig_type->per_cu.v.quick
2491         = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2492                           struct dwarf2_per_cu_quick_data);
2493
2494       slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
2495       *slot = sig_type;
2496
2497       dwarf2_per_objfile->all_type_units[i / 3] = sig_type;
2498     }
2499
2500   dwarf2_per_objfile->signatured_types = sig_types_hash;
2501 }
2502
2503 /* Read the address map data from the mapped index, and use it to
2504    populate the objfile's psymtabs_addrmap.  */
2505
2506 static void
2507 create_addrmap_from_index (struct objfile *objfile, struct mapped_index *index)
2508 {
2509   const gdb_byte *iter, *end;
2510   struct obstack temp_obstack;
2511   struct addrmap *mutable_map;
2512   struct cleanup *cleanup;
2513   CORE_ADDR baseaddr;
2514
2515   obstack_init (&temp_obstack);
2516   cleanup = make_cleanup_obstack_free (&temp_obstack);
2517   mutable_map = addrmap_create_mutable (&temp_obstack);
2518
2519   iter = index->address_table;
2520   end = iter + index->address_table_size;
2521
2522   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2523
2524   while (iter < end)
2525     {
2526       ULONGEST hi, lo, cu_index;
2527       lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2528       iter += 8;
2529       hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2530       iter += 8;
2531       cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
2532       iter += 4;
2533       
2534       addrmap_set_empty (mutable_map, lo + baseaddr, hi + baseaddr - 1,
2535                          dw2_get_cu (cu_index));
2536     }
2537
2538   objfile->psymtabs_addrmap = addrmap_create_fixed (mutable_map,
2539                                                     &objfile->objfile_obstack);
2540   do_cleanups (cleanup);
2541 }
2542
2543 /* The hash function for strings in the mapped index.  This is the same as
2544    SYMBOL_HASH_NEXT, but we keep a separate copy to maintain control over the
2545    implementation.  This is necessary because the hash function is tied to the
2546    format of the mapped index file.  The hash values do not have to match with
2547    SYMBOL_HASH_NEXT.
2548    
2549    Use INT_MAX for INDEX_VERSION if you generate the current index format.  */
2550
2551 static hashval_t
2552 mapped_index_string_hash (int index_version, const void *p)
2553 {
2554   const unsigned char *str = (const unsigned char *) p;
2555   hashval_t r = 0;
2556   unsigned char c;
2557
2558   while ((c = *str++) != 0)
2559     {
2560       if (index_version >= 5)
2561         c = tolower (c);
2562       r = r * 67 + c - 113;
2563     }
2564
2565   return r;
2566 }
2567
2568 /* Find a slot in the mapped index INDEX for the object named NAME.
2569    If NAME is found, set *VEC_OUT to point to the CU vector in the
2570    constant pool and return 1.  If NAME cannot be found, return 0.  */
2571
2572 static int
2573 find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
2574                           offset_type **vec_out)
2575 {
2576   struct cleanup *back_to = make_cleanup (null_cleanup, 0);
2577   offset_type hash;
2578   offset_type slot, step;
2579   int (*cmp) (const char *, const char *);
2580
2581   if (current_language->la_language == language_cplus
2582       || current_language->la_language == language_java
2583       || current_language->la_language == language_fortran)
2584     {
2585       /* NAME is already canonical.  Drop any qualifiers as .gdb_index does
2586          not contain any.  */
2587       const char *paren = strchr (name, '(');
2588
2589       if (paren)
2590         {
2591           char *dup;
2592
2593           dup = xmalloc (paren - name + 1);
2594           memcpy (dup, name, paren - name);
2595           dup[paren - name] = 0;
2596
2597           make_cleanup (xfree, dup);
2598           name = dup;
2599         }
2600     }
2601
2602   /* Index version 4 did not support case insensitive searches.  But the
2603      indices for case insensitive languages are built in lowercase, therefore
2604      simulate our NAME being searched is also lowercased.  */
2605   hash = mapped_index_string_hash ((index->version == 4
2606                                     && case_sensitivity == case_sensitive_off
2607                                     ? 5 : index->version),
2608                                    name);
2609
2610   slot = hash & (index->symbol_table_slots - 1);
2611   step = ((hash * 17) & (index->symbol_table_slots - 1)) | 1;
2612   cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
2613
2614   for (;;)
2615     {
2616       /* Convert a slot number to an offset into the table.  */
2617       offset_type i = 2 * slot;
2618       const char *str;
2619       if (index->symbol_table[i] == 0 && index->symbol_table[i + 1] == 0)
2620         {
2621           do_cleanups (back_to);
2622           return 0;
2623         }
2624
2625       str = index->constant_pool + MAYBE_SWAP (index->symbol_table[i]);
2626       if (!cmp (name, str))
2627         {
2628           *vec_out = (offset_type *) (index->constant_pool
2629                                       + MAYBE_SWAP (index->symbol_table[i + 1]));
2630           do_cleanups (back_to);
2631           return 1;
2632         }
2633
2634       slot = (slot + step) & (index->symbol_table_slots - 1);
2635     }
2636 }
2637
2638 /* A helper function that reads the .gdb_index from SECTION and fills
2639    in MAP.  FILENAME is the name of the file containing the section;
2640    it is used for error reporting.  DEPRECATED_OK is nonzero if it is
2641    ok to use deprecated sections.
2642
2643    CU_LIST, CU_LIST_ELEMENTS, TYPES_LIST, and TYPES_LIST_ELEMENTS are
2644    out parameters that are filled in with information about the CU and
2645    TU lists in the section.
2646
2647    Returns 1 if all went well, 0 otherwise.  */
2648
2649 static int
2650 read_index_from_section (struct objfile *objfile,
2651                          const char *filename,
2652                          int deprecated_ok,
2653                          struct dwarf2_section_info *section,
2654                          struct mapped_index *map,
2655                          const gdb_byte **cu_list,
2656                          offset_type *cu_list_elements,
2657                          const gdb_byte **types_list,
2658                          offset_type *types_list_elements)
2659 {
2660   char *addr;
2661   offset_type version;
2662   offset_type *metadata;
2663   int i;
2664
2665   if (dwarf2_section_empty_p (section))
2666     return 0;
2667
2668   /* Older elfutils strip versions could keep the section in the main
2669      executable while splitting it for the separate debug info file.  */
2670   if ((bfd_get_file_flags (section->asection) & SEC_HAS_CONTENTS) == 0)
2671     return 0;
2672
2673   dwarf2_read_section (objfile, section);
2674
2675   addr = section->buffer;
2676   /* Version check.  */
2677   version = MAYBE_SWAP (*(offset_type *) addr);
2678   /* Versions earlier than 3 emitted every copy of a psymbol.  This
2679      causes the index to behave very poorly for certain requests.  Version 3
2680      contained incomplete addrmap.  So, it seems better to just ignore such
2681      indices.  */
2682   if (version < 4)
2683     {
2684       static int warning_printed = 0;
2685       if (!warning_printed)
2686         {
2687           warning (_("Skipping obsolete .gdb_index section in %s."),
2688                    filename);
2689           warning_printed = 1;
2690         }
2691       return 0;
2692     }
2693   /* Index version 4 uses a different hash function than index version
2694      5 and later.
2695
2696      Versions earlier than 6 did not emit psymbols for inlined
2697      functions.  Using these files will cause GDB not to be able to
2698      set breakpoints on inlined functions by name, so we ignore these
2699      indices unless the user has done
2700      "set use-deprecated-index-sections on".  */
2701   if (version < 6 && !deprecated_ok)
2702     {
2703       static int warning_printed = 0;
2704       if (!warning_printed)
2705         {
2706           warning (_("\
2707 Skipping deprecated .gdb_index section in %s.\n\
2708 Do \"set use-deprecated-index-sections on\" before the file is read\n\
2709 to use the section anyway."),
2710                    filename);
2711           warning_printed = 1;
2712         }
2713       return 0;
2714     }
2715   /* Version 7 indices generated by gold refer to the CU for a symbol instead
2716      of the TU (for symbols coming from TUs).  It's just a performance bug, and
2717      we can't distinguish gdb-generated indices from gold-generated ones, so
2718      nothing to do here.  */
2719
2720   /* Indexes with higher version than the one supported by GDB may be no
2721      longer backward compatible.  */
2722   if (version > 8)
2723     return 0;
2724
2725   map->version = version;
2726   map->total_size = section->size;
2727
2728   metadata = (offset_type *) (addr + sizeof (offset_type));
2729
2730   i = 0;
2731   *cu_list = addr + MAYBE_SWAP (metadata[i]);
2732   *cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
2733                        / 8);
2734   ++i;
2735
2736   *types_list = addr + MAYBE_SWAP (metadata[i]);
2737   *types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
2738                            - MAYBE_SWAP (metadata[i]))
2739                           / 8);
2740   ++i;
2741
2742   map->address_table = addr + MAYBE_SWAP (metadata[i]);
2743   map->address_table_size = (MAYBE_SWAP (metadata[i + 1])
2744                              - MAYBE_SWAP (metadata[i]));
2745   ++i;
2746
2747   map->symbol_table = (offset_type *) (addr + MAYBE_SWAP (metadata[i]));
2748   map->symbol_table_slots = ((MAYBE_SWAP (metadata[i + 1])
2749                               - MAYBE_SWAP (metadata[i]))
2750                              / (2 * sizeof (offset_type)));
2751   ++i;
2752
2753   map->constant_pool = addr + MAYBE_SWAP (metadata[i]);
2754
2755   return 1;
2756 }
2757
2758
2759 /* Read the index file.  If everything went ok, initialize the "quick"
2760    elements of all the CUs and return 1.  Otherwise, return 0.  */
2761
2762 static int
2763 dwarf2_read_index (struct objfile *objfile)
2764 {
2765   struct mapped_index local_map, *map;
2766   const gdb_byte *cu_list, *types_list, *dwz_list = NULL;
2767   offset_type cu_list_elements, types_list_elements, dwz_list_elements = 0;
2768
2769   if (!read_index_from_section (objfile, objfile->name,
2770                                 use_deprecated_index_sections,
2771                                 &dwarf2_per_objfile->gdb_index, &local_map,
2772                                 &cu_list, &cu_list_elements,
2773                                 &types_list, &types_list_elements))
2774     return 0;
2775
2776   /* Don't use the index if it's empty.  */
2777   if (local_map.symbol_table_slots == 0)
2778     return 0;
2779
2780   /* If there is a .dwz file, read it so we can get its CU list as
2781      well.  */
2782   if (bfd_get_section_by_name (objfile->obfd, ".gnu_debugaltlink") != NULL)
2783     {
2784       struct dwz_file *dwz = dwarf2_get_dwz_file ();
2785       struct mapped_index dwz_map;
2786       const gdb_byte *dwz_types_ignore;
2787       offset_type dwz_types_elements_ignore;
2788
2789       if (!read_index_from_section (objfile, bfd_get_filename (dwz->dwz_bfd),
2790                                     1,
2791                                     &dwz->gdb_index, &dwz_map,
2792                                     &dwz_list, &dwz_list_elements,
2793                                     &dwz_types_ignore,
2794                                     &dwz_types_elements_ignore))
2795         {
2796           warning (_("could not read '.gdb_index' section from %s; skipping"),
2797                    bfd_get_filename (dwz->dwz_bfd));
2798           return 0;
2799         }
2800     }
2801
2802   create_cus_from_index (objfile, cu_list, cu_list_elements, dwz_list,
2803                          dwz_list_elements);
2804
2805   if (types_list_elements)
2806     {
2807       struct dwarf2_section_info *section;
2808
2809       /* We can only handle a single .debug_types when we have an
2810          index.  */
2811       if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) != 1)
2812         return 0;
2813
2814       section = VEC_index (dwarf2_section_info_def,
2815                            dwarf2_per_objfile->types, 0);
2816
2817       create_signatured_type_table_from_index (objfile, section, types_list,
2818                                                types_list_elements);
2819     }
2820
2821   create_addrmap_from_index (objfile, &local_map);
2822
2823   map = obstack_alloc (&objfile->objfile_obstack, sizeof (struct mapped_index));
2824   *map = local_map;
2825
2826   dwarf2_per_objfile->index_table = map;
2827   dwarf2_per_objfile->using_index = 1;
2828   dwarf2_per_objfile->quick_file_names_table =
2829     create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
2830
2831   return 1;
2832 }
2833
2834 /* A helper for the "quick" functions which sets the global
2835    dwarf2_per_objfile according to OBJFILE.  */
2836
2837 static void
2838 dw2_setup (struct objfile *objfile)
2839 {
2840   dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
2841   gdb_assert (dwarf2_per_objfile);
2842 }
2843
2844 /* die_reader_func for dw2_get_file_names.  */
2845
2846 static void
2847 dw2_get_file_names_reader (const struct die_reader_specs *reader,
2848                            gdb_byte *info_ptr,
2849                            struct die_info *comp_unit_die,
2850                            int has_children,
2851                            void *data)
2852 {
2853   struct dwarf2_cu *cu = reader->cu;
2854   struct dwarf2_per_cu_data *this_cu = cu->per_cu;  
2855   struct objfile *objfile = dwarf2_per_objfile->objfile;
2856   struct dwarf2_per_cu_data *lh_cu;
2857   struct line_header *lh;
2858   struct attribute *attr;
2859   int i;
2860   const char *name, *comp_dir;
2861   void **slot;
2862   struct quick_file_names *qfn;
2863   unsigned int line_offset;
2864
2865   /* Our callers never want to match partial units -- instead they
2866      will match the enclosing full CU.  */
2867   if (comp_unit_die->tag == DW_TAG_partial_unit)
2868     {
2869       this_cu->v.quick->no_file_data = 1;
2870       return;
2871     }
2872
2873   /* If we're reading the line header for TUs, store it in the "per_cu"
2874      for tu_group.  */
2875   if (this_cu->is_debug_types)
2876     {
2877       struct type_unit_group *tu_group = data;
2878
2879       gdb_assert (tu_group != NULL);
2880       lh_cu = &tu_group->per_cu;
2881     }
2882   else
2883     lh_cu = this_cu;
2884
2885   lh = NULL;
2886   slot = NULL;
2887   line_offset = 0;
2888
2889   attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
2890   if (attr)
2891     {
2892       struct quick_file_names find_entry;
2893
2894       line_offset = DW_UNSND (attr);
2895
2896       /* We may have already read in this line header (TU line header sharing).
2897          If we have we're done.  */
2898       find_entry.hash.dwo_unit = cu->dwo_unit;
2899       find_entry.hash.line_offset.sect_off = line_offset;
2900       slot = htab_find_slot (dwarf2_per_objfile->quick_file_names_table,
2901                              &find_entry, INSERT);
2902       if (*slot != NULL)
2903         {
2904           lh_cu->v.quick->file_names = *slot;
2905           return;
2906         }
2907
2908       lh = dwarf_decode_line_header (line_offset, cu);
2909     }
2910   if (lh == NULL)
2911     {
2912       lh_cu->v.quick->no_file_data = 1;
2913       return;
2914     }
2915
2916   qfn = obstack_alloc (&objfile->objfile_obstack, sizeof (*qfn));
2917   qfn->hash.dwo_unit = cu->dwo_unit;
2918   qfn->hash.line_offset.sect_off = line_offset;
2919   gdb_assert (slot != NULL);
2920   *slot = qfn;
2921
2922   find_file_and_directory (comp_unit_die, cu, &name, &comp_dir);
2923
2924   qfn->num_file_names = lh->num_file_names;
2925   qfn->file_names = obstack_alloc (&objfile->objfile_obstack,
2926                                    lh->num_file_names * sizeof (char *));
2927   for (i = 0; i < lh->num_file_names; ++i)
2928     qfn->file_names[i] = file_full_name (i + 1, lh, comp_dir);
2929   qfn->real_names = NULL;
2930
2931   free_line_header (lh);
2932
2933   lh_cu->v.quick->file_names = qfn;
2934 }
2935
2936 /* A helper for the "quick" functions which attempts to read the line
2937    table for THIS_CU.  */
2938
2939 static struct quick_file_names *
2940 dw2_get_file_names (struct objfile *objfile,
2941                     struct dwarf2_per_cu_data *this_cu)
2942 {
2943   /* For TUs this should only be called on the parent group.  */
2944   if (this_cu->is_debug_types)
2945     gdb_assert (IS_TYPE_UNIT_GROUP (this_cu));
2946
2947   if (this_cu->v.quick->file_names != NULL)
2948     return this_cu->v.quick->file_names;
2949   /* If we know there is no line data, no point in looking again.  */
2950   if (this_cu->v.quick->no_file_data)
2951     return NULL;
2952
2953   /* If DWO files are in use, we can still find the DW_AT_stmt_list attribute
2954      in the stub for CUs, there's is no need to lookup the DWO file.
2955      However, that's not the case for TUs where DW_AT_stmt_list lives in the
2956      DWO file.  */
2957   if (this_cu->is_debug_types)
2958     {
2959       struct type_unit_group *tu_group = this_cu->type_unit_group;
2960
2961       init_cutu_and_read_dies (tu_group->t.first_tu, NULL, 0, 0,
2962                                dw2_get_file_names_reader, tu_group);
2963     }
2964   else
2965     init_cutu_and_read_dies_simple (this_cu, dw2_get_file_names_reader, NULL);
2966
2967   if (this_cu->v.quick->no_file_data)
2968     return NULL;
2969   return this_cu->v.quick->file_names;
2970 }
2971
2972 /* A helper for the "quick" functions which computes and caches the
2973    real path for a given file name from the line table.  */
2974
2975 static const char *
2976 dw2_get_real_path (struct objfile *objfile,
2977                    struct quick_file_names *qfn, int index)
2978 {
2979   if (qfn->real_names == NULL)
2980     qfn->real_names = OBSTACK_CALLOC (&objfile->objfile_obstack,
2981                                       qfn->num_file_names, sizeof (char *));
2982
2983   if (qfn->real_names[index] == NULL)
2984     qfn->real_names[index] = gdb_realpath (qfn->file_names[index]);
2985
2986   return qfn->real_names[index];
2987 }
2988
2989 static struct symtab *
2990 dw2_find_last_source_symtab (struct objfile *objfile)
2991 {
2992   int index;
2993
2994   dw2_setup (objfile);
2995   index = dwarf2_per_objfile->n_comp_units - 1;
2996   return dw2_instantiate_symtab (dw2_get_cu (index));
2997 }
2998
2999 /* Traversal function for dw2_forget_cached_source_info.  */
3000
3001 static int
3002 dw2_free_cached_file_names (void **slot, void *info)
3003 {
3004   struct quick_file_names *file_data = (struct quick_file_names *) *slot;
3005
3006   if (file_data->real_names)
3007     {
3008       int i;
3009
3010       for (i = 0; i < file_data->num_file_names; ++i)
3011         {
3012           xfree ((void*) file_data->real_names[i]);
3013           file_data->real_names[i] = NULL;
3014         }
3015     }
3016
3017   return 1;
3018 }
3019
3020 static void
3021 dw2_forget_cached_source_info (struct objfile *objfile)
3022 {
3023   dw2_setup (objfile);
3024
3025   htab_traverse_noresize (dwarf2_per_objfile->quick_file_names_table,
3026                           dw2_free_cached_file_names, NULL);
3027 }
3028
3029 /* Helper function for dw2_map_symtabs_matching_filename that expands
3030    the symtabs and calls the iterator.  */
3031
3032 static int
3033 dw2_map_expand_apply (struct objfile *objfile,
3034                       struct dwarf2_per_cu_data *per_cu,
3035                       const char *name, const char *real_path,
3036                       int (*callback) (struct symtab *, void *),
3037                       void *data)
3038 {
3039   struct symtab *last_made = objfile->symtabs;
3040
3041   /* Don't visit already-expanded CUs.  */
3042   if (per_cu->v.quick->symtab)
3043     return 0;
3044
3045   /* This may expand more than one symtab, and we want to iterate over
3046      all of them.  */
3047   dw2_instantiate_symtab (per_cu);
3048
3049   return iterate_over_some_symtabs (name, real_path, callback, data,
3050                                     objfile->symtabs, last_made);
3051 }
3052
3053 /* Implementation of the map_symtabs_matching_filename method.  */
3054
3055 static int
3056 dw2_map_symtabs_matching_filename (struct objfile *objfile, const char *name,
3057                                    const char *real_path,
3058                                    int (*callback) (struct symtab *, void *),
3059                                    void *data)
3060 {
3061   int i;
3062   const char *name_basename = lbasename (name);
3063
3064   dw2_setup (objfile);
3065
3066   /* The rule is CUs specify all the files, including those used by
3067      any TU, so there's no need to scan TUs here.  */
3068
3069   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3070     {
3071       int j;
3072       struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
3073       struct quick_file_names *file_data;
3074
3075       /* We only need to look at symtabs not already expanded.  */
3076       if (per_cu->v.quick->symtab)
3077         continue;
3078
3079       file_data = dw2_get_file_names (objfile, per_cu);
3080       if (file_data == NULL)
3081         continue;
3082
3083       for (j = 0; j < file_data->num_file_names; ++j)
3084         {
3085           const char *this_name = file_data->file_names[j];
3086           const char *this_real_name;
3087
3088           if (compare_filenames_for_search (this_name, name))
3089             {
3090               if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3091                                         callback, data))
3092                 return 1;
3093               continue;
3094             }
3095
3096           /* Before we invoke realpath, which can get expensive when many
3097              files are involved, do a quick comparison of the basenames.  */
3098           if (! basenames_may_differ
3099               && FILENAME_CMP (lbasename (this_name), name_basename) != 0)
3100             continue;
3101
3102           this_real_name = dw2_get_real_path (objfile, file_data, j);
3103           if (compare_filenames_for_search (this_real_name, name))
3104             {
3105               if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3106                                         callback, data))
3107                 return 1;
3108               continue;
3109             }
3110
3111           if (real_path != NULL)
3112             {
3113               gdb_assert (IS_ABSOLUTE_PATH (real_path));
3114               gdb_assert (IS_ABSOLUTE_PATH (name));
3115               if (this_real_name != NULL
3116                   && FILENAME_CMP (real_path, this_real_name) == 0)
3117                 {
3118                   if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3119                                             callback, data))
3120                     return 1;
3121                   continue;
3122                 }
3123             }
3124         }
3125     }
3126
3127   return 0;
3128 }
3129
3130 /* Struct used to manage iterating over all CUs looking for a symbol.  */
3131
3132 struct dw2_symtab_iterator
3133 {
3134   /* The internalized form of .gdb_index.  */
3135   struct mapped_index *index;
3136   /* If non-zero, only look for symbols that match BLOCK_INDEX.  */
3137   int want_specific_block;
3138   /* One of GLOBAL_BLOCK or STATIC_BLOCK.
3139      Unused if !WANT_SPECIFIC_BLOCK.  */
3140   int block_index;
3141   /* The kind of symbol we're looking for.  */
3142   domain_enum domain;
3143   /* The list of CUs from the index entry of the symbol,
3144      or NULL if not found.  */
3145   offset_type *vec;
3146   /* The next element in VEC to look at.  */
3147   int next;
3148   /* The number of elements in VEC, or zero if there is no match.  */
3149   int length;
3150 };
3151
3152 /* Initialize the index symtab iterator ITER.
3153    If WANT_SPECIFIC_BLOCK is non-zero, only look for symbols
3154    in block BLOCK_INDEX.  Otherwise BLOCK_INDEX is ignored.  */
3155
3156 static void
3157 dw2_symtab_iter_init (struct dw2_symtab_iterator *iter,
3158                       struct mapped_index *index,
3159                       int want_specific_block,
3160                       int block_index,
3161                       domain_enum domain,
3162                       const char *name)
3163 {
3164   iter->index = index;
3165   iter->want_specific_block = want_specific_block;
3166   iter->block_index = block_index;
3167   iter->domain = domain;
3168   iter->next = 0;
3169
3170   if (find_slot_in_mapped_hash (index, name, &iter->vec))
3171     iter->length = MAYBE_SWAP (*iter->vec);
3172   else
3173     {
3174       iter->vec = NULL;
3175       iter->length = 0;
3176     }
3177 }
3178
3179 /* Return the next matching CU or NULL if there are no more.  */
3180
3181 static struct dwarf2_per_cu_data *
3182 dw2_symtab_iter_next (struct dw2_symtab_iterator *iter)
3183 {
3184   for ( ; iter->next < iter->length; ++iter->next)
3185     {
3186       offset_type cu_index_and_attrs =
3187         MAYBE_SWAP (iter->vec[iter->next + 1]);
3188       offset_type cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
3189       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (cu_index);
3190       int want_static = iter->block_index != GLOBAL_BLOCK;
3191       /* This value is only valid for index versions >= 7.  */
3192       int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
3193       gdb_index_symbol_kind symbol_kind =
3194         GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3195       /* Only check the symbol attributes if they're present.
3196          Indices prior to version 7 don't record them,
3197          and indices >= 7 may elide them for certain symbols
3198          (gold does this).  */
3199       int attrs_valid =
3200         (iter->index->version >= 7
3201          && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3202
3203       /* Skip if already read in.  */
3204       if (per_cu->v.quick->symtab)
3205         continue;
3206
3207       if (attrs_valid
3208           && iter->want_specific_block
3209           && want_static != is_static)
3210         continue;
3211
3212       /* Only check the symbol's kind if it has one.  */
3213       if (attrs_valid)
3214         {
3215           switch (iter->domain)
3216             {
3217             case VAR_DOMAIN:
3218               if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE
3219                   && symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION
3220                   /* Some types are also in VAR_DOMAIN.  */
3221                   && symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3222                 continue;
3223               break;
3224             case STRUCT_DOMAIN:
3225               if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3226                 continue;
3227               break;
3228             case LABEL_DOMAIN:
3229               if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
3230                 continue;
3231               break;
3232             default:
3233               break;
3234             }
3235         }
3236
3237       ++iter->next;
3238       return per_cu;
3239     }
3240
3241   return NULL;
3242 }
3243
3244 static struct symtab *
3245 dw2_lookup_symbol (struct objfile *objfile, int block_index,
3246                    const char *name, domain_enum domain)
3247 {
3248   struct symtab *stab_best = NULL;
3249   struct mapped_index *index;
3250
3251   dw2_setup (objfile);
3252
3253   index = dwarf2_per_objfile->index_table;
3254
3255   /* index is NULL if OBJF_READNOW.  */
3256   if (index)
3257     {
3258       struct dw2_symtab_iterator iter;
3259       struct dwarf2_per_cu_data *per_cu;
3260
3261       dw2_symtab_iter_init (&iter, index, 1, block_index, domain, name);
3262
3263       while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
3264         {
3265           struct symbol *sym = NULL;
3266           struct symtab *stab = dw2_instantiate_symtab (per_cu);
3267
3268           /* Some caution must be observed with overloaded functions
3269              and methods, since the index will not contain any overload
3270              information (but NAME might contain it).  */
3271           if (stab->primary)
3272             {
3273               struct blockvector *bv = BLOCKVECTOR (stab);
3274               struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
3275
3276               sym = lookup_block_symbol (block, name, domain);
3277             }
3278
3279           if (sym && strcmp_iw (SYMBOL_SEARCH_NAME (sym), name) == 0)
3280             {
3281               if (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
3282                 return stab;
3283
3284               stab_best = stab;
3285             }
3286
3287           /* Keep looking through other CUs.  */
3288         }
3289     }
3290
3291   return stab_best;
3292 }
3293
3294 static void
3295 dw2_print_stats (struct objfile *objfile)
3296 {
3297   int i, count;
3298
3299   dw2_setup (objfile);
3300   count = 0;
3301   for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3302                    + dwarf2_per_objfile->n_type_units); ++i)
3303     {
3304       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3305
3306       if (!per_cu->v.quick->symtab)
3307         ++count;
3308     }
3309   printf_filtered (_("  Number of unread CUs: %d\n"), count);
3310 }
3311
3312 static void
3313 dw2_dump (struct objfile *objfile)
3314 {
3315   /* Nothing worth printing.  */
3316 }
3317
3318 static void
3319 dw2_relocate (struct objfile *objfile, struct section_offsets *new_offsets,
3320               struct section_offsets *delta)
3321 {
3322   /* There's nothing to relocate here.  */
3323 }
3324
3325 static void
3326 dw2_expand_symtabs_for_function (struct objfile *objfile,
3327                                  const char *func_name)
3328 {
3329   struct mapped_index *index;
3330
3331   dw2_setup (objfile);
3332
3333   index = dwarf2_per_objfile->index_table;
3334
3335   /* index is NULL if OBJF_READNOW.  */
3336   if (index)
3337     {
3338       struct dw2_symtab_iterator iter;
3339       struct dwarf2_per_cu_data *per_cu;
3340
3341       /* Note: It doesn't matter what we pass for block_index here.  */
3342       dw2_symtab_iter_init (&iter, index, 0, GLOBAL_BLOCK, VAR_DOMAIN,
3343                             func_name);
3344
3345       while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
3346         dw2_instantiate_symtab (per_cu);
3347     }
3348 }
3349
3350 static void
3351 dw2_expand_all_symtabs (struct objfile *objfile)
3352 {
3353   int i;
3354
3355   dw2_setup (objfile);
3356
3357   for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3358                    + dwarf2_per_objfile->n_type_units); ++i)
3359     {
3360       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3361
3362       dw2_instantiate_symtab (per_cu);
3363     }
3364 }
3365
3366 static void
3367 dw2_expand_symtabs_with_fullname (struct objfile *objfile,
3368                                   const char *fullname)
3369 {
3370   int i;
3371
3372   dw2_setup (objfile);
3373
3374   /* We don't need to consider type units here.
3375      This is only called for examining code, e.g. expand_line_sal.
3376      There can be an order of magnitude (or more) more type units
3377      than comp units, and we avoid them if we can.  */
3378
3379   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3380     {
3381       int j;
3382       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3383       struct quick_file_names *file_data;
3384
3385       /* We only need to look at symtabs not already expanded.  */
3386       if (per_cu->v.quick->symtab)
3387         continue;
3388
3389       file_data = dw2_get_file_names (objfile, per_cu);
3390       if (file_data == NULL)
3391         continue;
3392
3393       for (j = 0; j < file_data->num_file_names; ++j)
3394         {
3395           const char *this_fullname = file_data->file_names[j];
3396
3397           if (filename_cmp (this_fullname, fullname) == 0)
3398             {
3399               dw2_instantiate_symtab (per_cu);
3400               break;
3401             }
3402         }
3403     }
3404 }
3405
3406 /* A helper function for dw2_find_symbol_file that finds the primary
3407    file name for a given CU.  This is a die_reader_func.  */
3408
3409 static void
3410 dw2_get_primary_filename_reader (const struct die_reader_specs *reader,
3411                                  gdb_byte *info_ptr,
3412                                  struct die_info *comp_unit_die,
3413                                  int has_children,
3414                                  void *data)
3415 {
3416   const char **result_ptr = data;
3417   struct dwarf2_cu *cu = reader->cu;
3418   struct attribute *attr;
3419
3420   attr = dwarf2_attr (comp_unit_die, DW_AT_name, cu);
3421   if (attr == NULL)
3422     *result_ptr = NULL;
3423   else
3424     *result_ptr = DW_STRING (attr);
3425 }
3426
3427 static const char *
3428 dw2_find_symbol_file (struct objfile *objfile, const char *name)
3429 {
3430   struct dwarf2_per_cu_data *per_cu;
3431   offset_type *vec;
3432   const char *filename;
3433
3434   dw2_setup (objfile);
3435
3436   /* index_table is NULL if OBJF_READNOW.  */
3437   if (!dwarf2_per_objfile->index_table)
3438     {
3439       struct symtab *s;
3440
3441       ALL_OBJFILE_PRIMARY_SYMTABS (objfile, s)
3442         {
3443           struct blockvector *bv = BLOCKVECTOR (s);
3444           const struct block *block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
3445           struct symbol *sym = lookup_block_symbol (block, name, VAR_DOMAIN);
3446
3447           if (sym)
3448             {
3449               /* Only file extension of returned filename is recognized.  */
3450               return SYMBOL_SYMTAB (sym)->filename;
3451             }
3452         }
3453       return NULL;
3454     }
3455
3456   if (!find_slot_in_mapped_hash (dwarf2_per_objfile->index_table,
3457                                  name, &vec))
3458     return NULL;
3459
3460   /* Note that this just looks at the very first one named NAME -- but
3461      actually we are looking for a function.  find_main_filename
3462      should be rewritten so that it doesn't require a custom hook.  It
3463      could just use the ordinary symbol tables.  */
3464   /* vec[0] is the length, which must always be >0.  */
3465   per_cu = dw2_get_cu (GDB_INDEX_CU_VALUE (MAYBE_SWAP (vec[1])));
3466
3467   if (per_cu->v.quick->symtab != NULL)
3468     {
3469       /* Only file extension of returned filename is recognized.  */
3470       return per_cu->v.quick->symtab->filename;
3471     }
3472
3473   init_cutu_and_read_dies (per_cu, NULL, 0, 0,
3474                            dw2_get_primary_filename_reader, &filename);
3475
3476   /* Only file extension of returned filename is recognized.  */
3477   return filename;
3478 }
3479
3480 static void
3481 dw2_map_matching_symbols (const char * name, domain_enum namespace,
3482                           struct objfile *objfile, int global,
3483                           int (*callback) (struct block *,
3484                                            struct symbol *, void *),
3485                           void *data, symbol_compare_ftype *match,
3486                           symbol_compare_ftype *ordered_compare)
3487 {
3488   /* Currently unimplemented; used for Ada.  The function can be called if the
3489      current language is Ada for a non-Ada objfile using GNU index.  As Ada
3490      does not look for non-Ada symbols this function should just return.  */
3491 }
3492
3493 static void
3494 dw2_expand_symtabs_matching
3495   (struct objfile *objfile,
3496    int (*file_matcher) (const char *, void *, int basenames),
3497    int (*name_matcher) (const char *, void *),
3498    enum search_domain kind,
3499    void *data)
3500 {
3501   int i;
3502   offset_type iter;
3503   struct mapped_index *index;
3504
3505   dw2_setup (objfile);
3506
3507   /* index_table is NULL if OBJF_READNOW.  */
3508   if (!dwarf2_per_objfile->index_table)
3509     return;
3510   index = dwarf2_per_objfile->index_table;
3511
3512   if (file_matcher != NULL)
3513     {
3514       struct cleanup *cleanup;
3515       htab_t visited_found, visited_not_found;
3516
3517       visited_found = htab_create_alloc (10,
3518                                          htab_hash_pointer, htab_eq_pointer,
3519                                          NULL, xcalloc, xfree);
3520       cleanup = make_cleanup_htab_delete (visited_found);
3521       visited_not_found = htab_create_alloc (10,
3522                                              htab_hash_pointer, htab_eq_pointer,
3523                                              NULL, xcalloc, xfree);
3524       make_cleanup_htab_delete (visited_not_found);
3525
3526       /* The rule is CUs specify all the files, including those used by
3527          any TU, so there's no need to scan TUs here.  */
3528
3529       for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3530         {
3531           int j;
3532           struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
3533           struct quick_file_names *file_data;
3534           void **slot;
3535
3536           per_cu->v.quick->mark = 0;
3537
3538           /* We only need to look at symtabs not already expanded.  */
3539           if (per_cu->v.quick->symtab)
3540             continue;
3541
3542           file_data = dw2_get_file_names (objfile, per_cu);
3543           if (file_data == NULL)
3544             continue;
3545
3546           if (htab_find (visited_not_found, file_data) != NULL)
3547             continue;
3548           else if (htab_find (visited_found, file_data) != NULL)
3549             {
3550               per_cu->v.quick->mark = 1;
3551               continue;
3552             }
3553
3554           for (j = 0; j < file_data->num_file_names; ++j)
3555             {
3556               const char *this_real_name;
3557
3558               if (file_matcher (file_data->file_names[j], data, 0))
3559                 {
3560                   per_cu->v.quick->mark = 1;
3561                   break;
3562                 }
3563
3564               /* Before we invoke realpath, which can get expensive when many
3565                  files are involved, do a quick comparison of the basenames.  */
3566               if (!basenames_may_differ
3567                   && !file_matcher (lbasename (file_data->file_names[j]),
3568                                     data, 1))
3569                 continue;
3570
3571               this_real_name = dw2_get_real_path (objfile, file_data, j);
3572               if (file_matcher (this_real_name, data, 0))
3573                 {
3574                   per_cu->v.quick->mark = 1;
3575                   break;
3576                 }
3577             }
3578
3579           slot = htab_find_slot (per_cu->v.quick->mark
3580                                  ? visited_found
3581                                  : visited_not_found,
3582                                  file_data, INSERT);
3583           *slot = file_data;
3584         }
3585
3586       do_cleanups (cleanup);
3587     }
3588
3589   for (iter = 0; iter < index->symbol_table_slots; ++iter)
3590     {
3591       offset_type idx = 2 * iter;
3592       const char *name;
3593       offset_type *vec, vec_len, vec_idx;
3594
3595       if (index->symbol_table[idx] == 0 && index->symbol_table[idx + 1] == 0)
3596         continue;
3597
3598       name = index->constant_pool + MAYBE_SWAP (index->symbol_table[idx]);
3599
3600       if (! (*name_matcher) (name, data))
3601         continue;
3602
3603       /* The name was matched, now expand corresponding CUs that were
3604          marked.  */
3605       vec = (offset_type *) (index->constant_pool
3606                              + MAYBE_SWAP (index->symbol_table[idx + 1]));
3607       vec_len = MAYBE_SWAP (vec[0]);
3608       for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
3609         {
3610           struct dwarf2_per_cu_data *per_cu;
3611           offset_type cu_index_and_attrs = MAYBE_SWAP (vec[vec_idx + 1]);
3612           gdb_index_symbol_kind symbol_kind =
3613             GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3614           int cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
3615
3616           /* Don't crash on bad data.  */
3617           if (cu_index >= (dwarf2_per_objfile->n_comp_units
3618                            + dwarf2_per_objfile->n_type_units))
3619             continue;
3620
3621           /* Only check the symbol's kind if it has one.
3622              Indices prior to version 7 don't record it.  */
3623           if (index->version >= 7)
3624             {
3625               switch (kind)
3626                 {
3627                 case VARIABLES_DOMAIN:
3628                   if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE)
3629                     continue;
3630                   break;
3631                 case FUNCTIONS_DOMAIN:
3632                   if (symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION)
3633                     continue;
3634                   break;
3635                 case TYPES_DOMAIN:
3636                   if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3637                     continue;
3638                   break;
3639                 default:
3640                   break;
3641                 }
3642             }
3643
3644           per_cu = dw2_get_cu (cu_index);
3645           if (file_matcher == NULL || per_cu->v.quick->mark)
3646             dw2_instantiate_symtab (per_cu);
3647         }
3648     }
3649 }
3650
3651 /* A helper for dw2_find_pc_sect_symtab which finds the most specific
3652    symtab.  */
3653
3654 static struct symtab *
3655 recursively_find_pc_sect_symtab (struct symtab *symtab, CORE_ADDR pc)
3656 {
3657   int i;
3658
3659   if (BLOCKVECTOR (symtab) != NULL
3660       && blockvector_contains_pc (BLOCKVECTOR (symtab), pc))
3661     return symtab;
3662
3663   if (symtab->includes == NULL)
3664     return NULL;
3665
3666   for (i = 0; symtab->includes[i]; ++i)
3667     {
3668       struct symtab *s = symtab->includes[i];
3669
3670       s = recursively_find_pc_sect_symtab (s, pc);
3671       if (s != NULL)
3672         return s;
3673     }
3674
3675   return NULL;
3676 }
3677
3678 static struct symtab *
3679 dw2_find_pc_sect_symtab (struct objfile *objfile,
3680                          struct minimal_symbol *msymbol,
3681                          CORE_ADDR pc,
3682                          struct obj_section *section,
3683                          int warn_if_readin)
3684 {
3685   struct dwarf2_per_cu_data *data;
3686   struct symtab *result;
3687
3688   dw2_setup (objfile);
3689
3690   if (!objfile->psymtabs_addrmap)
3691     return NULL;
3692
3693   data = addrmap_find (objfile->psymtabs_addrmap, pc);
3694   if (!data)
3695     return NULL;
3696
3697   if (warn_if_readin && data->v.quick->symtab)
3698     warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
3699              paddress (get_objfile_arch (objfile), pc));
3700
3701   result = recursively_find_pc_sect_symtab (dw2_instantiate_symtab (data), pc);
3702   gdb_assert (result != NULL);
3703   return result;
3704 }
3705
3706 static void
3707 dw2_map_symbol_filenames (struct objfile *objfile, symbol_filename_ftype *fun,
3708                           void *data, int need_fullname)
3709 {
3710   int i;
3711   struct cleanup *cleanup;
3712   htab_t visited = htab_create_alloc (10, htab_hash_pointer, htab_eq_pointer,
3713                                       NULL, xcalloc, xfree);
3714
3715   cleanup = make_cleanup_htab_delete (visited);
3716   dw2_setup (objfile);
3717
3718   /* The rule is CUs specify all the files, including those used by
3719      any TU, so there's no need to scan TUs here.
3720      We can ignore file names coming from already-expanded CUs.  */
3721
3722   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3723     {
3724       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3725
3726       if (per_cu->v.quick->symtab)
3727         {
3728           void **slot = htab_find_slot (visited, per_cu->v.quick->file_names,
3729                                         INSERT);
3730
3731           *slot = per_cu->v.quick->file_names;
3732         }
3733     }
3734
3735   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3736     {
3737       int j;
3738       struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
3739       struct quick_file_names *file_data;
3740       void **slot;
3741
3742       /* We only need to look at symtabs not already expanded.  */
3743       if (per_cu->v.quick->symtab)
3744         continue;
3745
3746       file_data = dw2_get_file_names (objfile, per_cu);
3747       if (file_data == NULL)
3748         continue;
3749
3750       slot = htab_find_slot (visited, file_data, INSERT);
3751       if (*slot)
3752         {
3753           /* Already visited.  */
3754           continue;
3755         }
3756       *slot = file_data;
3757
3758       for (j = 0; j < file_data->num_file_names; ++j)
3759         {
3760           const char *this_real_name;
3761
3762           if (need_fullname)
3763             this_real_name = dw2_get_real_path (objfile, file_data, j);
3764           else
3765             this_real_name = NULL;
3766           (*fun) (file_data->file_names[j], this_real_name, data);
3767         }
3768     }
3769
3770   do_cleanups (cleanup);
3771 }
3772
3773 static int
3774 dw2_has_symbols (struct objfile *objfile)
3775 {
3776   return 1;
3777 }
3778
3779 const struct quick_symbol_functions dwarf2_gdb_index_functions =
3780 {
3781   dw2_has_symbols,
3782   dw2_find_last_source_symtab,
3783   dw2_forget_cached_source_info,
3784   dw2_map_symtabs_matching_filename,
3785   dw2_lookup_symbol,
3786   dw2_print_stats,
3787   dw2_dump,
3788   dw2_relocate,
3789   dw2_expand_symtabs_for_function,
3790   dw2_expand_all_symtabs,
3791   dw2_expand_symtabs_with_fullname,
3792   dw2_find_symbol_file,
3793   dw2_map_matching_symbols,
3794   dw2_expand_symtabs_matching,
3795   dw2_find_pc_sect_symtab,
3796   dw2_map_symbol_filenames
3797 };
3798
3799 /* Initialize for reading DWARF for this objfile.  Return 0 if this
3800    file will use psymtabs, or 1 if using the GNU index.  */
3801
3802 int
3803 dwarf2_initialize_objfile (struct objfile *objfile)
3804 {
3805   /* If we're about to read full symbols, don't bother with the
3806      indices.  In this case we also don't care if some other debug
3807      format is making psymtabs, because they are all about to be
3808      expanded anyway.  */
3809   if ((objfile->flags & OBJF_READNOW))
3810     {
3811       int i;
3812
3813       dwarf2_per_objfile->using_index = 1;
3814       create_all_comp_units (objfile);
3815       create_all_type_units (objfile);
3816       dwarf2_per_objfile->quick_file_names_table =
3817         create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
3818
3819       for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3820                        + dwarf2_per_objfile->n_type_units); ++i)
3821         {
3822           struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3823
3824           per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3825                                             struct dwarf2_per_cu_quick_data);
3826         }
3827
3828       /* Return 1 so that gdb sees the "quick" functions.  However,
3829          these functions will be no-ops because we will have expanded
3830          all symtabs.  */
3831       return 1;
3832     }
3833
3834   if (dwarf2_read_index (objfile))
3835     return 1;
3836
3837   return 0;
3838 }
3839
3840 \f
3841
3842 /* Build a partial symbol table.  */
3843
3844 void
3845 dwarf2_build_psymtabs (struct objfile *objfile)
3846 {
3847   volatile struct gdb_exception except;
3848
3849   if (objfile->global_psymbols.size == 0 && objfile->static_psymbols.size == 0)
3850     {
3851       init_psymbol_list (objfile, 1024);
3852     }
3853
3854   TRY_CATCH (except, RETURN_MASK_ERROR)
3855     {
3856       /* This isn't really ideal: all the data we allocate on the
3857          objfile's obstack is still uselessly kept around.  However,
3858          freeing it seems unsafe.  */
3859       struct cleanup *cleanups = make_cleanup_discard_psymtabs (objfile);
3860
3861       dwarf2_build_psymtabs_hard (objfile);
3862       discard_cleanups (cleanups);
3863     }
3864   if (except.reason < 0)
3865     exception_print (gdb_stderr, except);
3866 }
3867
3868 /* Return the total length of the CU described by HEADER.  */
3869
3870 static unsigned int
3871 get_cu_length (const struct comp_unit_head *header)
3872 {
3873   return header->initial_length_size + header->length;
3874 }
3875
3876 /* Return TRUE if OFFSET is within CU_HEADER.  */
3877
3878 static inline int
3879 offset_in_cu_p (const struct comp_unit_head *cu_header, sect_offset offset)
3880 {
3881   sect_offset bottom = { cu_header->offset.sect_off };
3882   sect_offset top = { cu_header->offset.sect_off + get_cu_length (cu_header) };
3883
3884   return (offset.sect_off >= bottom.sect_off && offset.sect_off < top.sect_off);
3885 }
3886
3887 /* Find the base address of the compilation unit for range lists and
3888    location lists.  It will normally be specified by DW_AT_low_pc.
3889    In DWARF-3 draft 4, the base address could be overridden by
3890    DW_AT_entry_pc.  It's been removed, but GCC still uses this for
3891    compilation units with discontinuous ranges.  */
3892
3893 static void
3894 dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
3895 {
3896   struct attribute *attr;
3897
3898   cu->base_known = 0;
3899   cu->base_address = 0;
3900
3901   attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
3902   if (attr)
3903     {
3904       cu->base_address = DW_ADDR (attr);
3905       cu->base_known = 1;
3906     }
3907   else
3908     {
3909       attr = dwarf2_attr (die, DW_AT_low_pc, cu);
3910       if (attr)
3911         {
3912           cu->base_address = DW_ADDR (attr);
3913           cu->base_known = 1;
3914         }
3915     }
3916 }
3917
3918 /* Read in the comp unit header information from the debug_info at info_ptr.
3919    NOTE: This leaves members offset, first_die_offset to be filled in
3920    by the caller.  */
3921
3922 static gdb_byte *
3923 read_comp_unit_head (struct comp_unit_head *cu_header,
3924                      gdb_byte *info_ptr, bfd *abfd)
3925 {
3926   int signed_addr;
3927   unsigned int bytes_read;
3928
3929   cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
3930   cu_header->initial_length_size = bytes_read;
3931   cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
3932   info_ptr += bytes_read;
3933   cu_header->version = read_2_bytes (abfd, info_ptr);
3934   info_ptr += 2;
3935   cu_header->abbrev_offset.sect_off = read_offset (abfd, info_ptr, cu_header,
3936                                              &bytes_read);
3937   info_ptr += bytes_read;
3938   cu_header->addr_size = read_1_byte (abfd, info_ptr);
3939   info_ptr += 1;
3940   signed_addr = bfd_get_sign_extend_vma (abfd);
3941   if (signed_addr < 0)
3942     internal_error (__FILE__, __LINE__,
3943                     _("read_comp_unit_head: dwarf from non elf file"));
3944   cu_header->signed_addr_p = signed_addr;
3945
3946   return info_ptr;
3947 }
3948
3949 /* Helper function that returns the proper abbrev section for
3950    THIS_CU.  */
3951
3952 static struct dwarf2_section_info *
3953 get_abbrev_section_for_cu (struct dwarf2_per_cu_data *this_cu)
3954 {
3955   struct dwarf2_section_info *abbrev;
3956
3957   if (this_cu->is_dwz)
3958     abbrev = &dwarf2_get_dwz_file ()->abbrev;
3959   else
3960     abbrev = &dwarf2_per_objfile->abbrev;
3961
3962   return abbrev;
3963 }
3964
3965 /* Subroutine of read_and_check_comp_unit_head and
3966    read_and_check_type_unit_head to simplify them.
3967    Perform various error checking on the header.  */
3968
3969 static void
3970 error_check_comp_unit_head (struct comp_unit_head *header,
3971                             struct dwarf2_section_info *section,
3972                             struct dwarf2_section_info *abbrev_section)
3973 {
3974   bfd *abfd = section->asection->owner;
3975   const char *filename = bfd_get_filename (abfd);
3976
3977   if (header->version != 2 && header->version != 3 && header->version != 4)
3978     error (_("Dwarf Error: wrong version in compilation unit header "
3979            "(is %d, should be 2, 3, or 4) [in module %s]"), header->version,
3980            filename);
3981
3982   if (header->abbrev_offset.sect_off
3983       >= dwarf2_section_size (dwarf2_per_objfile->objfile, abbrev_section))
3984     error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
3985            "(offset 0x%lx + 6) [in module %s]"),
3986            (long) header->abbrev_offset.sect_off, (long) header->offset.sect_off,
3987            filename);
3988
3989   /* Cast to unsigned long to use 64-bit arithmetic when possible to
3990      avoid potential 32-bit overflow.  */
3991   if (((unsigned long) header->offset.sect_off + get_cu_length (header))
3992       > section->size)
3993     error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
3994            "(offset 0x%lx + 0) [in module %s]"),
3995            (long) header->length, (long) header->offset.sect_off,
3996            filename);
3997 }
3998
3999 /* Read in a CU/TU header and perform some basic error checking.
4000    The contents of the header are stored in HEADER.
4001    The result is a pointer to the start of the first DIE.  */
4002
4003 static gdb_byte *
4004 read_and_check_comp_unit_head (struct comp_unit_head *header,
4005                                struct dwarf2_section_info *section,
4006                                struct dwarf2_section_info *abbrev_section,
4007                                gdb_byte *info_ptr,
4008                                int is_debug_types_section)
4009 {
4010   gdb_byte *beg_of_comp_unit = info_ptr;
4011   bfd *abfd = section->asection->owner;
4012
4013   header->offset.sect_off = beg_of_comp_unit - section->buffer;
4014
4015   info_ptr = read_comp_unit_head (header, info_ptr, abfd);
4016
4017   /* If we're reading a type unit, skip over the signature and
4018      type_offset fields.  */
4019   if (is_debug_types_section)
4020     info_ptr += 8 /*signature*/ + header->offset_size;
4021
4022   header->first_die_offset.cu_off = info_ptr - beg_of_comp_unit;
4023
4024   error_check_comp_unit_head (header, section, abbrev_section);
4025
4026   return info_ptr;
4027 }
4028
4029 /* Read in the types comp unit header information from .debug_types entry at
4030    types_ptr.  The result is a pointer to one past the end of the header.  */
4031
4032 static gdb_byte *
4033 read_and_check_type_unit_head (struct comp_unit_head *header,
4034                                struct dwarf2_section_info *section,
4035                                struct dwarf2_section_info *abbrev_section,
4036                                gdb_byte *info_ptr,
4037                                ULONGEST *signature,
4038                                cu_offset *type_offset_in_tu)
4039 {
4040   gdb_byte *beg_of_comp_unit = info_ptr;
4041   bfd *abfd = section->asection->owner;
4042
4043   header->offset.sect_off = beg_of_comp_unit - section->buffer;
4044
4045   info_ptr = read_comp_unit_head (header, info_ptr, abfd);
4046
4047   /* If we're reading a type unit, skip over the signature and
4048      type_offset fields.  */
4049   if (signature != NULL)
4050     *signature = read_8_bytes (abfd, info_ptr);
4051   info_ptr += 8;
4052   if (type_offset_in_tu != NULL)
4053     type_offset_in_tu->cu_off = read_offset_1 (abfd, info_ptr,
4054                                                header->offset_size);
4055   info_ptr += header->offset_size;
4056
4057   header->first_die_offset.cu_off = info_ptr - beg_of_comp_unit;
4058
4059   error_check_comp_unit_head (header, section, abbrev_section);
4060
4061   return info_ptr;
4062 }
4063
4064 /* Fetch the abbreviation table offset from a comp or type unit header.  */
4065
4066 static sect_offset
4067 read_abbrev_offset (struct dwarf2_section_info *section,
4068                     sect_offset offset)
4069 {
4070   bfd *abfd = section->asection->owner;
4071   gdb_byte *info_ptr;
4072   unsigned int length, initial_length_size, offset_size;
4073   sect_offset abbrev_offset;
4074
4075   dwarf2_read_section (dwarf2_per_objfile->objfile, section);
4076   info_ptr = section->buffer + offset.sect_off;
4077   length = read_initial_length (abfd, info_ptr, &initial_length_size);
4078   offset_size = initial_length_size == 4 ? 4 : 8;
4079   info_ptr += initial_length_size + 2 /*version*/;
4080   abbrev_offset.sect_off = read_offset_1 (abfd, info_ptr, offset_size);
4081   return abbrev_offset;
4082 }
4083
4084 /* Allocate a new partial symtab for file named NAME and mark this new
4085    partial symtab as being an include of PST.  */
4086
4087 static void
4088 dwarf2_create_include_psymtab (char *name, struct partial_symtab *pst,
4089                                struct objfile *objfile)
4090 {
4091   struct partial_symtab *subpst = allocate_psymtab (name, objfile);
4092
4093   if (!IS_ABSOLUTE_PATH (subpst->filename))
4094     {
4095       /* It shares objfile->objfile_obstack.  */
4096       subpst->dirname = pst->dirname;
4097     }
4098
4099   subpst->section_offsets = pst->section_offsets;
4100   subpst->textlow = 0;
4101   subpst->texthigh = 0;
4102
4103   subpst->dependencies = (struct partial_symtab **)
4104     obstack_alloc (&objfile->objfile_obstack,
4105                    sizeof (struct partial_symtab *));
4106   subpst->dependencies[0] = pst;
4107   subpst->number_of_dependencies = 1;
4108
4109   subpst->globals_offset = 0;
4110   subpst->n_global_syms = 0;
4111   subpst->statics_offset = 0;
4112   subpst->n_static_syms = 0;
4113   subpst->symtab = NULL;
4114   subpst->read_symtab = pst->read_symtab;
4115   subpst->readin = 0;
4116
4117   /* No private part is necessary for include psymtabs.  This property
4118      can be used to differentiate between such include psymtabs and
4119      the regular ones.  */
4120   subpst->read_symtab_private = NULL;
4121 }
4122
4123 /* Read the Line Number Program data and extract the list of files
4124    included by the source file represented by PST.  Build an include
4125    partial symtab for each of these included files.  */
4126
4127 static void
4128 dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
4129                                struct die_info *die,
4130                                struct partial_symtab *pst)
4131 {
4132   struct line_header *lh = NULL;
4133   struct attribute *attr;
4134
4135   attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
4136   if (attr)
4137     lh = dwarf_decode_line_header (DW_UNSND (attr), cu);
4138   if (lh == NULL)
4139     return;  /* No linetable, so no includes.  */
4140
4141   /* NOTE: pst->dirname is DW_AT_comp_dir (if present).  */
4142   dwarf_decode_lines (lh, pst->dirname, cu, pst, 1);
4143
4144   free_line_header (lh);
4145 }
4146
4147 static hashval_t
4148 hash_signatured_type (const void *item)
4149 {
4150   const struct signatured_type *sig_type = item;
4151
4152   /* This drops the top 32 bits of the signature, but is ok for a hash.  */
4153   return sig_type->signature;
4154 }
4155
4156 static int
4157 eq_signatured_type (const void *item_lhs, const void *item_rhs)
4158 {
4159   const struct signatured_type *lhs = item_lhs;
4160   const struct signatured_type *rhs = item_rhs;
4161
4162   return lhs->signature == rhs->signature;
4163 }
4164
4165 /* Allocate a hash table for signatured types.  */
4166
4167 static htab_t
4168 allocate_signatured_type_table (struct objfile *objfile)
4169 {
4170   return htab_create_alloc_ex (41,
4171                                hash_signatured_type,
4172                                eq_signatured_type,
4173                                NULL,
4174                                &objfile->objfile_obstack,
4175                                hashtab_obstack_allocate,
4176                                dummy_obstack_deallocate);
4177 }
4178
4179 /* A helper function to add a signatured type CU to a table.  */
4180
4181 static int
4182 add_signatured_type_cu_to_table (void **slot, void *datum)
4183 {
4184   struct signatured_type *sigt = *slot;
4185   struct signatured_type ***datap = datum;
4186
4187   **datap = sigt;
4188   ++*datap;
4189
4190   return 1;
4191 }
4192
4193 /* Create the hash table of all entries in the .debug_types section.
4194    DWO_FILE is a pointer to the DWO file for .debug_types.dwo,
4195    NULL otherwise.
4196    Note: This function processes DWO files only, not DWP files.
4197    The result is a pointer to the hash table or NULL if there are
4198    no types.  */
4199
4200 static htab_t
4201 create_debug_types_hash_table (struct dwo_file *dwo_file,
4202                                VEC (dwarf2_section_info_def) *types)
4203 {
4204   struct objfile *objfile = dwarf2_per_objfile->objfile;
4205   htab_t types_htab = NULL;
4206   int ix;
4207   struct dwarf2_section_info *section;
4208   struct dwarf2_section_info *abbrev_section;
4209
4210   if (VEC_empty (dwarf2_section_info_def, types))
4211     return NULL;
4212
4213   abbrev_section = (dwo_file != NULL
4214                     ? &dwo_file->sections.abbrev
4215                     : &dwarf2_per_objfile->abbrev);
4216
4217   if (dwarf2_read_debug)
4218     fprintf_unfiltered (gdb_stdlog, "Reading .debug_types%s for %s:\n",
4219                         dwo_file ? ".dwo" : "",
4220                         bfd_get_filename (abbrev_section->asection->owner));
4221
4222   for (ix = 0;
4223        VEC_iterate (dwarf2_section_info_def, types, ix, section);
4224        ++ix)
4225     {
4226       bfd *abfd;
4227       gdb_byte *info_ptr, *end_ptr;
4228       struct dwarf2_section_info *abbrev_section;
4229
4230       dwarf2_read_section (objfile, section);
4231       info_ptr = section->buffer;
4232
4233       if (info_ptr == NULL)
4234         continue;
4235
4236       /* We can't set abfd until now because the section may be empty or
4237          not present, in which case section->asection will be NULL.  */
4238       abfd = section->asection->owner;
4239
4240       if (dwo_file)
4241         abbrev_section = &dwo_file->sections.abbrev;
4242       else
4243         abbrev_section = &dwarf2_per_objfile->abbrev;
4244
4245       if (types_htab == NULL)
4246         {
4247           if (dwo_file)
4248             types_htab = allocate_dwo_unit_table (objfile);
4249           else
4250             types_htab = allocate_signatured_type_table (objfile);
4251         }
4252
4253       /* We don't use init_cutu_and_read_dies_simple, or some such, here
4254          because we don't need to read any dies: the signature is in the
4255          header.  */
4256
4257       end_ptr = info_ptr + section->size;
4258       while (info_ptr < end_ptr)
4259         {
4260           sect_offset offset;
4261           cu_offset type_offset_in_tu;
4262           ULONGEST signature;
4263           struct signatured_type *sig_type;
4264           struct dwo_unit *dwo_tu;
4265           void **slot;
4266           gdb_byte *ptr = info_ptr;
4267           struct comp_unit_head header;
4268           unsigned int length;
4269
4270           offset.sect_off = ptr - section->buffer;
4271
4272           /* We need to read the type's signature in order to build the hash
4273              table, but we don't need anything else just yet.  */
4274
4275           ptr = read_and_check_type_unit_head (&header, section,
4276                                                abbrev_section, ptr,
4277                                                &signature, &type_offset_in_tu);
4278
4279           length = get_cu_length (&header);
4280
4281           /* Skip dummy type units.  */
4282           if (ptr >= info_ptr + length
4283               || peek_abbrev_code (abfd, ptr) == 0)
4284             {
4285               info_ptr += length;
4286               continue;
4287             }
4288
4289           if (dwo_file)
4290             {
4291               sig_type = NULL;
4292               dwo_tu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4293                                        struct dwo_unit);
4294               dwo_tu->dwo_file = dwo_file;
4295               dwo_tu->signature = signature;
4296               dwo_tu->type_offset_in_tu = type_offset_in_tu;
4297               dwo_tu->section = section;
4298               dwo_tu->offset = offset;
4299               dwo_tu->length = length;
4300             }
4301           else
4302             {
4303               /* N.B.: type_offset is not usable if this type uses a DWO file.
4304                  The real type_offset is in the DWO file.  */
4305               dwo_tu = NULL;
4306               sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4307                                          struct signatured_type);
4308               sig_type->signature = signature;
4309               sig_type->type_offset_in_tu = type_offset_in_tu;
4310               sig_type->per_cu.objfile = objfile;
4311               sig_type->per_cu.is_debug_types = 1;
4312               sig_type->per_cu.section = section;
4313               sig_type->per_cu.offset = offset;
4314               sig_type->per_cu.length = length;
4315             }
4316
4317           slot = htab_find_slot (types_htab,
4318                                  dwo_file ? (void*) dwo_tu : (void *) sig_type,
4319                                  INSERT);
4320           gdb_assert (slot != NULL);
4321           if (*slot != NULL)
4322             {
4323               sect_offset dup_offset;
4324
4325               if (dwo_file)
4326                 {
4327                   const struct dwo_unit *dup_tu = *slot;
4328
4329                   dup_offset = dup_tu->offset;
4330                 }
4331               else
4332                 {
4333                   const struct signatured_type *dup_tu = *slot;
4334
4335                   dup_offset = dup_tu->per_cu.offset;
4336                 }
4337
4338               complaint (&symfile_complaints,
4339                          _("debug type entry at offset 0x%x is duplicate to the "
4340                            "entry at offset 0x%x, signature 0x%s"),
4341                          offset.sect_off, dup_offset.sect_off,
4342                          phex (signature, sizeof (signature)));
4343             }
4344           *slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
4345
4346           if (dwarf2_read_debug)
4347             fprintf_unfiltered (gdb_stdlog, "  offset 0x%x, signature 0x%s\n",
4348                                 offset.sect_off,
4349                                 phex (signature, sizeof (signature)));
4350
4351           info_ptr += length;
4352         }
4353     }
4354
4355   return types_htab;
4356 }
4357
4358 /* Create the hash table of all entries in the .debug_types section,
4359    and initialize all_type_units.
4360    The result is zero if there is an error (e.g. missing .debug_types section),
4361    otherwise non-zero.  */
4362
4363 static int
4364 create_all_type_units (struct objfile *objfile)
4365 {
4366   htab_t types_htab;
4367   struct signatured_type **iter;
4368
4369   types_htab = create_debug_types_hash_table (NULL, dwarf2_per_objfile->types);
4370   if (types_htab == NULL)
4371     {
4372       dwarf2_per_objfile->signatured_types = NULL;
4373       return 0;
4374     }
4375
4376   dwarf2_per_objfile->signatured_types = types_htab;
4377
4378   dwarf2_per_objfile->n_type_units = htab_elements (types_htab);
4379   dwarf2_per_objfile->all_type_units
4380     = obstack_alloc (&objfile->objfile_obstack,
4381                      dwarf2_per_objfile->n_type_units
4382                      * sizeof (struct signatured_type *));
4383   iter = &dwarf2_per_objfile->all_type_units[0];
4384   htab_traverse_noresize (types_htab, add_signatured_type_cu_to_table, &iter);
4385   gdb_assert (iter - &dwarf2_per_objfile->all_type_units[0]
4386               == dwarf2_per_objfile->n_type_units);
4387
4388   return 1;
4389 }
4390
4391 /* Lookup a signature based type for DW_FORM_ref_sig8.
4392    Returns NULL if signature SIG is not present in the table.  */
4393
4394 static struct signatured_type *
4395 lookup_signatured_type (ULONGEST sig)
4396 {
4397   struct signatured_type find_entry, *entry;
4398
4399   if (dwarf2_per_objfile->signatured_types == NULL)
4400     {
4401       complaint (&symfile_complaints,
4402                  _("missing `.debug_types' section for DW_FORM_ref_sig8 die"));
4403       return NULL;
4404     }
4405
4406   find_entry.signature = sig;
4407   entry = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
4408   return entry;
4409 }
4410 \f
4411 /* Low level DIE reading support.  */
4412
4413 /* Initialize a die_reader_specs struct from a dwarf2_cu struct.  */
4414
4415 static void
4416 init_cu_die_reader (struct die_reader_specs *reader,
4417                     struct dwarf2_cu *cu,
4418                     struct dwarf2_section_info *section,
4419                     struct dwo_file *dwo_file)
4420 {
4421   gdb_assert (section->readin && section->buffer != NULL);
4422   reader->abfd = section->asection->owner;
4423   reader->cu = cu;
4424   reader->dwo_file = dwo_file;
4425   reader->die_section = section;
4426   reader->buffer = section->buffer;
4427   reader->buffer_end = section->buffer + section->size;
4428 }
4429
4430 /* Initialize a CU (or TU) and read its DIEs.
4431    If the CU defers to a DWO file, read the DWO file as well.
4432
4433    ABBREV_TABLE, if non-NULL, is the abbreviation table to use.
4434    Otherwise the table specified in the comp unit header is read in and used.
4435    This is an optimization for when we already have the abbrev table.
4436
4437    If USE_EXISTING_CU is non-zero, and THIS_CU->cu is non-NULL, then use it.
4438    Otherwise, a new CU is allocated with xmalloc.
4439
4440    If KEEP is non-zero, then if we allocated a dwarf2_cu we add it to
4441    read_in_chain.  Otherwise the dwarf2_cu data is freed at the end.
4442
4443    WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
4444    linker) then DIE_READER_FUNC will not get called.  */
4445
4446 static void
4447 init_cutu_and_read_dies (struct dwarf2_per_cu_data *this_cu,
4448                          struct abbrev_table *abbrev_table,
4449                          int use_existing_cu, int keep,
4450                          die_reader_func_ftype *die_reader_func,
4451                          void *data)
4452 {
4453   struct objfile *objfile = dwarf2_per_objfile->objfile;
4454   struct dwarf2_section_info *section = this_cu->section;
4455   bfd *abfd = section->asection->owner;
4456   struct dwarf2_cu *cu;
4457   gdb_byte *begin_info_ptr, *info_ptr;
4458   struct die_reader_specs reader;
4459   struct die_info *comp_unit_die;
4460   int has_children;
4461   struct attribute *attr;
4462   struct cleanup *cleanups, *free_cu_cleanup = NULL;
4463   struct signatured_type *sig_type = NULL;
4464   struct dwarf2_section_info *abbrev_section;
4465   /* Non-zero if CU currently points to a DWO file and we need to
4466      reread it.  When this happens we need to reread the skeleton die
4467      before we can reread the DWO file.  */
4468   int rereading_dwo_cu = 0;
4469
4470   if (dwarf2_die_debug)
4471     fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset 0x%x\n",
4472                         this_cu->is_debug_types ? "type" : "comp",
4473                         this_cu->offset.sect_off);
4474
4475   if (use_existing_cu)
4476     gdb_assert (keep);
4477
4478   cleanups = make_cleanup (null_cleanup, NULL);
4479
4480   /* This is cheap if the section is already read in.  */
4481   dwarf2_read_section (objfile, section);
4482
4483   begin_info_ptr = info_ptr = section->buffer + this_cu->offset.sect_off;
4484
4485   abbrev_section = get_abbrev_section_for_cu (this_cu);
4486
4487   if (use_existing_cu && this_cu->cu != NULL)
4488     {
4489       cu = this_cu->cu;
4490
4491       /* If this CU is from a DWO file we need to start over, we need to
4492          refetch the attributes from the skeleton CU.
4493          This could be optimized by retrieving those attributes from when we
4494          were here the first time: the previous comp_unit_die was stored in
4495          comp_unit_obstack.  But there's no data yet that we need this
4496          optimization.  */
4497       if (cu->dwo_unit != NULL)
4498         rereading_dwo_cu = 1;
4499     }
4500   else
4501     {
4502       /* If !use_existing_cu, this_cu->cu must be NULL.  */
4503       gdb_assert (this_cu->cu == NULL);
4504
4505       cu = xmalloc (sizeof (*cu));
4506       init_one_comp_unit (cu, this_cu);
4507
4508       /* If an error occurs while loading, release our storage.  */
4509       free_cu_cleanup = make_cleanup (free_heap_comp_unit, cu);
4510     }
4511
4512   if (cu->header.first_die_offset.cu_off != 0 && ! rereading_dwo_cu)
4513     {
4514       /* We already have the header, there's no need to read it in again.  */
4515       info_ptr += cu->header.first_die_offset.cu_off;
4516     }
4517   else
4518     {
4519       if (this_cu->is_debug_types)
4520         {
4521           ULONGEST signature;
4522           cu_offset type_offset_in_tu;
4523
4524           info_ptr = read_and_check_type_unit_head (&cu->header, section,
4525                                                     abbrev_section, info_ptr,
4526                                                     &signature,
4527                                                     &type_offset_in_tu);
4528
4529           /* Since per_cu is the first member of struct signatured_type,
4530              we can go from a pointer to one to a pointer to the other.  */
4531           sig_type = (struct signatured_type *) this_cu;
4532           gdb_assert (sig_type->signature == signature);
4533           gdb_assert (sig_type->type_offset_in_tu.cu_off
4534                       == type_offset_in_tu.cu_off);
4535           gdb_assert (this_cu->offset.sect_off == cu->header.offset.sect_off);
4536
4537           /* LENGTH has not been set yet for type units if we're
4538              using .gdb_index.  */
4539           this_cu->length = get_cu_length (&cu->header);
4540
4541           /* Establish the type offset that can be used to lookup the type.  */
4542           sig_type->type_offset_in_section.sect_off =
4543             this_cu->offset.sect_off + sig_type->type_offset_in_tu.cu_off;
4544         }
4545       else
4546         {
4547           info_ptr = read_and_check_comp_unit_head (&cu->header, section,
4548                                                     abbrev_section,
4549                                                     info_ptr, 0);
4550
4551           gdb_assert (this_cu->offset.sect_off == cu->header.offset.sect_off);
4552           gdb_assert (this_cu->length == get_cu_length (&cu->header));
4553         }
4554     }
4555
4556   /* Skip dummy compilation units.  */
4557   if (info_ptr >= begin_info_ptr + this_cu->length
4558       || peek_abbrev_code (abfd, info_ptr) == 0)
4559     {
4560       do_cleanups (cleanups);
4561       return;
4562     }
4563
4564   /* If we don't have them yet, read the abbrevs for this compilation unit.
4565      And if we need to read them now, make sure they're freed when we're
4566      done.  Note that it's important that if the CU had an abbrev table
4567      on entry we don't free it when we're done: Somewhere up the call stack
4568      it may be in use.  */
4569   if (abbrev_table != NULL)
4570     {
4571       gdb_assert (cu->abbrev_table == NULL);
4572       gdb_assert (cu->header.abbrev_offset.sect_off
4573                   == abbrev_table->offset.sect_off);
4574       cu->abbrev_table = abbrev_table;
4575     }
4576   else if (cu->abbrev_table == NULL)
4577     {
4578       dwarf2_read_abbrevs (cu, abbrev_section);
4579       make_cleanup (dwarf2_free_abbrev_table, cu);
4580     }
4581   else if (rereading_dwo_cu)
4582     {
4583       dwarf2_free_abbrev_table (cu);
4584       dwarf2_read_abbrevs (cu, abbrev_section);
4585     }
4586
4587   /* Read the top level CU/TU die.  */
4588   init_cu_die_reader (&reader, cu, section, NULL);
4589   info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
4590
4591   /* If we have a DWO stub, process it and then read in the DWO file.
4592      Note that if USE_EXISTING_OK != 0, and THIS_CU->cu already contains
4593      a DWO CU, that this test will fail.  */
4594   attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
4595   if (attr)
4596     {
4597       const char *dwo_name = DW_STRING (attr);
4598       const char *comp_dir_string;
4599       struct dwo_unit *dwo_unit;
4600       ULONGEST signature; /* Or dwo_id.  */
4601       struct attribute *comp_dir, *stmt_list, *low_pc, *high_pc, *ranges;
4602       int i,num_extra_attrs;
4603       struct dwarf2_section_info *dwo_abbrev_section;
4604
4605       if (has_children)
4606         error (_("Dwarf Error: compilation unit with DW_AT_GNU_dwo_name"
4607                  " has children (offset 0x%x) [in module %s]"),
4608                this_cu->offset.sect_off, bfd_get_filename (abfd));
4609
4610       /* These attributes aren't processed until later:
4611          DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
4612          However, the attribute is found in the stub which we won't have later.
4613          In order to not impose this complication on the rest of the code,
4614          we read them here and copy them to the DWO CU/TU die.  */
4615
4616       /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
4617          DWO file.  */
4618       stmt_list = NULL;
4619       if (! this_cu->is_debug_types)
4620         stmt_list = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
4621       low_pc = dwarf2_attr (comp_unit_die, DW_AT_low_pc, cu);
4622       high_pc = dwarf2_attr (comp_unit_die, DW_AT_high_pc, cu);
4623       ranges = dwarf2_attr (comp_unit_die, DW_AT_ranges, cu);
4624       comp_dir = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, cu);
4625
4626       /* There should be a DW_AT_addr_base attribute here (if needed).
4627          We need the value before we can process DW_FORM_GNU_addr_index.  */
4628       cu->addr_base = 0;
4629       attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_addr_base, cu);
4630       if (attr)
4631         cu->addr_base = DW_UNSND (attr);
4632
4633       /* There should be a DW_AT_ranges_base attribute here (if needed).
4634          We need the value before we can process DW_AT_ranges.  */
4635       cu->ranges_base = 0;
4636       attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_ranges_base, cu);
4637       if (attr)
4638         cu->ranges_base = DW_UNSND (attr);
4639
4640       if (this_cu->is_debug_types)
4641         {
4642           gdb_assert (sig_type != NULL);
4643           signature = sig_type->signature;
4644         }
4645       else
4646         {
4647           attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
4648           if (! attr)
4649             error (_("Dwarf Error: missing dwo_id [in module %s]"),
4650                    dwo_name);
4651           signature = DW_UNSND (attr);
4652         }
4653
4654       /* We may need the comp_dir in order to find the DWO file.  */
4655       comp_dir_string = NULL;
4656       if (comp_dir)
4657         comp_dir_string = DW_STRING (comp_dir);
4658
4659       if (this_cu->is_debug_types)
4660         dwo_unit = lookup_dwo_type_unit (sig_type, dwo_name, comp_dir_string);
4661       else
4662         dwo_unit = lookup_dwo_comp_unit (this_cu, dwo_name, comp_dir_string,
4663                                          signature);
4664
4665       if (dwo_unit == NULL)
4666         {
4667           error (_("Dwarf Error: CU at offset 0x%x references unknown DWO"
4668                    " with ID %s [in module %s]"),
4669                  this_cu->offset.sect_off,
4670                  phex (signature, sizeof (signature)),
4671                  objfile->name);
4672         }
4673
4674       /* Set up for reading the DWO CU/TU.  */
4675       cu->dwo_unit = dwo_unit;
4676       section = dwo_unit->section;
4677       dwarf2_read_section (objfile, section);
4678       begin_info_ptr = info_ptr = section->buffer + dwo_unit->offset.sect_off;
4679       dwo_abbrev_section = &dwo_unit->dwo_file->sections.abbrev;
4680       init_cu_die_reader (&reader, cu, section, dwo_unit->dwo_file);
4681
4682       if (this_cu->is_debug_types)
4683         {
4684           ULONGEST signature;
4685           cu_offset type_offset_in_tu;
4686
4687           info_ptr = read_and_check_type_unit_head (&cu->header, section,
4688                                                     dwo_abbrev_section,
4689                                                     info_ptr,
4690                                                     &signature,
4691                                                     &type_offset_in_tu);
4692           gdb_assert (sig_type->signature == signature);
4693           gdb_assert (dwo_unit->offset.sect_off == cu->header.offset.sect_off);
4694           /* For DWOs coming from DWP files, we don't know the CU length
4695              nor the type's offset in the TU until now.  */
4696           dwo_unit->length = get_cu_length (&cu->header);
4697           dwo_unit->type_offset_in_tu = type_offset_in_tu;
4698
4699           /* Establish the type offset that can be used to lookup the type.
4700              For DWO files, we don't know it until now.  */
4701           sig_type->type_offset_in_section.sect_off =
4702             dwo_unit->offset.sect_off + dwo_unit->type_offset_in_tu.cu_off;
4703         }
4704       else
4705         {
4706           info_ptr = read_and_check_comp_unit_head (&cu->header, section,
4707                                                     dwo_abbrev_section,
4708                                                     info_ptr, 0);
4709           gdb_assert (dwo_unit->offset.sect_off == cu->header.offset.sect_off);
4710           /* For DWOs coming from DWP files, we don't know the CU length
4711              until now.  */
4712           dwo_unit->length = get_cu_length (&cu->header);
4713         }
4714
4715       /* Discard the original CU's abbrev table, and read the DWO's.  */
4716       if (abbrev_table == NULL)
4717         {
4718           dwarf2_free_abbrev_table (cu);
4719           dwarf2_read_abbrevs (cu, dwo_abbrev_section);
4720         }
4721       else
4722         {
4723           dwarf2_read_abbrevs (cu, dwo_abbrev_section);
4724           make_cleanup (dwarf2_free_abbrev_table, cu);
4725         }
4726
4727       /* Read in the die, but leave space to copy over the attributes
4728          from the stub.  This has the benefit of simplifying the rest of
4729          the code - all the real work is done here.  */
4730       num_extra_attrs = ((stmt_list != NULL)
4731                          + (low_pc != NULL)
4732                          + (high_pc != NULL)
4733                          + (ranges != NULL)
4734                          + (comp_dir != NULL));
4735       info_ptr = read_full_die_1 (&reader, &comp_unit_die, info_ptr,
4736                                   &has_children, num_extra_attrs);
4737
4738       /* Copy over the attributes from the stub to the DWO die.  */
4739       i = comp_unit_die->num_attrs;
4740       if (stmt_list != NULL)
4741         comp_unit_die->attrs[i++] = *stmt_list;
4742       if (low_pc != NULL)
4743         comp_unit_die->attrs[i++] = *low_pc;
4744       if (high_pc != NULL)
4745         comp_unit_die->attrs[i++] = *high_pc;
4746       if (ranges != NULL)
4747         comp_unit_die->attrs[i++] = *ranges;
4748       if (comp_dir != NULL)
4749         comp_unit_die->attrs[i++] = *comp_dir;
4750       comp_unit_die->num_attrs += num_extra_attrs;
4751
4752       /* Skip dummy compilation units.  */
4753       if (info_ptr >= begin_info_ptr + dwo_unit->length
4754           || peek_abbrev_code (abfd, info_ptr) == 0)
4755         {
4756           do_cleanups (cleanups);
4757           return;
4758         }
4759     }
4760
4761   die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
4762
4763   if (free_cu_cleanup != NULL)
4764     {
4765       if (keep)
4766         {
4767           /* We've successfully allocated this compilation unit.  Let our
4768              caller clean it up when finished with it.  */
4769           discard_cleanups (free_cu_cleanup);
4770
4771           /* We can only discard free_cu_cleanup and all subsequent cleanups.
4772              So we have to manually free the abbrev table.  */
4773           dwarf2_free_abbrev_table (cu);
4774
4775           /* Link this CU into read_in_chain.  */
4776           this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
4777           dwarf2_per_objfile->read_in_chain = this_cu;
4778         }
4779       else
4780         do_cleanups (free_cu_cleanup);
4781     }
4782
4783   do_cleanups (cleanups);
4784 }
4785
4786 /* Read CU/TU THIS_CU in section SECTION,
4787    but do not follow DW_AT_GNU_dwo_name if present.
4788    DWOP_FILE, if non-NULL, is the DWO/DWP file to read (the caller is assumed
4789    to have already done the lookup to find the DWO/DWP file).
4790
4791    The caller is required to fill in THIS_CU->section, THIS_CU->offset, and
4792    THIS_CU->is_debug_types, but nothing else.
4793
4794    We fill in THIS_CU->length.
4795
4796    WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
4797    linker) then DIE_READER_FUNC will not get called.
4798
4799    THIS_CU->cu is always freed when done.
4800    This is done in order to not leave THIS_CU->cu in a state where we have
4801    to care whether it refers to the "main" CU or the DWO CU.  */
4802
4803 static void
4804 init_cutu_and_read_dies_no_follow (struct dwarf2_per_cu_data *this_cu,
4805                                    struct dwarf2_section_info *abbrev_section,
4806                                    struct dwo_file *dwo_file,
4807                                    die_reader_func_ftype *die_reader_func,
4808                                    void *data)
4809 {
4810   struct objfile *objfile = dwarf2_per_objfile->objfile;
4811   struct dwarf2_section_info *section = this_cu->section;
4812   bfd *abfd = section->asection->owner;
4813   struct dwarf2_cu cu;
4814   gdb_byte *begin_info_ptr, *info_ptr;
4815   struct die_reader_specs reader;
4816   struct cleanup *cleanups;
4817   struct die_info *comp_unit_die;
4818   int has_children;
4819
4820   if (dwarf2_die_debug)
4821     fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset 0x%x\n",
4822                         this_cu->is_debug_types ? "type" : "comp",
4823                         this_cu->offset.sect_off);
4824
4825   gdb_assert (this_cu->cu == NULL);
4826
4827   /* This is cheap if the section is already read in.  */
4828   dwarf2_read_section (objfile, section);
4829
4830   init_one_comp_unit (&cu, this_cu);
4831
4832   cleanups = make_cleanup (free_stack_comp_unit, &cu);
4833
4834   begin_info_ptr = info_ptr = section->buffer + this_cu->offset.sect_off;
4835   info_ptr = read_and_check_comp_unit_head (&cu.header, section,
4836                                             abbrev_section, info_ptr,
4837                                             this_cu->is_debug_types);
4838
4839   this_cu->length = get_cu_length (&cu.header);
4840
4841   /* Skip dummy compilation units.  */
4842   if (info_ptr >= begin_info_ptr + this_cu->length
4843       || peek_abbrev_code (abfd, info_ptr) == 0)
4844     {
4845       do_cleanups (cleanups);
4846       return;
4847     }
4848
4849   dwarf2_read_abbrevs (&cu, abbrev_section);
4850   make_cleanup (dwarf2_free_abbrev_table, &cu);
4851
4852   init_cu_die_reader (&reader, &cu, section, dwo_file);
4853   info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
4854
4855   die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
4856
4857   do_cleanups (cleanups);
4858 }
4859
4860 /* Read a CU/TU, except that this does not look for DW_AT_GNU_dwo_name and
4861    does not lookup the specified DWO file.
4862    This cannot be used to read DWO files.
4863
4864    THIS_CU->cu is always freed when done.
4865    This is done in order to not leave THIS_CU->cu in a state where we have
4866    to care whether it refers to the "main" CU or the DWO CU.
4867    We can revisit this if the data shows there's a performance issue.  */
4868
4869 static void
4870 init_cutu_and_read_dies_simple (struct dwarf2_per_cu_data *this_cu,
4871                                 die_reader_func_ftype *die_reader_func,
4872                                 void *data)
4873 {
4874   init_cutu_and_read_dies_no_follow (this_cu,
4875                                      get_abbrev_section_for_cu (this_cu),
4876                                      NULL,
4877                                      die_reader_func, data);
4878 }
4879 \f
4880 /* Type Unit Groups.
4881
4882    Type Unit Groups are a way to collapse the set of all TUs (type units) into
4883    a more manageable set.  The grouping is done by DW_AT_stmt_list entry
4884    so that all types coming from the same compilation (.o file) are grouped
4885    together.  A future step could be to put the types in the same symtab as
4886    the CU the types ultimately came from.  */
4887
4888 static hashval_t
4889 hash_type_unit_group (const void *item)
4890 {
4891   const struct type_unit_group *tu_group = item;
4892
4893   return hash_stmt_list_entry (&tu_group->hash);
4894 }
4895
4896 static int
4897 eq_type_unit_group (const void *item_lhs, const void *item_rhs)
4898 {
4899   const struct type_unit_group *lhs = item_lhs;
4900   const struct type_unit_group *rhs = item_rhs;
4901
4902   return eq_stmt_list_entry (&lhs->hash, &rhs->hash);
4903 }
4904
4905 /* Allocate a hash table for type unit groups.  */
4906
4907 static htab_t
4908 allocate_type_unit_groups_table (void)
4909 {
4910   return htab_create_alloc_ex (3,
4911                                hash_type_unit_group,
4912                                eq_type_unit_group,
4913                                NULL,
4914                                &dwarf2_per_objfile->objfile->objfile_obstack,
4915                                hashtab_obstack_allocate,
4916                                dummy_obstack_deallocate);
4917 }
4918
4919 /* Type units that don't have DW_AT_stmt_list are grouped into their own
4920    partial symtabs.  We combine several TUs per psymtab to not let the size
4921    of any one psymtab grow too big.  */
4922 #define NO_STMT_LIST_TYPE_UNIT_PSYMTAB (1 << 31)
4923 #define NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE 10
4924
4925 /* Helper routine for get_type_unit_group.
4926    Create the type_unit_group object used to hold one or more TUs.  */
4927
4928 static struct type_unit_group *
4929 create_type_unit_group (struct dwarf2_cu *cu, sect_offset line_offset_struct)
4930 {
4931   struct objfile *objfile = dwarf2_per_objfile->objfile;
4932   struct dwarf2_per_cu_data *per_cu;
4933   struct type_unit_group *tu_group;
4934
4935   tu_group = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4936                              struct type_unit_group);
4937   per_cu = &tu_group->per_cu;
4938   per_cu->objfile = objfile;
4939   per_cu->is_debug_types = 1;
4940   per_cu->type_unit_group = tu_group;
4941
4942   if (dwarf2_per_objfile->using_index)
4943     {
4944       per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4945                                         struct dwarf2_per_cu_quick_data);
4946       tu_group->t.first_tu = cu->per_cu;
4947     }
4948   else
4949     {
4950       unsigned int line_offset = line_offset_struct.sect_off;
4951       struct partial_symtab *pst;
4952       char *name;
4953
4954       /* Give the symtab a useful name for debug purposes.  */
4955       if ((line_offset & NO_STMT_LIST_TYPE_UNIT_PSYMTAB) != 0)
4956         name = xstrprintf ("<type_units_%d>",
4957                            (line_offset & ~NO_STMT_LIST_TYPE_UNIT_PSYMTAB));
4958       else
4959         name = xstrprintf ("<type_units_at_0x%x>", line_offset);
4960
4961       pst = create_partial_symtab (per_cu, name);
4962       pst->anonymous = 1;
4963
4964       xfree (name);
4965     }
4966
4967   tu_group->hash.dwo_unit = cu->dwo_unit;
4968   tu_group->hash.line_offset = line_offset_struct;
4969
4970   return tu_group;
4971 }
4972
4973 /* Look up the type_unit_group for type unit CU, and create it if necessary.
4974    STMT_LIST is a DW_AT_stmt_list attribute.  */
4975
4976 static struct type_unit_group *
4977 get_type_unit_group (struct dwarf2_cu *cu, struct attribute *stmt_list)
4978 {
4979   struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
4980   struct type_unit_group *tu_group;
4981   void **slot;
4982   unsigned int line_offset;
4983   struct type_unit_group type_unit_group_for_lookup;
4984
4985   if (dwarf2_per_objfile->type_unit_groups == NULL)
4986     {
4987       dwarf2_per_objfile->type_unit_groups =
4988         allocate_type_unit_groups_table ();
4989     }
4990
4991   /* Do we need to create a new group, or can we use an existing one?  */
4992
4993   if (stmt_list)
4994     {
4995       line_offset = DW_UNSND (stmt_list);
4996       ++tu_stats->nr_symtab_sharers;
4997     }
4998   else
4999     {
5000       /* Ugh, no stmt_list.  Rare, but we have to handle it.
5001          We can do various things here like create one group per TU or
5002          spread them over multiple groups to split up the expansion work.
5003          To avoid worst case scenarios (too many groups or too large groups)
5004          we, umm, group them in bunches.  */
5005       line_offset = (NO_STMT_LIST_TYPE_UNIT_PSYMTAB
5006                      | (tu_stats->nr_stmt_less_type_units
5007                         / NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE));
5008       ++tu_stats->nr_stmt_less_type_units;
5009     }
5010
5011   type_unit_group_for_lookup.hash.dwo_unit = cu->dwo_unit;
5012   type_unit_group_for_lookup.hash.line_offset.sect_off = line_offset;
5013   slot = htab_find_slot (dwarf2_per_objfile->type_unit_groups,
5014                          &type_unit_group_for_lookup, INSERT);
5015   if (*slot != NULL)
5016     {
5017       tu_group = *slot;
5018       gdb_assert (tu_group != NULL);
5019     }
5020   else
5021     {
5022       sect_offset line_offset_struct;
5023
5024       line_offset_struct.sect_off = line_offset;
5025       tu_group = create_type_unit_group (cu, line_offset_struct);
5026       *slot = tu_group;
5027       ++tu_stats->nr_symtabs;
5028     }
5029
5030   return tu_group;
5031 }
5032
5033 /* Struct used to sort TUs by their abbreviation table offset.  */
5034
5035 struct tu_abbrev_offset
5036 {
5037   struct signatured_type *sig_type;
5038   sect_offset abbrev_offset;
5039 };
5040
5041 /* Helper routine for build_type_unit_groups, passed to qsort.  */
5042
5043 static int
5044 sort_tu_by_abbrev_offset (const void *ap, const void *bp)
5045 {
5046   const struct tu_abbrev_offset * const *a = ap;
5047   const struct tu_abbrev_offset * const *b = bp;
5048   unsigned int aoff = (*a)->abbrev_offset.sect_off;
5049   unsigned int boff = (*b)->abbrev_offset.sect_off;
5050
5051   return (aoff > boff) - (aoff < boff);
5052 }
5053
5054 /* A helper function to add a type_unit_group to a table.  */
5055
5056 static int
5057 add_type_unit_group_to_table (void **slot, void *datum)
5058 {
5059   struct type_unit_group *tu_group = *slot;
5060   struct type_unit_group ***datap = datum;
5061
5062   **datap = tu_group;
5063   ++*datap;
5064
5065   return 1;
5066 }
5067
5068 /* Efficiently read all the type units, calling init_cutu_and_read_dies on
5069    each one passing FUNC,DATA.
5070
5071    The efficiency is because we sort TUs by the abbrev table they use and
5072    only read each abbrev table once.  In one program there are 200K TUs
5073    sharing 8K abbrev tables.
5074
5075    The main purpose of this function is to support building the
5076    dwarf2_per_objfile->type_unit_groups table.
5077    TUs typically share the DW_AT_stmt_list of the CU they came from, so we
5078    can collapse the search space by grouping them by stmt_list.
5079    The savings can be significant, in the same program from above the 200K TUs
5080    share 8K stmt_list tables.
5081
5082    FUNC is expected to call get_type_unit_group, which will create the
5083    struct type_unit_group if necessary and add it to
5084    dwarf2_per_objfile->type_unit_groups.  */
5085
5086 static void
5087 build_type_unit_groups (die_reader_func_ftype *func, void *data)
5088 {
5089   struct objfile *objfile = dwarf2_per_objfile->objfile;
5090   struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
5091   struct cleanup *cleanups;
5092   struct abbrev_table *abbrev_table;
5093   sect_offset abbrev_offset;
5094   struct tu_abbrev_offset *sorted_by_abbrev;
5095   struct type_unit_group **iter;
5096   int i;
5097
5098   /* It's up to the caller to not call us multiple times.  */
5099   gdb_assert (dwarf2_per_objfile->type_unit_groups == NULL);
5100
5101   if (dwarf2_per_objfile->n_type_units == 0)
5102     return;
5103
5104   /* TUs typically share abbrev tables, and there can be way more TUs than
5105      abbrev tables.  Sort by abbrev table to reduce the number of times we
5106      read each abbrev table in.
5107      Alternatives are to punt or to maintain a cache of abbrev tables.
5108      This is simpler and efficient enough for now.
5109
5110      Later we group TUs by their DW_AT_stmt_list value (as this defines the
5111      symtab to use).  Typically TUs with the same abbrev offset have the same
5112      stmt_list value too so in practice this should work well.
5113
5114      The basic algorithm here is:
5115
5116       sort TUs by abbrev table
5117       for each TU with same abbrev table:
5118         read abbrev table if first user
5119         read TU top level DIE
5120           [IWBN if DWO skeletons had DW_AT_stmt_list]
5121         call FUNC  */
5122
5123   if (dwarf2_read_debug)
5124     fprintf_unfiltered (gdb_stdlog, "Building type unit groups ...\n");
5125
5126   /* Sort in a separate table to maintain the order of all_type_units
5127      for .gdb_index: TU indices directly index all_type_units.  */
5128   sorted_by_abbrev = XNEWVEC (struct tu_abbrev_offset,
5129                               dwarf2_per_objfile->n_type_units);
5130   for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
5131     {
5132       struct signatured_type *sig_type = dwarf2_per_objfile->all_type_units[i];
5133
5134       sorted_by_abbrev[i].sig_type = sig_type;
5135       sorted_by_abbrev[i].abbrev_offset =
5136         read_abbrev_offset (sig_type->per_cu.section,
5137                             sig_type->per_cu.offset);
5138     }
5139   cleanups = make_cleanup (xfree, sorted_by_abbrev);
5140   qsort (sorted_by_abbrev, dwarf2_per_objfile->n_type_units,
5141          sizeof (struct tu_abbrev_offset), sort_tu_by_abbrev_offset);
5142
5143   /* Note: In the .gdb_index case, get_type_unit_group may have already been
5144      called any number of times, so we don't reset tu_stats here.  */
5145
5146   abbrev_offset.sect_off = ~(unsigned) 0;
5147   abbrev_table = NULL;
5148   make_cleanup (abbrev_table_free_cleanup, &abbrev_table);
5149
5150   for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
5151     {
5152       const struct tu_abbrev_offset *tu = &sorted_by_abbrev[i];
5153
5154       /* Switch to the next abbrev table if necessary.  */
5155       if (abbrev_table == NULL
5156           || tu->abbrev_offset.sect_off != abbrev_offset.sect_off)
5157         {
5158           if (abbrev_table != NULL)
5159             {
5160               abbrev_table_free (abbrev_table);
5161               /* Reset to NULL in case abbrev_table_read_table throws
5162                  an error: abbrev_table_free_cleanup will get called.  */
5163               abbrev_table = NULL;
5164             }
5165           abbrev_offset = tu->abbrev_offset;
5166           abbrev_table =
5167             abbrev_table_read_table (&dwarf2_per_objfile->abbrev,
5168                                      abbrev_offset);
5169           ++tu_stats->nr_uniq_abbrev_tables;
5170         }
5171
5172       init_cutu_and_read_dies (&tu->sig_type->per_cu, abbrev_table, 0, 0,
5173                                func, data);
5174     }
5175
5176   /* Create a vector of pointers to primary type units to make it easy to
5177      iterate over them and CUs.  See dw2_get_primary_cu.  */
5178   dwarf2_per_objfile->n_type_unit_groups =
5179     htab_elements (dwarf2_per_objfile->type_unit_groups);
5180   dwarf2_per_objfile->all_type_unit_groups =
5181     obstack_alloc (&objfile->objfile_obstack,
5182                    dwarf2_per_objfile->n_type_unit_groups
5183                    * sizeof (struct type_unit_group *));
5184   iter = &dwarf2_per_objfile->all_type_unit_groups[0];
5185   htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
5186                           add_type_unit_group_to_table, &iter);
5187   gdb_assert (iter - &dwarf2_per_objfile->all_type_unit_groups[0]
5188               == dwarf2_per_objfile->n_type_unit_groups);
5189
5190   do_cleanups (cleanups);
5191
5192   if (dwarf2_read_debug)
5193     {
5194       fprintf_unfiltered (gdb_stdlog, "Done building type unit groups:\n");
5195       fprintf_unfiltered (gdb_stdlog, "  %d TUs\n",
5196                           dwarf2_per_objfile->n_type_units);
5197       fprintf_unfiltered (gdb_stdlog, "  %d uniq abbrev tables\n",
5198                           tu_stats->nr_uniq_abbrev_tables);
5199       fprintf_unfiltered (gdb_stdlog, "  %d symtabs from stmt_list entries\n",
5200                           tu_stats->nr_symtabs);
5201       fprintf_unfiltered (gdb_stdlog, "  %d symtab sharers\n",
5202                           tu_stats->nr_symtab_sharers);
5203       fprintf_unfiltered (gdb_stdlog, "  %d type units without a stmt_list\n",
5204                           tu_stats->nr_stmt_less_type_units);
5205     }
5206 }
5207 \f
5208 /* Partial symbol tables.  */
5209
5210 /* Create a psymtab named NAME and assign it to PER_CU.
5211
5212    The caller must fill in the following details:
5213    dirname, textlow, texthigh.  */
5214
5215 static struct partial_symtab *
5216 create_partial_symtab (struct dwarf2_per_cu_data *per_cu, const char *name)
5217 {
5218   struct objfile *objfile = per_cu->objfile;
5219   struct partial_symtab *pst;
5220
5221   pst = start_psymtab_common (objfile, objfile->section_offsets,
5222                               name, 0,
5223                               objfile->global_psymbols.next,
5224                               objfile->static_psymbols.next);
5225
5226   pst->psymtabs_addrmap_supported = 1;
5227
5228   /* This is the glue that links PST into GDB's symbol API.  */
5229   pst->read_symtab_private = per_cu;
5230   pst->read_symtab = dwarf2_read_symtab;
5231   per_cu->v.psymtab = pst;
5232
5233   return pst;
5234 }
5235
5236 /* die_reader_func for process_psymtab_comp_unit.  */
5237
5238 static void
5239 process_psymtab_comp_unit_reader (const struct die_reader_specs *reader,
5240                                   gdb_byte *info_ptr,
5241                                   struct die_info *comp_unit_die,
5242                                   int has_children,
5243                                   void *data)
5244 {
5245   struct dwarf2_cu *cu = reader->cu;
5246   struct objfile *objfile = cu->objfile;
5247   struct dwarf2_per_cu_data *per_cu = cu->per_cu;
5248   struct attribute *attr;
5249   CORE_ADDR baseaddr;
5250   CORE_ADDR best_lowpc = 0, best_highpc = 0;
5251   struct partial_symtab *pst;
5252   int has_pc_info;
5253   const char *filename;
5254   int *want_partial_unit_ptr = data;
5255
5256   if (comp_unit_die->tag == DW_TAG_partial_unit
5257       && (want_partial_unit_ptr == NULL
5258           || !*want_partial_unit_ptr))
5259     return;
5260
5261   gdb_assert (! per_cu->is_debug_types);
5262
5263   prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
5264
5265   cu->list_in_scope = &file_symbols;
5266
5267   /* Allocate a new partial symbol table structure.  */
5268   attr = dwarf2_attr (comp_unit_die, DW_AT_name, cu);
5269   if (attr == NULL || !DW_STRING (attr))
5270     filename = "";
5271   else
5272     filename = DW_STRING (attr);
5273
5274   pst = create_partial_symtab (per_cu, filename);
5275
5276   /* This must be done before calling dwarf2_build_include_psymtabs.  */
5277   attr = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, cu);
5278   if (attr != NULL)
5279     pst->dirname = DW_STRING (attr);
5280
5281   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5282
5283   dwarf2_find_base_address (comp_unit_die, cu);
5284
5285   /* Possibly set the default values of LOWPC and HIGHPC from
5286      `DW_AT_ranges'.  */
5287   has_pc_info = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
5288                                       &best_highpc, cu, pst);
5289   if (has_pc_info == 1 && best_lowpc < best_highpc)
5290     /* Store the contiguous range if it is not empty; it can be empty for
5291        CUs with no code.  */
5292     addrmap_set_empty (objfile->psymtabs_addrmap,
5293                        best_lowpc + baseaddr,
5294                        best_highpc + baseaddr - 1, pst);
5295
5296   /* Check if comp unit has_children.
5297      If so, read the rest of the partial symbols from this comp unit.
5298      If not, there's no more debug_info for this comp unit.  */
5299   if (has_children)
5300     {
5301       struct partial_die_info *first_die;
5302       CORE_ADDR lowpc, highpc;
5303
5304       lowpc = ((CORE_ADDR) -1);
5305       highpc = ((CORE_ADDR) 0);
5306
5307       first_die = load_partial_dies (reader, info_ptr, 1);
5308
5309       scan_partial_symbols (first_die, &lowpc, &highpc,
5310                             ! has_pc_info, cu);
5311
5312       /* If we didn't find a lowpc, set it to highpc to avoid
5313          complaints from `maint check'.  */
5314       if (lowpc == ((CORE_ADDR) -1))
5315         lowpc = highpc;
5316
5317       /* If the compilation unit didn't have an explicit address range,
5318          then use the information extracted from its child dies.  */
5319       if (! has_pc_info)
5320         {
5321           best_lowpc = lowpc;
5322           best_highpc = highpc;
5323         }
5324     }
5325   pst->textlow = best_lowpc + baseaddr;
5326   pst->texthigh = best_highpc + baseaddr;
5327
5328   pst->n_global_syms = objfile->global_psymbols.next -
5329     (objfile->global_psymbols.list + pst->globals_offset);
5330   pst->n_static_syms = objfile->static_psymbols.next -
5331     (objfile->static_psymbols.list + pst->statics_offset);
5332   sort_pst_symbols (objfile, pst);
5333
5334   if (!VEC_empty (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs))
5335     {
5336       int i;
5337       int len = VEC_length (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
5338       struct dwarf2_per_cu_data *iter;
5339
5340       /* Fill in 'dependencies' here; we fill in 'users' in a
5341          post-pass.  */
5342       pst->number_of_dependencies = len;
5343       pst->dependencies = obstack_alloc (&objfile->objfile_obstack,
5344                                          len * sizeof (struct symtab *));
5345       for (i = 0;
5346            VEC_iterate (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
5347                         i, iter);
5348            ++i)
5349         pst->dependencies[i] = iter->v.psymtab;
5350
5351       VEC_free (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
5352     }
5353
5354   /* Get the list of files included in the current compilation unit,
5355      and build a psymtab for each of them.  */
5356   dwarf2_build_include_psymtabs (cu, comp_unit_die, pst);
5357
5358   if (dwarf2_read_debug)
5359     {
5360       struct gdbarch *gdbarch = get_objfile_arch (objfile);
5361
5362       fprintf_unfiltered (gdb_stdlog,
5363                           "Psymtab for %s unit @0x%x: %s - %s"
5364                           ", %d global, %d static syms\n",
5365                           per_cu->is_debug_types ? "type" : "comp",
5366                           per_cu->offset.sect_off,
5367                           paddress (gdbarch, pst->textlow),
5368                           paddress (gdbarch, pst->texthigh),
5369                           pst->n_global_syms, pst->n_static_syms);
5370     }
5371 }
5372
5373 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
5374    Process compilation unit THIS_CU for a psymtab.  */
5375
5376 static void
5377 process_psymtab_comp_unit (struct dwarf2_per_cu_data *this_cu,
5378                            int want_partial_unit)
5379 {
5380   /* If this compilation unit was already read in, free the
5381      cached copy in order to read it in again.  This is
5382      necessary because we skipped some symbols when we first
5383      read in the compilation unit (see load_partial_dies).
5384      This problem could be avoided, but the benefit is unclear.  */
5385   if (this_cu->cu != NULL)
5386     free_one_cached_comp_unit (this_cu);
5387
5388   gdb_assert (! this_cu->is_debug_types);
5389   init_cutu_and_read_dies (this_cu, NULL, 0, 0,
5390                            process_psymtab_comp_unit_reader,
5391                            &want_partial_unit);
5392
5393   /* Age out any secondary CUs.  */
5394   age_cached_comp_units ();
5395 }
5396
5397 /* Reader function for build_type_psymtabs.  */
5398
5399 static void
5400 build_type_psymtabs_reader (const struct die_reader_specs *reader,
5401                             gdb_byte *info_ptr,
5402                             struct die_info *type_unit_die,
5403                             int has_children,
5404                             void *data)
5405 {
5406   struct objfile *objfile = dwarf2_per_objfile->objfile;
5407   struct dwarf2_cu *cu = reader->cu;
5408   struct dwarf2_per_cu_data *per_cu = cu->per_cu;
5409   struct type_unit_group *tu_group;
5410   struct attribute *attr;
5411   struct partial_die_info *first_die;
5412   CORE_ADDR lowpc, highpc;
5413   struct partial_symtab *pst;
5414
5415   gdb_assert (data == NULL);
5416
5417   if (! has_children)
5418     return;
5419
5420   attr = dwarf2_attr_no_follow (type_unit_die, DW_AT_stmt_list);
5421   tu_group = get_type_unit_group (cu, attr);
5422
5423   VEC_safe_push (dwarf2_per_cu_ptr, tu_group->t.tus, per_cu);
5424
5425   prepare_one_comp_unit (cu, type_unit_die, language_minimal);
5426   cu->list_in_scope = &file_symbols;
5427   pst = create_partial_symtab (per_cu, "");
5428   pst->anonymous = 1;
5429
5430   first_die = load_partial_dies (reader, info_ptr, 1);
5431
5432   lowpc = (CORE_ADDR) -1;
5433   highpc = (CORE_ADDR) 0;
5434   scan_partial_symbols (first_die, &lowpc, &highpc, 0, cu);
5435
5436   pst->n_global_syms = objfile->global_psymbols.next -
5437     (objfile->global_psymbols.list + pst->globals_offset);
5438   pst->n_static_syms = objfile->static_psymbols.next -
5439     (objfile->static_psymbols.list + pst->statics_offset);
5440   sort_pst_symbols (objfile, pst);
5441 }
5442
5443 /* Traversal function for build_type_psymtabs.  */
5444
5445 static int
5446 build_type_psymtab_dependencies (void **slot, void *info)
5447 {
5448   struct objfile *objfile = dwarf2_per_objfile->objfile;
5449   struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
5450   struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
5451   struct partial_symtab *pst = per_cu->v.psymtab;
5452   int len = VEC_length (dwarf2_per_cu_ptr, tu_group->t.tus);
5453   struct dwarf2_per_cu_data *iter;
5454   int i;
5455
5456   gdb_assert (len > 0);
5457
5458   pst->number_of_dependencies = len;
5459   pst->dependencies = obstack_alloc (&objfile->objfile_obstack,
5460                                      len * sizeof (struct psymtab *));
5461   for (i = 0;
5462        VEC_iterate (dwarf2_per_cu_ptr, tu_group->t.tus, i, iter);
5463        ++i)
5464     {
5465       pst->dependencies[i] = iter->v.psymtab;
5466       iter->type_unit_group = tu_group;
5467     }
5468
5469   VEC_free (dwarf2_per_cu_ptr, tu_group->t.tus);
5470
5471   return 1;
5472 }
5473
5474 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
5475    Build partial symbol tables for the .debug_types comp-units.  */
5476
5477 static void
5478 build_type_psymtabs (struct objfile *objfile)
5479 {
5480   if (! create_all_type_units (objfile))
5481     return;
5482
5483   build_type_unit_groups (build_type_psymtabs_reader, NULL);
5484
5485   /* Now that all TUs have been processed we can fill in the dependencies.  */
5486   htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
5487                           build_type_psymtab_dependencies, NULL);
5488 }
5489
5490 /* A cleanup function that clears objfile's psymtabs_addrmap field.  */
5491
5492 static void
5493 psymtabs_addrmap_cleanup (void *o)
5494 {
5495   struct objfile *objfile = o;
5496
5497   objfile->psymtabs_addrmap = NULL;
5498 }
5499
5500 /* Compute the 'user' field for each psymtab in OBJFILE.  */
5501
5502 static void
5503 set_partial_user (struct objfile *objfile)
5504 {
5505   int i;
5506
5507   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
5508     {
5509       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
5510       struct partial_symtab *pst = per_cu->v.psymtab;
5511       int j;
5512
5513       if (pst == NULL)
5514         continue;
5515
5516       for (j = 0; j < pst->number_of_dependencies; ++j)
5517         {
5518           /* Set the 'user' field only if it is not already set.  */
5519           if (pst->dependencies[j]->user == NULL)
5520             pst->dependencies[j]->user = pst;
5521         }
5522     }
5523 }
5524
5525 /* Build the partial symbol table by doing a quick pass through the
5526    .debug_info and .debug_abbrev sections.  */
5527
5528 static void
5529 dwarf2_build_psymtabs_hard (struct objfile *objfile)
5530 {
5531   struct cleanup *back_to, *addrmap_cleanup;
5532   struct obstack temp_obstack;
5533   int i;
5534
5535   if (dwarf2_read_debug)
5536     {
5537       fprintf_unfiltered (gdb_stdlog, "Building psymtabs of objfile %s ...\n",
5538                           objfile->name);
5539     }
5540
5541   dwarf2_per_objfile->reading_partial_symbols = 1;
5542
5543   dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
5544
5545   /* Any cached compilation units will be linked by the per-objfile
5546      read_in_chain.  Make sure to free them when we're done.  */
5547   back_to = make_cleanup (free_cached_comp_units, NULL);
5548
5549   build_type_psymtabs (objfile);
5550
5551   create_all_comp_units (objfile);
5552
5553   /* Create a temporary address map on a temporary obstack.  We later
5554      copy this to the final obstack.  */
5555   obstack_init (&temp_obstack);
5556   make_cleanup_obstack_free (&temp_obstack);
5557   objfile->psymtabs_addrmap = addrmap_create_mutable (&temp_obstack);
5558   addrmap_cleanup = make_cleanup (psymtabs_addrmap_cleanup, objfile);
5559
5560   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
5561     {
5562       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
5563
5564       process_psymtab_comp_unit (per_cu, 0);
5565     }
5566
5567   set_partial_user (objfile);
5568
5569   objfile->psymtabs_addrmap = addrmap_create_fixed (objfile->psymtabs_addrmap,
5570                                                     &objfile->objfile_obstack);
5571   discard_cleanups (addrmap_cleanup);
5572
5573   do_cleanups (back_to);
5574
5575   if (dwarf2_read_debug)
5576     fprintf_unfiltered (gdb_stdlog, "Done building psymtabs of %s\n",
5577                         objfile->name);
5578 }
5579
5580 /* die_reader_func for load_partial_comp_unit.  */
5581
5582 static void
5583 load_partial_comp_unit_reader (const struct die_reader_specs *reader,
5584                                gdb_byte *info_ptr,
5585                                struct die_info *comp_unit_die,
5586                                int has_children,
5587                                void *data)
5588 {
5589   struct dwarf2_cu *cu = reader->cu;
5590
5591   prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
5592
5593   /* Check if comp unit has_children.
5594      If so, read the rest of the partial symbols from this comp unit.
5595      If not, there's no more debug_info for this comp unit.  */
5596   if (has_children)
5597     load_partial_dies (reader, info_ptr, 0);
5598 }
5599
5600 /* Load the partial DIEs for a secondary CU into memory.
5601    This is also used when rereading a primary CU with load_all_dies.  */
5602
5603 static void
5604 load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu)
5605 {
5606   init_cutu_and_read_dies (this_cu, NULL, 1, 1,
5607                            load_partial_comp_unit_reader, NULL);
5608 }
5609
5610 static void
5611 read_comp_units_from_section (struct objfile *objfile,
5612                               struct dwarf2_section_info *section,
5613                               unsigned int is_dwz,
5614                               int *n_allocated,
5615                               int *n_comp_units,
5616                               struct dwarf2_per_cu_data ***all_comp_units)
5617 {
5618   gdb_byte *info_ptr;
5619   bfd *abfd = section->asection->owner;
5620
5621   dwarf2_read_section (objfile, section);
5622
5623   info_ptr = section->buffer;
5624
5625   while (info_ptr < section->buffer + section->size)
5626     {
5627       unsigned int length, initial_length_size;
5628       struct dwarf2_per_cu_data *this_cu;
5629       sect_offset offset;
5630
5631       offset.sect_off = info_ptr - section->buffer;
5632
5633       /* Read just enough information to find out where the next
5634          compilation unit is.  */
5635       length = read_initial_length (abfd, info_ptr, &initial_length_size);
5636
5637       /* Save the compilation unit for later lookup.  */
5638       this_cu = obstack_alloc (&objfile->objfile_obstack,
5639                                sizeof (struct dwarf2_per_cu_data));
5640       memset (this_cu, 0, sizeof (*this_cu));
5641       this_cu->offset = offset;
5642       this_cu->length = length + initial_length_size;
5643       this_cu->is_dwz = is_dwz;
5644       this_cu->objfile = objfile;
5645       this_cu->section = section;
5646
5647       if (*n_comp_units == *n_allocated)
5648         {
5649           *n_allocated *= 2;
5650           *all_comp_units = xrealloc (*all_comp_units,
5651                                       *n_allocated
5652                                       * sizeof (struct dwarf2_per_cu_data *));
5653         }
5654       (*all_comp_units)[*n_comp_units] = this_cu;
5655       ++*n_comp_units;
5656
5657       info_ptr = info_ptr + this_cu->length;
5658     }
5659 }
5660
5661 /* Create a list of all compilation units in OBJFILE.
5662    This is only done for -readnow and building partial symtabs.  */
5663
5664 static void
5665 create_all_comp_units (struct objfile *objfile)
5666 {
5667   int n_allocated;
5668   int n_comp_units;
5669   struct dwarf2_per_cu_data **all_comp_units;
5670
5671   n_comp_units = 0;
5672   n_allocated = 10;
5673   all_comp_units = xmalloc (n_allocated
5674                             * sizeof (struct dwarf2_per_cu_data *));
5675
5676   read_comp_units_from_section (objfile, &dwarf2_per_objfile->info, 0,
5677                                 &n_allocated, &n_comp_units, &all_comp_units);
5678
5679   if (bfd_get_section_by_name (objfile->obfd, ".gnu_debugaltlink") != NULL)
5680     {
5681       struct dwz_file *dwz = dwarf2_get_dwz_file ();
5682
5683       read_comp_units_from_section (objfile, &dwz->info, 1,
5684                                     &n_allocated, &n_comp_units,
5685                                     &all_comp_units);
5686     }
5687
5688   dwarf2_per_objfile->all_comp_units
5689     = obstack_alloc (&objfile->objfile_obstack,
5690                      n_comp_units * sizeof (struct dwarf2_per_cu_data *));
5691   memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
5692           n_comp_units * sizeof (struct dwarf2_per_cu_data *));
5693   xfree (all_comp_units);
5694   dwarf2_per_objfile->n_comp_units = n_comp_units;
5695 }
5696
5697 /* Process all loaded DIEs for compilation unit CU, starting at
5698    FIRST_DIE.  The caller should pass NEED_PC == 1 if the compilation
5699    unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
5700    DW_AT_ranges).  If NEED_PC is set, then this function will set
5701    *LOWPC and *HIGHPC to the lowest and highest PC values found in CU
5702    and record the covered ranges in the addrmap.  */
5703
5704 static void
5705 scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
5706                       CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
5707 {
5708   struct partial_die_info *pdi;
5709
5710   /* Now, march along the PDI's, descending into ones which have
5711      interesting children but skipping the children of the other ones,
5712      until we reach the end of the compilation unit.  */
5713
5714   pdi = first_die;
5715
5716   while (pdi != NULL)
5717     {
5718       fixup_partial_die (pdi, cu);
5719
5720       /* Anonymous namespaces or modules have no name but have interesting
5721          children, so we need to look at them.  Ditto for anonymous
5722          enums.  */
5723
5724       if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
5725           || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type
5726           || pdi->tag == DW_TAG_imported_unit)
5727         {
5728           switch (pdi->tag)
5729             {
5730             case DW_TAG_subprogram:
5731               add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
5732               break;
5733             case DW_TAG_constant:
5734             case DW_TAG_variable:
5735             case DW_TAG_typedef:
5736             case DW_TAG_union_type:
5737               if (!pdi->is_declaration)
5738                 {
5739                   add_partial_symbol (pdi, cu);
5740                 }
5741               break;
5742             case DW_TAG_class_type:
5743             case DW_TAG_interface_type:
5744             case DW_TAG_structure_type:
5745               if (!pdi->is_declaration)
5746                 {
5747                   add_partial_symbol (pdi, cu);
5748                 }
5749               break;
5750             case DW_TAG_enumeration_type:
5751               if (!pdi->is_declaration)
5752                 add_partial_enumeration (pdi, cu);
5753               break;
5754             case DW_TAG_base_type:
5755             case DW_TAG_subrange_type:
5756               /* File scope base type definitions are added to the partial
5757                  symbol table.  */
5758               add_partial_symbol (pdi, cu);
5759               break;
5760             case DW_TAG_namespace:
5761               add_partial_namespace (pdi, lowpc, highpc, need_pc, cu);
5762               break;
5763             case DW_TAG_module:
5764               add_partial_module (pdi, lowpc, highpc, need_pc, cu);
5765               break;
5766             case DW_TAG_imported_unit:
5767               {
5768                 struct dwarf2_per_cu_data *per_cu;
5769
5770                 /* For now we don't handle imported units in type units.  */
5771                 if (cu->per_cu->is_debug_types)
5772                   {
5773                     error (_("Dwarf Error: DW_TAG_imported_unit is not"
5774                              " supported in type units [in module %s]"),
5775                            cu->objfile->name);
5776                   }
5777
5778                 per_cu = dwarf2_find_containing_comp_unit (pdi->d.offset,
5779                                                            pdi->is_dwz,
5780                                                            cu->objfile);
5781
5782                 /* Go read the partial unit, if needed.  */
5783                 if (per_cu->v.psymtab == NULL)
5784                   process_psymtab_comp_unit (per_cu, 1);
5785
5786                 VEC_safe_push (dwarf2_per_cu_ptr,
5787                                cu->per_cu->imported_symtabs, per_cu);
5788               }
5789               break;
5790             default:
5791               break;
5792             }
5793         }
5794
5795       /* If the die has a sibling, skip to the sibling.  */
5796
5797       pdi = pdi->die_sibling;
5798     }
5799 }
5800
5801 /* Functions used to compute the fully scoped name of a partial DIE.
5802
5803    Normally, this is simple.  For C++, the parent DIE's fully scoped
5804    name is concatenated with "::" and the partial DIE's name.  For
5805    Java, the same thing occurs except that "." is used instead of "::".
5806    Enumerators are an exception; they use the scope of their parent
5807    enumeration type, i.e. the name of the enumeration type is not
5808    prepended to the enumerator.
5809
5810    There are two complexities.  One is DW_AT_specification; in this
5811    case "parent" means the parent of the target of the specification,
5812    instead of the direct parent of the DIE.  The other is compilers
5813    which do not emit DW_TAG_namespace; in this case we try to guess
5814    the fully qualified name of structure types from their members'
5815    linkage names.  This must be done using the DIE's children rather
5816    than the children of any DW_AT_specification target.  We only need
5817    to do this for structures at the top level, i.e. if the target of
5818    any DW_AT_specification (if any; otherwise the DIE itself) does not
5819    have a parent.  */
5820
5821 /* Compute the scope prefix associated with PDI's parent, in
5822    compilation unit CU.  The result will be allocated on CU's
5823    comp_unit_obstack, or a copy of the already allocated PDI->NAME
5824    field.  NULL is returned if no prefix is necessary.  */
5825 static const char *
5826 partial_die_parent_scope (struct partial_die_info *pdi,
5827                           struct dwarf2_cu *cu)
5828 {
5829   const char *grandparent_scope;
5830   struct partial_die_info *parent, *real_pdi;
5831
5832   /* We need to look at our parent DIE; if we have a DW_AT_specification,
5833      then this means the parent of the specification DIE.  */
5834
5835   real_pdi = pdi;
5836   while (real_pdi->has_specification)
5837     real_pdi = find_partial_die (real_pdi->spec_offset,
5838                                  real_pdi->spec_is_dwz, cu);
5839
5840   parent = real_pdi->die_parent;
5841   if (parent == NULL)
5842     return NULL;
5843
5844   if (parent->scope_set)
5845     return parent->scope;
5846
5847   fixup_partial_die (parent, cu);
5848
5849   grandparent_scope = partial_die_parent_scope (parent, cu);
5850
5851   /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
5852      DW_TAG_namespace DIEs with a name of "::" for the global namespace.
5853      Work around this problem here.  */
5854   if (cu->language == language_cplus
5855       && parent->tag == DW_TAG_namespace
5856       && strcmp (parent->name, "::") == 0
5857       && grandparent_scope == NULL)
5858     {
5859       parent->scope = NULL;
5860       parent->scope_set = 1;
5861       return NULL;
5862     }
5863
5864   if (pdi->tag == DW_TAG_enumerator)
5865     /* Enumerators should not get the name of the enumeration as a prefix.  */
5866     parent->scope = grandparent_scope;
5867   else if (parent->tag == DW_TAG_namespace
5868       || parent->tag == DW_TAG_module
5869       || parent->tag == DW_TAG_structure_type
5870       || parent->tag == DW_TAG_class_type
5871       || parent->tag == DW_TAG_interface_type
5872       || parent->tag == DW_TAG_union_type
5873       || parent->tag == DW_TAG_enumeration_type)
5874     {
5875       if (grandparent_scope == NULL)
5876         parent->scope = parent->name;
5877       else
5878         parent->scope = typename_concat (&cu->comp_unit_obstack,
5879                                          grandparent_scope,
5880                                          parent->name, 0, cu);
5881     }
5882   else
5883     {
5884       /* FIXME drow/2004-04-01: What should we be doing with
5885          function-local names?  For partial symbols, we should probably be
5886          ignoring them.  */
5887       complaint (&symfile_complaints,
5888                  _("unhandled containing DIE tag %d for DIE at %d"),
5889                  parent->tag, pdi->offset.sect_off);
5890       parent->scope = grandparent_scope;
5891     }
5892
5893   parent->scope_set = 1;
5894   return parent->scope;
5895 }
5896
5897 /* Return the fully scoped name associated with PDI, from compilation unit
5898    CU.  The result will be allocated with malloc.  */
5899
5900 static char *
5901 partial_die_full_name (struct partial_die_info *pdi,
5902                        struct dwarf2_cu *cu)
5903 {
5904   const char *parent_scope;
5905
5906   /* If this is a template instantiation, we can not work out the
5907      template arguments from partial DIEs.  So, unfortunately, we have
5908      to go through the full DIEs.  At least any work we do building
5909      types here will be reused if full symbols are loaded later.  */
5910   if (pdi->has_template_arguments)
5911     {
5912       fixup_partial_die (pdi, cu);
5913
5914       if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
5915         {
5916           struct die_info *die;
5917           struct attribute attr;
5918           struct dwarf2_cu *ref_cu = cu;
5919
5920           /* DW_FORM_ref_addr is using section offset.  */
5921           attr.name = 0;
5922           attr.form = DW_FORM_ref_addr;
5923           attr.u.unsnd = pdi->offset.sect_off;
5924           die = follow_die_ref (NULL, &attr, &ref_cu);
5925
5926           return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
5927         }
5928     }
5929
5930   parent_scope = partial_die_parent_scope (pdi, cu);
5931   if (parent_scope == NULL)
5932     return NULL;
5933   else
5934     return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
5935 }
5936
5937 static void
5938 add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
5939 {
5940   struct objfile *objfile = cu->objfile;
5941   CORE_ADDR addr = 0;
5942   const char *actual_name = NULL;
5943   CORE_ADDR baseaddr;
5944   char *built_actual_name;
5945
5946   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5947
5948   built_actual_name = partial_die_full_name (pdi, cu);
5949   if (built_actual_name != NULL)
5950     actual_name = built_actual_name;
5951
5952   if (actual_name == NULL)
5953     actual_name = pdi->name;
5954
5955   switch (pdi->tag)
5956     {
5957     case DW_TAG_subprogram:
5958       if (pdi->is_external || cu->language == language_ada)
5959         {
5960           /* brobecker/2007-12-26: Normally, only "external" DIEs are part
5961              of the global scope.  But in Ada, we want to be able to access
5962              nested procedures globally.  So all Ada subprograms are stored
5963              in the global scope.  */
5964           /* prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
5965              mst_text, objfile); */
5966           add_psymbol_to_list (actual_name, strlen (actual_name),
5967                                built_actual_name != NULL,
5968                                VAR_DOMAIN, LOC_BLOCK,
5969                                &objfile->global_psymbols,
5970                                0, pdi->lowpc + baseaddr,
5971                                cu->language, objfile);
5972         }
5973       else
5974         {
5975           /* prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
5976              mst_file_text, objfile); */
5977           add_psymbol_to_list (actual_name, strlen (actual_name),
5978                                built_actual_name != NULL,
5979                                VAR_DOMAIN, LOC_BLOCK,
5980                                &objfile->static_psymbols,
5981                                0, pdi->lowpc + baseaddr,
5982                                cu->language, objfile);
5983         }
5984       break;
5985     case DW_TAG_constant:
5986       {
5987         struct psymbol_allocation_list *list;
5988
5989         if (pdi->is_external)
5990           list = &objfile->global_psymbols;
5991         else
5992           list = &objfile->static_psymbols;
5993         add_psymbol_to_list (actual_name, strlen (actual_name),
5994                              built_actual_name != NULL, VAR_DOMAIN, LOC_STATIC,
5995                              list, 0, 0, cu->language, objfile);
5996       }
5997       break;
5998     case DW_TAG_variable:
5999       if (pdi->d.locdesc)
6000         addr = decode_locdesc (pdi->d.locdesc, cu);
6001
6002       if (pdi->d.locdesc
6003           && addr == 0
6004           && !dwarf2_per_objfile->has_section_at_zero)
6005         {
6006           /* A global or static variable may also have been stripped
6007              out by the linker if unused, in which case its address
6008              will be nullified; do not add such variables into partial
6009              symbol table then.  */
6010         }
6011       else if (pdi->is_external)
6012         {
6013           /* Global Variable.
6014              Don't enter into the minimal symbol tables as there is
6015              a minimal symbol table entry from the ELF symbols already.
6016              Enter into partial symbol table if it has a location
6017              descriptor or a type.
6018              If the location descriptor is missing, new_symbol will create
6019              a LOC_UNRESOLVED symbol, the address of the variable will then
6020              be determined from the minimal symbol table whenever the variable
6021              is referenced.
6022              The address for the partial symbol table entry is not
6023              used by GDB, but it comes in handy for debugging partial symbol
6024              table building.  */
6025
6026           if (pdi->d.locdesc || pdi->has_type)
6027             add_psymbol_to_list (actual_name, strlen (actual_name),
6028                                  built_actual_name != NULL,
6029                                  VAR_DOMAIN, LOC_STATIC,
6030                                  &objfile->global_psymbols,
6031                                  0, addr + baseaddr,
6032                                  cu->language, objfile);
6033         }
6034       else
6035         {
6036           /* Static Variable.  Skip symbols without location descriptors.  */
6037           if (pdi->d.locdesc == NULL)
6038             {
6039               xfree (built_actual_name);
6040               return;
6041             }
6042           /* prim_record_minimal_symbol (actual_name, addr + baseaddr,
6043              mst_file_data, objfile); */
6044           add_psymbol_to_list (actual_name, strlen (actual_name),
6045                                built_actual_name != NULL,
6046                                VAR_DOMAIN, LOC_STATIC,
6047                                &objfile->static_psymbols,
6048                                0, addr + baseaddr,
6049                                cu->language, objfile);
6050         }
6051       break;
6052     case DW_TAG_typedef:
6053     case DW_TAG_base_type:
6054     case DW_TAG_subrange_type:
6055       add_psymbol_to_list (actual_name, strlen (actual_name),
6056                            built_actual_name != NULL,
6057                            VAR_DOMAIN, LOC_TYPEDEF,
6058                            &objfile->static_psymbols,
6059                            0, (CORE_ADDR) 0, cu->language, objfile);
6060       break;
6061     case DW_TAG_namespace:
6062       add_psymbol_to_list (actual_name, strlen (actual_name),
6063                            built_actual_name != NULL,
6064                            VAR_DOMAIN, LOC_TYPEDEF,
6065                            &objfile->global_psymbols,
6066                            0, (CORE_ADDR) 0, cu->language, objfile);
6067       break;
6068     case DW_TAG_class_type:
6069     case DW_TAG_interface_type:
6070     case DW_TAG_structure_type:
6071     case DW_TAG_union_type:
6072     case DW_TAG_enumeration_type:
6073       /* Skip external references.  The DWARF standard says in the section
6074          about "Structure, Union, and Class Type Entries": "An incomplete
6075          structure, union or class type is represented by a structure,
6076          union or class entry that does not have a byte size attribute
6077          and that has a DW_AT_declaration attribute."  */
6078       if (!pdi->has_byte_size && pdi->is_declaration)
6079         {
6080           xfree (built_actual_name);
6081           return;
6082         }
6083
6084       /* NOTE: carlton/2003-10-07: See comment in new_symbol about
6085          static vs. global.  */
6086       add_psymbol_to_list (actual_name, strlen (actual_name),
6087                            built_actual_name != NULL,
6088                            STRUCT_DOMAIN, LOC_TYPEDEF,
6089                            (cu->language == language_cplus
6090                             || cu->language == language_java)
6091                            ? &objfile->global_psymbols
6092                            : &objfile->static_psymbols,
6093                            0, (CORE_ADDR) 0, cu->language, objfile);
6094
6095       break;
6096     case DW_TAG_enumerator:
6097       add_psymbol_to_list (actual_name, strlen (actual_name),
6098                            built_actual_name != NULL,
6099                            VAR_DOMAIN, LOC_CONST,
6100                            (cu->language == language_cplus
6101                             || cu->language == language_java)
6102                            ? &objfile->global_psymbols
6103                            : &objfile->static_psymbols,
6104                            0, (CORE_ADDR) 0, cu->language, objfile);
6105       break;
6106     default:
6107       break;
6108     }
6109
6110   xfree (built_actual_name);
6111 }
6112
6113 /* Read a partial die corresponding to a namespace; also, add a symbol
6114    corresponding to that namespace to the symbol table.  NAMESPACE is
6115    the name of the enclosing namespace.  */
6116
6117 static void
6118 add_partial_namespace (struct partial_die_info *pdi,
6119                        CORE_ADDR *lowpc, CORE_ADDR *highpc,
6120                        int need_pc, struct dwarf2_cu *cu)
6121 {
6122   /* Add a symbol for the namespace.  */
6123
6124   add_partial_symbol (pdi, cu);
6125
6126   /* Now scan partial symbols in that namespace.  */
6127
6128   if (pdi->has_children)
6129     scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
6130 }
6131
6132 /* Read a partial die corresponding to a Fortran module.  */
6133
6134 static void
6135 add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
6136                     CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
6137 {
6138   /* Now scan partial symbols in that module.  */
6139
6140   if (pdi->has_children)
6141     scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
6142 }
6143
6144 /* Read a partial die corresponding to a subprogram and create a partial
6145    symbol for that subprogram.  When the CU language allows it, this
6146    routine also defines a partial symbol for each nested subprogram
6147    that this subprogram contains.
6148
6149    DIE my also be a lexical block, in which case we simply search
6150    recursively for suprograms defined inside that lexical block.
6151    Again, this is only performed when the CU language allows this
6152    type of definitions.  */
6153
6154 static void
6155 add_partial_subprogram (struct partial_die_info *pdi,
6156                         CORE_ADDR *lowpc, CORE_ADDR *highpc,
6157                         int need_pc, struct dwarf2_cu *cu)
6158 {
6159   if (pdi->tag == DW_TAG_subprogram)
6160     {
6161       if (pdi->has_pc_info)
6162         {
6163           if (pdi->lowpc < *lowpc)
6164             *lowpc = pdi->lowpc;
6165           if (pdi->highpc > *highpc)
6166             *highpc = pdi->highpc;
6167           if (need_pc)
6168             {
6169               CORE_ADDR baseaddr;
6170               struct objfile *objfile = cu->objfile;
6171
6172               baseaddr = ANOFFSET (objfile->section_offsets,
6173                                    SECT_OFF_TEXT (objfile));
6174               addrmap_set_empty (objfile->psymtabs_addrmap,
6175                                  pdi->lowpc + baseaddr,
6176                                  pdi->highpc - 1 + baseaddr,
6177                                  cu->per_cu->v.psymtab);
6178             }
6179         }
6180
6181       if (pdi->has_pc_info || (!pdi->is_external && pdi->may_be_inlined))
6182         {
6183           if (!pdi->is_declaration)
6184             /* Ignore subprogram DIEs that do not have a name, they are
6185                illegal.  Do not emit a complaint at this point, we will
6186                do so when we convert this psymtab into a symtab.  */
6187             if (pdi->name)
6188               add_partial_symbol (pdi, cu);
6189         }
6190     }
6191
6192   if (! pdi->has_children)
6193     return;
6194
6195   if (cu->language == language_ada)
6196     {
6197       pdi = pdi->die_child;
6198       while (pdi != NULL)
6199         {
6200           fixup_partial_die (pdi, cu);
6201           if (pdi->tag == DW_TAG_subprogram
6202               || pdi->tag == DW_TAG_lexical_block)
6203             add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
6204           pdi = pdi->die_sibling;
6205         }
6206     }
6207 }
6208
6209 /* Read a partial die corresponding to an enumeration type.  */
6210
6211 static void
6212 add_partial_enumeration (struct partial_die_info *enum_pdi,
6213                          struct dwarf2_cu *cu)
6214 {
6215   struct partial_die_info *pdi;
6216
6217   if (enum_pdi->name != NULL)
6218     add_partial_symbol (enum_pdi, cu);
6219
6220   pdi = enum_pdi->die_child;
6221   while (pdi)
6222     {
6223       if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
6224         complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
6225       else
6226         add_partial_symbol (pdi, cu);
6227       pdi = pdi->die_sibling;
6228     }
6229 }
6230
6231 /* Return the initial uleb128 in the die at INFO_PTR.  */
6232
6233 static unsigned int
6234 peek_abbrev_code (bfd *abfd, gdb_byte *info_ptr)
6235 {
6236   unsigned int bytes_read;
6237
6238   return read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
6239 }
6240
6241 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
6242    Return the corresponding abbrev, or NULL if the number is zero (indicating
6243    an empty DIE).  In either case *BYTES_READ will be set to the length of
6244    the initial number.  */
6245
6246 static struct abbrev_info *
6247 peek_die_abbrev (gdb_byte *info_ptr, unsigned int *bytes_read,
6248                  struct dwarf2_cu *cu)
6249 {
6250   bfd *abfd = cu->objfile->obfd;
6251   unsigned int abbrev_number;
6252   struct abbrev_info *abbrev;
6253
6254   abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
6255
6256   if (abbrev_number == 0)
6257     return NULL;
6258
6259   abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
6260   if (!abbrev)
6261     {
6262       error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"),
6263              abbrev_number, bfd_get_filename (abfd));
6264     }
6265
6266   return abbrev;
6267 }
6268
6269 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
6270    Returns a pointer to the end of a series of DIEs, terminated by an empty
6271    DIE.  Any children of the skipped DIEs will also be skipped.  */
6272
6273 static gdb_byte *
6274 skip_children (const struct die_reader_specs *reader, gdb_byte *info_ptr)
6275 {
6276   struct dwarf2_cu *cu = reader->cu;
6277   struct abbrev_info *abbrev;
6278   unsigned int bytes_read;
6279
6280   while (1)
6281     {
6282       abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
6283       if (abbrev == NULL)
6284         return info_ptr + bytes_read;
6285       else
6286         info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
6287     }
6288 }
6289
6290 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
6291    INFO_PTR should point just after the initial uleb128 of a DIE, and the
6292    abbrev corresponding to that skipped uleb128 should be passed in
6293    ABBREV.  Returns a pointer to this DIE's sibling, skipping any
6294    children.  */
6295
6296 static gdb_byte *
6297 skip_one_die (const struct die_reader_specs *reader, gdb_byte *info_ptr,
6298               struct abbrev_info *abbrev)
6299 {
6300   unsigned int bytes_read;
6301   struct attribute attr;
6302   bfd *abfd = reader->abfd;
6303   struct dwarf2_cu *cu = reader->cu;
6304   gdb_byte *buffer = reader->buffer;
6305   const gdb_byte *buffer_end = reader->buffer_end;
6306   gdb_byte *start_info_ptr = info_ptr;
6307   unsigned int form, i;
6308
6309   for (i = 0; i < abbrev->num_attrs; i++)
6310     {
6311       /* The only abbrev we care about is DW_AT_sibling.  */
6312       if (abbrev->attrs[i].name == DW_AT_sibling)
6313         {
6314           read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
6315           if (attr.form == DW_FORM_ref_addr)
6316             complaint (&symfile_complaints,
6317                        _("ignoring absolute DW_AT_sibling"));
6318           else
6319             return buffer + dwarf2_get_ref_die_offset (&attr).sect_off;
6320         }
6321
6322       /* If it isn't DW_AT_sibling, skip this attribute.  */
6323       form = abbrev->attrs[i].form;
6324     skip_attribute:
6325       switch (form)
6326         {
6327         case DW_FORM_ref_addr:
6328           /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
6329              and later it is offset sized.  */
6330           if (cu->header.version == 2)
6331             info_ptr += cu->header.addr_size;
6332           else
6333             info_ptr += cu->header.offset_size;
6334           break;
6335         case DW_FORM_GNU_ref_alt:
6336           info_ptr += cu->header.offset_size;
6337           break;
6338         case DW_FORM_addr:
6339           info_ptr += cu->header.addr_size;
6340           break;
6341         case DW_FORM_data1:
6342         case DW_FORM_ref1:
6343         case DW_FORM_flag:
6344           info_ptr += 1;
6345           break;
6346         case DW_FORM_flag_present:
6347           break;
6348         case DW_FORM_data2:
6349         case DW_FORM_ref2:
6350           info_ptr += 2;
6351           break;
6352         case DW_FORM_data4:
6353         case DW_FORM_ref4:
6354           info_ptr += 4;
6355           break;
6356         case DW_FORM_data8:
6357         case DW_FORM_ref8:
6358         case DW_FORM_ref_sig8:
6359           info_ptr += 8;
6360           break;
6361         case DW_FORM_string:
6362           read_direct_string (abfd, info_ptr, &bytes_read);
6363           info_ptr += bytes_read;
6364           break;
6365         case DW_FORM_sec_offset:
6366         case DW_FORM_strp:
6367         case DW_FORM_GNU_strp_alt:
6368           info_ptr += cu->header.offset_size;
6369           break;
6370         case DW_FORM_exprloc:
6371         case DW_FORM_block:
6372           info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
6373           info_ptr += bytes_read;
6374           break;
6375         case DW_FORM_block1:
6376           info_ptr += 1 + read_1_byte (abfd, info_ptr);
6377           break;
6378         case DW_FORM_block2:
6379           info_ptr += 2 + read_2_bytes (abfd, info_ptr);
6380           break;
6381         case DW_FORM_block4:
6382           info_ptr += 4 + read_4_bytes (abfd, info_ptr);
6383           break;
6384         case DW_FORM_sdata:
6385         case DW_FORM_udata:
6386         case DW_FORM_ref_udata:
6387         case DW_FORM_GNU_addr_index:
6388         case DW_FORM_GNU_str_index:
6389           info_ptr = (gdb_byte *) safe_skip_leb128 (info_ptr, buffer_end);
6390           break;
6391         case DW_FORM_indirect:
6392           form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
6393           info_ptr += bytes_read;
6394           /* We need to continue parsing from here, so just go back to
6395              the top.  */
6396           goto skip_attribute;
6397
6398         default:
6399           error (_("Dwarf Error: Cannot handle %s "
6400                    "in DWARF reader [in module %s]"),
6401                  dwarf_form_name (form),
6402                  bfd_get_filename (abfd));
6403         }
6404     }
6405
6406   if (abbrev->has_children)
6407     return skip_children (reader, info_ptr);
6408   else
6409     return info_ptr;
6410 }
6411
6412 /* Locate ORIG_PDI's sibling.
6413    INFO_PTR should point to the start of the next DIE after ORIG_PDI.  */
6414
6415 static gdb_byte *
6416 locate_pdi_sibling (const struct die_reader_specs *reader,
6417                     struct partial_die_info *orig_pdi,
6418                     gdb_byte *info_ptr)
6419 {
6420   /* Do we know the sibling already?  */
6421
6422   if (orig_pdi->sibling)
6423     return orig_pdi->sibling;
6424
6425   /* Are there any children to deal with?  */
6426
6427   if (!orig_pdi->has_children)
6428     return info_ptr;
6429
6430   /* Skip the children the long way.  */
6431
6432   return skip_children (reader, info_ptr);
6433 }
6434
6435 /* Expand this partial symbol table into a full symbol table.  SELF is
6436    not NULL.  */
6437
6438 static void
6439 dwarf2_read_symtab (struct partial_symtab *self,
6440                     struct objfile *objfile)
6441 {
6442   if (self->readin)
6443     {
6444       warning (_("bug: psymtab for %s is already read in."),
6445                self->filename);
6446     }
6447   else
6448     {
6449       if (info_verbose)
6450         {
6451           printf_filtered (_("Reading in symbols for %s..."),
6452                            self->filename);
6453           gdb_flush (gdb_stdout);
6454         }
6455
6456       /* Restore our global data.  */
6457       dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
6458
6459       /* If this psymtab is constructed from a debug-only objfile, the
6460          has_section_at_zero flag will not necessarily be correct.  We
6461          can get the correct value for this flag by looking at the data
6462          associated with the (presumably stripped) associated objfile.  */
6463       if (objfile->separate_debug_objfile_backlink)
6464         {
6465           struct dwarf2_per_objfile *dpo_backlink
6466             = objfile_data (objfile->separate_debug_objfile_backlink,
6467                             dwarf2_objfile_data_key);
6468
6469           dwarf2_per_objfile->has_section_at_zero
6470             = dpo_backlink->has_section_at_zero;
6471         }
6472
6473       dwarf2_per_objfile->reading_partial_symbols = 0;
6474
6475       psymtab_to_symtab_1 (self);
6476
6477       /* Finish up the debug error message.  */
6478       if (info_verbose)
6479         printf_filtered (_("done.\n"));
6480     }
6481
6482   process_cu_includes ();
6483 }
6484 \f
6485 /* Reading in full CUs.  */
6486
6487 /* Add PER_CU to the queue.  */
6488
6489 static void
6490 queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
6491                  enum language pretend_language)
6492 {
6493   struct dwarf2_queue_item *item;
6494
6495   per_cu->queued = 1;
6496   item = xmalloc (sizeof (*item));
6497   item->per_cu = per_cu;
6498   item->pretend_language = pretend_language;
6499   item->next = NULL;
6500
6501   if (dwarf2_queue == NULL)
6502     dwarf2_queue = item;
6503   else
6504     dwarf2_queue_tail->next = item;
6505
6506   dwarf2_queue_tail = item;
6507 }
6508
6509 /* THIS_CU has a reference to PER_CU.  If necessary, load the new compilation
6510    unit and add it to our queue.
6511    The result is non-zero if PER_CU was queued, otherwise the result is zero
6512    meaning either PER_CU is already queued or it is already loaded.  */
6513
6514 static int
6515 maybe_queue_comp_unit (struct dwarf2_cu *this_cu,
6516                        struct dwarf2_per_cu_data *per_cu,
6517                        enum language pretend_language)
6518 {
6519   /* We may arrive here during partial symbol reading, if we need full
6520      DIEs to process an unusual case (e.g. template arguments).  Do
6521      not queue PER_CU, just tell our caller to load its DIEs.  */
6522   if (dwarf2_per_objfile->reading_partial_symbols)
6523     {
6524       if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
6525         return 1;
6526       return 0;
6527     }
6528
6529   /* Mark the dependence relation so that we don't flush PER_CU
6530      too early.  */
6531   dwarf2_add_dependence (this_cu, per_cu);
6532
6533   /* If it's already on the queue, we have nothing to do.  */
6534   if (per_cu->queued)
6535     return 0;
6536
6537   /* If the compilation unit is already loaded, just mark it as
6538      used.  */
6539   if (per_cu->cu != NULL)
6540     {
6541       per_cu->cu->last_used = 0;
6542       return 0;
6543     }
6544
6545   /* Add it to the queue.  */
6546   queue_comp_unit (per_cu, pretend_language);
6547
6548   return 1;
6549 }
6550
6551 /* Process the queue.  */
6552
6553 static void
6554 process_queue (void)
6555 {
6556   struct dwarf2_queue_item *item, *next_item;
6557
6558   if (dwarf2_read_debug)
6559     {
6560       fprintf_unfiltered (gdb_stdlog,
6561                           "Expanding one or more symtabs of objfile %s ...\n",
6562                           dwarf2_per_objfile->objfile->name);
6563     }
6564
6565   /* The queue starts out with one item, but following a DIE reference
6566      may load a new CU, adding it to the end of the queue.  */
6567   for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
6568     {
6569       if (dwarf2_per_objfile->using_index
6570           ? !item->per_cu->v.quick->symtab
6571           : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
6572         {
6573           struct dwarf2_per_cu_data *per_cu = item->per_cu;
6574
6575           if (dwarf2_read_debug)
6576             {
6577               fprintf_unfiltered (gdb_stdlog,
6578                                   "Expanding symtab of %s at offset 0x%x\n",
6579                                   per_cu->is_debug_types ? "TU" : "CU",
6580                                   per_cu->offset.sect_off);
6581             }
6582
6583           if (per_cu->is_debug_types)
6584             process_full_type_unit (per_cu, item->pretend_language);
6585           else
6586             process_full_comp_unit (per_cu, item->pretend_language);
6587
6588           if (dwarf2_read_debug)
6589             {
6590               fprintf_unfiltered (gdb_stdlog,
6591                                   "Done expanding %s at offset 0x%x\n",
6592                                   per_cu->is_debug_types ? "TU" : "CU",
6593                                   per_cu->offset.sect_off);
6594             }
6595         }
6596
6597       item->per_cu->queued = 0;
6598       next_item = item->next;
6599       xfree (item);
6600     }
6601
6602   dwarf2_queue_tail = NULL;
6603
6604   if (dwarf2_read_debug)
6605     {
6606       fprintf_unfiltered (gdb_stdlog, "Done expanding symtabs of %s.\n",
6607                           dwarf2_per_objfile->objfile->name);
6608     }
6609 }
6610
6611 /* Free all allocated queue entries.  This function only releases anything if
6612    an error was thrown; if the queue was processed then it would have been
6613    freed as we went along.  */
6614
6615 static void
6616 dwarf2_release_queue (void *dummy)
6617 {
6618   struct dwarf2_queue_item *item, *last;
6619
6620   item = dwarf2_queue;
6621   while (item)
6622     {
6623       /* Anything still marked queued is likely to be in an
6624          inconsistent state, so discard it.  */
6625       if (item->per_cu->queued)
6626         {
6627           if (item->per_cu->cu != NULL)
6628             free_one_cached_comp_unit (item->per_cu);
6629           item->per_cu->queued = 0;
6630         }
6631
6632       last = item;
6633       item = item->next;
6634       xfree (last);
6635     }
6636
6637   dwarf2_queue = dwarf2_queue_tail = NULL;
6638 }
6639
6640 /* Read in full symbols for PST, and anything it depends on.  */
6641
6642 static void
6643 psymtab_to_symtab_1 (struct partial_symtab *pst)
6644 {
6645   struct dwarf2_per_cu_data *per_cu;
6646   int i;
6647
6648   if (pst->readin)
6649     return;
6650
6651   for (i = 0; i < pst->number_of_dependencies; i++)
6652     if (!pst->dependencies[i]->readin
6653         && pst->dependencies[i]->user == NULL)
6654       {
6655         /* Inform about additional files that need to be read in.  */
6656         if (info_verbose)
6657           {
6658             /* FIXME: i18n: Need to make this a single string.  */
6659             fputs_filtered (" ", gdb_stdout);
6660             wrap_here ("");
6661             fputs_filtered ("and ", gdb_stdout);
6662             wrap_here ("");
6663             printf_filtered ("%s...", pst->dependencies[i]->filename);
6664             wrap_here ("");     /* Flush output.  */
6665             gdb_flush (gdb_stdout);
6666           }
6667         psymtab_to_symtab_1 (pst->dependencies[i]);
6668       }
6669
6670   per_cu = pst->read_symtab_private;
6671
6672   if (per_cu == NULL)
6673     {
6674       /* It's an include file, no symbols to read for it.
6675          Everything is in the parent symtab.  */
6676       pst->readin = 1;
6677       return;
6678     }
6679
6680   dw2_do_instantiate_symtab (per_cu);
6681 }
6682
6683 /* Trivial hash function for die_info: the hash value of a DIE
6684    is its offset in .debug_info for this objfile.  */
6685
6686 static hashval_t
6687 die_hash (const void *item)
6688 {
6689   const struct die_info *die = item;
6690
6691   return die->offset.sect_off;
6692 }
6693
6694 /* Trivial comparison function for die_info structures: two DIEs
6695    are equal if they have the same offset.  */
6696
6697 static int
6698 die_eq (const void *item_lhs, const void *item_rhs)
6699 {
6700   const struct die_info *die_lhs = item_lhs;
6701   const struct die_info *die_rhs = item_rhs;
6702
6703   return die_lhs->offset.sect_off == die_rhs->offset.sect_off;
6704 }
6705
6706 /* die_reader_func for load_full_comp_unit.
6707    This is identical to read_signatured_type_reader,
6708    but is kept separate for now.  */
6709
6710 static void
6711 load_full_comp_unit_reader (const struct die_reader_specs *reader,
6712                             gdb_byte *info_ptr,
6713                             struct die_info *comp_unit_die,
6714                             int has_children,
6715                             void *data)
6716 {
6717   struct dwarf2_cu *cu = reader->cu;
6718   enum language *language_ptr = data;
6719
6720   gdb_assert (cu->die_hash == NULL);
6721   cu->die_hash =
6722     htab_create_alloc_ex (cu->header.length / 12,
6723                           die_hash,
6724                           die_eq,
6725                           NULL,
6726                           &cu->comp_unit_obstack,
6727                           hashtab_obstack_allocate,
6728                           dummy_obstack_deallocate);
6729
6730   if (has_children)
6731     comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
6732                                                   &info_ptr, comp_unit_die);
6733   cu->dies = comp_unit_die;
6734   /* comp_unit_die is not stored in die_hash, no need.  */
6735
6736   /* We try not to read any attributes in this function, because not
6737      all CUs needed for references have been loaded yet, and symbol
6738      table processing isn't initialized.  But we have to set the CU language,
6739      or we won't be able to build types correctly.
6740      Similarly, if we do not read the producer, we can not apply
6741      producer-specific interpretation.  */
6742   prepare_one_comp_unit (cu, cu->dies, *language_ptr);
6743 }
6744
6745 /* Load the DIEs associated with PER_CU into memory.  */
6746
6747 static void
6748 load_full_comp_unit (struct dwarf2_per_cu_data *this_cu,
6749                      enum language pretend_language)
6750 {
6751   gdb_assert (! this_cu->is_debug_types);
6752
6753   init_cutu_and_read_dies (this_cu, NULL, 1, 1,
6754                            load_full_comp_unit_reader, &pretend_language);
6755 }
6756
6757 /* Add a DIE to the delayed physname list.  */
6758
6759 static void
6760 add_to_method_list (struct type *type, int fnfield_index, int index,
6761                     const char *name, struct die_info *die,
6762                     struct dwarf2_cu *cu)
6763 {
6764   struct delayed_method_info mi;
6765   mi.type = type;
6766   mi.fnfield_index = fnfield_index;
6767   mi.index = index;
6768   mi.name = name;
6769   mi.die = die;
6770   VEC_safe_push (delayed_method_info, cu->method_list, &mi);
6771 }
6772
6773 /* A cleanup for freeing the delayed method list.  */
6774
6775 static void
6776 free_delayed_list (void *ptr)
6777 {
6778   struct dwarf2_cu *cu = (struct dwarf2_cu *) ptr;
6779   if (cu->method_list != NULL)
6780     {
6781       VEC_free (delayed_method_info, cu->method_list);
6782       cu->method_list = NULL;
6783     }
6784 }
6785
6786 /* Compute the physnames of any methods on the CU's method list.
6787
6788    The computation of method physnames is delayed in order to avoid the
6789    (bad) condition that one of the method's formal parameters is of an as yet
6790    incomplete type.  */
6791
6792 static void
6793 compute_delayed_physnames (struct dwarf2_cu *cu)
6794 {
6795   int i;
6796   struct delayed_method_info *mi;
6797   for (i = 0; VEC_iterate (delayed_method_info, cu->method_list, i, mi) ; ++i)
6798     {
6799       const char *physname;
6800       struct fn_fieldlist *fn_flp
6801         = &TYPE_FN_FIELDLIST (mi->type, mi->fnfield_index);
6802       physname = dwarf2_physname (mi->name, mi->die, cu);
6803       fn_flp->fn_fields[mi->index].physname = physname ? physname : "";
6804     }
6805 }
6806
6807 /* Go objects should be embedded in a DW_TAG_module DIE,
6808    and it's not clear if/how imported objects will appear.
6809    To keep Go support simple until that's worked out,
6810    go back through what we've read and create something usable.
6811    We could do this while processing each DIE, and feels kinda cleaner,
6812    but that way is more invasive.
6813    This is to, for example, allow the user to type "p var" or "b main"
6814    without having to specify the package name, and allow lookups
6815    of module.object to work in contexts that use the expression
6816    parser.  */
6817
6818 static void
6819 fixup_go_packaging (struct dwarf2_cu *cu)
6820 {
6821   char *package_name = NULL;
6822   struct pending *list;
6823   int i;
6824
6825   for (list = global_symbols; list != NULL; list = list->next)
6826     {
6827       for (i = 0; i < list->nsyms; ++i)
6828         {
6829           struct symbol *sym = list->symbol[i];
6830
6831           if (SYMBOL_LANGUAGE (sym) == language_go
6832               && SYMBOL_CLASS (sym) == LOC_BLOCK)
6833             {
6834               char *this_package_name = go_symbol_package_name (sym);
6835
6836               if (this_package_name == NULL)
6837                 continue;
6838               if (package_name == NULL)
6839                 package_name = this_package_name;
6840               else
6841                 {
6842                   if (strcmp (package_name, this_package_name) != 0)
6843                     complaint (&symfile_complaints,
6844                                _("Symtab %s has objects from two different Go packages: %s and %s"),
6845                                (SYMBOL_SYMTAB (sym)
6846                           ? symtab_to_filename_for_display (SYMBOL_SYMTAB (sym))
6847                                 : cu->objfile->name),
6848                                this_package_name, package_name);
6849                   xfree (this_package_name);
6850                 }
6851             }
6852         }
6853     }
6854
6855   if (package_name != NULL)
6856     {
6857       struct objfile *objfile = cu->objfile;
6858       const char *saved_package_name = obstack_copy0 (&objfile->objfile_obstack,
6859                                                       package_name,
6860                                                       strlen (package_name));
6861       struct type *type = init_type (TYPE_CODE_MODULE, 0, 0,
6862                                      saved_package_name, objfile);
6863       struct symbol *sym;
6864
6865       TYPE_TAG_NAME (type) = TYPE_NAME (type);
6866
6867       sym = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct symbol);
6868       SYMBOL_SET_LANGUAGE (sym, language_go);
6869       SYMBOL_SET_NAMES (sym, saved_package_name,
6870                         strlen (saved_package_name), 0, objfile);
6871       /* This is not VAR_DOMAIN because we want a way to ensure a lookup of,
6872          e.g., "main" finds the "main" module and not C's main().  */
6873       SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
6874       SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
6875       SYMBOL_TYPE (sym) = type;
6876
6877       add_symbol_to_list (sym, &global_symbols);
6878
6879       xfree (package_name);
6880     }
6881 }
6882
6883 /* Return the symtab for PER_CU.  This works properly regardless of
6884    whether we're using the index or psymtabs.  */
6885
6886 static struct symtab *
6887 get_symtab (struct dwarf2_per_cu_data *per_cu)
6888 {
6889   return (dwarf2_per_objfile->using_index
6890           ? per_cu->v.quick->symtab
6891           : per_cu->v.psymtab->symtab);
6892 }
6893
6894 /* A helper function for computing the list of all symbol tables
6895    included by PER_CU.  */
6896
6897 static void
6898 recursively_compute_inclusions (VEC (dwarf2_per_cu_ptr) **result,
6899                                 htab_t all_children,
6900                                 struct dwarf2_per_cu_data *per_cu)
6901 {
6902   void **slot;
6903   int ix;
6904   struct dwarf2_per_cu_data *iter;
6905
6906   slot = htab_find_slot (all_children, per_cu, INSERT);
6907   if (*slot != NULL)
6908     {
6909       /* This inclusion and its children have been processed.  */
6910       return;
6911     }
6912
6913   *slot = per_cu;
6914   /* Only add a CU if it has a symbol table.  */
6915   if (get_symtab (per_cu) != NULL)
6916     VEC_safe_push (dwarf2_per_cu_ptr, *result, per_cu);
6917
6918   for (ix = 0;
6919        VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs, ix, iter);
6920        ++ix)
6921     recursively_compute_inclusions (result, all_children, iter);
6922 }
6923
6924 /* Compute the symtab 'includes' fields for the symtab related to
6925    PER_CU.  */
6926
6927 static void
6928 compute_symtab_includes (struct dwarf2_per_cu_data *per_cu)
6929 {
6930   gdb_assert (! per_cu->is_debug_types);
6931
6932   if (!VEC_empty (dwarf2_per_cu_ptr, per_cu->imported_symtabs))
6933     {
6934       int ix, len;
6935       struct dwarf2_per_cu_data *iter;
6936       VEC (dwarf2_per_cu_ptr) *result_children = NULL;
6937       htab_t all_children;
6938       struct symtab *symtab = get_symtab (per_cu);
6939
6940       /* If we don't have a symtab, we can just skip this case.  */
6941       if (symtab == NULL)
6942         return;
6943
6944       all_children = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
6945                                         NULL, xcalloc, xfree);
6946
6947       for (ix = 0;
6948            VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs,
6949                         ix, iter);
6950            ++ix)
6951         recursively_compute_inclusions (&result_children, all_children, iter);
6952
6953       /* Now we have a transitive closure of all the included CUs, and
6954          for .gdb_index version 7 the included TUs, so we can convert it
6955          to a list of symtabs.  */
6956       len = VEC_length (dwarf2_per_cu_ptr, result_children);
6957       symtab->includes
6958         = obstack_alloc (&dwarf2_per_objfile->objfile->objfile_obstack,
6959                          (len + 1) * sizeof (struct symtab *));
6960       for (ix = 0;
6961            VEC_iterate (dwarf2_per_cu_ptr, result_children, ix, iter);
6962            ++ix)
6963         symtab->includes[ix] = get_symtab (iter);
6964       symtab->includes[len] = NULL;
6965
6966       VEC_free (dwarf2_per_cu_ptr, result_children);
6967       htab_delete (all_children);
6968     }
6969 }
6970
6971 /* Compute the 'includes' field for the symtabs of all the CUs we just
6972    read.  */
6973
6974 static void
6975 process_cu_includes (void)
6976 {
6977   int ix;
6978   struct dwarf2_per_cu_data *iter;
6979
6980   for (ix = 0;
6981        VEC_iterate (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus,
6982                     ix, iter);
6983        ++ix)
6984     {
6985       if (! iter->is_debug_types)
6986         compute_symtab_includes (iter);
6987     }
6988
6989   VEC_free (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus);
6990 }
6991
6992 /* Generate full symbol information for PER_CU, whose DIEs have
6993    already been loaded into memory.  */
6994
6995 static void
6996 process_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
6997                         enum language pretend_language)
6998 {
6999   struct dwarf2_cu *cu = per_cu->cu;
7000   struct objfile *objfile = per_cu->objfile;
7001   CORE_ADDR lowpc, highpc;
7002   struct symtab *symtab;
7003   struct cleanup *back_to, *delayed_list_cleanup;
7004   CORE_ADDR baseaddr;
7005   struct block *static_block;
7006
7007   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
7008
7009   buildsym_init ();
7010   back_to = make_cleanup (really_free_pendings, NULL);
7011   delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
7012
7013   cu->list_in_scope = &file_symbols;
7014
7015   cu->language = pretend_language;
7016   cu->language_defn = language_def (cu->language);
7017
7018   /* Do line number decoding in read_file_scope () */
7019   process_die (cu->dies, cu);
7020
7021   /* For now fudge the Go package.  */
7022   if (cu->language == language_go)
7023     fixup_go_packaging (cu);
7024
7025   /* Now that we have processed all the DIEs in the CU, all the types 
7026      should be complete, and it should now be safe to compute all of the
7027      physnames.  */
7028   compute_delayed_physnames (cu);
7029   do_cleanups (delayed_list_cleanup);
7030
7031   /* Some compilers don't define a DW_AT_high_pc attribute for the
7032      compilation unit.  If the DW_AT_high_pc is missing, synthesize
7033      it, by scanning the DIE's below the compilation unit.  */
7034   get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
7035
7036   static_block
7037     = end_symtab_get_static_block (highpc + baseaddr, objfile, 0,
7038                                    per_cu->imported_symtabs != NULL);
7039
7040   /* If the comp unit has DW_AT_ranges, it may have discontiguous ranges.
7041      Also, DW_AT_ranges may record ranges not belonging to any child DIEs
7042      (such as virtual method tables).  Record the ranges in STATIC_BLOCK's
7043      addrmap to help ensure it has an accurate map of pc values belonging to
7044      this comp unit.  */
7045   dwarf2_record_block_ranges (cu->dies, static_block, baseaddr, cu);
7046
7047   symtab = end_symtab_from_static_block (static_block, objfile,
7048                                          SECT_OFF_TEXT (objfile), 0);
7049
7050   if (symtab != NULL)
7051     {
7052       int gcc_4_minor = producer_is_gcc_ge_4 (cu->producer);
7053
7054       /* Set symtab language to language from DW_AT_language.  If the
7055          compilation is from a C file generated by language preprocessors, do
7056          not set the language if it was already deduced by start_subfile.  */
7057       if (!(cu->language == language_c && symtab->language != language_c))
7058         symtab->language = cu->language;
7059
7060       /* GCC-4.0 has started to support -fvar-tracking.  GCC-3.x still can
7061          produce DW_AT_location with location lists but it can be possibly
7062          invalid without -fvar-tracking.  Still up to GCC-4.4.x incl. 4.4.0
7063          there were bugs in prologue debug info, fixed later in GCC-4.5
7064          by "unwind info for epilogues" patch (which is not directly related).
7065
7066          For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
7067          needed, it would be wrong due to missing DW_AT_producer there.
7068
7069          Still one can confuse GDB by using non-standard GCC compilation
7070          options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
7071          */ 
7072       if (cu->has_loclist && gcc_4_minor >= 5)
7073         symtab->locations_valid = 1;
7074
7075       if (gcc_4_minor >= 5)
7076         symtab->epilogue_unwind_valid = 1;
7077
7078       symtab->call_site_htab = cu->call_site_htab;
7079     }
7080
7081   if (dwarf2_per_objfile->using_index)
7082     per_cu->v.quick->symtab = symtab;
7083   else
7084     {
7085       struct partial_symtab *pst = per_cu->v.psymtab;
7086       pst->symtab = symtab;
7087       pst->readin = 1;
7088     }
7089
7090   /* Push it for inclusion processing later.  */
7091   VEC_safe_push (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus, per_cu);
7092
7093   do_cleanups (back_to);
7094 }
7095
7096 /* Generate full symbol information for type unit PER_CU, whose DIEs have
7097    already been loaded into memory.  */
7098
7099 static void
7100 process_full_type_unit (struct dwarf2_per_cu_data *per_cu,
7101                         enum language pretend_language)
7102 {
7103   struct dwarf2_cu *cu = per_cu->cu;
7104   struct objfile *objfile = per_cu->objfile;
7105   struct symtab *symtab;
7106   struct cleanup *back_to, *delayed_list_cleanup;
7107
7108   buildsym_init ();
7109   back_to = make_cleanup (really_free_pendings, NULL);
7110   delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
7111
7112   cu->list_in_scope = &file_symbols;
7113
7114   cu->language = pretend_language;
7115   cu->language_defn = language_def (cu->language);
7116
7117   /* The symbol tables are set up in read_type_unit_scope.  */
7118   process_die (cu->dies, cu);
7119
7120   /* For now fudge the Go package.  */
7121   if (cu->language == language_go)
7122     fixup_go_packaging (cu);
7123
7124   /* Now that we have processed all the DIEs in the CU, all the types 
7125      should be complete, and it should now be safe to compute all of the
7126      physnames.  */
7127   compute_delayed_physnames (cu);
7128   do_cleanups (delayed_list_cleanup);
7129
7130   /* TUs share symbol tables.
7131      If this is the first TU to use this symtab, complete the construction
7132      of it with end_expandable_symtab.  Otherwise, complete the addition of
7133      this TU's symbols to the existing symtab.  */
7134   if (per_cu->type_unit_group->primary_symtab == NULL)
7135     {
7136       symtab = end_expandable_symtab (0, objfile, SECT_OFF_TEXT (objfile));
7137       per_cu->type_unit_group->primary_symtab = symtab;
7138
7139       if (symtab != NULL)
7140         {
7141           /* Set symtab language to language from DW_AT_language.  If the
7142              compilation is from a C file generated by language preprocessors,
7143              do not set the language if it was already deduced by
7144              start_subfile.  */
7145           if (!(cu->language == language_c && symtab->language != language_c))
7146             symtab->language = cu->language;
7147         }
7148     }
7149   else
7150     {
7151       augment_type_symtab (objfile,
7152                            per_cu->type_unit_group->primary_symtab);
7153       symtab = per_cu->type_unit_group->primary_symtab;
7154     }
7155
7156   if (dwarf2_per_objfile->using_index)
7157     per_cu->v.quick->symtab = symtab;
7158   else
7159     {
7160       struct partial_symtab *pst = per_cu->v.psymtab;
7161       pst->symtab = symtab;
7162       pst->readin = 1;
7163     }
7164
7165   do_cleanups (back_to);
7166 }
7167
7168 /* Process an imported unit DIE.  */
7169
7170 static void
7171 process_imported_unit_die (struct die_info *die, struct dwarf2_cu *cu)
7172 {
7173   struct attribute *attr;
7174
7175   /* For now we don't handle imported units in type units.  */
7176   if (cu->per_cu->is_debug_types)
7177     {
7178       error (_("Dwarf Error: DW_TAG_imported_unit is not"
7179                " supported in type units [in module %s]"),
7180              cu->objfile->name);
7181     }
7182
7183   attr = dwarf2_attr (die, DW_AT_import, cu);
7184   if (attr != NULL)
7185     {
7186       struct dwarf2_per_cu_data *per_cu;
7187       struct symtab *imported_symtab;
7188       sect_offset offset;
7189       int is_dwz;
7190
7191       offset = dwarf2_get_ref_die_offset (attr);
7192       is_dwz = (attr->form == DW_FORM_GNU_ref_alt || cu->per_cu->is_dwz);
7193       per_cu = dwarf2_find_containing_comp_unit (offset, is_dwz, cu->objfile);
7194
7195       /* Queue the unit, if needed.  */
7196       if (maybe_queue_comp_unit (cu, per_cu, cu->language))
7197         load_full_comp_unit (per_cu, cu->language);
7198
7199       VEC_safe_push (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
7200                      per_cu);
7201     }
7202 }
7203
7204 /* Process a die and its children.  */
7205
7206 static void
7207 process_die (struct die_info *die, struct dwarf2_cu *cu)
7208 {
7209   switch (die->tag)
7210     {
7211     case DW_TAG_padding:
7212       break;
7213     case DW_TAG_compile_unit:
7214     case DW_TAG_partial_unit:
7215       read_file_scope (die, cu);
7216       break;
7217     case DW_TAG_type_unit:
7218       read_type_unit_scope (die, cu);
7219       break;
7220     case DW_TAG_subprogram:
7221     case DW_TAG_inlined_subroutine:
7222       read_func_scope (die, cu);
7223       break;
7224     case DW_TAG_lexical_block:
7225     case DW_TAG_try_block:
7226     case DW_TAG_catch_block:
7227       read_lexical_block_scope (die, cu);
7228       break;
7229     case DW_TAG_GNU_call_site:
7230       read_call_site_scope (die, cu);
7231       break;
7232     case DW_TAG_class_type:
7233     case DW_TAG_interface_type:
7234     case DW_TAG_structure_type:
7235     case DW_TAG_union_type:
7236       process_structure_scope (die, cu);
7237       break;
7238     case DW_TAG_enumeration_type:
7239       process_enumeration_scope (die, cu);
7240       break;
7241
7242     /* These dies have a type, but processing them does not create
7243        a symbol or recurse to process the children.  Therefore we can
7244        read them on-demand through read_type_die.  */
7245     case DW_TAG_subroutine_type:
7246     case DW_TAG_set_type:
7247     case DW_TAG_array_type:
7248     case DW_TAG_pointer_type:
7249     case DW_TAG_ptr_to_member_type:
7250     case DW_TAG_reference_type:
7251     case DW_TAG_string_type:
7252       break;
7253
7254     case DW_TAG_base_type:
7255     case DW_TAG_subrange_type:
7256     case DW_TAG_typedef:
7257       /* Add a typedef symbol for the type definition, if it has a
7258          DW_AT_name.  */
7259       new_symbol (die, read_type_die (die, cu), cu);
7260       break;
7261     case DW_TAG_common_block:
7262       read_common_block (die, cu);
7263       break;
7264     case DW_TAG_common_inclusion:
7265       break;
7266     case DW_TAG_namespace:
7267       cu->processing_has_namespace_info = 1;
7268       read_namespace (die, cu);
7269       break;
7270     case DW_TAG_module:
7271       cu->processing_has_namespace_info = 1;
7272       read_module (die, cu);
7273       break;
7274     case DW_TAG_imported_declaration:
7275     case DW_TAG_imported_module:
7276       cu->processing_has_namespace_info = 1;
7277       if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
7278                                  || cu->language != language_fortran))
7279         complaint (&symfile_complaints, _("Tag '%s' has unexpected children"),
7280                    dwarf_tag_name (die->tag));
7281       read_import_statement (die, cu);
7282       break;
7283
7284     case DW_TAG_imported_unit:
7285       process_imported_unit_die (die, cu);
7286       break;
7287
7288     default:
7289       new_symbol (die, NULL, cu);
7290       break;
7291     }
7292 }
7293 \f
7294 /* DWARF name computation.  */
7295
7296 /* A helper function for dwarf2_compute_name which determines whether DIE
7297    needs to have the name of the scope prepended to the name listed in the
7298    die.  */
7299
7300 static int
7301 die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
7302 {
7303   struct attribute *attr;
7304
7305   switch (die->tag)
7306     {
7307     case DW_TAG_namespace:
7308     case DW_TAG_typedef:
7309     case DW_TAG_class_type:
7310     case DW_TAG_interface_type:
7311     case DW_TAG_structure_type:
7312     case DW_TAG_union_type:
7313     case DW_TAG_enumeration_type:
7314     case DW_TAG_enumerator:
7315     case DW_TAG_subprogram:
7316     case DW_TAG_member:
7317       return 1;
7318
7319     case DW_TAG_variable:
7320     case DW_TAG_constant:
7321       /* We only need to prefix "globally" visible variables.  These include
7322          any variable marked with DW_AT_external or any variable that
7323          lives in a namespace.  [Variables in anonymous namespaces
7324          require prefixing, but they are not DW_AT_external.]  */
7325
7326       if (dwarf2_attr (die, DW_AT_specification, cu))
7327         {
7328           struct dwarf2_cu *spec_cu = cu;
7329
7330           return die_needs_namespace (die_specification (die, &spec_cu),
7331                                       spec_cu);
7332         }
7333
7334       attr = dwarf2_attr (die, DW_AT_external, cu);
7335       if (attr == NULL && die->parent->tag != DW_TAG_namespace
7336           && die->parent->tag != DW_TAG_module)
7337         return 0;
7338       /* A variable in a lexical block of some kind does not need a
7339          namespace, even though in C++ such variables may be external
7340          and have a mangled name.  */
7341       if (die->parent->tag ==  DW_TAG_lexical_block
7342           || die->parent->tag ==  DW_TAG_try_block
7343           || die->parent->tag ==  DW_TAG_catch_block
7344           || die->parent->tag == DW_TAG_subprogram)
7345         return 0;
7346       return 1;
7347
7348     default:
7349       return 0;
7350     }
7351 }
7352
7353 /* Retrieve the last character from a mem_file.  */
7354
7355 static void
7356 do_ui_file_peek_last (void *object, const char *buffer, long length)
7357 {
7358   char *last_char_p = (char *) object;
7359
7360   if (length > 0)
7361     *last_char_p = buffer[length - 1];
7362 }
7363
7364 /* Compute the fully qualified name of DIE in CU.  If PHYSNAME is nonzero,
7365    compute the physname for the object, which include a method's:
7366    - formal parameters (C++/Java),
7367    - receiver type (Go),
7368    - return type (Java).
7369
7370    The term "physname" is a bit confusing.
7371    For C++, for example, it is the demangled name.
7372    For Go, for example, it's the mangled name.
7373
7374    For Ada, return the DIE's linkage name rather than the fully qualified
7375    name.  PHYSNAME is ignored..
7376
7377    The result is allocated on the objfile_obstack and canonicalized.  */
7378
7379 static const char *
7380 dwarf2_compute_name (const char *name,
7381                      struct die_info *die, struct dwarf2_cu *cu,
7382                      int physname)
7383 {
7384   struct objfile *objfile = cu->objfile;
7385
7386   if (name == NULL)
7387     name = dwarf2_name (die, cu);
7388
7389   /* For Fortran GDB prefers DW_AT_*linkage_name if present but otherwise
7390      compute it by typename_concat inside GDB.  */
7391   if (cu->language == language_ada
7392       || (cu->language == language_fortran && physname))
7393     {
7394       /* For Ada unit, we prefer the linkage name over the name, as
7395          the former contains the exported name, which the user expects
7396          to be able to reference.  Ideally, we want the user to be able
7397          to reference this entity using either natural or linkage name,
7398          but we haven't started looking at this enhancement yet.  */
7399       struct attribute *attr;
7400
7401       attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
7402       if (attr == NULL)
7403         attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
7404       if (attr && DW_STRING (attr))
7405         return DW_STRING (attr);
7406     }
7407
7408   /* These are the only languages we know how to qualify names in.  */
7409   if (name != NULL
7410       && (cu->language == language_cplus || cu->language == language_java
7411           || cu->language == language_fortran))
7412     {
7413       if (die_needs_namespace (die, cu))
7414         {
7415           long length;
7416           const char *prefix;
7417           struct ui_file *buf;
7418
7419           prefix = determine_prefix (die, cu);
7420           buf = mem_fileopen ();
7421           if (*prefix != '\0')
7422             {
7423               char *prefixed_name = typename_concat (NULL, prefix, name,
7424                                                      physname, cu);
7425
7426               fputs_unfiltered (prefixed_name, buf);
7427               xfree (prefixed_name);
7428             }
7429           else
7430             fputs_unfiltered (name, buf);
7431
7432           /* Template parameters may be specified in the DIE's DW_AT_name, or
7433              as children with DW_TAG_template_type_param or
7434              DW_TAG_value_type_param.  If the latter, add them to the name
7435              here.  If the name already has template parameters, then
7436              skip this step; some versions of GCC emit both, and
7437              it is more efficient to use the pre-computed name.
7438
7439              Something to keep in mind about this process: it is very
7440              unlikely, or in some cases downright impossible, to produce
7441              something that will match the mangled name of a function.
7442              If the definition of the function has the same debug info,
7443              we should be able to match up with it anyway.  But fallbacks
7444              using the minimal symbol, for instance to find a method
7445              implemented in a stripped copy of libstdc++, will not work.
7446              If we do not have debug info for the definition, we will have to
7447              match them up some other way.
7448
7449              When we do name matching there is a related problem with function
7450              templates; two instantiated function templates are allowed to
7451              differ only by their return types, which we do not add here.  */
7452
7453           if (cu->language == language_cplus && strchr (name, '<') == NULL)
7454             {
7455               struct attribute *attr;
7456               struct die_info *child;
7457               int first = 1;
7458
7459               die->building_fullname = 1;
7460
7461               for (child = die->child; child != NULL; child = child->sibling)
7462                 {
7463                   struct type *type;
7464                   LONGEST value;
7465                   gdb_byte *bytes;
7466                   struct dwarf2_locexpr_baton *baton;
7467                   struct value *v;
7468
7469                   if (child->tag != DW_TAG_template_type_param
7470                       && child->tag != DW_TAG_template_value_param)
7471                     continue;
7472
7473                   if (first)
7474                     {
7475                       fputs_unfiltered ("<", buf);
7476                       first = 0;
7477                     }
7478                   else
7479                     fputs_unfiltered (", ", buf);
7480
7481                   attr = dwarf2_attr (child, DW_AT_type, cu);
7482                   if (attr == NULL)
7483                     {
7484                       complaint (&symfile_complaints,
7485                                  _("template parameter missing DW_AT_type"));
7486                       fputs_unfiltered ("UNKNOWN_TYPE", buf);
7487                       continue;
7488                     }
7489                   type = die_type (child, cu);
7490
7491                   if (child->tag == DW_TAG_template_type_param)
7492                     {
7493                       c_print_type (type, "", buf, -1, 0, &type_print_raw_options);
7494                       continue;
7495                     }
7496
7497                   attr = dwarf2_attr (child, DW_AT_const_value, cu);
7498                   if (attr == NULL)
7499                     {
7500                       complaint (&symfile_complaints,
7501                                  _("template parameter missing "
7502                                    "DW_AT_const_value"));
7503                       fputs_unfiltered ("UNKNOWN_VALUE", buf);
7504                       continue;
7505                     }
7506
7507                   dwarf2_const_value_attr (attr, type, name,
7508                                            &cu->comp_unit_obstack, cu,
7509                                            &value, &bytes, &baton);
7510
7511                   if (TYPE_NOSIGN (type))
7512                     /* GDB prints characters as NUMBER 'CHAR'.  If that's
7513                        changed, this can use value_print instead.  */
7514                     c_printchar (value, type, buf);
7515                   else
7516                     {
7517                       struct value_print_options opts;
7518
7519                       if (baton != NULL)
7520                         v = dwarf2_evaluate_loc_desc (type, NULL,
7521                                                       baton->data,
7522                                                       baton->size,
7523                                                       baton->per_cu);
7524                       else if (bytes != NULL)
7525                         {
7526                           v = allocate_value (type);
7527                           memcpy (value_contents_writeable (v), bytes,
7528                                   TYPE_LENGTH (type));
7529                         }
7530                       else
7531                         v = value_from_longest (type, value);
7532
7533                       /* Specify decimal so that we do not depend on
7534                          the radix.  */
7535                       get_formatted_print_options (&opts, 'd');
7536                       opts.raw = 1;
7537                       value_print (v, buf, &opts);
7538                       release_value (v);
7539                       value_free (v);
7540                     }
7541                 }
7542
7543               die->building_fullname = 0;
7544
7545               if (!first)
7546                 {
7547                   /* Close the argument list, with a space if necessary
7548                      (nested templates).  */
7549                   char last_char = '\0';
7550                   ui_file_put (buf, do_ui_file_peek_last, &last_char);
7551                   if (last_char == '>')
7552                     fputs_unfiltered (" >", buf);
7553                   else
7554                     fputs_unfiltered (">", buf);
7555                 }
7556             }
7557
7558           /* For Java and C++ methods, append formal parameter type
7559              information, if PHYSNAME.  */
7560
7561           if (physname && die->tag == DW_TAG_subprogram
7562               && (cu->language == language_cplus
7563                   || cu->language == language_java))
7564             {
7565               struct type *type = read_type_die (die, cu);
7566
7567               c_type_print_args (type, buf, 1, cu->language,
7568                                  &type_print_raw_options);
7569
7570               if (cu->language == language_java)
7571                 {
7572                   /* For java, we must append the return type to method
7573                      names.  */
7574                   if (die->tag == DW_TAG_subprogram)
7575                     java_print_type (TYPE_TARGET_TYPE (type), "", buf,
7576                                      0, 0, &type_print_raw_options);
7577                 }
7578               else if (cu->language == language_cplus)
7579                 {
7580                   /* Assume that an artificial first parameter is
7581                      "this", but do not crash if it is not.  RealView
7582                      marks unnamed (and thus unused) parameters as
7583                      artificial; there is no way to differentiate
7584                      the two cases.  */
7585                   if (TYPE_NFIELDS (type) > 0
7586                       && TYPE_FIELD_ARTIFICIAL (type, 0)
7587                       && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
7588                       && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
7589                                                                         0))))
7590                     fputs_unfiltered (" const", buf);
7591                 }
7592             }
7593
7594           name = ui_file_obsavestring (buf, &objfile->objfile_obstack,
7595                                        &length);
7596           ui_file_delete (buf);
7597
7598           if (cu->language == language_cplus)
7599             {
7600               const char *cname
7601                 = dwarf2_canonicalize_name (name, cu,
7602                                             &objfile->objfile_obstack);
7603
7604               if (cname != NULL)
7605                 name = cname;
7606             }
7607         }
7608     }
7609
7610   return name;
7611 }
7612
7613 /* Return the fully qualified name of DIE, based on its DW_AT_name.
7614    If scope qualifiers are appropriate they will be added.  The result
7615    will be allocated on the objfile_obstack, or NULL if the DIE does
7616    not have a name.  NAME may either be from a previous call to
7617    dwarf2_name or NULL.
7618
7619    The output string will be canonicalized (if C++/Java).  */
7620
7621 static const char *
7622 dwarf2_full_name (const char *name, struct die_info *die, struct dwarf2_cu *cu)
7623 {
7624   return dwarf2_compute_name (name, die, cu, 0);
7625 }
7626
7627 /* Construct a physname for the given DIE in CU.  NAME may either be
7628    from a previous call to dwarf2_name or NULL.  The result will be
7629    allocated on the objfile_objstack or NULL if the DIE does not have a
7630    name.
7631
7632    The output string will be canonicalized (if C++/Java).  */
7633
7634 static const char *
7635 dwarf2_physname (const char *name, struct die_info *die, struct dwarf2_cu *cu)
7636 {
7637   struct objfile *objfile = cu->objfile;
7638   struct attribute *attr;
7639   const char *retval, *mangled = NULL, *canon = NULL;
7640   struct cleanup *back_to;
7641   int need_copy = 1;
7642
7643   /* In this case dwarf2_compute_name is just a shortcut not building anything
7644      on its own.  */
7645   if (!die_needs_namespace (die, cu))
7646     return dwarf2_compute_name (name, die, cu, 1);
7647
7648   back_to = make_cleanup (null_cleanup, NULL);
7649
7650   attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
7651   if (!attr)
7652     attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
7653
7654   /* DW_AT_linkage_name is missing in some cases - depend on what GDB
7655      has computed.  */
7656   if (attr && DW_STRING (attr))
7657     {
7658       char *demangled;
7659
7660       mangled = DW_STRING (attr);
7661
7662       /* Use DMGL_RET_DROP for C++ template functions to suppress their return
7663          type.  It is easier for GDB users to search for such functions as
7664          `name(params)' than `long name(params)'.  In such case the minimal
7665          symbol names do not match the full symbol names but for template
7666          functions there is never a need to look up their definition from their
7667          declaration so the only disadvantage remains the minimal symbol
7668          variant `long name(params)' does not have the proper inferior type.
7669          */
7670
7671       if (cu->language == language_go)
7672         {
7673           /* This is a lie, but we already lie to the caller new_symbol_full.
7674              new_symbol_full assumes we return the mangled name.
7675              This just undoes that lie until things are cleaned up.  */
7676           demangled = NULL;
7677         }
7678       else
7679         {
7680           demangled = cplus_demangle (mangled,
7681                                       (DMGL_PARAMS | DMGL_ANSI
7682                                        | (cu->language == language_java
7683                                           ? DMGL_JAVA | DMGL_RET_POSTFIX
7684                                           : DMGL_RET_DROP)));
7685         }
7686       if (demangled)
7687         {
7688           make_cleanup (xfree, demangled);
7689           canon = demangled;
7690         }
7691       else
7692         {
7693           canon = mangled;
7694           need_copy = 0;
7695         }
7696     }
7697
7698   if (canon == NULL || check_physname)
7699     {
7700       const char *physname = dwarf2_compute_name (name, die, cu, 1);
7701
7702       if (canon != NULL && strcmp (physname, canon) != 0)
7703         {
7704           /* It may not mean a bug in GDB.  The compiler could also
7705              compute DW_AT_linkage_name incorrectly.  But in such case
7706              GDB would need to be bug-to-bug compatible.  */
7707
7708           complaint (&symfile_complaints,
7709                      _("Computed physname <%s> does not match demangled <%s> "
7710                        "(from linkage <%s>) - DIE at 0x%x [in module %s]"),
7711                      physname, canon, mangled, die->offset.sect_off, objfile->name);
7712
7713           /* Prefer DW_AT_linkage_name (in the CANON form) - when it
7714              is available here - over computed PHYSNAME.  It is safer
7715              against both buggy GDB and buggy compilers.  */
7716
7717           retval = canon;
7718         }
7719       else
7720         {
7721           retval = physname;
7722           need_copy = 0;
7723         }
7724     }
7725   else
7726     retval = canon;
7727
7728   if (need_copy)
7729     retval = obstack_copy0 (&objfile->objfile_obstack, retval, strlen (retval));
7730
7731   do_cleanups (back_to);
7732   return retval;
7733 }
7734
7735 /* Read the import statement specified by the given die and record it.  */
7736
7737 static void
7738 read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
7739 {
7740   struct objfile *objfile = cu->objfile;
7741   struct attribute *import_attr;
7742   struct die_info *imported_die, *child_die;
7743   struct dwarf2_cu *imported_cu;
7744   const char *imported_name;
7745   const char *imported_name_prefix;
7746   const char *canonical_name;
7747   const char *import_alias;
7748   const char *imported_declaration = NULL;
7749   const char *import_prefix;
7750   VEC (const_char_ptr) *excludes = NULL;
7751   struct cleanup *cleanups;
7752
7753   import_attr = dwarf2_attr (die, DW_AT_import, cu);
7754   if (import_attr == NULL)
7755     {
7756       complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
7757                  dwarf_tag_name (die->tag));
7758       return;
7759     }
7760
7761   imported_cu = cu;
7762   imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
7763   imported_name = dwarf2_name (imported_die, imported_cu);
7764   if (imported_name == NULL)
7765     {
7766       /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
7767
7768         The import in the following code:
7769         namespace A
7770           {
7771             typedef int B;
7772           }
7773
7774         int main ()
7775           {
7776             using A::B;
7777             B b;
7778             return b;
7779           }
7780
7781         ...
7782          <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
7783             <52>   DW_AT_decl_file   : 1
7784             <53>   DW_AT_decl_line   : 6
7785             <54>   DW_AT_import      : <0x75>
7786          <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
7787             <59>   DW_AT_name        : B
7788             <5b>   DW_AT_decl_file   : 1
7789             <5c>   DW_AT_decl_line   : 2
7790             <5d>   DW_AT_type        : <0x6e>
7791         ...
7792          <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
7793             <76>   DW_AT_byte_size   : 4
7794             <77>   DW_AT_encoding    : 5        (signed)
7795
7796         imports the wrong die ( 0x75 instead of 0x58 ).
7797         This case will be ignored until the gcc bug is fixed.  */
7798       return;
7799     }
7800
7801   /* Figure out the local name after import.  */
7802   import_alias = dwarf2_name (die, cu);
7803
7804   /* Figure out where the statement is being imported to.  */
7805   import_prefix = determine_prefix (die, cu);
7806
7807   /* Figure out what the scope of the imported die is and prepend it
7808      to the name of the imported die.  */
7809   imported_name_prefix = determine_prefix (imported_die, imported_cu);
7810
7811   if (imported_die->tag != DW_TAG_namespace
7812       && imported_die->tag != DW_TAG_module)
7813     {
7814       imported_declaration = imported_name;
7815       canonical_name = imported_name_prefix;
7816     }
7817   else if (strlen (imported_name_prefix) > 0)
7818     canonical_name = obconcat (&objfile->objfile_obstack,
7819                                imported_name_prefix, "::", imported_name,
7820                                (char *) NULL);
7821   else
7822     canonical_name = imported_name;
7823
7824   cleanups = make_cleanup (VEC_cleanup (const_char_ptr), &excludes);
7825
7826   if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
7827     for (child_die = die->child; child_die && child_die->tag;
7828          child_die = sibling_die (child_die))
7829       {
7830         /* DWARF-4: A Fortran use statement with a “rename list” may be
7831            represented by an imported module entry with an import attribute
7832            referring to the module and owned entries corresponding to those
7833            entities that are renamed as part of being imported.  */
7834
7835         if (child_die->tag != DW_TAG_imported_declaration)
7836           {
7837             complaint (&symfile_complaints,
7838                        _("child DW_TAG_imported_declaration expected "
7839                          "- DIE at 0x%x [in module %s]"),
7840                        child_die->offset.sect_off, objfile->name);
7841             continue;
7842           }
7843
7844         import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
7845         if (import_attr == NULL)
7846           {
7847             complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
7848                        dwarf_tag_name (child_die->tag));
7849             continue;
7850           }
7851
7852         imported_cu = cu;
7853         imported_die = follow_die_ref_or_sig (child_die, import_attr,
7854                                               &imported_cu);
7855         imported_name = dwarf2_name (imported_die, imported_cu);
7856         if (imported_name == NULL)
7857           {
7858             complaint (&symfile_complaints,
7859                        _("child DW_TAG_imported_declaration has unknown "
7860                          "imported name - DIE at 0x%x [in module %s]"),
7861                        child_die->offset.sect_off, objfile->name);
7862             continue;
7863           }
7864
7865         VEC_safe_push (const_char_ptr, excludes, imported_name);
7866
7867         process_die (child_die, cu);
7868       }
7869
7870   cp_add_using_directive (import_prefix,
7871                           canonical_name,
7872                           import_alias,
7873                           imported_declaration,
7874                           excludes,
7875                           0,
7876                           &objfile->objfile_obstack);
7877
7878   do_cleanups (cleanups);
7879 }
7880
7881 /* Cleanup function for handle_DW_AT_stmt_list.  */
7882
7883 static void
7884 free_cu_line_header (void *arg)
7885 {
7886   struct dwarf2_cu *cu = arg;
7887
7888   free_line_header (cu->line_header);
7889   cu->line_header = NULL;
7890 }
7891
7892 /* Check for possibly missing DW_AT_comp_dir with relative .debug_line
7893    directory paths.  GCC SVN r127613 (new option -fdebug-prefix-map) fixed
7894    this, it was first present in GCC release 4.3.0.  */
7895
7896 static int
7897 producer_is_gcc_lt_4_3 (struct dwarf2_cu *cu)
7898 {
7899   if (!cu->checked_producer)
7900     check_producer (cu);
7901
7902   return cu->producer_is_gcc_lt_4_3;
7903 }
7904
7905 static void
7906 find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu,
7907                          const char **name, const char **comp_dir)
7908 {
7909   struct attribute *attr;
7910
7911   *name = NULL;
7912   *comp_dir = NULL;
7913
7914   /* Find the filename.  Do not use dwarf2_name here, since the filename
7915      is not a source language identifier.  */
7916   attr = dwarf2_attr (die, DW_AT_name, cu);
7917   if (attr)
7918     {
7919       *name = DW_STRING (attr);
7920     }
7921
7922   attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
7923   if (attr)
7924     *comp_dir = DW_STRING (attr);
7925   else if (producer_is_gcc_lt_4_3 (cu) && *name != NULL
7926            && IS_ABSOLUTE_PATH (*name))
7927     {
7928       char *d = ldirname (*name);
7929
7930       *comp_dir = d;
7931       if (d != NULL)
7932         make_cleanup (xfree, d);
7933     }
7934   if (*comp_dir != NULL)
7935     {
7936       /* Irix 6.2 native cc prepends <machine>.: to the compilation
7937          directory, get rid of it.  */
7938       char *cp = strchr (*comp_dir, ':');
7939
7940       if (cp && cp != *comp_dir && cp[-1] == '.' && cp[1] == '/')
7941         *comp_dir = cp + 1;
7942     }
7943
7944   if (*name == NULL)
7945     *name = "<unknown>";
7946 }
7947
7948 /* Handle DW_AT_stmt_list for a compilation unit.
7949    DIE is the DW_TAG_compile_unit die for CU.
7950    COMP_DIR is the compilation directory.
7951    WANT_LINE_INFO is non-zero if the pc/line-number mapping is needed.  */
7952
7953 static void
7954 handle_DW_AT_stmt_list (struct die_info *die, struct dwarf2_cu *cu,
7955                         const char *comp_dir)
7956 {
7957   struct attribute *attr;
7958
7959   gdb_assert (! cu->per_cu->is_debug_types);
7960
7961   attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
7962   if (attr)
7963     {
7964       unsigned int line_offset = DW_UNSND (attr);
7965       struct line_header *line_header
7966         = dwarf_decode_line_header (line_offset, cu);
7967
7968       if (line_header)
7969         {
7970           cu->line_header = line_header;
7971           make_cleanup (free_cu_line_header, cu);
7972           dwarf_decode_lines (line_header, comp_dir, cu, NULL, 1);
7973         }
7974     }
7975 }
7976
7977 /* Process DW_TAG_compile_unit or DW_TAG_partial_unit.  */
7978
7979 static void
7980 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
7981 {
7982   struct objfile *objfile = dwarf2_per_objfile->objfile;
7983   struct cleanup *back_to = make_cleanup (null_cleanup, 0);
7984   CORE_ADDR lowpc = ((CORE_ADDR) -1);
7985   CORE_ADDR highpc = ((CORE_ADDR) 0);
7986   struct attribute *attr;
7987   const char *name = NULL;
7988   const char *comp_dir = NULL;
7989   struct die_info *child_die;
7990   bfd *abfd = objfile->obfd;
7991   CORE_ADDR baseaddr;
7992
7993   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
7994
7995   get_scope_pc_bounds (die, &lowpc, &highpc, cu);
7996
7997   /* If we didn't find a lowpc, set it to highpc to avoid complaints
7998      from finish_block.  */
7999   if (lowpc == ((CORE_ADDR) -1))
8000     lowpc = highpc;
8001   lowpc += baseaddr;
8002   highpc += baseaddr;
8003
8004   find_file_and_directory (die, cu, &name, &comp_dir);
8005
8006   prepare_one_comp_unit (cu, die, cu->language);
8007
8008   /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
8009      standardised yet.  As a workaround for the language detection we fall
8010      back to the DW_AT_producer string.  */
8011   if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
8012     cu->language = language_opencl;
8013
8014   /* Similar hack for Go.  */
8015   if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
8016     set_cu_language (DW_LANG_Go, cu);
8017
8018   dwarf2_start_symtab (cu, name, comp_dir, lowpc);
8019
8020   /* Decode line number information if present.  We do this before
8021      processing child DIEs, so that the line header table is available
8022      for DW_AT_decl_file.  */
8023   handle_DW_AT_stmt_list (die, cu, comp_dir);
8024
8025   /* Process all dies in compilation unit.  */
8026   if (die->child != NULL)
8027     {
8028       child_die = die->child;
8029       while (child_die && child_die->tag)
8030         {
8031           process_die (child_die, cu);
8032           child_die = sibling_die (child_die);
8033         }
8034     }
8035
8036   /* Decode macro information, if present.  Dwarf 2 macro information
8037      refers to information in the line number info statement program
8038      header, so we can only read it if we've read the header
8039      successfully.  */
8040   attr = dwarf2_attr (die, DW_AT_GNU_macros, cu);
8041   if (attr && cu->line_header)
8042     {
8043       if (dwarf2_attr (die, DW_AT_macro_info, cu))
8044         complaint (&symfile_complaints,
8045                    _("CU refers to both DW_AT_GNU_macros and DW_AT_macro_info"));
8046
8047       dwarf_decode_macros (cu, DW_UNSND (attr), comp_dir, 1);
8048     }
8049   else
8050     {
8051       attr = dwarf2_attr (die, DW_AT_macro_info, cu);
8052       if (attr && cu->line_header)
8053         {
8054           unsigned int macro_offset = DW_UNSND (attr);
8055
8056           dwarf_decode_macros (cu, macro_offset, comp_dir, 0);
8057         }
8058     }
8059
8060   do_cleanups (back_to);
8061 }
8062
8063 /* TU version of handle_DW_AT_stmt_list for read_type_unit_scope.
8064    Create the set of symtabs used by this TU, or if this TU is sharing
8065    symtabs with another TU and the symtabs have already been created
8066    then restore those symtabs in the line header.
8067    We don't need the pc/line-number mapping for type units.  */
8068
8069 static void
8070 setup_type_unit_groups (struct die_info *die, struct dwarf2_cu *cu)
8071 {
8072   struct objfile *objfile = dwarf2_per_objfile->objfile;
8073   struct dwarf2_per_cu_data *per_cu = cu->per_cu;
8074   struct type_unit_group *tu_group;
8075   int first_time;
8076   struct line_header *lh;
8077   struct attribute *attr;
8078   unsigned int i, line_offset;
8079
8080   gdb_assert (per_cu->is_debug_types);
8081
8082   attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
8083
8084   /* If we're using .gdb_index (includes -readnow) then
8085      per_cu->s.type_unit_group may not have been set up yet.  */
8086   if (per_cu->type_unit_group == NULL)
8087     per_cu->type_unit_group = get_type_unit_group (cu, attr);
8088   tu_group = per_cu->type_unit_group;
8089
8090   /* If we've already processed this stmt_list there's no real need to
8091      do it again, we could fake it and just recreate the part we need
8092      (file name,index -> symtab mapping).  If data shows this optimization
8093      is useful we can do it then.  */
8094   first_time = tu_group->primary_symtab == NULL;
8095
8096   /* We have to handle the case of both a missing DW_AT_stmt_list or bad
8097      debug info.  */
8098   lh = NULL;
8099   if (attr != NULL)
8100     {
8101       line_offset = DW_UNSND (attr);
8102       lh = dwarf_decode_line_header (line_offset, cu);
8103     }
8104   if (lh == NULL)
8105     {
8106       if (first_time)
8107         dwarf2_start_symtab (cu, "", NULL, 0);
8108       else
8109         {
8110           gdb_assert (tu_group->symtabs == NULL);
8111           restart_symtab (0);
8112         }
8113       /* Note: The primary symtab will get allocated at the end.  */
8114       return;
8115     }
8116
8117   cu->line_header = lh;
8118   make_cleanup (free_cu_line_header, cu);
8119
8120   if (first_time)
8121     {
8122       dwarf2_start_symtab (cu, "", NULL, 0);
8123
8124       tu_group->num_symtabs = lh->num_file_names;
8125       tu_group->symtabs = XNEWVEC (struct symtab *, lh->num_file_names);
8126
8127       for (i = 0; i < lh->num_file_names; ++i)
8128         {
8129           char *dir = NULL;
8130           struct file_entry *fe = &lh->file_names[i];
8131
8132           if (fe->dir_index)
8133             dir = lh->include_dirs[fe->dir_index - 1];
8134           dwarf2_start_subfile (fe->name, dir, NULL);
8135
8136           /* Note: We don't have to watch for the main subfile here, type units
8137              don't have DW_AT_name.  */
8138
8139           if (current_subfile->symtab == NULL)
8140             {
8141               /* NOTE: start_subfile will recognize when it's been passed
8142                  a file it has already seen.  So we can't assume there's a
8143                  simple mapping from lh->file_names to subfiles,
8144                  lh->file_names may contain dups.  */
8145               current_subfile->symtab = allocate_symtab (current_subfile->name,
8146                                                          objfile);
8147             }
8148
8149           fe->symtab = current_subfile->symtab;
8150           tu_group->symtabs[i] = fe->symtab;
8151         }
8152     }
8153   else
8154     {
8155       restart_symtab (0);
8156
8157       for (i = 0; i < lh->num_file_names; ++i)
8158         {
8159           struct file_entry *fe = &lh->file_names[i];
8160
8161           fe->symtab = tu_group->symtabs[i];
8162         }
8163     }
8164
8165   /* The main symtab is allocated last.  Type units don't have DW_AT_name
8166      so they don't have a "real" (so to speak) symtab anyway.
8167      There is later code that will assign the main symtab to all symbols
8168      that don't have one.  We need to handle the case of a symbol with a
8169      missing symtab (DW_AT_decl_file) anyway.  */
8170 }
8171
8172 /* Process DW_TAG_type_unit.
8173    For TUs we want to skip the first top level sibling if it's not the
8174    actual type being defined by this TU.  In this case the first top
8175    level sibling is there to provide context only.  */
8176
8177 static void
8178 read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
8179 {
8180   struct die_info *child_die;
8181
8182   prepare_one_comp_unit (cu, die, language_minimal);
8183
8184   /* Initialize (or reinitialize) the machinery for building symtabs.
8185      We do this before processing child DIEs, so that the line header table
8186      is available for DW_AT_decl_file.  */
8187   setup_type_unit_groups (die, cu);
8188
8189   if (die->child != NULL)
8190     {
8191       child_die = die->child;
8192       while (child_die && child_die->tag)
8193         {
8194           process_die (child_die, cu);
8195           child_die = sibling_die (child_die);
8196         }
8197     }
8198 }
8199 \f
8200 /* DWO/DWP files.
8201
8202    http://gcc.gnu.org/wiki/DebugFission
8203    http://gcc.gnu.org/wiki/DebugFissionDWP
8204
8205    To simplify handling of both DWO files ("object" files with the DWARF info)
8206    and DWP files (a file with the DWOs packaged up into one file), we treat
8207    DWP files as having a collection of virtual DWO files.  */
8208
8209 static hashval_t
8210 hash_dwo_file (const void *item)
8211 {
8212   const struct dwo_file *dwo_file = item;
8213
8214   return htab_hash_string (dwo_file->name);
8215 }
8216
8217 static int
8218 eq_dwo_file (const void *item_lhs, const void *item_rhs)
8219 {
8220   const struct dwo_file *lhs = item_lhs;
8221   const struct dwo_file *rhs = item_rhs;
8222
8223   return strcmp (lhs->name, rhs->name) == 0;
8224 }
8225
8226 /* Allocate a hash table for DWO files.  */
8227
8228 static htab_t
8229 allocate_dwo_file_hash_table (void)
8230 {
8231   struct objfile *objfile = dwarf2_per_objfile->objfile;
8232
8233   return htab_create_alloc_ex (41,
8234                                hash_dwo_file,
8235                                eq_dwo_file,
8236                                NULL,
8237                                &objfile->objfile_obstack,
8238                                hashtab_obstack_allocate,
8239                                dummy_obstack_deallocate);
8240 }
8241
8242 /* Lookup DWO file DWO_NAME.  */
8243
8244 static void **
8245 lookup_dwo_file_slot (const char *dwo_name)
8246 {
8247   struct dwo_file find_entry;
8248   void **slot;
8249
8250   if (dwarf2_per_objfile->dwo_files == NULL)
8251     dwarf2_per_objfile->dwo_files = allocate_dwo_file_hash_table ();
8252
8253   memset (&find_entry, 0, sizeof (find_entry));
8254   find_entry.name = dwo_name;
8255   slot = htab_find_slot (dwarf2_per_objfile->dwo_files, &find_entry, INSERT);
8256
8257   return slot;
8258 }
8259
8260 static hashval_t
8261 hash_dwo_unit (const void *item)
8262 {
8263   const struct dwo_unit *dwo_unit = item;
8264
8265   /* This drops the top 32 bits of the id, but is ok for a hash.  */
8266   return dwo_unit->signature;
8267 }
8268
8269 static int
8270 eq_dwo_unit (const void *item_lhs, const void *item_rhs)
8271 {
8272   const struct dwo_unit *lhs = item_lhs;
8273   const struct dwo_unit *rhs = item_rhs;
8274
8275   /* The signature is assumed to be unique within the DWO file.
8276      So while object file CU dwo_id's always have the value zero,
8277      that's OK, assuming each object file DWO file has only one CU,
8278      and that's the rule for now.  */
8279   return lhs->signature == rhs->signature;
8280 }
8281
8282 /* Allocate a hash table for DWO CUs,TUs.
8283    There is one of these tables for each of CUs,TUs for each DWO file.  */
8284
8285 static htab_t
8286 allocate_dwo_unit_table (struct objfile *objfile)
8287 {
8288   /* Start out with a pretty small number.
8289      Generally DWO files contain only one CU and maybe some TUs.  */
8290   return htab_create_alloc_ex (3,
8291                                hash_dwo_unit,
8292                                eq_dwo_unit,
8293                                NULL,
8294                                &objfile->objfile_obstack,
8295                                hashtab_obstack_allocate,
8296                                dummy_obstack_deallocate);
8297 }
8298
8299 /* Structure used to pass data to create_dwo_debug_info_hash_table_reader.  */
8300
8301 struct create_dwo_info_table_data
8302 {
8303   struct dwo_file *dwo_file;
8304   htab_t cu_htab;
8305 };
8306
8307 /* die_reader_func for create_dwo_debug_info_hash_table.  */
8308
8309 static void
8310 create_dwo_debug_info_hash_table_reader (const struct die_reader_specs *reader,
8311                                          gdb_byte *info_ptr,
8312                                          struct die_info *comp_unit_die,
8313                                          int has_children,
8314                                          void *datap)
8315 {
8316   struct dwarf2_cu *cu = reader->cu;
8317   struct objfile *objfile = dwarf2_per_objfile->objfile;
8318   sect_offset offset = cu->per_cu->offset;
8319   struct dwarf2_section_info *section = cu->per_cu->section;
8320   struct create_dwo_info_table_data *data = datap;
8321   struct dwo_file *dwo_file = data->dwo_file;
8322   htab_t cu_htab = data->cu_htab;
8323   void **slot;
8324   struct attribute *attr;
8325   struct dwo_unit *dwo_unit;
8326
8327   attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
8328   if (attr == NULL)
8329     {
8330       error (_("Dwarf Error: debug entry at offset 0x%x is missing"
8331                " its dwo_id [in module %s]"),
8332              offset.sect_off, dwo_file->name);
8333       return;
8334     }
8335
8336   dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
8337   dwo_unit->dwo_file = dwo_file;
8338   dwo_unit->signature = DW_UNSND (attr);
8339   dwo_unit->section = section;
8340   dwo_unit->offset = offset;
8341   dwo_unit->length = cu->per_cu->length;
8342
8343   slot = htab_find_slot (cu_htab, dwo_unit, INSERT);
8344   gdb_assert (slot != NULL);
8345   if (*slot != NULL)
8346     {
8347       const struct dwo_unit *dup_dwo_unit = *slot;
8348
8349       complaint (&symfile_complaints,
8350                  _("debug entry at offset 0x%x is duplicate to the entry at"
8351                    " offset 0x%x, dwo_id 0x%s [in module %s]"),
8352                  offset.sect_off, dup_dwo_unit->offset.sect_off,
8353                  phex (dwo_unit->signature, sizeof (dwo_unit->signature)),
8354                  dwo_file->name);
8355     }
8356   else
8357     *slot = dwo_unit;
8358
8359   if (dwarf2_read_debug)
8360     fprintf_unfiltered (gdb_stdlog, "  offset 0x%x, dwo_id 0x%s\n",
8361                         offset.sect_off,
8362                         phex (dwo_unit->signature,
8363                               sizeof (dwo_unit->signature)));
8364 }
8365
8366 /* Create a hash table to map DWO IDs to their CU entry in
8367    .debug_info.dwo in DWO_FILE.
8368    Note: This function processes DWO files only, not DWP files.  */
8369
8370 static htab_t
8371 create_dwo_debug_info_hash_table (struct dwo_file *dwo_file)
8372 {
8373   struct objfile *objfile = dwarf2_per_objfile->objfile;
8374   struct dwarf2_section_info *section = &dwo_file->sections.info;
8375   bfd *abfd;
8376   htab_t cu_htab;
8377   gdb_byte *info_ptr, *end_ptr;
8378   struct create_dwo_info_table_data create_dwo_info_table_data;
8379
8380   dwarf2_read_section (objfile, section);
8381   info_ptr = section->buffer;
8382
8383   if (info_ptr == NULL)
8384     return NULL;
8385
8386   /* We can't set abfd until now because the section may be empty or
8387      not present, in which case section->asection will be NULL.  */
8388   abfd = section->asection->owner;
8389
8390   if (dwarf2_read_debug)
8391     fprintf_unfiltered (gdb_stdlog, "Reading .debug_info.dwo for %s:\n",
8392                         bfd_get_filename (abfd));
8393
8394   cu_htab = allocate_dwo_unit_table (objfile);
8395
8396   create_dwo_info_table_data.dwo_file = dwo_file;
8397   create_dwo_info_table_data.cu_htab = cu_htab;
8398
8399   end_ptr = info_ptr + section->size;
8400   while (info_ptr < end_ptr)
8401     {
8402       struct dwarf2_per_cu_data per_cu;
8403
8404       memset (&per_cu, 0, sizeof (per_cu));
8405       per_cu.objfile = objfile;
8406       per_cu.is_debug_types = 0;
8407       per_cu.offset.sect_off = info_ptr - section->buffer;
8408       per_cu.section = section;
8409
8410       init_cutu_and_read_dies_no_follow (&per_cu,
8411                                          &dwo_file->sections.abbrev,
8412                                          dwo_file,
8413                                          create_dwo_debug_info_hash_table_reader,
8414                                          &create_dwo_info_table_data);
8415
8416       info_ptr += per_cu.length;
8417     }
8418
8419   return cu_htab;
8420 }
8421
8422 /* DWP file .debug_{cu,tu}_index section format:
8423    [ref: http://gcc.gnu.org/wiki/DebugFissionDWP]
8424
8425    Both index sections have the same format, and serve to map a 64-bit
8426    signature to a set of section numbers.  Each section begins with a header,
8427    followed by a hash table of 64-bit signatures, a parallel table of 32-bit
8428    indexes, and a pool of 32-bit section numbers.  The index sections will be
8429    aligned at 8-byte boundaries in the file.
8430
8431    The index section header contains two unsigned 32-bit values (using the
8432    byte order of the application binary):
8433
8434     N, the number of compilation units or type units in the index
8435     M, the number of slots in the hash table
8436
8437   (We assume that N and M will not exceed 2^32 - 1.)
8438
8439   The size of the hash table, M, must be 2^k such that 2^k > 3*N/2.
8440
8441   The hash table begins at offset 8 in the section, and consists of an array
8442   of M 64-bit slots.  Each slot contains a 64-bit signature (using the byte
8443   order of the application binary).  Unused slots in the hash table are 0.
8444   (We rely on the extreme unlikeliness of a signature being exactly 0.)
8445
8446   The parallel table begins immediately after the hash table
8447   (at offset 8 + 8 * M from the beginning of the section), and consists of an
8448   array of 32-bit indexes (using the byte order of the application binary),
8449   corresponding 1-1 with slots in the hash table.  Each entry in the parallel
8450   table contains a 32-bit index into the pool of section numbers.  For unused
8451   hash table slots, the corresponding entry in the parallel table will be 0.
8452
8453   Given a 64-bit compilation unit signature or a type signature S, an entry
8454   in the hash table is located as follows:
8455
8456   1) Calculate a primary hash H = S & MASK(k), where MASK(k) is a mask with
8457      the low-order k bits all set to 1.
8458
8459   2) Calculate a secondary hash H' = (((S >> 32) & MASK(k)) | 1).
8460
8461   3) If the hash table entry at index H matches the signature, use that
8462      entry.  If the hash table entry at index H is unused (all zeroes),
8463      terminate the search: the signature is not present in the table.
8464
8465   4) Let H = (H + H') modulo M. Repeat at Step 3.
8466
8467   Because M > N and H' and M are relatively prime, the search is guaranteed
8468   to stop at an unused slot or find the match.
8469
8470   The pool of section numbers begins immediately following the hash table
8471   (at offset 8 + 12 * M from the beginning of the section).  The pool of
8472   section numbers consists of an array of 32-bit words (using the byte order
8473   of the application binary).  Each item in the array is indexed starting
8474   from 0.  The hash table entry provides the index of the first section
8475   number in the set.  Additional section numbers in the set follow, and the
8476   set is terminated by a 0 entry (section number 0 is not used in ELF).
8477
8478   In each set of section numbers, the .debug_info.dwo or .debug_types.dwo
8479   section must be the first entry in the set, and the .debug_abbrev.dwo must
8480   be the second entry. Other members of the set may follow in any order.  */
8481
8482 /* Create a hash table to map DWO IDs to their CU/TU entry in
8483    .debug_{info,types}.dwo in DWP_FILE.
8484    Returns NULL if there isn't one.
8485    Note: This function processes DWP files only, not DWO files.  */
8486
8487 static struct dwp_hash_table *
8488 create_dwp_hash_table (struct dwp_file *dwp_file, int is_debug_types)
8489 {
8490   struct objfile *objfile = dwarf2_per_objfile->objfile;
8491   bfd *dbfd = dwp_file->dbfd;
8492   char *index_ptr, *index_end;
8493   struct dwarf2_section_info *index;
8494   uint32_t version, nr_units, nr_slots;
8495   struct dwp_hash_table *htab;
8496
8497   if (is_debug_types)
8498     index = &dwp_file->sections.tu_index;
8499   else
8500     index = &dwp_file->sections.cu_index;
8501
8502   if (dwarf2_section_empty_p (index))
8503     return NULL;
8504   dwarf2_read_section (objfile, index);
8505
8506   index_ptr = index->buffer;
8507   index_end = index_ptr + index->size;
8508
8509   version = read_4_bytes (dbfd, index_ptr);
8510   index_ptr += 8; /* Skip the unused word.  */
8511   nr_units = read_4_bytes (dbfd, index_ptr);
8512   index_ptr += 4;
8513   nr_slots = read_4_bytes (dbfd, index_ptr);
8514   index_ptr += 4;
8515
8516   if (version != 1)
8517     {
8518       error (_("Dwarf Error: unsupported DWP file version (%u)"
8519                " [in module %s]"),
8520              version, dwp_file->name);
8521     }
8522   if (nr_slots != (nr_slots & -nr_slots))
8523     {
8524       error (_("Dwarf Error: number of slots in DWP hash table (%u)"
8525                " is not power of 2 [in module %s]"),
8526              nr_slots, dwp_file->name);
8527     }
8528
8529   htab = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_hash_table);
8530   htab->nr_units = nr_units;
8531   htab->nr_slots = nr_slots;
8532   htab->hash_table = index_ptr;
8533   htab->unit_table = htab->hash_table + sizeof (uint64_t) * nr_slots;
8534   htab->section_pool = htab->unit_table + sizeof (uint32_t) * nr_slots;
8535
8536   return htab;
8537 }
8538
8539 /* Update SECTIONS with the data from SECTP.
8540
8541    This function is like the other "locate" section routines that are
8542    passed to bfd_map_over_sections, but in this context the sections to
8543    read comes from the DWP hash table, not the full ELF section table.
8544
8545    The result is non-zero for success, or zero if an error was found.  */
8546
8547 static int
8548 locate_virtual_dwo_sections (asection *sectp,
8549                              struct virtual_dwo_sections *sections)
8550 {
8551   const struct dwop_section_names *names = &dwop_section_names;
8552
8553   if (section_is_p (sectp->name, &names->abbrev_dwo))
8554     {
8555       /* There can be only one.  */
8556       if (sections->abbrev.asection != NULL)
8557         return 0;
8558       sections->abbrev.asection = sectp;
8559       sections->abbrev.size = bfd_get_section_size (sectp);
8560     }
8561   else if (section_is_p (sectp->name, &names->info_dwo)
8562            || section_is_p (sectp->name, &names->types_dwo))
8563     {
8564       /* There can be only one.  */
8565       if (sections->info_or_types.asection != NULL)
8566         return 0;
8567       sections->info_or_types.asection = sectp;
8568       sections->info_or_types.size = bfd_get_section_size (sectp);
8569     }
8570   else if (section_is_p (sectp->name, &names->line_dwo))
8571     {
8572       /* There can be only one.  */
8573       if (sections->line.asection != NULL)
8574         return 0;
8575       sections->line.asection = sectp;
8576       sections->line.size = bfd_get_section_size (sectp);
8577     }
8578   else if (section_is_p (sectp->name, &names->loc_dwo))
8579     {
8580       /* There can be only one.  */
8581       if (sections->loc.asection != NULL)
8582         return 0;
8583       sections->loc.asection = sectp;
8584       sections->loc.size = bfd_get_section_size (sectp);
8585     }
8586   else if (section_is_p (sectp->name, &names->macinfo_dwo))
8587     {
8588       /* There can be only one.  */
8589       if (sections->macinfo.asection != NULL)
8590         return 0;
8591       sections->macinfo.asection = sectp;
8592       sections->macinfo.size = bfd_get_section_size (sectp);
8593     }
8594   else if (section_is_p (sectp->name, &names->macro_dwo))
8595     {
8596       /* There can be only one.  */
8597       if (sections->macro.asection != NULL)
8598         return 0;
8599       sections->macro.asection = sectp;
8600       sections->macro.size = bfd_get_section_size (sectp);
8601     }
8602   else if (section_is_p (sectp->name, &names->str_offsets_dwo))
8603     {
8604       /* There can be only one.  */
8605       if (sections->str_offsets.asection != NULL)
8606         return 0;
8607       sections->str_offsets.asection = sectp;
8608       sections->str_offsets.size = bfd_get_section_size (sectp);
8609     }
8610   else
8611     {
8612       /* No other kind of section is valid.  */
8613       return 0;
8614     }
8615
8616   return 1;
8617 }
8618
8619 /* Create a dwo_unit object for the DWO with signature SIGNATURE.
8620    HTAB is the hash table from the DWP file.
8621    SECTION_INDEX is the index of the DWO in HTAB.  */
8622
8623 static struct dwo_unit *
8624 create_dwo_in_dwp (struct dwp_file *dwp_file,
8625                    const struct dwp_hash_table *htab,
8626                    uint32_t section_index,
8627                    ULONGEST signature, int is_debug_types)
8628 {
8629   struct objfile *objfile = dwarf2_per_objfile->objfile;
8630   bfd *dbfd = dwp_file->dbfd;
8631   const char *kind = is_debug_types ? "TU" : "CU";
8632   struct dwo_file *dwo_file;
8633   struct dwo_unit *dwo_unit;
8634   struct virtual_dwo_sections sections;
8635   void **dwo_file_slot;
8636   char *virtual_dwo_name;
8637   struct dwarf2_section_info *cutu;
8638   struct cleanup *cleanups;
8639   int i;
8640
8641   if (dwarf2_read_debug)
8642     {
8643       fprintf_unfiltered (gdb_stdlog, "Reading %s %u/0x%s in DWP file: %s\n",
8644                           kind,
8645                           section_index, phex (signature, sizeof (signature)),
8646                           dwp_file->name);
8647     }
8648
8649   /* Fetch the sections of this DWO.
8650      Put a limit on the number of sections we look for so that bad data
8651      doesn't cause us to loop forever.  */
8652
8653 #define MAX_NR_DWO_SECTIONS \
8654   (1 /* .debug_info or .debug_types */ \
8655    + 1 /* .debug_abbrev */ \
8656    + 1 /* .debug_line */ \
8657    + 1 /* .debug_loc */ \
8658    + 1 /* .debug_str_offsets */ \
8659    + 1 /* .debug_macro */ \
8660    + 1 /* .debug_macinfo */ \
8661    + 1 /* trailing zero */)
8662
8663   memset (&sections, 0, sizeof (sections));
8664   cleanups = make_cleanup (null_cleanup, 0);
8665
8666   for (i = 0; i < MAX_NR_DWO_SECTIONS; ++i)
8667     {
8668       asection *sectp;
8669       uint32_t section_nr =
8670         read_4_bytes (dbfd,
8671                       htab->section_pool
8672                       + (section_index + i) * sizeof (uint32_t));
8673
8674       if (section_nr == 0)
8675         break;
8676       if (section_nr >= dwp_file->num_sections)
8677         {
8678           error (_("Dwarf Error: bad DWP hash table, section number too large"
8679                    " [in module %s]"),
8680                  dwp_file->name);
8681         }
8682
8683       sectp = dwp_file->elf_sections[section_nr];
8684       if (! locate_virtual_dwo_sections (sectp, &sections))
8685         {
8686           error (_("Dwarf Error: bad DWP hash table, invalid section found"
8687                    " [in module %s]"),
8688                  dwp_file->name);
8689         }
8690     }
8691
8692   if (i < 2
8693       || sections.info_or_types.asection == NULL
8694       || sections.abbrev.asection == NULL)
8695     {
8696       error (_("Dwarf Error: bad DWP hash table, missing DWO sections"
8697                " [in module %s]"),
8698              dwp_file->name);
8699     }
8700   if (i == MAX_NR_DWO_SECTIONS)
8701     {
8702       error (_("Dwarf Error: bad DWP hash table, too many DWO sections"
8703                " [in module %s]"),
8704              dwp_file->name);
8705     }
8706
8707   /* It's easier for the rest of the code if we fake a struct dwo_file and
8708      have dwo_unit "live" in that.  At least for now.
8709
8710      The DWP file can be made up of a random collection of CUs and TUs.
8711      However, for each CU + set of TUs that came from the same original DWO
8712      file, we want to combine them back into a virtual DWO file to save space
8713      (fewer struct dwo_file objects to allocated).  Remember that for really
8714      large apps there can be on the order of 8K CUs and 200K TUs, or more.  */
8715
8716   virtual_dwo_name =
8717     xstrprintf ("virtual-dwo/%d-%d-%d-%d",
8718                 sections.abbrev.asection ? sections.abbrev.asection->id : 0,
8719                 sections.line.asection ? sections.line.asection->id : 0,
8720                 sections.loc.asection ? sections.loc.asection->id : 0,
8721                 (sections.str_offsets.asection
8722                 ? sections.str_offsets.asection->id
8723                 : 0));
8724   make_cleanup (xfree, virtual_dwo_name);
8725   /* Can we use an existing virtual DWO file?  */
8726   dwo_file_slot = lookup_dwo_file_slot (virtual_dwo_name);
8727   /* Create one if necessary.  */
8728   if (*dwo_file_slot == NULL)
8729     {
8730       if (dwarf2_read_debug)
8731         {
8732           fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
8733                               virtual_dwo_name);
8734         }
8735       dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
8736       dwo_file->name = obstack_copy0 (&objfile->objfile_obstack,
8737                                       virtual_dwo_name,
8738                                       strlen (virtual_dwo_name));
8739       dwo_file->sections.abbrev = sections.abbrev;
8740       dwo_file->sections.line = sections.line;
8741       dwo_file->sections.loc = sections.loc;
8742       dwo_file->sections.macinfo = sections.macinfo;
8743       dwo_file->sections.macro = sections.macro;
8744       dwo_file->sections.str_offsets = sections.str_offsets;
8745       /* The "str" section is global to the entire DWP file.  */
8746       dwo_file->sections.str = dwp_file->sections.str;
8747       /* The info or types section is assigned later to dwo_unit,
8748          there's no need to record it in dwo_file.
8749          Also, we can't simply record type sections in dwo_file because
8750          we record a pointer into the vector in dwo_unit.  As we collect more
8751          types we'll grow the vector and eventually have to reallocate space
8752          for it, invalidating all the pointers into the current copy.  */
8753       *dwo_file_slot = dwo_file;
8754     }
8755   else
8756     {
8757       if (dwarf2_read_debug)
8758         {
8759           fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
8760                               virtual_dwo_name);
8761         }
8762       dwo_file = *dwo_file_slot;
8763     }
8764   do_cleanups (cleanups);
8765
8766   dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
8767   dwo_unit->dwo_file = dwo_file;
8768   dwo_unit->signature = signature;
8769   dwo_unit->section = obstack_alloc (&objfile->objfile_obstack,
8770                                      sizeof (struct dwarf2_section_info));
8771   *dwo_unit->section = sections.info_or_types;
8772   /* offset, length, type_offset_in_tu are set later.  */
8773
8774   return dwo_unit;
8775 }
8776
8777 /* Lookup the DWO with SIGNATURE in DWP_FILE.  */
8778
8779 static struct dwo_unit *
8780 lookup_dwo_in_dwp (struct dwp_file *dwp_file,
8781                    const struct dwp_hash_table *htab,
8782                    ULONGEST signature, int is_debug_types)
8783 {
8784   bfd *dbfd = dwp_file->dbfd;
8785   uint32_t mask = htab->nr_slots - 1;
8786   uint32_t hash = signature & mask;
8787   uint32_t hash2 = ((signature >> 32) & mask) | 1;
8788   unsigned int i;
8789   void **slot;
8790   struct dwo_unit find_dwo_cu, *dwo_cu;
8791
8792   memset (&find_dwo_cu, 0, sizeof (find_dwo_cu));
8793   find_dwo_cu.signature = signature;
8794   slot = htab_find_slot (dwp_file->loaded_cutus, &find_dwo_cu, INSERT);
8795
8796   if (*slot != NULL)
8797     return *slot;
8798
8799   /* Use a for loop so that we don't loop forever on bad debug info.  */
8800   for (i = 0; i < htab->nr_slots; ++i)
8801     {
8802       ULONGEST signature_in_table;
8803
8804       signature_in_table =
8805         read_8_bytes (dbfd, htab->hash_table + hash * sizeof (uint64_t));
8806       if (signature_in_table == signature)
8807         {
8808           uint32_t section_index =
8809             read_4_bytes (dbfd, htab->unit_table + hash * sizeof (uint32_t));
8810
8811           *slot = create_dwo_in_dwp (dwp_file, htab, section_index,
8812                                      signature, is_debug_types);
8813           return *slot;
8814         }
8815       if (signature_in_table == 0)
8816         return NULL;
8817       hash = (hash + hash2) & mask;
8818     }
8819
8820   error (_("Dwarf Error: bad DWP hash table, lookup didn't terminate"
8821            " [in module %s]"),
8822          dwp_file->name);
8823 }
8824
8825 /* Subroutine of open_dwop_file to simplify it.
8826    Open the file specified by FILE_NAME and hand it off to BFD for
8827    preliminary analysis.  Return a newly initialized bfd *, which
8828    includes a canonicalized copy of FILE_NAME.
8829    If IS_DWP is TRUE, we're opening a DWP file, otherwise a DWO file.
8830    In case of trouble, return NULL.
8831    NOTE: This function is derived from symfile_bfd_open.  */
8832
8833 static bfd *
8834 try_open_dwop_file (const char *file_name, int is_dwp)
8835 {
8836   bfd *sym_bfd;
8837   int desc, flags;
8838   char *absolute_name;
8839
8840   flags = OPF_TRY_CWD_FIRST;
8841   if (is_dwp)
8842     flags |= OPF_SEARCH_IN_PATH;
8843   desc = openp (debug_file_directory, flags, file_name,
8844                 O_RDONLY | O_BINARY, &absolute_name);
8845   if (desc < 0)
8846     return NULL;
8847
8848   sym_bfd = gdb_bfd_open (absolute_name, gnutarget, desc);
8849   if (!sym_bfd)
8850     {
8851       xfree (absolute_name);
8852       return NULL;
8853     }
8854   xfree (absolute_name);
8855   bfd_set_cacheable (sym_bfd, 1);
8856
8857   if (!bfd_check_format (sym_bfd, bfd_object))
8858     {
8859       gdb_bfd_unref (sym_bfd); /* This also closes desc.  */
8860       return NULL;
8861     }
8862
8863   return sym_bfd;
8864 }
8865
8866 /* Try to open DWO/DWP file FILE_NAME.
8867    COMP_DIR is the DW_AT_comp_dir attribute.
8868    If IS_DWP is TRUE, we're opening a DWP file, otherwise a DWO file.
8869    The result is the bfd handle of the file.
8870    If there is a problem finding or opening the file, return NULL.
8871    Upon success, the canonicalized path of the file is stored in the bfd,
8872    same as symfile_bfd_open.  */
8873
8874 static bfd *
8875 open_dwop_file (const char *file_name, const char *comp_dir, int is_dwp)
8876 {
8877   bfd *abfd;
8878
8879   if (IS_ABSOLUTE_PATH (file_name))
8880     return try_open_dwop_file (file_name, is_dwp);
8881
8882   /* Before trying the search path, try DWO_NAME in COMP_DIR.  */
8883
8884   if (comp_dir != NULL)
8885     {
8886       char *path_to_try = concat (comp_dir, SLASH_STRING, file_name, NULL);
8887
8888       /* NOTE: If comp_dir is a relative path, this will also try the
8889          search path, which seems useful.  */
8890       abfd = try_open_dwop_file (path_to_try, is_dwp);
8891       xfree (path_to_try);
8892       if (abfd != NULL)
8893         return abfd;
8894     }
8895
8896   /* That didn't work, try debug-file-directory, which, despite its name,
8897      is a list of paths.  */
8898
8899   if (*debug_file_directory == '\0')
8900     return NULL;
8901
8902   return try_open_dwop_file (file_name, is_dwp);
8903 }
8904
8905 /* This function is mapped across the sections and remembers the offset and
8906    size of each of the DWO debugging sections we are interested in.  */
8907
8908 static void
8909 dwarf2_locate_dwo_sections (bfd *abfd, asection *sectp, void *dwo_sections_ptr)
8910 {
8911   struct dwo_sections *dwo_sections = dwo_sections_ptr;
8912   const struct dwop_section_names *names = &dwop_section_names;
8913
8914   if (section_is_p (sectp->name, &names->abbrev_dwo))
8915     {
8916       dwo_sections->abbrev.asection = sectp;
8917       dwo_sections->abbrev.size = bfd_get_section_size (sectp);
8918     }
8919   else if (section_is_p (sectp->name, &names->info_dwo))
8920     {
8921       dwo_sections->info.asection = sectp;
8922       dwo_sections->info.size = bfd_get_section_size (sectp);
8923     }
8924   else if (section_is_p (sectp->name, &names->line_dwo))
8925     {
8926       dwo_sections->line.asection = sectp;
8927       dwo_sections->line.size = bfd_get_section_size (sectp);
8928     }
8929   else if (section_is_p (sectp->name, &names->loc_dwo))
8930     {
8931       dwo_sections->loc.asection = sectp;
8932       dwo_sections->loc.size = bfd_get_section_size (sectp);
8933     }
8934   else if (section_is_p (sectp->name, &names->macinfo_dwo))
8935     {
8936       dwo_sections->macinfo.asection = sectp;
8937       dwo_sections->macinfo.size = bfd_get_section_size (sectp);
8938     }
8939   else if (section_is_p (sectp->name, &names->macro_dwo))
8940     {
8941       dwo_sections->macro.asection = sectp;
8942       dwo_sections->macro.size = bfd_get_section_size (sectp);
8943     }
8944   else if (section_is_p (sectp->name, &names->str_dwo))
8945     {
8946       dwo_sections->str.asection = sectp;
8947       dwo_sections->str.size = bfd_get_section_size (sectp);
8948     }
8949   else if (section_is_p (sectp->name, &names->str_offsets_dwo))
8950     {
8951       dwo_sections->str_offsets.asection = sectp;
8952       dwo_sections->str_offsets.size = bfd_get_section_size (sectp);
8953     }
8954   else if (section_is_p (sectp->name, &names->types_dwo))
8955     {
8956       struct dwarf2_section_info type_section;
8957
8958       memset (&type_section, 0, sizeof (type_section));
8959       type_section.asection = sectp;
8960       type_section.size = bfd_get_section_size (sectp);
8961       VEC_safe_push (dwarf2_section_info_def, dwo_sections->types,
8962                      &type_section);
8963     }
8964 }
8965
8966 /* Initialize the use of the DWO file specified by DWO_NAME.
8967    The result is NULL if DWO_NAME can't be found.  */
8968
8969 static struct dwo_file *
8970 open_and_init_dwo_file (const char *dwo_name, const char *comp_dir)
8971 {
8972   struct objfile *objfile = dwarf2_per_objfile->objfile;
8973   struct dwo_file *dwo_file;
8974   bfd *dbfd;
8975   struct cleanup *cleanups;
8976
8977   dbfd = open_dwop_file (dwo_name, comp_dir, 0);
8978   if (dbfd == NULL)
8979     {
8980       if (dwarf2_read_debug)
8981         fprintf_unfiltered (gdb_stdlog, "DWO file not found: %s\n", dwo_name);
8982       return NULL;
8983     }
8984   dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
8985   dwo_file->name = obstack_copy0 (&objfile->objfile_obstack,
8986                                   dwo_name, strlen (dwo_name));
8987   dwo_file->dbfd = dbfd;
8988
8989   cleanups = make_cleanup (free_dwo_file_cleanup, dwo_file);
8990
8991   bfd_map_over_sections (dbfd, dwarf2_locate_dwo_sections, &dwo_file->sections);
8992
8993   dwo_file->cus = create_dwo_debug_info_hash_table (dwo_file);
8994
8995   dwo_file->tus = create_debug_types_hash_table (dwo_file,
8996                                                  dwo_file->sections.types);
8997
8998   discard_cleanups (cleanups);
8999
9000   if (dwarf2_read_debug)
9001     fprintf_unfiltered (gdb_stdlog, "DWO file found: %s\n", dwo_name);
9002
9003   return dwo_file;
9004 }
9005
9006 /* This function is mapped across the sections and remembers the offset and
9007    size of each of the DWP debugging sections we are interested in.  */
9008
9009 static void
9010 dwarf2_locate_dwp_sections (bfd *abfd, asection *sectp, void *dwp_file_ptr)
9011 {
9012   struct dwp_file *dwp_file = dwp_file_ptr;
9013   const struct dwop_section_names *names = &dwop_section_names;
9014   unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
9015
9016   /* Record the ELF section number for later lookup: this is what the
9017      .debug_cu_index,.debug_tu_index tables use.  */
9018   gdb_assert (elf_section_nr < dwp_file->num_sections);
9019   dwp_file->elf_sections[elf_section_nr] = sectp;
9020
9021   /* Look for specific sections that we need.  */
9022   if (section_is_p (sectp->name, &names->str_dwo))
9023     {
9024       dwp_file->sections.str.asection = sectp;
9025       dwp_file->sections.str.size = bfd_get_section_size (sectp);
9026     }
9027   else if (section_is_p (sectp->name, &names->cu_index))
9028     {
9029       dwp_file->sections.cu_index.asection = sectp;
9030       dwp_file->sections.cu_index.size = bfd_get_section_size (sectp);
9031     }
9032   else if (section_is_p (sectp->name, &names->tu_index))
9033     {
9034       dwp_file->sections.tu_index.asection = sectp;
9035       dwp_file->sections.tu_index.size = bfd_get_section_size (sectp);
9036     }
9037 }
9038
9039 /* Hash function for dwp_file loaded CUs/TUs.  */
9040
9041 static hashval_t
9042 hash_dwp_loaded_cutus (const void *item)
9043 {
9044   const struct dwo_unit *dwo_unit = item;
9045
9046   /* This drops the top 32 bits of the signature, but is ok for a hash.  */
9047   return dwo_unit->signature;
9048 }
9049
9050 /* Equality function for dwp_file loaded CUs/TUs.  */
9051
9052 static int
9053 eq_dwp_loaded_cutus (const void *a, const void *b)
9054 {
9055   const struct dwo_unit *dua = a;
9056   const struct dwo_unit *dub = b;
9057
9058   return dua->signature == dub->signature;
9059 }
9060
9061 /* Allocate a hash table for dwp_file loaded CUs/TUs.  */
9062
9063 static htab_t
9064 allocate_dwp_loaded_cutus_table (struct objfile *objfile)
9065 {
9066   return htab_create_alloc_ex (3,
9067                                hash_dwp_loaded_cutus,
9068                                eq_dwp_loaded_cutus,
9069                                NULL,
9070                                &objfile->objfile_obstack,
9071                                hashtab_obstack_allocate,
9072                                dummy_obstack_deallocate);
9073 }
9074
9075 /* Initialize the use of the DWP file for the current objfile.
9076    By convention the name of the DWP file is ${objfile}.dwp.
9077    The result is NULL if it can't be found.  */
9078
9079 static struct dwp_file *
9080 open_and_init_dwp_file (const char *comp_dir)
9081 {
9082   struct objfile *objfile = dwarf2_per_objfile->objfile;
9083   struct dwp_file *dwp_file;
9084   char *dwp_name;
9085   bfd *dbfd;
9086   struct cleanup *cleanups;
9087
9088   dwp_name = xstrprintf ("%s.dwp", dwarf2_per_objfile->objfile->name);
9089   cleanups = make_cleanup (xfree, dwp_name);
9090
9091   dbfd = open_dwop_file (dwp_name, comp_dir, 1);
9092   if (dbfd == NULL)
9093     {
9094       if (dwarf2_read_debug)
9095         fprintf_unfiltered (gdb_stdlog, "DWP file not found: %s\n", dwp_name);
9096       do_cleanups (cleanups);
9097       return NULL;
9098     }
9099   dwp_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_file);
9100   dwp_file->name = obstack_copy0 (&objfile->objfile_obstack,
9101                                   dwp_name, strlen (dwp_name));
9102   dwp_file->dbfd = dbfd;
9103   do_cleanups (cleanups);
9104
9105   cleanups = make_cleanup (free_dwo_file_cleanup, dwp_file);
9106
9107   /* +1: section 0 is unused */
9108   dwp_file->num_sections = bfd_count_sections (dbfd) + 1;
9109   dwp_file->elf_sections =
9110     OBSTACK_CALLOC (&objfile->objfile_obstack,
9111                     dwp_file->num_sections, asection *);
9112
9113   bfd_map_over_sections (dbfd, dwarf2_locate_dwp_sections, dwp_file);
9114
9115   dwp_file->cus = create_dwp_hash_table (dwp_file, 0);
9116
9117   dwp_file->tus = create_dwp_hash_table (dwp_file, 1);
9118
9119   dwp_file->loaded_cutus = allocate_dwp_loaded_cutus_table (objfile);
9120
9121   discard_cleanups (cleanups);
9122
9123   if (dwarf2_read_debug)
9124     {
9125       fprintf_unfiltered (gdb_stdlog, "DWP file found: %s\n", dwp_file->name);
9126       fprintf_unfiltered (gdb_stdlog,
9127                           "    %u CUs, %u TUs\n",
9128                           dwp_file->cus ? dwp_file->cus->nr_units : 0,
9129                           dwp_file->tus ? dwp_file->tus->nr_units : 0);
9130     }
9131
9132   return dwp_file;
9133 }
9134
9135 /* Subroutine of lookup_dwo_comp_unit, lookup_dwo_type_unit.
9136    Look up the CU/TU with signature SIGNATURE, either in DWO file DWO_NAME
9137    or in the DWP file for the objfile, referenced by THIS_UNIT.
9138    If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
9139    IS_DEBUG_TYPES is non-zero if reading a TU, otherwise read a CU.
9140
9141    This is called, for example, when wanting to read a variable with a
9142    complex location.  Therefore we don't want to do file i/o for every call.
9143    Therefore we don't want to look for a DWO file on every call.
9144    Therefore we first see if we've already seen SIGNATURE in a DWP file,
9145    then we check if we've already seen DWO_NAME, and only THEN do we check
9146    for a DWO file.
9147
9148    The result is a pointer to the dwo_unit object or NULL if we didn't find it
9149    (dwo_id mismatch or couldn't find the DWO/DWP file).  */
9150
9151 static struct dwo_unit *
9152 lookup_dwo_cutu (struct dwarf2_per_cu_data *this_unit,
9153                  const char *dwo_name, const char *comp_dir,
9154                  ULONGEST signature, int is_debug_types)
9155 {
9156   struct objfile *objfile = dwarf2_per_objfile->objfile;
9157   const char *kind = is_debug_types ? "TU" : "CU";
9158   void **dwo_file_slot;
9159   struct dwo_file *dwo_file;
9160   struct dwp_file *dwp_file;
9161
9162   /* Have we already read SIGNATURE from a DWP file?  */
9163
9164   if (! dwarf2_per_objfile->dwp_checked)
9165     {
9166       dwarf2_per_objfile->dwp_file = open_and_init_dwp_file (comp_dir);
9167       dwarf2_per_objfile->dwp_checked = 1;
9168     }
9169   dwp_file = dwarf2_per_objfile->dwp_file;
9170
9171   if (dwp_file != NULL)
9172     {
9173       const struct dwp_hash_table *dwp_htab =
9174         is_debug_types ? dwp_file->tus : dwp_file->cus;
9175
9176       if (dwp_htab != NULL)
9177         {
9178           struct dwo_unit *dwo_cutu =
9179             lookup_dwo_in_dwp (dwp_file, dwp_htab, signature, is_debug_types);
9180
9181           if (dwo_cutu != NULL)
9182             {
9183               if (dwarf2_read_debug)
9184                 {
9185                   fprintf_unfiltered (gdb_stdlog,
9186                                       "Virtual DWO %s %s found: @%s\n",
9187                                       kind, hex_string (signature),
9188                                       host_address_to_string (dwo_cutu));
9189                 }
9190               return dwo_cutu;
9191             }
9192         }
9193     }
9194
9195   /* Have we already seen DWO_NAME?  */
9196
9197   dwo_file_slot = lookup_dwo_file_slot (dwo_name);
9198   if (*dwo_file_slot == NULL)
9199     {
9200       /* Read in the file and build a table of the DWOs it contains.  */
9201       *dwo_file_slot = open_and_init_dwo_file (dwo_name, comp_dir);
9202     }
9203   /* NOTE: This will be NULL if unable to open the file.  */
9204   dwo_file = *dwo_file_slot;
9205
9206   if (dwo_file != NULL)
9207     {
9208       htab_t htab = is_debug_types ? dwo_file->tus : dwo_file->cus;
9209
9210       if (htab != NULL)
9211         {
9212           struct dwo_unit find_dwo_cutu, *dwo_cutu;
9213
9214           memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
9215           find_dwo_cutu.signature = signature;
9216           dwo_cutu = htab_find (htab, &find_dwo_cutu);
9217
9218           if (dwo_cutu != NULL)
9219             {
9220               if (dwarf2_read_debug)
9221                 {
9222                   fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) found: @%s\n",
9223                                       kind, dwo_name, hex_string (signature),
9224                                       host_address_to_string (dwo_cutu));
9225                 }
9226               return dwo_cutu;
9227             }
9228         }
9229     }
9230
9231   /* We didn't find it.  This could mean a dwo_id mismatch, or
9232      someone deleted the DWO/DWP file, or the search path isn't set up
9233      correctly to find the file.  */
9234
9235   if (dwarf2_read_debug)
9236     {
9237       fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) not found\n",
9238                           kind, dwo_name, hex_string (signature));
9239     }
9240
9241   complaint (&symfile_complaints,
9242              _("Could not find DWO CU referenced by CU at offset 0x%x"
9243                " [in module %s]"),
9244              this_unit->offset.sect_off, objfile->name);
9245   return NULL;
9246 }
9247
9248 /* Lookup the DWO CU DWO_NAME/SIGNATURE referenced from THIS_CU.
9249    See lookup_dwo_cutu_unit for details.  */
9250
9251 static struct dwo_unit *
9252 lookup_dwo_comp_unit (struct dwarf2_per_cu_data *this_cu,
9253                       const char *dwo_name, const char *comp_dir,
9254                       ULONGEST signature)
9255 {
9256   return lookup_dwo_cutu (this_cu, dwo_name, comp_dir, signature, 0);
9257 }
9258
9259 /* Lookup the DWO TU DWO_NAME/SIGNATURE referenced from THIS_TU.
9260    See lookup_dwo_cutu_unit for details.  */
9261
9262 static struct dwo_unit *
9263 lookup_dwo_type_unit (struct signatured_type *this_tu,
9264                       const char *dwo_name, const char *comp_dir)
9265 {
9266   return lookup_dwo_cutu (&this_tu->per_cu, dwo_name, comp_dir, this_tu->signature, 1);
9267 }
9268
9269 /* Free all resources associated with DWO_FILE.
9270    Close the DWO file and munmap the sections.
9271    All memory should be on the objfile obstack.  */
9272
9273 static void
9274 free_dwo_file (struct dwo_file *dwo_file, struct objfile *objfile)
9275 {
9276   int ix;
9277   struct dwarf2_section_info *section;
9278
9279   gdb_bfd_unref (dwo_file->dbfd);
9280
9281   VEC_free (dwarf2_section_info_def, dwo_file->sections.types);
9282 }
9283
9284 /* Wrapper for free_dwo_file for use in cleanups.  */
9285
9286 static void
9287 free_dwo_file_cleanup (void *arg)
9288 {
9289   struct dwo_file *dwo_file = (struct dwo_file *) arg;
9290   struct objfile *objfile = dwarf2_per_objfile->objfile;
9291
9292   free_dwo_file (dwo_file, objfile);
9293 }
9294
9295 /* Traversal function for free_dwo_files.  */
9296
9297 static int
9298 free_dwo_file_from_slot (void **slot, void *info)
9299 {
9300   struct dwo_file *dwo_file = (struct dwo_file *) *slot;
9301   struct objfile *objfile = (struct objfile *) info;
9302
9303   free_dwo_file (dwo_file, objfile);
9304
9305   return 1;
9306 }
9307
9308 /* Free all resources associated with DWO_FILES.  */
9309
9310 static void
9311 free_dwo_files (htab_t dwo_files, struct objfile *objfile)
9312 {
9313   htab_traverse_noresize (dwo_files, free_dwo_file_from_slot, objfile);
9314 }
9315 \f
9316 /* Read in various DIEs.  */
9317
9318 /* qsort helper for inherit_abstract_dies.  */
9319
9320 static int
9321 unsigned_int_compar (const void *ap, const void *bp)
9322 {
9323   unsigned int a = *(unsigned int *) ap;
9324   unsigned int b = *(unsigned int *) bp;
9325
9326   return (a > b) - (b > a);
9327 }
9328
9329 /* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
9330    Inherit only the children of the DW_AT_abstract_origin DIE not being
9331    already referenced by DW_AT_abstract_origin from the children of the
9332    current DIE.  */
9333
9334 static void
9335 inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
9336 {
9337   struct die_info *child_die;
9338   unsigned die_children_count;
9339   /* CU offsets which were referenced by children of the current DIE.  */
9340   sect_offset *offsets;
9341   sect_offset *offsets_end, *offsetp;
9342   /* Parent of DIE - referenced by DW_AT_abstract_origin.  */
9343   struct die_info *origin_die;
9344   /* Iterator of the ORIGIN_DIE children.  */
9345   struct die_info *origin_child_die;
9346   struct cleanup *cleanups;
9347   struct attribute *attr;
9348   struct dwarf2_cu *origin_cu;
9349   struct pending **origin_previous_list_in_scope;
9350
9351   attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
9352   if (!attr)
9353     return;
9354
9355   /* Note that following die references may follow to a die in a
9356      different cu.  */
9357
9358   origin_cu = cu;
9359   origin_die = follow_die_ref (die, attr, &origin_cu);
9360
9361   /* We're inheriting ORIGIN's children into the scope we'd put DIE's
9362      symbols in.  */
9363   origin_previous_list_in_scope = origin_cu->list_in_scope;
9364   origin_cu->list_in_scope = cu->list_in_scope;
9365
9366   if (die->tag != origin_die->tag
9367       && !(die->tag == DW_TAG_inlined_subroutine
9368            && origin_die->tag == DW_TAG_subprogram))
9369     complaint (&symfile_complaints,
9370                _("DIE 0x%x and its abstract origin 0x%x have different tags"),
9371                die->offset.sect_off, origin_die->offset.sect_off);
9372
9373   child_die = die->child;
9374   die_children_count = 0;
9375   while (child_die && child_die->tag)
9376     {
9377       child_die = sibling_die (child_die);
9378       die_children_count++;
9379     }
9380   offsets = xmalloc (sizeof (*offsets) * die_children_count);
9381   cleanups = make_cleanup (xfree, offsets);
9382
9383   offsets_end = offsets;
9384   child_die = die->child;
9385   while (child_die && child_die->tag)
9386     {
9387       /* For each CHILD_DIE, find the corresponding child of
9388          ORIGIN_DIE.  If there is more than one layer of
9389          DW_AT_abstract_origin, follow them all; there shouldn't be,
9390          but GCC versions at least through 4.4 generate this (GCC PR
9391          40573).  */
9392       struct die_info *child_origin_die = child_die;
9393       struct dwarf2_cu *child_origin_cu = cu;
9394
9395       while (1)
9396         {
9397           attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
9398                               child_origin_cu);
9399           if (attr == NULL)
9400             break;
9401           child_origin_die = follow_die_ref (child_origin_die, attr,
9402                                              &child_origin_cu);
9403         }
9404
9405       /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
9406          counterpart may exist.  */
9407       if (child_origin_die != child_die)
9408         {
9409           if (child_die->tag != child_origin_die->tag
9410               && !(child_die->tag == DW_TAG_inlined_subroutine
9411                    && child_origin_die->tag == DW_TAG_subprogram))
9412             complaint (&symfile_complaints,
9413                        _("Child DIE 0x%x and its abstract origin 0x%x have "
9414                          "different tags"), child_die->offset.sect_off,
9415                        child_origin_die->offset.sect_off);
9416           if (child_origin_die->parent != origin_die)
9417             complaint (&symfile_complaints,
9418                        _("Child DIE 0x%x and its abstract origin 0x%x have "
9419                          "different parents"), child_die->offset.sect_off,
9420                        child_origin_die->offset.sect_off);
9421           else
9422             *offsets_end++ = child_origin_die->offset;
9423         }
9424       child_die = sibling_die (child_die);
9425     }
9426   qsort (offsets, offsets_end - offsets, sizeof (*offsets),
9427          unsigned_int_compar);
9428   for (offsetp = offsets + 1; offsetp < offsets_end; offsetp++)
9429     if (offsetp[-1].sect_off == offsetp->sect_off)
9430       complaint (&symfile_complaints,
9431                  _("Multiple children of DIE 0x%x refer "
9432                    "to DIE 0x%x as their abstract origin"),
9433                  die->offset.sect_off, offsetp->sect_off);
9434
9435   offsetp = offsets;
9436   origin_child_die = origin_die->child;
9437   while (origin_child_die && origin_child_die->tag)
9438     {
9439       /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children?  */
9440       while (offsetp < offsets_end
9441              && offsetp->sect_off < origin_child_die->offset.sect_off)
9442         offsetp++;
9443       if (offsetp >= offsets_end
9444           || offsetp->sect_off > origin_child_die->offset.sect_off)
9445         {
9446           /* Found that ORIGIN_CHILD_DIE is really not referenced.  */
9447           process_die (origin_child_die, origin_cu);
9448         }
9449       origin_child_die = sibling_die (origin_child_die);
9450     }
9451   origin_cu->list_in_scope = origin_previous_list_in_scope;
9452
9453   do_cleanups (cleanups);
9454 }
9455
9456 static void
9457 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
9458 {
9459   struct objfile *objfile = cu->objfile;
9460   struct context_stack *new;
9461   CORE_ADDR lowpc;
9462   CORE_ADDR highpc;
9463   struct die_info *child_die;
9464   struct attribute *attr, *call_line, *call_file;
9465   const char *name;
9466   CORE_ADDR baseaddr;
9467   struct block *block;
9468   int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
9469   VEC (symbolp) *template_args = NULL;
9470   struct template_symbol *templ_func = NULL;
9471
9472   if (inlined_func)
9473     {
9474       /* If we do not have call site information, we can't show the
9475          caller of this inlined function.  That's too confusing, so
9476          only use the scope for local variables.  */
9477       call_line = dwarf2_attr (die, DW_AT_call_line, cu);
9478       call_file = dwarf2_attr (die, DW_AT_call_file, cu);
9479       if (call_line == NULL || call_file == NULL)
9480         {
9481           read_lexical_block_scope (die, cu);
9482           return;
9483         }
9484     }
9485
9486   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
9487
9488   name = dwarf2_name (die, cu);
9489
9490   /* Ignore functions with missing or empty names.  These are actually
9491      illegal according to the DWARF standard.  */
9492   if (name == NULL)
9493     {
9494       complaint (&symfile_complaints,
9495                  _("missing name for subprogram DIE at %d"),
9496                  die->offset.sect_off);
9497       return;
9498     }
9499
9500   /* Ignore functions with missing or invalid low and high pc attributes.  */
9501   if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
9502     {
9503       attr = dwarf2_attr (die, DW_AT_external, cu);
9504       if (!attr || !DW_UNSND (attr))
9505         complaint (&symfile_complaints,
9506                    _("cannot get low and high bounds "
9507                      "for subprogram DIE at %d"),
9508                    die->offset.sect_off);
9509       return;
9510     }
9511
9512   lowpc += baseaddr;
9513   highpc += baseaddr;
9514
9515   /* If we have any template arguments, then we must allocate a
9516      different sort of symbol.  */
9517   for (child_die = die->child; child_die; child_die = sibling_die (child_die))
9518     {
9519       if (child_die->tag == DW_TAG_template_type_param
9520           || child_die->tag == DW_TAG_template_value_param)
9521         {
9522           templ_func = OBSTACK_ZALLOC (&objfile->objfile_obstack,
9523                                        struct template_symbol);
9524           templ_func->base.is_cplus_template_function = 1;
9525           break;
9526         }
9527     }
9528
9529   new = push_context (0, lowpc);
9530   new->name = new_symbol_full (die, read_type_die (die, cu), cu,
9531                                (struct symbol *) templ_func);
9532
9533   /* If there is a location expression for DW_AT_frame_base, record
9534      it.  */
9535   attr = dwarf2_attr (die, DW_AT_frame_base, cu);
9536   if (attr)
9537     dwarf2_symbol_mark_computed (attr, new->name, cu, 1);
9538
9539   cu->list_in_scope = &local_symbols;
9540
9541   if (die->child != NULL)
9542     {
9543       child_die = die->child;
9544       while (child_die && child_die->tag)
9545         {
9546           if (child_die->tag == DW_TAG_template_type_param
9547               || child_die->tag == DW_TAG_template_value_param)
9548             {
9549               struct symbol *arg = new_symbol (child_die, NULL, cu);
9550
9551               if (arg != NULL)
9552                 VEC_safe_push (symbolp, template_args, arg);
9553             }
9554           else
9555             process_die (child_die, cu);
9556           child_die = sibling_die (child_die);
9557         }
9558     }
9559
9560   inherit_abstract_dies (die, cu);
9561
9562   /* If we have a DW_AT_specification, we might need to import using
9563      directives from the context of the specification DIE.  See the
9564      comment in determine_prefix.  */
9565   if (cu->language == language_cplus
9566       && dwarf2_attr (die, DW_AT_specification, cu))
9567     {
9568       struct dwarf2_cu *spec_cu = cu;
9569       struct die_info *spec_die = die_specification (die, &spec_cu);
9570
9571       while (spec_die)
9572         {
9573           child_die = spec_die->child;
9574           while (child_die && child_die->tag)
9575             {
9576               if (child_die->tag == DW_TAG_imported_module)
9577                 process_die (child_die, spec_cu);
9578               child_die = sibling_die (child_die);
9579             }
9580
9581           /* In some cases, GCC generates specification DIEs that
9582              themselves contain DW_AT_specification attributes.  */
9583           spec_die = die_specification (spec_die, &spec_cu);
9584         }
9585     }
9586
9587   new = pop_context ();
9588   /* Make a block for the local symbols within.  */
9589   block = finish_block (new->name, &local_symbols, new->old_blocks,
9590                         lowpc, highpc, objfile);
9591
9592   /* For C++, set the block's scope.  */
9593   if ((cu->language == language_cplus || cu->language == language_fortran)
9594       && cu->processing_has_namespace_info)
9595     block_set_scope (block, determine_prefix (die, cu),
9596                      &objfile->objfile_obstack);
9597
9598   /* If we have address ranges, record them.  */
9599   dwarf2_record_block_ranges (die, block, baseaddr, cu);
9600
9601   /* Attach template arguments to function.  */
9602   if (! VEC_empty (symbolp, template_args))
9603     {
9604       gdb_assert (templ_func != NULL);
9605
9606       templ_func->n_template_arguments = VEC_length (symbolp, template_args);
9607       templ_func->template_arguments
9608         = obstack_alloc (&objfile->objfile_obstack,
9609                          (templ_func->n_template_arguments
9610                           * sizeof (struct symbol *)));
9611       memcpy (templ_func->template_arguments,
9612               VEC_address (symbolp, template_args),
9613               (templ_func->n_template_arguments * sizeof (struct symbol *)));
9614       VEC_free (symbolp, template_args);
9615     }
9616
9617   /* In C++, we can have functions nested inside functions (e.g., when
9618      a function declares a class that has methods).  This means that
9619      when we finish processing a function scope, we may need to go
9620      back to building a containing block's symbol lists.  */
9621   local_symbols = new->locals;
9622   using_directives = new->using_directives;
9623
9624   /* If we've finished processing a top-level function, subsequent
9625      symbols go in the file symbol list.  */
9626   if (outermost_context_p ())
9627     cu->list_in_scope = &file_symbols;
9628 }
9629
9630 /* Process all the DIES contained within a lexical block scope.  Start
9631    a new scope, process the dies, and then close the scope.  */
9632
9633 static void
9634 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
9635 {
9636   struct objfile *objfile = cu->objfile;
9637   struct context_stack *new;
9638   CORE_ADDR lowpc, highpc;
9639   struct die_info *child_die;
9640   CORE_ADDR baseaddr;
9641
9642   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
9643
9644   /* Ignore blocks with missing or invalid low and high pc attributes.  */
9645   /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
9646      as multiple lexical blocks?  Handling children in a sane way would
9647      be nasty.  Might be easier to properly extend generic blocks to
9648      describe ranges.  */
9649   if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
9650     return;
9651   lowpc += baseaddr;
9652   highpc += baseaddr;
9653
9654   push_context (0, lowpc);
9655   if (die->child != NULL)
9656     {
9657       child_die = die->child;
9658       while (child_die && child_die->tag)
9659         {
9660           process_die (child_die, cu);
9661           child_die = sibling_die (child_die);
9662         }
9663     }
9664   new = pop_context ();
9665
9666   if (local_symbols != NULL || using_directives != NULL)
9667     {
9668       struct block *block
9669         = finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
9670                         highpc, objfile);
9671
9672       /* Note that recording ranges after traversing children, as we
9673          do here, means that recording a parent's ranges entails
9674          walking across all its children's ranges as they appear in
9675          the address map, which is quadratic behavior.
9676
9677          It would be nicer to record the parent's ranges before
9678          traversing its children, simply overriding whatever you find
9679          there.  But since we don't even decide whether to create a
9680          block until after we've traversed its children, that's hard
9681          to do.  */
9682       dwarf2_record_block_ranges (die, block, baseaddr, cu);
9683     }
9684   local_symbols = new->locals;
9685   using_directives = new->using_directives;
9686 }
9687
9688 /* Read in DW_TAG_GNU_call_site and insert it to CU->call_site_htab.  */
9689
9690 static void
9691 read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu)
9692 {
9693   struct objfile *objfile = cu->objfile;
9694   struct gdbarch *gdbarch = get_objfile_arch (objfile);
9695   CORE_ADDR pc, baseaddr;
9696   struct attribute *attr;
9697   struct call_site *call_site, call_site_local;
9698   void **slot;
9699   int nparams;
9700   struct die_info *child_die;
9701
9702   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
9703
9704   attr = dwarf2_attr (die, DW_AT_low_pc, cu);
9705   if (!attr)
9706     {
9707       complaint (&symfile_complaints,
9708                  _("missing DW_AT_low_pc for DW_TAG_GNU_call_site "
9709                    "DIE 0x%x [in module %s]"),
9710                  die->offset.sect_off, objfile->name);
9711       return;
9712     }
9713   pc = DW_ADDR (attr) + baseaddr;
9714
9715   if (cu->call_site_htab == NULL)
9716     cu->call_site_htab = htab_create_alloc_ex (16, core_addr_hash, core_addr_eq,
9717                                                NULL, &objfile->objfile_obstack,
9718                                                hashtab_obstack_allocate, NULL);
9719   call_site_local.pc = pc;
9720   slot = htab_find_slot (cu->call_site_htab, &call_site_local, INSERT);
9721   if (*slot != NULL)
9722     {
9723       complaint (&symfile_complaints,
9724                  _("Duplicate PC %s for DW_TAG_GNU_call_site "
9725                    "DIE 0x%x [in module %s]"),
9726                  paddress (gdbarch, pc), die->offset.sect_off, objfile->name);
9727       return;
9728     }
9729
9730   /* Count parameters at the caller.  */
9731
9732   nparams = 0;
9733   for (child_die = die->child; child_die && child_die->tag;
9734        child_die = sibling_die (child_die))
9735     {
9736       if (child_die->tag != DW_TAG_GNU_call_site_parameter)
9737         {
9738           complaint (&symfile_complaints,
9739                      _("Tag %d is not DW_TAG_GNU_call_site_parameter in "
9740                        "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
9741                      child_die->tag, child_die->offset.sect_off, objfile->name);
9742           continue;
9743         }
9744
9745       nparams++;
9746     }
9747
9748   call_site = obstack_alloc (&objfile->objfile_obstack,
9749                              (sizeof (*call_site)
9750                               + (sizeof (*call_site->parameter)
9751                                  * (nparams - 1))));
9752   *slot = call_site;
9753   memset (call_site, 0, sizeof (*call_site) - sizeof (*call_site->parameter));
9754   call_site->pc = pc;
9755
9756   if (dwarf2_flag_true_p (die, DW_AT_GNU_tail_call, cu))
9757     {
9758       struct die_info *func_die;
9759
9760       /* Skip also over DW_TAG_inlined_subroutine.  */
9761       for (func_die = die->parent;
9762            func_die && func_die->tag != DW_TAG_subprogram
9763            && func_die->tag != DW_TAG_subroutine_type;
9764            func_die = func_die->parent);
9765
9766       /* DW_AT_GNU_all_call_sites is a superset
9767          of DW_AT_GNU_all_tail_call_sites.  */
9768       if (func_die
9769           && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_call_sites, cu)
9770           && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_tail_call_sites, cu))
9771         {
9772           /* TYPE_TAIL_CALL_LIST is not interesting in functions where it is
9773              not complete.  But keep CALL_SITE for look ups via call_site_htab,
9774              both the initial caller containing the real return address PC and
9775              the final callee containing the current PC of a chain of tail
9776              calls do not need to have the tail call list complete.  But any
9777              function candidate for a virtual tail call frame searched via
9778              TYPE_TAIL_CALL_LIST must have the tail call list complete to be
9779              determined unambiguously.  */
9780         }
9781       else
9782         {
9783           struct type *func_type = NULL;
9784
9785           if (func_die)
9786             func_type = get_die_type (func_die, cu);
9787           if (func_type != NULL)
9788             {
9789               gdb_assert (TYPE_CODE (func_type) == TYPE_CODE_FUNC);
9790
9791               /* Enlist this call site to the function.  */
9792               call_site->tail_call_next = TYPE_TAIL_CALL_LIST (func_type);
9793               TYPE_TAIL_CALL_LIST (func_type) = call_site;
9794             }
9795           else
9796             complaint (&symfile_complaints,
9797                        _("Cannot find function owning DW_TAG_GNU_call_site "
9798                          "DIE 0x%x [in module %s]"),
9799                        die->offset.sect_off, objfile->name);
9800         }
9801     }
9802
9803   attr = dwarf2_attr (die, DW_AT_GNU_call_site_target, cu);
9804   if (attr == NULL)
9805     attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
9806   SET_FIELD_DWARF_BLOCK (call_site->target, NULL);
9807   if (!attr || (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0))
9808     /* Keep NULL DWARF_BLOCK.  */;
9809   else if (attr_form_is_block (attr))
9810     {
9811       struct dwarf2_locexpr_baton *dlbaton;
9812
9813       dlbaton = obstack_alloc (&objfile->objfile_obstack, sizeof (*dlbaton));
9814       dlbaton->data = DW_BLOCK (attr)->data;
9815       dlbaton->size = DW_BLOCK (attr)->size;
9816       dlbaton->per_cu = cu->per_cu;
9817
9818       SET_FIELD_DWARF_BLOCK (call_site->target, dlbaton);
9819     }
9820   else if (is_ref_attr (attr))
9821     {
9822       struct dwarf2_cu *target_cu = cu;
9823       struct die_info *target_die;
9824
9825       target_die = follow_die_ref_or_sig (die, attr, &target_cu);
9826       gdb_assert (target_cu->objfile == objfile);
9827       if (die_is_declaration (target_die, target_cu))
9828         {
9829           const char *target_physname = NULL;
9830           struct attribute *target_attr;
9831
9832           /* Prefer the mangled name; otherwise compute the demangled one.  */
9833           target_attr = dwarf2_attr (target_die, DW_AT_linkage_name, target_cu);
9834           if (target_attr == NULL)
9835             target_attr = dwarf2_attr (target_die, DW_AT_MIPS_linkage_name,
9836                                        target_cu);
9837           if (target_attr != NULL && DW_STRING (target_attr) != NULL)
9838             target_physname = DW_STRING (target_attr);
9839           else
9840             target_physname = dwarf2_physname (NULL, target_die, target_cu);
9841           if (target_physname == NULL)
9842             complaint (&symfile_complaints,
9843                        _("DW_AT_GNU_call_site_target target DIE has invalid "
9844                          "physname, for referencing DIE 0x%x [in module %s]"),
9845                        die->offset.sect_off, objfile->name);
9846           else
9847             SET_FIELD_PHYSNAME (call_site->target, target_physname);
9848         }
9849       else
9850         {
9851           CORE_ADDR lowpc;
9852
9853           /* DW_AT_entry_pc should be preferred.  */
9854           if (!dwarf2_get_pc_bounds (target_die, &lowpc, NULL, target_cu, NULL))
9855             complaint (&symfile_complaints,
9856                        _("DW_AT_GNU_call_site_target target DIE has invalid "
9857                          "low pc, for referencing DIE 0x%x [in module %s]"),
9858                        die->offset.sect_off, objfile->name);
9859           else
9860             SET_FIELD_PHYSADDR (call_site->target, lowpc + baseaddr);
9861         }
9862     }
9863   else
9864     complaint (&symfile_complaints,
9865                _("DW_TAG_GNU_call_site DW_AT_GNU_call_site_target is neither "
9866                  "block nor reference, for DIE 0x%x [in module %s]"),
9867                die->offset.sect_off, objfile->name);
9868
9869   call_site->per_cu = cu->per_cu;
9870
9871   for (child_die = die->child;
9872        child_die && child_die->tag;
9873        child_die = sibling_die (child_die))
9874     {
9875       struct call_site_parameter *parameter;
9876       struct attribute *loc, *origin;
9877
9878       if (child_die->tag != DW_TAG_GNU_call_site_parameter)
9879         {
9880           /* Already printed the complaint above.  */
9881           continue;
9882         }
9883
9884       gdb_assert (call_site->parameter_count < nparams);
9885       parameter = &call_site->parameter[call_site->parameter_count];
9886
9887       /* DW_AT_location specifies the register number or DW_AT_abstract_origin
9888          specifies DW_TAG_formal_parameter.  Value of the data assumed for the
9889          register is contained in DW_AT_GNU_call_site_value.  */
9890
9891       loc = dwarf2_attr (child_die, DW_AT_location, cu);
9892       origin = dwarf2_attr (child_die, DW_AT_abstract_origin, cu);
9893       if (loc == NULL && origin != NULL && is_ref_attr (origin))
9894         {
9895           sect_offset offset;
9896
9897           parameter->kind = CALL_SITE_PARAMETER_PARAM_OFFSET;
9898           offset = dwarf2_get_ref_die_offset (origin);
9899           if (!offset_in_cu_p (&cu->header, offset))
9900             {
9901               /* As DW_OP_GNU_parameter_ref uses CU-relative offset this
9902                  binding can be done only inside one CU.  Such referenced DIE
9903                  therefore cannot be even moved to DW_TAG_partial_unit.  */
9904               complaint (&symfile_complaints,
9905                          _("DW_AT_abstract_origin offset is not in CU for "
9906                            "DW_TAG_GNU_call_site child DIE 0x%x "
9907                            "[in module %s]"),
9908                          child_die->offset.sect_off, objfile->name);
9909               continue;
9910             }
9911           parameter->u.param_offset.cu_off = (offset.sect_off
9912                                               - cu->header.offset.sect_off);
9913         }
9914       else if (loc == NULL || origin != NULL || !attr_form_is_block (loc))
9915         {
9916           complaint (&symfile_complaints,
9917                      _("No DW_FORM_block* DW_AT_location for "
9918                        "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
9919                      child_die->offset.sect_off, objfile->name);
9920           continue;
9921         }
9922       else
9923         {
9924           parameter->u.dwarf_reg = dwarf_block_to_dwarf_reg
9925             (DW_BLOCK (loc)->data, &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size]);
9926           if (parameter->u.dwarf_reg != -1)
9927             parameter->kind = CALL_SITE_PARAMETER_DWARF_REG;
9928           else if (dwarf_block_to_sp_offset (gdbarch, DW_BLOCK (loc)->data,
9929                                     &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size],
9930                                              &parameter->u.fb_offset))
9931             parameter->kind = CALL_SITE_PARAMETER_FB_OFFSET;
9932           else
9933             {
9934               complaint (&symfile_complaints,
9935                          _("Only single DW_OP_reg or DW_OP_fbreg is supported "
9936                            "for DW_FORM_block* DW_AT_location is supported for "
9937                            "DW_TAG_GNU_call_site child DIE 0x%x "
9938                            "[in module %s]"),
9939                          child_die->offset.sect_off, objfile->name);
9940               continue;
9941             }
9942         }
9943
9944       attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_value, cu);
9945       if (!attr_form_is_block (attr))
9946         {
9947           complaint (&symfile_complaints,
9948                      _("No DW_FORM_block* DW_AT_GNU_call_site_value for "
9949                        "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
9950                      child_die->offset.sect_off, objfile->name);
9951           continue;
9952         }
9953       parameter->value = DW_BLOCK (attr)->data;
9954       parameter->value_size = DW_BLOCK (attr)->size;
9955
9956       /* Parameters are not pre-cleared by memset above.  */
9957       parameter->data_value = NULL;
9958       parameter->data_value_size = 0;
9959       call_site->parameter_count++;
9960
9961       attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_data_value, cu);
9962       if (attr)
9963         {
9964           if (!attr_form_is_block (attr))
9965             complaint (&symfile_complaints,
9966                        _("No DW_FORM_block* DW_AT_GNU_call_site_data_value for "
9967                          "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
9968                        child_die->offset.sect_off, objfile->name);
9969           else
9970             {
9971               parameter->data_value = DW_BLOCK (attr)->data;
9972               parameter->data_value_size = DW_BLOCK (attr)->size;
9973             }
9974         }
9975     }
9976 }
9977
9978 /* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
9979    Return 1 if the attributes are present and valid, otherwise, return 0.
9980    If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'.  */
9981
9982 static int
9983 dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
9984                     CORE_ADDR *high_return, struct dwarf2_cu *cu,
9985                     struct partial_symtab *ranges_pst)
9986 {
9987   struct objfile *objfile = cu->objfile;
9988   struct comp_unit_head *cu_header = &cu->header;
9989   bfd *obfd = objfile->obfd;
9990   unsigned int addr_size = cu_header->addr_size;
9991   CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
9992   /* Base address selection entry.  */
9993   CORE_ADDR base;
9994   int found_base;
9995   unsigned int dummy;
9996   gdb_byte *buffer;
9997   CORE_ADDR marker;
9998   int low_set;
9999   CORE_ADDR low = 0;
10000   CORE_ADDR high = 0;
10001   CORE_ADDR baseaddr;
10002
10003   found_base = cu->base_known;
10004   base = cu->base_address;
10005
10006   dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
10007   if (offset >= dwarf2_per_objfile->ranges.size)
10008     {
10009       complaint (&symfile_complaints,
10010                  _("Offset %d out of bounds for DW_AT_ranges attribute"),
10011                  offset);
10012       return 0;
10013     }
10014   buffer = dwarf2_per_objfile->ranges.buffer + offset;
10015
10016   /* Read in the largest possible address.  */
10017   marker = read_address (obfd, buffer, cu, &dummy);
10018   if ((marker & mask) == mask)
10019     {
10020       /* If we found the largest possible address, then
10021          read the base address.  */
10022       base = read_address (obfd, buffer + addr_size, cu, &dummy);
10023       buffer += 2 * addr_size;
10024       offset += 2 * addr_size;
10025       found_base = 1;
10026     }
10027
10028   low_set = 0;
10029
10030   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
10031
10032   while (1)
10033     {
10034       CORE_ADDR range_beginning, range_end;
10035
10036       range_beginning = read_address (obfd, buffer, cu, &dummy);
10037       buffer += addr_size;
10038       range_end = read_address (obfd, buffer, cu, &dummy);
10039       buffer += addr_size;
10040       offset += 2 * addr_size;
10041
10042       /* An end of list marker is a pair of zero addresses.  */
10043       if (range_beginning == 0 && range_end == 0)
10044         /* Found the end of list entry.  */
10045         break;
10046
10047       /* Each base address selection entry is a pair of 2 values.
10048          The first is the largest possible address, the second is
10049          the base address.  Check for a base address here.  */
10050       if ((range_beginning & mask) == mask)
10051         {
10052           /* If we found the largest possible address, then
10053              read the base address.  */
10054           base = read_address (obfd, buffer + addr_size, cu, &dummy);
10055           found_base = 1;
10056           continue;
10057         }
10058
10059       if (!found_base)
10060         {
10061           /* We have no valid base address for the ranges
10062              data.  */
10063           complaint (&symfile_complaints,
10064                      _("Invalid .debug_ranges data (no base address)"));
10065           return 0;
10066         }
10067
10068       if (range_beginning > range_end)
10069         {
10070           /* Inverted range entries are invalid.  */
10071           complaint (&symfile_complaints,
10072                      _("Invalid .debug_ranges data (inverted range)"));
10073           return 0;
10074         }
10075
10076       /* Empty range entries have no effect.  */
10077       if (range_beginning == range_end)
10078         continue;
10079
10080       range_beginning += base;
10081       range_end += base;
10082
10083       /* A not-uncommon case of bad debug info.
10084          Don't pollute the addrmap with bad data.  */
10085       if (range_beginning + baseaddr == 0
10086           && !dwarf2_per_objfile->has_section_at_zero)
10087         {
10088           complaint (&symfile_complaints,
10089                      _(".debug_ranges entry has start address of zero"
10090                        " [in module %s]"), objfile->name);
10091           continue;
10092         }
10093
10094       if (ranges_pst != NULL)
10095         addrmap_set_empty (objfile->psymtabs_addrmap,
10096                            range_beginning + baseaddr,
10097                            range_end - 1 + baseaddr,
10098                            ranges_pst);
10099
10100       /* FIXME: This is recording everything as a low-high
10101          segment of consecutive addresses.  We should have a
10102          data structure for discontiguous block ranges
10103          instead.  */
10104       if (! low_set)
10105         {
10106           low = range_beginning;
10107           high = range_end;
10108           low_set = 1;
10109         }
10110       else
10111         {
10112           if (range_beginning < low)
10113             low = range_beginning;
10114           if (range_end > high)
10115             high = range_end;
10116         }
10117     }
10118
10119   if (! low_set)
10120     /* If the first entry is an end-of-list marker, the range
10121        describes an empty scope, i.e. no instructions.  */
10122     return 0;
10123
10124   if (low_return)
10125     *low_return = low;
10126   if (high_return)
10127     *high_return = high;
10128   return 1;
10129 }
10130
10131 /* Get low and high pc attributes from a die.  Return 1 if the attributes
10132    are present and valid, otherwise, return 0.  Return -1 if the range is
10133    discontinuous, i.e. derived from DW_AT_ranges information.  */
10134
10135 static int
10136 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
10137                       CORE_ADDR *highpc, struct dwarf2_cu *cu,
10138                       struct partial_symtab *pst)
10139 {
10140   struct attribute *attr;
10141   struct attribute *attr_high;
10142   CORE_ADDR low = 0;
10143   CORE_ADDR high = 0;
10144   int ret = 0;
10145
10146   attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
10147   if (attr_high)
10148     {
10149       attr = dwarf2_attr (die, DW_AT_low_pc, cu);
10150       if (attr)
10151         {
10152           low = DW_ADDR (attr);
10153           if (attr_high->form == DW_FORM_addr
10154               || attr_high->form == DW_FORM_GNU_addr_index)
10155             high = DW_ADDR (attr_high);
10156           else
10157             high = low + DW_UNSND (attr_high);
10158         }
10159       else
10160         /* Found high w/o low attribute.  */
10161         return 0;
10162
10163       /* Found consecutive range of addresses.  */
10164       ret = 1;
10165     }
10166   else
10167     {
10168       attr = dwarf2_attr (die, DW_AT_ranges, cu);
10169       if (attr != NULL)
10170         {
10171           /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
10172              We take advantage of the fact that DW_AT_ranges does not appear
10173              in DW_TAG_compile_unit of DWO files.  */
10174           int need_ranges_base = die->tag != DW_TAG_compile_unit;
10175           unsigned int ranges_offset = (DW_UNSND (attr)
10176                                         + (need_ranges_base
10177                                            ? cu->ranges_base
10178                                            : 0));
10179
10180           /* Value of the DW_AT_ranges attribute is the offset in the
10181              .debug_ranges section.  */
10182           if (!dwarf2_ranges_read (ranges_offset, &low, &high, cu, pst))
10183             return 0;
10184           /* Found discontinuous range of addresses.  */
10185           ret = -1;
10186         }
10187     }
10188
10189   /* read_partial_die has also the strict LOW < HIGH requirement.  */
10190   if (high <= low)
10191     return 0;
10192
10193   /* When using the GNU linker, .gnu.linkonce. sections are used to
10194      eliminate duplicate copies of functions and vtables and such.
10195      The linker will arbitrarily choose one and discard the others.
10196      The AT_*_pc values for such functions refer to local labels in
10197      these sections.  If the section from that file was discarded, the
10198      labels are not in the output, so the relocs get a value of 0.
10199      If this is a discarded function, mark the pc bounds as invalid,
10200      so that GDB will ignore it.  */
10201   if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
10202     return 0;
10203
10204   *lowpc = low;
10205   if (highpc)
10206     *highpc = high;
10207   return ret;
10208 }
10209
10210 /* Assuming that DIE represents a subprogram DIE or a lexical block, get
10211    its low and high PC addresses.  Do nothing if these addresses could not
10212    be determined.  Otherwise, set LOWPC to the low address if it is smaller,
10213    and HIGHPC to the high address if greater than HIGHPC.  */
10214
10215 static void
10216 dwarf2_get_subprogram_pc_bounds (struct die_info *die,
10217                                  CORE_ADDR *lowpc, CORE_ADDR *highpc,
10218                                  struct dwarf2_cu *cu)
10219 {
10220   CORE_ADDR low, high;
10221   struct die_info *child = die->child;
10222
10223   if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL))
10224     {
10225       *lowpc = min (*lowpc, low);
10226       *highpc = max (*highpc, high);
10227     }
10228
10229   /* If the language does not allow nested subprograms (either inside
10230      subprograms or lexical blocks), we're done.  */
10231   if (cu->language != language_ada)
10232     return;
10233
10234   /* Check all the children of the given DIE.  If it contains nested
10235      subprograms, then check their pc bounds.  Likewise, we need to
10236      check lexical blocks as well, as they may also contain subprogram
10237      definitions.  */
10238   while (child && child->tag)
10239     {
10240       if (child->tag == DW_TAG_subprogram
10241           || child->tag == DW_TAG_lexical_block)
10242         dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
10243       child = sibling_die (child);
10244     }
10245 }
10246
10247 /* Get the low and high pc's represented by the scope DIE, and store
10248    them in *LOWPC and *HIGHPC.  If the correct values can't be
10249    determined, set *LOWPC to -1 and *HIGHPC to 0.  */
10250
10251 static void
10252 get_scope_pc_bounds (struct die_info *die,
10253                      CORE_ADDR *lowpc, CORE_ADDR *highpc,
10254                      struct dwarf2_cu *cu)
10255 {
10256   CORE_ADDR best_low = (CORE_ADDR) -1;
10257   CORE_ADDR best_high = (CORE_ADDR) 0;
10258   CORE_ADDR current_low, current_high;
10259
10260   if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL))
10261     {
10262       best_low = current_low;
10263       best_high = current_high;
10264     }
10265   else
10266     {
10267       struct die_info *child = die->child;
10268
10269       while (child && child->tag)
10270         {
10271           switch (child->tag) {
10272           case DW_TAG_subprogram:
10273             dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
10274             break;
10275           case DW_TAG_namespace:
10276           case DW_TAG_module:
10277             /* FIXME: carlton/2004-01-16: Should we do this for
10278                DW_TAG_class_type/DW_TAG_structure_type, too?  I think
10279                that current GCC's always emit the DIEs corresponding
10280                to definitions of methods of classes as children of a
10281                DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
10282                the DIEs giving the declarations, which could be
10283                anywhere).  But I don't see any reason why the
10284                standards says that they have to be there.  */
10285             get_scope_pc_bounds (child, &current_low, &current_high, cu);
10286
10287             if (current_low != ((CORE_ADDR) -1))
10288               {
10289                 best_low = min (best_low, current_low);
10290                 best_high = max (best_high, current_high);
10291               }
10292             break;
10293           default:
10294             /* Ignore.  */
10295             break;
10296           }
10297
10298           child = sibling_die (child);
10299         }
10300     }
10301
10302   *lowpc = best_low;
10303   *highpc = best_high;
10304 }
10305
10306 /* Record the address ranges for BLOCK, offset by BASEADDR, as given
10307    in DIE.  */
10308
10309 static void
10310 dwarf2_record_block_ranges (struct die_info *die, struct block *block,
10311                             CORE_ADDR baseaddr, struct dwarf2_cu *cu)
10312 {
10313   struct objfile *objfile = cu->objfile;
10314   struct attribute *attr;
10315   struct attribute *attr_high;
10316
10317   attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
10318   if (attr_high)
10319     {
10320       attr = dwarf2_attr (die, DW_AT_low_pc, cu);
10321       if (attr)
10322         {
10323           CORE_ADDR low = DW_ADDR (attr);
10324           CORE_ADDR high;
10325           if (attr_high->form == DW_FORM_addr
10326               || attr_high->form == DW_FORM_GNU_addr_index)
10327             high = DW_ADDR (attr_high);
10328           else
10329             high = low + DW_UNSND (attr_high);
10330
10331           record_block_range (block, baseaddr + low, baseaddr + high - 1);
10332         }
10333     }
10334
10335   attr = dwarf2_attr (die, DW_AT_ranges, cu);
10336   if (attr)
10337     {
10338       bfd *obfd = objfile->obfd;
10339       /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
10340          We take advantage of the fact that DW_AT_ranges does not appear
10341          in DW_TAG_compile_unit of DWO files.  */
10342       int need_ranges_base = die->tag != DW_TAG_compile_unit;
10343
10344       /* The value of the DW_AT_ranges attribute is the offset of the
10345          address range list in the .debug_ranges section.  */
10346       unsigned long offset = (DW_UNSND (attr)
10347                               + (need_ranges_base ? cu->ranges_base : 0));
10348       gdb_byte *buffer = dwarf2_per_objfile->ranges.buffer + offset;
10349
10350       /* For some target architectures, but not others, the
10351          read_address function sign-extends the addresses it returns.
10352          To recognize base address selection entries, we need a
10353          mask.  */
10354       unsigned int addr_size = cu->header.addr_size;
10355       CORE_ADDR base_select_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
10356
10357       /* The base address, to which the next pair is relative.  Note
10358          that this 'base' is a DWARF concept: most entries in a range
10359          list are relative, to reduce the number of relocs against the
10360          debugging information.  This is separate from this function's
10361          'baseaddr' argument, which GDB uses to relocate debugging
10362          information from a shared library based on the address at
10363          which the library was loaded.  */
10364       CORE_ADDR base = cu->base_address;
10365       int base_known = cu->base_known;
10366
10367       gdb_assert (dwarf2_per_objfile->ranges.readin);
10368       if (offset >= dwarf2_per_objfile->ranges.size)
10369         {
10370           complaint (&symfile_complaints,
10371                      _("Offset %lu out of bounds for DW_AT_ranges attribute"),
10372                      offset);
10373           return;
10374         }
10375
10376       for (;;)
10377         {
10378           unsigned int bytes_read;
10379           CORE_ADDR start, end;
10380
10381           start = read_address (obfd, buffer, cu, &bytes_read);
10382           buffer += bytes_read;
10383           end = read_address (obfd, buffer, cu, &bytes_read);
10384           buffer += bytes_read;
10385
10386           /* Did we find the end of the range list?  */
10387           if (start == 0 && end == 0)
10388             break;
10389
10390           /* Did we find a base address selection entry?  */
10391           else if ((start & base_select_mask) == base_select_mask)
10392             {
10393               base = end;
10394               base_known = 1;
10395             }
10396
10397           /* We found an ordinary address range.  */
10398           else
10399             {
10400               if (!base_known)
10401                 {
10402                   complaint (&symfile_complaints,
10403                              _("Invalid .debug_ranges data "
10404                                "(no base address)"));
10405                   return;
10406                 }
10407
10408               if (start > end)
10409                 {
10410                   /* Inverted range entries are invalid.  */
10411                   complaint (&symfile_complaints,
10412                              _("Invalid .debug_ranges data "
10413                                "(inverted range)"));
10414                   return;
10415                 }
10416
10417               /* Empty range entries have no effect.  */
10418               if (start == end)
10419                 continue;
10420
10421               start += base + baseaddr;
10422               end += base + baseaddr;
10423
10424               /* A not-uncommon case of bad debug info.
10425                  Don't pollute the addrmap with bad data.  */
10426               if (start == 0 && !dwarf2_per_objfile->has_section_at_zero)
10427                 {
10428                   complaint (&symfile_complaints,
10429                              _(".debug_ranges entry has start address of zero"
10430                                " [in module %s]"), objfile->name);
10431                   continue;
10432                 }
10433
10434               record_block_range (block, start, end - 1);
10435             }
10436         }
10437     }
10438 }
10439
10440 /* Check whether the producer field indicates either of GCC < 4.6, or the
10441    Intel C/C++ compiler, and cache the result in CU.  */
10442
10443 static void
10444 check_producer (struct dwarf2_cu *cu)
10445 {
10446   const char *cs;
10447   int major, minor, release;
10448
10449   if (cu->producer == NULL)
10450     {
10451       /* For unknown compilers expect their behavior is DWARF version
10452          compliant.
10453
10454          GCC started to support .debug_types sections by -gdwarf-4 since
10455          gcc-4.5.x.  As the .debug_types sections are missing DW_AT_producer
10456          for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
10457          combination.  gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
10458          interpreted incorrectly by GDB now - GCC PR debug/48229.  */
10459     }
10460   else if (strncmp (cu->producer, "GNU ", strlen ("GNU ")) == 0)
10461     {
10462       /* Skip any identifier after "GNU " - such as "C++" or "Java".  */
10463
10464       cs = &cu->producer[strlen ("GNU ")];
10465       while (*cs && !isdigit (*cs))
10466         cs++;
10467       if (sscanf (cs, "%d.%d.%d", &major, &minor, &release) != 3)
10468         {
10469           /* Not recognized as GCC.  */
10470         }
10471       else
10472         {
10473           cu->producer_is_gxx_lt_4_6 = major < 4 || (major == 4 && minor < 6);
10474           cu->producer_is_gcc_lt_4_3 = major < 4 || (major == 4 && minor < 3);
10475         }
10476     }
10477   else if (strncmp (cu->producer, "Intel(R) C", strlen ("Intel(R) C")) == 0)
10478     cu->producer_is_icc = 1;
10479   else
10480     {
10481       /* For other non-GCC compilers, expect their behavior is DWARF version
10482          compliant.  */
10483     }
10484
10485   cu->checked_producer = 1;
10486 }
10487
10488 /* Check for GCC PR debug/45124 fix which is not present in any G++ version up
10489    to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
10490    during 4.6.0 experimental.  */
10491
10492 static int
10493 producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
10494 {
10495   if (!cu->checked_producer)
10496     check_producer (cu);
10497
10498   return cu->producer_is_gxx_lt_4_6;
10499 }
10500
10501 /* Return the default accessibility type if it is not overriden by
10502    DW_AT_accessibility.  */
10503
10504 static enum dwarf_access_attribute
10505 dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
10506 {
10507   if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
10508     {
10509       /* The default DWARF 2 accessibility for members is public, the default
10510          accessibility for inheritance is private.  */
10511
10512       if (die->tag != DW_TAG_inheritance)
10513         return DW_ACCESS_public;
10514       else
10515         return DW_ACCESS_private;
10516     }
10517   else
10518     {
10519       /* DWARF 3+ defines the default accessibility a different way.  The same
10520          rules apply now for DW_TAG_inheritance as for the members and it only
10521          depends on the container kind.  */
10522
10523       if (die->parent->tag == DW_TAG_class_type)
10524         return DW_ACCESS_private;
10525       else
10526         return DW_ACCESS_public;
10527     }
10528 }
10529
10530 /* Look for DW_AT_data_member_location.  Set *OFFSET to the byte
10531    offset.  If the attribute was not found return 0, otherwise return
10532    1.  If it was found but could not properly be handled, set *OFFSET
10533    to 0.  */
10534
10535 static int
10536 handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
10537                              LONGEST *offset)
10538 {
10539   struct attribute *attr;
10540
10541   attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
10542   if (attr != NULL)
10543     {
10544       *offset = 0;
10545
10546       /* Note that we do not check for a section offset first here.
10547          This is because DW_AT_data_member_location is new in DWARF 4,
10548          so if we see it, we can assume that a constant form is really
10549          a constant and not a section offset.  */
10550       if (attr_form_is_constant (attr))
10551         *offset = dwarf2_get_attr_constant_value (attr, 0);
10552       else if (attr_form_is_section_offset (attr))
10553         dwarf2_complex_location_expr_complaint ();
10554       else if (attr_form_is_block (attr))
10555         *offset = decode_locdesc (DW_BLOCK (attr), cu);
10556       else
10557         dwarf2_complex_location_expr_complaint ();
10558
10559       return 1;
10560     }
10561
10562   return 0;
10563 }
10564
10565 /* Add an aggregate field to the field list.  */
10566
10567 static void
10568 dwarf2_add_field (struct field_info *fip, struct die_info *die,
10569                   struct dwarf2_cu *cu)
10570 {
10571   struct objfile *objfile = cu->objfile;
10572   struct gdbarch *gdbarch = get_objfile_arch (objfile);
10573   struct nextfield *new_field;
10574   struct attribute *attr;
10575   struct field *fp;
10576   const char *fieldname = "";
10577
10578   /* Allocate a new field list entry and link it in.  */
10579   new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
10580   make_cleanup (xfree, new_field);
10581   memset (new_field, 0, sizeof (struct nextfield));
10582
10583   if (die->tag == DW_TAG_inheritance)
10584     {
10585       new_field->next = fip->baseclasses;
10586       fip->baseclasses = new_field;
10587     }
10588   else
10589     {
10590       new_field->next = fip->fields;
10591       fip->fields = new_field;
10592     }
10593   fip->nfields++;
10594
10595   attr = dwarf2_attr (die, DW_AT_accessibility, cu);
10596   if (attr)
10597     new_field->accessibility = DW_UNSND (attr);
10598   else
10599     new_field->accessibility = dwarf2_default_access_attribute (die, cu);
10600   if (new_field->accessibility != DW_ACCESS_public)
10601     fip->non_public_fields = 1;
10602
10603   attr = dwarf2_attr (die, DW_AT_virtuality, cu);
10604   if (attr)
10605     new_field->virtuality = DW_UNSND (attr);
10606   else
10607     new_field->virtuality = DW_VIRTUALITY_none;
10608
10609   fp = &new_field->field;
10610
10611   if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
10612     {
10613       LONGEST offset;
10614
10615       /* Data member other than a C++ static data member.  */
10616
10617       /* Get type of field.  */
10618       fp->type = die_type (die, cu);
10619
10620       SET_FIELD_BITPOS (*fp, 0);
10621
10622       /* Get bit size of field (zero if none).  */
10623       attr = dwarf2_attr (die, DW_AT_bit_size, cu);
10624       if (attr)
10625         {
10626           FIELD_BITSIZE (*fp) = DW_UNSND (attr);
10627         }
10628       else
10629         {
10630           FIELD_BITSIZE (*fp) = 0;
10631         }
10632
10633       /* Get bit offset of field.  */
10634       if (handle_data_member_location (die, cu, &offset))
10635         SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
10636       attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
10637       if (attr)
10638         {
10639           if (gdbarch_bits_big_endian (gdbarch))
10640             {
10641               /* For big endian bits, the DW_AT_bit_offset gives the
10642                  additional bit offset from the MSB of the containing
10643                  anonymous object to the MSB of the field.  We don't
10644                  have to do anything special since we don't need to
10645                  know the size of the anonymous object.  */
10646               SET_FIELD_BITPOS (*fp, FIELD_BITPOS (*fp) + DW_UNSND (attr));
10647             }
10648           else
10649             {
10650               /* For little endian bits, compute the bit offset to the
10651                  MSB of the anonymous object, subtract off the number of
10652                  bits from the MSB of the field to the MSB of the
10653                  object, and then subtract off the number of bits of
10654                  the field itself.  The result is the bit offset of
10655                  the LSB of the field.  */
10656               int anonymous_size;
10657               int bit_offset = DW_UNSND (attr);
10658
10659               attr = dwarf2_attr (die, DW_AT_byte_size, cu);
10660               if (attr)
10661                 {
10662                   /* The size of the anonymous object containing
10663                      the bit field is explicit, so use the
10664                      indicated size (in bytes).  */
10665                   anonymous_size = DW_UNSND (attr);
10666                 }
10667               else
10668                 {
10669                   /* The size of the anonymous object containing
10670                      the bit field must be inferred from the type
10671                      attribute of the data member containing the
10672                      bit field.  */
10673                   anonymous_size = TYPE_LENGTH (fp->type);
10674                 }
10675               SET_FIELD_BITPOS (*fp,
10676                                 (FIELD_BITPOS (*fp)
10677                                  + anonymous_size * bits_per_byte
10678                                  - bit_offset - FIELD_BITSIZE (*fp)));
10679             }
10680         }
10681
10682       /* Get name of field.  */
10683       fieldname = dwarf2_name (die, cu);
10684       if (fieldname == NULL)
10685         fieldname = "";
10686
10687       /* The name is already allocated along with this objfile, so we don't
10688          need to duplicate it for the type.  */
10689       fp->name = fieldname;
10690
10691       /* Change accessibility for artificial fields (e.g. virtual table
10692          pointer or virtual base class pointer) to private.  */
10693       if (dwarf2_attr (die, DW_AT_artificial, cu))
10694         {
10695           FIELD_ARTIFICIAL (*fp) = 1;
10696           new_field->accessibility = DW_ACCESS_private;
10697           fip->non_public_fields = 1;
10698         }
10699     }
10700   else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
10701     {
10702       /* C++ static member.  */
10703
10704       /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
10705          is a declaration, but all versions of G++ as of this writing
10706          (so through at least 3.2.1) incorrectly generate
10707          DW_TAG_variable tags.  */
10708
10709       const char *physname;
10710
10711       /* Get name of field.  */
10712       fieldname = dwarf2_name (die, cu);
10713       if (fieldname == NULL)
10714         return;
10715
10716       attr = dwarf2_attr (die, DW_AT_const_value, cu);
10717       if (attr
10718           /* Only create a symbol if this is an external value.
10719              new_symbol checks this and puts the value in the global symbol
10720              table, which we want.  If it is not external, new_symbol
10721              will try to put the value in cu->list_in_scope which is wrong.  */
10722           && dwarf2_flag_true_p (die, DW_AT_external, cu))
10723         {
10724           /* A static const member, not much different than an enum as far as
10725              we're concerned, except that we can support more types.  */
10726           new_symbol (die, NULL, cu);
10727         }
10728
10729       /* Get physical name.  */
10730       physname = dwarf2_physname (fieldname, die, cu);
10731
10732       /* The name is already allocated along with this objfile, so we don't
10733          need to duplicate it for the type.  */
10734       SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
10735       FIELD_TYPE (*fp) = die_type (die, cu);
10736       FIELD_NAME (*fp) = fieldname;
10737     }
10738   else if (die->tag == DW_TAG_inheritance)
10739     {
10740       LONGEST offset;
10741
10742       /* C++ base class field.  */
10743       if (handle_data_member_location (die, cu, &offset))
10744         SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
10745       FIELD_BITSIZE (*fp) = 0;
10746       FIELD_TYPE (*fp) = die_type (die, cu);
10747       FIELD_NAME (*fp) = type_name_no_tag (fp->type);
10748       fip->nbaseclasses++;
10749     }
10750 }
10751
10752 /* Add a typedef defined in the scope of the FIP's class.  */
10753
10754 static void
10755 dwarf2_add_typedef (struct field_info *fip, struct die_info *die,
10756                     struct dwarf2_cu *cu)
10757 {
10758   struct objfile *objfile = cu->objfile;
10759   struct typedef_field_list *new_field;
10760   struct attribute *attr;
10761   struct typedef_field *fp;
10762   char *fieldname = "";
10763
10764   /* Allocate a new field list entry and link it in.  */
10765   new_field = xzalloc (sizeof (*new_field));
10766   make_cleanup (xfree, new_field);
10767
10768   gdb_assert (die->tag == DW_TAG_typedef);
10769
10770   fp = &new_field->field;
10771
10772   /* Get name of field.  */
10773   fp->name = dwarf2_name (die, cu);
10774   if (fp->name == NULL)
10775     return;
10776
10777   fp->type = read_type_die (die, cu);
10778
10779   new_field->next = fip->typedef_field_list;
10780   fip->typedef_field_list = new_field;
10781   fip->typedef_field_list_count++;
10782 }
10783
10784 /* Create the vector of fields, and attach it to the type.  */
10785
10786 static void
10787 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
10788                               struct dwarf2_cu *cu)
10789 {
10790   int nfields = fip->nfields;
10791
10792   /* Record the field count, allocate space for the array of fields,
10793      and create blank accessibility bitfields if necessary.  */
10794   TYPE_NFIELDS (type) = nfields;
10795   TYPE_FIELDS (type) = (struct field *)
10796     TYPE_ALLOC (type, sizeof (struct field) * nfields);
10797   memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
10798
10799   if (fip->non_public_fields && cu->language != language_ada)
10800     {
10801       ALLOCATE_CPLUS_STRUCT_TYPE (type);
10802
10803       TYPE_FIELD_PRIVATE_BITS (type) =
10804         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
10805       B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
10806
10807       TYPE_FIELD_PROTECTED_BITS (type) =
10808         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
10809       B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
10810
10811       TYPE_FIELD_IGNORE_BITS (type) =
10812         (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
10813       B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
10814     }
10815
10816   /* If the type has baseclasses, allocate and clear a bit vector for
10817      TYPE_FIELD_VIRTUAL_BITS.  */
10818   if (fip->nbaseclasses && cu->language != language_ada)
10819     {
10820       int num_bytes = B_BYTES (fip->nbaseclasses);
10821       unsigned char *pointer;
10822
10823       ALLOCATE_CPLUS_STRUCT_TYPE (type);
10824       pointer = TYPE_ALLOC (type, num_bytes);
10825       TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
10826       B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
10827       TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
10828     }
10829
10830   /* Copy the saved-up fields into the field vector.  Start from the head of
10831      the list, adding to the tail of the field array, so that they end up in
10832      the same order in the array in which they were added to the list.  */
10833   while (nfields-- > 0)
10834     {
10835       struct nextfield *fieldp;
10836
10837       if (fip->fields)
10838         {
10839           fieldp = fip->fields;
10840           fip->fields = fieldp->next;
10841         }
10842       else
10843         {
10844           fieldp = fip->baseclasses;
10845           fip->baseclasses = fieldp->next;
10846         }
10847
10848       TYPE_FIELD (type, nfields) = fieldp->field;
10849       switch (fieldp->accessibility)
10850         {
10851         case DW_ACCESS_private:
10852           if (cu->language != language_ada)
10853             SET_TYPE_FIELD_PRIVATE (type, nfields);
10854           break;
10855
10856         case DW_ACCESS_protected:
10857           if (cu->language != language_ada)
10858             SET_TYPE_FIELD_PROTECTED (type, nfields);
10859           break;
10860
10861         case DW_ACCESS_public:
10862           break;
10863
10864         default:
10865           /* Unknown accessibility.  Complain and treat it as public.  */
10866           {
10867             complaint (&symfile_complaints, _("unsupported accessibility %d"),
10868                        fieldp->accessibility);
10869           }
10870           break;
10871         }
10872       if (nfields < fip->nbaseclasses)
10873         {
10874           switch (fieldp->virtuality)
10875             {
10876             case DW_VIRTUALITY_virtual:
10877             case DW_VIRTUALITY_pure_virtual:
10878               if (cu->language == language_ada)
10879                 error (_("unexpected virtuality in component of Ada type"));
10880               SET_TYPE_FIELD_VIRTUAL (type, nfields);
10881               break;
10882             }
10883         }
10884     }
10885 }
10886
10887 /* Return true if this member function is a constructor, false
10888    otherwise.  */
10889
10890 static int
10891 dwarf2_is_constructor (struct die_info *die, struct dwarf2_cu *cu)
10892 {
10893   const char *fieldname;
10894   const char *typename;
10895   int len;
10896
10897   if (die->parent == NULL)
10898     return 0;
10899
10900   if (die->parent->tag != DW_TAG_structure_type
10901       && die->parent->tag != DW_TAG_union_type
10902       && die->parent->tag != DW_TAG_class_type)
10903     return 0;
10904
10905   fieldname = dwarf2_name (die, cu);
10906   typename = dwarf2_name (die->parent, cu);
10907   if (fieldname == NULL || typename == NULL)
10908     return 0;
10909
10910   len = strlen (fieldname);
10911   return (strncmp (fieldname, typename, len) == 0
10912           && (typename[len] == '\0' || typename[len] == '<'));
10913 }
10914
10915 /* Add a member function to the proper fieldlist.  */
10916
10917 static void
10918 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
10919                       struct type *type, struct dwarf2_cu *cu)
10920 {
10921   struct objfile *objfile = cu->objfile;
10922   struct attribute *attr;
10923   struct fnfieldlist *flp;
10924   int i;
10925   struct fn_field *fnp;
10926   const char *fieldname;
10927   struct nextfnfield *new_fnfield;
10928   struct type *this_type;
10929   enum dwarf_access_attribute accessibility;
10930
10931   if (cu->language == language_ada)
10932     error (_("unexpected member function in Ada type"));
10933
10934   /* Get name of member function.  */
10935   fieldname = dwarf2_name (die, cu);
10936   if (fieldname == NULL)
10937     return;
10938
10939   /* Look up member function name in fieldlist.  */
10940   for (i = 0; i < fip->nfnfields; i++)
10941     {
10942       if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
10943         break;
10944     }
10945
10946   /* Create new list element if necessary.  */
10947   if (i < fip->nfnfields)
10948     flp = &fip->fnfieldlists[i];
10949   else
10950     {
10951       if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
10952         {
10953           fip->fnfieldlists = (struct fnfieldlist *)
10954             xrealloc (fip->fnfieldlists,
10955                       (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
10956                       * sizeof (struct fnfieldlist));
10957           if (fip->nfnfields == 0)
10958             make_cleanup (free_current_contents, &fip->fnfieldlists);
10959         }
10960       flp = &fip->fnfieldlists[fip->nfnfields];
10961       flp->name = fieldname;
10962       flp->length = 0;
10963       flp->head = NULL;
10964       i = fip->nfnfields++;
10965     }
10966
10967   /* Create a new member function field and chain it to the field list
10968      entry.  */
10969   new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
10970   make_cleanup (xfree, new_fnfield);
10971   memset (new_fnfield, 0, sizeof (struct nextfnfield));
10972   new_fnfield->next = flp->head;
10973   flp->head = new_fnfield;
10974   flp->length++;
10975
10976   /* Fill in the member function field info.  */
10977   fnp = &new_fnfield->fnfield;
10978
10979   /* Delay processing of the physname until later.  */
10980   if (cu->language == language_cplus || cu->language == language_java)
10981     {
10982       add_to_method_list (type, i, flp->length - 1, fieldname,
10983                           die, cu);
10984     }
10985   else
10986     {
10987       const char *physname = dwarf2_physname (fieldname, die, cu);
10988       fnp->physname = physname ? physname : "";
10989     }
10990
10991   fnp->type = alloc_type (objfile);
10992   this_type = read_type_die (die, cu);
10993   if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
10994     {
10995       int nparams = TYPE_NFIELDS (this_type);
10996
10997       /* TYPE is the domain of this method, and THIS_TYPE is the type
10998            of the method itself (TYPE_CODE_METHOD).  */
10999       smash_to_method_type (fnp->type, type,
11000                             TYPE_TARGET_TYPE (this_type),
11001                             TYPE_FIELDS (this_type),
11002                             TYPE_NFIELDS (this_type),
11003                             TYPE_VARARGS (this_type));
11004
11005       /* Handle static member functions.
11006          Dwarf2 has no clean way to discern C++ static and non-static
11007          member functions.  G++ helps GDB by marking the first
11008          parameter for non-static member functions (which is the this
11009          pointer) as artificial.  We obtain this information from
11010          read_subroutine_type via TYPE_FIELD_ARTIFICIAL.  */
11011       if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
11012         fnp->voffset = VOFFSET_STATIC;
11013     }
11014   else
11015     complaint (&symfile_complaints, _("member function type missing for '%s'"),
11016                dwarf2_full_name (fieldname, die, cu));
11017
11018   /* Get fcontext from DW_AT_containing_type if present.  */
11019   if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
11020     fnp->fcontext = die_containing_type (die, cu);
11021
11022   /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
11023      is_volatile is irrelevant, as it is needed by gdb_mangle_name only.  */
11024
11025   /* Get accessibility.  */
11026   attr = dwarf2_attr (die, DW_AT_accessibility, cu);
11027   if (attr)
11028     accessibility = DW_UNSND (attr);
11029   else
11030     accessibility = dwarf2_default_access_attribute (die, cu);
11031   switch (accessibility)
11032     {
11033     case DW_ACCESS_private:
11034       fnp->is_private = 1;
11035       break;
11036     case DW_ACCESS_protected:
11037       fnp->is_protected = 1;
11038       break;
11039     }
11040
11041   /* Check for artificial methods.  */
11042   attr = dwarf2_attr (die, DW_AT_artificial, cu);
11043   if (attr && DW_UNSND (attr) != 0)
11044     fnp->is_artificial = 1;
11045
11046   fnp->is_constructor = dwarf2_is_constructor (die, cu);
11047
11048   /* Get index in virtual function table if it is a virtual member
11049      function.  For older versions of GCC, this is an offset in the
11050      appropriate virtual table, as specified by DW_AT_containing_type.
11051      For everyone else, it is an expression to be evaluated relative
11052      to the object address.  */
11053
11054   attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
11055   if (attr)
11056     {
11057       if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
11058         {
11059           if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
11060             {
11061               /* Old-style GCC.  */
11062               fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
11063             }
11064           else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
11065                    || (DW_BLOCK (attr)->size > 1
11066                        && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
11067                        && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
11068             {
11069               struct dwarf_block blk;
11070               int offset;
11071
11072               offset = (DW_BLOCK (attr)->data[0] == DW_OP_deref
11073                         ? 1 : 2);
11074               blk.size = DW_BLOCK (attr)->size - offset;
11075               blk.data = DW_BLOCK (attr)->data + offset;
11076               fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
11077               if ((fnp->voffset % cu->header.addr_size) != 0)
11078                 dwarf2_complex_location_expr_complaint ();
11079               else
11080                 fnp->voffset /= cu->header.addr_size;
11081               fnp->voffset += 2;
11082             }
11083           else
11084             dwarf2_complex_location_expr_complaint ();
11085
11086           if (!fnp->fcontext)
11087             fnp->fcontext = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
11088         }
11089       else if (attr_form_is_section_offset (attr))
11090         {
11091           dwarf2_complex_location_expr_complaint ();
11092         }
11093       else
11094         {
11095           dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
11096                                                  fieldname);
11097         }
11098     }
11099   else
11100     {
11101       attr = dwarf2_attr (die, DW_AT_virtuality, cu);
11102       if (attr && DW_UNSND (attr))
11103         {
11104           /* GCC does this, as of 2008-08-25; PR debug/37237.  */
11105           complaint (&symfile_complaints,
11106                      _("Member function \"%s\" (offset %d) is virtual "
11107                        "but the vtable offset is not specified"),
11108                      fieldname, die->offset.sect_off);
11109           ALLOCATE_CPLUS_STRUCT_TYPE (type);
11110           TYPE_CPLUS_DYNAMIC (type) = 1;
11111         }
11112     }
11113 }
11114
11115 /* Create the vector of member function fields, and attach it to the type.  */
11116
11117 static void
11118 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
11119                                  struct dwarf2_cu *cu)
11120 {
11121   struct fnfieldlist *flp;
11122   int i;
11123
11124   if (cu->language == language_ada)
11125     error (_("unexpected member functions in Ada type"));
11126
11127   ALLOCATE_CPLUS_STRUCT_TYPE (type);
11128   TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
11129     TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
11130
11131   for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
11132     {
11133       struct nextfnfield *nfp = flp->head;
11134       struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
11135       int k;
11136
11137       TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
11138       TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
11139       fn_flp->fn_fields = (struct fn_field *)
11140         TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
11141       for (k = flp->length; (k--, nfp); nfp = nfp->next)
11142         fn_flp->fn_fields[k] = nfp->fnfield;
11143     }
11144
11145   TYPE_NFN_FIELDS (type) = fip->nfnfields;
11146 }
11147
11148 /* Returns non-zero if NAME is the name of a vtable member in CU's
11149    language, zero otherwise.  */
11150 static int
11151 is_vtable_name (const char *name, struct dwarf2_cu *cu)
11152 {
11153   static const char vptr[] = "_vptr";
11154   static const char vtable[] = "vtable";
11155
11156   /* Look for the C++ and Java forms of the vtable.  */
11157   if ((cu->language == language_java
11158        && strncmp (name, vtable, sizeof (vtable) - 1) == 0)
11159        || (strncmp (name, vptr, sizeof (vptr) - 1) == 0
11160        && is_cplus_marker (name[sizeof (vptr) - 1])))
11161     return 1;
11162
11163   return 0;
11164 }
11165
11166 /* GCC outputs unnamed structures that are really pointers to member
11167    functions, with the ABI-specified layout.  If TYPE describes
11168    such a structure, smash it into a member function type.
11169
11170    GCC shouldn't do this; it should just output pointer to member DIEs.
11171    This is GCC PR debug/28767.  */
11172
11173 static void
11174 quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
11175 {
11176   struct type *pfn_type, *domain_type, *new_type;
11177
11178   /* Check for a structure with no name and two children.  */
11179   if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
11180     return;
11181
11182   /* Check for __pfn and __delta members.  */
11183   if (TYPE_FIELD_NAME (type, 0) == NULL
11184       || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
11185       || TYPE_FIELD_NAME (type, 1) == NULL
11186       || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
11187     return;
11188
11189   /* Find the type of the method.  */
11190   pfn_type = TYPE_FIELD_TYPE (type, 0);
11191   if (pfn_type == NULL
11192       || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
11193       || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
11194     return;
11195
11196   /* Look for the "this" argument.  */
11197   pfn_type = TYPE_TARGET_TYPE (pfn_type);
11198   if (TYPE_NFIELDS (pfn_type) == 0
11199       /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
11200       || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
11201     return;
11202
11203   domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
11204   new_type = alloc_type (objfile);
11205   smash_to_method_type (new_type, domain_type, TYPE_TARGET_TYPE (pfn_type),
11206                         TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
11207                         TYPE_VARARGS (pfn_type));
11208   smash_to_methodptr_type (type, new_type);
11209 }
11210
11211 /* Return non-zero if the CU's PRODUCER string matches the Intel C/C++ compiler
11212    (icc).  */
11213
11214 static int
11215 producer_is_icc (struct dwarf2_cu *cu)
11216 {
11217   if (!cu->checked_producer)
11218     check_producer (cu);
11219
11220   return cu->producer_is_icc;
11221 }
11222
11223 /* Called when we find the DIE that starts a structure or union scope
11224    (definition) to create a type for the structure or union.  Fill in
11225    the type's name and general properties; the members will not be
11226    processed until process_structure_type.
11227
11228    NOTE: we need to call these functions regardless of whether or not the
11229    DIE has a DW_AT_name attribute, since it might be an anonymous
11230    structure or union.  This gets the type entered into our set of
11231    user defined types.
11232
11233    However, if the structure is incomplete (an opaque struct/union)
11234    then suppress creating a symbol table entry for it since gdb only
11235    wants to find the one with the complete definition.  Note that if
11236    it is complete, we just call new_symbol, which does it's own
11237    checking about whether the struct/union is anonymous or not (and
11238    suppresses creating a symbol table entry itself).  */
11239
11240 static struct type *
11241 read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
11242 {
11243   struct objfile *objfile = cu->objfile;
11244   struct type *type;
11245   struct attribute *attr;
11246   const char *name;
11247
11248   /* If the definition of this type lives in .debug_types, read that type.
11249      Don't follow DW_AT_specification though, that will take us back up
11250      the chain and we want to go down.  */
11251   attr = dwarf2_attr_no_follow (die, DW_AT_signature);
11252   if (attr)
11253     {
11254       struct dwarf2_cu *type_cu = cu;
11255       struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
11256
11257       /* We could just recurse on read_structure_type, but we need to call
11258          get_die_type to ensure only one type for this DIE is created.
11259          This is important, for example, because for c++ classes we need
11260          TYPE_NAME set which is only done by new_symbol.  Blech.  */
11261       type = read_type_die (type_die, type_cu);
11262
11263       /* TYPE_CU may not be the same as CU.
11264          Ensure TYPE is recorded in CU's type_hash table.  */
11265       return set_die_type (die, type, cu);
11266     }
11267
11268   type = alloc_type (objfile);
11269   INIT_CPLUS_SPECIFIC (type);
11270
11271   name = dwarf2_name (die, cu);
11272   if (name != NULL)
11273     {
11274       if (cu->language == language_cplus
11275           || cu->language == language_java)
11276         {
11277           const char *full_name = dwarf2_full_name (name, die, cu);
11278
11279           /* dwarf2_full_name might have already finished building the DIE's
11280              type.  If so, there is no need to continue.  */
11281           if (get_die_type (die, cu) != NULL)
11282             return get_die_type (die, cu);
11283
11284           TYPE_TAG_NAME (type) = full_name;
11285           if (die->tag == DW_TAG_structure_type
11286               || die->tag == DW_TAG_class_type)
11287             TYPE_NAME (type) = TYPE_TAG_NAME (type);
11288         }
11289       else
11290         {
11291           /* The name is already allocated along with this objfile, so
11292              we don't need to duplicate it for the type.  */
11293           TYPE_TAG_NAME (type) = name;
11294           if (die->tag == DW_TAG_class_type)
11295             TYPE_NAME (type) = TYPE_TAG_NAME (type);
11296         }
11297     }
11298
11299   if (die->tag == DW_TAG_structure_type)
11300     {
11301       TYPE_CODE (type) = TYPE_CODE_STRUCT;
11302     }
11303   else if (die->tag == DW_TAG_union_type)
11304     {
11305       TYPE_CODE (type) = TYPE_CODE_UNION;
11306     }
11307   else
11308     {
11309       TYPE_CODE (type) = TYPE_CODE_CLASS;
11310     }
11311
11312   if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
11313     TYPE_DECLARED_CLASS (type) = 1;
11314
11315   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11316   if (attr)
11317     {
11318       TYPE_LENGTH (type) = DW_UNSND (attr);
11319     }
11320   else
11321     {
11322       TYPE_LENGTH (type) = 0;
11323     }
11324
11325   if (producer_is_icc (cu))
11326     {
11327       /* ICC does not output the required DW_AT_declaration
11328          on incomplete types, but gives them a size of zero.  */
11329     }
11330   else
11331     TYPE_STUB_SUPPORTED (type) = 1;
11332
11333   if (die_is_declaration (die, cu))
11334     TYPE_STUB (type) = 1;
11335   else if (attr == NULL && die->child == NULL
11336            && producer_is_realview (cu->producer))
11337     /* RealView does not output the required DW_AT_declaration
11338        on incomplete types.  */
11339     TYPE_STUB (type) = 1;
11340
11341   /* We need to add the type field to the die immediately so we don't
11342      infinitely recurse when dealing with pointers to the structure
11343      type within the structure itself.  */
11344   set_die_type (die, type, cu);
11345
11346   /* set_die_type should be already done.  */
11347   set_descriptive_type (type, die, cu);
11348
11349   return type;
11350 }
11351
11352 /* Finish creating a structure or union type, including filling in
11353    its members and creating a symbol for it.  */
11354
11355 static void
11356 process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
11357 {
11358   struct objfile *objfile = cu->objfile;
11359   struct die_info *child_die = die->child;
11360   struct type *type;
11361
11362   type = get_die_type (die, cu);
11363   if (type == NULL)
11364     type = read_structure_type (die, cu);
11365
11366   if (die->child != NULL && ! die_is_declaration (die, cu))
11367     {
11368       struct field_info fi;
11369       struct die_info *child_die;
11370       VEC (symbolp) *template_args = NULL;
11371       struct cleanup *back_to = make_cleanup (null_cleanup, 0);
11372
11373       memset (&fi, 0, sizeof (struct field_info));
11374
11375       child_die = die->child;
11376
11377       while (child_die && child_die->tag)
11378         {
11379           if (child_die->tag == DW_TAG_member
11380               || child_die->tag == DW_TAG_variable)
11381             {
11382               /* NOTE: carlton/2002-11-05: A C++ static data member
11383                  should be a DW_TAG_member that is a declaration, but
11384                  all versions of G++ as of this writing (so through at
11385                  least 3.2.1) incorrectly generate DW_TAG_variable
11386                  tags for them instead.  */
11387               dwarf2_add_field (&fi, child_die, cu);
11388             }
11389           else if (child_die->tag == DW_TAG_subprogram)
11390             {
11391               /* C++ member function.  */
11392               dwarf2_add_member_fn (&fi, child_die, type, cu);
11393             }
11394           else if (child_die->tag == DW_TAG_inheritance)
11395             {
11396               /* C++ base class field.  */
11397               dwarf2_add_field (&fi, child_die, cu);
11398             }
11399           else if (child_die->tag == DW_TAG_typedef)
11400             dwarf2_add_typedef (&fi, child_die, cu);
11401           else if (child_die->tag == DW_TAG_template_type_param
11402                    || child_die->tag == DW_TAG_template_value_param)
11403             {
11404               struct symbol *arg = new_symbol (child_die, NULL, cu);
11405
11406               if (arg != NULL)
11407                 VEC_safe_push (symbolp, template_args, arg);
11408             }
11409
11410           child_die = sibling_die (child_die);
11411         }
11412
11413       /* Attach template arguments to type.  */
11414       if (! VEC_empty (symbolp, template_args))
11415         {
11416           ALLOCATE_CPLUS_STRUCT_TYPE (type);
11417           TYPE_N_TEMPLATE_ARGUMENTS (type)
11418             = VEC_length (symbolp, template_args);
11419           TYPE_TEMPLATE_ARGUMENTS (type)
11420             = obstack_alloc (&objfile->objfile_obstack,
11421                              (TYPE_N_TEMPLATE_ARGUMENTS (type)
11422                               * sizeof (struct symbol *)));
11423           memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
11424                   VEC_address (symbolp, template_args),
11425                   (TYPE_N_TEMPLATE_ARGUMENTS (type)
11426                    * sizeof (struct symbol *)));
11427           VEC_free (symbolp, template_args);
11428         }
11429
11430       /* Attach fields and member functions to the type.  */
11431       if (fi.nfields)
11432         dwarf2_attach_fields_to_type (&fi, type, cu);
11433       if (fi.nfnfields)
11434         {
11435           dwarf2_attach_fn_fields_to_type (&fi, type, cu);
11436
11437           /* Get the type which refers to the base class (possibly this
11438              class itself) which contains the vtable pointer for the current
11439              class from the DW_AT_containing_type attribute.  This use of
11440              DW_AT_containing_type is a GNU extension.  */
11441
11442           if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
11443             {
11444               struct type *t = die_containing_type (die, cu);
11445
11446               TYPE_VPTR_BASETYPE (type) = t;
11447               if (type == t)
11448                 {
11449                   int i;
11450
11451                   /* Our own class provides vtbl ptr.  */
11452                   for (i = TYPE_NFIELDS (t) - 1;
11453                        i >= TYPE_N_BASECLASSES (t);
11454                        --i)
11455                     {
11456                       const char *fieldname = TYPE_FIELD_NAME (t, i);
11457
11458                       if (is_vtable_name (fieldname, cu))
11459                         {
11460                           TYPE_VPTR_FIELDNO (type) = i;
11461                           break;
11462                         }
11463                     }
11464
11465                   /* Complain if virtual function table field not found.  */
11466                   if (i < TYPE_N_BASECLASSES (t))
11467                     complaint (&symfile_complaints,
11468                                _("virtual function table pointer "
11469                                  "not found when defining class '%s'"),
11470                                TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
11471                                "");
11472                 }
11473               else
11474                 {
11475                   TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
11476                 }
11477             }
11478           else if (cu->producer
11479                    && strncmp (cu->producer,
11480                                "IBM(R) XL C/C++ Advanced Edition", 32) == 0)
11481             {
11482               /* The IBM XLC compiler does not provide direct indication
11483                  of the containing type, but the vtable pointer is
11484                  always named __vfp.  */
11485
11486               int i;
11487
11488               for (i = TYPE_NFIELDS (type) - 1;
11489                    i >= TYPE_N_BASECLASSES (type);
11490                    --i)
11491                 {
11492                   if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
11493                     {
11494                       TYPE_VPTR_FIELDNO (type) = i;
11495                       TYPE_VPTR_BASETYPE (type) = type;
11496                       break;
11497                     }
11498                 }
11499             }
11500         }
11501
11502       /* Copy fi.typedef_field_list linked list elements content into the
11503          allocated array TYPE_TYPEDEF_FIELD_ARRAY (type).  */
11504       if (fi.typedef_field_list)
11505         {
11506           int i = fi.typedef_field_list_count;
11507
11508           ALLOCATE_CPLUS_STRUCT_TYPE (type);
11509           TYPE_TYPEDEF_FIELD_ARRAY (type)
11510             = TYPE_ALLOC (type, sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * i);
11511           TYPE_TYPEDEF_FIELD_COUNT (type) = i;
11512
11513           /* Reverse the list order to keep the debug info elements order.  */
11514           while (--i >= 0)
11515             {
11516               struct typedef_field *dest, *src;
11517
11518               dest = &TYPE_TYPEDEF_FIELD (type, i);
11519               src = &fi.typedef_field_list->field;
11520               fi.typedef_field_list = fi.typedef_field_list->next;
11521               *dest = *src;
11522             }
11523         }
11524
11525       do_cleanups (back_to);
11526
11527       if (HAVE_CPLUS_STRUCT (type))
11528         TYPE_CPLUS_REALLY_JAVA (type) = cu->language == language_java;
11529     }
11530
11531   quirk_gcc_member_function_pointer (type, objfile);
11532
11533   /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
11534      snapshots) has been known to create a die giving a declaration
11535      for a class that has, as a child, a die giving a definition for a
11536      nested class.  So we have to process our children even if the
11537      current die is a declaration.  Normally, of course, a declaration
11538      won't have any children at all.  */
11539
11540   while (child_die != NULL && child_die->tag)
11541     {
11542       if (child_die->tag == DW_TAG_member
11543           || child_die->tag == DW_TAG_variable
11544           || child_die->tag == DW_TAG_inheritance
11545           || child_die->tag == DW_TAG_template_value_param
11546           || child_die->tag == DW_TAG_template_type_param)
11547         {
11548           /* Do nothing.  */
11549         }
11550       else
11551         process_die (child_die, cu);
11552
11553       child_die = sibling_die (child_die);
11554     }
11555
11556   /* Do not consider external references.  According to the DWARF standard,
11557      these DIEs are identified by the fact that they have no byte_size
11558      attribute, and a declaration attribute.  */
11559   if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
11560       || !die_is_declaration (die, cu))
11561     new_symbol (die, type, cu);
11562 }
11563
11564 /* Given a DW_AT_enumeration_type die, set its type.  We do not
11565    complete the type's fields yet, or create any symbols.  */
11566
11567 static struct type *
11568 read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
11569 {
11570   struct objfile *objfile = cu->objfile;
11571   struct type *type;
11572   struct attribute *attr;
11573   const char *name;
11574
11575   /* If the definition of this type lives in .debug_types, read that type.
11576      Don't follow DW_AT_specification though, that will take us back up
11577      the chain and we want to go down.  */
11578   attr = dwarf2_attr_no_follow (die, DW_AT_signature);
11579   if (attr)
11580     {
11581       struct dwarf2_cu *type_cu = cu;
11582       struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
11583
11584       type = read_type_die (type_die, type_cu);
11585
11586       /* TYPE_CU may not be the same as CU.
11587          Ensure TYPE is recorded in CU's type_hash table.  */
11588       return set_die_type (die, type, cu);
11589     }
11590
11591   type = alloc_type (objfile);
11592
11593   TYPE_CODE (type) = TYPE_CODE_ENUM;
11594   name = dwarf2_full_name (NULL, die, cu);
11595   if (name != NULL)
11596     TYPE_TAG_NAME (type) = name;
11597
11598   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11599   if (attr)
11600     {
11601       TYPE_LENGTH (type) = DW_UNSND (attr);
11602     }
11603   else
11604     {
11605       TYPE_LENGTH (type) = 0;
11606     }
11607
11608   /* The enumeration DIE can be incomplete.  In Ada, any type can be
11609      declared as private in the package spec, and then defined only
11610      inside the package body.  Such types are known as Taft Amendment
11611      Types.  When another package uses such a type, an incomplete DIE
11612      may be generated by the compiler.  */
11613   if (die_is_declaration (die, cu))
11614     TYPE_STUB (type) = 1;
11615
11616   return set_die_type (die, type, cu);
11617 }
11618
11619 /* Given a pointer to a die which begins an enumeration, process all
11620    the dies that define the members of the enumeration, and create the
11621    symbol for the enumeration type.
11622
11623    NOTE: We reverse the order of the element list.  */
11624
11625 static void
11626 process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
11627 {
11628   struct type *this_type;
11629
11630   this_type = get_die_type (die, cu);
11631   if (this_type == NULL)
11632     this_type = read_enumeration_type (die, cu);
11633
11634   if (die->child != NULL)
11635     {
11636       struct die_info *child_die;
11637       struct symbol *sym;
11638       struct field *fields = NULL;
11639       int num_fields = 0;
11640       int unsigned_enum = 1;
11641       const char *name;
11642       int flag_enum = 1;
11643       ULONGEST mask = 0;
11644
11645       child_die = die->child;
11646       while (child_die && child_die->tag)
11647         {
11648           if (child_die->tag != DW_TAG_enumerator)
11649             {
11650               process_die (child_die, cu);
11651             }
11652           else
11653             {
11654               name = dwarf2_name (child_die, cu);
11655               if (name)
11656                 {
11657                   sym = new_symbol (child_die, this_type, cu);
11658                   if (SYMBOL_VALUE (sym) < 0)
11659                     {
11660                       unsigned_enum = 0;
11661                       flag_enum = 0;
11662                     }
11663                   else if ((mask & SYMBOL_VALUE (sym)) != 0)
11664                     flag_enum = 0;
11665                   else
11666                     mask |= SYMBOL_VALUE (sym);
11667
11668                   if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
11669                     {
11670                       fields = (struct field *)
11671                         xrealloc (fields,
11672                                   (num_fields + DW_FIELD_ALLOC_CHUNK)
11673                                   * sizeof (struct field));
11674                     }
11675
11676                   FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
11677                   FIELD_TYPE (fields[num_fields]) = NULL;
11678                   SET_FIELD_ENUMVAL (fields[num_fields], SYMBOL_VALUE (sym));
11679                   FIELD_BITSIZE (fields[num_fields]) = 0;
11680
11681                   num_fields++;
11682                 }
11683             }
11684
11685           child_die = sibling_die (child_die);
11686         }
11687
11688       if (num_fields)
11689         {
11690           TYPE_NFIELDS (this_type) = num_fields;
11691           TYPE_FIELDS (this_type) = (struct field *)
11692             TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
11693           memcpy (TYPE_FIELDS (this_type), fields,
11694                   sizeof (struct field) * num_fields);
11695           xfree (fields);
11696         }
11697       if (unsigned_enum)
11698         TYPE_UNSIGNED (this_type) = 1;
11699       if (flag_enum)
11700         TYPE_FLAG_ENUM (this_type) = 1;
11701     }
11702
11703   /* If we are reading an enum from a .debug_types unit, and the enum
11704      is a declaration, and the enum is not the signatured type in the
11705      unit, then we do not want to add a symbol for it.  Adding a
11706      symbol would in some cases obscure the true definition of the
11707      enum, giving users an incomplete type when the definition is
11708      actually available.  Note that we do not want to do this for all
11709      enums which are just declarations, because C++0x allows forward
11710      enum declarations.  */
11711   if (cu->per_cu->is_debug_types
11712       && die_is_declaration (die, cu))
11713     {
11714       struct signatured_type *sig_type;
11715
11716       sig_type
11717         = lookup_signatured_type_at_offset (dwarf2_per_objfile->objfile,
11718                                             cu->per_cu->section,
11719                                             cu->per_cu->offset);
11720       gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
11721       if (sig_type->type_offset_in_section.sect_off != die->offset.sect_off)
11722         return;
11723     }
11724
11725   new_symbol (die, this_type, cu);
11726 }
11727
11728 /* Extract all information from a DW_TAG_array_type DIE and put it in
11729    the DIE's type field.  For now, this only handles one dimensional
11730    arrays.  */
11731
11732 static struct type *
11733 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
11734 {
11735   struct objfile *objfile = cu->objfile;
11736   struct die_info *child_die;
11737   struct type *type;
11738   struct type *element_type, *range_type, *index_type;
11739   struct type **range_types = NULL;
11740   struct attribute *attr;
11741   int ndim = 0;
11742   struct cleanup *back_to;
11743   const char *name;
11744
11745   element_type = die_type (die, cu);
11746
11747   /* The die_type call above may have already set the type for this DIE.  */
11748   type = get_die_type (die, cu);
11749   if (type)
11750     return type;
11751
11752   /* Irix 6.2 native cc creates array types without children for
11753      arrays with unspecified length.  */
11754   if (die->child == NULL)
11755     {
11756       index_type = objfile_type (objfile)->builtin_int;
11757       range_type = create_range_type (NULL, index_type, 0, -1);
11758       type = create_array_type (NULL, element_type, range_type);
11759       return set_die_type (die, type, cu);
11760     }
11761
11762   back_to = make_cleanup (null_cleanup, NULL);
11763   child_die = die->child;
11764   while (child_die && child_die->tag)
11765     {
11766       if (child_die->tag == DW_TAG_subrange_type)
11767         {
11768           struct type *child_type = read_type_die (child_die, cu);
11769
11770           if (child_type != NULL)
11771             {
11772               /* The range type was succesfully read.  Save it for the
11773                  array type creation.  */
11774               if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
11775                 {
11776                   range_types = (struct type **)
11777                     xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
11778                               * sizeof (struct type *));
11779                   if (ndim == 0)
11780                     make_cleanup (free_current_contents, &range_types);
11781                 }
11782               range_types[ndim++] = child_type;
11783             }
11784         }
11785       child_die = sibling_die (child_die);
11786     }
11787
11788   /* Dwarf2 dimensions are output from left to right, create the
11789      necessary array types in backwards order.  */
11790
11791   type = element_type;
11792
11793   if (read_array_order (die, cu) == DW_ORD_col_major)
11794     {
11795       int i = 0;
11796
11797       while (i < ndim)
11798         type = create_array_type (NULL, type, range_types[i++]);
11799     }
11800   else
11801     {
11802       while (ndim-- > 0)
11803         type = create_array_type (NULL, type, range_types[ndim]);
11804     }
11805
11806   /* Understand Dwarf2 support for vector types (like they occur on
11807      the PowerPC w/ AltiVec).  Gcc just adds another attribute to the
11808      array type.  This is not part of the Dwarf2/3 standard yet, but a
11809      custom vendor extension.  The main difference between a regular
11810      array and the vector variant is that vectors are passed by value
11811      to functions.  */
11812   attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
11813   if (attr)
11814     make_vector_type (type);
11815
11816   /* The DIE may have DW_AT_byte_size set.  For example an OpenCL
11817      implementation may choose to implement triple vectors using this
11818      attribute.  */
11819   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11820   if (attr)
11821     {
11822       if (DW_UNSND (attr) >= TYPE_LENGTH (type))
11823         TYPE_LENGTH (type) = DW_UNSND (attr);
11824       else
11825         complaint (&symfile_complaints,
11826                    _("DW_AT_byte_size for array type smaller "
11827                      "than the total size of elements"));
11828     }
11829
11830   name = dwarf2_name (die, cu);
11831   if (name)
11832     TYPE_NAME (type) = name;
11833
11834   /* Install the type in the die.  */
11835   set_die_type (die, type, cu);
11836
11837   /* set_die_type should be already done.  */
11838   set_descriptive_type (type, die, cu);
11839
11840   do_cleanups (back_to);
11841
11842   return type;
11843 }
11844
11845 static enum dwarf_array_dim_ordering
11846 read_array_order (struct die_info *die, struct dwarf2_cu *cu)
11847 {
11848   struct attribute *attr;
11849
11850   attr = dwarf2_attr (die, DW_AT_ordering, cu);
11851
11852   if (attr) return DW_SND (attr);
11853
11854   /* GNU F77 is a special case, as at 08/2004 array type info is the
11855      opposite order to the dwarf2 specification, but data is still
11856      laid out as per normal fortran.
11857
11858      FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
11859      version checking.  */
11860
11861   if (cu->language == language_fortran
11862       && cu->producer && strstr (cu->producer, "GNU F77"))
11863     {
11864       return DW_ORD_row_major;
11865     }
11866
11867   switch (cu->language_defn->la_array_ordering)
11868     {
11869     case array_column_major:
11870       return DW_ORD_col_major;
11871     case array_row_major:
11872     default:
11873       return DW_ORD_row_major;
11874     };
11875 }
11876
11877 /* Extract all information from a DW_TAG_set_type DIE and put it in
11878    the DIE's type field.  */
11879
11880 static struct type *
11881 read_set_type (struct die_info *die, struct dwarf2_cu *cu)
11882 {
11883   struct type *domain_type, *set_type;
11884   struct attribute *attr;
11885
11886   domain_type = die_type (die, cu);
11887
11888   /* The die_type call above may have already set the type for this DIE.  */
11889   set_type = get_die_type (die, cu);
11890   if (set_type)
11891     return set_type;
11892
11893   set_type = create_set_type (NULL, domain_type);
11894
11895   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11896   if (attr)
11897     TYPE_LENGTH (set_type) = DW_UNSND (attr);
11898
11899   return set_die_type (die, set_type, cu);
11900 }
11901
11902 /* A helper for read_common_block that creates a locexpr baton.
11903    SYM is the symbol which we are marking as computed.
11904    COMMON_DIE is the DIE for the common block.
11905    COMMON_LOC is the location expression attribute for the common
11906    block itself.
11907    MEMBER_LOC is the location expression attribute for the particular
11908    member of the common block that we are processing.
11909    CU is the CU from which the above come.  */
11910
11911 static void
11912 mark_common_block_symbol_computed (struct symbol *sym,
11913                                    struct die_info *common_die,
11914                                    struct attribute *common_loc,
11915                                    struct attribute *member_loc,
11916                                    struct dwarf2_cu *cu)
11917 {
11918   struct objfile *objfile = dwarf2_per_objfile->objfile;
11919   struct dwarf2_locexpr_baton *baton;
11920   gdb_byte *ptr;
11921   unsigned int cu_off;
11922   enum bfd_endian byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
11923   LONGEST offset = 0;
11924
11925   gdb_assert (common_loc && member_loc);
11926   gdb_assert (attr_form_is_block (common_loc));
11927   gdb_assert (attr_form_is_block (member_loc)
11928               || attr_form_is_constant (member_loc));
11929
11930   baton = obstack_alloc (&objfile->objfile_obstack,
11931                          sizeof (struct dwarf2_locexpr_baton));
11932   baton->per_cu = cu->per_cu;
11933   gdb_assert (baton->per_cu);
11934
11935   baton->size = 5 /* DW_OP_call4 */ + 1 /* DW_OP_plus */;
11936
11937   if (attr_form_is_constant (member_loc))
11938     {
11939       offset = dwarf2_get_attr_constant_value (member_loc, 0);
11940       baton->size += 1 /* DW_OP_addr */ + cu->header.addr_size;
11941     }
11942   else
11943     baton->size += DW_BLOCK (member_loc)->size;
11944
11945   ptr = obstack_alloc (&objfile->objfile_obstack, baton->size);
11946   baton->data = ptr;
11947
11948   *ptr++ = DW_OP_call4;
11949   cu_off = common_die->offset.sect_off - cu->per_cu->offset.sect_off;
11950   store_unsigned_integer (ptr, 4, byte_order, cu_off);
11951   ptr += 4;
11952
11953   if (attr_form_is_constant (member_loc))
11954     {
11955       *ptr++ = DW_OP_addr;
11956       store_unsigned_integer (ptr, cu->header.addr_size, byte_order, offset);
11957       ptr += cu->header.addr_size;
11958     }
11959   else
11960     {
11961       /* We have to copy the data here, because DW_OP_call4 will only
11962          use a DW_AT_location attribute.  */
11963       memcpy (ptr, DW_BLOCK (member_loc)->data, DW_BLOCK (member_loc)->size);
11964       ptr += DW_BLOCK (member_loc)->size;
11965     }
11966
11967   *ptr++ = DW_OP_plus;
11968   gdb_assert (ptr - baton->data == baton->size);
11969
11970   SYMBOL_LOCATION_BATON (sym) = baton;
11971   SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
11972 }
11973
11974 /* Create appropriate locally-scoped variables for all the
11975    DW_TAG_common_block entries.  Also create a struct common_block
11976    listing all such variables for `info common'.  COMMON_BLOCK_DOMAIN
11977    is used to sepate the common blocks name namespace from regular
11978    variable names.  */
11979
11980 static void
11981 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
11982 {
11983   struct attribute *attr;
11984
11985   attr = dwarf2_attr (die, DW_AT_location, cu);
11986   if (attr)
11987     {
11988       /* Support the .debug_loc offsets.  */
11989       if (attr_form_is_block (attr))
11990         {
11991           /* Ok.  */
11992         }
11993       else if (attr_form_is_section_offset (attr))
11994         {
11995           dwarf2_complex_location_expr_complaint ();
11996           attr = NULL;
11997         }
11998       else
11999         {
12000           dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
12001                                                  "common block member");
12002           attr = NULL;
12003         }
12004     }
12005
12006   if (die->child != NULL)
12007     {
12008       struct objfile *objfile = cu->objfile;
12009       struct die_info *child_die;
12010       size_t n_entries = 0, size;
12011       struct common_block *common_block;
12012       struct symbol *sym;
12013
12014       for (child_die = die->child;
12015            child_die && child_die->tag;
12016            child_die = sibling_die (child_die))
12017         ++n_entries;
12018
12019       size = (sizeof (struct common_block)
12020               + (n_entries - 1) * sizeof (struct symbol *));
12021       common_block = obstack_alloc (&objfile->objfile_obstack, size);
12022       memset (common_block->contents, 0, n_entries * sizeof (struct symbol *));
12023       common_block->n_entries = 0;
12024
12025       for (child_die = die->child;
12026            child_die && child_die->tag;
12027            child_die = sibling_die (child_die))
12028         {
12029           /* Create the symbol in the DW_TAG_common_block block in the current
12030              symbol scope.  */
12031           sym = new_symbol (child_die, NULL, cu);
12032           if (sym != NULL)
12033             {
12034               struct attribute *member_loc;
12035
12036               common_block->contents[common_block->n_entries++] = sym;
12037
12038               member_loc = dwarf2_attr (child_die, DW_AT_data_member_location,
12039                                         cu);
12040               if (member_loc)
12041                 {
12042                   /* GDB has handled this for a long time, but it is
12043                      not specified by DWARF.  It seems to have been
12044                      emitted by gfortran at least as recently as:
12045                      http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23057.  */
12046                   complaint (&symfile_complaints,
12047                              _("Variable in common block has "
12048                                "DW_AT_data_member_location "
12049                                "- DIE at 0x%x [in module %s]"),
12050                              child_die->offset.sect_off, cu->objfile->name);
12051
12052                   if (attr_form_is_section_offset (member_loc))
12053                     dwarf2_complex_location_expr_complaint ();
12054                   else if (attr_form_is_constant (member_loc)
12055                            || attr_form_is_block (member_loc))
12056                     {
12057                       if (attr)
12058                         mark_common_block_symbol_computed (sym, die, attr,
12059                                                            member_loc, cu);
12060                     }
12061                   else
12062                     dwarf2_complex_location_expr_complaint ();
12063                 }
12064             }
12065         }
12066
12067       sym = new_symbol (die, objfile_type (objfile)->builtin_void, cu);
12068       SYMBOL_VALUE_COMMON_BLOCK (sym) = common_block;
12069     }
12070 }
12071
12072 /* Create a type for a C++ namespace.  */
12073
12074 static struct type *
12075 read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
12076 {
12077   struct objfile *objfile = cu->objfile;
12078   const char *previous_prefix, *name;
12079   int is_anonymous;
12080   struct type *type;
12081
12082   /* For extensions, reuse the type of the original namespace.  */
12083   if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
12084     {
12085       struct die_info *ext_die;
12086       struct dwarf2_cu *ext_cu = cu;
12087
12088       ext_die = dwarf2_extension (die, &ext_cu);
12089       type = read_type_die (ext_die, ext_cu);
12090
12091       /* EXT_CU may not be the same as CU.
12092          Ensure TYPE is recorded in CU's type_hash table.  */
12093       return set_die_type (die, type, cu);
12094     }
12095
12096   name = namespace_name (die, &is_anonymous, cu);
12097
12098   /* Now build the name of the current namespace.  */
12099
12100   previous_prefix = determine_prefix (die, cu);
12101   if (previous_prefix[0] != '\0')
12102     name = typename_concat (&objfile->objfile_obstack,
12103                             previous_prefix, name, 0, cu);
12104
12105   /* Create the type.  */
12106   type = init_type (TYPE_CODE_NAMESPACE, 0, 0, NULL,
12107                     objfile);
12108   TYPE_NAME (type) = name;
12109   TYPE_TAG_NAME (type) = TYPE_NAME (type);
12110
12111   return set_die_type (die, type, cu);
12112 }
12113
12114 /* Read a C++ namespace.  */
12115
12116 static void
12117 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
12118 {
12119   struct objfile *objfile = cu->objfile;
12120   int is_anonymous;
12121
12122   /* Add a symbol associated to this if we haven't seen the namespace
12123      before.  Also, add a using directive if it's an anonymous
12124      namespace.  */
12125
12126   if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
12127     {
12128       struct type *type;
12129
12130       type = read_type_die (die, cu);
12131       new_symbol (die, type, cu);
12132
12133       namespace_name (die, &is_anonymous, cu);
12134       if (is_anonymous)
12135         {
12136           const char *previous_prefix = determine_prefix (die, cu);
12137
12138           cp_add_using_directive (previous_prefix, TYPE_NAME (type), NULL,
12139                                   NULL, NULL, 0, &objfile->objfile_obstack);
12140         }
12141     }
12142
12143   if (die->child != NULL)
12144     {
12145       struct die_info *child_die = die->child;
12146
12147       while (child_die && child_die->tag)
12148         {
12149           process_die (child_die, cu);
12150           child_die = sibling_die (child_die);
12151         }
12152     }
12153 }
12154
12155 /* Read a Fortran module as type.  This DIE can be only a declaration used for
12156    imported module.  Still we need that type as local Fortran "use ... only"
12157    declaration imports depend on the created type in determine_prefix.  */
12158
12159 static struct type *
12160 read_module_type (struct die_info *die, struct dwarf2_cu *cu)
12161 {
12162   struct objfile *objfile = cu->objfile;
12163   const char *module_name;
12164   struct type *type;
12165
12166   module_name = dwarf2_name (die, cu);
12167   if (!module_name)
12168     complaint (&symfile_complaints,
12169                _("DW_TAG_module has no name, offset 0x%x"),
12170                die->offset.sect_off);
12171   type = init_type (TYPE_CODE_MODULE, 0, 0, module_name, objfile);
12172
12173   /* determine_prefix uses TYPE_TAG_NAME.  */
12174   TYPE_TAG_NAME (type) = TYPE_NAME (type);
12175
12176   return set_die_type (die, type, cu);
12177 }
12178
12179 /* Read a Fortran module.  */
12180
12181 static void
12182 read_module (struct die_info *die, struct dwarf2_cu *cu)
12183 {
12184   struct die_info *child_die = die->child;
12185
12186   while (child_die && child_die->tag)
12187     {
12188       process_die (child_die, cu);
12189       child_die = sibling_die (child_die);
12190     }
12191 }
12192
12193 /* Return the name of the namespace represented by DIE.  Set
12194    *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
12195    namespace.  */
12196
12197 static const char *
12198 namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
12199 {
12200   struct die_info *current_die;
12201   const char *name = NULL;
12202
12203   /* Loop through the extensions until we find a name.  */
12204
12205   for (current_die = die;
12206        current_die != NULL;
12207        current_die = dwarf2_extension (die, &cu))
12208     {
12209       name = dwarf2_name (current_die, cu);
12210       if (name != NULL)
12211         break;
12212     }
12213
12214   /* Is it an anonymous namespace?  */
12215
12216   *is_anonymous = (name == NULL);
12217   if (*is_anonymous)
12218     name = CP_ANONYMOUS_NAMESPACE_STR;
12219
12220   return name;
12221 }
12222
12223 /* Extract all information from a DW_TAG_pointer_type DIE and add to
12224    the user defined type vector.  */
12225
12226 static struct type *
12227 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
12228 {
12229   struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
12230   struct comp_unit_head *cu_header = &cu->header;
12231   struct type *type;
12232   struct attribute *attr_byte_size;
12233   struct attribute *attr_address_class;
12234   int byte_size, addr_class;
12235   struct type *target_type;
12236
12237   target_type = die_type (die, cu);
12238
12239   /* The die_type call above may have already set the type for this DIE.  */
12240   type = get_die_type (die, cu);
12241   if (type)
12242     return type;
12243
12244   type = lookup_pointer_type (target_type);
12245
12246   attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
12247   if (attr_byte_size)
12248     byte_size = DW_UNSND (attr_byte_size);
12249   else
12250     byte_size = cu_header->addr_size;
12251
12252   attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
12253   if (attr_address_class)
12254     addr_class = DW_UNSND (attr_address_class);
12255   else
12256     addr_class = DW_ADDR_none;
12257
12258   /* If the pointer size or address class is different than the
12259      default, create a type variant marked as such and set the
12260      length accordingly.  */
12261   if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
12262     {
12263       if (gdbarch_address_class_type_flags_p (gdbarch))
12264         {
12265           int type_flags;
12266
12267           type_flags = gdbarch_address_class_type_flags
12268                          (gdbarch, byte_size, addr_class);
12269           gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
12270                       == 0);
12271           type = make_type_with_address_space (type, type_flags);
12272         }
12273       else if (TYPE_LENGTH (type) != byte_size)
12274         {
12275           complaint (&symfile_complaints,
12276                      _("invalid pointer size %d"), byte_size);
12277         }
12278       else
12279         {
12280           /* Should we also complain about unhandled address classes?  */
12281         }
12282     }
12283
12284   TYPE_LENGTH (type) = byte_size;
12285   return set_die_type (die, type, cu);
12286 }
12287
12288 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
12289    the user defined type vector.  */
12290
12291 static struct type *
12292 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
12293 {
12294   struct type *type;
12295   struct type *to_type;
12296   struct type *domain;
12297
12298   to_type = die_type (die, cu);
12299   domain = die_containing_type (die, cu);
12300
12301   /* The calls above may have already set the type for this DIE.  */
12302   type = get_die_type (die, cu);
12303   if (type)
12304     return type;
12305
12306   if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
12307     type = lookup_methodptr_type (to_type);
12308   else if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_FUNC)
12309     {
12310       struct type *new_type = alloc_type (cu->objfile);
12311
12312       smash_to_method_type (new_type, domain, TYPE_TARGET_TYPE (to_type),
12313                             TYPE_FIELDS (to_type), TYPE_NFIELDS (to_type),
12314                             TYPE_VARARGS (to_type));
12315       type = lookup_methodptr_type (new_type);
12316     }
12317   else
12318     type = lookup_memberptr_type (to_type, domain);
12319
12320   return set_die_type (die, type, cu);
12321 }
12322
12323 /* Extract all information from a DW_TAG_reference_type DIE and add to
12324    the user defined type vector.  */
12325
12326 static struct type *
12327 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
12328 {
12329   struct comp_unit_head *cu_header = &cu->header;
12330   struct type *type, *target_type;
12331   struct attribute *attr;
12332
12333   target_type = die_type (die, cu);
12334
12335   /* The die_type call above may have already set the type for this DIE.  */
12336   type = get_die_type (die, cu);
12337   if (type)
12338     return type;
12339
12340   type = lookup_reference_type (target_type);
12341   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12342   if (attr)
12343     {
12344       TYPE_LENGTH (type) = DW_UNSND (attr);
12345     }
12346   else
12347     {
12348       TYPE_LENGTH (type) = cu_header->addr_size;
12349     }
12350   return set_die_type (die, type, cu);
12351 }
12352
12353 static struct type *
12354 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
12355 {
12356   struct type *base_type, *cv_type;
12357
12358   base_type = die_type (die, cu);
12359
12360   /* The die_type call above may have already set the type for this DIE.  */
12361   cv_type = get_die_type (die, cu);
12362   if (cv_type)
12363     return cv_type;
12364
12365   /* In case the const qualifier is applied to an array type, the element type
12366      is so qualified, not the array type (section 6.7.3 of C99).  */
12367   if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
12368     {
12369       struct type *el_type, *inner_array;
12370
12371       base_type = copy_type (base_type);
12372       inner_array = base_type;
12373
12374       while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
12375         {
12376           TYPE_TARGET_TYPE (inner_array) =
12377             copy_type (TYPE_TARGET_TYPE (inner_array));
12378           inner_array = TYPE_TARGET_TYPE (inner_array);
12379         }
12380
12381       el_type = TYPE_TARGET_TYPE (inner_array);
12382       TYPE_TARGET_TYPE (inner_array) =
12383         make_cv_type (1, TYPE_VOLATILE (el_type), el_type, NULL);
12384
12385       return set_die_type (die, base_type, cu);
12386     }
12387
12388   cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
12389   return set_die_type (die, cv_type, cu);
12390 }
12391
12392 static struct type *
12393 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
12394 {
12395   struct type *base_type, *cv_type;
12396
12397   base_type = die_type (die, cu);
12398
12399   /* The die_type call above may have already set the type for this DIE.  */
12400   cv_type = get_die_type (die, cu);
12401   if (cv_type)
12402     return cv_type;
12403
12404   cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
12405   return set_die_type (die, cv_type, cu);
12406 }
12407
12408 /* Handle DW_TAG_restrict_type.  */
12409
12410 static struct type *
12411 read_tag_restrict_type (struct die_info *die, struct dwarf2_cu *cu)
12412 {
12413   struct type *base_type, *cv_type;
12414
12415   base_type = die_type (die, cu);
12416
12417   /* The die_type call above may have already set the type for this DIE.  */
12418   cv_type = get_die_type (die, cu);
12419   if (cv_type)
12420     return cv_type;
12421
12422   cv_type = make_restrict_type (base_type);
12423   return set_die_type (die, cv_type, cu);
12424 }
12425
12426 /* Extract all information from a DW_TAG_string_type DIE and add to
12427    the user defined type vector.  It isn't really a user defined type,
12428    but it behaves like one, with other DIE's using an AT_user_def_type
12429    attribute to reference it.  */
12430
12431 static struct type *
12432 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
12433 {
12434   struct objfile *objfile = cu->objfile;
12435   struct gdbarch *gdbarch = get_objfile_arch (objfile);
12436   struct type *type, *range_type, *index_type, *char_type;
12437   struct attribute *attr;
12438   unsigned int length;
12439
12440   attr = dwarf2_attr (die, DW_AT_string_length, cu);
12441   if (attr)
12442     {
12443       length = DW_UNSND (attr);
12444     }
12445   else
12446     {
12447       /* Check for the DW_AT_byte_size attribute.  */
12448       attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12449       if (attr)
12450         {
12451           length = DW_UNSND (attr);
12452         }
12453       else
12454         {
12455           length = 1;
12456         }
12457     }
12458
12459   index_type = objfile_type (objfile)->builtin_int;
12460   range_type = create_range_type (NULL, index_type, 1, length);
12461   char_type = language_string_char_type (cu->language_defn, gdbarch);
12462   type = create_string_type (NULL, char_type, range_type);
12463
12464   return set_die_type (die, type, cu);
12465 }
12466
12467 /* Handle DIES due to C code like:
12468
12469    struct foo
12470    {
12471    int (*funcp)(int a, long l);
12472    int b;
12473    };
12474
12475    ('funcp' generates a DW_TAG_subroutine_type DIE).  */
12476
12477 static struct type *
12478 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
12479 {
12480   struct objfile *objfile = cu->objfile;
12481   struct type *type;            /* Type that this function returns.  */
12482   struct type *ftype;           /* Function that returns above type.  */
12483   struct attribute *attr;
12484
12485   type = die_type (die, cu);
12486
12487   /* The die_type call above may have already set the type for this DIE.  */
12488   ftype = get_die_type (die, cu);
12489   if (ftype)
12490     return ftype;
12491
12492   ftype = lookup_function_type (type);
12493
12494   /* All functions in C++, Pascal and Java have prototypes.  */
12495   attr = dwarf2_attr (die, DW_AT_prototyped, cu);
12496   if ((attr && (DW_UNSND (attr) != 0))
12497       || cu->language == language_cplus
12498       || cu->language == language_java
12499       || cu->language == language_pascal)
12500     TYPE_PROTOTYPED (ftype) = 1;
12501   else if (producer_is_realview (cu->producer))
12502     /* RealView does not emit DW_AT_prototyped.  We can not
12503        distinguish prototyped and unprototyped functions; default to
12504        prototyped, since that is more common in modern code (and
12505        RealView warns about unprototyped functions).  */
12506     TYPE_PROTOTYPED (ftype) = 1;
12507
12508   /* Store the calling convention in the type if it's available in
12509      the subroutine die.  Otherwise set the calling convention to
12510      the default value DW_CC_normal.  */
12511   attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
12512   if (attr)
12513     TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
12514   else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
12515     TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
12516   else
12517     TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
12518
12519   /* We need to add the subroutine type to the die immediately so
12520      we don't infinitely recurse when dealing with parameters
12521      declared as the same subroutine type.  */
12522   set_die_type (die, ftype, cu);
12523
12524   if (die->child != NULL)
12525     {
12526       struct type *void_type = objfile_type (objfile)->builtin_void;
12527       struct die_info *child_die;
12528       int nparams, iparams;
12529
12530       /* Count the number of parameters.
12531          FIXME: GDB currently ignores vararg functions, but knows about
12532          vararg member functions.  */
12533       nparams = 0;
12534       child_die = die->child;
12535       while (child_die && child_die->tag)
12536         {
12537           if (child_die->tag == DW_TAG_formal_parameter)
12538             nparams++;
12539           else if (child_die->tag == DW_TAG_unspecified_parameters)
12540             TYPE_VARARGS (ftype) = 1;
12541           child_die = sibling_die (child_die);
12542         }
12543
12544       /* Allocate storage for parameters and fill them in.  */
12545       TYPE_NFIELDS (ftype) = nparams;
12546       TYPE_FIELDS (ftype) = (struct field *)
12547         TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
12548
12549       /* TYPE_FIELD_TYPE must never be NULL.  Pre-fill the array to ensure it
12550          even if we error out during the parameters reading below.  */
12551       for (iparams = 0; iparams < nparams; iparams++)
12552         TYPE_FIELD_TYPE (ftype, iparams) = void_type;
12553
12554       iparams = 0;
12555       child_die = die->child;
12556       while (child_die && child_die->tag)
12557         {
12558           if (child_die->tag == DW_TAG_formal_parameter)
12559             {
12560               struct type *arg_type;
12561
12562               /* DWARF version 2 has no clean way to discern C++
12563                  static and non-static member functions.  G++ helps
12564                  GDB by marking the first parameter for non-static
12565                  member functions (which is the this pointer) as
12566                  artificial.  We pass this information to
12567                  dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
12568
12569                  DWARF version 3 added DW_AT_object_pointer, which GCC
12570                  4.5 does not yet generate.  */
12571               attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
12572               if (attr)
12573                 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
12574               else
12575                 {
12576                   TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
12577
12578                   /* GCC/43521: In java, the formal parameter
12579                      "this" is sometimes not marked with DW_AT_artificial.  */
12580                   if (cu->language == language_java)
12581                     {
12582                       const char *name = dwarf2_name (child_die, cu);
12583
12584                       if (name && !strcmp (name, "this"))
12585                         TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 1;
12586                     }
12587                 }
12588               arg_type = die_type (child_die, cu);
12589
12590               /* RealView does not mark THIS as const, which the testsuite
12591                  expects.  GCC marks THIS as const in method definitions,
12592                  but not in the class specifications (GCC PR 43053).  */
12593               if (cu->language == language_cplus && !TYPE_CONST (arg_type)
12594                   && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
12595                 {
12596                   int is_this = 0;
12597                   struct dwarf2_cu *arg_cu = cu;
12598                   const char *name = dwarf2_name (child_die, cu);
12599
12600                   attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
12601                   if (attr)
12602                     {
12603                       /* If the compiler emits this, use it.  */
12604                       if (follow_die_ref (die, attr, &arg_cu) == child_die)
12605                         is_this = 1;
12606                     }
12607                   else if (name && strcmp (name, "this") == 0)
12608                     /* Function definitions will have the argument names.  */
12609                     is_this = 1;
12610                   else if (name == NULL && iparams == 0)
12611                     /* Declarations may not have the names, so like
12612                        elsewhere in GDB, assume an artificial first
12613                        argument is "this".  */
12614                     is_this = 1;
12615
12616                   if (is_this)
12617                     arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
12618                                              arg_type, 0);
12619                 }
12620
12621               TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
12622               iparams++;
12623             }
12624           child_die = sibling_die (child_die);
12625         }
12626     }
12627
12628   return ftype;
12629 }
12630
12631 static struct type *
12632 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
12633 {
12634   struct objfile *objfile = cu->objfile;
12635   const char *name = NULL;
12636   struct type *this_type, *target_type;
12637
12638   name = dwarf2_full_name (NULL, die, cu);
12639   this_type = init_type (TYPE_CODE_TYPEDEF, 0,
12640                          TYPE_FLAG_TARGET_STUB, NULL, objfile);
12641   TYPE_NAME (this_type) = name;
12642   set_die_type (die, this_type, cu);
12643   target_type = die_type (die, cu);
12644   if (target_type != this_type)
12645     TYPE_TARGET_TYPE (this_type) = target_type;
12646   else
12647     {
12648       /* Self-referential typedefs are, it seems, not allowed by the DWARF
12649          spec and cause infinite loops in GDB.  */
12650       complaint (&symfile_complaints,
12651                  _("Self-referential DW_TAG_typedef "
12652                    "- DIE at 0x%x [in module %s]"),
12653                  die->offset.sect_off, objfile->name);
12654       TYPE_TARGET_TYPE (this_type) = NULL;
12655     }
12656   return this_type;
12657 }
12658
12659 /* Find a representation of a given base type and install
12660    it in the TYPE field of the die.  */
12661
12662 static struct type *
12663 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
12664 {
12665   struct objfile *objfile = cu->objfile;
12666   struct type *type;
12667   struct attribute *attr;
12668   int encoding = 0, size = 0;
12669   const char *name;
12670   enum type_code code = TYPE_CODE_INT;
12671   int type_flags = 0;
12672   struct type *target_type = NULL;
12673
12674   attr = dwarf2_attr (die, DW_AT_encoding, cu);
12675   if (attr)
12676     {
12677       encoding = DW_UNSND (attr);
12678     }
12679   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12680   if (attr)
12681     {
12682       size = DW_UNSND (attr);
12683     }
12684   name = dwarf2_name (die, cu);
12685   if (!name)
12686     {
12687       complaint (&symfile_complaints,
12688                  _("DW_AT_name missing from DW_TAG_base_type"));
12689     }
12690
12691   switch (encoding)
12692     {
12693       case DW_ATE_address:
12694         /* Turn DW_ATE_address into a void * pointer.  */
12695         code = TYPE_CODE_PTR;
12696         type_flags |= TYPE_FLAG_UNSIGNED;
12697         target_type = init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
12698         break;
12699       case DW_ATE_boolean:
12700         code = TYPE_CODE_BOOL;
12701         type_flags |= TYPE_FLAG_UNSIGNED;
12702         break;
12703       case DW_ATE_complex_float:
12704         code = TYPE_CODE_COMPLEX;
12705         target_type = init_type (TYPE_CODE_FLT, size / 2, 0, NULL, objfile);
12706         break;
12707       case DW_ATE_decimal_float:
12708         code = TYPE_CODE_DECFLOAT;
12709         break;
12710       case DW_ATE_float:
12711         code = TYPE_CODE_FLT;
12712         break;
12713       case DW_ATE_signed:
12714         break;
12715       case DW_ATE_unsigned:
12716         type_flags |= TYPE_FLAG_UNSIGNED;
12717         if (cu->language == language_fortran
12718             && name
12719             && strncmp (name, "character(", sizeof ("character(") - 1) == 0)
12720           code = TYPE_CODE_CHAR;
12721         break;
12722       case DW_ATE_signed_char:
12723         if (cu->language == language_ada || cu->language == language_m2
12724             || cu->language == language_pascal
12725             || cu->language == language_fortran)
12726           code = TYPE_CODE_CHAR;
12727         break;
12728       case DW_ATE_unsigned_char:
12729         if (cu->language == language_ada || cu->language == language_m2
12730             || cu->language == language_pascal
12731             || cu->language == language_fortran)
12732           code = TYPE_CODE_CHAR;
12733         type_flags |= TYPE_FLAG_UNSIGNED;
12734         break;
12735       case DW_ATE_UTF:
12736         /* We just treat this as an integer and then recognize the
12737            type by name elsewhere.  */
12738         break;
12739
12740       default:
12741         complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
12742                    dwarf_type_encoding_name (encoding));
12743         break;
12744     }
12745
12746   type = init_type (code, size, type_flags, NULL, objfile);
12747   TYPE_NAME (type) = name;
12748   TYPE_TARGET_TYPE (type) = target_type;
12749
12750   if (name && strcmp (name, "char") == 0)
12751     TYPE_NOSIGN (type) = 1;
12752
12753   return set_die_type (die, type, cu);
12754 }
12755
12756 /* Read the given DW_AT_subrange DIE.  */
12757
12758 static struct type *
12759 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
12760 {
12761   struct type *base_type, *orig_base_type;
12762   struct type *range_type;
12763   struct attribute *attr;
12764   LONGEST low, high;
12765   int low_default_is_valid;
12766   const char *name;
12767   LONGEST negative_mask;
12768
12769   orig_base_type = die_type (die, cu);
12770   /* If ORIG_BASE_TYPE is a typedef, it will not be TYPE_UNSIGNED,
12771      whereas the real type might be.  So, we use ORIG_BASE_TYPE when
12772      creating the range type, but we use the result of check_typedef
12773      when examining properties of the type.  */
12774   base_type = check_typedef (orig_base_type);
12775
12776   /* The die_type call above may have already set the type for this DIE.  */
12777   range_type = get_die_type (die, cu);
12778   if (range_type)
12779     return range_type;
12780
12781   /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
12782      omitting DW_AT_lower_bound.  */
12783   switch (cu->language)
12784     {
12785     case language_c:
12786     case language_cplus:
12787       low = 0;
12788       low_default_is_valid = 1;
12789       break;
12790     case language_fortran:
12791       low = 1;
12792       low_default_is_valid = 1;
12793       break;
12794     case language_d:
12795     case language_java:
12796     case language_objc:
12797       low = 0;
12798       low_default_is_valid = (cu->header.version >= 4);
12799       break;
12800     case language_ada:
12801     case language_m2:
12802     case language_pascal:
12803       low = 1;
12804       low_default_is_valid = (cu->header.version >= 4);
12805       break;
12806     default:
12807       low = 0;
12808       low_default_is_valid = 0;
12809       break;
12810     }
12811
12812   /* FIXME: For variable sized arrays either of these could be
12813      a variable rather than a constant value.  We'll allow it,
12814      but we don't know how to handle it.  */
12815   attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
12816   if (attr)
12817     low = dwarf2_get_attr_constant_value (attr, low);
12818   else if (!low_default_is_valid)
12819     complaint (&symfile_complaints, _("Missing DW_AT_lower_bound "
12820                                       "- DIE at 0x%x [in module %s]"),
12821                die->offset.sect_off, cu->objfile->name);
12822
12823   attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
12824   if (attr)
12825     {
12826       if (attr_form_is_block (attr) || is_ref_attr (attr))
12827         {
12828           /* GCC encodes arrays with unspecified or dynamic length
12829              with a DW_FORM_block1 attribute or a reference attribute.
12830              FIXME: GDB does not yet know how to handle dynamic
12831              arrays properly, treat them as arrays with unspecified
12832              length for now.
12833
12834              FIXME: jimb/2003-09-22: GDB does not really know
12835              how to handle arrays of unspecified length
12836              either; we just represent them as zero-length
12837              arrays.  Choose an appropriate upper bound given
12838              the lower bound we've computed above.  */
12839           high = low - 1;
12840         }
12841       else
12842         high = dwarf2_get_attr_constant_value (attr, 1);
12843     }
12844   else
12845     {
12846       attr = dwarf2_attr (die, DW_AT_count, cu);
12847       if (attr)
12848         {
12849           int count = dwarf2_get_attr_constant_value (attr, 1);
12850           high = low + count - 1;
12851         }
12852       else
12853         {
12854           /* Unspecified array length.  */
12855           high = low - 1;
12856         }
12857     }
12858
12859   /* Dwarf-2 specifications explicitly allows to create subrange types
12860      without specifying a base type.
12861      In that case, the base type must be set to the type of
12862      the lower bound, upper bound or count, in that order, if any of these
12863      three attributes references an object that has a type.
12864      If no base type is found, the Dwarf-2 specifications say that
12865      a signed integer type of size equal to the size of an address should
12866      be used.
12867      For the following C code: `extern char gdb_int [];'
12868      GCC produces an empty range DIE.
12869      FIXME: muller/2010-05-28: Possible references to object for low bound,
12870      high bound or count are not yet handled by this code.  */
12871   if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
12872     {
12873       struct objfile *objfile = cu->objfile;
12874       struct gdbarch *gdbarch = get_objfile_arch (objfile);
12875       int addr_size = gdbarch_addr_bit (gdbarch) /8;
12876       struct type *int_type = objfile_type (objfile)->builtin_int;
12877
12878       /* Test "int", "long int", and "long long int" objfile types,
12879          and select the first one having a size above or equal to the
12880          architecture address size.  */
12881       if (int_type && TYPE_LENGTH (int_type) >= addr_size)
12882         base_type = int_type;
12883       else
12884         {
12885           int_type = objfile_type (objfile)->builtin_long;
12886           if (int_type && TYPE_LENGTH (int_type) >= addr_size)
12887             base_type = int_type;
12888           else
12889             {
12890               int_type = objfile_type (objfile)->builtin_long_long;
12891               if (int_type && TYPE_LENGTH (int_type) >= addr_size)
12892                 base_type = int_type;
12893             }
12894         }
12895     }
12896
12897   negative_mask =
12898     (LONGEST) -1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1);
12899   if (!TYPE_UNSIGNED (base_type) && (low & negative_mask))
12900     low |= negative_mask;
12901   if (!TYPE_UNSIGNED (base_type) && (high & negative_mask))
12902     high |= negative_mask;
12903
12904   range_type = create_range_type (NULL, orig_base_type, low, high);
12905
12906   /* Mark arrays with dynamic length at least as an array of unspecified
12907      length.  GDB could check the boundary but before it gets implemented at
12908      least allow accessing the array elements.  */
12909   if (attr && attr_form_is_block (attr))
12910     TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
12911
12912   /* Ada expects an empty array on no boundary attributes.  */
12913   if (attr == NULL && cu->language != language_ada)
12914     TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
12915
12916   name = dwarf2_name (die, cu);
12917   if (name)
12918     TYPE_NAME (range_type) = name;
12919
12920   attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12921   if (attr)
12922     TYPE_LENGTH (range_type) = DW_UNSND (attr);
12923
12924   set_die_type (die, range_type, cu);
12925
12926   /* set_die_type should be already done.  */
12927   set_descriptive_type (range_type, die, cu);
12928
12929   return range_type;
12930 }
12931
12932 static struct type *
12933 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
12934 {
12935   struct type *type;
12936
12937   /* For now, we only support the C meaning of an unspecified type: void.  */
12938
12939   type = init_type (TYPE_CODE_VOID, 0, 0, NULL, cu->objfile);
12940   TYPE_NAME (type) = dwarf2_name (die, cu);
12941
12942   return set_die_type (die, type, cu);
12943 }
12944
12945 /* Read a single die and all its descendents.  Set the die's sibling
12946    field to NULL; set other fields in the die correctly, and set all
12947    of the descendents' fields correctly.  Set *NEW_INFO_PTR to the
12948    location of the info_ptr after reading all of those dies.  PARENT
12949    is the parent of the die in question.  */
12950
12951 static struct die_info *
12952 read_die_and_children (const struct die_reader_specs *reader,
12953                        gdb_byte *info_ptr,
12954                        gdb_byte **new_info_ptr,
12955                        struct die_info *parent)
12956 {
12957   struct die_info *die;
12958   gdb_byte *cur_ptr;
12959   int has_children;
12960
12961   cur_ptr = read_full_die (reader, &die, info_ptr, &has_children);
12962   if (die == NULL)
12963     {
12964       *new_info_ptr = cur_ptr;
12965       return NULL;
12966     }
12967   store_in_ref_table (die, reader->cu);
12968
12969   if (has_children)
12970     die->child = read_die_and_siblings (reader, cur_ptr, new_info_ptr, die);
12971   else
12972     {
12973       die->child = NULL;
12974       *new_info_ptr = cur_ptr;
12975     }
12976
12977   die->sibling = NULL;
12978   die->parent = parent;
12979   return die;
12980 }
12981
12982 /* Read a die, all of its descendents, and all of its siblings; set
12983    all of the fields of all of the dies correctly.  Arguments are as
12984    in read_die_and_children.  */
12985
12986 static struct die_info *
12987 read_die_and_siblings (const struct die_reader_specs *reader,
12988                        gdb_byte *info_ptr,
12989                        gdb_byte **new_info_ptr,
12990                        struct die_info *parent)
12991 {
12992   struct die_info *first_die, *last_sibling;
12993   gdb_byte *cur_ptr;
12994
12995   cur_ptr = info_ptr;
12996   first_die = last_sibling = NULL;
12997
12998   while (1)
12999     {
13000       struct die_info *die
13001         = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
13002
13003       if (die == NULL)
13004         {
13005           *new_info_ptr = cur_ptr;
13006           return first_die;
13007         }
13008
13009       if (!first_die)
13010         first_die = die;
13011       else
13012         last_sibling->sibling = die;
13013
13014       last_sibling = die;
13015     }
13016 }
13017
13018 /* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
13019    attributes.
13020    The caller is responsible for filling in the extra attributes
13021    and updating (*DIEP)->num_attrs.
13022    Set DIEP to point to a newly allocated die with its information,
13023    except for its child, sibling, and parent fields.
13024    Set HAS_CHILDREN to tell whether the die has children or not.  */
13025
13026 static gdb_byte *
13027 read_full_die_1 (const struct die_reader_specs *reader,
13028                  struct die_info **diep, gdb_byte *info_ptr,
13029                  int *has_children, int num_extra_attrs)
13030 {
13031   unsigned int abbrev_number, bytes_read, i;
13032   sect_offset offset;
13033   struct abbrev_info *abbrev;
13034   struct die_info *die;
13035   struct dwarf2_cu *cu = reader->cu;
13036   bfd *abfd = reader->abfd;
13037
13038   offset.sect_off = info_ptr - reader->buffer;
13039   abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
13040   info_ptr += bytes_read;
13041   if (!abbrev_number)
13042     {
13043       *diep = NULL;
13044       *has_children = 0;
13045       return info_ptr;
13046     }
13047
13048   abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
13049   if (!abbrev)
13050     error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
13051            abbrev_number,
13052            bfd_get_filename (abfd));
13053
13054   die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
13055   die->offset = offset;
13056   die->tag = abbrev->tag;
13057   die->abbrev = abbrev_number;
13058
13059   /* Make the result usable.
13060      The caller needs to update num_attrs after adding the extra
13061      attributes.  */
13062   die->num_attrs = abbrev->num_attrs;
13063
13064   for (i = 0; i < abbrev->num_attrs; ++i)
13065     info_ptr = read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
13066                                info_ptr);
13067
13068   *diep = die;
13069   *has_children = abbrev->has_children;
13070   return info_ptr;
13071 }
13072
13073 /* Read a die and all its attributes.
13074    Set DIEP to point to a newly allocated die with its information,
13075    except for its child, sibling, and parent fields.
13076    Set HAS_CHILDREN to tell whether the die has children or not.  */
13077
13078 static gdb_byte *
13079 read_full_die (const struct die_reader_specs *reader,
13080                struct die_info **diep, gdb_byte *info_ptr,
13081                int *has_children)
13082 {
13083   return read_full_die_1 (reader, diep, info_ptr, has_children, 0);
13084 }
13085 \f
13086 /* Abbreviation tables.
13087
13088    In DWARF version 2, the description of the debugging information is
13089    stored in a separate .debug_abbrev section.  Before we read any
13090    dies from a section we read in all abbreviations and install them
13091    in a hash table.  */
13092
13093 /* Allocate space for a struct abbrev_info object in ABBREV_TABLE.  */
13094
13095 static struct abbrev_info *
13096 abbrev_table_alloc_abbrev (struct abbrev_table *abbrev_table)
13097 {
13098   struct abbrev_info *abbrev;
13099
13100   abbrev = (struct abbrev_info *)
13101     obstack_alloc (&abbrev_table->abbrev_obstack, sizeof (struct abbrev_info));
13102   memset (abbrev, 0, sizeof (struct abbrev_info));
13103   return abbrev;
13104 }
13105
13106 /* Add an abbreviation to the table.  */
13107
13108 static void
13109 abbrev_table_add_abbrev (struct abbrev_table *abbrev_table,
13110                          unsigned int abbrev_number,
13111                          struct abbrev_info *abbrev)
13112 {
13113   unsigned int hash_number;
13114
13115   hash_number = abbrev_number % ABBREV_HASH_SIZE;
13116   abbrev->next = abbrev_table->abbrevs[hash_number];
13117   abbrev_table->abbrevs[hash_number] = abbrev;
13118 }
13119
13120 /* Look up an abbrev in the table.
13121    Returns NULL if the abbrev is not found.  */
13122
13123 static struct abbrev_info *
13124 abbrev_table_lookup_abbrev (const struct abbrev_table *abbrev_table,
13125                             unsigned int abbrev_number)
13126 {
13127   unsigned int hash_number;
13128   struct abbrev_info *abbrev;
13129
13130   hash_number = abbrev_number % ABBREV_HASH_SIZE;
13131   abbrev = abbrev_table->abbrevs[hash_number];
13132
13133   while (abbrev)
13134     {
13135       if (abbrev->number == abbrev_number)
13136         return abbrev;
13137       abbrev = abbrev->next;
13138     }
13139   return NULL;
13140 }
13141
13142 /* Read in an abbrev table.  */
13143
13144 static struct abbrev_table *
13145 abbrev_table_read_table (struct dwarf2_section_info *section,
13146                          sect_offset offset)
13147 {
13148   struct objfile *objfile = dwarf2_per_objfile->objfile;
13149   bfd *abfd = section->asection->owner;
13150   struct abbrev_table *abbrev_table;
13151   gdb_byte *abbrev_ptr;
13152   struct abbrev_info *cur_abbrev;
13153   unsigned int abbrev_number, bytes_read, abbrev_name;
13154   unsigned int abbrev_form;
13155   struct attr_abbrev *cur_attrs;
13156   unsigned int allocated_attrs;
13157
13158   abbrev_table = XMALLOC (struct abbrev_table);
13159   abbrev_table->offset = offset;
13160   obstack_init (&abbrev_table->abbrev_obstack);
13161   abbrev_table->abbrevs = obstack_alloc (&abbrev_table->abbrev_obstack,
13162                                          (ABBREV_HASH_SIZE
13163                                           * sizeof (struct abbrev_info *)));
13164   memset (abbrev_table->abbrevs, 0,
13165           ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
13166
13167   dwarf2_read_section (objfile, section);
13168   abbrev_ptr = section->buffer + offset.sect_off;
13169   abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13170   abbrev_ptr += bytes_read;
13171
13172   allocated_attrs = ATTR_ALLOC_CHUNK;
13173   cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
13174
13175   /* Loop until we reach an abbrev number of 0.  */
13176   while (abbrev_number)
13177     {
13178       cur_abbrev = abbrev_table_alloc_abbrev (abbrev_table);
13179
13180       /* read in abbrev header */
13181       cur_abbrev->number = abbrev_number;
13182       cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13183       abbrev_ptr += bytes_read;
13184       cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
13185       abbrev_ptr += 1;
13186
13187       /* now read in declarations */
13188       abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13189       abbrev_ptr += bytes_read;
13190       abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13191       abbrev_ptr += bytes_read;
13192       while (abbrev_name)
13193         {
13194           if (cur_abbrev->num_attrs == allocated_attrs)
13195             {
13196               allocated_attrs += ATTR_ALLOC_CHUNK;
13197               cur_attrs
13198                 = xrealloc (cur_attrs, (allocated_attrs
13199                                         * sizeof (struct attr_abbrev)));
13200             }
13201
13202           cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
13203           cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
13204           abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13205           abbrev_ptr += bytes_read;
13206           abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13207           abbrev_ptr += bytes_read;
13208         }
13209
13210       cur_abbrev->attrs = obstack_alloc (&abbrev_table->abbrev_obstack,
13211                                          (cur_abbrev->num_attrs
13212                                           * sizeof (struct attr_abbrev)));
13213       memcpy (cur_abbrev->attrs, cur_attrs,
13214               cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
13215
13216       abbrev_table_add_abbrev (abbrev_table, abbrev_number, cur_abbrev);
13217
13218       /* Get next abbreviation.
13219          Under Irix6 the abbreviations for a compilation unit are not
13220          always properly terminated with an abbrev number of 0.
13221          Exit loop if we encounter an abbreviation which we have
13222          already read (which means we are about to read the abbreviations
13223          for the next compile unit) or if the end of the abbreviation
13224          table is reached.  */
13225       if ((unsigned int) (abbrev_ptr - section->buffer) >= section->size)
13226         break;
13227       abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
13228       abbrev_ptr += bytes_read;
13229       if (abbrev_table_lookup_abbrev (abbrev_table, abbrev_number) != NULL)
13230         break;
13231     }
13232
13233   xfree (cur_attrs);
13234   return abbrev_table;
13235 }
13236
13237 /* Free the resources held by ABBREV_TABLE.  */
13238
13239 static void
13240 abbrev_table_free (struct abbrev_table *abbrev_table)
13241 {
13242   obstack_free (&abbrev_table->abbrev_obstack, NULL);
13243   xfree (abbrev_table);
13244 }
13245
13246 /* Same as abbrev_table_free but as a cleanup.
13247    We pass in a pointer to the pointer to the table so that we can
13248    set the pointer to NULL when we're done.  It also simplifies
13249    build_type_unit_groups.  */
13250
13251 static void
13252 abbrev_table_free_cleanup (void *table_ptr)
13253 {
13254   struct abbrev_table **abbrev_table_ptr = table_ptr;
13255
13256   if (*abbrev_table_ptr != NULL)
13257     abbrev_table_free (*abbrev_table_ptr);
13258   *abbrev_table_ptr = NULL;
13259 }
13260
13261 /* Read the abbrev table for CU from ABBREV_SECTION.  */
13262
13263 static void
13264 dwarf2_read_abbrevs (struct dwarf2_cu *cu,
13265                      struct dwarf2_section_info *abbrev_section)
13266 {
13267   cu->abbrev_table =
13268     abbrev_table_read_table (abbrev_section, cu->header.abbrev_offset);
13269 }
13270
13271 /* Release the memory used by the abbrev table for a compilation unit.  */
13272
13273 static void
13274 dwarf2_free_abbrev_table (void *ptr_to_cu)
13275 {
13276   struct dwarf2_cu *cu = ptr_to_cu;
13277
13278   abbrev_table_free (cu->abbrev_table);
13279   /* Set this to NULL so that we SEGV if we try to read it later,
13280      and also because free_comp_unit verifies this is NULL.  */
13281   cu->abbrev_table = NULL;
13282 }
13283 \f
13284 /* Returns nonzero if TAG represents a type that we might generate a partial
13285    symbol for.  */
13286
13287 static int
13288 is_type_tag_for_partial (int tag)
13289 {
13290   switch (tag)
13291     {
13292 #if 0
13293     /* Some types that would be reasonable to generate partial symbols for,
13294        that we don't at present.  */
13295     case DW_TAG_array_type:
13296     case DW_TAG_file_type:
13297     case DW_TAG_ptr_to_member_type:
13298     case DW_TAG_set_type:
13299     case DW_TAG_string_type:
13300     case DW_TAG_subroutine_type:
13301 #endif
13302     case DW_TAG_base_type:
13303     case DW_TAG_class_type:
13304     case DW_TAG_interface_type:
13305     case DW_TAG_enumeration_type:
13306     case DW_TAG_structure_type:
13307     case DW_TAG_subrange_type:
13308     case DW_TAG_typedef:
13309     case DW_TAG_union_type:
13310       return 1;
13311     default:
13312       return 0;
13313     }
13314 }
13315
13316 /* Load all DIEs that are interesting for partial symbols into memory.  */
13317
13318 static struct partial_die_info *
13319 load_partial_dies (const struct die_reader_specs *reader,
13320                    gdb_byte *info_ptr, int building_psymtab)
13321 {
13322   struct dwarf2_cu *cu = reader->cu;
13323   struct objfile *objfile = cu->objfile;
13324   struct partial_die_info *part_die;
13325   struct partial_die_info *parent_die, *last_die, *first_die = NULL;
13326   struct abbrev_info *abbrev;
13327   unsigned int bytes_read;
13328   unsigned int load_all = 0;
13329   int nesting_level = 1;
13330
13331   parent_die = NULL;
13332   last_die = NULL;
13333
13334   gdb_assert (cu->per_cu != NULL);
13335   if (cu->per_cu->load_all_dies)
13336     load_all = 1;
13337
13338   cu->partial_dies
13339     = htab_create_alloc_ex (cu->header.length / 12,
13340                             partial_die_hash,
13341                             partial_die_eq,
13342                             NULL,
13343                             &cu->comp_unit_obstack,
13344                             hashtab_obstack_allocate,
13345                             dummy_obstack_deallocate);
13346
13347   part_die = obstack_alloc (&cu->comp_unit_obstack,
13348                             sizeof (struct partial_die_info));
13349
13350   while (1)
13351     {
13352       abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
13353
13354       /* A NULL abbrev means the end of a series of children.  */
13355       if (abbrev == NULL)
13356         {
13357           if (--nesting_level == 0)
13358             {
13359               /* PART_DIE was probably the last thing allocated on the
13360                  comp_unit_obstack, so we could call obstack_free
13361                  here.  We don't do that because the waste is small,
13362                  and will be cleaned up when we're done with this
13363                  compilation unit.  This way, we're also more robust
13364                  against other users of the comp_unit_obstack.  */
13365               return first_die;
13366             }
13367           info_ptr += bytes_read;
13368           last_die = parent_die;
13369           parent_die = parent_die->die_parent;
13370           continue;
13371         }
13372
13373       /* Check for template arguments.  We never save these; if
13374          they're seen, we just mark the parent, and go on our way.  */
13375       if (parent_die != NULL
13376           && cu->language == language_cplus
13377           && (abbrev->tag == DW_TAG_template_type_param
13378               || abbrev->tag == DW_TAG_template_value_param))
13379         {
13380           parent_die->has_template_arguments = 1;
13381
13382           if (!load_all)
13383             {
13384               /* We don't need a partial DIE for the template argument.  */
13385               info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
13386               continue;
13387             }
13388         }
13389
13390       /* We only recurse into c++ subprograms looking for template arguments.
13391          Skip their other children.  */
13392       if (!load_all
13393           && cu->language == language_cplus
13394           && parent_die != NULL
13395           && parent_die->tag == DW_TAG_subprogram)
13396         {
13397           info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
13398           continue;
13399         }
13400
13401       /* Check whether this DIE is interesting enough to save.  Normally
13402          we would not be interested in members here, but there may be
13403          later variables referencing them via DW_AT_specification (for
13404          static members).  */
13405       if (!load_all
13406           && !is_type_tag_for_partial (abbrev->tag)
13407           && abbrev->tag != DW_TAG_constant
13408           && abbrev->tag != DW_TAG_enumerator
13409           && abbrev->tag != DW_TAG_subprogram
13410           && abbrev->tag != DW_TAG_lexical_block
13411           && abbrev->tag != DW_TAG_variable
13412           && abbrev->tag != DW_TAG_namespace
13413           && abbrev->tag != DW_TAG_module
13414           && abbrev->tag != DW_TAG_member
13415           && abbrev->tag != DW_TAG_imported_unit)
13416         {
13417           /* Otherwise we skip to the next sibling, if any.  */
13418           info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
13419           continue;
13420         }
13421
13422       info_ptr = read_partial_die (reader, part_die, abbrev, bytes_read,
13423                                    info_ptr);
13424
13425       /* This two-pass algorithm for processing partial symbols has a
13426          high cost in cache pressure.  Thus, handle some simple cases
13427          here which cover the majority of C partial symbols.  DIEs
13428          which neither have specification tags in them, nor could have
13429          specification tags elsewhere pointing at them, can simply be
13430          processed and discarded.
13431
13432          This segment is also optional; scan_partial_symbols and
13433          add_partial_symbol will handle these DIEs if we chain
13434          them in normally.  When compilers which do not emit large
13435          quantities of duplicate debug information are more common,
13436          this code can probably be removed.  */
13437
13438       /* Any complete simple types at the top level (pretty much all
13439          of them, for a language without namespaces), can be processed
13440          directly.  */
13441       if (parent_die == NULL
13442           && part_die->has_specification == 0
13443           && part_die->is_declaration == 0
13444           && ((part_die->tag == DW_TAG_typedef && !part_die->has_children)
13445               || part_die->tag == DW_TAG_base_type
13446               || part_die->tag == DW_TAG_subrange_type))
13447         {
13448           if (building_psymtab && part_die->name != NULL)
13449             add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
13450                                  VAR_DOMAIN, LOC_TYPEDEF,
13451                                  &objfile->static_psymbols,
13452                                  0, (CORE_ADDR) 0, cu->language, objfile);
13453           info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
13454           continue;
13455         }
13456
13457       /* The exception for DW_TAG_typedef with has_children above is
13458          a workaround of GCC PR debug/47510.  In the case of this complaint
13459          type_name_no_tag_or_error will error on such types later.
13460
13461          GDB skipped children of DW_TAG_typedef by the shortcut above and then
13462          it could not find the child DIEs referenced later, this is checked
13463          above.  In correct DWARF DW_TAG_typedef should have no children.  */
13464
13465       if (part_die->tag == DW_TAG_typedef && part_die->has_children)
13466         complaint (&symfile_complaints,
13467                    _("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
13468                      "- DIE at 0x%x [in module %s]"),
13469                    part_die->offset.sect_off, objfile->name);
13470
13471       /* If we're at the second level, and we're an enumerator, and
13472          our parent has no specification (meaning possibly lives in a
13473          namespace elsewhere), then we can add the partial symbol now
13474          instead of queueing it.  */
13475       if (part_die->tag == DW_TAG_enumerator
13476           && parent_die != NULL
13477           && parent_die->die_parent == NULL
13478           && parent_die->tag == DW_TAG_enumeration_type
13479           && parent_die->has_specification == 0)
13480         {
13481           if (part_die->name == NULL)
13482             complaint (&symfile_complaints,
13483                        _("malformed enumerator DIE ignored"));
13484           else if (building_psymtab)
13485             add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
13486                                  VAR_DOMAIN, LOC_CONST,
13487                                  (cu->language == language_cplus
13488                                   || cu->language == language_java)
13489                                  ? &objfile->global_psymbols
13490                                  : &objfile->static_psymbols,
13491                                  0, (CORE_ADDR) 0, cu->language, objfile);
13492
13493           info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
13494           continue;
13495         }
13496
13497       /* We'll save this DIE so link it in.  */
13498       part_die->die_parent = parent_die;
13499       part_die->die_sibling = NULL;
13500       part_die->die_child = NULL;
13501
13502       if (last_die && last_die == parent_die)
13503         last_die->die_child = part_die;
13504       else if (last_die)
13505         last_die->die_sibling = part_die;
13506
13507       last_die = part_die;
13508
13509       if (first_die == NULL)
13510         first_die = part_die;
13511
13512       /* Maybe add the DIE to the hash table.  Not all DIEs that we
13513          find interesting need to be in the hash table, because we
13514          also have the parent/sibling/child chains; only those that we
13515          might refer to by offset later during partial symbol reading.
13516
13517          For now this means things that might have be the target of a
13518          DW_AT_specification, DW_AT_abstract_origin, or
13519          DW_AT_extension.  DW_AT_extension will refer only to
13520          namespaces; DW_AT_abstract_origin refers to functions (and
13521          many things under the function DIE, but we do not recurse
13522          into function DIEs during partial symbol reading) and
13523          possibly variables as well; DW_AT_specification refers to
13524          declarations.  Declarations ought to have the DW_AT_declaration
13525          flag.  It happens that GCC forgets to put it in sometimes, but
13526          only for functions, not for types.
13527
13528          Adding more things than necessary to the hash table is harmless
13529          except for the performance cost.  Adding too few will result in
13530          wasted time in find_partial_die, when we reread the compilation
13531          unit with load_all_dies set.  */
13532
13533       if (load_all
13534           || abbrev->tag == DW_TAG_constant
13535           || abbrev->tag == DW_TAG_subprogram
13536           || abbrev->tag == DW_TAG_variable
13537           || abbrev->tag == DW_TAG_namespace
13538           || part_die->is_declaration)
13539         {
13540           void **slot;
13541
13542           slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
13543                                            part_die->offset.sect_off, INSERT);
13544           *slot = part_die;
13545         }
13546
13547       part_die = obstack_alloc (&cu->comp_unit_obstack,
13548                                 sizeof (struct partial_die_info));
13549
13550       /* For some DIEs we want to follow their children (if any).  For C
13551          we have no reason to follow the children of structures; for other
13552          languages we have to, so that we can get at method physnames
13553          to infer fully qualified class names, for DW_AT_specification,
13554          and for C++ template arguments.  For C++, we also look one level
13555          inside functions to find template arguments (if the name of the
13556          function does not already contain the template arguments).
13557
13558          For Ada, we need to scan the children of subprograms and lexical
13559          blocks as well because Ada allows the definition of nested
13560          entities that could be interesting for the debugger, such as
13561          nested subprograms for instance.  */
13562       if (last_die->has_children
13563           && (load_all
13564               || last_die->tag == DW_TAG_namespace
13565               || last_die->tag == DW_TAG_module
13566               || last_die->tag == DW_TAG_enumeration_type
13567               || (cu->language == language_cplus
13568                   && last_die->tag == DW_TAG_subprogram
13569                   && (last_die->name == NULL
13570                       || strchr (last_die->name, '<') == NULL))
13571               || (cu->language != language_c
13572                   && (last_die->tag == DW_TAG_class_type
13573                       || last_die->tag == DW_TAG_interface_type
13574                       || last_die->tag == DW_TAG_structure_type
13575                       || last_die->tag == DW_TAG_union_type))
13576               || (cu->language == language_ada
13577                   && (last_die->tag == DW_TAG_subprogram
13578                       || last_die->tag == DW_TAG_lexical_block))))
13579         {
13580           nesting_level++;
13581           parent_die = last_die;
13582           continue;
13583         }
13584
13585       /* Otherwise we skip to the next sibling, if any.  */
13586       info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
13587
13588       /* Back to the top, do it again.  */
13589     }
13590 }
13591
13592 /* Read a minimal amount of information into the minimal die structure.  */
13593
13594 static gdb_byte *
13595 read_partial_die (const struct die_reader_specs *reader,
13596                   struct partial_die_info *part_die,
13597                   struct abbrev_info *abbrev, unsigned int abbrev_len,
13598                   gdb_byte *info_ptr)
13599 {
13600   struct dwarf2_cu *cu = reader->cu;
13601   struct objfile *objfile = cu->objfile;
13602   gdb_byte *buffer = reader->buffer;
13603   unsigned int i;
13604   struct attribute attr;
13605   int has_low_pc_attr = 0;
13606   int has_high_pc_attr = 0;
13607   int high_pc_relative = 0;
13608
13609   memset (part_die, 0, sizeof (struct partial_die_info));
13610
13611   part_die->offset.sect_off = info_ptr - buffer;
13612
13613   info_ptr += abbrev_len;
13614
13615   if (abbrev == NULL)
13616     return info_ptr;
13617
13618   part_die->tag = abbrev->tag;
13619   part_die->has_children = abbrev->has_children;
13620
13621   for (i = 0; i < abbrev->num_attrs; ++i)
13622     {
13623       info_ptr = read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
13624
13625       /* Store the data if it is of an attribute we want to keep in a
13626          partial symbol table.  */
13627       switch (attr.name)
13628         {
13629         case DW_AT_name:
13630           switch (part_die->tag)
13631             {
13632             case DW_TAG_compile_unit:
13633             case DW_TAG_partial_unit:
13634             case DW_TAG_type_unit:
13635               /* Compilation units have a DW_AT_name that is a filename, not
13636                  a source language identifier.  */
13637             case DW_TAG_enumeration_type:
13638             case DW_TAG_enumerator:
13639               /* These tags always have simple identifiers already; no need
13640                  to canonicalize them.  */
13641               part_die->name = DW_STRING (&attr);
13642               break;
13643             default:
13644               part_die->name
13645                 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
13646                                             &objfile->objfile_obstack);
13647               break;
13648             }
13649           break;
13650         case DW_AT_linkage_name:
13651         case DW_AT_MIPS_linkage_name:
13652           /* Note that both forms of linkage name might appear.  We
13653              assume they will be the same, and we only store the last
13654              one we see.  */
13655           if (cu->language == language_ada)
13656             part_die->name = DW_STRING (&attr);
13657           part_die->linkage_name = DW_STRING (&attr);
13658           break;
13659         case DW_AT_low_pc:
13660           has_low_pc_attr = 1;
13661           part_die->lowpc = DW_ADDR (&attr);
13662           break;
13663         case DW_AT_high_pc:
13664           has_high_pc_attr = 1;
13665           if (attr.form == DW_FORM_addr
13666               || attr.form == DW_FORM_GNU_addr_index)
13667             part_die->highpc = DW_ADDR (&attr);
13668           else
13669             {
13670               high_pc_relative = 1;
13671               part_die->highpc = DW_UNSND (&attr);
13672             }
13673           break;
13674         case DW_AT_location:
13675           /* Support the .debug_loc offsets.  */
13676           if (attr_form_is_block (&attr))
13677             {
13678                part_die->d.locdesc = DW_BLOCK (&attr);
13679             }
13680           else if (attr_form_is_section_offset (&attr))
13681             {
13682               dwarf2_complex_location_expr_complaint ();
13683             }
13684           else
13685             {
13686               dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
13687                                                      "partial symbol information");
13688             }
13689           break;
13690         case DW_AT_external:
13691           part_die->is_external = DW_UNSND (&attr);
13692           break;
13693         case DW_AT_declaration:
13694           part_die->is_declaration = DW_UNSND (&attr);
13695           break;
13696         case DW_AT_type:
13697           part_die->has_type = 1;
13698           break;
13699         case DW_AT_abstract_origin:
13700         case DW_AT_specification:
13701         case DW_AT_extension:
13702           part_die->has_specification = 1;
13703           part_die->spec_offset = dwarf2_get_ref_die_offset (&attr);
13704           part_die->spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
13705                                    || cu->per_cu->is_dwz);
13706           break;
13707         case DW_AT_sibling:
13708           /* Ignore absolute siblings, they might point outside of
13709              the current compile unit.  */
13710           if (attr.form == DW_FORM_ref_addr)
13711             complaint (&symfile_complaints,
13712                        _("ignoring absolute DW_AT_sibling"));
13713           else
13714             part_die->sibling = buffer + dwarf2_get_ref_die_offset (&attr).sect_off;
13715           break;
13716         case DW_AT_byte_size:
13717           part_die->has_byte_size = 1;
13718           break;
13719         case DW_AT_calling_convention:
13720           /* DWARF doesn't provide a way to identify a program's source-level
13721              entry point.  DW_AT_calling_convention attributes are only meant
13722              to describe functions' calling conventions.
13723
13724              However, because it's a necessary piece of information in
13725              Fortran, and because DW_CC_program is the only piece of debugging
13726              information whose definition refers to a 'main program' at all,
13727              several compilers have begun marking Fortran main programs with
13728              DW_CC_program --- even when those functions use the standard
13729              calling conventions.
13730
13731              So until DWARF specifies a way to provide this information and
13732              compilers pick up the new representation, we'll support this
13733              practice.  */
13734           if (DW_UNSND (&attr) == DW_CC_program
13735               && cu->language == language_fortran)
13736             {
13737               set_main_name (part_die->name);
13738
13739               /* As this DIE has a static linkage the name would be difficult
13740                  to look up later.  */
13741               language_of_main = language_fortran;
13742             }
13743           break;
13744         case DW_AT_inline:
13745           if (DW_UNSND (&attr) == DW_INL_inlined
13746               || DW_UNSND (&attr) == DW_INL_declared_inlined)
13747             part_die->may_be_inlined = 1;
13748           break;
13749
13750         case DW_AT_import:
13751           if (part_die->tag == DW_TAG_imported_unit)
13752             {
13753               part_die->d.offset = dwarf2_get_ref_die_offset (&attr);
13754               part_die->is_dwz = (attr.form == DW_FORM_GNU_ref_alt
13755                                   || cu->per_cu->is_dwz);
13756             }
13757           break;
13758
13759         default:
13760           break;
13761         }
13762     }
13763
13764   if (high_pc_relative)
13765     part_die->highpc += part_die->lowpc;
13766
13767   if (has_low_pc_attr && has_high_pc_attr)
13768     {
13769       /* When using the GNU linker, .gnu.linkonce. sections are used to
13770          eliminate duplicate copies of functions and vtables and such.
13771          The linker will arbitrarily choose one and discard the others.
13772          The AT_*_pc values for such functions refer to local labels in
13773          these sections.  If the section from that file was discarded, the
13774          labels are not in the output, so the relocs get a value of 0.
13775          If this is a discarded function, mark the pc bounds as invalid,
13776          so that GDB will ignore it.  */
13777       if (part_die->lowpc == 0 && !dwarf2_per_objfile->has_section_at_zero)
13778         {
13779           struct gdbarch *gdbarch = get_objfile_arch (objfile);
13780
13781           complaint (&symfile_complaints,
13782                      _("DW_AT_low_pc %s is zero "
13783                        "for DIE at 0x%x [in module %s]"),
13784                      paddress (gdbarch, part_die->lowpc),
13785                      part_die->offset.sect_off, objfile->name);
13786         }
13787       /* dwarf2_get_pc_bounds has also the strict low < high requirement.  */
13788       else if (part_die->lowpc >= part_die->highpc)
13789         {
13790           struct gdbarch *gdbarch = get_objfile_arch (objfile);
13791
13792           complaint (&symfile_complaints,
13793                      _("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
13794                        "for DIE at 0x%x [in module %s]"),
13795                      paddress (gdbarch, part_die->lowpc),
13796                      paddress (gdbarch, part_die->highpc),
13797                      part_die->offset.sect_off, objfile->name);
13798         }
13799       else
13800         part_die->has_pc_info = 1;
13801     }
13802
13803   return info_ptr;
13804 }
13805
13806 /* Find a cached partial DIE at OFFSET in CU.  */
13807
13808 static struct partial_die_info *
13809 find_partial_die_in_comp_unit (sect_offset offset, struct dwarf2_cu *cu)
13810 {
13811   struct partial_die_info *lookup_die = NULL;
13812   struct partial_die_info part_die;
13813
13814   part_die.offset = offset;
13815   lookup_die = htab_find_with_hash (cu->partial_dies, &part_die,
13816                                     offset.sect_off);
13817
13818   return lookup_die;
13819 }
13820
13821 /* Find a partial DIE at OFFSET, which may or may not be in CU,
13822    except in the case of .debug_types DIEs which do not reference
13823    outside their CU (they do however referencing other types via
13824    DW_FORM_ref_sig8).  */
13825
13826 static struct partial_die_info *
13827 find_partial_die (sect_offset offset, int offset_in_dwz, struct dwarf2_cu *cu)
13828 {
13829   struct objfile *objfile = cu->objfile;
13830   struct dwarf2_per_cu_data *per_cu = NULL;
13831   struct partial_die_info *pd = NULL;
13832
13833   if (offset_in_dwz == cu->per_cu->is_dwz
13834       && offset_in_cu_p (&cu->header, offset))
13835     {
13836       pd = find_partial_die_in_comp_unit (offset, cu);
13837       if (pd != NULL)
13838         return pd;
13839       /* We missed recording what we needed.
13840          Load all dies and try again.  */
13841       per_cu = cu->per_cu;
13842     }
13843   else
13844     {
13845       /* TUs don't reference other CUs/TUs (except via type signatures).  */
13846       if (cu->per_cu->is_debug_types)
13847         {
13848           error (_("Dwarf Error: Type Unit at offset 0x%lx contains"
13849                    " external reference to offset 0x%lx [in module %s].\n"),
13850                  (long) cu->header.offset.sect_off, (long) offset.sect_off,
13851                  bfd_get_filename (objfile->obfd));
13852         }
13853       per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
13854                                                  objfile);
13855
13856       if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
13857         load_partial_comp_unit (per_cu);
13858
13859       per_cu->cu->last_used = 0;
13860       pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
13861     }
13862
13863   /* If we didn't find it, and not all dies have been loaded,
13864      load them all and try again.  */
13865
13866   if (pd == NULL && per_cu->load_all_dies == 0)
13867     {
13868       per_cu->load_all_dies = 1;
13869
13870       /* This is nasty.  When we reread the DIEs, somewhere up the call chain
13871          THIS_CU->cu may already be in use.  So we can't just free it and
13872          replace its DIEs with the ones we read in.  Instead, we leave those
13873          DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
13874          and clobber THIS_CU->cu->partial_dies with the hash table for the new
13875          set.  */
13876       load_partial_comp_unit (per_cu);
13877
13878       pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
13879     }
13880
13881   if (pd == NULL)
13882     internal_error (__FILE__, __LINE__,
13883                     _("could not find partial DIE 0x%x "
13884                       "in cache [from module %s]\n"),
13885                     offset.sect_off, bfd_get_filename (objfile->obfd));
13886   return pd;
13887 }
13888
13889 /* See if we can figure out if the class lives in a namespace.  We do
13890    this by looking for a member function; its demangled name will
13891    contain namespace info, if there is any.  */
13892
13893 static void
13894 guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
13895                                   struct dwarf2_cu *cu)
13896 {
13897   /* NOTE: carlton/2003-10-07: Getting the info this way changes
13898      what template types look like, because the demangler
13899      frequently doesn't give the same name as the debug info.  We
13900      could fix this by only using the demangled name to get the
13901      prefix (but see comment in read_structure_type).  */
13902
13903   struct partial_die_info *real_pdi;
13904   struct partial_die_info *child_pdi;
13905
13906   /* If this DIE (this DIE's specification, if any) has a parent, then
13907      we should not do this.  We'll prepend the parent's fully qualified
13908      name when we create the partial symbol.  */
13909
13910   real_pdi = struct_pdi;
13911   while (real_pdi->has_specification)
13912     real_pdi = find_partial_die (real_pdi->spec_offset,
13913                                  real_pdi->spec_is_dwz, cu);
13914
13915   if (real_pdi->die_parent != NULL)
13916     return;
13917
13918   for (child_pdi = struct_pdi->die_child;
13919        child_pdi != NULL;
13920        child_pdi = child_pdi->die_sibling)
13921     {
13922       if (child_pdi->tag == DW_TAG_subprogram
13923           && child_pdi->linkage_name != NULL)
13924         {
13925           char *actual_class_name
13926             = language_class_name_from_physname (cu->language_defn,
13927                                                  child_pdi->linkage_name);
13928           if (actual_class_name != NULL)
13929             {
13930               struct_pdi->name
13931                 = obstack_copy0 (&cu->objfile->objfile_obstack,
13932                                  actual_class_name,
13933                                  strlen (actual_class_name));
13934               xfree (actual_class_name);
13935             }
13936           break;
13937         }
13938     }
13939 }
13940
13941 /* Adjust PART_DIE before generating a symbol for it.  This function
13942    may set the is_external flag or change the DIE's name.  */
13943
13944 static void
13945 fixup_partial_die (struct partial_die_info *part_die,
13946                    struct dwarf2_cu *cu)
13947 {
13948   /* Once we've fixed up a die, there's no point in doing so again.
13949      This also avoids a memory leak if we were to call
13950      guess_partial_die_structure_name multiple times.  */
13951   if (part_die->fixup_called)
13952     return;
13953
13954   /* If we found a reference attribute and the DIE has no name, try
13955      to find a name in the referred to DIE.  */
13956
13957   if (part_die->name == NULL && part_die->has_specification)
13958     {
13959       struct partial_die_info *spec_die;
13960
13961       spec_die = find_partial_die (part_die->spec_offset,
13962                                    part_die->spec_is_dwz, cu);
13963
13964       fixup_partial_die (spec_die, cu);
13965
13966       if (spec_die->name)
13967         {
13968           part_die->name = spec_die->name;
13969
13970           /* Copy DW_AT_external attribute if it is set.  */
13971           if (spec_die->is_external)
13972             part_die->is_external = spec_die->is_external;
13973         }
13974     }
13975
13976   /* Set default names for some unnamed DIEs.  */
13977
13978   if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
13979     part_die->name = CP_ANONYMOUS_NAMESPACE_STR;
13980
13981   /* If there is no parent die to provide a namespace, and there are
13982      children, see if we can determine the namespace from their linkage
13983      name.  */
13984   if (cu->language == language_cplus
13985       && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
13986       && part_die->die_parent == NULL
13987       && part_die->has_children
13988       && (part_die->tag == DW_TAG_class_type
13989           || part_die->tag == DW_TAG_structure_type
13990           || part_die->tag == DW_TAG_union_type))
13991     guess_partial_die_structure_name (part_die, cu);
13992
13993   /* GCC might emit a nameless struct or union that has a linkage
13994      name.  See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510.  */
13995   if (part_die->name == NULL
13996       && (part_die->tag == DW_TAG_class_type
13997           || part_die->tag == DW_TAG_interface_type
13998           || part_die->tag == DW_TAG_structure_type
13999           || part_die->tag == DW_TAG_union_type)
14000       && part_die->linkage_name != NULL)
14001     {
14002       char *demangled;
14003
14004       demangled = cplus_demangle (part_die->linkage_name, DMGL_TYPES);
14005       if (demangled)
14006         {
14007           const char *base;
14008
14009           /* Strip any leading namespaces/classes, keep only the base name.
14010              DW_AT_name for named DIEs does not contain the prefixes.  */
14011           base = strrchr (demangled, ':');
14012           if (base && base > demangled && base[-1] == ':')
14013             base++;
14014           else
14015             base = demangled;
14016
14017           part_die->name = obstack_copy0 (&cu->objfile->objfile_obstack,
14018                                           base, strlen (base));
14019           xfree (demangled);
14020         }
14021     }
14022
14023   part_die->fixup_called = 1;
14024 }
14025
14026 /* Read an attribute value described by an attribute form.  */
14027
14028 static gdb_byte *
14029 read_attribute_value (const struct die_reader_specs *reader,
14030                       struct attribute *attr, unsigned form,
14031                       gdb_byte *info_ptr)
14032 {
14033   struct dwarf2_cu *cu = reader->cu;
14034   bfd *abfd = reader->abfd;
14035   struct comp_unit_head *cu_header = &cu->header;
14036   unsigned int bytes_read;
14037   struct dwarf_block *blk;
14038
14039   attr->form = form;
14040   switch (form)
14041     {
14042     case DW_FORM_ref_addr:
14043       if (cu->header.version == 2)
14044         DW_UNSND (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
14045       else
14046         DW_UNSND (attr) = read_offset (abfd, info_ptr,
14047                                        &cu->header, &bytes_read);
14048       info_ptr += bytes_read;
14049       break;
14050     case DW_FORM_GNU_ref_alt:
14051       DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
14052       info_ptr += bytes_read;
14053       break;
14054     case DW_FORM_addr:
14055       DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
14056       info_ptr += bytes_read;
14057       break;
14058     case DW_FORM_block2:
14059       blk = dwarf_alloc_block (cu);
14060       blk->size = read_2_bytes (abfd, info_ptr);
14061       info_ptr += 2;
14062       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14063       info_ptr += blk->size;
14064       DW_BLOCK (attr) = blk;
14065       break;
14066     case DW_FORM_block4:
14067       blk = dwarf_alloc_block (cu);
14068       blk->size = read_4_bytes (abfd, info_ptr);
14069       info_ptr += 4;
14070       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14071       info_ptr += blk->size;
14072       DW_BLOCK (attr) = blk;
14073       break;
14074     case DW_FORM_data2:
14075       DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
14076       info_ptr += 2;
14077       break;
14078     case DW_FORM_data4:
14079       DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
14080       info_ptr += 4;
14081       break;
14082     case DW_FORM_data8:
14083       DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
14084       info_ptr += 8;
14085       break;
14086     case DW_FORM_sec_offset:
14087       DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
14088       info_ptr += bytes_read;
14089       break;
14090     case DW_FORM_string:
14091       DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
14092       DW_STRING_IS_CANONICAL (attr) = 0;
14093       info_ptr += bytes_read;
14094       break;
14095     case DW_FORM_strp:
14096       if (!cu->per_cu->is_dwz)
14097         {
14098           DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
14099                                                    &bytes_read);
14100           DW_STRING_IS_CANONICAL (attr) = 0;
14101           info_ptr += bytes_read;
14102           break;
14103         }
14104       /* FALLTHROUGH */
14105     case DW_FORM_GNU_strp_alt:
14106       {
14107         struct dwz_file *dwz = dwarf2_get_dwz_file ();
14108         LONGEST str_offset = read_offset (abfd, info_ptr, cu_header,
14109                                           &bytes_read);
14110
14111         DW_STRING (attr) = read_indirect_string_from_dwz (dwz, str_offset);
14112         DW_STRING_IS_CANONICAL (attr) = 0;
14113         info_ptr += bytes_read;
14114       }
14115       break;
14116     case DW_FORM_exprloc:
14117     case DW_FORM_block:
14118       blk = dwarf_alloc_block (cu);
14119       blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14120       info_ptr += bytes_read;
14121       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14122       info_ptr += blk->size;
14123       DW_BLOCK (attr) = blk;
14124       break;
14125     case DW_FORM_block1:
14126       blk = dwarf_alloc_block (cu);
14127       blk->size = read_1_byte (abfd, info_ptr);
14128       info_ptr += 1;
14129       blk->data = read_n_bytes (abfd, info_ptr, blk->size);
14130       info_ptr += blk->size;
14131       DW_BLOCK (attr) = blk;
14132       break;
14133     case DW_FORM_data1:
14134       DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
14135       info_ptr += 1;
14136       break;
14137     case DW_FORM_flag:
14138       DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
14139       info_ptr += 1;
14140       break;
14141     case DW_FORM_flag_present:
14142       DW_UNSND (attr) = 1;
14143       break;
14144     case DW_FORM_sdata:
14145       DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
14146       info_ptr += bytes_read;
14147       break;
14148     case DW_FORM_udata:
14149       DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14150       info_ptr += bytes_read;
14151       break;
14152     case DW_FORM_ref1:
14153       DW_UNSND (attr) = (cu->header.offset.sect_off
14154                          + read_1_byte (abfd, info_ptr));
14155       info_ptr += 1;
14156       break;
14157     case DW_FORM_ref2:
14158       DW_UNSND (attr) = (cu->header.offset.sect_off
14159                          + read_2_bytes (abfd, info_ptr));
14160       info_ptr += 2;
14161       break;
14162     case DW_FORM_ref4:
14163       DW_UNSND (attr) = (cu->header.offset.sect_off
14164                          + read_4_bytes (abfd, info_ptr));
14165       info_ptr += 4;
14166       break;
14167     case DW_FORM_ref8:
14168       DW_UNSND (attr) = (cu->header.offset.sect_off
14169                          + read_8_bytes (abfd, info_ptr));
14170       info_ptr += 8;
14171       break;
14172     case DW_FORM_ref_sig8:
14173       /* Convert the signature to something we can record in DW_UNSND
14174          for later lookup.
14175          NOTE: This is NULL if the type wasn't found.  */
14176       DW_SIGNATURED_TYPE (attr) =
14177         lookup_signatured_type (read_8_bytes (abfd, info_ptr));
14178       info_ptr += 8;
14179       break;
14180     case DW_FORM_ref_udata:
14181       DW_UNSND (attr) = (cu->header.offset.sect_off
14182                          + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
14183       info_ptr += bytes_read;
14184       break;
14185     case DW_FORM_indirect:
14186       form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14187       info_ptr += bytes_read;
14188       info_ptr = read_attribute_value (reader, attr, form, info_ptr);
14189       break;
14190     case DW_FORM_GNU_addr_index:
14191       if (reader->dwo_file == NULL)
14192         {
14193           /* For now flag a hard error.
14194              Later we can turn this into a complaint.  */
14195           error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
14196                  dwarf_form_name (form),
14197                  bfd_get_filename (abfd));
14198         }
14199       DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr, &bytes_read);
14200       info_ptr += bytes_read;
14201       break;
14202     case DW_FORM_GNU_str_index:
14203       if (reader->dwo_file == NULL)
14204         {
14205           /* For now flag a hard error.
14206              Later we can turn this into a complaint if warranted.  */
14207           error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
14208                  dwarf_form_name (form),
14209                  bfd_get_filename (abfd));
14210         }
14211       {
14212         ULONGEST str_index =
14213           read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14214
14215         DW_STRING (attr) = read_str_index (reader, cu, str_index);
14216         DW_STRING_IS_CANONICAL (attr) = 0;
14217         info_ptr += bytes_read;
14218       }
14219       break;
14220     default:
14221       error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
14222              dwarf_form_name (form),
14223              bfd_get_filename (abfd));
14224     }
14225
14226   /* Super hack.  */
14227   if (cu->per_cu->is_dwz && is_ref_attr (attr))
14228     attr->form = DW_FORM_GNU_ref_alt;
14229
14230   /* We have seen instances where the compiler tried to emit a byte
14231      size attribute of -1 which ended up being encoded as an unsigned
14232      0xffffffff.  Although 0xffffffff is technically a valid size value,
14233      an object of this size seems pretty unlikely so we can relatively
14234      safely treat these cases as if the size attribute was invalid and
14235      treat them as zero by default.  */
14236   if (attr->name == DW_AT_byte_size
14237       && form == DW_FORM_data4
14238       && DW_UNSND (attr) >= 0xffffffff)
14239     {
14240       complaint
14241         (&symfile_complaints,
14242          _("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
14243          hex_string (DW_UNSND (attr)));
14244       DW_UNSND (attr) = 0;
14245     }
14246
14247   return info_ptr;
14248 }
14249
14250 /* Read an attribute described by an abbreviated attribute.  */
14251
14252 static gdb_byte *
14253 read_attribute (const struct die_reader_specs *reader,
14254                 struct attribute *attr, struct attr_abbrev *abbrev,
14255                 gdb_byte *info_ptr)
14256 {
14257   attr->name = abbrev->name;
14258   return read_attribute_value (reader, attr, abbrev->form, info_ptr);
14259 }
14260
14261 /* Read dwarf information from a buffer.  */
14262
14263 static unsigned int
14264 read_1_byte (bfd *abfd, const gdb_byte *buf)
14265 {
14266   return bfd_get_8 (abfd, buf);
14267 }
14268
14269 static int
14270 read_1_signed_byte (bfd *abfd, const gdb_byte *buf)
14271 {
14272   return bfd_get_signed_8 (abfd, buf);
14273 }
14274
14275 static unsigned int
14276 read_2_bytes (bfd *abfd, const gdb_byte *buf)
14277 {
14278   return bfd_get_16 (abfd, buf);
14279 }
14280
14281 static int
14282 read_2_signed_bytes (bfd *abfd, const gdb_byte *buf)
14283 {
14284   return bfd_get_signed_16 (abfd, buf);
14285 }
14286
14287 static unsigned int
14288 read_4_bytes (bfd *abfd, const gdb_byte *buf)
14289 {
14290   return bfd_get_32 (abfd, buf);
14291 }
14292
14293 static int
14294 read_4_signed_bytes (bfd *abfd, const gdb_byte *buf)
14295 {
14296   return bfd_get_signed_32 (abfd, buf);
14297 }
14298
14299 static ULONGEST
14300 read_8_bytes (bfd *abfd, const gdb_byte *buf)
14301 {
14302   return bfd_get_64 (abfd, buf);
14303 }
14304
14305 static CORE_ADDR
14306 read_address (bfd *abfd, gdb_byte *buf, struct dwarf2_cu *cu,
14307               unsigned int *bytes_read)
14308 {
14309   struct comp_unit_head *cu_header = &cu->header;
14310   CORE_ADDR retval = 0;
14311
14312   if (cu_header->signed_addr_p)
14313     {
14314       switch (cu_header->addr_size)
14315         {
14316         case 2:
14317           retval = bfd_get_signed_16 (abfd, buf);
14318           break;
14319         case 4:
14320           retval = bfd_get_signed_32 (abfd, buf);
14321           break;
14322         case 8:
14323           retval = bfd_get_signed_64 (abfd, buf);
14324           break;
14325         default:
14326           internal_error (__FILE__, __LINE__,
14327                           _("read_address: bad switch, signed [in module %s]"),
14328                           bfd_get_filename (abfd));
14329         }
14330     }
14331   else
14332     {
14333       switch (cu_header->addr_size)
14334         {
14335         case 2:
14336           retval = bfd_get_16 (abfd, buf);
14337           break;
14338         case 4:
14339           retval = bfd_get_32 (abfd, buf);
14340           break;
14341         case 8:
14342           retval = bfd_get_64 (abfd, buf);
14343           break;
14344         default:
14345           internal_error (__FILE__, __LINE__,
14346                           _("read_address: bad switch, "
14347                             "unsigned [in module %s]"),
14348                           bfd_get_filename (abfd));
14349         }
14350     }
14351
14352   *bytes_read = cu_header->addr_size;
14353   return retval;
14354 }
14355
14356 /* Read the initial length from a section.  The (draft) DWARF 3
14357    specification allows the initial length to take up either 4 bytes
14358    or 12 bytes.  If the first 4 bytes are 0xffffffff, then the next 8
14359    bytes describe the length and all offsets will be 8 bytes in length
14360    instead of 4.
14361
14362    An older, non-standard 64-bit format is also handled by this
14363    function.  The older format in question stores the initial length
14364    as an 8-byte quantity without an escape value.  Lengths greater
14365    than 2^32 aren't very common which means that the initial 4 bytes
14366    is almost always zero.  Since a length value of zero doesn't make
14367    sense for the 32-bit format, this initial zero can be considered to
14368    be an escape value which indicates the presence of the older 64-bit
14369    format.  As written, the code can't detect (old format) lengths
14370    greater than 4GB.  If it becomes necessary to handle lengths
14371    somewhat larger than 4GB, we could allow other small values (such
14372    as the non-sensical values of 1, 2, and 3) to also be used as
14373    escape values indicating the presence of the old format.
14374
14375    The value returned via bytes_read should be used to increment the
14376    relevant pointer after calling read_initial_length().
14377
14378    [ Note:  read_initial_length() and read_offset() are based on the
14379      document entitled "DWARF Debugging Information Format", revision
14380      3, draft 8, dated November 19, 2001.  This document was obtained
14381      from:
14382
14383         http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
14384
14385      This document is only a draft and is subject to change.  (So beware.)
14386
14387      Details regarding the older, non-standard 64-bit format were
14388      determined empirically by examining 64-bit ELF files produced by
14389      the SGI toolchain on an IRIX 6.5 machine.
14390
14391      - Kevin, July 16, 2002
14392    ] */
14393
14394 static LONGEST
14395 read_initial_length (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read)
14396 {
14397   LONGEST length = bfd_get_32 (abfd, buf);
14398
14399   if (length == 0xffffffff)
14400     {
14401       length = bfd_get_64 (abfd, buf + 4);
14402       *bytes_read = 12;
14403     }
14404   else if (length == 0)
14405     {
14406       /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX.  */
14407       length = bfd_get_64 (abfd, buf);
14408       *bytes_read = 8;
14409     }
14410   else
14411     {
14412       *bytes_read = 4;
14413     }
14414
14415   return length;
14416 }
14417
14418 /* Cover function for read_initial_length.
14419    Returns the length of the object at BUF, and stores the size of the
14420    initial length in *BYTES_READ and stores the size that offsets will be in
14421    *OFFSET_SIZE.
14422    If the initial length size is not equivalent to that specified in
14423    CU_HEADER then issue a complaint.
14424    This is useful when reading non-comp-unit headers.  */
14425
14426 static LONGEST
14427 read_checked_initial_length_and_offset (bfd *abfd, gdb_byte *buf,
14428                                         const struct comp_unit_head *cu_header,
14429                                         unsigned int *bytes_read,
14430                                         unsigned int *offset_size)
14431 {
14432   LONGEST length = read_initial_length (abfd, buf, bytes_read);
14433
14434   gdb_assert (cu_header->initial_length_size == 4
14435               || cu_header->initial_length_size == 8
14436               || cu_header->initial_length_size == 12);
14437
14438   if (cu_header->initial_length_size != *bytes_read)
14439     complaint (&symfile_complaints,
14440                _("intermixed 32-bit and 64-bit DWARF sections"));
14441
14442   *offset_size = (*bytes_read == 4) ? 4 : 8;
14443   return length;
14444 }
14445
14446 /* Read an offset from the data stream.  The size of the offset is
14447    given by cu_header->offset_size.  */
14448
14449 static LONGEST
14450 read_offset (bfd *abfd, gdb_byte *buf, const struct comp_unit_head *cu_header,
14451              unsigned int *bytes_read)
14452 {
14453   LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
14454
14455   *bytes_read = cu_header->offset_size;
14456   return offset;
14457 }
14458
14459 /* Read an offset from the data stream.  */
14460
14461 static LONGEST
14462 read_offset_1 (bfd *abfd, gdb_byte *buf, unsigned int offset_size)
14463 {
14464   LONGEST retval = 0;
14465
14466   switch (offset_size)
14467     {
14468     case 4:
14469       retval = bfd_get_32 (abfd, buf);
14470       break;
14471     case 8:
14472       retval = bfd_get_64 (abfd, buf);
14473       break;
14474     default:
14475       internal_error (__FILE__, __LINE__,
14476                       _("read_offset_1: bad switch [in module %s]"),
14477                       bfd_get_filename (abfd));
14478     }
14479
14480   return retval;
14481 }
14482
14483 static gdb_byte *
14484 read_n_bytes (bfd *abfd, gdb_byte *buf, unsigned int size)
14485 {
14486   /* If the size of a host char is 8 bits, we can return a pointer
14487      to the buffer, otherwise we have to copy the data to a buffer
14488      allocated on the temporary obstack.  */
14489   gdb_assert (HOST_CHAR_BIT == 8);
14490   return buf;
14491 }
14492
14493 static char *
14494 read_direct_string (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
14495 {
14496   /* If the size of a host char is 8 bits, we can return a pointer
14497      to the string, otherwise we have to copy the string to a buffer
14498      allocated on the temporary obstack.  */
14499   gdb_assert (HOST_CHAR_BIT == 8);
14500   if (*buf == '\0')
14501     {
14502       *bytes_read_ptr = 1;
14503       return NULL;
14504     }
14505   *bytes_read_ptr = strlen ((char *) buf) + 1;
14506   return (char *) buf;
14507 }
14508
14509 static char *
14510 read_indirect_string_at_offset (bfd *abfd, LONGEST str_offset)
14511 {
14512   dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->str);
14513   if (dwarf2_per_objfile->str.buffer == NULL)
14514     error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
14515            bfd_get_filename (abfd));
14516   if (str_offset >= dwarf2_per_objfile->str.size)
14517     error (_("DW_FORM_strp pointing outside of "
14518              ".debug_str section [in module %s]"),
14519            bfd_get_filename (abfd));
14520   gdb_assert (HOST_CHAR_BIT == 8);
14521   if (dwarf2_per_objfile->str.buffer[str_offset] == '\0')
14522     return NULL;
14523   return (char *) (dwarf2_per_objfile->str.buffer + str_offset);
14524 }
14525
14526 /* Read a string at offset STR_OFFSET in the .debug_str section from
14527    the .dwz file DWZ.  Throw an error if the offset is too large.  If
14528    the string consists of a single NUL byte, return NULL; otherwise
14529    return a pointer to the string.  */
14530
14531 static char *
14532 read_indirect_string_from_dwz (struct dwz_file *dwz, LONGEST str_offset)
14533 {
14534   dwarf2_read_section (dwarf2_per_objfile->objfile, &dwz->str);
14535
14536   if (dwz->str.buffer == NULL)
14537     error (_("DW_FORM_GNU_strp_alt used without .debug_str "
14538              "section [in module %s]"),
14539            bfd_get_filename (dwz->dwz_bfd));
14540   if (str_offset >= dwz->str.size)
14541     error (_("DW_FORM_GNU_strp_alt pointing outside of "
14542              ".debug_str section [in module %s]"),
14543            bfd_get_filename (dwz->dwz_bfd));
14544   gdb_assert (HOST_CHAR_BIT == 8);
14545   if (dwz->str.buffer[str_offset] == '\0')
14546     return NULL;
14547   return (char *) (dwz->str.buffer + str_offset);
14548 }
14549
14550 static char *
14551 read_indirect_string (bfd *abfd, gdb_byte *buf,
14552                       const struct comp_unit_head *cu_header,
14553                       unsigned int *bytes_read_ptr)
14554 {
14555   LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
14556
14557   return read_indirect_string_at_offset (abfd, str_offset);
14558 }
14559
14560 static ULONGEST
14561 read_unsigned_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
14562 {
14563   ULONGEST result;
14564   unsigned int num_read;
14565   int i, shift;
14566   unsigned char byte;
14567
14568   result = 0;
14569   shift = 0;
14570   num_read = 0;
14571   i = 0;
14572   while (1)
14573     {
14574       byte = bfd_get_8 (abfd, buf);
14575       buf++;
14576       num_read++;
14577       result |= ((ULONGEST) (byte & 127) << shift);
14578       if ((byte & 128) == 0)
14579         {
14580           break;
14581         }
14582       shift += 7;
14583     }
14584   *bytes_read_ptr = num_read;
14585   return result;
14586 }
14587
14588 static LONGEST
14589 read_signed_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
14590 {
14591   LONGEST result;
14592   int i, shift, num_read;
14593   unsigned char byte;
14594
14595   result = 0;
14596   shift = 0;
14597   num_read = 0;
14598   i = 0;
14599   while (1)
14600     {
14601       byte = bfd_get_8 (abfd, buf);
14602       buf++;
14603       num_read++;
14604       result |= ((LONGEST) (byte & 127) << shift);
14605       shift += 7;
14606       if ((byte & 128) == 0)
14607         {
14608           break;
14609         }
14610     }
14611   if ((shift < 8 * sizeof (result)) && (byte & 0x40))
14612     result |= -(((LONGEST) 1) << shift);
14613   *bytes_read_ptr = num_read;
14614   return result;
14615 }
14616
14617 /* Given index ADDR_INDEX in .debug_addr, fetch the value.
14618    ADDR_BASE is the DW_AT_GNU_addr_base attribute or zero.
14619    ADDR_SIZE is the size of addresses from the CU header.  */
14620
14621 static CORE_ADDR
14622 read_addr_index_1 (unsigned int addr_index, ULONGEST addr_base, int addr_size)
14623 {
14624   struct objfile *objfile = dwarf2_per_objfile->objfile;
14625   bfd *abfd = objfile->obfd;
14626   const gdb_byte *info_ptr;
14627
14628   dwarf2_read_section (objfile, &dwarf2_per_objfile->addr);
14629   if (dwarf2_per_objfile->addr.buffer == NULL)
14630     error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
14631            objfile->name);
14632   if (addr_base + addr_index * addr_size >= dwarf2_per_objfile->addr.size)
14633     error (_("DW_FORM_addr_index pointing outside of "
14634              ".debug_addr section [in module %s]"),
14635            objfile->name);
14636   info_ptr = (dwarf2_per_objfile->addr.buffer
14637               + addr_base + addr_index * addr_size);
14638   if (addr_size == 4)
14639     return bfd_get_32 (abfd, info_ptr);
14640   else
14641     return bfd_get_64 (abfd, info_ptr);
14642 }
14643
14644 /* Given index ADDR_INDEX in .debug_addr, fetch the value.  */
14645
14646 static CORE_ADDR
14647 read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
14648 {
14649   return read_addr_index_1 (addr_index, cu->addr_base, cu->header.addr_size);
14650 }
14651
14652 /* Given a pointer to an leb128 value, fetch the value from .debug_addr.  */
14653
14654 static CORE_ADDR
14655 read_addr_index_from_leb128 (struct dwarf2_cu *cu, gdb_byte *info_ptr,
14656                              unsigned int *bytes_read)
14657 {
14658   bfd *abfd = cu->objfile->obfd;
14659   unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
14660
14661   return read_addr_index (cu, addr_index);
14662 }
14663
14664 /* Data structure to pass results from dwarf2_read_addr_index_reader
14665    back to dwarf2_read_addr_index.  */
14666
14667 struct dwarf2_read_addr_index_data
14668 {
14669   ULONGEST addr_base;
14670   int addr_size;
14671 };
14672
14673 /* die_reader_func for dwarf2_read_addr_index.  */
14674
14675 static void
14676 dwarf2_read_addr_index_reader (const struct die_reader_specs *reader,
14677                                gdb_byte *info_ptr,
14678                                struct die_info *comp_unit_die,
14679                                int has_children,
14680                                void *data)
14681 {
14682   struct dwarf2_cu *cu = reader->cu;
14683   struct dwarf2_read_addr_index_data *aidata =
14684     (struct dwarf2_read_addr_index_data *) data;
14685
14686   aidata->addr_base = cu->addr_base;
14687   aidata->addr_size = cu->header.addr_size;
14688 }
14689
14690 /* Given an index in .debug_addr, fetch the value.
14691    NOTE: This can be called during dwarf expression evaluation,
14692    long after the debug information has been read, and thus per_cu->cu
14693    may no longer exist.  */
14694
14695 CORE_ADDR
14696 dwarf2_read_addr_index (struct dwarf2_per_cu_data *per_cu,
14697                         unsigned int addr_index)
14698 {
14699   struct objfile *objfile = per_cu->objfile;
14700   struct dwarf2_cu *cu = per_cu->cu;
14701   ULONGEST addr_base;
14702   int addr_size;
14703
14704   /* This is intended to be called from outside this file.  */
14705   dw2_setup (objfile);
14706
14707   /* We need addr_base and addr_size.
14708      If we don't have PER_CU->cu, we have to get it.
14709      Nasty, but the alternative is storing the needed info in PER_CU,
14710      which at this point doesn't seem justified: it's not clear how frequently
14711      it would get used and it would increase the size of every PER_CU.
14712      Entry points like dwarf2_per_cu_addr_size do a similar thing
14713      so we're not in uncharted territory here.
14714      Alas we need to be a bit more complicated as addr_base is contained
14715      in the DIE.
14716
14717      We don't need to read the entire CU(/TU).
14718      We just need the header and top level die.
14719
14720      IWBN to use the aging mechanism to let us lazily later discard the CU.
14721      For now we skip this optimization.  */
14722
14723   if (cu != NULL)
14724     {
14725       addr_base = cu->addr_base;
14726       addr_size = cu->header.addr_size;
14727     }
14728   else
14729     {
14730       struct dwarf2_read_addr_index_data aidata;
14731
14732       /* Note: We can't use init_cutu_and_read_dies_simple here,
14733          we need addr_base.  */
14734       init_cutu_and_read_dies (per_cu, NULL, 0, 0,
14735                                dwarf2_read_addr_index_reader, &aidata);
14736       addr_base = aidata.addr_base;
14737       addr_size = aidata.addr_size;
14738     }
14739
14740   return read_addr_index_1 (addr_index, addr_base, addr_size);
14741 }
14742
14743 /* Given a DW_AT_str_index, fetch the string.  */
14744
14745 static char *
14746 read_str_index (const struct die_reader_specs *reader,
14747                 struct dwarf2_cu *cu, ULONGEST str_index)
14748 {
14749   struct objfile *objfile = dwarf2_per_objfile->objfile;
14750   const char *dwo_name = objfile->name;
14751   bfd *abfd = objfile->obfd;
14752   struct dwo_sections *sections = &reader->dwo_file->sections;
14753   gdb_byte *info_ptr;
14754   ULONGEST str_offset;
14755
14756   dwarf2_read_section (objfile, &sections->str);
14757   dwarf2_read_section (objfile, &sections->str_offsets);
14758   if (sections->str.buffer == NULL)
14759     error (_("DW_FORM_str_index used without .debug_str.dwo section"
14760              " in CU at offset 0x%lx [in module %s]"),
14761            (long) cu->header.offset.sect_off, dwo_name);
14762   if (sections->str_offsets.buffer == NULL)
14763     error (_("DW_FORM_str_index used without .debug_str_offsets.dwo section"
14764              " in CU at offset 0x%lx [in module %s]"),
14765            (long) cu->header.offset.sect_off, dwo_name);
14766   if (str_index * cu->header.offset_size >= sections->str_offsets.size)
14767     error (_("DW_FORM_str_index pointing outside of .debug_str_offsets.dwo"
14768              " section in CU at offset 0x%lx [in module %s]"),
14769            (long) cu->header.offset.sect_off, dwo_name);
14770   info_ptr = (sections->str_offsets.buffer
14771               + str_index * cu->header.offset_size);
14772   if (cu->header.offset_size == 4)
14773     str_offset = bfd_get_32 (abfd, info_ptr);
14774   else
14775     str_offset = bfd_get_64 (abfd, info_ptr);
14776   if (str_offset >= sections->str.size)
14777     error (_("Offset from DW_FORM_str_index pointing outside of"
14778              " .debug_str.dwo section in CU at offset 0x%lx [in module %s]"),
14779            (long) cu->header.offset.sect_off, dwo_name);
14780   return (char *) (sections->str.buffer + str_offset);
14781 }
14782
14783 /* Return the length of an LEB128 number in BUF.  */
14784
14785 static int
14786 leb128_size (const gdb_byte *buf)
14787 {
14788   const gdb_byte *begin = buf;
14789   gdb_byte byte;
14790
14791   while (1)
14792     {
14793       byte = *buf++;
14794       if ((byte & 128) == 0)
14795         return buf - begin;
14796     }
14797 }
14798
14799 static void
14800 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
14801 {
14802   switch (lang)
14803     {
14804     case DW_LANG_C89:
14805     case DW_LANG_C99:
14806     case DW_LANG_C:
14807       cu->language = language_c;
14808       break;
14809     case DW_LANG_C_plus_plus:
14810       cu->language = language_cplus;
14811       break;
14812     case DW_LANG_D:
14813       cu->language = language_d;
14814       break;
14815     case DW_LANG_Fortran77:
14816     case DW_LANG_Fortran90:
14817     case DW_LANG_Fortran95:
14818       cu->language = language_fortran;
14819       break;
14820     case DW_LANG_Go:
14821       cu->language = language_go;
14822       break;
14823     case DW_LANG_Mips_Assembler:
14824       cu->language = language_asm;
14825       break;
14826     case DW_LANG_Java:
14827       cu->language = language_java;
14828       break;
14829     case DW_LANG_Ada83:
14830     case DW_LANG_Ada95:
14831       cu->language = language_ada;
14832       break;
14833     case DW_LANG_Modula2:
14834       cu->language = language_m2;
14835       break;
14836     case DW_LANG_Pascal83:
14837       cu->language = language_pascal;
14838       break;
14839     case DW_LANG_ObjC:
14840       cu->language = language_objc;
14841       break;
14842     case DW_LANG_Cobol74:
14843     case DW_LANG_Cobol85:
14844     default:
14845       cu->language = language_minimal;
14846       break;
14847     }
14848   cu->language_defn = language_def (cu->language);
14849 }
14850
14851 /* Return the named attribute or NULL if not there.  */
14852
14853 static struct attribute *
14854 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
14855 {
14856   for (;;)
14857     {
14858       unsigned int i;
14859       struct attribute *spec = NULL;
14860
14861       for (i = 0; i < die->num_attrs; ++i)
14862         {
14863           if (die->attrs[i].name == name)
14864             return &die->attrs[i];
14865           if (die->attrs[i].name == DW_AT_specification
14866               || die->attrs[i].name == DW_AT_abstract_origin)
14867             spec = &die->attrs[i];
14868         }
14869
14870       if (!spec)
14871         break;
14872
14873       die = follow_die_ref (die, spec, &cu);
14874     }
14875
14876   return NULL;
14877 }
14878
14879 /* Return the named attribute or NULL if not there,
14880    but do not follow DW_AT_specification, etc.
14881    This is for use in contexts where we're reading .debug_types dies.
14882    Following DW_AT_specification, DW_AT_abstract_origin will take us
14883    back up the chain, and we want to go down.  */
14884
14885 static struct attribute *
14886 dwarf2_attr_no_follow (struct die_info *die, unsigned int name)
14887 {
14888   unsigned int i;
14889
14890   for (i = 0; i < die->num_attrs; ++i)
14891     if (die->attrs[i].name == name)
14892       return &die->attrs[i];
14893
14894   return NULL;
14895 }
14896
14897 /* Return non-zero iff the attribute NAME is defined for the given DIE,
14898    and holds a non-zero value.  This function should only be used for
14899    DW_FORM_flag or DW_FORM_flag_present attributes.  */
14900
14901 static int
14902 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
14903 {
14904   struct attribute *attr = dwarf2_attr (die, name, cu);
14905
14906   return (attr && DW_UNSND (attr));
14907 }
14908
14909 static int
14910 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
14911 {
14912   /* A DIE is a declaration if it has a DW_AT_declaration attribute
14913      which value is non-zero.  However, we have to be careful with
14914      DIEs having a DW_AT_specification attribute, because dwarf2_attr()
14915      (via dwarf2_flag_true_p) follows this attribute.  So we may
14916      end up accidently finding a declaration attribute that belongs
14917      to a different DIE referenced by the specification attribute,
14918      even though the given DIE does not have a declaration attribute.  */
14919   return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
14920           && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
14921 }
14922
14923 /* Return the die giving the specification for DIE, if there is
14924    one.  *SPEC_CU is the CU containing DIE on input, and the CU
14925    containing the return value on output.  If there is no
14926    specification, but there is an abstract origin, that is
14927    returned.  */
14928
14929 static struct die_info *
14930 die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
14931 {
14932   struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
14933                                              *spec_cu);
14934
14935   if (spec_attr == NULL)
14936     spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
14937
14938   if (spec_attr == NULL)
14939     return NULL;
14940   else
14941     return follow_die_ref (die, spec_attr, spec_cu);
14942 }
14943
14944 /* Free the line_header structure *LH, and any arrays and strings it
14945    refers to.
14946    NOTE: This is also used as a "cleanup" function.  */
14947
14948 static void
14949 free_line_header (struct line_header *lh)
14950 {
14951   if (lh->standard_opcode_lengths)
14952     xfree (lh->standard_opcode_lengths);
14953
14954   /* Remember that all the lh->file_names[i].name pointers are
14955      pointers into debug_line_buffer, and don't need to be freed.  */
14956   if (lh->file_names)
14957     xfree (lh->file_names);
14958
14959   /* Similarly for the include directory names.  */
14960   if (lh->include_dirs)
14961     xfree (lh->include_dirs);
14962
14963   xfree (lh);
14964 }
14965
14966 /* Add an entry to LH's include directory table.  */
14967
14968 static void
14969 add_include_dir (struct line_header *lh, char *include_dir)
14970 {
14971   /* Grow the array if necessary.  */
14972   if (lh->include_dirs_size == 0)
14973     {
14974       lh->include_dirs_size = 1; /* for testing */
14975       lh->include_dirs = xmalloc (lh->include_dirs_size
14976                                   * sizeof (*lh->include_dirs));
14977     }
14978   else if (lh->num_include_dirs >= lh->include_dirs_size)
14979     {
14980       lh->include_dirs_size *= 2;
14981       lh->include_dirs = xrealloc (lh->include_dirs,
14982                                    (lh->include_dirs_size
14983                                     * sizeof (*lh->include_dirs)));
14984     }
14985
14986   lh->include_dirs[lh->num_include_dirs++] = include_dir;
14987 }
14988
14989 /* Add an entry to LH's file name table.  */
14990
14991 static void
14992 add_file_name (struct line_header *lh,
14993                char *name,
14994                unsigned int dir_index,
14995                unsigned int mod_time,
14996                unsigned int length)
14997 {
14998   struct file_entry *fe;
14999
15000   /* Grow the array if necessary.  */
15001   if (lh->file_names_size == 0)
15002     {
15003       lh->file_names_size = 1; /* for testing */
15004       lh->file_names = xmalloc (lh->file_names_size
15005                                 * sizeof (*lh->file_names));
15006     }
15007   else if (lh->num_file_names >= lh->file_names_size)
15008     {
15009       lh->file_names_size *= 2;
15010       lh->file_names = xrealloc (lh->file_names,
15011                                  (lh->file_names_size
15012                                   * sizeof (*lh->file_names)));
15013     }
15014
15015   fe = &lh->file_names[lh->num_file_names++];
15016   fe->name = name;
15017   fe->dir_index = dir_index;
15018   fe->mod_time = mod_time;
15019   fe->length = length;
15020   fe->included_p = 0;
15021   fe->symtab = NULL;
15022 }
15023
15024 /* A convenience function to find the proper .debug_line section for a
15025    CU.  */
15026
15027 static struct dwarf2_section_info *
15028 get_debug_line_section (struct dwarf2_cu *cu)
15029 {
15030   struct dwarf2_section_info *section;
15031
15032   /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
15033      DWO file.  */
15034   if (cu->dwo_unit && cu->per_cu->is_debug_types)
15035     section = &cu->dwo_unit->dwo_file->sections.line;
15036   else if (cu->per_cu->is_dwz)
15037     {
15038       struct dwz_file *dwz = dwarf2_get_dwz_file ();
15039
15040       section = &dwz->line;
15041     }
15042   else
15043     section = &dwarf2_per_objfile->line;
15044
15045   return section;
15046 }
15047
15048 /* Read the statement program header starting at OFFSET in
15049    .debug_line, or .debug_line.dwo.  Return a pointer
15050    to a struct line_header, allocated using xmalloc.
15051
15052    NOTE: the strings in the include directory and file name tables of
15053    the returned object point into the dwarf line section buffer,
15054    and must not be freed.  */
15055
15056 static struct line_header *
15057 dwarf_decode_line_header (unsigned int offset, struct dwarf2_cu *cu)
15058 {
15059   struct cleanup *back_to;
15060   struct line_header *lh;
15061   gdb_byte *line_ptr;
15062   unsigned int bytes_read, offset_size;
15063   int i;
15064   char *cur_dir, *cur_file;
15065   struct dwarf2_section_info *section;
15066   bfd *abfd;
15067
15068   section = get_debug_line_section (cu);
15069   dwarf2_read_section (dwarf2_per_objfile->objfile, section);
15070   if (section->buffer == NULL)
15071     {
15072       if (cu->dwo_unit && cu->per_cu->is_debug_types)
15073         complaint (&symfile_complaints, _("missing .debug_line.dwo section"));
15074       else
15075         complaint (&symfile_complaints, _("missing .debug_line section"));
15076       return 0;
15077     }
15078
15079   /* We can't do this until we know the section is non-empty.
15080      Only then do we know we have such a section.  */
15081   abfd = section->asection->owner;
15082
15083   /* Make sure that at least there's room for the total_length field.
15084      That could be 12 bytes long, but we're just going to fudge that.  */
15085   if (offset + 4 >= section->size)
15086     {
15087       dwarf2_statement_list_fits_in_line_number_section_complaint ();
15088       return 0;
15089     }
15090
15091   lh = xmalloc (sizeof (*lh));
15092   memset (lh, 0, sizeof (*lh));
15093   back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
15094                           (void *) lh);
15095
15096   line_ptr = section->buffer + offset;
15097
15098   /* Read in the header.  */
15099   lh->total_length =
15100     read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
15101                                             &bytes_read, &offset_size);
15102   line_ptr += bytes_read;
15103   if (line_ptr + lh->total_length > (section->buffer + section->size))
15104     {
15105       dwarf2_statement_list_fits_in_line_number_section_complaint ();
15106       return 0;
15107     }
15108   lh->statement_program_end = line_ptr + lh->total_length;
15109   lh->version = read_2_bytes (abfd, line_ptr);
15110   line_ptr += 2;
15111   lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
15112   line_ptr += offset_size;
15113   lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
15114   line_ptr += 1;
15115   if (lh->version >= 4)
15116     {
15117       lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
15118       line_ptr += 1;
15119     }
15120   else
15121     lh->maximum_ops_per_instruction = 1;
15122
15123   if (lh->maximum_ops_per_instruction == 0)
15124     {
15125       lh->maximum_ops_per_instruction = 1;
15126       complaint (&symfile_complaints,
15127                  _("invalid maximum_ops_per_instruction "
15128                    "in `.debug_line' section"));
15129     }
15130
15131   lh->default_is_stmt = read_1_byte (abfd, line_ptr);
15132   line_ptr += 1;
15133   lh->line_base = read_1_signed_byte (abfd, line_ptr);
15134   line_ptr += 1;
15135   lh->line_range = read_1_byte (abfd, line_ptr);
15136   line_ptr += 1;
15137   lh->opcode_base = read_1_byte (abfd, line_ptr);
15138   line_ptr += 1;
15139   lh->standard_opcode_lengths
15140     = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
15141
15142   lh->standard_opcode_lengths[0] = 1;  /* This should never be used anyway.  */
15143   for (i = 1; i < lh->opcode_base; ++i)
15144     {
15145       lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
15146       line_ptr += 1;
15147     }
15148
15149   /* Read directory table.  */
15150   while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
15151     {
15152       line_ptr += bytes_read;
15153       add_include_dir (lh, cur_dir);
15154     }
15155   line_ptr += bytes_read;
15156
15157   /* Read file name table.  */
15158   while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
15159     {
15160       unsigned int dir_index, mod_time, length;
15161
15162       line_ptr += bytes_read;
15163       dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15164       line_ptr += bytes_read;
15165       mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15166       line_ptr += bytes_read;
15167       length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15168       line_ptr += bytes_read;
15169
15170       add_file_name (lh, cur_file, dir_index, mod_time, length);
15171     }
15172   line_ptr += bytes_read;
15173   lh->statement_program_start = line_ptr;
15174
15175   if (line_ptr > (section->buffer + section->size))
15176     complaint (&symfile_complaints,
15177                _("line number info header doesn't "
15178                  "fit in `.debug_line' section"));
15179
15180   discard_cleanups (back_to);
15181   return lh;
15182 }
15183
15184 /* Subroutine of dwarf_decode_lines to simplify it.
15185    Return the file name of the psymtab for included file FILE_INDEX
15186    in line header LH of PST.
15187    COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
15188    If space for the result is malloc'd, it will be freed by a cleanup.
15189    Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename.
15190
15191    The function creates dangling cleanup registration.  */
15192
15193 static char *
15194 psymtab_include_file_name (const struct line_header *lh, int file_index,
15195                            const struct partial_symtab *pst,
15196                            const char *comp_dir)
15197 {
15198   const struct file_entry fe = lh->file_names [file_index];
15199   char *include_name = fe.name;
15200   char *include_name_to_compare = include_name;
15201   char *dir_name = NULL;
15202   const char *pst_filename;
15203   char *copied_name = NULL;
15204   int file_is_pst;
15205
15206   if (fe.dir_index)
15207     dir_name = lh->include_dirs[fe.dir_index - 1];
15208
15209   if (!IS_ABSOLUTE_PATH (include_name)
15210       && (dir_name != NULL || comp_dir != NULL))
15211     {
15212       /* Avoid creating a duplicate psymtab for PST.
15213          We do this by comparing INCLUDE_NAME and PST_FILENAME.
15214          Before we do the comparison, however, we need to account
15215          for DIR_NAME and COMP_DIR.
15216          First prepend dir_name (if non-NULL).  If we still don't
15217          have an absolute path prepend comp_dir (if non-NULL).
15218          However, the directory we record in the include-file's
15219          psymtab does not contain COMP_DIR (to match the
15220          corresponding symtab(s)).
15221
15222          Example:
15223
15224          bash$ cd /tmp
15225          bash$ gcc -g ./hello.c
15226          include_name = "hello.c"
15227          dir_name = "."
15228          DW_AT_comp_dir = comp_dir = "/tmp"
15229          DW_AT_name = "./hello.c"  */
15230
15231       if (dir_name != NULL)
15232         {
15233           include_name = concat (dir_name, SLASH_STRING,
15234                                  include_name, (char *)NULL);
15235           include_name_to_compare = include_name;
15236           make_cleanup (xfree, include_name);
15237         }
15238       if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
15239         {
15240           include_name_to_compare = concat (comp_dir, SLASH_STRING,
15241                                             include_name, (char *)NULL);
15242         }
15243     }
15244
15245   pst_filename = pst->filename;
15246   if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
15247     {
15248       copied_name = concat (pst->dirname, SLASH_STRING,
15249                             pst_filename, (char *)NULL);
15250       pst_filename = copied_name;
15251     }
15252
15253   file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
15254
15255   if (include_name_to_compare != include_name)
15256     xfree (include_name_to_compare);
15257   if (copied_name != NULL)
15258     xfree (copied_name);
15259
15260   if (file_is_pst)
15261     return NULL;
15262   return include_name;
15263 }
15264
15265 /* Ignore this record_line request.  */
15266
15267 static void
15268 noop_record_line (struct subfile *subfile, int line, CORE_ADDR pc)
15269 {
15270   return;
15271 }
15272
15273 /* Subroutine of dwarf_decode_lines to simplify it.
15274    Process the line number information in LH.  */
15275
15276 static void
15277 dwarf_decode_lines_1 (struct line_header *lh, const char *comp_dir,
15278                       struct dwarf2_cu *cu, struct partial_symtab *pst)
15279 {
15280   gdb_byte *line_ptr, *extended_end;
15281   gdb_byte *line_end;
15282   unsigned int bytes_read, extended_len;
15283   unsigned char op_code, extended_op, adj_opcode;
15284   CORE_ADDR baseaddr;
15285   struct objfile *objfile = cu->objfile;
15286   bfd *abfd = objfile->obfd;
15287   struct gdbarch *gdbarch = get_objfile_arch (objfile);
15288   const int decode_for_pst_p = (pst != NULL);
15289   struct subfile *last_subfile = NULL;
15290   void (*p_record_line) (struct subfile *subfile, int line, CORE_ADDR pc)
15291     = record_line;
15292
15293   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
15294
15295   line_ptr = lh->statement_program_start;
15296   line_end = lh->statement_program_end;
15297
15298   /* Read the statement sequences until there's nothing left.  */
15299   while (line_ptr < line_end)
15300     {
15301       /* state machine registers  */
15302       CORE_ADDR address = 0;
15303       unsigned int file = 1;
15304       unsigned int line = 1;
15305       unsigned int column = 0;
15306       int is_stmt = lh->default_is_stmt;
15307       int basic_block = 0;
15308       int end_sequence = 0;
15309       CORE_ADDR addr;
15310       unsigned char op_index = 0;
15311
15312       if (!decode_for_pst_p && lh->num_file_names >= file)
15313         {
15314           /* Start a subfile for the current file of the state machine.  */
15315           /* lh->include_dirs and lh->file_names are 0-based, but the
15316              directory and file name numbers in the statement program
15317              are 1-based.  */
15318           struct file_entry *fe = &lh->file_names[file - 1];
15319           char *dir = NULL;
15320
15321           if (fe->dir_index)
15322             dir = lh->include_dirs[fe->dir_index - 1];
15323
15324           dwarf2_start_subfile (fe->name, dir, comp_dir);
15325         }
15326
15327       /* Decode the table.  */
15328       while (!end_sequence)
15329         {
15330           op_code = read_1_byte (abfd, line_ptr);
15331           line_ptr += 1;
15332           if (line_ptr > line_end)
15333             {
15334               dwarf2_debug_line_missing_end_sequence_complaint ();
15335               break;
15336             }
15337
15338           if (op_code >= lh->opcode_base)
15339             {
15340               /* Special operand.  */
15341               adj_opcode = op_code - lh->opcode_base;
15342               address += (((op_index + (adj_opcode / lh->line_range))
15343                            / lh->maximum_ops_per_instruction)
15344                           * lh->minimum_instruction_length);
15345               op_index = ((op_index + (adj_opcode / lh->line_range))
15346                           % lh->maximum_ops_per_instruction);
15347               line += lh->line_base + (adj_opcode % lh->line_range);
15348               if (lh->num_file_names < file || file == 0)
15349                 dwarf2_debug_line_missing_file_complaint ();
15350               /* For now we ignore lines not starting on an
15351                  instruction boundary.  */
15352               else if (op_index == 0)
15353                 {
15354                   lh->file_names[file - 1].included_p = 1;
15355                   if (!decode_for_pst_p && is_stmt)
15356                     {
15357                       if (last_subfile != current_subfile)
15358                         {
15359                           addr = gdbarch_addr_bits_remove (gdbarch, address);
15360                           if (last_subfile)
15361                             (*p_record_line) (last_subfile, 0, addr);
15362                           last_subfile = current_subfile;
15363                         }
15364                       /* Append row to matrix using current values.  */
15365                       addr = gdbarch_addr_bits_remove (gdbarch, address);
15366                       (*p_record_line) (current_subfile, line, addr);
15367                     }
15368                 }
15369               basic_block = 0;
15370             }
15371           else switch (op_code)
15372             {
15373             case DW_LNS_extended_op:
15374               extended_len = read_unsigned_leb128 (abfd, line_ptr,
15375                                                    &bytes_read);
15376               line_ptr += bytes_read;
15377               extended_end = line_ptr + extended_len;
15378               extended_op = read_1_byte (abfd, line_ptr);
15379               line_ptr += 1;
15380               switch (extended_op)
15381                 {
15382                 case DW_LNE_end_sequence:
15383                   p_record_line = record_line;
15384                   end_sequence = 1;
15385                   break;
15386                 case DW_LNE_set_address:
15387                   address = read_address (abfd, line_ptr, cu, &bytes_read);
15388
15389                   if (address == 0 && !dwarf2_per_objfile->has_section_at_zero)
15390                     {
15391                       /* This line table is for a function which has been
15392                          GCd by the linker.  Ignore it.  PR gdb/12528 */
15393
15394                       long line_offset
15395                         = line_ptr - get_debug_line_section (cu)->buffer;
15396
15397                       complaint (&symfile_complaints,
15398                                  _(".debug_line address at offset 0x%lx is 0 "
15399                                    "[in module %s]"),
15400                                  line_offset, objfile->name);
15401                       p_record_line = noop_record_line;
15402                     }
15403
15404                   op_index = 0;
15405                   line_ptr += bytes_read;
15406                   address += baseaddr;
15407                   break;
15408                 case DW_LNE_define_file:
15409                   {
15410                     char *cur_file;
15411                     unsigned int dir_index, mod_time, length;
15412
15413                     cur_file = read_direct_string (abfd, line_ptr,
15414                                                    &bytes_read);
15415                     line_ptr += bytes_read;
15416                     dir_index =
15417                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15418                     line_ptr += bytes_read;
15419                     mod_time =
15420                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15421                     line_ptr += bytes_read;
15422                     length =
15423                       read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15424                     line_ptr += bytes_read;
15425                     add_file_name (lh, cur_file, dir_index, mod_time, length);
15426                   }
15427                   break;
15428                 case DW_LNE_set_discriminator:
15429                   /* The discriminator is not interesting to the debugger;
15430                      just ignore it.  */
15431                   line_ptr = extended_end;
15432                   break;
15433                 default:
15434                   complaint (&symfile_complaints,
15435                              _("mangled .debug_line section"));
15436                   return;
15437                 }
15438               /* Make sure that we parsed the extended op correctly.  If e.g.
15439                  we expected a different address size than the producer used,
15440                  we may have read the wrong number of bytes.  */
15441               if (line_ptr != extended_end)
15442                 {
15443                   complaint (&symfile_complaints,
15444                              _("mangled .debug_line section"));
15445                   return;
15446                 }
15447               break;
15448             case DW_LNS_copy:
15449               if (lh->num_file_names < file || file == 0)
15450                 dwarf2_debug_line_missing_file_complaint ();
15451               else
15452                 {
15453                   lh->file_names[file - 1].included_p = 1;
15454                   if (!decode_for_pst_p && is_stmt)
15455                     {
15456                       if (last_subfile != current_subfile)
15457                         {
15458                           addr = gdbarch_addr_bits_remove (gdbarch, address);
15459                           if (last_subfile)
15460                             (*p_record_line) (last_subfile, 0, addr);
15461                           last_subfile = current_subfile;
15462                         }
15463                       addr = gdbarch_addr_bits_remove (gdbarch, address);
15464                       (*p_record_line) (current_subfile, line, addr);
15465                     }
15466                 }
15467               basic_block = 0;
15468               break;
15469             case DW_LNS_advance_pc:
15470               {
15471                 CORE_ADDR adjust
15472                   = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15473
15474                 address += (((op_index + adjust)
15475                              / lh->maximum_ops_per_instruction)
15476                             * lh->minimum_instruction_length);
15477                 op_index = ((op_index + adjust)
15478                             % lh->maximum_ops_per_instruction);
15479                 line_ptr += bytes_read;
15480               }
15481               break;
15482             case DW_LNS_advance_line:
15483               line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
15484               line_ptr += bytes_read;
15485               break;
15486             case DW_LNS_set_file:
15487               {
15488                 /* The arrays lh->include_dirs and lh->file_names are
15489                    0-based, but the directory and file name numbers in
15490                    the statement program are 1-based.  */
15491                 struct file_entry *fe;
15492                 char *dir = NULL;
15493
15494                 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15495                 line_ptr += bytes_read;
15496                 if (lh->num_file_names < file || file == 0)
15497                   dwarf2_debug_line_missing_file_complaint ();
15498                 else
15499                   {
15500                     fe = &lh->file_names[file - 1];
15501                     if (fe->dir_index)
15502                       dir = lh->include_dirs[fe->dir_index - 1];
15503                     if (!decode_for_pst_p)
15504                       {
15505                         last_subfile = current_subfile;
15506                         dwarf2_start_subfile (fe->name, dir, comp_dir);
15507                       }
15508                   }
15509               }
15510               break;
15511             case DW_LNS_set_column:
15512               column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15513               line_ptr += bytes_read;
15514               break;
15515             case DW_LNS_negate_stmt:
15516               is_stmt = (!is_stmt);
15517               break;
15518             case DW_LNS_set_basic_block:
15519               basic_block = 1;
15520               break;
15521             /* Add to the address register of the state machine the
15522                address increment value corresponding to special opcode
15523                255.  I.e., this value is scaled by the minimum
15524                instruction length since special opcode 255 would have
15525                scaled the increment.  */
15526             case DW_LNS_const_add_pc:
15527               {
15528                 CORE_ADDR adjust = (255 - lh->opcode_base) / lh->line_range;
15529
15530                 address += (((op_index + adjust)
15531                              / lh->maximum_ops_per_instruction)
15532                             * lh->minimum_instruction_length);
15533                 op_index = ((op_index + adjust)
15534                             % lh->maximum_ops_per_instruction);
15535               }
15536               break;
15537             case DW_LNS_fixed_advance_pc:
15538               address += read_2_bytes (abfd, line_ptr);
15539               op_index = 0;
15540               line_ptr += 2;
15541               break;
15542             default:
15543               {
15544                 /* Unknown standard opcode, ignore it.  */
15545                 int i;
15546
15547                 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
15548                   {
15549                     (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
15550                     line_ptr += bytes_read;
15551                   }
15552               }
15553             }
15554         }
15555       if (lh->num_file_names < file || file == 0)
15556         dwarf2_debug_line_missing_file_complaint ();
15557       else
15558         {
15559           lh->file_names[file - 1].included_p = 1;
15560           if (!decode_for_pst_p)
15561             {
15562               addr = gdbarch_addr_bits_remove (gdbarch, address);
15563               (*p_record_line) (current_subfile, 0, addr);
15564             }
15565         }
15566     }
15567 }
15568
15569 /* Decode the Line Number Program (LNP) for the given line_header
15570    structure and CU.  The actual information extracted and the type
15571    of structures created from the LNP depends on the value of PST.
15572
15573    1. If PST is NULL, then this procedure uses the data from the program
15574       to create all necessary symbol tables, and their linetables.
15575
15576    2. If PST is not NULL, this procedure reads the program to determine
15577       the list of files included by the unit represented by PST, and
15578       builds all the associated partial symbol tables.
15579
15580    COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
15581    It is used for relative paths in the line table.
15582    NOTE: When processing partial symtabs (pst != NULL),
15583    comp_dir == pst->dirname.
15584
15585    NOTE: It is important that psymtabs have the same file name (via strcmp)
15586    as the corresponding symtab.  Since COMP_DIR is not used in the name of the
15587    symtab we don't use it in the name of the psymtabs we create.
15588    E.g. expand_line_sal requires this when finding psymtabs to expand.
15589    A good testcase for this is mb-inline.exp.  */
15590
15591 static void
15592 dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
15593                     struct dwarf2_cu *cu, struct partial_symtab *pst,
15594                     int want_line_info)
15595 {
15596   struct objfile *objfile = cu->objfile;
15597   const int decode_for_pst_p = (pst != NULL);
15598   struct subfile *first_subfile = current_subfile;
15599
15600   if (want_line_info)
15601     dwarf_decode_lines_1 (lh, comp_dir, cu, pst);
15602
15603   if (decode_for_pst_p)
15604     {
15605       int file_index;
15606
15607       /* Now that we're done scanning the Line Header Program, we can
15608          create the psymtab of each included file.  */
15609       for (file_index = 0; file_index < lh->num_file_names; file_index++)
15610         if (lh->file_names[file_index].included_p == 1)
15611           {
15612             char *include_name =
15613               psymtab_include_file_name (lh, file_index, pst, comp_dir);
15614             if (include_name != NULL)
15615               dwarf2_create_include_psymtab (include_name, pst, objfile);
15616           }
15617     }
15618   else
15619     {
15620       /* Make sure a symtab is created for every file, even files
15621          which contain only variables (i.e. no code with associated
15622          line numbers).  */
15623       int i;
15624
15625       for (i = 0; i < lh->num_file_names; i++)
15626         {
15627           char *dir = NULL;
15628           struct file_entry *fe;
15629
15630           fe = &lh->file_names[i];
15631           if (fe->dir_index)
15632             dir = lh->include_dirs[fe->dir_index - 1];
15633           dwarf2_start_subfile (fe->name, dir, comp_dir);
15634
15635           /* Skip the main file; we don't need it, and it must be
15636              allocated last, so that it will show up before the
15637              non-primary symtabs in the objfile's symtab list.  */
15638           if (current_subfile == first_subfile)
15639             continue;
15640
15641           if (current_subfile->symtab == NULL)
15642             current_subfile->symtab = allocate_symtab (current_subfile->name,
15643                                                        objfile);
15644           fe->symtab = current_subfile->symtab;
15645         }
15646     }
15647 }
15648
15649 /* Start a subfile for DWARF.  FILENAME is the name of the file and
15650    DIRNAME the name of the source directory which contains FILENAME
15651    or NULL if not known.  COMP_DIR is the compilation directory for the
15652    linetable's compilation unit or NULL if not known.
15653    This routine tries to keep line numbers from identical absolute and
15654    relative file names in a common subfile.
15655
15656    Using the `list' example from the GDB testsuite, which resides in
15657    /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
15658    of /srcdir/list0.c yields the following debugging information for list0.c:
15659
15660    DW_AT_name:          /srcdir/list0.c
15661    DW_AT_comp_dir:              /compdir
15662    files.files[0].name: list0.h
15663    files.files[0].dir:  /srcdir
15664    files.files[1].name: list0.c
15665    files.files[1].dir:  /srcdir
15666
15667    The line number information for list0.c has to end up in a single
15668    subfile, so that `break /srcdir/list0.c:1' works as expected.
15669    start_subfile will ensure that this happens provided that we pass the
15670    concatenation of files.files[1].dir and files.files[1].name as the
15671    subfile's name.  */
15672
15673 static void
15674 dwarf2_start_subfile (char *filename, const char *dirname,
15675                       const char *comp_dir)
15676 {
15677   char *fullname;
15678
15679   /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
15680      `start_symtab' will always pass the contents of DW_AT_comp_dir as
15681      second argument to start_subfile.  To be consistent, we do the
15682      same here.  In order not to lose the line information directory,
15683      we concatenate it to the filename when it makes sense.
15684      Note that the Dwarf3 standard says (speaking of filenames in line
15685      information): ``The directory index is ignored for file names
15686      that represent full path names''.  Thus ignoring dirname in the
15687      `else' branch below isn't an issue.  */
15688
15689   if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
15690     fullname = concat (dirname, SLASH_STRING, filename, (char *)NULL);
15691   else
15692     fullname = filename;
15693
15694   start_subfile (fullname, comp_dir);
15695
15696   if (fullname != filename)
15697     xfree (fullname);
15698 }
15699
15700 /* Start a symtab for DWARF.
15701    NAME, COMP_DIR, LOW_PC are passed to start_symtab.  */
15702
15703 static void
15704 dwarf2_start_symtab (struct dwarf2_cu *cu,
15705                      const char *name, const char *comp_dir, CORE_ADDR low_pc)
15706 {
15707   start_symtab (name, comp_dir, low_pc);
15708   record_debugformat ("DWARF 2");
15709   record_producer (cu->producer);
15710
15711   /* We assume that we're processing GCC output.  */
15712   processing_gcc_compilation = 2;
15713
15714   cu->processing_has_namespace_info = 0;
15715 }
15716
15717 static void
15718 var_decode_location (struct attribute *attr, struct symbol *sym,
15719                      struct dwarf2_cu *cu)
15720 {
15721   struct objfile *objfile = cu->objfile;
15722   struct comp_unit_head *cu_header = &cu->header;
15723
15724   /* NOTE drow/2003-01-30: There used to be a comment and some special
15725      code here to turn a symbol with DW_AT_external and a
15726      SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol.  This was
15727      necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
15728      with some versions of binutils) where shared libraries could have
15729      relocations against symbols in their debug information - the
15730      minimal symbol would have the right address, but the debug info
15731      would not.  It's no longer necessary, because we will explicitly
15732      apply relocations when we read in the debug information now.  */
15733
15734   /* A DW_AT_location attribute with no contents indicates that a
15735      variable has been optimized away.  */
15736   if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
15737     {
15738       SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
15739       return;
15740     }
15741
15742   /* Handle one degenerate form of location expression specially, to
15743      preserve GDB's previous behavior when section offsets are
15744      specified.  If this is just a DW_OP_addr or DW_OP_GNU_addr_index
15745      then mark this symbol as LOC_STATIC.  */
15746
15747   if (attr_form_is_block (attr)
15748       && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
15749            && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
15750           || (DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
15751               && (DW_BLOCK (attr)->size
15752                   == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
15753     {
15754       unsigned int dummy;
15755
15756       if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
15757         SYMBOL_VALUE_ADDRESS (sym) =
15758           read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
15759       else
15760         SYMBOL_VALUE_ADDRESS (sym) =
15761           read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1, &dummy);
15762       SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
15763       fixup_symbol_section (sym, objfile);
15764       SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
15765                                               SYMBOL_SECTION (sym));
15766       return;
15767     }
15768
15769   /* NOTE drow/2002-01-30: It might be worthwhile to have a static
15770      expression evaluator, and use LOC_COMPUTED only when necessary
15771      (i.e. when the value of a register or memory location is
15772      referenced, or a thread-local block, etc.).  Then again, it might
15773      not be worthwhile.  I'm assuming that it isn't unless performance
15774      or memory numbers show me otherwise.  */
15775
15776   dwarf2_symbol_mark_computed (attr, sym, cu, 0);
15777
15778   if (SYMBOL_COMPUTED_OPS (sym)->location_has_loclist)
15779     cu->has_loclist = 1;
15780 }
15781
15782 /* Given a pointer to a DWARF information entry, figure out if we need
15783    to make a symbol table entry for it, and if so, create a new entry
15784    and return a pointer to it.
15785    If TYPE is NULL, determine symbol type from the die, otherwise
15786    used the passed type.
15787    If SPACE is not NULL, use it to hold the new symbol.  If it is
15788    NULL, allocate a new symbol on the objfile's obstack.  */
15789
15790 static struct symbol *
15791 new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
15792                  struct symbol *space)
15793 {
15794   struct objfile *objfile = cu->objfile;
15795   struct symbol *sym = NULL;
15796   const char *name;
15797   struct attribute *attr = NULL;
15798   struct attribute *attr2 = NULL;
15799   CORE_ADDR baseaddr;
15800   struct pending **list_to_add = NULL;
15801
15802   int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
15803
15804   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
15805
15806   name = dwarf2_name (die, cu);
15807   if (name)
15808     {
15809       const char *linkagename;
15810       int suppress_add = 0;
15811
15812       if (space)
15813         sym = space;
15814       else
15815         sym = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct symbol);
15816       OBJSTAT (objfile, n_syms++);
15817
15818       /* Cache this symbol's name and the name's demangled form (if any).  */
15819       SYMBOL_SET_LANGUAGE (sym, cu->language);
15820       linkagename = dwarf2_physname (name, die, cu);
15821       SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
15822
15823       /* Fortran does not have mangling standard and the mangling does differ
15824          between gfortran, iFort etc.  */
15825       if (cu->language == language_fortran
15826           && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
15827         symbol_set_demangled_name (&(sym->ginfo),
15828                                    dwarf2_full_name (name, die, cu),
15829                                    NULL);
15830
15831       /* Default assumptions.
15832          Use the passed type or decode it from the die.  */
15833       SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
15834       SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
15835       if (type != NULL)
15836         SYMBOL_TYPE (sym) = type;
15837       else
15838         SYMBOL_TYPE (sym) = die_type (die, cu);
15839       attr = dwarf2_attr (die,
15840                           inlined_func ? DW_AT_call_line : DW_AT_decl_line,
15841                           cu);
15842       if (attr)
15843         {
15844           SYMBOL_LINE (sym) = DW_UNSND (attr);
15845         }
15846
15847       attr = dwarf2_attr (die,
15848                           inlined_func ? DW_AT_call_file : DW_AT_decl_file,
15849                           cu);
15850       if (attr)
15851         {
15852           int file_index = DW_UNSND (attr);
15853
15854           if (cu->line_header == NULL
15855               || file_index > cu->line_header->num_file_names)
15856             complaint (&symfile_complaints,
15857                        _("file index out of range"));
15858           else if (file_index > 0)
15859             {
15860               struct file_entry *fe;
15861
15862               fe = &cu->line_header->file_names[file_index - 1];
15863               SYMBOL_SYMTAB (sym) = fe->symtab;
15864             }
15865         }
15866
15867       switch (die->tag)
15868         {
15869         case DW_TAG_label:
15870           attr = dwarf2_attr (die, DW_AT_low_pc, cu);
15871           if (attr)
15872             {
15873               SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
15874             }
15875           SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
15876           SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
15877           SYMBOL_ACLASS_INDEX (sym) = LOC_LABEL;
15878           add_symbol_to_list (sym, cu->list_in_scope);
15879           break;
15880         case DW_TAG_subprogram:
15881           /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
15882              finish_block.  */
15883           SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
15884           attr2 = dwarf2_attr (die, DW_AT_external, cu);
15885           if ((attr2 && (DW_UNSND (attr2) != 0))
15886               || cu->language == language_ada)
15887             {
15888               /* Subprograms marked external are stored as a global symbol.
15889                  Ada subprograms, whether marked external or not, are always
15890                  stored as a global symbol, because we want to be able to
15891                  access them globally.  For instance, we want to be able
15892                  to break on a nested subprogram without having to
15893                  specify the context.  */
15894               list_to_add = &global_symbols;
15895             }
15896           else
15897             {
15898               list_to_add = cu->list_in_scope;
15899             }
15900           break;
15901         case DW_TAG_inlined_subroutine:
15902           /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
15903              finish_block.  */
15904           SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
15905           SYMBOL_INLINED (sym) = 1;
15906           list_to_add = cu->list_in_scope;
15907           break;
15908         case DW_TAG_template_value_param:
15909           suppress_add = 1;
15910           /* Fall through.  */
15911         case DW_TAG_constant:
15912         case DW_TAG_variable:
15913         case DW_TAG_member:
15914           /* Compilation with minimal debug info may result in
15915              variables with missing type entries.  Change the
15916              misleading `void' type to something sensible.  */
15917           if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
15918             SYMBOL_TYPE (sym)
15919               = objfile_type (objfile)->nodebug_data_symbol;
15920
15921           attr = dwarf2_attr (die, DW_AT_const_value, cu);
15922           /* In the case of DW_TAG_member, we should only be called for
15923              static const members.  */
15924           if (die->tag == DW_TAG_member)
15925             {
15926               /* dwarf2_add_field uses die_is_declaration,
15927                  so we do the same.  */
15928               gdb_assert (die_is_declaration (die, cu));
15929               gdb_assert (attr);
15930             }
15931           if (attr)
15932             {
15933               dwarf2_const_value (attr, sym, cu);
15934               attr2 = dwarf2_attr (die, DW_AT_external, cu);
15935               if (!suppress_add)
15936                 {
15937                   if (attr2 && (DW_UNSND (attr2) != 0))
15938                     list_to_add = &global_symbols;
15939                   else
15940                     list_to_add = cu->list_in_scope;
15941                 }
15942               break;
15943             }
15944           attr = dwarf2_attr (die, DW_AT_location, cu);
15945           if (attr)
15946             {
15947               var_decode_location (attr, sym, cu);
15948               attr2 = dwarf2_attr (die, DW_AT_external, cu);
15949
15950               /* Fortran explicitly imports any global symbols to the local
15951                  scope by DW_TAG_common_block.  */
15952               if (cu->language == language_fortran && die->parent
15953                   && die->parent->tag == DW_TAG_common_block)
15954                 attr2 = NULL;
15955
15956               if (SYMBOL_CLASS (sym) == LOC_STATIC
15957                   && SYMBOL_VALUE_ADDRESS (sym) == 0
15958                   && !dwarf2_per_objfile->has_section_at_zero)
15959                 {
15960                   /* When a static variable is eliminated by the linker,
15961                      the corresponding debug information is not stripped
15962                      out, but the variable address is set to null;
15963                      do not add such variables into symbol table.  */
15964                 }
15965               else if (attr2 && (DW_UNSND (attr2) != 0))
15966                 {
15967                   /* Workaround gfortran PR debug/40040 - it uses
15968                      DW_AT_location for variables in -fPIC libraries which may
15969                      get overriden by other libraries/executable and get
15970                      a different address.  Resolve it by the minimal symbol
15971                      which may come from inferior's executable using copy
15972                      relocation.  Make this workaround only for gfortran as for
15973                      other compilers GDB cannot guess the minimal symbol
15974                      Fortran mangling kind.  */
15975                   if (cu->language == language_fortran && die->parent
15976                       && die->parent->tag == DW_TAG_module
15977                       && cu->producer
15978                       && strncmp (cu->producer, "GNU Fortran ", 12) == 0)
15979                     SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
15980
15981                   /* A variable with DW_AT_external is never static,
15982                      but it may be block-scoped.  */
15983                   list_to_add = (cu->list_in_scope == &file_symbols
15984                                  ? &global_symbols : cu->list_in_scope);
15985                 }
15986               else
15987                 list_to_add = cu->list_in_scope;
15988             }
15989           else
15990             {
15991               /* We do not know the address of this symbol.
15992                  If it is an external symbol and we have type information
15993                  for it, enter the symbol as a LOC_UNRESOLVED symbol.
15994                  The address of the variable will then be determined from
15995                  the minimal symbol table whenever the variable is
15996                  referenced.  */
15997               attr2 = dwarf2_attr (die, DW_AT_external, cu);
15998
15999               /* Fortran explicitly imports any global symbols to the local
16000                  scope by DW_TAG_common_block.  */
16001               if (cu->language == language_fortran && die->parent
16002                   && die->parent->tag == DW_TAG_common_block)
16003                 {
16004                   /* SYMBOL_CLASS doesn't matter here because
16005                      read_common_block is going to reset it.  */
16006                   if (!suppress_add)
16007                     list_to_add = cu->list_in_scope;
16008                 }
16009               else if (attr2 && (DW_UNSND (attr2) != 0)
16010                        && dwarf2_attr (die, DW_AT_type, cu) != NULL)
16011                 {
16012                   /* A variable with DW_AT_external is never static, but it
16013                      may be block-scoped.  */
16014                   list_to_add = (cu->list_in_scope == &file_symbols
16015                                  ? &global_symbols : cu->list_in_scope);
16016
16017                   SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
16018                 }
16019               else if (!die_is_declaration (die, cu))
16020                 {
16021                   /* Use the default LOC_OPTIMIZED_OUT class.  */
16022                   gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
16023                   if (!suppress_add)
16024                     list_to_add = cu->list_in_scope;
16025                 }
16026             }
16027           break;
16028         case DW_TAG_formal_parameter:
16029           /* If we are inside a function, mark this as an argument.  If
16030              not, we might be looking at an argument to an inlined function
16031              when we do not have enough information to show inlined frames;
16032              pretend it's a local variable in that case so that the user can
16033              still see it.  */
16034           if (context_stack_depth > 0
16035               && context_stack[context_stack_depth - 1].name != NULL)
16036             SYMBOL_IS_ARGUMENT (sym) = 1;
16037           attr = dwarf2_attr (die, DW_AT_location, cu);
16038           if (attr)
16039             {
16040               var_decode_location (attr, sym, cu);
16041             }
16042           attr = dwarf2_attr (die, DW_AT_const_value, cu);
16043           if (attr)
16044             {
16045               dwarf2_const_value (attr, sym, cu);
16046             }
16047
16048           list_to_add = cu->list_in_scope;
16049           break;
16050         case DW_TAG_unspecified_parameters:
16051           /* From varargs functions; gdb doesn't seem to have any
16052              interest in this information, so just ignore it for now.
16053              (FIXME?) */
16054           break;
16055         case DW_TAG_template_type_param:
16056           suppress_add = 1;
16057           /* Fall through.  */
16058         case DW_TAG_class_type:
16059         case DW_TAG_interface_type:
16060         case DW_TAG_structure_type:
16061         case DW_TAG_union_type:
16062         case DW_TAG_set_type:
16063         case DW_TAG_enumeration_type:
16064           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16065           SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
16066
16067           {
16068             /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
16069                really ever be static objects: otherwise, if you try
16070                to, say, break of a class's method and you're in a file
16071                which doesn't mention that class, it won't work unless
16072                the check for all static symbols in lookup_symbol_aux
16073                saves you.  See the OtherFileClass tests in
16074                gdb.c++/namespace.exp.  */
16075
16076             if (!suppress_add)
16077               {
16078                 list_to_add = (cu->list_in_scope == &file_symbols
16079                                && (cu->language == language_cplus
16080                                    || cu->language == language_java)
16081                                ? &global_symbols : cu->list_in_scope);
16082
16083                 /* The semantics of C++ state that "struct foo {
16084                    ... }" also defines a typedef for "foo".  A Java
16085                    class declaration also defines a typedef for the
16086                    class.  */
16087                 if (cu->language == language_cplus
16088                     || cu->language == language_java
16089                     || cu->language == language_ada)
16090                   {
16091                     /* The symbol's name is already allocated along
16092                        with this objfile, so we don't need to
16093                        duplicate it for the type.  */
16094                     if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
16095                       TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
16096                   }
16097               }
16098           }
16099           break;
16100         case DW_TAG_typedef:
16101           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16102           SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
16103           list_to_add = cu->list_in_scope;
16104           break;
16105         case DW_TAG_base_type:
16106         case DW_TAG_subrange_type:
16107           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16108           SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
16109           list_to_add = cu->list_in_scope;
16110           break;
16111         case DW_TAG_enumerator:
16112           attr = dwarf2_attr (die, DW_AT_const_value, cu);
16113           if (attr)
16114             {
16115               dwarf2_const_value (attr, sym, cu);
16116             }
16117           {
16118             /* NOTE: carlton/2003-11-10: See comment above in the
16119                DW_TAG_class_type, etc. block.  */
16120
16121             list_to_add = (cu->list_in_scope == &file_symbols
16122                            && (cu->language == language_cplus
16123                                || cu->language == language_java)
16124                            ? &global_symbols : cu->list_in_scope);
16125           }
16126           break;
16127         case DW_TAG_namespace:
16128           SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
16129           list_to_add = &global_symbols;
16130           break;
16131         case DW_TAG_common_block:
16132           SYMBOL_ACLASS_INDEX (sym) = LOC_COMMON_BLOCK;
16133           SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
16134           add_symbol_to_list (sym, cu->list_in_scope);
16135           break;
16136         default:
16137           /* Not a tag we recognize.  Hopefully we aren't processing
16138              trash data, but since we must specifically ignore things
16139              we don't recognize, there is nothing else we should do at
16140              this point.  */
16141           complaint (&symfile_complaints, _("unsupported tag: '%s'"),
16142                      dwarf_tag_name (die->tag));
16143           break;
16144         }
16145
16146       if (suppress_add)
16147         {
16148           sym->hash_next = objfile->template_symbols;
16149           objfile->template_symbols = sym;
16150           list_to_add = NULL;
16151         }
16152
16153       if (list_to_add != NULL)
16154         add_symbol_to_list (sym, list_to_add);
16155
16156       /* For the benefit of old versions of GCC, check for anonymous
16157          namespaces based on the demangled name.  */
16158       if (!cu->processing_has_namespace_info
16159           && cu->language == language_cplus)
16160         cp_scan_for_anonymous_namespaces (sym, objfile);
16161     }
16162   return (sym);
16163 }
16164
16165 /* A wrapper for new_symbol_full that always allocates a new symbol.  */
16166
16167 static struct symbol *
16168 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
16169 {
16170   return new_symbol_full (die, type, cu, NULL);
16171 }
16172
16173 /* Given an attr with a DW_FORM_dataN value in host byte order,
16174    zero-extend it as appropriate for the symbol's type.  The DWARF
16175    standard (v4) is not entirely clear about the meaning of using
16176    DW_FORM_dataN for a constant with a signed type, where the type is
16177    wider than the data.  The conclusion of a discussion on the DWARF
16178    list was that this is unspecified.  We choose to always zero-extend
16179    because that is the interpretation long in use by GCC.  */
16180
16181 static gdb_byte *
16182 dwarf2_const_value_data (struct attribute *attr, struct type *type,
16183                          const char *name, struct obstack *obstack,
16184                          struct dwarf2_cu *cu, LONGEST *value, int bits)
16185 {
16186   struct objfile *objfile = cu->objfile;
16187   enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
16188                                 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
16189   LONGEST l = DW_UNSND (attr);
16190
16191   if (bits < sizeof (*value) * 8)
16192     {
16193       l &= ((LONGEST) 1 << bits) - 1;
16194       *value = l;
16195     }
16196   else if (bits == sizeof (*value) * 8)
16197     *value = l;
16198   else
16199     {
16200       gdb_byte *bytes = obstack_alloc (obstack, bits / 8);
16201       store_unsigned_integer (bytes, bits / 8, byte_order, l);
16202       return bytes;
16203     }
16204
16205   return NULL;
16206 }
16207
16208 /* Read a constant value from an attribute.  Either set *VALUE, or if
16209    the value does not fit in *VALUE, set *BYTES - either already
16210    allocated on the objfile obstack, or newly allocated on OBSTACK,
16211    or, set *BATON, if we translated the constant to a location
16212    expression.  */
16213
16214 static void
16215 dwarf2_const_value_attr (struct attribute *attr, struct type *type,
16216                          const char *name, struct obstack *obstack,
16217                          struct dwarf2_cu *cu,
16218                          LONGEST *value, gdb_byte **bytes,
16219                          struct dwarf2_locexpr_baton **baton)
16220 {
16221   struct objfile *objfile = cu->objfile;
16222   struct comp_unit_head *cu_header = &cu->header;
16223   struct dwarf_block *blk;
16224   enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
16225                                 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
16226
16227   *value = 0;
16228   *bytes = NULL;
16229   *baton = NULL;
16230
16231   switch (attr->form)
16232     {
16233     case DW_FORM_addr:
16234     case DW_FORM_GNU_addr_index:
16235       {
16236         gdb_byte *data;
16237
16238         if (TYPE_LENGTH (type) != cu_header->addr_size)
16239           dwarf2_const_value_length_mismatch_complaint (name,
16240                                                         cu_header->addr_size,
16241                                                         TYPE_LENGTH (type));
16242         /* Symbols of this form are reasonably rare, so we just
16243            piggyback on the existing location code rather than writing
16244            a new implementation of symbol_computed_ops.  */
16245         *baton = obstack_alloc (&objfile->objfile_obstack,
16246                                 sizeof (struct dwarf2_locexpr_baton));
16247         (*baton)->per_cu = cu->per_cu;
16248         gdb_assert ((*baton)->per_cu);
16249
16250         (*baton)->size = 2 + cu_header->addr_size;
16251         data = obstack_alloc (&objfile->objfile_obstack, (*baton)->size);
16252         (*baton)->data = data;
16253
16254         data[0] = DW_OP_addr;
16255         store_unsigned_integer (&data[1], cu_header->addr_size,
16256                                 byte_order, DW_ADDR (attr));
16257         data[cu_header->addr_size + 1] = DW_OP_stack_value;
16258       }
16259       break;
16260     case DW_FORM_string:
16261     case DW_FORM_strp:
16262     case DW_FORM_GNU_str_index:
16263     case DW_FORM_GNU_strp_alt:
16264       /* DW_STRING is already allocated on the objfile obstack, point
16265          directly to it.  */
16266       *bytes = (gdb_byte *) DW_STRING (attr);
16267       break;
16268     case DW_FORM_block1:
16269     case DW_FORM_block2:
16270     case DW_FORM_block4:
16271     case DW_FORM_block:
16272     case DW_FORM_exprloc:
16273       blk = DW_BLOCK (attr);
16274       if (TYPE_LENGTH (type) != blk->size)
16275         dwarf2_const_value_length_mismatch_complaint (name, blk->size,
16276                                                       TYPE_LENGTH (type));
16277       *bytes = blk->data;
16278       break;
16279
16280       /* The DW_AT_const_value attributes are supposed to carry the
16281          symbol's value "represented as it would be on the target
16282          architecture."  By the time we get here, it's already been
16283          converted to host endianness, so we just need to sign- or
16284          zero-extend it as appropriate.  */
16285     case DW_FORM_data1:
16286       *bytes = dwarf2_const_value_data (attr, type, name,
16287                                         obstack, cu, value, 8);
16288       break;
16289     case DW_FORM_data2:
16290       *bytes = dwarf2_const_value_data (attr, type, name,
16291                                         obstack, cu, value, 16);
16292       break;
16293     case DW_FORM_data4:
16294       *bytes = dwarf2_const_value_data (attr, type, name,
16295                                         obstack, cu, value, 32);
16296       break;
16297     case DW_FORM_data8:
16298       *bytes = dwarf2_const_value_data (attr, type, name,
16299                                         obstack, cu, value, 64);
16300       break;
16301
16302     case DW_FORM_sdata:
16303       *value = DW_SND (attr);
16304       break;
16305
16306     case DW_FORM_udata:
16307       *value = DW_UNSND (attr);
16308       break;
16309
16310     default:
16311       complaint (&symfile_complaints,
16312                  _("unsupported const value attribute form: '%s'"),
16313                  dwarf_form_name (attr->form));
16314       *value = 0;
16315       break;
16316     }
16317 }
16318
16319
16320 /* Copy constant value from an attribute to a symbol.  */
16321
16322 static void
16323 dwarf2_const_value (struct attribute *attr, struct symbol *sym,
16324                     struct dwarf2_cu *cu)
16325 {
16326   struct objfile *objfile = cu->objfile;
16327   struct comp_unit_head *cu_header = &cu->header;
16328   LONGEST value;
16329   gdb_byte *bytes;
16330   struct dwarf2_locexpr_baton *baton;
16331
16332   dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
16333                            SYMBOL_PRINT_NAME (sym),
16334                            &objfile->objfile_obstack, cu,
16335                            &value, &bytes, &baton);
16336
16337   if (baton != NULL)
16338     {
16339       SYMBOL_LOCATION_BATON (sym) = baton;
16340       SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
16341     }
16342   else if (bytes != NULL)
16343      {
16344       SYMBOL_VALUE_BYTES (sym) = bytes;
16345       SYMBOL_ACLASS_INDEX (sym) = LOC_CONST_BYTES;
16346     }
16347   else
16348     {
16349       SYMBOL_VALUE (sym) = value;
16350       SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
16351     }
16352 }
16353
16354 /* Return the type of the die in question using its DW_AT_type attribute.  */
16355
16356 static struct type *
16357 die_type (struct die_info *die, struct dwarf2_cu *cu)
16358 {
16359   struct attribute *type_attr;
16360
16361   type_attr = dwarf2_attr (die, DW_AT_type, cu);
16362   if (!type_attr)
16363     {
16364       /* A missing DW_AT_type represents a void type.  */
16365       return objfile_type (cu->objfile)->builtin_void;
16366     }
16367
16368   return lookup_die_type (die, type_attr, cu);
16369 }
16370
16371 /* True iff CU's producer generates GNAT Ada auxiliary information
16372    that allows to find parallel types through that information instead
16373    of having to do expensive parallel lookups by type name.  */
16374
16375 static int
16376 need_gnat_info (struct dwarf2_cu *cu)
16377 {
16378   /* FIXME: brobecker/2010-10-12: As of now, only the AdaCore version
16379      of GNAT produces this auxiliary information, without any indication
16380      that it is produced.  Part of enhancing the FSF version of GNAT
16381      to produce that information will be to put in place an indicator
16382      that we can use in order to determine whether the descriptive type
16383      info is available or not.  One suggestion that has been made is
16384      to use a new attribute, attached to the CU die.  For now, assume
16385      that the descriptive type info is not available.  */
16386   return 0;
16387 }
16388
16389 /* Return the auxiliary type of the die in question using its
16390    DW_AT_GNAT_descriptive_type attribute.  Returns NULL if the
16391    attribute is not present.  */
16392
16393 static struct type *
16394 die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
16395 {
16396   struct attribute *type_attr;
16397
16398   type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
16399   if (!type_attr)
16400     return NULL;
16401
16402   return lookup_die_type (die, type_attr, cu);
16403 }
16404
16405 /* If DIE has a descriptive_type attribute, then set the TYPE's
16406    descriptive type accordingly.  */
16407
16408 static void
16409 set_descriptive_type (struct type *type, struct die_info *die,
16410                       struct dwarf2_cu *cu)
16411 {
16412   struct type *descriptive_type = die_descriptive_type (die, cu);
16413
16414   if (descriptive_type)
16415     {
16416       ALLOCATE_GNAT_AUX_TYPE (type);
16417       TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
16418     }
16419 }
16420
16421 /* Return the containing type of the die in question using its
16422    DW_AT_containing_type attribute.  */
16423
16424 static struct type *
16425 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
16426 {
16427   struct attribute *type_attr;
16428
16429   type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
16430   if (!type_attr)
16431     error (_("Dwarf Error: Problem turning containing type into gdb type "
16432              "[in module %s]"), cu->objfile->name);
16433
16434   return lookup_die_type (die, type_attr, cu);
16435 }
16436
16437 /* Look up the type of DIE in CU using its type attribute ATTR.
16438    If there is no type substitute an error marker.  */
16439
16440 static struct type *
16441 lookup_die_type (struct die_info *die, struct attribute *attr,
16442                  struct dwarf2_cu *cu)
16443 {
16444   struct objfile *objfile = cu->objfile;
16445   struct type *this_type;
16446
16447   /* First see if we have it cached.  */
16448
16449   if (attr->form == DW_FORM_GNU_ref_alt)
16450     {
16451       struct dwarf2_per_cu_data *per_cu;
16452       sect_offset offset = dwarf2_get_ref_die_offset (attr);
16453
16454       per_cu = dwarf2_find_containing_comp_unit (offset, 1, cu->objfile);
16455       this_type = get_die_type_at_offset (offset, per_cu);
16456     }
16457   else if (is_ref_attr (attr))
16458     {
16459       sect_offset offset = dwarf2_get_ref_die_offset (attr);
16460
16461       this_type = get_die_type_at_offset (offset, cu->per_cu);
16462     }
16463   else if (attr->form == DW_FORM_ref_sig8)
16464     {
16465       struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
16466
16467       /* sig_type will be NULL if the signatured type is missing from
16468          the debug info.  */
16469       if (sig_type == NULL)
16470         error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
16471                  "at 0x%x [in module %s]"),
16472                die->offset.sect_off, objfile->name);
16473
16474       gdb_assert (sig_type->per_cu.is_debug_types);
16475       /* If we haven't filled in type_offset_in_section yet, then we
16476          haven't read the type in yet.  */
16477       this_type = NULL;
16478       if (sig_type->type_offset_in_section.sect_off != 0)
16479         {
16480           this_type =
16481             get_die_type_at_offset (sig_type->type_offset_in_section,
16482                                     &sig_type->per_cu);
16483         }
16484     }
16485   else
16486     {
16487       dump_die_for_error (die);
16488       error (_("Dwarf Error: Bad type attribute %s [in module %s]"),
16489              dwarf_attr_name (attr->name), objfile->name);
16490     }
16491
16492   /* If not cached we need to read it in.  */
16493
16494   if (this_type == NULL)
16495     {
16496       struct die_info *type_die;
16497       struct dwarf2_cu *type_cu = cu;
16498
16499       type_die = follow_die_ref_or_sig (die, attr, &type_cu);
16500       /* If we found the type now, it's probably because the type came
16501          from an inter-CU reference and the type's CU got expanded before
16502          ours.  */
16503       this_type = get_die_type (type_die, type_cu);
16504       if (this_type == NULL)
16505         this_type = read_type_die_1 (type_die, type_cu);
16506     }
16507
16508   /* If we still don't have a type use an error marker.  */
16509
16510   if (this_type == NULL)
16511     {
16512       char *message, *saved;
16513
16514       /* read_type_die already issued a complaint.  */
16515       message = xstrprintf (_("<unknown type in %s, CU 0x%x, DIE 0x%x>"),
16516                             objfile->name,
16517                             cu->header.offset.sect_off,
16518                             die->offset.sect_off);
16519       saved = obstack_copy0 (&objfile->objfile_obstack,
16520                              message, strlen (message));
16521       xfree (message);
16522
16523       this_type = init_type (TYPE_CODE_ERROR, 0, 0, saved, objfile);
16524     }
16525
16526   return this_type;
16527 }
16528
16529 /* Return the type in DIE, CU.
16530    Returns NULL for invalid types.
16531
16532    This first does a lookup in the appropriate type_hash table,
16533    and only reads the die in if necessary.
16534
16535    NOTE: This can be called when reading in partial or full symbols.  */
16536
16537 static struct type *
16538 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
16539 {
16540   struct type *this_type;
16541
16542   this_type = get_die_type (die, cu);
16543   if (this_type)
16544     return this_type;
16545
16546   return read_type_die_1 (die, cu);
16547 }
16548
16549 /* Read the type in DIE, CU.
16550    Returns NULL for invalid types.  */
16551
16552 static struct type *
16553 read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
16554 {
16555   struct type *this_type = NULL;
16556
16557   switch (die->tag)
16558     {
16559     case DW_TAG_class_type:
16560     case DW_TAG_interface_type:
16561     case DW_TAG_structure_type:
16562     case DW_TAG_union_type:
16563       this_type = read_structure_type (die, cu);
16564       break;
16565     case DW_TAG_enumeration_type:
16566       this_type = read_enumeration_type (die, cu);
16567       break;
16568     case DW_TAG_subprogram:
16569     case DW_TAG_subroutine_type:
16570     case DW_TAG_inlined_subroutine:
16571       this_type = read_subroutine_type (die, cu);
16572       break;
16573     case DW_TAG_array_type:
16574       this_type = read_array_type (die, cu);
16575       break;
16576     case DW_TAG_set_type:
16577       this_type = read_set_type (die, cu);
16578       break;
16579     case DW_TAG_pointer_type:
16580       this_type = read_tag_pointer_type (die, cu);
16581       break;
16582     case DW_TAG_ptr_to_member_type:
16583       this_type = read_tag_ptr_to_member_type (die, cu);
16584       break;
16585     case DW_TAG_reference_type:
16586       this_type = read_tag_reference_type (die, cu);
16587       break;
16588     case DW_TAG_const_type:
16589       this_type = read_tag_const_type (die, cu);
16590       break;
16591     case DW_TAG_volatile_type:
16592       this_type = read_tag_volatile_type (die, cu);
16593       break;
16594     case DW_TAG_restrict_type:
16595       this_type = read_tag_restrict_type (die, cu);
16596       break;
16597     case DW_TAG_string_type:
16598       this_type = read_tag_string_type (die, cu);
16599       break;
16600     case DW_TAG_typedef:
16601       this_type = read_typedef (die, cu);
16602       break;
16603     case DW_TAG_subrange_type:
16604       this_type = read_subrange_type (die, cu);
16605       break;
16606     case DW_TAG_base_type:
16607       this_type = read_base_type (die, cu);
16608       break;
16609     case DW_TAG_unspecified_type:
16610       this_type = read_unspecified_type (die, cu);
16611       break;
16612     case DW_TAG_namespace:
16613       this_type = read_namespace_type (die, cu);
16614       break;
16615     case DW_TAG_module:
16616       this_type = read_module_type (die, cu);
16617       break;
16618     default:
16619       complaint (&symfile_complaints,
16620                  _("unexpected tag in read_type_die: '%s'"),
16621                  dwarf_tag_name (die->tag));
16622       break;
16623     }
16624
16625   return this_type;
16626 }
16627
16628 /* See if we can figure out if the class lives in a namespace.  We do
16629    this by looking for a member function; its demangled name will
16630    contain namespace info, if there is any.
16631    Return the computed name or NULL.
16632    Space for the result is allocated on the objfile's obstack.
16633    This is the full-die version of guess_partial_die_structure_name.
16634    In this case we know DIE has no useful parent.  */
16635
16636 static char *
16637 guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
16638 {
16639   struct die_info *spec_die;
16640   struct dwarf2_cu *spec_cu;
16641   struct die_info *child;
16642
16643   spec_cu = cu;
16644   spec_die = die_specification (die, &spec_cu);
16645   if (spec_die != NULL)
16646     {
16647       die = spec_die;
16648       cu = spec_cu;
16649     }
16650
16651   for (child = die->child;
16652        child != NULL;
16653        child = child->sibling)
16654     {
16655       if (child->tag == DW_TAG_subprogram)
16656         {
16657           struct attribute *attr;
16658
16659           attr = dwarf2_attr (child, DW_AT_linkage_name, cu);
16660           if (attr == NULL)
16661             attr = dwarf2_attr (child, DW_AT_MIPS_linkage_name, cu);
16662           if (attr != NULL)
16663             {
16664               char *actual_name
16665                 = language_class_name_from_physname (cu->language_defn,
16666                                                      DW_STRING (attr));
16667               char *name = NULL;
16668
16669               if (actual_name != NULL)
16670                 {
16671                   const char *die_name = dwarf2_name (die, cu);
16672
16673                   if (die_name != NULL
16674                       && strcmp (die_name, actual_name) != 0)
16675                     {
16676                       /* Strip off the class name from the full name.
16677                          We want the prefix.  */
16678                       int die_name_len = strlen (die_name);
16679                       int actual_name_len = strlen (actual_name);
16680
16681                       /* Test for '::' as a sanity check.  */
16682                       if (actual_name_len > die_name_len + 2
16683                           && actual_name[actual_name_len
16684                                          - die_name_len - 1] == ':')
16685                         name =
16686                           obstack_copy0 (&cu->objfile->objfile_obstack,
16687                                          actual_name,
16688                                          actual_name_len - die_name_len - 2);
16689                     }
16690                 }
16691               xfree (actual_name);
16692               return name;
16693             }
16694         }
16695     }
16696
16697   return NULL;
16698 }
16699
16700 /* GCC might emit a nameless typedef that has a linkage name.  Determine the
16701    prefix part in such case.  See
16702    http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510.  */
16703
16704 static char *
16705 anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
16706 {
16707   struct attribute *attr;
16708   char *base;
16709
16710   if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
16711       && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
16712     return NULL;
16713
16714   attr = dwarf2_attr (die, DW_AT_name, cu);
16715   if (attr != NULL && DW_STRING (attr) != NULL)
16716     return NULL;
16717
16718   attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
16719   if (attr == NULL)
16720     attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
16721   if (attr == NULL || DW_STRING (attr) == NULL)
16722     return NULL;
16723
16724   /* dwarf2_name had to be already called.  */
16725   gdb_assert (DW_STRING_IS_CANONICAL (attr));
16726
16727   /* Strip the base name, keep any leading namespaces/classes.  */
16728   base = strrchr (DW_STRING (attr), ':');
16729   if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
16730     return "";
16731
16732   return obstack_copy0 (&cu->objfile->objfile_obstack,
16733                         DW_STRING (attr), &base[-1] - DW_STRING (attr));
16734 }
16735
16736 /* Return the name of the namespace/class that DIE is defined within,
16737    or "" if we can't tell.  The caller should not xfree the result.
16738
16739    For example, if we're within the method foo() in the following
16740    code:
16741
16742    namespace N {
16743      class C {
16744        void foo () {
16745        }
16746      };
16747    }
16748
16749    then determine_prefix on foo's die will return "N::C".  */
16750
16751 static const char *
16752 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
16753 {
16754   struct die_info *parent, *spec_die;
16755   struct dwarf2_cu *spec_cu;
16756   struct type *parent_type;
16757   char *retval;
16758
16759   if (cu->language != language_cplus && cu->language != language_java
16760       && cu->language != language_fortran)
16761     return "";
16762
16763   retval = anonymous_struct_prefix (die, cu);
16764   if (retval)
16765     return retval;
16766
16767   /* We have to be careful in the presence of DW_AT_specification.
16768      For example, with GCC 3.4, given the code
16769
16770      namespace N {
16771        void foo() {
16772          // Definition of N::foo.
16773        }
16774      }
16775
16776      then we'll have a tree of DIEs like this:
16777
16778      1: DW_TAG_compile_unit
16779        2: DW_TAG_namespace        // N
16780          3: DW_TAG_subprogram     // declaration of N::foo
16781        4: DW_TAG_subprogram       // definition of N::foo
16782             DW_AT_specification   // refers to die #3
16783
16784      Thus, when processing die #4, we have to pretend that we're in
16785      the context of its DW_AT_specification, namely the contex of die
16786      #3.  */
16787   spec_cu = cu;
16788   spec_die = die_specification (die, &spec_cu);
16789   if (spec_die == NULL)
16790     parent = die->parent;
16791   else
16792     {
16793       parent = spec_die->parent;
16794       cu = spec_cu;
16795     }
16796
16797   if (parent == NULL)
16798     return "";
16799   else if (parent->building_fullname)
16800     {
16801       const char *name;
16802       const char *parent_name;
16803
16804       /* It has been seen on RealView 2.2 built binaries,
16805          DW_TAG_template_type_param types actually _defined_ as
16806          children of the parent class:
16807
16808          enum E {};
16809          template class <class Enum> Class{};
16810          Class<enum E> class_e;
16811
16812          1: DW_TAG_class_type (Class)
16813            2: DW_TAG_enumeration_type (E)
16814              3: DW_TAG_enumerator (enum1:0)
16815              3: DW_TAG_enumerator (enum2:1)
16816              ...
16817            2: DW_TAG_template_type_param
16818               DW_AT_type  DW_FORM_ref_udata (E)
16819
16820          Besides being broken debug info, it can put GDB into an
16821          infinite loop.  Consider:
16822
16823          When we're building the full name for Class<E>, we'll start
16824          at Class, and go look over its template type parameters,
16825          finding E.  We'll then try to build the full name of E, and
16826          reach here.  We're now trying to build the full name of E,
16827          and look over the parent DIE for containing scope.  In the
16828          broken case, if we followed the parent DIE of E, we'd again
16829          find Class, and once again go look at its template type
16830          arguments, etc., etc.  Simply don't consider such parent die
16831          as source-level parent of this die (it can't be, the language
16832          doesn't allow it), and break the loop here.  */
16833       name = dwarf2_name (die, cu);
16834       parent_name = dwarf2_name (parent, cu);
16835       complaint (&symfile_complaints,
16836                  _("template param type '%s' defined within parent '%s'"),
16837                  name ? name : "<unknown>",
16838                  parent_name ? parent_name : "<unknown>");
16839       return "";
16840     }
16841   else
16842     switch (parent->tag)
16843       {
16844       case DW_TAG_namespace:
16845         parent_type = read_type_die (parent, cu);
16846         /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
16847            DW_TAG_namespace DIEs with a name of "::" for the global namespace.
16848            Work around this problem here.  */
16849         if (cu->language == language_cplus
16850             && strcmp (TYPE_TAG_NAME (parent_type), "::") == 0)
16851           return "";
16852         /* We give a name to even anonymous namespaces.  */
16853         return TYPE_TAG_NAME (parent_type);
16854       case DW_TAG_class_type:
16855       case DW_TAG_interface_type:
16856       case DW_TAG_structure_type:
16857       case DW_TAG_union_type:
16858       case DW_TAG_module:
16859         parent_type = read_type_die (parent, cu);
16860         if (TYPE_TAG_NAME (parent_type) != NULL)
16861           return TYPE_TAG_NAME (parent_type);
16862         else
16863           /* An anonymous structure is only allowed non-static data
16864              members; no typedefs, no member functions, et cetera.
16865              So it does not need a prefix.  */
16866           return "";
16867       case DW_TAG_compile_unit:
16868       case DW_TAG_partial_unit:
16869         /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace.  Cope.  */
16870         if (cu->language == language_cplus
16871             && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
16872             && die->child != NULL
16873             && (die->tag == DW_TAG_class_type
16874                 || die->tag == DW_TAG_structure_type
16875                 || die->tag == DW_TAG_union_type))
16876           {
16877             char *name = guess_full_die_structure_name (die, cu);
16878             if (name != NULL)
16879               return name;
16880           }
16881         return "";
16882       default:
16883         return determine_prefix (parent, cu);
16884       }
16885 }
16886
16887 /* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
16888    with appropriate separator.  If PREFIX or SUFFIX is NULL or empty, then
16889    simply copy the SUFFIX or PREFIX, respectively.  If OBS is non-null, perform
16890    an obconcat, otherwise allocate storage for the result.  The CU argument is
16891    used to determine the language and hence, the appropriate separator.  */
16892
16893 #define MAX_SEP_LEN 7  /* strlen ("__") + strlen ("_MOD_")  */
16894
16895 static char *
16896 typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
16897                  int physname, struct dwarf2_cu *cu)
16898 {
16899   const char *lead = "";
16900   const char *sep;
16901
16902   if (suffix == NULL || suffix[0] == '\0'
16903       || prefix == NULL || prefix[0] == '\0')
16904     sep = "";
16905   else if (cu->language == language_java)
16906     sep = ".";
16907   else if (cu->language == language_fortran && physname)
16908     {
16909       /* This is gfortran specific mangling.  Normally DW_AT_linkage_name or
16910          DW_AT_MIPS_linkage_name is preferred and used instead.  */
16911
16912       lead = "__";
16913       sep = "_MOD_";
16914     }
16915   else
16916     sep = "::";
16917
16918   if (prefix == NULL)
16919     prefix = "";
16920   if (suffix == NULL)
16921     suffix = "";
16922
16923   if (obs == NULL)
16924     {
16925       char *retval
16926         = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
16927
16928       strcpy (retval, lead);
16929       strcat (retval, prefix);
16930       strcat (retval, sep);
16931       strcat (retval, suffix);
16932       return retval;
16933     }
16934   else
16935     {
16936       /* We have an obstack.  */
16937       return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
16938     }
16939 }
16940
16941 /* Return sibling of die, NULL if no sibling.  */
16942
16943 static struct die_info *
16944 sibling_die (struct die_info *die)
16945 {
16946   return die->sibling;
16947 }
16948
16949 /* Get name of a die, return NULL if not found.  */
16950
16951 static const char *
16952 dwarf2_canonicalize_name (const char *name, struct dwarf2_cu *cu,
16953                           struct obstack *obstack)
16954 {
16955   if (name && cu->language == language_cplus)
16956     {
16957       char *canon_name = cp_canonicalize_string (name);
16958
16959       if (canon_name != NULL)
16960         {
16961           if (strcmp (canon_name, name) != 0)
16962             name = obstack_copy0 (obstack, canon_name, strlen (canon_name));
16963           xfree (canon_name);
16964         }
16965     }
16966
16967   return name;
16968 }
16969
16970 /* Get name of a die, return NULL if not found.  */
16971
16972 static const char *
16973 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
16974 {
16975   struct attribute *attr;
16976
16977   attr = dwarf2_attr (die, DW_AT_name, cu);
16978   if ((!attr || !DW_STRING (attr))
16979       && die->tag != DW_TAG_class_type
16980       && die->tag != DW_TAG_interface_type
16981       && die->tag != DW_TAG_structure_type
16982       && die->tag != DW_TAG_union_type)
16983     return NULL;
16984
16985   switch (die->tag)
16986     {
16987     case DW_TAG_compile_unit:
16988     case DW_TAG_partial_unit:
16989       /* Compilation units have a DW_AT_name that is a filename, not
16990          a source language identifier.  */
16991     case DW_TAG_enumeration_type:
16992     case DW_TAG_enumerator:
16993       /* These tags always have simple identifiers already; no need
16994          to canonicalize them.  */
16995       return DW_STRING (attr);
16996
16997     case DW_TAG_subprogram:
16998       /* Java constructors will all be named "<init>", so return
16999          the class name when we see this special case.  */
17000       if (cu->language == language_java
17001           && DW_STRING (attr) != NULL
17002           && strcmp (DW_STRING (attr), "<init>") == 0)
17003         {
17004           struct dwarf2_cu *spec_cu = cu;
17005           struct die_info *spec_die;
17006
17007           /* GCJ will output '<init>' for Java constructor names.
17008              For this special case, return the name of the parent class.  */
17009
17010           /* GCJ may output suprogram DIEs with AT_specification set.
17011              If so, use the name of the specified DIE.  */
17012           spec_die = die_specification (die, &spec_cu);
17013           if (spec_die != NULL)
17014             return dwarf2_name (spec_die, spec_cu);
17015
17016           do
17017             {
17018               die = die->parent;
17019               if (die->tag == DW_TAG_class_type)
17020                 return dwarf2_name (die, cu);
17021             }
17022           while (die->tag != DW_TAG_compile_unit
17023                  && die->tag != DW_TAG_partial_unit);
17024         }
17025       break;
17026
17027     case DW_TAG_class_type:
17028     case DW_TAG_interface_type:
17029     case DW_TAG_structure_type:
17030     case DW_TAG_union_type:
17031       /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
17032          structures or unions.  These were of the form "._%d" in GCC 4.1,
17033          or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
17034          and GCC 4.4.  We work around this problem by ignoring these.  */
17035       if (attr && DW_STRING (attr)
17036           && (strncmp (DW_STRING (attr), "._", 2) == 0
17037               || strncmp (DW_STRING (attr), "<anonymous", 10) == 0))
17038         return NULL;
17039
17040       /* GCC might emit a nameless typedef that has a linkage name.  See
17041          http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510.  */
17042       if (!attr || DW_STRING (attr) == NULL)
17043         {
17044           char *demangled = NULL;
17045
17046           attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
17047           if (attr == NULL)
17048             attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
17049
17050           if (attr == NULL || DW_STRING (attr) == NULL)
17051             return NULL;
17052
17053           /* Avoid demangling DW_STRING (attr) the second time on a second
17054              call for the same DIE.  */
17055           if (!DW_STRING_IS_CANONICAL (attr))
17056             demangled = cplus_demangle (DW_STRING (attr), DMGL_TYPES);
17057
17058           if (demangled)
17059             {
17060               char *base;
17061
17062               /* FIXME: we already did this for the partial symbol... */
17063               DW_STRING (attr) = obstack_copy0 (&cu->objfile->objfile_obstack,
17064                                                 demangled, strlen (demangled));
17065               DW_STRING_IS_CANONICAL (attr) = 1;
17066               xfree (demangled);
17067
17068               /* Strip any leading namespaces/classes, keep only the base name.
17069                  DW_AT_name for named DIEs does not contain the prefixes.  */
17070               base = strrchr (DW_STRING (attr), ':');
17071               if (base && base > DW_STRING (attr) && base[-1] == ':')
17072                 return &base[1];
17073               else
17074                 return DW_STRING (attr);
17075             }
17076         }
17077       break;
17078
17079     default:
17080       break;
17081     }
17082
17083   if (!DW_STRING_IS_CANONICAL (attr))
17084     {
17085       DW_STRING (attr)
17086         = dwarf2_canonicalize_name (DW_STRING (attr), cu,
17087                                     &cu->objfile->objfile_obstack);
17088       DW_STRING_IS_CANONICAL (attr) = 1;
17089     }
17090   return DW_STRING (attr);
17091 }
17092
17093 /* Return the die that this die in an extension of, or NULL if there
17094    is none.  *EXT_CU is the CU containing DIE on input, and the CU
17095    containing the return value on output.  */
17096
17097 static struct die_info *
17098 dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
17099 {
17100   struct attribute *attr;
17101
17102   attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
17103   if (attr == NULL)
17104     return NULL;
17105
17106   return follow_die_ref (die, attr, ext_cu);
17107 }
17108
17109 /* Convert a DIE tag into its string name.  */
17110
17111 static const char *
17112 dwarf_tag_name (unsigned tag)
17113 {
17114   const char *name = get_DW_TAG_name (tag);
17115
17116   if (name == NULL)
17117     return "DW_TAG_<unknown>";
17118
17119   return name;
17120 }
17121
17122 /* Convert a DWARF attribute code into its string name.  */
17123
17124 static const char *
17125 dwarf_attr_name (unsigned attr)
17126 {
17127   const char *name;
17128
17129 #ifdef MIPS /* collides with DW_AT_HP_block_index */
17130   if (attr == DW_AT_MIPS_fde)
17131     return "DW_AT_MIPS_fde";
17132 #else
17133   if (attr == DW_AT_HP_block_index)
17134     return "DW_AT_HP_block_index";
17135 #endif
17136
17137   name = get_DW_AT_name (attr);
17138
17139   if (name == NULL)
17140     return "DW_AT_<unknown>";
17141
17142   return name;
17143 }
17144
17145 /* Convert a DWARF value form code into its string name.  */
17146
17147 static const char *
17148 dwarf_form_name (unsigned form)
17149 {
17150   const char *name = get_DW_FORM_name (form);
17151
17152   if (name == NULL)
17153     return "DW_FORM_<unknown>";
17154
17155   return name;
17156 }
17157
17158 static char *
17159 dwarf_bool_name (unsigned mybool)
17160 {
17161   if (mybool)
17162     return "TRUE";
17163   else
17164     return "FALSE";
17165 }
17166
17167 /* Convert a DWARF type code into its string name.  */
17168
17169 static const char *
17170 dwarf_type_encoding_name (unsigned enc)
17171 {
17172   const char *name = get_DW_ATE_name (enc);
17173
17174   if (name == NULL)
17175     return "DW_ATE_<unknown>";
17176
17177   return name;
17178 }
17179
17180 static void
17181 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
17182 {
17183   unsigned int i;
17184
17185   print_spaces (indent, f);
17186   fprintf_unfiltered (f, "Die: %s (abbrev %d, offset 0x%x)\n",
17187            dwarf_tag_name (die->tag), die->abbrev, die->offset.sect_off);
17188
17189   if (die->parent != NULL)
17190     {
17191       print_spaces (indent, f);
17192       fprintf_unfiltered (f, "  parent at offset: 0x%x\n",
17193                           die->parent->offset.sect_off);
17194     }
17195
17196   print_spaces (indent, f);
17197   fprintf_unfiltered (f, "  has children: %s\n",
17198            dwarf_bool_name (die->child != NULL));
17199
17200   print_spaces (indent, f);
17201   fprintf_unfiltered (f, "  attributes:\n");
17202
17203   for (i = 0; i < die->num_attrs; ++i)
17204     {
17205       print_spaces (indent, f);
17206       fprintf_unfiltered (f, "    %s (%s) ",
17207                dwarf_attr_name (die->attrs[i].name),
17208                dwarf_form_name (die->attrs[i].form));
17209
17210       switch (die->attrs[i].form)
17211         {
17212         case DW_FORM_addr:
17213         case DW_FORM_GNU_addr_index:
17214           fprintf_unfiltered (f, "address: ");
17215           fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
17216           break;
17217         case DW_FORM_block2:
17218         case DW_FORM_block4:
17219         case DW_FORM_block:
17220         case DW_FORM_block1:
17221           fprintf_unfiltered (f, "block: size %s",
17222                               pulongest (DW_BLOCK (&die->attrs[i])->size));
17223           break;
17224         case DW_FORM_exprloc:
17225           fprintf_unfiltered (f, "expression: size %s",
17226                               pulongest (DW_BLOCK (&die->attrs[i])->size));
17227           break;
17228         case DW_FORM_ref_addr:
17229           fprintf_unfiltered (f, "ref address: ");
17230           fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
17231           break;
17232         case DW_FORM_GNU_ref_alt:
17233           fprintf_unfiltered (f, "alt ref address: ");
17234           fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
17235           break;
17236         case DW_FORM_ref1:
17237         case DW_FORM_ref2:
17238         case DW_FORM_ref4:
17239         case DW_FORM_ref8:
17240         case DW_FORM_ref_udata:
17241           fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
17242                               (long) (DW_UNSND (&die->attrs[i])));
17243           break;
17244         case DW_FORM_data1:
17245         case DW_FORM_data2:
17246         case DW_FORM_data4:
17247         case DW_FORM_data8:
17248         case DW_FORM_udata:
17249         case DW_FORM_sdata:
17250           fprintf_unfiltered (f, "constant: %s",
17251                               pulongest (DW_UNSND (&die->attrs[i])));
17252           break;
17253         case DW_FORM_sec_offset:
17254           fprintf_unfiltered (f, "section offset: %s",
17255                               pulongest (DW_UNSND (&die->attrs[i])));
17256           break;
17257         case DW_FORM_ref_sig8:
17258           if (DW_SIGNATURED_TYPE (&die->attrs[i]) != NULL)
17259             fprintf_unfiltered (f, "signatured type, offset: 0x%x",
17260                          DW_SIGNATURED_TYPE (&die->attrs[i])->per_cu.offset.sect_off);
17261           else
17262             fprintf_unfiltered (f, "signatured type, offset: unknown");
17263           break;
17264         case DW_FORM_string:
17265         case DW_FORM_strp:
17266         case DW_FORM_GNU_str_index:
17267         case DW_FORM_GNU_strp_alt:
17268           fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
17269                    DW_STRING (&die->attrs[i])
17270                    ? DW_STRING (&die->attrs[i]) : "",
17271                    DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
17272           break;
17273         case DW_FORM_flag:
17274           if (DW_UNSND (&die->attrs[i]))
17275             fprintf_unfiltered (f, "flag: TRUE");
17276           else
17277             fprintf_unfiltered (f, "flag: FALSE");
17278           break;
17279         case DW_FORM_flag_present:
17280           fprintf_unfiltered (f, "flag: TRUE");
17281           break;
17282         case DW_FORM_indirect:
17283           /* The reader will have reduced the indirect form to
17284              the "base form" so this form should not occur.  */
17285           fprintf_unfiltered (f, 
17286                               "unexpected attribute form: DW_FORM_indirect");
17287           break;
17288         default:
17289           fprintf_unfiltered (f, "unsupported attribute form: %d.",
17290                    die->attrs[i].form);
17291           break;
17292         }
17293       fprintf_unfiltered (f, "\n");
17294     }
17295 }
17296
17297 static void
17298 dump_die_for_error (struct die_info *die)
17299 {
17300   dump_die_shallow (gdb_stderr, 0, die);
17301 }
17302
17303 static void
17304 dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
17305 {
17306   int indent = level * 4;
17307
17308   gdb_assert (die != NULL);
17309
17310   if (level >= max_level)
17311     return;
17312
17313   dump_die_shallow (f, indent, die);
17314
17315   if (die->child != NULL)
17316     {
17317       print_spaces (indent, f);
17318       fprintf_unfiltered (f, "  Children:");
17319       if (level + 1 < max_level)
17320         {
17321           fprintf_unfiltered (f, "\n");
17322           dump_die_1 (f, level + 1, max_level, die->child);
17323         }
17324       else
17325         {
17326           fprintf_unfiltered (f,
17327                               " [not printed, max nesting level reached]\n");
17328         }
17329     }
17330
17331   if (die->sibling != NULL && level > 0)
17332     {
17333       dump_die_1 (f, level, max_level, die->sibling);
17334     }
17335 }
17336
17337 /* This is called from the pdie macro in gdbinit.in.
17338    It's not static so gcc will keep a copy callable from gdb.  */
17339
17340 void
17341 dump_die (struct die_info *die, int max_level)
17342 {
17343   dump_die_1 (gdb_stdlog, 0, max_level, die);
17344 }
17345
17346 static void
17347 store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
17348 {
17349   void **slot;
17350
17351   slot = htab_find_slot_with_hash (cu->die_hash, die, die->offset.sect_off,
17352                                    INSERT);
17353
17354   *slot = die;
17355 }
17356
17357 /* DW_ADDR is always stored already as sect_offset; despite for the forms
17358    besides DW_FORM_ref_addr it is stored as cu_offset in the DWARF file.  */
17359
17360 static int
17361 is_ref_attr (struct attribute *attr)
17362 {
17363   switch (attr->form)
17364     {
17365     case DW_FORM_ref_addr:
17366     case DW_FORM_ref1:
17367     case DW_FORM_ref2:
17368     case DW_FORM_ref4:
17369     case DW_FORM_ref8:
17370     case DW_FORM_ref_udata:
17371     case DW_FORM_GNU_ref_alt:
17372       return 1;
17373     default:
17374       return 0;
17375     }
17376 }
17377
17378 /* Return DIE offset of ATTR.  Return 0 with complaint if ATTR is not of the
17379    required kind.  */
17380
17381 static sect_offset
17382 dwarf2_get_ref_die_offset (struct attribute *attr)
17383 {
17384   sect_offset retval = { DW_UNSND (attr) };
17385
17386   if (is_ref_attr (attr))
17387     return retval;
17388
17389   retval.sect_off = 0;
17390   complaint (&symfile_complaints,
17391              _("unsupported die ref attribute form: '%s'"),
17392              dwarf_form_name (attr->form));
17393   return retval;
17394 }
17395
17396 /* Return the constant value held by ATTR.  Return DEFAULT_VALUE if
17397  * the value held by the attribute is not constant.  */
17398
17399 static LONGEST
17400 dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
17401 {
17402   if (attr->form == DW_FORM_sdata)
17403     return DW_SND (attr);
17404   else if (attr->form == DW_FORM_udata
17405            || attr->form == DW_FORM_data1
17406            || attr->form == DW_FORM_data2
17407            || attr->form == DW_FORM_data4
17408            || attr->form == DW_FORM_data8)
17409     return DW_UNSND (attr);
17410   else
17411     {
17412       complaint (&symfile_complaints,
17413                  _("Attribute value is not a constant (%s)"),
17414                  dwarf_form_name (attr->form));
17415       return default_value;
17416     }
17417 }
17418
17419 /* Follow reference or signature attribute ATTR of SRC_DIE.
17420    On entry *REF_CU is the CU of SRC_DIE.
17421    On exit *REF_CU is the CU of the result.  */
17422
17423 static struct die_info *
17424 follow_die_ref_or_sig (struct die_info *src_die, struct attribute *attr,
17425                        struct dwarf2_cu **ref_cu)
17426 {
17427   struct die_info *die;
17428
17429   if (is_ref_attr (attr))
17430     die = follow_die_ref (src_die, attr, ref_cu);
17431   else if (attr->form == DW_FORM_ref_sig8)
17432     die = follow_die_sig (src_die, attr, ref_cu);
17433   else
17434     {
17435       dump_die_for_error (src_die);
17436       error (_("Dwarf Error: Expected reference attribute [in module %s]"),
17437              (*ref_cu)->objfile->name);
17438     }
17439
17440   return die;
17441 }
17442
17443 /* Follow reference OFFSET.
17444    On entry *REF_CU is the CU of the source die referencing OFFSET.
17445    On exit *REF_CU is the CU of the result.
17446    Returns NULL if OFFSET is invalid.  */
17447
17448 static struct die_info *
17449 follow_die_offset (sect_offset offset, int offset_in_dwz,
17450                    struct dwarf2_cu **ref_cu)
17451 {
17452   struct die_info temp_die;
17453   struct dwarf2_cu *target_cu, *cu = *ref_cu;
17454
17455   gdb_assert (cu->per_cu != NULL);
17456
17457   target_cu = cu;
17458
17459   if (cu->per_cu->is_debug_types)
17460     {
17461       /* .debug_types CUs cannot reference anything outside their CU.
17462          If they need to, they have to reference a signatured type via
17463          DW_FORM_ref_sig8.  */
17464       if (! offset_in_cu_p (&cu->header, offset))
17465         return NULL;
17466     }
17467   else if (offset_in_dwz != cu->per_cu->is_dwz
17468            || ! offset_in_cu_p (&cu->header, offset))
17469     {
17470       struct dwarf2_per_cu_data *per_cu;
17471
17472       per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
17473                                                  cu->objfile);
17474
17475       /* If necessary, add it to the queue and load its DIEs.  */
17476       if (maybe_queue_comp_unit (cu, per_cu, cu->language))
17477         load_full_comp_unit (per_cu, cu->language);
17478
17479       target_cu = per_cu->cu;
17480     }
17481   else if (cu->dies == NULL)
17482     {
17483       /* We're loading full DIEs during partial symbol reading.  */
17484       gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
17485       load_full_comp_unit (cu->per_cu, language_minimal);
17486     }
17487
17488   *ref_cu = target_cu;
17489   temp_die.offset = offset;
17490   return htab_find_with_hash (target_cu->die_hash, &temp_die, offset.sect_off);
17491 }
17492
17493 /* Follow reference attribute ATTR of SRC_DIE.
17494    On entry *REF_CU is the CU of SRC_DIE.
17495    On exit *REF_CU is the CU of the result.  */
17496
17497 static struct die_info *
17498 follow_die_ref (struct die_info *src_die, struct attribute *attr,
17499                 struct dwarf2_cu **ref_cu)
17500 {
17501   sect_offset offset = dwarf2_get_ref_die_offset (attr);
17502   struct dwarf2_cu *cu = *ref_cu;
17503   struct die_info *die;
17504
17505   die = follow_die_offset (offset,
17506                            (attr->form == DW_FORM_GNU_ref_alt
17507                             || cu->per_cu->is_dwz),
17508                            ref_cu);
17509   if (!die)
17510     error (_("Dwarf Error: Cannot find DIE at 0x%x referenced from DIE "
17511            "at 0x%x [in module %s]"),
17512            offset.sect_off, src_die->offset.sect_off, cu->objfile->name);
17513
17514   return die;
17515 }
17516
17517 /* Return DWARF block referenced by DW_AT_location of DIE at OFFSET at PER_CU.
17518    Returned value is intended for DW_OP_call*.  Returned
17519    dwarf2_locexpr_baton->data has lifetime of PER_CU->OBJFILE.  */
17520
17521 struct dwarf2_locexpr_baton
17522 dwarf2_fetch_die_loc_sect_off (sect_offset offset,
17523                                struct dwarf2_per_cu_data *per_cu,
17524                                CORE_ADDR (*get_frame_pc) (void *baton),
17525                                void *baton)
17526 {
17527   struct dwarf2_cu *cu;
17528   struct die_info *die;
17529   struct attribute *attr;
17530   struct dwarf2_locexpr_baton retval;
17531
17532   dw2_setup (per_cu->objfile);
17533
17534   if (per_cu->cu == NULL)
17535     load_cu (per_cu);
17536   cu = per_cu->cu;
17537
17538   die = follow_die_offset (offset, per_cu->is_dwz, &cu);
17539   if (!die)
17540     error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
17541            offset.sect_off, per_cu->objfile->name);
17542
17543   attr = dwarf2_attr (die, DW_AT_location, cu);
17544   if (!attr)
17545     {
17546       /* DWARF: "If there is no such attribute, then there is no effect.".
17547          DATA is ignored if SIZE is 0.  */
17548
17549       retval.data = NULL;
17550       retval.size = 0;
17551     }
17552   else if (attr_form_is_section_offset (attr))
17553     {
17554       struct dwarf2_loclist_baton loclist_baton;
17555       CORE_ADDR pc = (*get_frame_pc) (baton);
17556       size_t size;
17557
17558       fill_in_loclist_baton (cu, &loclist_baton, attr);
17559
17560       retval.data = dwarf2_find_location_expression (&loclist_baton,
17561                                                      &size, pc);
17562       retval.size = size;
17563     }
17564   else
17565     {
17566       if (!attr_form_is_block (attr))
17567         error (_("Dwarf Error: DIE at 0x%x referenced in module %s "
17568                  "is neither DW_FORM_block* nor DW_FORM_exprloc"),
17569                offset.sect_off, per_cu->objfile->name);
17570
17571       retval.data = DW_BLOCK (attr)->data;
17572       retval.size = DW_BLOCK (attr)->size;
17573     }
17574   retval.per_cu = cu->per_cu;
17575
17576   age_cached_comp_units ();
17577
17578   return retval;
17579 }
17580
17581 /* Like dwarf2_fetch_die_loc_sect_off, but take a CU
17582    offset.  */
17583
17584 struct dwarf2_locexpr_baton
17585 dwarf2_fetch_die_loc_cu_off (cu_offset offset_in_cu,
17586                              struct dwarf2_per_cu_data *per_cu,
17587                              CORE_ADDR (*get_frame_pc) (void *baton),
17588                              void *baton)
17589 {
17590   sect_offset offset = { per_cu->offset.sect_off + offset_in_cu.cu_off };
17591
17592   return dwarf2_fetch_die_loc_sect_off (offset, per_cu, get_frame_pc, baton);
17593 }
17594
17595 /* Return the type of the DIE at DIE_OFFSET in the CU named by
17596    PER_CU.  */
17597
17598 struct type *
17599 dwarf2_get_die_type (cu_offset die_offset,
17600                      struct dwarf2_per_cu_data *per_cu)
17601 {
17602   sect_offset die_offset_sect;
17603
17604   dw2_setup (per_cu->objfile);
17605
17606   die_offset_sect.sect_off = per_cu->offset.sect_off + die_offset.cu_off;
17607   return get_die_type_at_offset (die_offset_sect, per_cu);
17608 }
17609
17610 /* Follow the signature attribute ATTR in SRC_DIE.
17611    On entry *REF_CU is the CU of SRC_DIE.
17612    On exit *REF_CU is the CU of the result.  */
17613
17614 static struct die_info *
17615 follow_die_sig (struct die_info *src_die, struct attribute *attr,
17616                 struct dwarf2_cu **ref_cu)
17617 {
17618   struct objfile *objfile = (*ref_cu)->objfile;
17619   struct die_info temp_die;
17620   struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
17621   struct dwarf2_cu *sig_cu;
17622   struct die_info *die;
17623
17624   /* sig_type will be NULL if the signatured type is missing from
17625      the debug info.  */
17626   if (sig_type == NULL)
17627     error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
17628              "at 0x%x [in module %s]"),
17629            src_die->offset.sect_off, objfile->name);
17630
17631   /* If necessary, add it to the queue and load its DIEs.  */
17632
17633   if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, language_minimal))
17634     read_signatured_type (sig_type);
17635
17636   gdb_assert (sig_type->per_cu.cu != NULL);
17637
17638   sig_cu = sig_type->per_cu.cu;
17639   gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
17640   temp_die.offset = sig_type->type_offset_in_section;
17641   die = htab_find_with_hash (sig_cu->die_hash, &temp_die,
17642                              temp_die.offset.sect_off);
17643   if (die)
17644     {
17645       /* For .gdb_index version 7 keep track of included TUs.
17646          http://sourceware.org/bugzilla/show_bug.cgi?id=15021.  */
17647       if (dwarf2_per_objfile->index_table != NULL
17648           && dwarf2_per_objfile->index_table->version <= 7)
17649         {
17650           VEC_safe_push (dwarf2_per_cu_ptr,
17651                          (*ref_cu)->per_cu->imported_symtabs,
17652                          sig_cu->per_cu);
17653         }
17654
17655       *ref_cu = sig_cu;
17656       return die;
17657     }
17658
17659   error (_("Dwarf Error: Cannot find signatured DIE at 0x%x referenced "
17660          "from DIE at 0x%x [in module %s]"),
17661          temp_die.offset.sect_off, src_die->offset.sect_off, objfile->name);
17662 }
17663
17664 /* Given an offset of a signatured type, return its signatured_type.  */
17665
17666 static struct signatured_type *
17667 lookup_signatured_type_at_offset (struct objfile *objfile,
17668                                   struct dwarf2_section_info *section,
17669                                   sect_offset offset)
17670 {
17671   gdb_byte *info_ptr = section->buffer + offset.sect_off;
17672   unsigned int length, initial_length_size;
17673   unsigned int sig_offset;
17674   struct signatured_type find_entry, *sig_type;
17675
17676   length = read_initial_length (objfile->obfd, info_ptr, &initial_length_size);
17677   sig_offset = (initial_length_size
17678                 + 2 /*version*/
17679                 + (initial_length_size == 4 ? 4 : 8) /*debug_abbrev_offset*/
17680                 + 1 /*address_size*/);
17681   find_entry.signature = bfd_get_64 (objfile->obfd, info_ptr + sig_offset);
17682   sig_type = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
17683
17684   /* This is only used to lookup previously recorded types.
17685      If we didn't find it, it's our bug.  */
17686   gdb_assert (sig_type != NULL);
17687   gdb_assert (offset.sect_off == sig_type->per_cu.offset.sect_off);
17688
17689   return sig_type;
17690 }
17691
17692 /* Load the DIEs associated with type unit PER_CU into memory.  */
17693
17694 static void
17695 load_full_type_unit (struct dwarf2_per_cu_data *per_cu)
17696 {
17697   struct signatured_type *sig_type;
17698
17699   /* Caller is responsible for ensuring type_unit_groups don't get here.  */
17700   gdb_assert (! IS_TYPE_UNIT_GROUP (per_cu));
17701
17702   /* We have the per_cu, but we need the signatured_type.
17703      Fortunately this is an easy translation.  */
17704   gdb_assert (per_cu->is_debug_types);
17705   sig_type = (struct signatured_type *) per_cu;
17706
17707   gdb_assert (per_cu->cu == NULL);
17708
17709   read_signatured_type (sig_type);
17710
17711   gdb_assert (per_cu->cu != NULL);
17712 }
17713
17714 /* die_reader_func for read_signatured_type.
17715    This is identical to load_full_comp_unit_reader,
17716    but is kept separate for now.  */
17717
17718 static void
17719 read_signatured_type_reader (const struct die_reader_specs *reader,
17720                              gdb_byte *info_ptr,
17721                              struct die_info *comp_unit_die,
17722                              int has_children,
17723                              void *data)
17724 {
17725   struct dwarf2_cu *cu = reader->cu;
17726
17727   gdb_assert (cu->die_hash == NULL);
17728   cu->die_hash =
17729     htab_create_alloc_ex (cu->header.length / 12,
17730                           die_hash,
17731                           die_eq,
17732                           NULL,
17733                           &cu->comp_unit_obstack,
17734                           hashtab_obstack_allocate,
17735                           dummy_obstack_deallocate);
17736
17737   if (has_children)
17738     comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
17739                                                   &info_ptr, comp_unit_die);
17740   cu->dies = comp_unit_die;
17741   /* comp_unit_die is not stored in die_hash, no need.  */
17742
17743   /* We try not to read any attributes in this function, because not
17744      all CUs needed for references have been loaded yet, and symbol
17745      table processing isn't initialized.  But we have to set the CU language,
17746      or we won't be able to build types correctly.
17747      Similarly, if we do not read the producer, we can not apply
17748      producer-specific interpretation.  */
17749   prepare_one_comp_unit (cu, cu->dies, language_minimal);
17750 }
17751
17752 /* Read in a signatured type and build its CU and DIEs.
17753    If the type is a stub for the real type in a DWO file,
17754    read in the real type from the DWO file as well.  */
17755
17756 static void
17757 read_signatured_type (struct signatured_type *sig_type)
17758 {
17759   struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
17760
17761   gdb_assert (per_cu->is_debug_types);
17762   gdb_assert (per_cu->cu == NULL);
17763
17764   init_cutu_and_read_dies (per_cu, NULL, 0, 1,
17765                            read_signatured_type_reader, NULL);
17766 }
17767
17768 /* Decode simple location descriptions.
17769    Given a pointer to a dwarf block that defines a location, compute
17770    the location and return the value.
17771
17772    NOTE drow/2003-11-18: This function is called in two situations
17773    now: for the address of static or global variables (partial symbols
17774    only) and for offsets into structures which are expected to be
17775    (more or less) constant.  The partial symbol case should go away,
17776    and only the constant case should remain.  That will let this
17777    function complain more accurately.  A few special modes are allowed
17778    without complaint for global variables (for instance, global
17779    register values and thread-local values).
17780
17781    A location description containing no operations indicates that the
17782    object is optimized out.  The return value is 0 for that case.
17783    FIXME drow/2003-11-16: No callers check for this case any more; soon all
17784    callers will only want a very basic result and this can become a
17785    complaint.
17786
17787    Note that stack[0] is unused except as a default error return.  */
17788
17789 static CORE_ADDR
17790 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
17791 {
17792   struct objfile *objfile = cu->objfile;
17793   size_t i;
17794   size_t size = blk->size;
17795   gdb_byte *data = blk->data;
17796   CORE_ADDR stack[64];
17797   int stacki;
17798   unsigned int bytes_read, unsnd;
17799   gdb_byte op;
17800
17801   i = 0;
17802   stacki = 0;
17803   stack[stacki] = 0;
17804   stack[++stacki] = 0;
17805
17806   while (i < size)
17807     {
17808       op = data[i++];
17809       switch (op)
17810         {
17811         case DW_OP_lit0:
17812         case DW_OP_lit1:
17813         case DW_OP_lit2:
17814         case DW_OP_lit3:
17815         case DW_OP_lit4:
17816         case DW_OP_lit5:
17817         case DW_OP_lit6:
17818         case DW_OP_lit7:
17819         case DW_OP_lit8:
17820         case DW_OP_lit9:
17821         case DW_OP_lit10:
17822         case DW_OP_lit11:
17823         case DW_OP_lit12:
17824         case DW_OP_lit13:
17825         case DW_OP_lit14:
17826         case DW_OP_lit15:
17827         case DW_OP_lit16:
17828         case DW_OP_lit17:
17829         case DW_OP_lit18:
17830         case DW_OP_lit19:
17831         case DW_OP_lit20:
17832         case DW_OP_lit21:
17833         case DW_OP_lit22:
17834         case DW_OP_lit23:
17835         case DW_OP_lit24:
17836         case DW_OP_lit25:
17837         case DW_OP_lit26:
17838         case DW_OP_lit27:
17839         case DW_OP_lit28:
17840         case DW_OP_lit29:
17841         case DW_OP_lit30:
17842         case DW_OP_lit31:
17843           stack[++stacki] = op - DW_OP_lit0;
17844           break;
17845
17846         case DW_OP_reg0:
17847         case DW_OP_reg1:
17848         case DW_OP_reg2:
17849         case DW_OP_reg3:
17850         case DW_OP_reg4:
17851         case DW_OP_reg5:
17852         case DW_OP_reg6:
17853         case DW_OP_reg7:
17854         case DW_OP_reg8:
17855         case DW_OP_reg9:
17856         case DW_OP_reg10:
17857         case DW_OP_reg11:
17858         case DW_OP_reg12:
17859         case DW_OP_reg13:
17860         case DW_OP_reg14:
17861         case DW_OP_reg15:
17862         case DW_OP_reg16:
17863         case DW_OP_reg17:
17864         case DW_OP_reg18:
17865         case DW_OP_reg19:
17866         case DW_OP_reg20:
17867         case DW_OP_reg21:
17868         case DW_OP_reg22:
17869         case DW_OP_reg23:
17870         case DW_OP_reg24:
17871         case DW_OP_reg25:
17872         case DW_OP_reg26:
17873         case DW_OP_reg27:
17874         case DW_OP_reg28:
17875         case DW_OP_reg29:
17876         case DW_OP_reg30:
17877         case DW_OP_reg31:
17878           stack[++stacki] = op - DW_OP_reg0;
17879           if (i < size)
17880             dwarf2_complex_location_expr_complaint ();
17881           break;
17882
17883         case DW_OP_regx:
17884           unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
17885           i += bytes_read;
17886           stack[++stacki] = unsnd;
17887           if (i < size)
17888             dwarf2_complex_location_expr_complaint ();
17889           break;
17890
17891         case DW_OP_addr:
17892           stack[++stacki] = read_address (objfile->obfd, &data[i],
17893                                           cu, &bytes_read);
17894           i += bytes_read;
17895           break;
17896
17897         case DW_OP_const1u:
17898           stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
17899           i += 1;
17900           break;
17901
17902         case DW_OP_const1s:
17903           stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
17904           i += 1;
17905           break;
17906
17907         case DW_OP_const2u:
17908           stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
17909           i += 2;
17910           break;
17911
17912         case DW_OP_const2s:
17913           stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
17914           i += 2;
17915           break;
17916
17917         case DW_OP_const4u:
17918           stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
17919           i += 4;
17920           break;
17921
17922         case DW_OP_const4s:
17923           stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
17924           i += 4;
17925           break;
17926
17927         case DW_OP_const8u:
17928           stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
17929           i += 8;
17930           break;
17931
17932         case DW_OP_constu:
17933           stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
17934                                                   &bytes_read);
17935           i += bytes_read;
17936           break;
17937
17938         case DW_OP_consts:
17939           stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
17940           i += bytes_read;
17941           break;
17942
17943         case DW_OP_dup:
17944           stack[stacki + 1] = stack[stacki];
17945           stacki++;
17946           break;
17947
17948         case DW_OP_plus:
17949           stack[stacki - 1] += stack[stacki];
17950           stacki--;
17951           break;
17952
17953         case DW_OP_plus_uconst:
17954           stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
17955                                                  &bytes_read);
17956           i += bytes_read;
17957           break;
17958
17959         case DW_OP_minus:
17960           stack[stacki - 1] -= stack[stacki];
17961           stacki--;
17962           break;
17963
17964         case DW_OP_deref:
17965           /* If we're not the last op, then we definitely can't encode
17966              this using GDB's address_class enum.  This is valid for partial
17967              global symbols, although the variable's address will be bogus
17968              in the psymtab.  */
17969           if (i < size)
17970             dwarf2_complex_location_expr_complaint ();
17971           break;
17972
17973         case DW_OP_GNU_push_tls_address:
17974           /* The top of the stack has the offset from the beginning
17975              of the thread control block at which the variable is located.  */
17976           /* Nothing should follow this operator, so the top of stack would
17977              be returned.  */
17978           /* This is valid for partial global symbols, but the variable's
17979              address will be bogus in the psymtab.  Make it always at least
17980              non-zero to not look as a variable garbage collected by linker
17981              which have DW_OP_addr 0.  */
17982           if (i < size)
17983             dwarf2_complex_location_expr_complaint ();
17984           stack[stacki]++;
17985           break;
17986
17987         case DW_OP_GNU_uninit:
17988           break;
17989
17990         case DW_OP_GNU_addr_index:
17991         case DW_OP_GNU_const_index:
17992           stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
17993                                                          &bytes_read);
17994           i += bytes_read;
17995           break;
17996
17997         default:
17998           {
17999             const char *name = get_DW_OP_name (op);
18000
18001             if (name)
18002               complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
18003                          name);
18004             else
18005               complaint (&symfile_complaints, _("unsupported stack op: '%02x'"),
18006                          op);
18007           }
18008
18009           return (stack[stacki]);
18010         }
18011
18012       /* Enforce maximum stack depth of SIZE-1 to avoid writing
18013          outside of the allocated space.  Also enforce minimum>0.  */
18014       if (stacki >= ARRAY_SIZE (stack) - 1)
18015         {
18016           complaint (&symfile_complaints,
18017                      _("location description stack overflow"));
18018           return 0;
18019         }
18020
18021       if (stacki <= 0)
18022         {
18023           complaint (&symfile_complaints,
18024                      _("location description stack underflow"));
18025           return 0;
18026         }
18027     }
18028   return (stack[stacki]);
18029 }
18030
18031 /* memory allocation interface */
18032
18033 static struct dwarf_block *
18034 dwarf_alloc_block (struct dwarf2_cu *cu)
18035 {
18036   struct dwarf_block *blk;
18037
18038   blk = (struct dwarf_block *)
18039     obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
18040   return (blk);
18041 }
18042
18043 static struct die_info *
18044 dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
18045 {
18046   struct die_info *die;
18047   size_t size = sizeof (struct die_info);
18048
18049   if (num_attrs > 1)
18050     size += (num_attrs - 1) * sizeof (struct attribute);
18051
18052   die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
18053   memset (die, 0, sizeof (struct die_info));
18054   return (die);
18055 }
18056
18057 \f
18058 /* Macro support.  */
18059
18060 /* Return file name relative to the compilation directory of file number I in
18061    *LH's file name table.  The result is allocated using xmalloc; the caller is
18062    responsible for freeing it.  */
18063
18064 static char *
18065 file_file_name (int file, struct line_header *lh)
18066 {
18067   /* Is the file number a valid index into the line header's file name
18068      table?  Remember that file numbers start with one, not zero.  */
18069   if (1 <= file && file <= lh->num_file_names)
18070     {
18071       struct file_entry *fe = &lh->file_names[file - 1];
18072
18073       if (IS_ABSOLUTE_PATH (fe->name) || fe->dir_index == 0)
18074         return xstrdup (fe->name);
18075       return concat (lh->include_dirs[fe->dir_index - 1], SLASH_STRING,
18076                      fe->name, NULL);
18077     }
18078   else
18079     {
18080       /* The compiler produced a bogus file number.  We can at least
18081          record the macro definitions made in the file, even if we
18082          won't be able to find the file by name.  */
18083       char fake_name[80];
18084
18085       xsnprintf (fake_name, sizeof (fake_name),
18086                  "<bad macro file number %d>", file);
18087
18088       complaint (&symfile_complaints,
18089                  _("bad file number in macro information (%d)"),
18090                  file);
18091
18092       return xstrdup (fake_name);
18093     }
18094 }
18095
18096 /* Return the full name of file number I in *LH's file name table.
18097    Use COMP_DIR as the name of the current directory of the
18098    compilation.  The result is allocated using xmalloc; the caller is
18099    responsible for freeing it.  */
18100 static char *
18101 file_full_name (int file, struct line_header *lh, const char *comp_dir)
18102 {
18103   /* Is the file number a valid index into the line header's file name
18104      table?  Remember that file numbers start with one, not zero.  */
18105   if (1 <= file && file <= lh->num_file_names)
18106     {
18107       char *relative = file_file_name (file, lh);
18108
18109       if (IS_ABSOLUTE_PATH (relative) || comp_dir == NULL)
18110         return relative;
18111       return reconcat (relative, comp_dir, SLASH_STRING, relative, NULL);
18112     }
18113   else
18114     return file_file_name (file, lh);
18115 }
18116
18117
18118 static struct macro_source_file *
18119 macro_start_file (int file, int line,
18120                   struct macro_source_file *current_file,
18121                   const char *comp_dir,
18122                   struct line_header *lh, struct objfile *objfile)
18123 {
18124   /* File name relative to the compilation directory of this source file.  */
18125   char *file_name = file_file_name (file, lh);
18126
18127   /* We don't create a macro table for this compilation unit
18128      at all until we actually get a filename.  */
18129   if (! pending_macros)
18130     pending_macros = new_macro_table (&objfile->per_bfd->storage_obstack,
18131                                       objfile->per_bfd->macro_cache,
18132                                       comp_dir);
18133
18134   if (! current_file)
18135     {
18136       /* If we have no current file, then this must be the start_file
18137          directive for the compilation unit's main source file.  */
18138       current_file = macro_set_main (pending_macros, file_name);
18139       macro_define_special (pending_macros);
18140     }
18141   else
18142     current_file = macro_include (current_file, line, file_name);
18143
18144   xfree (file_name);
18145
18146   return current_file;
18147 }
18148
18149
18150 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
18151    followed by a null byte.  */
18152 static char *
18153 copy_string (const char *buf, int len)
18154 {
18155   char *s = xmalloc (len + 1);
18156
18157   memcpy (s, buf, len);
18158   s[len] = '\0';
18159   return s;
18160 }
18161
18162
18163 static const char *
18164 consume_improper_spaces (const char *p, const char *body)
18165 {
18166   if (*p == ' ')
18167     {
18168       complaint (&symfile_complaints,
18169                  _("macro definition contains spaces "
18170                    "in formal argument list:\n`%s'"),
18171                  body);
18172
18173       while (*p == ' ')
18174         p++;
18175     }
18176
18177   return p;
18178 }
18179
18180
18181 static void
18182 parse_macro_definition (struct macro_source_file *file, int line,
18183                         const char *body)
18184 {
18185   const char *p;
18186
18187   /* The body string takes one of two forms.  For object-like macro
18188      definitions, it should be:
18189
18190         <macro name> " " <definition>
18191
18192      For function-like macro definitions, it should be:
18193
18194         <macro name> "() " <definition>
18195      or
18196         <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
18197
18198      Spaces may appear only where explicitly indicated, and in the
18199      <definition>.
18200
18201      The Dwarf 2 spec says that an object-like macro's name is always
18202      followed by a space, but versions of GCC around March 2002 omit
18203      the space when the macro's definition is the empty string.
18204
18205      The Dwarf 2 spec says that there should be no spaces between the
18206      formal arguments in a function-like macro's formal argument list,
18207      but versions of GCC around March 2002 include spaces after the
18208      commas.  */
18209
18210
18211   /* Find the extent of the macro name.  The macro name is terminated
18212      by either a space or null character (for an object-like macro) or
18213      an opening paren (for a function-like macro).  */
18214   for (p = body; *p; p++)
18215     if (*p == ' ' || *p == '(')
18216       break;
18217
18218   if (*p == ' ' || *p == '\0')
18219     {
18220       /* It's an object-like macro.  */
18221       int name_len = p - body;
18222       char *name = copy_string (body, name_len);
18223       const char *replacement;
18224
18225       if (*p == ' ')
18226         replacement = body + name_len + 1;
18227       else
18228         {
18229           dwarf2_macro_malformed_definition_complaint (body);
18230           replacement = body + name_len;
18231         }
18232
18233       macro_define_object (file, line, name, replacement);
18234
18235       xfree (name);
18236     }
18237   else if (*p == '(')
18238     {
18239       /* It's a function-like macro.  */
18240       char *name = copy_string (body, p - body);
18241       int argc = 0;
18242       int argv_size = 1;
18243       char **argv = xmalloc (argv_size * sizeof (*argv));
18244
18245       p++;
18246
18247       p = consume_improper_spaces (p, body);
18248
18249       /* Parse the formal argument list.  */
18250       while (*p && *p != ')')
18251         {
18252           /* Find the extent of the current argument name.  */
18253           const char *arg_start = p;
18254
18255           while (*p && *p != ',' && *p != ')' && *p != ' ')
18256             p++;
18257
18258           if (! *p || p == arg_start)
18259             dwarf2_macro_malformed_definition_complaint (body);
18260           else
18261             {
18262               /* Make sure argv has room for the new argument.  */
18263               if (argc >= argv_size)
18264                 {
18265                   argv_size *= 2;
18266                   argv = xrealloc (argv, argv_size * sizeof (*argv));
18267                 }
18268
18269               argv[argc++] = copy_string (arg_start, p - arg_start);
18270             }
18271
18272           p = consume_improper_spaces (p, body);
18273
18274           /* Consume the comma, if present.  */
18275           if (*p == ',')
18276             {
18277               p++;
18278
18279               p = consume_improper_spaces (p, body);
18280             }
18281         }
18282
18283       if (*p == ')')
18284         {
18285           p++;
18286
18287           if (*p == ' ')
18288             /* Perfectly formed definition, no complaints.  */
18289             macro_define_function (file, line, name,
18290                                    argc, (const char **) argv,
18291                                    p + 1);
18292           else if (*p == '\0')
18293             {
18294               /* Complain, but do define it.  */
18295               dwarf2_macro_malformed_definition_complaint (body);
18296               macro_define_function (file, line, name,
18297                                      argc, (const char **) argv,
18298                                      p);
18299             }
18300           else
18301             /* Just complain.  */
18302             dwarf2_macro_malformed_definition_complaint (body);
18303         }
18304       else
18305         /* Just complain.  */
18306         dwarf2_macro_malformed_definition_complaint (body);
18307
18308       xfree (name);
18309       {
18310         int i;
18311
18312         for (i = 0; i < argc; i++)
18313           xfree (argv[i]);
18314       }
18315       xfree (argv);
18316     }
18317   else
18318     dwarf2_macro_malformed_definition_complaint (body);
18319 }
18320
18321 /* Skip some bytes from BYTES according to the form given in FORM.
18322    Returns the new pointer.  */
18323
18324 static gdb_byte *
18325 skip_form_bytes (bfd *abfd, gdb_byte *bytes, gdb_byte *buffer_end,
18326                  enum dwarf_form form,
18327                  unsigned int offset_size,
18328                  struct dwarf2_section_info *section)
18329 {
18330   unsigned int bytes_read;
18331
18332   switch (form)
18333     {
18334     case DW_FORM_data1:
18335     case DW_FORM_flag:
18336       ++bytes;
18337       break;
18338
18339     case DW_FORM_data2:
18340       bytes += 2;
18341       break;
18342
18343     case DW_FORM_data4:
18344       bytes += 4;
18345       break;
18346
18347     case DW_FORM_data8:
18348       bytes += 8;
18349       break;
18350
18351     case DW_FORM_string:
18352       read_direct_string (abfd, bytes, &bytes_read);
18353       bytes += bytes_read;
18354       break;
18355
18356     case DW_FORM_sec_offset:
18357     case DW_FORM_strp:
18358     case DW_FORM_GNU_strp_alt:
18359       bytes += offset_size;
18360       break;
18361
18362     case DW_FORM_block:
18363       bytes += read_unsigned_leb128 (abfd, bytes, &bytes_read);
18364       bytes += bytes_read;
18365       break;
18366
18367     case DW_FORM_block1:
18368       bytes += 1 + read_1_byte (abfd, bytes);
18369       break;
18370     case DW_FORM_block2:
18371       bytes += 2 + read_2_bytes (abfd, bytes);
18372       break;
18373     case DW_FORM_block4:
18374       bytes += 4 + read_4_bytes (abfd, bytes);
18375       break;
18376
18377     case DW_FORM_sdata:
18378     case DW_FORM_udata:
18379     case DW_FORM_GNU_addr_index:
18380     case DW_FORM_GNU_str_index:
18381       bytes = (gdb_byte *) gdb_skip_leb128 (bytes, buffer_end);
18382       if (bytes == NULL)
18383         {
18384           dwarf2_section_buffer_overflow_complaint (section);
18385           return NULL;
18386         }
18387       break;
18388
18389     default:
18390       {
18391       complain:
18392         complaint (&symfile_complaints,
18393                    _("invalid form 0x%x in `%s'"),
18394                    form,
18395                    section->asection->name);
18396         return NULL;
18397       }
18398     }
18399
18400   return bytes;
18401 }
18402
18403 /* A helper for dwarf_decode_macros that handles skipping an unknown
18404    opcode.  Returns an updated pointer to the macro data buffer; or,
18405    on error, issues a complaint and returns NULL.  */
18406
18407 static gdb_byte *
18408 skip_unknown_opcode (unsigned int opcode,
18409                      gdb_byte **opcode_definitions,
18410                      gdb_byte *mac_ptr, gdb_byte *mac_end,
18411                      bfd *abfd,
18412                      unsigned int offset_size,
18413                      struct dwarf2_section_info *section)
18414 {
18415   unsigned int bytes_read, i;
18416   unsigned long arg;
18417   gdb_byte *defn;
18418
18419   if (opcode_definitions[opcode] == NULL)
18420     {
18421       complaint (&symfile_complaints,
18422                  _("unrecognized DW_MACFINO opcode 0x%x"),
18423                  opcode);
18424       return NULL;
18425     }
18426
18427   defn = opcode_definitions[opcode];
18428   arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
18429   defn += bytes_read;
18430
18431   for (i = 0; i < arg; ++i)
18432     {
18433       mac_ptr = skip_form_bytes (abfd, mac_ptr, mac_end, defn[i], offset_size,
18434                                  section);
18435       if (mac_ptr == NULL)
18436         {
18437           /* skip_form_bytes already issued the complaint.  */
18438           return NULL;
18439         }
18440     }
18441
18442   return mac_ptr;
18443 }
18444
18445 /* A helper function which parses the header of a macro section.
18446    If the macro section is the extended (for now called "GNU") type,
18447    then this updates *OFFSET_SIZE.  Returns a pointer to just after
18448    the header, or issues a complaint and returns NULL on error.  */
18449
18450 static gdb_byte *
18451 dwarf_parse_macro_header (gdb_byte **opcode_definitions,
18452                           bfd *abfd,
18453                           gdb_byte *mac_ptr,
18454                           unsigned int *offset_size,
18455                           int section_is_gnu)
18456 {
18457   memset (opcode_definitions, 0, 256 * sizeof (gdb_byte *));
18458
18459   if (section_is_gnu)
18460     {
18461       unsigned int version, flags;
18462
18463       version = read_2_bytes (abfd, mac_ptr);
18464       if (version != 4)
18465         {
18466           complaint (&symfile_complaints,
18467                      _("unrecognized version `%d' in .debug_macro section"),
18468                      version);
18469           return NULL;
18470         }
18471       mac_ptr += 2;
18472
18473       flags = read_1_byte (abfd, mac_ptr);
18474       ++mac_ptr;
18475       *offset_size = (flags & 1) ? 8 : 4;
18476
18477       if ((flags & 2) != 0)
18478         /* We don't need the line table offset.  */
18479         mac_ptr += *offset_size;
18480
18481       /* Vendor opcode descriptions.  */
18482       if ((flags & 4) != 0)
18483         {
18484           unsigned int i, count;
18485
18486           count = read_1_byte (abfd, mac_ptr);
18487           ++mac_ptr;
18488           for (i = 0; i < count; ++i)
18489             {
18490               unsigned int opcode, bytes_read;
18491               unsigned long arg;
18492
18493               opcode = read_1_byte (abfd, mac_ptr);
18494               ++mac_ptr;
18495               opcode_definitions[opcode] = mac_ptr;
18496               arg = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18497               mac_ptr += bytes_read;
18498               mac_ptr += arg;
18499             }
18500         }
18501     }
18502
18503   return mac_ptr;
18504 }
18505
18506 /* A helper for dwarf_decode_macros that handles the GNU extensions,
18507    including DW_MACRO_GNU_transparent_include.  */
18508
18509 static void
18510 dwarf_decode_macro_bytes (bfd *abfd, gdb_byte *mac_ptr, gdb_byte *mac_end,
18511                           struct macro_source_file *current_file,
18512                           struct line_header *lh, const char *comp_dir,
18513                           struct dwarf2_section_info *section,
18514                           int section_is_gnu, int section_is_dwz,
18515                           unsigned int offset_size,
18516                           struct objfile *objfile,
18517                           htab_t include_hash)
18518 {
18519   enum dwarf_macro_record_type macinfo_type;
18520   int at_commandline;
18521   gdb_byte *opcode_definitions[256];
18522
18523   mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
18524                                       &offset_size, section_is_gnu);
18525   if (mac_ptr == NULL)
18526     {
18527       /* We already issued a complaint.  */
18528       return;
18529     }
18530
18531   /* Determines if GDB is still before first DW_MACINFO_start_file.  If true
18532      GDB is still reading the definitions from command line.  First
18533      DW_MACINFO_start_file will need to be ignored as it was already executed
18534      to create CURRENT_FILE for the main source holding also the command line
18535      definitions.  On first met DW_MACINFO_start_file this flag is reset to
18536      normally execute all the remaining DW_MACINFO_start_file macinfos.  */
18537
18538   at_commandline = 1;
18539
18540   do
18541     {
18542       /* Do we at least have room for a macinfo type byte?  */
18543       if (mac_ptr >= mac_end)
18544         {
18545           dwarf2_section_buffer_overflow_complaint (section);
18546           break;
18547         }
18548
18549       macinfo_type = read_1_byte (abfd, mac_ptr);
18550       mac_ptr++;
18551
18552       /* Note that we rely on the fact that the corresponding GNU and
18553          DWARF constants are the same.  */
18554       switch (macinfo_type)
18555         {
18556           /* A zero macinfo type indicates the end of the macro
18557              information.  */
18558         case 0:
18559           break;
18560
18561         case DW_MACRO_GNU_define:
18562         case DW_MACRO_GNU_undef:
18563         case DW_MACRO_GNU_define_indirect:
18564         case DW_MACRO_GNU_undef_indirect:
18565         case DW_MACRO_GNU_define_indirect_alt:
18566         case DW_MACRO_GNU_undef_indirect_alt:
18567           {
18568             unsigned int bytes_read;
18569             int line;
18570             char *body;
18571             int is_define;
18572
18573             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18574             mac_ptr += bytes_read;
18575
18576             if (macinfo_type == DW_MACRO_GNU_define
18577                 || macinfo_type == DW_MACRO_GNU_undef)
18578               {
18579                 body = read_direct_string (abfd, mac_ptr, &bytes_read);
18580                 mac_ptr += bytes_read;
18581               }
18582             else
18583               {
18584                 LONGEST str_offset;
18585
18586                 str_offset = read_offset_1 (abfd, mac_ptr, offset_size);
18587                 mac_ptr += offset_size;
18588
18589                 if (macinfo_type == DW_MACRO_GNU_define_indirect_alt
18590                     || macinfo_type == DW_MACRO_GNU_undef_indirect_alt
18591                     || section_is_dwz)
18592                   {
18593                     struct dwz_file *dwz = dwarf2_get_dwz_file ();
18594
18595                     body = read_indirect_string_from_dwz (dwz, str_offset);
18596                   }
18597                 else
18598                   body = read_indirect_string_at_offset (abfd, str_offset);
18599               }
18600
18601             is_define = (macinfo_type == DW_MACRO_GNU_define
18602                          || macinfo_type == DW_MACRO_GNU_define_indirect
18603                          || macinfo_type == DW_MACRO_GNU_define_indirect_alt);
18604             if (! current_file)
18605               {
18606                 /* DWARF violation as no main source is present.  */
18607                 complaint (&symfile_complaints,
18608                            _("debug info with no main source gives macro %s "
18609                              "on line %d: %s"),
18610                            is_define ? _("definition") : _("undefinition"),
18611                            line, body);
18612                 break;
18613               }
18614             if ((line == 0 && !at_commandline)
18615                 || (line != 0 && at_commandline))
18616               complaint (&symfile_complaints,
18617                          _("debug info gives %s macro %s with %s line %d: %s"),
18618                          at_commandline ? _("command-line") : _("in-file"),
18619                          is_define ? _("definition") : _("undefinition"),
18620                          line == 0 ? _("zero") : _("non-zero"), line, body);
18621
18622             if (is_define)
18623               parse_macro_definition (current_file, line, body);
18624             else
18625               {
18626                 gdb_assert (macinfo_type == DW_MACRO_GNU_undef
18627                             || macinfo_type == DW_MACRO_GNU_undef_indirect
18628                             || macinfo_type == DW_MACRO_GNU_undef_indirect_alt);
18629                 macro_undef (current_file, line, body);
18630               }
18631           }
18632           break;
18633
18634         case DW_MACRO_GNU_start_file:
18635           {
18636             unsigned int bytes_read;
18637             int line, file;
18638
18639             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18640             mac_ptr += bytes_read;
18641             file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18642             mac_ptr += bytes_read;
18643
18644             if ((line == 0 && !at_commandline)
18645                 || (line != 0 && at_commandline))
18646               complaint (&symfile_complaints,
18647                          _("debug info gives source %d included "
18648                            "from %s at %s line %d"),
18649                          file, at_commandline ? _("command-line") : _("file"),
18650                          line == 0 ? _("zero") : _("non-zero"), line);
18651
18652             if (at_commandline)
18653               {
18654                 /* This DW_MACRO_GNU_start_file was executed in the
18655                    pass one.  */
18656                 at_commandline = 0;
18657               }
18658             else
18659               current_file = macro_start_file (file, line,
18660                                                current_file, comp_dir,
18661                                                lh, objfile);
18662           }
18663           break;
18664
18665         case DW_MACRO_GNU_end_file:
18666           if (! current_file)
18667             complaint (&symfile_complaints,
18668                        _("macro debug info has an unmatched "
18669                          "`close_file' directive"));
18670           else
18671             {
18672               current_file = current_file->included_by;
18673               if (! current_file)
18674                 {
18675                   enum dwarf_macro_record_type next_type;
18676
18677                   /* GCC circa March 2002 doesn't produce the zero
18678                      type byte marking the end of the compilation
18679                      unit.  Complain if it's not there, but exit no
18680                      matter what.  */
18681
18682                   /* Do we at least have room for a macinfo type byte?  */
18683                   if (mac_ptr >= mac_end)
18684                     {
18685                       dwarf2_section_buffer_overflow_complaint (section);
18686                       return;
18687                     }
18688
18689                   /* We don't increment mac_ptr here, so this is just
18690                      a look-ahead.  */
18691                   next_type = read_1_byte (abfd, mac_ptr);
18692                   if (next_type != 0)
18693                     complaint (&symfile_complaints,
18694                                _("no terminating 0-type entry for "
18695                                  "macros in `.debug_macinfo' section"));
18696
18697                   return;
18698                 }
18699             }
18700           break;
18701
18702         case DW_MACRO_GNU_transparent_include:
18703         case DW_MACRO_GNU_transparent_include_alt:
18704           {
18705             LONGEST offset;
18706             void **slot;
18707             bfd *include_bfd = abfd;
18708             struct dwarf2_section_info *include_section = section;
18709             struct dwarf2_section_info alt_section;
18710             gdb_byte *include_mac_end = mac_end;
18711             int is_dwz = section_is_dwz;
18712             gdb_byte *new_mac_ptr;
18713
18714             offset = read_offset_1 (abfd, mac_ptr, offset_size);
18715             mac_ptr += offset_size;
18716
18717             if (macinfo_type == DW_MACRO_GNU_transparent_include_alt)
18718               {
18719                 struct dwz_file *dwz = dwarf2_get_dwz_file ();
18720
18721                 dwarf2_read_section (dwarf2_per_objfile->objfile,
18722                                      &dwz->macro);
18723
18724                 include_bfd = dwz->macro.asection->owner;
18725                 include_section = &dwz->macro;
18726                 include_mac_end = dwz->macro.buffer + dwz->macro.size;
18727                 is_dwz = 1;
18728               }
18729
18730             new_mac_ptr = include_section->buffer + offset;
18731             slot = htab_find_slot (include_hash, new_mac_ptr, INSERT);
18732
18733             if (*slot != NULL)
18734               {
18735                 /* This has actually happened; see
18736                    http://sourceware.org/bugzilla/show_bug.cgi?id=13568.  */
18737                 complaint (&symfile_complaints,
18738                            _("recursive DW_MACRO_GNU_transparent_include in "
18739                              ".debug_macro section"));
18740               }
18741             else
18742               {
18743                 *slot = new_mac_ptr;
18744
18745                 dwarf_decode_macro_bytes (include_bfd, new_mac_ptr,
18746                                           include_mac_end, current_file,
18747                                           lh, comp_dir,
18748                                           section, section_is_gnu, is_dwz,
18749                                           offset_size, objfile, include_hash);
18750
18751                 htab_remove_elt (include_hash, new_mac_ptr);
18752               }
18753           }
18754           break;
18755
18756         case DW_MACINFO_vendor_ext:
18757           if (!section_is_gnu)
18758             {
18759               unsigned int bytes_read;
18760               int constant;
18761
18762               constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18763               mac_ptr += bytes_read;
18764               read_direct_string (abfd, mac_ptr, &bytes_read);
18765               mac_ptr += bytes_read;
18766
18767               /* We don't recognize any vendor extensions.  */
18768               break;
18769             }
18770           /* FALLTHROUGH */
18771
18772         default:
18773           mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
18774                                          mac_ptr, mac_end, abfd, offset_size,
18775                                          section);
18776           if (mac_ptr == NULL)
18777             return;
18778           break;
18779         }
18780     } while (macinfo_type != 0);
18781 }
18782
18783 static void
18784 dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
18785                      const char *comp_dir, int section_is_gnu)
18786 {
18787   struct objfile *objfile = dwarf2_per_objfile->objfile;
18788   struct line_header *lh = cu->line_header;
18789   bfd *abfd;
18790   gdb_byte *mac_ptr, *mac_end;
18791   struct macro_source_file *current_file = 0;
18792   enum dwarf_macro_record_type macinfo_type;
18793   unsigned int offset_size = cu->header.offset_size;
18794   gdb_byte *opcode_definitions[256];
18795   struct cleanup *cleanup;
18796   htab_t include_hash;
18797   void **slot;
18798   struct dwarf2_section_info *section;
18799   const char *section_name;
18800
18801   if (cu->dwo_unit != NULL)
18802     {
18803       if (section_is_gnu)
18804         {
18805           section = &cu->dwo_unit->dwo_file->sections.macro;
18806           section_name = ".debug_macro.dwo";
18807         }
18808       else
18809         {
18810           section = &cu->dwo_unit->dwo_file->sections.macinfo;
18811           section_name = ".debug_macinfo.dwo";
18812         }
18813     }
18814   else
18815     {
18816       if (section_is_gnu)
18817         {
18818           section = &dwarf2_per_objfile->macro;
18819           section_name = ".debug_macro";
18820         }
18821       else
18822         {
18823           section = &dwarf2_per_objfile->macinfo;
18824           section_name = ".debug_macinfo";
18825         }
18826     }
18827
18828   dwarf2_read_section (objfile, section);
18829   if (section->buffer == NULL)
18830     {
18831       complaint (&symfile_complaints, _("missing %s section"), section_name);
18832       return;
18833     }
18834   abfd = section->asection->owner;
18835
18836   /* First pass: Find the name of the base filename.
18837      This filename is needed in order to process all macros whose definition
18838      (or undefinition) comes from the command line.  These macros are defined
18839      before the first DW_MACINFO_start_file entry, and yet still need to be
18840      associated to the base file.
18841
18842      To determine the base file name, we scan the macro definitions until we
18843      reach the first DW_MACINFO_start_file entry.  We then initialize
18844      CURRENT_FILE accordingly so that any macro definition found before the
18845      first DW_MACINFO_start_file can still be associated to the base file.  */
18846
18847   mac_ptr = section->buffer + offset;
18848   mac_end = section->buffer + section->size;
18849
18850   mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
18851                                       &offset_size, section_is_gnu);
18852   if (mac_ptr == NULL)
18853     {
18854       /* We already issued a complaint.  */
18855       return;
18856     }
18857
18858   do
18859     {
18860       /* Do we at least have room for a macinfo type byte?  */
18861       if (mac_ptr >= mac_end)
18862         {
18863           /* Complaint is printed during the second pass as GDB will probably
18864              stop the first pass earlier upon finding
18865              DW_MACINFO_start_file.  */
18866           break;
18867         }
18868
18869       macinfo_type = read_1_byte (abfd, mac_ptr);
18870       mac_ptr++;
18871
18872       /* Note that we rely on the fact that the corresponding GNU and
18873          DWARF constants are the same.  */
18874       switch (macinfo_type)
18875         {
18876           /* A zero macinfo type indicates the end of the macro
18877              information.  */
18878         case 0:
18879           break;
18880
18881         case DW_MACRO_GNU_define:
18882         case DW_MACRO_GNU_undef:
18883           /* Only skip the data by MAC_PTR.  */
18884           {
18885             unsigned int bytes_read;
18886
18887             read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18888             mac_ptr += bytes_read;
18889             read_direct_string (abfd, mac_ptr, &bytes_read);
18890             mac_ptr += bytes_read;
18891           }
18892           break;
18893
18894         case DW_MACRO_GNU_start_file:
18895           {
18896             unsigned int bytes_read;
18897             int line, file;
18898
18899             line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18900             mac_ptr += bytes_read;
18901             file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18902             mac_ptr += bytes_read;
18903
18904             current_file = macro_start_file (file, line, current_file,
18905                                              comp_dir, lh, objfile);
18906           }
18907           break;
18908
18909         case DW_MACRO_GNU_end_file:
18910           /* No data to skip by MAC_PTR.  */
18911           break;
18912
18913         case DW_MACRO_GNU_define_indirect:
18914         case DW_MACRO_GNU_undef_indirect:
18915         case DW_MACRO_GNU_define_indirect_alt:
18916         case DW_MACRO_GNU_undef_indirect_alt:
18917           {
18918             unsigned int bytes_read;
18919
18920             read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18921             mac_ptr += bytes_read;
18922             mac_ptr += offset_size;
18923           }
18924           break;
18925
18926         case DW_MACRO_GNU_transparent_include:
18927         case DW_MACRO_GNU_transparent_include_alt:
18928           /* Note that, according to the spec, a transparent include
18929              chain cannot call DW_MACRO_GNU_start_file.  So, we can just
18930              skip this opcode.  */
18931           mac_ptr += offset_size;
18932           break;
18933
18934         case DW_MACINFO_vendor_ext:
18935           /* Only skip the data by MAC_PTR.  */
18936           if (!section_is_gnu)
18937             {
18938               unsigned int bytes_read;
18939
18940               read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18941               mac_ptr += bytes_read;
18942               read_direct_string (abfd, mac_ptr, &bytes_read);
18943               mac_ptr += bytes_read;
18944             }
18945           /* FALLTHROUGH */
18946
18947         default:
18948           mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
18949                                          mac_ptr, mac_end, abfd, offset_size,
18950                                          section);
18951           if (mac_ptr == NULL)
18952             return;
18953           break;
18954         }
18955     } while (macinfo_type != 0 && current_file == NULL);
18956
18957   /* Second pass: Process all entries.
18958
18959      Use the AT_COMMAND_LINE flag to determine whether we are still processing
18960      command-line macro definitions/undefinitions.  This flag is unset when we
18961      reach the first DW_MACINFO_start_file entry.  */
18962
18963   include_hash = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
18964                                     NULL, xcalloc, xfree);
18965   cleanup = make_cleanup_htab_delete (include_hash);
18966   mac_ptr = section->buffer + offset;
18967   slot = htab_find_slot (include_hash, mac_ptr, INSERT);
18968   *slot = mac_ptr;
18969   dwarf_decode_macro_bytes (abfd, mac_ptr, mac_end,
18970                             current_file, lh, comp_dir, section,
18971                             section_is_gnu, 0,
18972                             offset_size, objfile, include_hash);
18973   do_cleanups (cleanup);
18974 }
18975
18976 /* Check if the attribute's form is a DW_FORM_block*
18977    if so return true else false.  */
18978
18979 static int
18980 attr_form_is_block (struct attribute *attr)
18981 {
18982   return (attr == NULL ? 0 :
18983       attr->form == DW_FORM_block1
18984       || attr->form == DW_FORM_block2
18985       || attr->form == DW_FORM_block4
18986       || attr->form == DW_FORM_block
18987       || attr->form == DW_FORM_exprloc);
18988 }
18989
18990 /* Return non-zero if ATTR's value is a section offset --- classes
18991    lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
18992    You may use DW_UNSND (attr) to retrieve such offsets.
18993
18994    Section 7.5.4, "Attribute Encodings", explains that no attribute
18995    may have a value that belongs to more than one of these classes; it
18996    would be ambiguous if we did, because we use the same forms for all
18997    of them.  */
18998
18999 static int
19000 attr_form_is_section_offset (struct attribute *attr)
19001 {
19002   return (attr->form == DW_FORM_data4
19003           || attr->form == DW_FORM_data8
19004           || attr->form == DW_FORM_sec_offset);
19005 }
19006
19007 /* Return non-zero if ATTR's value falls in the 'constant' class, or
19008    zero otherwise.  When this function returns true, you can apply
19009    dwarf2_get_attr_constant_value to it.
19010
19011    However, note that for some attributes you must check
19012    attr_form_is_section_offset before using this test.  DW_FORM_data4
19013    and DW_FORM_data8 are members of both the constant class, and of
19014    the classes that contain offsets into other debug sections
19015    (lineptr, loclistptr, macptr or rangelistptr).  The DWARF spec says
19016    that, if an attribute's can be either a constant or one of the
19017    section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
19018    taken as section offsets, not constants.  */
19019
19020 static int
19021 attr_form_is_constant (struct attribute *attr)
19022 {
19023   switch (attr->form)
19024     {
19025     case DW_FORM_sdata:
19026     case DW_FORM_udata:
19027     case DW_FORM_data1:
19028     case DW_FORM_data2:
19029     case DW_FORM_data4:
19030     case DW_FORM_data8:
19031       return 1;
19032     default:
19033       return 0;
19034     }
19035 }
19036
19037 /* Return the .debug_loc section to use for CU.
19038    For DWO files use .debug_loc.dwo.  */
19039
19040 static struct dwarf2_section_info *
19041 cu_debug_loc_section (struct dwarf2_cu *cu)
19042 {
19043   if (cu->dwo_unit)
19044     return &cu->dwo_unit->dwo_file->sections.loc;
19045   return &dwarf2_per_objfile->loc;
19046 }
19047
19048 /* A helper function that fills in a dwarf2_loclist_baton.  */
19049
19050 static void
19051 fill_in_loclist_baton (struct dwarf2_cu *cu,
19052                        struct dwarf2_loclist_baton *baton,
19053                        struct attribute *attr)
19054 {
19055   struct dwarf2_section_info *section = cu_debug_loc_section (cu);
19056
19057   dwarf2_read_section (dwarf2_per_objfile->objfile, section);
19058
19059   baton->per_cu = cu->per_cu;
19060   gdb_assert (baton->per_cu);
19061   /* We don't know how long the location list is, but make sure we
19062      don't run off the edge of the section.  */
19063   baton->size = section->size - DW_UNSND (attr);
19064   baton->data = section->buffer + DW_UNSND (attr);
19065   baton->base_address = cu->base_address;
19066   baton->from_dwo = cu->dwo_unit != NULL;
19067 }
19068
19069 static void
19070 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
19071                              struct dwarf2_cu *cu, int is_block)
19072 {
19073   struct objfile *objfile = dwarf2_per_objfile->objfile;
19074   struct dwarf2_section_info *section = cu_debug_loc_section (cu);
19075
19076   if (attr_form_is_section_offset (attr)
19077       /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
19078          the section.  If so, fall through to the complaint in the
19079          other branch.  */
19080       && DW_UNSND (attr) < dwarf2_section_size (objfile, section))
19081     {
19082       struct dwarf2_loclist_baton *baton;
19083
19084       baton = obstack_alloc (&objfile->objfile_obstack,
19085                              sizeof (struct dwarf2_loclist_baton));
19086
19087       fill_in_loclist_baton (cu, baton, attr);
19088
19089       if (cu->base_known == 0)
19090         complaint (&symfile_complaints,
19091                    _("Location list used without "
19092                      "specifying the CU base address."));
19093
19094       SYMBOL_ACLASS_INDEX (sym) = (is_block
19095                                    ? dwarf2_loclist_block_index
19096                                    : dwarf2_loclist_index);
19097       SYMBOL_LOCATION_BATON (sym) = baton;
19098     }
19099   else
19100     {
19101       struct dwarf2_locexpr_baton *baton;
19102
19103       baton = obstack_alloc (&objfile->objfile_obstack,
19104                              sizeof (struct dwarf2_locexpr_baton));
19105       baton->per_cu = cu->per_cu;
19106       gdb_assert (baton->per_cu);
19107
19108       if (attr_form_is_block (attr))
19109         {
19110           /* Note that we're just copying the block's data pointer
19111              here, not the actual data.  We're still pointing into the
19112              info_buffer for SYM's objfile; right now we never release
19113              that buffer, but when we do clean up properly this may
19114              need to change.  */
19115           baton->size = DW_BLOCK (attr)->size;
19116           baton->data = DW_BLOCK (attr)->data;
19117         }
19118       else
19119         {
19120           dwarf2_invalid_attrib_class_complaint ("location description",
19121                                                  SYMBOL_NATURAL_NAME (sym));
19122           baton->size = 0;
19123         }
19124
19125       SYMBOL_ACLASS_INDEX (sym) = (is_block
19126                                    ? dwarf2_locexpr_block_index
19127                                    : dwarf2_locexpr_index);
19128       SYMBOL_LOCATION_BATON (sym) = baton;
19129     }
19130 }
19131
19132 /* Return the OBJFILE associated with the compilation unit CU.  If CU
19133    came from a separate debuginfo file, then the master objfile is
19134    returned.  */
19135
19136 struct objfile *
19137 dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
19138 {
19139   struct objfile *objfile = per_cu->objfile;
19140
19141   /* Return the master objfile, so that we can report and look up the
19142      correct file containing this variable.  */
19143   if (objfile->separate_debug_objfile_backlink)
19144     objfile = objfile->separate_debug_objfile_backlink;
19145
19146   return objfile;
19147 }
19148
19149 /* Return comp_unit_head for PER_CU, either already available in PER_CU->CU
19150    (CU_HEADERP is unused in such case) or prepare a temporary copy at
19151    CU_HEADERP first.  */
19152
19153 static const struct comp_unit_head *
19154 per_cu_header_read_in (struct comp_unit_head *cu_headerp,
19155                        struct dwarf2_per_cu_data *per_cu)
19156 {
19157   gdb_byte *info_ptr;
19158
19159   if (per_cu->cu)
19160     return &per_cu->cu->header;
19161
19162   info_ptr = per_cu->section->buffer + per_cu->offset.sect_off;
19163
19164   memset (cu_headerp, 0, sizeof (*cu_headerp));
19165   read_comp_unit_head (cu_headerp, info_ptr, per_cu->objfile->obfd);
19166
19167   return cu_headerp;
19168 }
19169
19170 /* Return the address size given in the compilation unit header for CU.  */
19171
19172 int
19173 dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
19174 {
19175   struct comp_unit_head cu_header_local;
19176   const struct comp_unit_head *cu_headerp;
19177
19178   cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
19179
19180   return cu_headerp->addr_size;
19181 }
19182
19183 /* Return the offset size given in the compilation unit header for CU.  */
19184
19185 int
19186 dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
19187 {
19188   struct comp_unit_head cu_header_local;
19189   const struct comp_unit_head *cu_headerp;
19190
19191   cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
19192
19193   return cu_headerp->offset_size;
19194 }
19195
19196 /* See its dwarf2loc.h declaration.  */
19197
19198 int
19199 dwarf2_per_cu_ref_addr_size (struct dwarf2_per_cu_data *per_cu)
19200 {
19201   struct comp_unit_head cu_header_local;
19202   const struct comp_unit_head *cu_headerp;
19203
19204   cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
19205
19206   if (cu_headerp->version == 2)
19207     return cu_headerp->addr_size;
19208   else
19209     return cu_headerp->offset_size;
19210 }
19211
19212 /* Return the text offset of the CU.  The returned offset comes from
19213    this CU's objfile.  If this objfile came from a separate debuginfo
19214    file, then the offset may be different from the corresponding
19215    offset in the parent objfile.  */
19216
19217 CORE_ADDR
19218 dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
19219 {
19220   struct objfile *objfile = per_cu->objfile;
19221
19222   return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
19223 }
19224
19225 /* Locate the .debug_info compilation unit from CU's objfile which contains
19226    the DIE at OFFSET.  Raises an error on failure.  */
19227
19228 static struct dwarf2_per_cu_data *
19229 dwarf2_find_containing_comp_unit (sect_offset offset,
19230                                   unsigned int offset_in_dwz,
19231                                   struct objfile *objfile)
19232 {
19233   struct dwarf2_per_cu_data *this_cu;
19234   int low, high;
19235   const sect_offset *cu_off;
19236
19237   low = 0;
19238   high = dwarf2_per_objfile->n_comp_units - 1;
19239   while (high > low)
19240     {
19241       struct dwarf2_per_cu_data *mid_cu;
19242       int mid = low + (high - low) / 2;
19243
19244       mid_cu = dwarf2_per_objfile->all_comp_units[mid];
19245       cu_off = &mid_cu->offset;
19246       if (mid_cu->is_dwz > offset_in_dwz
19247           || (mid_cu->is_dwz == offset_in_dwz
19248               && cu_off->sect_off >= offset.sect_off))
19249         high = mid;
19250       else
19251         low = mid + 1;
19252     }
19253   gdb_assert (low == high);
19254   this_cu = dwarf2_per_objfile->all_comp_units[low];
19255   cu_off = &this_cu->offset;
19256   if (this_cu->is_dwz != offset_in_dwz || cu_off->sect_off > offset.sect_off)
19257     {
19258       if (low == 0 || this_cu->is_dwz != offset_in_dwz)
19259         error (_("Dwarf Error: could not find partial DIE containing "
19260                "offset 0x%lx [in module %s]"),
19261                (long) offset.sect_off, bfd_get_filename (objfile->obfd));
19262
19263       gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset.sect_off
19264                   <= offset.sect_off);
19265       return dwarf2_per_objfile->all_comp_units[low-1];
19266     }
19267   else
19268     {
19269       this_cu = dwarf2_per_objfile->all_comp_units[low];
19270       if (low == dwarf2_per_objfile->n_comp_units - 1
19271           && offset.sect_off >= this_cu->offset.sect_off + this_cu->length)
19272         error (_("invalid dwarf2 offset %u"), offset.sect_off);
19273       gdb_assert (offset.sect_off < this_cu->offset.sect_off + this_cu->length);
19274       return this_cu;
19275     }
19276 }
19277
19278 /* Initialize dwarf2_cu CU, owned by PER_CU.  */
19279
19280 static void
19281 init_one_comp_unit (struct dwarf2_cu *cu, struct dwarf2_per_cu_data *per_cu)
19282 {
19283   memset (cu, 0, sizeof (*cu));
19284   per_cu->cu = cu;
19285   cu->per_cu = per_cu;
19286   cu->objfile = per_cu->objfile;
19287   obstack_init (&cu->comp_unit_obstack);
19288 }
19289
19290 /* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE.  */
19291
19292 static void
19293 prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
19294                        enum language pretend_language)
19295 {
19296   struct attribute *attr;
19297
19298   /* Set the language we're debugging.  */
19299   attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
19300   if (attr)
19301     set_cu_language (DW_UNSND (attr), cu);
19302   else
19303     {
19304       cu->language = pretend_language;
19305       cu->language_defn = language_def (cu->language);
19306     }
19307
19308   attr = dwarf2_attr (comp_unit_die, DW_AT_producer, cu);
19309   if (attr)
19310     cu->producer = DW_STRING (attr);
19311 }
19312
19313 /* Release one cached compilation unit, CU.  We unlink it from the tree
19314    of compilation units, but we don't remove it from the read_in_chain;
19315    the caller is responsible for that.
19316    NOTE: DATA is a void * because this function is also used as a
19317    cleanup routine.  */
19318
19319 static void
19320 free_heap_comp_unit (void *data)
19321 {
19322   struct dwarf2_cu *cu = data;
19323
19324   gdb_assert (cu->per_cu != NULL);
19325   cu->per_cu->cu = NULL;
19326   cu->per_cu = NULL;
19327
19328   obstack_free (&cu->comp_unit_obstack, NULL);
19329
19330   xfree (cu);
19331 }
19332
19333 /* This cleanup function is passed the address of a dwarf2_cu on the stack
19334    when we're finished with it.  We can't free the pointer itself, but be
19335    sure to unlink it from the cache.  Also release any associated storage.  */
19336
19337 static void
19338 free_stack_comp_unit (void *data)
19339 {
19340   struct dwarf2_cu *cu = data;
19341
19342   gdb_assert (cu->per_cu != NULL);
19343   cu->per_cu->cu = NULL;
19344   cu->per_cu = NULL;
19345
19346   obstack_free (&cu->comp_unit_obstack, NULL);
19347   cu->partial_dies = NULL;
19348 }
19349
19350 /* Free all cached compilation units.  */
19351
19352 static void
19353 free_cached_comp_units (void *data)
19354 {
19355   struct dwarf2_per_cu_data *per_cu, **last_chain;
19356
19357   per_cu = dwarf2_per_objfile->read_in_chain;
19358   last_chain = &dwarf2_per_objfile->read_in_chain;
19359   while (per_cu != NULL)
19360     {
19361       struct dwarf2_per_cu_data *next_cu;
19362
19363       next_cu = per_cu->cu->read_in_chain;
19364
19365       free_heap_comp_unit (per_cu->cu);
19366       *last_chain = next_cu;
19367
19368       per_cu = next_cu;
19369     }
19370 }
19371
19372 /* Increase the age counter on each cached compilation unit, and free
19373    any that are too old.  */
19374
19375 static void
19376 age_cached_comp_units (void)
19377 {
19378   struct dwarf2_per_cu_data *per_cu, **last_chain;
19379
19380   dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
19381   per_cu = dwarf2_per_objfile->read_in_chain;
19382   while (per_cu != NULL)
19383     {
19384       per_cu->cu->last_used ++;
19385       if (per_cu->cu->last_used <= dwarf2_max_cache_age)
19386         dwarf2_mark (per_cu->cu);
19387       per_cu = per_cu->cu->read_in_chain;
19388     }
19389
19390   per_cu = dwarf2_per_objfile->read_in_chain;
19391   last_chain = &dwarf2_per_objfile->read_in_chain;
19392   while (per_cu != NULL)
19393     {
19394       struct dwarf2_per_cu_data *next_cu;
19395
19396       next_cu = per_cu->cu->read_in_chain;
19397
19398       if (!per_cu->cu->mark)
19399         {
19400           free_heap_comp_unit (per_cu->cu);
19401           *last_chain = next_cu;
19402         }
19403       else
19404         last_chain = &per_cu->cu->read_in_chain;
19405
19406       per_cu = next_cu;
19407     }
19408 }
19409
19410 /* Remove a single compilation unit from the cache.  */
19411
19412 static void
19413 free_one_cached_comp_unit (struct dwarf2_per_cu_data *target_per_cu)
19414 {
19415   struct dwarf2_per_cu_data *per_cu, **last_chain;
19416
19417   per_cu = dwarf2_per_objfile->read_in_chain;
19418   last_chain = &dwarf2_per_objfile->read_in_chain;
19419   while (per_cu != NULL)
19420     {
19421       struct dwarf2_per_cu_data *next_cu;
19422
19423       next_cu = per_cu->cu->read_in_chain;
19424
19425       if (per_cu == target_per_cu)
19426         {
19427           free_heap_comp_unit (per_cu->cu);
19428           per_cu->cu = NULL;
19429           *last_chain = next_cu;
19430           break;
19431         }
19432       else
19433         last_chain = &per_cu->cu->read_in_chain;
19434
19435       per_cu = next_cu;
19436     }
19437 }
19438
19439 /* Release all extra memory associated with OBJFILE.  */
19440
19441 void
19442 dwarf2_free_objfile (struct objfile *objfile)
19443 {
19444   dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
19445
19446   if (dwarf2_per_objfile == NULL)
19447     return;
19448
19449   /* Cached DIE trees use xmalloc and the comp_unit_obstack.  */
19450   free_cached_comp_units (NULL);
19451
19452   if (dwarf2_per_objfile->quick_file_names_table)
19453     htab_delete (dwarf2_per_objfile->quick_file_names_table);
19454
19455   /* Everything else should be on the objfile obstack.  */
19456 }
19457
19458 /* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
19459    We store these in a hash table separate from the DIEs, and preserve them
19460    when the DIEs are flushed out of cache.
19461
19462    The CU "per_cu" pointer is needed because offset alone is not enough to
19463    uniquely identify the type.  A file may have multiple .debug_types sections,
19464    or the type may come from a DWO file.  We have to use something in
19465    dwarf2_per_cu_data (or the pointer to it) because we can enter the lookup
19466    routine, get_die_type_at_offset, from outside this file, and thus won't
19467    necessarily have PER_CU->cu.  Fortunately, PER_CU is stable for the life
19468    of the objfile.  */
19469
19470 struct dwarf2_per_cu_offset_and_type
19471 {
19472   const struct dwarf2_per_cu_data *per_cu;
19473   sect_offset offset;
19474   struct type *type;
19475 };
19476
19477 /* Hash function for a dwarf2_per_cu_offset_and_type.  */
19478
19479 static hashval_t
19480 per_cu_offset_and_type_hash (const void *item)
19481 {
19482   const struct dwarf2_per_cu_offset_and_type *ofs = item;
19483
19484   return (uintptr_t) ofs->per_cu + ofs->offset.sect_off;
19485 }
19486
19487 /* Equality function for a dwarf2_per_cu_offset_and_type.  */
19488
19489 static int
19490 per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
19491 {
19492   const struct dwarf2_per_cu_offset_and_type *ofs_lhs = item_lhs;
19493   const struct dwarf2_per_cu_offset_and_type *ofs_rhs = item_rhs;
19494
19495   return (ofs_lhs->per_cu == ofs_rhs->per_cu
19496           && ofs_lhs->offset.sect_off == ofs_rhs->offset.sect_off);
19497 }
19498
19499 /* Set the type associated with DIE to TYPE.  Save it in CU's hash
19500    table if necessary.  For convenience, return TYPE.
19501
19502    The DIEs reading must have careful ordering to:
19503     * Not cause infite loops trying to read in DIEs as a prerequisite for
19504       reading current DIE.
19505     * Not trying to dereference contents of still incompletely read in types
19506       while reading in other DIEs.
19507     * Enable referencing still incompletely read in types just by a pointer to
19508       the type without accessing its fields.
19509
19510    Therefore caller should follow these rules:
19511      * Try to fetch any prerequisite types we may need to build this DIE type
19512        before building the type and calling set_die_type.
19513      * After building type call set_die_type for current DIE as soon as
19514        possible before fetching more types to complete the current type.
19515      * Make the type as complete as possible before fetching more types.  */
19516
19517 static struct type *
19518 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
19519 {
19520   struct dwarf2_per_cu_offset_and_type **slot, ofs;
19521   struct objfile *objfile = cu->objfile;
19522
19523   /* For Ada types, make sure that the gnat-specific data is always
19524      initialized (if not already set).  There are a few types where
19525      we should not be doing so, because the type-specific area is
19526      already used to hold some other piece of info (eg: TYPE_CODE_FLT
19527      where the type-specific area is used to store the floatformat).
19528      But this is not a problem, because the gnat-specific information
19529      is actually not needed for these types.  */
19530   if (need_gnat_info (cu)
19531       && TYPE_CODE (type) != TYPE_CODE_FUNC
19532       && TYPE_CODE (type) != TYPE_CODE_FLT
19533       && !HAVE_GNAT_AUX_INFO (type))
19534     INIT_GNAT_SPECIFIC (type);
19535
19536   if (dwarf2_per_objfile->die_type_hash == NULL)
19537     {
19538       dwarf2_per_objfile->die_type_hash =
19539         htab_create_alloc_ex (127,
19540                               per_cu_offset_and_type_hash,
19541                               per_cu_offset_and_type_eq,
19542                               NULL,
19543                               &objfile->objfile_obstack,
19544                               hashtab_obstack_allocate,
19545                               dummy_obstack_deallocate);
19546     }
19547
19548   ofs.per_cu = cu->per_cu;
19549   ofs.offset = die->offset;
19550   ofs.type = type;
19551   slot = (struct dwarf2_per_cu_offset_and_type **)
19552     htab_find_slot (dwarf2_per_objfile->die_type_hash, &ofs, INSERT);
19553   if (*slot)
19554     complaint (&symfile_complaints,
19555                _("A problem internal to GDB: DIE 0x%x has type already set"),
19556                die->offset.sect_off);
19557   *slot = obstack_alloc (&objfile->objfile_obstack, sizeof (**slot));
19558   **slot = ofs;
19559   return type;
19560 }
19561
19562 /* Look up the type for the die at OFFSET in the appropriate type_hash
19563    table, or return NULL if the die does not have a saved type.  */
19564
19565 static struct type *
19566 get_die_type_at_offset (sect_offset offset,
19567                         struct dwarf2_per_cu_data *per_cu)
19568 {
19569   struct dwarf2_per_cu_offset_and_type *slot, ofs;
19570
19571   if (dwarf2_per_objfile->die_type_hash == NULL)
19572     return NULL;
19573
19574   ofs.per_cu = per_cu;
19575   ofs.offset = offset;
19576   slot = htab_find (dwarf2_per_objfile->die_type_hash, &ofs);
19577   if (slot)
19578     return slot->type;
19579   else
19580     return NULL;
19581 }
19582
19583 /* Look up the type for DIE in the appropriate type_hash table,
19584    or return NULL if DIE does not have a saved type.  */
19585
19586 static struct type *
19587 get_die_type (struct die_info *die, struct dwarf2_cu *cu)
19588 {
19589   return get_die_type_at_offset (die->offset, cu->per_cu);
19590 }
19591
19592 /* Add a dependence relationship from CU to REF_PER_CU.  */
19593
19594 static void
19595 dwarf2_add_dependence (struct dwarf2_cu *cu,
19596                        struct dwarf2_per_cu_data *ref_per_cu)
19597 {
19598   void **slot;
19599
19600   if (cu->dependencies == NULL)
19601     cu->dependencies
19602       = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
19603                               NULL, &cu->comp_unit_obstack,
19604                               hashtab_obstack_allocate,
19605                               dummy_obstack_deallocate);
19606
19607   slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
19608   if (*slot == NULL)
19609     *slot = ref_per_cu;
19610 }
19611
19612 /* Subroutine of dwarf2_mark to pass to htab_traverse.
19613    Set the mark field in every compilation unit in the
19614    cache that we must keep because we are keeping CU.  */
19615
19616 static int
19617 dwarf2_mark_helper (void **slot, void *data)
19618 {
19619   struct dwarf2_per_cu_data *per_cu;
19620
19621   per_cu = (struct dwarf2_per_cu_data *) *slot;
19622
19623   /* cu->dependencies references may not yet have been ever read if QUIT aborts
19624      reading of the chain.  As such dependencies remain valid it is not much
19625      useful to track and undo them during QUIT cleanups.  */
19626   if (per_cu->cu == NULL)
19627     return 1;
19628
19629   if (per_cu->cu->mark)
19630     return 1;
19631   per_cu->cu->mark = 1;
19632
19633   if (per_cu->cu->dependencies != NULL)
19634     htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
19635
19636   return 1;
19637 }
19638
19639 /* Set the mark field in CU and in every other compilation unit in the
19640    cache that we must keep because we are keeping CU.  */
19641
19642 static void
19643 dwarf2_mark (struct dwarf2_cu *cu)
19644 {
19645   if (cu->mark)
19646     return;
19647   cu->mark = 1;
19648   if (cu->dependencies != NULL)
19649     htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
19650 }
19651
19652 static void
19653 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
19654 {
19655   while (per_cu)
19656     {
19657       per_cu->cu->mark = 0;
19658       per_cu = per_cu->cu->read_in_chain;
19659     }
19660 }
19661
19662 /* Trivial hash function for partial_die_info: the hash value of a DIE
19663    is its offset in .debug_info for this objfile.  */
19664
19665 static hashval_t
19666 partial_die_hash (const void *item)
19667 {
19668   const struct partial_die_info *part_die = item;
19669
19670   return part_die->offset.sect_off;
19671 }
19672
19673 /* Trivial comparison function for partial_die_info structures: two DIEs
19674    are equal if they have the same offset.  */
19675
19676 static int
19677 partial_die_eq (const void *item_lhs, const void *item_rhs)
19678 {
19679   const struct partial_die_info *part_die_lhs = item_lhs;
19680   const struct partial_die_info *part_die_rhs = item_rhs;
19681
19682   return part_die_lhs->offset.sect_off == part_die_rhs->offset.sect_off;
19683 }
19684
19685 static struct cmd_list_element *set_dwarf2_cmdlist;
19686 static struct cmd_list_element *show_dwarf2_cmdlist;
19687
19688 static void
19689 set_dwarf2_cmd (char *args, int from_tty)
19690 {
19691   help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout);
19692 }
19693
19694 static void
19695 show_dwarf2_cmd (char *args, int from_tty)
19696 {
19697   cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
19698 }
19699
19700 /* Free data associated with OBJFILE, if necessary.  */
19701
19702 static void
19703 dwarf2_per_objfile_free (struct objfile *objfile, void *d)
19704 {
19705   struct dwarf2_per_objfile *data = d;
19706   int ix;
19707
19708   for (ix = 0; ix < dwarf2_per_objfile->n_comp_units; ++ix)
19709     VEC_free (dwarf2_per_cu_ptr,
19710               dwarf2_per_objfile->all_comp_units[ix]->imported_symtabs);
19711
19712   for (ix = 0; ix < dwarf2_per_objfile->n_type_units; ++ix)
19713     VEC_free (dwarf2_per_cu_ptr,
19714               dwarf2_per_objfile->all_type_units[ix]->per_cu.imported_symtabs);
19715
19716   VEC_free (dwarf2_section_info_def, data->types);
19717
19718   if (data->dwo_files)
19719     free_dwo_files (data->dwo_files, objfile);
19720
19721   if (data->dwz_file && data->dwz_file->dwz_bfd)
19722     gdb_bfd_unref (data->dwz_file->dwz_bfd);
19723 }
19724
19725 \f
19726 /* The "save gdb-index" command.  */
19727
19728 /* The contents of the hash table we create when building the string
19729    table.  */
19730 struct strtab_entry
19731 {
19732   offset_type offset;
19733   const char *str;
19734 };
19735
19736 /* Hash function for a strtab_entry.
19737
19738    Function is used only during write_hash_table so no index format backward
19739    compatibility is needed.  */
19740
19741 static hashval_t
19742 hash_strtab_entry (const void *e)
19743 {
19744   const struct strtab_entry *entry = e;
19745   return mapped_index_string_hash (INT_MAX, entry->str);
19746 }
19747
19748 /* Equality function for a strtab_entry.  */
19749
19750 static int
19751 eq_strtab_entry (const void *a, const void *b)
19752 {
19753   const struct strtab_entry *ea = a;
19754   const struct strtab_entry *eb = b;
19755   return !strcmp (ea->str, eb->str);
19756 }
19757
19758 /* Create a strtab_entry hash table.  */
19759
19760 static htab_t
19761 create_strtab (void)
19762 {
19763   return htab_create_alloc (100, hash_strtab_entry, eq_strtab_entry,
19764                             xfree, xcalloc, xfree);
19765 }
19766
19767 /* Add a string to the constant pool.  Return the string's offset in
19768    host order.  */
19769
19770 static offset_type
19771 add_string (htab_t table, struct obstack *cpool, const char *str)
19772 {
19773   void **slot;
19774   struct strtab_entry entry;
19775   struct strtab_entry *result;
19776
19777   entry.str = str;
19778   slot = htab_find_slot (table, &entry, INSERT);
19779   if (*slot)
19780     result = *slot;
19781   else
19782     {
19783       result = XNEW (struct strtab_entry);
19784       result->offset = obstack_object_size (cpool);
19785       result->str = str;
19786       obstack_grow_str0 (cpool, str);
19787       *slot = result;
19788     }
19789   return result->offset;
19790 }
19791
19792 /* An entry in the symbol table.  */
19793 struct symtab_index_entry
19794 {
19795   /* The name of the symbol.  */
19796   const char *name;
19797   /* The offset of the name in the constant pool.  */
19798   offset_type index_offset;
19799   /* A sorted vector of the indices of all the CUs that hold an object
19800      of this name.  */
19801   VEC (offset_type) *cu_indices;
19802 };
19803
19804 /* The symbol table.  This is a power-of-2-sized hash table.  */
19805 struct mapped_symtab
19806 {
19807   offset_type n_elements;
19808   offset_type size;
19809   struct symtab_index_entry **data;
19810 };
19811
19812 /* Hash function for a symtab_index_entry.  */
19813
19814 static hashval_t
19815 hash_symtab_entry (const void *e)
19816 {
19817   const struct symtab_index_entry *entry = e;
19818   return iterative_hash (VEC_address (offset_type, entry->cu_indices),
19819                          sizeof (offset_type) * VEC_length (offset_type,
19820                                                             entry->cu_indices),
19821                          0);
19822 }
19823
19824 /* Equality function for a symtab_index_entry.  */
19825
19826 static int
19827 eq_symtab_entry (const void *a, const void *b)
19828 {
19829   const struct symtab_index_entry *ea = a;
19830   const struct symtab_index_entry *eb = b;
19831   int len = VEC_length (offset_type, ea->cu_indices);
19832   if (len != VEC_length (offset_type, eb->cu_indices))
19833     return 0;
19834   return !memcmp (VEC_address (offset_type, ea->cu_indices),
19835                   VEC_address (offset_type, eb->cu_indices),
19836                   sizeof (offset_type) * len);
19837 }
19838
19839 /* Destroy a symtab_index_entry.  */
19840
19841 static void
19842 delete_symtab_entry (void *p)
19843 {
19844   struct symtab_index_entry *entry = p;
19845   VEC_free (offset_type, entry->cu_indices);
19846   xfree (entry);
19847 }
19848
19849 /* Create a hash table holding symtab_index_entry objects.  */
19850
19851 static htab_t
19852 create_symbol_hash_table (void)
19853 {
19854   return htab_create_alloc (100, hash_symtab_entry, eq_symtab_entry,
19855                             delete_symtab_entry, xcalloc, xfree);
19856 }
19857
19858 /* Create a new mapped symtab object.  */
19859
19860 static struct mapped_symtab *
19861 create_mapped_symtab (void)
19862 {
19863   struct mapped_symtab *symtab = XNEW (struct mapped_symtab);
19864   symtab->n_elements = 0;
19865   symtab->size = 1024;
19866   symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
19867   return symtab;
19868 }
19869
19870 /* Destroy a mapped_symtab.  */
19871
19872 static void
19873 cleanup_mapped_symtab (void *p)
19874 {
19875   struct mapped_symtab *symtab = p;
19876   /* The contents of the array are freed when the other hash table is
19877      destroyed.  */
19878   xfree (symtab->data);
19879   xfree (symtab);
19880 }
19881
19882 /* Find a slot in SYMTAB for the symbol NAME.  Returns a pointer to
19883    the slot.
19884    
19885    Function is used only during write_hash_table so no index format backward
19886    compatibility is needed.  */
19887
19888 static struct symtab_index_entry **
19889 find_slot (struct mapped_symtab *symtab, const char *name)
19890 {
19891   offset_type index, step, hash = mapped_index_string_hash (INT_MAX, name);
19892
19893   index = hash & (symtab->size - 1);
19894   step = ((hash * 17) & (symtab->size - 1)) | 1;
19895
19896   for (;;)
19897     {
19898       if (!symtab->data[index] || !strcmp (name, symtab->data[index]->name))
19899         return &symtab->data[index];
19900       index = (index + step) & (symtab->size - 1);
19901     }
19902 }
19903
19904 /* Expand SYMTAB's hash table.  */
19905
19906 static void
19907 hash_expand (struct mapped_symtab *symtab)
19908 {
19909   offset_type old_size = symtab->size;
19910   offset_type i;
19911   struct symtab_index_entry **old_entries = symtab->data;
19912
19913   symtab->size *= 2;
19914   symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
19915
19916   for (i = 0; i < old_size; ++i)
19917     {
19918       if (old_entries[i])
19919         {
19920           struct symtab_index_entry **slot = find_slot (symtab,
19921                                                         old_entries[i]->name);
19922           *slot = old_entries[i];
19923         }
19924     }
19925
19926   xfree (old_entries);
19927 }
19928
19929 /* Add an entry to SYMTAB.  NAME is the name of the symbol.
19930    CU_INDEX is the index of the CU in which the symbol appears.
19931    IS_STATIC is one if the symbol is static, otherwise zero (global).  */
19932
19933 static void
19934 add_index_entry (struct mapped_symtab *symtab, const char *name,
19935                  int is_static, gdb_index_symbol_kind kind,
19936                  offset_type cu_index)
19937 {
19938   struct symtab_index_entry **slot;
19939   offset_type cu_index_and_attrs;
19940
19941   ++symtab->n_elements;
19942   if (4 * symtab->n_elements / 3 >= symtab->size)
19943     hash_expand (symtab);
19944
19945   slot = find_slot (symtab, name);
19946   if (!*slot)
19947     {
19948       *slot = XNEW (struct symtab_index_entry);
19949       (*slot)->name = name;
19950       /* index_offset is set later.  */
19951       (*slot)->cu_indices = NULL;
19952     }
19953
19954   cu_index_and_attrs = 0;
19955   DW2_GDB_INDEX_CU_SET_VALUE (cu_index_and_attrs, cu_index);
19956   DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE (cu_index_and_attrs, is_static);
19957   DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE (cu_index_and_attrs, kind);
19958
19959   /* We don't want to record an index value twice as we want to avoid the
19960      duplication.
19961      We process all global symbols and then all static symbols
19962      (which would allow us to avoid the duplication by only having to check
19963      the last entry pushed), but a symbol could have multiple kinds in one CU.
19964      To keep things simple we don't worry about the duplication here and
19965      sort and uniqufy the list after we've processed all symbols.  */
19966   VEC_safe_push (offset_type, (*slot)->cu_indices, cu_index_and_attrs);
19967 }
19968
19969 /* qsort helper routine for uniquify_cu_indices.  */
19970
19971 static int
19972 offset_type_compare (const void *ap, const void *bp)
19973 {
19974   offset_type a = *(offset_type *) ap;
19975   offset_type b = *(offset_type *) bp;
19976
19977   return (a > b) - (b > a);
19978 }
19979
19980 /* Sort and remove duplicates of all symbols' cu_indices lists.  */
19981
19982 static void
19983 uniquify_cu_indices (struct mapped_symtab *symtab)
19984 {
19985   int i;
19986
19987   for (i = 0; i < symtab->size; ++i)
19988     {
19989       struct symtab_index_entry *entry = symtab->data[i];
19990
19991       if (entry
19992           && entry->cu_indices != NULL)
19993         {
19994           unsigned int next_to_insert, next_to_check;
19995           offset_type last_value;
19996
19997           qsort (VEC_address (offset_type, entry->cu_indices),
19998                  VEC_length (offset_type, entry->cu_indices),
19999                  sizeof (offset_type), offset_type_compare);
20000
20001           last_value = VEC_index (offset_type, entry->cu_indices, 0);
20002           next_to_insert = 1;
20003           for (next_to_check = 1;
20004                next_to_check < VEC_length (offset_type, entry->cu_indices);
20005                ++next_to_check)
20006             {
20007               if (VEC_index (offset_type, entry->cu_indices, next_to_check)
20008                   != last_value)
20009                 {
20010                   last_value = VEC_index (offset_type, entry->cu_indices,
20011                                           next_to_check);
20012                   VEC_replace (offset_type, entry->cu_indices, next_to_insert,
20013                                last_value);
20014                   ++next_to_insert;
20015                 }
20016             }
20017           VEC_truncate (offset_type, entry->cu_indices, next_to_insert);
20018         }
20019     }
20020 }
20021
20022 /* Add a vector of indices to the constant pool.  */
20023
20024 static offset_type
20025 add_indices_to_cpool (htab_t symbol_hash_table, struct obstack *cpool,
20026                       struct symtab_index_entry *entry)
20027 {
20028   void **slot;
20029
20030   slot = htab_find_slot (symbol_hash_table, entry, INSERT);
20031   if (!*slot)
20032     {
20033       offset_type len = VEC_length (offset_type, entry->cu_indices);
20034       offset_type val = MAYBE_SWAP (len);
20035       offset_type iter;
20036       int i;
20037
20038       *slot = entry;
20039       entry->index_offset = obstack_object_size (cpool);
20040
20041       obstack_grow (cpool, &val, sizeof (val));
20042       for (i = 0;
20043            VEC_iterate (offset_type, entry->cu_indices, i, iter);
20044            ++i)
20045         {
20046           val = MAYBE_SWAP (iter);
20047           obstack_grow (cpool, &val, sizeof (val));
20048         }
20049     }
20050   else
20051     {
20052       struct symtab_index_entry *old_entry = *slot;
20053       entry->index_offset = old_entry->index_offset;
20054       entry = old_entry;
20055     }
20056   return entry->index_offset;
20057 }
20058
20059 /* Write the mapped hash table SYMTAB to the obstack OUTPUT, with
20060    constant pool entries going into the obstack CPOOL.  */
20061
20062 static void
20063 write_hash_table (struct mapped_symtab *symtab,
20064                   struct obstack *output, struct obstack *cpool)
20065 {
20066   offset_type i;
20067   htab_t symbol_hash_table;
20068   htab_t str_table;
20069
20070   symbol_hash_table = create_symbol_hash_table ();
20071   str_table = create_strtab ();
20072
20073   /* We add all the index vectors to the constant pool first, to
20074      ensure alignment is ok.  */
20075   for (i = 0; i < symtab->size; ++i)
20076     {
20077       if (symtab->data[i])
20078         add_indices_to_cpool (symbol_hash_table, cpool, symtab->data[i]);
20079     }
20080
20081   /* Now write out the hash table.  */
20082   for (i = 0; i < symtab->size; ++i)
20083     {
20084       offset_type str_off, vec_off;
20085
20086       if (symtab->data[i])
20087         {
20088           str_off = add_string (str_table, cpool, symtab->data[i]->name);
20089           vec_off = symtab->data[i]->index_offset;
20090         }
20091       else
20092         {
20093           /* While 0 is a valid constant pool index, it is not valid
20094              to have 0 for both offsets.  */
20095           str_off = 0;
20096           vec_off = 0;
20097         }
20098
20099       str_off = MAYBE_SWAP (str_off);
20100       vec_off = MAYBE_SWAP (vec_off);
20101
20102       obstack_grow (output, &str_off, sizeof (str_off));
20103       obstack_grow (output, &vec_off, sizeof (vec_off));
20104     }
20105
20106   htab_delete (str_table);
20107   htab_delete (symbol_hash_table);
20108 }
20109
20110 /* Struct to map psymtab to CU index in the index file.  */
20111 struct psymtab_cu_index_map
20112 {
20113   struct partial_symtab *psymtab;
20114   unsigned int cu_index;
20115 };
20116
20117 static hashval_t
20118 hash_psymtab_cu_index (const void *item)
20119 {
20120   const struct psymtab_cu_index_map *map = item;
20121
20122   return htab_hash_pointer (map->psymtab);
20123 }
20124
20125 static int
20126 eq_psymtab_cu_index (const void *item_lhs, const void *item_rhs)
20127 {
20128   const struct psymtab_cu_index_map *lhs = item_lhs;
20129   const struct psymtab_cu_index_map *rhs = item_rhs;
20130
20131   return lhs->psymtab == rhs->psymtab;
20132 }
20133
20134 /* Helper struct for building the address table.  */
20135 struct addrmap_index_data
20136 {
20137   struct objfile *objfile;
20138   struct obstack *addr_obstack;
20139   htab_t cu_index_htab;
20140
20141   /* Non-zero if the previous_* fields are valid.
20142      We can't write an entry until we see the next entry (since it is only then
20143      that we know the end of the entry).  */
20144   int previous_valid;
20145   /* Index of the CU in the table of all CUs in the index file.  */
20146   unsigned int previous_cu_index;
20147   /* Start address of the CU.  */
20148   CORE_ADDR previous_cu_start;
20149 };
20150
20151 /* Write an address entry to OBSTACK.  */
20152
20153 static void
20154 add_address_entry (struct objfile *objfile, struct obstack *obstack,
20155                    CORE_ADDR start, CORE_ADDR end, unsigned int cu_index)
20156 {
20157   offset_type cu_index_to_write;
20158   char addr[8];
20159   CORE_ADDR baseaddr;
20160
20161   baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
20162
20163   store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, start - baseaddr);
20164   obstack_grow (obstack, addr, 8);
20165   store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, end - baseaddr);
20166   obstack_grow (obstack, addr, 8);
20167   cu_index_to_write = MAYBE_SWAP (cu_index);
20168   obstack_grow (obstack, &cu_index_to_write, sizeof (offset_type));
20169 }
20170
20171 /* Worker function for traversing an addrmap to build the address table.  */
20172
20173 static int
20174 add_address_entry_worker (void *datap, CORE_ADDR start_addr, void *obj)
20175 {
20176   struct addrmap_index_data *data = datap;
20177   struct partial_symtab *pst = obj;
20178
20179   if (data->previous_valid)
20180     add_address_entry (data->objfile, data->addr_obstack,
20181                        data->previous_cu_start, start_addr,
20182                        data->previous_cu_index);
20183
20184   data->previous_cu_start = start_addr;
20185   if (pst != NULL)
20186     {
20187       struct psymtab_cu_index_map find_map, *map;
20188       find_map.psymtab = pst;
20189       map = htab_find (data->cu_index_htab, &find_map);
20190       gdb_assert (map != NULL);
20191       data->previous_cu_index = map->cu_index;
20192       data->previous_valid = 1;
20193     }
20194   else
20195       data->previous_valid = 0;
20196
20197   return 0;
20198 }
20199
20200 /* Write OBJFILE's address map to OBSTACK.
20201    CU_INDEX_HTAB is used to map addrmap entries to their CU indices
20202    in the index file.  */
20203
20204 static void
20205 write_address_map (struct objfile *objfile, struct obstack *obstack,
20206                    htab_t cu_index_htab)
20207 {
20208   struct addrmap_index_data addrmap_index_data;
20209
20210   /* When writing the address table, we have to cope with the fact that
20211      the addrmap iterator only provides the start of a region; we have to
20212      wait until the next invocation to get the start of the next region.  */
20213
20214   addrmap_index_data.objfile = objfile;
20215   addrmap_index_data.addr_obstack = obstack;
20216   addrmap_index_data.cu_index_htab = cu_index_htab;
20217   addrmap_index_data.previous_valid = 0;
20218
20219   addrmap_foreach (objfile->psymtabs_addrmap, add_address_entry_worker,
20220                    &addrmap_index_data);
20221
20222   /* It's highly unlikely the last entry (end address = 0xff...ff)
20223      is valid, but we should still handle it.
20224      The end address is recorded as the start of the next region, but that
20225      doesn't work here.  To cope we pass 0xff...ff, this is a rare situation
20226      anyway.  */
20227   if (addrmap_index_data.previous_valid)
20228     add_address_entry (objfile, obstack,
20229                        addrmap_index_data.previous_cu_start, (CORE_ADDR) -1,
20230                        addrmap_index_data.previous_cu_index);
20231 }
20232
20233 /* Return the symbol kind of PSYM.  */
20234
20235 static gdb_index_symbol_kind
20236 symbol_kind (struct partial_symbol *psym)
20237 {
20238   domain_enum domain = PSYMBOL_DOMAIN (psym);
20239   enum address_class aclass = PSYMBOL_CLASS (psym);
20240
20241   switch (domain)
20242     {
20243     case VAR_DOMAIN:
20244       switch (aclass)
20245         {
20246         case LOC_BLOCK:
20247           return GDB_INDEX_SYMBOL_KIND_FUNCTION;
20248         case LOC_TYPEDEF:
20249           return GDB_INDEX_SYMBOL_KIND_TYPE;
20250         case LOC_COMPUTED:
20251         case LOC_CONST_BYTES:
20252         case LOC_OPTIMIZED_OUT:
20253         case LOC_STATIC:
20254           return GDB_INDEX_SYMBOL_KIND_VARIABLE;
20255         case LOC_CONST:
20256           /* Note: It's currently impossible to recognize psyms as enum values
20257              short of reading the type info.  For now punt.  */
20258           return GDB_INDEX_SYMBOL_KIND_VARIABLE;
20259         default:
20260           /* There are other LOC_FOO values that one might want to classify
20261              as variables, but dwarf2read.c doesn't currently use them.  */
20262           return GDB_INDEX_SYMBOL_KIND_OTHER;
20263         }
20264     case STRUCT_DOMAIN:
20265       return GDB_INDEX_SYMBOL_KIND_TYPE;
20266     default:
20267       return GDB_INDEX_SYMBOL_KIND_OTHER;
20268     }
20269 }
20270
20271 /* Add a list of partial symbols to SYMTAB.  */
20272
20273 static void
20274 write_psymbols (struct mapped_symtab *symtab,
20275                 htab_t psyms_seen,
20276                 struct partial_symbol **psymp,
20277                 int count,
20278                 offset_type cu_index,
20279                 int is_static)
20280 {
20281   for (; count-- > 0; ++psymp)
20282     {
20283       struct partial_symbol *psym = *psymp;
20284       void **slot;
20285
20286       if (SYMBOL_LANGUAGE (psym) == language_ada)
20287         error (_("Ada is not currently supported by the index"));
20288
20289       /* Only add a given psymbol once.  */
20290       slot = htab_find_slot (psyms_seen, psym, INSERT);
20291       if (!*slot)
20292         {
20293           gdb_index_symbol_kind kind = symbol_kind (psym);
20294
20295           *slot = psym;
20296           add_index_entry (symtab, SYMBOL_SEARCH_NAME (psym),
20297                            is_static, kind, cu_index);
20298         }
20299     }
20300 }
20301
20302 /* Write the contents of an ("unfinished") obstack to FILE.  Throw an
20303    exception if there is an error.  */
20304
20305 static void
20306 write_obstack (FILE *file, struct obstack *obstack)
20307 {
20308   if (fwrite (obstack_base (obstack), 1, obstack_object_size (obstack),
20309               file)
20310       != obstack_object_size (obstack))
20311     error (_("couldn't data write to file"));
20312 }
20313
20314 /* Unlink a file if the argument is not NULL.  */
20315
20316 static void
20317 unlink_if_set (void *p)
20318 {
20319   char **filename = p;
20320   if (*filename)
20321     unlink (*filename);
20322 }
20323
20324 /* A helper struct used when iterating over debug_types.  */
20325 struct signatured_type_index_data
20326 {
20327   struct objfile *objfile;
20328   struct mapped_symtab *symtab;
20329   struct obstack *types_list;
20330   htab_t psyms_seen;
20331   int cu_index;
20332 };
20333
20334 /* A helper function that writes a single signatured_type to an
20335    obstack.  */
20336
20337 static int
20338 write_one_signatured_type (void **slot, void *d)
20339 {
20340   struct signatured_type_index_data *info = d;
20341   struct signatured_type *entry = (struct signatured_type *) *slot;
20342   struct dwarf2_per_cu_data *per_cu = &entry->per_cu;
20343   struct partial_symtab *psymtab = per_cu->v.psymtab;
20344   gdb_byte val[8];
20345
20346   write_psymbols (info->symtab,
20347                   info->psyms_seen,
20348                   info->objfile->global_psymbols.list
20349                   + psymtab->globals_offset,
20350                   psymtab->n_global_syms, info->cu_index,
20351                   0);
20352   write_psymbols (info->symtab,
20353                   info->psyms_seen,
20354                   info->objfile->static_psymbols.list
20355                   + psymtab->statics_offset,
20356                   psymtab->n_static_syms, info->cu_index,
20357                   1);
20358
20359   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
20360                           entry->per_cu.offset.sect_off);
20361   obstack_grow (info->types_list, val, 8);
20362   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
20363                           entry->type_offset_in_tu.cu_off);
20364   obstack_grow (info->types_list, val, 8);
20365   store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->signature);
20366   obstack_grow (info->types_list, val, 8);
20367
20368   ++info->cu_index;
20369
20370   return 1;
20371 }
20372
20373 /* Recurse into all "included" dependencies and write their symbols as
20374    if they appeared in this psymtab.  */
20375
20376 static void
20377 recursively_write_psymbols (struct objfile *objfile,
20378                             struct partial_symtab *psymtab,
20379                             struct mapped_symtab *symtab,
20380                             htab_t psyms_seen,
20381                             offset_type cu_index)
20382 {
20383   int i;
20384
20385   for (i = 0; i < psymtab->number_of_dependencies; ++i)
20386     if (psymtab->dependencies[i]->user != NULL)
20387       recursively_write_psymbols (objfile, psymtab->dependencies[i],
20388                                   symtab, psyms_seen, cu_index);
20389
20390   write_psymbols (symtab,
20391                   psyms_seen,
20392                   objfile->global_psymbols.list + psymtab->globals_offset,
20393                   psymtab->n_global_syms, cu_index,
20394                   0);
20395   write_psymbols (symtab,
20396                   psyms_seen,
20397                   objfile->static_psymbols.list + psymtab->statics_offset,
20398                   psymtab->n_static_syms, cu_index,
20399                   1);
20400 }
20401
20402 /* Create an index file for OBJFILE in the directory DIR.  */
20403
20404 static void
20405 write_psymtabs_to_index (struct objfile *objfile, const char *dir)
20406 {
20407   struct cleanup *cleanup;
20408   char *filename, *cleanup_filename;
20409   struct obstack contents, addr_obstack, constant_pool, symtab_obstack;
20410   struct obstack cu_list, types_cu_list;
20411   int i;
20412   FILE *out_file;
20413   struct mapped_symtab *symtab;
20414   offset_type val, size_of_contents, total_len;
20415   struct stat st;
20416   htab_t psyms_seen;
20417   htab_t cu_index_htab;
20418   struct psymtab_cu_index_map *psymtab_cu_index_map;
20419
20420   if (!objfile->psymtabs || !objfile->psymtabs_addrmap)
20421     return;
20422
20423   if (dwarf2_per_objfile->using_index)
20424     error (_("Cannot use an index to create the index"));
20425
20426   if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) > 1)
20427     error (_("Cannot make an index when the file has multiple .debug_types sections"));
20428
20429   if (stat (objfile->name, &st) < 0)
20430     perror_with_name (objfile->name);
20431
20432   filename = concat (dir, SLASH_STRING, lbasename (objfile->name),
20433                      INDEX_SUFFIX, (char *) NULL);
20434   cleanup = make_cleanup (xfree, filename);
20435
20436   out_file = fopen (filename, "wb");
20437   if (!out_file)
20438     error (_("Can't open `%s' for writing"), filename);
20439
20440   cleanup_filename = filename;
20441   make_cleanup (unlink_if_set, &cleanup_filename);
20442
20443   symtab = create_mapped_symtab ();
20444   make_cleanup (cleanup_mapped_symtab, symtab);
20445
20446   obstack_init (&addr_obstack);
20447   make_cleanup_obstack_free (&addr_obstack);
20448
20449   obstack_init (&cu_list);
20450   make_cleanup_obstack_free (&cu_list);
20451
20452   obstack_init (&types_cu_list);
20453   make_cleanup_obstack_free (&types_cu_list);
20454
20455   psyms_seen = htab_create_alloc (100, htab_hash_pointer, htab_eq_pointer,
20456                                   NULL, xcalloc, xfree);
20457   make_cleanup_htab_delete (psyms_seen);
20458
20459   /* While we're scanning CU's create a table that maps a psymtab pointer
20460      (which is what addrmap records) to its index (which is what is recorded
20461      in the index file).  This will later be needed to write the address
20462      table.  */
20463   cu_index_htab = htab_create_alloc (100,
20464                                      hash_psymtab_cu_index,
20465                                      eq_psymtab_cu_index,
20466                                      NULL, xcalloc, xfree);
20467   make_cleanup_htab_delete (cu_index_htab);
20468   psymtab_cu_index_map = (struct psymtab_cu_index_map *)
20469     xmalloc (sizeof (struct psymtab_cu_index_map)
20470              * dwarf2_per_objfile->n_comp_units);
20471   make_cleanup (xfree, psymtab_cu_index_map);
20472
20473   /* The CU list is already sorted, so we don't need to do additional
20474      work here.  Also, the debug_types entries do not appear in
20475      all_comp_units, but only in their own hash table.  */
20476   for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
20477     {
20478       struct dwarf2_per_cu_data *per_cu
20479         = dwarf2_per_objfile->all_comp_units[i];
20480       struct partial_symtab *psymtab = per_cu->v.psymtab;
20481       gdb_byte val[8];
20482       struct psymtab_cu_index_map *map;
20483       void **slot;
20484
20485       if (psymtab->user == NULL)
20486         recursively_write_psymbols (objfile, psymtab, symtab, psyms_seen, i);
20487
20488       map = &psymtab_cu_index_map[i];
20489       map->psymtab = psymtab;
20490       map->cu_index = i;
20491       slot = htab_find_slot (cu_index_htab, map, INSERT);
20492       gdb_assert (slot != NULL);
20493       gdb_assert (*slot == NULL);
20494       *slot = map;
20495
20496       store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
20497                               per_cu->offset.sect_off);
20498       obstack_grow (&cu_list, val, 8);
20499       store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->length);
20500       obstack_grow (&cu_list, val, 8);
20501     }
20502
20503   /* Dump the address map.  */
20504   write_address_map (objfile, &addr_obstack, cu_index_htab);
20505
20506   /* Write out the .debug_type entries, if any.  */
20507   if (dwarf2_per_objfile->signatured_types)
20508     {
20509       struct signatured_type_index_data sig_data;
20510
20511       sig_data.objfile = objfile;
20512       sig_data.symtab = symtab;
20513       sig_data.types_list = &types_cu_list;
20514       sig_data.psyms_seen = psyms_seen;
20515       sig_data.cu_index = dwarf2_per_objfile->n_comp_units;
20516       htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
20517                               write_one_signatured_type, &sig_data);
20518     }
20519
20520   /* Now that we've processed all symbols we can shrink their cu_indices
20521      lists.  */
20522   uniquify_cu_indices (symtab);
20523
20524   obstack_init (&constant_pool);
20525   make_cleanup_obstack_free (&constant_pool);
20526   obstack_init (&symtab_obstack);
20527   make_cleanup_obstack_free (&symtab_obstack);
20528   write_hash_table (symtab, &symtab_obstack, &constant_pool);
20529
20530   obstack_init (&contents);
20531   make_cleanup_obstack_free (&contents);
20532   size_of_contents = 6 * sizeof (offset_type);
20533   total_len = size_of_contents;
20534
20535   /* The version number.  */
20536   val = MAYBE_SWAP (8);
20537   obstack_grow (&contents, &val, sizeof (val));
20538
20539   /* The offset of the CU list from the start of the file.  */
20540   val = MAYBE_SWAP (total_len);
20541   obstack_grow (&contents, &val, sizeof (val));
20542   total_len += obstack_object_size (&cu_list);
20543
20544   /* The offset of the types CU list from the start of the file.  */
20545   val = MAYBE_SWAP (total_len);
20546   obstack_grow (&contents, &val, sizeof (val));
20547   total_len += obstack_object_size (&types_cu_list);
20548
20549   /* The offset of the address table from the start of the file.  */
20550   val = MAYBE_SWAP (total_len);
20551   obstack_grow (&contents, &val, sizeof (val));
20552   total_len += obstack_object_size (&addr_obstack);
20553
20554   /* The offset of the symbol table from the start of the file.  */
20555   val = MAYBE_SWAP (total_len);
20556   obstack_grow (&contents, &val, sizeof (val));
20557   total_len += obstack_object_size (&symtab_obstack);
20558
20559   /* The offset of the constant pool from the start of the file.  */
20560   val = MAYBE_SWAP (total_len);
20561   obstack_grow (&contents, &val, sizeof (val));
20562   total_len += obstack_object_size (&constant_pool);
20563
20564   gdb_assert (obstack_object_size (&contents) == size_of_contents);
20565
20566   write_obstack (out_file, &contents);
20567   write_obstack (out_file, &cu_list);
20568   write_obstack (out_file, &types_cu_list);
20569   write_obstack (out_file, &addr_obstack);
20570   write_obstack (out_file, &symtab_obstack);
20571   write_obstack (out_file, &constant_pool);
20572
20573   fclose (out_file);
20574
20575   /* We want to keep the file, so we set cleanup_filename to NULL
20576      here.  See unlink_if_set.  */
20577   cleanup_filename = NULL;
20578
20579   do_cleanups (cleanup);
20580 }
20581
20582 /* Implementation of the `save gdb-index' command.
20583    
20584    Note that the file format used by this command is documented in the
20585    GDB manual.  Any changes here must be documented there.  */
20586
20587 static void
20588 save_gdb_index_command (char *arg, int from_tty)
20589 {
20590   struct objfile *objfile;
20591
20592   if (!arg || !*arg)
20593     error (_("usage: save gdb-index DIRECTORY"));
20594
20595   ALL_OBJFILES (objfile)
20596   {
20597     struct stat st;
20598
20599     /* If the objfile does not correspond to an actual file, skip it.  */
20600     if (stat (objfile->name, &st) < 0)
20601       continue;
20602
20603     dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
20604     if (dwarf2_per_objfile)
20605       {
20606         volatile struct gdb_exception except;
20607
20608         TRY_CATCH (except, RETURN_MASK_ERROR)
20609           {
20610             write_psymtabs_to_index (objfile, arg);
20611           }
20612         if (except.reason < 0)
20613           exception_fprintf (gdb_stderr, except,
20614                              _("Error while writing index for `%s': "),
20615                              objfile->name);
20616       }
20617   }
20618 }
20619
20620 \f
20621
20622 int dwarf2_always_disassemble;
20623
20624 static void
20625 show_dwarf2_always_disassemble (struct ui_file *file, int from_tty,
20626                                 struct cmd_list_element *c, const char *value)
20627 {
20628   fprintf_filtered (file,
20629                     _("Whether to always disassemble "
20630                       "DWARF expressions is %s.\n"),
20631                     value);
20632 }
20633
20634 static void
20635 show_check_physname (struct ui_file *file, int from_tty,
20636                      struct cmd_list_element *c, const char *value)
20637 {
20638   fprintf_filtered (file,
20639                     _("Whether to check \"physname\" is %s.\n"),
20640                     value);
20641 }
20642
20643 void _initialize_dwarf2_read (void);
20644
20645 void
20646 _initialize_dwarf2_read (void)
20647 {
20648   struct cmd_list_element *c;
20649
20650   dwarf2_objfile_data_key
20651     = register_objfile_data_with_cleanup (NULL, dwarf2_per_objfile_free);
20652
20653   add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
20654 Set DWARF 2 specific variables.\n\
20655 Configure DWARF 2 variables such as the cache size"),
20656                   &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
20657                   0/*allow-unknown*/, &maintenance_set_cmdlist);
20658
20659   add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
20660 Show DWARF 2 specific variables\n\
20661 Show DWARF 2 variables such as the cache size"),
20662                   &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
20663                   0/*allow-unknown*/, &maintenance_show_cmdlist);
20664
20665   add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
20666                             &dwarf2_max_cache_age, _("\
20667 Set the upper bound on the age of cached dwarf2 compilation units."), _("\
20668 Show the upper bound on the age of cached dwarf2 compilation units."), _("\
20669 A higher limit means that cached compilation units will be stored\n\
20670 in memory longer, and more total memory will be used.  Zero disables\n\
20671 caching, which can slow down startup."),
20672                             NULL,
20673                             show_dwarf2_max_cache_age,
20674                             &set_dwarf2_cmdlist,
20675                             &show_dwarf2_cmdlist);
20676
20677   add_setshow_boolean_cmd ("always-disassemble", class_obscure,
20678                            &dwarf2_always_disassemble, _("\
20679 Set whether `info address' always disassembles DWARF expressions."), _("\
20680 Show whether `info address' always disassembles DWARF expressions."), _("\
20681 When enabled, DWARF expressions are always printed in an assembly-like\n\
20682 syntax.  When disabled, expressions will be printed in a more\n\
20683 conversational style, when possible."),
20684                            NULL,
20685                            show_dwarf2_always_disassemble,
20686                            &set_dwarf2_cmdlist,
20687                            &show_dwarf2_cmdlist);
20688
20689   add_setshow_boolean_cmd ("dwarf2-read", no_class, &dwarf2_read_debug, _("\
20690 Set debugging of the dwarf2 reader."), _("\
20691 Show debugging of the dwarf2 reader."), _("\
20692 When enabled, debugging messages are printed during dwarf2 reading\n\
20693 and symtab expansion."),
20694                             NULL,
20695                             NULL,
20696                             &setdebuglist, &showdebuglist);
20697
20698   add_setshow_zuinteger_cmd ("dwarf2-die", no_class, &dwarf2_die_debug, _("\
20699 Set debugging of the dwarf2 DIE reader."), _("\
20700 Show debugging of the dwarf2 DIE reader."), _("\
20701 When enabled (non-zero), DIEs are dumped after they are read in.\n\
20702 The value is the maximum depth to print."),
20703                              NULL,
20704                              NULL,
20705                              &setdebuglist, &showdebuglist);
20706
20707   add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
20708 Set cross-checking of \"physname\" code against demangler."), _("\
20709 Show cross-checking of \"physname\" code against demangler."), _("\
20710 When enabled, GDB's internal \"physname\" code is checked against\n\
20711 the demangler."),
20712                            NULL, show_check_physname,
20713                            &setdebuglist, &showdebuglist);
20714
20715   add_setshow_boolean_cmd ("use-deprecated-index-sections",
20716                            no_class, &use_deprecated_index_sections, _("\
20717 Set whether to use deprecated gdb_index sections."), _("\
20718 Show whether to use deprecated gdb_index sections."), _("\
20719 When enabled, deprecated .gdb_index sections are used anyway.\n\
20720 Normally they are ignored either because of a missing feature or\n\
20721 performance issue.\n\
20722 Warning: This option must be enabled before gdb reads the file."),
20723                            NULL,
20724                            NULL,
20725                            &setlist, &showlist);
20726
20727   c = add_cmd ("gdb-index", class_files, save_gdb_index_command,
20728                _("\
20729 Save a gdb-index file.\n\
20730 Usage: save gdb-index DIRECTORY"),
20731                &save_cmdlist);
20732   set_cmd_completer (c, filename_completer);
20733
20734   dwarf2_locexpr_index = register_symbol_computed_impl (LOC_COMPUTED,
20735                                                         &dwarf2_locexpr_funcs);
20736   dwarf2_loclist_index = register_symbol_computed_impl (LOC_COMPUTED,
20737                                                         &dwarf2_loclist_funcs);
20738
20739   dwarf2_locexpr_block_index = register_symbol_block_impl (LOC_BLOCK,
20740                                         &dwarf2_block_frame_base_locexpr_funcs);
20741   dwarf2_loclist_block_index = register_symbol_block_impl (LOC_BLOCK,
20742                                         &dwarf2_block_frame_base_loclist_funcs);
20743 }