*** empty log message ***
[binutils-gdb.git] / gdb / dwarf2read.c
1 /* DWARF 2 debugging format support for GDB.
2
3 Copyright (C) 1994-2012 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 "symtab.h"
34 #include "gdbtypes.h"
35 #include "objfiles.h"
36 #include "dwarf2.h"
37 #include "buildsym.h"
38 #include "demangle.h"
39 #include "gdb-demangle.h"
40 #include "expression.h"
41 #include "filenames.h" /* for DOSish file names */
42 #include "macrotab.h"
43 #include "language.h"
44 #include "complaints.h"
45 #include "bcache.h"
46 #include "dwarf2expr.h"
47 #include "dwarf2loc.h"
48 #include "cp-support.h"
49 #include "hashtab.h"
50 #include "command.h"
51 #include "gdbcmd.h"
52 #include "block.h"
53 #include "addrmap.h"
54 #include "typeprint.h"
55 #include "jv-lang.h"
56 #include "psympriv.h"
57 #include "exceptions.h"
58 #include "gdb_stat.h"
59 #include "completer.h"
60 #include "vec.h"
61 #include "c-lang.h"
62 #include "go-lang.h"
63 #include "valprint.h"
64 #include "gdbcore.h" /* for gnutarget */
65 #include "gdb/gdb-index.h"
66 #include <ctype.h>
67 #include "gdb_bfd.h"
68 #include "f-lang.h"
69
70 #include <fcntl.h>
71 #include "gdb_string.h"
72 #include "gdb_assert.h"
73 #include <sys/types.h>
74
75 typedef struct symbol *symbolp;
76 DEF_VEC_P (symbolp);
77
78 /* When non-zero, print basic high level tracing messages.
79 This is in contrast to the low level DIE reading of dwarf2_die_debug. */
80 static int dwarf2_read_debug = 0;
81
82 /* When non-zero, dump DIEs after they are read in. */
83 static unsigned int dwarf2_die_debug = 0;
84
85 /* When non-zero, cross-check physname against demangler. */
86 static int check_physname = 0;
87
88 /* When non-zero, do not reject deprecated .gdb_index sections. */
89 static int use_deprecated_index_sections = 0;
90
91 /* When set, the file that we're processing is known to have debugging
92 info for C++ namespaces. GCC 3.3.x did not produce this information,
93 but later versions do. */
94
95 static int processing_has_namespace_info;
96
97 static const struct objfile_data *dwarf2_objfile_data_key;
98
99 struct dwarf2_section_info
100 {
101 asection *asection;
102 gdb_byte *buffer;
103 bfd_size_type size;
104 /* True if we have tried to read this section. */
105 int readin;
106 };
107
108 typedef struct dwarf2_section_info dwarf2_section_info_def;
109 DEF_VEC_O (dwarf2_section_info_def);
110
111 /* All offsets in the index are of this type. It must be
112 architecture-independent. */
113 typedef uint32_t offset_type;
114
115 DEF_VEC_I (offset_type);
116
117 /* Ensure only legit values are used. */
118 #define DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE(cu_index, value) \
119 do { \
120 gdb_assert ((unsigned int) (value) <= 1); \
121 GDB_INDEX_SYMBOL_STATIC_SET_VALUE((cu_index), (value)); \
122 } while (0)
123
124 /* Ensure only legit values are used. */
125 #define DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE(cu_index, value) \
126 do { \
127 gdb_assert ((value) >= GDB_INDEX_SYMBOL_KIND_TYPE \
128 && (value) <= GDB_INDEX_SYMBOL_KIND_OTHER); \
129 GDB_INDEX_SYMBOL_KIND_SET_VALUE((cu_index), (value)); \
130 } while (0)
131
132 /* Ensure we don't use more than the alloted nuber of bits for the CU. */
133 #define DW2_GDB_INDEX_CU_SET_VALUE(cu_index, value) \
134 do { \
135 gdb_assert (((value) & ~GDB_INDEX_CU_MASK) == 0); \
136 GDB_INDEX_CU_SET_VALUE((cu_index), (value)); \
137 } while (0)
138
139 /* A description of the mapped index. The file format is described in
140 a comment by the code that writes the index. */
141 struct mapped_index
142 {
143 /* Index data format version. */
144 int version;
145
146 /* The total length of the buffer. */
147 off_t total_size;
148
149 /* A pointer to the address table data. */
150 const gdb_byte *address_table;
151
152 /* Size of the address table data in bytes. */
153 offset_type address_table_size;
154
155 /* The symbol table, implemented as a hash table. */
156 const offset_type *symbol_table;
157
158 /* Size in slots, each slot is 2 offset_types. */
159 offset_type symbol_table_slots;
160
161 /* A pointer to the constant pool. */
162 const char *constant_pool;
163 };
164
165 typedef struct dwarf2_per_cu_data *dwarf2_per_cu_ptr;
166 DEF_VEC_P (dwarf2_per_cu_ptr);
167
168 /* Collection of data recorded per objfile.
169 This hangs off of dwarf2_objfile_data_key. */
170
171 struct dwarf2_per_objfile
172 {
173 struct dwarf2_section_info info;
174 struct dwarf2_section_info abbrev;
175 struct dwarf2_section_info line;
176 struct dwarf2_section_info loc;
177 struct dwarf2_section_info macinfo;
178 struct dwarf2_section_info macro;
179 struct dwarf2_section_info str;
180 struct dwarf2_section_info ranges;
181 struct dwarf2_section_info addr;
182 struct dwarf2_section_info frame;
183 struct dwarf2_section_info eh_frame;
184 struct dwarf2_section_info gdb_index;
185
186 VEC (dwarf2_section_info_def) *types;
187
188 /* Back link. */
189 struct objfile *objfile;
190
191 /* Table of all the compilation units. This is used to locate
192 the target compilation unit of a particular reference. */
193 struct dwarf2_per_cu_data **all_comp_units;
194
195 /* The number of compilation units in ALL_COMP_UNITS. */
196 int n_comp_units;
197
198 /* The number of .debug_types-related CUs. */
199 int n_type_units;
200
201 /* The .debug_types-related CUs (TUs). */
202 struct signatured_type **all_type_units;
203
204 /* The number of entries in all_type_unit_groups. */
205 int n_type_unit_groups;
206
207 /* Table of type unit groups.
208 This exists to make it easy to iterate over all CUs and TU groups. */
209 struct type_unit_group **all_type_unit_groups;
210
211 /* Table of struct type_unit_group objects.
212 The hash key is the DW_AT_stmt_list value. */
213 htab_t type_unit_groups;
214
215 /* A table mapping .debug_types signatures to its signatured_type entry.
216 This is NULL if the .debug_types section hasn't been read in yet. */
217 htab_t signatured_types;
218
219 /* Type unit statistics, to see how well the scaling improvements
220 are doing. */
221 struct tu_stats
222 {
223 int nr_uniq_abbrev_tables;
224 int nr_symtabs;
225 int nr_symtab_sharers;
226 int nr_stmt_less_type_units;
227 } tu_stats;
228
229 /* A chain of compilation units that are currently read in, so that
230 they can be freed later. */
231 struct dwarf2_per_cu_data *read_in_chain;
232
233 /* A table mapping DW_AT_dwo_name values to struct dwo_file objects.
234 This is NULL if the table hasn't been allocated yet. */
235 htab_t dwo_files;
236
237 /* The shared '.dwz' file, if one exists. This is used when the
238 original data was compressed using 'dwz -m'. */
239 struct dwz_file *dwz_file;
240
241 /* A flag indicating wether this objfile has a section loaded at a
242 VMA of 0. */
243 int has_section_at_zero;
244
245 /* True if we are using the mapped index,
246 or we are faking it for OBJF_READNOW's sake. */
247 unsigned char using_index;
248
249 /* The mapped index, or NULL if .gdb_index is missing or not being used. */
250 struct mapped_index *index_table;
251
252 /* When using index_table, this keeps track of all quick_file_names entries.
253 TUs can share line table entries with CUs or other TUs, and there can be
254 a lot more TUs than unique line tables, so we maintain a separate table
255 of all line table entries to support the sharing. */
256 htab_t quick_file_names_table;
257
258 /* Set during partial symbol reading, to prevent queueing of full
259 symbols. */
260 int reading_partial_symbols;
261
262 /* Table mapping type DIEs to their struct type *.
263 This is NULL if not allocated yet.
264 The mapping is done via (CU/TU signature + DIE offset) -> type. */
265 htab_t die_type_hash;
266
267 /* The CUs we recently read. */
268 VEC (dwarf2_per_cu_ptr) *just_read_cus;
269 };
270
271 static struct dwarf2_per_objfile *dwarf2_per_objfile;
272
273 /* Default names of the debugging sections. */
274
275 /* Note that if the debugging section has been compressed, it might
276 have a name like .zdebug_info. */
277
278 static const struct dwarf2_debug_sections dwarf2_elf_names =
279 {
280 { ".debug_info", ".zdebug_info" },
281 { ".debug_abbrev", ".zdebug_abbrev" },
282 { ".debug_line", ".zdebug_line" },
283 { ".debug_loc", ".zdebug_loc" },
284 { ".debug_macinfo", ".zdebug_macinfo" },
285 { ".debug_macro", ".zdebug_macro" },
286 { ".debug_str", ".zdebug_str" },
287 { ".debug_ranges", ".zdebug_ranges" },
288 { ".debug_types", ".zdebug_types" },
289 { ".debug_addr", ".zdebug_addr" },
290 { ".debug_frame", ".zdebug_frame" },
291 { ".eh_frame", NULL },
292 { ".gdb_index", ".zgdb_index" },
293 23
294 };
295
296 /* List of DWO sections. */
297
298 static const struct dwo_section_names
299 {
300 struct dwarf2_section_names abbrev_dwo;
301 struct dwarf2_section_names info_dwo;
302 struct dwarf2_section_names line_dwo;
303 struct dwarf2_section_names loc_dwo;
304 struct dwarf2_section_names macinfo_dwo;
305 struct dwarf2_section_names macro_dwo;
306 struct dwarf2_section_names str_dwo;
307 struct dwarf2_section_names str_offsets_dwo;
308 struct dwarf2_section_names types_dwo;
309 }
310 dwo_section_names =
311 {
312 { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo" },
313 { ".debug_info.dwo", ".zdebug_info.dwo" },
314 { ".debug_line.dwo", ".zdebug_line.dwo" },
315 { ".debug_loc.dwo", ".zdebug_loc.dwo" },
316 { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo" },
317 { ".debug_macro.dwo", ".zdebug_macro.dwo" },
318 { ".debug_str.dwo", ".zdebug_str.dwo" },
319 { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo" },
320 { ".debug_types.dwo", ".zdebug_types.dwo" },
321 };
322
323 /* local data types */
324
325 /* The data in a compilation unit header, after target2host
326 translation, looks like this. */
327 struct comp_unit_head
328 {
329 unsigned int length;
330 short version;
331 unsigned char addr_size;
332 unsigned char signed_addr_p;
333 sect_offset abbrev_offset;
334
335 /* Size of file offsets; either 4 or 8. */
336 unsigned int offset_size;
337
338 /* Size of the length field; either 4 or 12. */
339 unsigned int initial_length_size;
340
341 /* Offset to the first byte of this compilation unit header in the
342 .debug_info section, for resolving relative reference dies. */
343 sect_offset offset;
344
345 /* Offset to first die in this cu from the start of the cu.
346 This will be the first byte following the compilation unit header. */
347 cu_offset first_die_offset;
348 };
349
350 /* Type used for delaying computation of method physnames.
351 See comments for compute_delayed_physnames. */
352 struct delayed_method_info
353 {
354 /* The type to which the method is attached, i.e., its parent class. */
355 struct type *type;
356
357 /* The index of the method in the type's function fieldlists. */
358 int fnfield_index;
359
360 /* The index of the method in the fieldlist. */
361 int index;
362
363 /* The name of the DIE. */
364 const char *name;
365
366 /* The DIE associated with this method. */
367 struct die_info *die;
368 };
369
370 typedef struct delayed_method_info delayed_method_info;
371 DEF_VEC_O (delayed_method_info);
372
373 /* Internal state when decoding a particular compilation unit. */
374 struct dwarf2_cu
375 {
376 /* The objfile containing this compilation unit. */
377 struct objfile *objfile;
378
379 /* The header of the compilation unit. */
380 struct comp_unit_head header;
381
382 /* Base address of this compilation unit. */
383 CORE_ADDR base_address;
384
385 /* Non-zero if base_address has been set. */
386 int base_known;
387
388 /* The language we are debugging. */
389 enum language language;
390 const struct language_defn *language_defn;
391
392 const char *producer;
393
394 /* The generic symbol table building routines have separate lists for
395 file scope symbols and all all other scopes (local scopes). So
396 we need to select the right one to pass to add_symbol_to_list().
397 We do it by keeping a pointer to the correct list in list_in_scope.
398
399 FIXME: The original dwarf code just treated the file scope as the
400 first local scope, and all other local scopes as nested local
401 scopes, and worked fine. Check to see if we really need to
402 distinguish these in buildsym.c. */
403 struct pending **list_in_scope;
404
405 /* The abbrev table for this CU.
406 Normally this points to the abbrev table in the objfile.
407 But if DWO_UNIT is non-NULL this is the abbrev table in the DWO file. */
408 struct abbrev_table *abbrev_table;
409
410 /* Hash table holding all the loaded partial DIEs
411 with partial_die->offset.SECT_OFF as hash. */
412 htab_t partial_dies;
413
414 /* Storage for things with the same lifetime as this read-in compilation
415 unit, including partial DIEs. */
416 struct obstack comp_unit_obstack;
417
418 /* When multiple dwarf2_cu structures are living in memory, this field
419 chains them all together, so that they can be released efficiently.
420 We will probably also want a generation counter so that most-recently-used
421 compilation units are cached... */
422 struct dwarf2_per_cu_data *read_in_chain;
423
424 /* Backchain to our per_cu entry if the tree has been built. */
425 struct dwarf2_per_cu_data *per_cu;
426
427 /* How many compilation units ago was this CU last referenced? */
428 int last_used;
429
430 /* A hash table of DIE cu_offset for following references with
431 die_info->offset.sect_off as hash. */
432 htab_t die_hash;
433
434 /* Full DIEs if read in. */
435 struct die_info *dies;
436
437 /* A set of pointers to dwarf2_per_cu_data objects for compilation
438 units referenced by this one. Only set during full symbol processing;
439 partial symbol tables do not have dependencies. */
440 htab_t dependencies;
441
442 /* Header data from the line table, during full symbol processing. */
443 struct line_header *line_header;
444
445 /* A list of methods which need to have physnames computed
446 after all type information has been read. */
447 VEC (delayed_method_info) *method_list;
448
449 /* To be copied to symtab->call_site_htab. */
450 htab_t call_site_htab;
451
452 /* Non-NULL if this CU came from a DWO file.
453 There is an invariant here that is important to remember:
454 Except for attributes copied from the top level DIE in the "main"
455 (or "stub") file in preparation for reading the DWO file
456 (e.g., DW_AT_GNU_addr_base), we KISS: there is only *one* CU.
457 Either there isn't a DWO file (in which case this is NULL and the point
458 is moot), or there is and either we're not going to read it (in which
459 case this is NULL) or there is and we are reading it (in which case this
460 is non-NULL). */
461 struct dwo_unit *dwo_unit;
462
463 /* The DW_AT_addr_base attribute if present, zero otherwise
464 (zero is a valid value though).
465 Note this value comes from the stub CU/TU's DIE. */
466 ULONGEST addr_base;
467
468 /* The DW_AT_ranges_base attribute if present, zero otherwise
469 (zero is a valid value though).
470 Note this value comes from the stub CU/TU's DIE.
471 Also note that the value is zero in the non-DWO case so this value can
472 be used without needing to know whether DWO files are in use or not. */
473 ULONGEST ranges_base;
474
475 /* Mark used when releasing cached dies. */
476 unsigned int mark : 1;
477
478 /* This CU references .debug_loc. See the symtab->locations_valid field.
479 This test is imperfect as there may exist optimized debug code not using
480 any location list and still facing inlining issues if handled as
481 unoptimized code. For a future better test see GCC PR other/32998. */
482 unsigned int has_loclist : 1;
483
484 /* These cache the results for producer_is_gxx_lt_4_6 and producer_is_icc.
485 CHECKED_PRODUCER is set if both PRODUCER_IS_GXX_LT_4_6 and PRODUCER_IS_ICC
486 are valid. This information is cached because profiling CU expansion
487 showed excessive time spent in producer_is_gxx_lt_4_6. */
488 unsigned int checked_producer : 1;
489 unsigned int producer_is_gxx_lt_4_6 : 1;
490 unsigned int producer_is_icc : 1;
491 };
492
493 /* Persistent data held for a compilation unit, even when not
494 processing it. We put a pointer to this structure in the
495 read_symtab_private field of the psymtab. */
496
497 struct dwarf2_per_cu_data
498 {
499 /* The start offset and length of this compilation unit.
500 NOTE: Unlike comp_unit_head.length, this length includes
501 initial_length_size.
502 If the DIE refers to a DWO file, this is always of the original die,
503 not the DWO file. */
504 sect_offset offset;
505 unsigned int length;
506
507 /* Flag indicating this compilation unit will be read in before
508 any of the current compilation units are processed. */
509 unsigned int queued : 1;
510
511 /* This flag will be set when reading partial DIEs if we need to load
512 absolutely all DIEs for this compilation unit, instead of just the ones
513 we think are interesting. It gets set if we look for a DIE in the
514 hash table and don't find it. */
515 unsigned int load_all_dies : 1;
516
517 /* Non-zero if this CU is from .debug_types. */
518 unsigned int is_debug_types : 1;
519
520 /* Non-zero if this CU is from the .dwz file. */
521 unsigned int is_dwz : 1;
522
523 /* The section this CU/TU lives in.
524 If the DIE refers to a DWO file, this is always the original die,
525 not the DWO file. */
526 struct dwarf2_section_info *info_or_types_section;
527
528 /* Set to non-NULL iff this CU is currently loaded. When it gets freed out
529 of the CU cache it gets reset to NULL again. */
530 struct dwarf2_cu *cu;
531
532 /* The corresponding objfile.
533 Normally we can get the objfile from dwarf2_per_objfile.
534 However we can enter this file with just a "per_cu" handle. */
535 struct objfile *objfile;
536
537 /* When using partial symbol tables, the 'psymtab' field is active.
538 Otherwise the 'quick' field is active. */
539 union
540 {
541 /* The partial symbol table associated with this compilation unit,
542 or NULL for unread partial units. */
543 struct partial_symtab *psymtab;
544
545 /* Data needed by the "quick" functions. */
546 struct dwarf2_per_cu_quick_data *quick;
547 } v;
548
549 union
550 {
551 /* The CUs we import using DW_TAG_imported_unit. This is filled in
552 while reading psymtabs, used to compute the psymtab dependencies,
553 and then cleared. Then it is filled in again while reading full
554 symbols, and only deleted when the objfile is destroyed. */
555 VEC (dwarf2_per_cu_ptr) *imported_symtabs;
556
557 /* Type units are grouped by their DW_AT_stmt_list entry so that they
558 can share them. If this is a TU, this points to the containing
559 symtab. */
560 struct type_unit_group *type_unit_group;
561 } s;
562 };
563
564 /* Entry in the signatured_types hash table. */
565
566 struct signatured_type
567 {
568 /* The "per_cu" object of this type.
569 N.B.: This is the first member so that it's easy to convert pointers
570 between them. */
571 struct dwarf2_per_cu_data per_cu;
572
573 /* The type's signature. */
574 ULONGEST signature;
575
576 /* Offset in the TU of the type's DIE, as read from the TU header.
577 If the definition lives in a DWO file, this value is unusable. */
578 cu_offset type_offset_in_tu;
579
580 /* Offset in the section of the type's DIE.
581 If the definition lives in a DWO file, this is the offset in the
582 .debug_types.dwo section.
583 The value is zero until the actual value is known.
584 Zero is otherwise not a valid section offset. */
585 sect_offset type_offset_in_section;
586 };
587
588 /* A struct that can be used as a hash key for tables based on DW_AT_stmt_list.
589 This includes type_unit_group and quick_file_names. */
590
591 struct stmt_list_hash
592 {
593 /* The DWO unit this table is from or NULL if there is none. */
594 struct dwo_unit *dwo_unit;
595
596 /* Offset in .debug_line or .debug_line.dwo. */
597 sect_offset line_offset;
598 };
599
600 /* Each element of dwarf2_per_objfile->type_unit_groups is a pointer to
601 an object of this type. */
602
603 struct type_unit_group
604 {
605 /* dwarf2read.c's main "handle" on the symtab.
606 To simplify things we create an artificial CU that "includes" all the
607 type units using this stmt_list so that the rest of the code still has
608 a "per_cu" handle on the symtab.
609 This PER_CU is recognized by having no section. */
610 #define IS_TYPE_UNIT_GROUP(per_cu) ((per_cu)->info_or_types_section == NULL)
611 struct dwarf2_per_cu_data per_cu;
612
613 union
614 {
615 /* The TUs that share this DW_AT_stmt_list entry.
616 This is added to while parsing type units to build partial symtabs,
617 and is deleted afterwards and not used again. */
618 VEC (dwarf2_per_cu_ptr) *tus;
619
620 /* When reading the line table in "quick" functions, we need a real TU.
621 Any will do, we know they all share the same DW_AT_stmt_list entry.
622 For simplicity's sake, we pick the first one. */
623 struct dwarf2_per_cu_data *first_tu;
624 } t;
625
626 /* The primary symtab.
627 Type units in a group needn't all be defined in the same source file,
628 so we create an essentially anonymous symtab as the primary symtab. */
629 struct symtab *primary_symtab;
630
631 /* The data used to construct the hash key. */
632 struct stmt_list_hash hash;
633
634 /* The number of symtabs from the line header.
635 The value here must match line_header.num_file_names. */
636 unsigned int num_symtabs;
637
638 /* The symbol tables for this TU (obtained from the files listed in
639 DW_AT_stmt_list).
640 WARNING: The order of entries here must match the order of entries
641 in the line header. After the first TU using this type_unit_group, the
642 line header for the subsequent TUs is recreated from this. This is done
643 because we need to use the same symtabs for each TU using the same
644 DW_AT_stmt_list value. Also note that symtabs may be repeated here,
645 there's no guarantee the line header doesn't have duplicate entries. */
646 struct symtab **symtabs;
647 };
648
649 /* These sections are what may appear in a "dwo" file. */
650
651 struct dwo_sections
652 {
653 struct dwarf2_section_info abbrev;
654 struct dwarf2_section_info info;
655 struct dwarf2_section_info line;
656 struct dwarf2_section_info loc;
657 struct dwarf2_section_info macinfo;
658 struct dwarf2_section_info macro;
659 struct dwarf2_section_info str;
660 struct dwarf2_section_info str_offsets;
661 VEC (dwarf2_section_info_def) *types;
662 };
663
664 /* Common bits of DWO CUs/TUs. */
665
666 struct dwo_unit
667 {
668 /* Backlink to the containing struct dwo_file. */
669 struct dwo_file *dwo_file;
670
671 /* The "id" that distinguishes this CU/TU.
672 .debug_info calls this "dwo_id", .debug_types calls this "signature".
673 Since signatures came first, we stick with it for consistency. */
674 ULONGEST signature;
675
676 /* The section this CU/TU lives in, in the DWO file. */
677 struct dwarf2_section_info *info_or_types_section;
678
679 /* Same as dwarf2_per_cu_data:{offset,length} but for the DWO section. */
680 sect_offset offset;
681 unsigned int length;
682
683 /* For types, offset in the type's DIE of the type defined by this TU. */
684 cu_offset type_offset_in_tu;
685 };
686
687 /* Data for one DWO file. */
688
689 struct dwo_file
690 {
691 /* The DW_AT_GNU_dwo_name attribute.
692 We don't manage space for this, it's an attribute. */
693 const char *dwo_name;
694
695 /* The bfd, when the file is open. Otherwise this is NULL. */
696 bfd *dwo_bfd;
697
698 /* Section info for this file. */
699 struct dwo_sections sections;
700
701 /* Table of CUs in the file.
702 Each element is a struct dwo_unit. */
703 htab_t cus;
704
705 /* Table of TUs in the file.
706 Each element is a struct dwo_unit. */
707 htab_t tus;
708 };
709
710 /* This represents a '.dwz' file. */
711
712 struct dwz_file
713 {
714 /* A dwz file can only contain a few sections. */
715 struct dwarf2_section_info abbrev;
716 struct dwarf2_section_info info;
717 struct dwarf2_section_info str;
718 struct dwarf2_section_info line;
719 struct dwarf2_section_info macro;
720 struct dwarf2_section_info gdb_index;
721
722 /* The dwz's BFD. */
723 bfd *dwz_bfd;
724 };
725
726 /* Struct used to pass misc. parameters to read_die_and_children, et
727 al. which are used for both .debug_info and .debug_types dies.
728 All parameters here are unchanging for the life of the call. This
729 struct exists to abstract away the constant parameters of die reading. */
730
731 struct die_reader_specs
732 {
733 /* die_section->asection->owner. */
734 bfd* abfd;
735
736 /* The CU of the DIE we are parsing. */
737 struct dwarf2_cu *cu;
738
739 /* Non-NULL if reading a DWO file. */
740 struct dwo_file *dwo_file;
741
742 /* The section the die comes from.
743 This is either .debug_info or .debug_types, or the .dwo variants. */
744 struct dwarf2_section_info *die_section;
745
746 /* die_section->buffer. */
747 gdb_byte *buffer;
748
749 /* The end of the buffer. */
750 const gdb_byte *buffer_end;
751 };
752
753 /* Type of function passed to init_cutu_and_read_dies, et.al. */
754 typedef void (die_reader_func_ftype) (const struct die_reader_specs *reader,
755 gdb_byte *info_ptr,
756 struct die_info *comp_unit_die,
757 int has_children,
758 void *data);
759
760 /* The line number information for a compilation unit (found in the
761 .debug_line section) begins with a "statement program header",
762 which contains the following information. */
763 struct line_header
764 {
765 unsigned int total_length;
766 unsigned short version;
767 unsigned int header_length;
768 unsigned char minimum_instruction_length;
769 unsigned char maximum_ops_per_instruction;
770 unsigned char default_is_stmt;
771 int line_base;
772 unsigned char line_range;
773 unsigned char opcode_base;
774
775 /* standard_opcode_lengths[i] is the number of operands for the
776 standard opcode whose value is i. This means that
777 standard_opcode_lengths[0] is unused, and the last meaningful
778 element is standard_opcode_lengths[opcode_base - 1]. */
779 unsigned char *standard_opcode_lengths;
780
781 /* The include_directories table. NOTE! These strings are not
782 allocated with xmalloc; instead, they are pointers into
783 debug_line_buffer. If you try to free them, `free' will get
784 indigestion. */
785 unsigned int num_include_dirs, include_dirs_size;
786 char **include_dirs;
787
788 /* The file_names table. NOTE! These strings are not allocated
789 with xmalloc; instead, they are pointers into debug_line_buffer.
790 Don't try to free them directly. */
791 unsigned int num_file_names, file_names_size;
792 struct file_entry
793 {
794 char *name;
795 unsigned int dir_index;
796 unsigned int mod_time;
797 unsigned int length;
798 int included_p; /* Non-zero if referenced by the Line Number Program. */
799 struct symtab *symtab; /* The associated symbol table, if any. */
800 } *file_names;
801
802 /* The start and end of the statement program following this
803 header. These point into dwarf2_per_objfile->line_buffer. */
804 gdb_byte *statement_program_start, *statement_program_end;
805 };
806
807 /* When we construct a partial symbol table entry we only
808 need this much information. */
809 struct partial_die_info
810 {
811 /* Offset of this DIE. */
812 sect_offset offset;
813
814 /* DWARF-2 tag for this DIE. */
815 ENUM_BITFIELD(dwarf_tag) tag : 16;
816
817 /* Assorted flags describing the data found in this DIE. */
818 unsigned int has_children : 1;
819 unsigned int is_external : 1;
820 unsigned int is_declaration : 1;
821 unsigned int has_type : 1;
822 unsigned int has_specification : 1;
823 unsigned int has_pc_info : 1;
824 unsigned int may_be_inlined : 1;
825
826 /* Flag set if the SCOPE field of this structure has been
827 computed. */
828 unsigned int scope_set : 1;
829
830 /* Flag set if the DIE has a byte_size attribute. */
831 unsigned int has_byte_size : 1;
832
833 /* Flag set if any of the DIE's children are template arguments. */
834 unsigned int has_template_arguments : 1;
835
836 /* Flag set if fixup_partial_die has been called on this die. */
837 unsigned int fixup_called : 1;
838
839 /* Flag set if DW_TAG_imported_unit uses DW_FORM_GNU_ref_alt. */
840 unsigned int is_dwz : 1;
841
842 /* Flag set if spec_offset uses DW_FORM_GNU_ref_alt. */
843 unsigned int spec_is_dwz : 1;
844
845 /* The name of this DIE. Normally the value of DW_AT_name, but
846 sometimes a default name for unnamed DIEs. */
847 char *name;
848
849 /* The linkage name, if present. */
850 const char *linkage_name;
851
852 /* The scope to prepend to our children. This is generally
853 allocated on the comp_unit_obstack, so will disappear
854 when this compilation unit leaves the cache. */
855 char *scope;
856
857 /* Some data associated with the partial DIE. The tag determines
858 which field is live. */
859 union
860 {
861 /* The location description associated with this DIE, if any. */
862 struct dwarf_block *locdesc;
863 /* The offset of an import, for DW_TAG_imported_unit. */
864 sect_offset offset;
865 } d;
866
867 /* If HAS_PC_INFO, the PC range associated with this DIE. */
868 CORE_ADDR lowpc;
869 CORE_ADDR highpc;
870
871 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
872 DW_AT_sibling, if any. */
873 /* NOTE: This member isn't strictly necessary, read_partial_die could
874 return DW_AT_sibling values to its caller load_partial_dies. */
875 gdb_byte *sibling;
876
877 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
878 DW_AT_specification (or DW_AT_abstract_origin or
879 DW_AT_extension). */
880 sect_offset spec_offset;
881
882 /* Pointers to this DIE's parent, first child, and next sibling,
883 if any. */
884 struct partial_die_info *die_parent, *die_child, *die_sibling;
885 };
886
887 /* This data structure holds the information of an abbrev. */
888 struct abbrev_info
889 {
890 unsigned int number; /* number identifying abbrev */
891 enum dwarf_tag tag; /* dwarf tag */
892 unsigned short has_children; /* boolean */
893 unsigned short num_attrs; /* number of attributes */
894 struct attr_abbrev *attrs; /* an array of attribute descriptions */
895 struct abbrev_info *next; /* next in chain */
896 };
897
898 struct attr_abbrev
899 {
900 ENUM_BITFIELD(dwarf_attribute) name : 16;
901 ENUM_BITFIELD(dwarf_form) form : 16;
902 };
903
904 /* Size of abbrev_table.abbrev_hash_table. */
905 #define ABBREV_HASH_SIZE 121
906
907 /* Top level data structure to contain an abbreviation table. */
908
909 struct abbrev_table
910 {
911 /* Where the abbrev table came from.
912 This is used as a sanity check when the table is used. */
913 sect_offset offset;
914
915 /* Storage for the abbrev table. */
916 struct obstack abbrev_obstack;
917
918 /* Hash table of abbrevs.
919 This is an array of size ABBREV_HASH_SIZE allocated in abbrev_obstack.
920 It could be statically allocated, but the previous code didn't so we
921 don't either. */
922 struct abbrev_info **abbrevs;
923 };
924
925 /* Attributes have a name and a value. */
926 struct attribute
927 {
928 ENUM_BITFIELD(dwarf_attribute) name : 16;
929 ENUM_BITFIELD(dwarf_form) form : 15;
930
931 /* Has DW_STRING already been updated by dwarf2_canonicalize_name? This
932 field should be in u.str (existing only for DW_STRING) but it is kept
933 here for better struct attribute alignment. */
934 unsigned int string_is_canonical : 1;
935
936 union
937 {
938 char *str;
939 struct dwarf_block *blk;
940 ULONGEST unsnd;
941 LONGEST snd;
942 CORE_ADDR addr;
943 struct signatured_type *signatured_type;
944 }
945 u;
946 };
947
948 /* This data structure holds a complete die structure. */
949 struct die_info
950 {
951 /* DWARF-2 tag for this DIE. */
952 ENUM_BITFIELD(dwarf_tag) tag : 16;
953
954 /* Number of attributes */
955 unsigned char num_attrs;
956
957 /* True if we're presently building the full type name for the
958 type derived from this DIE. */
959 unsigned char building_fullname : 1;
960
961 /* Abbrev number */
962 unsigned int abbrev;
963
964 /* Offset in .debug_info or .debug_types section. */
965 sect_offset offset;
966
967 /* The dies in a compilation unit form an n-ary tree. PARENT
968 points to this die's parent; CHILD points to the first child of
969 this node; and all the children of a given node are chained
970 together via their SIBLING fields. */
971 struct die_info *child; /* Its first child, if any. */
972 struct die_info *sibling; /* Its next sibling, if any. */
973 struct die_info *parent; /* Its parent, if any. */
974
975 /* An array of attributes, with NUM_ATTRS elements. There may be
976 zero, but it's not common and zero-sized arrays are not
977 sufficiently portable C. */
978 struct attribute attrs[1];
979 };
980
981 /* Get at parts of an attribute structure. */
982
983 #define DW_STRING(attr) ((attr)->u.str)
984 #define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
985 #define DW_UNSND(attr) ((attr)->u.unsnd)
986 #define DW_BLOCK(attr) ((attr)->u.blk)
987 #define DW_SND(attr) ((attr)->u.snd)
988 #define DW_ADDR(attr) ((attr)->u.addr)
989 #define DW_SIGNATURED_TYPE(attr) ((attr)->u.signatured_type)
990
991 /* Blocks are a bunch of untyped bytes. */
992 struct dwarf_block
993 {
994 size_t size;
995
996 /* Valid only if SIZE is not zero. */
997 gdb_byte *data;
998 };
999
1000 #ifndef ATTR_ALLOC_CHUNK
1001 #define ATTR_ALLOC_CHUNK 4
1002 #endif
1003
1004 /* Allocate fields for structs, unions and enums in this size. */
1005 #ifndef DW_FIELD_ALLOC_CHUNK
1006 #define DW_FIELD_ALLOC_CHUNK 4
1007 #endif
1008
1009 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
1010 but this would require a corresponding change in unpack_field_as_long
1011 and friends. */
1012 static int bits_per_byte = 8;
1013
1014 /* The routines that read and process dies for a C struct or C++ class
1015 pass lists of data member fields and lists of member function fields
1016 in an instance of a field_info structure, as defined below. */
1017 struct field_info
1018 {
1019 /* List of data member and baseclasses fields. */
1020 struct nextfield
1021 {
1022 struct nextfield *next;
1023 int accessibility;
1024 int virtuality;
1025 struct field field;
1026 }
1027 *fields, *baseclasses;
1028
1029 /* Number of fields (including baseclasses). */
1030 int nfields;
1031
1032 /* Number of baseclasses. */
1033 int nbaseclasses;
1034
1035 /* Set if the accesibility of one of the fields is not public. */
1036 int non_public_fields;
1037
1038 /* Member function fields array, entries are allocated in the order they
1039 are encountered in the object file. */
1040 struct nextfnfield
1041 {
1042 struct nextfnfield *next;
1043 struct fn_field fnfield;
1044 }
1045 *fnfields;
1046
1047 /* Member function fieldlist array, contains name of possibly overloaded
1048 member function, number of overloaded member functions and a pointer
1049 to the head of the member function field chain. */
1050 struct fnfieldlist
1051 {
1052 char *name;
1053 int length;
1054 struct nextfnfield *head;
1055 }
1056 *fnfieldlists;
1057
1058 /* Number of entries in the fnfieldlists array. */
1059 int nfnfields;
1060
1061 /* typedefs defined inside this class. TYPEDEF_FIELD_LIST contains head of
1062 a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements. */
1063 struct typedef_field_list
1064 {
1065 struct typedef_field field;
1066 struct typedef_field_list *next;
1067 }
1068 *typedef_field_list;
1069 unsigned typedef_field_list_count;
1070 };
1071
1072 /* One item on the queue of compilation units to read in full symbols
1073 for. */
1074 struct dwarf2_queue_item
1075 {
1076 struct dwarf2_per_cu_data *per_cu;
1077 enum language pretend_language;
1078 struct dwarf2_queue_item *next;
1079 };
1080
1081 /* The current queue. */
1082 static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
1083
1084 /* Loaded secondary compilation units are kept in memory until they
1085 have not been referenced for the processing of this many
1086 compilation units. Set this to zero to disable caching. Cache
1087 sizes of up to at least twenty will improve startup time for
1088 typical inter-CU-reference binaries, at an obvious memory cost. */
1089 static int dwarf2_max_cache_age = 5;
1090 static void
1091 show_dwarf2_max_cache_age (struct ui_file *file, int from_tty,
1092 struct cmd_list_element *c, const char *value)
1093 {
1094 fprintf_filtered (file, _("The upper bound on the age of cached "
1095 "dwarf2 compilation units is %s.\n"),
1096 value);
1097 }
1098
1099
1100 /* Various complaints about symbol reading that don't abort the process. */
1101
1102 static void
1103 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
1104 {
1105 complaint (&symfile_complaints,
1106 _("statement list doesn't fit in .debug_line section"));
1107 }
1108
1109 static void
1110 dwarf2_debug_line_missing_file_complaint (void)
1111 {
1112 complaint (&symfile_complaints,
1113 _(".debug_line section has line data without a file"));
1114 }
1115
1116 static void
1117 dwarf2_debug_line_missing_end_sequence_complaint (void)
1118 {
1119 complaint (&symfile_complaints,
1120 _(".debug_line section has line "
1121 "program sequence without an end"));
1122 }
1123
1124 static void
1125 dwarf2_complex_location_expr_complaint (void)
1126 {
1127 complaint (&symfile_complaints, _("location expression too complex"));
1128 }
1129
1130 static void
1131 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
1132 int arg3)
1133 {
1134 complaint (&symfile_complaints,
1135 _("const value length mismatch for '%s', got %d, expected %d"),
1136 arg1, arg2, arg3);
1137 }
1138
1139 static void
1140 dwarf2_section_buffer_overflow_complaint (struct dwarf2_section_info *section)
1141 {
1142 complaint (&symfile_complaints,
1143 _("debug info runs off end of %s section"
1144 " [in module %s]"),
1145 section->asection->name,
1146 bfd_get_filename (section->asection->owner));
1147 }
1148
1149 static void
1150 dwarf2_macro_malformed_definition_complaint (const char *arg1)
1151 {
1152 complaint (&symfile_complaints,
1153 _("macro debug info contains a "
1154 "malformed macro definition:\n`%s'"),
1155 arg1);
1156 }
1157
1158 static void
1159 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
1160 {
1161 complaint (&symfile_complaints,
1162 _("invalid attribute class or form for '%s' in '%s'"),
1163 arg1, arg2);
1164 }
1165
1166 /* local function prototypes */
1167
1168 static void dwarf2_locate_sections (bfd *, asection *, void *);
1169
1170 static void dwarf2_create_include_psymtab (char *, struct partial_symtab *,
1171 struct objfile *);
1172
1173 static void dwarf2_find_base_address (struct die_info *die,
1174 struct dwarf2_cu *cu);
1175
1176 static void dwarf2_build_psymtabs_hard (struct objfile *);
1177
1178 static void scan_partial_symbols (struct partial_die_info *,
1179 CORE_ADDR *, CORE_ADDR *,
1180 int, struct dwarf2_cu *);
1181
1182 static void add_partial_symbol (struct partial_die_info *,
1183 struct dwarf2_cu *);
1184
1185 static void add_partial_namespace (struct partial_die_info *pdi,
1186 CORE_ADDR *lowpc, CORE_ADDR *highpc,
1187 int need_pc, struct dwarf2_cu *cu);
1188
1189 static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
1190 CORE_ADDR *highpc, int need_pc,
1191 struct dwarf2_cu *cu);
1192
1193 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
1194 struct dwarf2_cu *cu);
1195
1196 static void add_partial_subprogram (struct partial_die_info *pdi,
1197 CORE_ADDR *lowpc, CORE_ADDR *highpc,
1198 int need_pc, struct dwarf2_cu *cu);
1199
1200 static void dwarf2_psymtab_to_symtab (struct partial_symtab *);
1201
1202 static void psymtab_to_symtab_1 (struct partial_symtab *);
1203
1204 static struct abbrev_info *abbrev_table_lookup_abbrev
1205 (const struct abbrev_table *, unsigned int);
1206
1207 static struct abbrev_table *abbrev_table_read_table
1208 (struct dwarf2_section_info *, sect_offset);
1209
1210 static void abbrev_table_free (struct abbrev_table *);
1211
1212 static void abbrev_table_free_cleanup (void *);
1213
1214 static void dwarf2_read_abbrevs (struct dwarf2_cu *,
1215 struct dwarf2_section_info *);
1216
1217 static void dwarf2_free_abbrev_table (void *);
1218
1219 static unsigned int peek_abbrev_code (bfd *, gdb_byte *);
1220
1221 static struct partial_die_info *load_partial_dies
1222 (const struct die_reader_specs *, gdb_byte *, int);
1223
1224 static gdb_byte *read_partial_die (const struct die_reader_specs *,
1225 struct partial_die_info *,
1226 struct abbrev_info *,
1227 unsigned int,
1228 gdb_byte *);
1229
1230 static struct partial_die_info *find_partial_die (sect_offset, int,
1231 struct dwarf2_cu *);
1232
1233 static void fixup_partial_die (struct partial_die_info *,
1234 struct dwarf2_cu *);
1235
1236 static gdb_byte *read_attribute (const struct die_reader_specs *,
1237 struct attribute *, struct attr_abbrev *,
1238 gdb_byte *);
1239
1240 static unsigned int read_1_byte (bfd *, const gdb_byte *);
1241
1242 static int read_1_signed_byte (bfd *, const gdb_byte *);
1243
1244 static unsigned int read_2_bytes (bfd *, const gdb_byte *);
1245
1246 static unsigned int read_4_bytes (bfd *, const gdb_byte *);
1247
1248 static ULONGEST read_8_bytes (bfd *, const gdb_byte *);
1249
1250 static CORE_ADDR read_address (bfd *, gdb_byte *ptr, struct dwarf2_cu *,
1251 unsigned int *);
1252
1253 static LONGEST read_initial_length (bfd *, gdb_byte *, unsigned int *);
1254
1255 static LONGEST read_checked_initial_length_and_offset
1256 (bfd *, gdb_byte *, const struct comp_unit_head *,
1257 unsigned int *, unsigned int *);
1258
1259 static LONGEST read_offset (bfd *, gdb_byte *, const struct comp_unit_head *,
1260 unsigned int *);
1261
1262 static LONGEST read_offset_1 (bfd *, gdb_byte *, unsigned int);
1263
1264 static sect_offset read_abbrev_offset (struct dwarf2_section_info *,
1265 sect_offset);
1266
1267 static gdb_byte *read_n_bytes (bfd *, gdb_byte *, unsigned int);
1268
1269 static char *read_direct_string (bfd *, gdb_byte *, unsigned int *);
1270
1271 static char *read_indirect_string (bfd *, gdb_byte *,
1272 const struct comp_unit_head *,
1273 unsigned int *);
1274
1275 static char *read_indirect_string_from_dwz (struct dwz_file *, LONGEST);
1276
1277 static ULONGEST read_unsigned_leb128 (bfd *, gdb_byte *, unsigned int *);
1278
1279 static LONGEST read_signed_leb128 (bfd *, gdb_byte *, unsigned int *);
1280
1281 static CORE_ADDR read_addr_index_from_leb128 (struct dwarf2_cu *, gdb_byte *,
1282 unsigned int *);
1283
1284 static char *read_str_index (const struct die_reader_specs *reader,
1285 struct dwarf2_cu *cu, ULONGEST str_index);
1286
1287 static void set_cu_language (unsigned int, struct dwarf2_cu *);
1288
1289 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
1290 struct dwarf2_cu *);
1291
1292 static struct attribute *dwarf2_attr_no_follow (struct die_info *,
1293 unsigned int);
1294
1295 static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
1296 struct dwarf2_cu *cu);
1297
1298 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
1299
1300 static struct die_info *die_specification (struct die_info *die,
1301 struct dwarf2_cu **);
1302
1303 static void free_line_header (struct line_header *lh);
1304
1305 static void add_file_name (struct line_header *, char *, unsigned int,
1306 unsigned int, unsigned int);
1307
1308 static struct line_header *dwarf_decode_line_header (unsigned int offset,
1309 struct dwarf2_cu *cu);
1310
1311 static void dwarf_decode_lines (struct line_header *, const char *,
1312 struct dwarf2_cu *, struct partial_symtab *,
1313 int);
1314
1315 static void dwarf2_start_subfile (char *, const char *, const char *);
1316
1317 static void dwarf2_start_symtab (struct dwarf2_cu *,
1318 char *, char *, CORE_ADDR);
1319
1320 static struct symbol *new_symbol (struct die_info *, struct type *,
1321 struct dwarf2_cu *);
1322
1323 static struct symbol *new_symbol_full (struct die_info *, struct type *,
1324 struct dwarf2_cu *, struct symbol *);
1325
1326 static void dwarf2_const_value (struct attribute *, struct symbol *,
1327 struct dwarf2_cu *);
1328
1329 static void dwarf2_const_value_attr (struct attribute *attr,
1330 struct type *type,
1331 const char *name,
1332 struct obstack *obstack,
1333 struct dwarf2_cu *cu, LONGEST *value,
1334 gdb_byte **bytes,
1335 struct dwarf2_locexpr_baton **baton);
1336
1337 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
1338
1339 static int need_gnat_info (struct dwarf2_cu *);
1340
1341 static struct type *die_descriptive_type (struct die_info *,
1342 struct dwarf2_cu *);
1343
1344 static void set_descriptive_type (struct type *, struct die_info *,
1345 struct dwarf2_cu *);
1346
1347 static struct type *die_containing_type (struct die_info *,
1348 struct dwarf2_cu *);
1349
1350 static struct type *lookup_die_type (struct die_info *, struct attribute *,
1351 struct dwarf2_cu *);
1352
1353 static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
1354
1355 static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1356
1357 static const char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
1358
1359 static char *typename_concat (struct obstack *obs, const char *prefix,
1360 const char *suffix, int physname,
1361 struct dwarf2_cu *cu);
1362
1363 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
1364
1365 static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1366
1367 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
1368
1369 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
1370
1371 static void read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu);
1372
1373 static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1374 struct dwarf2_cu *, struct partial_symtab *);
1375
1376 static int dwarf2_get_pc_bounds (struct die_info *,
1377 CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *,
1378 struct partial_symtab *);
1379
1380 static void get_scope_pc_bounds (struct die_info *,
1381 CORE_ADDR *, CORE_ADDR *,
1382 struct dwarf2_cu *);
1383
1384 static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1385 CORE_ADDR, struct dwarf2_cu *);
1386
1387 static void dwarf2_add_field (struct field_info *, struct die_info *,
1388 struct dwarf2_cu *);
1389
1390 static void dwarf2_attach_fields_to_type (struct field_info *,
1391 struct type *, struct dwarf2_cu *);
1392
1393 static void dwarf2_add_member_fn (struct field_info *,
1394 struct die_info *, struct type *,
1395 struct dwarf2_cu *);
1396
1397 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
1398 struct type *,
1399 struct dwarf2_cu *);
1400
1401 static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
1402
1403 static void read_common_block (struct die_info *, struct dwarf2_cu *);
1404
1405 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
1406
1407 static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1408
1409 static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1410
1411 static struct type *read_module_type (struct die_info *die,
1412 struct dwarf2_cu *cu);
1413
1414 static const char *namespace_name (struct die_info *die,
1415 int *is_anonymous, struct dwarf2_cu *);
1416
1417 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
1418
1419 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
1420
1421 static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
1422 struct dwarf2_cu *);
1423
1424 static struct die_info *read_die_and_children (const struct die_reader_specs *,
1425 gdb_byte *info_ptr,
1426 gdb_byte **new_info_ptr,
1427 struct die_info *parent);
1428
1429 static struct die_info *read_die_and_siblings (const struct die_reader_specs *,
1430 gdb_byte *info_ptr,
1431 gdb_byte **new_info_ptr,
1432 struct die_info *parent);
1433
1434 static gdb_byte *read_full_die_1 (const struct die_reader_specs *,
1435 struct die_info **, gdb_byte *, int *, int);
1436
1437 static gdb_byte *read_full_die (const struct die_reader_specs *,
1438 struct die_info **, gdb_byte *, int *);
1439
1440 static void process_die (struct die_info *, struct dwarf2_cu *);
1441
1442 static char *dwarf2_canonicalize_name (char *, struct dwarf2_cu *,
1443 struct obstack *);
1444
1445 static char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
1446
1447 static const char *dwarf2_full_name (char *name,
1448 struct die_info *die,
1449 struct dwarf2_cu *cu);
1450
1451 static struct die_info *dwarf2_extension (struct die_info *die,
1452 struct dwarf2_cu **);
1453
1454 static const char *dwarf_tag_name (unsigned int);
1455
1456 static const char *dwarf_attr_name (unsigned int);
1457
1458 static const char *dwarf_form_name (unsigned int);
1459
1460 static char *dwarf_bool_name (unsigned int);
1461
1462 static const char *dwarf_type_encoding_name (unsigned int);
1463
1464 static struct die_info *sibling_die (struct die_info *);
1465
1466 static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1467
1468 static void dump_die_for_error (struct die_info *);
1469
1470 static void dump_die_1 (struct ui_file *, int level, int max_level,
1471 struct die_info *);
1472
1473 /*static*/ void dump_die (struct die_info *, int max_level);
1474
1475 static void store_in_ref_table (struct die_info *,
1476 struct dwarf2_cu *);
1477
1478 static int is_ref_attr (struct attribute *);
1479
1480 static sect_offset dwarf2_get_ref_die_offset (struct attribute *);
1481
1482 static LONGEST dwarf2_get_attr_constant_value (struct attribute *, int);
1483
1484 static struct die_info *follow_die_ref_or_sig (struct die_info *,
1485 struct attribute *,
1486 struct dwarf2_cu **);
1487
1488 static struct die_info *follow_die_ref (struct die_info *,
1489 struct attribute *,
1490 struct dwarf2_cu **);
1491
1492 static struct die_info *follow_die_sig (struct die_info *,
1493 struct attribute *,
1494 struct dwarf2_cu **);
1495
1496 static struct signatured_type *lookup_signatured_type_at_offset
1497 (struct objfile *objfile,
1498 struct dwarf2_section_info *section, sect_offset offset);
1499
1500 static void load_full_type_unit (struct dwarf2_per_cu_data *per_cu);
1501
1502 static void read_signatured_type (struct signatured_type *);
1503
1504 static struct type_unit_group *get_type_unit_group
1505 (struct dwarf2_cu *, struct attribute *);
1506
1507 static void build_type_unit_groups (die_reader_func_ftype *, void *);
1508
1509 /* memory allocation interface */
1510
1511 static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
1512
1513 static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
1514
1515 static void dwarf_decode_macros (struct dwarf2_cu *, unsigned int,
1516 char *, int);
1517
1518 static int attr_form_is_block (struct attribute *);
1519
1520 static int attr_form_is_section_offset (struct attribute *);
1521
1522 static int attr_form_is_constant (struct attribute *);
1523
1524 static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1525 struct dwarf2_loclist_baton *baton,
1526 struct attribute *attr);
1527
1528 static void dwarf2_symbol_mark_computed (struct attribute *attr,
1529 struct symbol *sym,
1530 struct dwarf2_cu *cu);
1531
1532 static gdb_byte *skip_one_die (const struct die_reader_specs *reader,
1533 gdb_byte *info_ptr,
1534 struct abbrev_info *abbrev);
1535
1536 static void free_stack_comp_unit (void *);
1537
1538 static hashval_t partial_die_hash (const void *item);
1539
1540 static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1541
1542 static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1543 (sect_offset offset, unsigned int offset_in_dwz, struct objfile *objfile);
1544
1545 static void init_one_comp_unit (struct dwarf2_cu *cu,
1546 struct dwarf2_per_cu_data *per_cu);
1547
1548 static void prepare_one_comp_unit (struct dwarf2_cu *cu,
1549 struct die_info *comp_unit_die,
1550 enum language pretend_language);
1551
1552 static void free_heap_comp_unit (void *);
1553
1554 static void free_cached_comp_units (void *);
1555
1556 static void age_cached_comp_units (void);
1557
1558 static void free_one_cached_comp_unit (struct dwarf2_per_cu_data *);
1559
1560 static struct type *set_die_type (struct die_info *, struct type *,
1561 struct dwarf2_cu *);
1562
1563 static void create_all_comp_units (struct objfile *);
1564
1565 static int create_all_type_units (struct objfile *);
1566
1567 static void load_full_comp_unit (struct dwarf2_per_cu_data *,
1568 enum language);
1569
1570 static void process_full_comp_unit (struct dwarf2_per_cu_data *,
1571 enum language);
1572
1573 static void process_full_type_unit (struct dwarf2_per_cu_data *,
1574 enum language);
1575
1576 static void dwarf2_add_dependence (struct dwarf2_cu *,
1577 struct dwarf2_per_cu_data *);
1578
1579 static void dwarf2_mark (struct dwarf2_cu *);
1580
1581 static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1582
1583 static struct type *get_die_type_at_offset (sect_offset,
1584 struct dwarf2_per_cu_data *per_cu);
1585
1586 static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
1587
1588 static void dwarf2_release_queue (void *dummy);
1589
1590 static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1591 enum language pretend_language);
1592
1593 static int maybe_queue_comp_unit (struct dwarf2_cu *this_cu,
1594 struct dwarf2_per_cu_data *per_cu,
1595 enum language pretend_language);
1596
1597 static void process_queue (void);
1598
1599 static void find_file_and_directory (struct die_info *die,
1600 struct dwarf2_cu *cu,
1601 char **name, char **comp_dir);
1602
1603 static char *file_full_name (int file, struct line_header *lh,
1604 const char *comp_dir);
1605
1606 static gdb_byte *read_and_check_comp_unit_head
1607 (struct comp_unit_head *header,
1608 struct dwarf2_section_info *section,
1609 struct dwarf2_section_info *abbrev_section, gdb_byte *info_ptr,
1610 int is_debug_types_section);
1611
1612 static void init_cutu_and_read_dies
1613 (struct dwarf2_per_cu_data *this_cu, struct abbrev_table *abbrev_table,
1614 int use_existing_cu, int keep,
1615 die_reader_func_ftype *die_reader_func, void *data);
1616
1617 static void init_cutu_and_read_dies_simple
1618 (struct dwarf2_per_cu_data *this_cu,
1619 die_reader_func_ftype *die_reader_func, void *data);
1620
1621 static htab_t allocate_signatured_type_table (struct objfile *objfile);
1622
1623 static htab_t allocate_dwo_unit_table (struct objfile *objfile);
1624
1625 static struct dwo_unit *lookup_dwo_comp_unit
1626 (struct dwarf2_per_cu_data *, const char *, const char *, ULONGEST);
1627
1628 static struct dwo_unit *lookup_dwo_type_unit
1629 (struct signatured_type *, const char *, const char *);
1630
1631 static void free_dwo_file_cleanup (void *);
1632
1633 static void process_cu_includes (void);
1634
1635 #if WORDS_BIGENDIAN
1636
1637 /* Convert VALUE between big- and little-endian. */
1638 static offset_type
1639 byte_swap (offset_type value)
1640 {
1641 offset_type result;
1642
1643 result = (value & 0xff) << 24;
1644 result |= (value & 0xff00) << 8;
1645 result |= (value & 0xff0000) >> 8;
1646 result |= (value & 0xff000000) >> 24;
1647 return result;
1648 }
1649
1650 #define MAYBE_SWAP(V) byte_swap (V)
1651
1652 #else
1653 #define MAYBE_SWAP(V) (V)
1654 #endif /* WORDS_BIGENDIAN */
1655
1656 /* The suffix for an index file. */
1657 #define INDEX_SUFFIX ".gdb-index"
1658
1659 static const char *dwarf2_physname (char *name, struct die_info *die,
1660 struct dwarf2_cu *cu);
1661
1662 /* Try to locate the sections we need for DWARF 2 debugging
1663 information and return true if we have enough to do something.
1664 NAMES points to the dwarf2 section names, or is NULL if the standard
1665 ELF names are used. */
1666
1667 int
1668 dwarf2_has_info (struct objfile *objfile,
1669 const struct dwarf2_debug_sections *names)
1670 {
1671 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
1672 if (!dwarf2_per_objfile)
1673 {
1674 /* Initialize per-objfile state. */
1675 struct dwarf2_per_objfile *data
1676 = obstack_alloc (&objfile->objfile_obstack, sizeof (*data));
1677
1678 memset (data, 0, sizeof (*data));
1679 set_objfile_data (objfile, dwarf2_objfile_data_key, data);
1680 dwarf2_per_objfile = data;
1681
1682 bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections,
1683 (void *) names);
1684 dwarf2_per_objfile->objfile = objfile;
1685 }
1686 return (dwarf2_per_objfile->info.asection != NULL
1687 && dwarf2_per_objfile->abbrev.asection != NULL);
1688 }
1689
1690 /* When loading sections, we look either for uncompressed section or for
1691 compressed section names. */
1692
1693 static int
1694 section_is_p (const char *section_name,
1695 const struct dwarf2_section_names *names)
1696 {
1697 if (names->normal != NULL
1698 && strcmp (section_name, names->normal) == 0)
1699 return 1;
1700 if (names->compressed != NULL
1701 && strcmp (section_name, names->compressed) == 0)
1702 return 1;
1703 return 0;
1704 }
1705
1706 /* This function is mapped across the sections and remembers the
1707 offset and size of each of the debugging sections we are interested
1708 in. */
1709
1710 static void
1711 dwarf2_locate_sections (bfd *abfd, asection *sectp, void *vnames)
1712 {
1713 const struct dwarf2_debug_sections *names;
1714 flagword aflag = bfd_get_section_flags (abfd, sectp);
1715
1716 if (vnames == NULL)
1717 names = &dwarf2_elf_names;
1718 else
1719 names = (const struct dwarf2_debug_sections *) vnames;
1720
1721 if ((aflag & SEC_HAS_CONTENTS) == 0)
1722 {
1723 }
1724 else if (section_is_p (sectp->name, &names->info))
1725 {
1726 dwarf2_per_objfile->info.asection = sectp;
1727 dwarf2_per_objfile->info.size = bfd_get_section_size (sectp);
1728 }
1729 else if (section_is_p (sectp->name, &names->abbrev))
1730 {
1731 dwarf2_per_objfile->abbrev.asection = sectp;
1732 dwarf2_per_objfile->abbrev.size = bfd_get_section_size (sectp);
1733 }
1734 else if (section_is_p (sectp->name, &names->line))
1735 {
1736 dwarf2_per_objfile->line.asection = sectp;
1737 dwarf2_per_objfile->line.size = bfd_get_section_size (sectp);
1738 }
1739 else if (section_is_p (sectp->name, &names->loc))
1740 {
1741 dwarf2_per_objfile->loc.asection = sectp;
1742 dwarf2_per_objfile->loc.size = bfd_get_section_size (sectp);
1743 }
1744 else if (section_is_p (sectp->name, &names->macinfo))
1745 {
1746 dwarf2_per_objfile->macinfo.asection = sectp;
1747 dwarf2_per_objfile->macinfo.size = bfd_get_section_size (sectp);
1748 }
1749 else if (section_is_p (sectp->name, &names->macro))
1750 {
1751 dwarf2_per_objfile->macro.asection = sectp;
1752 dwarf2_per_objfile->macro.size = bfd_get_section_size (sectp);
1753 }
1754 else if (section_is_p (sectp->name, &names->str))
1755 {
1756 dwarf2_per_objfile->str.asection = sectp;
1757 dwarf2_per_objfile->str.size = bfd_get_section_size (sectp);
1758 }
1759 else if (section_is_p (sectp->name, &names->addr))
1760 {
1761 dwarf2_per_objfile->addr.asection = sectp;
1762 dwarf2_per_objfile->addr.size = bfd_get_section_size (sectp);
1763 }
1764 else if (section_is_p (sectp->name, &names->frame))
1765 {
1766 dwarf2_per_objfile->frame.asection = sectp;
1767 dwarf2_per_objfile->frame.size = bfd_get_section_size (sectp);
1768 }
1769 else if (section_is_p (sectp->name, &names->eh_frame))
1770 {
1771 dwarf2_per_objfile->eh_frame.asection = sectp;
1772 dwarf2_per_objfile->eh_frame.size = bfd_get_section_size (sectp);
1773 }
1774 else if (section_is_p (sectp->name, &names->ranges))
1775 {
1776 dwarf2_per_objfile->ranges.asection = sectp;
1777 dwarf2_per_objfile->ranges.size = bfd_get_section_size (sectp);
1778 }
1779 else if (section_is_p (sectp->name, &names->types))
1780 {
1781 struct dwarf2_section_info type_section;
1782
1783 memset (&type_section, 0, sizeof (type_section));
1784 type_section.asection = sectp;
1785 type_section.size = bfd_get_section_size (sectp);
1786
1787 VEC_safe_push (dwarf2_section_info_def, dwarf2_per_objfile->types,
1788 &type_section);
1789 }
1790 else if (section_is_p (sectp->name, &names->gdb_index))
1791 {
1792 dwarf2_per_objfile->gdb_index.asection = sectp;
1793 dwarf2_per_objfile->gdb_index.size = bfd_get_section_size (sectp);
1794 }
1795
1796 if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD)
1797 && bfd_section_vma (abfd, sectp) == 0)
1798 dwarf2_per_objfile->has_section_at_zero = 1;
1799 }
1800
1801 /* A helper function that decides whether a section is empty,
1802 or not present. */
1803
1804 static int
1805 dwarf2_section_empty_p (struct dwarf2_section_info *info)
1806 {
1807 return info->asection == NULL || info->size == 0;
1808 }
1809
1810 /* Read the contents of the section INFO.
1811 OBJFILE is the main object file, but not necessarily the file where
1812 the section comes from. E.g., for DWO files INFO->asection->owner
1813 is the bfd of the DWO file.
1814 If the section is compressed, uncompress it before returning. */
1815
1816 static void
1817 dwarf2_read_section (struct objfile *objfile, struct dwarf2_section_info *info)
1818 {
1819 asection *sectp = info->asection;
1820 bfd *abfd;
1821 gdb_byte *buf, *retbuf;
1822 unsigned char header[4];
1823
1824 if (info->readin)
1825 return;
1826 info->buffer = NULL;
1827 info->readin = 1;
1828
1829 if (dwarf2_section_empty_p (info))
1830 return;
1831
1832 abfd = sectp->owner;
1833
1834 /* If the section has relocations, we must read it ourselves.
1835 Otherwise we attach it to the BFD. */
1836 if ((sectp->flags & SEC_RELOC) == 0)
1837 {
1838 const gdb_byte *bytes = gdb_bfd_map_section (sectp, &info->size);
1839
1840 /* We have to cast away const here for historical reasons.
1841 Fixing dwarf2read to be const-correct would be quite nice. */
1842 info->buffer = (gdb_byte *) bytes;
1843 return;
1844 }
1845
1846 buf = obstack_alloc (&objfile->objfile_obstack, info->size);
1847 info->buffer = buf;
1848
1849 /* When debugging .o files, we may need to apply relocations; see
1850 http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
1851 We never compress sections in .o files, so we only need to
1852 try this when the section is not compressed. */
1853 retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
1854 if (retbuf != NULL)
1855 {
1856 info->buffer = retbuf;
1857 return;
1858 }
1859
1860 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1861 || bfd_bread (buf, info->size, abfd) != info->size)
1862 error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1863 bfd_get_filename (abfd));
1864 }
1865
1866 /* A helper function that returns the size of a section in a safe way.
1867 If you are positive that the section has been read before using the
1868 size, then it is safe to refer to the dwarf2_section_info object's
1869 "size" field directly. In other cases, you must call this
1870 function, because for compressed sections the size field is not set
1871 correctly until the section has been read. */
1872
1873 static bfd_size_type
1874 dwarf2_section_size (struct objfile *objfile,
1875 struct dwarf2_section_info *info)
1876 {
1877 if (!info->readin)
1878 dwarf2_read_section (objfile, info);
1879 return info->size;
1880 }
1881
1882 /* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
1883 SECTION_NAME. */
1884
1885 void
1886 dwarf2_get_section_info (struct objfile *objfile,
1887 enum dwarf2_section_enum sect,
1888 asection **sectp, gdb_byte **bufp,
1889 bfd_size_type *sizep)
1890 {
1891 struct dwarf2_per_objfile *data
1892 = objfile_data (objfile, dwarf2_objfile_data_key);
1893 struct dwarf2_section_info *info;
1894
1895 /* We may see an objfile without any DWARF, in which case we just
1896 return nothing. */
1897 if (data == NULL)
1898 {
1899 *sectp = NULL;
1900 *bufp = NULL;
1901 *sizep = 0;
1902 return;
1903 }
1904 switch (sect)
1905 {
1906 case DWARF2_DEBUG_FRAME:
1907 info = &data->frame;
1908 break;
1909 case DWARF2_EH_FRAME:
1910 info = &data->eh_frame;
1911 break;
1912 default:
1913 gdb_assert_not_reached ("unexpected section");
1914 }
1915
1916 dwarf2_read_section (objfile, info);
1917
1918 *sectp = info->asection;
1919 *bufp = info->buffer;
1920 *sizep = info->size;
1921 }
1922
1923 /* A helper function to find the sections for a .dwz file. */
1924
1925 static void
1926 locate_dwz_sections (bfd *abfd, asection *sectp, void *arg)
1927 {
1928 struct dwz_file *dwz_file = arg;
1929
1930 /* Note that we only support the standard ELF names, because .dwz
1931 is ELF-only (at the time of writing). */
1932 if (section_is_p (sectp->name, &dwarf2_elf_names.abbrev))
1933 {
1934 dwz_file->abbrev.asection = sectp;
1935 dwz_file->abbrev.size = bfd_get_section_size (sectp);
1936 }
1937 else if (section_is_p (sectp->name, &dwarf2_elf_names.info))
1938 {
1939 dwz_file->info.asection = sectp;
1940 dwz_file->info.size = bfd_get_section_size (sectp);
1941 }
1942 else if (section_is_p (sectp->name, &dwarf2_elf_names.str))
1943 {
1944 dwz_file->str.asection = sectp;
1945 dwz_file->str.size = bfd_get_section_size (sectp);
1946 }
1947 else if (section_is_p (sectp->name, &dwarf2_elf_names.line))
1948 {
1949 dwz_file->line.asection = sectp;
1950 dwz_file->line.size = bfd_get_section_size (sectp);
1951 }
1952 else if (section_is_p (sectp->name, &dwarf2_elf_names.macro))
1953 {
1954 dwz_file->macro.asection = sectp;
1955 dwz_file->macro.size = bfd_get_section_size (sectp);
1956 }
1957 else if (section_is_p (sectp->name, &dwarf2_elf_names.gdb_index))
1958 {
1959 dwz_file->gdb_index.asection = sectp;
1960 dwz_file->gdb_index.size = bfd_get_section_size (sectp);
1961 }
1962 }
1963
1964 /* Open the separate '.dwz' debug file, if needed. Error if the file
1965 cannot be found. */
1966
1967 static struct dwz_file *
1968 dwarf2_get_dwz_file (void)
1969 {
1970 bfd *abfd, *dwz_bfd;
1971 asection *section;
1972 gdb_byte *data;
1973 struct cleanup *cleanup;
1974 const char *filename;
1975 struct dwz_file *result;
1976
1977 if (dwarf2_per_objfile->dwz_file != NULL)
1978 return dwarf2_per_objfile->dwz_file;
1979
1980 abfd = dwarf2_per_objfile->objfile->obfd;
1981 section = bfd_get_section_by_name (abfd, ".gnu_debugaltlink");
1982 if (section == NULL)
1983 error (_("could not find '.gnu_debugaltlink' section"));
1984 if (!bfd_malloc_and_get_section (abfd, section, &data))
1985 error (_("could not read '.gnu_debugaltlink' section: %s"),
1986 bfd_errmsg (bfd_get_error ()));
1987 cleanup = make_cleanup (xfree, data);
1988
1989 filename = data;
1990 if (!IS_ABSOLUTE_PATH (filename))
1991 {
1992 char *abs = gdb_realpath (dwarf2_per_objfile->objfile->name);
1993 char *rel;
1994
1995 make_cleanup (xfree, abs);
1996 abs = ldirname (abs);
1997 make_cleanup (xfree, abs);
1998
1999 rel = concat (abs, SLASH_STRING, filename, (char *) NULL);
2000 make_cleanup (xfree, rel);
2001 filename = rel;
2002 }
2003
2004 /* The format is just a NUL-terminated file name, followed by the
2005 build-id. For now, though, we ignore the build-id. */
2006 dwz_bfd = gdb_bfd_open (filename, gnutarget, -1);
2007 if (dwz_bfd == NULL)
2008 error (_("could not read '%s': %s"), filename,
2009 bfd_errmsg (bfd_get_error ()));
2010
2011 if (!bfd_check_format (dwz_bfd, bfd_object))
2012 {
2013 gdb_bfd_unref (dwz_bfd);
2014 error (_("file '%s' was not usable: %s"), filename,
2015 bfd_errmsg (bfd_get_error ()));
2016 }
2017
2018 result = OBSTACK_ZALLOC (&dwarf2_per_objfile->objfile->objfile_obstack,
2019 struct dwz_file);
2020 result->dwz_bfd = dwz_bfd;
2021
2022 bfd_map_over_sections (dwz_bfd, locate_dwz_sections, result);
2023
2024 do_cleanups (cleanup);
2025
2026 return result;
2027 }
2028 \f
2029 /* DWARF quick_symbols_functions support. */
2030
2031 /* TUs can share .debug_line entries, and there can be a lot more TUs than
2032 unique line tables, so we maintain a separate table of all .debug_line
2033 derived entries to support the sharing.
2034 All the quick functions need is the list of file names. We discard the
2035 line_header when we're done and don't need to record it here. */
2036 struct quick_file_names
2037 {
2038 /* The data used to construct the hash key. */
2039 struct stmt_list_hash hash;
2040
2041 /* The number of entries in file_names, real_names. */
2042 unsigned int num_file_names;
2043
2044 /* The file names from the line table, after being run through
2045 file_full_name. */
2046 const char **file_names;
2047
2048 /* The file names from the line table after being run through
2049 gdb_realpath. These are computed lazily. */
2050 const char **real_names;
2051 };
2052
2053 /* When using the index (and thus not using psymtabs), each CU has an
2054 object of this type. This is used to hold information needed by
2055 the various "quick" methods. */
2056 struct dwarf2_per_cu_quick_data
2057 {
2058 /* The file table. This can be NULL if there was no file table
2059 or it's currently not read in.
2060 NOTE: This points into dwarf2_per_objfile->quick_file_names_table. */
2061 struct quick_file_names *file_names;
2062
2063 /* The corresponding symbol table. This is NULL if symbols for this
2064 CU have not yet been read. */
2065 struct symtab *symtab;
2066
2067 /* A temporary mark bit used when iterating over all CUs in
2068 expand_symtabs_matching. */
2069 unsigned int mark : 1;
2070
2071 /* True if we've tried to read the file table and found there isn't one.
2072 There will be no point in trying to read it again next time. */
2073 unsigned int no_file_data : 1;
2074 };
2075
2076 /* Utility hash function for a stmt_list_hash. */
2077
2078 static hashval_t
2079 hash_stmt_list_entry (const struct stmt_list_hash *stmt_list_hash)
2080 {
2081 hashval_t v = 0;
2082
2083 if (stmt_list_hash->dwo_unit != NULL)
2084 v += (uintptr_t) stmt_list_hash->dwo_unit->dwo_file;
2085 v += stmt_list_hash->line_offset.sect_off;
2086 return v;
2087 }
2088
2089 /* Utility equality function for a stmt_list_hash. */
2090
2091 static int
2092 eq_stmt_list_entry (const struct stmt_list_hash *lhs,
2093 const struct stmt_list_hash *rhs)
2094 {
2095 if ((lhs->dwo_unit != NULL) != (rhs->dwo_unit != NULL))
2096 return 0;
2097 if (lhs->dwo_unit != NULL
2098 && lhs->dwo_unit->dwo_file != rhs->dwo_unit->dwo_file)
2099 return 0;
2100
2101 return lhs->line_offset.sect_off == rhs->line_offset.sect_off;
2102 }
2103
2104 /* Hash function for a quick_file_names. */
2105
2106 static hashval_t
2107 hash_file_name_entry (const void *e)
2108 {
2109 const struct quick_file_names *file_data = e;
2110
2111 return hash_stmt_list_entry (&file_data->hash);
2112 }
2113
2114 /* Equality function for a quick_file_names. */
2115
2116 static int
2117 eq_file_name_entry (const void *a, const void *b)
2118 {
2119 const struct quick_file_names *ea = a;
2120 const struct quick_file_names *eb = b;
2121
2122 return eq_stmt_list_entry (&ea->hash, &eb->hash);
2123 }
2124
2125 /* Delete function for a quick_file_names. */
2126
2127 static void
2128 delete_file_name_entry (void *e)
2129 {
2130 struct quick_file_names *file_data = e;
2131 int i;
2132
2133 for (i = 0; i < file_data->num_file_names; ++i)
2134 {
2135 xfree ((void*) file_data->file_names[i]);
2136 if (file_data->real_names)
2137 xfree ((void*) file_data->real_names[i]);
2138 }
2139
2140 /* The space for the struct itself lives on objfile_obstack,
2141 so we don't free it here. */
2142 }
2143
2144 /* Create a quick_file_names hash table. */
2145
2146 static htab_t
2147 create_quick_file_names_table (unsigned int nr_initial_entries)
2148 {
2149 return htab_create_alloc (nr_initial_entries,
2150 hash_file_name_entry, eq_file_name_entry,
2151 delete_file_name_entry, xcalloc, xfree);
2152 }
2153
2154 /* Read in PER_CU->CU. This function is unrelated to symtabs, symtab would
2155 have to be created afterwards. You should call age_cached_comp_units after
2156 processing PER_CU->CU. dw2_setup must have been already called. */
2157
2158 static void
2159 load_cu (struct dwarf2_per_cu_data *per_cu)
2160 {
2161 if (per_cu->is_debug_types)
2162 load_full_type_unit (per_cu);
2163 else
2164 load_full_comp_unit (per_cu, language_minimal);
2165
2166 gdb_assert (per_cu->cu != NULL);
2167
2168 dwarf2_find_base_address (per_cu->cu->dies, per_cu->cu);
2169 }
2170
2171 /* Read in the symbols for PER_CU. */
2172
2173 static void
2174 dw2_do_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
2175 {
2176 struct cleanup *back_to;
2177
2178 /* Skip type_unit_groups, reading the type units they contain
2179 is handled elsewhere. */
2180 if (IS_TYPE_UNIT_GROUP (per_cu))
2181 return;
2182
2183 back_to = make_cleanup (dwarf2_release_queue, NULL);
2184
2185 if (dwarf2_per_objfile->using_index
2186 ? per_cu->v.quick->symtab == NULL
2187 : (per_cu->v.psymtab == NULL || !per_cu->v.psymtab->readin))
2188 {
2189 queue_comp_unit (per_cu, language_minimal);
2190 load_cu (per_cu);
2191 }
2192
2193 process_queue ();
2194
2195 /* Age the cache, releasing compilation units that have not
2196 been used recently. */
2197 age_cached_comp_units ();
2198
2199 do_cleanups (back_to);
2200 }
2201
2202 /* Ensure that the symbols for PER_CU have been read in. OBJFILE is
2203 the objfile from which this CU came. Returns the resulting symbol
2204 table. */
2205
2206 static struct symtab *
2207 dw2_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
2208 {
2209 gdb_assert (dwarf2_per_objfile->using_index);
2210 if (!per_cu->v.quick->symtab)
2211 {
2212 struct cleanup *back_to = make_cleanup (free_cached_comp_units, NULL);
2213 increment_reading_symtab ();
2214 dw2_do_instantiate_symtab (per_cu);
2215 process_cu_includes ();
2216 do_cleanups (back_to);
2217 }
2218 return per_cu->v.quick->symtab;
2219 }
2220
2221 /* Return the CU given its index.
2222
2223 This is intended for loops like:
2224
2225 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2226 + dwarf2_per_objfile->n_type_units); ++i)
2227 {
2228 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2229
2230 ...;
2231 }
2232 */
2233
2234 static struct dwarf2_per_cu_data *
2235 dw2_get_cu (int index)
2236 {
2237 if (index >= dwarf2_per_objfile->n_comp_units)
2238 {
2239 index -= dwarf2_per_objfile->n_comp_units;
2240 gdb_assert (index < dwarf2_per_objfile->n_type_units);
2241 return &dwarf2_per_objfile->all_type_units[index]->per_cu;
2242 }
2243
2244 return dwarf2_per_objfile->all_comp_units[index];
2245 }
2246
2247 /* Return the primary CU given its index.
2248 The difference between this function and dw2_get_cu is in the handling
2249 of type units (TUs). Here we return the type_unit_group object.
2250
2251 This is intended for loops like:
2252
2253 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2254 + dwarf2_per_objfile->n_type_unit_groups); ++i)
2255 {
2256 struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
2257
2258 ...;
2259 }
2260 */
2261
2262 static struct dwarf2_per_cu_data *
2263 dw2_get_primary_cu (int index)
2264 {
2265 if (index >= dwarf2_per_objfile->n_comp_units)
2266 {
2267 index -= dwarf2_per_objfile->n_comp_units;
2268 gdb_assert (index < dwarf2_per_objfile->n_type_unit_groups);
2269 return &dwarf2_per_objfile->all_type_unit_groups[index]->per_cu;
2270 }
2271
2272 return dwarf2_per_objfile->all_comp_units[index];
2273 }
2274
2275 /* A helper function that knows how to read a 64-bit value in a way
2276 that doesn't make gdb die. Returns 1 if the conversion went ok, 0
2277 otherwise. */
2278
2279 static int
2280 extract_cu_value (const char *bytes, ULONGEST *result)
2281 {
2282 if (sizeof (ULONGEST) < 8)
2283 {
2284 int i;
2285
2286 /* Ignore the upper 4 bytes if they are all zero. */
2287 for (i = 0; i < 4; ++i)
2288 if (bytes[i + 4] != 0)
2289 return 0;
2290
2291 *result = extract_unsigned_integer (bytes, 4, BFD_ENDIAN_LITTLE);
2292 }
2293 else
2294 *result = extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
2295 return 1;
2296 }
2297
2298 /* A helper for create_cus_from_index that handles a given list of
2299 CUs. */
2300
2301 static int
2302 create_cus_from_index_list (struct objfile *objfile,
2303 const gdb_byte *cu_list, offset_type n_elements,
2304 struct dwarf2_section_info *section,
2305 int is_dwz,
2306 int base_offset)
2307 {
2308 offset_type i;
2309
2310 for (i = 0; i < n_elements; i += 2)
2311 {
2312 struct dwarf2_per_cu_data *the_cu;
2313 ULONGEST offset, length;
2314
2315 if (!extract_cu_value (cu_list, &offset)
2316 || !extract_cu_value (cu_list + 8, &length))
2317 return 0;
2318 cu_list += 2 * 8;
2319
2320 the_cu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2321 struct dwarf2_per_cu_data);
2322 the_cu->offset.sect_off = offset;
2323 the_cu->length = length;
2324 the_cu->objfile = objfile;
2325 the_cu->info_or_types_section = section;
2326 the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2327 struct dwarf2_per_cu_quick_data);
2328 the_cu->is_dwz = is_dwz;
2329 dwarf2_per_objfile->all_comp_units[base_offset + i / 2] = the_cu;
2330 }
2331
2332 return 1;
2333 }
2334
2335 /* Read the CU list from the mapped index, and use it to create all
2336 the CU objects for this objfile. Return 0 if something went wrong,
2337 1 if everything went ok. */
2338
2339 static int
2340 create_cus_from_index (struct objfile *objfile,
2341 const gdb_byte *cu_list, offset_type cu_list_elements,
2342 const gdb_byte *dwz_list, offset_type dwz_elements)
2343 {
2344 struct dwz_file *dwz;
2345
2346 dwarf2_per_objfile->n_comp_units = (cu_list_elements + dwz_elements) / 2;
2347 dwarf2_per_objfile->all_comp_units
2348 = obstack_alloc (&objfile->objfile_obstack,
2349 dwarf2_per_objfile->n_comp_units
2350 * sizeof (struct dwarf2_per_cu_data *));
2351
2352 if (!create_cus_from_index_list (objfile, cu_list, cu_list_elements,
2353 &dwarf2_per_objfile->info, 0, 0))
2354 return 0;
2355
2356 if (dwz_elements == 0)
2357 return 1;
2358
2359 dwz = dwarf2_get_dwz_file ();
2360 return create_cus_from_index_list (objfile, dwz_list, dwz_elements,
2361 &dwz->info, 1, cu_list_elements / 2);
2362 }
2363
2364 /* Create the signatured type hash table from the index. */
2365
2366 static int
2367 create_signatured_type_table_from_index (struct objfile *objfile,
2368 struct dwarf2_section_info *section,
2369 const gdb_byte *bytes,
2370 offset_type elements)
2371 {
2372 offset_type i;
2373 htab_t sig_types_hash;
2374
2375 dwarf2_per_objfile->n_type_units = elements / 3;
2376 dwarf2_per_objfile->all_type_units
2377 = obstack_alloc (&objfile->objfile_obstack,
2378 dwarf2_per_objfile->n_type_units
2379 * sizeof (struct signatured_type *));
2380
2381 sig_types_hash = allocate_signatured_type_table (objfile);
2382
2383 for (i = 0; i < elements; i += 3)
2384 {
2385 struct signatured_type *sig_type;
2386 ULONGEST offset, type_offset_in_tu, signature;
2387 void **slot;
2388
2389 if (!extract_cu_value (bytes, &offset)
2390 || !extract_cu_value (bytes + 8, &type_offset_in_tu))
2391 return 0;
2392 signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
2393 bytes += 3 * 8;
2394
2395 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2396 struct signatured_type);
2397 sig_type->signature = signature;
2398 sig_type->type_offset_in_tu.cu_off = type_offset_in_tu;
2399 sig_type->per_cu.is_debug_types = 1;
2400 sig_type->per_cu.info_or_types_section = section;
2401 sig_type->per_cu.offset.sect_off = offset;
2402 sig_type->per_cu.objfile = objfile;
2403 sig_type->per_cu.v.quick
2404 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2405 struct dwarf2_per_cu_quick_data);
2406
2407 slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
2408 *slot = sig_type;
2409
2410 dwarf2_per_objfile->all_type_units[i / 3] = sig_type;
2411 }
2412
2413 dwarf2_per_objfile->signatured_types = sig_types_hash;
2414
2415 return 1;
2416 }
2417
2418 /* Read the address map data from the mapped index, and use it to
2419 populate the objfile's psymtabs_addrmap. */
2420
2421 static void
2422 create_addrmap_from_index (struct objfile *objfile, struct mapped_index *index)
2423 {
2424 const gdb_byte *iter, *end;
2425 struct obstack temp_obstack;
2426 struct addrmap *mutable_map;
2427 struct cleanup *cleanup;
2428 CORE_ADDR baseaddr;
2429
2430 obstack_init (&temp_obstack);
2431 cleanup = make_cleanup_obstack_free (&temp_obstack);
2432 mutable_map = addrmap_create_mutable (&temp_obstack);
2433
2434 iter = index->address_table;
2435 end = iter + index->address_table_size;
2436
2437 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2438
2439 while (iter < end)
2440 {
2441 ULONGEST hi, lo, cu_index;
2442 lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2443 iter += 8;
2444 hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2445 iter += 8;
2446 cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
2447 iter += 4;
2448
2449 addrmap_set_empty (mutable_map, lo + baseaddr, hi + baseaddr - 1,
2450 dw2_get_cu (cu_index));
2451 }
2452
2453 objfile->psymtabs_addrmap = addrmap_create_fixed (mutable_map,
2454 &objfile->objfile_obstack);
2455 do_cleanups (cleanup);
2456 }
2457
2458 /* The hash function for strings in the mapped index. This is the same as
2459 SYMBOL_HASH_NEXT, but we keep a separate copy to maintain control over the
2460 implementation. This is necessary because the hash function is tied to the
2461 format of the mapped index file. The hash values do not have to match with
2462 SYMBOL_HASH_NEXT.
2463
2464 Use INT_MAX for INDEX_VERSION if you generate the current index format. */
2465
2466 static hashval_t
2467 mapped_index_string_hash (int index_version, const void *p)
2468 {
2469 const unsigned char *str = (const unsigned char *) p;
2470 hashval_t r = 0;
2471 unsigned char c;
2472
2473 while ((c = *str++) != 0)
2474 {
2475 if (index_version >= 5)
2476 c = tolower (c);
2477 r = r * 67 + c - 113;
2478 }
2479
2480 return r;
2481 }
2482
2483 /* Find a slot in the mapped index INDEX for the object named NAME.
2484 If NAME is found, set *VEC_OUT to point to the CU vector in the
2485 constant pool and return 1. If NAME cannot be found, return 0. */
2486
2487 static int
2488 find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
2489 offset_type **vec_out)
2490 {
2491 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
2492 offset_type hash;
2493 offset_type slot, step;
2494 int (*cmp) (const char *, const char *);
2495
2496 if (current_language->la_language == language_cplus
2497 || current_language->la_language == language_java
2498 || current_language->la_language == language_fortran)
2499 {
2500 /* NAME is already canonical. Drop any qualifiers as .gdb_index does
2501 not contain any. */
2502 const char *paren = strchr (name, '(');
2503
2504 if (paren)
2505 {
2506 char *dup;
2507
2508 dup = xmalloc (paren - name + 1);
2509 memcpy (dup, name, paren - name);
2510 dup[paren - name] = 0;
2511
2512 make_cleanup (xfree, dup);
2513 name = dup;
2514 }
2515 }
2516
2517 /* Index version 4 did not support case insensitive searches. But the
2518 indices for case insensitive languages are built in lowercase, therefore
2519 simulate our NAME being searched is also lowercased. */
2520 hash = mapped_index_string_hash ((index->version == 4
2521 && case_sensitivity == case_sensitive_off
2522 ? 5 : index->version),
2523 name);
2524
2525 slot = hash & (index->symbol_table_slots - 1);
2526 step = ((hash * 17) & (index->symbol_table_slots - 1)) | 1;
2527 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
2528
2529 for (;;)
2530 {
2531 /* Convert a slot number to an offset into the table. */
2532 offset_type i = 2 * slot;
2533 const char *str;
2534 if (index->symbol_table[i] == 0 && index->symbol_table[i + 1] == 0)
2535 {
2536 do_cleanups (back_to);
2537 return 0;
2538 }
2539
2540 str = index->constant_pool + MAYBE_SWAP (index->symbol_table[i]);
2541 if (!cmp (name, str))
2542 {
2543 *vec_out = (offset_type *) (index->constant_pool
2544 + MAYBE_SWAP (index->symbol_table[i + 1]));
2545 do_cleanups (back_to);
2546 return 1;
2547 }
2548
2549 slot = (slot + step) & (index->symbol_table_slots - 1);
2550 }
2551 }
2552
2553 /* A helper function that reads the .gdb_index from SECTION and fills
2554 in MAP. FILENAME is the name of the file containing the section;
2555 it is used for error reporting. DEPRECATED_OK is nonzero if it is
2556 ok to use deprecated sections.
2557
2558 CU_LIST, CU_LIST_ELEMENTS, TYPES_LIST, and TYPES_LIST_ELEMENTS are
2559 out parameters that are filled in with information about the CU and
2560 TU lists in the section.
2561
2562 Returns 1 if all went well, 0 otherwise. */
2563
2564 static int
2565 read_index_from_section (struct objfile *objfile,
2566 const char *filename,
2567 int deprecated_ok,
2568 struct dwarf2_section_info *section,
2569 struct mapped_index *map,
2570 const gdb_byte **cu_list,
2571 offset_type *cu_list_elements,
2572 const gdb_byte **types_list,
2573 offset_type *types_list_elements)
2574 {
2575 char *addr;
2576 offset_type version;
2577 offset_type *metadata;
2578 int i;
2579
2580 if (dwarf2_section_empty_p (section))
2581 return 0;
2582
2583 /* Older elfutils strip versions could keep the section in the main
2584 executable while splitting it for the separate debug info file. */
2585 if ((bfd_get_file_flags (section->asection) & SEC_HAS_CONTENTS) == 0)
2586 return 0;
2587
2588 dwarf2_read_section (objfile, section);
2589
2590 addr = section->buffer;
2591 /* Version check. */
2592 version = MAYBE_SWAP (*(offset_type *) addr);
2593 /* Versions earlier than 3 emitted every copy of a psymbol. This
2594 causes the index to behave very poorly for certain requests. Version 3
2595 contained incomplete addrmap. So, it seems better to just ignore such
2596 indices. */
2597 if (version < 4)
2598 {
2599 static int warning_printed = 0;
2600 if (!warning_printed)
2601 {
2602 warning (_("Skipping obsolete .gdb_index section in %s."),
2603 filename);
2604 warning_printed = 1;
2605 }
2606 return 0;
2607 }
2608 /* Index version 4 uses a different hash function than index version
2609 5 and later.
2610
2611 Versions earlier than 6 did not emit psymbols for inlined
2612 functions. Using these files will cause GDB not to be able to
2613 set breakpoints on inlined functions by name, so we ignore these
2614 indices unless the user has done
2615 "set use-deprecated-index-sections on". */
2616 if (version < 6 && !deprecated_ok)
2617 {
2618 static int warning_printed = 0;
2619 if (!warning_printed)
2620 {
2621 warning (_("\
2622 Skipping deprecated .gdb_index section in %s.\n\
2623 Do \"set use-deprecated-index-sections on\" before the file is read\n\
2624 to use the section anyway."),
2625 filename);
2626 warning_printed = 1;
2627 }
2628 return 0;
2629 }
2630 /* Indexes with higher version than the one supported by GDB may be no
2631 longer backward compatible. */
2632 if (version > 7)
2633 return 0;
2634
2635 map->version = version;
2636 map->total_size = section->size;
2637
2638 metadata = (offset_type *) (addr + sizeof (offset_type));
2639
2640 i = 0;
2641 *cu_list = addr + MAYBE_SWAP (metadata[i]);
2642 *cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
2643 / 8);
2644 ++i;
2645
2646 *types_list = addr + MAYBE_SWAP (metadata[i]);
2647 *types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
2648 - MAYBE_SWAP (metadata[i]))
2649 / 8);
2650 ++i;
2651
2652 map->address_table = addr + MAYBE_SWAP (metadata[i]);
2653 map->address_table_size = (MAYBE_SWAP (metadata[i + 1])
2654 - MAYBE_SWAP (metadata[i]));
2655 ++i;
2656
2657 map->symbol_table = (offset_type *) (addr + MAYBE_SWAP (metadata[i]));
2658 map->symbol_table_slots = ((MAYBE_SWAP (metadata[i + 1])
2659 - MAYBE_SWAP (metadata[i]))
2660 / (2 * sizeof (offset_type)));
2661 ++i;
2662
2663 map->constant_pool = addr + MAYBE_SWAP (metadata[i]);
2664
2665 return 1;
2666 }
2667
2668
2669 /* Read the index file. If everything went ok, initialize the "quick"
2670 elements of all the CUs and return 1. Otherwise, return 0. */
2671
2672 static int
2673 dwarf2_read_index (struct objfile *objfile)
2674 {
2675 struct mapped_index local_map, *map;
2676 const gdb_byte *cu_list, *types_list, *dwz_list = NULL;
2677 offset_type cu_list_elements, types_list_elements, dwz_list_elements = 0;
2678
2679 if (!read_index_from_section (objfile, objfile->name,
2680 use_deprecated_index_sections,
2681 &dwarf2_per_objfile->gdb_index, &local_map,
2682 &cu_list, &cu_list_elements,
2683 &types_list, &types_list_elements))
2684 return 0;
2685
2686 /* Don't use the index if it's empty. */
2687 if (local_map.symbol_table_slots == 0)
2688 return 0;
2689
2690 /* If there is a .dwz file, read it so we can get its CU list as
2691 well. */
2692 if (bfd_get_section_by_name (objfile->obfd, ".gnu_debugaltlink") != NULL)
2693 {
2694 struct dwz_file *dwz = dwarf2_get_dwz_file ();
2695 struct mapped_index dwz_map;
2696 const gdb_byte *dwz_types_ignore;
2697 offset_type dwz_types_elements_ignore;
2698
2699 if (!read_index_from_section (objfile, bfd_get_filename (dwz->dwz_bfd),
2700 1,
2701 &dwz->gdb_index, &dwz_map,
2702 &dwz_list, &dwz_list_elements,
2703 &dwz_types_ignore,
2704 &dwz_types_elements_ignore))
2705 {
2706 warning (_("could not read '.gdb_index' section from %s; skipping"),
2707 bfd_get_filename (dwz->dwz_bfd));
2708 return 0;
2709 }
2710 }
2711
2712 if (!create_cus_from_index (objfile, cu_list, cu_list_elements,
2713 dwz_list, dwz_list_elements))
2714 return 0;
2715
2716 if (types_list_elements)
2717 {
2718 struct dwarf2_section_info *section;
2719
2720 /* We can only handle a single .debug_types when we have an
2721 index. */
2722 if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) != 1)
2723 return 0;
2724
2725 section = VEC_index (dwarf2_section_info_def,
2726 dwarf2_per_objfile->types, 0);
2727
2728 if (!create_signatured_type_table_from_index (objfile, section,
2729 types_list,
2730 types_list_elements))
2731 return 0;
2732 }
2733
2734 create_addrmap_from_index (objfile, &local_map);
2735
2736 map = obstack_alloc (&objfile->objfile_obstack, sizeof (struct mapped_index));
2737 *map = local_map;
2738
2739 dwarf2_per_objfile->index_table = map;
2740 dwarf2_per_objfile->using_index = 1;
2741 dwarf2_per_objfile->quick_file_names_table =
2742 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
2743
2744 return 1;
2745 }
2746
2747 /* A helper for the "quick" functions which sets the global
2748 dwarf2_per_objfile according to OBJFILE. */
2749
2750 static void
2751 dw2_setup (struct objfile *objfile)
2752 {
2753 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
2754 gdb_assert (dwarf2_per_objfile);
2755 }
2756
2757 /* Reader function for dw2_build_type_unit_groups. */
2758
2759 static void
2760 dw2_build_type_unit_groups_reader (const struct die_reader_specs *reader,
2761 gdb_byte *info_ptr,
2762 struct die_info *type_unit_die,
2763 int has_children,
2764 void *data)
2765 {
2766 struct dwarf2_cu *cu = reader->cu;
2767 struct attribute *attr;
2768 struct type_unit_group *tu_group;
2769
2770 gdb_assert (data == NULL);
2771
2772 if (! has_children)
2773 return;
2774
2775 attr = dwarf2_attr_no_follow (type_unit_die, DW_AT_stmt_list);
2776 /* Call this for its side-effect of creating the associated
2777 struct type_unit_group if it doesn't already exist. */
2778 tu_group = get_type_unit_group (cu, attr);
2779 }
2780
2781 /* Build dwarf2_per_objfile->type_unit_groups.
2782 This function may be called multiple times. */
2783
2784 static void
2785 dw2_build_type_unit_groups (void)
2786 {
2787 if (dwarf2_per_objfile->type_unit_groups == NULL)
2788 build_type_unit_groups (dw2_build_type_unit_groups_reader, NULL);
2789 }
2790
2791 /* die_reader_func for dw2_get_file_names. */
2792
2793 static void
2794 dw2_get_file_names_reader (const struct die_reader_specs *reader,
2795 gdb_byte *info_ptr,
2796 struct die_info *comp_unit_die,
2797 int has_children,
2798 void *data)
2799 {
2800 struct dwarf2_cu *cu = reader->cu;
2801 struct dwarf2_per_cu_data *this_cu = cu->per_cu;
2802 struct objfile *objfile = dwarf2_per_objfile->objfile;
2803 struct dwarf2_per_cu_data *lh_cu;
2804 struct line_header *lh;
2805 struct attribute *attr;
2806 int i;
2807 char *name, *comp_dir;
2808 void **slot;
2809 struct quick_file_names *qfn;
2810 unsigned int line_offset;
2811
2812 /* Our callers never want to match partial units -- instead they
2813 will match the enclosing full CU. */
2814 if (comp_unit_die->tag == DW_TAG_partial_unit)
2815 {
2816 this_cu->v.quick->no_file_data = 1;
2817 return;
2818 }
2819
2820 /* If we're reading the line header for TUs, store it in the "per_cu"
2821 for tu_group. */
2822 if (this_cu->is_debug_types)
2823 {
2824 struct type_unit_group *tu_group = data;
2825
2826 gdb_assert (tu_group != NULL);
2827 lh_cu = &tu_group->per_cu;
2828 }
2829 else
2830 lh_cu = this_cu;
2831
2832 lh = NULL;
2833 slot = NULL;
2834 line_offset = 0;
2835
2836 attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
2837 if (attr)
2838 {
2839 struct quick_file_names find_entry;
2840
2841 line_offset = DW_UNSND (attr);
2842
2843 /* We may have already read in this line header (TU line header sharing).
2844 If we have we're done. */
2845 find_entry.hash.dwo_unit = cu->dwo_unit;
2846 find_entry.hash.line_offset.sect_off = line_offset;
2847 slot = htab_find_slot (dwarf2_per_objfile->quick_file_names_table,
2848 &find_entry, INSERT);
2849 if (*slot != NULL)
2850 {
2851 lh_cu->v.quick->file_names = *slot;
2852 return;
2853 }
2854
2855 lh = dwarf_decode_line_header (line_offset, cu);
2856 }
2857 if (lh == NULL)
2858 {
2859 lh_cu->v.quick->no_file_data = 1;
2860 return;
2861 }
2862
2863 qfn = obstack_alloc (&objfile->objfile_obstack, sizeof (*qfn));
2864 qfn->hash.dwo_unit = cu->dwo_unit;
2865 qfn->hash.line_offset.sect_off = line_offset;
2866 gdb_assert (slot != NULL);
2867 *slot = qfn;
2868
2869 find_file_and_directory (comp_unit_die, cu, &name, &comp_dir);
2870
2871 qfn->num_file_names = lh->num_file_names;
2872 qfn->file_names = obstack_alloc (&objfile->objfile_obstack,
2873 lh->num_file_names * sizeof (char *));
2874 for (i = 0; i < lh->num_file_names; ++i)
2875 qfn->file_names[i] = file_full_name (i + 1, lh, comp_dir);
2876 qfn->real_names = NULL;
2877
2878 free_line_header (lh);
2879
2880 lh_cu->v.quick->file_names = qfn;
2881 }
2882
2883 /* A helper for the "quick" functions which attempts to read the line
2884 table for THIS_CU. */
2885
2886 static struct quick_file_names *
2887 dw2_get_file_names (struct objfile *objfile,
2888 struct dwarf2_per_cu_data *this_cu)
2889 {
2890 /* For TUs this should only be called on the parent group. */
2891 if (this_cu->is_debug_types)
2892 gdb_assert (IS_TYPE_UNIT_GROUP (this_cu));
2893
2894 if (this_cu->v.quick->file_names != NULL)
2895 return this_cu->v.quick->file_names;
2896 /* If we know there is no line data, no point in looking again. */
2897 if (this_cu->v.quick->no_file_data)
2898 return NULL;
2899
2900 /* If DWO files are in use, we can still find the DW_AT_stmt_list attribute
2901 in the stub for CUs, there's is no need to lookup the DWO file.
2902 However, that's not the case for TUs where DW_AT_stmt_list lives in the
2903 DWO file. */
2904 if (this_cu->is_debug_types)
2905 {
2906 struct type_unit_group *tu_group = this_cu->s.type_unit_group;
2907
2908 init_cutu_and_read_dies (tu_group->t.first_tu, NULL, 0, 0,
2909 dw2_get_file_names_reader, tu_group);
2910 }
2911 else
2912 init_cutu_and_read_dies_simple (this_cu, dw2_get_file_names_reader, NULL);
2913
2914 if (this_cu->v.quick->no_file_data)
2915 return NULL;
2916 return this_cu->v.quick->file_names;
2917 }
2918
2919 /* A helper for the "quick" functions which computes and caches the
2920 real path for a given file name from the line table. */
2921
2922 static const char *
2923 dw2_get_real_path (struct objfile *objfile,
2924 struct quick_file_names *qfn, int index)
2925 {
2926 if (qfn->real_names == NULL)
2927 qfn->real_names = OBSTACK_CALLOC (&objfile->objfile_obstack,
2928 qfn->num_file_names, sizeof (char *));
2929
2930 if (qfn->real_names[index] == NULL)
2931 qfn->real_names[index] = gdb_realpath (qfn->file_names[index]);
2932
2933 return qfn->real_names[index];
2934 }
2935
2936 static struct symtab *
2937 dw2_find_last_source_symtab (struct objfile *objfile)
2938 {
2939 int index;
2940
2941 dw2_setup (objfile);
2942 index = dwarf2_per_objfile->n_comp_units - 1;
2943 return dw2_instantiate_symtab (dw2_get_cu (index));
2944 }
2945
2946 /* Traversal function for dw2_forget_cached_source_info. */
2947
2948 static int
2949 dw2_free_cached_file_names (void **slot, void *info)
2950 {
2951 struct quick_file_names *file_data = (struct quick_file_names *) *slot;
2952
2953 if (file_data->real_names)
2954 {
2955 int i;
2956
2957 for (i = 0; i < file_data->num_file_names; ++i)
2958 {
2959 xfree ((void*) file_data->real_names[i]);
2960 file_data->real_names[i] = NULL;
2961 }
2962 }
2963
2964 return 1;
2965 }
2966
2967 static void
2968 dw2_forget_cached_source_info (struct objfile *objfile)
2969 {
2970 dw2_setup (objfile);
2971
2972 htab_traverse_noresize (dwarf2_per_objfile->quick_file_names_table,
2973 dw2_free_cached_file_names, NULL);
2974 }
2975
2976 /* Helper function for dw2_map_symtabs_matching_filename that expands
2977 the symtabs and calls the iterator. */
2978
2979 static int
2980 dw2_map_expand_apply (struct objfile *objfile,
2981 struct dwarf2_per_cu_data *per_cu,
2982 const char *name,
2983 const char *full_path, const char *real_path,
2984 int (*callback) (struct symtab *, void *),
2985 void *data)
2986 {
2987 struct symtab *last_made = objfile->symtabs;
2988
2989 /* Don't visit already-expanded CUs. */
2990 if (per_cu->v.quick->symtab)
2991 return 0;
2992
2993 /* This may expand more than one symtab, and we want to iterate over
2994 all of them. */
2995 dw2_instantiate_symtab (per_cu);
2996
2997 return iterate_over_some_symtabs (name, full_path, real_path, callback, data,
2998 objfile->symtabs, last_made);
2999 }
3000
3001 /* Implementation of the map_symtabs_matching_filename method. */
3002
3003 static int
3004 dw2_map_symtabs_matching_filename (struct objfile *objfile, const char *name,
3005 const char *full_path, const char *real_path,
3006 int (*callback) (struct symtab *, void *),
3007 void *data)
3008 {
3009 int i;
3010 const char *name_basename = lbasename (name);
3011 int name_len = strlen (name);
3012 int is_abs = IS_ABSOLUTE_PATH (name);
3013
3014 dw2_setup (objfile);
3015
3016 dw2_build_type_unit_groups ();
3017
3018 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3019 + dwarf2_per_objfile->n_type_unit_groups); ++i)
3020 {
3021 int j;
3022 struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
3023 struct quick_file_names *file_data;
3024
3025 /* We only need to look at symtabs not already expanded. */
3026 if (per_cu->v.quick->symtab)
3027 continue;
3028
3029 file_data = dw2_get_file_names (objfile, per_cu);
3030 if (file_data == NULL)
3031 continue;
3032
3033 for (j = 0; j < file_data->num_file_names; ++j)
3034 {
3035 const char *this_name = file_data->file_names[j];
3036
3037 if (FILENAME_CMP (name, this_name) == 0
3038 || (!is_abs && compare_filenames_for_search (this_name,
3039 name, name_len)))
3040 {
3041 if (dw2_map_expand_apply (objfile, per_cu,
3042 name, full_path, real_path,
3043 callback, data))
3044 return 1;
3045 }
3046
3047 /* Before we invoke realpath, which can get expensive when many
3048 files are involved, do a quick comparison of the basenames. */
3049 if (! basenames_may_differ
3050 && FILENAME_CMP (lbasename (this_name), name_basename) != 0)
3051 continue;
3052
3053 if (full_path != NULL)
3054 {
3055 const char *this_real_name = dw2_get_real_path (objfile,
3056 file_data, j);
3057
3058 if (this_real_name != NULL
3059 && (FILENAME_CMP (full_path, this_real_name) == 0
3060 || (!is_abs
3061 && compare_filenames_for_search (this_real_name,
3062 name, name_len))))
3063 {
3064 if (dw2_map_expand_apply (objfile, per_cu,
3065 name, full_path, real_path,
3066 callback, data))
3067 return 1;
3068 }
3069 }
3070
3071 if (real_path != NULL)
3072 {
3073 const char *this_real_name = dw2_get_real_path (objfile,
3074 file_data, j);
3075
3076 if (this_real_name != NULL
3077 && (FILENAME_CMP (real_path, this_real_name) == 0
3078 || (!is_abs
3079 && compare_filenames_for_search (this_real_name,
3080 name, name_len))))
3081 {
3082 if (dw2_map_expand_apply (objfile, per_cu,
3083 name, full_path, real_path,
3084 callback, data))
3085 return 1;
3086 }
3087 }
3088 }
3089 }
3090
3091 return 0;
3092 }
3093
3094 static struct symtab *
3095 dw2_lookup_symbol (struct objfile *objfile, int block_index,
3096 const char *name, domain_enum domain)
3097 {
3098 /* We do all the work in the pre_expand_symtabs_matching hook
3099 instead. */
3100 return NULL;
3101 }
3102
3103 /* A helper function that expands all symtabs that hold an object
3104 named NAME. If WANT_SPECIFIC_BLOCK is non-zero, only look for
3105 symbols in block BLOCK_KIND. */
3106
3107 static void
3108 dw2_do_expand_symtabs_matching (struct objfile *objfile,
3109 int want_specific_block,
3110 enum block_enum block_kind,
3111 const char *name, domain_enum domain)
3112 {
3113 struct mapped_index *index;
3114
3115 dw2_setup (objfile);
3116
3117 index = dwarf2_per_objfile->index_table;
3118
3119 /* index_table is NULL if OBJF_READNOW. */
3120 if (index)
3121 {
3122 offset_type *vec;
3123
3124 if (find_slot_in_mapped_hash (index, name, &vec))
3125 {
3126 offset_type i, len = MAYBE_SWAP (*vec);
3127 for (i = 0; i < len; ++i)
3128 {
3129 offset_type cu_index_and_attrs = MAYBE_SWAP (vec[i + 1]);
3130 offset_type cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
3131 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (cu_index);
3132 int want_static = block_kind != GLOBAL_BLOCK;
3133 /* This value is only valid for index versions >= 7. */
3134 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
3135 gdb_index_symbol_kind symbol_kind =
3136 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3137 /* Only check the symbol attributes if they're present.
3138 Indices prior to version 7 don't record them,
3139 and indices >= 7 may elide them for certain symbols
3140 (gold does this). */
3141 int attrs_valid =
3142 (index->version >= 7
3143 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3144
3145 if (attrs_valid
3146 && want_specific_block
3147 && want_static != is_static)
3148 continue;
3149
3150 /* Only check the symbol's kind if it has one. */
3151 if (attrs_valid)
3152 {
3153 switch (domain)
3154 {
3155 case VAR_DOMAIN:
3156 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE
3157 && symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION
3158 /* Some types are also in VAR_DOMAIN. */
3159 && symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3160 continue;
3161 break;
3162 case STRUCT_DOMAIN:
3163 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3164 continue;
3165 break;
3166 case LABEL_DOMAIN:
3167 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
3168 continue;
3169 break;
3170 default:
3171 break;
3172 }
3173 }
3174
3175 dw2_instantiate_symtab (per_cu);
3176 }
3177 }
3178 }
3179 }
3180
3181 static void
3182 dw2_pre_expand_symtabs_matching (struct objfile *objfile,
3183 enum block_enum block_kind, const char *name,
3184 domain_enum domain)
3185 {
3186 dw2_do_expand_symtabs_matching (objfile, 1, block_kind, name, domain);
3187 }
3188
3189 static void
3190 dw2_print_stats (struct objfile *objfile)
3191 {
3192 int i, count;
3193
3194 dw2_setup (objfile);
3195 count = 0;
3196 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3197 + dwarf2_per_objfile->n_type_units); ++i)
3198 {
3199 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3200
3201 if (!per_cu->v.quick->symtab)
3202 ++count;
3203 }
3204 printf_filtered (_(" Number of unread CUs: %d\n"), count);
3205 }
3206
3207 static void
3208 dw2_dump (struct objfile *objfile)
3209 {
3210 /* Nothing worth printing. */
3211 }
3212
3213 static void
3214 dw2_relocate (struct objfile *objfile, struct section_offsets *new_offsets,
3215 struct section_offsets *delta)
3216 {
3217 /* There's nothing to relocate here. */
3218 }
3219
3220 static void
3221 dw2_expand_symtabs_for_function (struct objfile *objfile,
3222 const char *func_name)
3223 {
3224 /* Note: It doesn't matter what we pass for block_kind here. */
3225 dw2_do_expand_symtabs_matching (objfile, 0, GLOBAL_BLOCK, func_name,
3226 VAR_DOMAIN);
3227 }
3228
3229 static void
3230 dw2_expand_all_symtabs (struct objfile *objfile)
3231 {
3232 int i;
3233
3234 dw2_setup (objfile);
3235
3236 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3237 + dwarf2_per_objfile->n_type_units); ++i)
3238 {
3239 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3240
3241 dw2_instantiate_symtab (per_cu);
3242 }
3243 }
3244
3245 static void
3246 dw2_expand_symtabs_with_filename (struct objfile *objfile,
3247 const char *filename)
3248 {
3249 int i;
3250
3251 dw2_setup (objfile);
3252
3253 /* We don't need to consider type units here.
3254 This is only called for examining code, e.g. expand_line_sal.
3255 There can be an order of magnitude (or more) more type units
3256 than comp units, and we avoid them if we can. */
3257
3258 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3259 {
3260 int j;
3261 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3262 struct quick_file_names *file_data;
3263
3264 /* We only need to look at symtabs not already expanded. */
3265 if (per_cu->v.quick->symtab)
3266 continue;
3267
3268 file_data = dw2_get_file_names (objfile, per_cu);
3269 if (file_data == NULL)
3270 continue;
3271
3272 for (j = 0; j < file_data->num_file_names; ++j)
3273 {
3274 const char *this_name = file_data->file_names[j];
3275 if (FILENAME_CMP (this_name, filename) == 0)
3276 {
3277 dw2_instantiate_symtab (per_cu);
3278 break;
3279 }
3280 }
3281 }
3282 }
3283
3284 /* A helper function for dw2_find_symbol_file that finds the primary
3285 file name for a given CU. This is a die_reader_func. */
3286
3287 static void
3288 dw2_get_primary_filename_reader (const struct die_reader_specs *reader,
3289 gdb_byte *info_ptr,
3290 struct die_info *comp_unit_die,
3291 int has_children,
3292 void *data)
3293 {
3294 const char **result_ptr = data;
3295 struct dwarf2_cu *cu = reader->cu;
3296 struct attribute *attr;
3297
3298 attr = dwarf2_attr (comp_unit_die, DW_AT_name, cu);
3299 if (attr == NULL)
3300 *result_ptr = NULL;
3301 else
3302 *result_ptr = DW_STRING (attr);
3303 }
3304
3305 static const char *
3306 dw2_find_symbol_file (struct objfile *objfile, const char *name)
3307 {
3308 struct dwarf2_per_cu_data *per_cu;
3309 offset_type *vec;
3310 struct quick_file_names *file_data;
3311 const char *filename;
3312
3313 dw2_setup (objfile);
3314
3315 /* index_table is NULL if OBJF_READNOW. */
3316 if (!dwarf2_per_objfile->index_table)
3317 {
3318 struct symtab *s;
3319
3320 ALL_OBJFILE_PRIMARY_SYMTABS (objfile, s)
3321 {
3322 struct blockvector *bv = BLOCKVECTOR (s);
3323 const struct block *block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
3324 struct symbol *sym = lookup_block_symbol (block, name, VAR_DOMAIN);
3325
3326 if (sym)
3327 return sym->symtab->filename;
3328 }
3329 return NULL;
3330 }
3331
3332 if (!find_slot_in_mapped_hash (dwarf2_per_objfile->index_table,
3333 name, &vec))
3334 return NULL;
3335
3336 /* Note that this just looks at the very first one named NAME -- but
3337 actually we are looking for a function. find_main_filename
3338 should be rewritten so that it doesn't require a custom hook. It
3339 could just use the ordinary symbol tables. */
3340 /* vec[0] is the length, which must always be >0. */
3341 per_cu = dw2_get_cu (GDB_INDEX_CU_VALUE (MAYBE_SWAP (vec[1])));
3342
3343 if (per_cu->v.quick->symtab != NULL)
3344 return per_cu->v.quick->symtab->filename;
3345
3346 init_cutu_and_read_dies (per_cu, NULL, 0, 0,
3347 dw2_get_primary_filename_reader, &filename);
3348
3349 return filename;
3350 }
3351
3352 static void
3353 dw2_map_matching_symbols (const char * name, domain_enum namespace,
3354 struct objfile *objfile, int global,
3355 int (*callback) (struct block *,
3356 struct symbol *, void *),
3357 void *data, symbol_compare_ftype *match,
3358 symbol_compare_ftype *ordered_compare)
3359 {
3360 /* Currently unimplemented; used for Ada. The function can be called if the
3361 current language is Ada for a non-Ada objfile using GNU index. As Ada
3362 does not look for non-Ada symbols this function should just return. */
3363 }
3364
3365 static void
3366 dw2_expand_symtabs_matching
3367 (struct objfile *objfile,
3368 int (*file_matcher) (const char *, void *),
3369 int (*name_matcher) (const char *, void *),
3370 enum search_domain kind,
3371 void *data)
3372 {
3373 int i;
3374 offset_type iter;
3375 struct mapped_index *index;
3376
3377 dw2_setup (objfile);
3378
3379 /* index_table is NULL if OBJF_READNOW. */
3380 if (!dwarf2_per_objfile->index_table)
3381 return;
3382 index = dwarf2_per_objfile->index_table;
3383
3384 if (file_matcher != NULL)
3385 {
3386 struct cleanup *cleanup;
3387 htab_t visited_found, visited_not_found;
3388
3389 dw2_build_type_unit_groups ();
3390
3391 visited_found = htab_create_alloc (10,
3392 htab_hash_pointer, htab_eq_pointer,
3393 NULL, xcalloc, xfree);
3394 cleanup = make_cleanup_htab_delete (visited_found);
3395 visited_not_found = htab_create_alloc (10,
3396 htab_hash_pointer, htab_eq_pointer,
3397 NULL, xcalloc, xfree);
3398 make_cleanup_htab_delete (visited_not_found);
3399
3400 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3401 + dwarf2_per_objfile->n_type_unit_groups); ++i)
3402 {
3403 int j;
3404 struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
3405 struct quick_file_names *file_data;
3406 void **slot;
3407
3408 per_cu->v.quick->mark = 0;
3409
3410 /* We only need to look at symtabs not already expanded. */
3411 if (per_cu->v.quick->symtab)
3412 continue;
3413
3414 file_data = dw2_get_file_names (objfile, per_cu);
3415 if (file_data == NULL)
3416 continue;
3417
3418 if (htab_find (visited_not_found, file_data) != NULL)
3419 continue;
3420 else if (htab_find (visited_found, file_data) != NULL)
3421 {
3422 per_cu->v.quick->mark = 1;
3423 continue;
3424 }
3425
3426 for (j = 0; j < file_data->num_file_names; ++j)
3427 {
3428 if (file_matcher (file_data->file_names[j], data))
3429 {
3430 per_cu->v.quick->mark = 1;
3431 break;
3432 }
3433 }
3434
3435 slot = htab_find_slot (per_cu->v.quick->mark
3436 ? visited_found
3437 : visited_not_found,
3438 file_data, INSERT);
3439 *slot = file_data;
3440 }
3441
3442 do_cleanups (cleanup);
3443 }
3444
3445 for (iter = 0; iter < index->symbol_table_slots; ++iter)
3446 {
3447 offset_type idx = 2 * iter;
3448 const char *name;
3449 offset_type *vec, vec_len, vec_idx;
3450
3451 if (index->symbol_table[idx] == 0 && index->symbol_table[idx + 1] == 0)
3452 continue;
3453
3454 name = index->constant_pool + MAYBE_SWAP (index->symbol_table[idx]);
3455
3456 if (! (*name_matcher) (name, data))
3457 continue;
3458
3459 /* The name was matched, now expand corresponding CUs that were
3460 marked. */
3461 vec = (offset_type *) (index->constant_pool
3462 + MAYBE_SWAP (index->symbol_table[idx + 1]));
3463 vec_len = MAYBE_SWAP (vec[0]);
3464 for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
3465 {
3466 struct dwarf2_per_cu_data *per_cu;
3467 offset_type cu_index_and_attrs = MAYBE_SWAP (vec[vec_idx + 1]);
3468 gdb_index_symbol_kind symbol_kind =
3469 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3470 int cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
3471
3472 /* Don't crash on bad data. */
3473 if (cu_index >= (dwarf2_per_objfile->n_comp_units
3474 + dwarf2_per_objfile->n_type_units))
3475 continue;
3476
3477 /* Only check the symbol's kind if it has one.
3478 Indices prior to version 7 don't record it. */
3479 if (index->version >= 7)
3480 {
3481 switch (kind)
3482 {
3483 case VARIABLES_DOMAIN:
3484 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE)
3485 continue;
3486 break;
3487 case FUNCTIONS_DOMAIN:
3488 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION)
3489 continue;
3490 break;
3491 case TYPES_DOMAIN:
3492 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3493 continue;
3494 break;
3495 default:
3496 break;
3497 }
3498 }
3499
3500 per_cu = dw2_get_cu (cu_index);
3501 if (file_matcher == NULL || per_cu->v.quick->mark)
3502 dw2_instantiate_symtab (per_cu);
3503 }
3504 }
3505 }
3506
3507 /* A helper for dw2_find_pc_sect_symtab which finds the most specific
3508 symtab. */
3509
3510 static struct symtab *
3511 recursively_find_pc_sect_symtab (struct symtab *symtab, CORE_ADDR pc)
3512 {
3513 int i;
3514
3515 if (BLOCKVECTOR (symtab) != NULL
3516 && blockvector_contains_pc (BLOCKVECTOR (symtab), pc))
3517 return symtab;
3518
3519 if (symtab->includes == NULL)
3520 return NULL;
3521
3522 for (i = 0; symtab->includes[i]; ++i)
3523 {
3524 struct symtab *s = symtab->includes[i];
3525
3526 s = recursively_find_pc_sect_symtab (s, pc);
3527 if (s != NULL)
3528 return s;
3529 }
3530
3531 return NULL;
3532 }
3533
3534 static struct symtab *
3535 dw2_find_pc_sect_symtab (struct objfile *objfile,
3536 struct minimal_symbol *msymbol,
3537 CORE_ADDR pc,
3538 struct obj_section *section,
3539 int warn_if_readin)
3540 {
3541 struct dwarf2_per_cu_data *data;
3542 struct symtab *result;
3543
3544 dw2_setup (objfile);
3545
3546 if (!objfile->psymtabs_addrmap)
3547 return NULL;
3548
3549 data = addrmap_find (objfile->psymtabs_addrmap, pc);
3550 if (!data)
3551 return NULL;
3552
3553 if (warn_if_readin && data->v.quick->symtab)
3554 warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
3555 paddress (get_objfile_arch (objfile), pc));
3556
3557 result = recursively_find_pc_sect_symtab (dw2_instantiate_symtab (data), pc);
3558 gdb_assert (result != NULL);
3559 return result;
3560 }
3561
3562 static void
3563 dw2_map_symbol_filenames (struct objfile *objfile, symbol_filename_ftype *fun,
3564 void *data, int need_fullname)
3565 {
3566 int i;
3567 struct cleanup *cleanup;
3568 htab_t visited = htab_create_alloc (10, htab_hash_pointer, htab_eq_pointer,
3569 NULL, xcalloc, xfree);
3570
3571 cleanup = make_cleanup_htab_delete (visited);
3572 dw2_setup (objfile);
3573
3574 dw2_build_type_unit_groups ();
3575
3576 /* We can ignore file names coming from already-expanded CUs. */
3577 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3578 + dwarf2_per_objfile->n_type_units); ++i)
3579 {
3580 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3581
3582 if (per_cu->v.quick->symtab)
3583 {
3584 void **slot = htab_find_slot (visited, per_cu->v.quick->file_names,
3585 INSERT);
3586
3587 *slot = per_cu->v.quick->file_names;
3588 }
3589 }
3590
3591 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3592 + dwarf2_per_objfile->n_type_unit_groups); ++i)
3593 {
3594 int j;
3595 struct dwarf2_per_cu_data *per_cu = dw2_get_primary_cu (i);
3596 struct quick_file_names *file_data;
3597 void **slot;
3598
3599 /* We only need to look at symtabs not already expanded. */
3600 if (per_cu->v.quick->symtab)
3601 continue;
3602
3603 file_data = dw2_get_file_names (objfile, per_cu);
3604 if (file_data == NULL)
3605 continue;
3606
3607 slot = htab_find_slot (visited, file_data, INSERT);
3608 if (*slot)
3609 {
3610 /* Already visited. */
3611 continue;
3612 }
3613 *slot = file_data;
3614
3615 for (j = 0; j < file_data->num_file_names; ++j)
3616 {
3617 const char *this_real_name;
3618
3619 if (need_fullname)
3620 this_real_name = dw2_get_real_path (objfile, file_data, j);
3621 else
3622 this_real_name = NULL;
3623 (*fun) (file_data->file_names[j], this_real_name, data);
3624 }
3625 }
3626
3627 do_cleanups (cleanup);
3628 }
3629
3630 static int
3631 dw2_has_symbols (struct objfile *objfile)
3632 {
3633 return 1;
3634 }
3635
3636 const struct quick_symbol_functions dwarf2_gdb_index_functions =
3637 {
3638 dw2_has_symbols,
3639 dw2_find_last_source_symtab,
3640 dw2_forget_cached_source_info,
3641 dw2_map_symtabs_matching_filename,
3642 dw2_lookup_symbol,
3643 dw2_pre_expand_symtabs_matching,
3644 dw2_print_stats,
3645 dw2_dump,
3646 dw2_relocate,
3647 dw2_expand_symtabs_for_function,
3648 dw2_expand_all_symtabs,
3649 dw2_expand_symtabs_with_filename,
3650 dw2_find_symbol_file,
3651 dw2_map_matching_symbols,
3652 dw2_expand_symtabs_matching,
3653 dw2_find_pc_sect_symtab,
3654 dw2_map_symbol_filenames
3655 };
3656
3657 /* Initialize for reading DWARF for this objfile. Return 0 if this
3658 file will use psymtabs, or 1 if using the GNU index. */
3659
3660 int
3661 dwarf2_initialize_objfile (struct objfile *objfile)
3662 {
3663 /* If we're about to read full symbols, don't bother with the
3664 indices. In this case we also don't care if some other debug
3665 format is making psymtabs, because they are all about to be
3666 expanded anyway. */
3667 if ((objfile->flags & OBJF_READNOW))
3668 {
3669 int i;
3670
3671 dwarf2_per_objfile->using_index = 1;
3672 create_all_comp_units (objfile);
3673 create_all_type_units (objfile);
3674 dwarf2_per_objfile->quick_file_names_table =
3675 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
3676
3677 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
3678 + dwarf2_per_objfile->n_type_units); ++i)
3679 {
3680 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
3681
3682 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3683 struct dwarf2_per_cu_quick_data);
3684 }
3685
3686 /* Return 1 so that gdb sees the "quick" functions. However,
3687 these functions will be no-ops because we will have expanded
3688 all symtabs. */
3689 return 1;
3690 }
3691
3692 if (dwarf2_read_index (objfile))
3693 return 1;
3694
3695 return 0;
3696 }
3697
3698 \f
3699
3700 /* Build a partial symbol table. */
3701
3702 void
3703 dwarf2_build_psymtabs (struct objfile *objfile)
3704 {
3705 if (objfile->global_psymbols.size == 0 && objfile->static_psymbols.size == 0)
3706 {
3707 init_psymbol_list (objfile, 1024);
3708 }
3709
3710 dwarf2_build_psymtabs_hard (objfile);
3711 }
3712
3713 /* Return the total length of the CU described by HEADER. */
3714
3715 static unsigned int
3716 get_cu_length (const struct comp_unit_head *header)
3717 {
3718 return header->initial_length_size + header->length;
3719 }
3720
3721 /* Return TRUE if OFFSET is within CU_HEADER. */
3722
3723 static inline int
3724 offset_in_cu_p (const struct comp_unit_head *cu_header, sect_offset offset)
3725 {
3726 sect_offset bottom = { cu_header->offset.sect_off };
3727 sect_offset top = { cu_header->offset.sect_off + get_cu_length (cu_header) };
3728
3729 return (offset.sect_off >= bottom.sect_off && offset.sect_off < top.sect_off);
3730 }
3731
3732 /* Find the base address of the compilation unit for range lists and
3733 location lists. It will normally be specified by DW_AT_low_pc.
3734 In DWARF-3 draft 4, the base address could be overridden by
3735 DW_AT_entry_pc. It's been removed, but GCC still uses this for
3736 compilation units with discontinuous ranges. */
3737
3738 static void
3739 dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
3740 {
3741 struct attribute *attr;
3742
3743 cu->base_known = 0;
3744 cu->base_address = 0;
3745
3746 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
3747 if (attr)
3748 {
3749 cu->base_address = DW_ADDR (attr);
3750 cu->base_known = 1;
3751 }
3752 else
3753 {
3754 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
3755 if (attr)
3756 {
3757 cu->base_address = DW_ADDR (attr);
3758 cu->base_known = 1;
3759 }
3760 }
3761 }
3762
3763 /* Read in the comp unit header information from the debug_info at info_ptr.
3764 NOTE: This leaves members offset, first_die_offset to be filled in
3765 by the caller. */
3766
3767 static gdb_byte *
3768 read_comp_unit_head (struct comp_unit_head *cu_header,
3769 gdb_byte *info_ptr, bfd *abfd)
3770 {
3771 int signed_addr;
3772 unsigned int bytes_read;
3773
3774 cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
3775 cu_header->initial_length_size = bytes_read;
3776 cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
3777 info_ptr += bytes_read;
3778 cu_header->version = read_2_bytes (abfd, info_ptr);
3779 info_ptr += 2;
3780 cu_header->abbrev_offset.sect_off = read_offset (abfd, info_ptr, cu_header,
3781 &bytes_read);
3782 info_ptr += bytes_read;
3783 cu_header->addr_size = read_1_byte (abfd, info_ptr);
3784 info_ptr += 1;
3785 signed_addr = bfd_get_sign_extend_vma (abfd);
3786 if (signed_addr < 0)
3787 internal_error (__FILE__, __LINE__,
3788 _("read_comp_unit_head: dwarf from non elf file"));
3789 cu_header->signed_addr_p = signed_addr;
3790
3791 return info_ptr;
3792 }
3793
3794 /* Helper function that returns the proper abbrev section for
3795 THIS_CU. */
3796
3797 static struct dwarf2_section_info *
3798 get_abbrev_section_for_cu (struct dwarf2_per_cu_data *this_cu)
3799 {
3800 struct dwarf2_section_info *abbrev;
3801
3802 if (this_cu->is_dwz)
3803 abbrev = &dwarf2_get_dwz_file ()->abbrev;
3804 else
3805 abbrev = &dwarf2_per_objfile->abbrev;
3806
3807 return abbrev;
3808 }
3809
3810 /* Subroutine of read_and_check_comp_unit_head and
3811 read_and_check_type_unit_head to simplify them.
3812 Perform various error checking on the header. */
3813
3814 static void
3815 error_check_comp_unit_head (struct comp_unit_head *header,
3816 struct dwarf2_section_info *section,
3817 struct dwarf2_section_info *abbrev_section)
3818 {
3819 bfd *abfd = section->asection->owner;
3820 const char *filename = bfd_get_filename (abfd);
3821
3822 if (header->version != 2 && header->version != 3 && header->version != 4)
3823 error (_("Dwarf Error: wrong version in compilation unit header "
3824 "(is %d, should be 2, 3, or 4) [in module %s]"), header->version,
3825 filename);
3826
3827 if (header->abbrev_offset.sect_off
3828 >= dwarf2_section_size (dwarf2_per_objfile->objfile, abbrev_section))
3829 error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
3830 "(offset 0x%lx + 6) [in module %s]"),
3831 (long) header->abbrev_offset.sect_off, (long) header->offset.sect_off,
3832 filename);
3833
3834 /* Cast to unsigned long to use 64-bit arithmetic when possible to
3835 avoid potential 32-bit overflow. */
3836 if (((unsigned long) header->offset.sect_off + get_cu_length (header))
3837 > section->size)
3838 error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
3839 "(offset 0x%lx + 0) [in module %s]"),
3840 (long) header->length, (long) header->offset.sect_off,
3841 filename);
3842 }
3843
3844 /* Read in a CU/TU header and perform some basic error checking.
3845 The contents of the header are stored in HEADER.
3846 The result is a pointer to the start of the first DIE. */
3847
3848 static gdb_byte *
3849 read_and_check_comp_unit_head (struct comp_unit_head *header,
3850 struct dwarf2_section_info *section,
3851 struct dwarf2_section_info *abbrev_section,
3852 gdb_byte *info_ptr,
3853 int is_debug_types_section)
3854 {
3855 gdb_byte *beg_of_comp_unit = info_ptr;
3856 bfd *abfd = section->asection->owner;
3857
3858 header->offset.sect_off = beg_of_comp_unit - section->buffer;
3859
3860 info_ptr = read_comp_unit_head (header, info_ptr, abfd);
3861
3862 /* If we're reading a type unit, skip over the signature and
3863 type_offset fields. */
3864 if (is_debug_types_section)
3865 info_ptr += 8 /*signature*/ + header->offset_size;
3866
3867 header->first_die_offset.cu_off = info_ptr - beg_of_comp_unit;
3868
3869 error_check_comp_unit_head (header, section, abbrev_section);
3870
3871 return info_ptr;
3872 }
3873
3874 /* Read in the types comp unit header information from .debug_types entry at
3875 types_ptr. The result is a pointer to one past the end of the header. */
3876
3877 static gdb_byte *
3878 read_and_check_type_unit_head (struct comp_unit_head *header,
3879 struct dwarf2_section_info *section,
3880 struct dwarf2_section_info *abbrev_section,
3881 gdb_byte *info_ptr,
3882 ULONGEST *signature,
3883 cu_offset *type_offset_in_tu)
3884 {
3885 gdb_byte *beg_of_comp_unit = info_ptr;
3886 bfd *abfd = section->asection->owner;
3887
3888 header->offset.sect_off = beg_of_comp_unit - section->buffer;
3889
3890 info_ptr = read_comp_unit_head (header, info_ptr, abfd);
3891
3892 /* If we're reading a type unit, skip over the signature and
3893 type_offset fields. */
3894 if (signature != NULL)
3895 *signature = read_8_bytes (abfd, info_ptr);
3896 info_ptr += 8;
3897 if (type_offset_in_tu != NULL)
3898 type_offset_in_tu->cu_off = read_offset_1 (abfd, info_ptr,
3899 header->offset_size);
3900 info_ptr += header->offset_size;
3901
3902 header->first_die_offset.cu_off = info_ptr - beg_of_comp_unit;
3903
3904 error_check_comp_unit_head (header, section, abbrev_section);
3905
3906 return info_ptr;
3907 }
3908
3909 /* Fetch the abbreviation table offset from a comp or type unit header. */
3910
3911 static sect_offset
3912 read_abbrev_offset (struct dwarf2_section_info *section,
3913 sect_offset offset)
3914 {
3915 bfd *abfd = section->asection->owner;
3916 gdb_byte *info_ptr;
3917 unsigned int length, initial_length_size, offset_size;
3918 sect_offset abbrev_offset;
3919
3920 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
3921 info_ptr = section->buffer + offset.sect_off;
3922 length = read_initial_length (abfd, info_ptr, &initial_length_size);
3923 offset_size = initial_length_size == 4 ? 4 : 8;
3924 info_ptr += initial_length_size + 2 /*version*/;
3925 abbrev_offset.sect_off = read_offset_1 (abfd, info_ptr, offset_size);
3926 return abbrev_offset;
3927 }
3928
3929 /* Allocate a new partial symtab for file named NAME and mark this new
3930 partial symtab as being an include of PST. */
3931
3932 static void
3933 dwarf2_create_include_psymtab (char *name, struct partial_symtab *pst,
3934 struct objfile *objfile)
3935 {
3936 struct partial_symtab *subpst = allocate_psymtab (name, objfile);
3937
3938 subpst->section_offsets = pst->section_offsets;
3939 subpst->textlow = 0;
3940 subpst->texthigh = 0;
3941
3942 subpst->dependencies = (struct partial_symtab **)
3943 obstack_alloc (&objfile->objfile_obstack,
3944 sizeof (struct partial_symtab *));
3945 subpst->dependencies[0] = pst;
3946 subpst->number_of_dependencies = 1;
3947
3948 subpst->globals_offset = 0;
3949 subpst->n_global_syms = 0;
3950 subpst->statics_offset = 0;
3951 subpst->n_static_syms = 0;
3952 subpst->symtab = NULL;
3953 subpst->read_symtab = pst->read_symtab;
3954 subpst->readin = 0;
3955
3956 /* No private part is necessary for include psymtabs. This property
3957 can be used to differentiate between such include psymtabs and
3958 the regular ones. */
3959 subpst->read_symtab_private = NULL;
3960 }
3961
3962 /* Read the Line Number Program data and extract the list of files
3963 included by the source file represented by PST. Build an include
3964 partial symtab for each of these included files. */
3965
3966 static void
3967 dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
3968 struct die_info *die,
3969 struct partial_symtab *pst)
3970 {
3971 struct line_header *lh = NULL;
3972 struct attribute *attr;
3973
3974 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
3975 if (attr)
3976 lh = dwarf_decode_line_header (DW_UNSND (attr), cu);
3977 if (lh == NULL)
3978 return; /* No linetable, so no includes. */
3979
3980 /* NOTE: pst->dirname is DW_AT_comp_dir (if present). */
3981 dwarf_decode_lines (lh, pst->dirname, cu, pst, 1);
3982
3983 free_line_header (lh);
3984 }
3985
3986 static hashval_t
3987 hash_signatured_type (const void *item)
3988 {
3989 const struct signatured_type *sig_type = item;
3990
3991 /* This drops the top 32 bits of the signature, but is ok for a hash. */
3992 return sig_type->signature;
3993 }
3994
3995 static int
3996 eq_signatured_type (const void *item_lhs, const void *item_rhs)
3997 {
3998 const struct signatured_type *lhs = item_lhs;
3999 const struct signatured_type *rhs = item_rhs;
4000
4001 return lhs->signature == rhs->signature;
4002 }
4003
4004 /* Allocate a hash table for signatured types. */
4005
4006 static htab_t
4007 allocate_signatured_type_table (struct objfile *objfile)
4008 {
4009 return htab_create_alloc_ex (41,
4010 hash_signatured_type,
4011 eq_signatured_type,
4012 NULL,
4013 &objfile->objfile_obstack,
4014 hashtab_obstack_allocate,
4015 dummy_obstack_deallocate);
4016 }
4017
4018 /* A helper function to add a signatured type CU to a table. */
4019
4020 static int
4021 add_signatured_type_cu_to_table (void **slot, void *datum)
4022 {
4023 struct signatured_type *sigt = *slot;
4024 struct signatured_type ***datap = datum;
4025
4026 **datap = sigt;
4027 ++*datap;
4028
4029 return 1;
4030 }
4031
4032 /* Create the hash table of all entries in the .debug_types section.
4033 DWO_FILE is a pointer to the DWO file for .debug_types.dwo, NULL otherwise.
4034 The result is a pointer to the hash table or NULL if there are
4035 no types. */
4036
4037 static htab_t
4038 create_debug_types_hash_table (struct dwo_file *dwo_file,
4039 VEC (dwarf2_section_info_def) *types)
4040 {
4041 struct objfile *objfile = dwarf2_per_objfile->objfile;
4042 htab_t types_htab = NULL;
4043 int ix;
4044 struct dwarf2_section_info *section;
4045 struct dwarf2_section_info *abbrev_section;
4046
4047 if (VEC_empty (dwarf2_section_info_def, types))
4048 return NULL;
4049
4050 abbrev_section = (dwo_file != NULL
4051 ? &dwo_file->sections.abbrev
4052 : &dwarf2_per_objfile->abbrev);
4053
4054 if (dwarf2_read_debug)
4055 fprintf_unfiltered (gdb_stdlog, "Reading .debug_types%s for %s:\n",
4056 dwo_file ? ".dwo" : "",
4057 bfd_get_filename (abbrev_section->asection->owner));
4058
4059 for (ix = 0;
4060 VEC_iterate (dwarf2_section_info_def, types, ix, section);
4061 ++ix)
4062 {
4063 bfd *abfd;
4064 gdb_byte *info_ptr, *end_ptr;
4065 struct dwarf2_section_info *abbrev_section;
4066
4067 dwarf2_read_section (objfile, section);
4068 info_ptr = section->buffer;
4069
4070 if (info_ptr == NULL)
4071 continue;
4072
4073 /* We can't set abfd until now because the section may be empty or
4074 not present, in which case section->asection will be NULL. */
4075 abfd = section->asection->owner;
4076
4077 if (dwo_file)
4078 abbrev_section = &dwo_file->sections.abbrev;
4079 else
4080 abbrev_section = &dwarf2_per_objfile->abbrev;
4081
4082 if (types_htab == NULL)
4083 {
4084 if (dwo_file)
4085 types_htab = allocate_dwo_unit_table (objfile);
4086 else
4087 types_htab = allocate_signatured_type_table (objfile);
4088 }
4089
4090 /* We don't use init_cutu_and_read_dies_simple, or some such, here
4091 because we don't need to read any dies: the signature is in the
4092 header. */
4093
4094 end_ptr = info_ptr + section->size;
4095 while (info_ptr < end_ptr)
4096 {
4097 sect_offset offset;
4098 cu_offset type_offset_in_tu;
4099 ULONGEST signature;
4100 struct signatured_type *sig_type;
4101 struct dwo_unit *dwo_tu;
4102 void **slot;
4103 gdb_byte *ptr = info_ptr;
4104 struct comp_unit_head header;
4105 unsigned int length;
4106
4107 offset.sect_off = ptr - section->buffer;
4108
4109 /* We need to read the type's signature in order to build the hash
4110 table, but we don't need anything else just yet. */
4111
4112 ptr = read_and_check_type_unit_head (&header, section,
4113 abbrev_section, ptr,
4114 &signature, &type_offset_in_tu);
4115
4116 length = get_cu_length (&header);
4117
4118 /* Skip dummy type units. */
4119 if (ptr >= info_ptr + length
4120 || peek_abbrev_code (abfd, ptr) == 0)
4121 {
4122 info_ptr += length;
4123 continue;
4124 }
4125
4126 if (dwo_file)
4127 {
4128 sig_type = NULL;
4129 dwo_tu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4130 struct dwo_unit);
4131 dwo_tu->dwo_file = dwo_file;
4132 dwo_tu->signature = signature;
4133 dwo_tu->type_offset_in_tu = type_offset_in_tu;
4134 dwo_tu->info_or_types_section = section;
4135 dwo_tu->offset = offset;
4136 dwo_tu->length = length;
4137 }
4138 else
4139 {
4140 /* N.B.: type_offset is not usable if this type uses a DWO file.
4141 The real type_offset is in the DWO file. */
4142 dwo_tu = NULL;
4143 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4144 struct signatured_type);
4145 sig_type->signature = signature;
4146 sig_type->type_offset_in_tu = type_offset_in_tu;
4147 sig_type->per_cu.objfile = objfile;
4148 sig_type->per_cu.is_debug_types = 1;
4149 sig_type->per_cu.info_or_types_section = section;
4150 sig_type->per_cu.offset = offset;
4151 sig_type->per_cu.length = length;
4152 }
4153
4154 slot = htab_find_slot (types_htab,
4155 dwo_file ? (void*) dwo_tu : (void *) sig_type,
4156 INSERT);
4157 gdb_assert (slot != NULL);
4158 if (*slot != NULL)
4159 {
4160 sect_offset dup_offset;
4161
4162 if (dwo_file)
4163 {
4164 const struct dwo_unit *dup_tu = *slot;
4165
4166 dup_offset = dup_tu->offset;
4167 }
4168 else
4169 {
4170 const struct signatured_type *dup_tu = *slot;
4171
4172 dup_offset = dup_tu->per_cu.offset;
4173 }
4174
4175 complaint (&symfile_complaints,
4176 _("debug type entry at offset 0x%x is duplicate to the "
4177 "entry at offset 0x%x, signature 0x%s"),
4178 offset.sect_off, dup_offset.sect_off,
4179 phex (signature, sizeof (signature)));
4180 }
4181 *slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
4182
4183 if (dwarf2_read_debug)
4184 fprintf_unfiltered (gdb_stdlog, " offset 0x%x, signature 0x%s\n",
4185 offset.sect_off,
4186 phex (signature, sizeof (signature)));
4187
4188 info_ptr += length;
4189 }
4190 }
4191
4192 return types_htab;
4193 }
4194
4195 /* Create the hash table of all entries in the .debug_types section,
4196 and initialize all_type_units.
4197 The result is zero if there is an error (e.g. missing .debug_types section),
4198 otherwise non-zero. */
4199
4200 static int
4201 create_all_type_units (struct objfile *objfile)
4202 {
4203 htab_t types_htab;
4204 struct signatured_type **iter;
4205
4206 types_htab = create_debug_types_hash_table (NULL, dwarf2_per_objfile->types);
4207 if (types_htab == NULL)
4208 {
4209 dwarf2_per_objfile->signatured_types = NULL;
4210 return 0;
4211 }
4212
4213 dwarf2_per_objfile->signatured_types = types_htab;
4214
4215 dwarf2_per_objfile->n_type_units = htab_elements (types_htab);
4216 dwarf2_per_objfile->all_type_units
4217 = obstack_alloc (&objfile->objfile_obstack,
4218 dwarf2_per_objfile->n_type_units
4219 * sizeof (struct signatured_type *));
4220 iter = &dwarf2_per_objfile->all_type_units[0];
4221 htab_traverse_noresize (types_htab, add_signatured_type_cu_to_table, &iter);
4222 gdb_assert (iter - &dwarf2_per_objfile->all_type_units[0]
4223 == dwarf2_per_objfile->n_type_units);
4224
4225 return 1;
4226 }
4227
4228 /* Lookup a signature based type for DW_FORM_ref_sig8.
4229 Returns NULL if signature SIG is not present in the table. */
4230
4231 static struct signatured_type *
4232 lookup_signatured_type (ULONGEST sig)
4233 {
4234 struct signatured_type find_entry, *entry;
4235
4236 if (dwarf2_per_objfile->signatured_types == NULL)
4237 {
4238 complaint (&symfile_complaints,
4239 _("missing `.debug_types' section for DW_FORM_ref_sig8 die"));
4240 return NULL;
4241 }
4242
4243 find_entry.signature = sig;
4244 entry = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
4245 return entry;
4246 }
4247 \f
4248 /* Low level DIE reading support. */
4249
4250 /* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
4251
4252 static void
4253 init_cu_die_reader (struct die_reader_specs *reader,
4254 struct dwarf2_cu *cu,
4255 struct dwarf2_section_info *section,
4256 struct dwo_file *dwo_file)
4257 {
4258 gdb_assert (section->readin && section->buffer != NULL);
4259 reader->abfd = section->asection->owner;
4260 reader->cu = cu;
4261 reader->dwo_file = dwo_file;
4262 reader->die_section = section;
4263 reader->buffer = section->buffer;
4264 reader->buffer_end = section->buffer + section->size;
4265 }
4266
4267 /* Initialize a CU (or TU) and read its DIEs.
4268 If the CU defers to a DWO file, read the DWO file as well.
4269
4270 ABBREV_TABLE, if non-NULL, is the abbreviation table to use.
4271 Otherwise the table specified in the comp unit header is read in and used.
4272 This is an optimization for when we already have the abbrev table.
4273
4274 If USE_EXISTING_CU is non-zero, and THIS_CU->cu is non-NULL, then use it.
4275 Otherwise, a new CU is allocated with xmalloc.
4276
4277 If KEEP is non-zero, then if we allocated a dwarf2_cu we add it to
4278 read_in_chain. Otherwise the dwarf2_cu data is freed at the end.
4279
4280 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
4281 linker) then DIE_READER_FUNC will not get called. */
4282
4283 static void
4284 init_cutu_and_read_dies (struct dwarf2_per_cu_data *this_cu,
4285 struct abbrev_table *abbrev_table,
4286 int use_existing_cu, int keep,
4287 die_reader_func_ftype *die_reader_func,
4288 void *data)
4289 {
4290 struct objfile *objfile = dwarf2_per_objfile->objfile;
4291 struct dwarf2_section_info *section = this_cu->info_or_types_section;
4292 bfd *abfd = section->asection->owner;
4293 struct dwarf2_cu *cu;
4294 gdb_byte *begin_info_ptr, *info_ptr;
4295 struct die_reader_specs reader;
4296 struct die_info *comp_unit_die;
4297 int has_children;
4298 struct attribute *attr;
4299 struct cleanup *cleanups, *free_cu_cleanup = NULL;
4300 struct signatured_type *sig_type = NULL;
4301 struct dwarf2_section_info *abbrev_section;
4302 /* Non-zero if CU currently points to a DWO file and we need to
4303 reread it. When this happens we need to reread the skeleton die
4304 before we can reread the DWO file. */
4305 int rereading_dwo_cu = 0;
4306
4307 if (dwarf2_die_debug)
4308 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset 0x%x\n",
4309 this_cu->is_debug_types ? "type" : "comp",
4310 this_cu->offset.sect_off);
4311
4312 if (use_existing_cu)
4313 gdb_assert (keep);
4314
4315 cleanups = make_cleanup (null_cleanup, NULL);
4316
4317 /* This is cheap if the section is already read in. */
4318 dwarf2_read_section (objfile, section);
4319
4320 begin_info_ptr = info_ptr = section->buffer + this_cu->offset.sect_off;
4321
4322 abbrev_section = get_abbrev_section_for_cu (this_cu);
4323
4324 if (use_existing_cu && this_cu->cu != NULL)
4325 {
4326 cu = this_cu->cu;
4327
4328 /* If this CU is from a DWO file we need to start over, we need to
4329 refetch the attributes from the skeleton CU.
4330 This could be optimized by retrieving those attributes from when we
4331 were here the first time: the previous comp_unit_die was stored in
4332 comp_unit_obstack. But there's no data yet that we need this
4333 optimization. */
4334 if (cu->dwo_unit != NULL)
4335 rereading_dwo_cu = 1;
4336 }
4337 else
4338 {
4339 /* If !use_existing_cu, this_cu->cu must be NULL. */
4340 gdb_assert (this_cu->cu == NULL);
4341
4342 cu = xmalloc (sizeof (*cu));
4343 init_one_comp_unit (cu, this_cu);
4344
4345 /* If an error occurs while loading, release our storage. */
4346 free_cu_cleanup = make_cleanup (free_heap_comp_unit, cu);
4347 }
4348
4349 if (cu->header.first_die_offset.cu_off != 0 && ! rereading_dwo_cu)
4350 {
4351 /* We already have the header, there's no need to read it in again. */
4352 info_ptr += cu->header.first_die_offset.cu_off;
4353 }
4354 else
4355 {
4356 if (this_cu->is_debug_types)
4357 {
4358 ULONGEST signature;
4359 cu_offset type_offset_in_tu;
4360
4361 info_ptr = read_and_check_type_unit_head (&cu->header, section,
4362 abbrev_section, info_ptr,
4363 &signature,
4364 &type_offset_in_tu);
4365
4366 /* Since per_cu is the first member of struct signatured_type,
4367 we can go from a pointer to one to a pointer to the other. */
4368 sig_type = (struct signatured_type *) this_cu;
4369 gdb_assert (sig_type->signature == signature);
4370 gdb_assert (sig_type->type_offset_in_tu.cu_off
4371 == type_offset_in_tu.cu_off);
4372 gdb_assert (this_cu->offset.sect_off == cu->header.offset.sect_off);
4373
4374 /* LENGTH has not been set yet for type units if we're
4375 using .gdb_index. */
4376 this_cu->length = get_cu_length (&cu->header);
4377
4378 /* Establish the type offset that can be used to lookup the type. */
4379 sig_type->type_offset_in_section.sect_off =
4380 this_cu->offset.sect_off + sig_type->type_offset_in_tu.cu_off;
4381 }
4382 else
4383 {
4384 info_ptr = read_and_check_comp_unit_head (&cu->header, section,
4385 abbrev_section,
4386 info_ptr, 0);
4387
4388 gdb_assert (this_cu->offset.sect_off == cu->header.offset.sect_off);
4389 gdb_assert (this_cu->length == get_cu_length (&cu->header));
4390 }
4391 }
4392
4393 /* Skip dummy compilation units. */
4394 if (info_ptr >= begin_info_ptr + this_cu->length
4395 || peek_abbrev_code (abfd, info_ptr) == 0)
4396 {
4397 do_cleanups (cleanups);
4398 return;
4399 }
4400
4401 /* If we don't have them yet, read the abbrevs for this compilation unit.
4402 And if we need to read them now, make sure they're freed when we're
4403 done. Note that it's important that if the CU had an abbrev table
4404 on entry we don't free it when we're done: Somewhere up the call stack
4405 it may be in use. */
4406 if (abbrev_table != NULL)
4407 {
4408 gdb_assert (cu->abbrev_table == NULL);
4409 gdb_assert (cu->header.abbrev_offset.sect_off
4410 == abbrev_table->offset.sect_off);
4411 cu->abbrev_table = abbrev_table;
4412 }
4413 else if (cu->abbrev_table == NULL)
4414 {
4415 dwarf2_read_abbrevs (cu, abbrev_section);
4416 make_cleanup (dwarf2_free_abbrev_table, cu);
4417 }
4418 else if (rereading_dwo_cu)
4419 {
4420 dwarf2_free_abbrev_table (cu);
4421 dwarf2_read_abbrevs (cu, abbrev_section);
4422 }
4423
4424 /* Read the top level CU/TU die. */
4425 init_cu_die_reader (&reader, cu, section, NULL);
4426 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
4427
4428 /* If we have a DWO stub, process it and then read in the DWO file.
4429 Note that if USE_EXISTING_OK != 0, and THIS_CU->cu already contains
4430 a DWO CU, that this test will fail. */
4431 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
4432 if (attr)
4433 {
4434 char *dwo_name = DW_STRING (attr);
4435 const char *comp_dir_string;
4436 struct dwo_unit *dwo_unit;
4437 ULONGEST signature; /* Or dwo_id. */
4438 struct attribute *comp_dir, *stmt_list, *low_pc, *high_pc, *ranges;
4439 int i,num_extra_attrs;
4440 struct dwarf2_section_info *dwo_abbrev_section;
4441
4442 if (has_children)
4443 error (_("Dwarf Error: compilation unit with DW_AT_GNU_dwo_name"
4444 " has children (offset 0x%x) [in module %s]"),
4445 this_cu->offset.sect_off, bfd_get_filename (abfd));
4446
4447 /* These attributes aren't processed until later:
4448 DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
4449 However, the attribute is found in the stub which we won't have later.
4450 In order to not impose this complication on the rest of the code,
4451 we read them here and copy them to the DWO CU/TU die. */
4452
4453 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
4454 DWO file. */
4455 stmt_list = NULL;
4456 if (! this_cu->is_debug_types)
4457 stmt_list = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
4458 low_pc = dwarf2_attr (comp_unit_die, DW_AT_low_pc, cu);
4459 high_pc = dwarf2_attr (comp_unit_die, DW_AT_high_pc, cu);
4460 ranges = dwarf2_attr (comp_unit_die, DW_AT_ranges, cu);
4461 comp_dir = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, cu);
4462
4463 /* There should be a DW_AT_addr_base attribute here (if needed).
4464 We need the value before we can process DW_FORM_GNU_addr_index. */
4465 cu->addr_base = 0;
4466 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_addr_base, cu);
4467 if (attr)
4468 cu->addr_base = DW_UNSND (attr);
4469
4470 /* There should be a DW_AT_ranges_base attribute here (if needed).
4471 We need the value before we can process DW_AT_ranges. */
4472 cu->ranges_base = 0;
4473 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_ranges_base, cu);
4474 if (attr)
4475 cu->ranges_base = DW_UNSND (attr);
4476
4477 if (this_cu->is_debug_types)
4478 {
4479 gdb_assert (sig_type != NULL);
4480 signature = sig_type->signature;
4481 }
4482 else
4483 {
4484 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
4485 if (! attr)
4486 error (_("Dwarf Error: missing dwo_id [in module %s]"),
4487 dwo_name);
4488 signature = DW_UNSND (attr);
4489 }
4490
4491 /* We may need the comp_dir in order to find the DWO file. */
4492 comp_dir_string = NULL;
4493 if (comp_dir)
4494 comp_dir_string = DW_STRING (comp_dir);
4495
4496 if (this_cu->is_debug_types)
4497 dwo_unit = lookup_dwo_type_unit (sig_type, dwo_name, comp_dir_string);
4498 else
4499 dwo_unit = lookup_dwo_comp_unit (this_cu, dwo_name, comp_dir_string,
4500 signature);
4501
4502 if (dwo_unit == NULL)
4503 {
4504 error (_("Dwarf Error: CU at offset 0x%x references unknown DWO"
4505 " with ID %s [in module %s]"),
4506 this_cu->offset.sect_off,
4507 phex (signature, sizeof (signature)),
4508 objfile->name);
4509 }
4510
4511 /* Set up for reading the DWO CU/TU. */
4512 cu->dwo_unit = dwo_unit;
4513 section = dwo_unit->info_or_types_section;
4514 begin_info_ptr = info_ptr = section->buffer + dwo_unit->offset.sect_off;
4515 dwo_abbrev_section = &dwo_unit->dwo_file->sections.abbrev;
4516 init_cu_die_reader (&reader, cu, section, dwo_unit->dwo_file);
4517
4518 if (this_cu->is_debug_types)
4519 {
4520 ULONGEST signature;
4521
4522 info_ptr = read_and_check_type_unit_head (&cu->header, section,
4523 dwo_abbrev_section,
4524 info_ptr,
4525 &signature, NULL);
4526 gdb_assert (sig_type->signature == signature);
4527 gdb_assert (dwo_unit->offset.sect_off == cu->header.offset.sect_off);
4528 gdb_assert (dwo_unit->length == get_cu_length (&cu->header));
4529
4530 /* Establish the type offset that can be used to lookup the type.
4531 For DWO files, we don't know it until now. */
4532 sig_type->type_offset_in_section.sect_off =
4533 dwo_unit->offset.sect_off + dwo_unit->type_offset_in_tu.cu_off;
4534 }
4535 else
4536 {
4537 info_ptr = read_and_check_comp_unit_head (&cu->header, section,
4538 dwo_abbrev_section,
4539 info_ptr, 0);
4540 gdb_assert (dwo_unit->offset.sect_off == cu->header.offset.sect_off);
4541 gdb_assert (dwo_unit->length == get_cu_length (&cu->header));
4542 }
4543
4544 /* Discard the original CU's abbrev table, and read the DWO's. */
4545 if (abbrev_table == NULL)
4546 {
4547 dwarf2_free_abbrev_table (cu);
4548 dwarf2_read_abbrevs (cu, dwo_abbrev_section);
4549 }
4550 else
4551 {
4552 dwarf2_read_abbrevs (cu, dwo_abbrev_section);
4553 make_cleanup (dwarf2_free_abbrev_table, cu);
4554 }
4555
4556 /* Read in the die, but leave space to copy over the attributes
4557 from the stub. This has the benefit of simplifying the rest of
4558 the code - all the real work is done here. */
4559 num_extra_attrs = ((stmt_list != NULL)
4560 + (low_pc != NULL)
4561 + (high_pc != NULL)
4562 + (ranges != NULL)
4563 + (comp_dir != NULL));
4564 info_ptr = read_full_die_1 (&reader, &comp_unit_die, info_ptr,
4565 &has_children, num_extra_attrs);
4566
4567 /* Copy over the attributes from the stub to the DWO die. */
4568 i = comp_unit_die->num_attrs;
4569 if (stmt_list != NULL)
4570 comp_unit_die->attrs[i++] = *stmt_list;
4571 if (low_pc != NULL)
4572 comp_unit_die->attrs[i++] = *low_pc;
4573 if (high_pc != NULL)
4574 comp_unit_die->attrs[i++] = *high_pc;
4575 if (ranges != NULL)
4576 comp_unit_die->attrs[i++] = *ranges;
4577 if (comp_dir != NULL)
4578 comp_unit_die->attrs[i++] = *comp_dir;
4579 comp_unit_die->num_attrs += num_extra_attrs;
4580
4581 /* Skip dummy compilation units. */
4582 if (info_ptr >= begin_info_ptr + dwo_unit->length
4583 || peek_abbrev_code (abfd, info_ptr) == 0)
4584 {
4585 do_cleanups (cleanups);
4586 return;
4587 }
4588 }
4589
4590 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
4591
4592 if (free_cu_cleanup != NULL)
4593 {
4594 if (keep)
4595 {
4596 /* We've successfully allocated this compilation unit. Let our
4597 caller clean it up when finished with it. */
4598 discard_cleanups (free_cu_cleanup);
4599
4600 /* We can only discard free_cu_cleanup and all subsequent cleanups.
4601 So we have to manually free the abbrev table. */
4602 dwarf2_free_abbrev_table (cu);
4603
4604 /* Link this CU into read_in_chain. */
4605 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
4606 dwarf2_per_objfile->read_in_chain = this_cu;
4607 }
4608 else
4609 do_cleanups (free_cu_cleanup);
4610 }
4611
4612 do_cleanups (cleanups);
4613 }
4614
4615 /* Read CU/TU THIS_CU in section SECTION,
4616 but do not follow DW_AT_GNU_dwo_name if present.
4617 DWO_FILE, if non-NULL, is the DWO file to read (the caller is assumed to
4618 have already done the lookup to find the DWO file).
4619
4620 The caller is required to fill in THIS_CU->section, THIS_CU->offset, and
4621 THIS_CU->is_debug_types, but nothing else.
4622
4623 We fill in THIS_CU->length.
4624
4625 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
4626 linker) then DIE_READER_FUNC will not get called.
4627
4628 THIS_CU->cu is always freed when done.
4629 This is done in order to not leave THIS_CU->cu in a state where we have
4630 to care whether it refers to the "main" CU or the DWO CU. */
4631
4632 static void
4633 init_cutu_and_read_dies_no_follow (struct dwarf2_per_cu_data *this_cu,
4634 struct dwarf2_section_info *abbrev_section,
4635 struct dwo_file *dwo_file,
4636 die_reader_func_ftype *die_reader_func,
4637 void *data)
4638 {
4639 struct objfile *objfile = dwarf2_per_objfile->objfile;
4640 struct dwarf2_section_info *section = this_cu->info_or_types_section;
4641 bfd *abfd = section->asection->owner;
4642 struct dwarf2_cu cu;
4643 gdb_byte *begin_info_ptr, *info_ptr;
4644 struct die_reader_specs reader;
4645 struct cleanup *cleanups;
4646 struct die_info *comp_unit_die;
4647 int has_children;
4648
4649 if (dwarf2_die_debug)
4650 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset 0x%x\n",
4651 this_cu->is_debug_types ? "type" : "comp",
4652 this_cu->offset.sect_off);
4653
4654 gdb_assert (this_cu->cu == NULL);
4655
4656 /* This is cheap if the section is already read in. */
4657 dwarf2_read_section (objfile, section);
4658
4659 init_one_comp_unit (&cu, this_cu);
4660
4661 cleanups = make_cleanup (free_stack_comp_unit, &cu);
4662
4663 begin_info_ptr = info_ptr = section->buffer + this_cu->offset.sect_off;
4664 info_ptr = read_and_check_comp_unit_head (&cu.header, section,
4665 abbrev_section, info_ptr,
4666 this_cu->is_debug_types);
4667
4668 this_cu->length = get_cu_length (&cu.header);
4669
4670 /* Skip dummy compilation units. */
4671 if (info_ptr >= begin_info_ptr + this_cu->length
4672 || peek_abbrev_code (abfd, info_ptr) == 0)
4673 {
4674 do_cleanups (cleanups);
4675 return;
4676 }
4677
4678 dwarf2_read_abbrevs (&cu, abbrev_section);
4679 make_cleanup (dwarf2_free_abbrev_table, &cu);
4680
4681 init_cu_die_reader (&reader, &cu, section, dwo_file);
4682 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
4683
4684 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
4685
4686 do_cleanups (cleanups);
4687 }
4688
4689 /* Read a CU/TU, except that this does not look for DW_AT_GNU_dwo_name and
4690 does not lookup the specified DWO file.
4691 This cannot be used to read DWO files.
4692
4693 THIS_CU->cu is always freed when done.
4694 This is done in order to not leave THIS_CU->cu in a state where we have
4695 to care whether it refers to the "main" CU or the DWO CU.
4696 We can revisit this if the data shows there's a performance issue. */
4697
4698 static void
4699 init_cutu_and_read_dies_simple (struct dwarf2_per_cu_data *this_cu,
4700 die_reader_func_ftype *die_reader_func,
4701 void *data)
4702 {
4703 init_cutu_and_read_dies_no_follow (this_cu,
4704 get_abbrev_section_for_cu (this_cu),
4705 NULL,
4706 die_reader_func, data);
4707 }
4708
4709 /* Create a psymtab named NAME and assign it to PER_CU.
4710
4711 The caller must fill in the following details:
4712 dirname, textlow, texthigh. */
4713
4714 static struct partial_symtab *
4715 create_partial_symtab (struct dwarf2_per_cu_data *per_cu, const char *name)
4716 {
4717 struct objfile *objfile = per_cu->objfile;
4718 struct partial_symtab *pst;
4719
4720 pst = start_psymtab_common (objfile, objfile->section_offsets,
4721 name, 0,
4722 objfile->global_psymbols.next,
4723 objfile->static_psymbols.next);
4724
4725 pst->psymtabs_addrmap_supported = 1;
4726
4727 /* This is the glue that links PST into GDB's symbol API. */
4728 pst->read_symtab_private = per_cu;
4729 pst->read_symtab = dwarf2_psymtab_to_symtab;
4730 per_cu->v.psymtab = pst;
4731
4732 return pst;
4733 }
4734
4735 /* die_reader_func for process_psymtab_comp_unit. */
4736
4737 static void
4738 process_psymtab_comp_unit_reader (const struct die_reader_specs *reader,
4739 gdb_byte *info_ptr,
4740 struct die_info *comp_unit_die,
4741 int has_children,
4742 void *data)
4743 {
4744 struct dwarf2_cu *cu = reader->cu;
4745 struct objfile *objfile = cu->objfile;
4746 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
4747 struct attribute *attr;
4748 CORE_ADDR baseaddr;
4749 CORE_ADDR best_lowpc = 0, best_highpc = 0;
4750 struct partial_symtab *pst;
4751 int has_pc_info;
4752 const char *filename;
4753 int *want_partial_unit_ptr = data;
4754
4755 if (comp_unit_die->tag == DW_TAG_partial_unit
4756 && (want_partial_unit_ptr == NULL
4757 || !*want_partial_unit_ptr))
4758 return;
4759
4760 gdb_assert (! per_cu->is_debug_types);
4761
4762 prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
4763
4764 cu->list_in_scope = &file_symbols;
4765
4766 /* Allocate a new partial symbol table structure. */
4767 attr = dwarf2_attr (comp_unit_die, DW_AT_name, cu);
4768 if (attr == NULL || !DW_STRING (attr))
4769 filename = "";
4770 else
4771 filename = DW_STRING (attr);
4772
4773 pst = create_partial_symtab (per_cu, filename);
4774
4775 /* This must be done before calling dwarf2_build_include_psymtabs. */
4776 attr = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, cu);
4777 if (attr != NULL)
4778 pst->dirname = DW_STRING (attr);
4779
4780 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
4781
4782 dwarf2_find_base_address (comp_unit_die, cu);
4783
4784 /* Possibly set the default values of LOWPC and HIGHPC from
4785 `DW_AT_ranges'. */
4786 has_pc_info = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
4787 &best_highpc, cu, pst);
4788 if (has_pc_info == 1 && best_lowpc < best_highpc)
4789 /* Store the contiguous range if it is not empty; it can be empty for
4790 CUs with no code. */
4791 addrmap_set_empty (objfile->psymtabs_addrmap,
4792 best_lowpc + baseaddr,
4793 best_highpc + baseaddr - 1, pst);
4794
4795 /* Check if comp unit has_children.
4796 If so, read the rest of the partial symbols from this comp unit.
4797 If not, there's no more debug_info for this comp unit. */
4798 if (has_children)
4799 {
4800 struct partial_die_info *first_die;
4801 CORE_ADDR lowpc, highpc;
4802
4803 lowpc = ((CORE_ADDR) -1);
4804 highpc = ((CORE_ADDR) 0);
4805
4806 first_die = load_partial_dies (reader, info_ptr, 1);
4807
4808 scan_partial_symbols (first_die, &lowpc, &highpc,
4809 ! has_pc_info, cu);
4810
4811 /* If we didn't find a lowpc, set it to highpc to avoid
4812 complaints from `maint check'. */
4813 if (lowpc == ((CORE_ADDR) -1))
4814 lowpc = highpc;
4815
4816 /* If the compilation unit didn't have an explicit address range,
4817 then use the information extracted from its child dies. */
4818 if (! has_pc_info)
4819 {
4820 best_lowpc = lowpc;
4821 best_highpc = highpc;
4822 }
4823 }
4824 pst->textlow = best_lowpc + baseaddr;
4825 pst->texthigh = best_highpc + baseaddr;
4826
4827 pst->n_global_syms = objfile->global_psymbols.next -
4828 (objfile->global_psymbols.list + pst->globals_offset);
4829 pst->n_static_syms = objfile->static_psymbols.next -
4830 (objfile->static_psymbols.list + pst->statics_offset);
4831 sort_pst_symbols (pst);
4832
4833 if (!VEC_empty (dwarf2_per_cu_ptr, cu->per_cu->s.imported_symtabs))
4834 {
4835 int i;
4836 int len = VEC_length (dwarf2_per_cu_ptr, cu->per_cu->s.imported_symtabs);
4837 struct dwarf2_per_cu_data *iter;
4838
4839 /* Fill in 'dependencies' here; we fill in 'users' in a
4840 post-pass. */
4841 pst->number_of_dependencies = len;
4842 pst->dependencies = obstack_alloc (&objfile->objfile_obstack,
4843 len * sizeof (struct symtab *));
4844 for (i = 0;
4845 VEC_iterate (dwarf2_per_cu_ptr, cu->per_cu->s.imported_symtabs,
4846 i, iter);
4847 ++i)
4848 pst->dependencies[i] = iter->v.psymtab;
4849
4850 VEC_free (dwarf2_per_cu_ptr, cu->per_cu->s.imported_symtabs);
4851 }
4852
4853 /* Get the list of files included in the current compilation unit,
4854 and build a psymtab for each of them. */
4855 dwarf2_build_include_psymtabs (cu, comp_unit_die, pst);
4856
4857 if (dwarf2_read_debug)
4858 {
4859 struct gdbarch *gdbarch = get_objfile_arch (objfile);
4860
4861 fprintf_unfiltered (gdb_stdlog,
4862 "Psymtab for %s unit @0x%x: %s - %s"
4863 ", %d global, %d static syms\n",
4864 per_cu->is_debug_types ? "type" : "comp",
4865 per_cu->offset.sect_off,
4866 paddress (gdbarch, pst->textlow),
4867 paddress (gdbarch, pst->texthigh),
4868 pst->n_global_syms, pst->n_static_syms);
4869 }
4870 }
4871
4872 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
4873 Process compilation unit THIS_CU for a psymtab. */
4874
4875 static void
4876 process_psymtab_comp_unit (struct dwarf2_per_cu_data *this_cu,
4877 int want_partial_unit)
4878 {
4879 /* If this compilation unit was already read in, free the
4880 cached copy in order to read it in again. This is
4881 necessary because we skipped some symbols when we first
4882 read in the compilation unit (see load_partial_dies).
4883 This problem could be avoided, but the benefit is unclear. */
4884 if (this_cu->cu != NULL)
4885 free_one_cached_comp_unit (this_cu);
4886
4887 gdb_assert (! this_cu->is_debug_types);
4888 init_cutu_and_read_dies (this_cu, NULL, 0, 0,
4889 process_psymtab_comp_unit_reader,
4890 &want_partial_unit);
4891
4892 /* Age out any secondary CUs. */
4893 age_cached_comp_units ();
4894 }
4895
4896 static hashval_t
4897 hash_type_unit_group (const void *item)
4898 {
4899 const struct type_unit_group *tu_group = item;
4900
4901 return hash_stmt_list_entry (&tu_group->hash);
4902 }
4903
4904 static int
4905 eq_type_unit_group (const void *item_lhs, const void *item_rhs)
4906 {
4907 const struct type_unit_group *lhs = item_lhs;
4908 const struct type_unit_group *rhs = item_rhs;
4909
4910 return eq_stmt_list_entry (&lhs->hash, &rhs->hash);
4911 }
4912
4913 /* Allocate a hash table for type unit groups. */
4914
4915 static htab_t
4916 allocate_type_unit_groups_table (void)
4917 {
4918 return htab_create_alloc_ex (3,
4919 hash_type_unit_group,
4920 eq_type_unit_group,
4921 NULL,
4922 &dwarf2_per_objfile->objfile->objfile_obstack,
4923 hashtab_obstack_allocate,
4924 dummy_obstack_deallocate);
4925 }
4926
4927 /* Type units that don't have DW_AT_stmt_list are grouped into their own
4928 partial symtabs. We combine several TUs per psymtab to not let the size
4929 of any one psymtab grow too big. */
4930 #define NO_STMT_LIST_TYPE_UNIT_PSYMTAB (1 << 31)
4931 #define NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE 10
4932
4933 /* Helper routine for get_type_unit_group.
4934 Create the type_unit_group object used to hold one or more TUs. */
4935
4936 static struct type_unit_group *
4937 create_type_unit_group (struct dwarf2_cu *cu, sect_offset line_offset_struct)
4938 {
4939 struct objfile *objfile = dwarf2_per_objfile->objfile;
4940 struct dwarf2_per_cu_data *per_cu;
4941 struct type_unit_group *tu_group;
4942
4943 tu_group = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4944 struct type_unit_group);
4945 per_cu = &tu_group->per_cu;
4946 per_cu->objfile = objfile;
4947 per_cu->is_debug_types = 1;
4948 per_cu->s.type_unit_group = tu_group;
4949
4950 if (dwarf2_per_objfile->using_index)
4951 {
4952 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4953 struct dwarf2_per_cu_quick_data);
4954 tu_group->t.first_tu = cu->per_cu;
4955 }
4956 else
4957 {
4958 unsigned int line_offset = line_offset_struct.sect_off;
4959 struct partial_symtab *pst;
4960 char *name;
4961
4962 /* Give the symtab a useful name for debug purposes. */
4963 if ((line_offset & NO_STMT_LIST_TYPE_UNIT_PSYMTAB) != 0)
4964 name = xstrprintf ("<type_units_%d>",
4965 (line_offset & ~NO_STMT_LIST_TYPE_UNIT_PSYMTAB));
4966 else
4967 name = xstrprintf ("<type_units_at_0x%x>", line_offset);
4968
4969 pst = create_partial_symtab (per_cu, name);
4970 pst->anonymous = 1;
4971
4972 xfree (name);
4973 }
4974
4975 tu_group->hash.dwo_unit = cu->dwo_unit;
4976 tu_group->hash.line_offset = line_offset_struct;
4977
4978 return tu_group;
4979 }
4980
4981 /* Look up the type_unit_group for type unit CU, and create it if necessary.
4982 STMT_LIST is a DW_AT_stmt_list attribute. */
4983
4984 static struct type_unit_group *
4985 get_type_unit_group (struct dwarf2_cu *cu, struct attribute *stmt_list)
4986 {
4987 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
4988 struct type_unit_group *tu_group;
4989 void **slot;
4990 unsigned int line_offset;
4991 struct type_unit_group type_unit_group_for_lookup;
4992
4993 if (dwarf2_per_objfile->type_unit_groups == NULL)
4994 {
4995 dwarf2_per_objfile->type_unit_groups =
4996 allocate_type_unit_groups_table ();
4997 }
4998
4999 /* Do we need to create a new group, or can we use an existing one? */
5000
5001 if (stmt_list)
5002 {
5003 line_offset = DW_UNSND (stmt_list);
5004 ++tu_stats->nr_symtab_sharers;
5005 }
5006 else
5007 {
5008 /* Ugh, no stmt_list. Rare, but we have to handle it.
5009 We can do various things here like create one group per TU or
5010 spread them over multiple groups to split up the expansion work.
5011 To avoid worst case scenarios (too many groups or too large groups)
5012 we, umm, group them in bunches. */
5013 line_offset = (NO_STMT_LIST_TYPE_UNIT_PSYMTAB
5014 | (tu_stats->nr_stmt_less_type_units
5015 / NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE));
5016 ++tu_stats->nr_stmt_less_type_units;
5017 }
5018
5019 type_unit_group_for_lookup.hash.dwo_unit = cu->dwo_unit;
5020 type_unit_group_for_lookup.hash.line_offset.sect_off = line_offset;
5021 slot = htab_find_slot (dwarf2_per_objfile->type_unit_groups,
5022 &type_unit_group_for_lookup, INSERT);
5023 if (*slot != NULL)
5024 {
5025 tu_group = *slot;
5026 gdb_assert (tu_group != NULL);
5027 }
5028 else
5029 {
5030 sect_offset line_offset_struct;
5031
5032 line_offset_struct.sect_off = line_offset;
5033 tu_group = create_type_unit_group (cu, line_offset_struct);
5034 *slot = tu_group;
5035 ++tu_stats->nr_symtabs;
5036 }
5037
5038 return tu_group;
5039 }
5040
5041 /* Struct used to sort TUs by their abbreviation table offset. */
5042
5043 struct tu_abbrev_offset
5044 {
5045 struct signatured_type *sig_type;
5046 sect_offset abbrev_offset;
5047 };
5048
5049 /* Helper routine for build_type_unit_groups, passed to qsort. */
5050
5051 static int
5052 sort_tu_by_abbrev_offset (const void *ap, const void *bp)
5053 {
5054 const struct tu_abbrev_offset * const *a = ap;
5055 const struct tu_abbrev_offset * const *b = bp;
5056 unsigned int aoff = (*a)->abbrev_offset.sect_off;
5057 unsigned int boff = (*b)->abbrev_offset.sect_off;
5058
5059 return (aoff > boff) - (aoff < boff);
5060 }
5061
5062 /* A helper function to add a type_unit_group to a table. */
5063
5064 static int
5065 add_type_unit_group_to_table (void **slot, void *datum)
5066 {
5067 struct type_unit_group *tu_group = *slot;
5068 struct type_unit_group ***datap = datum;
5069
5070 **datap = tu_group;
5071 ++*datap;
5072
5073 return 1;
5074 }
5075
5076 /* Efficiently read all the type units, calling init_cutu_and_read_dies on
5077 each one passing FUNC,DATA.
5078
5079 The efficiency is because we sort TUs by the abbrev table they use and
5080 only read each abbrev table once. In one program there are 200K TUs
5081 sharing 8K abbrev tables.
5082
5083 The main purpose of this function is to support building the
5084 dwarf2_per_objfile->type_unit_groups table.
5085 TUs typically share the DW_AT_stmt_list of the CU they came from, so we
5086 can collapse the search space by grouping them by stmt_list.
5087 The savings can be significant, in the same program from above the 200K TUs
5088 share 8K stmt_list tables.
5089
5090 FUNC is expected to call get_type_unit_group, which will create the
5091 struct type_unit_group if necessary and add it to
5092 dwarf2_per_objfile->type_unit_groups. */
5093
5094 static void
5095 build_type_unit_groups (die_reader_func_ftype *func, void *data)
5096 {
5097 struct objfile *objfile = dwarf2_per_objfile->objfile;
5098 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
5099 struct cleanup *cleanups;
5100 struct abbrev_table *abbrev_table;
5101 sect_offset abbrev_offset;
5102 struct tu_abbrev_offset *sorted_by_abbrev;
5103 struct type_unit_group **iter;
5104 int i;
5105
5106 /* It's up to the caller to not call us multiple times. */
5107 gdb_assert (dwarf2_per_objfile->type_unit_groups == NULL);
5108
5109 if (dwarf2_per_objfile->n_type_units == 0)
5110 return;
5111
5112 /* TUs typically share abbrev tables, and there can be way more TUs than
5113 abbrev tables. Sort by abbrev table to reduce the number of times we
5114 read each abbrev table in.
5115 Alternatives are to punt or to maintain a cache of abbrev tables.
5116 This is simpler and efficient enough for now.
5117
5118 Later we group TUs by their DW_AT_stmt_list value (as this defines the
5119 symtab to use). Typically TUs with the same abbrev offset have the same
5120 stmt_list value too so in practice this should work well.
5121
5122 The basic algorithm here is:
5123
5124 sort TUs by abbrev table
5125 for each TU with same abbrev table:
5126 read abbrev table if first user
5127 read TU top level DIE
5128 [IWBN if DWO skeletons had DW_AT_stmt_list]
5129 call FUNC */
5130
5131 if (dwarf2_read_debug)
5132 fprintf_unfiltered (gdb_stdlog, "Building type unit groups ...\n");
5133
5134 /* Sort in a separate table to maintain the order of all_type_units
5135 for .gdb_index: TU indices directly index all_type_units. */
5136 sorted_by_abbrev = XNEWVEC (struct tu_abbrev_offset,
5137 dwarf2_per_objfile->n_type_units);
5138 for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
5139 {
5140 struct signatured_type *sig_type = dwarf2_per_objfile->all_type_units[i];
5141
5142 sorted_by_abbrev[i].sig_type = sig_type;
5143 sorted_by_abbrev[i].abbrev_offset =
5144 read_abbrev_offset (sig_type->per_cu.info_or_types_section,
5145 sig_type->per_cu.offset);
5146 }
5147 cleanups = make_cleanup (xfree, sorted_by_abbrev);
5148 qsort (sorted_by_abbrev, dwarf2_per_objfile->n_type_units,
5149 sizeof (struct tu_abbrev_offset), sort_tu_by_abbrev_offset);
5150
5151 /* Note: In the .gdb_index case, get_type_unit_group may have already been
5152 called any number of times, so we don't reset tu_stats here. */
5153
5154 abbrev_offset.sect_off = ~(unsigned) 0;
5155 abbrev_table = NULL;
5156 make_cleanup (abbrev_table_free_cleanup, &abbrev_table);
5157
5158 for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
5159 {
5160 const struct tu_abbrev_offset *tu = &sorted_by_abbrev[i];
5161
5162 /* Switch to the next abbrev table if necessary. */
5163 if (abbrev_table == NULL
5164 || tu->abbrev_offset.sect_off != abbrev_offset.sect_off)
5165 {
5166 if (abbrev_table != NULL)
5167 {
5168 abbrev_table_free (abbrev_table);
5169 /* Reset to NULL in case abbrev_table_read_table throws
5170 an error: abbrev_table_free_cleanup will get called. */
5171 abbrev_table = NULL;
5172 }
5173 abbrev_offset = tu->abbrev_offset;
5174 abbrev_table =
5175 abbrev_table_read_table (&dwarf2_per_objfile->abbrev,
5176 abbrev_offset);
5177 ++tu_stats->nr_uniq_abbrev_tables;
5178 }
5179
5180 init_cutu_and_read_dies (&tu->sig_type->per_cu, abbrev_table, 0, 0,
5181 func, data);
5182 }
5183
5184 /* Create a vector of pointers to primary type units to make it easy to
5185 iterate over them and CUs. See dw2_get_primary_cu. */
5186 dwarf2_per_objfile->n_type_unit_groups =
5187 htab_elements (dwarf2_per_objfile->type_unit_groups);
5188 dwarf2_per_objfile->all_type_unit_groups =
5189 obstack_alloc (&objfile->objfile_obstack,
5190 dwarf2_per_objfile->n_type_unit_groups
5191 * sizeof (struct type_unit_group *));
5192 iter = &dwarf2_per_objfile->all_type_unit_groups[0];
5193 htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
5194 add_type_unit_group_to_table, &iter);
5195 gdb_assert (iter - &dwarf2_per_objfile->all_type_unit_groups[0]
5196 == dwarf2_per_objfile->n_type_unit_groups);
5197
5198 do_cleanups (cleanups);
5199
5200 if (dwarf2_read_debug)
5201 {
5202 fprintf_unfiltered (gdb_stdlog, "Done building type unit groups:\n");
5203 fprintf_unfiltered (gdb_stdlog, " %d TUs\n",
5204 dwarf2_per_objfile->n_type_units);
5205 fprintf_unfiltered (gdb_stdlog, " %d uniq abbrev tables\n",
5206 tu_stats->nr_uniq_abbrev_tables);
5207 fprintf_unfiltered (gdb_stdlog, " %d symtabs from stmt_list entries\n",
5208 tu_stats->nr_symtabs);
5209 fprintf_unfiltered (gdb_stdlog, " %d symtab sharers\n",
5210 tu_stats->nr_symtab_sharers);
5211 fprintf_unfiltered (gdb_stdlog, " %d type units without a stmt_list\n",
5212 tu_stats->nr_stmt_less_type_units);
5213 }
5214 }
5215
5216 /* Reader function for build_type_psymtabs. */
5217
5218 static void
5219 build_type_psymtabs_reader (const struct die_reader_specs *reader,
5220 gdb_byte *info_ptr,
5221 struct die_info *type_unit_die,
5222 int has_children,
5223 void *data)
5224 {
5225 struct objfile *objfile = dwarf2_per_objfile->objfile;
5226 struct dwarf2_cu *cu = reader->cu;
5227 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
5228 struct type_unit_group *tu_group;
5229 struct attribute *attr;
5230 struct partial_die_info *first_die;
5231 CORE_ADDR lowpc, highpc;
5232 struct partial_symtab *pst;
5233
5234 gdb_assert (data == NULL);
5235
5236 if (! has_children)
5237 return;
5238
5239 attr = dwarf2_attr_no_follow (type_unit_die, DW_AT_stmt_list);
5240 tu_group = get_type_unit_group (cu, attr);
5241
5242 VEC_safe_push (dwarf2_per_cu_ptr, tu_group->t.tus, per_cu);
5243
5244 prepare_one_comp_unit (cu, type_unit_die, language_minimal);
5245 cu->list_in_scope = &file_symbols;
5246 pst = create_partial_symtab (per_cu, "");
5247 pst->anonymous = 1;
5248
5249 first_die = load_partial_dies (reader, info_ptr, 1);
5250
5251 lowpc = (CORE_ADDR) -1;
5252 highpc = (CORE_ADDR) 0;
5253 scan_partial_symbols (first_die, &lowpc, &highpc, 0, cu);
5254
5255 pst->n_global_syms = objfile->global_psymbols.next -
5256 (objfile->global_psymbols.list + pst->globals_offset);
5257 pst->n_static_syms = objfile->static_psymbols.next -
5258 (objfile->static_psymbols.list + pst->statics_offset);
5259 sort_pst_symbols (pst);
5260 }
5261
5262 /* Traversal function for build_type_psymtabs. */
5263
5264 static int
5265 build_type_psymtab_dependencies (void **slot, void *info)
5266 {
5267 struct objfile *objfile = dwarf2_per_objfile->objfile;
5268 struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
5269 struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
5270 struct partial_symtab *pst = per_cu->v.psymtab;
5271 int len = VEC_length (dwarf2_per_cu_ptr, tu_group->t.tus);
5272 struct dwarf2_per_cu_data *iter;
5273 int i;
5274
5275 gdb_assert (len > 0);
5276
5277 pst->number_of_dependencies = len;
5278 pst->dependencies = obstack_alloc (&objfile->objfile_obstack,
5279 len * sizeof (struct psymtab *));
5280 for (i = 0;
5281 VEC_iterate (dwarf2_per_cu_ptr, tu_group->t.tus, i, iter);
5282 ++i)
5283 {
5284 pst->dependencies[i] = iter->v.psymtab;
5285 iter->s.type_unit_group = tu_group;
5286 }
5287
5288 VEC_free (dwarf2_per_cu_ptr, tu_group->t.tus);
5289
5290 return 1;
5291 }
5292
5293 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
5294 Build partial symbol tables for the .debug_types comp-units. */
5295
5296 static void
5297 build_type_psymtabs (struct objfile *objfile)
5298 {
5299 if (! create_all_type_units (objfile))
5300 return;
5301
5302 build_type_unit_groups (build_type_psymtabs_reader, NULL);
5303
5304 /* Now that all TUs have been processed we can fill in the dependencies. */
5305 htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
5306 build_type_psymtab_dependencies, NULL);
5307 }
5308
5309 /* A cleanup function that clears objfile's psymtabs_addrmap field. */
5310
5311 static void
5312 psymtabs_addrmap_cleanup (void *o)
5313 {
5314 struct objfile *objfile = o;
5315
5316 objfile->psymtabs_addrmap = NULL;
5317 }
5318
5319 /* Compute the 'user' field for each psymtab in OBJFILE. */
5320
5321 static void
5322 set_partial_user (struct objfile *objfile)
5323 {
5324 int i;
5325
5326 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
5327 {
5328 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
5329 struct partial_symtab *pst = per_cu->v.psymtab;
5330 int j;
5331
5332 if (pst == NULL)
5333 continue;
5334
5335 for (j = 0; j < pst->number_of_dependencies; ++j)
5336 {
5337 /* Set the 'user' field only if it is not already set. */
5338 if (pst->dependencies[j]->user == NULL)
5339 pst->dependencies[j]->user = pst;
5340 }
5341 }
5342 }
5343
5344 /* Build the partial symbol table by doing a quick pass through the
5345 .debug_info and .debug_abbrev sections. */
5346
5347 static void
5348 dwarf2_build_psymtabs_hard (struct objfile *objfile)
5349 {
5350 struct cleanup *back_to, *addrmap_cleanup;
5351 struct obstack temp_obstack;
5352 int i;
5353
5354 if (dwarf2_read_debug)
5355 {
5356 fprintf_unfiltered (gdb_stdlog, "Building psymtabs of objfile %s ...\n",
5357 objfile->name);
5358 }
5359
5360 dwarf2_per_objfile->reading_partial_symbols = 1;
5361
5362 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
5363
5364 /* Any cached compilation units will be linked by the per-objfile
5365 read_in_chain. Make sure to free them when we're done. */
5366 back_to = make_cleanup (free_cached_comp_units, NULL);
5367
5368 build_type_psymtabs (objfile);
5369
5370 create_all_comp_units (objfile);
5371
5372 /* Create a temporary address map on a temporary obstack. We later
5373 copy this to the final obstack. */
5374 obstack_init (&temp_obstack);
5375 make_cleanup_obstack_free (&temp_obstack);
5376 objfile->psymtabs_addrmap = addrmap_create_mutable (&temp_obstack);
5377 addrmap_cleanup = make_cleanup (psymtabs_addrmap_cleanup, objfile);
5378
5379 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
5380 {
5381 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
5382
5383 process_psymtab_comp_unit (per_cu, 0);
5384 }
5385
5386 set_partial_user (objfile);
5387
5388 objfile->psymtabs_addrmap = addrmap_create_fixed (objfile->psymtabs_addrmap,
5389 &objfile->objfile_obstack);
5390 discard_cleanups (addrmap_cleanup);
5391
5392 do_cleanups (back_to);
5393
5394 if (dwarf2_read_debug)
5395 fprintf_unfiltered (gdb_stdlog, "Done building psymtabs of %s\n",
5396 objfile->name);
5397 }
5398
5399 /* die_reader_func for load_partial_comp_unit. */
5400
5401 static void
5402 load_partial_comp_unit_reader (const struct die_reader_specs *reader,
5403 gdb_byte *info_ptr,
5404 struct die_info *comp_unit_die,
5405 int has_children,
5406 void *data)
5407 {
5408 struct dwarf2_cu *cu = reader->cu;
5409
5410 prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
5411
5412 /* Check if comp unit has_children.
5413 If so, read the rest of the partial symbols from this comp unit.
5414 If not, there's no more debug_info for this comp unit. */
5415 if (has_children)
5416 load_partial_dies (reader, info_ptr, 0);
5417 }
5418
5419 /* Load the partial DIEs for a secondary CU into memory.
5420 This is also used when rereading a primary CU with load_all_dies. */
5421
5422 static void
5423 load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu)
5424 {
5425 init_cutu_and_read_dies (this_cu, NULL, 1, 1,
5426 load_partial_comp_unit_reader, NULL);
5427 }
5428
5429 static void
5430 read_comp_units_from_section (struct objfile *objfile,
5431 struct dwarf2_section_info *section,
5432 unsigned int is_dwz,
5433 int *n_allocated,
5434 int *n_comp_units,
5435 struct dwarf2_per_cu_data ***all_comp_units)
5436 {
5437 gdb_byte *info_ptr;
5438 bfd *abfd = section->asection->owner;
5439
5440 dwarf2_read_section (objfile, section);
5441
5442 info_ptr = section->buffer;
5443
5444 while (info_ptr < section->buffer + section->size)
5445 {
5446 unsigned int length, initial_length_size;
5447 struct dwarf2_per_cu_data *this_cu;
5448 sect_offset offset;
5449
5450 offset.sect_off = info_ptr - section->buffer;
5451
5452 /* Read just enough information to find out where the next
5453 compilation unit is. */
5454 length = read_initial_length (abfd, info_ptr, &initial_length_size);
5455
5456 /* Save the compilation unit for later lookup. */
5457 this_cu = obstack_alloc (&objfile->objfile_obstack,
5458 sizeof (struct dwarf2_per_cu_data));
5459 memset (this_cu, 0, sizeof (*this_cu));
5460 this_cu->offset = offset;
5461 this_cu->length = length + initial_length_size;
5462 this_cu->is_dwz = is_dwz;
5463 this_cu->objfile = objfile;
5464 this_cu->info_or_types_section = section;
5465
5466 if (*n_comp_units == *n_allocated)
5467 {
5468 *n_allocated *= 2;
5469 *all_comp_units = xrealloc (*all_comp_units,
5470 *n_allocated
5471 * sizeof (struct dwarf2_per_cu_data *));
5472 }
5473 (*all_comp_units)[*n_comp_units] = this_cu;
5474 ++*n_comp_units;
5475
5476 info_ptr = info_ptr + this_cu->length;
5477 }
5478 }
5479
5480 /* Create a list of all compilation units in OBJFILE.
5481 This is only done for -readnow and building partial symtabs. */
5482
5483 static void
5484 create_all_comp_units (struct objfile *objfile)
5485 {
5486 int n_allocated;
5487 int n_comp_units;
5488 struct dwarf2_per_cu_data **all_comp_units;
5489
5490 n_comp_units = 0;
5491 n_allocated = 10;
5492 all_comp_units = xmalloc (n_allocated
5493 * sizeof (struct dwarf2_per_cu_data *));
5494
5495 read_comp_units_from_section (objfile, &dwarf2_per_objfile->info, 0,
5496 &n_allocated, &n_comp_units, &all_comp_units);
5497
5498 if (bfd_get_section_by_name (objfile->obfd, ".gnu_debugaltlink") != NULL)
5499 {
5500 struct dwz_file *dwz = dwarf2_get_dwz_file ();
5501
5502 read_comp_units_from_section (objfile, &dwz->info, 1,
5503 &n_allocated, &n_comp_units,
5504 &all_comp_units);
5505 }
5506
5507 dwarf2_per_objfile->all_comp_units
5508 = obstack_alloc (&objfile->objfile_obstack,
5509 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
5510 memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
5511 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
5512 xfree (all_comp_units);
5513 dwarf2_per_objfile->n_comp_units = n_comp_units;
5514 }
5515
5516 /* Process all loaded DIEs for compilation unit CU, starting at
5517 FIRST_DIE. The caller should pass NEED_PC == 1 if the compilation
5518 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
5519 DW_AT_ranges). If NEED_PC is set, then this function will set
5520 *LOWPC and *HIGHPC to the lowest and highest PC values found in CU
5521 and record the covered ranges in the addrmap. */
5522
5523 static void
5524 scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
5525 CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
5526 {
5527 struct partial_die_info *pdi;
5528
5529 /* Now, march along the PDI's, descending into ones which have
5530 interesting children but skipping the children of the other ones,
5531 until we reach the end of the compilation unit. */
5532
5533 pdi = first_die;
5534
5535 while (pdi != NULL)
5536 {
5537 fixup_partial_die (pdi, cu);
5538
5539 /* Anonymous namespaces or modules have no name but have interesting
5540 children, so we need to look at them. Ditto for anonymous
5541 enums. */
5542
5543 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
5544 || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type
5545 || pdi->tag == DW_TAG_imported_unit)
5546 {
5547 switch (pdi->tag)
5548 {
5549 case DW_TAG_subprogram:
5550 add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
5551 break;
5552 case DW_TAG_constant:
5553 case DW_TAG_variable:
5554 case DW_TAG_typedef:
5555 case DW_TAG_union_type:
5556 if (!pdi->is_declaration)
5557 {
5558 add_partial_symbol (pdi, cu);
5559 }
5560 break;
5561 case DW_TAG_class_type:
5562 case DW_TAG_interface_type:
5563 case DW_TAG_structure_type:
5564 if (!pdi->is_declaration)
5565 {
5566 add_partial_symbol (pdi, cu);
5567 }
5568 break;
5569 case DW_TAG_enumeration_type:
5570 if (!pdi->is_declaration)
5571 add_partial_enumeration (pdi, cu);
5572 break;
5573 case DW_TAG_base_type:
5574 case DW_TAG_subrange_type:
5575 /* File scope base type definitions are added to the partial
5576 symbol table. */
5577 add_partial_symbol (pdi, cu);
5578 break;
5579 case DW_TAG_namespace:
5580 add_partial_namespace (pdi, lowpc, highpc, need_pc, cu);
5581 break;
5582 case DW_TAG_module:
5583 add_partial_module (pdi, lowpc, highpc, need_pc, cu);
5584 break;
5585 case DW_TAG_imported_unit:
5586 {
5587 struct dwarf2_per_cu_data *per_cu;
5588
5589 /* For now we don't handle imported units in type units. */
5590 if (cu->per_cu->is_debug_types)
5591 {
5592 error (_("Dwarf Error: DW_TAG_imported_unit is not"
5593 " supported in type units [in module %s]"),
5594 cu->objfile->name);
5595 }
5596
5597 per_cu = dwarf2_find_containing_comp_unit (pdi->d.offset,
5598 pdi->is_dwz,
5599 cu->objfile);
5600
5601 /* Go read the partial unit, if needed. */
5602 if (per_cu->v.psymtab == NULL)
5603 process_psymtab_comp_unit (per_cu, 1);
5604
5605 VEC_safe_push (dwarf2_per_cu_ptr,
5606 cu->per_cu->s.imported_symtabs, per_cu);
5607 }
5608 break;
5609 default:
5610 break;
5611 }
5612 }
5613
5614 /* If the die has a sibling, skip to the sibling. */
5615
5616 pdi = pdi->die_sibling;
5617 }
5618 }
5619
5620 /* Functions used to compute the fully scoped name of a partial DIE.
5621
5622 Normally, this is simple. For C++, the parent DIE's fully scoped
5623 name is concatenated with "::" and the partial DIE's name. For
5624 Java, the same thing occurs except that "." is used instead of "::".
5625 Enumerators are an exception; they use the scope of their parent
5626 enumeration type, i.e. the name of the enumeration type is not
5627 prepended to the enumerator.
5628
5629 There are two complexities. One is DW_AT_specification; in this
5630 case "parent" means the parent of the target of the specification,
5631 instead of the direct parent of the DIE. The other is compilers
5632 which do not emit DW_TAG_namespace; in this case we try to guess
5633 the fully qualified name of structure types from their members'
5634 linkage names. This must be done using the DIE's children rather
5635 than the children of any DW_AT_specification target. We only need
5636 to do this for structures at the top level, i.e. if the target of
5637 any DW_AT_specification (if any; otherwise the DIE itself) does not
5638 have a parent. */
5639
5640 /* Compute the scope prefix associated with PDI's parent, in
5641 compilation unit CU. The result will be allocated on CU's
5642 comp_unit_obstack, or a copy of the already allocated PDI->NAME
5643 field. NULL is returned if no prefix is necessary. */
5644 static char *
5645 partial_die_parent_scope (struct partial_die_info *pdi,
5646 struct dwarf2_cu *cu)
5647 {
5648 char *grandparent_scope;
5649 struct partial_die_info *parent, *real_pdi;
5650
5651 /* We need to look at our parent DIE; if we have a DW_AT_specification,
5652 then this means the parent of the specification DIE. */
5653
5654 real_pdi = pdi;
5655 while (real_pdi->has_specification)
5656 real_pdi = find_partial_die (real_pdi->spec_offset,
5657 real_pdi->spec_is_dwz, cu);
5658
5659 parent = real_pdi->die_parent;
5660 if (parent == NULL)
5661 return NULL;
5662
5663 if (parent->scope_set)
5664 return parent->scope;
5665
5666 fixup_partial_die (parent, cu);
5667
5668 grandparent_scope = partial_die_parent_scope (parent, cu);
5669
5670 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
5671 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
5672 Work around this problem here. */
5673 if (cu->language == language_cplus
5674 && parent->tag == DW_TAG_namespace
5675 && strcmp (parent->name, "::") == 0
5676 && grandparent_scope == NULL)
5677 {
5678 parent->scope = NULL;
5679 parent->scope_set = 1;
5680 return NULL;
5681 }
5682
5683 if (pdi->tag == DW_TAG_enumerator)
5684 /* Enumerators should not get the name of the enumeration as a prefix. */
5685 parent->scope = grandparent_scope;
5686 else if (parent->tag == DW_TAG_namespace
5687 || parent->tag == DW_TAG_module
5688 || parent->tag == DW_TAG_structure_type
5689 || parent->tag == DW_TAG_class_type
5690 || parent->tag == DW_TAG_interface_type
5691 || parent->tag == DW_TAG_union_type
5692 || parent->tag == DW_TAG_enumeration_type)
5693 {
5694 if (grandparent_scope == NULL)
5695 parent->scope = parent->name;
5696 else
5697 parent->scope = typename_concat (&cu->comp_unit_obstack,
5698 grandparent_scope,
5699 parent->name, 0, cu);
5700 }
5701 else
5702 {
5703 /* FIXME drow/2004-04-01: What should we be doing with
5704 function-local names? For partial symbols, we should probably be
5705 ignoring them. */
5706 complaint (&symfile_complaints,
5707 _("unhandled containing DIE tag %d for DIE at %d"),
5708 parent->tag, pdi->offset.sect_off);
5709 parent->scope = grandparent_scope;
5710 }
5711
5712 parent->scope_set = 1;
5713 return parent->scope;
5714 }
5715
5716 /* Return the fully scoped name associated with PDI, from compilation unit
5717 CU. The result will be allocated with malloc. */
5718
5719 static char *
5720 partial_die_full_name (struct partial_die_info *pdi,
5721 struct dwarf2_cu *cu)
5722 {
5723 char *parent_scope;
5724
5725 /* If this is a template instantiation, we can not work out the
5726 template arguments from partial DIEs. So, unfortunately, we have
5727 to go through the full DIEs. At least any work we do building
5728 types here will be reused if full symbols are loaded later. */
5729 if (pdi->has_template_arguments)
5730 {
5731 fixup_partial_die (pdi, cu);
5732
5733 if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
5734 {
5735 struct die_info *die;
5736 struct attribute attr;
5737 struct dwarf2_cu *ref_cu = cu;
5738
5739 /* DW_FORM_ref_addr is using section offset. */
5740 attr.name = 0;
5741 attr.form = DW_FORM_ref_addr;
5742 attr.u.unsnd = pdi->offset.sect_off;
5743 die = follow_die_ref (NULL, &attr, &ref_cu);
5744
5745 return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
5746 }
5747 }
5748
5749 parent_scope = partial_die_parent_scope (pdi, cu);
5750 if (parent_scope == NULL)
5751 return NULL;
5752 else
5753 return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
5754 }
5755
5756 static void
5757 add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
5758 {
5759 struct objfile *objfile = cu->objfile;
5760 CORE_ADDR addr = 0;
5761 char *actual_name = NULL;
5762 CORE_ADDR baseaddr;
5763 int built_actual_name = 0;
5764
5765 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5766
5767 actual_name = partial_die_full_name (pdi, cu);
5768 if (actual_name)
5769 built_actual_name = 1;
5770
5771 if (actual_name == NULL)
5772 actual_name = pdi->name;
5773
5774 switch (pdi->tag)
5775 {
5776 case DW_TAG_subprogram:
5777 if (pdi->is_external || cu->language == language_ada)
5778 {
5779 /* brobecker/2007-12-26: Normally, only "external" DIEs are part
5780 of the global scope. But in Ada, we want to be able to access
5781 nested procedures globally. So all Ada subprograms are stored
5782 in the global scope. */
5783 /* prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
5784 mst_text, objfile); */
5785 add_psymbol_to_list (actual_name, strlen (actual_name),
5786 built_actual_name,
5787 VAR_DOMAIN, LOC_BLOCK,
5788 &objfile->global_psymbols,
5789 0, pdi->lowpc + baseaddr,
5790 cu->language, objfile);
5791 }
5792 else
5793 {
5794 /* prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
5795 mst_file_text, objfile); */
5796 add_psymbol_to_list (actual_name, strlen (actual_name),
5797 built_actual_name,
5798 VAR_DOMAIN, LOC_BLOCK,
5799 &objfile->static_psymbols,
5800 0, pdi->lowpc + baseaddr,
5801 cu->language, objfile);
5802 }
5803 break;
5804 case DW_TAG_constant:
5805 {
5806 struct psymbol_allocation_list *list;
5807
5808 if (pdi->is_external)
5809 list = &objfile->global_psymbols;
5810 else
5811 list = &objfile->static_psymbols;
5812 add_psymbol_to_list (actual_name, strlen (actual_name),
5813 built_actual_name, VAR_DOMAIN, LOC_STATIC,
5814 list, 0, 0, cu->language, objfile);
5815 }
5816 break;
5817 case DW_TAG_variable:
5818 if (pdi->d.locdesc)
5819 addr = decode_locdesc (pdi->d.locdesc, cu);
5820
5821 if (pdi->d.locdesc
5822 && addr == 0
5823 && !dwarf2_per_objfile->has_section_at_zero)
5824 {
5825 /* A global or static variable may also have been stripped
5826 out by the linker if unused, in which case its address
5827 will be nullified; do not add such variables into partial
5828 symbol table then. */
5829 }
5830 else if (pdi->is_external)
5831 {
5832 /* Global Variable.
5833 Don't enter into the minimal symbol tables as there is
5834 a minimal symbol table entry from the ELF symbols already.
5835 Enter into partial symbol table if it has a location
5836 descriptor or a type.
5837 If the location descriptor is missing, new_symbol will create
5838 a LOC_UNRESOLVED symbol, the address of the variable will then
5839 be determined from the minimal symbol table whenever the variable
5840 is referenced.
5841 The address for the partial symbol table entry is not
5842 used by GDB, but it comes in handy for debugging partial symbol
5843 table building. */
5844
5845 if (pdi->d.locdesc || pdi->has_type)
5846 add_psymbol_to_list (actual_name, strlen (actual_name),
5847 built_actual_name,
5848 VAR_DOMAIN, LOC_STATIC,
5849 &objfile->global_psymbols,
5850 0, addr + baseaddr,
5851 cu->language, objfile);
5852 }
5853 else
5854 {
5855 /* Static Variable. Skip symbols without location descriptors. */
5856 if (pdi->d.locdesc == NULL)
5857 {
5858 if (built_actual_name)
5859 xfree (actual_name);
5860 return;
5861 }
5862 /* prim_record_minimal_symbol (actual_name, addr + baseaddr,
5863 mst_file_data, objfile); */
5864 add_psymbol_to_list (actual_name, strlen (actual_name),
5865 built_actual_name,
5866 VAR_DOMAIN, LOC_STATIC,
5867 &objfile->static_psymbols,
5868 0, addr + baseaddr,
5869 cu->language, objfile);
5870 }
5871 break;
5872 case DW_TAG_typedef:
5873 case DW_TAG_base_type:
5874 case DW_TAG_subrange_type:
5875 add_psymbol_to_list (actual_name, strlen (actual_name),
5876 built_actual_name,
5877 VAR_DOMAIN, LOC_TYPEDEF,
5878 &objfile->static_psymbols,
5879 0, (CORE_ADDR) 0, cu->language, objfile);
5880 break;
5881 case DW_TAG_namespace:
5882 add_psymbol_to_list (actual_name, strlen (actual_name),
5883 built_actual_name,
5884 VAR_DOMAIN, LOC_TYPEDEF,
5885 &objfile->global_psymbols,
5886 0, (CORE_ADDR) 0, cu->language, objfile);
5887 break;
5888 case DW_TAG_class_type:
5889 case DW_TAG_interface_type:
5890 case DW_TAG_structure_type:
5891 case DW_TAG_union_type:
5892 case DW_TAG_enumeration_type:
5893 /* Skip external references. The DWARF standard says in the section
5894 about "Structure, Union, and Class Type Entries": "An incomplete
5895 structure, union or class type is represented by a structure,
5896 union or class entry that does not have a byte size attribute
5897 and that has a DW_AT_declaration attribute." */
5898 if (!pdi->has_byte_size && pdi->is_declaration)
5899 {
5900 if (built_actual_name)
5901 xfree (actual_name);
5902 return;
5903 }
5904
5905 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
5906 static vs. global. */
5907 add_psymbol_to_list (actual_name, strlen (actual_name),
5908 built_actual_name,
5909 STRUCT_DOMAIN, LOC_TYPEDEF,
5910 (cu->language == language_cplus
5911 || cu->language == language_java)
5912 ? &objfile->global_psymbols
5913 : &objfile->static_psymbols,
5914 0, (CORE_ADDR) 0, cu->language, objfile);
5915
5916 break;
5917 case DW_TAG_enumerator:
5918 add_psymbol_to_list (actual_name, strlen (actual_name),
5919 built_actual_name,
5920 VAR_DOMAIN, LOC_CONST,
5921 (cu->language == language_cplus
5922 || cu->language == language_java)
5923 ? &objfile->global_psymbols
5924 : &objfile->static_psymbols,
5925 0, (CORE_ADDR) 0, cu->language, objfile);
5926 break;
5927 default:
5928 break;
5929 }
5930
5931 if (built_actual_name)
5932 xfree (actual_name);
5933 }
5934
5935 /* Read a partial die corresponding to a namespace; also, add a symbol
5936 corresponding to that namespace to the symbol table. NAMESPACE is
5937 the name of the enclosing namespace. */
5938
5939 static void
5940 add_partial_namespace (struct partial_die_info *pdi,
5941 CORE_ADDR *lowpc, CORE_ADDR *highpc,
5942 int need_pc, struct dwarf2_cu *cu)
5943 {
5944 /* Add a symbol for the namespace. */
5945
5946 add_partial_symbol (pdi, cu);
5947
5948 /* Now scan partial symbols in that namespace. */
5949
5950 if (pdi->has_children)
5951 scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
5952 }
5953
5954 /* Read a partial die corresponding to a Fortran module. */
5955
5956 static void
5957 add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
5958 CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
5959 {
5960 /* Now scan partial symbols in that module. */
5961
5962 if (pdi->has_children)
5963 scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
5964 }
5965
5966 /* Read a partial die corresponding to a subprogram and create a partial
5967 symbol for that subprogram. When the CU language allows it, this
5968 routine also defines a partial symbol for each nested subprogram
5969 that this subprogram contains.
5970
5971 DIE my also be a lexical block, in which case we simply search
5972 recursively for suprograms defined inside that lexical block.
5973 Again, this is only performed when the CU language allows this
5974 type of definitions. */
5975
5976 static void
5977 add_partial_subprogram (struct partial_die_info *pdi,
5978 CORE_ADDR *lowpc, CORE_ADDR *highpc,
5979 int need_pc, struct dwarf2_cu *cu)
5980 {
5981 if (pdi->tag == DW_TAG_subprogram)
5982 {
5983 if (pdi->has_pc_info)
5984 {
5985 if (pdi->lowpc < *lowpc)
5986 *lowpc = pdi->lowpc;
5987 if (pdi->highpc > *highpc)
5988 *highpc = pdi->highpc;
5989 if (need_pc)
5990 {
5991 CORE_ADDR baseaddr;
5992 struct objfile *objfile = cu->objfile;
5993
5994 baseaddr = ANOFFSET (objfile->section_offsets,
5995 SECT_OFF_TEXT (objfile));
5996 addrmap_set_empty (objfile->psymtabs_addrmap,
5997 pdi->lowpc + baseaddr,
5998 pdi->highpc - 1 + baseaddr,
5999 cu->per_cu->v.psymtab);
6000 }
6001 }
6002
6003 if (pdi->has_pc_info || (!pdi->is_external && pdi->may_be_inlined))
6004 {
6005 if (!pdi->is_declaration)
6006 /* Ignore subprogram DIEs that do not have a name, they are
6007 illegal. Do not emit a complaint at this point, we will
6008 do so when we convert this psymtab into a symtab. */
6009 if (pdi->name)
6010 add_partial_symbol (pdi, cu);
6011 }
6012 }
6013
6014 if (! pdi->has_children)
6015 return;
6016
6017 if (cu->language == language_ada)
6018 {
6019 pdi = pdi->die_child;
6020 while (pdi != NULL)
6021 {
6022 fixup_partial_die (pdi, cu);
6023 if (pdi->tag == DW_TAG_subprogram
6024 || pdi->tag == DW_TAG_lexical_block)
6025 add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
6026 pdi = pdi->die_sibling;
6027 }
6028 }
6029 }
6030
6031 /* Read a partial die corresponding to an enumeration type. */
6032
6033 static void
6034 add_partial_enumeration (struct partial_die_info *enum_pdi,
6035 struct dwarf2_cu *cu)
6036 {
6037 struct partial_die_info *pdi;
6038
6039 if (enum_pdi->name != NULL)
6040 add_partial_symbol (enum_pdi, cu);
6041
6042 pdi = enum_pdi->die_child;
6043 while (pdi)
6044 {
6045 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
6046 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
6047 else
6048 add_partial_symbol (pdi, cu);
6049 pdi = pdi->die_sibling;
6050 }
6051 }
6052
6053 /* Return the initial uleb128 in the die at INFO_PTR. */
6054
6055 static unsigned int
6056 peek_abbrev_code (bfd *abfd, gdb_byte *info_ptr)
6057 {
6058 unsigned int bytes_read;
6059
6060 return read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
6061 }
6062
6063 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
6064 Return the corresponding abbrev, or NULL if the number is zero (indicating
6065 an empty DIE). In either case *BYTES_READ will be set to the length of
6066 the initial number. */
6067
6068 static struct abbrev_info *
6069 peek_die_abbrev (gdb_byte *info_ptr, unsigned int *bytes_read,
6070 struct dwarf2_cu *cu)
6071 {
6072 bfd *abfd = cu->objfile->obfd;
6073 unsigned int abbrev_number;
6074 struct abbrev_info *abbrev;
6075
6076 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
6077
6078 if (abbrev_number == 0)
6079 return NULL;
6080
6081 abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
6082 if (!abbrev)
6083 {
6084 error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"),
6085 abbrev_number, bfd_get_filename (abfd));
6086 }
6087
6088 return abbrev;
6089 }
6090
6091 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
6092 Returns a pointer to the end of a series of DIEs, terminated by an empty
6093 DIE. Any children of the skipped DIEs will also be skipped. */
6094
6095 static gdb_byte *
6096 skip_children (const struct die_reader_specs *reader, gdb_byte *info_ptr)
6097 {
6098 struct dwarf2_cu *cu = reader->cu;
6099 struct abbrev_info *abbrev;
6100 unsigned int bytes_read;
6101
6102 while (1)
6103 {
6104 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
6105 if (abbrev == NULL)
6106 return info_ptr + bytes_read;
6107 else
6108 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
6109 }
6110 }
6111
6112 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
6113 INFO_PTR should point just after the initial uleb128 of a DIE, and the
6114 abbrev corresponding to that skipped uleb128 should be passed in
6115 ABBREV. Returns a pointer to this DIE's sibling, skipping any
6116 children. */
6117
6118 static gdb_byte *
6119 skip_one_die (const struct die_reader_specs *reader, gdb_byte *info_ptr,
6120 struct abbrev_info *abbrev)
6121 {
6122 unsigned int bytes_read;
6123 struct attribute attr;
6124 bfd *abfd = reader->abfd;
6125 struct dwarf2_cu *cu = reader->cu;
6126 gdb_byte *buffer = reader->buffer;
6127 const gdb_byte *buffer_end = reader->buffer_end;
6128 gdb_byte *start_info_ptr = info_ptr;
6129 unsigned int form, i;
6130
6131 for (i = 0; i < abbrev->num_attrs; i++)
6132 {
6133 /* The only abbrev we care about is DW_AT_sibling. */
6134 if (abbrev->attrs[i].name == DW_AT_sibling)
6135 {
6136 read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
6137 if (attr.form == DW_FORM_ref_addr)
6138 complaint (&symfile_complaints,
6139 _("ignoring absolute DW_AT_sibling"));
6140 else
6141 return buffer + dwarf2_get_ref_die_offset (&attr).sect_off;
6142 }
6143
6144 /* If it isn't DW_AT_sibling, skip this attribute. */
6145 form = abbrev->attrs[i].form;
6146 skip_attribute:
6147 switch (form)
6148 {
6149 case DW_FORM_ref_addr:
6150 /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
6151 and later it is offset sized. */
6152 if (cu->header.version == 2)
6153 info_ptr += cu->header.addr_size;
6154 else
6155 info_ptr += cu->header.offset_size;
6156 break;
6157 case DW_FORM_GNU_ref_alt:
6158 info_ptr += cu->header.offset_size;
6159 break;
6160 case DW_FORM_addr:
6161 info_ptr += cu->header.addr_size;
6162 break;
6163 case DW_FORM_data1:
6164 case DW_FORM_ref1:
6165 case DW_FORM_flag:
6166 info_ptr += 1;
6167 break;
6168 case DW_FORM_flag_present:
6169 break;
6170 case DW_FORM_data2:
6171 case DW_FORM_ref2:
6172 info_ptr += 2;
6173 break;
6174 case DW_FORM_data4:
6175 case DW_FORM_ref4:
6176 info_ptr += 4;
6177 break;
6178 case DW_FORM_data8:
6179 case DW_FORM_ref8:
6180 case DW_FORM_ref_sig8:
6181 info_ptr += 8;
6182 break;
6183 case DW_FORM_string:
6184 read_direct_string (abfd, info_ptr, &bytes_read);
6185 info_ptr += bytes_read;
6186 break;
6187 case DW_FORM_sec_offset:
6188 case DW_FORM_strp:
6189 case DW_FORM_GNU_strp_alt:
6190 info_ptr += cu->header.offset_size;
6191 break;
6192 case DW_FORM_exprloc:
6193 case DW_FORM_block:
6194 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
6195 info_ptr += bytes_read;
6196 break;
6197 case DW_FORM_block1:
6198 info_ptr += 1 + read_1_byte (abfd, info_ptr);
6199 break;
6200 case DW_FORM_block2:
6201 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
6202 break;
6203 case DW_FORM_block4:
6204 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
6205 break;
6206 case DW_FORM_sdata:
6207 case DW_FORM_udata:
6208 case DW_FORM_ref_udata:
6209 case DW_FORM_GNU_addr_index:
6210 case DW_FORM_GNU_str_index:
6211 info_ptr = (gdb_byte *) safe_skip_leb128 (info_ptr, buffer_end);
6212 break;
6213 case DW_FORM_indirect:
6214 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
6215 info_ptr += bytes_read;
6216 /* We need to continue parsing from here, so just go back to
6217 the top. */
6218 goto skip_attribute;
6219
6220 default:
6221 error (_("Dwarf Error: Cannot handle %s "
6222 "in DWARF reader [in module %s]"),
6223 dwarf_form_name (form),
6224 bfd_get_filename (abfd));
6225 }
6226 }
6227
6228 if (abbrev->has_children)
6229 return skip_children (reader, info_ptr);
6230 else
6231 return info_ptr;
6232 }
6233
6234 /* Locate ORIG_PDI's sibling.
6235 INFO_PTR should point to the start of the next DIE after ORIG_PDI. */
6236
6237 static gdb_byte *
6238 locate_pdi_sibling (const struct die_reader_specs *reader,
6239 struct partial_die_info *orig_pdi,
6240 gdb_byte *info_ptr)
6241 {
6242 /* Do we know the sibling already? */
6243
6244 if (orig_pdi->sibling)
6245 return orig_pdi->sibling;
6246
6247 /* Are there any children to deal with? */
6248
6249 if (!orig_pdi->has_children)
6250 return info_ptr;
6251
6252 /* Skip the children the long way. */
6253
6254 return skip_children (reader, info_ptr);
6255 }
6256
6257 /* Expand this partial symbol table into a full symbol table. */
6258
6259 static void
6260 dwarf2_psymtab_to_symtab (struct partial_symtab *pst)
6261 {
6262 if (pst != NULL)
6263 {
6264 if (pst->readin)
6265 {
6266 warning (_("bug: psymtab for %s is already read in."),
6267 pst->filename);
6268 }
6269 else
6270 {
6271 if (info_verbose)
6272 {
6273 printf_filtered (_("Reading in symbols for %s..."),
6274 pst->filename);
6275 gdb_flush (gdb_stdout);
6276 }
6277
6278 /* Restore our global data. */
6279 dwarf2_per_objfile = objfile_data (pst->objfile,
6280 dwarf2_objfile_data_key);
6281
6282 /* If this psymtab is constructed from a debug-only objfile, the
6283 has_section_at_zero flag will not necessarily be correct. We
6284 can get the correct value for this flag by looking at the data
6285 associated with the (presumably stripped) associated objfile. */
6286 if (pst->objfile->separate_debug_objfile_backlink)
6287 {
6288 struct dwarf2_per_objfile *dpo_backlink
6289 = objfile_data (pst->objfile->separate_debug_objfile_backlink,
6290 dwarf2_objfile_data_key);
6291
6292 dwarf2_per_objfile->has_section_at_zero
6293 = dpo_backlink->has_section_at_zero;
6294 }
6295
6296 dwarf2_per_objfile->reading_partial_symbols = 0;
6297
6298 psymtab_to_symtab_1 (pst);
6299
6300 /* Finish up the debug error message. */
6301 if (info_verbose)
6302 printf_filtered (_("done.\n"));
6303 }
6304 }
6305
6306 process_cu_includes ();
6307 }
6308 \f
6309 /* Reading in full CUs. */
6310
6311 /* Add PER_CU to the queue. */
6312
6313 static void
6314 queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
6315 enum language pretend_language)
6316 {
6317 struct dwarf2_queue_item *item;
6318
6319 per_cu->queued = 1;
6320 item = xmalloc (sizeof (*item));
6321 item->per_cu = per_cu;
6322 item->pretend_language = pretend_language;
6323 item->next = NULL;
6324
6325 if (dwarf2_queue == NULL)
6326 dwarf2_queue = item;
6327 else
6328 dwarf2_queue_tail->next = item;
6329
6330 dwarf2_queue_tail = item;
6331 }
6332
6333 /* THIS_CU has a reference to PER_CU. If necessary, load the new compilation
6334 unit and add it to our queue.
6335 The result is non-zero if PER_CU was queued, otherwise the result is zero
6336 meaning either PER_CU is already queued or it is already loaded. */
6337
6338 static int
6339 maybe_queue_comp_unit (struct dwarf2_cu *this_cu,
6340 struct dwarf2_per_cu_data *per_cu,
6341 enum language pretend_language)
6342 {
6343 /* We may arrive here during partial symbol reading, if we need full
6344 DIEs to process an unusual case (e.g. template arguments). Do
6345 not queue PER_CU, just tell our caller to load its DIEs. */
6346 if (dwarf2_per_objfile->reading_partial_symbols)
6347 {
6348 if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
6349 return 1;
6350 return 0;
6351 }
6352
6353 /* Mark the dependence relation so that we don't flush PER_CU
6354 too early. */
6355 dwarf2_add_dependence (this_cu, per_cu);
6356
6357 /* If it's already on the queue, we have nothing to do. */
6358 if (per_cu->queued)
6359 return 0;
6360
6361 /* If the compilation unit is already loaded, just mark it as
6362 used. */
6363 if (per_cu->cu != NULL)
6364 {
6365 per_cu->cu->last_used = 0;
6366 return 0;
6367 }
6368
6369 /* Add it to the queue. */
6370 queue_comp_unit (per_cu, pretend_language);
6371
6372 return 1;
6373 }
6374
6375 /* Process the queue. */
6376
6377 static void
6378 process_queue (void)
6379 {
6380 struct dwarf2_queue_item *item, *next_item;
6381
6382 if (dwarf2_read_debug)
6383 {
6384 fprintf_unfiltered (gdb_stdlog,
6385 "Expanding one or more symtabs of objfile %s ...\n",
6386 dwarf2_per_objfile->objfile->name);
6387 }
6388
6389 /* The queue starts out with one item, but following a DIE reference
6390 may load a new CU, adding it to the end of the queue. */
6391 for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
6392 {
6393 if (dwarf2_per_objfile->using_index
6394 ? !item->per_cu->v.quick->symtab
6395 : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
6396 {
6397 struct dwarf2_per_cu_data *per_cu = item->per_cu;
6398
6399 if (dwarf2_read_debug)
6400 {
6401 fprintf_unfiltered (gdb_stdlog,
6402 "Expanding symtab of %s at offset 0x%x\n",
6403 per_cu->is_debug_types ? "TU" : "CU",
6404 per_cu->offset.sect_off);
6405 }
6406
6407 if (per_cu->is_debug_types)
6408 process_full_type_unit (per_cu, item->pretend_language);
6409 else
6410 process_full_comp_unit (per_cu, item->pretend_language);
6411
6412 if (dwarf2_read_debug)
6413 {
6414 fprintf_unfiltered (gdb_stdlog,
6415 "Done expanding %s at offset 0x%x\n",
6416 per_cu->is_debug_types ? "TU" : "CU",
6417 per_cu->offset.sect_off);
6418 }
6419 }
6420
6421 item->per_cu->queued = 0;
6422 next_item = item->next;
6423 xfree (item);
6424 }
6425
6426 dwarf2_queue_tail = NULL;
6427
6428 if (dwarf2_read_debug)
6429 {
6430 fprintf_unfiltered (gdb_stdlog, "Done expanding symtabs of %s.\n",
6431 dwarf2_per_objfile->objfile->name);
6432 }
6433 }
6434
6435 /* Free all allocated queue entries. This function only releases anything if
6436 an error was thrown; if the queue was processed then it would have been
6437 freed as we went along. */
6438
6439 static void
6440 dwarf2_release_queue (void *dummy)
6441 {
6442 struct dwarf2_queue_item *item, *last;
6443
6444 item = dwarf2_queue;
6445 while (item)
6446 {
6447 /* Anything still marked queued is likely to be in an
6448 inconsistent state, so discard it. */
6449 if (item->per_cu->queued)
6450 {
6451 if (item->per_cu->cu != NULL)
6452 free_one_cached_comp_unit (item->per_cu);
6453 item->per_cu->queued = 0;
6454 }
6455
6456 last = item;
6457 item = item->next;
6458 xfree (last);
6459 }
6460
6461 dwarf2_queue = dwarf2_queue_tail = NULL;
6462 }
6463
6464 /* Read in full symbols for PST, and anything it depends on. */
6465
6466 static void
6467 psymtab_to_symtab_1 (struct partial_symtab *pst)
6468 {
6469 struct dwarf2_per_cu_data *per_cu;
6470 int i;
6471
6472 if (pst->readin)
6473 return;
6474
6475 for (i = 0; i < pst->number_of_dependencies; i++)
6476 if (!pst->dependencies[i]->readin
6477 && pst->dependencies[i]->user == NULL)
6478 {
6479 /* Inform about additional files that need to be read in. */
6480 if (info_verbose)
6481 {
6482 /* FIXME: i18n: Need to make this a single string. */
6483 fputs_filtered (" ", gdb_stdout);
6484 wrap_here ("");
6485 fputs_filtered ("and ", gdb_stdout);
6486 wrap_here ("");
6487 printf_filtered ("%s...", pst->dependencies[i]->filename);
6488 wrap_here (""); /* Flush output. */
6489 gdb_flush (gdb_stdout);
6490 }
6491 psymtab_to_symtab_1 (pst->dependencies[i]);
6492 }
6493
6494 per_cu = pst->read_symtab_private;
6495
6496 if (per_cu == NULL)
6497 {
6498 /* It's an include file, no symbols to read for it.
6499 Everything is in the parent symtab. */
6500 pst->readin = 1;
6501 return;
6502 }
6503
6504 dw2_do_instantiate_symtab (per_cu);
6505 }
6506
6507 /* Trivial hash function for die_info: the hash value of a DIE
6508 is its offset in .debug_info for this objfile. */
6509
6510 static hashval_t
6511 die_hash (const void *item)
6512 {
6513 const struct die_info *die = item;
6514
6515 return die->offset.sect_off;
6516 }
6517
6518 /* Trivial comparison function for die_info structures: two DIEs
6519 are equal if they have the same offset. */
6520
6521 static int
6522 die_eq (const void *item_lhs, const void *item_rhs)
6523 {
6524 const struct die_info *die_lhs = item_lhs;
6525 const struct die_info *die_rhs = item_rhs;
6526
6527 return die_lhs->offset.sect_off == die_rhs->offset.sect_off;
6528 }
6529
6530 /* die_reader_func for load_full_comp_unit.
6531 This is identical to read_signatured_type_reader,
6532 but is kept separate for now. */
6533
6534 static void
6535 load_full_comp_unit_reader (const struct die_reader_specs *reader,
6536 gdb_byte *info_ptr,
6537 struct die_info *comp_unit_die,
6538 int has_children,
6539 void *data)
6540 {
6541 struct dwarf2_cu *cu = reader->cu;
6542 enum language *language_ptr = data;
6543
6544 gdb_assert (cu->die_hash == NULL);
6545 cu->die_hash =
6546 htab_create_alloc_ex (cu->header.length / 12,
6547 die_hash,
6548 die_eq,
6549 NULL,
6550 &cu->comp_unit_obstack,
6551 hashtab_obstack_allocate,
6552 dummy_obstack_deallocate);
6553
6554 if (has_children)
6555 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
6556 &info_ptr, comp_unit_die);
6557 cu->dies = comp_unit_die;
6558 /* comp_unit_die is not stored in die_hash, no need. */
6559
6560 /* We try not to read any attributes in this function, because not
6561 all CUs needed for references have been loaded yet, and symbol
6562 table processing isn't initialized. But we have to set the CU language,
6563 or we won't be able to build types correctly.
6564 Similarly, if we do not read the producer, we can not apply
6565 producer-specific interpretation. */
6566 prepare_one_comp_unit (cu, cu->dies, *language_ptr);
6567 }
6568
6569 /* Load the DIEs associated with PER_CU into memory. */
6570
6571 static void
6572 load_full_comp_unit (struct dwarf2_per_cu_data *this_cu,
6573 enum language pretend_language)
6574 {
6575 gdb_assert (! this_cu->is_debug_types);
6576
6577 init_cutu_and_read_dies (this_cu, NULL, 1, 1,
6578 load_full_comp_unit_reader, &pretend_language);
6579 }
6580
6581 /* Add a DIE to the delayed physname list. */
6582
6583 static void
6584 add_to_method_list (struct type *type, int fnfield_index, int index,
6585 const char *name, struct die_info *die,
6586 struct dwarf2_cu *cu)
6587 {
6588 struct delayed_method_info mi;
6589 mi.type = type;
6590 mi.fnfield_index = fnfield_index;
6591 mi.index = index;
6592 mi.name = name;
6593 mi.die = die;
6594 VEC_safe_push (delayed_method_info, cu->method_list, &mi);
6595 }
6596
6597 /* A cleanup for freeing the delayed method list. */
6598
6599 static void
6600 free_delayed_list (void *ptr)
6601 {
6602 struct dwarf2_cu *cu = (struct dwarf2_cu *) ptr;
6603 if (cu->method_list != NULL)
6604 {
6605 VEC_free (delayed_method_info, cu->method_list);
6606 cu->method_list = NULL;
6607 }
6608 }
6609
6610 /* Compute the physnames of any methods on the CU's method list.
6611
6612 The computation of method physnames is delayed in order to avoid the
6613 (bad) condition that one of the method's formal parameters is of an as yet
6614 incomplete type. */
6615
6616 static void
6617 compute_delayed_physnames (struct dwarf2_cu *cu)
6618 {
6619 int i;
6620 struct delayed_method_info *mi;
6621 for (i = 0; VEC_iterate (delayed_method_info, cu->method_list, i, mi) ; ++i)
6622 {
6623 const char *physname;
6624 struct fn_fieldlist *fn_flp
6625 = &TYPE_FN_FIELDLIST (mi->type, mi->fnfield_index);
6626 physname = dwarf2_physname ((char *) mi->name, mi->die, cu);
6627 fn_flp->fn_fields[mi->index].physname = physname ? physname : "";
6628 }
6629 }
6630
6631 /* Go objects should be embedded in a DW_TAG_module DIE,
6632 and it's not clear if/how imported objects will appear.
6633 To keep Go support simple until that's worked out,
6634 go back through what we've read and create something usable.
6635 We could do this while processing each DIE, and feels kinda cleaner,
6636 but that way is more invasive.
6637 This is to, for example, allow the user to type "p var" or "b main"
6638 without having to specify the package name, and allow lookups
6639 of module.object to work in contexts that use the expression
6640 parser. */
6641
6642 static void
6643 fixup_go_packaging (struct dwarf2_cu *cu)
6644 {
6645 char *package_name = NULL;
6646 struct pending *list;
6647 int i;
6648
6649 for (list = global_symbols; list != NULL; list = list->next)
6650 {
6651 for (i = 0; i < list->nsyms; ++i)
6652 {
6653 struct symbol *sym = list->symbol[i];
6654
6655 if (SYMBOL_LANGUAGE (sym) == language_go
6656 && SYMBOL_CLASS (sym) == LOC_BLOCK)
6657 {
6658 char *this_package_name = go_symbol_package_name (sym);
6659
6660 if (this_package_name == NULL)
6661 continue;
6662 if (package_name == NULL)
6663 package_name = this_package_name;
6664 else
6665 {
6666 if (strcmp (package_name, this_package_name) != 0)
6667 complaint (&symfile_complaints,
6668 _("Symtab %s has objects from two different Go packages: %s and %s"),
6669 (sym->symtab && sym->symtab->filename
6670 ? sym->symtab->filename
6671 : cu->objfile->name),
6672 this_package_name, package_name);
6673 xfree (this_package_name);
6674 }
6675 }
6676 }
6677 }
6678
6679 if (package_name != NULL)
6680 {
6681 struct objfile *objfile = cu->objfile;
6682 struct type *type = init_type (TYPE_CODE_MODULE, 0, 0,
6683 package_name, objfile);
6684 struct symbol *sym;
6685
6686 TYPE_TAG_NAME (type) = TYPE_NAME (type);
6687
6688 sym = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct symbol);
6689 SYMBOL_SET_LANGUAGE (sym, language_go);
6690 SYMBOL_SET_NAMES (sym, package_name, strlen (package_name), 1, objfile);
6691 /* This is not VAR_DOMAIN because we want a way to ensure a lookup of,
6692 e.g., "main" finds the "main" module and not C's main(). */
6693 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
6694 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
6695 SYMBOL_TYPE (sym) = type;
6696
6697 add_symbol_to_list (sym, &global_symbols);
6698
6699 xfree (package_name);
6700 }
6701 }
6702
6703 static void compute_symtab_includes (struct dwarf2_per_cu_data *per_cu);
6704
6705 /* Return the symtab for PER_CU. This works properly regardless of
6706 whether we're using the index or psymtabs. */
6707
6708 static struct symtab *
6709 get_symtab (struct dwarf2_per_cu_data *per_cu)
6710 {
6711 return (dwarf2_per_objfile->using_index
6712 ? per_cu->v.quick->symtab
6713 : per_cu->v.psymtab->symtab);
6714 }
6715
6716 /* A helper function for computing the list of all symbol tables
6717 included by PER_CU. */
6718
6719 static void
6720 recursively_compute_inclusions (VEC (dwarf2_per_cu_ptr) **result,
6721 htab_t all_children,
6722 struct dwarf2_per_cu_data *per_cu)
6723 {
6724 void **slot;
6725 int ix;
6726 struct dwarf2_per_cu_data *iter;
6727
6728 slot = htab_find_slot (all_children, per_cu, INSERT);
6729 if (*slot != NULL)
6730 {
6731 /* This inclusion and its children have been processed. */
6732 return;
6733 }
6734
6735 *slot = per_cu;
6736 /* Only add a CU if it has a symbol table. */
6737 if (get_symtab (per_cu) != NULL)
6738 VEC_safe_push (dwarf2_per_cu_ptr, *result, per_cu);
6739
6740 for (ix = 0;
6741 VEC_iterate (dwarf2_per_cu_ptr, per_cu->s.imported_symtabs, ix, iter);
6742 ++ix)
6743 recursively_compute_inclusions (result, all_children, iter);
6744 }
6745
6746 /* Compute the symtab 'includes' fields for the symtab related to
6747 PER_CU. */
6748
6749 static void
6750 compute_symtab_includes (struct dwarf2_per_cu_data *per_cu)
6751 {
6752 gdb_assert (! per_cu->is_debug_types);
6753
6754 if (!VEC_empty (dwarf2_per_cu_ptr, per_cu->s.imported_symtabs))
6755 {
6756 int ix, len;
6757 struct dwarf2_per_cu_data *iter;
6758 VEC (dwarf2_per_cu_ptr) *result_children = NULL;
6759 htab_t all_children;
6760 struct symtab *symtab = get_symtab (per_cu);
6761
6762 /* If we don't have a symtab, we can just skip this case. */
6763 if (symtab == NULL)
6764 return;
6765
6766 all_children = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
6767 NULL, xcalloc, xfree);
6768
6769 for (ix = 0;
6770 VEC_iterate (dwarf2_per_cu_ptr, per_cu->s.imported_symtabs,
6771 ix, iter);
6772 ++ix)
6773 recursively_compute_inclusions (&result_children, all_children, iter);
6774
6775 /* Now we have a transitive closure of all the included CUs, so
6776 we can convert it to a list of symtabs. */
6777 len = VEC_length (dwarf2_per_cu_ptr, result_children);
6778 symtab->includes
6779 = obstack_alloc (&dwarf2_per_objfile->objfile->objfile_obstack,
6780 (len + 1) * sizeof (struct symtab *));
6781 for (ix = 0;
6782 VEC_iterate (dwarf2_per_cu_ptr, result_children, ix, iter);
6783 ++ix)
6784 symtab->includes[ix] = get_symtab (iter);
6785 symtab->includes[len] = NULL;
6786
6787 VEC_free (dwarf2_per_cu_ptr, result_children);
6788 htab_delete (all_children);
6789 }
6790 }
6791
6792 /* Compute the 'includes' field for the symtabs of all the CUs we just
6793 read. */
6794
6795 static void
6796 process_cu_includes (void)
6797 {
6798 int ix;
6799 struct dwarf2_per_cu_data *iter;
6800
6801 for (ix = 0;
6802 VEC_iterate (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus,
6803 ix, iter);
6804 ++ix)
6805 {
6806 if (! iter->is_debug_types)
6807 compute_symtab_includes (iter);
6808 }
6809
6810 VEC_free (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus);
6811 }
6812
6813 /* Generate full symbol information for PER_CU, whose DIEs have
6814 already been loaded into memory. */
6815
6816 static void
6817 process_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
6818 enum language pretend_language)
6819 {
6820 struct dwarf2_cu *cu = per_cu->cu;
6821 struct objfile *objfile = per_cu->objfile;
6822 CORE_ADDR lowpc, highpc;
6823 struct symtab *symtab;
6824 struct cleanup *back_to, *delayed_list_cleanup;
6825 CORE_ADDR baseaddr;
6826 struct block *static_block;
6827
6828 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
6829
6830 buildsym_init ();
6831 back_to = make_cleanup (really_free_pendings, NULL);
6832 delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
6833
6834 cu->list_in_scope = &file_symbols;
6835
6836 cu->language = pretend_language;
6837 cu->language_defn = language_def (cu->language);
6838
6839 /* Do line number decoding in read_file_scope () */
6840 process_die (cu->dies, cu);
6841
6842 /* For now fudge the Go package. */
6843 if (cu->language == language_go)
6844 fixup_go_packaging (cu);
6845
6846 /* Now that we have processed all the DIEs in the CU, all the types
6847 should be complete, and it should now be safe to compute all of the
6848 physnames. */
6849 compute_delayed_physnames (cu);
6850 do_cleanups (delayed_list_cleanup);
6851
6852 /* Some compilers don't define a DW_AT_high_pc attribute for the
6853 compilation unit. If the DW_AT_high_pc is missing, synthesize
6854 it, by scanning the DIE's below the compilation unit. */
6855 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
6856
6857 static_block
6858 = end_symtab_get_static_block (highpc + baseaddr, objfile, 0,
6859 per_cu->s.imported_symtabs != NULL);
6860
6861 /* If the comp unit has DW_AT_ranges, it may have discontiguous ranges.
6862 Also, DW_AT_ranges may record ranges not belonging to any child DIEs
6863 (such as virtual method tables). Record the ranges in STATIC_BLOCK's
6864 addrmap to help ensure it has an accurate map of pc values belonging to
6865 this comp unit. */
6866 dwarf2_record_block_ranges (cu->dies, static_block, baseaddr, cu);
6867
6868 symtab = end_symtab_from_static_block (static_block, objfile,
6869 SECT_OFF_TEXT (objfile), 0);
6870
6871 if (symtab != NULL)
6872 {
6873 int gcc_4_minor = producer_is_gcc_ge_4 (cu->producer);
6874
6875 /* Set symtab language to language from DW_AT_language. If the
6876 compilation is from a C file generated by language preprocessors, do
6877 not set the language if it was already deduced by start_subfile. */
6878 if (!(cu->language == language_c && symtab->language != language_c))
6879 symtab->language = cu->language;
6880
6881 /* GCC-4.0 has started to support -fvar-tracking. GCC-3.x still can
6882 produce DW_AT_location with location lists but it can be possibly
6883 invalid without -fvar-tracking. Still up to GCC-4.4.x incl. 4.4.0
6884 there were bugs in prologue debug info, fixed later in GCC-4.5
6885 by "unwind info for epilogues" patch (which is not directly related).
6886
6887 For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
6888 needed, it would be wrong due to missing DW_AT_producer there.
6889
6890 Still one can confuse GDB by using non-standard GCC compilation
6891 options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
6892 */
6893 if (cu->has_loclist && gcc_4_minor >= 5)
6894 symtab->locations_valid = 1;
6895
6896 if (gcc_4_minor >= 5)
6897 symtab->epilogue_unwind_valid = 1;
6898
6899 symtab->call_site_htab = cu->call_site_htab;
6900 }
6901
6902 if (dwarf2_per_objfile->using_index)
6903 per_cu->v.quick->symtab = symtab;
6904 else
6905 {
6906 struct partial_symtab *pst = per_cu->v.psymtab;
6907 pst->symtab = symtab;
6908 pst->readin = 1;
6909 }
6910
6911 /* Push it for inclusion processing later. */
6912 VEC_safe_push (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus, per_cu);
6913
6914 do_cleanups (back_to);
6915 }
6916
6917 /* Generate full symbol information for type unit PER_CU, whose DIEs have
6918 already been loaded into memory. */
6919
6920 static void
6921 process_full_type_unit (struct dwarf2_per_cu_data *per_cu,
6922 enum language pretend_language)
6923 {
6924 struct dwarf2_cu *cu = per_cu->cu;
6925 struct objfile *objfile = per_cu->objfile;
6926 struct symtab *symtab;
6927 struct cleanup *back_to, *delayed_list_cleanup;
6928
6929 buildsym_init ();
6930 back_to = make_cleanup (really_free_pendings, NULL);
6931 delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
6932
6933 cu->list_in_scope = &file_symbols;
6934
6935 cu->language = pretend_language;
6936 cu->language_defn = language_def (cu->language);
6937
6938 /* The symbol tables are set up in read_type_unit_scope. */
6939 process_die (cu->dies, cu);
6940
6941 /* For now fudge the Go package. */
6942 if (cu->language == language_go)
6943 fixup_go_packaging (cu);
6944
6945 /* Now that we have processed all the DIEs in the CU, all the types
6946 should be complete, and it should now be safe to compute all of the
6947 physnames. */
6948 compute_delayed_physnames (cu);
6949 do_cleanups (delayed_list_cleanup);
6950
6951 /* TUs share symbol tables.
6952 If this is the first TU to use this symtab, complete the construction
6953 of it with end_expandable_symtab. Otherwise, complete the addition of
6954 this TU's symbols to the existing symtab. */
6955 if (per_cu->s.type_unit_group->primary_symtab == NULL)
6956 {
6957 symtab = end_expandable_symtab (0, objfile, SECT_OFF_TEXT (objfile));
6958 per_cu->s.type_unit_group->primary_symtab = symtab;
6959
6960 if (symtab != NULL)
6961 {
6962 /* Set symtab language to language from DW_AT_language. If the
6963 compilation is from a C file generated by language preprocessors,
6964 do not set the language if it was already deduced by
6965 start_subfile. */
6966 if (!(cu->language == language_c && symtab->language != language_c))
6967 symtab->language = cu->language;
6968 }
6969 }
6970 else
6971 {
6972 augment_type_symtab (objfile,
6973 per_cu->s.type_unit_group->primary_symtab);
6974 symtab = per_cu->s.type_unit_group->primary_symtab;
6975 }
6976
6977 if (dwarf2_per_objfile->using_index)
6978 per_cu->v.quick->symtab = symtab;
6979 else
6980 {
6981 struct partial_symtab *pst = per_cu->v.psymtab;
6982 pst->symtab = symtab;
6983 pst->readin = 1;
6984 }
6985
6986 do_cleanups (back_to);
6987 }
6988
6989 /* Process an imported unit DIE. */
6990
6991 static void
6992 process_imported_unit_die (struct die_info *die, struct dwarf2_cu *cu)
6993 {
6994 struct attribute *attr;
6995
6996 /* For now we don't handle imported units in type units. */
6997 if (cu->per_cu->is_debug_types)
6998 {
6999 error (_("Dwarf Error: DW_TAG_imported_unit is not"
7000 " supported in type units [in module %s]"),
7001 cu->objfile->name);
7002 }
7003
7004 attr = dwarf2_attr (die, DW_AT_import, cu);
7005 if (attr != NULL)
7006 {
7007 struct dwarf2_per_cu_data *per_cu;
7008 struct symtab *imported_symtab;
7009 sect_offset offset;
7010 int is_dwz;
7011
7012 offset = dwarf2_get_ref_die_offset (attr);
7013 is_dwz = (attr->form == DW_FORM_GNU_ref_alt || cu->per_cu->is_dwz);
7014 per_cu = dwarf2_find_containing_comp_unit (offset, is_dwz, cu->objfile);
7015
7016 /* Queue the unit, if needed. */
7017 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
7018 load_full_comp_unit (per_cu, cu->language);
7019
7020 VEC_safe_push (dwarf2_per_cu_ptr, cu->per_cu->s.imported_symtabs,
7021 per_cu);
7022 }
7023 }
7024
7025 /* Process a die and its children. */
7026
7027 static void
7028 process_die (struct die_info *die, struct dwarf2_cu *cu)
7029 {
7030 switch (die->tag)
7031 {
7032 case DW_TAG_padding:
7033 break;
7034 case DW_TAG_compile_unit:
7035 case DW_TAG_partial_unit:
7036 read_file_scope (die, cu);
7037 break;
7038 case DW_TAG_type_unit:
7039 read_type_unit_scope (die, cu);
7040 break;
7041 case DW_TAG_subprogram:
7042 case DW_TAG_inlined_subroutine:
7043 read_func_scope (die, cu);
7044 break;
7045 case DW_TAG_lexical_block:
7046 case DW_TAG_try_block:
7047 case DW_TAG_catch_block:
7048 read_lexical_block_scope (die, cu);
7049 break;
7050 case DW_TAG_GNU_call_site:
7051 read_call_site_scope (die, cu);
7052 break;
7053 case DW_TAG_class_type:
7054 case DW_TAG_interface_type:
7055 case DW_TAG_structure_type:
7056 case DW_TAG_union_type:
7057 process_structure_scope (die, cu);
7058 break;
7059 case DW_TAG_enumeration_type:
7060 process_enumeration_scope (die, cu);
7061 break;
7062
7063 /* These dies have a type, but processing them does not create
7064 a symbol or recurse to process the children. Therefore we can
7065 read them on-demand through read_type_die. */
7066 case DW_TAG_subroutine_type:
7067 case DW_TAG_set_type:
7068 case DW_TAG_array_type:
7069 case DW_TAG_pointer_type:
7070 case DW_TAG_ptr_to_member_type:
7071 case DW_TAG_reference_type:
7072 case DW_TAG_string_type:
7073 break;
7074
7075 case DW_TAG_base_type:
7076 case DW_TAG_subrange_type:
7077 case DW_TAG_typedef:
7078 /* Add a typedef symbol for the type definition, if it has a
7079 DW_AT_name. */
7080 new_symbol (die, read_type_die (die, cu), cu);
7081 break;
7082 case DW_TAG_common_block:
7083 read_common_block (die, cu);
7084 break;
7085 case DW_TAG_common_inclusion:
7086 break;
7087 case DW_TAG_namespace:
7088 processing_has_namespace_info = 1;
7089 read_namespace (die, cu);
7090 break;
7091 case DW_TAG_module:
7092 processing_has_namespace_info = 1;
7093 read_module (die, cu);
7094 break;
7095 case DW_TAG_imported_declaration:
7096 case DW_TAG_imported_module:
7097 processing_has_namespace_info = 1;
7098 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
7099 || cu->language != language_fortran))
7100 complaint (&symfile_complaints, _("Tag '%s' has unexpected children"),
7101 dwarf_tag_name (die->tag));
7102 read_import_statement (die, cu);
7103 break;
7104
7105 case DW_TAG_imported_unit:
7106 process_imported_unit_die (die, cu);
7107 break;
7108
7109 default:
7110 new_symbol (die, NULL, cu);
7111 break;
7112 }
7113 }
7114
7115 /* A helper function for dwarf2_compute_name which determines whether DIE
7116 needs to have the name of the scope prepended to the name listed in the
7117 die. */
7118
7119 static int
7120 die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
7121 {
7122 struct attribute *attr;
7123
7124 switch (die->tag)
7125 {
7126 case DW_TAG_namespace:
7127 case DW_TAG_typedef:
7128 case DW_TAG_class_type:
7129 case DW_TAG_interface_type:
7130 case DW_TAG_structure_type:
7131 case DW_TAG_union_type:
7132 case DW_TAG_enumeration_type:
7133 case DW_TAG_enumerator:
7134 case DW_TAG_subprogram:
7135 case DW_TAG_member:
7136 return 1;
7137
7138 case DW_TAG_variable:
7139 case DW_TAG_constant:
7140 /* We only need to prefix "globally" visible variables. These include
7141 any variable marked with DW_AT_external or any variable that
7142 lives in a namespace. [Variables in anonymous namespaces
7143 require prefixing, but they are not DW_AT_external.] */
7144
7145 if (dwarf2_attr (die, DW_AT_specification, cu))
7146 {
7147 struct dwarf2_cu *spec_cu = cu;
7148
7149 return die_needs_namespace (die_specification (die, &spec_cu),
7150 spec_cu);
7151 }
7152
7153 attr = dwarf2_attr (die, DW_AT_external, cu);
7154 if (attr == NULL && die->parent->tag != DW_TAG_namespace
7155 && die->parent->tag != DW_TAG_module)
7156 return 0;
7157 /* A variable in a lexical block of some kind does not need a
7158 namespace, even though in C++ such variables may be external
7159 and have a mangled name. */
7160 if (die->parent->tag == DW_TAG_lexical_block
7161 || die->parent->tag == DW_TAG_try_block
7162 || die->parent->tag == DW_TAG_catch_block
7163 || die->parent->tag == DW_TAG_subprogram)
7164 return 0;
7165 return 1;
7166
7167 default:
7168 return 0;
7169 }
7170 }
7171
7172 /* Retrieve the last character from a mem_file. */
7173
7174 static void
7175 do_ui_file_peek_last (void *object, const char *buffer, long length)
7176 {
7177 char *last_char_p = (char *) object;
7178
7179 if (length > 0)
7180 *last_char_p = buffer[length - 1];
7181 }
7182
7183 /* Compute the fully qualified name of DIE in CU. If PHYSNAME is nonzero,
7184 compute the physname for the object, which include a method's:
7185 - formal parameters (C++/Java),
7186 - receiver type (Go),
7187 - return type (Java).
7188
7189 The term "physname" is a bit confusing.
7190 For C++, for example, it is the demangled name.
7191 For Go, for example, it's the mangled name.
7192
7193 For Ada, return the DIE's linkage name rather than the fully qualified
7194 name. PHYSNAME is ignored..
7195
7196 The result is allocated on the objfile_obstack and canonicalized. */
7197
7198 static const char *
7199 dwarf2_compute_name (char *name, struct die_info *die, struct dwarf2_cu *cu,
7200 int physname)
7201 {
7202 struct objfile *objfile = cu->objfile;
7203
7204 if (name == NULL)
7205 name = dwarf2_name (die, cu);
7206
7207 /* For Fortran GDB prefers DW_AT_*linkage_name if present but otherwise
7208 compute it by typename_concat inside GDB. */
7209 if (cu->language == language_ada
7210 || (cu->language == language_fortran && physname))
7211 {
7212 /* For Ada unit, we prefer the linkage name over the name, as
7213 the former contains the exported name, which the user expects
7214 to be able to reference. Ideally, we want the user to be able
7215 to reference this entity using either natural or linkage name,
7216 but we haven't started looking at this enhancement yet. */
7217 struct attribute *attr;
7218
7219 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
7220 if (attr == NULL)
7221 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
7222 if (attr && DW_STRING (attr))
7223 return DW_STRING (attr);
7224 }
7225
7226 /* These are the only languages we know how to qualify names in. */
7227 if (name != NULL
7228 && (cu->language == language_cplus || cu->language == language_java
7229 || cu->language == language_fortran))
7230 {
7231 if (die_needs_namespace (die, cu))
7232 {
7233 long length;
7234 const char *prefix;
7235 struct ui_file *buf;
7236
7237 prefix = determine_prefix (die, cu);
7238 buf = mem_fileopen ();
7239 if (*prefix != '\0')
7240 {
7241 char *prefixed_name = typename_concat (NULL, prefix, name,
7242 physname, cu);
7243
7244 fputs_unfiltered (prefixed_name, buf);
7245 xfree (prefixed_name);
7246 }
7247 else
7248 fputs_unfiltered (name, buf);
7249
7250 /* Template parameters may be specified in the DIE's DW_AT_name, or
7251 as children with DW_TAG_template_type_param or
7252 DW_TAG_value_type_param. If the latter, add them to the name
7253 here. If the name already has template parameters, then
7254 skip this step; some versions of GCC emit both, and
7255 it is more efficient to use the pre-computed name.
7256
7257 Something to keep in mind about this process: it is very
7258 unlikely, or in some cases downright impossible, to produce
7259 something that will match the mangled name of a function.
7260 If the definition of the function has the same debug info,
7261 we should be able to match up with it anyway. But fallbacks
7262 using the minimal symbol, for instance to find a method
7263 implemented in a stripped copy of libstdc++, will not work.
7264 If we do not have debug info for the definition, we will have to
7265 match them up some other way.
7266
7267 When we do name matching there is a related problem with function
7268 templates; two instantiated function templates are allowed to
7269 differ only by their return types, which we do not add here. */
7270
7271 if (cu->language == language_cplus && strchr (name, '<') == NULL)
7272 {
7273 struct attribute *attr;
7274 struct die_info *child;
7275 int first = 1;
7276
7277 die->building_fullname = 1;
7278
7279 for (child = die->child; child != NULL; child = child->sibling)
7280 {
7281 struct type *type;
7282 LONGEST value;
7283 gdb_byte *bytes;
7284 struct dwarf2_locexpr_baton *baton;
7285 struct value *v;
7286
7287 if (child->tag != DW_TAG_template_type_param
7288 && child->tag != DW_TAG_template_value_param)
7289 continue;
7290
7291 if (first)
7292 {
7293 fputs_unfiltered ("<", buf);
7294 first = 0;
7295 }
7296 else
7297 fputs_unfiltered (", ", buf);
7298
7299 attr = dwarf2_attr (child, DW_AT_type, cu);
7300 if (attr == NULL)
7301 {
7302 complaint (&symfile_complaints,
7303 _("template parameter missing DW_AT_type"));
7304 fputs_unfiltered ("UNKNOWN_TYPE", buf);
7305 continue;
7306 }
7307 type = die_type (child, cu);
7308
7309 if (child->tag == DW_TAG_template_type_param)
7310 {
7311 c_print_type (type, "", buf, -1, 0);
7312 continue;
7313 }
7314
7315 attr = dwarf2_attr (child, DW_AT_const_value, cu);
7316 if (attr == NULL)
7317 {
7318 complaint (&symfile_complaints,
7319 _("template parameter missing "
7320 "DW_AT_const_value"));
7321 fputs_unfiltered ("UNKNOWN_VALUE", buf);
7322 continue;
7323 }
7324
7325 dwarf2_const_value_attr (attr, type, name,
7326 &cu->comp_unit_obstack, cu,
7327 &value, &bytes, &baton);
7328
7329 if (TYPE_NOSIGN (type))
7330 /* GDB prints characters as NUMBER 'CHAR'. If that's
7331 changed, this can use value_print instead. */
7332 c_printchar (value, type, buf);
7333 else
7334 {
7335 struct value_print_options opts;
7336
7337 if (baton != NULL)
7338 v = dwarf2_evaluate_loc_desc (type, NULL,
7339 baton->data,
7340 baton->size,
7341 baton->per_cu);
7342 else if (bytes != NULL)
7343 {
7344 v = allocate_value (type);
7345 memcpy (value_contents_writeable (v), bytes,
7346 TYPE_LENGTH (type));
7347 }
7348 else
7349 v = value_from_longest (type, value);
7350
7351 /* Specify decimal so that we do not depend on
7352 the radix. */
7353 get_formatted_print_options (&opts, 'd');
7354 opts.raw = 1;
7355 value_print (v, buf, &opts);
7356 release_value (v);
7357 value_free (v);
7358 }
7359 }
7360
7361 die->building_fullname = 0;
7362
7363 if (!first)
7364 {
7365 /* Close the argument list, with a space if necessary
7366 (nested templates). */
7367 char last_char = '\0';
7368 ui_file_put (buf, do_ui_file_peek_last, &last_char);
7369 if (last_char == '>')
7370 fputs_unfiltered (" >", buf);
7371 else
7372 fputs_unfiltered (">", buf);
7373 }
7374 }
7375
7376 /* For Java and C++ methods, append formal parameter type
7377 information, if PHYSNAME. */
7378
7379 if (physname && die->tag == DW_TAG_subprogram
7380 && (cu->language == language_cplus
7381 || cu->language == language_java))
7382 {
7383 struct type *type = read_type_die (die, cu);
7384
7385 c_type_print_args (type, buf, 1, cu->language);
7386
7387 if (cu->language == language_java)
7388 {
7389 /* For java, we must append the return type to method
7390 names. */
7391 if (die->tag == DW_TAG_subprogram)
7392 java_print_type (TYPE_TARGET_TYPE (type), "", buf,
7393 0, 0);
7394 }
7395 else if (cu->language == language_cplus)
7396 {
7397 /* Assume that an artificial first parameter is
7398 "this", but do not crash if it is not. RealView
7399 marks unnamed (and thus unused) parameters as
7400 artificial; there is no way to differentiate
7401 the two cases. */
7402 if (TYPE_NFIELDS (type) > 0
7403 && TYPE_FIELD_ARTIFICIAL (type, 0)
7404 && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
7405 && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
7406 0))))
7407 fputs_unfiltered (" const", buf);
7408 }
7409 }
7410
7411 name = ui_file_obsavestring (buf, &objfile->objfile_obstack,
7412 &length);
7413 ui_file_delete (buf);
7414
7415 if (cu->language == language_cplus)
7416 {
7417 char *cname
7418 = dwarf2_canonicalize_name (name, cu,
7419 &objfile->objfile_obstack);
7420
7421 if (cname != NULL)
7422 name = cname;
7423 }
7424 }
7425 }
7426
7427 return name;
7428 }
7429
7430 /* Return the fully qualified name of DIE, based on its DW_AT_name.
7431 If scope qualifiers are appropriate they will be added. The result
7432 will be allocated on the objfile_obstack, or NULL if the DIE does
7433 not have a name. NAME may either be from a previous call to
7434 dwarf2_name or NULL.
7435
7436 The output string will be canonicalized (if C++/Java). */
7437
7438 static const char *
7439 dwarf2_full_name (char *name, struct die_info *die, struct dwarf2_cu *cu)
7440 {
7441 return dwarf2_compute_name (name, die, cu, 0);
7442 }
7443
7444 /* Construct a physname for the given DIE in CU. NAME may either be
7445 from a previous call to dwarf2_name or NULL. The result will be
7446 allocated on the objfile_objstack or NULL if the DIE does not have a
7447 name.
7448
7449 The output string will be canonicalized (if C++/Java). */
7450
7451 static const char *
7452 dwarf2_physname (char *name, struct die_info *die, struct dwarf2_cu *cu)
7453 {
7454 struct objfile *objfile = cu->objfile;
7455 struct attribute *attr;
7456 const char *retval, *mangled = NULL, *canon = NULL;
7457 struct cleanup *back_to;
7458 int need_copy = 1;
7459
7460 /* In this case dwarf2_compute_name is just a shortcut not building anything
7461 on its own. */
7462 if (!die_needs_namespace (die, cu))
7463 return dwarf2_compute_name (name, die, cu, 1);
7464
7465 back_to = make_cleanup (null_cleanup, NULL);
7466
7467 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
7468 if (!attr)
7469 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
7470
7471 /* DW_AT_linkage_name is missing in some cases - depend on what GDB
7472 has computed. */
7473 if (attr && DW_STRING (attr))
7474 {
7475 char *demangled;
7476
7477 mangled = DW_STRING (attr);
7478
7479 /* Use DMGL_RET_DROP for C++ template functions to suppress their return
7480 type. It is easier for GDB users to search for such functions as
7481 `name(params)' than `long name(params)'. In such case the minimal
7482 symbol names do not match the full symbol names but for template
7483 functions there is never a need to look up their definition from their
7484 declaration so the only disadvantage remains the minimal symbol
7485 variant `long name(params)' does not have the proper inferior type.
7486 */
7487
7488 if (cu->language == language_go)
7489 {
7490 /* This is a lie, but we already lie to the caller new_symbol_full.
7491 new_symbol_full assumes we return the mangled name.
7492 This just undoes that lie until things are cleaned up. */
7493 demangled = NULL;
7494 }
7495 else
7496 {
7497 demangled = cplus_demangle (mangled,
7498 (DMGL_PARAMS | DMGL_ANSI
7499 | (cu->language == language_java
7500 ? DMGL_JAVA | DMGL_RET_POSTFIX
7501 : DMGL_RET_DROP)));
7502 }
7503 if (demangled)
7504 {
7505 make_cleanup (xfree, demangled);
7506 canon = demangled;
7507 }
7508 else
7509 {
7510 canon = mangled;
7511 need_copy = 0;
7512 }
7513 }
7514
7515 if (canon == NULL || check_physname)
7516 {
7517 const char *physname = dwarf2_compute_name (name, die, cu, 1);
7518
7519 if (canon != NULL && strcmp (physname, canon) != 0)
7520 {
7521 /* It may not mean a bug in GDB. The compiler could also
7522 compute DW_AT_linkage_name incorrectly. But in such case
7523 GDB would need to be bug-to-bug compatible. */
7524
7525 complaint (&symfile_complaints,
7526 _("Computed physname <%s> does not match demangled <%s> "
7527 "(from linkage <%s>) - DIE at 0x%x [in module %s]"),
7528 physname, canon, mangled, die->offset.sect_off, objfile->name);
7529
7530 /* Prefer DW_AT_linkage_name (in the CANON form) - when it
7531 is available here - over computed PHYSNAME. It is safer
7532 against both buggy GDB and buggy compilers. */
7533
7534 retval = canon;
7535 }
7536 else
7537 {
7538 retval = physname;
7539 need_copy = 0;
7540 }
7541 }
7542 else
7543 retval = canon;
7544
7545 if (need_copy)
7546 retval = obsavestring (retval, strlen (retval),
7547 &objfile->objfile_obstack);
7548
7549 do_cleanups (back_to);
7550 return retval;
7551 }
7552
7553 /* Read the import statement specified by the given die and record it. */
7554
7555 static void
7556 read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
7557 {
7558 struct objfile *objfile = cu->objfile;
7559 struct attribute *import_attr;
7560 struct die_info *imported_die, *child_die;
7561 struct dwarf2_cu *imported_cu;
7562 const char *imported_name;
7563 const char *imported_name_prefix;
7564 const char *canonical_name;
7565 const char *import_alias;
7566 const char *imported_declaration = NULL;
7567 const char *import_prefix;
7568 VEC (const_char_ptr) *excludes = NULL;
7569 struct cleanup *cleanups;
7570
7571 char *temp;
7572
7573 import_attr = dwarf2_attr (die, DW_AT_import, cu);
7574 if (import_attr == NULL)
7575 {
7576 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
7577 dwarf_tag_name (die->tag));
7578 return;
7579 }
7580
7581 imported_cu = cu;
7582 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
7583 imported_name = dwarf2_name (imported_die, imported_cu);
7584 if (imported_name == NULL)
7585 {
7586 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
7587
7588 The import in the following code:
7589 namespace A
7590 {
7591 typedef int B;
7592 }
7593
7594 int main ()
7595 {
7596 using A::B;
7597 B b;
7598 return b;
7599 }
7600
7601 ...
7602 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
7603 <52> DW_AT_decl_file : 1
7604 <53> DW_AT_decl_line : 6
7605 <54> DW_AT_import : <0x75>
7606 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
7607 <59> DW_AT_name : B
7608 <5b> DW_AT_decl_file : 1
7609 <5c> DW_AT_decl_line : 2
7610 <5d> DW_AT_type : <0x6e>
7611 ...
7612 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
7613 <76> DW_AT_byte_size : 4
7614 <77> DW_AT_encoding : 5 (signed)
7615
7616 imports the wrong die ( 0x75 instead of 0x58 ).
7617 This case will be ignored until the gcc bug is fixed. */
7618 return;
7619 }
7620
7621 /* Figure out the local name after import. */
7622 import_alias = dwarf2_name (die, cu);
7623
7624 /* Figure out where the statement is being imported to. */
7625 import_prefix = determine_prefix (die, cu);
7626
7627 /* Figure out what the scope of the imported die is and prepend it
7628 to the name of the imported die. */
7629 imported_name_prefix = determine_prefix (imported_die, imported_cu);
7630
7631 if (imported_die->tag != DW_TAG_namespace
7632 && imported_die->tag != DW_TAG_module)
7633 {
7634 imported_declaration = imported_name;
7635 canonical_name = imported_name_prefix;
7636 }
7637 else if (strlen (imported_name_prefix) > 0)
7638 {
7639 temp = alloca (strlen (imported_name_prefix)
7640 + 2 + strlen (imported_name) + 1);
7641 strcpy (temp, imported_name_prefix);
7642 strcat (temp, "::");
7643 strcat (temp, imported_name);
7644 canonical_name = temp;
7645 }
7646 else
7647 canonical_name = imported_name;
7648
7649 cleanups = make_cleanup (VEC_cleanup (const_char_ptr), &excludes);
7650
7651 if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
7652 for (child_die = die->child; child_die && child_die->tag;
7653 child_die = sibling_die (child_die))
7654 {
7655 /* DWARF-4: A Fortran use statement with a “rename list” may be
7656 represented by an imported module entry with an import attribute
7657 referring to the module and owned entries corresponding to those
7658 entities that are renamed as part of being imported. */
7659
7660 if (child_die->tag != DW_TAG_imported_declaration)
7661 {
7662 complaint (&symfile_complaints,
7663 _("child DW_TAG_imported_declaration expected "
7664 "- DIE at 0x%x [in module %s]"),
7665 child_die->offset.sect_off, objfile->name);
7666 continue;
7667 }
7668
7669 import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
7670 if (import_attr == NULL)
7671 {
7672 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
7673 dwarf_tag_name (child_die->tag));
7674 continue;
7675 }
7676
7677 imported_cu = cu;
7678 imported_die = follow_die_ref_or_sig (child_die, import_attr,
7679 &imported_cu);
7680 imported_name = dwarf2_name (imported_die, imported_cu);
7681 if (imported_name == NULL)
7682 {
7683 complaint (&symfile_complaints,
7684 _("child DW_TAG_imported_declaration has unknown "
7685 "imported name - DIE at 0x%x [in module %s]"),
7686 child_die->offset.sect_off, objfile->name);
7687 continue;
7688 }
7689
7690 VEC_safe_push (const_char_ptr, excludes, imported_name);
7691
7692 process_die (child_die, cu);
7693 }
7694
7695 cp_add_using_directive (import_prefix,
7696 canonical_name,
7697 import_alias,
7698 imported_declaration,
7699 excludes,
7700 &objfile->objfile_obstack);
7701
7702 do_cleanups (cleanups);
7703 }
7704
7705 /* Cleanup function for handle_DW_AT_stmt_list. */
7706
7707 static void
7708 free_cu_line_header (void *arg)
7709 {
7710 struct dwarf2_cu *cu = arg;
7711
7712 free_line_header (cu->line_header);
7713 cu->line_header = NULL;
7714 }
7715
7716 static void
7717 find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu,
7718 char **name, char **comp_dir)
7719 {
7720 struct attribute *attr;
7721
7722 *name = NULL;
7723 *comp_dir = NULL;
7724
7725 /* Find the filename. Do not use dwarf2_name here, since the filename
7726 is not a source language identifier. */
7727 attr = dwarf2_attr (die, DW_AT_name, cu);
7728 if (attr)
7729 {
7730 *name = DW_STRING (attr);
7731 }
7732
7733 attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
7734 if (attr)
7735 *comp_dir = DW_STRING (attr);
7736 else if (*name != NULL && IS_ABSOLUTE_PATH (*name))
7737 {
7738 *comp_dir = ldirname (*name);
7739 if (*comp_dir != NULL)
7740 make_cleanup (xfree, *comp_dir);
7741 }
7742 if (*comp_dir != NULL)
7743 {
7744 /* Irix 6.2 native cc prepends <machine>.: to the compilation
7745 directory, get rid of it. */
7746 char *cp = strchr (*comp_dir, ':');
7747
7748 if (cp && cp != *comp_dir && cp[-1] == '.' && cp[1] == '/')
7749 *comp_dir = cp + 1;
7750 }
7751
7752 if (*name == NULL)
7753 *name = "<unknown>";
7754 }
7755
7756 /* Handle DW_AT_stmt_list for a compilation unit.
7757 DIE is the DW_TAG_compile_unit die for CU.
7758 COMP_DIR is the compilation directory.
7759 WANT_LINE_INFO is non-zero if the pc/line-number mapping is needed. */
7760
7761 static void
7762 handle_DW_AT_stmt_list (struct die_info *die, struct dwarf2_cu *cu,
7763 const char *comp_dir)
7764 {
7765 struct attribute *attr;
7766
7767 gdb_assert (! cu->per_cu->is_debug_types);
7768
7769 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
7770 if (attr)
7771 {
7772 unsigned int line_offset = DW_UNSND (attr);
7773 struct line_header *line_header
7774 = dwarf_decode_line_header (line_offset, cu);
7775
7776 if (line_header)
7777 {
7778 cu->line_header = line_header;
7779 make_cleanup (free_cu_line_header, cu);
7780 dwarf_decode_lines (line_header, comp_dir, cu, NULL, 1);
7781 }
7782 }
7783 }
7784
7785 /* Process DW_TAG_compile_unit or DW_TAG_partial_unit. */
7786
7787 static void
7788 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
7789 {
7790 struct objfile *objfile = dwarf2_per_objfile->objfile;
7791 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
7792 CORE_ADDR lowpc = ((CORE_ADDR) -1);
7793 CORE_ADDR highpc = ((CORE_ADDR) 0);
7794 struct attribute *attr;
7795 char *name = NULL;
7796 char *comp_dir = NULL;
7797 struct die_info *child_die;
7798 bfd *abfd = objfile->obfd;
7799 CORE_ADDR baseaddr;
7800
7801 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
7802
7803 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
7804
7805 /* If we didn't find a lowpc, set it to highpc to avoid complaints
7806 from finish_block. */
7807 if (lowpc == ((CORE_ADDR) -1))
7808 lowpc = highpc;
7809 lowpc += baseaddr;
7810 highpc += baseaddr;
7811
7812 find_file_and_directory (die, cu, &name, &comp_dir);
7813
7814 prepare_one_comp_unit (cu, die, cu->language);
7815
7816 /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
7817 standardised yet. As a workaround for the language detection we fall
7818 back to the DW_AT_producer string. */
7819 if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
7820 cu->language = language_opencl;
7821
7822 /* Similar hack for Go. */
7823 if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
7824 set_cu_language (DW_LANG_Go, cu);
7825
7826 dwarf2_start_symtab (cu, name, comp_dir, lowpc);
7827
7828 /* Decode line number information if present. We do this before
7829 processing child DIEs, so that the line header table is available
7830 for DW_AT_decl_file. */
7831 handle_DW_AT_stmt_list (die, cu, comp_dir);
7832
7833 /* Process all dies in compilation unit. */
7834 if (die->child != NULL)
7835 {
7836 child_die = die->child;
7837 while (child_die && child_die->tag)
7838 {
7839 process_die (child_die, cu);
7840 child_die = sibling_die (child_die);
7841 }
7842 }
7843
7844 /* Decode macro information, if present. Dwarf 2 macro information
7845 refers to information in the line number info statement program
7846 header, so we can only read it if we've read the header
7847 successfully. */
7848 attr = dwarf2_attr (die, DW_AT_GNU_macros, cu);
7849 if (attr && cu->line_header)
7850 {
7851 if (dwarf2_attr (die, DW_AT_macro_info, cu))
7852 complaint (&symfile_complaints,
7853 _("CU refers to both DW_AT_GNU_macros and DW_AT_macro_info"));
7854
7855 dwarf_decode_macros (cu, DW_UNSND (attr), comp_dir, 1);
7856 }
7857 else
7858 {
7859 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
7860 if (attr && cu->line_header)
7861 {
7862 unsigned int macro_offset = DW_UNSND (attr);
7863
7864 dwarf_decode_macros (cu, macro_offset, comp_dir, 0);
7865 }
7866 }
7867
7868 do_cleanups (back_to);
7869 }
7870
7871 /* TU version of handle_DW_AT_stmt_list for read_type_unit_scope.
7872 Create the set of symtabs used by this TU, or if this TU is sharing
7873 symtabs with another TU and the symtabs have already been created
7874 then restore those symtabs in the line header.
7875 We don't need the pc/line-number mapping for type units. */
7876
7877 static void
7878 setup_type_unit_groups (struct die_info *die, struct dwarf2_cu *cu)
7879 {
7880 struct objfile *objfile = dwarf2_per_objfile->objfile;
7881 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
7882 struct type_unit_group *tu_group;
7883 int first_time;
7884 struct line_header *lh;
7885 struct attribute *attr;
7886 unsigned int i, line_offset;
7887
7888 gdb_assert (per_cu->is_debug_types);
7889
7890 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
7891
7892 /* If we're using .gdb_index (includes -readnow) then
7893 per_cu->s.type_unit_group may not have been set up yet. */
7894 if (per_cu->s.type_unit_group == NULL)
7895 per_cu->s.type_unit_group = get_type_unit_group (cu, attr);
7896 tu_group = per_cu->s.type_unit_group;
7897
7898 /* If we've already processed this stmt_list there's no real need to
7899 do it again, we could fake it and just recreate the part we need
7900 (file name,index -> symtab mapping). If data shows this optimization
7901 is useful we can do it then. */
7902 first_time = tu_group->primary_symtab == NULL;
7903
7904 /* We have to handle the case of both a missing DW_AT_stmt_list or bad
7905 debug info. */
7906 lh = NULL;
7907 if (attr != NULL)
7908 {
7909 line_offset = DW_UNSND (attr);
7910 lh = dwarf_decode_line_header (line_offset, cu);
7911 }
7912 if (lh == NULL)
7913 {
7914 if (first_time)
7915 dwarf2_start_symtab (cu, "", NULL, 0);
7916 else
7917 {
7918 gdb_assert (tu_group->symtabs == NULL);
7919 restart_symtab (0);
7920 }
7921 /* Note: The primary symtab will get allocated at the end. */
7922 return;
7923 }
7924
7925 cu->line_header = lh;
7926 make_cleanup (free_cu_line_header, cu);
7927
7928 if (first_time)
7929 {
7930 dwarf2_start_symtab (cu, "", NULL, 0);
7931
7932 tu_group->num_symtabs = lh->num_file_names;
7933 tu_group->symtabs = XNEWVEC (struct symtab *, lh->num_file_names);
7934
7935 for (i = 0; i < lh->num_file_names; ++i)
7936 {
7937 char *dir = NULL;
7938 struct file_entry *fe = &lh->file_names[i];
7939
7940 if (fe->dir_index)
7941 dir = lh->include_dirs[fe->dir_index - 1];
7942 dwarf2_start_subfile (fe->name, dir, NULL);
7943
7944 /* Note: We don't have to watch for the main subfile here, type units
7945 don't have DW_AT_name. */
7946
7947 if (current_subfile->symtab == NULL)
7948 {
7949 /* NOTE: start_subfile will recognize when it's been passed
7950 a file it has already seen. So we can't assume there's a
7951 simple mapping from lh->file_names to subfiles,
7952 lh->file_names may contain dups. */
7953 current_subfile->symtab = allocate_symtab (current_subfile->name,
7954 objfile);
7955 }
7956
7957 fe->symtab = current_subfile->symtab;
7958 tu_group->symtabs[i] = fe->symtab;
7959 }
7960 }
7961 else
7962 {
7963 restart_symtab (0);
7964
7965 for (i = 0; i < lh->num_file_names; ++i)
7966 {
7967 struct file_entry *fe = &lh->file_names[i];
7968
7969 fe->symtab = tu_group->symtabs[i];
7970 }
7971 }
7972
7973 /* The main symtab is allocated last. Type units don't have DW_AT_name
7974 so they don't have a "real" (so to speak) symtab anyway.
7975 There is later code that will assign the main symtab to all symbols
7976 that don't have one. We need to handle the case of a symbol with a
7977 missing symtab (DW_AT_decl_file) anyway. */
7978 }
7979
7980 /* Process DW_TAG_type_unit.
7981 For TUs we want to skip the first top level sibling if it's not the
7982 actual type being defined by this TU. In this case the first top
7983 level sibling is there to provide context only. */
7984
7985 static void
7986 read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
7987 {
7988 struct die_info *child_die;
7989
7990 prepare_one_comp_unit (cu, die, language_minimal);
7991
7992 /* Initialize (or reinitialize) the machinery for building symtabs.
7993 We do this before processing child DIEs, so that the line header table
7994 is available for DW_AT_decl_file. */
7995 setup_type_unit_groups (die, cu);
7996
7997 if (die->child != NULL)
7998 {
7999 child_die = die->child;
8000 while (child_die && child_die->tag)
8001 {
8002 process_die (child_die, cu);
8003 child_die = sibling_die (child_die);
8004 }
8005 }
8006 }
8007 \f
8008 /* DWO files. */
8009
8010 static hashval_t
8011 hash_dwo_file (const void *item)
8012 {
8013 const struct dwo_file *dwo_file = item;
8014
8015 return htab_hash_string (dwo_file->dwo_name);
8016 }
8017
8018 static int
8019 eq_dwo_file (const void *item_lhs, const void *item_rhs)
8020 {
8021 const struct dwo_file *lhs = item_lhs;
8022 const struct dwo_file *rhs = item_rhs;
8023
8024 return strcmp (lhs->dwo_name, rhs->dwo_name) == 0;
8025 }
8026
8027 /* Allocate a hash table for DWO files. */
8028
8029 static htab_t
8030 allocate_dwo_file_hash_table (void)
8031 {
8032 struct objfile *objfile = dwarf2_per_objfile->objfile;
8033
8034 return htab_create_alloc_ex (41,
8035 hash_dwo_file,
8036 eq_dwo_file,
8037 NULL,
8038 &objfile->objfile_obstack,
8039 hashtab_obstack_allocate,
8040 dummy_obstack_deallocate);
8041 }
8042
8043 static hashval_t
8044 hash_dwo_unit (const void *item)
8045 {
8046 const struct dwo_unit *dwo_unit = item;
8047
8048 /* This drops the top 32 bits of the id, but is ok for a hash. */
8049 return dwo_unit->signature;
8050 }
8051
8052 static int
8053 eq_dwo_unit (const void *item_lhs, const void *item_rhs)
8054 {
8055 const struct dwo_unit *lhs = item_lhs;
8056 const struct dwo_unit *rhs = item_rhs;
8057
8058 /* The signature is assumed to be unique within the DWO file.
8059 So while object file CU dwo_id's always have the value zero,
8060 that's OK, assuming each object file DWO file has only one CU,
8061 and that's the rule for now. */
8062 return lhs->signature == rhs->signature;
8063 }
8064
8065 /* Allocate a hash table for DWO CUs,TUs.
8066 There is one of these tables for each of CUs,TUs for each DWO file. */
8067
8068 static htab_t
8069 allocate_dwo_unit_table (struct objfile *objfile)
8070 {
8071 /* Start out with a pretty small number.
8072 Generally DWO files contain only one CU and maybe some TUs. */
8073 return htab_create_alloc_ex (3,
8074 hash_dwo_unit,
8075 eq_dwo_unit,
8076 NULL,
8077 &objfile->objfile_obstack,
8078 hashtab_obstack_allocate,
8079 dummy_obstack_deallocate);
8080 }
8081
8082 /* This function is mapped across the sections and remembers the offset and
8083 size of each of the DWO debugging sections we are interested in. */
8084
8085 static void
8086 dwarf2_locate_dwo_sections (bfd *abfd, asection *sectp, void *dwo_file_ptr)
8087 {
8088 struct dwo_file *dwo_file = dwo_file_ptr;
8089 const struct dwo_section_names *names = &dwo_section_names;
8090
8091 if (section_is_p (sectp->name, &names->abbrev_dwo))
8092 {
8093 dwo_file->sections.abbrev.asection = sectp;
8094 dwo_file->sections.abbrev.size = bfd_get_section_size (sectp);
8095 }
8096 else if (section_is_p (sectp->name, &names->info_dwo))
8097 {
8098 dwo_file->sections.info.asection = sectp;
8099 dwo_file->sections.info.size = bfd_get_section_size (sectp);
8100 }
8101 else if (section_is_p (sectp->name, &names->line_dwo))
8102 {
8103 dwo_file->sections.line.asection = sectp;
8104 dwo_file->sections.line.size = bfd_get_section_size (sectp);
8105 }
8106 else if (section_is_p (sectp->name, &names->loc_dwo))
8107 {
8108 dwo_file->sections.loc.asection = sectp;
8109 dwo_file->sections.loc.size = bfd_get_section_size (sectp);
8110 }
8111 else if (section_is_p (sectp->name, &names->macinfo_dwo))
8112 {
8113 dwo_file->sections.macinfo.asection = sectp;
8114 dwo_file->sections.macinfo.size = bfd_get_section_size (sectp);
8115 }
8116 else if (section_is_p (sectp->name, &names->macro_dwo))
8117 {
8118 dwo_file->sections.macro.asection = sectp;
8119 dwo_file->sections.macro.size = bfd_get_section_size (sectp);
8120 }
8121 else if (section_is_p (sectp->name, &names->str_dwo))
8122 {
8123 dwo_file->sections.str.asection = sectp;
8124 dwo_file->sections.str.size = bfd_get_section_size (sectp);
8125 }
8126 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
8127 {
8128 dwo_file->sections.str_offsets.asection = sectp;
8129 dwo_file->sections.str_offsets.size = bfd_get_section_size (sectp);
8130 }
8131 else if (section_is_p (sectp->name, &names->types_dwo))
8132 {
8133 struct dwarf2_section_info type_section;
8134
8135 memset (&type_section, 0, sizeof (type_section));
8136 type_section.asection = sectp;
8137 type_section.size = bfd_get_section_size (sectp);
8138 VEC_safe_push (dwarf2_section_info_def, dwo_file->sections.types,
8139 &type_section);
8140 }
8141 }
8142
8143 /* Structure used to pass data to create_debug_info_hash_table_reader. */
8144
8145 struct create_dwo_info_table_data
8146 {
8147 struct dwo_file *dwo_file;
8148 htab_t cu_htab;
8149 };
8150
8151 /* die_reader_func for create_debug_info_hash_table. */
8152
8153 static void
8154 create_debug_info_hash_table_reader (const struct die_reader_specs *reader,
8155 gdb_byte *info_ptr,
8156 struct die_info *comp_unit_die,
8157 int has_children,
8158 void *datap)
8159 {
8160 struct dwarf2_cu *cu = reader->cu;
8161 struct objfile *objfile = dwarf2_per_objfile->objfile;
8162 sect_offset offset = cu->per_cu->offset;
8163 struct dwarf2_section_info *section = cu->per_cu->info_or_types_section;
8164 struct create_dwo_info_table_data *data = datap;
8165 struct dwo_file *dwo_file = data->dwo_file;
8166 htab_t cu_htab = data->cu_htab;
8167 void **slot;
8168 struct attribute *attr;
8169 struct dwo_unit *dwo_unit;
8170
8171 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
8172 if (attr == NULL)
8173 {
8174 error (_("Dwarf Error: debug entry at offset 0x%x is missing"
8175 " its dwo_id [in module %s]"),
8176 offset.sect_off, dwo_file->dwo_name);
8177 return;
8178 }
8179
8180 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
8181 dwo_unit->dwo_file = dwo_file;
8182 dwo_unit->signature = DW_UNSND (attr);
8183 dwo_unit->info_or_types_section = section;
8184 dwo_unit->offset = offset;
8185 dwo_unit->length = cu->per_cu->length;
8186
8187 slot = htab_find_slot (cu_htab, dwo_unit, INSERT);
8188 gdb_assert (slot != NULL);
8189 if (*slot != NULL)
8190 {
8191 const struct dwo_unit *dup_dwo_unit = *slot;
8192
8193 complaint (&symfile_complaints,
8194 _("debug entry at offset 0x%x is duplicate to the entry at"
8195 " offset 0x%x, dwo_id 0x%s [in module %s]"),
8196 offset.sect_off, dup_dwo_unit->offset.sect_off,
8197 phex (dwo_unit->signature, sizeof (dwo_unit->signature)),
8198 dwo_file->dwo_name);
8199 }
8200 else
8201 *slot = dwo_unit;
8202
8203 if (dwarf2_read_debug)
8204 fprintf_unfiltered (gdb_stdlog, " offset 0x%x, dwo_id 0x%s\n",
8205 offset.sect_off,
8206 phex (dwo_unit->signature,
8207 sizeof (dwo_unit->signature)));
8208 }
8209
8210 /* Create a hash table to map DWO IDs to their CU entry in .debug_info.dwo. */
8211
8212 static htab_t
8213 create_debug_info_hash_table (struct dwo_file *dwo_file)
8214 {
8215 struct objfile *objfile = dwarf2_per_objfile->objfile;
8216 struct dwarf2_section_info *section = &dwo_file->sections.info;
8217 bfd *abfd;
8218 htab_t cu_htab;
8219 gdb_byte *info_ptr, *end_ptr;
8220 struct create_dwo_info_table_data create_dwo_info_table_data;
8221
8222 dwarf2_read_section (objfile, section);
8223 info_ptr = section->buffer;
8224
8225 if (info_ptr == NULL)
8226 return NULL;
8227
8228 /* We can't set abfd until now because the section may be empty or
8229 not present, in which case section->asection will be NULL. */
8230 abfd = section->asection->owner;
8231
8232 if (dwarf2_read_debug)
8233 fprintf_unfiltered (gdb_stdlog, "Reading .debug_info.dwo for %s:\n",
8234 bfd_get_filename (abfd));
8235
8236 cu_htab = allocate_dwo_unit_table (objfile);
8237
8238 create_dwo_info_table_data.dwo_file = dwo_file;
8239 create_dwo_info_table_data.cu_htab = cu_htab;
8240
8241 end_ptr = info_ptr + section->size;
8242 while (info_ptr < end_ptr)
8243 {
8244 struct dwarf2_per_cu_data per_cu;
8245
8246 memset (&per_cu, 0, sizeof (per_cu));
8247 per_cu.objfile = objfile;
8248 per_cu.is_debug_types = 0;
8249 per_cu.offset.sect_off = info_ptr - section->buffer;
8250 per_cu.info_or_types_section = section;
8251
8252 init_cutu_and_read_dies_no_follow (&per_cu,
8253 &dwo_file->sections.abbrev,
8254 dwo_file,
8255 create_debug_info_hash_table_reader,
8256 &create_dwo_info_table_data);
8257
8258 info_ptr += per_cu.length;
8259 }
8260
8261 return cu_htab;
8262 }
8263
8264 /* Subroutine of open_dwo_file to simplify it.
8265 Open the file specified by FILE_NAME and hand it off to BFD for
8266 preliminary analysis. Return a newly initialized bfd *, which
8267 includes a canonicalized copy of FILE_NAME.
8268 In case of trouble, return NULL.
8269 NOTE: This function is derived from symfile_bfd_open. */
8270
8271 static bfd *
8272 try_open_dwo_file (const char *file_name)
8273 {
8274 bfd *sym_bfd;
8275 int desc;
8276 char *absolute_name;
8277
8278 desc = openp (debug_file_directory, OPF_TRY_CWD_FIRST, file_name,
8279 O_RDONLY | O_BINARY, &absolute_name);
8280 if (desc < 0)
8281 return NULL;
8282
8283 sym_bfd = gdb_bfd_open (absolute_name, gnutarget, desc);
8284 if (!sym_bfd)
8285 {
8286 xfree (absolute_name);
8287 return NULL;
8288 }
8289 xfree (absolute_name);
8290 bfd_set_cacheable (sym_bfd, 1);
8291
8292 if (!bfd_check_format (sym_bfd, bfd_object))
8293 {
8294 gdb_bfd_unref (sym_bfd); /* This also closes desc. */
8295 return NULL;
8296 }
8297
8298 return sym_bfd;
8299 }
8300
8301 /* Try to open DWO file DWO_NAME.
8302 COMP_DIR is the DW_AT_comp_dir attribute.
8303 The result is the bfd handle of the file.
8304 If there is a problem finding or opening the file, return NULL.
8305 Upon success, the canonicalized path of the file is stored in the bfd,
8306 same as symfile_bfd_open. */
8307
8308 static bfd *
8309 open_dwo_file (const char *dwo_name, const char *comp_dir)
8310 {
8311 bfd *abfd;
8312
8313 if (IS_ABSOLUTE_PATH (dwo_name))
8314 return try_open_dwo_file (dwo_name);
8315
8316 /* Before trying the search path, try DWO_NAME in COMP_DIR. */
8317
8318 if (comp_dir != NULL)
8319 {
8320 char *path_to_try = concat (comp_dir, SLASH_STRING, dwo_name, NULL);
8321
8322 /* NOTE: If comp_dir is a relative path, this will also try the
8323 search path, which seems useful. */
8324 abfd = try_open_dwo_file (path_to_try);
8325 xfree (path_to_try);
8326 if (abfd != NULL)
8327 return abfd;
8328 }
8329
8330 /* That didn't work, try debug-file-directory, which, despite its name,
8331 is a list of paths. */
8332
8333 if (*debug_file_directory == '\0')
8334 return NULL;
8335
8336 return try_open_dwo_file (dwo_name);
8337 }
8338
8339 /* Initialize the use of the DWO file specified by DWO_NAME. */
8340
8341 static struct dwo_file *
8342 init_dwo_file (const char *dwo_name, const char *comp_dir)
8343 {
8344 struct objfile *objfile = dwarf2_per_objfile->objfile;
8345 struct dwo_file *dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack,
8346 struct dwo_file);
8347 bfd *abfd;
8348 struct cleanup *cleanups;
8349
8350 if (dwarf2_read_debug)
8351 fprintf_unfiltered (gdb_stdlog, "Reading DWO file %s:\n", dwo_name);
8352
8353 abfd = open_dwo_file (dwo_name, comp_dir);
8354 if (abfd == NULL)
8355 return NULL;
8356 dwo_file->dwo_name = dwo_name;
8357 dwo_file->dwo_bfd = abfd;
8358
8359 cleanups = make_cleanup (free_dwo_file_cleanup, dwo_file);
8360
8361 bfd_map_over_sections (abfd, dwarf2_locate_dwo_sections, dwo_file);
8362
8363 dwo_file->cus = create_debug_info_hash_table (dwo_file);
8364
8365 dwo_file->tus = create_debug_types_hash_table (dwo_file,
8366 dwo_file->sections.types);
8367
8368 discard_cleanups (cleanups);
8369
8370 return dwo_file;
8371 }
8372
8373 /* Lookup DWO file DWO_NAME. */
8374
8375 static struct dwo_file *
8376 lookup_dwo_file (const char *dwo_name, const char *comp_dir)
8377 {
8378 struct dwo_file *dwo_file;
8379 struct dwo_file find_entry;
8380 void **slot;
8381
8382 if (dwarf2_per_objfile->dwo_files == NULL)
8383 dwarf2_per_objfile->dwo_files = allocate_dwo_file_hash_table ();
8384
8385 /* Have we already seen this DWO file? */
8386 find_entry.dwo_name = dwo_name;
8387 slot = htab_find_slot (dwarf2_per_objfile->dwo_files, &find_entry, INSERT);
8388
8389 /* If not, read it in and build a table of the DWOs it contains. */
8390 if (*slot == NULL)
8391 *slot = init_dwo_file (dwo_name, comp_dir);
8392
8393 /* NOTE: This will be NULL if unable to open the file. */
8394 dwo_file = *slot;
8395
8396 return dwo_file;
8397 }
8398
8399 /* Lookup the DWO CU referenced from THIS_CU in DWO file DWO_NAME.
8400 If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
8401 SIGNATURE is the "dwo_id" of the CU (for consistency we use the same
8402 nomenclature as TUs).
8403 The result is a pointer to the dwo_unit object or NULL if we didn't find it
8404 (dwo_id mismatch or couldn't find the DWO file). */
8405
8406 static struct dwo_unit *
8407 lookup_dwo_comp_unit (struct dwarf2_per_cu_data *this_cu,
8408 const char *dwo_name, const char *comp_dir,
8409 ULONGEST signature)
8410 {
8411 struct objfile *objfile = dwarf2_per_objfile->objfile;
8412 struct dwo_file *dwo_file;
8413
8414 dwo_file = lookup_dwo_file (dwo_name, comp_dir);
8415 if (dwo_file == NULL)
8416 return NULL;
8417
8418 /* Look up the DWO using its signature(dwo_id). */
8419
8420 if (dwo_file->cus != NULL)
8421 {
8422 struct dwo_unit find_dwo_cu, *dwo_cu;
8423
8424 find_dwo_cu.signature = signature;
8425 dwo_cu = htab_find (dwo_file->cus, &find_dwo_cu);
8426
8427 if (dwo_cu != NULL)
8428 return dwo_cu;
8429 }
8430
8431 /* We didn't find it. This must mean a dwo_id mismatch. */
8432
8433 complaint (&symfile_complaints,
8434 _("Could not find DWO CU referenced by CU at offset 0x%x"
8435 " [in module %s]"),
8436 this_cu->offset.sect_off, objfile->name);
8437 return NULL;
8438 }
8439
8440 /* Lookup the DWO TU referenced from THIS_TU in DWO file DWO_NAME.
8441 If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
8442 The result is a pointer to the dwo_unit object or NULL if we didn't find it
8443 (dwo_id mismatch or couldn't find the DWO file). */
8444
8445 static struct dwo_unit *
8446 lookup_dwo_type_unit (struct signatured_type *this_tu,
8447 const char *dwo_name, const char *comp_dir)
8448 {
8449 struct objfile *objfile = dwarf2_per_objfile->objfile;
8450 struct dwo_file *dwo_file;
8451
8452 dwo_file = lookup_dwo_file (dwo_name, comp_dir);
8453 if (dwo_file == NULL)
8454 return NULL;
8455
8456 /* Look up the DWO using its signature(dwo_id). */
8457
8458 if (dwo_file->tus != NULL)
8459 {
8460 struct dwo_unit find_dwo_tu, *dwo_tu;
8461
8462 find_dwo_tu.signature = this_tu->signature;
8463 dwo_tu = htab_find (dwo_file->tus, &find_dwo_tu);
8464
8465 if (dwo_tu != NULL)
8466 return dwo_tu;
8467 }
8468
8469 /* We didn't find it. This must mean a dwo_id mismatch. */
8470
8471 complaint (&symfile_complaints,
8472 _("Could not find DWO TU referenced by TU at offset 0x%x"
8473 " [in module %s]"),
8474 this_tu->per_cu.offset.sect_off, objfile->name);
8475 return NULL;
8476 }
8477
8478 /* Free all resources associated with DWO_FILE.
8479 Close the DWO file and munmap the sections.
8480 All memory should be on the objfile obstack. */
8481
8482 static void
8483 free_dwo_file (struct dwo_file *dwo_file, struct objfile *objfile)
8484 {
8485 int ix;
8486 struct dwarf2_section_info *section;
8487
8488 gdb_assert (dwo_file->dwo_bfd != objfile->obfd);
8489 gdb_bfd_unref (dwo_file->dwo_bfd);
8490
8491 VEC_free (dwarf2_section_info_def, dwo_file->sections.types);
8492 }
8493
8494 /* Wrapper for free_dwo_file for use in cleanups. */
8495
8496 static void
8497 free_dwo_file_cleanup (void *arg)
8498 {
8499 struct dwo_file *dwo_file = (struct dwo_file *) arg;
8500 struct objfile *objfile = dwarf2_per_objfile->objfile;
8501
8502 free_dwo_file (dwo_file, objfile);
8503 }
8504
8505 /* Traversal function for free_dwo_files. */
8506
8507 static int
8508 free_dwo_file_from_slot (void **slot, void *info)
8509 {
8510 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
8511 struct objfile *objfile = (struct objfile *) info;
8512
8513 free_dwo_file (dwo_file, objfile);
8514
8515 return 1;
8516 }
8517
8518 /* Free all resources associated with DWO_FILES. */
8519
8520 static void
8521 free_dwo_files (htab_t dwo_files, struct objfile *objfile)
8522 {
8523 htab_traverse_noresize (dwo_files, free_dwo_file_from_slot, objfile);
8524 }
8525 \f
8526 /* Read in various DIEs. */
8527
8528 /* qsort helper for inherit_abstract_dies. */
8529
8530 static int
8531 unsigned_int_compar (const void *ap, const void *bp)
8532 {
8533 unsigned int a = *(unsigned int *) ap;
8534 unsigned int b = *(unsigned int *) bp;
8535
8536 return (a > b) - (b > a);
8537 }
8538
8539 /* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
8540 Inherit only the children of the DW_AT_abstract_origin DIE not being
8541 already referenced by DW_AT_abstract_origin from the children of the
8542 current DIE. */
8543
8544 static void
8545 inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
8546 {
8547 struct die_info *child_die;
8548 unsigned die_children_count;
8549 /* CU offsets which were referenced by children of the current DIE. */
8550 sect_offset *offsets;
8551 sect_offset *offsets_end, *offsetp;
8552 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
8553 struct die_info *origin_die;
8554 /* Iterator of the ORIGIN_DIE children. */
8555 struct die_info *origin_child_die;
8556 struct cleanup *cleanups;
8557 struct attribute *attr;
8558 struct dwarf2_cu *origin_cu;
8559 struct pending **origin_previous_list_in_scope;
8560
8561 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
8562 if (!attr)
8563 return;
8564
8565 /* Note that following die references may follow to a die in a
8566 different cu. */
8567
8568 origin_cu = cu;
8569 origin_die = follow_die_ref (die, attr, &origin_cu);
8570
8571 /* We're inheriting ORIGIN's children into the scope we'd put DIE's
8572 symbols in. */
8573 origin_previous_list_in_scope = origin_cu->list_in_scope;
8574 origin_cu->list_in_scope = cu->list_in_scope;
8575
8576 if (die->tag != origin_die->tag
8577 && !(die->tag == DW_TAG_inlined_subroutine
8578 && origin_die->tag == DW_TAG_subprogram))
8579 complaint (&symfile_complaints,
8580 _("DIE 0x%x and its abstract origin 0x%x have different tags"),
8581 die->offset.sect_off, origin_die->offset.sect_off);
8582
8583 child_die = die->child;
8584 die_children_count = 0;
8585 while (child_die && child_die->tag)
8586 {
8587 child_die = sibling_die (child_die);
8588 die_children_count++;
8589 }
8590 offsets = xmalloc (sizeof (*offsets) * die_children_count);
8591 cleanups = make_cleanup (xfree, offsets);
8592
8593 offsets_end = offsets;
8594 child_die = die->child;
8595 while (child_die && child_die->tag)
8596 {
8597 /* For each CHILD_DIE, find the corresponding child of
8598 ORIGIN_DIE. If there is more than one layer of
8599 DW_AT_abstract_origin, follow them all; there shouldn't be,
8600 but GCC versions at least through 4.4 generate this (GCC PR
8601 40573). */
8602 struct die_info *child_origin_die = child_die;
8603 struct dwarf2_cu *child_origin_cu = cu;
8604
8605 while (1)
8606 {
8607 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
8608 child_origin_cu);
8609 if (attr == NULL)
8610 break;
8611 child_origin_die = follow_die_ref (child_origin_die, attr,
8612 &child_origin_cu);
8613 }
8614
8615 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
8616 counterpart may exist. */
8617 if (child_origin_die != child_die)
8618 {
8619 if (child_die->tag != child_origin_die->tag
8620 && !(child_die->tag == DW_TAG_inlined_subroutine
8621 && child_origin_die->tag == DW_TAG_subprogram))
8622 complaint (&symfile_complaints,
8623 _("Child DIE 0x%x and its abstract origin 0x%x have "
8624 "different tags"), child_die->offset.sect_off,
8625 child_origin_die->offset.sect_off);
8626 if (child_origin_die->parent != origin_die)
8627 complaint (&symfile_complaints,
8628 _("Child DIE 0x%x and its abstract origin 0x%x have "
8629 "different parents"), child_die->offset.sect_off,
8630 child_origin_die->offset.sect_off);
8631 else
8632 *offsets_end++ = child_origin_die->offset;
8633 }
8634 child_die = sibling_die (child_die);
8635 }
8636 qsort (offsets, offsets_end - offsets, sizeof (*offsets),
8637 unsigned_int_compar);
8638 for (offsetp = offsets + 1; offsetp < offsets_end; offsetp++)
8639 if (offsetp[-1].sect_off == offsetp->sect_off)
8640 complaint (&symfile_complaints,
8641 _("Multiple children of DIE 0x%x refer "
8642 "to DIE 0x%x as their abstract origin"),
8643 die->offset.sect_off, offsetp->sect_off);
8644
8645 offsetp = offsets;
8646 origin_child_die = origin_die->child;
8647 while (origin_child_die && origin_child_die->tag)
8648 {
8649 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
8650 while (offsetp < offsets_end
8651 && offsetp->sect_off < origin_child_die->offset.sect_off)
8652 offsetp++;
8653 if (offsetp >= offsets_end
8654 || offsetp->sect_off > origin_child_die->offset.sect_off)
8655 {
8656 /* Found that ORIGIN_CHILD_DIE is really not referenced. */
8657 process_die (origin_child_die, origin_cu);
8658 }
8659 origin_child_die = sibling_die (origin_child_die);
8660 }
8661 origin_cu->list_in_scope = origin_previous_list_in_scope;
8662
8663 do_cleanups (cleanups);
8664 }
8665
8666 static void
8667 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
8668 {
8669 struct objfile *objfile = cu->objfile;
8670 struct context_stack *new;
8671 CORE_ADDR lowpc;
8672 CORE_ADDR highpc;
8673 struct die_info *child_die;
8674 struct attribute *attr, *call_line, *call_file;
8675 char *name;
8676 CORE_ADDR baseaddr;
8677 struct block *block;
8678 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
8679 VEC (symbolp) *template_args = NULL;
8680 struct template_symbol *templ_func = NULL;
8681
8682 if (inlined_func)
8683 {
8684 /* If we do not have call site information, we can't show the
8685 caller of this inlined function. That's too confusing, so
8686 only use the scope for local variables. */
8687 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
8688 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
8689 if (call_line == NULL || call_file == NULL)
8690 {
8691 read_lexical_block_scope (die, cu);
8692 return;
8693 }
8694 }
8695
8696 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
8697
8698 name = dwarf2_name (die, cu);
8699
8700 /* Ignore functions with missing or empty names. These are actually
8701 illegal according to the DWARF standard. */
8702 if (name == NULL)
8703 {
8704 complaint (&symfile_complaints,
8705 _("missing name for subprogram DIE at %d"),
8706 die->offset.sect_off);
8707 return;
8708 }
8709
8710 /* Ignore functions with missing or invalid low and high pc attributes. */
8711 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
8712 {
8713 attr = dwarf2_attr (die, DW_AT_external, cu);
8714 if (!attr || !DW_UNSND (attr))
8715 complaint (&symfile_complaints,
8716 _("cannot get low and high bounds "
8717 "for subprogram DIE at %d"),
8718 die->offset.sect_off);
8719 return;
8720 }
8721
8722 lowpc += baseaddr;
8723 highpc += baseaddr;
8724
8725 /* If we have any template arguments, then we must allocate a
8726 different sort of symbol. */
8727 for (child_die = die->child; child_die; child_die = sibling_die (child_die))
8728 {
8729 if (child_die->tag == DW_TAG_template_type_param
8730 || child_die->tag == DW_TAG_template_value_param)
8731 {
8732 templ_func = OBSTACK_ZALLOC (&objfile->objfile_obstack,
8733 struct template_symbol);
8734 templ_func->base.is_cplus_template_function = 1;
8735 break;
8736 }
8737 }
8738
8739 new = push_context (0, lowpc);
8740 new->name = new_symbol_full (die, read_type_die (die, cu), cu,
8741 (struct symbol *) templ_func);
8742
8743 /* If there is a location expression for DW_AT_frame_base, record
8744 it. */
8745 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
8746 if (attr)
8747 /* FIXME: cagney/2004-01-26: The DW_AT_frame_base's location
8748 expression is being recorded directly in the function's symbol
8749 and not in a separate frame-base object. I guess this hack is
8750 to avoid adding some sort of frame-base adjunct/annex to the
8751 function's symbol :-(. The problem with doing this is that it
8752 results in a function symbol with a location expression that
8753 has nothing to do with the location of the function, ouch! The
8754 relationship should be: a function's symbol has-a frame base; a
8755 frame-base has-a location expression. */
8756 dwarf2_symbol_mark_computed (attr, new->name, cu);
8757
8758 cu->list_in_scope = &local_symbols;
8759
8760 if (die->child != NULL)
8761 {
8762 child_die = die->child;
8763 while (child_die && child_die->tag)
8764 {
8765 if (child_die->tag == DW_TAG_template_type_param
8766 || child_die->tag == DW_TAG_template_value_param)
8767 {
8768 struct symbol *arg = new_symbol (child_die, NULL, cu);
8769
8770 if (arg != NULL)
8771 VEC_safe_push (symbolp, template_args, arg);
8772 }
8773 else
8774 process_die (child_die, cu);
8775 child_die = sibling_die (child_die);
8776 }
8777 }
8778
8779 inherit_abstract_dies (die, cu);
8780
8781 /* If we have a DW_AT_specification, we might need to import using
8782 directives from the context of the specification DIE. See the
8783 comment in determine_prefix. */
8784 if (cu->language == language_cplus
8785 && dwarf2_attr (die, DW_AT_specification, cu))
8786 {
8787 struct dwarf2_cu *spec_cu = cu;
8788 struct die_info *spec_die = die_specification (die, &spec_cu);
8789
8790 while (spec_die)
8791 {
8792 child_die = spec_die->child;
8793 while (child_die && child_die->tag)
8794 {
8795 if (child_die->tag == DW_TAG_imported_module)
8796 process_die (child_die, spec_cu);
8797 child_die = sibling_die (child_die);
8798 }
8799
8800 /* In some cases, GCC generates specification DIEs that
8801 themselves contain DW_AT_specification attributes. */
8802 spec_die = die_specification (spec_die, &spec_cu);
8803 }
8804 }
8805
8806 new = pop_context ();
8807 /* Make a block for the local symbols within. */
8808 block = finish_block (new->name, &local_symbols, new->old_blocks,
8809 lowpc, highpc, objfile);
8810
8811 /* For C++, set the block's scope. */
8812 if (cu->language == language_cplus || cu->language == language_fortran)
8813 cp_set_block_scope (new->name, block, &objfile->objfile_obstack,
8814 determine_prefix (die, cu),
8815 processing_has_namespace_info);
8816
8817 /* If we have address ranges, record them. */
8818 dwarf2_record_block_ranges (die, block, baseaddr, cu);
8819
8820 /* Attach template arguments to function. */
8821 if (! VEC_empty (symbolp, template_args))
8822 {
8823 gdb_assert (templ_func != NULL);
8824
8825 templ_func->n_template_arguments = VEC_length (symbolp, template_args);
8826 templ_func->template_arguments
8827 = obstack_alloc (&objfile->objfile_obstack,
8828 (templ_func->n_template_arguments
8829 * sizeof (struct symbol *)));
8830 memcpy (templ_func->template_arguments,
8831 VEC_address (symbolp, template_args),
8832 (templ_func->n_template_arguments * sizeof (struct symbol *)));
8833 VEC_free (symbolp, template_args);
8834 }
8835
8836 /* In C++, we can have functions nested inside functions (e.g., when
8837 a function declares a class that has methods). This means that
8838 when we finish processing a function scope, we may need to go
8839 back to building a containing block's symbol lists. */
8840 local_symbols = new->locals;
8841 using_directives = new->using_directives;
8842
8843 /* If we've finished processing a top-level function, subsequent
8844 symbols go in the file symbol list. */
8845 if (outermost_context_p ())
8846 cu->list_in_scope = &file_symbols;
8847 }
8848
8849 /* Process all the DIES contained within a lexical block scope. Start
8850 a new scope, process the dies, and then close the scope. */
8851
8852 static void
8853 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
8854 {
8855 struct objfile *objfile = cu->objfile;
8856 struct context_stack *new;
8857 CORE_ADDR lowpc, highpc;
8858 struct die_info *child_die;
8859 CORE_ADDR baseaddr;
8860
8861 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
8862
8863 /* Ignore blocks with missing or invalid low and high pc attributes. */
8864 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
8865 as multiple lexical blocks? Handling children in a sane way would
8866 be nasty. Might be easier to properly extend generic blocks to
8867 describe ranges. */
8868 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
8869 return;
8870 lowpc += baseaddr;
8871 highpc += baseaddr;
8872
8873 push_context (0, lowpc);
8874 if (die->child != NULL)
8875 {
8876 child_die = die->child;
8877 while (child_die && child_die->tag)
8878 {
8879 process_die (child_die, cu);
8880 child_die = sibling_die (child_die);
8881 }
8882 }
8883 new = pop_context ();
8884
8885 if (local_symbols != NULL || using_directives != NULL)
8886 {
8887 struct block *block
8888 = finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
8889 highpc, objfile);
8890
8891 /* Note that recording ranges after traversing children, as we
8892 do here, means that recording a parent's ranges entails
8893 walking across all its children's ranges as they appear in
8894 the address map, which is quadratic behavior.
8895
8896 It would be nicer to record the parent's ranges before
8897 traversing its children, simply overriding whatever you find
8898 there. But since we don't even decide whether to create a
8899 block until after we've traversed its children, that's hard
8900 to do. */
8901 dwarf2_record_block_ranges (die, block, baseaddr, cu);
8902 }
8903 local_symbols = new->locals;
8904 using_directives = new->using_directives;
8905 }
8906
8907 /* Read in DW_TAG_GNU_call_site and insert it to CU->call_site_htab. */
8908
8909 static void
8910 read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu)
8911 {
8912 struct objfile *objfile = cu->objfile;
8913 struct gdbarch *gdbarch = get_objfile_arch (objfile);
8914 CORE_ADDR pc, baseaddr;
8915 struct attribute *attr;
8916 struct call_site *call_site, call_site_local;
8917 void **slot;
8918 int nparams;
8919 struct die_info *child_die;
8920
8921 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
8922
8923 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
8924 if (!attr)
8925 {
8926 complaint (&symfile_complaints,
8927 _("missing DW_AT_low_pc for DW_TAG_GNU_call_site "
8928 "DIE 0x%x [in module %s]"),
8929 die->offset.sect_off, objfile->name);
8930 return;
8931 }
8932 pc = DW_ADDR (attr) + baseaddr;
8933
8934 if (cu->call_site_htab == NULL)
8935 cu->call_site_htab = htab_create_alloc_ex (16, core_addr_hash, core_addr_eq,
8936 NULL, &objfile->objfile_obstack,
8937 hashtab_obstack_allocate, NULL);
8938 call_site_local.pc = pc;
8939 slot = htab_find_slot (cu->call_site_htab, &call_site_local, INSERT);
8940 if (*slot != NULL)
8941 {
8942 complaint (&symfile_complaints,
8943 _("Duplicate PC %s for DW_TAG_GNU_call_site "
8944 "DIE 0x%x [in module %s]"),
8945 paddress (gdbarch, pc), die->offset.sect_off, objfile->name);
8946 return;
8947 }
8948
8949 /* Count parameters at the caller. */
8950
8951 nparams = 0;
8952 for (child_die = die->child; child_die && child_die->tag;
8953 child_die = sibling_die (child_die))
8954 {
8955 if (child_die->tag != DW_TAG_GNU_call_site_parameter)
8956 {
8957 complaint (&symfile_complaints,
8958 _("Tag %d is not DW_TAG_GNU_call_site_parameter in "
8959 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
8960 child_die->tag, child_die->offset.sect_off, objfile->name);
8961 continue;
8962 }
8963
8964 nparams++;
8965 }
8966
8967 call_site = obstack_alloc (&objfile->objfile_obstack,
8968 (sizeof (*call_site)
8969 + (sizeof (*call_site->parameter)
8970 * (nparams - 1))));
8971 *slot = call_site;
8972 memset (call_site, 0, sizeof (*call_site) - sizeof (*call_site->parameter));
8973 call_site->pc = pc;
8974
8975 if (dwarf2_flag_true_p (die, DW_AT_GNU_tail_call, cu))
8976 {
8977 struct die_info *func_die;
8978
8979 /* Skip also over DW_TAG_inlined_subroutine. */
8980 for (func_die = die->parent;
8981 func_die && func_die->tag != DW_TAG_subprogram
8982 && func_die->tag != DW_TAG_subroutine_type;
8983 func_die = func_die->parent);
8984
8985 /* DW_AT_GNU_all_call_sites is a superset
8986 of DW_AT_GNU_all_tail_call_sites. */
8987 if (func_die
8988 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_call_sites, cu)
8989 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_tail_call_sites, cu))
8990 {
8991 /* TYPE_TAIL_CALL_LIST is not interesting in functions where it is
8992 not complete. But keep CALL_SITE for look ups via call_site_htab,
8993 both the initial caller containing the real return address PC and
8994 the final callee containing the current PC of a chain of tail
8995 calls do not need to have the tail call list complete. But any
8996 function candidate for a virtual tail call frame searched via
8997 TYPE_TAIL_CALL_LIST must have the tail call list complete to be
8998 determined unambiguously. */
8999 }
9000 else
9001 {
9002 struct type *func_type = NULL;
9003
9004 if (func_die)
9005 func_type = get_die_type (func_die, cu);
9006 if (func_type != NULL)
9007 {
9008 gdb_assert (TYPE_CODE (func_type) == TYPE_CODE_FUNC);
9009
9010 /* Enlist this call site to the function. */
9011 call_site->tail_call_next = TYPE_TAIL_CALL_LIST (func_type);
9012 TYPE_TAIL_CALL_LIST (func_type) = call_site;
9013 }
9014 else
9015 complaint (&symfile_complaints,
9016 _("Cannot find function owning DW_TAG_GNU_call_site "
9017 "DIE 0x%x [in module %s]"),
9018 die->offset.sect_off, objfile->name);
9019 }
9020 }
9021
9022 attr = dwarf2_attr (die, DW_AT_GNU_call_site_target, cu);
9023 if (attr == NULL)
9024 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
9025 SET_FIELD_DWARF_BLOCK (call_site->target, NULL);
9026 if (!attr || (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0))
9027 /* Keep NULL DWARF_BLOCK. */;
9028 else if (attr_form_is_block (attr))
9029 {
9030 struct dwarf2_locexpr_baton *dlbaton;
9031
9032 dlbaton = obstack_alloc (&objfile->objfile_obstack, sizeof (*dlbaton));
9033 dlbaton->data = DW_BLOCK (attr)->data;
9034 dlbaton->size = DW_BLOCK (attr)->size;
9035 dlbaton->per_cu = cu->per_cu;
9036
9037 SET_FIELD_DWARF_BLOCK (call_site->target, dlbaton);
9038 }
9039 else if (is_ref_attr (attr))
9040 {
9041 struct dwarf2_cu *target_cu = cu;
9042 struct die_info *target_die;
9043
9044 target_die = follow_die_ref_or_sig (die, attr, &target_cu);
9045 gdb_assert (target_cu->objfile == objfile);
9046 if (die_is_declaration (target_die, target_cu))
9047 {
9048 const char *target_physname;
9049
9050 target_physname = dwarf2_physname (NULL, target_die, target_cu);
9051 if (target_physname == NULL)
9052 complaint (&symfile_complaints,
9053 _("DW_AT_GNU_call_site_target target DIE has invalid "
9054 "physname, for referencing DIE 0x%x [in module %s]"),
9055 die->offset.sect_off, objfile->name);
9056 else
9057 SET_FIELD_PHYSNAME (call_site->target, (char *) target_physname);
9058 }
9059 else
9060 {
9061 CORE_ADDR lowpc;
9062
9063 /* DW_AT_entry_pc should be preferred. */
9064 if (!dwarf2_get_pc_bounds (target_die, &lowpc, NULL, target_cu, NULL))
9065 complaint (&symfile_complaints,
9066 _("DW_AT_GNU_call_site_target target DIE has invalid "
9067 "low pc, for referencing DIE 0x%x [in module %s]"),
9068 die->offset.sect_off, objfile->name);
9069 else
9070 SET_FIELD_PHYSADDR (call_site->target, lowpc + baseaddr);
9071 }
9072 }
9073 else
9074 complaint (&symfile_complaints,
9075 _("DW_TAG_GNU_call_site DW_AT_GNU_call_site_target is neither "
9076 "block nor reference, for DIE 0x%x [in module %s]"),
9077 die->offset.sect_off, objfile->name);
9078
9079 call_site->per_cu = cu->per_cu;
9080
9081 for (child_die = die->child;
9082 child_die && child_die->tag;
9083 child_die = sibling_die (child_die))
9084 {
9085 struct call_site_parameter *parameter;
9086 struct attribute *loc, *origin;
9087
9088 if (child_die->tag != DW_TAG_GNU_call_site_parameter)
9089 {
9090 /* Already printed the complaint above. */
9091 continue;
9092 }
9093
9094 gdb_assert (call_site->parameter_count < nparams);
9095 parameter = &call_site->parameter[call_site->parameter_count];
9096
9097 /* DW_AT_location specifies the register number or DW_AT_abstract_origin
9098 specifies DW_TAG_formal_parameter. Value of the data assumed for the
9099 register is contained in DW_AT_GNU_call_site_value. */
9100
9101 loc = dwarf2_attr (child_die, DW_AT_location, cu);
9102 origin = dwarf2_attr (child_die, DW_AT_abstract_origin, cu);
9103 if (loc == NULL && origin != NULL && is_ref_attr (origin))
9104 {
9105 sect_offset offset;
9106
9107 parameter->kind = CALL_SITE_PARAMETER_PARAM_OFFSET;
9108 offset = dwarf2_get_ref_die_offset (origin);
9109 if (!offset_in_cu_p (&cu->header, offset))
9110 {
9111 /* As DW_OP_GNU_parameter_ref uses CU-relative offset this
9112 binding can be done only inside one CU. Such referenced DIE
9113 therefore cannot be even moved to DW_TAG_partial_unit. */
9114 complaint (&symfile_complaints,
9115 _("DW_AT_abstract_origin offset is not in CU for "
9116 "DW_TAG_GNU_call_site child DIE 0x%x "
9117 "[in module %s]"),
9118 child_die->offset.sect_off, objfile->name);
9119 continue;
9120 }
9121 parameter->u.param_offset.cu_off = (offset.sect_off
9122 - cu->header.offset.sect_off);
9123 }
9124 else if (loc == NULL || origin != NULL || !attr_form_is_block (loc))
9125 {
9126 complaint (&symfile_complaints,
9127 _("No DW_FORM_block* DW_AT_location for "
9128 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
9129 child_die->offset.sect_off, objfile->name);
9130 continue;
9131 }
9132 else
9133 {
9134 parameter->u.dwarf_reg = dwarf_block_to_dwarf_reg
9135 (DW_BLOCK (loc)->data, &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size]);
9136 if (parameter->u.dwarf_reg != -1)
9137 parameter->kind = CALL_SITE_PARAMETER_DWARF_REG;
9138 else if (dwarf_block_to_sp_offset (gdbarch, DW_BLOCK (loc)->data,
9139 &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size],
9140 &parameter->u.fb_offset))
9141 parameter->kind = CALL_SITE_PARAMETER_FB_OFFSET;
9142 else
9143 {
9144 complaint (&symfile_complaints,
9145 _("Only single DW_OP_reg or DW_OP_fbreg is supported "
9146 "for DW_FORM_block* DW_AT_location is supported for "
9147 "DW_TAG_GNU_call_site child DIE 0x%x "
9148 "[in module %s]"),
9149 child_die->offset.sect_off, objfile->name);
9150 continue;
9151 }
9152 }
9153
9154 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_value, cu);
9155 if (!attr_form_is_block (attr))
9156 {
9157 complaint (&symfile_complaints,
9158 _("No DW_FORM_block* DW_AT_GNU_call_site_value for "
9159 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
9160 child_die->offset.sect_off, objfile->name);
9161 continue;
9162 }
9163 parameter->value = DW_BLOCK (attr)->data;
9164 parameter->value_size = DW_BLOCK (attr)->size;
9165
9166 /* Parameters are not pre-cleared by memset above. */
9167 parameter->data_value = NULL;
9168 parameter->data_value_size = 0;
9169 call_site->parameter_count++;
9170
9171 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_data_value, cu);
9172 if (attr)
9173 {
9174 if (!attr_form_is_block (attr))
9175 complaint (&symfile_complaints,
9176 _("No DW_FORM_block* DW_AT_GNU_call_site_data_value for "
9177 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
9178 child_die->offset.sect_off, objfile->name);
9179 else
9180 {
9181 parameter->data_value = DW_BLOCK (attr)->data;
9182 parameter->data_value_size = DW_BLOCK (attr)->size;
9183 }
9184 }
9185 }
9186 }
9187
9188 /* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
9189 Return 1 if the attributes are present and valid, otherwise, return 0.
9190 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
9191
9192 static int
9193 dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
9194 CORE_ADDR *high_return, struct dwarf2_cu *cu,
9195 struct partial_symtab *ranges_pst)
9196 {
9197 struct objfile *objfile = cu->objfile;
9198 struct comp_unit_head *cu_header = &cu->header;
9199 bfd *obfd = objfile->obfd;
9200 unsigned int addr_size = cu_header->addr_size;
9201 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
9202 /* Base address selection entry. */
9203 CORE_ADDR base;
9204 int found_base;
9205 unsigned int dummy;
9206 gdb_byte *buffer;
9207 CORE_ADDR marker;
9208 int low_set;
9209 CORE_ADDR low = 0;
9210 CORE_ADDR high = 0;
9211 CORE_ADDR baseaddr;
9212
9213 found_base = cu->base_known;
9214 base = cu->base_address;
9215
9216 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
9217 if (offset >= dwarf2_per_objfile->ranges.size)
9218 {
9219 complaint (&symfile_complaints,
9220 _("Offset %d out of bounds for DW_AT_ranges attribute"),
9221 offset);
9222 return 0;
9223 }
9224 buffer = dwarf2_per_objfile->ranges.buffer + offset;
9225
9226 /* Read in the largest possible address. */
9227 marker = read_address (obfd, buffer, cu, &dummy);
9228 if ((marker & mask) == mask)
9229 {
9230 /* If we found the largest possible address, then
9231 read the base address. */
9232 base = read_address (obfd, buffer + addr_size, cu, &dummy);
9233 buffer += 2 * addr_size;
9234 offset += 2 * addr_size;
9235 found_base = 1;
9236 }
9237
9238 low_set = 0;
9239
9240 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
9241
9242 while (1)
9243 {
9244 CORE_ADDR range_beginning, range_end;
9245
9246 range_beginning = read_address (obfd, buffer, cu, &dummy);
9247 buffer += addr_size;
9248 range_end = read_address (obfd, buffer, cu, &dummy);
9249 buffer += addr_size;
9250 offset += 2 * addr_size;
9251
9252 /* An end of list marker is a pair of zero addresses. */
9253 if (range_beginning == 0 && range_end == 0)
9254 /* Found the end of list entry. */
9255 break;
9256
9257 /* Each base address selection entry is a pair of 2 values.
9258 The first is the largest possible address, the second is
9259 the base address. Check for a base address here. */
9260 if ((range_beginning & mask) == mask)
9261 {
9262 /* If we found the largest possible address, then
9263 read the base address. */
9264 base = read_address (obfd, buffer + addr_size, cu, &dummy);
9265 found_base = 1;
9266 continue;
9267 }
9268
9269 if (!found_base)
9270 {
9271 /* We have no valid base address for the ranges
9272 data. */
9273 complaint (&symfile_complaints,
9274 _("Invalid .debug_ranges data (no base address)"));
9275 return 0;
9276 }
9277
9278 if (range_beginning > range_end)
9279 {
9280 /* Inverted range entries are invalid. */
9281 complaint (&symfile_complaints,
9282 _("Invalid .debug_ranges data (inverted range)"));
9283 return 0;
9284 }
9285
9286 /* Empty range entries have no effect. */
9287 if (range_beginning == range_end)
9288 continue;
9289
9290 range_beginning += base;
9291 range_end += base;
9292
9293 /* A not-uncommon case of bad debug info.
9294 Don't pollute the addrmap with bad data. */
9295 if (range_beginning + baseaddr == 0
9296 && !dwarf2_per_objfile->has_section_at_zero)
9297 {
9298 complaint (&symfile_complaints,
9299 _(".debug_ranges entry has start address of zero"
9300 " [in module %s]"), objfile->name);
9301 continue;
9302 }
9303
9304 if (ranges_pst != NULL)
9305 addrmap_set_empty (objfile->psymtabs_addrmap,
9306 range_beginning + baseaddr,
9307 range_end - 1 + baseaddr,
9308 ranges_pst);
9309
9310 /* FIXME: This is recording everything as a low-high
9311 segment of consecutive addresses. We should have a
9312 data structure for discontiguous block ranges
9313 instead. */
9314 if (! low_set)
9315 {
9316 low = range_beginning;
9317 high = range_end;
9318 low_set = 1;
9319 }
9320 else
9321 {
9322 if (range_beginning < low)
9323 low = range_beginning;
9324 if (range_end > high)
9325 high = range_end;
9326 }
9327 }
9328
9329 if (! low_set)
9330 /* If the first entry is an end-of-list marker, the range
9331 describes an empty scope, i.e. no instructions. */
9332 return 0;
9333
9334 if (low_return)
9335 *low_return = low;
9336 if (high_return)
9337 *high_return = high;
9338 return 1;
9339 }
9340
9341 /* Get low and high pc attributes from a die. Return 1 if the attributes
9342 are present and valid, otherwise, return 0. Return -1 if the range is
9343 discontinuous, i.e. derived from DW_AT_ranges information. */
9344
9345 static int
9346 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
9347 CORE_ADDR *highpc, struct dwarf2_cu *cu,
9348 struct partial_symtab *pst)
9349 {
9350 struct attribute *attr;
9351 struct attribute *attr_high;
9352 CORE_ADDR low = 0;
9353 CORE_ADDR high = 0;
9354 int ret = 0;
9355
9356 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
9357 if (attr_high)
9358 {
9359 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
9360 if (attr)
9361 {
9362 low = DW_ADDR (attr);
9363 if (attr_high->form == DW_FORM_addr
9364 || attr_high->form == DW_FORM_GNU_addr_index)
9365 high = DW_ADDR (attr_high);
9366 else
9367 high = low + DW_UNSND (attr_high);
9368 }
9369 else
9370 /* Found high w/o low attribute. */
9371 return 0;
9372
9373 /* Found consecutive range of addresses. */
9374 ret = 1;
9375 }
9376 else
9377 {
9378 attr = dwarf2_attr (die, DW_AT_ranges, cu);
9379 if (attr != NULL)
9380 {
9381 unsigned int ranges_offset = DW_UNSND (attr) + cu->ranges_base;
9382
9383 /* Value of the DW_AT_ranges attribute is the offset in the
9384 .debug_ranges section. */
9385 if (!dwarf2_ranges_read (ranges_offset, &low, &high, cu, pst))
9386 return 0;
9387 /* Found discontinuous range of addresses. */
9388 ret = -1;
9389 }
9390 }
9391
9392 /* read_partial_die has also the strict LOW < HIGH requirement. */
9393 if (high <= low)
9394 return 0;
9395
9396 /* When using the GNU linker, .gnu.linkonce. sections are used to
9397 eliminate duplicate copies of functions and vtables and such.
9398 The linker will arbitrarily choose one and discard the others.
9399 The AT_*_pc values for such functions refer to local labels in
9400 these sections. If the section from that file was discarded, the
9401 labels are not in the output, so the relocs get a value of 0.
9402 If this is a discarded function, mark the pc bounds as invalid,
9403 so that GDB will ignore it. */
9404 if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
9405 return 0;
9406
9407 *lowpc = low;
9408 if (highpc)
9409 *highpc = high;
9410 return ret;
9411 }
9412
9413 /* Assuming that DIE represents a subprogram DIE or a lexical block, get
9414 its low and high PC addresses. Do nothing if these addresses could not
9415 be determined. Otherwise, set LOWPC to the low address if it is smaller,
9416 and HIGHPC to the high address if greater than HIGHPC. */
9417
9418 static void
9419 dwarf2_get_subprogram_pc_bounds (struct die_info *die,
9420 CORE_ADDR *lowpc, CORE_ADDR *highpc,
9421 struct dwarf2_cu *cu)
9422 {
9423 CORE_ADDR low, high;
9424 struct die_info *child = die->child;
9425
9426 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL))
9427 {
9428 *lowpc = min (*lowpc, low);
9429 *highpc = max (*highpc, high);
9430 }
9431
9432 /* If the language does not allow nested subprograms (either inside
9433 subprograms or lexical blocks), we're done. */
9434 if (cu->language != language_ada)
9435 return;
9436
9437 /* Check all the children of the given DIE. If it contains nested
9438 subprograms, then check their pc bounds. Likewise, we need to
9439 check lexical blocks as well, as they may also contain subprogram
9440 definitions. */
9441 while (child && child->tag)
9442 {
9443 if (child->tag == DW_TAG_subprogram
9444 || child->tag == DW_TAG_lexical_block)
9445 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
9446 child = sibling_die (child);
9447 }
9448 }
9449
9450 /* Get the low and high pc's represented by the scope DIE, and store
9451 them in *LOWPC and *HIGHPC. If the correct values can't be
9452 determined, set *LOWPC to -1 and *HIGHPC to 0. */
9453
9454 static void
9455 get_scope_pc_bounds (struct die_info *die,
9456 CORE_ADDR *lowpc, CORE_ADDR *highpc,
9457 struct dwarf2_cu *cu)
9458 {
9459 CORE_ADDR best_low = (CORE_ADDR) -1;
9460 CORE_ADDR best_high = (CORE_ADDR) 0;
9461 CORE_ADDR current_low, current_high;
9462
9463 if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL))
9464 {
9465 best_low = current_low;
9466 best_high = current_high;
9467 }
9468 else
9469 {
9470 struct die_info *child = die->child;
9471
9472 while (child && child->tag)
9473 {
9474 switch (child->tag) {
9475 case DW_TAG_subprogram:
9476 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
9477 break;
9478 case DW_TAG_namespace:
9479 case DW_TAG_module:
9480 /* FIXME: carlton/2004-01-16: Should we do this for
9481 DW_TAG_class_type/DW_TAG_structure_type, too? I think
9482 that current GCC's always emit the DIEs corresponding
9483 to definitions of methods of classes as children of a
9484 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
9485 the DIEs giving the declarations, which could be
9486 anywhere). But I don't see any reason why the
9487 standards says that they have to be there. */
9488 get_scope_pc_bounds (child, &current_low, &current_high, cu);
9489
9490 if (current_low != ((CORE_ADDR) -1))
9491 {
9492 best_low = min (best_low, current_low);
9493 best_high = max (best_high, current_high);
9494 }
9495 break;
9496 default:
9497 /* Ignore. */
9498 break;
9499 }
9500
9501 child = sibling_die (child);
9502 }
9503 }
9504
9505 *lowpc = best_low;
9506 *highpc = best_high;
9507 }
9508
9509 /* Record the address ranges for BLOCK, offset by BASEADDR, as given
9510 in DIE. */
9511
9512 static void
9513 dwarf2_record_block_ranges (struct die_info *die, struct block *block,
9514 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
9515 {
9516 struct objfile *objfile = cu->objfile;
9517 struct attribute *attr;
9518 struct attribute *attr_high;
9519
9520 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
9521 if (attr_high)
9522 {
9523 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
9524 if (attr)
9525 {
9526 CORE_ADDR low = DW_ADDR (attr);
9527 CORE_ADDR high;
9528 if (attr_high->form == DW_FORM_addr
9529 || attr_high->form == DW_FORM_GNU_addr_index)
9530 high = DW_ADDR (attr_high);
9531 else
9532 high = low + DW_UNSND (attr_high);
9533
9534 record_block_range (block, baseaddr + low, baseaddr + high - 1);
9535 }
9536 }
9537
9538 attr = dwarf2_attr (die, DW_AT_ranges, cu);
9539 if (attr)
9540 {
9541 bfd *obfd = objfile->obfd;
9542
9543 /* The value of the DW_AT_ranges attribute is the offset of the
9544 address range list in the .debug_ranges section. */
9545 unsigned long offset = DW_UNSND (attr) + cu->ranges_base;
9546 gdb_byte *buffer = dwarf2_per_objfile->ranges.buffer + offset;
9547
9548 /* For some target architectures, but not others, the
9549 read_address function sign-extends the addresses it returns.
9550 To recognize base address selection entries, we need a
9551 mask. */
9552 unsigned int addr_size = cu->header.addr_size;
9553 CORE_ADDR base_select_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
9554
9555 /* The base address, to which the next pair is relative. Note
9556 that this 'base' is a DWARF concept: most entries in a range
9557 list are relative, to reduce the number of relocs against the
9558 debugging information. This is separate from this function's
9559 'baseaddr' argument, which GDB uses to relocate debugging
9560 information from a shared library based on the address at
9561 which the library was loaded. */
9562 CORE_ADDR base = cu->base_address;
9563 int base_known = cu->base_known;
9564
9565 gdb_assert (dwarf2_per_objfile->ranges.readin);
9566 if (offset >= dwarf2_per_objfile->ranges.size)
9567 {
9568 complaint (&symfile_complaints,
9569 _("Offset %lu out of bounds for DW_AT_ranges attribute"),
9570 offset);
9571 return;
9572 }
9573
9574 for (;;)
9575 {
9576 unsigned int bytes_read;
9577 CORE_ADDR start, end;
9578
9579 start = read_address (obfd, buffer, cu, &bytes_read);
9580 buffer += bytes_read;
9581 end = read_address (obfd, buffer, cu, &bytes_read);
9582 buffer += bytes_read;
9583
9584 /* Did we find the end of the range list? */
9585 if (start == 0 && end == 0)
9586 break;
9587
9588 /* Did we find a base address selection entry? */
9589 else if ((start & base_select_mask) == base_select_mask)
9590 {
9591 base = end;
9592 base_known = 1;
9593 }
9594
9595 /* We found an ordinary address range. */
9596 else
9597 {
9598 if (!base_known)
9599 {
9600 complaint (&symfile_complaints,
9601 _("Invalid .debug_ranges data "
9602 "(no base address)"));
9603 return;
9604 }
9605
9606 if (start > end)
9607 {
9608 /* Inverted range entries are invalid. */
9609 complaint (&symfile_complaints,
9610 _("Invalid .debug_ranges data "
9611 "(inverted range)"));
9612 return;
9613 }
9614
9615 /* Empty range entries have no effect. */
9616 if (start == end)
9617 continue;
9618
9619 start += base + baseaddr;
9620 end += base + baseaddr;
9621
9622 /* A not-uncommon case of bad debug info.
9623 Don't pollute the addrmap with bad data. */
9624 if (start == 0 && !dwarf2_per_objfile->has_section_at_zero)
9625 {
9626 complaint (&symfile_complaints,
9627 _(".debug_ranges entry has start address of zero"
9628 " [in module %s]"), objfile->name);
9629 continue;
9630 }
9631
9632 record_block_range (block, start, end - 1);
9633 }
9634 }
9635 }
9636 }
9637
9638 /* Check whether the producer field indicates either of GCC < 4.6, or the
9639 Intel C/C++ compiler, and cache the result in CU. */
9640
9641 static void
9642 check_producer (struct dwarf2_cu *cu)
9643 {
9644 const char *cs;
9645 int major, minor, release;
9646
9647 if (cu->producer == NULL)
9648 {
9649 /* For unknown compilers expect their behavior is DWARF version
9650 compliant.
9651
9652 GCC started to support .debug_types sections by -gdwarf-4 since
9653 gcc-4.5.x. As the .debug_types sections are missing DW_AT_producer
9654 for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
9655 combination. gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
9656 interpreted incorrectly by GDB now - GCC PR debug/48229. */
9657 }
9658 else if (strncmp (cu->producer, "GNU ", strlen ("GNU ")) == 0)
9659 {
9660 /* Skip any identifier after "GNU " - such as "C++" or "Java". */
9661
9662 cs = &cu->producer[strlen ("GNU ")];
9663 while (*cs && !isdigit (*cs))
9664 cs++;
9665 if (sscanf (cs, "%d.%d.%d", &major, &minor, &release) != 3)
9666 {
9667 /* Not recognized as GCC. */
9668 }
9669 else
9670 cu->producer_is_gxx_lt_4_6 = major < 4 || (major == 4 && minor < 6);
9671 }
9672 else if (strncmp (cu->producer, "Intel(R) C", strlen ("Intel(R) C")) == 0)
9673 cu->producer_is_icc = 1;
9674 else
9675 {
9676 /* For other non-GCC compilers, expect their behavior is DWARF version
9677 compliant. */
9678 }
9679
9680 cu->checked_producer = 1;
9681 }
9682
9683 /* Check for GCC PR debug/45124 fix which is not present in any G++ version up
9684 to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
9685 during 4.6.0 experimental. */
9686
9687 static int
9688 producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
9689 {
9690 if (!cu->checked_producer)
9691 check_producer (cu);
9692
9693 return cu->producer_is_gxx_lt_4_6;
9694 }
9695
9696 /* Return the default accessibility type if it is not overriden by
9697 DW_AT_accessibility. */
9698
9699 static enum dwarf_access_attribute
9700 dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
9701 {
9702 if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
9703 {
9704 /* The default DWARF 2 accessibility for members is public, the default
9705 accessibility for inheritance is private. */
9706
9707 if (die->tag != DW_TAG_inheritance)
9708 return DW_ACCESS_public;
9709 else
9710 return DW_ACCESS_private;
9711 }
9712 else
9713 {
9714 /* DWARF 3+ defines the default accessibility a different way. The same
9715 rules apply now for DW_TAG_inheritance as for the members and it only
9716 depends on the container kind. */
9717
9718 if (die->parent->tag == DW_TAG_class_type)
9719 return DW_ACCESS_private;
9720 else
9721 return DW_ACCESS_public;
9722 }
9723 }
9724
9725 /* Look for DW_AT_data_member_location. Set *OFFSET to the byte
9726 offset. If the attribute was not found return 0, otherwise return
9727 1. If it was found but could not properly be handled, set *OFFSET
9728 to 0. */
9729
9730 static int
9731 handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
9732 LONGEST *offset)
9733 {
9734 struct attribute *attr;
9735
9736 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
9737 if (attr != NULL)
9738 {
9739 *offset = 0;
9740
9741 /* Note that we do not check for a section offset first here.
9742 This is because DW_AT_data_member_location is new in DWARF 4,
9743 so if we see it, we can assume that a constant form is really
9744 a constant and not a section offset. */
9745 if (attr_form_is_constant (attr))
9746 *offset = dwarf2_get_attr_constant_value (attr, 0);
9747 else if (attr_form_is_section_offset (attr))
9748 dwarf2_complex_location_expr_complaint ();
9749 else if (attr_form_is_block (attr))
9750 *offset = decode_locdesc (DW_BLOCK (attr), cu);
9751 else
9752 dwarf2_complex_location_expr_complaint ();
9753
9754 return 1;
9755 }
9756
9757 return 0;
9758 }
9759
9760 /* Add an aggregate field to the field list. */
9761
9762 static void
9763 dwarf2_add_field (struct field_info *fip, struct die_info *die,
9764 struct dwarf2_cu *cu)
9765 {
9766 struct objfile *objfile = cu->objfile;
9767 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9768 struct nextfield *new_field;
9769 struct attribute *attr;
9770 struct field *fp;
9771 char *fieldname = "";
9772
9773 /* Allocate a new field list entry and link it in. */
9774 new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
9775 make_cleanup (xfree, new_field);
9776 memset (new_field, 0, sizeof (struct nextfield));
9777
9778 if (die->tag == DW_TAG_inheritance)
9779 {
9780 new_field->next = fip->baseclasses;
9781 fip->baseclasses = new_field;
9782 }
9783 else
9784 {
9785 new_field->next = fip->fields;
9786 fip->fields = new_field;
9787 }
9788 fip->nfields++;
9789
9790 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
9791 if (attr)
9792 new_field->accessibility = DW_UNSND (attr);
9793 else
9794 new_field->accessibility = dwarf2_default_access_attribute (die, cu);
9795 if (new_field->accessibility != DW_ACCESS_public)
9796 fip->non_public_fields = 1;
9797
9798 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
9799 if (attr)
9800 new_field->virtuality = DW_UNSND (attr);
9801 else
9802 new_field->virtuality = DW_VIRTUALITY_none;
9803
9804 fp = &new_field->field;
9805
9806 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
9807 {
9808 LONGEST offset;
9809
9810 /* Data member other than a C++ static data member. */
9811
9812 /* Get type of field. */
9813 fp->type = die_type (die, cu);
9814
9815 SET_FIELD_BITPOS (*fp, 0);
9816
9817 /* Get bit size of field (zero if none). */
9818 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
9819 if (attr)
9820 {
9821 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
9822 }
9823 else
9824 {
9825 FIELD_BITSIZE (*fp) = 0;
9826 }
9827
9828 /* Get bit offset of field. */
9829 if (handle_data_member_location (die, cu, &offset))
9830 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
9831 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
9832 if (attr)
9833 {
9834 if (gdbarch_bits_big_endian (gdbarch))
9835 {
9836 /* For big endian bits, the DW_AT_bit_offset gives the
9837 additional bit offset from the MSB of the containing
9838 anonymous object to the MSB of the field. We don't
9839 have to do anything special since we don't need to
9840 know the size of the anonymous object. */
9841 SET_FIELD_BITPOS (*fp, FIELD_BITPOS (*fp) + DW_UNSND (attr));
9842 }
9843 else
9844 {
9845 /* For little endian bits, compute the bit offset to the
9846 MSB of the anonymous object, subtract off the number of
9847 bits from the MSB of the field to the MSB of the
9848 object, and then subtract off the number of bits of
9849 the field itself. The result is the bit offset of
9850 the LSB of the field. */
9851 int anonymous_size;
9852 int bit_offset = DW_UNSND (attr);
9853
9854 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
9855 if (attr)
9856 {
9857 /* The size of the anonymous object containing
9858 the bit field is explicit, so use the
9859 indicated size (in bytes). */
9860 anonymous_size = DW_UNSND (attr);
9861 }
9862 else
9863 {
9864 /* The size of the anonymous object containing
9865 the bit field must be inferred from the type
9866 attribute of the data member containing the
9867 bit field. */
9868 anonymous_size = TYPE_LENGTH (fp->type);
9869 }
9870 SET_FIELD_BITPOS (*fp,
9871 (FIELD_BITPOS (*fp)
9872 + anonymous_size * bits_per_byte
9873 - bit_offset - FIELD_BITSIZE (*fp)));
9874 }
9875 }
9876
9877 /* Get name of field. */
9878 fieldname = dwarf2_name (die, cu);
9879 if (fieldname == NULL)
9880 fieldname = "";
9881
9882 /* The name is already allocated along with this objfile, so we don't
9883 need to duplicate it for the type. */
9884 fp->name = fieldname;
9885
9886 /* Change accessibility for artificial fields (e.g. virtual table
9887 pointer or virtual base class pointer) to private. */
9888 if (dwarf2_attr (die, DW_AT_artificial, cu))
9889 {
9890 FIELD_ARTIFICIAL (*fp) = 1;
9891 new_field->accessibility = DW_ACCESS_private;
9892 fip->non_public_fields = 1;
9893 }
9894 }
9895 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
9896 {
9897 /* C++ static member. */
9898
9899 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
9900 is a declaration, but all versions of G++ as of this writing
9901 (so through at least 3.2.1) incorrectly generate
9902 DW_TAG_variable tags. */
9903
9904 const char *physname;
9905
9906 /* Get name of field. */
9907 fieldname = dwarf2_name (die, cu);
9908 if (fieldname == NULL)
9909 return;
9910
9911 attr = dwarf2_attr (die, DW_AT_const_value, cu);
9912 if (attr
9913 /* Only create a symbol if this is an external value.
9914 new_symbol checks this and puts the value in the global symbol
9915 table, which we want. If it is not external, new_symbol
9916 will try to put the value in cu->list_in_scope which is wrong. */
9917 && dwarf2_flag_true_p (die, DW_AT_external, cu))
9918 {
9919 /* A static const member, not much different than an enum as far as
9920 we're concerned, except that we can support more types. */
9921 new_symbol (die, NULL, cu);
9922 }
9923
9924 /* Get physical name. */
9925 physname = dwarf2_physname (fieldname, die, cu);
9926
9927 /* The name is already allocated along with this objfile, so we don't
9928 need to duplicate it for the type. */
9929 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
9930 FIELD_TYPE (*fp) = die_type (die, cu);
9931 FIELD_NAME (*fp) = fieldname;
9932 }
9933 else if (die->tag == DW_TAG_inheritance)
9934 {
9935 LONGEST offset;
9936
9937 /* C++ base class field. */
9938 if (handle_data_member_location (die, cu, &offset))
9939 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
9940 FIELD_BITSIZE (*fp) = 0;
9941 FIELD_TYPE (*fp) = die_type (die, cu);
9942 FIELD_NAME (*fp) = type_name_no_tag (fp->type);
9943 fip->nbaseclasses++;
9944 }
9945 }
9946
9947 /* Add a typedef defined in the scope of the FIP's class. */
9948
9949 static void
9950 dwarf2_add_typedef (struct field_info *fip, struct die_info *die,
9951 struct dwarf2_cu *cu)
9952 {
9953 struct objfile *objfile = cu->objfile;
9954 struct typedef_field_list *new_field;
9955 struct attribute *attr;
9956 struct typedef_field *fp;
9957 char *fieldname = "";
9958
9959 /* Allocate a new field list entry and link it in. */
9960 new_field = xzalloc (sizeof (*new_field));
9961 make_cleanup (xfree, new_field);
9962
9963 gdb_assert (die->tag == DW_TAG_typedef);
9964
9965 fp = &new_field->field;
9966
9967 /* Get name of field. */
9968 fp->name = dwarf2_name (die, cu);
9969 if (fp->name == NULL)
9970 return;
9971
9972 fp->type = read_type_die (die, cu);
9973
9974 new_field->next = fip->typedef_field_list;
9975 fip->typedef_field_list = new_field;
9976 fip->typedef_field_list_count++;
9977 }
9978
9979 /* Create the vector of fields, and attach it to the type. */
9980
9981 static void
9982 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
9983 struct dwarf2_cu *cu)
9984 {
9985 int nfields = fip->nfields;
9986
9987 /* Record the field count, allocate space for the array of fields,
9988 and create blank accessibility bitfields if necessary. */
9989 TYPE_NFIELDS (type) = nfields;
9990 TYPE_FIELDS (type) = (struct field *)
9991 TYPE_ALLOC (type, sizeof (struct field) * nfields);
9992 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
9993
9994 if (fip->non_public_fields && cu->language != language_ada)
9995 {
9996 ALLOCATE_CPLUS_STRUCT_TYPE (type);
9997
9998 TYPE_FIELD_PRIVATE_BITS (type) =
9999 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
10000 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
10001
10002 TYPE_FIELD_PROTECTED_BITS (type) =
10003 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
10004 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
10005
10006 TYPE_FIELD_IGNORE_BITS (type) =
10007 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
10008 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
10009 }
10010
10011 /* If the type has baseclasses, allocate and clear a bit vector for
10012 TYPE_FIELD_VIRTUAL_BITS. */
10013 if (fip->nbaseclasses && cu->language != language_ada)
10014 {
10015 int num_bytes = B_BYTES (fip->nbaseclasses);
10016 unsigned char *pointer;
10017
10018 ALLOCATE_CPLUS_STRUCT_TYPE (type);
10019 pointer = TYPE_ALLOC (type, num_bytes);
10020 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
10021 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
10022 TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
10023 }
10024
10025 /* Copy the saved-up fields into the field vector. Start from the head of
10026 the list, adding to the tail of the field array, so that they end up in
10027 the same order in the array in which they were added to the list. */
10028 while (nfields-- > 0)
10029 {
10030 struct nextfield *fieldp;
10031
10032 if (fip->fields)
10033 {
10034 fieldp = fip->fields;
10035 fip->fields = fieldp->next;
10036 }
10037 else
10038 {
10039 fieldp = fip->baseclasses;
10040 fip->baseclasses = fieldp->next;
10041 }
10042
10043 TYPE_FIELD (type, nfields) = fieldp->field;
10044 switch (fieldp->accessibility)
10045 {
10046 case DW_ACCESS_private:
10047 if (cu->language != language_ada)
10048 SET_TYPE_FIELD_PRIVATE (type, nfields);
10049 break;
10050
10051 case DW_ACCESS_protected:
10052 if (cu->language != language_ada)
10053 SET_TYPE_FIELD_PROTECTED (type, nfields);
10054 break;
10055
10056 case DW_ACCESS_public:
10057 break;
10058
10059 default:
10060 /* Unknown accessibility. Complain and treat it as public. */
10061 {
10062 complaint (&symfile_complaints, _("unsupported accessibility %d"),
10063 fieldp->accessibility);
10064 }
10065 break;
10066 }
10067 if (nfields < fip->nbaseclasses)
10068 {
10069 switch (fieldp->virtuality)
10070 {
10071 case DW_VIRTUALITY_virtual:
10072 case DW_VIRTUALITY_pure_virtual:
10073 if (cu->language == language_ada)
10074 error (_("unexpected virtuality in component of Ada type"));
10075 SET_TYPE_FIELD_VIRTUAL (type, nfields);
10076 break;
10077 }
10078 }
10079 }
10080 }
10081
10082 /* Add a member function to the proper fieldlist. */
10083
10084 static void
10085 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
10086 struct type *type, struct dwarf2_cu *cu)
10087 {
10088 struct objfile *objfile = cu->objfile;
10089 struct attribute *attr;
10090 struct fnfieldlist *flp;
10091 int i;
10092 struct fn_field *fnp;
10093 char *fieldname;
10094 struct nextfnfield *new_fnfield;
10095 struct type *this_type;
10096 enum dwarf_access_attribute accessibility;
10097
10098 if (cu->language == language_ada)
10099 error (_("unexpected member function in Ada type"));
10100
10101 /* Get name of member function. */
10102 fieldname = dwarf2_name (die, cu);
10103 if (fieldname == NULL)
10104 return;
10105
10106 /* Look up member function name in fieldlist. */
10107 for (i = 0; i < fip->nfnfields; i++)
10108 {
10109 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
10110 break;
10111 }
10112
10113 /* Create new list element if necessary. */
10114 if (i < fip->nfnfields)
10115 flp = &fip->fnfieldlists[i];
10116 else
10117 {
10118 if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
10119 {
10120 fip->fnfieldlists = (struct fnfieldlist *)
10121 xrealloc (fip->fnfieldlists,
10122 (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
10123 * sizeof (struct fnfieldlist));
10124 if (fip->nfnfields == 0)
10125 make_cleanup (free_current_contents, &fip->fnfieldlists);
10126 }
10127 flp = &fip->fnfieldlists[fip->nfnfields];
10128 flp->name = fieldname;
10129 flp->length = 0;
10130 flp->head = NULL;
10131 i = fip->nfnfields++;
10132 }
10133
10134 /* Create a new member function field and chain it to the field list
10135 entry. */
10136 new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
10137 make_cleanup (xfree, new_fnfield);
10138 memset (new_fnfield, 0, sizeof (struct nextfnfield));
10139 new_fnfield->next = flp->head;
10140 flp->head = new_fnfield;
10141 flp->length++;
10142
10143 /* Fill in the member function field info. */
10144 fnp = &new_fnfield->fnfield;
10145
10146 /* Delay processing of the physname until later. */
10147 if (cu->language == language_cplus || cu->language == language_java)
10148 {
10149 add_to_method_list (type, i, flp->length - 1, fieldname,
10150 die, cu);
10151 }
10152 else
10153 {
10154 const char *physname = dwarf2_physname (fieldname, die, cu);
10155 fnp->physname = physname ? physname : "";
10156 }
10157
10158 fnp->type = alloc_type (objfile);
10159 this_type = read_type_die (die, cu);
10160 if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
10161 {
10162 int nparams = TYPE_NFIELDS (this_type);
10163
10164 /* TYPE is the domain of this method, and THIS_TYPE is the type
10165 of the method itself (TYPE_CODE_METHOD). */
10166 smash_to_method_type (fnp->type, type,
10167 TYPE_TARGET_TYPE (this_type),
10168 TYPE_FIELDS (this_type),
10169 TYPE_NFIELDS (this_type),
10170 TYPE_VARARGS (this_type));
10171
10172 /* Handle static member functions.
10173 Dwarf2 has no clean way to discern C++ static and non-static
10174 member functions. G++ helps GDB by marking the first
10175 parameter for non-static member functions (which is the this
10176 pointer) as artificial. We obtain this information from
10177 read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
10178 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
10179 fnp->voffset = VOFFSET_STATIC;
10180 }
10181 else
10182 complaint (&symfile_complaints, _("member function type missing for '%s'"),
10183 dwarf2_full_name (fieldname, die, cu));
10184
10185 /* Get fcontext from DW_AT_containing_type if present. */
10186 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
10187 fnp->fcontext = die_containing_type (die, cu);
10188
10189 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
10190 is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
10191
10192 /* Get accessibility. */
10193 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
10194 if (attr)
10195 accessibility = DW_UNSND (attr);
10196 else
10197 accessibility = dwarf2_default_access_attribute (die, cu);
10198 switch (accessibility)
10199 {
10200 case DW_ACCESS_private:
10201 fnp->is_private = 1;
10202 break;
10203 case DW_ACCESS_protected:
10204 fnp->is_protected = 1;
10205 break;
10206 }
10207
10208 /* Check for artificial methods. */
10209 attr = dwarf2_attr (die, DW_AT_artificial, cu);
10210 if (attr && DW_UNSND (attr) != 0)
10211 fnp->is_artificial = 1;
10212
10213 /* Get index in virtual function table if it is a virtual member
10214 function. For older versions of GCC, this is an offset in the
10215 appropriate virtual table, as specified by DW_AT_containing_type.
10216 For everyone else, it is an expression to be evaluated relative
10217 to the object address. */
10218
10219 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
10220 if (attr)
10221 {
10222 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
10223 {
10224 if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
10225 {
10226 /* Old-style GCC. */
10227 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
10228 }
10229 else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
10230 || (DW_BLOCK (attr)->size > 1
10231 && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
10232 && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
10233 {
10234 struct dwarf_block blk;
10235 int offset;
10236
10237 offset = (DW_BLOCK (attr)->data[0] == DW_OP_deref
10238 ? 1 : 2);
10239 blk.size = DW_BLOCK (attr)->size - offset;
10240 blk.data = DW_BLOCK (attr)->data + offset;
10241 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
10242 if ((fnp->voffset % cu->header.addr_size) != 0)
10243 dwarf2_complex_location_expr_complaint ();
10244 else
10245 fnp->voffset /= cu->header.addr_size;
10246 fnp->voffset += 2;
10247 }
10248 else
10249 dwarf2_complex_location_expr_complaint ();
10250
10251 if (!fnp->fcontext)
10252 fnp->fcontext = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
10253 }
10254 else if (attr_form_is_section_offset (attr))
10255 {
10256 dwarf2_complex_location_expr_complaint ();
10257 }
10258 else
10259 {
10260 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
10261 fieldname);
10262 }
10263 }
10264 else
10265 {
10266 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
10267 if (attr && DW_UNSND (attr))
10268 {
10269 /* GCC does this, as of 2008-08-25; PR debug/37237. */
10270 complaint (&symfile_complaints,
10271 _("Member function \"%s\" (offset %d) is virtual "
10272 "but the vtable offset is not specified"),
10273 fieldname, die->offset.sect_off);
10274 ALLOCATE_CPLUS_STRUCT_TYPE (type);
10275 TYPE_CPLUS_DYNAMIC (type) = 1;
10276 }
10277 }
10278 }
10279
10280 /* Create the vector of member function fields, and attach it to the type. */
10281
10282 static void
10283 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
10284 struct dwarf2_cu *cu)
10285 {
10286 struct fnfieldlist *flp;
10287 int i;
10288
10289 if (cu->language == language_ada)
10290 error (_("unexpected member functions in Ada type"));
10291
10292 ALLOCATE_CPLUS_STRUCT_TYPE (type);
10293 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
10294 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
10295
10296 for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
10297 {
10298 struct nextfnfield *nfp = flp->head;
10299 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
10300 int k;
10301
10302 TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
10303 TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
10304 fn_flp->fn_fields = (struct fn_field *)
10305 TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
10306 for (k = flp->length; (k--, nfp); nfp = nfp->next)
10307 fn_flp->fn_fields[k] = nfp->fnfield;
10308 }
10309
10310 TYPE_NFN_FIELDS (type) = fip->nfnfields;
10311 }
10312
10313 /* Returns non-zero if NAME is the name of a vtable member in CU's
10314 language, zero otherwise. */
10315 static int
10316 is_vtable_name (const char *name, struct dwarf2_cu *cu)
10317 {
10318 static const char vptr[] = "_vptr";
10319 static const char vtable[] = "vtable";
10320
10321 /* Look for the C++ and Java forms of the vtable. */
10322 if ((cu->language == language_java
10323 && strncmp (name, vtable, sizeof (vtable) - 1) == 0)
10324 || (strncmp (name, vptr, sizeof (vptr) - 1) == 0
10325 && is_cplus_marker (name[sizeof (vptr) - 1])))
10326 return 1;
10327
10328 return 0;
10329 }
10330
10331 /* GCC outputs unnamed structures that are really pointers to member
10332 functions, with the ABI-specified layout. If TYPE describes
10333 such a structure, smash it into a member function type.
10334
10335 GCC shouldn't do this; it should just output pointer to member DIEs.
10336 This is GCC PR debug/28767. */
10337
10338 static void
10339 quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
10340 {
10341 struct type *pfn_type, *domain_type, *new_type;
10342
10343 /* Check for a structure with no name and two children. */
10344 if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
10345 return;
10346
10347 /* Check for __pfn and __delta members. */
10348 if (TYPE_FIELD_NAME (type, 0) == NULL
10349 || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
10350 || TYPE_FIELD_NAME (type, 1) == NULL
10351 || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
10352 return;
10353
10354 /* Find the type of the method. */
10355 pfn_type = TYPE_FIELD_TYPE (type, 0);
10356 if (pfn_type == NULL
10357 || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
10358 || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
10359 return;
10360
10361 /* Look for the "this" argument. */
10362 pfn_type = TYPE_TARGET_TYPE (pfn_type);
10363 if (TYPE_NFIELDS (pfn_type) == 0
10364 /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
10365 || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
10366 return;
10367
10368 domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
10369 new_type = alloc_type (objfile);
10370 smash_to_method_type (new_type, domain_type, TYPE_TARGET_TYPE (pfn_type),
10371 TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
10372 TYPE_VARARGS (pfn_type));
10373 smash_to_methodptr_type (type, new_type);
10374 }
10375
10376 /* Return non-zero if the CU's PRODUCER string matches the Intel C/C++ compiler
10377 (icc). */
10378
10379 static int
10380 producer_is_icc (struct dwarf2_cu *cu)
10381 {
10382 if (!cu->checked_producer)
10383 check_producer (cu);
10384
10385 return cu->producer_is_icc;
10386 }
10387
10388 /* Called when we find the DIE that starts a structure or union scope
10389 (definition) to create a type for the structure or union. Fill in
10390 the type's name and general properties; the members will not be
10391 processed until process_structure_type.
10392
10393 NOTE: we need to call these functions regardless of whether or not the
10394 DIE has a DW_AT_name attribute, since it might be an anonymous
10395 structure or union. This gets the type entered into our set of
10396 user defined types.
10397
10398 However, if the structure is incomplete (an opaque struct/union)
10399 then suppress creating a symbol table entry for it since gdb only
10400 wants to find the one with the complete definition. Note that if
10401 it is complete, we just call new_symbol, which does it's own
10402 checking about whether the struct/union is anonymous or not (and
10403 suppresses creating a symbol table entry itself). */
10404
10405 static struct type *
10406 read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
10407 {
10408 struct objfile *objfile = cu->objfile;
10409 struct type *type;
10410 struct attribute *attr;
10411 char *name;
10412
10413 /* If the definition of this type lives in .debug_types, read that type.
10414 Don't follow DW_AT_specification though, that will take us back up
10415 the chain and we want to go down. */
10416 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
10417 if (attr)
10418 {
10419 struct dwarf2_cu *type_cu = cu;
10420 struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
10421
10422 /* We could just recurse on read_structure_type, but we need to call
10423 get_die_type to ensure only one type for this DIE is created.
10424 This is important, for example, because for c++ classes we need
10425 TYPE_NAME set which is only done by new_symbol. Blech. */
10426 type = read_type_die (type_die, type_cu);
10427
10428 /* TYPE_CU may not be the same as CU.
10429 Ensure TYPE is recorded in CU's type_hash table. */
10430 return set_die_type (die, type, cu);
10431 }
10432
10433 type = alloc_type (objfile);
10434 INIT_CPLUS_SPECIFIC (type);
10435
10436 name = dwarf2_name (die, cu);
10437 if (name != NULL)
10438 {
10439 if (cu->language == language_cplus
10440 || cu->language == language_java)
10441 {
10442 char *full_name = (char *) dwarf2_full_name (name, die, cu);
10443
10444 /* dwarf2_full_name might have already finished building the DIE's
10445 type. If so, there is no need to continue. */
10446 if (get_die_type (die, cu) != NULL)
10447 return get_die_type (die, cu);
10448
10449 TYPE_TAG_NAME (type) = full_name;
10450 if (die->tag == DW_TAG_structure_type
10451 || die->tag == DW_TAG_class_type)
10452 TYPE_NAME (type) = TYPE_TAG_NAME (type);
10453 }
10454 else
10455 {
10456 /* The name is already allocated along with this objfile, so
10457 we don't need to duplicate it for the type. */
10458 TYPE_TAG_NAME (type) = (char *) name;
10459 if (die->tag == DW_TAG_class_type)
10460 TYPE_NAME (type) = TYPE_TAG_NAME (type);
10461 }
10462 }
10463
10464 if (die->tag == DW_TAG_structure_type)
10465 {
10466 TYPE_CODE (type) = TYPE_CODE_STRUCT;
10467 }
10468 else if (die->tag == DW_TAG_union_type)
10469 {
10470 TYPE_CODE (type) = TYPE_CODE_UNION;
10471 }
10472 else
10473 {
10474 TYPE_CODE (type) = TYPE_CODE_CLASS;
10475 }
10476
10477 if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
10478 TYPE_DECLARED_CLASS (type) = 1;
10479
10480 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
10481 if (attr)
10482 {
10483 TYPE_LENGTH (type) = DW_UNSND (attr);
10484 }
10485 else
10486 {
10487 TYPE_LENGTH (type) = 0;
10488 }
10489
10490 if (producer_is_icc (cu))
10491 {
10492 /* ICC does not output the required DW_AT_declaration
10493 on incomplete types, but gives them a size of zero. */
10494 }
10495 else
10496 TYPE_STUB_SUPPORTED (type) = 1;
10497
10498 if (die_is_declaration (die, cu))
10499 TYPE_STUB (type) = 1;
10500 else if (attr == NULL && die->child == NULL
10501 && producer_is_realview (cu->producer))
10502 /* RealView does not output the required DW_AT_declaration
10503 on incomplete types. */
10504 TYPE_STUB (type) = 1;
10505
10506 /* We need to add the type field to the die immediately so we don't
10507 infinitely recurse when dealing with pointers to the structure
10508 type within the structure itself. */
10509 set_die_type (die, type, cu);
10510
10511 /* set_die_type should be already done. */
10512 set_descriptive_type (type, die, cu);
10513
10514 return type;
10515 }
10516
10517 /* Finish creating a structure or union type, including filling in
10518 its members and creating a symbol for it. */
10519
10520 static void
10521 process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
10522 {
10523 struct objfile *objfile = cu->objfile;
10524 struct die_info *child_die = die->child;
10525 struct type *type;
10526
10527 type = get_die_type (die, cu);
10528 if (type == NULL)
10529 type = read_structure_type (die, cu);
10530
10531 if (die->child != NULL && ! die_is_declaration (die, cu))
10532 {
10533 struct field_info fi;
10534 struct die_info *child_die;
10535 VEC (symbolp) *template_args = NULL;
10536 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
10537
10538 memset (&fi, 0, sizeof (struct field_info));
10539
10540 child_die = die->child;
10541
10542 while (child_die && child_die->tag)
10543 {
10544 if (child_die->tag == DW_TAG_member
10545 || child_die->tag == DW_TAG_variable)
10546 {
10547 /* NOTE: carlton/2002-11-05: A C++ static data member
10548 should be a DW_TAG_member that is a declaration, but
10549 all versions of G++ as of this writing (so through at
10550 least 3.2.1) incorrectly generate DW_TAG_variable
10551 tags for them instead. */
10552 dwarf2_add_field (&fi, child_die, cu);
10553 }
10554 else if (child_die->tag == DW_TAG_subprogram)
10555 {
10556 /* C++ member function. */
10557 dwarf2_add_member_fn (&fi, child_die, type, cu);
10558 }
10559 else if (child_die->tag == DW_TAG_inheritance)
10560 {
10561 /* C++ base class field. */
10562 dwarf2_add_field (&fi, child_die, cu);
10563 }
10564 else if (child_die->tag == DW_TAG_typedef)
10565 dwarf2_add_typedef (&fi, child_die, cu);
10566 else if (child_die->tag == DW_TAG_template_type_param
10567 || child_die->tag == DW_TAG_template_value_param)
10568 {
10569 struct symbol *arg = new_symbol (child_die, NULL, cu);
10570
10571 if (arg != NULL)
10572 VEC_safe_push (symbolp, template_args, arg);
10573 }
10574
10575 child_die = sibling_die (child_die);
10576 }
10577
10578 /* Attach template arguments to type. */
10579 if (! VEC_empty (symbolp, template_args))
10580 {
10581 ALLOCATE_CPLUS_STRUCT_TYPE (type);
10582 TYPE_N_TEMPLATE_ARGUMENTS (type)
10583 = VEC_length (symbolp, template_args);
10584 TYPE_TEMPLATE_ARGUMENTS (type)
10585 = obstack_alloc (&objfile->objfile_obstack,
10586 (TYPE_N_TEMPLATE_ARGUMENTS (type)
10587 * sizeof (struct symbol *)));
10588 memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
10589 VEC_address (symbolp, template_args),
10590 (TYPE_N_TEMPLATE_ARGUMENTS (type)
10591 * sizeof (struct symbol *)));
10592 VEC_free (symbolp, template_args);
10593 }
10594
10595 /* Attach fields and member functions to the type. */
10596 if (fi.nfields)
10597 dwarf2_attach_fields_to_type (&fi, type, cu);
10598 if (fi.nfnfields)
10599 {
10600 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
10601
10602 /* Get the type which refers to the base class (possibly this
10603 class itself) which contains the vtable pointer for the current
10604 class from the DW_AT_containing_type attribute. This use of
10605 DW_AT_containing_type is a GNU extension. */
10606
10607 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
10608 {
10609 struct type *t = die_containing_type (die, cu);
10610
10611 TYPE_VPTR_BASETYPE (type) = t;
10612 if (type == t)
10613 {
10614 int i;
10615
10616 /* Our own class provides vtbl ptr. */
10617 for (i = TYPE_NFIELDS (t) - 1;
10618 i >= TYPE_N_BASECLASSES (t);
10619 --i)
10620 {
10621 const char *fieldname = TYPE_FIELD_NAME (t, i);
10622
10623 if (is_vtable_name (fieldname, cu))
10624 {
10625 TYPE_VPTR_FIELDNO (type) = i;
10626 break;
10627 }
10628 }
10629
10630 /* Complain if virtual function table field not found. */
10631 if (i < TYPE_N_BASECLASSES (t))
10632 complaint (&symfile_complaints,
10633 _("virtual function table pointer "
10634 "not found when defining class '%s'"),
10635 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
10636 "");
10637 }
10638 else
10639 {
10640 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
10641 }
10642 }
10643 else if (cu->producer
10644 && strncmp (cu->producer,
10645 "IBM(R) XL C/C++ Advanced Edition", 32) == 0)
10646 {
10647 /* The IBM XLC compiler does not provide direct indication
10648 of the containing type, but the vtable pointer is
10649 always named __vfp. */
10650
10651 int i;
10652
10653 for (i = TYPE_NFIELDS (type) - 1;
10654 i >= TYPE_N_BASECLASSES (type);
10655 --i)
10656 {
10657 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
10658 {
10659 TYPE_VPTR_FIELDNO (type) = i;
10660 TYPE_VPTR_BASETYPE (type) = type;
10661 break;
10662 }
10663 }
10664 }
10665 }
10666
10667 /* Copy fi.typedef_field_list linked list elements content into the
10668 allocated array TYPE_TYPEDEF_FIELD_ARRAY (type). */
10669 if (fi.typedef_field_list)
10670 {
10671 int i = fi.typedef_field_list_count;
10672
10673 ALLOCATE_CPLUS_STRUCT_TYPE (type);
10674 TYPE_TYPEDEF_FIELD_ARRAY (type)
10675 = TYPE_ALLOC (type, sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * i);
10676 TYPE_TYPEDEF_FIELD_COUNT (type) = i;
10677
10678 /* Reverse the list order to keep the debug info elements order. */
10679 while (--i >= 0)
10680 {
10681 struct typedef_field *dest, *src;
10682
10683 dest = &TYPE_TYPEDEF_FIELD (type, i);
10684 src = &fi.typedef_field_list->field;
10685 fi.typedef_field_list = fi.typedef_field_list->next;
10686 *dest = *src;
10687 }
10688 }
10689
10690 do_cleanups (back_to);
10691
10692 if (HAVE_CPLUS_STRUCT (type))
10693 TYPE_CPLUS_REALLY_JAVA (type) = cu->language == language_java;
10694 }
10695
10696 quirk_gcc_member_function_pointer (type, objfile);
10697
10698 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
10699 snapshots) has been known to create a die giving a declaration
10700 for a class that has, as a child, a die giving a definition for a
10701 nested class. So we have to process our children even if the
10702 current die is a declaration. Normally, of course, a declaration
10703 won't have any children at all. */
10704
10705 while (child_die != NULL && child_die->tag)
10706 {
10707 if (child_die->tag == DW_TAG_member
10708 || child_die->tag == DW_TAG_variable
10709 || child_die->tag == DW_TAG_inheritance
10710 || child_die->tag == DW_TAG_template_value_param
10711 || child_die->tag == DW_TAG_template_type_param)
10712 {
10713 /* Do nothing. */
10714 }
10715 else
10716 process_die (child_die, cu);
10717
10718 child_die = sibling_die (child_die);
10719 }
10720
10721 /* Do not consider external references. According to the DWARF standard,
10722 these DIEs are identified by the fact that they have no byte_size
10723 attribute, and a declaration attribute. */
10724 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
10725 || !die_is_declaration (die, cu))
10726 new_symbol (die, type, cu);
10727 }
10728
10729 /* Given a DW_AT_enumeration_type die, set its type. We do not
10730 complete the type's fields yet, or create any symbols. */
10731
10732 static struct type *
10733 read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
10734 {
10735 struct objfile *objfile = cu->objfile;
10736 struct type *type;
10737 struct attribute *attr;
10738 const char *name;
10739
10740 /* If the definition of this type lives in .debug_types, read that type.
10741 Don't follow DW_AT_specification though, that will take us back up
10742 the chain and we want to go down. */
10743 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
10744 if (attr)
10745 {
10746 struct dwarf2_cu *type_cu = cu;
10747 struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
10748
10749 type = read_type_die (type_die, type_cu);
10750
10751 /* TYPE_CU may not be the same as CU.
10752 Ensure TYPE is recorded in CU's type_hash table. */
10753 return set_die_type (die, type, cu);
10754 }
10755
10756 type = alloc_type (objfile);
10757
10758 TYPE_CODE (type) = TYPE_CODE_ENUM;
10759 name = dwarf2_full_name (NULL, die, cu);
10760 if (name != NULL)
10761 TYPE_TAG_NAME (type) = (char *) name;
10762
10763 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
10764 if (attr)
10765 {
10766 TYPE_LENGTH (type) = DW_UNSND (attr);
10767 }
10768 else
10769 {
10770 TYPE_LENGTH (type) = 0;
10771 }
10772
10773 /* The enumeration DIE can be incomplete. In Ada, any type can be
10774 declared as private in the package spec, and then defined only
10775 inside the package body. Such types are known as Taft Amendment
10776 Types. When another package uses such a type, an incomplete DIE
10777 may be generated by the compiler. */
10778 if (die_is_declaration (die, cu))
10779 TYPE_STUB (type) = 1;
10780
10781 return set_die_type (die, type, cu);
10782 }
10783
10784 /* Given a pointer to a die which begins an enumeration, process all
10785 the dies that define the members of the enumeration, and create the
10786 symbol for the enumeration type.
10787
10788 NOTE: We reverse the order of the element list. */
10789
10790 static void
10791 process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
10792 {
10793 struct type *this_type;
10794
10795 this_type = get_die_type (die, cu);
10796 if (this_type == NULL)
10797 this_type = read_enumeration_type (die, cu);
10798
10799 if (die->child != NULL)
10800 {
10801 struct die_info *child_die;
10802 struct symbol *sym;
10803 struct field *fields = NULL;
10804 int num_fields = 0;
10805 int unsigned_enum = 1;
10806 char *name;
10807 int flag_enum = 1;
10808 ULONGEST mask = 0;
10809
10810 child_die = die->child;
10811 while (child_die && child_die->tag)
10812 {
10813 if (child_die->tag != DW_TAG_enumerator)
10814 {
10815 process_die (child_die, cu);
10816 }
10817 else
10818 {
10819 name = dwarf2_name (child_die, cu);
10820 if (name)
10821 {
10822 sym = new_symbol (child_die, this_type, cu);
10823 if (SYMBOL_VALUE (sym) < 0)
10824 {
10825 unsigned_enum = 0;
10826 flag_enum = 0;
10827 }
10828 else if ((mask & SYMBOL_VALUE (sym)) != 0)
10829 flag_enum = 0;
10830 else
10831 mask |= SYMBOL_VALUE (sym);
10832
10833 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
10834 {
10835 fields = (struct field *)
10836 xrealloc (fields,
10837 (num_fields + DW_FIELD_ALLOC_CHUNK)
10838 * sizeof (struct field));
10839 }
10840
10841 FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
10842 FIELD_TYPE (fields[num_fields]) = NULL;
10843 SET_FIELD_ENUMVAL (fields[num_fields], SYMBOL_VALUE (sym));
10844 FIELD_BITSIZE (fields[num_fields]) = 0;
10845
10846 num_fields++;
10847 }
10848 }
10849
10850 child_die = sibling_die (child_die);
10851 }
10852
10853 if (num_fields)
10854 {
10855 TYPE_NFIELDS (this_type) = num_fields;
10856 TYPE_FIELDS (this_type) = (struct field *)
10857 TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
10858 memcpy (TYPE_FIELDS (this_type), fields,
10859 sizeof (struct field) * num_fields);
10860 xfree (fields);
10861 }
10862 if (unsigned_enum)
10863 TYPE_UNSIGNED (this_type) = 1;
10864 if (flag_enum)
10865 TYPE_FLAG_ENUM (this_type) = 1;
10866 }
10867
10868 /* If we are reading an enum from a .debug_types unit, and the enum
10869 is a declaration, and the enum is not the signatured type in the
10870 unit, then we do not want to add a symbol for it. Adding a
10871 symbol would in some cases obscure the true definition of the
10872 enum, giving users an incomplete type when the definition is
10873 actually available. Note that we do not want to do this for all
10874 enums which are just declarations, because C++0x allows forward
10875 enum declarations. */
10876 if (cu->per_cu->is_debug_types
10877 && die_is_declaration (die, cu))
10878 {
10879 struct signatured_type *sig_type;
10880
10881 sig_type
10882 = lookup_signatured_type_at_offset (dwarf2_per_objfile->objfile,
10883 cu->per_cu->info_or_types_section,
10884 cu->per_cu->offset);
10885 gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
10886 if (sig_type->type_offset_in_section.sect_off != die->offset.sect_off)
10887 return;
10888 }
10889
10890 new_symbol (die, this_type, cu);
10891 }
10892
10893 /* Extract all information from a DW_TAG_array_type DIE and put it in
10894 the DIE's type field. For now, this only handles one dimensional
10895 arrays. */
10896
10897 static struct type *
10898 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
10899 {
10900 struct objfile *objfile = cu->objfile;
10901 struct die_info *child_die;
10902 struct type *type;
10903 struct type *element_type, *range_type, *index_type;
10904 struct type **range_types = NULL;
10905 struct attribute *attr;
10906 int ndim = 0;
10907 struct cleanup *back_to;
10908 char *name;
10909
10910 element_type = die_type (die, cu);
10911
10912 /* The die_type call above may have already set the type for this DIE. */
10913 type = get_die_type (die, cu);
10914 if (type)
10915 return type;
10916
10917 /* Irix 6.2 native cc creates array types without children for
10918 arrays with unspecified length. */
10919 if (die->child == NULL)
10920 {
10921 index_type = objfile_type (objfile)->builtin_int;
10922 range_type = create_range_type (NULL, index_type, 0, -1);
10923 type = create_array_type (NULL, element_type, range_type);
10924 return set_die_type (die, type, cu);
10925 }
10926
10927 back_to = make_cleanup (null_cleanup, NULL);
10928 child_die = die->child;
10929 while (child_die && child_die->tag)
10930 {
10931 if (child_die->tag == DW_TAG_subrange_type)
10932 {
10933 struct type *child_type = read_type_die (child_die, cu);
10934
10935 if (child_type != NULL)
10936 {
10937 /* The range type was succesfully read. Save it for the
10938 array type creation. */
10939 if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
10940 {
10941 range_types = (struct type **)
10942 xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
10943 * sizeof (struct type *));
10944 if (ndim == 0)
10945 make_cleanup (free_current_contents, &range_types);
10946 }
10947 range_types[ndim++] = child_type;
10948 }
10949 }
10950 child_die = sibling_die (child_die);
10951 }
10952
10953 /* Dwarf2 dimensions are output from left to right, create the
10954 necessary array types in backwards order. */
10955
10956 type = element_type;
10957
10958 if (read_array_order (die, cu) == DW_ORD_col_major)
10959 {
10960 int i = 0;
10961
10962 while (i < ndim)
10963 type = create_array_type (NULL, type, range_types[i++]);
10964 }
10965 else
10966 {
10967 while (ndim-- > 0)
10968 type = create_array_type (NULL, type, range_types[ndim]);
10969 }
10970
10971 /* Understand Dwarf2 support for vector types (like they occur on
10972 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
10973 array type. This is not part of the Dwarf2/3 standard yet, but a
10974 custom vendor extension. The main difference between a regular
10975 array and the vector variant is that vectors are passed by value
10976 to functions. */
10977 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
10978 if (attr)
10979 make_vector_type (type);
10980
10981 /* The DIE may have DW_AT_byte_size set. For example an OpenCL
10982 implementation may choose to implement triple vectors using this
10983 attribute. */
10984 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
10985 if (attr)
10986 {
10987 if (DW_UNSND (attr) >= TYPE_LENGTH (type))
10988 TYPE_LENGTH (type) = DW_UNSND (attr);
10989 else
10990 complaint (&symfile_complaints,
10991 _("DW_AT_byte_size for array type smaller "
10992 "than the total size of elements"));
10993 }
10994
10995 name = dwarf2_name (die, cu);
10996 if (name)
10997 TYPE_NAME (type) = name;
10998
10999 /* Install the type in the die. */
11000 set_die_type (die, type, cu);
11001
11002 /* set_die_type should be already done. */
11003 set_descriptive_type (type, die, cu);
11004
11005 do_cleanups (back_to);
11006
11007 return type;
11008 }
11009
11010 static enum dwarf_array_dim_ordering
11011 read_array_order (struct die_info *die, struct dwarf2_cu *cu)
11012 {
11013 struct attribute *attr;
11014
11015 attr = dwarf2_attr (die, DW_AT_ordering, cu);
11016
11017 if (attr) return DW_SND (attr);
11018
11019 /* GNU F77 is a special case, as at 08/2004 array type info is the
11020 opposite order to the dwarf2 specification, but data is still
11021 laid out as per normal fortran.
11022
11023 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
11024 version checking. */
11025
11026 if (cu->language == language_fortran
11027 && cu->producer && strstr (cu->producer, "GNU F77"))
11028 {
11029 return DW_ORD_row_major;
11030 }
11031
11032 switch (cu->language_defn->la_array_ordering)
11033 {
11034 case array_column_major:
11035 return DW_ORD_col_major;
11036 case array_row_major:
11037 default:
11038 return DW_ORD_row_major;
11039 };
11040 }
11041
11042 /* Extract all information from a DW_TAG_set_type DIE and put it in
11043 the DIE's type field. */
11044
11045 static struct type *
11046 read_set_type (struct die_info *die, struct dwarf2_cu *cu)
11047 {
11048 struct type *domain_type, *set_type;
11049 struct attribute *attr;
11050
11051 domain_type = die_type (die, cu);
11052
11053 /* The die_type call above may have already set the type for this DIE. */
11054 set_type = get_die_type (die, cu);
11055 if (set_type)
11056 return set_type;
11057
11058 set_type = create_set_type (NULL, domain_type);
11059
11060 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11061 if (attr)
11062 TYPE_LENGTH (set_type) = DW_UNSND (attr);
11063
11064 return set_die_type (die, set_type, cu);
11065 }
11066
11067 /* A helper for read_common_block that creates a locexpr baton.
11068 SYM is the symbol which we are marking as computed.
11069 COMMON_DIE is the DIE for the common block.
11070 COMMON_LOC is the location expression attribute for the common
11071 block itself.
11072 MEMBER_LOC is the location expression attribute for the particular
11073 member of the common block that we are processing.
11074 CU is the CU from which the above come. */
11075
11076 static void
11077 mark_common_block_symbol_computed (struct symbol *sym,
11078 struct die_info *common_die,
11079 struct attribute *common_loc,
11080 struct attribute *member_loc,
11081 struct dwarf2_cu *cu)
11082 {
11083 struct objfile *objfile = dwarf2_per_objfile->objfile;
11084 struct dwarf2_locexpr_baton *baton;
11085 gdb_byte *ptr;
11086 unsigned int cu_off;
11087 enum bfd_endian byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
11088 LONGEST offset = 0;
11089
11090 gdb_assert (common_loc && member_loc);
11091 gdb_assert (attr_form_is_block (common_loc));
11092 gdb_assert (attr_form_is_block (member_loc)
11093 || attr_form_is_constant (member_loc));
11094
11095 baton = obstack_alloc (&objfile->objfile_obstack,
11096 sizeof (struct dwarf2_locexpr_baton));
11097 baton->per_cu = cu->per_cu;
11098 gdb_assert (baton->per_cu);
11099
11100 baton->size = 5 /* DW_OP_call4 */ + 1 /* DW_OP_plus */;
11101
11102 if (attr_form_is_constant (member_loc))
11103 {
11104 offset = dwarf2_get_attr_constant_value (member_loc, 0);
11105 baton->size += 1 /* DW_OP_addr */ + cu->header.addr_size;
11106 }
11107 else
11108 baton->size += DW_BLOCK (member_loc)->size;
11109
11110 ptr = obstack_alloc (&objfile->objfile_obstack, baton->size);
11111 baton->data = ptr;
11112
11113 *ptr++ = DW_OP_call4;
11114 cu_off = common_die->offset.sect_off - cu->per_cu->offset.sect_off;
11115 store_unsigned_integer (ptr, 4, byte_order, cu_off);
11116 ptr += 4;
11117
11118 if (attr_form_is_constant (member_loc))
11119 {
11120 *ptr++ = DW_OP_addr;
11121 store_unsigned_integer (ptr, cu->header.addr_size, byte_order, offset);
11122 ptr += cu->header.addr_size;
11123 }
11124 else
11125 {
11126 /* We have to copy the data here, because DW_OP_call4 will only
11127 use a DW_AT_location attribute. */
11128 memcpy (ptr, DW_BLOCK (member_loc)->data, DW_BLOCK (member_loc)->size);
11129 ptr += DW_BLOCK (member_loc)->size;
11130 }
11131
11132 *ptr++ = DW_OP_plus;
11133 gdb_assert (ptr - baton->data == baton->size);
11134
11135 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_locexpr_funcs;
11136 SYMBOL_LOCATION_BATON (sym) = baton;
11137 SYMBOL_CLASS (sym) = LOC_COMPUTED;
11138 }
11139
11140 /* Create appropriate locally-scoped variables for all the
11141 DW_TAG_common_block entries. Also create a struct common_block
11142 listing all such variables for `info common'. COMMON_BLOCK_DOMAIN
11143 is used to sepate the common blocks name namespace from regular
11144 variable names. */
11145
11146 static void
11147 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
11148 {
11149 struct attribute *attr;
11150
11151 attr = dwarf2_attr (die, DW_AT_location, cu);
11152 if (attr)
11153 {
11154 /* Support the .debug_loc offsets. */
11155 if (attr_form_is_block (attr))
11156 {
11157 /* Ok. */
11158 }
11159 else if (attr_form_is_section_offset (attr))
11160 {
11161 dwarf2_complex_location_expr_complaint ();
11162 attr = NULL;
11163 }
11164 else
11165 {
11166 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
11167 "common block member");
11168 attr = NULL;
11169 }
11170 }
11171
11172 if (die->child != NULL)
11173 {
11174 struct objfile *objfile = cu->objfile;
11175 struct die_info *child_die;
11176 size_t n_entries = 0, size;
11177 struct common_block *common_block;
11178 struct symbol *sym;
11179
11180 for (child_die = die->child;
11181 child_die && child_die->tag;
11182 child_die = sibling_die (child_die))
11183 ++n_entries;
11184
11185 size = (sizeof (struct common_block)
11186 + (n_entries - 1) * sizeof (struct symbol *));
11187 common_block = obstack_alloc (&objfile->objfile_obstack, size);
11188 memset (common_block->contents, 0, n_entries * sizeof (struct symbol *));
11189 common_block->n_entries = 0;
11190
11191 for (child_die = die->child;
11192 child_die && child_die->tag;
11193 child_die = sibling_die (child_die))
11194 {
11195 /* Create the symbol in the DW_TAG_common_block block in the current
11196 symbol scope. */
11197 sym = new_symbol (child_die, NULL, cu);
11198 if (sym != NULL)
11199 {
11200 struct attribute *member_loc;
11201
11202 common_block->contents[common_block->n_entries++] = sym;
11203
11204 member_loc = dwarf2_attr (child_die, DW_AT_data_member_location,
11205 cu);
11206 if (member_loc)
11207 {
11208 /* GDB has handled this for a long time, but it is
11209 not specified by DWARF. It seems to have been
11210 emitted by gfortran at least as recently as:
11211 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23057. */
11212 complaint (&symfile_complaints,
11213 _("Variable in common block has "
11214 "DW_AT_data_member_location "
11215 "- DIE at 0x%x [in module %s]"),
11216 child_die->offset.sect_off, cu->objfile->name);
11217
11218 if (attr_form_is_section_offset (member_loc))
11219 dwarf2_complex_location_expr_complaint ();
11220 else if (attr_form_is_constant (member_loc)
11221 || attr_form_is_block (member_loc))
11222 {
11223 if (attr)
11224 mark_common_block_symbol_computed (sym, die, attr,
11225 member_loc, cu);
11226 }
11227 else
11228 dwarf2_complex_location_expr_complaint ();
11229 }
11230 }
11231 }
11232
11233 sym = new_symbol (die, objfile_type (objfile)->builtin_void, cu);
11234 SYMBOL_VALUE_COMMON_BLOCK (sym) = common_block;
11235 }
11236 }
11237
11238 /* Create a type for a C++ namespace. */
11239
11240 static struct type *
11241 read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
11242 {
11243 struct objfile *objfile = cu->objfile;
11244 const char *previous_prefix, *name;
11245 int is_anonymous;
11246 struct type *type;
11247
11248 /* For extensions, reuse the type of the original namespace. */
11249 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
11250 {
11251 struct die_info *ext_die;
11252 struct dwarf2_cu *ext_cu = cu;
11253
11254 ext_die = dwarf2_extension (die, &ext_cu);
11255 type = read_type_die (ext_die, ext_cu);
11256
11257 /* EXT_CU may not be the same as CU.
11258 Ensure TYPE is recorded in CU's type_hash table. */
11259 return set_die_type (die, type, cu);
11260 }
11261
11262 name = namespace_name (die, &is_anonymous, cu);
11263
11264 /* Now build the name of the current namespace. */
11265
11266 previous_prefix = determine_prefix (die, cu);
11267 if (previous_prefix[0] != '\0')
11268 name = typename_concat (&objfile->objfile_obstack,
11269 previous_prefix, name, 0, cu);
11270
11271 /* Create the type. */
11272 type = init_type (TYPE_CODE_NAMESPACE, 0, 0, NULL,
11273 objfile);
11274 TYPE_NAME (type) = (char *) name;
11275 TYPE_TAG_NAME (type) = TYPE_NAME (type);
11276
11277 return set_die_type (die, type, cu);
11278 }
11279
11280 /* Read a C++ namespace. */
11281
11282 static void
11283 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
11284 {
11285 struct objfile *objfile = cu->objfile;
11286 int is_anonymous;
11287
11288 /* Add a symbol associated to this if we haven't seen the namespace
11289 before. Also, add a using directive if it's an anonymous
11290 namespace. */
11291
11292 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
11293 {
11294 struct type *type;
11295
11296 type = read_type_die (die, cu);
11297 new_symbol (die, type, cu);
11298
11299 namespace_name (die, &is_anonymous, cu);
11300 if (is_anonymous)
11301 {
11302 const char *previous_prefix = determine_prefix (die, cu);
11303
11304 cp_add_using_directive (previous_prefix, TYPE_NAME (type), NULL,
11305 NULL, NULL, &objfile->objfile_obstack);
11306 }
11307 }
11308
11309 if (die->child != NULL)
11310 {
11311 struct die_info *child_die = die->child;
11312
11313 while (child_die && child_die->tag)
11314 {
11315 process_die (child_die, cu);
11316 child_die = sibling_die (child_die);
11317 }
11318 }
11319 }
11320
11321 /* Read a Fortran module as type. This DIE can be only a declaration used for
11322 imported module. Still we need that type as local Fortran "use ... only"
11323 declaration imports depend on the created type in determine_prefix. */
11324
11325 static struct type *
11326 read_module_type (struct die_info *die, struct dwarf2_cu *cu)
11327 {
11328 struct objfile *objfile = cu->objfile;
11329 char *module_name;
11330 struct type *type;
11331
11332 module_name = dwarf2_name (die, cu);
11333 if (!module_name)
11334 complaint (&symfile_complaints,
11335 _("DW_TAG_module has no name, offset 0x%x"),
11336 die->offset.sect_off);
11337 type = init_type (TYPE_CODE_MODULE, 0, 0, module_name, objfile);
11338
11339 /* determine_prefix uses TYPE_TAG_NAME. */
11340 TYPE_TAG_NAME (type) = TYPE_NAME (type);
11341
11342 return set_die_type (die, type, cu);
11343 }
11344
11345 /* Read a Fortran module. */
11346
11347 static void
11348 read_module (struct die_info *die, struct dwarf2_cu *cu)
11349 {
11350 struct die_info *child_die = die->child;
11351
11352 while (child_die && child_die->tag)
11353 {
11354 process_die (child_die, cu);
11355 child_die = sibling_die (child_die);
11356 }
11357 }
11358
11359 /* Return the name of the namespace represented by DIE. Set
11360 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
11361 namespace. */
11362
11363 static const char *
11364 namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
11365 {
11366 struct die_info *current_die;
11367 const char *name = NULL;
11368
11369 /* Loop through the extensions until we find a name. */
11370
11371 for (current_die = die;
11372 current_die != NULL;
11373 current_die = dwarf2_extension (die, &cu))
11374 {
11375 name = dwarf2_name (current_die, cu);
11376 if (name != NULL)
11377 break;
11378 }
11379
11380 /* Is it an anonymous namespace? */
11381
11382 *is_anonymous = (name == NULL);
11383 if (*is_anonymous)
11384 name = CP_ANONYMOUS_NAMESPACE_STR;
11385
11386 return name;
11387 }
11388
11389 /* Extract all information from a DW_TAG_pointer_type DIE and add to
11390 the user defined type vector. */
11391
11392 static struct type *
11393 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
11394 {
11395 struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
11396 struct comp_unit_head *cu_header = &cu->header;
11397 struct type *type;
11398 struct attribute *attr_byte_size;
11399 struct attribute *attr_address_class;
11400 int byte_size, addr_class;
11401 struct type *target_type;
11402
11403 target_type = die_type (die, cu);
11404
11405 /* The die_type call above may have already set the type for this DIE. */
11406 type = get_die_type (die, cu);
11407 if (type)
11408 return type;
11409
11410 type = lookup_pointer_type (target_type);
11411
11412 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
11413 if (attr_byte_size)
11414 byte_size = DW_UNSND (attr_byte_size);
11415 else
11416 byte_size = cu_header->addr_size;
11417
11418 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
11419 if (attr_address_class)
11420 addr_class = DW_UNSND (attr_address_class);
11421 else
11422 addr_class = DW_ADDR_none;
11423
11424 /* If the pointer size or address class is different than the
11425 default, create a type variant marked as such and set the
11426 length accordingly. */
11427 if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
11428 {
11429 if (gdbarch_address_class_type_flags_p (gdbarch))
11430 {
11431 int type_flags;
11432
11433 type_flags = gdbarch_address_class_type_flags
11434 (gdbarch, byte_size, addr_class);
11435 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
11436 == 0);
11437 type = make_type_with_address_space (type, type_flags);
11438 }
11439 else if (TYPE_LENGTH (type) != byte_size)
11440 {
11441 complaint (&symfile_complaints,
11442 _("invalid pointer size %d"), byte_size);
11443 }
11444 else
11445 {
11446 /* Should we also complain about unhandled address classes? */
11447 }
11448 }
11449
11450 TYPE_LENGTH (type) = byte_size;
11451 return set_die_type (die, type, cu);
11452 }
11453
11454 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
11455 the user defined type vector. */
11456
11457 static struct type *
11458 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
11459 {
11460 struct type *type;
11461 struct type *to_type;
11462 struct type *domain;
11463
11464 to_type = die_type (die, cu);
11465 domain = die_containing_type (die, cu);
11466
11467 /* The calls above may have already set the type for this DIE. */
11468 type = get_die_type (die, cu);
11469 if (type)
11470 return type;
11471
11472 if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
11473 type = lookup_methodptr_type (to_type);
11474 else
11475 type = lookup_memberptr_type (to_type, domain);
11476
11477 return set_die_type (die, type, cu);
11478 }
11479
11480 /* Extract all information from a DW_TAG_reference_type DIE and add to
11481 the user defined type vector. */
11482
11483 static struct type *
11484 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
11485 {
11486 struct comp_unit_head *cu_header = &cu->header;
11487 struct type *type, *target_type;
11488 struct attribute *attr;
11489
11490 target_type = die_type (die, cu);
11491
11492 /* The die_type call above may have already set the type for this DIE. */
11493 type = get_die_type (die, cu);
11494 if (type)
11495 return type;
11496
11497 type = lookup_reference_type (target_type);
11498 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11499 if (attr)
11500 {
11501 TYPE_LENGTH (type) = DW_UNSND (attr);
11502 }
11503 else
11504 {
11505 TYPE_LENGTH (type) = cu_header->addr_size;
11506 }
11507 return set_die_type (die, type, cu);
11508 }
11509
11510 static struct type *
11511 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
11512 {
11513 struct type *base_type, *cv_type;
11514
11515 base_type = die_type (die, cu);
11516
11517 /* The die_type call above may have already set the type for this DIE. */
11518 cv_type = get_die_type (die, cu);
11519 if (cv_type)
11520 return cv_type;
11521
11522 /* In case the const qualifier is applied to an array type, the element type
11523 is so qualified, not the array type (section 6.7.3 of C99). */
11524 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
11525 {
11526 struct type *el_type, *inner_array;
11527
11528 base_type = copy_type (base_type);
11529 inner_array = base_type;
11530
11531 while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
11532 {
11533 TYPE_TARGET_TYPE (inner_array) =
11534 copy_type (TYPE_TARGET_TYPE (inner_array));
11535 inner_array = TYPE_TARGET_TYPE (inner_array);
11536 }
11537
11538 el_type = TYPE_TARGET_TYPE (inner_array);
11539 TYPE_TARGET_TYPE (inner_array) =
11540 make_cv_type (1, TYPE_VOLATILE (el_type), el_type, NULL);
11541
11542 return set_die_type (die, base_type, cu);
11543 }
11544
11545 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
11546 return set_die_type (die, cv_type, cu);
11547 }
11548
11549 static struct type *
11550 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
11551 {
11552 struct type *base_type, *cv_type;
11553
11554 base_type = die_type (die, cu);
11555
11556 /* The die_type call above may have already set the type for this DIE. */
11557 cv_type = get_die_type (die, cu);
11558 if (cv_type)
11559 return cv_type;
11560
11561 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
11562 return set_die_type (die, cv_type, cu);
11563 }
11564
11565 /* Extract all information from a DW_TAG_string_type DIE and add to
11566 the user defined type vector. It isn't really a user defined type,
11567 but it behaves like one, with other DIE's using an AT_user_def_type
11568 attribute to reference it. */
11569
11570 static struct type *
11571 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
11572 {
11573 struct objfile *objfile = cu->objfile;
11574 struct gdbarch *gdbarch = get_objfile_arch (objfile);
11575 struct type *type, *range_type, *index_type, *char_type;
11576 struct attribute *attr;
11577 unsigned int length;
11578
11579 attr = dwarf2_attr (die, DW_AT_string_length, cu);
11580 if (attr)
11581 {
11582 length = DW_UNSND (attr);
11583 }
11584 else
11585 {
11586 /* Check for the DW_AT_byte_size attribute. */
11587 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11588 if (attr)
11589 {
11590 length = DW_UNSND (attr);
11591 }
11592 else
11593 {
11594 length = 1;
11595 }
11596 }
11597
11598 index_type = objfile_type (objfile)->builtin_int;
11599 range_type = create_range_type (NULL, index_type, 1, length);
11600 char_type = language_string_char_type (cu->language_defn, gdbarch);
11601 type = create_string_type (NULL, char_type, range_type);
11602
11603 return set_die_type (die, type, cu);
11604 }
11605
11606 /* Handle DIES due to C code like:
11607
11608 struct foo
11609 {
11610 int (*funcp)(int a, long l);
11611 int b;
11612 };
11613
11614 ('funcp' generates a DW_TAG_subroutine_type DIE). */
11615
11616 static struct type *
11617 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
11618 {
11619 struct objfile *objfile = cu->objfile;
11620 struct type *type; /* Type that this function returns. */
11621 struct type *ftype; /* Function that returns above type. */
11622 struct attribute *attr;
11623
11624 type = die_type (die, cu);
11625
11626 /* The die_type call above may have already set the type for this DIE. */
11627 ftype = get_die_type (die, cu);
11628 if (ftype)
11629 return ftype;
11630
11631 ftype = lookup_function_type (type);
11632
11633 /* All functions in C++, Pascal and Java have prototypes. */
11634 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
11635 if ((attr && (DW_UNSND (attr) != 0))
11636 || cu->language == language_cplus
11637 || cu->language == language_java
11638 || cu->language == language_pascal)
11639 TYPE_PROTOTYPED (ftype) = 1;
11640 else if (producer_is_realview (cu->producer))
11641 /* RealView does not emit DW_AT_prototyped. We can not
11642 distinguish prototyped and unprototyped functions; default to
11643 prototyped, since that is more common in modern code (and
11644 RealView warns about unprototyped functions). */
11645 TYPE_PROTOTYPED (ftype) = 1;
11646
11647 /* Store the calling convention in the type if it's available in
11648 the subroutine die. Otherwise set the calling convention to
11649 the default value DW_CC_normal. */
11650 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
11651 if (attr)
11652 TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
11653 else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
11654 TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
11655 else
11656 TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
11657
11658 /* We need to add the subroutine type to the die immediately so
11659 we don't infinitely recurse when dealing with parameters
11660 declared as the same subroutine type. */
11661 set_die_type (die, ftype, cu);
11662
11663 if (die->child != NULL)
11664 {
11665 struct type *void_type = objfile_type (objfile)->builtin_void;
11666 struct die_info *child_die;
11667 int nparams, iparams;
11668
11669 /* Count the number of parameters.
11670 FIXME: GDB currently ignores vararg functions, but knows about
11671 vararg member functions. */
11672 nparams = 0;
11673 child_die = die->child;
11674 while (child_die && child_die->tag)
11675 {
11676 if (child_die->tag == DW_TAG_formal_parameter)
11677 nparams++;
11678 else if (child_die->tag == DW_TAG_unspecified_parameters)
11679 TYPE_VARARGS (ftype) = 1;
11680 child_die = sibling_die (child_die);
11681 }
11682
11683 /* Allocate storage for parameters and fill them in. */
11684 TYPE_NFIELDS (ftype) = nparams;
11685 TYPE_FIELDS (ftype) = (struct field *)
11686 TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
11687
11688 /* TYPE_FIELD_TYPE must never be NULL. Pre-fill the array to ensure it
11689 even if we error out during the parameters reading below. */
11690 for (iparams = 0; iparams < nparams; iparams++)
11691 TYPE_FIELD_TYPE (ftype, iparams) = void_type;
11692
11693 iparams = 0;
11694 child_die = die->child;
11695 while (child_die && child_die->tag)
11696 {
11697 if (child_die->tag == DW_TAG_formal_parameter)
11698 {
11699 struct type *arg_type;
11700
11701 /* DWARF version 2 has no clean way to discern C++
11702 static and non-static member functions. G++ helps
11703 GDB by marking the first parameter for non-static
11704 member functions (which is the this pointer) as
11705 artificial. We pass this information to
11706 dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
11707
11708 DWARF version 3 added DW_AT_object_pointer, which GCC
11709 4.5 does not yet generate. */
11710 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
11711 if (attr)
11712 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
11713 else
11714 {
11715 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
11716
11717 /* GCC/43521: In java, the formal parameter
11718 "this" is sometimes not marked with DW_AT_artificial. */
11719 if (cu->language == language_java)
11720 {
11721 const char *name = dwarf2_name (child_die, cu);
11722
11723 if (name && !strcmp (name, "this"))
11724 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 1;
11725 }
11726 }
11727 arg_type = die_type (child_die, cu);
11728
11729 /* RealView does not mark THIS as const, which the testsuite
11730 expects. GCC marks THIS as const in method definitions,
11731 but not in the class specifications (GCC PR 43053). */
11732 if (cu->language == language_cplus && !TYPE_CONST (arg_type)
11733 && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
11734 {
11735 int is_this = 0;
11736 struct dwarf2_cu *arg_cu = cu;
11737 const char *name = dwarf2_name (child_die, cu);
11738
11739 attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
11740 if (attr)
11741 {
11742 /* If the compiler emits this, use it. */
11743 if (follow_die_ref (die, attr, &arg_cu) == child_die)
11744 is_this = 1;
11745 }
11746 else if (name && strcmp (name, "this") == 0)
11747 /* Function definitions will have the argument names. */
11748 is_this = 1;
11749 else if (name == NULL && iparams == 0)
11750 /* Declarations may not have the names, so like
11751 elsewhere in GDB, assume an artificial first
11752 argument is "this". */
11753 is_this = 1;
11754
11755 if (is_this)
11756 arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
11757 arg_type, 0);
11758 }
11759
11760 TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
11761 iparams++;
11762 }
11763 child_die = sibling_die (child_die);
11764 }
11765 }
11766
11767 return ftype;
11768 }
11769
11770 static struct type *
11771 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
11772 {
11773 struct objfile *objfile = cu->objfile;
11774 const char *name = NULL;
11775 struct type *this_type, *target_type;
11776
11777 name = dwarf2_full_name (NULL, die, cu);
11778 this_type = init_type (TYPE_CODE_TYPEDEF, 0,
11779 TYPE_FLAG_TARGET_STUB, NULL, objfile);
11780 TYPE_NAME (this_type) = (char *) name;
11781 set_die_type (die, this_type, cu);
11782 target_type = die_type (die, cu);
11783 if (target_type != this_type)
11784 TYPE_TARGET_TYPE (this_type) = target_type;
11785 else
11786 {
11787 /* Self-referential typedefs are, it seems, not allowed by the DWARF
11788 spec and cause infinite loops in GDB. */
11789 complaint (&symfile_complaints,
11790 _("Self-referential DW_TAG_typedef "
11791 "- DIE at 0x%x [in module %s]"),
11792 die->offset.sect_off, objfile->name);
11793 TYPE_TARGET_TYPE (this_type) = NULL;
11794 }
11795 return this_type;
11796 }
11797
11798 /* Find a representation of a given base type and install
11799 it in the TYPE field of the die. */
11800
11801 static struct type *
11802 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
11803 {
11804 struct objfile *objfile = cu->objfile;
11805 struct type *type;
11806 struct attribute *attr;
11807 int encoding = 0, size = 0;
11808 char *name;
11809 enum type_code code = TYPE_CODE_INT;
11810 int type_flags = 0;
11811 struct type *target_type = NULL;
11812
11813 attr = dwarf2_attr (die, DW_AT_encoding, cu);
11814 if (attr)
11815 {
11816 encoding = DW_UNSND (attr);
11817 }
11818 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
11819 if (attr)
11820 {
11821 size = DW_UNSND (attr);
11822 }
11823 name = dwarf2_name (die, cu);
11824 if (!name)
11825 {
11826 complaint (&symfile_complaints,
11827 _("DW_AT_name missing from DW_TAG_base_type"));
11828 }
11829
11830 switch (encoding)
11831 {
11832 case DW_ATE_address:
11833 /* Turn DW_ATE_address into a void * pointer. */
11834 code = TYPE_CODE_PTR;
11835 type_flags |= TYPE_FLAG_UNSIGNED;
11836 target_type = init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
11837 break;
11838 case DW_ATE_boolean:
11839 code = TYPE_CODE_BOOL;
11840 type_flags |= TYPE_FLAG_UNSIGNED;
11841 break;
11842 case DW_ATE_complex_float:
11843 code = TYPE_CODE_COMPLEX;
11844 target_type = init_type (TYPE_CODE_FLT, size / 2, 0, NULL, objfile);
11845 break;
11846 case DW_ATE_decimal_float:
11847 code = TYPE_CODE_DECFLOAT;
11848 break;
11849 case DW_ATE_float:
11850 code = TYPE_CODE_FLT;
11851 break;
11852 case DW_ATE_signed:
11853 break;
11854 case DW_ATE_unsigned:
11855 type_flags |= TYPE_FLAG_UNSIGNED;
11856 if (cu->language == language_fortran
11857 && name
11858 && strncmp (name, "character(", sizeof ("character(") - 1) == 0)
11859 code = TYPE_CODE_CHAR;
11860 break;
11861 case DW_ATE_signed_char:
11862 if (cu->language == language_ada || cu->language == language_m2
11863 || cu->language == language_pascal
11864 || cu->language == language_fortran)
11865 code = TYPE_CODE_CHAR;
11866 break;
11867 case DW_ATE_unsigned_char:
11868 if (cu->language == language_ada || cu->language == language_m2
11869 || cu->language == language_pascal
11870 || cu->language == language_fortran)
11871 code = TYPE_CODE_CHAR;
11872 type_flags |= TYPE_FLAG_UNSIGNED;
11873 break;
11874 case DW_ATE_UTF:
11875 /* We just treat this as an integer and then recognize the
11876 type by name elsewhere. */
11877 break;
11878
11879 default:
11880 complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
11881 dwarf_type_encoding_name (encoding));
11882 break;
11883 }
11884
11885 type = init_type (code, size, type_flags, NULL, objfile);
11886 TYPE_NAME (type) = name;
11887 TYPE_TARGET_TYPE (type) = target_type;
11888
11889 if (name && strcmp (name, "char") == 0)
11890 TYPE_NOSIGN (type) = 1;
11891
11892 return set_die_type (die, type, cu);
11893 }
11894
11895 /* Read the given DW_AT_subrange DIE. */
11896
11897 static struct type *
11898 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
11899 {
11900 struct type *base_type;
11901 struct type *range_type;
11902 struct attribute *attr;
11903 LONGEST low, high;
11904 int low_default_is_valid;
11905 char *name;
11906 LONGEST negative_mask;
11907
11908 base_type = die_type (die, cu);
11909 /* Preserve BASE_TYPE's original type, just set its LENGTH. */
11910 check_typedef (base_type);
11911
11912 /* The die_type call above may have already set the type for this DIE. */
11913 range_type = get_die_type (die, cu);
11914 if (range_type)
11915 return range_type;
11916
11917 /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
11918 omitting DW_AT_lower_bound. */
11919 switch (cu->language)
11920 {
11921 case language_c:
11922 case language_cplus:
11923 low = 0;
11924 low_default_is_valid = 1;
11925 break;
11926 case language_fortran:
11927 low = 1;
11928 low_default_is_valid = 1;
11929 break;
11930 case language_d:
11931 case language_java:
11932 case language_objc:
11933 low = 0;
11934 low_default_is_valid = (cu->header.version >= 4);
11935 break;
11936 case language_ada:
11937 case language_m2:
11938 case language_pascal:
11939 low = 1;
11940 low_default_is_valid = (cu->header.version >= 4);
11941 break;
11942 default:
11943 low = 0;
11944 low_default_is_valid = 0;
11945 break;
11946 }
11947
11948 /* FIXME: For variable sized arrays either of these could be
11949 a variable rather than a constant value. We'll allow it,
11950 but we don't know how to handle it. */
11951 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
11952 if (attr)
11953 low = dwarf2_get_attr_constant_value (attr, low);
11954 else if (!low_default_is_valid)
11955 complaint (&symfile_complaints, _("Missing DW_AT_lower_bound "
11956 "- DIE at 0x%x [in module %s]"),
11957 die->offset.sect_off, cu->objfile->name);
11958
11959 attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
11960 if (attr)
11961 {
11962 if (attr_form_is_block (attr) || is_ref_attr (attr))
11963 {
11964 /* GCC encodes arrays with unspecified or dynamic length
11965 with a DW_FORM_block1 attribute or a reference attribute.
11966 FIXME: GDB does not yet know how to handle dynamic
11967 arrays properly, treat them as arrays with unspecified
11968 length for now.
11969
11970 FIXME: jimb/2003-09-22: GDB does not really know
11971 how to handle arrays of unspecified length
11972 either; we just represent them as zero-length
11973 arrays. Choose an appropriate upper bound given
11974 the lower bound we've computed above. */
11975 high = low - 1;
11976 }
11977 else
11978 high = dwarf2_get_attr_constant_value (attr, 1);
11979 }
11980 else
11981 {
11982 attr = dwarf2_attr (die, DW_AT_count, cu);
11983 if (attr)
11984 {
11985 int count = dwarf2_get_attr_constant_value (attr, 1);
11986 high = low + count - 1;
11987 }
11988 else
11989 {
11990 /* Unspecified array length. */
11991 high = low - 1;
11992 }
11993 }
11994
11995 /* Dwarf-2 specifications explicitly allows to create subrange types
11996 without specifying a base type.
11997 In that case, the base type must be set to the type of
11998 the lower bound, upper bound or count, in that order, if any of these
11999 three attributes references an object that has a type.
12000 If no base type is found, the Dwarf-2 specifications say that
12001 a signed integer type of size equal to the size of an address should
12002 be used.
12003 For the following C code: `extern char gdb_int [];'
12004 GCC produces an empty range DIE.
12005 FIXME: muller/2010-05-28: Possible references to object for low bound,
12006 high bound or count are not yet handled by this code. */
12007 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
12008 {
12009 struct objfile *objfile = cu->objfile;
12010 struct gdbarch *gdbarch = get_objfile_arch (objfile);
12011 int addr_size = gdbarch_addr_bit (gdbarch) /8;
12012 struct type *int_type = objfile_type (objfile)->builtin_int;
12013
12014 /* Test "int", "long int", and "long long int" objfile types,
12015 and select the first one having a size above or equal to the
12016 architecture address size. */
12017 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
12018 base_type = int_type;
12019 else
12020 {
12021 int_type = objfile_type (objfile)->builtin_long;
12022 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
12023 base_type = int_type;
12024 else
12025 {
12026 int_type = objfile_type (objfile)->builtin_long_long;
12027 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
12028 base_type = int_type;
12029 }
12030 }
12031 }
12032
12033 negative_mask =
12034 (LONGEST) -1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1);
12035 if (!TYPE_UNSIGNED (base_type) && (low & negative_mask))
12036 low |= negative_mask;
12037 if (!TYPE_UNSIGNED (base_type) && (high & negative_mask))
12038 high |= negative_mask;
12039
12040 range_type = create_range_type (NULL, base_type, low, high);
12041
12042 /* Mark arrays with dynamic length at least as an array of unspecified
12043 length. GDB could check the boundary but before it gets implemented at
12044 least allow accessing the array elements. */
12045 if (attr && attr_form_is_block (attr))
12046 TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
12047
12048 /* Ada expects an empty array on no boundary attributes. */
12049 if (attr == NULL && cu->language != language_ada)
12050 TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
12051
12052 name = dwarf2_name (die, cu);
12053 if (name)
12054 TYPE_NAME (range_type) = name;
12055
12056 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
12057 if (attr)
12058 TYPE_LENGTH (range_type) = DW_UNSND (attr);
12059
12060 set_die_type (die, range_type, cu);
12061
12062 /* set_die_type should be already done. */
12063 set_descriptive_type (range_type, die, cu);
12064
12065 return range_type;
12066 }
12067
12068 static struct type *
12069 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
12070 {
12071 struct type *type;
12072
12073 /* For now, we only support the C meaning of an unspecified type: void. */
12074
12075 type = init_type (TYPE_CODE_VOID, 0, 0, NULL, cu->objfile);
12076 TYPE_NAME (type) = dwarf2_name (die, cu);
12077
12078 return set_die_type (die, type, cu);
12079 }
12080
12081 /* Read a single die and all its descendents. Set the die's sibling
12082 field to NULL; set other fields in the die correctly, and set all
12083 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
12084 location of the info_ptr after reading all of those dies. PARENT
12085 is the parent of the die in question. */
12086
12087 static struct die_info *
12088 read_die_and_children (const struct die_reader_specs *reader,
12089 gdb_byte *info_ptr,
12090 gdb_byte **new_info_ptr,
12091 struct die_info *parent)
12092 {
12093 struct die_info *die;
12094 gdb_byte *cur_ptr;
12095 int has_children;
12096
12097 cur_ptr = read_full_die (reader, &die, info_ptr, &has_children);
12098 if (die == NULL)
12099 {
12100 *new_info_ptr = cur_ptr;
12101 return NULL;
12102 }
12103 store_in_ref_table (die, reader->cu);
12104
12105 if (has_children)
12106 die->child = read_die_and_siblings (reader, cur_ptr, new_info_ptr, die);
12107 else
12108 {
12109 die->child = NULL;
12110 *new_info_ptr = cur_ptr;
12111 }
12112
12113 die->sibling = NULL;
12114 die->parent = parent;
12115 return die;
12116 }
12117
12118 /* Read a die, all of its descendents, and all of its siblings; set
12119 all of the fields of all of the dies correctly. Arguments are as
12120 in read_die_and_children. */
12121
12122 static struct die_info *
12123 read_die_and_siblings (const struct die_reader_specs *reader,
12124 gdb_byte *info_ptr,
12125 gdb_byte **new_info_ptr,
12126 struct die_info *parent)
12127 {
12128 struct die_info *first_die, *last_sibling;
12129 gdb_byte *cur_ptr;
12130
12131 cur_ptr = info_ptr;
12132 first_die = last_sibling = NULL;
12133
12134 while (1)
12135 {
12136 struct die_info *die
12137 = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
12138
12139 if (die == NULL)
12140 {
12141 *new_info_ptr = cur_ptr;
12142 return first_die;
12143 }
12144
12145 if (!first_die)
12146 first_die = die;
12147 else
12148 last_sibling->sibling = die;
12149
12150 last_sibling = die;
12151 }
12152 }
12153
12154 /* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
12155 attributes.
12156 The caller is responsible for filling in the extra attributes
12157 and updating (*DIEP)->num_attrs.
12158 Set DIEP to point to a newly allocated die with its information,
12159 except for its child, sibling, and parent fields.
12160 Set HAS_CHILDREN to tell whether the die has children or not. */
12161
12162 static gdb_byte *
12163 read_full_die_1 (const struct die_reader_specs *reader,
12164 struct die_info **diep, gdb_byte *info_ptr,
12165 int *has_children, int num_extra_attrs)
12166 {
12167 unsigned int abbrev_number, bytes_read, i;
12168 sect_offset offset;
12169 struct abbrev_info *abbrev;
12170 struct die_info *die;
12171 struct dwarf2_cu *cu = reader->cu;
12172 bfd *abfd = reader->abfd;
12173
12174 offset.sect_off = info_ptr - reader->buffer;
12175 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
12176 info_ptr += bytes_read;
12177 if (!abbrev_number)
12178 {
12179 *diep = NULL;
12180 *has_children = 0;
12181 return info_ptr;
12182 }
12183
12184 abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
12185 if (!abbrev)
12186 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
12187 abbrev_number,
12188 bfd_get_filename (abfd));
12189
12190 die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
12191 die->offset = offset;
12192 die->tag = abbrev->tag;
12193 die->abbrev = abbrev_number;
12194
12195 /* Make the result usable.
12196 The caller needs to update num_attrs after adding the extra
12197 attributes. */
12198 die->num_attrs = abbrev->num_attrs;
12199
12200 for (i = 0; i < abbrev->num_attrs; ++i)
12201 info_ptr = read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
12202 info_ptr);
12203
12204 *diep = die;
12205 *has_children = abbrev->has_children;
12206 return info_ptr;
12207 }
12208
12209 /* Read a die and all its attributes.
12210 Set DIEP to point to a newly allocated die with its information,
12211 except for its child, sibling, and parent fields.
12212 Set HAS_CHILDREN to tell whether the die has children or not. */
12213
12214 static gdb_byte *
12215 read_full_die (const struct die_reader_specs *reader,
12216 struct die_info **diep, gdb_byte *info_ptr,
12217 int *has_children)
12218 {
12219 return read_full_die_1 (reader, diep, info_ptr, has_children, 0);
12220 }
12221 \f
12222 /* Abbreviation tables.
12223
12224 In DWARF version 2, the description of the debugging information is
12225 stored in a separate .debug_abbrev section. Before we read any
12226 dies from a section we read in all abbreviations and install them
12227 in a hash table. */
12228
12229 /* Allocate space for a struct abbrev_info object in ABBREV_TABLE. */
12230
12231 static struct abbrev_info *
12232 abbrev_table_alloc_abbrev (struct abbrev_table *abbrev_table)
12233 {
12234 struct abbrev_info *abbrev;
12235
12236 abbrev = (struct abbrev_info *)
12237 obstack_alloc (&abbrev_table->abbrev_obstack, sizeof (struct abbrev_info));
12238 memset (abbrev, 0, sizeof (struct abbrev_info));
12239 return abbrev;
12240 }
12241
12242 /* Add an abbreviation to the table. */
12243
12244 static void
12245 abbrev_table_add_abbrev (struct abbrev_table *abbrev_table,
12246 unsigned int abbrev_number,
12247 struct abbrev_info *abbrev)
12248 {
12249 unsigned int hash_number;
12250
12251 hash_number = abbrev_number % ABBREV_HASH_SIZE;
12252 abbrev->next = abbrev_table->abbrevs[hash_number];
12253 abbrev_table->abbrevs[hash_number] = abbrev;
12254 }
12255
12256 /* Look up an abbrev in the table.
12257 Returns NULL if the abbrev is not found. */
12258
12259 static struct abbrev_info *
12260 abbrev_table_lookup_abbrev (const struct abbrev_table *abbrev_table,
12261 unsigned int abbrev_number)
12262 {
12263 unsigned int hash_number;
12264 struct abbrev_info *abbrev;
12265
12266 hash_number = abbrev_number % ABBREV_HASH_SIZE;
12267 abbrev = abbrev_table->abbrevs[hash_number];
12268
12269 while (abbrev)
12270 {
12271 if (abbrev->number == abbrev_number)
12272 return abbrev;
12273 abbrev = abbrev->next;
12274 }
12275 return NULL;
12276 }
12277
12278 /* Read in an abbrev table. */
12279
12280 static struct abbrev_table *
12281 abbrev_table_read_table (struct dwarf2_section_info *section,
12282 sect_offset offset)
12283 {
12284 struct objfile *objfile = dwarf2_per_objfile->objfile;
12285 bfd *abfd = section->asection->owner;
12286 struct abbrev_table *abbrev_table;
12287 gdb_byte *abbrev_ptr;
12288 struct abbrev_info *cur_abbrev;
12289 unsigned int abbrev_number, bytes_read, abbrev_name;
12290 unsigned int abbrev_form;
12291 struct attr_abbrev *cur_attrs;
12292 unsigned int allocated_attrs;
12293
12294 abbrev_table = XMALLOC (struct abbrev_table);
12295 abbrev_table->offset = offset;
12296 obstack_init (&abbrev_table->abbrev_obstack);
12297 abbrev_table->abbrevs = obstack_alloc (&abbrev_table->abbrev_obstack,
12298 (ABBREV_HASH_SIZE
12299 * sizeof (struct abbrev_info *)));
12300 memset (abbrev_table->abbrevs, 0,
12301 ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
12302
12303 dwarf2_read_section (objfile, section);
12304 abbrev_ptr = section->buffer + offset.sect_off;
12305 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
12306 abbrev_ptr += bytes_read;
12307
12308 allocated_attrs = ATTR_ALLOC_CHUNK;
12309 cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
12310
12311 /* Loop until we reach an abbrev number of 0. */
12312 while (abbrev_number)
12313 {
12314 cur_abbrev = abbrev_table_alloc_abbrev (abbrev_table);
12315
12316 /* read in abbrev header */
12317 cur_abbrev->number = abbrev_number;
12318 cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
12319 abbrev_ptr += bytes_read;
12320 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
12321 abbrev_ptr += 1;
12322
12323 /* now read in declarations */
12324 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
12325 abbrev_ptr += bytes_read;
12326 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
12327 abbrev_ptr += bytes_read;
12328 while (abbrev_name)
12329 {
12330 if (cur_abbrev->num_attrs == allocated_attrs)
12331 {
12332 allocated_attrs += ATTR_ALLOC_CHUNK;
12333 cur_attrs
12334 = xrealloc (cur_attrs, (allocated_attrs
12335 * sizeof (struct attr_abbrev)));
12336 }
12337
12338 cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
12339 cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
12340 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
12341 abbrev_ptr += bytes_read;
12342 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
12343 abbrev_ptr += bytes_read;
12344 }
12345
12346 cur_abbrev->attrs = obstack_alloc (&abbrev_table->abbrev_obstack,
12347 (cur_abbrev->num_attrs
12348 * sizeof (struct attr_abbrev)));
12349 memcpy (cur_abbrev->attrs, cur_attrs,
12350 cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
12351
12352 abbrev_table_add_abbrev (abbrev_table, abbrev_number, cur_abbrev);
12353
12354 /* Get next abbreviation.
12355 Under Irix6 the abbreviations for a compilation unit are not
12356 always properly terminated with an abbrev number of 0.
12357 Exit loop if we encounter an abbreviation which we have
12358 already read (which means we are about to read the abbreviations
12359 for the next compile unit) or if the end of the abbreviation
12360 table is reached. */
12361 if ((unsigned int) (abbrev_ptr - section->buffer) >= section->size)
12362 break;
12363 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
12364 abbrev_ptr += bytes_read;
12365 if (abbrev_table_lookup_abbrev (abbrev_table, abbrev_number) != NULL)
12366 break;
12367 }
12368
12369 xfree (cur_attrs);
12370 return abbrev_table;
12371 }
12372
12373 /* Free the resources held by ABBREV_TABLE. */
12374
12375 static void
12376 abbrev_table_free (struct abbrev_table *abbrev_table)
12377 {
12378 obstack_free (&abbrev_table->abbrev_obstack, NULL);
12379 xfree (abbrev_table);
12380 }
12381
12382 /* Same as abbrev_table_free but as a cleanup.
12383 We pass in a pointer to the pointer to the table so that we can
12384 set the pointer to NULL when we're done. It also simplifies
12385 build_type_unit_groups. */
12386
12387 static void
12388 abbrev_table_free_cleanup (void *table_ptr)
12389 {
12390 struct abbrev_table **abbrev_table_ptr = table_ptr;
12391
12392 if (*abbrev_table_ptr != NULL)
12393 abbrev_table_free (*abbrev_table_ptr);
12394 *abbrev_table_ptr = NULL;
12395 }
12396
12397 /* Read the abbrev table for CU from ABBREV_SECTION. */
12398
12399 static void
12400 dwarf2_read_abbrevs (struct dwarf2_cu *cu,
12401 struct dwarf2_section_info *abbrev_section)
12402 {
12403 cu->abbrev_table =
12404 abbrev_table_read_table (abbrev_section, cu->header.abbrev_offset);
12405 }
12406
12407 /* Release the memory used by the abbrev table for a compilation unit. */
12408
12409 static void
12410 dwarf2_free_abbrev_table (void *ptr_to_cu)
12411 {
12412 struct dwarf2_cu *cu = ptr_to_cu;
12413
12414 abbrev_table_free (cu->abbrev_table);
12415 /* Set this to NULL so that we SEGV if we try to read it later,
12416 and also because free_comp_unit verifies this is NULL. */
12417 cu->abbrev_table = NULL;
12418 }
12419 \f
12420 /* Returns nonzero if TAG represents a type that we might generate a partial
12421 symbol for. */
12422
12423 static int
12424 is_type_tag_for_partial (int tag)
12425 {
12426 switch (tag)
12427 {
12428 #if 0
12429 /* Some types that would be reasonable to generate partial symbols for,
12430 that we don't at present. */
12431 case DW_TAG_array_type:
12432 case DW_TAG_file_type:
12433 case DW_TAG_ptr_to_member_type:
12434 case DW_TAG_set_type:
12435 case DW_TAG_string_type:
12436 case DW_TAG_subroutine_type:
12437 #endif
12438 case DW_TAG_base_type:
12439 case DW_TAG_class_type:
12440 case DW_TAG_interface_type:
12441 case DW_TAG_enumeration_type:
12442 case DW_TAG_structure_type:
12443 case DW_TAG_subrange_type:
12444 case DW_TAG_typedef:
12445 case DW_TAG_union_type:
12446 return 1;
12447 default:
12448 return 0;
12449 }
12450 }
12451
12452 /* Load all DIEs that are interesting for partial symbols into memory. */
12453
12454 static struct partial_die_info *
12455 load_partial_dies (const struct die_reader_specs *reader,
12456 gdb_byte *info_ptr, int building_psymtab)
12457 {
12458 struct dwarf2_cu *cu = reader->cu;
12459 struct objfile *objfile = cu->objfile;
12460 struct partial_die_info *part_die;
12461 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
12462 struct abbrev_info *abbrev;
12463 unsigned int bytes_read;
12464 unsigned int load_all = 0;
12465 int nesting_level = 1;
12466
12467 parent_die = NULL;
12468 last_die = NULL;
12469
12470 gdb_assert (cu->per_cu != NULL);
12471 if (cu->per_cu->load_all_dies)
12472 load_all = 1;
12473
12474 cu->partial_dies
12475 = htab_create_alloc_ex (cu->header.length / 12,
12476 partial_die_hash,
12477 partial_die_eq,
12478 NULL,
12479 &cu->comp_unit_obstack,
12480 hashtab_obstack_allocate,
12481 dummy_obstack_deallocate);
12482
12483 part_die = obstack_alloc (&cu->comp_unit_obstack,
12484 sizeof (struct partial_die_info));
12485
12486 while (1)
12487 {
12488 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
12489
12490 /* A NULL abbrev means the end of a series of children. */
12491 if (abbrev == NULL)
12492 {
12493 if (--nesting_level == 0)
12494 {
12495 /* PART_DIE was probably the last thing allocated on the
12496 comp_unit_obstack, so we could call obstack_free
12497 here. We don't do that because the waste is small,
12498 and will be cleaned up when we're done with this
12499 compilation unit. This way, we're also more robust
12500 against other users of the comp_unit_obstack. */
12501 return first_die;
12502 }
12503 info_ptr += bytes_read;
12504 last_die = parent_die;
12505 parent_die = parent_die->die_parent;
12506 continue;
12507 }
12508
12509 /* Check for template arguments. We never save these; if
12510 they're seen, we just mark the parent, and go on our way. */
12511 if (parent_die != NULL
12512 && cu->language == language_cplus
12513 && (abbrev->tag == DW_TAG_template_type_param
12514 || abbrev->tag == DW_TAG_template_value_param))
12515 {
12516 parent_die->has_template_arguments = 1;
12517
12518 if (!load_all)
12519 {
12520 /* We don't need a partial DIE for the template argument. */
12521 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
12522 continue;
12523 }
12524 }
12525
12526 /* We only recurse into c++ subprograms looking for template arguments.
12527 Skip their other children. */
12528 if (!load_all
12529 && cu->language == language_cplus
12530 && parent_die != NULL
12531 && parent_die->tag == DW_TAG_subprogram)
12532 {
12533 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
12534 continue;
12535 }
12536
12537 /* Check whether this DIE is interesting enough to save. Normally
12538 we would not be interested in members here, but there may be
12539 later variables referencing them via DW_AT_specification (for
12540 static members). */
12541 if (!load_all
12542 && !is_type_tag_for_partial (abbrev->tag)
12543 && abbrev->tag != DW_TAG_constant
12544 && abbrev->tag != DW_TAG_enumerator
12545 && abbrev->tag != DW_TAG_subprogram
12546 && abbrev->tag != DW_TAG_lexical_block
12547 && abbrev->tag != DW_TAG_variable
12548 && abbrev->tag != DW_TAG_namespace
12549 && abbrev->tag != DW_TAG_module
12550 && abbrev->tag != DW_TAG_member
12551 && abbrev->tag != DW_TAG_imported_unit)
12552 {
12553 /* Otherwise we skip to the next sibling, if any. */
12554 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
12555 continue;
12556 }
12557
12558 info_ptr = read_partial_die (reader, part_die, abbrev, bytes_read,
12559 info_ptr);
12560
12561 /* This two-pass algorithm for processing partial symbols has a
12562 high cost in cache pressure. Thus, handle some simple cases
12563 here which cover the majority of C partial symbols. DIEs
12564 which neither have specification tags in them, nor could have
12565 specification tags elsewhere pointing at them, can simply be
12566 processed and discarded.
12567
12568 This segment is also optional; scan_partial_symbols and
12569 add_partial_symbol will handle these DIEs if we chain
12570 them in normally. When compilers which do not emit large
12571 quantities of duplicate debug information are more common,
12572 this code can probably be removed. */
12573
12574 /* Any complete simple types at the top level (pretty much all
12575 of them, for a language without namespaces), can be processed
12576 directly. */
12577 if (parent_die == NULL
12578 && part_die->has_specification == 0
12579 && part_die->is_declaration == 0
12580 && ((part_die->tag == DW_TAG_typedef && !part_die->has_children)
12581 || part_die->tag == DW_TAG_base_type
12582 || part_die->tag == DW_TAG_subrange_type))
12583 {
12584 if (building_psymtab && part_die->name != NULL)
12585 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
12586 VAR_DOMAIN, LOC_TYPEDEF,
12587 &objfile->static_psymbols,
12588 0, (CORE_ADDR) 0, cu->language, objfile);
12589 info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
12590 continue;
12591 }
12592
12593 /* The exception for DW_TAG_typedef with has_children above is
12594 a workaround of GCC PR debug/47510. In the case of this complaint
12595 type_name_no_tag_or_error will error on such types later.
12596
12597 GDB skipped children of DW_TAG_typedef by the shortcut above and then
12598 it could not find the child DIEs referenced later, this is checked
12599 above. In correct DWARF DW_TAG_typedef should have no children. */
12600
12601 if (part_die->tag == DW_TAG_typedef && part_die->has_children)
12602 complaint (&symfile_complaints,
12603 _("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
12604 "- DIE at 0x%x [in module %s]"),
12605 part_die->offset.sect_off, objfile->name);
12606
12607 /* If we're at the second level, and we're an enumerator, and
12608 our parent has no specification (meaning possibly lives in a
12609 namespace elsewhere), then we can add the partial symbol now
12610 instead of queueing it. */
12611 if (part_die->tag == DW_TAG_enumerator
12612 && parent_die != NULL
12613 && parent_die->die_parent == NULL
12614 && parent_die->tag == DW_TAG_enumeration_type
12615 && parent_die->has_specification == 0)
12616 {
12617 if (part_die->name == NULL)
12618 complaint (&symfile_complaints,
12619 _("malformed enumerator DIE ignored"));
12620 else if (building_psymtab)
12621 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
12622 VAR_DOMAIN, LOC_CONST,
12623 (cu->language == language_cplus
12624 || cu->language == language_java)
12625 ? &objfile->global_psymbols
12626 : &objfile->static_psymbols,
12627 0, (CORE_ADDR) 0, cu->language, objfile);
12628
12629 info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
12630 continue;
12631 }
12632
12633 /* We'll save this DIE so link it in. */
12634 part_die->die_parent = parent_die;
12635 part_die->die_sibling = NULL;
12636 part_die->die_child = NULL;
12637
12638 if (last_die && last_die == parent_die)
12639 last_die->die_child = part_die;
12640 else if (last_die)
12641 last_die->die_sibling = part_die;
12642
12643 last_die = part_die;
12644
12645 if (first_die == NULL)
12646 first_die = part_die;
12647
12648 /* Maybe add the DIE to the hash table. Not all DIEs that we
12649 find interesting need to be in the hash table, because we
12650 also have the parent/sibling/child chains; only those that we
12651 might refer to by offset later during partial symbol reading.
12652
12653 For now this means things that might have be the target of a
12654 DW_AT_specification, DW_AT_abstract_origin, or
12655 DW_AT_extension. DW_AT_extension will refer only to
12656 namespaces; DW_AT_abstract_origin refers to functions (and
12657 many things under the function DIE, but we do not recurse
12658 into function DIEs during partial symbol reading) and
12659 possibly variables as well; DW_AT_specification refers to
12660 declarations. Declarations ought to have the DW_AT_declaration
12661 flag. It happens that GCC forgets to put it in sometimes, but
12662 only for functions, not for types.
12663
12664 Adding more things than necessary to the hash table is harmless
12665 except for the performance cost. Adding too few will result in
12666 wasted time in find_partial_die, when we reread the compilation
12667 unit with load_all_dies set. */
12668
12669 if (load_all
12670 || abbrev->tag == DW_TAG_constant
12671 || abbrev->tag == DW_TAG_subprogram
12672 || abbrev->tag == DW_TAG_variable
12673 || abbrev->tag == DW_TAG_namespace
12674 || part_die->is_declaration)
12675 {
12676 void **slot;
12677
12678 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
12679 part_die->offset.sect_off, INSERT);
12680 *slot = part_die;
12681 }
12682
12683 part_die = obstack_alloc (&cu->comp_unit_obstack,
12684 sizeof (struct partial_die_info));
12685
12686 /* For some DIEs we want to follow their children (if any). For C
12687 we have no reason to follow the children of structures; for other
12688 languages we have to, so that we can get at method physnames
12689 to infer fully qualified class names, for DW_AT_specification,
12690 and for C++ template arguments. For C++, we also look one level
12691 inside functions to find template arguments (if the name of the
12692 function does not already contain the template arguments).
12693
12694 For Ada, we need to scan the children of subprograms and lexical
12695 blocks as well because Ada allows the definition of nested
12696 entities that could be interesting for the debugger, such as
12697 nested subprograms for instance. */
12698 if (last_die->has_children
12699 && (load_all
12700 || last_die->tag == DW_TAG_namespace
12701 || last_die->tag == DW_TAG_module
12702 || last_die->tag == DW_TAG_enumeration_type
12703 || (cu->language == language_cplus
12704 && last_die->tag == DW_TAG_subprogram
12705 && (last_die->name == NULL
12706 || strchr (last_die->name, '<') == NULL))
12707 || (cu->language != language_c
12708 && (last_die->tag == DW_TAG_class_type
12709 || last_die->tag == DW_TAG_interface_type
12710 || last_die->tag == DW_TAG_structure_type
12711 || last_die->tag == DW_TAG_union_type))
12712 || (cu->language == language_ada
12713 && (last_die->tag == DW_TAG_subprogram
12714 || last_die->tag == DW_TAG_lexical_block))))
12715 {
12716 nesting_level++;
12717 parent_die = last_die;
12718 continue;
12719 }
12720
12721 /* Otherwise we skip to the next sibling, if any. */
12722 info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
12723
12724 /* Back to the top, do it again. */
12725 }
12726 }
12727
12728 /* Read a minimal amount of information into the minimal die structure. */
12729
12730 static gdb_byte *
12731 read_partial_die (const struct die_reader_specs *reader,
12732 struct partial_die_info *part_die,
12733 struct abbrev_info *abbrev, unsigned int abbrev_len,
12734 gdb_byte *info_ptr)
12735 {
12736 struct dwarf2_cu *cu = reader->cu;
12737 struct objfile *objfile = cu->objfile;
12738 gdb_byte *buffer = reader->buffer;
12739 unsigned int i;
12740 struct attribute attr;
12741 int has_low_pc_attr = 0;
12742 int has_high_pc_attr = 0;
12743 int high_pc_relative = 0;
12744
12745 memset (part_die, 0, sizeof (struct partial_die_info));
12746
12747 part_die->offset.sect_off = info_ptr - buffer;
12748
12749 info_ptr += abbrev_len;
12750
12751 if (abbrev == NULL)
12752 return info_ptr;
12753
12754 part_die->tag = abbrev->tag;
12755 part_die->has_children = abbrev->has_children;
12756
12757 for (i = 0; i < abbrev->num_attrs; ++i)
12758 {
12759 info_ptr = read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
12760
12761 /* Store the data if it is of an attribute we want to keep in a
12762 partial symbol table. */
12763 switch (attr.name)
12764 {
12765 case DW_AT_name:
12766 switch (part_die->tag)
12767 {
12768 case DW_TAG_compile_unit:
12769 case DW_TAG_partial_unit:
12770 case DW_TAG_type_unit:
12771 /* Compilation units have a DW_AT_name that is a filename, not
12772 a source language identifier. */
12773 case DW_TAG_enumeration_type:
12774 case DW_TAG_enumerator:
12775 /* These tags always have simple identifiers already; no need
12776 to canonicalize them. */
12777 part_die->name = DW_STRING (&attr);
12778 break;
12779 default:
12780 part_die->name
12781 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
12782 &objfile->objfile_obstack);
12783 break;
12784 }
12785 break;
12786 case DW_AT_linkage_name:
12787 case DW_AT_MIPS_linkage_name:
12788 /* Note that both forms of linkage name might appear. We
12789 assume they will be the same, and we only store the last
12790 one we see. */
12791 if (cu->language == language_ada)
12792 part_die->name = DW_STRING (&attr);
12793 part_die->linkage_name = DW_STRING (&attr);
12794 break;
12795 case DW_AT_low_pc:
12796 has_low_pc_attr = 1;
12797 part_die->lowpc = DW_ADDR (&attr);
12798 break;
12799 case DW_AT_high_pc:
12800 has_high_pc_attr = 1;
12801 if (attr.form == DW_FORM_addr
12802 || attr.form == DW_FORM_GNU_addr_index)
12803 part_die->highpc = DW_ADDR (&attr);
12804 else
12805 {
12806 high_pc_relative = 1;
12807 part_die->highpc = DW_UNSND (&attr);
12808 }
12809 break;
12810 case DW_AT_location:
12811 /* Support the .debug_loc offsets. */
12812 if (attr_form_is_block (&attr))
12813 {
12814 part_die->d.locdesc = DW_BLOCK (&attr);
12815 }
12816 else if (attr_form_is_section_offset (&attr))
12817 {
12818 dwarf2_complex_location_expr_complaint ();
12819 }
12820 else
12821 {
12822 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
12823 "partial symbol information");
12824 }
12825 break;
12826 case DW_AT_external:
12827 part_die->is_external = DW_UNSND (&attr);
12828 break;
12829 case DW_AT_declaration:
12830 part_die->is_declaration = DW_UNSND (&attr);
12831 break;
12832 case DW_AT_type:
12833 part_die->has_type = 1;
12834 break;
12835 case DW_AT_abstract_origin:
12836 case DW_AT_specification:
12837 case DW_AT_extension:
12838 part_die->has_specification = 1;
12839 part_die->spec_offset = dwarf2_get_ref_die_offset (&attr);
12840 part_die->spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
12841 || cu->per_cu->is_dwz);
12842 break;
12843 case DW_AT_sibling:
12844 /* Ignore absolute siblings, they might point outside of
12845 the current compile unit. */
12846 if (attr.form == DW_FORM_ref_addr)
12847 complaint (&symfile_complaints,
12848 _("ignoring absolute DW_AT_sibling"));
12849 else
12850 part_die->sibling = buffer + dwarf2_get_ref_die_offset (&attr).sect_off;
12851 break;
12852 case DW_AT_byte_size:
12853 part_die->has_byte_size = 1;
12854 break;
12855 case DW_AT_calling_convention:
12856 /* DWARF doesn't provide a way to identify a program's source-level
12857 entry point. DW_AT_calling_convention attributes are only meant
12858 to describe functions' calling conventions.
12859
12860 However, because it's a necessary piece of information in
12861 Fortran, and because DW_CC_program is the only piece of debugging
12862 information whose definition refers to a 'main program' at all,
12863 several compilers have begun marking Fortran main programs with
12864 DW_CC_program --- even when those functions use the standard
12865 calling conventions.
12866
12867 So until DWARF specifies a way to provide this information and
12868 compilers pick up the new representation, we'll support this
12869 practice. */
12870 if (DW_UNSND (&attr) == DW_CC_program
12871 && cu->language == language_fortran)
12872 {
12873 set_main_name (part_die->name);
12874
12875 /* As this DIE has a static linkage the name would be difficult
12876 to look up later. */
12877 language_of_main = language_fortran;
12878 }
12879 break;
12880 case DW_AT_inline:
12881 if (DW_UNSND (&attr) == DW_INL_inlined
12882 || DW_UNSND (&attr) == DW_INL_declared_inlined)
12883 part_die->may_be_inlined = 1;
12884 break;
12885
12886 case DW_AT_import:
12887 if (part_die->tag == DW_TAG_imported_unit)
12888 {
12889 part_die->d.offset = dwarf2_get_ref_die_offset (&attr);
12890 part_die->is_dwz = (attr.form == DW_FORM_GNU_ref_alt
12891 || cu->per_cu->is_dwz);
12892 }
12893 break;
12894
12895 default:
12896 break;
12897 }
12898 }
12899
12900 if (high_pc_relative)
12901 part_die->highpc += part_die->lowpc;
12902
12903 if (has_low_pc_attr && has_high_pc_attr)
12904 {
12905 /* When using the GNU linker, .gnu.linkonce. sections are used to
12906 eliminate duplicate copies of functions and vtables and such.
12907 The linker will arbitrarily choose one and discard the others.
12908 The AT_*_pc values for such functions refer to local labels in
12909 these sections. If the section from that file was discarded, the
12910 labels are not in the output, so the relocs get a value of 0.
12911 If this is a discarded function, mark the pc bounds as invalid,
12912 so that GDB will ignore it. */
12913 if (part_die->lowpc == 0 && !dwarf2_per_objfile->has_section_at_zero)
12914 {
12915 struct gdbarch *gdbarch = get_objfile_arch (objfile);
12916
12917 complaint (&symfile_complaints,
12918 _("DW_AT_low_pc %s is zero "
12919 "for DIE at 0x%x [in module %s]"),
12920 paddress (gdbarch, part_die->lowpc),
12921 part_die->offset.sect_off, objfile->name);
12922 }
12923 /* dwarf2_get_pc_bounds has also the strict low < high requirement. */
12924 else if (part_die->lowpc >= part_die->highpc)
12925 {
12926 struct gdbarch *gdbarch = get_objfile_arch (objfile);
12927
12928 complaint (&symfile_complaints,
12929 _("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
12930 "for DIE at 0x%x [in module %s]"),
12931 paddress (gdbarch, part_die->lowpc),
12932 paddress (gdbarch, part_die->highpc),
12933 part_die->offset.sect_off, objfile->name);
12934 }
12935 else
12936 part_die->has_pc_info = 1;
12937 }
12938
12939 return info_ptr;
12940 }
12941
12942 /* Find a cached partial DIE at OFFSET in CU. */
12943
12944 static struct partial_die_info *
12945 find_partial_die_in_comp_unit (sect_offset offset, struct dwarf2_cu *cu)
12946 {
12947 struct partial_die_info *lookup_die = NULL;
12948 struct partial_die_info part_die;
12949
12950 part_die.offset = offset;
12951 lookup_die = htab_find_with_hash (cu->partial_dies, &part_die,
12952 offset.sect_off);
12953
12954 return lookup_die;
12955 }
12956
12957 /* Find a partial DIE at OFFSET, which may or may not be in CU,
12958 except in the case of .debug_types DIEs which do not reference
12959 outside their CU (they do however referencing other types via
12960 DW_FORM_ref_sig8). */
12961
12962 static struct partial_die_info *
12963 find_partial_die (sect_offset offset, int offset_in_dwz, struct dwarf2_cu *cu)
12964 {
12965 struct objfile *objfile = cu->objfile;
12966 struct dwarf2_per_cu_data *per_cu = NULL;
12967 struct partial_die_info *pd = NULL;
12968
12969 if (offset_in_dwz == cu->per_cu->is_dwz
12970 && offset_in_cu_p (&cu->header, offset))
12971 {
12972 pd = find_partial_die_in_comp_unit (offset, cu);
12973 if (pd != NULL)
12974 return pd;
12975 /* We missed recording what we needed.
12976 Load all dies and try again. */
12977 per_cu = cu->per_cu;
12978 }
12979 else
12980 {
12981 /* TUs don't reference other CUs/TUs (except via type signatures). */
12982 if (cu->per_cu->is_debug_types)
12983 {
12984 error (_("Dwarf Error: Type Unit at offset 0x%lx contains"
12985 " external reference to offset 0x%lx [in module %s].\n"),
12986 (long) cu->header.offset.sect_off, (long) offset.sect_off,
12987 bfd_get_filename (objfile->obfd));
12988 }
12989 per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
12990 objfile);
12991
12992 if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
12993 load_partial_comp_unit (per_cu);
12994
12995 per_cu->cu->last_used = 0;
12996 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
12997 }
12998
12999 /* If we didn't find it, and not all dies have been loaded,
13000 load them all and try again. */
13001
13002 if (pd == NULL && per_cu->load_all_dies == 0)
13003 {
13004 per_cu->load_all_dies = 1;
13005
13006 /* This is nasty. When we reread the DIEs, somewhere up the call chain
13007 THIS_CU->cu may already be in use. So we can't just free it and
13008 replace its DIEs with the ones we read in. Instead, we leave those
13009 DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
13010 and clobber THIS_CU->cu->partial_dies with the hash table for the new
13011 set. */
13012 load_partial_comp_unit (per_cu);
13013
13014 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
13015 }
13016
13017 if (pd == NULL)
13018 internal_error (__FILE__, __LINE__,
13019 _("could not find partial DIE 0x%x "
13020 "in cache [from module %s]\n"),
13021 offset.sect_off, bfd_get_filename (objfile->obfd));
13022 return pd;
13023 }
13024
13025 /* See if we can figure out if the class lives in a namespace. We do
13026 this by looking for a member function; its demangled name will
13027 contain namespace info, if there is any. */
13028
13029 static void
13030 guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
13031 struct dwarf2_cu *cu)
13032 {
13033 /* NOTE: carlton/2003-10-07: Getting the info this way changes
13034 what template types look like, because the demangler
13035 frequently doesn't give the same name as the debug info. We
13036 could fix this by only using the demangled name to get the
13037 prefix (but see comment in read_structure_type). */
13038
13039 struct partial_die_info *real_pdi;
13040 struct partial_die_info *child_pdi;
13041
13042 /* If this DIE (this DIE's specification, if any) has a parent, then
13043 we should not do this. We'll prepend the parent's fully qualified
13044 name when we create the partial symbol. */
13045
13046 real_pdi = struct_pdi;
13047 while (real_pdi->has_specification)
13048 real_pdi = find_partial_die (real_pdi->spec_offset,
13049 real_pdi->spec_is_dwz, cu);
13050
13051 if (real_pdi->die_parent != NULL)
13052 return;
13053
13054 for (child_pdi = struct_pdi->die_child;
13055 child_pdi != NULL;
13056 child_pdi = child_pdi->die_sibling)
13057 {
13058 if (child_pdi->tag == DW_TAG_subprogram
13059 && child_pdi->linkage_name != NULL)
13060 {
13061 char *actual_class_name
13062 = language_class_name_from_physname (cu->language_defn,
13063 child_pdi->linkage_name);
13064 if (actual_class_name != NULL)
13065 {
13066 struct_pdi->name
13067 = obsavestring (actual_class_name,
13068 strlen (actual_class_name),
13069 &cu->objfile->objfile_obstack);
13070 xfree (actual_class_name);
13071 }
13072 break;
13073 }
13074 }
13075 }
13076
13077 /* Adjust PART_DIE before generating a symbol for it. This function
13078 may set the is_external flag or change the DIE's name. */
13079
13080 static void
13081 fixup_partial_die (struct partial_die_info *part_die,
13082 struct dwarf2_cu *cu)
13083 {
13084 /* Once we've fixed up a die, there's no point in doing so again.
13085 This also avoids a memory leak if we were to call
13086 guess_partial_die_structure_name multiple times. */
13087 if (part_die->fixup_called)
13088 return;
13089
13090 /* If we found a reference attribute and the DIE has no name, try
13091 to find a name in the referred to DIE. */
13092
13093 if (part_die->name == NULL && part_die->has_specification)
13094 {
13095 struct partial_die_info *spec_die;
13096
13097 spec_die = find_partial_die (part_die->spec_offset,
13098 part_die->spec_is_dwz, cu);
13099
13100 fixup_partial_die (spec_die, cu);
13101
13102 if (spec_die->name)
13103 {
13104 part_die->name = spec_die->name;
13105
13106 /* Copy DW_AT_external attribute if it is set. */
13107 if (spec_die->is_external)
13108 part_die->is_external = spec_die->is_external;
13109 }
13110 }
13111
13112 /* Set default names for some unnamed DIEs. */
13113
13114 if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
13115 part_die->name = CP_ANONYMOUS_NAMESPACE_STR;
13116
13117 /* If there is no parent die to provide a namespace, and there are
13118 children, see if we can determine the namespace from their linkage
13119 name. */
13120 if (cu->language == language_cplus
13121 && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
13122 && part_die->die_parent == NULL
13123 && part_die->has_children
13124 && (part_die->tag == DW_TAG_class_type
13125 || part_die->tag == DW_TAG_structure_type
13126 || part_die->tag == DW_TAG_union_type))
13127 guess_partial_die_structure_name (part_die, cu);
13128
13129 /* GCC might emit a nameless struct or union that has a linkage
13130 name. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
13131 if (part_die->name == NULL
13132 && (part_die->tag == DW_TAG_class_type
13133 || part_die->tag == DW_TAG_interface_type
13134 || part_die->tag == DW_TAG_structure_type
13135 || part_die->tag == DW_TAG_union_type)
13136 && part_die->linkage_name != NULL)
13137 {
13138 char *demangled;
13139
13140 demangled = cplus_demangle (part_die->linkage_name, DMGL_TYPES);
13141 if (demangled)
13142 {
13143 const char *base;
13144
13145 /* Strip any leading namespaces/classes, keep only the base name.
13146 DW_AT_name for named DIEs does not contain the prefixes. */
13147 base = strrchr (demangled, ':');
13148 if (base && base > demangled && base[-1] == ':')
13149 base++;
13150 else
13151 base = demangled;
13152
13153 part_die->name = obsavestring (base, strlen (base),
13154 &cu->objfile->objfile_obstack);
13155 xfree (demangled);
13156 }
13157 }
13158
13159 part_die->fixup_called = 1;
13160 }
13161
13162 /* Read an attribute value described by an attribute form. */
13163
13164 static gdb_byte *
13165 read_attribute_value (const struct die_reader_specs *reader,
13166 struct attribute *attr, unsigned form,
13167 gdb_byte *info_ptr)
13168 {
13169 struct dwarf2_cu *cu = reader->cu;
13170 bfd *abfd = reader->abfd;
13171 struct comp_unit_head *cu_header = &cu->header;
13172 unsigned int bytes_read;
13173 struct dwarf_block *blk;
13174
13175 attr->form = form;
13176 switch (form)
13177 {
13178 case DW_FORM_ref_addr:
13179 if (cu->header.version == 2)
13180 DW_UNSND (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
13181 else
13182 DW_UNSND (attr) = read_offset (abfd, info_ptr,
13183 &cu->header, &bytes_read);
13184 info_ptr += bytes_read;
13185 break;
13186 case DW_FORM_GNU_ref_alt:
13187 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
13188 info_ptr += bytes_read;
13189 break;
13190 case DW_FORM_addr:
13191 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
13192 info_ptr += bytes_read;
13193 break;
13194 case DW_FORM_block2:
13195 blk = dwarf_alloc_block (cu);
13196 blk->size = read_2_bytes (abfd, info_ptr);
13197 info_ptr += 2;
13198 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
13199 info_ptr += blk->size;
13200 DW_BLOCK (attr) = blk;
13201 break;
13202 case DW_FORM_block4:
13203 blk = dwarf_alloc_block (cu);
13204 blk->size = read_4_bytes (abfd, info_ptr);
13205 info_ptr += 4;
13206 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
13207 info_ptr += blk->size;
13208 DW_BLOCK (attr) = blk;
13209 break;
13210 case DW_FORM_data2:
13211 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
13212 info_ptr += 2;
13213 break;
13214 case DW_FORM_data4:
13215 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
13216 info_ptr += 4;
13217 break;
13218 case DW_FORM_data8:
13219 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
13220 info_ptr += 8;
13221 break;
13222 case DW_FORM_sec_offset:
13223 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
13224 info_ptr += bytes_read;
13225 break;
13226 case DW_FORM_string:
13227 DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
13228 DW_STRING_IS_CANONICAL (attr) = 0;
13229 info_ptr += bytes_read;
13230 break;
13231 case DW_FORM_strp:
13232 if (!cu->per_cu->is_dwz)
13233 {
13234 DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
13235 &bytes_read);
13236 DW_STRING_IS_CANONICAL (attr) = 0;
13237 info_ptr += bytes_read;
13238 break;
13239 }
13240 /* FALLTHROUGH */
13241 case DW_FORM_GNU_strp_alt:
13242 {
13243 struct dwz_file *dwz = dwarf2_get_dwz_file ();
13244 LONGEST str_offset = read_offset (abfd, info_ptr, cu_header,
13245 &bytes_read);
13246
13247 DW_STRING (attr) = read_indirect_string_from_dwz (dwz, str_offset);
13248 DW_STRING_IS_CANONICAL (attr) = 0;
13249 info_ptr += bytes_read;
13250 }
13251 break;
13252 case DW_FORM_exprloc:
13253 case DW_FORM_block:
13254 blk = dwarf_alloc_block (cu);
13255 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
13256 info_ptr += bytes_read;
13257 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
13258 info_ptr += blk->size;
13259 DW_BLOCK (attr) = blk;
13260 break;
13261 case DW_FORM_block1:
13262 blk = dwarf_alloc_block (cu);
13263 blk->size = read_1_byte (abfd, info_ptr);
13264 info_ptr += 1;
13265 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
13266 info_ptr += blk->size;
13267 DW_BLOCK (attr) = blk;
13268 break;
13269 case DW_FORM_data1:
13270 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
13271 info_ptr += 1;
13272 break;
13273 case DW_FORM_flag:
13274 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
13275 info_ptr += 1;
13276 break;
13277 case DW_FORM_flag_present:
13278 DW_UNSND (attr) = 1;
13279 break;
13280 case DW_FORM_sdata:
13281 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
13282 info_ptr += bytes_read;
13283 break;
13284 case DW_FORM_udata:
13285 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
13286 info_ptr += bytes_read;
13287 break;
13288 case DW_FORM_ref1:
13289 DW_UNSND (attr) = (cu->header.offset.sect_off
13290 + read_1_byte (abfd, info_ptr));
13291 info_ptr += 1;
13292 break;
13293 case DW_FORM_ref2:
13294 DW_UNSND (attr) = (cu->header.offset.sect_off
13295 + read_2_bytes (abfd, info_ptr));
13296 info_ptr += 2;
13297 break;
13298 case DW_FORM_ref4:
13299 DW_UNSND (attr) = (cu->header.offset.sect_off
13300 + read_4_bytes (abfd, info_ptr));
13301 info_ptr += 4;
13302 break;
13303 case DW_FORM_ref8:
13304 DW_UNSND (attr) = (cu->header.offset.sect_off
13305 + read_8_bytes (abfd, info_ptr));
13306 info_ptr += 8;
13307 break;
13308 case DW_FORM_ref_sig8:
13309 /* Convert the signature to something we can record in DW_UNSND
13310 for later lookup.
13311 NOTE: This is NULL if the type wasn't found. */
13312 DW_SIGNATURED_TYPE (attr) =
13313 lookup_signatured_type (read_8_bytes (abfd, info_ptr));
13314 info_ptr += 8;
13315 break;
13316 case DW_FORM_ref_udata:
13317 DW_UNSND (attr) = (cu->header.offset.sect_off
13318 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
13319 info_ptr += bytes_read;
13320 break;
13321 case DW_FORM_indirect:
13322 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
13323 info_ptr += bytes_read;
13324 info_ptr = read_attribute_value (reader, attr, form, info_ptr);
13325 break;
13326 case DW_FORM_GNU_addr_index:
13327 if (reader->dwo_file == NULL)
13328 {
13329 /* For now flag a hard error.
13330 Later we can turn this into a complaint. */
13331 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
13332 dwarf_form_name (form),
13333 bfd_get_filename (abfd));
13334 }
13335 DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr, &bytes_read);
13336 info_ptr += bytes_read;
13337 break;
13338 case DW_FORM_GNU_str_index:
13339 if (reader->dwo_file == NULL)
13340 {
13341 /* For now flag a hard error.
13342 Later we can turn this into a complaint if warranted. */
13343 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
13344 dwarf_form_name (form),
13345 bfd_get_filename (abfd));
13346 }
13347 {
13348 ULONGEST str_index =
13349 read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
13350
13351 DW_STRING (attr) = read_str_index (reader, cu, str_index);
13352 DW_STRING_IS_CANONICAL (attr) = 0;
13353 info_ptr += bytes_read;
13354 }
13355 break;
13356 default:
13357 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
13358 dwarf_form_name (form),
13359 bfd_get_filename (abfd));
13360 }
13361
13362 /* Super hack. */
13363 if (cu->per_cu->is_dwz && is_ref_attr (attr))
13364 attr->form = DW_FORM_GNU_ref_alt;
13365
13366 /* We have seen instances where the compiler tried to emit a byte
13367 size attribute of -1 which ended up being encoded as an unsigned
13368 0xffffffff. Although 0xffffffff is technically a valid size value,
13369 an object of this size seems pretty unlikely so we can relatively
13370 safely treat these cases as if the size attribute was invalid and
13371 treat them as zero by default. */
13372 if (attr->name == DW_AT_byte_size
13373 && form == DW_FORM_data4
13374 && DW_UNSND (attr) >= 0xffffffff)
13375 {
13376 complaint
13377 (&symfile_complaints,
13378 _("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
13379 hex_string (DW_UNSND (attr)));
13380 DW_UNSND (attr) = 0;
13381 }
13382
13383 return info_ptr;
13384 }
13385
13386 /* Read an attribute described by an abbreviated attribute. */
13387
13388 static gdb_byte *
13389 read_attribute (const struct die_reader_specs *reader,
13390 struct attribute *attr, struct attr_abbrev *abbrev,
13391 gdb_byte *info_ptr)
13392 {
13393 attr->name = abbrev->name;
13394 return read_attribute_value (reader, attr, abbrev->form, info_ptr);
13395 }
13396
13397 /* Read dwarf information from a buffer. */
13398
13399 static unsigned int
13400 read_1_byte (bfd *abfd, const gdb_byte *buf)
13401 {
13402 return bfd_get_8 (abfd, buf);
13403 }
13404
13405 static int
13406 read_1_signed_byte (bfd *abfd, const gdb_byte *buf)
13407 {
13408 return bfd_get_signed_8 (abfd, buf);
13409 }
13410
13411 static unsigned int
13412 read_2_bytes (bfd *abfd, const gdb_byte *buf)
13413 {
13414 return bfd_get_16 (abfd, buf);
13415 }
13416
13417 static int
13418 read_2_signed_bytes (bfd *abfd, const gdb_byte *buf)
13419 {
13420 return bfd_get_signed_16 (abfd, buf);
13421 }
13422
13423 static unsigned int
13424 read_4_bytes (bfd *abfd, const gdb_byte *buf)
13425 {
13426 return bfd_get_32 (abfd, buf);
13427 }
13428
13429 static int
13430 read_4_signed_bytes (bfd *abfd, const gdb_byte *buf)
13431 {
13432 return bfd_get_signed_32 (abfd, buf);
13433 }
13434
13435 static ULONGEST
13436 read_8_bytes (bfd *abfd, const gdb_byte *buf)
13437 {
13438 return bfd_get_64 (abfd, buf);
13439 }
13440
13441 static CORE_ADDR
13442 read_address (bfd *abfd, gdb_byte *buf, struct dwarf2_cu *cu,
13443 unsigned int *bytes_read)
13444 {
13445 struct comp_unit_head *cu_header = &cu->header;
13446 CORE_ADDR retval = 0;
13447
13448 if (cu_header->signed_addr_p)
13449 {
13450 switch (cu_header->addr_size)
13451 {
13452 case 2:
13453 retval = bfd_get_signed_16 (abfd, buf);
13454 break;
13455 case 4:
13456 retval = bfd_get_signed_32 (abfd, buf);
13457 break;
13458 case 8:
13459 retval = bfd_get_signed_64 (abfd, buf);
13460 break;
13461 default:
13462 internal_error (__FILE__, __LINE__,
13463 _("read_address: bad switch, signed [in module %s]"),
13464 bfd_get_filename (abfd));
13465 }
13466 }
13467 else
13468 {
13469 switch (cu_header->addr_size)
13470 {
13471 case 2:
13472 retval = bfd_get_16 (abfd, buf);
13473 break;
13474 case 4:
13475 retval = bfd_get_32 (abfd, buf);
13476 break;
13477 case 8:
13478 retval = bfd_get_64 (abfd, buf);
13479 break;
13480 default:
13481 internal_error (__FILE__, __LINE__,
13482 _("read_address: bad switch, "
13483 "unsigned [in module %s]"),
13484 bfd_get_filename (abfd));
13485 }
13486 }
13487
13488 *bytes_read = cu_header->addr_size;
13489 return retval;
13490 }
13491
13492 /* Read the initial length from a section. The (draft) DWARF 3
13493 specification allows the initial length to take up either 4 bytes
13494 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
13495 bytes describe the length and all offsets will be 8 bytes in length
13496 instead of 4.
13497
13498 An older, non-standard 64-bit format is also handled by this
13499 function. The older format in question stores the initial length
13500 as an 8-byte quantity without an escape value. Lengths greater
13501 than 2^32 aren't very common which means that the initial 4 bytes
13502 is almost always zero. Since a length value of zero doesn't make
13503 sense for the 32-bit format, this initial zero can be considered to
13504 be an escape value which indicates the presence of the older 64-bit
13505 format. As written, the code can't detect (old format) lengths
13506 greater than 4GB. If it becomes necessary to handle lengths
13507 somewhat larger than 4GB, we could allow other small values (such
13508 as the non-sensical values of 1, 2, and 3) to also be used as
13509 escape values indicating the presence of the old format.
13510
13511 The value returned via bytes_read should be used to increment the
13512 relevant pointer after calling read_initial_length().
13513
13514 [ Note: read_initial_length() and read_offset() are based on the
13515 document entitled "DWARF Debugging Information Format", revision
13516 3, draft 8, dated November 19, 2001. This document was obtained
13517 from:
13518
13519 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
13520
13521 This document is only a draft and is subject to change. (So beware.)
13522
13523 Details regarding the older, non-standard 64-bit format were
13524 determined empirically by examining 64-bit ELF files produced by
13525 the SGI toolchain on an IRIX 6.5 machine.
13526
13527 - Kevin, July 16, 2002
13528 ] */
13529
13530 static LONGEST
13531 read_initial_length (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read)
13532 {
13533 LONGEST length = bfd_get_32 (abfd, buf);
13534
13535 if (length == 0xffffffff)
13536 {
13537 length = bfd_get_64 (abfd, buf + 4);
13538 *bytes_read = 12;
13539 }
13540 else if (length == 0)
13541 {
13542 /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
13543 length = bfd_get_64 (abfd, buf);
13544 *bytes_read = 8;
13545 }
13546 else
13547 {
13548 *bytes_read = 4;
13549 }
13550
13551 return length;
13552 }
13553
13554 /* Cover function for read_initial_length.
13555 Returns the length of the object at BUF, and stores the size of the
13556 initial length in *BYTES_READ and stores the size that offsets will be in
13557 *OFFSET_SIZE.
13558 If the initial length size is not equivalent to that specified in
13559 CU_HEADER then issue a complaint.
13560 This is useful when reading non-comp-unit headers. */
13561
13562 static LONGEST
13563 read_checked_initial_length_and_offset (bfd *abfd, gdb_byte *buf,
13564 const struct comp_unit_head *cu_header,
13565 unsigned int *bytes_read,
13566 unsigned int *offset_size)
13567 {
13568 LONGEST length = read_initial_length (abfd, buf, bytes_read);
13569
13570 gdb_assert (cu_header->initial_length_size == 4
13571 || cu_header->initial_length_size == 8
13572 || cu_header->initial_length_size == 12);
13573
13574 if (cu_header->initial_length_size != *bytes_read)
13575 complaint (&symfile_complaints,
13576 _("intermixed 32-bit and 64-bit DWARF sections"));
13577
13578 *offset_size = (*bytes_read == 4) ? 4 : 8;
13579 return length;
13580 }
13581
13582 /* Read an offset from the data stream. The size of the offset is
13583 given by cu_header->offset_size. */
13584
13585 static LONGEST
13586 read_offset (bfd *abfd, gdb_byte *buf, const struct comp_unit_head *cu_header,
13587 unsigned int *bytes_read)
13588 {
13589 LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
13590
13591 *bytes_read = cu_header->offset_size;
13592 return offset;
13593 }
13594
13595 /* Read an offset from the data stream. */
13596
13597 static LONGEST
13598 read_offset_1 (bfd *abfd, gdb_byte *buf, unsigned int offset_size)
13599 {
13600 LONGEST retval = 0;
13601
13602 switch (offset_size)
13603 {
13604 case 4:
13605 retval = bfd_get_32 (abfd, buf);
13606 break;
13607 case 8:
13608 retval = bfd_get_64 (abfd, buf);
13609 break;
13610 default:
13611 internal_error (__FILE__, __LINE__,
13612 _("read_offset_1: bad switch [in module %s]"),
13613 bfd_get_filename (abfd));
13614 }
13615
13616 return retval;
13617 }
13618
13619 static gdb_byte *
13620 read_n_bytes (bfd *abfd, gdb_byte *buf, unsigned int size)
13621 {
13622 /* If the size of a host char is 8 bits, we can return a pointer
13623 to the buffer, otherwise we have to copy the data to a buffer
13624 allocated on the temporary obstack. */
13625 gdb_assert (HOST_CHAR_BIT == 8);
13626 return buf;
13627 }
13628
13629 static char *
13630 read_direct_string (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
13631 {
13632 /* If the size of a host char is 8 bits, we can return a pointer
13633 to the string, otherwise we have to copy the string to a buffer
13634 allocated on the temporary obstack. */
13635 gdb_assert (HOST_CHAR_BIT == 8);
13636 if (*buf == '\0')
13637 {
13638 *bytes_read_ptr = 1;
13639 return NULL;
13640 }
13641 *bytes_read_ptr = strlen ((char *) buf) + 1;
13642 return (char *) buf;
13643 }
13644
13645 static char *
13646 read_indirect_string_at_offset (bfd *abfd, LONGEST str_offset)
13647 {
13648 dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->str);
13649 if (dwarf2_per_objfile->str.buffer == NULL)
13650 error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
13651 bfd_get_filename (abfd));
13652 if (str_offset >= dwarf2_per_objfile->str.size)
13653 error (_("DW_FORM_strp pointing outside of "
13654 ".debug_str section [in module %s]"),
13655 bfd_get_filename (abfd));
13656 gdb_assert (HOST_CHAR_BIT == 8);
13657 if (dwarf2_per_objfile->str.buffer[str_offset] == '\0')
13658 return NULL;
13659 return (char *) (dwarf2_per_objfile->str.buffer + str_offset);
13660 }
13661
13662 /* Read a string at offset STR_OFFSET in the .debug_str section from
13663 the .dwz file DWZ. Throw an error if the offset is too large. If
13664 the string consists of a single NUL byte, return NULL; otherwise
13665 return a pointer to the string. */
13666
13667 static char *
13668 read_indirect_string_from_dwz (struct dwz_file *dwz, LONGEST str_offset)
13669 {
13670 dwarf2_read_section (dwarf2_per_objfile->objfile, &dwz->str);
13671
13672 if (dwz->str.buffer == NULL)
13673 error (_("DW_FORM_GNU_strp_alt used without .debug_str "
13674 "section [in module %s]"),
13675 bfd_get_filename (dwz->dwz_bfd));
13676 if (str_offset >= dwz->str.size)
13677 error (_("DW_FORM_GNU_strp_alt pointing outside of "
13678 ".debug_str section [in module %s]"),
13679 bfd_get_filename (dwz->dwz_bfd));
13680 gdb_assert (HOST_CHAR_BIT == 8);
13681 if (dwz->str.buffer[str_offset] == '\0')
13682 return NULL;
13683 return (char *) (dwz->str.buffer + str_offset);
13684 }
13685
13686 static char *
13687 read_indirect_string (bfd *abfd, gdb_byte *buf,
13688 const struct comp_unit_head *cu_header,
13689 unsigned int *bytes_read_ptr)
13690 {
13691 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
13692
13693 return read_indirect_string_at_offset (abfd, str_offset);
13694 }
13695
13696 static ULONGEST
13697 read_unsigned_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
13698 {
13699 ULONGEST result;
13700 unsigned int num_read;
13701 int i, shift;
13702 unsigned char byte;
13703
13704 result = 0;
13705 shift = 0;
13706 num_read = 0;
13707 i = 0;
13708 while (1)
13709 {
13710 byte = bfd_get_8 (abfd, buf);
13711 buf++;
13712 num_read++;
13713 result |= ((ULONGEST) (byte & 127) << shift);
13714 if ((byte & 128) == 0)
13715 {
13716 break;
13717 }
13718 shift += 7;
13719 }
13720 *bytes_read_ptr = num_read;
13721 return result;
13722 }
13723
13724 static LONGEST
13725 read_signed_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
13726 {
13727 LONGEST result;
13728 int i, shift, num_read;
13729 unsigned char byte;
13730
13731 result = 0;
13732 shift = 0;
13733 num_read = 0;
13734 i = 0;
13735 while (1)
13736 {
13737 byte = bfd_get_8 (abfd, buf);
13738 buf++;
13739 num_read++;
13740 result |= ((LONGEST) (byte & 127) << shift);
13741 shift += 7;
13742 if ((byte & 128) == 0)
13743 {
13744 break;
13745 }
13746 }
13747 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
13748 result |= -(((LONGEST) 1) << shift);
13749 *bytes_read_ptr = num_read;
13750 return result;
13751 }
13752
13753 /* Given index ADDR_INDEX in .debug_addr, fetch the value.
13754 ADDR_BASE is the DW_AT_GNU_addr_base attribute or zero.
13755 ADDR_SIZE is the size of addresses from the CU header. */
13756
13757 static CORE_ADDR
13758 read_addr_index_1 (unsigned int addr_index, ULONGEST addr_base, int addr_size)
13759 {
13760 struct objfile *objfile = dwarf2_per_objfile->objfile;
13761 bfd *abfd = objfile->obfd;
13762 const gdb_byte *info_ptr;
13763
13764 dwarf2_read_section (objfile, &dwarf2_per_objfile->addr);
13765 if (dwarf2_per_objfile->addr.buffer == NULL)
13766 error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
13767 objfile->name);
13768 if (addr_base + addr_index * addr_size >= dwarf2_per_objfile->addr.size)
13769 error (_("DW_FORM_addr_index pointing outside of "
13770 ".debug_addr section [in module %s]"),
13771 objfile->name);
13772 info_ptr = (dwarf2_per_objfile->addr.buffer
13773 + addr_base + addr_index * addr_size);
13774 if (addr_size == 4)
13775 return bfd_get_32 (abfd, info_ptr);
13776 else
13777 return bfd_get_64 (abfd, info_ptr);
13778 }
13779
13780 /* Given index ADDR_INDEX in .debug_addr, fetch the value. */
13781
13782 static CORE_ADDR
13783 read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
13784 {
13785 return read_addr_index_1 (addr_index, cu->addr_base, cu->header.addr_size);
13786 }
13787
13788 /* Given a pointer to an leb128 value, fetch the value from .debug_addr. */
13789
13790 static CORE_ADDR
13791 read_addr_index_from_leb128 (struct dwarf2_cu *cu, gdb_byte *info_ptr,
13792 unsigned int *bytes_read)
13793 {
13794 bfd *abfd = cu->objfile->obfd;
13795 unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
13796
13797 return read_addr_index (cu, addr_index);
13798 }
13799
13800 /* Data structure to pass results from dwarf2_read_addr_index_reader
13801 back to dwarf2_read_addr_index. */
13802
13803 struct dwarf2_read_addr_index_data
13804 {
13805 ULONGEST addr_base;
13806 int addr_size;
13807 };
13808
13809 /* die_reader_func for dwarf2_read_addr_index. */
13810
13811 static void
13812 dwarf2_read_addr_index_reader (const struct die_reader_specs *reader,
13813 gdb_byte *info_ptr,
13814 struct die_info *comp_unit_die,
13815 int has_children,
13816 void *data)
13817 {
13818 struct dwarf2_cu *cu = reader->cu;
13819 struct dwarf2_read_addr_index_data *aidata =
13820 (struct dwarf2_read_addr_index_data *) data;
13821
13822 aidata->addr_base = cu->addr_base;
13823 aidata->addr_size = cu->header.addr_size;
13824 }
13825
13826 /* Given an index in .debug_addr, fetch the value.
13827 NOTE: This can be called during dwarf expression evaluation,
13828 long after the debug information has been read, and thus per_cu->cu
13829 may no longer exist. */
13830
13831 CORE_ADDR
13832 dwarf2_read_addr_index (struct dwarf2_per_cu_data *per_cu,
13833 unsigned int addr_index)
13834 {
13835 struct objfile *objfile = per_cu->objfile;
13836 struct dwarf2_cu *cu = per_cu->cu;
13837 ULONGEST addr_base;
13838 int addr_size;
13839
13840 /* This is intended to be called from outside this file. */
13841 dw2_setup (objfile);
13842
13843 /* We need addr_base and addr_size.
13844 If we don't have PER_CU->cu, we have to get it.
13845 Nasty, but the alternative is storing the needed info in PER_CU,
13846 which at this point doesn't seem justified: it's not clear how frequently
13847 it would get used and it would increase the size of every PER_CU.
13848 Entry points like dwarf2_per_cu_addr_size do a similar thing
13849 so we're not in uncharted territory here.
13850 Alas we need to be a bit more complicated as addr_base is contained
13851 in the DIE.
13852
13853 We don't need to read the entire CU(/TU).
13854 We just need the header and top level die.
13855
13856 IWBN to use the aging mechanism to let us lazily later discard the CU.
13857 For now we skip this optimization. */
13858
13859 if (cu != NULL)
13860 {
13861 addr_base = cu->addr_base;
13862 addr_size = cu->header.addr_size;
13863 }
13864 else
13865 {
13866 struct dwarf2_read_addr_index_data aidata;
13867
13868 /* Note: We can't use init_cutu_and_read_dies_simple here,
13869 we need addr_base. */
13870 init_cutu_and_read_dies (per_cu, NULL, 0, 0,
13871 dwarf2_read_addr_index_reader, &aidata);
13872 addr_base = aidata.addr_base;
13873 addr_size = aidata.addr_size;
13874 }
13875
13876 return read_addr_index_1 (addr_index, addr_base, addr_size);
13877 }
13878
13879 /* Given a DW_AT_str_index, fetch the string. */
13880
13881 static char *
13882 read_str_index (const struct die_reader_specs *reader,
13883 struct dwarf2_cu *cu, ULONGEST str_index)
13884 {
13885 struct objfile *objfile = dwarf2_per_objfile->objfile;
13886 const char *dwo_name = objfile->name;
13887 bfd *abfd = objfile->obfd;
13888 struct dwo_sections *sections = &reader->dwo_file->sections;
13889 gdb_byte *info_ptr;
13890 ULONGEST str_offset;
13891
13892 dwarf2_read_section (objfile, &sections->str);
13893 dwarf2_read_section (objfile, &sections->str_offsets);
13894 if (sections->str.buffer == NULL)
13895 error (_("DW_FORM_str_index used without .debug_str.dwo section"
13896 " in CU at offset 0x%lx [in module %s]"),
13897 (long) cu->header.offset.sect_off, dwo_name);
13898 if (sections->str_offsets.buffer == NULL)
13899 error (_("DW_FORM_str_index used without .debug_str_offsets.dwo section"
13900 " in CU at offset 0x%lx [in module %s]"),
13901 (long) cu->header.offset.sect_off, dwo_name);
13902 if (str_index * cu->header.offset_size >= sections->str_offsets.size)
13903 error (_("DW_FORM_str_index pointing outside of .debug_str_offsets.dwo"
13904 " section in CU at offset 0x%lx [in module %s]"),
13905 (long) cu->header.offset.sect_off, dwo_name);
13906 info_ptr = (sections->str_offsets.buffer
13907 + str_index * cu->header.offset_size);
13908 if (cu->header.offset_size == 4)
13909 str_offset = bfd_get_32 (abfd, info_ptr);
13910 else
13911 str_offset = bfd_get_64 (abfd, info_ptr);
13912 if (str_offset >= sections->str.size)
13913 error (_("Offset from DW_FORM_str_index pointing outside of"
13914 " .debug_str.dwo section in CU at offset 0x%lx [in module %s]"),
13915 (long) cu->header.offset.sect_off, dwo_name);
13916 return (char *) (sections->str.buffer + str_offset);
13917 }
13918
13919 /* Return the length of an LEB128 number in BUF. */
13920
13921 static int
13922 leb128_size (const gdb_byte *buf)
13923 {
13924 const gdb_byte *begin = buf;
13925 gdb_byte byte;
13926
13927 while (1)
13928 {
13929 byte = *buf++;
13930 if ((byte & 128) == 0)
13931 return buf - begin;
13932 }
13933 }
13934
13935 static void
13936 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
13937 {
13938 switch (lang)
13939 {
13940 case DW_LANG_C89:
13941 case DW_LANG_C99:
13942 case DW_LANG_C:
13943 cu->language = language_c;
13944 break;
13945 case DW_LANG_C_plus_plus:
13946 cu->language = language_cplus;
13947 break;
13948 case DW_LANG_D:
13949 cu->language = language_d;
13950 break;
13951 case DW_LANG_Fortran77:
13952 case DW_LANG_Fortran90:
13953 case DW_LANG_Fortran95:
13954 cu->language = language_fortran;
13955 break;
13956 case DW_LANG_Go:
13957 cu->language = language_go;
13958 break;
13959 case DW_LANG_Mips_Assembler:
13960 cu->language = language_asm;
13961 break;
13962 case DW_LANG_Java:
13963 cu->language = language_java;
13964 break;
13965 case DW_LANG_Ada83:
13966 case DW_LANG_Ada95:
13967 cu->language = language_ada;
13968 break;
13969 case DW_LANG_Modula2:
13970 cu->language = language_m2;
13971 break;
13972 case DW_LANG_Pascal83:
13973 cu->language = language_pascal;
13974 break;
13975 case DW_LANG_ObjC:
13976 cu->language = language_objc;
13977 break;
13978 case DW_LANG_Cobol74:
13979 case DW_LANG_Cobol85:
13980 default:
13981 cu->language = language_minimal;
13982 break;
13983 }
13984 cu->language_defn = language_def (cu->language);
13985 }
13986
13987 /* Return the named attribute or NULL if not there. */
13988
13989 static struct attribute *
13990 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
13991 {
13992 for (;;)
13993 {
13994 unsigned int i;
13995 struct attribute *spec = NULL;
13996
13997 for (i = 0; i < die->num_attrs; ++i)
13998 {
13999 if (die->attrs[i].name == name)
14000 return &die->attrs[i];
14001 if (die->attrs[i].name == DW_AT_specification
14002 || die->attrs[i].name == DW_AT_abstract_origin)
14003 spec = &die->attrs[i];
14004 }
14005
14006 if (!spec)
14007 break;
14008
14009 die = follow_die_ref (die, spec, &cu);
14010 }
14011
14012 return NULL;
14013 }
14014
14015 /* Return the named attribute or NULL if not there,
14016 but do not follow DW_AT_specification, etc.
14017 This is for use in contexts where we're reading .debug_types dies.
14018 Following DW_AT_specification, DW_AT_abstract_origin will take us
14019 back up the chain, and we want to go down. */
14020
14021 static struct attribute *
14022 dwarf2_attr_no_follow (struct die_info *die, unsigned int name)
14023 {
14024 unsigned int i;
14025
14026 for (i = 0; i < die->num_attrs; ++i)
14027 if (die->attrs[i].name == name)
14028 return &die->attrs[i];
14029
14030 return NULL;
14031 }
14032
14033 /* Return non-zero iff the attribute NAME is defined for the given DIE,
14034 and holds a non-zero value. This function should only be used for
14035 DW_FORM_flag or DW_FORM_flag_present attributes. */
14036
14037 static int
14038 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
14039 {
14040 struct attribute *attr = dwarf2_attr (die, name, cu);
14041
14042 return (attr && DW_UNSND (attr));
14043 }
14044
14045 static int
14046 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
14047 {
14048 /* A DIE is a declaration if it has a DW_AT_declaration attribute
14049 which value is non-zero. However, we have to be careful with
14050 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
14051 (via dwarf2_flag_true_p) follows this attribute. So we may
14052 end up accidently finding a declaration attribute that belongs
14053 to a different DIE referenced by the specification attribute,
14054 even though the given DIE does not have a declaration attribute. */
14055 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
14056 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
14057 }
14058
14059 /* Return the die giving the specification for DIE, if there is
14060 one. *SPEC_CU is the CU containing DIE on input, and the CU
14061 containing the return value on output. If there is no
14062 specification, but there is an abstract origin, that is
14063 returned. */
14064
14065 static struct die_info *
14066 die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
14067 {
14068 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
14069 *spec_cu);
14070
14071 if (spec_attr == NULL)
14072 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
14073
14074 if (spec_attr == NULL)
14075 return NULL;
14076 else
14077 return follow_die_ref (die, spec_attr, spec_cu);
14078 }
14079
14080 /* Free the line_header structure *LH, and any arrays and strings it
14081 refers to.
14082 NOTE: This is also used as a "cleanup" function. */
14083
14084 static void
14085 free_line_header (struct line_header *lh)
14086 {
14087 if (lh->standard_opcode_lengths)
14088 xfree (lh->standard_opcode_lengths);
14089
14090 /* Remember that all the lh->file_names[i].name pointers are
14091 pointers into debug_line_buffer, and don't need to be freed. */
14092 if (lh->file_names)
14093 xfree (lh->file_names);
14094
14095 /* Similarly for the include directory names. */
14096 if (lh->include_dirs)
14097 xfree (lh->include_dirs);
14098
14099 xfree (lh);
14100 }
14101
14102 /* Add an entry to LH's include directory table. */
14103
14104 static void
14105 add_include_dir (struct line_header *lh, char *include_dir)
14106 {
14107 /* Grow the array if necessary. */
14108 if (lh->include_dirs_size == 0)
14109 {
14110 lh->include_dirs_size = 1; /* for testing */
14111 lh->include_dirs = xmalloc (lh->include_dirs_size
14112 * sizeof (*lh->include_dirs));
14113 }
14114 else if (lh->num_include_dirs >= lh->include_dirs_size)
14115 {
14116 lh->include_dirs_size *= 2;
14117 lh->include_dirs = xrealloc (lh->include_dirs,
14118 (lh->include_dirs_size
14119 * sizeof (*lh->include_dirs)));
14120 }
14121
14122 lh->include_dirs[lh->num_include_dirs++] = include_dir;
14123 }
14124
14125 /* Add an entry to LH's file name table. */
14126
14127 static void
14128 add_file_name (struct line_header *lh,
14129 char *name,
14130 unsigned int dir_index,
14131 unsigned int mod_time,
14132 unsigned int length)
14133 {
14134 struct file_entry *fe;
14135
14136 /* Grow the array if necessary. */
14137 if (lh->file_names_size == 0)
14138 {
14139 lh->file_names_size = 1; /* for testing */
14140 lh->file_names = xmalloc (lh->file_names_size
14141 * sizeof (*lh->file_names));
14142 }
14143 else if (lh->num_file_names >= lh->file_names_size)
14144 {
14145 lh->file_names_size *= 2;
14146 lh->file_names = xrealloc (lh->file_names,
14147 (lh->file_names_size
14148 * sizeof (*lh->file_names)));
14149 }
14150
14151 fe = &lh->file_names[lh->num_file_names++];
14152 fe->name = name;
14153 fe->dir_index = dir_index;
14154 fe->mod_time = mod_time;
14155 fe->length = length;
14156 fe->included_p = 0;
14157 fe->symtab = NULL;
14158 }
14159
14160 /* A convenience function to find the proper .debug_line section for a
14161 CU. */
14162
14163 static struct dwarf2_section_info *
14164 get_debug_line_section (struct dwarf2_cu *cu)
14165 {
14166 struct dwarf2_section_info *section;
14167
14168 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
14169 DWO file. */
14170 if (cu->dwo_unit && cu->per_cu->is_debug_types)
14171 section = &cu->dwo_unit->dwo_file->sections.line;
14172 else if (cu->per_cu->is_dwz)
14173 {
14174 struct dwz_file *dwz = dwarf2_get_dwz_file ();
14175
14176 section = &dwz->line;
14177 }
14178 else
14179 section = &dwarf2_per_objfile->line;
14180
14181 return section;
14182 }
14183
14184 /* Read the statement program header starting at OFFSET in
14185 .debug_line, or .debug_line.dwo. Return a pointer
14186 to a struct line_header, allocated using xmalloc.
14187
14188 NOTE: the strings in the include directory and file name tables of
14189 the returned object point into the dwarf line section buffer,
14190 and must not be freed. */
14191
14192 static struct line_header *
14193 dwarf_decode_line_header (unsigned int offset, struct dwarf2_cu *cu)
14194 {
14195 struct cleanup *back_to;
14196 struct line_header *lh;
14197 gdb_byte *line_ptr;
14198 unsigned int bytes_read, offset_size;
14199 int i;
14200 char *cur_dir, *cur_file;
14201 struct dwarf2_section_info *section;
14202 bfd *abfd;
14203
14204 section = get_debug_line_section (cu);
14205 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
14206 if (section->buffer == NULL)
14207 {
14208 if (cu->dwo_unit && cu->per_cu->is_debug_types)
14209 complaint (&symfile_complaints, _("missing .debug_line.dwo section"));
14210 else
14211 complaint (&symfile_complaints, _("missing .debug_line section"));
14212 return 0;
14213 }
14214
14215 /* We can't do this until we know the section is non-empty.
14216 Only then do we know we have such a section. */
14217 abfd = section->asection->owner;
14218
14219 /* Make sure that at least there's room for the total_length field.
14220 That could be 12 bytes long, but we're just going to fudge that. */
14221 if (offset + 4 >= section->size)
14222 {
14223 dwarf2_statement_list_fits_in_line_number_section_complaint ();
14224 return 0;
14225 }
14226
14227 lh = xmalloc (sizeof (*lh));
14228 memset (lh, 0, sizeof (*lh));
14229 back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
14230 (void *) lh);
14231
14232 line_ptr = section->buffer + offset;
14233
14234 /* Read in the header. */
14235 lh->total_length =
14236 read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
14237 &bytes_read, &offset_size);
14238 line_ptr += bytes_read;
14239 if (line_ptr + lh->total_length > (section->buffer + section->size))
14240 {
14241 dwarf2_statement_list_fits_in_line_number_section_complaint ();
14242 return 0;
14243 }
14244 lh->statement_program_end = line_ptr + lh->total_length;
14245 lh->version = read_2_bytes (abfd, line_ptr);
14246 line_ptr += 2;
14247 lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
14248 line_ptr += offset_size;
14249 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
14250 line_ptr += 1;
14251 if (lh->version >= 4)
14252 {
14253 lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
14254 line_ptr += 1;
14255 }
14256 else
14257 lh->maximum_ops_per_instruction = 1;
14258
14259 if (lh->maximum_ops_per_instruction == 0)
14260 {
14261 lh->maximum_ops_per_instruction = 1;
14262 complaint (&symfile_complaints,
14263 _("invalid maximum_ops_per_instruction "
14264 "in `.debug_line' section"));
14265 }
14266
14267 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
14268 line_ptr += 1;
14269 lh->line_base = read_1_signed_byte (abfd, line_ptr);
14270 line_ptr += 1;
14271 lh->line_range = read_1_byte (abfd, line_ptr);
14272 line_ptr += 1;
14273 lh->opcode_base = read_1_byte (abfd, line_ptr);
14274 line_ptr += 1;
14275 lh->standard_opcode_lengths
14276 = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
14277
14278 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
14279 for (i = 1; i < lh->opcode_base; ++i)
14280 {
14281 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
14282 line_ptr += 1;
14283 }
14284
14285 /* Read directory table. */
14286 while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
14287 {
14288 line_ptr += bytes_read;
14289 add_include_dir (lh, cur_dir);
14290 }
14291 line_ptr += bytes_read;
14292
14293 /* Read file name table. */
14294 while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
14295 {
14296 unsigned int dir_index, mod_time, length;
14297
14298 line_ptr += bytes_read;
14299 dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
14300 line_ptr += bytes_read;
14301 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
14302 line_ptr += bytes_read;
14303 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
14304 line_ptr += bytes_read;
14305
14306 add_file_name (lh, cur_file, dir_index, mod_time, length);
14307 }
14308 line_ptr += bytes_read;
14309 lh->statement_program_start = line_ptr;
14310
14311 if (line_ptr > (section->buffer + section->size))
14312 complaint (&symfile_complaints,
14313 _("line number info header doesn't "
14314 "fit in `.debug_line' section"));
14315
14316 discard_cleanups (back_to);
14317 return lh;
14318 }
14319
14320 /* Subroutine of dwarf_decode_lines to simplify it.
14321 Return the file name of the psymtab for included file FILE_INDEX
14322 in line header LH of PST.
14323 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
14324 If space for the result is malloc'd, it will be freed by a cleanup.
14325 Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename. */
14326
14327 static char *
14328 psymtab_include_file_name (const struct line_header *lh, int file_index,
14329 const struct partial_symtab *pst,
14330 const char *comp_dir)
14331 {
14332 const struct file_entry fe = lh->file_names [file_index];
14333 char *include_name = fe.name;
14334 char *include_name_to_compare = include_name;
14335 char *dir_name = NULL;
14336 const char *pst_filename;
14337 char *copied_name = NULL;
14338 int file_is_pst;
14339
14340 if (fe.dir_index)
14341 dir_name = lh->include_dirs[fe.dir_index - 1];
14342
14343 if (!IS_ABSOLUTE_PATH (include_name)
14344 && (dir_name != NULL || comp_dir != NULL))
14345 {
14346 /* Avoid creating a duplicate psymtab for PST.
14347 We do this by comparing INCLUDE_NAME and PST_FILENAME.
14348 Before we do the comparison, however, we need to account
14349 for DIR_NAME and COMP_DIR.
14350 First prepend dir_name (if non-NULL). If we still don't
14351 have an absolute path prepend comp_dir (if non-NULL).
14352 However, the directory we record in the include-file's
14353 psymtab does not contain COMP_DIR (to match the
14354 corresponding symtab(s)).
14355
14356 Example:
14357
14358 bash$ cd /tmp
14359 bash$ gcc -g ./hello.c
14360 include_name = "hello.c"
14361 dir_name = "."
14362 DW_AT_comp_dir = comp_dir = "/tmp"
14363 DW_AT_name = "./hello.c" */
14364
14365 if (dir_name != NULL)
14366 {
14367 include_name = concat (dir_name, SLASH_STRING,
14368 include_name, (char *)NULL);
14369 include_name_to_compare = include_name;
14370 make_cleanup (xfree, include_name);
14371 }
14372 if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
14373 {
14374 include_name_to_compare = concat (comp_dir, SLASH_STRING,
14375 include_name, (char *)NULL);
14376 }
14377 }
14378
14379 pst_filename = pst->filename;
14380 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
14381 {
14382 copied_name = concat (pst->dirname, SLASH_STRING,
14383 pst_filename, (char *)NULL);
14384 pst_filename = copied_name;
14385 }
14386
14387 file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
14388
14389 if (include_name_to_compare != include_name)
14390 xfree (include_name_to_compare);
14391 if (copied_name != NULL)
14392 xfree (copied_name);
14393
14394 if (file_is_pst)
14395 return NULL;
14396 return include_name;
14397 }
14398
14399 /* Ignore this record_line request. */
14400
14401 static void
14402 noop_record_line (struct subfile *subfile, int line, CORE_ADDR pc)
14403 {
14404 return;
14405 }
14406
14407 /* Subroutine of dwarf_decode_lines to simplify it.
14408 Process the line number information in LH. */
14409
14410 static void
14411 dwarf_decode_lines_1 (struct line_header *lh, const char *comp_dir,
14412 struct dwarf2_cu *cu, struct partial_symtab *pst)
14413 {
14414 gdb_byte *line_ptr, *extended_end;
14415 gdb_byte *line_end;
14416 unsigned int bytes_read, extended_len;
14417 unsigned char op_code, extended_op, adj_opcode;
14418 CORE_ADDR baseaddr;
14419 struct objfile *objfile = cu->objfile;
14420 bfd *abfd = objfile->obfd;
14421 struct gdbarch *gdbarch = get_objfile_arch (objfile);
14422 const int decode_for_pst_p = (pst != NULL);
14423 struct subfile *last_subfile = NULL;
14424 void (*p_record_line) (struct subfile *subfile, int line, CORE_ADDR pc)
14425 = record_line;
14426
14427 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
14428
14429 line_ptr = lh->statement_program_start;
14430 line_end = lh->statement_program_end;
14431
14432 /* Read the statement sequences until there's nothing left. */
14433 while (line_ptr < line_end)
14434 {
14435 /* state machine registers */
14436 CORE_ADDR address = 0;
14437 unsigned int file = 1;
14438 unsigned int line = 1;
14439 unsigned int column = 0;
14440 int is_stmt = lh->default_is_stmt;
14441 int basic_block = 0;
14442 int end_sequence = 0;
14443 CORE_ADDR addr;
14444 unsigned char op_index = 0;
14445
14446 if (!decode_for_pst_p && lh->num_file_names >= file)
14447 {
14448 /* Start a subfile for the current file of the state machine. */
14449 /* lh->include_dirs and lh->file_names are 0-based, but the
14450 directory and file name numbers in the statement program
14451 are 1-based. */
14452 struct file_entry *fe = &lh->file_names[file - 1];
14453 char *dir = NULL;
14454
14455 if (fe->dir_index)
14456 dir = lh->include_dirs[fe->dir_index - 1];
14457
14458 dwarf2_start_subfile (fe->name, dir, comp_dir);
14459 }
14460
14461 /* Decode the table. */
14462 while (!end_sequence)
14463 {
14464 op_code = read_1_byte (abfd, line_ptr);
14465 line_ptr += 1;
14466 if (line_ptr > line_end)
14467 {
14468 dwarf2_debug_line_missing_end_sequence_complaint ();
14469 break;
14470 }
14471
14472 if (op_code >= lh->opcode_base)
14473 {
14474 /* Special operand. */
14475 adj_opcode = op_code - lh->opcode_base;
14476 address += (((op_index + (adj_opcode / lh->line_range))
14477 / lh->maximum_ops_per_instruction)
14478 * lh->minimum_instruction_length);
14479 op_index = ((op_index + (adj_opcode / lh->line_range))
14480 % lh->maximum_ops_per_instruction);
14481 line += lh->line_base + (adj_opcode % lh->line_range);
14482 if (lh->num_file_names < file || file == 0)
14483 dwarf2_debug_line_missing_file_complaint ();
14484 /* For now we ignore lines not starting on an
14485 instruction boundary. */
14486 else if (op_index == 0)
14487 {
14488 lh->file_names[file - 1].included_p = 1;
14489 if (!decode_for_pst_p && is_stmt)
14490 {
14491 if (last_subfile != current_subfile)
14492 {
14493 addr = gdbarch_addr_bits_remove (gdbarch, address);
14494 if (last_subfile)
14495 (*p_record_line) (last_subfile, 0, addr);
14496 last_subfile = current_subfile;
14497 }
14498 /* Append row to matrix using current values. */
14499 addr = gdbarch_addr_bits_remove (gdbarch, address);
14500 (*p_record_line) (current_subfile, line, addr);
14501 }
14502 }
14503 basic_block = 0;
14504 }
14505 else switch (op_code)
14506 {
14507 case DW_LNS_extended_op:
14508 extended_len = read_unsigned_leb128 (abfd, line_ptr,
14509 &bytes_read);
14510 line_ptr += bytes_read;
14511 extended_end = line_ptr + extended_len;
14512 extended_op = read_1_byte (abfd, line_ptr);
14513 line_ptr += 1;
14514 switch (extended_op)
14515 {
14516 case DW_LNE_end_sequence:
14517 p_record_line = record_line;
14518 end_sequence = 1;
14519 break;
14520 case DW_LNE_set_address:
14521 address = read_address (abfd, line_ptr, cu, &bytes_read);
14522
14523 if (address == 0 && !dwarf2_per_objfile->has_section_at_zero)
14524 {
14525 /* This line table is for a function which has been
14526 GCd by the linker. Ignore it. PR gdb/12528 */
14527
14528 long line_offset
14529 = line_ptr - get_debug_line_section (cu)->buffer;
14530
14531 complaint (&symfile_complaints,
14532 _(".debug_line address at offset 0x%lx is 0 "
14533 "[in module %s]"),
14534 line_offset, objfile->name);
14535 p_record_line = noop_record_line;
14536 }
14537
14538 op_index = 0;
14539 line_ptr += bytes_read;
14540 address += baseaddr;
14541 break;
14542 case DW_LNE_define_file:
14543 {
14544 char *cur_file;
14545 unsigned int dir_index, mod_time, length;
14546
14547 cur_file = read_direct_string (abfd, line_ptr,
14548 &bytes_read);
14549 line_ptr += bytes_read;
14550 dir_index =
14551 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
14552 line_ptr += bytes_read;
14553 mod_time =
14554 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
14555 line_ptr += bytes_read;
14556 length =
14557 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
14558 line_ptr += bytes_read;
14559 add_file_name (lh, cur_file, dir_index, mod_time, length);
14560 }
14561 break;
14562 case DW_LNE_set_discriminator:
14563 /* The discriminator is not interesting to the debugger;
14564 just ignore it. */
14565 line_ptr = extended_end;
14566 break;
14567 default:
14568 complaint (&symfile_complaints,
14569 _("mangled .debug_line section"));
14570 return;
14571 }
14572 /* Make sure that we parsed the extended op correctly. If e.g.
14573 we expected a different address size than the producer used,
14574 we may have read the wrong number of bytes. */
14575 if (line_ptr != extended_end)
14576 {
14577 complaint (&symfile_complaints,
14578 _("mangled .debug_line section"));
14579 return;
14580 }
14581 break;
14582 case DW_LNS_copy:
14583 if (lh->num_file_names < file || file == 0)
14584 dwarf2_debug_line_missing_file_complaint ();
14585 else
14586 {
14587 lh->file_names[file - 1].included_p = 1;
14588 if (!decode_for_pst_p && is_stmt)
14589 {
14590 if (last_subfile != current_subfile)
14591 {
14592 addr = gdbarch_addr_bits_remove (gdbarch, address);
14593 if (last_subfile)
14594 (*p_record_line) (last_subfile, 0, addr);
14595 last_subfile = current_subfile;
14596 }
14597 addr = gdbarch_addr_bits_remove (gdbarch, address);
14598 (*p_record_line) (current_subfile, line, addr);
14599 }
14600 }
14601 basic_block = 0;
14602 break;
14603 case DW_LNS_advance_pc:
14604 {
14605 CORE_ADDR adjust
14606 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
14607
14608 address += (((op_index + adjust)
14609 / lh->maximum_ops_per_instruction)
14610 * lh->minimum_instruction_length);
14611 op_index = ((op_index + adjust)
14612 % lh->maximum_ops_per_instruction);
14613 line_ptr += bytes_read;
14614 }
14615 break;
14616 case DW_LNS_advance_line:
14617 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
14618 line_ptr += bytes_read;
14619 break;
14620 case DW_LNS_set_file:
14621 {
14622 /* The arrays lh->include_dirs and lh->file_names are
14623 0-based, but the directory and file name numbers in
14624 the statement program are 1-based. */
14625 struct file_entry *fe;
14626 char *dir = NULL;
14627
14628 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
14629 line_ptr += bytes_read;
14630 if (lh->num_file_names < file || file == 0)
14631 dwarf2_debug_line_missing_file_complaint ();
14632 else
14633 {
14634 fe = &lh->file_names[file - 1];
14635 if (fe->dir_index)
14636 dir = lh->include_dirs[fe->dir_index - 1];
14637 if (!decode_for_pst_p)
14638 {
14639 last_subfile = current_subfile;
14640 dwarf2_start_subfile (fe->name, dir, comp_dir);
14641 }
14642 }
14643 }
14644 break;
14645 case DW_LNS_set_column:
14646 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
14647 line_ptr += bytes_read;
14648 break;
14649 case DW_LNS_negate_stmt:
14650 is_stmt = (!is_stmt);
14651 break;
14652 case DW_LNS_set_basic_block:
14653 basic_block = 1;
14654 break;
14655 /* Add to the address register of the state machine the
14656 address increment value corresponding to special opcode
14657 255. I.e., this value is scaled by the minimum
14658 instruction length since special opcode 255 would have
14659 scaled the increment. */
14660 case DW_LNS_const_add_pc:
14661 {
14662 CORE_ADDR adjust = (255 - lh->opcode_base) / lh->line_range;
14663
14664 address += (((op_index + adjust)
14665 / lh->maximum_ops_per_instruction)
14666 * lh->minimum_instruction_length);
14667 op_index = ((op_index + adjust)
14668 % lh->maximum_ops_per_instruction);
14669 }
14670 break;
14671 case DW_LNS_fixed_advance_pc:
14672 address += read_2_bytes (abfd, line_ptr);
14673 op_index = 0;
14674 line_ptr += 2;
14675 break;
14676 default:
14677 {
14678 /* Unknown standard opcode, ignore it. */
14679 int i;
14680
14681 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
14682 {
14683 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
14684 line_ptr += bytes_read;
14685 }
14686 }
14687 }
14688 }
14689 if (lh->num_file_names < file || file == 0)
14690 dwarf2_debug_line_missing_file_complaint ();
14691 else
14692 {
14693 lh->file_names[file - 1].included_p = 1;
14694 if (!decode_for_pst_p)
14695 {
14696 addr = gdbarch_addr_bits_remove (gdbarch, address);
14697 (*p_record_line) (current_subfile, 0, addr);
14698 }
14699 }
14700 }
14701 }
14702
14703 /* Decode the Line Number Program (LNP) for the given line_header
14704 structure and CU. The actual information extracted and the type
14705 of structures created from the LNP depends on the value of PST.
14706
14707 1. If PST is NULL, then this procedure uses the data from the program
14708 to create all necessary symbol tables, and their linetables.
14709
14710 2. If PST is not NULL, this procedure reads the program to determine
14711 the list of files included by the unit represented by PST, and
14712 builds all the associated partial symbol tables.
14713
14714 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
14715 It is used for relative paths in the line table.
14716 NOTE: When processing partial symtabs (pst != NULL),
14717 comp_dir == pst->dirname.
14718
14719 NOTE: It is important that psymtabs have the same file name (via strcmp)
14720 as the corresponding symtab. Since COMP_DIR is not used in the name of the
14721 symtab we don't use it in the name of the psymtabs we create.
14722 E.g. expand_line_sal requires this when finding psymtabs to expand.
14723 A good testcase for this is mb-inline.exp. */
14724
14725 static void
14726 dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
14727 struct dwarf2_cu *cu, struct partial_symtab *pst,
14728 int want_line_info)
14729 {
14730 struct objfile *objfile = cu->objfile;
14731 const int decode_for_pst_p = (pst != NULL);
14732 struct subfile *first_subfile = current_subfile;
14733
14734 if (want_line_info)
14735 dwarf_decode_lines_1 (lh, comp_dir, cu, pst);
14736
14737 if (decode_for_pst_p)
14738 {
14739 int file_index;
14740
14741 /* Now that we're done scanning the Line Header Program, we can
14742 create the psymtab of each included file. */
14743 for (file_index = 0; file_index < lh->num_file_names; file_index++)
14744 if (lh->file_names[file_index].included_p == 1)
14745 {
14746 char *include_name =
14747 psymtab_include_file_name (lh, file_index, pst, comp_dir);
14748 if (include_name != NULL)
14749 dwarf2_create_include_psymtab (include_name, pst, objfile);
14750 }
14751 }
14752 else
14753 {
14754 /* Make sure a symtab is created for every file, even files
14755 which contain only variables (i.e. no code with associated
14756 line numbers). */
14757 int i;
14758
14759 for (i = 0; i < lh->num_file_names; i++)
14760 {
14761 char *dir = NULL;
14762 struct file_entry *fe;
14763
14764 fe = &lh->file_names[i];
14765 if (fe->dir_index)
14766 dir = lh->include_dirs[fe->dir_index - 1];
14767 dwarf2_start_subfile (fe->name, dir, comp_dir);
14768
14769 /* Skip the main file; we don't need it, and it must be
14770 allocated last, so that it will show up before the
14771 non-primary symtabs in the objfile's symtab list. */
14772 if (current_subfile == first_subfile)
14773 continue;
14774
14775 if (current_subfile->symtab == NULL)
14776 current_subfile->symtab = allocate_symtab (current_subfile->name,
14777 objfile);
14778 fe->symtab = current_subfile->symtab;
14779 }
14780 }
14781 }
14782
14783 /* Start a subfile for DWARF. FILENAME is the name of the file and
14784 DIRNAME the name of the source directory which contains FILENAME
14785 or NULL if not known. COMP_DIR is the compilation directory for the
14786 linetable's compilation unit or NULL if not known.
14787 This routine tries to keep line numbers from identical absolute and
14788 relative file names in a common subfile.
14789
14790 Using the `list' example from the GDB testsuite, which resides in
14791 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
14792 of /srcdir/list0.c yields the following debugging information for list0.c:
14793
14794 DW_AT_name: /srcdir/list0.c
14795 DW_AT_comp_dir: /compdir
14796 files.files[0].name: list0.h
14797 files.files[0].dir: /srcdir
14798 files.files[1].name: list0.c
14799 files.files[1].dir: /srcdir
14800
14801 The line number information for list0.c has to end up in a single
14802 subfile, so that `break /srcdir/list0.c:1' works as expected.
14803 start_subfile will ensure that this happens provided that we pass the
14804 concatenation of files.files[1].dir and files.files[1].name as the
14805 subfile's name. */
14806
14807 static void
14808 dwarf2_start_subfile (char *filename, const char *dirname,
14809 const char *comp_dir)
14810 {
14811 char *fullname;
14812
14813 /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
14814 `start_symtab' will always pass the contents of DW_AT_comp_dir as
14815 second argument to start_subfile. To be consistent, we do the
14816 same here. In order not to lose the line information directory,
14817 we concatenate it to the filename when it makes sense.
14818 Note that the Dwarf3 standard says (speaking of filenames in line
14819 information): ``The directory index is ignored for file names
14820 that represent full path names''. Thus ignoring dirname in the
14821 `else' branch below isn't an issue. */
14822
14823 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
14824 fullname = concat (dirname, SLASH_STRING, filename, (char *)NULL);
14825 else
14826 fullname = filename;
14827
14828 start_subfile (fullname, comp_dir);
14829
14830 if (fullname != filename)
14831 xfree (fullname);
14832 }
14833
14834 /* Start a symtab for DWARF.
14835 NAME, COMP_DIR, LOW_PC are passed to start_symtab. */
14836
14837 static void
14838 dwarf2_start_symtab (struct dwarf2_cu *cu,
14839 char *name, char *comp_dir, CORE_ADDR low_pc)
14840 {
14841 start_symtab (name, comp_dir, low_pc);
14842 record_debugformat ("DWARF 2");
14843 record_producer (cu->producer);
14844
14845 /* We assume that we're processing GCC output. */
14846 processing_gcc_compilation = 2;
14847
14848 processing_has_namespace_info = 0;
14849 }
14850
14851 static void
14852 var_decode_location (struct attribute *attr, struct symbol *sym,
14853 struct dwarf2_cu *cu)
14854 {
14855 struct objfile *objfile = cu->objfile;
14856 struct comp_unit_head *cu_header = &cu->header;
14857
14858 /* NOTE drow/2003-01-30: There used to be a comment and some special
14859 code here to turn a symbol with DW_AT_external and a
14860 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
14861 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
14862 with some versions of binutils) where shared libraries could have
14863 relocations against symbols in their debug information - the
14864 minimal symbol would have the right address, but the debug info
14865 would not. It's no longer necessary, because we will explicitly
14866 apply relocations when we read in the debug information now. */
14867
14868 /* A DW_AT_location attribute with no contents indicates that a
14869 variable has been optimized away. */
14870 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
14871 {
14872 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
14873 return;
14874 }
14875
14876 /* Handle one degenerate form of location expression specially, to
14877 preserve GDB's previous behavior when section offsets are
14878 specified. If this is just a DW_OP_addr or DW_OP_GNU_addr_index
14879 then mark this symbol as LOC_STATIC. */
14880
14881 if (attr_form_is_block (attr)
14882 && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
14883 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
14884 || (DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
14885 && (DW_BLOCK (attr)->size
14886 == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
14887 {
14888 unsigned int dummy;
14889
14890 if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
14891 SYMBOL_VALUE_ADDRESS (sym) =
14892 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
14893 else
14894 SYMBOL_VALUE_ADDRESS (sym) =
14895 read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1, &dummy);
14896 SYMBOL_CLASS (sym) = LOC_STATIC;
14897 fixup_symbol_section (sym, objfile);
14898 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
14899 SYMBOL_SECTION (sym));
14900 return;
14901 }
14902
14903 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
14904 expression evaluator, and use LOC_COMPUTED only when necessary
14905 (i.e. when the value of a register or memory location is
14906 referenced, or a thread-local block, etc.). Then again, it might
14907 not be worthwhile. I'm assuming that it isn't unless performance
14908 or memory numbers show me otherwise. */
14909
14910 dwarf2_symbol_mark_computed (attr, sym, cu);
14911 SYMBOL_CLASS (sym) = LOC_COMPUTED;
14912
14913 if (SYMBOL_COMPUTED_OPS (sym) == &dwarf2_loclist_funcs)
14914 cu->has_loclist = 1;
14915 }
14916
14917 /* Given a pointer to a DWARF information entry, figure out if we need
14918 to make a symbol table entry for it, and if so, create a new entry
14919 and return a pointer to it.
14920 If TYPE is NULL, determine symbol type from the die, otherwise
14921 used the passed type.
14922 If SPACE is not NULL, use it to hold the new symbol. If it is
14923 NULL, allocate a new symbol on the objfile's obstack. */
14924
14925 static struct symbol *
14926 new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
14927 struct symbol *space)
14928 {
14929 struct objfile *objfile = cu->objfile;
14930 struct symbol *sym = NULL;
14931 char *name;
14932 struct attribute *attr = NULL;
14933 struct attribute *attr2 = NULL;
14934 CORE_ADDR baseaddr;
14935 struct pending **list_to_add = NULL;
14936
14937 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
14938
14939 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
14940
14941 name = dwarf2_name (die, cu);
14942 if (name)
14943 {
14944 const char *linkagename;
14945 int suppress_add = 0;
14946
14947 if (space)
14948 sym = space;
14949 else
14950 sym = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct symbol);
14951 OBJSTAT (objfile, n_syms++);
14952
14953 /* Cache this symbol's name and the name's demangled form (if any). */
14954 SYMBOL_SET_LANGUAGE (sym, cu->language);
14955 linkagename = dwarf2_physname (name, die, cu);
14956 SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
14957
14958 /* Fortran does not have mangling standard and the mangling does differ
14959 between gfortran, iFort etc. */
14960 if (cu->language == language_fortran
14961 && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
14962 symbol_set_demangled_name (&(sym->ginfo),
14963 (char *) dwarf2_full_name (name, die, cu),
14964 NULL);
14965
14966 /* Default assumptions.
14967 Use the passed type or decode it from the die. */
14968 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
14969 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
14970 if (type != NULL)
14971 SYMBOL_TYPE (sym) = type;
14972 else
14973 SYMBOL_TYPE (sym) = die_type (die, cu);
14974 attr = dwarf2_attr (die,
14975 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
14976 cu);
14977 if (attr)
14978 {
14979 SYMBOL_LINE (sym) = DW_UNSND (attr);
14980 }
14981
14982 attr = dwarf2_attr (die,
14983 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
14984 cu);
14985 if (attr)
14986 {
14987 int file_index = DW_UNSND (attr);
14988
14989 if (cu->line_header == NULL
14990 || file_index > cu->line_header->num_file_names)
14991 complaint (&symfile_complaints,
14992 _("file index out of range"));
14993 else if (file_index > 0)
14994 {
14995 struct file_entry *fe;
14996
14997 fe = &cu->line_header->file_names[file_index - 1];
14998 SYMBOL_SYMTAB (sym) = fe->symtab;
14999 }
15000 }
15001
15002 switch (die->tag)
15003 {
15004 case DW_TAG_label:
15005 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
15006 if (attr)
15007 {
15008 SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
15009 }
15010 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
15011 SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
15012 SYMBOL_CLASS (sym) = LOC_LABEL;
15013 add_symbol_to_list (sym, cu->list_in_scope);
15014 break;
15015 case DW_TAG_subprogram:
15016 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
15017 finish_block. */
15018 SYMBOL_CLASS (sym) = LOC_BLOCK;
15019 attr2 = dwarf2_attr (die, DW_AT_external, cu);
15020 if ((attr2 && (DW_UNSND (attr2) != 0))
15021 || cu->language == language_ada)
15022 {
15023 /* Subprograms marked external are stored as a global symbol.
15024 Ada subprograms, whether marked external or not, are always
15025 stored as a global symbol, because we want to be able to
15026 access them globally. For instance, we want to be able
15027 to break on a nested subprogram without having to
15028 specify the context. */
15029 list_to_add = &global_symbols;
15030 }
15031 else
15032 {
15033 list_to_add = cu->list_in_scope;
15034 }
15035 break;
15036 case DW_TAG_inlined_subroutine:
15037 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
15038 finish_block. */
15039 SYMBOL_CLASS (sym) = LOC_BLOCK;
15040 SYMBOL_INLINED (sym) = 1;
15041 list_to_add = cu->list_in_scope;
15042 break;
15043 case DW_TAG_template_value_param:
15044 suppress_add = 1;
15045 /* Fall through. */
15046 case DW_TAG_constant:
15047 case DW_TAG_variable:
15048 case DW_TAG_member:
15049 /* Compilation with minimal debug info may result in
15050 variables with missing type entries. Change the
15051 misleading `void' type to something sensible. */
15052 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
15053 SYMBOL_TYPE (sym)
15054 = objfile_type (objfile)->nodebug_data_symbol;
15055
15056 attr = dwarf2_attr (die, DW_AT_const_value, cu);
15057 /* In the case of DW_TAG_member, we should only be called for
15058 static const members. */
15059 if (die->tag == DW_TAG_member)
15060 {
15061 /* dwarf2_add_field uses die_is_declaration,
15062 so we do the same. */
15063 gdb_assert (die_is_declaration (die, cu));
15064 gdb_assert (attr);
15065 }
15066 if (attr)
15067 {
15068 dwarf2_const_value (attr, sym, cu);
15069 attr2 = dwarf2_attr (die, DW_AT_external, cu);
15070 if (!suppress_add)
15071 {
15072 if (attr2 && (DW_UNSND (attr2) != 0))
15073 list_to_add = &global_symbols;
15074 else
15075 list_to_add = cu->list_in_scope;
15076 }
15077 break;
15078 }
15079 attr = dwarf2_attr (die, DW_AT_location, cu);
15080 if (attr)
15081 {
15082 var_decode_location (attr, sym, cu);
15083 attr2 = dwarf2_attr (die, DW_AT_external, cu);
15084
15085 /* Fortran explicitly imports any global symbols to the local
15086 scope by DW_TAG_common_block. */
15087 if (cu->language == language_fortran && die->parent
15088 && die->parent->tag == DW_TAG_common_block)
15089 attr2 = NULL;
15090
15091 if (SYMBOL_CLASS (sym) == LOC_STATIC
15092 && SYMBOL_VALUE_ADDRESS (sym) == 0
15093 && !dwarf2_per_objfile->has_section_at_zero)
15094 {
15095 /* When a static variable is eliminated by the linker,
15096 the corresponding debug information is not stripped
15097 out, but the variable address is set to null;
15098 do not add such variables into symbol table. */
15099 }
15100 else if (attr2 && (DW_UNSND (attr2) != 0))
15101 {
15102 /* Workaround gfortran PR debug/40040 - it uses
15103 DW_AT_location for variables in -fPIC libraries which may
15104 get overriden by other libraries/executable and get
15105 a different address. Resolve it by the minimal symbol
15106 which may come from inferior's executable using copy
15107 relocation. Make this workaround only for gfortran as for
15108 other compilers GDB cannot guess the minimal symbol
15109 Fortran mangling kind. */
15110 if (cu->language == language_fortran && die->parent
15111 && die->parent->tag == DW_TAG_module
15112 && cu->producer
15113 && strncmp (cu->producer, "GNU Fortran ", 12) == 0)
15114 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
15115
15116 /* A variable with DW_AT_external is never static,
15117 but it may be block-scoped. */
15118 list_to_add = (cu->list_in_scope == &file_symbols
15119 ? &global_symbols : cu->list_in_scope);
15120 }
15121 else
15122 list_to_add = cu->list_in_scope;
15123 }
15124 else
15125 {
15126 /* We do not know the address of this symbol.
15127 If it is an external symbol and we have type information
15128 for it, enter the symbol as a LOC_UNRESOLVED symbol.
15129 The address of the variable will then be determined from
15130 the minimal symbol table whenever the variable is
15131 referenced. */
15132 attr2 = dwarf2_attr (die, DW_AT_external, cu);
15133
15134 /* Fortran explicitly imports any global symbols to the local
15135 scope by DW_TAG_common_block. */
15136 if (cu->language == language_fortran && die->parent
15137 && die->parent->tag == DW_TAG_common_block)
15138 {
15139 /* SYMBOL_CLASS doesn't matter here because
15140 read_common_block is going to reset it. */
15141 if (!suppress_add)
15142 list_to_add = cu->list_in_scope;
15143 }
15144 else if (attr2 && (DW_UNSND (attr2) != 0)
15145 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
15146 {
15147 /* A variable with DW_AT_external is never static, but it
15148 may be block-scoped. */
15149 list_to_add = (cu->list_in_scope == &file_symbols
15150 ? &global_symbols : cu->list_in_scope);
15151
15152 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
15153 }
15154 else if (!die_is_declaration (die, cu))
15155 {
15156 /* Use the default LOC_OPTIMIZED_OUT class. */
15157 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
15158 if (!suppress_add)
15159 list_to_add = cu->list_in_scope;
15160 }
15161 }
15162 break;
15163 case DW_TAG_formal_parameter:
15164 /* If we are inside a function, mark this as an argument. If
15165 not, we might be looking at an argument to an inlined function
15166 when we do not have enough information to show inlined frames;
15167 pretend it's a local variable in that case so that the user can
15168 still see it. */
15169 if (context_stack_depth > 0
15170 && context_stack[context_stack_depth - 1].name != NULL)
15171 SYMBOL_IS_ARGUMENT (sym) = 1;
15172 attr = dwarf2_attr (die, DW_AT_location, cu);
15173 if (attr)
15174 {
15175 var_decode_location (attr, sym, cu);
15176 }
15177 attr = dwarf2_attr (die, DW_AT_const_value, cu);
15178 if (attr)
15179 {
15180 dwarf2_const_value (attr, sym, cu);
15181 }
15182
15183 list_to_add = cu->list_in_scope;
15184 break;
15185 case DW_TAG_unspecified_parameters:
15186 /* From varargs functions; gdb doesn't seem to have any
15187 interest in this information, so just ignore it for now.
15188 (FIXME?) */
15189 break;
15190 case DW_TAG_template_type_param:
15191 suppress_add = 1;
15192 /* Fall through. */
15193 case DW_TAG_class_type:
15194 case DW_TAG_interface_type:
15195 case DW_TAG_structure_type:
15196 case DW_TAG_union_type:
15197 case DW_TAG_set_type:
15198 case DW_TAG_enumeration_type:
15199 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
15200 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
15201
15202 {
15203 /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
15204 really ever be static objects: otherwise, if you try
15205 to, say, break of a class's method and you're in a file
15206 which doesn't mention that class, it won't work unless
15207 the check for all static symbols in lookup_symbol_aux
15208 saves you. See the OtherFileClass tests in
15209 gdb.c++/namespace.exp. */
15210
15211 if (!suppress_add)
15212 {
15213 list_to_add = (cu->list_in_scope == &file_symbols
15214 && (cu->language == language_cplus
15215 || cu->language == language_java)
15216 ? &global_symbols : cu->list_in_scope);
15217
15218 /* The semantics of C++ state that "struct foo {
15219 ... }" also defines a typedef for "foo". A Java
15220 class declaration also defines a typedef for the
15221 class. */
15222 if (cu->language == language_cplus
15223 || cu->language == language_java
15224 || cu->language == language_ada)
15225 {
15226 /* The symbol's name is already allocated along
15227 with this objfile, so we don't need to
15228 duplicate it for the type. */
15229 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
15230 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
15231 }
15232 }
15233 }
15234 break;
15235 case DW_TAG_typedef:
15236 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
15237 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
15238 list_to_add = cu->list_in_scope;
15239 break;
15240 case DW_TAG_base_type:
15241 case DW_TAG_subrange_type:
15242 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
15243 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
15244 list_to_add = cu->list_in_scope;
15245 break;
15246 case DW_TAG_enumerator:
15247 attr = dwarf2_attr (die, DW_AT_const_value, cu);
15248 if (attr)
15249 {
15250 dwarf2_const_value (attr, sym, cu);
15251 }
15252 {
15253 /* NOTE: carlton/2003-11-10: See comment above in the
15254 DW_TAG_class_type, etc. block. */
15255
15256 list_to_add = (cu->list_in_scope == &file_symbols
15257 && (cu->language == language_cplus
15258 || cu->language == language_java)
15259 ? &global_symbols : cu->list_in_scope);
15260 }
15261 break;
15262 case DW_TAG_namespace:
15263 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
15264 list_to_add = &global_symbols;
15265 break;
15266 case DW_TAG_common_block:
15267 SYMBOL_CLASS (sym) = LOC_STATIC;
15268 SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
15269 add_symbol_to_list (sym, cu->list_in_scope);
15270 break;
15271 default:
15272 /* Not a tag we recognize. Hopefully we aren't processing
15273 trash data, but since we must specifically ignore things
15274 we don't recognize, there is nothing else we should do at
15275 this point. */
15276 complaint (&symfile_complaints, _("unsupported tag: '%s'"),
15277 dwarf_tag_name (die->tag));
15278 break;
15279 }
15280
15281 if (suppress_add)
15282 {
15283 sym->hash_next = objfile->template_symbols;
15284 objfile->template_symbols = sym;
15285 list_to_add = NULL;
15286 }
15287
15288 if (list_to_add != NULL)
15289 add_symbol_to_list (sym, list_to_add);
15290
15291 /* For the benefit of old versions of GCC, check for anonymous
15292 namespaces based on the demangled name. */
15293 if (!processing_has_namespace_info
15294 && cu->language == language_cplus)
15295 cp_scan_for_anonymous_namespaces (sym, objfile);
15296 }
15297 return (sym);
15298 }
15299
15300 /* A wrapper for new_symbol_full that always allocates a new symbol. */
15301
15302 static struct symbol *
15303 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
15304 {
15305 return new_symbol_full (die, type, cu, NULL);
15306 }
15307
15308 /* Given an attr with a DW_FORM_dataN value in host byte order,
15309 zero-extend it as appropriate for the symbol's type. The DWARF
15310 standard (v4) is not entirely clear about the meaning of using
15311 DW_FORM_dataN for a constant with a signed type, where the type is
15312 wider than the data. The conclusion of a discussion on the DWARF
15313 list was that this is unspecified. We choose to always zero-extend
15314 because that is the interpretation long in use by GCC. */
15315
15316 static gdb_byte *
15317 dwarf2_const_value_data (struct attribute *attr, struct type *type,
15318 const char *name, struct obstack *obstack,
15319 struct dwarf2_cu *cu, LONGEST *value, int bits)
15320 {
15321 struct objfile *objfile = cu->objfile;
15322 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
15323 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
15324 LONGEST l = DW_UNSND (attr);
15325
15326 if (bits < sizeof (*value) * 8)
15327 {
15328 l &= ((LONGEST) 1 << bits) - 1;
15329 *value = l;
15330 }
15331 else if (bits == sizeof (*value) * 8)
15332 *value = l;
15333 else
15334 {
15335 gdb_byte *bytes = obstack_alloc (obstack, bits / 8);
15336 store_unsigned_integer (bytes, bits / 8, byte_order, l);
15337 return bytes;
15338 }
15339
15340 return NULL;
15341 }
15342
15343 /* Read a constant value from an attribute. Either set *VALUE, or if
15344 the value does not fit in *VALUE, set *BYTES - either already
15345 allocated on the objfile obstack, or newly allocated on OBSTACK,
15346 or, set *BATON, if we translated the constant to a location
15347 expression. */
15348
15349 static void
15350 dwarf2_const_value_attr (struct attribute *attr, struct type *type,
15351 const char *name, struct obstack *obstack,
15352 struct dwarf2_cu *cu,
15353 LONGEST *value, gdb_byte **bytes,
15354 struct dwarf2_locexpr_baton **baton)
15355 {
15356 struct objfile *objfile = cu->objfile;
15357 struct comp_unit_head *cu_header = &cu->header;
15358 struct dwarf_block *blk;
15359 enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
15360 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
15361
15362 *value = 0;
15363 *bytes = NULL;
15364 *baton = NULL;
15365
15366 switch (attr->form)
15367 {
15368 case DW_FORM_addr:
15369 case DW_FORM_GNU_addr_index:
15370 {
15371 gdb_byte *data;
15372
15373 if (TYPE_LENGTH (type) != cu_header->addr_size)
15374 dwarf2_const_value_length_mismatch_complaint (name,
15375 cu_header->addr_size,
15376 TYPE_LENGTH (type));
15377 /* Symbols of this form are reasonably rare, so we just
15378 piggyback on the existing location code rather than writing
15379 a new implementation of symbol_computed_ops. */
15380 *baton = obstack_alloc (&objfile->objfile_obstack,
15381 sizeof (struct dwarf2_locexpr_baton));
15382 (*baton)->per_cu = cu->per_cu;
15383 gdb_assert ((*baton)->per_cu);
15384
15385 (*baton)->size = 2 + cu_header->addr_size;
15386 data = obstack_alloc (&objfile->objfile_obstack, (*baton)->size);
15387 (*baton)->data = data;
15388
15389 data[0] = DW_OP_addr;
15390 store_unsigned_integer (&data[1], cu_header->addr_size,
15391 byte_order, DW_ADDR (attr));
15392 data[cu_header->addr_size + 1] = DW_OP_stack_value;
15393 }
15394 break;
15395 case DW_FORM_string:
15396 case DW_FORM_strp:
15397 case DW_FORM_GNU_str_index:
15398 case DW_FORM_GNU_strp_alt:
15399 /* DW_STRING is already allocated on the objfile obstack, point
15400 directly to it. */
15401 *bytes = (gdb_byte *) DW_STRING (attr);
15402 break;
15403 case DW_FORM_block1:
15404 case DW_FORM_block2:
15405 case DW_FORM_block4:
15406 case DW_FORM_block:
15407 case DW_FORM_exprloc:
15408 blk = DW_BLOCK (attr);
15409 if (TYPE_LENGTH (type) != blk->size)
15410 dwarf2_const_value_length_mismatch_complaint (name, blk->size,
15411 TYPE_LENGTH (type));
15412 *bytes = blk->data;
15413 break;
15414
15415 /* The DW_AT_const_value attributes are supposed to carry the
15416 symbol's value "represented as it would be on the target
15417 architecture." By the time we get here, it's already been
15418 converted to host endianness, so we just need to sign- or
15419 zero-extend it as appropriate. */
15420 case DW_FORM_data1:
15421 *bytes = dwarf2_const_value_data (attr, type, name,
15422 obstack, cu, value, 8);
15423 break;
15424 case DW_FORM_data2:
15425 *bytes = dwarf2_const_value_data (attr, type, name,
15426 obstack, cu, value, 16);
15427 break;
15428 case DW_FORM_data4:
15429 *bytes = dwarf2_const_value_data (attr, type, name,
15430 obstack, cu, value, 32);
15431 break;
15432 case DW_FORM_data8:
15433 *bytes = dwarf2_const_value_data (attr, type, name,
15434 obstack, cu, value, 64);
15435 break;
15436
15437 case DW_FORM_sdata:
15438 *value = DW_SND (attr);
15439 break;
15440
15441 case DW_FORM_udata:
15442 *value = DW_UNSND (attr);
15443 break;
15444
15445 default:
15446 complaint (&symfile_complaints,
15447 _("unsupported const value attribute form: '%s'"),
15448 dwarf_form_name (attr->form));
15449 *value = 0;
15450 break;
15451 }
15452 }
15453
15454
15455 /* Copy constant value from an attribute to a symbol. */
15456
15457 static void
15458 dwarf2_const_value (struct attribute *attr, struct symbol *sym,
15459 struct dwarf2_cu *cu)
15460 {
15461 struct objfile *objfile = cu->objfile;
15462 struct comp_unit_head *cu_header = &cu->header;
15463 LONGEST value;
15464 gdb_byte *bytes;
15465 struct dwarf2_locexpr_baton *baton;
15466
15467 dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
15468 SYMBOL_PRINT_NAME (sym),
15469 &objfile->objfile_obstack, cu,
15470 &value, &bytes, &baton);
15471
15472 if (baton != NULL)
15473 {
15474 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_locexpr_funcs;
15475 SYMBOL_LOCATION_BATON (sym) = baton;
15476 SYMBOL_CLASS (sym) = LOC_COMPUTED;
15477 }
15478 else if (bytes != NULL)
15479 {
15480 SYMBOL_VALUE_BYTES (sym) = bytes;
15481 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
15482 }
15483 else
15484 {
15485 SYMBOL_VALUE (sym) = value;
15486 SYMBOL_CLASS (sym) = LOC_CONST;
15487 }
15488 }
15489
15490 /* Return the type of the die in question using its DW_AT_type attribute. */
15491
15492 static struct type *
15493 die_type (struct die_info *die, struct dwarf2_cu *cu)
15494 {
15495 struct attribute *type_attr;
15496
15497 type_attr = dwarf2_attr (die, DW_AT_type, cu);
15498 if (!type_attr)
15499 {
15500 /* A missing DW_AT_type represents a void type. */
15501 return objfile_type (cu->objfile)->builtin_void;
15502 }
15503
15504 return lookup_die_type (die, type_attr, cu);
15505 }
15506
15507 /* True iff CU's producer generates GNAT Ada auxiliary information
15508 that allows to find parallel types through that information instead
15509 of having to do expensive parallel lookups by type name. */
15510
15511 static int
15512 need_gnat_info (struct dwarf2_cu *cu)
15513 {
15514 /* FIXME: brobecker/2010-10-12: As of now, only the AdaCore version
15515 of GNAT produces this auxiliary information, without any indication
15516 that it is produced. Part of enhancing the FSF version of GNAT
15517 to produce that information will be to put in place an indicator
15518 that we can use in order to determine whether the descriptive type
15519 info is available or not. One suggestion that has been made is
15520 to use a new attribute, attached to the CU die. For now, assume
15521 that the descriptive type info is not available. */
15522 return 0;
15523 }
15524
15525 /* Return the auxiliary type of the die in question using its
15526 DW_AT_GNAT_descriptive_type attribute. Returns NULL if the
15527 attribute is not present. */
15528
15529 static struct type *
15530 die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
15531 {
15532 struct attribute *type_attr;
15533
15534 type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
15535 if (!type_attr)
15536 return NULL;
15537
15538 return lookup_die_type (die, type_attr, cu);
15539 }
15540
15541 /* If DIE has a descriptive_type attribute, then set the TYPE's
15542 descriptive type accordingly. */
15543
15544 static void
15545 set_descriptive_type (struct type *type, struct die_info *die,
15546 struct dwarf2_cu *cu)
15547 {
15548 struct type *descriptive_type = die_descriptive_type (die, cu);
15549
15550 if (descriptive_type)
15551 {
15552 ALLOCATE_GNAT_AUX_TYPE (type);
15553 TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
15554 }
15555 }
15556
15557 /* Return the containing type of the die in question using its
15558 DW_AT_containing_type attribute. */
15559
15560 static struct type *
15561 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
15562 {
15563 struct attribute *type_attr;
15564
15565 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
15566 if (!type_attr)
15567 error (_("Dwarf Error: Problem turning containing type into gdb type "
15568 "[in module %s]"), cu->objfile->name);
15569
15570 return lookup_die_type (die, type_attr, cu);
15571 }
15572
15573 /* Look up the type of DIE in CU using its type attribute ATTR.
15574 If there is no type substitute an error marker. */
15575
15576 static struct type *
15577 lookup_die_type (struct die_info *die, struct attribute *attr,
15578 struct dwarf2_cu *cu)
15579 {
15580 struct objfile *objfile = cu->objfile;
15581 struct type *this_type;
15582
15583 /* First see if we have it cached. */
15584
15585 if (attr->form == DW_FORM_GNU_ref_alt)
15586 {
15587 struct dwarf2_per_cu_data *per_cu;
15588 sect_offset offset = dwarf2_get_ref_die_offset (attr);
15589
15590 per_cu = dwarf2_find_containing_comp_unit (offset, 1, cu->objfile);
15591 this_type = get_die_type_at_offset (offset, per_cu);
15592 }
15593 else if (is_ref_attr (attr))
15594 {
15595 sect_offset offset = dwarf2_get_ref_die_offset (attr);
15596
15597 this_type = get_die_type_at_offset (offset, cu->per_cu);
15598 }
15599 else if (attr->form == DW_FORM_ref_sig8)
15600 {
15601 struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
15602
15603 /* sig_type will be NULL if the signatured type is missing from
15604 the debug info. */
15605 if (sig_type == NULL)
15606 error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
15607 "at 0x%x [in module %s]"),
15608 die->offset.sect_off, objfile->name);
15609
15610 gdb_assert (sig_type->per_cu.is_debug_types);
15611 /* If we haven't filled in type_offset_in_section yet, then we
15612 haven't read the type in yet. */
15613 this_type = NULL;
15614 if (sig_type->type_offset_in_section.sect_off != 0)
15615 {
15616 this_type =
15617 get_die_type_at_offset (sig_type->type_offset_in_section,
15618 &sig_type->per_cu);
15619 }
15620 }
15621 else
15622 {
15623 dump_die_for_error (die);
15624 error (_("Dwarf Error: Bad type attribute %s [in module %s]"),
15625 dwarf_attr_name (attr->name), objfile->name);
15626 }
15627
15628 /* If not cached we need to read it in. */
15629
15630 if (this_type == NULL)
15631 {
15632 struct die_info *type_die;
15633 struct dwarf2_cu *type_cu = cu;
15634
15635 type_die = follow_die_ref_or_sig (die, attr, &type_cu);
15636 /* If we found the type now, it's probably because the type came
15637 from an inter-CU reference and the type's CU got expanded before
15638 ours. */
15639 this_type = get_die_type (type_die, type_cu);
15640 if (this_type == NULL)
15641 this_type = read_type_die_1 (type_die, type_cu);
15642 }
15643
15644 /* If we still don't have a type use an error marker. */
15645
15646 if (this_type == NULL)
15647 {
15648 char *message, *saved;
15649
15650 /* read_type_die already issued a complaint. */
15651 message = xstrprintf (_("<unknown type in %s, CU 0x%x, DIE 0x%x>"),
15652 objfile->name,
15653 cu->header.offset.sect_off,
15654 die->offset.sect_off);
15655 saved = obstack_copy0 (&objfile->objfile_obstack,
15656 message, strlen (message));
15657 xfree (message);
15658
15659 this_type = init_type (TYPE_CODE_ERROR, 0, 0, saved, objfile);
15660 }
15661
15662 return this_type;
15663 }
15664
15665 /* Return the type in DIE, CU.
15666 Returns NULL for invalid types.
15667
15668 This first does a lookup in the appropriate type_hash table,
15669 and only reads the die in if necessary.
15670
15671 NOTE: This can be called when reading in partial or full symbols. */
15672
15673 static struct type *
15674 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
15675 {
15676 struct type *this_type;
15677
15678 this_type = get_die_type (die, cu);
15679 if (this_type)
15680 return this_type;
15681
15682 return read_type_die_1 (die, cu);
15683 }
15684
15685 /* Read the type in DIE, CU.
15686 Returns NULL for invalid types. */
15687
15688 static struct type *
15689 read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
15690 {
15691 struct type *this_type = NULL;
15692
15693 switch (die->tag)
15694 {
15695 case DW_TAG_class_type:
15696 case DW_TAG_interface_type:
15697 case DW_TAG_structure_type:
15698 case DW_TAG_union_type:
15699 this_type = read_structure_type (die, cu);
15700 break;
15701 case DW_TAG_enumeration_type:
15702 this_type = read_enumeration_type (die, cu);
15703 break;
15704 case DW_TAG_subprogram:
15705 case DW_TAG_subroutine_type:
15706 case DW_TAG_inlined_subroutine:
15707 this_type = read_subroutine_type (die, cu);
15708 break;
15709 case DW_TAG_array_type:
15710 this_type = read_array_type (die, cu);
15711 break;
15712 case DW_TAG_set_type:
15713 this_type = read_set_type (die, cu);
15714 break;
15715 case DW_TAG_pointer_type:
15716 this_type = read_tag_pointer_type (die, cu);
15717 break;
15718 case DW_TAG_ptr_to_member_type:
15719 this_type = read_tag_ptr_to_member_type (die, cu);
15720 break;
15721 case DW_TAG_reference_type:
15722 this_type = read_tag_reference_type (die, cu);
15723 break;
15724 case DW_TAG_const_type:
15725 this_type = read_tag_const_type (die, cu);
15726 break;
15727 case DW_TAG_volatile_type:
15728 this_type = read_tag_volatile_type (die, cu);
15729 break;
15730 case DW_TAG_string_type:
15731 this_type = read_tag_string_type (die, cu);
15732 break;
15733 case DW_TAG_typedef:
15734 this_type = read_typedef (die, cu);
15735 break;
15736 case DW_TAG_subrange_type:
15737 this_type = read_subrange_type (die, cu);
15738 break;
15739 case DW_TAG_base_type:
15740 this_type = read_base_type (die, cu);
15741 break;
15742 case DW_TAG_unspecified_type:
15743 this_type = read_unspecified_type (die, cu);
15744 break;
15745 case DW_TAG_namespace:
15746 this_type = read_namespace_type (die, cu);
15747 break;
15748 case DW_TAG_module:
15749 this_type = read_module_type (die, cu);
15750 break;
15751 default:
15752 complaint (&symfile_complaints,
15753 _("unexpected tag in read_type_die: '%s'"),
15754 dwarf_tag_name (die->tag));
15755 break;
15756 }
15757
15758 return this_type;
15759 }
15760
15761 /* See if we can figure out if the class lives in a namespace. We do
15762 this by looking for a member function; its demangled name will
15763 contain namespace info, if there is any.
15764 Return the computed name or NULL.
15765 Space for the result is allocated on the objfile's obstack.
15766 This is the full-die version of guess_partial_die_structure_name.
15767 In this case we know DIE has no useful parent. */
15768
15769 static char *
15770 guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
15771 {
15772 struct die_info *spec_die;
15773 struct dwarf2_cu *spec_cu;
15774 struct die_info *child;
15775
15776 spec_cu = cu;
15777 spec_die = die_specification (die, &spec_cu);
15778 if (spec_die != NULL)
15779 {
15780 die = spec_die;
15781 cu = spec_cu;
15782 }
15783
15784 for (child = die->child;
15785 child != NULL;
15786 child = child->sibling)
15787 {
15788 if (child->tag == DW_TAG_subprogram)
15789 {
15790 struct attribute *attr;
15791
15792 attr = dwarf2_attr (child, DW_AT_linkage_name, cu);
15793 if (attr == NULL)
15794 attr = dwarf2_attr (child, DW_AT_MIPS_linkage_name, cu);
15795 if (attr != NULL)
15796 {
15797 char *actual_name
15798 = language_class_name_from_physname (cu->language_defn,
15799 DW_STRING (attr));
15800 char *name = NULL;
15801
15802 if (actual_name != NULL)
15803 {
15804 char *die_name = dwarf2_name (die, cu);
15805
15806 if (die_name != NULL
15807 && strcmp (die_name, actual_name) != 0)
15808 {
15809 /* Strip off the class name from the full name.
15810 We want the prefix. */
15811 int die_name_len = strlen (die_name);
15812 int actual_name_len = strlen (actual_name);
15813
15814 /* Test for '::' as a sanity check. */
15815 if (actual_name_len > die_name_len + 2
15816 && actual_name[actual_name_len
15817 - die_name_len - 1] == ':')
15818 name =
15819 obsavestring (actual_name,
15820 actual_name_len - die_name_len - 2,
15821 &cu->objfile->objfile_obstack);
15822 }
15823 }
15824 xfree (actual_name);
15825 return name;
15826 }
15827 }
15828 }
15829
15830 return NULL;
15831 }
15832
15833 /* GCC might emit a nameless typedef that has a linkage name. Determine the
15834 prefix part in such case. See
15835 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
15836
15837 static char *
15838 anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
15839 {
15840 struct attribute *attr;
15841 char *base;
15842
15843 if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
15844 && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
15845 return NULL;
15846
15847 attr = dwarf2_attr (die, DW_AT_name, cu);
15848 if (attr != NULL && DW_STRING (attr) != NULL)
15849 return NULL;
15850
15851 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
15852 if (attr == NULL)
15853 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
15854 if (attr == NULL || DW_STRING (attr) == NULL)
15855 return NULL;
15856
15857 /* dwarf2_name had to be already called. */
15858 gdb_assert (DW_STRING_IS_CANONICAL (attr));
15859
15860 /* Strip the base name, keep any leading namespaces/classes. */
15861 base = strrchr (DW_STRING (attr), ':');
15862 if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
15863 return "";
15864
15865 return obsavestring (DW_STRING (attr), &base[-1] - DW_STRING (attr),
15866 &cu->objfile->objfile_obstack);
15867 }
15868
15869 /* Return the name of the namespace/class that DIE is defined within,
15870 or "" if we can't tell. The caller should not xfree the result.
15871
15872 For example, if we're within the method foo() in the following
15873 code:
15874
15875 namespace N {
15876 class C {
15877 void foo () {
15878 }
15879 };
15880 }
15881
15882 then determine_prefix on foo's die will return "N::C". */
15883
15884 static const char *
15885 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
15886 {
15887 struct die_info *parent, *spec_die;
15888 struct dwarf2_cu *spec_cu;
15889 struct type *parent_type;
15890 char *retval;
15891
15892 if (cu->language != language_cplus && cu->language != language_java
15893 && cu->language != language_fortran)
15894 return "";
15895
15896 retval = anonymous_struct_prefix (die, cu);
15897 if (retval)
15898 return retval;
15899
15900 /* We have to be careful in the presence of DW_AT_specification.
15901 For example, with GCC 3.4, given the code
15902
15903 namespace N {
15904 void foo() {
15905 // Definition of N::foo.
15906 }
15907 }
15908
15909 then we'll have a tree of DIEs like this:
15910
15911 1: DW_TAG_compile_unit
15912 2: DW_TAG_namespace // N
15913 3: DW_TAG_subprogram // declaration of N::foo
15914 4: DW_TAG_subprogram // definition of N::foo
15915 DW_AT_specification // refers to die #3
15916
15917 Thus, when processing die #4, we have to pretend that we're in
15918 the context of its DW_AT_specification, namely the contex of die
15919 #3. */
15920 spec_cu = cu;
15921 spec_die = die_specification (die, &spec_cu);
15922 if (spec_die == NULL)
15923 parent = die->parent;
15924 else
15925 {
15926 parent = spec_die->parent;
15927 cu = spec_cu;
15928 }
15929
15930 if (parent == NULL)
15931 return "";
15932 else if (parent->building_fullname)
15933 {
15934 const char *name;
15935 const char *parent_name;
15936
15937 /* It has been seen on RealView 2.2 built binaries,
15938 DW_TAG_template_type_param types actually _defined_ as
15939 children of the parent class:
15940
15941 enum E {};
15942 template class <class Enum> Class{};
15943 Class<enum E> class_e;
15944
15945 1: DW_TAG_class_type (Class)
15946 2: DW_TAG_enumeration_type (E)
15947 3: DW_TAG_enumerator (enum1:0)
15948 3: DW_TAG_enumerator (enum2:1)
15949 ...
15950 2: DW_TAG_template_type_param
15951 DW_AT_type DW_FORM_ref_udata (E)
15952
15953 Besides being broken debug info, it can put GDB into an
15954 infinite loop. Consider:
15955
15956 When we're building the full name for Class<E>, we'll start
15957 at Class, and go look over its template type parameters,
15958 finding E. We'll then try to build the full name of E, and
15959 reach here. We're now trying to build the full name of E,
15960 and look over the parent DIE for containing scope. In the
15961 broken case, if we followed the parent DIE of E, we'd again
15962 find Class, and once again go look at its template type
15963 arguments, etc., etc. Simply don't consider such parent die
15964 as source-level parent of this die (it can't be, the language
15965 doesn't allow it), and break the loop here. */
15966 name = dwarf2_name (die, cu);
15967 parent_name = dwarf2_name (parent, cu);
15968 complaint (&symfile_complaints,
15969 _("template param type '%s' defined within parent '%s'"),
15970 name ? name : "<unknown>",
15971 parent_name ? parent_name : "<unknown>");
15972 return "";
15973 }
15974 else
15975 switch (parent->tag)
15976 {
15977 case DW_TAG_namespace:
15978 parent_type = read_type_die (parent, cu);
15979 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
15980 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
15981 Work around this problem here. */
15982 if (cu->language == language_cplus
15983 && strcmp (TYPE_TAG_NAME (parent_type), "::") == 0)
15984 return "";
15985 /* We give a name to even anonymous namespaces. */
15986 return TYPE_TAG_NAME (parent_type);
15987 case DW_TAG_class_type:
15988 case DW_TAG_interface_type:
15989 case DW_TAG_structure_type:
15990 case DW_TAG_union_type:
15991 case DW_TAG_module:
15992 parent_type = read_type_die (parent, cu);
15993 if (TYPE_TAG_NAME (parent_type) != NULL)
15994 return TYPE_TAG_NAME (parent_type);
15995 else
15996 /* An anonymous structure is only allowed non-static data
15997 members; no typedefs, no member functions, et cetera.
15998 So it does not need a prefix. */
15999 return "";
16000 case DW_TAG_compile_unit:
16001 case DW_TAG_partial_unit:
16002 /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace. Cope. */
16003 if (cu->language == language_cplus
16004 && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
16005 && die->child != NULL
16006 && (die->tag == DW_TAG_class_type
16007 || die->tag == DW_TAG_structure_type
16008 || die->tag == DW_TAG_union_type))
16009 {
16010 char *name = guess_full_die_structure_name (die, cu);
16011 if (name != NULL)
16012 return name;
16013 }
16014 return "";
16015 default:
16016 return determine_prefix (parent, cu);
16017 }
16018 }
16019
16020 /* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
16021 with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
16022 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null, perform
16023 an obconcat, otherwise allocate storage for the result. The CU argument is
16024 used to determine the language and hence, the appropriate separator. */
16025
16026 #define MAX_SEP_LEN 7 /* strlen ("__") + strlen ("_MOD_") */
16027
16028 static char *
16029 typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
16030 int physname, struct dwarf2_cu *cu)
16031 {
16032 const char *lead = "";
16033 const char *sep;
16034
16035 if (suffix == NULL || suffix[0] == '\0'
16036 || prefix == NULL || prefix[0] == '\0')
16037 sep = "";
16038 else if (cu->language == language_java)
16039 sep = ".";
16040 else if (cu->language == language_fortran && physname)
16041 {
16042 /* This is gfortran specific mangling. Normally DW_AT_linkage_name or
16043 DW_AT_MIPS_linkage_name is preferred and used instead. */
16044
16045 lead = "__";
16046 sep = "_MOD_";
16047 }
16048 else
16049 sep = "::";
16050
16051 if (prefix == NULL)
16052 prefix = "";
16053 if (suffix == NULL)
16054 suffix = "";
16055
16056 if (obs == NULL)
16057 {
16058 char *retval
16059 = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
16060
16061 strcpy (retval, lead);
16062 strcat (retval, prefix);
16063 strcat (retval, sep);
16064 strcat (retval, suffix);
16065 return retval;
16066 }
16067 else
16068 {
16069 /* We have an obstack. */
16070 return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
16071 }
16072 }
16073
16074 /* Return sibling of die, NULL if no sibling. */
16075
16076 static struct die_info *
16077 sibling_die (struct die_info *die)
16078 {
16079 return die->sibling;
16080 }
16081
16082 /* Get name of a die, return NULL if not found. */
16083
16084 static char *
16085 dwarf2_canonicalize_name (char *name, struct dwarf2_cu *cu,
16086 struct obstack *obstack)
16087 {
16088 if (name && cu->language == language_cplus)
16089 {
16090 char *canon_name = cp_canonicalize_string (name);
16091
16092 if (canon_name != NULL)
16093 {
16094 if (strcmp (canon_name, name) != 0)
16095 name = obsavestring (canon_name, strlen (canon_name),
16096 obstack);
16097 xfree (canon_name);
16098 }
16099 }
16100
16101 return name;
16102 }
16103
16104 /* Get name of a die, return NULL if not found. */
16105
16106 static char *
16107 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
16108 {
16109 struct attribute *attr;
16110
16111 attr = dwarf2_attr (die, DW_AT_name, cu);
16112 if ((!attr || !DW_STRING (attr))
16113 && die->tag != DW_TAG_class_type
16114 && die->tag != DW_TAG_interface_type
16115 && die->tag != DW_TAG_structure_type
16116 && die->tag != DW_TAG_union_type)
16117 return NULL;
16118
16119 switch (die->tag)
16120 {
16121 case DW_TAG_compile_unit:
16122 case DW_TAG_partial_unit:
16123 /* Compilation units have a DW_AT_name that is a filename, not
16124 a source language identifier. */
16125 case DW_TAG_enumeration_type:
16126 case DW_TAG_enumerator:
16127 /* These tags always have simple identifiers already; no need
16128 to canonicalize them. */
16129 return DW_STRING (attr);
16130
16131 case DW_TAG_subprogram:
16132 /* Java constructors will all be named "<init>", so return
16133 the class name when we see this special case. */
16134 if (cu->language == language_java
16135 && DW_STRING (attr) != NULL
16136 && strcmp (DW_STRING (attr), "<init>") == 0)
16137 {
16138 struct dwarf2_cu *spec_cu = cu;
16139 struct die_info *spec_die;
16140
16141 /* GCJ will output '<init>' for Java constructor names.
16142 For this special case, return the name of the parent class. */
16143
16144 /* GCJ may output suprogram DIEs with AT_specification set.
16145 If so, use the name of the specified DIE. */
16146 spec_die = die_specification (die, &spec_cu);
16147 if (spec_die != NULL)
16148 return dwarf2_name (spec_die, spec_cu);
16149
16150 do
16151 {
16152 die = die->parent;
16153 if (die->tag == DW_TAG_class_type)
16154 return dwarf2_name (die, cu);
16155 }
16156 while (die->tag != DW_TAG_compile_unit
16157 && die->tag != DW_TAG_partial_unit);
16158 }
16159 break;
16160
16161 case DW_TAG_class_type:
16162 case DW_TAG_interface_type:
16163 case DW_TAG_structure_type:
16164 case DW_TAG_union_type:
16165 /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
16166 structures or unions. These were of the form "._%d" in GCC 4.1,
16167 or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
16168 and GCC 4.4. We work around this problem by ignoring these. */
16169 if (attr && DW_STRING (attr)
16170 && (strncmp (DW_STRING (attr), "._", 2) == 0
16171 || strncmp (DW_STRING (attr), "<anonymous", 10) == 0))
16172 return NULL;
16173
16174 /* GCC might emit a nameless typedef that has a linkage name. See
16175 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
16176 if (!attr || DW_STRING (attr) == NULL)
16177 {
16178 char *demangled = NULL;
16179
16180 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
16181 if (attr == NULL)
16182 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
16183
16184 if (attr == NULL || DW_STRING (attr) == NULL)
16185 return NULL;
16186
16187 /* Avoid demangling DW_STRING (attr) the second time on a second
16188 call for the same DIE. */
16189 if (!DW_STRING_IS_CANONICAL (attr))
16190 demangled = cplus_demangle (DW_STRING (attr), DMGL_TYPES);
16191
16192 if (demangled)
16193 {
16194 char *base;
16195
16196 /* FIXME: we already did this for the partial symbol... */
16197 DW_STRING (attr) = obsavestring (demangled, strlen (demangled),
16198 &cu->objfile->objfile_obstack);
16199 DW_STRING_IS_CANONICAL (attr) = 1;
16200 xfree (demangled);
16201
16202 /* Strip any leading namespaces/classes, keep only the base name.
16203 DW_AT_name for named DIEs does not contain the prefixes. */
16204 base = strrchr (DW_STRING (attr), ':');
16205 if (base && base > DW_STRING (attr) && base[-1] == ':')
16206 return &base[1];
16207 else
16208 return DW_STRING (attr);
16209 }
16210 }
16211 break;
16212
16213 default:
16214 break;
16215 }
16216
16217 if (!DW_STRING_IS_CANONICAL (attr))
16218 {
16219 DW_STRING (attr)
16220 = dwarf2_canonicalize_name (DW_STRING (attr), cu,
16221 &cu->objfile->objfile_obstack);
16222 DW_STRING_IS_CANONICAL (attr) = 1;
16223 }
16224 return DW_STRING (attr);
16225 }
16226
16227 /* Return the die that this die in an extension of, or NULL if there
16228 is none. *EXT_CU is the CU containing DIE on input, and the CU
16229 containing the return value on output. */
16230
16231 static struct die_info *
16232 dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
16233 {
16234 struct attribute *attr;
16235
16236 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
16237 if (attr == NULL)
16238 return NULL;
16239
16240 return follow_die_ref (die, attr, ext_cu);
16241 }
16242
16243 /* Convert a DIE tag into its string name. */
16244
16245 static const char *
16246 dwarf_tag_name (unsigned tag)
16247 {
16248 const char *name = get_DW_TAG_name (tag);
16249
16250 if (name == NULL)
16251 return "DW_TAG_<unknown>";
16252
16253 return name;
16254 }
16255
16256 /* Convert a DWARF attribute code into its string name. */
16257
16258 static const char *
16259 dwarf_attr_name (unsigned attr)
16260 {
16261 const char *name;
16262
16263 #ifdef MIPS /* collides with DW_AT_HP_block_index */
16264 if (attr == DW_AT_MIPS_fde)
16265 return "DW_AT_MIPS_fde";
16266 #else
16267 if (attr == DW_AT_HP_block_index)
16268 return "DW_AT_HP_block_index";
16269 #endif
16270
16271 name = get_DW_AT_name (attr);
16272
16273 if (name == NULL)
16274 return "DW_AT_<unknown>";
16275
16276 return name;
16277 }
16278
16279 /* Convert a DWARF value form code into its string name. */
16280
16281 static const char *
16282 dwarf_form_name (unsigned form)
16283 {
16284 const char *name = get_DW_FORM_name (form);
16285
16286 if (name == NULL)
16287 return "DW_FORM_<unknown>";
16288
16289 return name;
16290 }
16291
16292 static char *
16293 dwarf_bool_name (unsigned mybool)
16294 {
16295 if (mybool)
16296 return "TRUE";
16297 else
16298 return "FALSE";
16299 }
16300
16301 /* Convert a DWARF type code into its string name. */
16302
16303 static const char *
16304 dwarf_type_encoding_name (unsigned enc)
16305 {
16306 const char *name = get_DW_ATE_name (enc);
16307
16308 if (name == NULL)
16309 return "DW_ATE_<unknown>";
16310
16311 return name;
16312 }
16313
16314 static void
16315 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
16316 {
16317 unsigned int i;
16318
16319 print_spaces (indent, f);
16320 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset 0x%x)\n",
16321 dwarf_tag_name (die->tag), die->abbrev, die->offset.sect_off);
16322
16323 if (die->parent != NULL)
16324 {
16325 print_spaces (indent, f);
16326 fprintf_unfiltered (f, " parent at offset: 0x%x\n",
16327 die->parent->offset.sect_off);
16328 }
16329
16330 print_spaces (indent, f);
16331 fprintf_unfiltered (f, " has children: %s\n",
16332 dwarf_bool_name (die->child != NULL));
16333
16334 print_spaces (indent, f);
16335 fprintf_unfiltered (f, " attributes:\n");
16336
16337 for (i = 0; i < die->num_attrs; ++i)
16338 {
16339 print_spaces (indent, f);
16340 fprintf_unfiltered (f, " %s (%s) ",
16341 dwarf_attr_name (die->attrs[i].name),
16342 dwarf_form_name (die->attrs[i].form));
16343
16344 switch (die->attrs[i].form)
16345 {
16346 case DW_FORM_addr:
16347 case DW_FORM_GNU_addr_index:
16348 fprintf_unfiltered (f, "address: ");
16349 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
16350 break;
16351 case DW_FORM_block2:
16352 case DW_FORM_block4:
16353 case DW_FORM_block:
16354 case DW_FORM_block1:
16355 fprintf_unfiltered (f, "block: size %s",
16356 pulongest (DW_BLOCK (&die->attrs[i])->size));
16357 break;
16358 case DW_FORM_exprloc:
16359 fprintf_unfiltered (f, "expression: size %s",
16360 pulongest (DW_BLOCK (&die->attrs[i])->size));
16361 break;
16362 case DW_FORM_ref_addr:
16363 fprintf_unfiltered (f, "ref address: ");
16364 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
16365 break;
16366 case DW_FORM_GNU_ref_alt:
16367 fprintf_unfiltered (f, "alt ref address: ");
16368 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
16369 break;
16370 case DW_FORM_ref1:
16371 case DW_FORM_ref2:
16372 case DW_FORM_ref4:
16373 case DW_FORM_ref8:
16374 case DW_FORM_ref_udata:
16375 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
16376 (long) (DW_UNSND (&die->attrs[i])));
16377 break;
16378 case DW_FORM_data1:
16379 case DW_FORM_data2:
16380 case DW_FORM_data4:
16381 case DW_FORM_data8:
16382 case DW_FORM_udata:
16383 case DW_FORM_sdata:
16384 fprintf_unfiltered (f, "constant: %s",
16385 pulongest (DW_UNSND (&die->attrs[i])));
16386 break;
16387 case DW_FORM_sec_offset:
16388 fprintf_unfiltered (f, "section offset: %s",
16389 pulongest (DW_UNSND (&die->attrs[i])));
16390 break;
16391 case DW_FORM_ref_sig8:
16392 if (DW_SIGNATURED_TYPE (&die->attrs[i]) != NULL)
16393 fprintf_unfiltered (f, "signatured type, offset: 0x%x",
16394 DW_SIGNATURED_TYPE (&die->attrs[i])->per_cu.offset.sect_off);
16395 else
16396 fprintf_unfiltered (f, "signatured type, offset: unknown");
16397 break;
16398 case DW_FORM_string:
16399 case DW_FORM_strp:
16400 case DW_FORM_GNU_str_index:
16401 case DW_FORM_GNU_strp_alt:
16402 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
16403 DW_STRING (&die->attrs[i])
16404 ? DW_STRING (&die->attrs[i]) : "",
16405 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
16406 break;
16407 case DW_FORM_flag:
16408 if (DW_UNSND (&die->attrs[i]))
16409 fprintf_unfiltered (f, "flag: TRUE");
16410 else
16411 fprintf_unfiltered (f, "flag: FALSE");
16412 break;
16413 case DW_FORM_flag_present:
16414 fprintf_unfiltered (f, "flag: TRUE");
16415 break;
16416 case DW_FORM_indirect:
16417 /* The reader will have reduced the indirect form to
16418 the "base form" so this form should not occur. */
16419 fprintf_unfiltered (f,
16420 "unexpected attribute form: DW_FORM_indirect");
16421 break;
16422 default:
16423 fprintf_unfiltered (f, "unsupported attribute form: %d.",
16424 die->attrs[i].form);
16425 break;
16426 }
16427 fprintf_unfiltered (f, "\n");
16428 }
16429 }
16430
16431 static void
16432 dump_die_for_error (struct die_info *die)
16433 {
16434 dump_die_shallow (gdb_stderr, 0, die);
16435 }
16436
16437 static void
16438 dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
16439 {
16440 int indent = level * 4;
16441
16442 gdb_assert (die != NULL);
16443
16444 if (level >= max_level)
16445 return;
16446
16447 dump_die_shallow (f, indent, die);
16448
16449 if (die->child != NULL)
16450 {
16451 print_spaces (indent, f);
16452 fprintf_unfiltered (f, " Children:");
16453 if (level + 1 < max_level)
16454 {
16455 fprintf_unfiltered (f, "\n");
16456 dump_die_1 (f, level + 1, max_level, die->child);
16457 }
16458 else
16459 {
16460 fprintf_unfiltered (f,
16461 " [not printed, max nesting level reached]\n");
16462 }
16463 }
16464
16465 if (die->sibling != NULL && level > 0)
16466 {
16467 dump_die_1 (f, level, max_level, die->sibling);
16468 }
16469 }
16470
16471 /* This is called from the pdie macro in gdbinit.in.
16472 It's not static so gcc will keep a copy callable from gdb. */
16473
16474 void
16475 dump_die (struct die_info *die, int max_level)
16476 {
16477 dump_die_1 (gdb_stdlog, 0, max_level, die);
16478 }
16479
16480 static void
16481 store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
16482 {
16483 void **slot;
16484
16485 slot = htab_find_slot_with_hash (cu->die_hash, die, die->offset.sect_off,
16486 INSERT);
16487
16488 *slot = die;
16489 }
16490
16491 /* DW_ADDR is always stored already as sect_offset; despite for the forms
16492 besides DW_FORM_ref_addr it is stored as cu_offset in the DWARF file. */
16493
16494 static int
16495 is_ref_attr (struct attribute *attr)
16496 {
16497 switch (attr->form)
16498 {
16499 case DW_FORM_ref_addr:
16500 case DW_FORM_ref1:
16501 case DW_FORM_ref2:
16502 case DW_FORM_ref4:
16503 case DW_FORM_ref8:
16504 case DW_FORM_ref_udata:
16505 case DW_FORM_GNU_ref_alt:
16506 return 1;
16507 default:
16508 return 0;
16509 }
16510 }
16511
16512 /* Return DIE offset of ATTR. Return 0 with complaint if ATTR is not of the
16513 required kind. */
16514
16515 static sect_offset
16516 dwarf2_get_ref_die_offset (struct attribute *attr)
16517 {
16518 sect_offset retval = { DW_UNSND (attr) };
16519
16520 if (is_ref_attr (attr))
16521 return retval;
16522
16523 retval.sect_off = 0;
16524 complaint (&symfile_complaints,
16525 _("unsupported die ref attribute form: '%s'"),
16526 dwarf_form_name (attr->form));
16527 return retval;
16528 }
16529
16530 /* Return the constant value held by ATTR. Return DEFAULT_VALUE if
16531 * the value held by the attribute is not constant. */
16532
16533 static LONGEST
16534 dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
16535 {
16536 if (attr->form == DW_FORM_sdata)
16537 return DW_SND (attr);
16538 else if (attr->form == DW_FORM_udata
16539 || attr->form == DW_FORM_data1
16540 || attr->form == DW_FORM_data2
16541 || attr->form == DW_FORM_data4
16542 || attr->form == DW_FORM_data8)
16543 return DW_UNSND (attr);
16544 else
16545 {
16546 complaint (&symfile_complaints,
16547 _("Attribute value is not a constant (%s)"),
16548 dwarf_form_name (attr->form));
16549 return default_value;
16550 }
16551 }
16552
16553 /* Follow reference or signature attribute ATTR of SRC_DIE.
16554 On entry *REF_CU is the CU of SRC_DIE.
16555 On exit *REF_CU is the CU of the result. */
16556
16557 static struct die_info *
16558 follow_die_ref_or_sig (struct die_info *src_die, struct attribute *attr,
16559 struct dwarf2_cu **ref_cu)
16560 {
16561 struct die_info *die;
16562
16563 if (is_ref_attr (attr))
16564 die = follow_die_ref (src_die, attr, ref_cu);
16565 else if (attr->form == DW_FORM_ref_sig8)
16566 die = follow_die_sig (src_die, attr, ref_cu);
16567 else
16568 {
16569 dump_die_for_error (src_die);
16570 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
16571 (*ref_cu)->objfile->name);
16572 }
16573
16574 return die;
16575 }
16576
16577 /* Follow reference OFFSET.
16578 On entry *REF_CU is the CU of the source die referencing OFFSET.
16579 On exit *REF_CU is the CU of the result.
16580 Returns NULL if OFFSET is invalid. */
16581
16582 static struct die_info *
16583 follow_die_offset (sect_offset offset, int offset_in_dwz,
16584 struct dwarf2_cu **ref_cu)
16585 {
16586 struct die_info temp_die;
16587 struct dwarf2_cu *target_cu, *cu = *ref_cu;
16588
16589 gdb_assert (cu->per_cu != NULL);
16590
16591 target_cu = cu;
16592
16593 if (cu->per_cu->is_debug_types)
16594 {
16595 /* .debug_types CUs cannot reference anything outside their CU.
16596 If they need to, they have to reference a signatured type via
16597 DW_FORM_ref_sig8. */
16598 if (! offset_in_cu_p (&cu->header, offset))
16599 return NULL;
16600 }
16601 else if (offset_in_dwz != cu->per_cu->is_dwz
16602 || ! offset_in_cu_p (&cu->header, offset))
16603 {
16604 struct dwarf2_per_cu_data *per_cu;
16605
16606 per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
16607 cu->objfile);
16608
16609 /* If necessary, add it to the queue and load its DIEs. */
16610 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
16611 load_full_comp_unit (per_cu, cu->language);
16612
16613 target_cu = per_cu->cu;
16614 }
16615 else if (cu->dies == NULL)
16616 {
16617 /* We're loading full DIEs during partial symbol reading. */
16618 gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
16619 load_full_comp_unit (cu->per_cu, language_minimal);
16620 }
16621
16622 *ref_cu = target_cu;
16623 temp_die.offset = offset;
16624 return htab_find_with_hash (target_cu->die_hash, &temp_die, offset.sect_off);
16625 }
16626
16627 /* Follow reference attribute ATTR of SRC_DIE.
16628 On entry *REF_CU is the CU of SRC_DIE.
16629 On exit *REF_CU is the CU of the result. */
16630
16631 static struct die_info *
16632 follow_die_ref (struct die_info *src_die, struct attribute *attr,
16633 struct dwarf2_cu **ref_cu)
16634 {
16635 sect_offset offset = dwarf2_get_ref_die_offset (attr);
16636 struct dwarf2_cu *cu = *ref_cu;
16637 struct die_info *die;
16638
16639 die = follow_die_offset (offset,
16640 (attr->form == DW_FORM_GNU_ref_alt
16641 || cu->per_cu->is_dwz),
16642 ref_cu);
16643 if (!die)
16644 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced from DIE "
16645 "at 0x%x [in module %s]"),
16646 offset.sect_off, src_die->offset.sect_off, cu->objfile->name);
16647
16648 return die;
16649 }
16650
16651 /* Return DWARF block referenced by DW_AT_location of DIE at OFFSET at PER_CU.
16652 Returned value is intended for DW_OP_call*. Returned
16653 dwarf2_locexpr_baton->data has lifetime of PER_CU->OBJFILE. */
16654
16655 struct dwarf2_locexpr_baton
16656 dwarf2_fetch_die_location_block (cu_offset offset_in_cu,
16657 struct dwarf2_per_cu_data *per_cu,
16658 CORE_ADDR (*get_frame_pc) (void *baton),
16659 void *baton)
16660 {
16661 sect_offset offset = { per_cu->offset.sect_off + offset_in_cu.cu_off };
16662 struct dwarf2_cu *cu;
16663 struct die_info *die;
16664 struct attribute *attr;
16665 struct dwarf2_locexpr_baton retval;
16666
16667 dw2_setup (per_cu->objfile);
16668
16669 if (per_cu->cu == NULL)
16670 load_cu (per_cu);
16671 cu = per_cu->cu;
16672
16673 die = follow_die_offset (offset, per_cu->is_dwz, &cu);
16674 if (!die)
16675 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
16676 offset.sect_off, per_cu->objfile->name);
16677
16678 attr = dwarf2_attr (die, DW_AT_location, cu);
16679 if (!attr)
16680 {
16681 /* DWARF: "If there is no such attribute, then there is no effect.".
16682 DATA is ignored if SIZE is 0. */
16683
16684 retval.data = NULL;
16685 retval.size = 0;
16686 }
16687 else if (attr_form_is_section_offset (attr))
16688 {
16689 struct dwarf2_loclist_baton loclist_baton;
16690 CORE_ADDR pc = (*get_frame_pc) (baton);
16691 size_t size;
16692
16693 fill_in_loclist_baton (cu, &loclist_baton, attr);
16694
16695 retval.data = dwarf2_find_location_expression (&loclist_baton,
16696 &size, pc);
16697 retval.size = size;
16698 }
16699 else
16700 {
16701 if (!attr_form_is_block (attr))
16702 error (_("Dwarf Error: DIE at 0x%x referenced in module %s "
16703 "is neither DW_FORM_block* nor DW_FORM_exprloc"),
16704 offset.sect_off, per_cu->objfile->name);
16705
16706 retval.data = DW_BLOCK (attr)->data;
16707 retval.size = DW_BLOCK (attr)->size;
16708 }
16709 retval.per_cu = cu->per_cu;
16710
16711 age_cached_comp_units ();
16712
16713 return retval;
16714 }
16715
16716 /* Return the type of the DIE at DIE_OFFSET in the CU named by
16717 PER_CU. */
16718
16719 struct type *
16720 dwarf2_get_die_type (cu_offset die_offset,
16721 struct dwarf2_per_cu_data *per_cu)
16722 {
16723 sect_offset die_offset_sect;
16724
16725 dw2_setup (per_cu->objfile);
16726
16727 die_offset_sect.sect_off = per_cu->offset.sect_off + die_offset.cu_off;
16728 return get_die_type_at_offset (die_offset_sect, per_cu);
16729 }
16730
16731 /* Follow the signature attribute ATTR in SRC_DIE.
16732 On entry *REF_CU is the CU of SRC_DIE.
16733 On exit *REF_CU is the CU of the result. */
16734
16735 static struct die_info *
16736 follow_die_sig (struct die_info *src_die, struct attribute *attr,
16737 struct dwarf2_cu **ref_cu)
16738 {
16739 struct objfile *objfile = (*ref_cu)->objfile;
16740 struct die_info temp_die;
16741 struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
16742 struct dwarf2_cu *sig_cu;
16743 struct die_info *die;
16744
16745 /* sig_type will be NULL if the signatured type is missing from
16746 the debug info. */
16747 if (sig_type == NULL)
16748 error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
16749 "at 0x%x [in module %s]"),
16750 src_die->offset.sect_off, objfile->name);
16751
16752 /* If necessary, add it to the queue and load its DIEs. */
16753
16754 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, language_minimal))
16755 read_signatured_type (sig_type);
16756
16757 gdb_assert (sig_type->per_cu.cu != NULL);
16758
16759 sig_cu = sig_type->per_cu.cu;
16760 gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
16761 temp_die.offset = sig_type->type_offset_in_section;
16762 die = htab_find_with_hash (sig_cu->die_hash, &temp_die,
16763 temp_die.offset.sect_off);
16764 if (die)
16765 {
16766 *ref_cu = sig_cu;
16767 return die;
16768 }
16769
16770 error (_("Dwarf Error: Cannot find signatured DIE at 0x%x referenced "
16771 "from DIE at 0x%x [in module %s]"),
16772 temp_die.offset.sect_off, src_die->offset.sect_off, objfile->name);
16773 }
16774
16775 /* Given an offset of a signatured type, return its signatured_type. */
16776
16777 static struct signatured_type *
16778 lookup_signatured_type_at_offset (struct objfile *objfile,
16779 struct dwarf2_section_info *section,
16780 sect_offset offset)
16781 {
16782 gdb_byte *info_ptr = section->buffer + offset.sect_off;
16783 unsigned int length, initial_length_size;
16784 unsigned int sig_offset;
16785 struct signatured_type find_entry, *sig_type;
16786
16787 length = read_initial_length (objfile->obfd, info_ptr, &initial_length_size);
16788 sig_offset = (initial_length_size
16789 + 2 /*version*/
16790 + (initial_length_size == 4 ? 4 : 8) /*debug_abbrev_offset*/
16791 + 1 /*address_size*/);
16792 find_entry.signature = bfd_get_64 (objfile->obfd, info_ptr + sig_offset);
16793 sig_type = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
16794
16795 /* This is only used to lookup previously recorded types.
16796 If we didn't find it, it's our bug. */
16797 gdb_assert (sig_type != NULL);
16798 gdb_assert (offset.sect_off == sig_type->per_cu.offset.sect_off);
16799
16800 return sig_type;
16801 }
16802
16803 /* Load the DIEs associated with type unit PER_CU into memory. */
16804
16805 static void
16806 load_full_type_unit (struct dwarf2_per_cu_data *per_cu)
16807 {
16808 struct signatured_type *sig_type;
16809
16810 /* Caller is responsible for ensuring type_unit_groups don't get here. */
16811 gdb_assert (! IS_TYPE_UNIT_GROUP (per_cu));
16812
16813 /* We have the per_cu, but we need the signatured_type.
16814 Fortunately this is an easy translation. */
16815 gdb_assert (per_cu->is_debug_types);
16816 sig_type = (struct signatured_type *) per_cu;
16817
16818 gdb_assert (per_cu->cu == NULL);
16819
16820 read_signatured_type (sig_type);
16821
16822 gdb_assert (per_cu->cu != NULL);
16823 }
16824
16825 /* die_reader_func for read_signatured_type.
16826 This is identical to load_full_comp_unit_reader,
16827 but is kept separate for now. */
16828
16829 static void
16830 read_signatured_type_reader (const struct die_reader_specs *reader,
16831 gdb_byte *info_ptr,
16832 struct die_info *comp_unit_die,
16833 int has_children,
16834 void *data)
16835 {
16836 struct dwarf2_cu *cu = reader->cu;
16837
16838 gdb_assert (cu->die_hash == NULL);
16839 cu->die_hash =
16840 htab_create_alloc_ex (cu->header.length / 12,
16841 die_hash,
16842 die_eq,
16843 NULL,
16844 &cu->comp_unit_obstack,
16845 hashtab_obstack_allocate,
16846 dummy_obstack_deallocate);
16847
16848 if (has_children)
16849 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
16850 &info_ptr, comp_unit_die);
16851 cu->dies = comp_unit_die;
16852 /* comp_unit_die is not stored in die_hash, no need. */
16853
16854 /* We try not to read any attributes in this function, because not
16855 all CUs needed for references have been loaded yet, and symbol
16856 table processing isn't initialized. But we have to set the CU language,
16857 or we won't be able to build types correctly.
16858 Similarly, if we do not read the producer, we can not apply
16859 producer-specific interpretation. */
16860 prepare_one_comp_unit (cu, cu->dies, language_minimal);
16861 }
16862
16863 /* Read in a signatured type and build its CU and DIEs.
16864 If the type is a stub for the real type in a DWO file,
16865 read in the real type from the DWO file as well. */
16866
16867 static void
16868 read_signatured_type (struct signatured_type *sig_type)
16869 {
16870 struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
16871
16872 gdb_assert (per_cu->is_debug_types);
16873 gdb_assert (per_cu->cu == NULL);
16874
16875 init_cutu_and_read_dies (per_cu, NULL, 0, 1,
16876 read_signatured_type_reader, NULL);
16877 }
16878
16879 /* Decode simple location descriptions.
16880 Given a pointer to a dwarf block that defines a location, compute
16881 the location and return the value.
16882
16883 NOTE drow/2003-11-18: This function is called in two situations
16884 now: for the address of static or global variables (partial symbols
16885 only) and for offsets into structures which are expected to be
16886 (more or less) constant. The partial symbol case should go away,
16887 and only the constant case should remain. That will let this
16888 function complain more accurately. A few special modes are allowed
16889 without complaint for global variables (for instance, global
16890 register values and thread-local values).
16891
16892 A location description containing no operations indicates that the
16893 object is optimized out. The return value is 0 for that case.
16894 FIXME drow/2003-11-16: No callers check for this case any more; soon all
16895 callers will only want a very basic result and this can become a
16896 complaint.
16897
16898 Note that stack[0] is unused except as a default error return. */
16899
16900 static CORE_ADDR
16901 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
16902 {
16903 struct objfile *objfile = cu->objfile;
16904 size_t i;
16905 size_t size = blk->size;
16906 gdb_byte *data = blk->data;
16907 CORE_ADDR stack[64];
16908 int stacki;
16909 unsigned int bytes_read, unsnd;
16910 gdb_byte op;
16911
16912 i = 0;
16913 stacki = 0;
16914 stack[stacki] = 0;
16915 stack[++stacki] = 0;
16916
16917 while (i < size)
16918 {
16919 op = data[i++];
16920 switch (op)
16921 {
16922 case DW_OP_lit0:
16923 case DW_OP_lit1:
16924 case DW_OP_lit2:
16925 case DW_OP_lit3:
16926 case DW_OP_lit4:
16927 case DW_OP_lit5:
16928 case DW_OP_lit6:
16929 case DW_OP_lit7:
16930 case DW_OP_lit8:
16931 case DW_OP_lit9:
16932 case DW_OP_lit10:
16933 case DW_OP_lit11:
16934 case DW_OP_lit12:
16935 case DW_OP_lit13:
16936 case DW_OP_lit14:
16937 case DW_OP_lit15:
16938 case DW_OP_lit16:
16939 case DW_OP_lit17:
16940 case DW_OP_lit18:
16941 case DW_OP_lit19:
16942 case DW_OP_lit20:
16943 case DW_OP_lit21:
16944 case DW_OP_lit22:
16945 case DW_OP_lit23:
16946 case DW_OP_lit24:
16947 case DW_OP_lit25:
16948 case DW_OP_lit26:
16949 case DW_OP_lit27:
16950 case DW_OP_lit28:
16951 case DW_OP_lit29:
16952 case DW_OP_lit30:
16953 case DW_OP_lit31:
16954 stack[++stacki] = op - DW_OP_lit0;
16955 break;
16956
16957 case DW_OP_reg0:
16958 case DW_OP_reg1:
16959 case DW_OP_reg2:
16960 case DW_OP_reg3:
16961 case DW_OP_reg4:
16962 case DW_OP_reg5:
16963 case DW_OP_reg6:
16964 case DW_OP_reg7:
16965 case DW_OP_reg8:
16966 case DW_OP_reg9:
16967 case DW_OP_reg10:
16968 case DW_OP_reg11:
16969 case DW_OP_reg12:
16970 case DW_OP_reg13:
16971 case DW_OP_reg14:
16972 case DW_OP_reg15:
16973 case DW_OP_reg16:
16974 case DW_OP_reg17:
16975 case DW_OP_reg18:
16976 case DW_OP_reg19:
16977 case DW_OP_reg20:
16978 case DW_OP_reg21:
16979 case DW_OP_reg22:
16980 case DW_OP_reg23:
16981 case DW_OP_reg24:
16982 case DW_OP_reg25:
16983 case DW_OP_reg26:
16984 case DW_OP_reg27:
16985 case DW_OP_reg28:
16986 case DW_OP_reg29:
16987 case DW_OP_reg30:
16988 case DW_OP_reg31:
16989 stack[++stacki] = op - DW_OP_reg0;
16990 if (i < size)
16991 dwarf2_complex_location_expr_complaint ();
16992 break;
16993
16994 case DW_OP_regx:
16995 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
16996 i += bytes_read;
16997 stack[++stacki] = unsnd;
16998 if (i < size)
16999 dwarf2_complex_location_expr_complaint ();
17000 break;
17001
17002 case DW_OP_addr:
17003 stack[++stacki] = read_address (objfile->obfd, &data[i],
17004 cu, &bytes_read);
17005 i += bytes_read;
17006 break;
17007
17008 case DW_OP_const1u:
17009 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
17010 i += 1;
17011 break;
17012
17013 case DW_OP_const1s:
17014 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
17015 i += 1;
17016 break;
17017
17018 case DW_OP_const2u:
17019 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
17020 i += 2;
17021 break;
17022
17023 case DW_OP_const2s:
17024 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
17025 i += 2;
17026 break;
17027
17028 case DW_OP_const4u:
17029 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
17030 i += 4;
17031 break;
17032
17033 case DW_OP_const4s:
17034 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
17035 i += 4;
17036 break;
17037
17038 case DW_OP_const8u:
17039 stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
17040 i += 8;
17041 break;
17042
17043 case DW_OP_constu:
17044 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
17045 &bytes_read);
17046 i += bytes_read;
17047 break;
17048
17049 case DW_OP_consts:
17050 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
17051 i += bytes_read;
17052 break;
17053
17054 case DW_OP_dup:
17055 stack[stacki + 1] = stack[stacki];
17056 stacki++;
17057 break;
17058
17059 case DW_OP_plus:
17060 stack[stacki - 1] += stack[stacki];
17061 stacki--;
17062 break;
17063
17064 case DW_OP_plus_uconst:
17065 stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
17066 &bytes_read);
17067 i += bytes_read;
17068 break;
17069
17070 case DW_OP_minus:
17071 stack[stacki - 1] -= stack[stacki];
17072 stacki--;
17073 break;
17074
17075 case DW_OP_deref:
17076 /* If we're not the last op, then we definitely can't encode
17077 this using GDB's address_class enum. This is valid for partial
17078 global symbols, although the variable's address will be bogus
17079 in the psymtab. */
17080 if (i < size)
17081 dwarf2_complex_location_expr_complaint ();
17082 break;
17083
17084 case DW_OP_GNU_push_tls_address:
17085 /* The top of the stack has the offset from the beginning
17086 of the thread control block at which the variable is located. */
17087 /* Nothing should follow this operator, so the top of stack would
17088 be returned. */
17089 /* This is valid for partial global symbols, but the variable's
17090 address will be bogus in the psymtab. Make it always at least
17091 non-zero to not look as a variable garbage collected by linker
17092 which have DW_OP_addr 0. */
17093 if (i < size)
17094 dwarf2_complex_location_expr_complaint ();
17095 stack[stacki]++;
17096 break;
17097
17098 case DW_OP_GNU_uninit:
17099 break;
17100
17101 case DW_OP_GNU_addr_index:
17102 case DW_OP_GNU_const_index:
17103 stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
17104 &bytes_read);
17105 i += bytes_read;
17106 break;
17107
17108 default:
17109 {
17110 const char *name = get_DW_OP_name (op);
17111
17112 if (name)
17113 complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
17114 name);
17115 else
17116 complaint (&symfile_complaints, _("unsupported stack op: '%02x'"),
17117 op);
17118 }
17119
17120 return (stack[stacki]);
17121 }
17122
17123 /* Enforce maximum stack depth of SIZE-1 to avoid writing
17124 outside of the allocated space. Also enforce minimum>0. */
17125 if (stacki >= ARRAY_SIZE (stack) - 1)
17126 {
17127 complaint (&symfile_complaints,
17128 _("location description stack overflow"));
17129 return 0;
17130 }
17131
17132 if (stacki <= 0)
17133 {
17134 complaint (&symfile_complaints,
17135 _("location description stack underflow"));
17136 return 0;
17137 }
17138 }
17139 return (stack[stacki]);
17140 }
17141
17142 /* memory allocation interface */
17143
17144 static struct dwarf_block *
17145 dwarf_alloc_block (struct dwarf2_cu *cu)
17146 {
17147 struct dwarf_block *blk;
17148
17149 blk = (struct dwarf_block *)
17150 obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
17151 return (blk);
17152 }
17153
17154 static struct die_info *
17155 dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
17156 {
17157 struct die_info *die;
17158 size_t size = sizeof (struct die_info);
17159
17160 if (num_attrs > 1)
17161 size += (num_attrs - 1) * sizeof (struct attribute);
17162
17163 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
17164 memset (die, 0, sizeof (struct die_info));
17165 return (die);
17166 }
17167
17168 \f
17169 /* Macro support. */
17170
17171 /* Return the full name of file number I in *LH's file name table.
17172 Use COMP_DIR as the name of the current directory of the
17173 compilation. The result is allocated using xmalloc; the caller is
17174 responsible for freeing it. */
17175 static char *
17176 file_full_name (int file, struct line_header *lh, const char *comp_dir)
17177 {
17178 /* Is the file number a valid index into the line header's file name
17179 table? Remember that file numbers start with one, not zero. */
17180 if (1 <= file && file <= lh->num_file_names)
17181 {
17182 struct file_entry *fe = &lh->file_names[file - 1];
17183
17184 if (IS_ABSOLUTE_PATH (fe->name))
17185 return xstrdup (fe->name);
17186 else
17187 {
17188 const char *dir;
17189 int dir_len;
17190 char *full_name;
17191
17192 if (fe->dir_index)
17193 dir = lh->include_dirs[fe->dir_index - 1];
17194 else
17195 dir = comp_dir;
17196
17197 if (dir)
17198 {
17199 dir_len = strlen (dir);
17200 full_name = xmalloc (dir_len + 1 + strlen (fe->name) + 1);
17201 strcpy (full_name, dir);
17202 full_name[dir_len] = '/';
17203 strcpy (full_name + dir_len + 1, fe->name);
17204 return full_name;
17205 }
17206 else
17207 return xstrdup (fe->name);
17208 }
17209 }
17210 else
17211 {
17212 /* The compiler produced a bogus file number. We can at least
17213 record the macro definitions made in the file, even if we
17214 won't be able to find the file by name. */
17215 char fake_name[80];
17216
17217 sprintf (fake_name, "<bad macro file number %d>", file);
17218
17219 complaint (&symfile_complaints,
17220 _("bad file number in macro information (%d)"),
17221 file);
17222
17223 return xstrdup (fake_name);
17224 }
17225 }
17226
17227
17228 static struct macro_source_file *
17229 macro_start_file (int file, int line,
17230 struct macro_source_file *current_file,
17231 const char *comp_dir,
17232 struct line_header *lh, struct objfile *objfile)
17233 {
17234 /* The full name of this source file. */
17235 char *full_name = file_full_name (file, lh, comp_dir);
17236
17237 /* We don't create a macro table for this compilation unit
17238 at all until we actually get a filename. */
17239 if (! pending_macros)
17240 pending_macros = new_macro_table (&objfile->per_bfd->storage_obstack,
17241 objfile->per_bfd->macro_cache);
17242
17243 if (! current_file)
17244 {
17245 /* If we have no current file, then this must be the start_file
17246 directive for the compilation unit's main source file. */
17247 current_file = macro_set_main (pending_macros, full_name);
17248 macro_define_special (pending_macros);
17249 }
17250 else
17251 current_file = macro_include (current_file, line, full_name);
17252
17253 xfree (full_name);
17254
17255 return current_file;
17256 }
17257
17258
17259 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
17260 followed by a null byte. */
17261 static char *
17262 copy_string (const char *buf, int len)
17263 {
17264 char *s = xmalloc (len + 1);
17265
17266 memcpy (s, buf, len);
17267 s[len] = '\0';
17268 return s;
17269 }
17270
17271
17272 static const char *
17273 consume_improper_spaces (const char *p, const char *body)
17274 {
17275 if (*p == ' ')
17276 {
17277 complaint (&symfile_complaints,
17278 _("macro definition contains spaces "
17279 "in formal argument list:\n`%s'"),
17280 body);
17281
17282 while (*p == ' ')
17283 p++;
17284 }
17285
17286 return p;
17287 }
17288
17289
17290 static void
17291 parse_macro_definition (struct macro_source_file *file, int line,
17292 const char *body)
17293 {
17294 const char *p;
17295
17296 /* The body string takes one of two forms. For object-like macro
17297 definitions, it should be:
17298
17299 <macro name> " " <definition>
17300
17301 For function-like macro definitions, it should be:
17302
17303 <macro name> "() " <definition>
17304 or
17305 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
17306
17307 Spaces may appear only where explicitly indicated, and in the
17308 <definition>.
17309
17310 The Dwarf 2 spec says that an object-like macro's name is always
17311 followed by a space, but versions of GCC around March 2002 omit
17312 the space when the macro's definition is the empty string.
17313
17314 The Dwarf 2 spec says that there should be no spaces between the
17315 formal arguments in a function-like macro's formal argument list,
17316 but versions of GCC around March 2002 include spaces after the
17317 commas. */
17318
17319
17320 /* Find the extent of the macro name. The macro name is terminated
17321 by either a space or null character (for an object-like macro) or
17322 an opening paren (for a function-like macro). */
17323 for (p = body; *p; p++)
17324 if (*p == ' ' || *p == '(')
17325 break;
17326
17327 if (*p == ' ' || *p == '\0')
17328 {
17329 /* It's an object-like macro. */
17330 int name_len = p - body;
17331 char *name = copy_string (body, name_len);
17332 const char *replacement;
17333
17334 if (*p == ' ')
17335 replacement = body + name_len + 1;
17336 else
17337 {
17338 dwarf2_macro_malformed_definition_complaint (body);
17339 replacement = body + name_len;
17340 }
17341
17342 macro_define_object (file, line, name, replacement);
17343
17344 xfree (name);
17345 }
17346 else if (*p == '(')
17347 {
17348 /* It's a function-like macro. */
17349 char *name = copy_string (body, p - body);
17350 int argc = 0;
17351 int argv_size = 1;
17352 char **argv = xmalloc (argv_size * sizeof (*argv));
17353
17354 p++;
17355
17356 p = consume_improper_spaces (p, body);
17357
17358 /* Parse the formal argument list. */
17359 while (*p && *p != ')')
17360 {
17361 /* Find the extent of the current argument name. */
17362 const char *arg_start = p;
17363
17364 while (*p && *p != ',' && *p != ')' && *p != ' ')
17365 p++;
17366
17367 if (! *p || p == arg_start)
17368 dwarf2_macro_malformed_definition_complaint (body);
17369 else
17370 {
17371 /* Make sure argv has room for the new argument. */
17372 if (argc >= argv_size)
17373 {
17374 argv_size *= 2;
17375 argv = xrealloc (argv, argv_size * sizeof (*argv));
17376 }
17377
17378 argv[argc++] = copy_string (arg_start, p - arg_start);
17379 }
17380
17381 p = consume_improper_spaces (p, body);
17382
17383 /* Consume the comma, if present. */
17384 if (*p == ',')
17385 {
17386 p++;
17387
17388 p = consume_improper_spaces (p, body);
17389 }
17390 }
17391
17392 if (*p == ')')
17393 {
17394 p++;
17395
17396 if (*p == ' ')
17397 /* Perfectly formed definition, no complaints. */
17398 macro_define_function (file, line, name,
17399 argc, (const char **) argv,
17400 p + 1);
17401 else if (*p == '\0')
17402 {
17403 /* Complain, but do define it. */
17404 dwarf2_macro_malformed_definition_complaint (body);
17405 macro_define_function (file, line, name,
17406 argc, (const char **) argv,
17407 p);
17408 }
17409 else
17410 /* Just complain. */
17411 dwarf2_macro_malformed_definition_complaint (body);
17412 }
17413 else
17414 /* Just complain. */
17415 dwarf2_macro_malformed_definition_complaint (body);
17416
17417 xfree (name);
17418 {
17419 int i;
17420
17421 for (i = 0; i < argc; i++)
17422 xfree (argv[i]);
17423 }
17424 xfree (argv);
17425 }
17426 else
17427 dwarf2_macro_malformed_definition_complaint (body);
17428 }
17429
17430 /* Skip some bytes from BYTES according to the form given in FORM.
17431 Returns the new pointer. */
17432
17433 static gdb_byte *
17434 skip_form_bytes (bfd *abfd, gdb_byte *bytes, gdb_byte *buffer_end,
17435 enum dwarf_form form,
17436 unsigned int offset_size,
17437 struct dwarf2_section_info *section)
17438 {
17439 unsigned int bytes_read;
17440
17441 switch (form)
17442 {
17443 case DW_FORM_data1:
17444 case DW_FORM_flag:
17445 ++bytes;
17446 break;
17447
17448 case DW_FORM_data2:
17449 bytes += 2;
17450 break;
17451
17452 case DW_FORM_data4:
17453 bytes += 4;
17454 break;
17455
17456 case DW_FORM_data8:
17457 bytes += 8;
17458 break;
17459
17460 case DW_FORM_string:
17461 read_direct_string (abfd, bytes, &bytes_read);
17462 bytes += bytes_read;
17463 break;
17464
17465 case DW_FORM_sec_offset:
17466 case DW_FORM_strp:
17467 case DW_FORM_GNU_strp_alt:
17468 bytes += offset_size;
17469 break;
17470
17471 case DW_FORM_block:
17472 bytes += read_unsigned_leb128 (abfd, bytes, &bytes_read);
17473 bytes += bytes_read;
17474 break;
17475
17476 case DW_FORM_block1:
17477 bytes += 1 + read_1_byte (abfd, bytes);
17478 break;
17479 case DW_FORM_block2:
17480 bytes += 2 + read_2_bytes (abfd, bytes);
17481 break;
17482 case DW_FORM_block4:
17483 bytes += 4 + read_4_bytes (abfd, bytes);
17484 break;
17485
17486 case DW_FORM_sdata:
17487 case DW_FORM_udata:
17488 case DW_FORM_GNU_addr_index:
17489 case DW_FORM_GNU_str_index:
17490 bytes = (gdb_byte *) gdb_skip_leb128 (bytes, buffer_end);
17491 if (bytes == NULL)
17492 {
17493 dwarf2_section_buffer_overflow_complaint (section);
17494 return NULL;
17495 }
17496 break;
17497
17498 default:
17499 {
17500 complain:
17501 complaint (&symfile_complaints,
17502 _("invalid form 0x%x in `%s'"),
17503 form,
17504 section->asection->name);
17505 return NULL;
17506 }
17507 }
17508
17509 return bytes;
17510 }
17511
17512 /* A helper for dwarf_decode_macros that handles skipping an unknown
17513 opcode. Returns an updated pointer to the macro data buffer; or,
17514 on error, issues a complaint and returns NULL. */
17515
17516 static gdb_byte *
17517 skip_unknown_opcode (unsigned int opcode,
17518 gdb_byte **opcode_definitions,
17519 gdb_byte *mac_ptr, gdb_byte *mac_end,
17520 bfd *abfd,
17521 unsigned int offset_size,
17522 struct dwarf2_section_info *section)
17523 {
17524 unsigned int bytes_read, i;
17525 unsigned long arg;
17526 gdb_byte *defn;
17527
17528 if (opcode_definitions[opcode] == NULL)
17529 {
17530 complaint (&symfile_complaints,
17531 _("unrecognized DW_MACFINO opcode 0x%x"),
17532 opcode);
17533 return NULL;
17534 }
17535
17536 defn = opcode_definitions[opcode];
17537 arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
17538 defn += bytes_read;
17539
17540 for (i = 0; i < arg; ++i)
17541 {
17542 mac_ptr = skip_form_bytes (abfd, mac_ptr, mac_end, defn[i], offset_size,
17543 section);
17544 if (mac_ptr == NULL)
17545 {
17546 /* skip_form_bytes already issued the complaint. */
17547 return NULL;
17548 }
17549 }
17550
17551 return mac_ptr;
17552 }
17553
17554 /* A helper function which parses the header of a macro section.
17555 If the macro section is the extended (for now called "GNU") type,
17556 then this updates *OFFSET_SIZE. Returns a pointer to just after
17557 the header, or issues a complaint and returns NULL on error. */
17558
17559 static gdb_byte *
17560 dwarf_parse_macro_header (gdb_byte **opcode_definitions,
17561 bfd *abfd,
17562 gdb_byte *mac_ptr,
17563 unsigned int *offset_size,
17564 int section_is_gnu)
17565 {
17566 memset (opcode_definitions, 0, 256 * sizeof (gdb_byte *));
17567
17568 if (section_is_gnu)
17569 {
17570 unsigned int version, flags;
17571
17572 version = read_2_bytes (abfd, mac_ptr);
17573 if (version != 4)
17574 {
17575 complaint (&symfile_complaints,
17576 _("unrecognized version `%d' in .debug_macro section"),
17577 version);
17578 return NULL;
17579 }
17580 mac_ptr += 2;
17581
17582 flags = read_1_byte (abfd, mac_ptr);
17583 ++mac_ptr;
17584 *offset_size = (flags & 1) ? 8 : 4;
17585
17586 if ((flags & 2) != 0)
17587 /* We don't need the line table offset. */
17588 mac_ptr += *offset_size;
17589
17590 /* Vendor opcode descriptions. */
17591 if ((flags & 4) != 0)
17592 {
17593 unsigned int i, count;
17594
17595 count = read_1_byte (abfd, mac_ptr);
17596 ++mac_ptr;
17597 for (i = 0; i < count; ++i)
17598 {
17599 unsigned int opcode, bytes_read;
17600 unsigned long arg;
17601
17602 opcode = read_1_byte (abfd, mac_ptr);
17603 ++mac_ptr;
17604 opcode_definitions[opcode] = mac_ptr;
17605 arg = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
17606 mac_ptr += bytes_read;
17607 mac_ptr += arg;
17608 }
17609 }
17610 }
17611
17612 return mac_ptr;
17613 }
17614
17615 /* A helper for dwarf_decode_macros that handles the GNU extensions,
17616 including DW_MACRO_GNU_transparent_include. */
17617
17618 static void
17619 dwarf_decode_macro_bytes (bfd *abfd, gdb_byte *mac_ptr, gdb_byte *mac_end,
17620 struct macro_source_file *current_file,
17621 struct line_header *lh, char *comp_dir,
17622 struct dwarf2_section_info *section,
17623 int section_is_gnu, int section_is_dwz,
17624 unsigned int offset_size,
17625 struct objfile *objfile,
17626 htab_t include_hash)
17627 {
17628 enum dwarf_macro_record_type macinfo_type;
17629 int at_commandline;
17630 gdb_byte *opcode_definitions[256];
17631
17632 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
17633 &offset_size, section_is_gnu);
17634 if (mac_ptr == NULL)
17635 {
17636 /* We already issued a complaint. */
17637 return;
17638 }
17639
17640 /* Determines if GDB is still before first DW_MACINFO_start_file. If true
17641 GDB is still reading the definitions from command line. First
17642 DW_MACINFO_start_file will need to be ignored as it was already executed
17643 to create CURRENT_FILE for the main source holding also the command line
17644 definitions. On first met DW_MACINFO_start_file this flag is reset to
17645 normally execute all the remaining DW_MACINFO_start_file macinfos. */
17646
17647 at_commandline = 1;
17648
17649 do
17650 {
17651 /* Do we at least have room for a macinfo type byte? */
17652 if (mac_ptr >= mac_end)
17653 {
17654 dwarf2_section_buffer_overflow_complaint (section);
17655 break;
17656 }
17657
17658 macinfo_type = read_1_byte (abfd, mac_ptr);
17659 mac_ptr++;
17660
17661 /* Note that we rely on the fact that the corresponding GNU and
17662 DWARF constants are the same. */
17663 switch (macinfo_type)
17664 {
17665 /* A zero macinfo type indicates the end of the macro
17666 information. */
17667 case 0:
17668 break;
17669
17670 case DW_MACRO_GNU_define:
17671 case DW_MACRO_GNU_undef:
17672 case DW_MACRO_GNU_define_indirect:
17673 case DW_MACRO_GNU_undef_indirect:
17674 case DW_MACRO_GNU_define_indirect_alt:
17675 case DW_MACRO_GNU_undef_indirect_alt:
17676 {
17677 unsigned int bytes_read;
17678 int line;
17679 char *body;
17680 int is_define;
17681
17682 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
17683 mac_ptr += bytes_read;
17684
17685 if (macinfo_type == DW_MACRO_GNU_define
17686 || macinfo_type == DW_MACRO_GNU_undef)
17687 {
17688 body = read_direct_string (abfd, mac_ptr, &bytes_read);
17689 mac_ptr += bytes_read;
17690 }
17691 else
17692 {
17693 LONGEST str_offset;
17694
17695 str_offset = read_offset_1 (abfd, mac_ptr, offset_size);
17696 mac_ptr += offset_size;
17697
17698 if (macinfo_type == DW_MACRO_GNU_define_indirect_alt
17699 || macinfo_type == DW_MACRO_GNU_undef_indirect_alt
17700 || section_is_dwz)
17701 {
17702 struct dwz_file *dwz = dwarf2_get_dwz_file ();
17703
17704 body = read_indirect_string_from_dwz (dwz, str_offset);
17705 }
17706 else
17707 body = read_indirect_string_at_offset (abfd, str_offset);
17708 }
17709
17710 is_define = (macinfo_type == DW_MACRO_GNU_define
17711 || macinfo_type == DW_MACRO_GNU_define_indirect
17712 || macinfo_type == DW_MACRO_GNU_define_indirect_alt);
17713 if (! current_file)
17714 {
17715 /* DWARF violation as no main source is present. */
17716 complaint (&symfile_complaints,
17717 _("debug info with no main source gives macro %s "
17718 "on line %d: %s"),
17719 is_define ? _("definition") : _("undefinition"),
17720 line, body);
17721 break;
17722 }
17723 if ((line == 0 && !at_commandline)
17724 || (line != 0 && at_commandline))
17725 complaint (&symfile_complaints,
17726 _("debug info gives %s macro %s with %s line %d: %s"),
17727 at_commandline ? _("command-line") : _("in-file"),
17728 is_define ? _("definition") : _("undefinition"),
17729 line == 0 ? _("zero") : _("non-zero"), line, body);
17730
17731 if (is_define)
17732 parse_macro_definition (current_file, line, body);
17733 else
17734 {
17735 gdb_assert (macinfo_type == DW_MACRO_GNU_undef
17736 || macinfo_type == DW_MACRO_GNU_undef_indirect
17737 || macinfo_type == DW_MACRO_GNU_undef_indirect_alt);
17738 macro_undef (current_file, line, body);
17739 }
17740 }
17741 break;
17742
17743 case DW_MACRO_GNU_start_file:
17744 {
17745 unsigned int bytes_read;
17746 int line, file;
17747
17748 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
17749 mac_ptr += bytes_read;
17750 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
17751 mac_ptr += bytes_read;
17752
17753 if ((line == 0 && !at_commandline)
17754 || (line != 0 && at_commandline))
17755 complaint (&symfile_complaints,
17756 _("debug info gives source %d included "
17757 "from %s at %s line %d"),
17758 file, at_commandline ? _("command-line") : _("file"),
17759 line == 0 ? _("zero") : _("non-zero"), line);
17760
17761 if (at_commandline)
17762 {
17763 /* This DW_MACRO_GNU_start_file was executed in the
17764 pass one. */
17765 at_commandline = 0;
17766 }
17767 else
17768 current_file = macro_start_file (file, line,
17769 current_file, comp_dir,
17770 lh, objfile);
17771 }
17772 break;
17773
17774 case DW_MACRO_GNU_end_file:
17775 if (! current_file)
17776 complaint (&symfile_complaints,
17777 _("macro debug info has an unmatched "
17778 "`close_file' directive"));
17779 else
17780 {
17781 current_file = current_file->included_by;
17782 if (! current_file)
17783 {
17784 enum dwarf_macro_record_type next_type;
17785
17786 /* GCC circa March 2002 doesn't produce the zero
17787 type byte marking the end of the compilation
17788 unit. Complain if it's not there, but exit no
17789 matter what. */
17790
17791 /* Do we at least have room for a macinfo type byte? */
17792 if (mac_ptr >= mac_end)
17793 {
17794 dwarf2_section_buffer_overflow_complaint (section);
17795 return;
17796 }
17797
17798 /* We don't increment mac_ptr here, so this is just
17799 a look-ahead. */
17800 next_type = read_1_byte (abfd, mac_ptr);
17801 if (next_type != 0)
17802 complaint (&symfile_complaints,
17803 _("no terminating 0-type entry for "
17804 "macros in `.debug_macinfo' section"));
17805
17806 return;
17807 }
17808 }
17809 break;
17810
17811 case DW_MACRO_GNU_transparent_include:
17812 case DW_MACRO_GNU_transparent_include_alt:
17813 {
17814 LONGEST offset;
17815 void **slot;
17816 bfd *include_bfd = abfd;
17817 struct dwarf2_section_info *include_section = section;
17818 struct dwarf2_section_info alt_section;
17819 gdb_byte *include_mac_end = mac_end;
17820 int is_dwz = section_is_dwz;
17821 gdb_byte *new_mac_ptr;
17822
17823 offset = read_offset_1 (abfd, mac_ptr, offset_size);
17824 mac_ptr += offset_size;
17825
17826 if (macinfo_type == DW_MACRO_GNU_transparent_include_alt)
17827 {
17828 struct dwz_file *dwz = dwarf2_get_dwz_file ();
17829
17830 dwarf2_read_section (dwarf2_per_objfile->objfile,
17831 &dwz->macro);
17832
17833 include_bfd = dwz->macro.asection->owner;
17834 include_section = &dwz->macro;
17835 include_mac_end = dwz->macro.buffer + dwz->macro.size;
17836 is_dwz = 1;
17837 }
17838
17839 new_mac_ptr = include_section->buffer + offset;
17840 slot = htab_find_slot (include_hash, new_mac_ptr, INSERT);
17841
17842 if (*slot != NULL)
17843 {
17844 /* This has actually happened; see
17845 http://sourceware.org/bugzilla/show_bug.cgi?id=13568. */
17846 complaint (&symfile_complaints,
17847 _("recursive DW_MACRO_GNU_transparent_include in "
17848 ".debug_macro section"));
17849 }
17850 else
17851 {
17852 *slot = new_mac_ptr;
17853
17854 dwarf_decode_macro_bytes (include_bfd, new_mac_ptr,
17855 include_mac_end, current_file,
17856 lh, comp_dir,
17857 section, section_is_gnu, is_dwz,
17858 offset_size, objfile, include_hash);
17859
17860 htab_remove_elt (include_hash, new_mac_ptr);
17861 }
17862 }
17863 break;
17864
17865 case DW_MACINFO_vendor_ext:
17866 if (!section_is_gnu)
17867 {
17868 unsigned int bytes_read;
17869 int constant;
17870
17871 constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
17872 mac_ptr += bytes_read;
17873 read_direct_string (abfd, mac_ptr, &bytes_read);
17874 mac_ptr += bytes_read;
17875
17876 /* We don't recognize any vendor extensions. */
17877 break;
17878 }
17879 /* FALLTHROUGH */
17880
17881 default:
17882 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
17883 mac_ptr, mac_end, abfd, offset_size,
17884 section);
17885 if (mac_ptr == NULL)
17886 return;
17887 break;
17888 }
17889 } while (macinfo_type != 0);
17890 }
17891
17892 static void
17893 dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
17894 char *comp_dir, int section_is_gnu)
17895 {
17896 struct objfile *objfile = dwarf2_per_objfile->objfile;
17897 struct line_header *lh = cu->line_header;
17898 bfd *abfd;
17899 gdb_byte *mac_ptr, *mac_end;
17900 struct macro_source_file *current_file = 0;
17901 enum dwarf_macro_record_type macinfo_type;
17902 unsigned int offset_size = cu->header.offset_size;
17903 gdb_byte *opcode_definitions[256];
17904 struct cleanup *cleanup;
17905 htab_t include_hash;
17906 void **slot;
17907 struct dwarf2_section_info *section;
17908 const char *section_name;
17909
17910 if (cu->dwo_unit != NULL)
17911 {
17912 if (section_is_gnu)
17913 {
17914 section = &cu->dwo_unit->dwo_file->sections.macro;
17915 section_name = ".debug_macro.dwo";
17916 }
17917 else
17918 {
17919 section = &cu->dwo_unit->dwo_file->sections.macinfo;
17920 section_name = ".debug_macinfo.dwo";
17921 }
17922 }
17923 else
17924 {
17925 if (section_is_gnu)
17926 {
17927 section = &dwarf2_per_objfile->macro;
17928 section_name = ".debug_macro";
17929 }
17930 else
17931 {
17932 section = &dwarf2_per_objfile->macinfo;
17933 section_name = ".debug_macinfo";
17934 }
17935 }
17936
17937 dwarf2_read_section (objfile, section);
17938 if (section->buffer == NULL)
17939 {
17940 complaint (&symfile_complaints, _("missing %s section"), section_name);
17941 return;
17942 }
17943 abfd = section->asection->owner;
17944
17945 /* First pass: Find the name of the base filename.
17946 This filename is needed in order to process all macros whose definition
17947 (or undefinition) comes from the command line. These macros are defined
17948 before the first DW_MACINFO_start_file entry, and yet still need to be
17949 associated to the base file.
17950
17951 To determine the base file name, we scan the macro definitions until we
17952 reach the first DW_MACINFO_start_file entry. We then initialize
17953 CURRENT_FILE accordingly so that any macro definition found before the
17954 first DW_MACINFO_start_file can still be associated to the base file. */
17955
17956 mac_ptr = section->buffer + offset;
17957 mac_end = section->buffer + section->size;
17958
17959 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
17960 &offset_size, section_is_gnu);
17961 if (mac_ptr == NULL)
17962 {
17963 /* We already issued a complaint. */
17964 return;
17965 }
17966
17967 do
17968 {
17969 /* Do we at least have room for a macinfo type byte? */
17970 if (mac_ptr >= mac_end)
17971 {
17972 /* Complaint is printed during the second pass as GDB will probably
17973 stop the first pass earlier upon finding
17974 DW_MACINFO_start_file. */
17975 break;
17976 }
17977
17978 macinfo_type = read_1_byte (abfd, mac_ptr);
17979 mac_ptr++;
17980
17981 /* Note that we rely on the fact that the corresponding GNU and
17982 DWARF constants are the same. */
17983 switch (macinfo_type)
17984 {
17985 /* A zero macinfo type indicates the end of the macro
17986 information. */
17987 case 0:
17988 break;
17989
17990 case DW_MACRO_GNU_define:
17991 case DW_MACRO_GNU_undef:
17992 /* Only skip the data by MAC_PTR. */
17993 {
17994 unsigned int bytes_read;
17995
17996 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
17997 mac_ptr += bytes_read;
17998 read_direct_string (abfd, mac_ptr, &bytes_read);
17999 mac_ptr += bytes_read;
18000 }
18001 break;
18002
18003 case DW_MACRO_GNU_start_file:
18004 {
18005 unsigned int bytes_read;
18006 int line, file;
18007
18008 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18009 mac_ptr += bytes_read;
18010 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18011 mac_ptr += bytes_read;
18012
18013 current_file = macro_start_file (file, line, current_file,
18014 comp_dir, lh, objfile);
18015 }
18016 break;
18017
18018 case DW_MACRO_GNU_end_file:
18019 /* No data to skip by MAC_PTR. */
18020 break;
18021
18022 case DW_MACRO_GNU_define_indirect:
18023 case DW_MACRO_GNU_undef_indirect:
18024 case DW_MACRO_GNU_define_indirect_alt:
18025 case DW_MACRO_GNU_undef_indirect_alt:
18026 {
18027 unsigned int bytes_read;
18028
18029 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18030 mac_ptr += bytes_read;
18031 mac_ptr += offset_size;
18032 }
18033 break;
18034
18035 case DW_MACRO_GNU_transparent_include:
18036 case DW_MACRO_GNU_transparent_include_alt:
18037 /* Note that, according to the spec, a transparent include
18038 chain cannot call DW_MACRO_GNU_start_file. So, we can just
18039 skip this opcode. */
18040 mac_ptr += offset_size;
18041 break;
18042
18043 case DW_MACINFO_vendor_ext:
18044 /* Only skip the data by MAC_PTR. */
18045 if (!section_is_gnu)
18046 {
18047 unsigned int bytes_read;
18048
18049 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
18050 mac_ptr += bytes_read;
18051 read_direct_string (abfd, mac_ptr, &bytes_read);
18052 mac_ptr += bytes_read;
18053 }
18054 /* FALLTHROUGH */
18055
18056 default:
18057 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
18058 mac_ptr, mac_end, abfd, offset_size,
18059 section);
18060 if (mac_ptr == NULL)
18061 return;
18062 break;
18063 }
18064 } while (macinfo_type != 0 && current_file == NULL);
18065
18066 /* Second pass: Process all entries.
18067
18068 Use the AT_COMMAND_LINE flag to determine whether we are still processing
18069 command-line macro definitions/undefinitions. This flag is unset when we
18070 reach the first DW_MACINFO_start_file entry. */
18071
18072 include_hash = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
18073 NULL, xcalloc, xfree);
18074 cleanup = make_cleanup_htab_delete (include_hash);
18075 mac_ptr = section->buffer + offset;
18076 slot = htab_find_slot (include_hash, mac_ptr, INSERT);
18077 *slot = mac_ptr;
18078 dwarf_decode_macro_bytes (abfd, mac_ptr, mac_end,
18079 current_file, lh, comp_dir, section,
18080 section_is_gnu, 0,
18081 offset_size, objfile, include_hash);
18082 do_cleanups (cleanup);
18083 }
18084
18085 /* Check if the attribute's form is a DW_FORM_block*
18086 if so return true else false. */
18087
18088 static int
18089 attr_form_is_block (struct attribute *attr)
18090 {
18091 return (attr == NULL ? 0 :
18092 attr->form == DW_FORM_block1
18093 || attr->form == DW_FORM_block2
18094 || attr->form == DW_FORM_block4
18095 || attr->form == DW_FORM_block
18096 || attr->form == DW_FORM_exprloc);
18097 }
18098
18099 /* Return non-zero if ATTR's value is a section offset --- classes
18100 lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
18101 You may use DW_UNSND (attr) to retrieve such offsets.
18102
18103 Section 7.5.4, "Attribute Encodings", explains that no attribute
18104 may have a value that belongs to more than one of these classes; it
18105 would be ambiguous if we did, because we use the same forms for all
18106 of them. */
18107
18108 static int
18109 attr_form_is_section_offset (struct attribute *attr)
18110 {
18111 return (attr->form == DW_FORM_data4
18112 || attr->form == DW_FORM_data8
18113 || attr->form == DW_FORM_sec_offset);
18114 }
18115
18116 /* Return non-zero if ATTR's value falls in the 'constant' class, or
18117 zero otherwise. When this function returns true, you can apply
18118 dwarf2_get_attr_constant_value to it.
18119
18120 However, note that for some attributes you must check
18121 attr_form_is_section_offset before using this test. DW_FORM_data4
18122 and DW_FORM_data8 are members of both the constant class, and of
18123 the classes that contain offsets into other debug sections
18124 (lineptr, loclistptr, macptr or rangelistptr). The DWARF spec says
18125 that, if an attribute's can be either a constant or one of the
18126 section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
18127 taken as section offsets, not constants. */
18128
18129 static int
18130 attr_form_is_constant (struct attribute *attr)
18131 {
18132 switch (attr->form)
18133 {
18134 case DW_FORM_sdata:
18135 case DW_FORM_udata:
18136 case DW_FORM_data1:
18137 case DW_FORM_data2:
18138 case DW_FORM_data4:
18139 case DW_FORM_data8:
18140 return 1;
18141 default:
18142 return 0;
18143 }
18144 }
18145
18146 /* Return the .debug_loc section to use for CU.
18147 For DWO files use .debug_loc.dwo. */
18148
18149 static struct dwarf2_section_info *
18150 cu_debug_loc_section (struct dwarf2_cu *cu)
18151 {
18152 if (cu->dwo_unit)
18153 return &cu->dwo_unit->dwo_file->sections.loc;
18154 return &dwarf2_per_objfile->loc;
18155 }
18156
18157 /* A helper function that fills in a dwarf2_loclist_baton. */
18158
18159 static void
18160 fill_in_loclist_baton (struct dwarf2_cu *cu,
18161 struct dwarf2_loclist_baton *baton,
18162 struct attribute *attr)
18163 {
18164 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
18165
18166 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
18167
18168 baton->per_cu = cu->per_cu;
18169 gdb_assert (baton->per_cu);
18170 /* We don't know how long the location list is, but make sure we
18171 don't run off the edge of the section. */
18172 baton->size = section->size - DW_UNSND (attr);
18173 baton->data = section->buffer + DW_UNSND (attr);
18174 baton->base_address = cu->base_address;
18175 baton->from_dwo = cu->dwo_unit != NULL;
18176 }
18177
18178 static void
18179 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
18180 struct dwarf2_cu *cu)
18181 {
18182 struct objfile *objfile = dwarf2_per_objfile->objfile;
18183 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
18184
18185 if (attr_form_is_section_offset (attr)
18186 /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
18187 the section. If so, fall through to the complaint in the
18188 other branch. */
18189 && DW_UNSND (attr) < dwarf2_section_size (objfile, section))
18190 {
18191 struct dwarf2_loclist_baton *baton;
18192
18193 baton = obstack_alloc (&objfile->objfile_obstack,
18194 sizeof (struct dwarf2_loclist_baton));
18195
18196 fill_in_loclist_baton (cu, baton, attr);
18197
18198 if (cu->base_known == 0)
18199 complaint (&symfile_complaints,
18200 _("Location list used without "
18201 "specifying the CU base address."));
18202
18203 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_loclist_funcs;
18204 SYMBOL_LOCATION_BATON (sym) = baton;
18205 }
18206 else
18207 {
18208 struct dwarf2_locexpr_baton *baton;
18209
18210 baton = obstack_alloc (&objfile->objfile_obstack,
18211 sizeof (struct dwarf2_locexpr_baton));
18212 baton->per_cu = cu->per_cu;
18213 gdb_assert (baton->per_cu);
18214
18215 if (attr_form_is_block (attr))
18216 {
18217 /* Note that we're just copying the block's data pointer
18218 here, not the actual data. We're still pointing into the
18219 info_buffer for SYM's objfile; right now we never release
18220 that buffer, but when we do clean up properly this may
18221 need to change. */
18222 baton->size = DW_BLOCK (attr)->size;
18223 baton->data = DW_BLOCK (attr)->data;
18224 }
18225 else
18226 {
18227 dwarf2_invalid_attrib_class_complaint ("location description",
18228 SYMBOL_NATURAL_NAME (sym));
18229 baton->size = 0;
18230 }
18231
18232 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_locexpr_funcs;
18233 SYMBOL_LOCATION_BATON (sym) = baton;
18234 }
18235 }
18236
18237 /* Return the OBJFILE associated with the compilation unit CU. If CU
18238 came from a separate debuginfo file, then the master objfile is
18239 returned. */
18240
18241 struct objfile *
18242 dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
18243 {
18244 struct objfile *objfile = per_cu->objfile;
18245
18246 /* Return the master objfile, so that we can report and look up the
18247 correct file containing this variable. */
18248 if (objfile->separate_debug_objfile_backlink)
18249 objfile = objfile->separate_debug_objfile_backlink;
18250
18251 return objfile;
18252 }
18253
18254 /* Return comp_unit_head for PER_CU, either already available in PER_CU->CU
18255 (CU_HEADERP is unused in such case) or prepare a temporary copy at
18256 CU_HEADERP first. */
18257
18258 static const struct comp_unit_head *
18259 per_cu_header_read_in (struct comp_unit_head *cu_headerp,
18260 struct dwarf2_per_cu_data *per_cu)
18261 {
18262 gdb_byte *info_ptr;
18263
18264 if (per_cu->cu)
18265 return &per_cu->cu->header;
18266
18267 info_ptr = per_cu->info_or_types_section->buffer + per_cu->offset.sect_off;
18268
18269 memset (cu_headerp, 0, sizeof (*cu_headerp));
18270 read_comp_unit_head (cu_headerp, info_ptr, per_cu->objfile->obfd);
18271
18272 return cu_headerp;
18273 }
18274
18275 /* Return the address size given in the compilation unit header for CU. */
18276
18277 int
18278 dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
18279 {
18280 struct comp_unit_head cu_header_local;
18281 const struct comp_unit_head *cu_headerp;
18282
18283 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
18284
18285 return cu_headerp->addr_size;
18286 }
18287
18288 /* Return the offset size given in the compilation unit header for CU. */
18289
18290 int
18291 dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
18292 {
18293 struct comp_unit_head cu_header_local;
18294 const struct comp_unit_head *cu_headerp;
18295
18296 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
18297
18298 return cu_headerp->offset_size;
18299 }
18300
18301 /* See its dwarf2loc.h declaration. */
18302
18303 int
18304 dwarf2_per_cu_ref_addr_size (struct dwarf2_per_cu_data *per_cu)
18305 {
18306 struct comp_unit_head cu_header_local;
18307 const struct comp_unit_head *cu_headerp;
18308
18309 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
18310
18311 if (cu_headerp->version == 2)
18312 return cu_headerp->addr_size;
18313 else
18314 return cu_headerp->offset_size;
18315 }
18316
18317 /* Return the text offset of the CU. The returned offset comes from
18318 this CU's objfile. If this objfile came from a separate debuginfo
18319 file, then the offset may be different from the corresponding
18320 offset in the parent objfile. */
18321
18322 CORE_ADDR
18323 dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
18324 {
18325 struct objfile *objfile = per_cu->objfile;
18326
18327 return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
18328 }
18329
18330 /* Locate the .debug_info compilation unit from CU's objfile which contains
18331 the DIE at OFFSET. Raises an error on failure. */
18332
18333 static struct dwarf2_per_cu_data *
18334 dwarf2_find_containing_comp_unit (sect_offset offset,
18335 unsigned int offset_in_dwz,
18336 struct objfile *objfile)
18337 {
18338 struct dwarf2_per_cu_data *this_cu;
18339 int low, high;
18340 const sect_offset *cu_off;
18341
18342 low = 0;
18343 high = dwarf2_per_objfile->n_comp_units - 1;
18344 while (high > low)
18345 {
18346 struct dwarf2_per_cu_data *mid_cu;
18347 int mid = low + (high - low) / 2;
18348
18349 mid_cu = dwarf2_per_objfile->all_comp_units[mid];
18350 cu_off = &mid_cu->offset;
18351 if (mid_cu->is_dwz > offset_in_dwz
18352 || (mid_cu->is_dwz == offset_in_dwz
18353 && cu_off->sect_off >= offset.sect_off))
18354 high = mid;
18355 else
18356 low = mid + 1;
18357 }
18358 gdb_assert (low == high);
18359 this_cu = dwarf2_per_objfile->all_comp_units[low];
18360 cu_off = &this_cu->offset;
18361 if (this_cu->is_dwz != offset_in_dwz || cu_off->sect_off > offset.sect_off)
18362 {
18363 if (low == 0 || this_cu->is_dwz != offset_in_dwz)
18364 error (_("Dwarf Error: could not find partial DIE containing "
18365 "offset 0x%lx [in module %s]"),
18366 (long) offset.sect_off, bfd_get_filename (objfile->obfd));
18367
18368 gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset.sect_off
18369 <= offset.sect_off);
18370 return dwarf2_per_objfile->all_comp_units[low-1];
18371 }
18372 else
18373 {
18374 this_cu = dwarf2_per_objfile->all_comp_units[low];
18375 if (low == dwarf2_per_objfile->n_comp_units - 1
18376 && offset.sect_off >= this_cu->offset.sect_off + this_cu->length)
18377 error (_("invalid dwarf2 offset %u"), offset.sect_off);
18378 gdb_assert (offset.sect_off < this_cu->offset.sect_off + this_cu->length);
18379 return this_cu;
18380 }
18381 }
18382
18383 /* Initialize dwarf2_cu CU, owned by PER_CU. */
18384
18385 static void
18386 init_one_comp_unit (struct dwarf2_cu *cu, struct dwarf2_per_cu_data *per_cu)
18387 {
18388 memset (cu, 0, sizeof (*cu));
18389 per_cu->cu = cu;
18390 cu->per_cu = per_cu;
18391 cu->objfile = per_cu->objfile;
18392 obstack_init (&cu->comp_unit_obstack);
18393 }
18394
18395 /* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE. */
18396
18397 static void
18398 prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
18399 enum language pretend_language)
18400 {
18401 struct attribute *attr;
18402
18403 /* Set the language we're debugging. */
18404 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
18405 if (attr)
18406 set_cu_language (DW_UNSND (attr), cu);
18407 else
18408 {
18409 cu->language = pretend_language;
18410 cu->language_defn = language_def (cu->language);
18411 }
18412
18413 attr = dwarf2_attr (comp_unit_die, DW_AT_producer, cu);
18414 if (attr)
18415 cu->producer = DW_STRING (attr);
18416 }
18417
18418 /* Release one cached compilation unit, CU. We unlink it from the tree
18419 of compilation units, but we don't remove it from the read_in_chain;
18420 the caller is responsible for that.
18421 NOTE: DATA is a void * because this function is also used as a
18422 cleanup routine. */
18423
18424 static void
18425 free_heap_comp_unit (void *data)
18426 {
18427 struct dwarf2_cu *cu = data;
18428
18429 gdb_assert (cu->per_cu != NULL);
18430 cu->per_cu->cu = NULL;
18431 cu->per_cu = NULL;
18432
18433 obstack_free (&cu->comp_unit_obstack, NULL);
18434
18435 xfree (cu);
18436 }
18437
18438 /* This cleanup function is passed the address of a dwarf2_cu on the stack
18439 when we're finished with it. We can't free the pointer itself, but be
18440 sure to unlink it from the cache. Also release any associated storage. */
18441
18442 static void
18443 free_stack_comp_unit (void *data)
18444 {
18445 struct dwarf2_cu *cu = data;
18446
18447 gdb_assert (cu->per_cu != NULL);
18448 cu->per_cu->cu = NULL;
18449 cu->per_cu = NULL;
18450
18451 obstack_free (&cu->comp_unit_obstack, NULL);
18452 cu->partial_dies = NULL;
18453 }
18454
18455 /* Free all cached compilation units. */
18456
18457 static void
18458 free_cached_comp_units (void *data)
18459 {
18460 struct dwarf2_per_cu_data *per_cu, **last_chain;
18461
18462 per_cu = dwarf2_per_objfile->read_in_chain;
18463 last_chain = &dwarf2_per_objfile->read_in_chain;
18464 while (per_cu != NULL)
18465 {
18466 struct dwarf2_per_cu_data *next_cu;
18467
18468 next_cu = per_cu->cu->read_in_chain;
18469
18470 free_heap_comp_unit (per_cu->cu);
18471 *last_chain = next_cu;
18472
18473 per_cu = next_cu;
18474 }
18475 }
18476
18477 /* Increase the age counter on each cached compilation unit, and free
18478 any that are too old. */
18479
18480 static void
18481 age_cached_comp_units (void)
18482 {
18483 struct dwarf2_per_cu_data *per_cu, **last_chain;
18484
18485 dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
18486 per_cu = dwarf2_per_objfile->read_in_chain;
18487 while (per_cu != NULL)
18488 {
18489 per_cu->cu->last_used ++;
18490 if (per_cu->cu->last_used <= dwarf2_max_cache_age)
18491 dwarf2_mark (per_cu->cu);
18492 per_cu = per_cu->cu->read_in_chain;
18493 }
18494
18495 per_cu = dwarf2_per_objfile->read_in_chain;
18496 last_chain = &dwarf2_per_objfile->read_in_chain;
18497 while (per_cu != NULL)
18498 {
18499 struct dwarf2_per_cu_data *next_cu;
18500
18501 next_cu = per_cu->cu->read_in_chain;
18502
18503 if (!per_cu->cu->mark)
18504 {
18505 free_heap_comp_unit (per_cu->cu);
18506 *last_chain = next_cu;
18507 }
18508 else
18509 last_chain = &per_cu->cu->read_in_chain;
18510
18511 per_cu = next_cu;
18512 }
18513 }
18514
18515 /* Remove a single compilation unit from the cache. */
18516
18517 static void
18518 free_one_cached_comp_unit (struct dwarf2_per_cu_data *target_per_cu)
18519 {
18520 struct dwarf2_per_cu_data *per_cu, **last_chain;
18521
18522 per_cu = dwarf2_per_objfile->read_in_chain;
18523 last_chain = &dwarf2_per_objfile->read_in_chain;
18524 while (per_cu != NULL)
18525 {
18526 struct dwarf2_per_cu_data *next_cu;
18527
18528 next_cu = per_cu->cu->read_in_chain;
18529
18530 if (per_cu == target_per_cu)
18531 {
18532 free_heap_comp_unit (per_cu->cu);
18533 per_cu->cu = NULL;
18534 *last_chain = next_cu;
18535 break;
18536 }
18537 else
18538 last_chain = &per_cu->cu->read_in_chain;
18539
18540 per_cu = next_cu;
18541 }
18542 }
18543
18544 /* Release all extra memory associated with OBJFILE. */
18545
18546 void
18547 dwarf2_free_objfile (struct objfile *objfile)
18548 {
18549 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
18550
18551 if (dwarf2_per_objfile == NULL)
18552 return;
18553
18554 /* Cached DIE trees use xmalloc and the comp_unit_obstack. */
18555 free_cached_comp_units (NULL);
18556
18557 if (dwarf2_per_objfile->quick_file_names_table)
18558 htab_delete (dwarf2_per_objfile->quick_file_names_table);
18559
18560 /* Everything else should be on the objfile obstack. */
18561 }
18562
18563 /* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
18564 We store these in a hash table separate from the DIEs, and preserve them
18565 when the DIEs are flushed out of cache.
18566
18567 The CU "per_cu" pointer is needed because offset alone is not enough to
18568 uniquely identify the type. A file may have multiple .debug_types sections,
18569 or the type may come from a DWO file. We have to use something in
18570 dwarf2_per_cu_data (or the pointer to it) because we can enter the lookup
18571 routine, get_die_type_at_offset, from outside this file, and thus won't
18572 necessarily have PER_CU->cu. Fortunately, PER_CU is stable for the life
18573 of the objfile. */
18574
18575 struct dwarf2_per_cu_offset_and_type
18576 {
18577 const struct dwarf2_per_cu_data *per_cu;
18578 sect_offset offset;
18579 struct type *type;
18580 };
18581
18582 /* Hash function for a dwarf2_per_cu_offset_and_type. */
18583
18584 static hashval_t
18585 per_cu_offset_and_type_hash (const void *item)
18586 {
18587 const struct dwarf2_per_cu_offset_and_type *ofs = item;
18588
18589 return (uintptr_t) ofs->per_cu + ofs->offset.sect_off;
18590 }
18591
18592 /* Equality function for a dwarf2_per_cu_offset_and_type. */
18593
18594 static int
18595 per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
18596 {
18597 const struct dwarf2_per_cu_offset_and_type *ofs_lhs = item_lhs;
18598 const struct dwarf2_per_cu_offset_and_type *ofs_rhs = item_rhs;
18599
18600 return (ofs_lhs->per_cu == ofs_rhs->per_cu
18601 && ofs_lhs->offset.sect_off == ofs_rhs->offset.sect_off);
18602 }
18603
18604 /* Set the type associated with DIE to TYPE. Save it in CU's hash
18605 table if necessary. For convenience, return TYPE.
18606
18607 The DIEs reading must have careful ordering to:
18608 * Not cause infite loops trying to read in DIEs as a prerequisite for
18609 reading current DIE.
18610 * Not trying to dereference contents of still incompletely read in types
18611 while reading in other DIEs.
18612 * Enable referencing still incompletely read in types just by a pointer to
18613 the type without accessing its fields.
18614
18615 Therefore caller should follow these rules:
18616 * Try to fetch any prerequisite types we may need to build this DIE type
18617 before building the type and calling set_die_type.
18618 * After building type call set_die_type for current DIE as soon as
18619 possible before fetching more types to complete the current type.
18620 * Make the type as complete as possible before fetching more types. */
18621
18622 static struct type *
18623 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
18624 {
18625 struct dwarf2_per_cu_offset_and_type **slot, ofs;
18626 struct objfile *objfile = cu->objfile;
18627
18628 /* For Ada types, make sure that the gnat-specific data is always
18629 initialized (if not already set). There are a few types where
18630 we should not be doing so, because the type-specific area is
18631 already used to hold some other piece of info (eg: TYPE_CODE_FLT
18632 where the type-specific area is used to store the floatformat).
18633 But this is not a problem, because the gnat-specific information
18634 is actually not needed for these types. */
18635 if (need_gnat_info (cu)
18636 && TYPE_CODE (type) != TYPE_CODE_FUNC
18637 && TYPE_CODE (type) != TYPE_CODE_FLT
18638 && !HAVE_GNAT_AUX_INFO (type))
18639 INIT_GNAT_SPECIFIC (type);
18640
18641 if (dwarf2_per_objfile->die_type_hash == NULL)
18642 {
18643 dwarf2_per_objfile->die_type_hash =
18644 htab_create_alloc_ex (127,
18645 per_cu_offset_and_type_hash,
18646 per_cu_offset_and_type_eq,
18647 NULL,
18648 &objfile->objfile_obstack,
18649 hashtab_obstack_allocate,
18650 dummy_obstack_deallocate);
18651 }
18652
18653 ofs.per_cu = cu->per_cu;
18654 ofs.offset = die->offset;
18655 ofs.type = type;
18656 slot = (struct dwarf2_per_cu_offset_and_type **)
18657 htab_find_slot (dwarf2_per_objfile->die_type_hash, &ofs, INSERT);
18658 if (*slot)
18659 complaint (&symfile_complaints,
18660 _("A problem internal to GDB: DIE 0x%x has type already set"),
18661 die->offset.sect_off);
18662 *slot = obstack_alloc (&objfile->objfile_obstack, sizeof (**slot));
18663 **slot = ofs;
18664 return type;
18665 }
18666
18667 /* Look up the type for the die at OFFSET in the appropriate type_hash
18668 table, or return NULL if the die does not have a saved type. */
18669
18670 static struct type *
18671 get_die_type_at_offset (sect_offset offset,
18672 struct dwarf2_per_cu_data *per_cu)
18673 {
18674 struct dwarf2_per_cu_offset_and_type *slot, ofs;
18675
18676 if (dwarf2_per_objfile->die_type_hash == NULL)
18677 return NULL;
18678
18679 ofs.per_cu = per_cu;
18680 ofs.offset = offset;
18681 slot = htab_find (dwarf2_per_objfile->die_type_hash, &ofs);
18682 if (slot)
18683 return slot->type;
18684 else
18685 return NULL;
18686 }
18687
18688 /* Look up the type for DIE in the appropriate type_hash table,
18689 or return NULL if DIE does not have a saved type. */
18690
18691 static struct type *
18692 get_die_type (struct die_info *die, struct dwarf2_cu *cu)
18693 {
18694 return get_die_type_at_offset (die->offset, cu->per_cu);
18695 }
18696
18697 /* Add a dependence relationship from CU to REF_PER_CU. */
18698
18699 static void
18700 dwarf2_add_dependence (struct dwarf2_cu *cu,
18701 struct dwarf2_per_cu_data *ref_per_cu)
18702 {
18703 void **slot;
18704
18705 if (cu->dependencies == NULL)
18706 cu->dependencies
18707 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
18708 NULL, &cu->comp_unit_obstack,
18709 hashtab_obstack_allocate,
18710 dummy_obstack_deallocate);
18711
18712 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
18713 if (*slot == NULL)
18714 *slot = ref_per_cu;
18715 }
18716
18717 /* Subroutine of dwarf2_mark to pass to htab_traverse.
18718 Set the mark field in every compilation unit in the
18719 cache that we must keep because we are keeping CU. */
18720
18721 static int
18722 dwarf2_mark_helper (void **slot, void *data)
18723 {
18724 struct dwarf2_per_cu_data *per_cu;
18725
18726 per_cu = (struct dwarf2_per_cu_data *) *slot;
18727
18728 /* cu->dependencies references may not yet have been ever read if QUIT aborts
18729 reading of the chain. As such dependencies remain valid it is not much
18730 useful to track and undo them during QUIT cleanups. */
18731 if (per_cu->cu == NULL)
18732 return 1;
18733
18734 if (per_cu->cu->mark)
18735 return 1;
18736 per_cu->cu->mark = 1;
18737
18738 if (per_cu->cu->dependencies != NULL)
18739 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
18740
18741 return 1;
18742 }
18743
18744 /* Set the mark field in CU and in every other compilation unit in the
18745 cache that we must keep because we are keeping CU. */
18746
18747 static void
18748 dwarf2_mark (struct dwarf2_cu *cu)
18749 {
18750 if (cu->mark)
18751 return;
18752 cu->mark = 1;
18753 if (cu->dependencies != NULL)
18754 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
18755 }
18756
18757 static void
18758 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
18759 {
18760 while (per_cu)
18761 {
18762 per_cu->cu->mark = 0;
18763 per_cu = per_cu->cu->read_in_chain;
18764 }
18765 }
18766
18767 /* Trivial hash function for partial_die_info: the hash value of a DIE
18768 is its offset in .debug_info for this objfile. */
18769
18770 static hashval_t
18771 partial_die_hash (const void *item)
18772 {
18773 const struct partial_die_info *part_die = item;
18774
18775 return part_die->offset.sect_off;
18776 }
18777
18778 /* Trivial comparison function for partial_die_info structures: two DIEs
18779 are equal if they have the same offset. */
18780
18781 static int
18782 partial_die_eq (const void *item_lhs, const void *item_rhs)
18783 {
18784 const struct partial_die_info *part_die_lhs = item_lhs;
18785 const struct partial_die_info *part_die_rhs = item_rhs;
18786
18787 return part_die_lhs->offset.sect_off == part_die_rhs->offset.sect_off;
18788 }
18789
18790 static struct cmd_list_element *set_dwarf2_cmdlist;
18791 static struct cmd_list_element *show_dwarf2_cmdlist;
18792
18793 static void
18794 set_dwarf2_cmd (char *args, int from_tty)
18795 {
18796 help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout);
18797 }
18798
18799 static void
18800 show_dwarf2_cmd (char *args, int from_tty)
18801 {
18802 cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
18803 }
18804
18805 /* Free data associated with OBJFILE, if necessary. */
18806
18807 static void
18808 dwarf2_per_objfile_free (struct objfile *objfile, void *d)
18809 {
18810 struct dwarf2_per_objfile *data = d;
18811 int ix;
18812
18813 for (ix = 0; ix < dwarf2_per_objfile->n_comp_units; ++ix)
18814 VEC_free (dwarf2_per_cu_ptr,
18815 dwarf2_per_objfile->all_comp_units[ix]->s.imported_symtabs);
18816
18817 VEC_free (dwarf2_section_info_def, data->types);
18818
18819 if (data->dwo_files)
18820 free_dwo_files (data->dwo_files, objfile);
18821
18822 if (data->dwz_file && data->dwz_file->dwz_bfd)
18823 gdb_bfd_unref (data->dwz_file->dwz_bfd);
18824 }
18825
18826 \f
18827 /* The "save gdb-index" command. */
18828
18829 /* The contents of the hash table we create when building the string
18830 table. */
18831 struct strtab_entry
18832 {
18833 offset_type offset;
18834 const char *str;
18835 };
18836
18837 /* Hash function for a strtab_entry.
18838
18839 Function is used only during write_hash_table so no index format backward
18840 compatibility is needed. */
18841
18842 static hashval_t
18843 hash_strtab_entry (const void *e)
18844 {
18845 const struct strtab_entry *entry = e;
18846 return mapped_index_string_hash (INT_MAX, entry->str);
18847 }
18848
18849 /* Equality function for a strtab_entry. */
18850
18851 static int
18852 eq_strtab_entry (const void *a, const void *b)
18853 {
18854 const struct strtab_entry *ea = a;
18855 const struct strtab_entry *eb = b;
18856 return !strcmp (ea->str, eb->str);
18857 }
18858
18859 /* Create a strtab_entry hash table. */
18860
18861 static htab_t
18862 create_strtab (void)
18863 {
18864 return htab_create_alloc (100, hash_strtab_entry, eq_strtab_entry,
18865 xfree, xcalloc, xfree);
18866 }
18867
18868 /* Add a string to the constant pool. Return the string's offset in
18869 host order. */
18870
18871 static offset_type
18872 add_string (htab_t table, struct obstack *cpool, const char *str)
18873 {
18874 void **slot;
18875 struct strtab_entry entry;
18876 struct strtab_entry *result;
18877
18878 entry.str = str;
18879 slot = htab_find_slot (table, &entry, INSERT);
18880 if (*slot)
18881 result = *slot;
18882 else
18883 {
18884 result = XNEW (struct strtab_entry);
18885 result->offset = obstack_object_size (cpool);
18886 result->str = str;
18887 obstack_grow_str0 (cpool, str);
18888 *slot = result;
18889 }
18890 return result->offset;
18891 }
18892
18893 /* An entry in the symbol table. */
18894 struct symtab_index_entry
18895 {
18896 /* The name of the symbol. */
18897 const char *name;
18898 /* The offset of the name in the constant pool. */
18899 offset_type index_offset;
18900 /* A sorted vector of the indices of all the CUs that hold an object
18901 of this name. */
18902 VEC (offset_type) *cu_indices;
18903 };
18904
18905 /* The symbol table. This is a power-of-2-sized hash table. */
18906 struct mapped_symtab
18907 {
18908 offset_type n_elements;
18909 offset_type size;
18910 struct symtab_index_entry **data;
18911 };
18912
18913 /* Hash function for a symtab_index_entry. */
18914
18915 static hashval_t
18916 hash_symtab_entry (const void *e)
18917 {
18918 const struct symtab_index_entry *entry = e;
18919 return iterative_hash (VEC_address (offset_type, entry->cu_indices),
18920 sizeof (offset_type) * VEC_length (offset_type,
18921 entry->cu_indices),
18922 0);
18923 }
18924
18925 /* Equality function for a symtab_index_entry. */
18926
18927 static int
18928 eq_symtab_entry (const void *a, const void *b)
18929 {
18930 const struct symtab_index_entry *ea = a;
18931 const struct symtab_index_entry *eb = b;
18932 int len = VEC_length (offset_type, ea->cu_indices);
18933 if (len != VEC_length (offset_type, eb->cu_indices))
18934 return 0;
18935 return !memcmp (VEC_address (offset_type, ea->cu_indices),
18936 VEC_address (offset_type, eb->cu_indices),
18937 sizeof (offset_type) * len);
18938 }
18939
18940 /* Destroy a symtab_index_entry. */
18941
18942 static void
18943 delete_symtab_entry (void *p)
18944 {
18945 struct symtab_index_entry *entry = p;
18946 VEC_free (offset_type, entry->cu_indices);
18947 xfree (entry);
18948 }
18949
18950 /* Create a hash table holding symtab_index_entry objects. */
18951
18952 static htab_t
18953 create_symbol_hash_table (void)
18954 {
18955 return htab_create_alloc (100, hash_symtab_entry, eq_symtab_entry,
18956 delete_symtab_entry, xcalloc, xfree);
18957 }
18958
18959 /* Create a new mapped symtab object. */
18960
18961 static struct mapped_symtab *
18962 create_mapped_symtab (void)
18963 {
18964 struct mapped_symtab *symtab = XNEW (struct mapped_symtab);
18965 symtab->n_elements = 0;
18966 symtab->size = 1024;
18967 symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
18968 return symtab;
18969 }
18970
18971 /* Destroy a mapped_symtab. */
18972
18973 static void
18974 cleanup_mapped_symtab (void *p)
18975 {
18976 struct mapped_symtab *symtab = p;
18977 /* The contents of the array are freed when the other hash table is
18978 destroyed. */
18979 xfree (symtab->data);
18980 xfree (symtab);
18981 }
18982
18983 /* Find a slot in SYMTAB for the symbol NAME. Returns a pointer to
18984 the slot.
18985
18986 Function is used only during write_hash_table so no index format backward
18987 compatibility is needed. */
18988
18989 static struct symtab_index_entry **
18990 find_slot (struct mapped_symtab *symtab, const char *name)
18991 {
18992 offset_type index, step, hash = mapped_index_string_hash (INT_MAX, name);
18993
18994 index = hash & (symtab->size - 1);
18995 step = ((hash * 17) & (symtab->size - 1)) | 1;
18996
18997 for (;;)
18998 {
18999 if (!symtab->data[index] || !strcmp (name, symtab->data[index]->name))
19000 return &symtab->data[index];
19001 index = (index + step) & (symtab->size - 1);
19002 }
19003 }
19004
19005 /* Expand SYMTAB's hash table. */
19006
19007 static void
19008 hash_expand (struct mapped_symtab *symtab)
19009 {
19010 offset_type old_size = symtab->size;
19011 offset_type i;
19012 struct symtab_index_entry **old_entries = symtab->data;
19013
19014 symtab->size *= 2;
19015 symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
19016
19017 for (i = 0; i < old_size; ++i)
19018 {
19019 if (old_entries[i])
19020 {
19021 struct symtab_index_entry **slot = find_slot (symtab,
19022 old_entries[i]->name);
19023 *slot = old_entries[i];
19024 }
19025 }
19026
19027 xfree (old_entries);
19028 }
19029
19030 /* Add an entry to SYMTAB. NAME is the name of the symbol.
19031 CU_INDEX is the index of the CU in which the symbol appears.
19032 IS_STATIC is one if the symbol is static, otherwise zero (global). */
19033
19034 static void
19035 add_index_entry (struct mapped_symtab *symtab, const char *name,
19036 int is_static, gdb_index_symbol_kind kind,
19037 offset_type cu_index)
19038 {
19039 struct symtab_index_entry **slot;
19040 offset_type cu_index_and_attrs;
19041
19042 ++symtab->n_elements;
19043 if (4 * symtab->n_elements / 3 >= symtab->size)
19044 hash_expand (symtab);
19045
19046 slot = find_slot (symtab, name);
19047 if (!*slot)
19048 {
19049 *slot = XNEW (struct symtab_index_entry);
19050 (*slot)->name = name;
19051 /* index_offset is set later. */
19052 (*slot)->cu_indices = NULL;
19053 }
19054
19055 cu_index_and_attrs = 0;
19056 DW2_GDB_INDEX_CU_SET_VALUE (cu_index_and_attrs, cu_index);
19057 DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE (cu_index_and_attrs, is_static);
19058 DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE (cu_index_and_attrs, kind);
19059
19060 /* We don't want to record an index value twice as we want to avoid the
19061 duplication.
19062 We process all global symbols and then all static symbols
19063 (which would allow us to avoid the duplication by only having to check
19064 the last entry pushed), but a symbol could have multiple kinds in one CU.
19065 To keep things simple we don't worry about the duplication here and
19066 sort and uniqufy the list after we've processed all symbols. */
19067 VEC_safe_push (offset_type, (*slot)->cu_indices, cu_index_and_attrs);
19068 }
19069
19070 /* qsort helper routine for uniquify_cu_indices. */
19071
19072 static int
19073 offset_type_compare (const void *ap, const void *bp)
19074 {
19075 offset_type a = *(offset_type *) ap;
19076 offset_type b = *(offset_type *) bp;
19077
19078 return (a > b) - (b > a);
19079 }
19080
19081 /* Sort and remove duplicates of all symbols' cu_indices lists. */
19082
19083 static void
19084 uniquify_cu_indices (struct mapped_symtab *symtab)
19085 {
19086 int i;
19087
19088 for (i = 0; i < symtab->size; ++i)
19089 {
19090 struct symtab_index_entry *entry = symtab->data[i];
19091
19092 if (entry
19093 && entry->cu_indices != NULL)
19094 {
19095 unsigned int next_to_insert, next_to_check;
19096 offset_type last_value;
19097
19098 qsort (VEC_address (offset_type, entry->cu_indices),
19099 VEC_length (offset_type, entry->cu_indices),
19100 sizeof (offset_type), offset_type_compare);
19101
19102 last_value = VEC_index (offset_type, entry->cu_indices, 0);
19103 next_to_insert = 1;
19104 for (next_to_check = 1;
19105 next_to_check < VEC_length (offset_type, entry->cu_indices);
19106 ++next_to_check)
19107 {
19108 if (VEC_index (offset_type, entry->cu_indices, next_to_check)
19109 != last_value)
19110 {
19111 last_value = VEC_index (offset_type, entry->cu_indices,
19112 next_to_check);
19113 VEC_replace (offset_type, entry->cu_indices, next_to_insert,
19114 last_value);
19115 ++next_to_insert;
19116 }
19117 }
19118 VEC_truncate (offset_type, entry->cu_indices, next_to_insert);
19119 }
19120 }
19121 }
19122
19123 /* Add a vector of indices to the constant pool. */
19124
19125 static offset_type
19126 add_indices_to_cpool (htab_t symbol_hash_table, struct obstack *cpool,
19127 struct symtab_index_entry *entry)
19128 {
19129 void **slot;
19130
19131 slot = htab_find_slot (symbol_hash_table, entry, INSERT);
19132 if (!*slot)
19133 {
19134 offset_type len = VEC_length (offset_type, entry->cu_indices);
19135 offset_type val = MAYBE_SWAP (len);
19136 offset_type iter;
19137 int i;
19138
19139 *slot = entry;
19140 entry->index_offset = obstack_object_size (cpool);
19141
19142 obstack_grow (cpool, &val, sizeof (val));
19143 for (i = 0;
19144 VEC_iterate (offset_type, entry->cu_indices, i, iter);
19145 ++i)
19146 {
19147 val = MAYBE_SWAP (iter);
19148 obstack_grow (cpool, &val, sizeof (val));
19149 }
19150 }
19151 else
19152 {
19153 struct symtab_index_entry *old_entry = *slot;
19154 entry->index_offset = old_entry->index_offset;
19155 entry = old_entry;
19156 }
19157 return entry->index_offset;
19158 }
19159
19160 /* Write the mapped hash table SYMTAB to the obstack OUTPUT, with
19161 constant pool entries going into the obstack CPOOL. */
19162
19163 static void
19164 write_hash_table (struct mapped_symtab *symtab,
19165 struct obstack *output, struct obstack *cpool)
19166 {
19167 offset_type i;
19168 htab_t symbol_hash_table;
19169 htab_t str_table;
19170
19171 symbol_hash_table = create_symbol_hash_table ();
19172 str_table = create_strtab ();
19173
19174 /* We add all the index vectors to the constant pool first, to
19175 ensure alignment is ok. */
19176 for (i = 0; i < symtab->size; ++i)
19177 {
19178 if (symtab->data[i])
19179 add_indices_to_cpool (symbol_hash_table, cpool, symtab->data[i]);
19180 }
19181
19182 /* Now write out the hash table. */
19183 for (i = 0; i < symtab->size; ++i)
19184 {
19185 offset_type str_off, vec_off;
19186
19187 if (symtab->data[i])
19188 {
19189 str_off = add_string (str_table, cpool, symtab->data[i]->name);
19190 vec_off = symtab->data[i]->index_offset;
19191 }
19192 else
19193 {
19194 /* While 0 is a valid constant pool index, it is not valid
19195 to have 0 for both offsets. */
19196 str_off = 0;
19197 vec_off = 0;
19198 }
19199
19200 str_off = MAYBE_SWAP (str_off);
19201 vec_off = MAYBE_SWAP (vec_off);
19202
19203 obstack_grow (output, &str_off, sizeof (str_off));
19204 obstack_grow (output, &vec_off, sizeof (vec_off));
19205 }
19206
19207 htab_delete (str_table);
19208 htab_delete (symbol_hash_table);
19209 }
19210
19211 /* Struct to map psymtab to CU index in the index file. */
19212 struct psymtab_cu_index_map
19213 {
19214 struct partial_symtab *psymtab;
19215 unsigned int cu_index;
19216 };
19217
19218 static hashval_t
19219 hash_psymtab_cu_index (const void *item)
19220 {
19221 const struct psymtab_cu_index_map *map = item;
19222
19223 return htab_hash_pointer (map->psymtab);
19224 }
19225
19226 static int
19227 eq_psymtab_cu_index (const void *item_lhs, const void *item_rhs)
19228 {
19229 const struct psymtab_cu_index_map *lhs = item_lhs;
19230 const struct psymtab_cu_index_map *rhs = item_rhs;
19231
19232 return lhs->psymtab == rhs->psymtab;
19233 }
19234
19235 /* Helper struct for building the address table. */
19236 struct addrmap_index_data
19237 {
19238 struct objfile *objfile;
19239 struct obstack *addr_obstack;
19240 htab_t cu_index_htab;
19241
19242 /* Non-zero if the previous_* fields are valid.
19243 We can't write an entry until we see the next entry (since it is only then
19244 that we know the end of the entry). */
19245 int previous_valid;
19246 /* Index of the CU in the table of all CUs in the index file. */
19247 unsigned int previous_cu_index;
19248 /* Start address of the CU. */
19249 CORE_ADDR previous_cu_start;
19250 };
19251
19252 /* Write an address entry to OBSTACK. */
19253
19254 static void
19255 add_address_entry (struct objfile *objfile, struct obstack *obstack,
19256 CORE_ADDR start, CORE_ADDR end, unsigned int cu_index)
19257 {
19258 offset_type cu_index_to_write;
19259 char addr[8];
19260 CORE_ADDR baseaddr;
19261
19262 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
19263
19264 store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, start - baseaddr);
19265 obstack_grow (obstack, addr, 8);
19266 store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, end - baseaddr);
19267 obstack_grow (obstack, addr, 8);
19268 cu_index_to_write = MAYBE_SWAP (cu_index);
19269 obstack_grow (obstack, &cu_index_to_write, sizeof (offset_type));
19270 }
19271
19272 /* Worker function for traversing an addrmap to build the address table. */
19273
19274 static int
19275 add_address_entry_worker (void *datap, CORE_ADDR start_addr, void *obj)
19276 {
19277 struct addrmap_index_data *data = datap;
19278 struct partial_symtab *pst = obj;
19279
19280 if (data->previous_valid)
19281 add_address_entry (data->objfile, data->addr_obstack,
19282 data->previous_cu_start, start_addr,
19283 data->previous_cu_index);
19284
19285 data->previous_cu_start = start_addr;
19286 if (pst != NULL)
19287 {
19288 struct psymtab_cu_index_map find_map, *map;
19289 find_map.psymtab = pst;
19290 map = htab_find (data->cu_index_htab, &find_map);
19291 gdb_assert (map != NULL);
19292 data->previous_cu_index = map->cu_index;
19293 data->previous_valid = 1;
19294 }
19295 else
19296 data->previous_valid = 0;
19297
19298 return 0;
19299 }
19300
19301 /* Write OBJFILE's address map to OBSTACK.
19302 CU_INDEX_HTAB is used to map addrmap entries to their CU indices
19303 in the index file. */
19304
19305 static void
19306 write_address_map (struct objfile *objfile, struct obstack *obstack,
19307 htab_t cu_index_htab)
19308 {
19309 struct addrmap_index_data addrmap_index_data;
19310
19311 /* When writing the address table, we have to cope with the fact that
19312 the addrmap iterator only provides the start of a region; we have to
19313 wait until the next invocation to get the start of the next region. */
19314
19315 addrmap_index_data.objfile = objfile;
19316 addrmap_index_data.addr_obstack = obstack;
19317 addrmap_index_data.cu_index_htab = cu_index_htab;
19318 addrmap_index_data.previous_valid = 0;
19319
19320 addrmap_foreach (objfile->psymtabs_addrmap, add_address_entry_worker,
19321 &addrmap_index_data);
19322
19323 /* It's highly unlikely the last entry (end address = 0xff...ff)
19324 is valid, but we should still handle it.
19325 The end address is recorded as the start of the next region, but that
19326 doesn't work here. To cope we pass 0xff...ff, this is a rare situation
19327 anyway. */
19328 if (addrmap_index_data.previous_valid)
19329 add_address_entry (objfile, obstack,
19330 addrmap_index_data.previous_cu_start, (CORE_ADDR) -1,
19331 addrmap_index_data.previous_cu_index);
19332 }
19333
19334 /* Return the symbol kind of PSYM. */
19335
19336 static gdb_index_symbol_kind
19337 symbol_kind (struct partial_symbol *psym)
19338 {
19339 domain_enum domain = PSYMBOL_DOMAIN (psym);
19340 enum address_class aclass = PSYMBOL_CLASS (psym);
19341
19342 switch (domain)
19343 {
19344 case VAR_DOMAIN:
19345 switch (aclass)
19346 {
19347 case LOC_BLOCK:
19348 return GDB_INDEX_SYMBOL_KIND_FUNCTION;
19349 case LOC_TYPEDEF:
19350 return GDB_INDEX_SYMBOL_KIND_TYPE;
19351 case LOC_COMPUTED:
19352 case LOC_CONST_BYTES:
19353 case LOC_OPTIMIZED_OUT:
19354 case LOC_STATIC:
19355 return GDB_INDEX_SYMBOL_KIND_VARIABLE;
19356 case LOC_CONST:
19357 /* Note: It's currently impossible to recognize psyms as enum values
19358 short of reading the type info. For now punt. */
19359 return GDB_INDEX_SYMBOL_KIND_VARIABLE;
19360 default:
19361 /* There are other LOC_FOO values that one might want to classify
19362 as variables, but dwarf2read.c doesn't currently use them. */
19363 return GDB_INDEX_SYMBOL_KIND_OTHER;
19364 }
19365 case STRUCT_DOMAIN:
19366 return GDB_INDEX_SYMBOL_KIND_TYPE;
19367 default:
19368 return GDB_INDEX_SYMBOL_KIND_OTHER;
19369 }
19370 }
19371
19372 /* Add a list of partial symbols to SYMTAB. */
19373
19374 static void
19375 write_psymbols (struct mapped_symtab *symtab,
19376 htab_t psyms_seen,
19377 struct partial_symbol **psymp,
19378 int count,
19379 offset_type cu_index,
19380 int is_static)
19381 {
19382 for (; count-- > 0; ++psymp)
19383 {
19384 struct partial_symbol *psym = *psymp;
19385 void **slot;
19386
19387 if (SYMBOL_LANGUAGE (psym) == language_ada)
19388 error (_("Ada is not currently supported by the index"));
19389
19390 /* Only add a given psymbol once. */
19391 slot = htab_find_slot (psyms_seen, psym, INSERT);
19392 if (!*slot)
19393 {
19394 gdb_index_symbol_kind kind = symbol_kind (psym);
19395
19396 *slot = psym;
19397 add_index_entry (symtab, SYMBOL_SEARCH_NAME (psym),
19398 is_static, kind, cu_index);
19399 }
19400 }
19401 }
19402
19403 /* Write the contents of an ("unfinished") obstack to FILE. Throw an
19404 exception if there is an error. */
19405
19406 static void
19407 write_obstack (FILE *file, struct obstack *obstack)
19408 {
19409 if (fwrite (obstack_base (obstack), 1, obstack_object_size (obstack),
19410 file)
19411 != obstack_object_size (obstack))
19412 error (_("couldn't data write to file"));
19413 }
19414
19415 /* Unlink a file if the argument is not NULL. */
19416
19417 static void
19418 unlink_if_set (void *p)
19419 {
19420 char **filename = p;
19421 if (*filename)
19422 unlink (*filename);
19423 }
19424
19425 /* A helper struct used when iterating over debug_types. */
19426 struct signatured_type_index_data
19427 {
19428 struct objfile *objfile;
19429 struct mapped_symtab *symtab;
19430 struct obstack *types_list;
19431 htab_t psyms_seen;
19432 int cu_index;
19433 };
19434
19435 /* A helper function that writes a single signatured_type to an
19436 obstack. */
19437
19438 static int
19439 write_one_signatured_type (void **slot, void *d)
19440 {
19441 struct signatured_type_index_data *info = d;
19442 struct signatured_type *entry = (struct signatured_type *) *slot;
19443 struct dwarf2_per_cu_data *per_cu = &entry->per_cu;
19444 struct partial_symtab *psymtab = per_cu->v.psymtab;
19445 gdb_byte val[8];
19446
19447 write_psymbols (info->symtab,
19448 info->psyms_seen,
19449 info->objfile->global_psymbols.list
19450 + psymtab->globals_offset,
19451 psymtab->n_global_syms, info->cu_index,
19452 0);
19453 write_psymbols (info->symtab,
19454 info->psyms_seen,
19455 info->objfile->static_psymbols.list
19456 + psymtab->statics_offset,
19457 psymtab->n_static_syms, info->cu_index,
19458 1);
19459
19460 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
19461 entry->per_cu.offset.sect_off);
19462 obstack_grow (info->types_list, val, 8);
19463 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
19464 entry->type_offset_in_tu.cu_off);
19465 obstack_grow (info->types_list, val, 8);
19466 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->signature);
19467 obstack_grow (info->types_list, val, 8);
19468
19469 ++info->cu_index;
19470
19471 return 1;
19472 }
19473
19474 /* Recurse into all "included" dependencies and write their symbols as
19475 if they appeared in this psymtab. */
19476
19477 static void
19478 recursively_write_psymbols (struct objfile *objfile,
19479 struct partial_symtab *psymtab,
19480 struct mapped_symtab *symtab,
19481 htab_t psyms_seen,
19482 offset_type cu_index)
19483 {
19484 int i;
19485
19486 for (i = 0; i < psymtab->number_of_dependencies; ++i)
19487 if (psymtab->dependencies[i]->user != NULL)
19488 recursively_write_psymbols (objfile, psymtab->dependencies[i],
19489 symtab, psyms_seen, cu_index);
19490
19491 write_psymbols (symtab,
19492 psyms_seen,
19493 objfile->global_psymbols.list + psymtab->globals_offset,
19494 psymtab->n_global_syms, cu_index,
19495 0);
19496 write_psymbols (symtab,
19497 psyms_seen,
19498 objfile->static_psymbols.list + psymtab->statics_offset,
19499 psymtab->n_static_syms, cu_index,
19500 1);
19501 }
19502
19503 /* Create an index file for OBJFILE in the directory DIR. */
19504
19505 static void
19506 write_psymtabs_to_index (struct objfile *objfile, const char *dir)
19507 {
19508 struct cleanup *cleanup;
19509 char *filename, *cleanup_filename;
19510 struct obstack contents, addr_obstack, constant_pool, symtab_obstack;
19511 struct obstack cu_list, types_cu_list;
19512 int i;
19513 FILE *out_file;
19514 struct mapped_symtab *symtab;
19515 offset_type val, size_of_contents, total_len;
19516 struct stat st;
19517 htab_t psyms_seen;
19518 htab_t cu_index_htab;
19519 struct psymtab_cu_index_map *psymtab_cu_index_map;
19520
19521 if (!objfile->psymtabs || !objfile->psymtabs_addrmap)
19522 return;
19523
19524 if (dwarf2_per_objfile->using_index)
19525 error (_("Cannot use an index to create the index"));
19526
19527 if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) > 1)
19528 error (_("Cannot make an index when the file has multiple .debug_types sections"));
19529
19530 if (stat (objfile->name, &st) < 0)
19531 perror_with_name (objfile->name);
19532
19533 filename = concat (dir, SLASH_STRING, lbasename (objfile->name),
19534 INDEX_SUFFIX, (char *) NULL);
19535 cleanup = make_cleanup (xfree, filename);
19536
19537 out_file = fopen (filename, "wb");
19538 if (!out_file)
19539 error (_("Can't open `%s' for writing"), filename);
19540
19541 cleanup_filename = filename;
19542 make_cleanup (unlink_if_set, &cleanup_filename);
19543
19544 symtab = create_mapped_symtab ();
19545 make_cleanup (cleanup_mapped_symtab, symtab);
19546
19547 obstack_init (&addr_obstack);
19548 make_cleanup_obstack_free (&addr_obstack);
19549
19550 obstack_init (&cu_list);
19551 make_cleanup_obstack_free (&cu_list);
19552
19553 obstack_init (&types_cu_list);
19554 make_cleanup_obstack_free (&types_cu_list);
19555
19556 psyms_seen = htab_create_alloc (100, htab_hash_pointer, htab_eq_pointer,
19557 NULL, xcalloc, xfree);
19558 make_cleanup_htab_delete (psyms_seen);
19559
19560 /* While we're scanning CU's create a table that maps a psymtab pointer
19561 (which is what addrmap records) to its index (which is what is recorded
19562 in the index file). This will later be needed to write the address
19563 table. */
19564 cu_index_htab = htab_create_alloc (100,
19565 hash_psymtab_cu_index,
19566 eq_psymtab_cu_index,
19567 NULL, xcalloc, xfree);
19568 make_cleanup_htab_delete (cu_index_htab);
19569 psymtab_cu_index_map = (struct psymtab_cu_index_map *)
19570 xmalloc (sizeof (struct psymtab_cu_index_map)
19571 * dwarf2_per_objfile->n_comp_units);
19572 make_cleanup (xfree, psymtab_cu_index_map);
19573
19574 /* The CU list is already sorted, so we don't need to do additional
19575 work here. Also, the debug_types entries do not appear in
19576 all_comp_units, but only in their own hash table. */
19577 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
19578 {
19579 struct dwarf2_per_cu_data *per_cu
19580 = dwarf2_per_objfile->all_comp_units[i];
19581 struct partial_symtab *psymtab = per_cu->v.psymtab;
19582 gdb_byte val[8];
19583 struct psymtab_cu_index_map *map;
19584 void **slot;
19585
19586 if (psymtab->user == NULL)
19587 recursively_write_psymbols (objfile, psymtab, symtab, psyms_seen, i);
19588
19589 map = &psymtab_cu_index_map[i];
19590 map->psymtab = psymtab;
19591 map->cu_index = i;
19592 slot = htab_find_slot (cu_index_htab, map, INSERT);
19593 gdb_assert (slot != NULL);
19594 gdb_assert (*slot == NULL);
19595 *slot = map;
19596
19597 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
19598 per_cu->offset.sect_off);
19599 obstack_grow (&cu_list, val, 8);
19600 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->length);
19601 obstack_grow (&cu_list, val, 8);
19602 }
19603
19604 /* Dump the address map. */
19605 write_address_map (objfile, &addr_obstack, cu_index_htab);
19606
19607 /* Write out the .debug_type entries, if any. */
19608 if (dwarf2_per_objfile->signatured_types)
19609 {
19610 struct signatured_type_index_data sig_data;
19611
19612 sig_data.objfile = objfile;
19613 sig_data.symtab = symtab;
19614 sig_data.types_list = &types_cu_list;
19615 sig_data.psyms_seen = psyms_seen;
19616 sig_data.cu_index = dwarf2_per_objfile->n_comp_units;
19617 htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
19618 write_one_signatured_type, &sig_data);
19619 }
19620
19621 /* Now that we've processed all symbols we can shrink their cu_indices
19622 lists. */
19623 uniquify_cu_indices (symtab);
19624
19625 obstack_init (&constant_pool);
19626 make_cleanup_obstack_free (&constant_pool);
19627 obstack_init (&symtab_obstack);
19628 make_cleanup_obstack_free (&symtab_obstack);
19629 write_hash_table (symtab, &symtab_obstack, &constant_pool);
19630
19631 obstack_init (&contents);
19632 make_cleanup_obstack_free (&contents);
19633 size_of_contents = 6 * sizeof (offset_type);
19634 total_len = size_of_contents;
19635
19636 /* The version number. */
19637 val = MAYBE_SWAP (7);
19638 obstack_grow (&contents, &val, sizeof (val));
19639
19640 /* The offset of the CU list from the start of the file. */
19641 val = MAYBE_SWAP (total_len);
19642 obstack_grow (&contents, &val, sizeof (val));
19643 total_len += obstack_object_size (&cu_list);
19644
19645 /* The offset of the types CU list from the start of the file. */
19646 val = MAYBE_SWAP (total_len);
19647 obstack_grow (&contents, &val, sizeof (val));
19648 total_len += obstack_object_size (&types_cu_list);
19649
19650 /* The offset of the address table from the start of the file. */
19651 val = MAYBE_SWAP (total_len);
19652 obstack_grow (&contents, &val, sizeof (val));
19653 total_len += obstack_object_size (&addr_obstack);
19654
19655 /* The offset of the symbol table from the start of the file. */
19656 val = MAYBE_SWAP (total_len);
19657 obstack_grow (&contents, &val, sizeof (val));
19658 total_len += obstack_object_size (&symtab_obstack);
19659
19660 /* The offset of the constant pool from the start of the file. */
19661 val = MAYBE_SWAP (total_len);
19662 obstack_grow (&contents, &val, sizeof (val));
19663 total_len += obstack_object_size (&constant_pool);
19664
19665 gdb_assert (obstack_object_size (&contents) == size_of_contents);
19666
19667 write_obstack (out_file, &contents);
19668 write_obstack (out_file, &cu_list);
19669 write_obstack (out_file, &types_cu_list);
19670 write_obstack (out_file, &addr_obstack);
19671 write_obstack (out_file, &symtab_obstack);
19672 write_obstack (out_file, &constant_pool);
19673
19674 fclose (out_file);
19675
19676 /* We want to keep the file, so we set cleanup_filename to NULL
19677 here. See unlink_if_set. */
19678 cleanup_filename = NULL;
19679
19680 do_cleanups (cleanup);
19681 }
19682
19683 /* Implementation of the `save gdb-index' command.
19684
19685 Note that the file format used by this command is documented in the
19686 GDB manual. Any changes here must be documented there. */
19687
19688 static void
19689 save_gdb_index_command (char *arg, int from_tty)
19690 {
19691 struct objfile *objfile;
19692
19693 if (!arg || !*arg)
19694 error (_("usage: save gdb-index DIRECTORY"));
19695
19696 ALL_OBJFILES (objfile)
19697 {
19698 struct stat st;
19699
19700 /* If the objfile does not correspond to an actual file, skip it. */
19701 if (stat (objfile->name, &st) < 0)
19702 continue;
19703
19704 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
19705 if (dwarf2_per_objfile)
19706 {
19707 volatile struct gdb_exception except;
19708
19709 TRY_CATCH (except, RETURN_MASK_ERROR)
19710 {
19711 write_psymtabs_to_index (objfile, arg);
19712 }
19713 if (except.reason < 0)
19714 exception_fprintf (gdb_stderr, except,
19715 _("Error while writing index for `%s': "),
19716 objfile->name);
19717 }
19718 }
19719 }
19720
19721 \f
19722
19723 int dwarf2_always_disassemble;
19724
19725 static void
19726 show_dwarf2_always_disassemble (struct ui_file *file, int from_tty,
19727 struct cmd_list_element *c, const char *value)
19728 {
19729 fprintf_filtered (file,
19730 _("Whether to always disassemble "
19731 "DWARF expressions is %s.\n"),
19732 value);
19733 }
19734
19735 static void
19736 show_check_physname (struct ui_file *file, int from_tty,
19737 struct cmd_list_element *c, const char *value)
19738 {
19739 fprintf_filtered (file,
19740 _("Whether to check \"physname\" is %s.\n"),
19741 value);
19742 }
19743
19744 void _initialize_dwarf2_read (void);
19745
19746 void
19747 _initialize_dwarf2_read (void)
19748 {
19749 struct cmd_list_element *c;
19750
19751 dwarf2_objfile_data_key
19752 = register_objfile_data_with_cleanup (NULL, dwarf2_per_objfile_free);
19753
19754 add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
19755 Set DWARF 2 specific variables.\n\
19756 Configure DWARF 2 variables such as the cache size"),
19757 &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
19758 0/*allow-unknown*/, &maintenance_set_cmdlist);
19759
19760 add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
19761 Show DWARF 2 specific variables\n\
19762 Show DWARF 2 variables such as the cache size"),
19763 &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
19764 0/*allow-unknown*/, &maintenance_show_cmdlist);
19765
19766 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
19767 &dwarf2_max_cache_age, _("\
19768 Set the upper bound on the age of cached dwarf2 compilation units."), _("\
19769 Show the upper bound on the age of cached dwarf2 compilation units."), _("\
19770 A higher limit means that cached compilation units will be stored\n\
19771 in memory longer, and more total memory will be used. Zero disables\n\
19772 caching, which can slow down startup."),
19773 NULL,
19774 show_dwarf2_max_cache_age,
19775 &set_dwarf2_cmdlist,
19776 &show_dwarf2_cmdlist);
19777
19778 add_setshow_boolean_cmd ("always-disassemble", class_obscure,
19779 &dwarf2_always_disassemble, _("\
19780 Set whether `info address' always disassembles DWARF expressions."), _("\
19781 Show whether `info address' always disassembles DWARF expressions."), _("\
19782 When enabled, DWARF expressions are always printed in an assembly-like\n\
19783 syntax. When disabled, expressions will be printed in a more\n\
19784 conversational style, when possible."),
19785 NULL,
19786 show_dwarf2_always_disassemble,
19787 &set_dwarf2_cmdlist,
19788 &show_dwarf2_cmdlist);
19789
19790 add_setshow_boolean_cmd ("dwarf2-read", no_class, &dwarf2_read_debug, _("\
19791 Set debugging of the dwarf2 reader."), _("\
19792 Show debugging of the dwarf2 reader."), _("\
19793 When enabled, debugging messages are printed during dwarf2 reading\n\
19794 and symtab expansion."),
19795 NULL,
19796 NULL,
19797 &setdebuglist, &showdebuglist);
19798
19799 add_setshow_zuinteger_cmd ("dwarf2-die", no_class, &dwarf2_die_debug, _("\
19800 Set debugging of the dwarf2 DIE reader."), _("\
19801 Show debugging of the dwarf2 DIE reader."), _("\
19802 When enabled (non-zero), DIEs are dumped after they are read in.\n\
19803 The value is the maximum depth to print."),
19804 NULL,
19805 NULL,
19806 &setdebuglist, &showdebuglist);
19807
19808 add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
19809 Set cross-checking of \"physname\" code against demangler."), _("\
19810 Show cross-checking of \"physname\" code against demangler."), _("\
19811 When enabled, GDB's internal \"physname\" code is checked against\n\
19812 the demangler."),
19813 NULL, show_check_physname,
19814 &setdebuglist, &showdebuglist);
19815
19816 add_setshow_boolean_cmd ("use-deprecated-index-sections",
19817 no_class, &use_deprecated_index_sections, _("\
19818 Set whether to use deprecated gdb_index sections."), _("\
19819 Show whether to use deprecated gdb_index sections."), _("\
19820 When enabled, deprecated .gdb_index sections are used anyway.\n\
19821 Normally they are ignored either because of a missing feature or\n\
19822 performance issue.\n\
19823 Warning: This option must be enabled before gdb reads the file."),
19824 NULL,
19825 NULL,
19826 &setlist, &showlist);
19827
19828 c = add_cmd ("gdb-index", class_files, save_gdb_index_command,
19829 _("\
19830 Save a gdb-index file.\n\
19831 Usage: save gdb-index DIRECTORY"),
19832 &save_cmdlist);
19833 set_cmd_completer (c, filename_completer);
19834 }