gdb
[deliverable/binutils-gdb.git] / gdb / dwarf2read.c
1 /* DWARF 2 debugging format support for GDB.
2
3 Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 Free Software Foundation, Inc.
6
7 Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
8 Inc. with support from Florida State University (under contract
9 with the Ada Joint Program Office), and Silicon Graphics, Inc.
10 Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
11 based on Fred Fish's (Cygnus Support) implementation of DWARF 1
12 support.
13
14 This file is part of GDB.
15
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 3 of the License, or
19 (at your option) any later version.
20
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
25
26 You should have received a copy of the GNU General Public License
27 along with this program. If not, see <http://www.gnu.org/licenses/>. */
28
29 #include "defs.h"
30 #include "bfd.h"
31 #include "symtab.h"
32 #include "gdbtypes.h"
33 #include "objfiles.h"
34 #include "dwarf2.h"
35 #include "buildsym.h"
36 #include "demangle.h"
37 #include "expression.h"
38 #include "filenames.h" /* for DOSish file names */
39 #include "macrotab.h"
40 #include "language.h"
41 #include "complaints.h"
42 #include "bcache.h"
43 #include "dwarf2expr.h"
44 #include "dwarf2loc.h"
45 #include "cp-support.h"
46 #include "hashtab.h"
47 #include "command.h"
48 #include "gdbcmd.h"
49 #include "block.h"
50 #include "addrmap.h"
51 #include "typeprint.h"
52 #include "jv-lang.h"
53 #include "psympriv.h"
54 #include "exceptions.h"
55 #include "gdb_stat.h"
56 #include "completer.h"
57 #include "vec.h"
58 #include "c-lang.h"
59 #include "valprint.h"
60 #include <ctype.h>
61
62 #include <fcntl.h>
63 #include "gdb_string.h"
64 #include "gdb_assert.h"
65 #include <sys/types.h>
66 #ifdef HAVE_ZLIB_H
67 #include <zlib.h>
68 #endif
69 #ifdef HAVE_MMAP
70 #include <sys/mman.h>
71 #ifndef MAP_FAILED
72 #define MAP_FAILED ((void *) -1)
73 #endif
74 #endif
75
76 typedef struct symbol *symbolp;
77 DEF_VEC_P (symbolp);
78
79 #if 0
80 /* .debug_info header for a compilation unit
81 Because of alignment constraints, this structure has padding and cannot
82 be mapped directly onto the beginning of the .debug_info section. */
83 typedef struct comp_unit_header
84 {
85 unsigned int length; /* length of the .debug_info
86 contribution */
87 unsigned short version; /* version number -- 2 for DWARF
88 version 2 */
89 unsigned int abbrev_offset; /* offset into .debug_abbrev section */
90 unsigned char addr_size; /* byte size of an address -- 4 */
91 }
92 _COMP_UNIT_HEADER;
93 #define _ACTUAL_COMP_UNIT_HEADER_SIZE 11
94 #endif
95
96 /* .debug_line statement program prologue
97 Because of alignment constraints, this structure has padding and cannot
98 be mapped directly onto the beginning of the .debug_info section. */
99 typedef struct statement_prologue
100 {
101 unsigned int total_length; /* byte length of the statement
102 information */
103 unsigned short version; /* version number -- 2 for DWARF
104 version 2 */
105 unsigned int prologue_length; /* # bytes between prologue &
106 stmt program */
107 unsigned char minimum_instruction_length; /* byte size of
108 smallest instr */
109 unsigned char default_is_stmt; /* initial value of is_stmt
110 register */
111 char line_base;
112 unsigned char line_range;
113 unsigned char opcode_base; /* number assigned to first special
114 opcode */
115 unsigned char *standard_opcode_lengths;
116 }
117 _STATEMENT_PROLOGUE;
118
119 /* When non-zero, dump DIEs after they are read in. */
120 static int dwarf2_die_debug = 0;
121
122 /* When non-zero, cross-check physname against demangler. */
123 static int check_physname = 0;
124
125 static int pagesize;
126
127 /* When set, the file that we're processing is known to have debugging
128 info for C++ namespaces. GCC 3.3.x did not produce this information,
129 but later versions do. */
130
131 static int processing_has_namespace_info;
132
133 static const struct objfile_data *dwarf2_objfile_data_key;
134
135 struct dwarf2_section_info
136 {
137 asection *asection;
138 gdb_byte *buffer;
139 bfd_size_type size;
140 /* Not NULL if the section was actually mmapped. */
141 void *map_addr;
142 /* Page aligned size of mmapped area. */
143 bfd_size_type map_len;
144 /* True if we have tried to read this section. */
145 int readin;
146 };
147
148 /* All offsets in the index are of this type. It must be
149 architecture-independent. */
150 typedef uint32_t offset_type;
151
152 DEF_VEC_I (offset_type);
153
154 /* A description of the mapped index. The file format is described in
155 a comment by the code that writes the index. */
156 struct mapped_index
157 {
158 /* Index data format version. */
159 int version;
160
161 /* The total length of the buffer. */
162 off_t total_size;
163
164 /* A pointer to the address table data. */
165 const gdb_byte *address_table;
166
167 /* Size of the address table data in bytes. */
168 offset_type address_table_size;
169
170 /* The symbol table, implemented as a hash table. */
171 const offset_type *symbol_table;
172
173 /* Size in slots, each slot is 2 offset_types. */
174 offset_type symbol_table_slots;
175
176 /* A pointer to the constant pool. */
177 const char *constant_pool;
178 };
179
180 struct dwarf2_per_objfile
181 {
182 struct dwarf2_section_info info;
183 struct dwarf2_section_info abbrev;
184 struct dwarf2_section_info line;
185 struct dwarf2_section_info loc;
186 struct dwarf2_section_info macinfo;
187 struct dwarf2_section_info str;
188 struct dwarf2_section_info ranges;
189 struct dwarf2_section_info types;
190 struct dwarf2_section_info frame;
191 struct dwarf2_section_info eh_frame;
192 struct dwarf2_section_info gdb_index;
193
194 /* Back link. */
195 struct objfile *objfile;
196
197 /* A list of all the compilation units. This is used to locate
198 the target compilation unit of a particular reference. */
199 struct dwarf2_per_cu_data **all_comp_units;
200
201 /* The number of compilation units in ALL_COMP_UNITS. */
202 int n_comp_units;
203
204 /* The number of .debug_types-related CUs. */
205 int n_type_comp_units;
206
207 /* The .debug_types-related CUs. */
208 struct dwarf2_per_cu_data **type_comp_units;
209
210 /* A chain of compilation units that are currently read in, so that
211 they can be freed later. */
212 struct dwarf2_per_cu_data *read_in_chain;
213
214 /* A table mapping .debug_types signatures to its signatured_type entry.
215 This is NULL if the .debug_types section hasn't been read in yet. */
216 htab_t signatured_types;
217
218 /* A flag indicating wether this objfile has a section loaded at a
219 VMA of 0. */
220 int has_section_at_zero;
221
222 /* True if we are using the mapped index,
223 or we are faking it for OBJF_READNOW's sake. */
224 unsigned char using_index;
225
226 /* The mapped index, or NULL if .gdb_index is missing or not being used. */
227 struct mapped_index *index_table;
228
229 /* When using index_table, this keeps track of all quick_file_names entries.
230 TUs can share line table entries with CUs or other TUs, and there can be
231 a lot more TUs than unique line tables, so we maintain a separate table
232 of all line table entries to support the sharing. */
233 htab_t quick_file_names_table;
234
235 /* Set during partial symbol reading, to prevent queueing of full
236 symbols. */
237 int reading_partial_symbols;
238
239 /* Table mapping type .debug_info DIE offsets to types.
240 This is NULL if not allocated yet.
241 It (currently) makes sense to allocate debug_types_type_hash lazily.
242 To keep things simple we allocate both lazily. */
243 htab_t debug_info_type_hash;
244
245 /* Table mapping type .debug_types DIE offsets to types.
246 This is NULL if not allocated yet. */
247 htab_t debug_types_type_hash;
248 };
249
250 static struct dwarf2_per_objfile *dwarf2_per_objfile;
251
252 /* Default names of the debugging sections. */
253
254 /* Note that if the debugging section has been compressed, it might
255 have a name like .zdebug_info. */
256
257 static const struct dwarf2_debug_sections dwarf2_elf_names = {
258 { ".debug_info", ".zdebug_info" },
259 { ".debug_abbrev", ".zdebug_abbrev" },
260 { ".debug_line", ".zdebug_line" },
261 { ".debug_loc", ".zdebug_loc" },
262 { ".debug_macinfo", ".zdebug_macinfo" },
263 { ".debug_str", ".zdebug_str" },
264 { ".debug_ranges", ".zdebug_ranges" },
265 { ".debug_types", ".zdebug_types" },
266 { ".debug_frame", ".zdebug_frame" },
267 { ".eh_frame", NULL },
268 { ".gdb_index", ".zgdb_index" }
269 };
270
271 /* local data types */
272
273 /* We hold several abbreviation tables in memory at the same time. */
274 #ifndef ABBREV_HASH_SIZE
275 #define ABBREV_HASH_SIZE 121
276 #endif
277
278 /* The data in a compilation unit header, after target2host
279 translation, looks like this. */
280 struct comp_unit_head
281 {
282 unsigned int length;
283 short version;
284 unsigned char addr_size;
285 unsigned char signed_addr_p;
286 unsigned int abbrev_offset;
287
288 /* Size of file offsets; either 4 or 8. */
289 unsigned int offset_size;
290
291 /* Size of the length field; either 4 or 12. */
292 unsigned int initial_length_size;
293
294 /* Offset to the first byte of this compilation unit header in the
295 .debug_info section, for resolving relative reference dies. */
296 unsigned int offset;
297
298 /* Offset to first die in this cu from the start of the cu.
299 This will be the first byte following the compilation unit header. */
300 unsigned int first_die_offset;
301 };
302
303 /* Type used for delaying computation of method physnames.
304 See comments for compute_delayed_physnames. */
305 struct delayed_method_info
306 {
307 /* The type to which the method is attached, i.e., its parent class. */
308 struct type *type;
309
310 /* The index of the method in the type's function fieldlists. */
311 int fnfield_index;
312
313 /* The index of the method in the fieldlist. */
314 int index;
315
316 /* The name of the DIE. */
317 const char *name;
318
319 /* The DIE associated with this method. */
320 struct die_info *die;
321 };
322
323 typedef struct delayed_method_info delayed_method_info;
324 DEF_VEC_O (delayed_method_info);
325
326 /* Internal state when decoding a particular compilation unit. */
327 struct dwarf2_cu
328 {
329 /* The objfile containing this compilation unit. */
330 struct objfile *objfile;
331
332 /* The header of the compilation unit. */
333 struct comp_unit_head header;
334
335 /* Base address of this compilation unit. */
336 CORE_ADDR base_address;
337
338 /* Non-zero if base_address has been set. */
339 int base_known;
340
341 struct function_range *first_fn, *last_fn, *cached_fn;
342
343 /* The language we are debugging. */
344 enum language language;
345 const struct language_defn *language_defn;
346
347 const char *producer;
348
349 /* The generic symbol table building routines have separate lists for
350 file scope symbols and all all other scopes (local scopes). So
351 we need to select the right one to pass to add_symbol_to_list().
352 We do it by keeping a pointer to the correct list in list_in_scope.
353
354 FIXME: The original dwarf code just treated the file scope as the
355 first local scope, and all other local scopes as nested local
356 scopes, and worked fine. Check to see if we really need to
357 distinguish these in buildsym.c. */
358 struct pending **list_in_scope;
359
360 /* DWARF abbreviation table associated with this compilation unit. */
361 struct abbrev_info **dwarf2_abbrevs;
362
363 /* Storage for the abbrev table. */
364 struct obstack abbrev_obstack;
365
366 /* Hash table holding all the loaded partial DIEs. */
367 htab_t partial_dies;
368
369 /* Storage for things with the same lifetime as this read-in compilation
370 unit, including partial DIEs. */
371 struct obstack comp_unit_obstack;
372
373 /* When multiple dwarf2_cu structures are living in memory, this field
374 chains them all together, so that they can be released efficiently.
375 We will probably also want a generation counter so that most-recently-used
376 compilation units are cached... */
377 struct dwarf2_per_cu_data *read_in_chain;
378
379 /* Backchain to our per_cu entry if the tree has been built. */
380 struct dwarf2_per_cu_data *per_cu;
381
382 /* How many compilation units ago was this CU last referenced? */
383 int last_used;
384
385 /* A hash table of die offsets for following references. */
386 htab_t die_hash;
387
388 /* Full DIEs if read in. */
389 struct die_info *dies;
390
391 /* A set of pointers to dwarf2_per_cu_data objects for compilation
392 units referenced by this one. Only set during full symbol processing;
393 partial symbol tables do not have dependencies. */
394 htab_t dependencies;
395
396 /* Header data from the line table, during full symbol processing. */
397 struct line_header *line_header;
398
399 /* A list of methods which need to have physnames computed
400 after all type information has been read. */
401 VEC (delayed_method_info) *method_list;
402
403 /* Mark used when releasing cached dies. */
404 unsigned int mark : 1;
405
406 /* This flag will be set if this compilation unit might include
407 inter-compilation-unit references. */
408 unsigned int has_form_ref_addr : 1;
409
410 /* This flag will be set if this compilation unit includes any
411 DW_TAG_namespace DIEs. If we know that there are explicit
412 DIEs for namespaces, we don't need to try to infer them
413 from mangled names. */
414 unsigned int has_namespace_info : 1;
415
416 /* This CU references .debug_loc. See the symtab->locations_valid field.
417 This test is imperfect as there may exist optimized debug code not using
418 any location list and still facing inlining issues if handled as
419 unoptimized code. For a future better test see GCC PR other/32998. */
420
421 unsigned int has_loclist : 1;
422 };
423
424 /* Persistent data held for a compilation unit, even when not
425 processing it. We put a pointer to this structure in the
426 read_symtab_private field of the psymtab. If we encounter
427 inter-compilation-unit references, we also maintain a sorted
428 list of all compilation units. */
429
430 struct dwarf2_per_cu_data
431 {
432 /* The start offset and length of this compilation unit. 2**29-1
433 bytes should suffice to store the length of any compilation unit
434 - if it doesn't, GDB will fall over anyway.
435 NOTE: Unlike comp_unit_head.length, this length includes
436 initial_length_size. */
437 unsigned int offset;
438 unsigned int length : 29;
439
440 /* Flag indicating this compilation unit will be read in before
441 any of the current compilation units are processed. */
442 unsigned int queued : 1;
443
444 /* This flag will be set if we need to load absolutely all DIEs
445 for this compilation unit, instead of just the ones we think
446 are interesting. It gets set if we look for a DIE in the
447 hash table and don't find it. */
448 unsigned int load_all_dies : 1;
449
450 /* Non-zero if this CU is from .debug_types.
451 Otherwise it's from .debug_info. */
452 unsigned int from_debug_types : 1;
453
454 /* Set to non-NULL iff this CU is currently loaded. When it gets freed out
455 of the CU cache it gets reset to NULL again. */
456 struct dwarf2_cu *cu;
457
458 /* The corresponding objfile. */
459 struct objfile *objfile;
460
461 /* When using partial symbol tables, the 'psymtab' field is active.
462 Otherwise the 'quick' field is active. */
463 union
464 {
465 /* The partial symbol table associated with this compilation unit,
466 or NULL for partial units (which do not have an associated
467 symtab). */
468 struct partial_symtab *psymtab;
469
470 /* Data needed by the "quick" functions. */
471 struct dwarf2_per_cu_quick_data *quick;
472 } v;
473 };
474
475 /* Entry in the signatured_types hash table. */
476
477 struct signatured_type
478 {
479 ULONGEST signature;
480
481 /* Offset in .debug_types of the type defined by this TU. */
482 unsigned int type_offset;
483
484 /* The CU(/TU) of this type. */
485 struct dwarf2_per_cu_data per_cu;
486 };
487
488 /* Struct used to pass misc. parameters to read_die_and_children, et
489 al. which are used for both .debug_info and .debug_types dies.
490 All parameters here are unchanging for the life of the call. This
491 struct exists to abstract away the constant parameters of die
492 reading. */
493
494 struct die_reader_specs
495 {
496 /* The bfd of this objfile. */
497 bfd* abfd;
498
499 /* The CU of the DIE we are parsing. */
500 struct dwarf2_cu *cu;
501
502 /* Pointer to start of section buffer.
503 This is either the start of .debug_info or .debug_types. */
504 const gdb_byte *buffer;
505 };
506
507 /* The line number information for a compilation unit (found in the
508 .debug_line section) begins with a "statement program header",
509 which contains the following information. */
510 struct line_header
511 {
512 unsigned int total_length;
513 unsigned short version;
514 unsigned int header_length;
515 unsigned char minimum_instruction_length;
516 unsigned char maximum_ops_per_instruction;
517 unsigned char default_is_stmt;
518 int line_base;
519 unsigned char line_range;
520 unsigned char opcode_base;
521
522 /* standard_opcode_lengths[i] is the number of operands for the
523 standard opcode whose value is i. This means that
524 standard_opcode_lengths[0] is unused, and the last meaningful
525 element is standard_opcode_lengths[opcode_base - 1]. */
526 unsigned char *standard_opcode_lengths;
527
528 /* The include_directories table. NOTE! These strings are not
529 allocated with xmalloc; instead, they are pointers into
530 debug_line_buffer. If you try to free them, `free' will get
531 indigestion. */
532 unsigned int num_include_dirs, include_dirs_size;
533 char **include_dirs;
534
535 /* The file_names table. NOTE! These strings are not allocated
536 with xmalloc; instead, they are pointers into debug_line_buffer.
537 Don't try to free them directly. */
538 unsigned int num_file_names, file_names_size;
539 struct file_entry
540 {
541 char *name;
542 unsigned int dir_index;
543 unsigned int mod_time;
544 unsigned int length;
545 int included_p; /* Non-zero if referenced by the Line Number Program. */
546 struct symtab *symtab; /* The associated symbol table, if any. */
547 } *file_names;
548
549 /* The start and end of the statement program following this
550 header. These point into dwarf2_per_objfile->line_buffer. */
551 gdb_byte *statement_program_start, *statement_program_end;
552 };
553
554 /* When we construct a partial symbol table entry we only
555 need this much information. */
556 struct partial_die_info
557 {
558 /* Offset of this DIE. */
559 unsigned int offset;
560
561 /* DWARF-2 tag for this DIE. */
562 ENUM_BITFIELD(dwarf_tag) tag : 16;
563
564 /* Assorted flags describing the data found in this DIE. */
565 unsigned int has_children : 1;
566 unsigned int is_external : 1;
567 unsigned int is_declaration : 1;
568 unsigned int has_type : 1;
569 unsigned int has_specification : 1;
570 unsigned int has_pc_info : 1;
571
572 /* Flag set if the SCOPE field of this structure has been
573 computed. */
574 unsigned int scope_set : 1;
575
576 /* Flag set if the DIE has a byte_size attribute. */
577 unsigned int has_byte_size : 1;
578
579 /* Flag set if any of the DIE's children are template arguments. */
580 unsigned int has_template_arguments : 1;
581
582 /* Flag set if fixup_partial_die has been called on this die. */
583 unsigned int fixup_called : 1;
584
585 /* The name of this DIE. Normally the value of DW_AT_name, but
586 sometimes a default name for unnamed DIEs. */
587 char *name;
588
589 /* The linkage name, if present. */
590 const char *linkage_name;
591
592 /* The scope to prepend to our children. This is generally
593 allocated on the comp_unit_obstack, so will disappear
594 when this compilation unit leaves the cache. */
595 char *scope;
596
597 /* The location description associated with this DIE, if any. */
598 struct dwarf_block *locdesc;
599
600 /* If HAS_PC_INFO, the PC range associated with this DIE. */
601 CORE_ADDR lowpc;
602 CORE_ADDR highpc;
603
604 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
605 DW_AT_sibling, if any. */
606 /* NOTE: This member isn't strictly necessary, read_partial_die could
607 return DW_AT_sibling values to its caller load_partial_dies. */
608 gdb_byte *sibling;
609
610 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
611 DW_AT_specification (or DW_AT_abstract_origin or
612 DW_AT_extension). */
613 unsigned int spec_offset;
614
615 /* Pointers to this DIE's parent, first child, and next sibling,
616 if any. */
617 struct partial_die_info *die_parent, *die_child, *die_sibling;
618 };
619
620 /* This data structure holds the information of an abbrev. */
621 struct abbrev_info
622 {
623 unsigned int number; /* number identifying abbrev */
624 enum dwarf_tag tag; /* dwarf tag */
625 unsigned short has_children; /* boolean */
626 unsigned short num_attrs; /* number of attributes */
627 struct attr_abbrev *attrs; /* an array of attribute descriptions */
628 struct abbrev_info *next; /* next in chain */
629 };
630
631 struct attr_abbrev
632 {
633 ENUM_BITFIELD(dwarf_attribute) name : 16;
634 ENUM_BITFIELD(dwarf_form) form : 16;
635 };
636
637 /* Attributes have a name and a value. */
638 struct attribute
639 {
640 ENUM_BITFIELD(dwarf_attribute) name : 16;
641 ENUM_BITFIELD(dwarf_form) form : 15;
642
643 /* Has DW_STRING already been updated by dwarf2_canonicalize_name? This
644 field should be in u.str (existing only for DW_STRING) but it is kept
645 here for better struct attribute alignment. */
646 unsigned int string_is_canonical : 1;
647
648 union
649 {
650 char *str;
651 struct dwarf_block *blk;
652 ULONGEST unsnd;
653 LONGEST snd;
654 CORE_ADDR addr;
655 struct signatured_type *signatured_type;
656 }
657 u;
658 };
659
660 /* This data structure holds a complete die structure. */
661 struct die_info
662 {
663 /* DWARF-2 tag for this DIE. */
664 ENUM_BITFIELD(dwarf_tag) tag : 16;
665
666 /* Number of attributes */
667 unsigned char num_attrs;
668
669 /* True if we're presently building the full type name for the
670 type derived from this DIE. */
671 unsigned char building_fullname : 1;
672
673 /* Abbrev number */
674 unsigned int abbrev;
675
676 /* Offset in .debug_info or .debug_types section. */
677 unsigned int offset;
678
679 /* The dies in a compilation unit form an n-ary tree. PARENT
680 points to this die's parent; CHILD points to the first child of
681 this node; and all the children of a given node are chained
682 together via their SIBLING fields. */
683 struct die_info *child; /* Its first child, if any. */
684 struct die_info *sibling; /* Its next sibling, if any. */
685 struct die_info *parent; /* Its parent, if any. */
686
687 /* An array of attributes, with NUM_ATTRS elements. There may be
688 zero, but it's not common and zero-sized arrays are not
689 sufficiently portable C. */
690 struct attribute attrs[1];
691 };
692
693 struct function_range
694 {
695 const char *name;
696 CORE_ADDR lowpc, highpc;
697 int seen_line;
698 struct function_range *next;
699 };
700
701 /* Get at parts of an attribute structure. */
702
703 #define DW_STRING(attr) ((attr)->u.str)
704 #define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
705 #define DW_UNSND(attr) ((attr)->u.unsnd)
706 #define DW_BLOCK(attr) ((attr)->u.blk)
707 #define DW_SND(attr) ((attr)->u.snd)
708 #define DW_ADDR(attr) ((attr)->u.addr)
709 #define DW_SIGNATURED_TYPE(attr) ((attr)->u.signatured_type)
710
711 /* Blocks are a bunch of untyped bytes. */
712 struct dwarf_block
713 {
714 unsigned int size;
715 gdb_byte *data;
716 };
717
718 #ifndef ATTR_ALLOC_CHUNK
719 #define ATTR_ALLOC_CHUNK 4
720 #endif
721
722 /* Allocate fields for structs, unions and enums in this size. */
723 #ifndef DW_FIELD_ALLOC_CHUNK
724 #define DW_FIELD_ALLOC_CHUNK 4
725 #endif
726
727 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
728 but this would require a corresponding change in unpack_field_as_long
729 and friends. */
730 static int bits_per_byte = 8;
731
732 /* The routines that read and process dies for a C struct or C++ class
733 pass lists of data member fields and lists of member function fields
734 in an instance of a field_info structure, as defined below. */
735 struct field_info
736 {
737 /* List of data member and baseclasses fields. */
738 struct nextfield
739 {
740 struct nextfield *next;
741 int accessibility;
742 int virtuality;
743 struct field field;
744 }
745 *fields, *baseclasses;
746
747 /* Number of fields (including baseclasses). */
748 int nfields;
749
750 /* Number of baseclasses. */
751 int nbaseclasses;
752
753 /* Set if the accesibility of one of the fields is not public. */
754 int non_public_fields;
755
756 /* Member function fields array, entries are allocated in the order they
757 are encountered in the object file. */
758 struct nextfnfield
759 {
760 struct nextfnfield *next;
761 struct fn_field fnfield;
762 }
763 *fnfields;
764
765 /* Member function fieldlist array, contains name of possibly overloaded
766 member function, number of overloaded member functions and a pointer
767 to the head of the member function field chain. */
768 struct fnfieldlist
769 {
770 char *name;
771 int length;
772 struct nextfnfield *head;
773 }
774 *fnfieldlists;
775
776 /* Number of entries in the fnfieldlists array. */
777 int nfnfields;
778
779 /* typedefs defined inside this class. TYPEDEF_FIELD_LIST contains head of
780 a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements. */
781 struct typedef_field_list
782 {
783 struct typedef_field field;
784 struct typedef_field_list *next;
785 }
786 *typedef_field_list;
787 unsigned typedef_field_list_count;
788 };
789
790 /* One item on the queue of compilation units to read in full symbols
791 for. */
792 struct dwarf2_queue_item
793 {
794 struct dwarf2_per_cu_data *per_cu;
795 struct dwarf2_queue_item *next;
796 };
797
798 /* The current queue. */
799 static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
800
801 /* Loaded secondary compilation units are kept in memory until they
802 have not been referenced for the processing of this many
803 compilation units. Set this to zero to disable caching. Cache
804 sizes of up to at least twenty will improve startup time for
805 typical inter-CU-reference binaries, at an obvious memory cost. */
806 static int dwarf2_max_cache_age = 5;
807 static void
808 show_dwarf2_max_cache_age (struct ui_file *file, int from_tty,
809 struct cmd_list_element *c, const char *value)
810 {
811 fprintf_filtered (file, _("The upper bound on the age of cached "
812 "dwarf2 compilation units is %s.\n"),
813 value);
814 }
815
816
817 /* Various complaints about symbol reading that don't abort the process. */
818
819 static void
820 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
821 {
822 complaint (&symfile_complaints,
823 _("statement list doesn't fit in .debug_line section"));
824 }
825
826 static void
827 dwarf2_debug_line_missing_file_complaint (void)
828 {
829 complaint (&symfile_complaints,
830 _(".debug_line section has line data without a file"));
831 }
832
833 static void
834 dwarf2_debug_line_missing_end_sequence_complaint (void)
835 {
836 complaint (&symfile_complaints,
837 _(".debug_line section has line "
838 "program sequence without an end"));
839 }
840
841 static void
842 dwarf2_complex_location_expr_complaint (void)
843 {
844 complaint (&symfile_complaints, _("location expression too complex"));
845 }
846
847 static void
848 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
849 int arg3)
850 {
851 complaint (&symfile_complaints,
852 _("const value length mismatch for '%s', got %d, expected %d"),
853 arg1, arg2, arg3);
854 }
855
856 static void
857 dwarf2_macros_too_long_complaint (void)
858 {
859 complaint (&symfile_complaints,
860 _("macro info runs off end of `.debug_macinfo' section"));
861 }
862
863 static void
864 dwarf2_macro_malformed_definition_complaint (const char *arg1)
865 {
866 complaint (&symfile_complaints,
867 _("macro debug info contains a "
868 "malformed macro definition:\n`%s'"),
869 arg1);
870 }
871
872 static void
873 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
874 {
875 complaint (&symfile_complaints,
876 _("invalid attribute class or form for '%s' in '%s'"),
877 arg1, arg2);
878 }
879
880 /* local function prototypes */
881
882 static void dwarf2_locate_sections (bfd *, asection *, void *);
883
884 static void dwarf2_create_include_psymtab (char *, struct partial_symtab *,
885 struct objfile *);
886
887 static void dwarf2_build_psymtabs_hard (struct objfile *);
888
889 static void scan_partial_symbols (struct partial_die_info *,
890 CORE_ADDR *, CORE_ADDR *,
891 int, struct dwarf2_cu *);
892
893 static void add_partial_symbol (struct partial_die_info *,
894 struct dwarf2_cu *);
895
896 static void add_partial_namespace (struct partial_die_info *pdi,
897 CORE_ADDR *lowpc, CORE_ADDR *highpc,
898 int need_pc, struct dwarf2_cu *cu);
899
900 static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
901 CORE_ADDR *highpc, int need_pc,
902 struct dwarf2_cu *cu);
903
904 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
905 struct dwarf2_cu *cu);
906
907 static void add_partial_subprogram (struct partial_die_info *pdi,
908 CORE_ADDR *lowpc, CORE_ADDR *highpc,
909 int need_pc, struct dwarf2_cu *cu);
910
911 static gdb_byte *locate_pdi_sibling (struct partial_die_info *orig_pdi,
912 gdb_byte *buffer, gdb_byte *info_ptr,
913 bfd *abfd, struct dwarf2_cu *cu);
914
915 static void dwarf2_psymtab_to_symtab (struct partial_symtab *);
916
917 static void psymtab_to_symtab_1 (struct partial_symtab *);
918
919 static void dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu);
920
921 static void dwarf2_free_abbrev_table (void *);
922
923 static struct abbrev_info *peek_die_abbrev (gdb_byte *, unsigned int *,
924 struct dwarf2_cu *);
925
926 static struct abbrev_info *dwarf2_lookup_abbrev (unsigned int,
927 struct dwarf2_cu *);
928
929 static struct partial_die_info *load_partial_dies (bfd *,
930 gdb_byte *, gdb_byte *,
931 int, struct dwarf2_cu *);
932
933 static gdb_byte *read_partial_die (struct partial_die_info *,
934 struct abbrev_info *abbrev,
935 unsigned int, bfd *,
936 gdb_byte *, gdb_byte *,
937 struct dwarf2_cu *);
938
939 static struct partial_die_info *find_partial_die (unsigned int,
940 struct dwarf2_cu *);
941
942 static void fixup_partial_die (struct partial_die_info *,
943 struct dwarf2_cu *);
944
945 static gdb_byte *read_attribute (struct attribute *, struct attr_abbrev *,
946 bfd *, gdb_byte *, struct dwarf2_cu *);
947
948 static gdb_byte *read_attribute_value (struct attribute *, unsigned,
949 bfd *, gdb_byte *, struct dwarf2_cu *);
950
951 static unsigned int read_1_byte (bfd *, gdb_byte *);
952
953 static int read_1_signed_byte (bfd *, gdb_byte *);
954
955 static unsigned int read_2_bytes (bfd *, gdb_byte *);
956
957 static unsigned int read_4_bytes (bfd *, gdb_byte *);
958
959 static ULONGEST read_8_bytes (bfd *, gdb_byte *);
960
961 static CORE_ADDR read_address (bfd *, gdb_byte *ptr, struct dwarf2_cu *,
962 unsigned int *);
963
964 static LONGEST read_initial_length (bfd *, gdb_byte *, unsigned int *);
965
966 static LONGEST read_checked_initial_length_and_offset
967 (bfd *, gdb_byte *, const struct comp_unit_head *,
968 unsigned int *, unsigned int *);
969
970 static LONGEST read_offset (bfd *, gdb_byte *, const struct comp_unit_head *,
971 unsigned int *);
972
973 static LONGEST read_offset_1 (bfd *, gdb_byte *, unsigned int);
974
975 static gdb_byte *read_n_bytes (bfd *, gdb_byte *, unsigned int);
976
977 static char *read_direct_string (bfd *, gdb_byte *, unsigned int *);
978
979 static char *read_indirect_string (bfd *, gdb_byte *,
980 const struct comp_unit_head *,
981 unsigned int *);
982
983 static unsigned long read_unsigned_leb128 (bfd *, gdb_byte *, unsigned int *);
984
985 static long read_signed_leb128 (bfd *, gdb_byte *, unsigned int *);
986
987 static gdb_byte *skip_leb128 (bfd *, gdb_byte *);
988
989 static void set_cu_language (unsigned int, struct dwarf2_cu *);
990
991 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
992 struct dwarf2_cu *);
993
994 static struct attribute *dwarf2_attr_no_follow (struct die_info *,
995 unsigned int,
996 struct dwarf2_cu *);
997
998 static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
999 struct dwarf2_cu *cu);
1000
1001 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
1002
1003 static struct die_info *die_specification (struct die_info *die,
1004 struct dwarf2_cu **);
1005
1006 static void free_line_header (struct line_header *lh);
1007
1008 static void add_file_name (struct line_header *, char *, unsigned int,
1009 unsigned int, unsigned int);
1010
1011 static struct line_header *(dwarf_decode_line_header
1012 (unsigned int offset,
1013 bfd *abfd, struct dwarf2_cu *cu));
1014
1015 static void dwarf_decode_lines (struct line_header *, const char *, bfd *,
1016 struct dwarf2_cu *, struct partial_symtab *);
1017
1018 static void dwarf2_start_subfile (char *, const char *, const char *);
1019
1020 static struct symbol *new_symbol (struct die_info *, struct type *,
1021 struct dwarf2_cu *);
1022
1023 static struct symbol *new_symbol_full (struct die_info *, struct type *,
1024 struct dwarf2_cu *, struct symbol *);
1025
1026 static void dwarf2_const_value (struct attribute *, struct symbol *,
1027 struct dwarf2_cu *);
1028
1029 static void dwarf2_const_value_attr (struct attribute *attr,
1030 struct type *type,
1031 const char *name,
1032 struct obstack *obstack,
1033 struct dwarf2_cu *cu, long *value,
1034 gdb_byte **bytes,
1035 struct dwarf2_locexpr_baton **baton);
1036
1037 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
1038
1039 static int need_gnat_info (struct dwarf2_cu *);
1040
1041 static struct type *die_descriptive_type (struct die_info *,
1042 struct dwarf2_cu *);
1043
1044 static void set_descriptive_type (struct type *, struct die_info *,
1045 struct dwarf2_cu *);
1046
1047 static struct type *die_containing_type (struct die_info *,
1048 struct dwarf2_cu *);
1049
1050 static struct type *lookup_die_type (struct die_info *, struct attribute *,
1051 struct dwarf2_cu *);
1052
1053 static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
1054
1055 static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1056
1057 static char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
1058
1059 static char *typename_concat (struct obstack *obs, const char *prefix,
1060 const char *suffix, int physname,
1061 struct dwarf2_cu *cu);
1062
1063 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
1064
1065 static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1066
1067 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
1068
1069 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
1070
1071 static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1072 struct dwarf2_cu *, struct partial_symtab *);
1073
1074 static int dwarf2_get_pc_bounds (struct die_info *,
1075 CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *,
1076 struct partial_symtab *);
1077
1078 static void get_scope_pc_bounds (struct die_info *,
1079 CORE_ADDR *, CORE_ADDR *,
1080 struct dwarf2_cu *);
1081
1082 static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1083 CORE_ADDR, struct dwarf2_cu *);
1084
1085 static void dwarf2_add_field (struct field_info *, struct die_info *,
1086 struct dwarf2_cu *);
1087
1088 static void dwarf2_attach_fields_to_type (struct field_info *,
1089 struct type *, struct dwarf2_cu *);
1090
1091 static void dwarf2_add_member_fn (struct field_info *,
1092 struct die_info *, struct type *,
1093 struct dwarf2_cu *);
1094
1095 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
1096 struct type *,
1097 struct dwarf2_cu *);
1098
1099 static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
1100
1101 static void read_common_block (struct die_info *, struct dwarf2_cu *);
1102
1103 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
1104
1105 static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1106
1107 static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1108
1109 static struct type *read_module_type (struct die_info *die,
1110 struct dwarf2_cu *cu);
1111
1112 static const char *namespace_name (struct die_info *die,
1113 int *is_anonymous, struct dwarf2_cu *);
1114
1115 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
1116
1117 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
1118
1119 static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
1120 struct dwarf2_cu *);
1121
1122 static struct die_info *read_comp_unit (gdb_byte *, struct dwarf2_cu *);
1123
1124 static struct die_info *read_die_and_children_1 (const struct die_reader_specs *reader,
1125 gdb_byte *info_ptr,
1126 gdb_byte **new_info_ptr,
1127 struct die_info *parent);
1128
1129 static struct die_info *read_die_and_children (const struct die_reader_specs *reader,
1130 gdb_byte *info_ptr,
1131 gdb_byte **new_info_ptr,
1132 struct die_info *parent);
1133
1134 static struct die_info *read_die_and_siblings (const struct die_reader_specs *reader,
1135 gdb_byte *info_ptr,
1136 gdb_byte **new_info_ptr,
1137 struct die_info *parent);
1138
1139 static gdb_byte *read_full_die (const struct die_reader_specs *reader,
1140 struct die_info **, gdb_byte *,
1141 int *);
1142
1143 static void process_die (struct die_info *, struct dwarf2_cu *);
1144
1145 static char *dwarf2_canonicalize_name (char *, struct dwarf2_cu *,
1146 struct obstack *);
1147
1148 static char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
1149
1150 static const char *dwarf2_full_name (char *name,
1151 struct die_info *die,
1152 struct dwarf2_cu *cu);
1153
1154 static struct die_info *dwarf2_extension (struct die_info *die,
1155 struct dwarf2_cu **);
1156
1157 static char *dwarf_tag_name (unsigned int);
1158
1159 static char *dwarf_attr_name (unsigned int);
1160
1161 static char *dwarf_form_name (unsigned int);
1162
1163 static char *dwarf_bool_name (unsigned int);
1164
1165 static char *dwarf_type_encoding_name (unsigned int);
1166
1167 #if 0
1168 static char *dwarf_cfi_name (unsigned int);
1169 #endif
1170
1171 static struct die_info *sibling_die (struct die_info *);
1172
1173 static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1174
1175 static void dump_die_for_error (struct die_info *);
1176
1177 static void dump_die_1 (struct ui_file *, int level, int max_level,
1178 struct die_info *);
1179
1180 /*static*/ void dump_die (struct die_info *, int max_level);
1181
1182 static void store_in_ref_table (struct die_info *,
1183 struct dwarf2_cu *);
1184
1185 static int is_ref_attr (struct attribute *);
1186
1187 static unsigned int dwarf2_get_ref_die_offset (struct attribute *);
1188
1189 static LONGEST dwarf2_get_attr_constant_value (struct attribute *, int);
1190
1191 static struct die_info *follow_die_ref_or_sig (struct die_info *,
1192 struct attribute *,
1193 struct dwarf2_cu **);
1194
1195 static struct die_info *follow_die_ref (struct die_info *,
1196 struct attribute *,
1197 struct dwarf2_cu **);
1198
1199 static struct die_info *follow_die_sig (struct die_info *,
1200 struct attribute *,
1201 struct dwarf2_cu **);
1202
1203 static void read_signatured_type_at_offset (struct objfile *objfile,
1204 unsigned int offset);
1205
1206 static void read_signatured_type (struct objfile *,
1207 struct signatured_type *type_sig);
1208
1209 /* memory allocation interface */
1210
1211 static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
1212
1213 static struct abbrev_info *dwarf_alloc_abbrev (struct dwarf2_cu *);
1214
1215 static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
1216
1217 static void initialize_cu_func_list (struct dwarf2_cu *);
1218
1219 static void add_to_cu_func_list (const char *, CORE_ADDR, CORE_ADDR,
1220 struct dwarf2_cu *);
1221
1222 static void dwarf_decode_macros (struct line_header *, unsigned int,
1223 char *, bfd *, struct dwarf2_cu *);
1224
1225 static int attr_form_is_block (struct attribute *);
1226
1227 static int attr_form_is_section_offset (struct attribute *);
1228
1229 static int attr_form_is_constant (struct attribute *);
1230
1231 static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1232 struct dwarf2_loclist_baton *baton,
1233 struct attribute *attr);
1234
1235 static void dwarf2_symbol_mark_computed (struct attribute *attr,
1236 struct symbol *sym,
1237 struct dwarf2_cu *cu);
1238
1239 static gdb_byte *skip_one_die (gdb_byte *buffer, gdb_byte *info_ptr,
1240 struct abbrev_info *abbrev,
1241 struct dwarf2_cu *cu);
1242
1243 static void free_stack_comp_unit (void *);
1244
1245 static hashval_t partial_die_hash (const void *item);
1246
1247 static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1248
1249 static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1250 (unsigned int offset, struct objfile *objfile);
1251
1252 static struct dwarf2_per_cu_data *dwarf2_find_comp_unit
1253 (unsigned int offset, struct objfile *objfile);
1254
1255 static void init_one_comp_unit (struct dwarf2_cu *cu,
1256 struct objfile *objfile);
1257
1258 static void prepare_one_comp_unit (struct dwarf2_cu *cu,
1259 struct die_info *comp_unit_die);
1260
1261 static void free_one_comp_unit (void *);
1262
1263 static void free_cached_comp_units (void *);
1264
1265 static void age_cached_comp_units (void);
1266
1267 static void free_one_cached_comp_unit (void *);
1268
1269 static struct type *set_die_type (struct die_info *, struct type *,
1270 struct dwarf2_cu *);
1271
1272 static void create_all_comp_units (struct objfile *);
1273
1274 static int create_debug_types_hash_table (struct objfile *objfile);
1275
1276 static void load_full_comp_unit (struct dwarf2_per_cu_data *,
1277 struct objfile *);
1278
1279 static void process_full_comp_unit (struct dwarf2_per_cu_data *);
1280
1281 static void dwarf2_add_dependence (struct dwarf2_cu *,
1282 struct dwarf2_per_cu_data *);
1283
1284 static void dwarf2_mark (struct dwarf2_cu *);
1285
1286 static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1287
1288 static struct type *get_die_type_at_offset (unsigned int,
1289 struct dwarf2_per_cu_data *per_cu);
1290
1291 static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
1292
1293 static void dwarf2_release_queue (void *dummy);
1294
1295 static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1296 struct objfile *objfile);
1297
1298 static void process_queue (struct objfile *objfile);
1299
1300 static void find_file_and_directory (struct die_info *die,
1301 struct dwarf2_cu *cu,
1302 char **name, char **comp_dir);
1303
1304 static char *file_full_name (int file, struct line_header *lh,
1305 const char *comp_dir);
1306
1307 static gdb_byte *partial_read_comp_unit_head (struct comp_unit_head *header,
1308 gdb_byte *info_ptr,
1309 gdb_byte *buffer,
1310 unsigned int buffer_size,
1311 bfd *abfd);
1312
1313 static void init_cu_die_reader (struct die_reader_specs *reader,
1314 struct dwarf2_cu *cu);
1315
1316 static htab_t allocate_signatured_type_table (struct objfile *objfile);
1317
1318 #if WORDS_BIGENDIAN
1319
1320 /* Convert VALUE between big- and little-endian. */
1321 static offset_type
1322 byte_swap (offset_type value)
1323 {
1324 offset_type result;
1325
1326 result = (value & 0xff) << 24;
1327 result |= (value & 0xff00) << 8;
1328 result |= (value & 0xff0000) >> 8;
1329 result |= (value & 0xff000000) >> 24;
1330 return result;
1331 }
1332
1333 #define MAYBE_SWAP(V) byte_swap (V)
1334
1335 #else
1336 #define MAYBE_SWAP(V) (V)
1337 #endif /* WORDS_BIGENDIAN */
1338
1339 /* The suffix for an index file. */
1340 #define INDEX_SUFFIX ".gdb-index"
1341
1342 static const char *dwarf2_physname (char *name, struct die_info *die,
1343 struct dwarf2_cu *cu);
1344
1345 /* Try to locate the sections we need for DWARF 2 debugging
1346 information and return true if we have enough to do something.
1347 NAMES points to the dwarf2 section names, or is NULL if the standard
1348 ELF names are used. */
1349
1350 int
1351 dwarf2_has_info (struct objfile *objfile,
1352 const struct dwarf2_debug_sections *names)
1353 {
1354 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
1355 if (!dwarf2_per_objfile)
1356 {
1357 /* Initialize per-objfile state. */
1358 struct dwarf2_per_objfile *data
1359 = obstack_alloc (&objfile->objfile_obstack, sizeof (*data));
1360
1361 memset (data, 0, sizeof (*data));
1362 set_objfile_data (objfile, dwarf2_objfile_data_key, data);
1363 dwarf2_per_objfile = data;
1364
1365 bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections,
1366 (void *) names);
1367 dwarf2_per_objfile->objfile = objfile;
1368 }
1369 return (dwarf2_per_objfile->info.asection != NULL
1370 && dwarf2_per_objfile->abbrev.asection != NULL);
1371 }
1372
1373 /* When loading sections, we look either for uncompressed section or for
1374 compressed section names. */
1375
1376 static int
1377 section_is_p (const char *section_name,
1378 const struct dwarf2_section_names *names)
1379 {
1380 if (names->normal != NULL
1381 && strcmp (section_name, names->normal) == 0)
1382 return 1;
1383 if (names->compressed != NULL
1384 && strcmp (section_name, names->compressed) == 0)
1385 return 1;
1386 return 0;
1387 }
1388
1389 /* This function is mapped across the sections and remembers the
1390 offset and size of each of the debugging sections we are interested
1391 in. */
1392
1393 static void
1394 dwarf2_locate_sections (bfd *abfd, asection *sectp, void *vnames)
1395 {
1396 const struct dwarf2_debug_sections *names;
1397
1398 if (vnames == NULL)
1399 names = &dwarf2_elf_names;
1400 else
1401 names = (const struct dwarf2_debug_sections *) vnames;
1402
1403 if (section_is_p (sectp->name, &names->info))
1404 {
1405 dwarf2_per_objfile->info.asection = sectp;
1406 dwarf2_per_objfile->info.size = bfd_get_section_size (sectp);
1407 }
1408 else if (section_is_p (sectp->name, &names->abbrev))
1409 {
1410 dwarf2_per_objfile->abbrev.asection = sectp;
1411 dwarf2_per_objfile->abbrev.size = bfd_get_section_size (sectp);
1412 }
1413 else if (section_is_p (sectp->name, &names->line))
1414 {
1415 dwarf2_per_objfile->line.asection = sectp;
1416 dwarf2_per_objfile->line.size = bfd_get_section_size (sectp);
1417 }
1418 else if (section_is_p (sectp->name, &names->loc))
1419 {
1420 dwarf2_per_objfile->loc.asection = sectp;
1421 dwarf2_per_objfile->loc.size = bfd_get_section_size (sectp);
1422 }
1423 else if (section_is_p (sectp->name, &names->macinfo))
1424 {
1425 dwarf2_per_objfile->macinfo.asection = sectp;
1426 dwarf2_per_objfile->macinfo.size = bfd_get_section_size (sectp);
1427 }
1428 else if (section_is_p (sectp->name, &names->str))
1429 {
1430 dwarf2_per_objfile->str.asection = sectp;
1431 dwarf2_per_objfile->str.size = bfd_get_section_size (sectp);
1432 }
1433 else if (section_is_p (sectp->name, &names->frame))
1434 {
1435 dwarf2_per_objfile->frame.asection = sectp;
1436 dwarf2_per_objfile->frame.size = bfd_get_section_size (sectp);
1437 }
1438 else if (section_is_p (sectp->name, &names->eh_frame))
1439 {
1440 flagword aflag = bfd_get_section_flags (ignore_abfd, sectp);
1441
1442 if (aflag & SEC_HAS_CONTENTS)
1443 {
1444 dwarf2_per_objfile->eh_frame.asection = sectp;
1445 dwarf2_per_objfile->eh_frame.size = bfd_get_section_size (sectp);
1446 }
1447 }
1448 else if (section_is_p (sectp->name, &names->ranges))
1449 {
1450 dwarf2_per_objfile->ranges.asection = sectp;
1451 dwarf2_per_objfile->ranges.size = bfd_get_section_size (sectp);
1452 }
1453 else if (section_is_p (sectp->name, &names->types))
1454 {
1455 dwarf2_per_objfile->types.asection = sectp;
1456 dwarf2_per_objfile->types.size = bfd_get_section_size (sectp);
1457 }
1458 else if (section_is_p (sectp->name, &names->gdb_index))
1459 {
1460 dwarf2_per_objfile->gdb_index.asection = sectp;
1461 dwarf2_per_objfile->gdb_index.size = bfd_get_section_size (sectp);
1462 }
1463
1464 if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD)
1465 && bfd_section_vma (abfd, sectp) == 0)
1466 dwarf2_per_objfile->has_section_at_zero = 1;
1467 }
1468
1469 /* Decompress a section that was compressed using zlib. Store the
1470 decompressed buffer, and its size, in OUTBUF and OUTSIZE. */
1471
1472 static void
1473 zlib_decompress_section (struct objfile *objfile, asection *sectp,
1474 gdb_byte **outbuf, bfd_size_type *outsize)
1475 {
1476 bfd *abfd = objfile->obfd;
1477 #ifndef HAVE_ZLIB_H
1478 error (_("Support for zlib-compressed DWARF data (from '%s') "
1479 "is disabled in this copy of GDB"),
1480 bfd_get_filename (abfd));
1481 #else
1482 bfd_size_type compressed_size = bfd_get_section_size (sectp);
1483 gdb_byte *compressed_buffer = xmalloc (compressed_size);
1484 struct cleanup *cleanup = make_cleanup (xfree, compressed_buffer);
1485 bfd_size_type uncompressed_size;
1486 gdb_byte *uncompressed_buffer;
1487 z_stream strm;
1488 int rc;
1489 int header_size = 12;
1490
1491 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1492 || bfd_bread (compressed_buffer,
1493 compressed_size, abfd) != compressed_size)
1494 error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1495 bfd_get_filename (abfd));
1496
1497 /* Read the zlib header. In this case, it should be "ZLIB" followed
1498 by the uncompressed section size, 8 bytes in big-endian order. */
1499 if (compressed_size < header_size
1500 || strncmp (compressed_buffer, "ZLIB", 4) != 0)
1501 error (_("Dwarf Error: Corrupt DWARF ZLIB header from '%s'"),
1502 bfd_get_filename (abfd));
1503 uncompressed_size = compressed_buffer[4]; uncompressed_size <<= 8;
1504 uncompressed_size += compressed_buffer[5]; uncompressed_size <<= 8;
1505 uncompressed_size += compressed_buffer[6]; uncompressed_size <<= 8;
1506 uncompressed_size += compressed_buffer[7]; uncompressed_size <<= 8;
1507 uncompressed_size += compressed_buffer[8]; uncompressed_size <<= 8;
1508 uncompressed_size += compressed_buffer[9]; uncompressed_size <<= 8;
1509 uncompressed_size += compressed_buffer[10]; uncompressed_size <<= 8;
1510 uncompressed_size += compressed_buffer[11];
1511
1512 /* It is possible the section consists of several compressed
1513 buffers concatenated together, so we uncompress in a loop. */
1514 strm.zalloc = NULL;
1515 strm.zfree = NULL;
1516 strm.opaque = NULL;
1517 strm.avail_in = compressed_size - header_size;
1518 strm.next_in = (Bytef*) compressed_buffer + header_size;
1519 strm.avail_out = uncompressed_size;
1520 uncompressed_buffer = obstack_alloc (&objfile->objfile_obstack,
1521 uncompressed_size);
1522 rc = inflateInit (&strm);
1523 while (strm.avail_in > 0)
1524 {
1525 if (rc != Z_OK)
1526 error (_("Dwarf Error: setting up DWARF uncompression in '%s': %d"),
1527 bfd_get_filename (abfd), rc);
1528 strm.next_out = ((Bytef*) uncompressed_buffer
1529 + (uncompressed_size - strm.avail_out));
1530 rc = inflate (&strm, Z_FINISH);
1531 if (rc != Z_STREAM_END)
1532 error (_("Dwarf Error: zlib error uncompressing from '%s': %d"),
1533 bfd_get_filename (abfd), rc);
1534 rc = inflateReset (&strm);
1535 }
1536 rc = inflateEnd (&strm);
1537 if (rc != Z_OK
1538 || strm.avail_out != 0)
1539 error (_("Dwarf Error: concluding DWARF uncompression in '%s': %d"),
1540 bfd_get_filename (abfd), rc);
1541
1542 do_cleanups (cleanup);
1543 *outbuf = uncompressed_buffer;
1544 *outsize = uncompressed_size;
1545 #endif
1546 }
1547
1548 /* A helper function that decides whether a section is empty. */
1549
1550 static int
1551 dwarf2_section_empty_p (struct dwarf2_section_info *info)
1552 {
1553 return info->asection == NULL || info->size == 0;
1554 }
1555
1556 /* Read the contents of the section SECTP from object file specified by
1557 OBJFILE, store info about the section into INFO.
1558 If the section is compressed, uncompress it before returning. */
1559
1560 static void
1561 dwarf2_read_section (struct objfile *objfile, struct dwarf2_section_info *info)
1562 {
1563 bfd *abfd = objfile->obfd;
1564 asection *sectp = info->asection;
1565 gdb_byte *buf, *retbuf;
1566 unsigned char header[4];
1567
1568 if (info->readin)
1569 return;
1570 info->buffer = NULL;
1571 info->map_addr = NULL;
1572 info->readin = 1;
1573
1574 if (dwarf2_section_empty_p (info))
1575 return;
1576
1577 /* Check if the file has a 4-byte header indicating compression. */
1578 if (info->size > sizeof (header)
1579 && bfd_seek (abfd, sectp->filepos, SEEK_SET) == 0
1580 && bfd_bread (header, sizeof (header), abfd) == sizeof (header))
1581 {
1582 /* Upon decompression, update the buffer and its size. */
1583 if (strncmp (header, "ZLIB", sizeof (header)) == 0)
1584 {
1585 zlib_decompress_section (objfile, sectp, &info->buffer,
1586 &info->size);
1587 return;
1588 }
1589 }
1590
1591 #ifdef HAVE_MMAP
1592 if (pagesize == 0)
1593 pagesize = getpagesize ();
1594
1595 /* Only try to mmap sections which are large enough: we don't want to
1596 waste space due to fragmentation. Also, only try mmap for sections
1597 without relocations. */
1598
1599 if (info->size > 4 * pagesize && (sectp->flags & SEC_RELOC) == 0)
1600 {
1601 info->buffer = bfd_mmap (abfd, 0, info->size, PROT_READ,
1602 MAP_PRIVATE, sectp->filepos,
1603 &info->map_addr, &info->map_len);
1604
1605 if ((caddr_t)info->buffer != MAP_FAILED)
1606 {
1607 #if HAVE_POSIX_MADVISE
1608 posix_madvise (info->map_addr, info->map_len, POSIX_MADV_WILLNEED);
1609 #endif
1610 return;
1611 }
1612 }
1613 #endif
1614
1615 /* If we get here, we are a normal, not-compressed section. */
1616 info->buffer = buf
1617 = obstack_alloc (&objfile->objfile_obstack, info->size);
1618
1619 /* When debugging .o files, we may need to apply relocations; see
1620 http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
1621 We never compress sections in .o files, so we only need to
1622 try this when the section is not compressed. */
1623 retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
1624 if (retbuf != NULL)
1625 {
1626 info->buffer = retbuf;
1627 return;
1628 }
1629
1630 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1631 || bfd_bread (buf, info->size, abfd) != info->size)
1632 error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1633 bfd_get_filename (abfd));
1634 }
1635
1636 /* A helper function that returns the size of a section in a safe way.
1637 If you are positive that the section has been read before using the
1638 size, then it is safe to refer to the dwarf2_section_info object's
1639 "size" field directly. In other cases, you must call this
1640 function, because for compressed sections the size field is not set
1641 correctly until the section has been read. */
1642
1643 static bfd_size_type
1644 dwarf2_section_size (struct objfile *objfile,
1645 struct dwarf2_section_info *info)
1646 {
1647 if (!info->readin)
1648 dwarf2_read_section (objfile, info);
1649 return info->size;
1650 }
1651
1652 /* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
1653 SECTION_NAME. */
1654
1655 void
1656 dwarf2_get_section_info (struct objfile *objfile,
1657 enum dwarf2_section_enum sect,
1658 asection **sectp, gdb_byte **bufp,
1659 bfd_size_type *sizep)
1660 {
1661 struct dwarf2_per_objfile *data
1662 = objfile_data (objfile, dwarf2_objfile_data_key);
1663 struct dwarf2_section_info *info;
1664
1665 /* We may see an objfile without any DWARF, in which case we just
1666 return nothing. */
1667 if (data == NULL)
1668 {
1669 *sectp = NULL;
1670 *bufp = NULL;
1671 *sizep = 0;
1672 return;
1673 }
1674 switch (sect)
1675 {
1676 case DWARF2_DEBUG_FRAME:
1677 info = &data->frame;
1678 break;
1679 case DWARF2_EH_FRAME:
1680 info = &data->eh_frame;
1681 break;
1682 default:
1683 gdb_assert_not_reached ("unexpected section");
1684 }
1685
1686 dwarf2_read_section (objfile, info);
1687
1688 *sectp = info->asection;
1689 *bufp = info->buffer;
1690 *sizep = info->size;
1691 }
1692
1693 \f
1694 /* DWARF quick_symbols_functions support. */
1695
1696 /* TUs can share .debug_line entries, and there can be a lot more TUs than
1697 unique line tables, so we maintain a separate table of all .debug_line
1698 derived entries to support the sharing.
1699 All the quick functions need is the list of file names. We discard the
1700 line_header when we're done and don't need to record it here. */
1701 struct quick_file_names
1702 {
1703 /* The offset in .debug_line of the line table. We hash on this. */
1704 unsigned int offset;
1705
1706 /* The number of entries in file_names, real_names. */
1707 unsigned int num_file_names;
1708
1709 /* The file names from the line table, after being run through
1710 file_full_name. */
1711 const char **file_names;
1712
1713 /* The file names from the line table after being run through
1714 gdb_realpath. These are computed lazily. */
1715 const char **real_names;
1716 };
1717
1718 /* When using the index (and thus not using psymtabs), each CU has an
1719 object of this type. This is used to hold information needed by
1720 the various "quick" methods. */
1721 struct dwarf2_per_cu_quick_data
1722 {
1723 /* The file table. This can be NULL if there was no file table
1724 or it's currently not read in.
1725 NOTE: This points into dwarf2_per_objfile->quick_file_names_table. */
1726 struct quick_file_names *file_names;
1727
1728 /* The corresponding symbol table. This is NULL if symbols for this
1729 CU have not yet been read. */
1730 struct symtab *symtab;
1731
1732 /* A temporary mark bit used when iterating over all CUs in
1733 expand_symtabs_matching. */
1734 unsigned int mark : 1;
1735
1736 /* True if we've tried to read the file table and found there isn't one.
1737 There will be no point in trying to read it again next time. */
1738 unsigned int no_file_data : 1;
1739 };
1740
1741 /* Hash function for a quick_file_names. */
1742
1743 static hashval_t
1744 hash_file_name_entry (const void *e)
1745 {
1746 const struct quick_file_names *file_data = e;
1747
1748 return file_data->offset;
1749 }
1750
1751 /* Equality function for a quick_file_names. */
1752
1753 static int
1754 eq_file_name_entry (const void *a, const void *b)
1755 {
1756 const struct quick_file_names *ea = a;
1757 const struct quick_file_names *eb = b;
1758
1759 return ea->offset == eb->offset;
1760 }
1761
1762 /* Delete function for a quick_file_names. */
1763
1764 static void
1765 delete_file_name_entry (void *e)
1766 {
1767 struct quick_file_names *file_data = e;
1768 int i;
1769
1770 for (i = 0; i < file_data->num_file_names; ++i)
1771 {
1772 xfree ((void*) file_data->file_names[i]);
1773 if (file_data->real_names)
1774 xfree ((void*) file_data->real_names[i]);
1775 }
1776
1777 /* The space for the struct itself lives on objfile_obstack,
1778 so we don't free it here. */
1779 }
1780
1781 /* Create a quick_file_names hash table. */
1782
1783 static htab_t
1784 create_quick_file_names_table (unsigned int nr_initial_entries)
1785 {
1786 return htab_create_alloc (nr_initial_entries,
1787 hash_file_name_entry, eq_file_name_entry,
1788 delete_file_name_entry, xcalloc, xfree);
1789 }
1790
1791 /* Read in the symbols for PER_CU. OBJFILE is the objfile from which
1792 this CU came. */
1793
1794 static void
1795 dw2_do_instantiate_symtab (struct objfile *objfile,
1796 struct dwarf2_per_cu_data *per_cu)
1797 {
1798 struct cleanup *back_to;
1799
1800 back_to = make_cleanup (dwarf2_release_queue, NULL);
1801
1802 queue_comp_unit (per_cu, objfile);
1803
1804 if (per_cu->from_debug_types)
1805 read_signatured_type_at_offset (objfile, per_cu->offset);
1806 else
1807 load_full_comp_unit (per_cu, objfile);
1808
1809 process_queue (objfile);
1810
1811 /* Age the cache, releasing compilation units that have not
1812 been used recently. */
1813 age_cached_comp_units ();
1814
1815 do_cleanups (back_to);
1816 }
1817
1818 /* Ensure that the symbols for PER_CU have been read in. OBJFILE is
1819 the objfile from which this CU came. Returns the resulting symbol
1820 table. */
1821
1822 static struct symtab *
1823 dw2_instantiate_symtab (struct objfile *objfile,
1824 struct dwarf2_per_cu_data *per_cu)
1825 {
1826 if (!per_cu->v.quick->symtab)
1827 {
1828 struct cleanup *back_to = make_cleanup (free_cached_comp_units, NULL);
1829 increment_reading_symtab ();
1830 dw2_do_instantiate_symtab (objfile, per_cu);
1831 do_cleanups (back_to);
1832 }
1833 return per_cu->v.quick->symtab;
1834 }
1835
1836 /* Return the CU given its index. */
1837
1838 static struct dwarf2_per_cu_data *
1839 dw2_get_cu (int index)
1840 {
1841 if (index >= dwarf2_per_objfile->n_comp_units)
1842 {
1843 index -= dwarf2_per_objfile->n_comp_units;
1844 return dwarf2_per_objfile->type_comp_units[index];
1845 }
1846 return dwarf2_per_objfile->all_comp_units[index];
1847 }
1848
1849 /* A helper function that knows how to read a 64-bit value in a way
1850 that doesn't make gdb die. Returns 1 if the conversion went ok, 0
1851 otherwise. */
1852
1853 static int
1854 extract_cu_value (const char *bytes, ULONGEST *result)
1855 {
1856 if (sizeof (ULONGEST) < 8)
1857 {
1858 int i;
1859
1860 /* Ignore the upper 4 bytes if they are all zero. */
1861 for (i = 0; i < 4; ++i)
1862 if (bytes[i + 4] != 0)
1863 return 0;
1864
1865 *result = extract_unsigned_integer (bytes, 4, BFD_ENDIAN_LITTLE);
1866 }
1867 else
1868 *result = extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
1869 return 1;
1870 }
1871
1872 /* Read the CU list from the mapped index, and use it to create all
1873 the CU objects for this objfile. Return 0 if something went wrong,
1874 1 if everything went ok. */
1875
1876 static int
1877 create_cus_from_index (struct objfile *objfile, const gdb_byte *cu_list,
1878 offset_type cu_list_elements)
1879 {
1880 offset_type i;
1881
1882 dwarf2_per_objfile->n_comp_units = cu_list_elements / 2;
1883 dwarf2_per_objfile->all_comp_units
1884 = obstack_alloc (&objfile->objfile_obstack,
1885 dwarf2_per_objfile->n_comp_units
1886 * sizeof (struct dwarf2_per_cu_data *));
1887
1888 for (i = 0; i < cu_list_elements; i += 2)
1889 {
1890 struct dwarf2_per_cu_data *the_cu;
1891 ULONGEST offset, length;
1892
1893 if (!extract_cu_value (cu_list, &offset)
1894 || !extract_cu_value (cu_list + 8, &length))
1895 return 0;
1896 cu_list += 2 * 8;
1897
1898 the_cu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1899 struct dwarf2_per_cu_data);
1900 the_cu->offset = offset;
1901 the_cu->length = length;
1902 the_cu->objfile = objfile;
1903 the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1904 struct dwarf2_per_cu_quick_data);
1905 dwarf2_per_objfile->all_comp_units[i / 2] = the_cu;
1906 }
1907
1908 return 1;
1909 }
1910
1911 /* Create the signatured type hash table from the index. */
1912
1913 static int
1914 create_signatured_type_table_from_index (struct objfile *objfile,
1915 const gdb_byte *bytes,
1916 offset_type elements)
1917 {
1918 offset_type i;
1919 htab_t sig_types_hash;
1920
1921 dwarf2_per_objfile->n_type_comp_units = elements / 3;
1922 dwarf2_per_objfile->type_comp_units
1923 = obstack_alloc (&objfile->objfile_obstack,
1924 dwarf2_per_objfile->n_type_comp_units
1925 * sizeof (struct dwarf2_per_cu_data *));
1926
1927 sig_types_hash = allocate_signatured_type_table (objfile);
1928
1929 for (i = 0; i < elements; i += 3)
1930 {
1931 struct signatured_type *type_sig;
1932 ULONGEST offset, type_offset, signature;
1933 void **slot;
1934
1935 if (!extract_cu_value (bytes, &offset)
1936 || !extract_cu_value (bytes + 8, &type_offset))
1937 return 0;
1938 signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
1939 bytes += 3 * 8;
1940
1941 type_sig = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1942 struct signatured_type);
1943 type_sig->signature = signature;
1944 type_sig->type_offset = type_offset;
1945 type_sig->per_cu.from_debug_types = 1;
1946 type_sig->per_cu.offset = offset;
1947 type_sig->per_cu.objfile = objfile;
1948 type_sig->per_cu.v.quick
1949 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1950 struct dwarf2_per_cu_quick_data);
1951
1952 slot = htab_find_slot (sig_types_hash, type_sig, INSERT);
1953 *slot = type_sig;
1954
1955 dwarf2_per_objfile->type_comp_units[i / 3] = &type_sig->per_cu;
1956 }
1957
1958 dwarf2_per_objfile->signatured_types = sig_types_hash;
1959
1960 return 1;
1961 }
1962
1963 /* Read the address map data from the mapped index, and use it to
1964 populate the objfile's psymtabs_addrmap. */
1965
1966 static void
1967 create_addrmap_from_index (struct objfile *objfile, struct mapped_index *index)
1968 {
1969 const gdb_byte *iter, *end;
1970 struct obstack temp_obstack;
1971 struct addrmap *mutable_map;
1972 struct cleanup *cleanup;
1973 CORE_ADDR baseaddr;
1974
1975 obstack_init (&temp_obstack);
1976 cleanup = make_cleanup_obstack_free (&temp_obstack);
1977 mutable_map = addrmap_create_mutable (&temp_obstack);
1978
1979 iter = index->address_table;
1980 end = iter + index->address_table_size;
1981
1982 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1983
1984 while (iter < end)
1985 {
1986 ULONGEST hi, lo, cu_index;
1987 lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
1988 iter += 8;
1989 hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
1990 iter += 8;
1991 cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
1992 iter += 4;
1993
1994 addrmap_set_empty (mutable_map, lo + baseaddr, hi + baseaddr - 1,
1995 dw2_get_cu (cu_index));
1996 }
1997
1998 objfile->psymtabs_addrmap = addrmap_create_fixed (mutable_map,
1999 &objfile->objfile_obstack);
2000 do_cleanups (cleanup);
2001 }
2002
2003 /* The hash function for strings in the mapped index. This is the same as
2004 SYMBOL_HASH_NEXT, but we keep a separate copy to maintain control over the
2005 implementation. This is necessary because the hash function is tied to the
2006 format of the mapped index file. The hash values do not have to match with
2007 SYMBOL_HASH_NEXT.
2008
2009 Use INT_MAX for INDEX_VERSION if you generate the current index format. */
2010
2011 static hashval_t
2012 mapped_index_string_hash (int index_version, const void *p)
2013 {
2014 const unsigned char *str = (const unsigned char *) p;
2015 hashval_t r = 0;
2016 unsigned char c;
2017
2018 while ((c = *str++) != 0)
2019 {
2020 if (index_version >= 5)
2021 c = tolower (c);
2022 r = r * 67 + c - 113;
2023 }
2024
2025 return r;
2026 }
2027
2028 /* Find a slot in the mapped index INDEX for the object named NAME.
2029 If NAME is found, set *VEC_OUT to point to the CU vector in the
2030 constant pool and return 1. If NAME cannot be found, return 0. */
2031
2032 static int
2033 find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
2034 offset_type **vec_out)
2035 {
2036 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
2037 offset_type hash;
2038 offset_type slot, step;
2039 int (*cmp) (const char *, const char *);
2040
2041 if (current_language->la_language == language_cplus
2042 || current_language->la_language == language_java
2043 || current_language->la_language == language_fortran)
2044 {
2045 /* NAME is already canonical. Drop any qualifiers as .gdb_index does
2046 not contain any. */
2047 const char *paren = strchr (name, '(');
2048
2049 if (paren)
2050 {
2051 char *dup;
2052
2053 dup = xmalloc (paren - name + 1);
2054 memcpy (dup, name, paren - name);
2055 dup[paren - name] = 0;
2056
2057 make_cleanup (xfree, dup);
2058 name = dup;
2059 }
2060 }
2061
2062 /* Index version 4 did not support case insensitive searches. But the
2063 indexes for case insensitive languages are built in lowercase, therefore
2064 simulate our NAME being searched is also lowercased. */
2065 hash = mapped_index_string_hash ((index->version == 4
2066 && case_sensitivity == case_sensitive_off
2067 ? 5 : index->version),
2068 name);
2069
2070 slot = hash & (index->symbol_table_slots - 1);
2071 step = ((hash * 17) & (index->symbol_table_slots - 1)) | 1;
2072 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
2073
2074 for (;;)
2075 {
2076 /* Convert a slot number to an offset into the table. */
2077 offset_type i = 2 * slot;
2078 const char *str;
2079 if (index->symbol_table[i] == 0 && index->symbol_table[i + 1] == 0)
2080 {
2081 do_cleanups (back_to);
2082 return 0;
2083 }
2084
2085 str = index->constant_pool + MAYBE_SWAP (index->symbol_table[i]);
2086 if (!cmp (name, str))
2087 {
2088 *vec_out = (offset_type *) (index->constant_pool
2089 + MAYBE_SWAP (index->symbol_table[i + 1]));
2090 do_cleanups (back_to);
2091 return 1;
2092 }
2093
2094 slot = (slot + step) & (index->symbol_table_slots - 1);
2095 }
2096 }
2097
2098 /* Read the index file. If everything went ok, initialize the "quick"
2099 elements of all the CUs and return 1. Otherwise, return 0. */
2100
2101 static int
2102 dwarf2_read_index (struct objfile *objfile)
2103 {
2104 char *addr;
2105 struct mapped_index *map;
2106 offset_type *metadata;
2107 const gdb_byte *cu_list;
2108 const gdb_byte *types_list = NULL;
2109 offset_type version, cu_list_elements;
2110 offset_type types_list_elements = 0;
2111 int i;
2112
2113 if (dwarf2_section_empty_p (&dwarf2_per_objfile->gdb_index))
2114 return 0;
2115
2116 /* Older elfutils strip versions could keep the section in the main
2117 executable while splitting it for the separate debug info file. */
2118 if ((bfd_get_file_flags (dwarf2_per_objfile->gdb_index.asection)
2119 & SEC_HAS_CONTENTS) == 0)
2120 return 0;
2121
2122 dwarf2_read_section (objfile, &dwarf2_per_objfile->gdb_index);
2123
2124 addr = dwarf2_per_objfile->gdb_index.buffer;
2125 /* Version check. */
2126 version = MAYBE_SWAP (*(offset_type *) addr);
2127 /* Versions earlier than 3 emitted every copy of a psymbol. This
2128 causes the index to behave very poorly for certain requests. Version 3
2129 contained incomplete addrmap. So, it seems better to just ignore such
2130 indices. Index version 4 uses a different hash function than index
2131 version 5 and later. */
2132 if (version < 4)
2133 return 0;
2134 /* Indexes with higher version than the one supported by GDB may be no
2135 longer backward compatible. */
2136 if (version > 5)
2137 return 0;
2138
2139 map = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct mapped_index);
2140 map->version = version;
2141 map->total_size = dwarf2_per_objfile->gdb_index.size;
2142
2143 metadata = (offset_type *) (addr + sizeof (offset_type));
2144
2145 i = 0;
2146 cu_list = addr + MAYBE_SWAP (metadata[i]);
2147 cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
2148 / 8);
2149 ++i;
2150
2151 types_list = addr + MAYBE_SWAP (metadata[i]);
2152 types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
2153 - MAYBE_SWAP (metadata[i]))
2154 / 8);
2155 ++i;
2156
2157 map->address_table = addr + MAYBE_SWAP (metadata[i]);
2158 map->address_table_size = (MAYBE_SWAP (metadata[i + 1])
2159 - MAYBE_SWAP (metadata[i]));
2160 ++i;
2161
2162 map->symbol_table = (offset_type *) (addr + MAYBE_SWAP (metadata[i]));
2163 map->symbol_table_slots = ((MAYBE_SWAP (metadata[i + 1])
2164 - MAYBE_SWAP (metadata[i]))
2165 / (2 * sizeof (offset_type)));
2166 ++i;
2167
2168 map->constant_pool = addr + MAYBE_SWAP (metadata[i]);
2169
2170 if (!create_cus_from_index (objfile, cu_list, cu_list_elements))
2171 return 0;
2172
2173 if (types_list_elements
2174 && !create_signatured_type_table_from_index (objfile, types_list,
2175 types_list_elements))
2176 return 0;
2177
2178 create_addrmap_from_index (objfile, map);
2179
2180 dwarf2_per_objfile->index_table = map;
2181 dwarf2_per_objfile->using_index = 1;
2182 dwarf2_per_objfile->quick_file_names_table =
2183 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
2184
2185 return 1;
2186 }
2187
2188 /* A helper for the "quick" functions which sets the global
2189 dwarf2_per_objfile according to OBJFILE. */
2190
2191 static void
2192 dw2_setup (struct objfile *objfile)
2193 {
2194 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
2195 gdb_assert (dwarf2_per_objfile);
2196 }
2197
2198 /* A helper for the "quick" functions which attempts to read the line
2199 table for THIS_CU. */
2200
2201 static struct quick_file_names *
2202 dw2_get_file_names (struct objfile *objfile,
2203 struct dwarf2_per_cu_data *this_cu)
2204 {
2205 bfd *abfd = objfile->obfd;
2206 struct line_header *lh;
2207 struct attribute *attr;
2208 struct cleanup *cleanups;
2209 struct die_info *comp_unit_die;
2210 struct dwarf2_section_info* sec;
2211 gdb_byte *beg_of_comp_unit, *info_ptr, *buffer;
2212 int has_children, i;
2213 struct dwarf2_cu cu;
2214 unsigned int bytes_read, buffer_size;
2215 struct die_reader_specs reader_specs;
2216 char *name, *comp_dir;
2217 void **slot;
2218 struct quick_file_names *qfn;
2219 unsigned int line_offset;
2220
2221 if (this_cu->v.quick->file_names != NULL)
2222 return this_cu->v.quick->file_names;
2223 /* If we know there is no line data, no point in looking again. */
2224 if (this_cu->v.quick->no_file_data)
2225 return NULL;
2226
2227 init_one_comp_unit (&cu, objfile);
2228 cleanups = make_cleanup (free_stack_comp_unit, &cu);
2229
2230 if (this_cu->from_debug_types)
2231 sec = &dwarf2_per_objfile->types;
2232 else
2233 sec = &dwarf2_per_objfile->info;
2234 dwarf2_read_section (objfile, sec);
2235 buffer_size = sec->size;
2236 buffer = sec->buffer;
2237 info_ptr = buffer + this_cu->offset;
2238 beg_of_comp_unit = info_ptr;
2239
2240 info_ptr = partial_read_comp_unit_head (&cu.header, info_ptr,
2241 buffer, buffer_size,
2242 abfd);
2243
2244 /* Complete the cu_header. */
2245 cu.header.offset = beg_of_comp_unit - buffer;
2246 cu.header.first_die_offset = info_ptr - beg_of_comp_unit;
2247
2248 this_cu->cu = &cu;
2249 cu.per_cu = this_cu;
2250
2251 dwarf2_read_abbrevs (abfd, &cu);
2252 make_cleanup (dwarf2_free_abbrev_table, &cu);
2253
2254 if (this_cu->from_debug_types)
2255 info_ptr += 8 /*signature*/ + cu.header.offset_size;
2256 init_cu_die_reader (&reader_specs, &cu);
2257 read_full_die (&reader_specs, &comp_unit_die, info_ptr,
2258 &has_children);
2259
2260 lh = NULL;
2261 slot = NULL;
2262 line_offset = 0;
2263 attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, &cu);
2264 if (attr)
2265 {
2266 struct quick_file_names find_entry;
2267
2268 line_offset = DW_UNSND (attr);
2269
2270 /* We may have already read in this line header (TU line header sharing).
2271 If we have we're done. */
2272 find_entry.offset = line_offset;
2273 slot = htab_find_slot (dwarf2_per_objfile->quick_file_names_table,
2274 &find_entry, INSERT);
2275 if (*slot != NULL)
2276 {
2277 do_cleanups (cleanups);
2278 this_cu->v.quick->file_names = *slot;
2279 return *slot;
2280 }
2281
2282 lh = dwarf_decode_line_header (line_offset, abfd, &cu);
2283 }
2284 if (lh == NULL)
2285 {
2286 do_cleanups (cleanups);
2287 this_cu->v.quick->no_file_data = 1;
2288 return NULL;
2289 }
2290
2291 qfn = obstack_alloc (&objfile->objfile_obstack, sizeof (*qfn));
2292 qfn->offset = line_offset;
2293 gdb_assert (slot != NULL);
2294 *slot = qfn;
2295
2296 find_file_and_directory (comp_unit_die, &cu, &name, &comp_dir);
2297
2298 qfn->num_file_names = lh->num_file_names;
2299 qfn->file_names = obstack_alloc (&objfile->objfile_obstack,
2300 lh->num_file_names * sizeof (char *));
2301 for (i = 0; i < lh->num_file_names; ++i)
2302 qfn->file_names[i] = file_full_name (i + 1, lh, comp_dir);
2303 qfn->real_names = NULL;
2304
2305 free_line_header (lh);
2306 do_cleanups (cleanups);
2307
2308 this_cu->v.quick->file_names = qfn;
2309 return qfn;
2310 }
2311
2312 /* A helper for the "quick" functions which computes and caches the
2313 real path for a given file name from the line table. */
2314
2315 static const char *
2316 dw2_get_real_path (struct objfile *objfile,
2317 struct quick_file_names *qfn, int index)
2318 {
2319 if (qfn->real_names == NULL)
2320 qfn->real_names = OBSTACK_CALLOC (&objfile->objfile_obstack,
2321 qfn->num_file_names, sizeof (char *));
2322
2323 if (qfn->real_names[index] == NULL)
2324 qfn->real_names[index] = gdb_realpath (qfn->file_names[index]);
2325
2326 return qfn->real_names[index];
2327 }
2328
2329 static struct symtab *
2330 dw2_find_last_source_symtab (struct objfile *objfile)
2331 {
2332 int index;
2333
2334 dw2_setup (objfile);
2335 index = dwarf2_per_objfile->n_comp_units - 1;
2336 return dw2_instantiate_symtab (objfile, dw2_get_cu (index));
2337 }
2338
2339 /* Traversal function for dw2_forget_cached_source_info. */
2340
2341 static int
2342 dw2_free_cached_file_names (void **slot, void *info)
2343 {
2344 struct quick_file_names *file_data = (struct quick_file_names *) *slot;
2345
2346 if (file_data->real_names)
2347 {
2348 int i;
2349
2350 for (i = 0; i < file_data->num_file_names; ++i)
2351 {
2352 xfree ((void*) file_data->real_names[i]);
2353 file_data->real_names[i] = NULL;
2354 }
2355 }
2356
2357 return 1;
2358 }
2359
2360 static void
2361 dw2_forget_cached_source_info (struct objfile *objfile)
2362 {
2363 dw2_setup (objfile);
2364
2365 htab_traverse_noresize (dwarf2_per_objfile->quick_file_names_table,
2366 dw2_free_cached_file_names, NULL);
2367 }
2368
2369 static int
2370 dw2_lookup_symtab (struct objfile *objfile, const char *name,
2371 const char *full_path, const char *real_path,
2372 struct symtab **result)
2373 {
2374 int i;
2375 int check_basename = lbasename (name) == name;
2376 struct dwarf2_per_cu_data *base_cu = NULL;
2377
2378 dw2_setup (objfile);
2379
2380 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2381 + dwarf2_per_objfile->n_type_comp_units); ++i)
2382 {
2383 int j;
2384 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2385 struct quick_file_names *file_data;
2386
2387 if (per_cu->v.quick->symtab)
2388 continue;
2389
2390 file_data = dw2_get_file_names (objfile, per_cu);
2391 if (file_data == NULL)
2392 continue;
2393
2394 for (j = 0; j < file_data->num_file_names; ++j)
2395 {
2396 const char *this_name = file_data->file_names[j];
2397
2398 if (FILENAME_CMP (name, this_name) == 0)
2399 {
2400 *result = dw2_instantiate_symtab (objfile, per_cu);
2401 return 1;
2402 }
2403
2404 if (check_basename && ! base_cu
2405 && FILENAME_CMP (lbasename (this_name), name) == 0)
2406 base_cu = per_cu;
2407
2408 if (full_path != NULL)
2409 {
2410 const char *this_real_name = dw2_get_real_path (objfile,
2411 file_data, j);
2412
2413 if (this_real_name != NULL
2414 && FILENAME_CMP (full_path, this_real_name) == 0)
2415 {
2416 *result = dw2_instantiate_symtab (objfile, per_cu);
2417 return 1;
2418 }
2419 }
2420
2421 if (real_path != NULL)
2422 {
2423 const char *this_real_name = dw2_get_real_path (objfile,
2424 file_data, j);
2425
2426 if (this_real_name != NULL
2427 && FILENAME_CMP (real_path, this_real_name) == 0)
2428 {
2429 *result = dw2_instantiate_symtab (objfile, per_cu);
2430 return 1;
2431 }
2432 }
2433 }
2434 }
2435
2436 if (base_cu)
2437 {
2438 *result = dw2_instantiate_symtab (objfile, base_cu);
2439 return 1;
2440 }
2441
2442 return 0;
2443 }
2444
2445 static struct symtab *
2446 dw2_lookup_symbol (struct objfile *objfile, int block_index,
2447 const char *name, domain_enum domain)
2448 {
2449 /* We do all the work in the pre_expand_symtabs_matching hook
2450 instead. */
2451 return NULL;
2452 }
2453
2454 /* A helper function that expands all symtabs that hold an object
2455 named NAME. */
2456
2457 static void
2458 dw2_do_expand_symtabs_matching (struct objfile *objfile, const char *name)
2459 {
2460 dw2_setup (objfile);
2461
2462 /* index_table is NULL if OBJF_READNOW. */
2463 if (dwarf2_per_objfile->index_table)
2464 {
2465 offset_type *vec;
2466
2467 if (find_slot_in_mapped_hash (dwarf2_per_objfile->index_table,
2468 name, &vec))
2469 {
2470 offset_type i, len = MAYBE_SWAP (*vec);
2471 for (i = 0; i < len; ++i)
2472 {
2473 offset_type cu_index = MAYBE_SWAP (vec[i + 1]);
2474 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (cu_index);
2475
2476 dw2_instantiate_symtab (objfile, per_cu);
2477 }
2478 }
2479 }
2480 }
2481
2482 static void
2483 dw2_pre_expand_symtabs_matching (struct objfile *objfile,
2484 enum block_enum block_kind, const char *name,
2485 domain_enum domain)
2486 {
2487 dw2_do_expand_symtabs_matching (objfile, name);
2488 }
2489
2490 static void
2491 dw2_print_stats (struct objfile *objfile)
2492 {
2493 int i, count;
2494
2495 dw2_setup (objfile);
2496 count = 0;
2497 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2498 + dwarf2_per_objfile->n_type_comp_units); ++i)
2499 {
2500 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2501
2502 if (!per_cu->v.quick->symtab)
2503 ++count;
2504 }
2505 printf_filtered (_(" Number of unread CUs: %d\n"), count);
2506 }
2507
2508 static void
2509 dw2_dump (struct objfile *objfile)
2510 {
2511 /* Nothing worth printing. */
2512 }
2513
2514 static void
2515 dw2_relocate (struct objfile *objfile, struct section_offsets *new_offsets,
2516 struct section_offsets *delta)
2517 {
2518 /* There's nothing to relocate here. */
2519 }
2520
2521 static void
2522 dw2_expand_symtabs_for_function (struct objfile *objfile,
2523 const char *func_name)
2524 {
2525 dw2_do_expand_symtabs_matching (objfile, func_name);
2526 }
2527
2528 static void
2529 dw2_expand_all_symtabs (struct objfile *objfile)
2530 {
2531 int i;
2532
2533 dw2_setup (objfile);
2534
2535 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2536 + dwarf2_per_objfile->n_type_comp_units); ++i)
2537 {
2538 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2539
2540 dw2_instantiate_symtab (objfile, per_cu);
2541 }
2542 }
2543
2544 static void
2545 dw2_expand_symtabs_with_filename (struct objfile *objfile,
2546 const char *filename)
2547 {
2548 int i;
2549
2550 dw2_setup (objfile);
2551
2552 /* We don't need to consider type units here.
2553 This is only called for examining code, e.g. expand_line_sal.
2554 There can be an order of magnitude (or more) more type units
2555 than comp units, and we avoid them if we can. */
2556
2557 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
2558 {
2559 int j;
2560 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2561 struct quick_file_names *file_data;
2562
2563 if (per_cu->v.quick->symtab)
2564 continue;
2565
2566 file_data = dw2_get_file_names (objfile, per_cu);
2567 if (file_data == NULL)
2568 continue;
2569
2570 for (j = 0; j < file_data->num_file_names; ++j)
2571 {
2572 const char *this_name = file_data->file_names[j];
2573 if (FILENAME_CMP (this_name, filename) == 0)
2574 {
2575 dw2_instantiate_symtab (objfile, per_cu);
2576 break;
2577 }
2578 }
2579 }
2580 }
2581
2582 static const char *
2583 dw2_find_symbol_file (struct objfile *objfile, const char *name)
2584 {
2585 struct dwarf2_per_cu_data *per_cu;
2586 offset_type *vec;
2587 struct quick_file_names *file_data;
2588
2589 dw2_setup (objfile);
2590
2591 /* index_table is NULL if OBJF_READNOW. */
2592 if (!dwarf2_per_objfile->index_table)
2593 return NULL;
2594
2595 if (!find_slot_in_mapped_hash (dwarf2_per_objfile->index_table,
2596 name, &vec))
2597 return NULL;
2598
2599 /* Note that this just looks at the very first one named NAME -- but
2600 actually we are looking for a function. find_main_filename
2601 should be rewritten so that it doesn't require a custom hook. It
2602 could just use the ordinary symbol tables. */
2603 /* vec[0] is the length, which must always be >0. */
2604 per_cu = dw2_get_cu (MAYBE_SWAP (vec[1]));
2605
2606 file_data = dw2_get_file_names (objfile, per_cu);
2607 if (file_data == NULL)
2608 return NULL;
2609
2610 return file_data->file_names[file_data->num_file_names - 1];
2611 }
2612
2613 static void
2614 dw2_map_matching_symbols (const char * name, domain_enum namespace,
2615 struct objfile *objfile, int global,
2616 int (*callback) (struct block *,
2617 struct symbol *, void *),
2618 void *data, symbol_compare_ftype *match,
2619 symbol_compare_ftype *ordered_compare)
2620 {
2621 /* Currently unimplemented; used for Ada. The function can be called if the
2622 current language is Ada for a non-Ada objfile using GNU index. As Ada
2623 does not look for non-Ada symbols this function should just return. */
2624 }
2625
2626 static void
2627 dw2_expand_symtabs_matching (struct objfile *objfile,
2628 int (*file_matcher) (const char *, void *),
2629 int (*name_matcher) (const char *, void *),
2630 enum search_domain kind,
2631 void *data)
2632 {
2633 int i;
2634 offset_type iter;
2635 struct mapped_index *index;
2636
2637 dw2_setup (objfile);
2638
2639 /* index_table is NULL if OBJF_READNOW. */
2640 if (!dwarf2_per_objfile->index_table)
2641 return;
2642 index = dwarf2_per_objfile->index_table;
2643
2644 if (file_matcher != NULL)
2645 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2646 + dwarf2_per_objfile->n_type_comp_units); ++i)
2647 {
2648 int j;
2649 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2650 struct quick_file_names *file_data;
2651
2652 per_cu->v.quick->mark = 0;
2653 if (per_cu->v.quick->symtab)
2654 continue;
2655
2656 file_data = dw2_get_file_names (objfile, per_cu);
2657 if (file_data == NULL)
2658 continue;
2659
2660 for (j = 0; j < file_data->num_file_names; ++j)
2661 {
2662 if (file_matcher (file_data->file_names[j], data))
2663 {
2664 per_cu->v.quick->mark = 1;
2665 break;
2666 }
2667 }
2668 }
2669
2670 for (iter = 0; iter < index->symbol_table_slots; ++iter)
2671 {
2672 offset_type idx = 2 * iter;
2673 const char *name;
2674 offset_type *vec, vec_len, vec_idx;
2675
2676 if (index->symbol_table[idx] == 0 && index->symbol_table[idx + 1] == 0)
2677 continue;
2678
2679 name = index->constant_pool + MAYBE_SWAP (index->symbol_table[idx]);
2680
2681 if (! (*name_matcher) (name, data))
2682 continue;
2683
2684 /* The name was matched, now expand corresponding CUs that were
2685 marked. */
2686 vec = (offset_type *) (index->constant_pool
2687 + MAYBE_SWAP (index->symbol_table[idx + 1]));
2688 vec_len = MAYBE_SWAP (vec[0]);
2689 for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
2690 {
2691 struct dwarf2_per_cu_data *per_cu;
2692
2693 per_cu = dw2_get_cu (MAYBE_SWAP (vec[vec_idx + 1]));
2694 if (file_matcher == NULL || per_cu->v.quick->mark)
2695 dw2_instantiate_symtab (objfile, per_cu);
2696 }
2697 }
2698 }
2699
2700 static struct symtab *
2701 dw2_find_pc_sect_symtab (struct objfile *objfile,
2702 struct minimal_symbol *msymbol,
2703 CORE_ADDR pc,
2704 struct obj_section *section,
2705 int warn_if_readin)
2706 {
2707 struct dwarf2_per_cu_data *data;
2708
2709 dw2_setup (objfile);
2710
2711 if (!objfile->psymtabs_addrmap)
2712 return NULL;
2713
2714 data = addrmap_find (objfile->psymtabs_addrmap, pc);
2715 if (!data)
2716 return NULL;
2717
2718 if (warn_if_readin && data->v.quick->symtab)
2719 warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
2720 paddress (get_objfile_arch (objfile), pc));
2721
2722 return dw2_instantiate_symtab (objfile, data);
2723 }
2724
2725 static void
2726 dw2_map_symbol_filenames (struct objfile *objfile, symbol_filename_ftype *fun,
2727 void *data)
2728 {
2729 int i;
2730
2731 dw2_setup (objfile);
2732
2733 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2734 + dwarf2_per_objfile->n_type_comp_units); ++i)
2735 {
2736 int j;
2737 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2738 struct quick_file_names *file_data;
2739
2740 if (per_cu->v.quick->symtab)
2741 continue;
2742
2743 file_data = dw2_get_file_names (objfile, per_cu);
2744 if (file_data == NULL)
2745 continue;
2746
2747 for (j = 0; j < file_data->num_file_names; ++j)
2748 {
2749 const char *this_real_name = dw2_get_real_path (objfile, file_data,
2750 j);
2751 (*fun) (file_data->file_names[j], this_real_name, data);
2752 }
2753 }
2754 }
2755
2756 static int
2757 dw2_has_symbols (struct objfile *objfile)
2758 {
2759 return 1;
2760 }
2761
2762 const struct quick_symbol_functions dwarf2_gdb_index_functions =
2763 {
2764 dw2_has_symbols,
2765 dw2_find_last_source_symtab,
2766 dw2_forget_cached_source_info,
2767 dw2_lookup_symtab,
2768 dw2_lookup_symbol,
2769 dw2_pre_expand_symtabs_matching,
2770 dw2_print_stats,
2771 dw2_dump,
2772 dw2_relocate,
2773 dw2_expand_symtabs_for_function,
2774 dw2_expand_all_symtabs,
2775 dw2_expand_symtabs_with_filename,
2776 dw2_find_symbol_file,
2777 dw2_map_matching_symbols,
2778 dw2_expand_symtabs_matching,
2779 dw2_find_pc_sect_symtab,
2780 dw2_map_symbol_filenames
2781 };
2782
2783 /* Initialize for reading DWARF for this objfile. Return 0 if this
2784 file will use psymtabs, or 1 if using the GNU index. */
2785
2786 int
2787 dwarf2_initialize_objfile (struct objfile *objfile)
2788 {
2789 /* If we're about to read full symbols, don't bother with the
2790 indices. In this case we also don't care if some other debug
2791 format is making psymtabs, because they are all about to be
2792 expanded anyway. */
2793 if ((objfile->flags & OBJF_READNOW))
2794 {
2795 int i;
2796
2797 dwarf2_per_objfile->using_index = 1;
2798 create_all_comp_units (objfile);
2799 create_debug_types_hash_table (objfile);
2800 dwarf2_per_objfile->quick_file_names_table =
2801 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
2802
2803 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2804 + dwarf2_per_objfile->n_type_comp_units); ++i)
2805 {
2806 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2807
2808 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2809 struct dwarf2_per_cu_quick_data);
2810 }
2811
2812 /* Return 1 so that gdb sees the "quick" functions. However,
2813 these functions will be no-ops because we will have expanded
2814 all symtabs. */
2815 return 1;
2816 }
2817
2818 if (dwarf2_read_index (objfile))
2819 return 1;
2820
2821 return 0;
2822 }
2823
2824 \f
2825
2826 /* Build a partial symbol table. */
2827
2828 void
2829 dwarf2_build_psymtabs (struct objfile *objfile)
2830 {
2831 if (objfile->global_psymbols.size == 0 && objfile->static_psymbols.size == 0)
2832 {
2833 init_psymbol_list (objfile, 1024);
2834 }
2835
2836 dwarf2_build_psymtabs_hard (objfile);
2837 }
2838
2839 /* Return TRUE if OFFSET is within CU_HEADER. */
2840
2841 static inline int
2842 offset_in_cu_p (const struct comp_unit_head *cu_header, unsigned int offset)
2843 {
2844 unsigned int bottom = cu_header->offset;
2845 unsigned int top = (cu_header->offset
2846 + cu_header->length
2847 + cu_header->initial_length_size);
2848
2849 return (offset >= bottom && offset < top);
2850 }
2851
2852 /* Read in the comp unit header information from the debug_info at info_ptr.
2853 NOTE: This leaves members offset, first_die_offset to be filled in
2854 by the caller. */
2855
2856 static gdb_byte *
2857 read_comp_unit_head (struct comp_unit_head *cu_header,
2858 gdb_byte *info_ptr, bfd *abfd)
2859 {
2860 int signed_addr;
2861 unsigned int bytes_read;
2862
2863 cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
2864 cu_header->initial_length_size = bytes_read;
2865 cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
2866 info_ptr += bytes_read;
2867 cu_header->version = read_2_bytes (abfd, info_ptr);
2868 info_ptr += 2;
2869 cu_header->abbrev_offset = read_offset (abfd, info_ptr, cu_header,
2870 &bytes_read);
2871 info_ptr += bytes_read;
2872 cu_header->addr_size = read_1_byte (abfd, info_ptr);
2873 info_ptr += 1;
2874 signed_addr = bfd_get_sign_extend_vma (abfd);
2875 if (signed_addr < 0)
2876 internal_error (__FILE__, __LINE__,
2877 _("read_comp_unit_head: dwarf from non elf file"));
2878 cu_header->signed_addr_p = signed_addr;
2879
2880 return info_ptr;
2881 }
2882
2883 static gdb_byte *
2884 partial_read_comp_unit_head (struct comp_unit_head *header, gdb_byte *info_ptr,
2885 gdb_byte *buffer, unsigned int buffer_size,
2886 bfd *abfd)
2887 {
2888 gdb_byte *beg_of_comp_unit = info_ptr;
2889
2890 info_ptr = read_comp_unit_head (header, info_ptr, abfd);
2891
2892 if (header->version != 2 && header->version != 3 && header->version != 4)
2893 error (_("Dwarf Error: wrong version in compilation unit header "
2894 "(is %d, should be 2, 3, or 4) [in module %s]"), header->version,
2895 bfd_get_filename (abfd));
2896
2897 if (header->abbrev_offset
2898 >= dwarf2_section_size (dwarf2_per_objfile->objfile,
2899 &dwarf2_per_objfile->abbrev))
2900 error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
2901 "(offset 0x%lx + 6) [in module %s]"),
2902 (long) header->abbrev_offset,
2903 (long) (beg_of_comp_unit - buffer),
2904 bfd_get_filename (abfd));
2905
2906 if (beg_of_comp_unit + header->length + header->initial_length_size
2907 > buffer + buffer_size)
2908 error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
2909 "(offset 0x%lx + 0) [in module %s]"),
2910 (long) header->length,
2911 (long) (beg_of_comp_unit - buffer),
2912 bfd_get_filename (abfd));
2913
2914 return info_ptr;
2915 }
2916
2917 /* Read in the types comp unit header information from .debug_types entry at
2918 types_ptr. The result is a pointer to one past the end of the header. */
2919
2920 static gdb_byte *
2921 read_type_comp_unit_head (struct comp_unit_head *cu_header,
2922 ULONGEST *signature,
2923 gdb_byte *types_ptr, bfd *abfd)
2924 {
2925 gdb_byte *initial_types_ptr = types_ptr;
2926
2927 dwarf2_read_section (dwarf2_per_objfile->objfile,
2928 &dwarf2_per_objfile->types);
2929 cu_header->offset = types_ptr - dwarf2_per_objfile->types.buffer;
2930
2931 types_ptr = read_comp_unit_head (cu_header, types_ptr, abfd);
2932
2933 *signature = read_8_bytes (abfd, types_ptr);
2934 types_ptr += 8;
2935 types_ptr += cu_header->offset_size;
2936 cu_header->first_die_offset = types_ptr - initial_types_ptr;
2937
2938 return types_ptr;
2939 }
2940
2941 /* Allocate a new partial symtab for file named NAME and mark this new
2942 partial symtab as being an include of PST. */
2943
2944 static void
2945 dwarf2_create_include_psymtab (char *name, struct partial_symtab *pst,
2946 struct objfile *objfile)
2947 {
2948 struct partial_symtab *subpst = allocate_psymtab (name, objfile);
2949
2950 subpst->section_offsets = pst->section_offsets;
2951 subpst->textlow = 0;
2952 subpst->texthigh = 0;
2953
2954 subpst->dependencies = (struct partial_symtab **)
2955 obstack_alloc (&objfile->objfile_obstack,
2956 sizeof (struct partial_symtab *));
2957 subpst->dependencies[0] = pst;
2958 subpst->number_of_dependencies = 1;
2959
2960 subpst->globals_offset = 0;
2961 subpst->n_global_syms = 0;
2962 subpst->statics_offset = 0;
2963 subpst->n_static_syms = 0;
2964 subpst->symtab = NULL;
2965 subpst->read_symtab = pst->read_symtab;
2966 subpst->readin = 0;
2967
2968 /* No private part is necessary for include psymtabs. This property
2969 can be used to differentiate between such include psymtabs and
2970 the regular ones. */
2971 subpst->read_symtab_private = NULL;
2972 }
2973
2974 /* Read the Line Number Program data and extract the list of files
2975 included by the source file represented by PST. Build an include
2976 partial symtab for each of these included files. */
2977
2978 static void
2979 dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
2980 struct die_info *die,
2981 struct partial_symtab *pst)
2982 {
2983 struct objfile *objfile = cu->objfile;
2984 bfd *abfd = objfile->obfd;
2985 struct line_header *lh = NULL;
2986 struct attribute *attr;
2987
2988 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
2989 if (attr)
2990 {
2991 unsigned int line_offset = DW_UNSND (attr);
2992
2993 lh = dwarf_decode_line_header (line_offset, abfd, cu);
2994 }
2995 if (lh == NULL)
2996 return; /* No linetable, so no includes. */
2997
2998 /* NOTE: pst->dirname is DW_AT_comp_dir (if present). */
2999 dwarf_decode_lines (lh, pst->dirname, abfd, cu, pst);
3000
3001 free_line_header (lh);
3002 }
3003
3004 static hashval_t
3005 hash_type_signature (const void *item)
3006 {
3007 const struct signatured_type *type_sig = item;
3008
3009 /* This drops the top 32 bits of the signature, but is ok for a hash. */
3010 return type_sig->signature;
3011 }
3012
3013 static int
3014 eq_type_signature (const void *item_lhs, const void *item_rhs)
3015 {
3016 const struct signatured_type *lhs = item_lhs;
3017 const struct signatured_type *rhs = item_rhs;
3018
3019 return lhs->signature == rhs->signature;
3020 }
3021
3022 /* Allocate a hash table for signatured types. */
3023
3024 static htab_t
3025 allocate_signatured_type_table (struct objfile *objfile)
3026 {
3027 return htab_create_alloc_ex (41,
3028 hash_type_signature,
3029 eq_type_signature,
3030 NULL,
3031 &objfile->objfile_obstack,
3032 hashtab_obstack_allocate,
3033 dummy_obstack_deallocate);
3034 }
3035
3036 /* A helper function to add a signatured type CU to a list. */
3037
3038 static int
3039 add_signatured_type_cu_to_list (void **slot, void *datum)
3040 {
3041 struct signatured_type *sigt = *slot;
3042 struct dwarf2_per_cu_data ***datap = datum;
3043
3044 **datap = &sigt->per_cu;
3045 ++*datap;
3046
3047 return 1;
3048 }
3049
3050 /* Create the hash table of all entries in the .debug_types section.
3051 The result is zero if there is an error (e.g. missing .debug_types section),
3052 otherwise non-zero. */
3053
3054 static int
3055 create_debug_types_hash_table (struct objfile *objfile)
3056 {
3057 gdb_byte *info_ptr;
3058 htab_t types_htab;
3059 struct dwarf2_per_cu_data **iter;
3060
3061 dwarf2_read_section (objfile, &dwarf2_per_objfile->types);
3062 info_ptr = dwarf2_per_objfile->types.buffer;
3063
3064 if (info_ptr == NULL)
3065 {
3066 dwarf2_per_objfile->signatured_types = NULL;
3067 return 0;
3068 }
3069
3070 types_htab = allocate_signatured_type_table (objfile);
3071
3072 if (dwarf2_die_debug)
3073 fprintf_unfiltered (gdb_stdlog, "Signatured types:\n");
3074
3075 while (info_ptr < dwarf2_per_objfile->types.buffer
3076 + dwarf2_per_objfile->types.size)
3077 {
3078 unsigned int offset;
3079 unsigned int offset_size;
3080 unsigned int type_offset;
3081 unsigned int length, initial_length_size;
3082 unsigned short version;
3083 ULONGEST signature;
3084 struct signatured_type *type_sig;
3085 void **slot;
3086 gdb_byte *ptr = info_ptr;
3087
3088 offset = ptr - dwarf2_per_objfile->types.buffer;
3089
3090 /* We need to read the type's signature in order to build the hash
3091 table, but we don't need to read anything else just yet. */
3092
3093 /* Sanity check to ensure entire cu is present. */
3094 length = read_initial_length (objfile->obfd, ptr, &initial_length_size);
3095 if (ptr + length + initial_length_size
3096 > dwarf2_per_objfile->types.buffer + dwarf2_per_objfile->types.size)
3097 {
3098 complaint (&symfile_complaints,
3099 _("debug type entry runs off end "
3100 "of `.debug_types' section, ignored"));
3101 break;
3102 }
3103
3104 offset_size = initial_length_size == 4 ? 4 : 8;
3105 ptr += initial_length_size;
3106 version = bfd_get_16 (objfile->obfd, ptr);
3107 ptr += 2;
3108 ptr += offset_size; /* abbrev offset */
3109 ptr += 1; /* address size */
3110 signature = bfd_get_64 (objfile->obfd, ptr);
3111 ptr += 8;
3112 type_offset = read_offset_1 (objfile->obfd, ptr, offset_size);
3113
3114 type_sig = obstack_alloc (&objfile->objfile_obstack, sizeof (*type_sig));
3115 memset (type_sig, 0, sizeof (*type_sig));
3116 type_sig->signature = signature;
3117 type_sig->type_offset = type_offset;
3118 type_sig->per_cu.objfile = objfile;
3119 type_sig->per_cu.from_debug_types = 1;
3120 type_sig->per_cu.offset = offset;
3121
3122 slot = htab_find_slot (types_htab, type_sig, INSERT);
3123 gdb_assert (slot != NULL);
3124 if (*slot != NULL)
3125 {
3126 const struct signatured_type *dup_sig = *slot;
3127
3128 complaint (&symfile_complaints,
3129 _("debug type entry at offset 0x%x is duplicate to the "
3130 "entry at offset 0x%x, signature 0x%s"),
3131 offset, dup_sig->per_cu.offset,
3132 phex (signature, sizeof (signature)));
3133 gdb_assert (signature == dup_sig->signature);
3134 }
3135 *slot = type_sig;
3136
3137 if (dwarf2_die_debug)
3138 fprintf_unfiltered (gdb_stdlog, " offset 0x%x, signature 0x%s\n",
3139 offset, phex (signature, sizeof (signature)));
3140
3141 info_ptr = info_ptr + initial_length_size + length;
3142 }
3143
3144 dwarf2_per_objfile->signatured_types = types_htab;
3145
3146 dwarf2_per_objfile->n_type_comp_units = htab_elements (types_htab);
3147 dwarf2_per_objfile->type_comp_units
3148 = obstack_alloc (&objfile->objfile_obstack,
3149 dwarf2_per_objfile->n_type_comp_units
3150 * sizeof (struct dwarf2_per_cu_data *));
3151 iter = &dwarf2_per_objfile->type_comp_units[0];
3152 htab_traverse_noresize (types_htab, add_signatured_type_cu_to_list, &iter);
3153 gdb_assert (iter - &dwarf2_per_objfile->type_comp_units[0]
3154 == dwarf2_per_objfile->n_type_comp_units);
3155
3156 return 1;
3157 }
3158
3159 /* Lookup a signature based type.
3160 Returns NULL if SIG is not present in the table. */
3161
3162 static struct signatured_type *
3163 lookup_signatured_type (struct objfile *objfile, ULONGEST sig)
3164 {
3165 struct signatured_type find_entry, *entry;
3166
3167 if (dwarf2_per_objfile->signatured_types == NULL)
3168 {
3169 complaint (&symfile_complaints,
3170 _("missing `.debug_types' section for DW_FORM_ref_sig8 die"));
3171 return 0;
3172 }
3173
3174 find_entry.signature = sig;
3175 entry = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
3176 return entry;
3177 }
3178
3179 /* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
3180
3181 static void
3182 init_cu_die_reader (struct die_reader_specs *reader,
3183 struct dwarf2_cu *cu)
3184 {
3185 reader->abfd = cu->objfile->obfd;
3186 reader->cu = cu;
3187 if (cu->per_cu->from_debug_types)
3188 {
3189 gdb_assert (dwarf2_per_objfile->types.readin);
3190 reader->buffer = dwarf2_per_objfile->types.buffer;
3191 }
3192 else
3193 {
3194 gdb_assert (dwarf2_per_objfile->info.readin);
3195 reader->buffer = dwarf2_per_objfile->info.buffer;
3196 }
3197 }
3198
3199 /* Find the base address of the compilation unit for range lists and
3200 location lists. It will normally be specified by DW_AT_low_pc.
3201 In DWARF-3 draft 4, the base address could be overridden by
3202 DW_AT_entry_pc. It's been removed, but GCC still uses this for
3203 compilation units with discontinuous ranges. */
3204
3205 static void
3206 dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
3207 {
3208 struct attribute *attr;
3209
3210 cu->base_known = 0;
3211 cu->base_address = 0;
3212
3213 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
3214 if (attr)
3215 {
3216 cu->base_address = DW_ADDR (attr);
3217 cu->base_known = 1;
3218 }
3219 else
3220 {
3221 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
3222 if (attr)
3223 {
3224 cu->base_address = DW_ADDR (attr);
3225 cu->base_known = 1;
3226 }
3227 }
3228 }
3229
3230 /* Subroutine of process_type_comp_unit and dwarf2_build_psymtabs_hard
3231 to combine the common parts.
3232 Process a compilation unit for a psymtab.
3233 BUFFER is a pointer to the beginning of the dwarf section buffer,
3234 either .debug_info or debug_types.
3235 INFO_PTR is a pointer to the start of the CU.
3236 Returns a pointer to the next CU. */
3237
3238 static gdb_byte *
3239 process_psymtab_comp_unit (struct objfile *objfile,
3240 struct dwarf2_per_cu_data *this_cu,
3241 gdb_byte *buffer, gdb_byte *info_ptr,
3242 unsigned int buffer_size)
3243 {
3244 bfd *abfd = objfile->obfd;
3245 gdb_byte *beg_of_comp_unit = info_ptr;
3246 struct die_info *comp_unit_die;
3247 struct partial_symtab *pst;
3248 CORE_ADDR baseaddr;
3249 struct cleanup *back_to_inner;
3250 struct dwarf2_cu cu;
3251 int has_children, has_pc_info;
3252 struct attribute *attr;
3253 CORE_ADDR best_lowpc = 0, best_highpc = 0;
3254 struct die_reader_specs reader_specs;
3255 const char *filename;
3256
3257 init_one_comp_unit (&cu, objfile);
3258 back_to_inner = make_cleanup (free_stack_comp_unit, &cu);
3259
3260 info_ptr = partial_read_comp_unit_head (&cu.header, info_ptr,
3261 buffer, buffer_size,
3262 abfd);
3263
3264 /* Complete the cu_header. */
3265 cu.header.offset = beg_of_comp_unit - buffer;
3266 cu.header.first_die_offset = info_ptr - beg_of_comp_unit;
3267
3268 cu.list_in_scope = &file_symbols;
3269
3270 /* If this compilation unit was already read in, free the
3271 cached copy in order to read it in again. This is
3272 necessary because we skipped some symbols when we first
3273 read in the compilation unit (see load_partial_dies).
3274 This problem could be avoided, but the benefit is
3275 unclear. */
3276 if (this_cu->cu != NULL)
3277 free_one_cached_comp_unit (this_cu->cu);
3278
3279 /* Note that this is a pointer to our stack frame, being
3280 added to a global data structure. It will be cleaned up
3281 in free_stack_comp_unit when we finish with this
3282 compilation unit. */
3283 this_cu->cu = &cu;
3284 cu.per_cu = this_cu;
3285
3286 /* Read the abbrevs for this compilation unit into a table. */
3287 dwarf2_read_abbrevs (abfd, &cu);
3288 make_cleanup (dwarf2_free_abbrev_table, &cu);
3289
3290 /* Read the compilation unit die. */
3291 if (this_cu->from_debug_types)
3292 info_ptr += 8 /*signature*/ + cu.header.offset_size;
3293 init_cu_die_reader (&reader_specs, &cu);
3294 info_ptr = read_full_die (&reader_specs, &comp_unit_die, info_ptr,
3295 &has_children);
3296
3297 if (this_cu->from_debug_types)
3298 {
3299 /* LENGTH has not been set yet for type units. */
3300 gdb_assert (this_cu->offset == cu.header.offset);
3301 this_cu->length = cu.header.length + cu.header.initial_length_size;
3302 }
3303 else if (comp_unit_die->tag == DW_TAG_partial_unit)
3304 {
3305 info_ptr = (beg_of_comp_unit + cu.header.length
3306 + cu.header.initial_length_size);
3307 do_cleanups (back_to_inner);
3308 return info_ptr;
3309 }
3310
3311 prepare_one_comp_unit (&cu, comp_unit_die);
3312
3313 /* Allocate a new partial symbol table structure. */
3314 attr = dwarf2_attr (comp_unit_die, DW_AT_name, &cu);
3315 if (attr == NULL || !DW_STRING (attr))
3316 filename = "";
3317 else
3318 filename = DW_STRING (attr);
3319 pst = start_psymtab_common (objfile, objfile->section_offsets,
3320 filename,
3321 /* TEXTLOW and TEXTHIGH are set below. */
3322 0,
3323 objfile->global_psymbols.next,
3324 objfile->static_psymbols.next);
3325
3326 attr = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, &cu);
3327 if (attr != NULL)
3328 pst->dirname = DW_STRING (attr);
3329
3330 pst->read_symtab_private = this_cu;
3331
3332 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3333
3334 /* Store the function that reads in the rest of the symbol table. */
3335 pst->read_symtab = dwarf2_psymtab_to_symtab;
3336
3337 this_cu->v.psymtab = pst;
3338
3339 dwarf2_find_base_address (comp_unit_die, &cu);
3340
3341 /* Possibly set the default values of LOWPC and HIGHPC from
3342 `DW_AT_ranges'. */
3343 has_pc_info = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
3344 &best_highpc, &cu, pst);
3345 if (has_pc_info == 1 && best_lowpc < best_highpc)
3346 /* Store the contiguous range if it is not empty; it can be empty for
3347 CUs with no code. */
3348 addrmap_set_empty (objfile->psymtabs_addrmap,
3349 best_lowpc + baseaddr,
3350 best_highpc + baseaddr - 1, pst);
3351
3352 /* Check if comp unit has_children.
3353 If so, read the rest of the partial symbols from this comp unit.
3354 If not, there's no more debug_info for this comp unit. */
3355 if (has_children)
3356 {
3357 struct partial_die_info *first_die;
3358 CORE_ADDR lowpc, highpc;
3359
3360 lowpc = ((CORE_ADDR) -1);
3361 highpc = ((CORE_ADDR) 0);
3362
3363 first_die = load_partial_dies (abfd, buffer, info_ptr, 1, &cu);
3364
3365 scan_partial_symbols (first_die, &lowpc, &highpc,
3366 ! has_pc_info, &cu);
3367
3368 /* If we didn't find a lowpc, set it to highpc to avoid
3369 complaints from `maint check'. */
3370 if (lowpc == ((CORE_ADDR) -1))
3371 lowpc = highpc;
3372
3373 /* If the compilation unit didn't have an explicit address range,
3374 then use the information extracted from its child dies. */
3375 if (! has_pc_info)
3376 {
3377 best_lowpc = lowpc;
3378 best_highpc = highpc;
3379 }
3380 }
3381 pst->textlow = best_lowpc + baseaddr;
3382 pst->texthigh = best_highpc + baseaddr;
3383
3384 pst->n_global_syms = objfile->global_psymbols.next -
3385 (objfile->global_psymbols.list + pst->globals_offset);
3386 pst->n_static_syms = objfile->static_psymbols.next -
3387 (objfile->static_psymbols.list + pst->statics_offset);
3388 sort_pst_symbols (pst);
3389
3390 info_ptr = (beg_of_comp_unit + cu.header.length
3391 + cu.header.initial_length_size);
3392
3393 if (this_cu->from_debug_types)
3394 {
3395 /* It's not clear we want to do anything with stmt lists here.
3396 Waiting to see what gcc ultimately does. */
3397 }
3398 else
3399 {
3400 /* Get the list of files included in the current compilation unit,
3401 and build a psymtab for each of them. */
3402 dwarf2_build_include_psymtabs (&cu, comp_unit_die, pst);
3403 }
3404
3405 do_cleanups (back_to_inner);
3406
3407 return info_ptr;
3408 }
3409
3410 /* Traversal function for htab_traverse_noresize.
3411 Process one .debug_types comp-unit. */
3412
3413 static int
3414 process_type_comp_unit (void **slot, void *info)
3415 {
3416 struct signatured_type *entry = (struct signatured_type *) *slot;
3417 struct objfile *objfile = (struct objfile *) info;
3418 struct dwarf2_per_cu_data *this_cu;
3419
3420 this_cu = &entry->per_cu;
3421
3422 gdb_assert (dwarf2_per_objfile->types.readin);
3423 process_psymtab_comp_unit (objfile, this_cu,
3424 dwarf2_per_objfile->types.buffer,
3425 dwarf2_per_objfile->types.buffer + this_cu->offset,
3426 dwarf2_per_objfile->types.size);
3427
3428 return 1;
3429 }
3430
3431 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
3432 Build partial symbol tables for the .debug_types comp-units. */
3433
3434 static void
3435 build_type_psymtabs (struct objfile *objfile)
3436 {
3437 if (! create_debug_types_hash_table (objfile))
3438 return;
3439
3440 htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
3441 process_type_comp_unit, objfile);
3442 }
3443
3444 /* A cleanup function that clears objfile's psymtabs_addrmap field. */
3445
3446 static void
3447 psymtabs_addrmap_cleanup (void *o)
3448 {
3449 struct objfile *objfile = o;
3450
3451 objfile->psymtabs_addrmap = NULL;
3452 }
3453
3454 /* Build the partial symbol table by doing a quick pass through the
3455 .debug_info and .debug_abbrev sections. */
3456
3457 static void
3458 dwarf2_build_psymtabs_hard (struct objfile *objfile)
3459 {
3460 gdb_byte *info_ptr;
3461 struct cleanup *back_to, *addrmap_cleanup;
3462 struct obstack temp_obstack;
3463
3464 dwarf2_per_objfile->reading_partial_symbols = 1;
3465
3466 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
3467 info_ptr = dwarf2_per_objfile->info.buffer;
3468
3469 /* Any cached compilation units will be linked by the per-objfile
3470 read_in_chain. Make sure to free them when we're done. */
3471 back_to = make_cleanup (free_cached_comp_units, NULL);
3472
3473 build_type_psymtabs (objfile);
3474
3475 create_all_comp_units (objfile);
3476
3477 /* Create a temporary address map on a temporary obstack. We later
3478 copy this to the final obstack. */
3479 obstack_init (&temp_obstack);
3480 make_cleanup_obstack_free (&temp_obstack);
3481 objfile->psymtabs_addrmap = addrmap_create_mutable (&temp_obstack);
3482 addrmap_cleanup = make_cleanup (psymtabs_addrmap_cleanup, objfile);
3483
3484 /* Since the objects we're extracting from .debug_info vary in
3485 length, only the individual functions to extract them (like
3486 read_comp_unit_head and load_partial_die) can really know whether
3487 the buffer is large enough to hold another complete object.
3488
3489 At the moment, they don't actually check that. If .debug_info
3490 holds just one extra byte after the last compilation unit's dies,
3491 then read_comp_unit_head will happily read off the end of the
3492 buffer. read_partial_die is similarly casual. Those functions
3493 should be fixed.
3494
3495 For this loop condition, simply checking whether there's any data
3496 left at all should be sufficient. */
3497
3498 while (info_ptr < (dwarf2_per_objfile->info.buffer
3499 + dwarf2_per_objfile->info.size))
3500 {
3501 struct dwarf2_per_cu_data *this_cu;
3502
3503 this_cu = dwarf2_find_comp_unit (info_ptr
3504 - dwarf2_per_objfile->info.buffer,
3505 objfile);
3506
3507 info_ptr = process_psymtab_comp_unit (objfile, this_cu,
3508 dwarf2_per_objfile->info.buffer,
3509 info_ptr,
3510 dwarf2_per_objfile->info.size);
3511 }
3512
3513 objfile->psymtabs_addrmap = addrmap_create_fixed (objfile->psymtabs_addrmap,
3514 &objfile->objfile_obstack);
3515 discard_cleanups (addrmap_cleanup);
3516
3517 do_cleanups (back_to);
3518 }
3519
3520 /* Load the partial DIEs for a secondary CU into memory. */
3521
3522 static void
3523 load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu,
3524 struct objfile *objfile)
3525 {
3526 bfd *abfd = objfile->obfd;
3527 gdb_byte *info_ptr, *beg_of_comp_unit;
3528 struct die_info *comp_unit_die;
3529 struct dwarf2_cu *cu;
3530 struct cleanup *free_abbrevs_cleanup, *free_cu_cleanup = NULL;
3531 int has_children;
3532 struct die_reader_specs reader_specs;
3533 int read_cu = 0;
3534
3535 gdb_assert (! this_cu->from_debug_types);
3536
3537 gdb_assert (dwarf2_per_objfile->info.readin);
3538 info_ptr = dwarf2_per_objfile->info.buffer + this_cu->offset;
3539 beg_of_comp_unit = info_ptr;
3540
3541 if (this_cu->cu == NULL)
3542 {
3543 cu = xmalloc (sizeof (*cu));
3544 init_one_comp_unit (cu, objfile);
3545
3546 read_cu = 1;
3547
3548 /* If an error occurs while loading, release our storage. */
3549 free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
3550
3551 info_ptr = partial_read_comp_unit_head (&cu->header, info_ptr,
3552 dwarf2_per_objfile->info.buffer,
3553 dwarf2_per_objfile->info.size,
3554 abfd);
3555
3556 /* Complete the cu_header. */
3557 cu->header.offset = this_cu->offset;
3558 cu->header.first_die_offset = info_ptr - beg_of_comp_unit;
3559
3560 /* Link this compilation unit into the compilation unit tree. */
3561 this_cu->cu = cu;
3562 cu->per_cu = this_cu;
3563
3564 /* Link this CU into read_in_chain. */
3565 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
3566 dwarf2_per_objfile->read_in_chain = this_cu;
3567 }
3568 else
3569 {
3570 cu = this_cu->cu;
3571 info_ptr += cu->header.first_die_offset;
3572 }
3573
3574 /* Read the abbrevs for this compilation unit into a table. */
3575 gdb_assert (cu->dwarf2_abbrevs == NULL);
3576 dwarf2_read_abbrevs (abfd, cu);
3577 free_abbrevs_cleanup = make_cleanup (dwarf2_free_abbrev_table, cu);
3578
3579 /* Read the compilation unit die. */
3580 init_cu_die_reader (&reader_specs, cu);
3581 info_ptr = read_full_die (&reader_specs, &comp_unit_die, info_ptr,
3582 &has_children);
3583
3584 prepare_one_comp_unit (cu, comp_unit_die);
3585
3586 /* Check if comp unit has_children.
3587 If so, read the rest of the partial symbols from this comp unit.
3588 If not, there's no more debug_info for this comp unit. */
3589 if (has_children)
3590 load_partial_dies (abfd, dwarf2_per_objfile->info.buffer, info_ptr, 0, cu);
3591
3592 do_cleanups (free_abbrevs_cleanup);
3593
3594 if (read_cu)
3595 {
3596 /* We've successfully allocated this compilation unit. Let our
3597 caller clean it up when finished with it. */
3598 discard_cleanups (free_cu_cleanup);
3599 }
3600 }
3601
3602 /* Create a list of all compilation units in OBJFILE. We do this only
3603 if an inter-comp-unit reference is found; presumably if there is one,
3604 there will be many, and one will occur early in the .debug_info section.
3605 So there's no point in building this list incrementally. */
3606
3607 static void
3608 create_all_comp_units (struct objfile *objfile)
3609 {
3610 int n_allocated;
3611 int n_comp_units;
3612 struct dwarf2_per_cu_data **all_comp_units;
3613 gdb_byte *info_ptr;
3614
3615 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
3616 info_ptr = dwarf2_per_objfile->info.buffer;
3617
3618 n_comp_units = 0;
3619 n_allocated = 10;
3620 all_comp_units = xmalloc (n_allocated
3621 * sizeof (struct dwarf2_per_cu_data *));
3622
3623 while (info_ptr < dwarf2_per_objfile->info.buffer
3624 + dwarf2_per_objfile->info.size)
3625 {
3626 unsigned int length, initial_length_size;
3627 struct dwarf2_per_cu_data *this_cu;
3628 unsigned int offset;
3629
3630 offset = info_ptr - dwarf2_per_objfile->info.buffer;
3631
3632 /* Read just enough information to find out where the next
3633 compilation unit is. */
3634 length = read_initial_length (objfile->obfd, info_ptr,
3635 &initial_length_size);
3636
3637 /* Save the compilation unit for later lookup. */
3638 this_cu = obstack_alloc (&objfile->objfile_obstack,
3639 sizeof (struct dwarf2_per_cu_data));
3640 memset (this_cu, 0, sizeof (*this_cu));
3641 this_cu->offset = offset;
3642 this_cu->length = length + initial_length_size;
3643 this_cu->objfile = objfile;
3644
3645 if (n_comp_units == n_allocated)
3646 {
3647 n_allocated *= 2;
3648 all_comp_units = xrealloc (all_comp_units,
3649 n_allocated
3650 * sizeof (struct dwarf2_per_cu_data *));
3651 }
3652 all_comp_units[n_comp_units++] = this_cu;
3653
3654 info_ptr = info_ptr + this_cu->length;
3655 }
3656
3657 dwarf2_per_objfile->all_comp_units
3658 = obstack_alloc (&objfile->objfile_obstack,
3659 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
3660 memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
3661 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
3662 xfree (all_comp_units);
3663 dwarf2_per_objfile->n_comp_units = n_comp_units;
3664 }
3665
3666 /* Process all loaded DIEs for compilation unit CU, starting at
3667 FIRST_DIE. The caller should pass NEED_PC == 1 if the compilation
3668 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
3669 DW_AT_ranges). If NEED_PC is set, then this function will set
3670 *LOWPC and *HIGHPC to the lowest and highest PC values found in CU
3671 and record the covered ranges in the addrmap. */
3672
3673 static void
3674 scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
3675 CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
3676 {
3677 struct partial_die_info *pdi;
3678
3679 /* Now, march along the PDI's, descending into ones which have
3680 interesting children but skipping the children of the other ones,
3681 until we reach the end of the compilation unit. */
3682
3683 pdi = first_die;
3684
3685 while (pdi != NULL)
3686 {
3687 fixup_partial_die (pdi, cu);
3688
3689 /* Anonymous namespaces or modules have no name but have interesting
3690 children, so we need to look at them. Ditto for anonymous
3691 enums. */
3692
3693 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
3694 || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type)
3695 {
3696 switch (pdi->tag)
3697 {
3698 case DW_TAG_subprogram:
3699 add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
3700 break;
3701 case DW_TAG_constant:
3702 case DW_TAG_variable:
3703 case DW_TAG_typedef:
3704 case DW_TAG_union_type:
3705 if (!pdi->is_declaration)
3706 {
3707 add_partial_symbol (pdi, cu);
3708 }
3709 break;
3710 case DW_TAG_class_type:
3711 case DW_TAG_interface_type:
3712 case DW_TAG_structure_type:
3713 if (!pdi->is_declaration)
3714 {
3715 add_partial_symbol (pdi, cu);
3716 }
3717 break;
3718 case DW_TAG_enumeration_type:
3719 if (!pdi->is_declaration)
3720 add_partial_enumeration (pdi, cu);
3721 break;
3722 case DW_TAG_base_type:
3723 case DW_TAG_subrange_type:
3724 /* File scope base type definitions are added to the partial
3725 symbol table. */
3726 add_partial_symbol (pdi, cu);
3727 break;
3728 case DW_TAG_namespace:
3729 add_partial_namespace (pdi, lowpc, highpc, need_pc, cu);
3730 break;
3731 case DW_TAG_module:
3732 add_partial_module (pdi, lowpc, highpc, need_pc, cu);
3733 break;
3734 default:
3735 break;
3736 }
3737 }
3738
3739 /* If the die has a sibling, skip to the sibling. */
3740
3741 pdi = pdi->die_sibling;
3742 }
3743 }
3744
3745 /* Functions used to compute the fully scoped name of a partial DIE.
3746
3747 Normally, this is simple. For C++, the parent DIE's fully scoped
3748 name is concatenated with "::" and the partial DIE's name. For
3749 Java, the same thing occurs except that "." is used instead of "::".
3750 Enumerators are an exception; they use the scope of their parent
3751 enumeration type, i.e. the name of the enumeration type is not
3752 prepended to the enumerator.
3753
3754 There are two complexities. One is DW_AT_specification; in this
3755 case "parent" means the parent of the target of the specification,
3756 instead of the direct parent of the DIE. The other is compilers
3757 which do not emit DW_TAG_namespace; in this case we try to guess
3758 the fully qualified name of structure types from their members'
3759 linkage names. This must be done using the DIE's children rather
3760 than the children of any DW_AT_specification target. We only need
3761 to do this for structures at the top level, i.e. if the target of
3762 any DW_AT_specification (if any; otherwise the DIE itself) does not
3763 have a parent. */
3764
3765 /* Compute the scope prefix associated with PDI's parent, in
3766 compilation unit CU. The result will be allocated on CU's
3767 comp_unit_obstack, or a copy of the already allocated PDI->NAME
3768 field. NULL is returned if no prefix is necessary. */
3769 static char *
3770 partial_die_parent_scope (struct partial_die_info *pdi,
3771 struct dwarf2_cu *cu)
3772 {
3773 char *grandparent_scope;
3774 struct partial_die_info *parent, *real_pdi;
3775
3776 /* We need to look at our parent DIE; if we have a DW_AT_specification,
3777 then this means the parent of the specification DIE. */
3778
3779 real_pdi = pdi;
3780 while (real_pdi->has_specification)
3781 real_pdi = find_partial_die (real_pdi->spec_offset, cu);
3782
3783 parent = real_pdi->die_parent;
3784 if (parent == NULL)
3785 return NULL;
3786
3787 if (parent->scope_set)
3788 return parent->scope;
3789
3790 fixup_partial_die (parent, cu);
3791
3792 grandparent_scope = partial_die_parent_scope (parent, cu);
3793
3794 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
3795 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
3796 Work around this problem here. */
3797 if (cu->language == language_cplus
3798 && parent->tag == DW_TAG_namespace
3799 && strcmp (parent->name, "::") == 0
3800 && grandparent_scope == NULL)
3801 {
3802 parent->scope = NULL;
3803 parent->scope_set = 1;
3804 return NULL;
3805 }
3806
3807 if (parent->tag == DW_TAG_namespace
3808 || parent->tag == DW_TAG_module
3809 || parent->tag == DW_TAG_structure_type
3810 || parent->tag == DW_TAG_class_type
3811 || parent->tag == DW_TAG_interface_type
3812 || parent->tag == DW_TAG_union_type
3813 || parent->tag == DW_TAG_enumeration_type)
3814 {
3815 if (grandparent_scope == NULL)
3816 parent->scope = parent->name;
3817 else
3818 parent->scope = typename_concat (&cu->comp_unit_obstack,
3819 grandparent_scope,
3820 parent->name, 0, cu);
3821 }
3822 else if (parent->tag == DW_TAG_enumerator)
3823 /* Enumerators should not get the name of the enumeration as a prefix. */
3824 parent->scope = grandparent_scope;
3825 else
3826 {
3827 /* FIXME drow/2004-04-01: What should we be doing with
3828 function-local names? For partial symbols, we should probably be
3829 ignoring them. */
3830 complaint (&symfile_complaints,
3831 _("unhandled containing DIE tag %d for DIE at %d"),
3832 parent->tag, pdi->offset);
3833 parent->scope = grandparent_scope;
3834 }
3835
3836 parent->scope_set = 1;
3837 return parent->scope;
3838 }
3839
3840 /* Return the fully scoped name associated with PDI, from compilation unit
3841 CU. The result will be allocated with malloc. */
3842 static char *
3843 partial_die_full_name (struct partial_die_info *pdi,
3844 struct dwarf2_cu *cu)
3845 {
3846 char *parent_scope;
3847
3848 /* If this is a template instantiation, we can not work out the
3849 template arguments from partial DIEs. So, unfortunately, we have
3850 to go through the full DIEs. At least any work we do building
3851 types here will be reused if full symbols are loaded later. */
3852 if (pdi->has_template_arguments)
3853 {
3854 fixup_partial_die (pdi, cu);
3855
3856 if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
3857 {
3858 struct die_info *die;
3859 struct attribute attr;
3860 struct dwarf2_cu *ref_cu = cu;
3861
3862 attr.name = 0;
3863 attr.form = DW_FORM_ref_addr;
3864 attr.u.addr = pdi->offset;
3865 die = follow_die_ref (NULL, &attr, &ref_cu);
3866
3867 return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
3868 }
3869 }
3870
3871 parent_scope = partial_die_parent_scope (pdi, cu);
3872 if (parent_scope == NULL)
3873 return NULL;
3874 else
3875 return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
3876 }
3877
3878 static void
3879 add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
3880 {
3881 struct objfile *objfile = cu->objfile;
3882 CORE_ADDR addr = 0;
3883 char *actual_name = NULL;
3884 const struct partial_symbol *psym = NULL;
3885 CORE_ADDR baseaddr;
3886 int built_actual_name = 0;
3887
3888 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3889
3890 actual_name = partial_die_full_name (pdi, cu);
3891 if (actual_name)
3892 built_actual_name = 1;
3893
3894 if (actual_name == NULL)
3895 actual_name = pdi->name;
3896
3897 switch (pdi->tag)
3898 {
3899 case DW_TAG_subprogram:
3900 if (pdi->is_external || cu->language == language_ada)
3901 {
3902 /* brobecker/2007-12-26: Normally, only "external" DIEs are part
3903 of the global scope. But in Ada, we want to be able to access
3904 nested procedures globally. So all Ada subprograms are stored
3905 in the global scope. */
3906 /* prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
3907 mst_text, objfile); */
3908 add_psymbol_to_list (actual_name, strlen (actual_name),
3909 built_actual_name,
3910 VAR_DOMAIN, LOC_BLOCK,
3911 &objfile->global_psymbols,
3912 0, pdi->lowpc + baseaddr,
3913 cu->language, objfile);
3914 }
3915 else
3916 {
3917 /* prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
3918 mst_file_text, objfile); */
3919 add_psymbol_to_list (actual_name, strlen (actual_name),
3920 built_actual_name,
3921 VAR_DOMAIN, LOC_BLOCK,
3922 &objfile->static_psymbols,
3923 0, pdi->lowpc + baseaddr,
3924 cu->language, objfile);
3925 }
3926 break;
3927 case DW_TAG_constant:
3928 {
3929 struct psymbol_allocation_list *list;
3930
3931 if (pdi->is_external)
3932 list = &objfile->global_psymbols;
3933 else
3934 list = &objfile->static_psymbols;
3935 add_psymbol_to_list (actual_name, strlen (actual_name),
3936 built_actual_name, VAR_DOMAIN, LOC_STATIC,
3937 list, 0, 0, cu->language, objfile);
3938 }
3939 break;
3940 case DW_TAG_variable:
3941 if (pdi->locdesc)
3942 addr = decode_locdesc (pdi->locdesc, cu);
3943
3944 if (pdi->locdesc
3945 && addr == 0
3946 && !dwarf2_per_objfile->has_section_at_zero)
3947 {
3948 /* A global or static variable may also have been stripped
3949 out by the linker if unused, in which case its address
3950 will be nullified; do not add such variables into partial
3951 symbol table then. */
3952 }
3953 else if (pdi->is_external)
3954 {
3955 /* Global Variable.
3956 Don't enter into the minimal symbol tables as there is
3957 a minimal symbol table entry from the ELF symbols already.
3958 Enter into partial symbol table if it has a location
3959 descriptor or a type.
3960 If the location descriptor is missing, new_symbol will create
3961 a LOC_UNRESOLVED symbol, the address of the variable will then
3962 be determined from the minimal symbol table whenever the variable
3963 is referenced.
3964 The address for the partial symbol table entry is not
3965 used by GDB, but it comes in handy for debugging partial symbol
3966 table building. */
3967
3968 if (pdi->locdesc || pdi->has_type)
3969 add_psymbol_to_list (actual_name, strlen (actual_name),
3970 built_actual_name,
3971 VAR_DOMAIN, LOC_STATIC,
3972 &objfile->global_psymbols,
3973 0, addr + baseaddr,
3974 cu->language, objfile);
3975 }
3976 else
3977 {
3978 /* Static Variable. Skip symbols without location descriptors. */
3979 if (pdi->locdesc == NULL)
3980 {
3981 if (built_actual_name)
3982 xfree (actual_name);
3983 return;
3984 }
3985 /* prim_record_minimal_symbol (actual_name, addr + baseaddr,
3986 mst_file_data, objfile); */
3987 add_psymbol_to_list (actual_name, strlen (actual_name),
3988 built_actual_name,
3989 VAR_DOMAIN, LOC_STATIC,
3990 &objfile->static_psymbols,
3991 0, addr + baseaddr,
3992 cu->language, objfile);
3993 }
3994 break;
3995 case DW_TAG_typedef:
3996 case DW_TAG_base_type:
3997 case DW_TAG_subrange_type:
3998 add_psymbol_to_list (actual_name, strlen (actual_name),
3999 built_actual_name,
4000 VAR_DOMAIN, LOC_TYPEDEF,
4001 &objfile->static_psymbols,
4002 0, (CORE_ADDR) 0, cu->language, objfile);
4003 break;
4004 case DW_TAG_namespace:
4005 add_psymbol_to_list (actual_name, strlen (actual_name),
4006 built_actual_name,
4007 VAR_DOMAIN, LOC_TYPEDEF,
4008 &objfile->global_psymbols,
4009 0, (CORE_ADDR) 0, cu->language, objfile);
4010 break;
4011 case DW_TAG_class_type:
4012 case DW_TAG_interface_type:
4013 case DW_TAG_structure_type:
4014 case DW_TAG_union_type:
4015 case DW_TAG_enumeration_type:
4016 /* Skip external references. The DWARF standard says in the section
4017 about "Structure, Union, and Class Type Entries": "An incomplete
4018 structure, union or class type is represented by a structure,
4019 union or class entry that does not have a byte size attribute
4020 and that has a DW_AT_declaration attribute." */
4021 if (!pdi->has_byte_size && pdi->is_declaration)
4022 {
4023 if (built_actual_name)
4024 xfree (actual_name);
4025 return;
4026 }
4027
4028 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
4029 static vs. global. */
4030 add_psymbol_to_list (actual_name, strlen (actual_name),
4031 built_actual_name,
4032 STRUCT_DOMAIN, LOC_TYPEDEF,
4033 (cu->language == language_cplus
4034 || cu->language == language_java)
4035 ? &objfile->global_psymbols
4036 : &objfile->static_psymbols,
4037 0, (CORE_ADDR) 0, cu->language, objfile);
4038
4039 break;
4040 case DW_TAG_enumerator:
4041 add_psymbol_to_list (actual_name, strlen (actual_name),
4042 built_actual_name,
4043 VAR_DOMAIN, LOC_CONST,
4044 (cu->language == language_cplus
4045 || cu->language == language_java)
4046 ? &objfile->global_psymbols
4047 : &objfile->static_psymbols,
4048 0, (CORE_ADDR) 0, cu->language, objfile);
4049 break;
4050 default:
4051 break;
4052 }
4053
4054 if (built_actual_name)
4055 xfree (actual_name);
4056 }
4057
4058 /* Read a partial die corresponding to a namespace; also, add a symbol
4059 corresponding to that namespace to the symbol table. NAMESPACE is
4060 the name of the enclosing namespace. */
4061
4062 static void
4063 add_partial_namespace (struct partial_die_info *pdi,
4064 CORE_ADDR *lowpc, CORE_ADDR *highpc,
4065 int need_pc, struct dwarf2_cu *cu)
4066 {
4067 /* Add a symbol for the namespace. */
4068
4069 add_partial_symbol (pdi, cu);
4070
4071 /* Now scan partial symbols in that namespace. */
4072
4073 if (pdi->has_children)
4074 scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
4075 }
4076
4077 /* Read a partial die corresponding to a Fortran module. */
4078
4079 static void
4080 add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
4081 CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
4082 {
4083 /* Now scan partial symbols in that module. */
4084
4085 if (pdi->has_children)
4086 scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
4087 }
4088
4089 /* Read a partial die corresponding to a subprogram and create a partial
4090 symbol for that subprogram. When the CU language allows it, this
4091 routine also defines a partial symbol for each nested subprogram
4092 that this subprogram contains.
4093
4094 DIE my also be a lexical block, in which case we simply search
4095 recursively for suprograms defined inside that lexical block.
4096 Again, this is only performed when the CU language allows this
4097 type of definitions. */
4098
4099 static void
4100 add_partial_subprogram (struct partial_die_info *pdi,
4101 CORE_ADDR *lowpc, CORE_ADDR *highpc,
4102 int need_pc, struct dwarf2_cu *cu)
4103 {
4104 if (pdi->tag == DW_TAG_subprogram)
4105 {
4106 if (pdi->has_pc_info)
4107 {
4108 if (pdi->lowpc < *lowpc)
4109 *lowpc = pdi->lowpc;
4110 if (pdi->highpc > *highpc)
4111 *highpc = pdi->highpc;
4112 if (need_pc)
4113 {
4114 CORE_ADDR baseaddr;
4115 struct objfile *objfile = cu->objfile;
4116
4117 baseaddr = ANOFFSET (objfile->section_offsets,
4118 SECT_OFF_TEXT (objfile));
4119 addrmap_set_empty (objfile->psymtabs_addrmap,
4120 pdi->lowpc + baseaddr,
4121 pdi->highpc - 1 + baseaddr,
4122 cu->per_cu->v.psymtab);
4123 }
4124 if (!pdi->is_declaration)
4125 /* Ignore subprogram DIEs that do not have a name, they are
4126 illegal. Do not emit a complaint at this point, we will
4127 do so when we convert this psymtab into a symtab. */
4128 if (pdi->name)
4129 add_partial_symbol (pdi, cu);
4130 }
4131 }
4132
4133 if (! pdi->has_children)
4134 return;
4135
4136 if (cu->language == language_ada)
4137 {
4138 pdi = pdi->die_child;
4139 while (pdi != NULL)
4140 {
4141 fixup_partial_die (pdi, cu);
4142 if (pdi->tag == DW_TAG_subprogram
4143 || pdi->tag == DW_TAG_lexical_block)
4144 add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
4145 pdi = pdi->die_sibling;
4146 }
4147 }
4148 }
4149
4150 /* Read a partial die corresponding to an enumeration type. */
4151
4152 static void
4153 add_partial_enumeration (struct partial_die_info *enum_pdi,
4154 struct dwarf2_cu *cu)
4155 {
4156 struct partial_die_info *pdi;
4157
4158 if (enum_pdi->name != NULL)
4159 add_partial_symbol (enum_pdi, cu);
4160
4161 pdi = enum_pdi->die_child;
4162 while (pdi)
4163 {
4164 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
4165 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
4166 else
4167 add_partial_symbol (pdi, cu);
4168 pdi = pdi->die_sibling;
4169 }
4170 }
4171
4172 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
4173 Return the corresponding abbrev, or NULL if the number is zero (indicating
4174 an empty DIE). In either case *BYTES_READ will be set to the length of
4175 the initial number. */
4176
4177 static struct abbrev_info *
4178 peek_die_abbrev (gdb_byte *info_ptr, unsigned int *bytes_read,
4179 struct dwarf2_cu *cu)
4180 {
4181 bfd *abfd = cu->objfile->obfd;
4182 unsigned int abbrev_number;
4183 struct abbrev_info *abbrev;
4184
4185 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
4186
4187 if (abbrev_number == 0)
4188 return NULL;
4189
4190 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
4191 if (!abbrev)
4192 {
4193 error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"),
4194 abbrev_number, bfd_get_filename (abfd));
4195 }
4196
4197 return abbrev;
4198 }
4199
4200 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
4201 Returns a pointer to the end of a series of DIEs, terminated by an empty
4202 DIE. Any children of the skipped DIEs will also be skipped. */
4203
4204 static gdb_byte *
4205 skip_children (gdb_byte *buffer, gdb_byte *info_ptr, struct dwarf2_cu *cu)
4206 {
4207 struct abbrev_info *abbrev;
4208 unsigned int bytes_read;
4209
4210 while (1)
4211 {
4212 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
4213 if (abbrev == NULL)
4214 return info_ptr + bytes_read;
4215 else
4216 info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
4217 }
4218 }
4219
4220 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
4221 INFO_PTR should point just after the initial uleb128 of a DIE, and the
4222 abbrev corresponding to that skipped uleb128 should be passed in
4223 ABBREV. Returns a pointer to this DIE's sibling, skipping any
4224 children. */
4225
4226 static gdb_byte *
4227 skip_one_die (gdb_byte *buffer, gdb_byte *info_ptr,
4228 struct abbrev_info *abbrev, struct dwarf2_cu *cu)
4229 {
4230 unsigned int bytes_read;
4231 struct attribute attr;
4232 bfd *abfd = cu->objfile->obfd;
4233 unsigned int form, i;
4234
4235 for (i = 0; i < abbrev->num_attrs; i++)
4236 {
4237 /* The only abbrev we care about is DW_AT_sibling. */
4238 if (abbrev->attrs[i].name == DW_AT_sibling)
4239 {
4240 read_attribute (&attr, &abbrev->attrs[i],
4241 abfd, info_ptr, cu);
4242 if (attr.form == DW_FORM_ref_addr)
4243 complaint (&symfile_complaints,
4244 _("ignoring absolute DW_AT_sibling"));
4245 else
4246 return buffer + dwarf2_get_ref_die_offset (&attr);
4247 }
4248
4249 /* If it isn't DW_AT_sibling, skip this attribute. */
4250 form = abbrev->attrs[i].form;
4251 skip_attribute:
4252 switch (form)
4253 {
4254 case DW_FORM_ref_addr:
4255 /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
4256 and later it is offset sized. */
4257 if (cu->header.version == 2)
4258 info_ptr += cu->header.addr_size;
4259 else
4260 info_ptr += cu->header.offset_size;
4261 break;
4262 case DW_FORM_addr:
4263 info_ptr += cu->header.addr_size;
4264 break;
4265 case DW_FORM_data1:
4266 case DW_FORM_ref1:
4267 case DW_FORM_flag:
4268 info_ptr += 1;
4269 break;
4270 case DW_FORM_flag_present:
4271 break;
4272 case DW_FORM_data2:
4273 case DW_FORM_ref2:
4274 info_ptr += 2;
4275 break;
4276 case DW_FORM_data4:
4277 case DW_FORM_ref4:
4278 info_ptr += 4;
4279 break;
4280 case DW_FORM_data8:
4281 case DW_FORM_ref8:
4282 case DW_FORM_ref_sig8:
4283 info_ptr += 8;
4284 break;
4285 case DW_FORM_string:
4286 read_direct_string (abfd, info_ptr, &bytes_read);
4287 info_ptr += bytes_read;
4288 break;
4289 case DW_FORM_sec_offset:
4290 case DW_FORM_strp:
4291 info_ptr += cu->header.offset_size;
4292 break;
4293 case DW_FORM_exprloc:
4294 case DW_FORM_block:
4295 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4296 info_ptr += bytes_read;
4297 break;
4298 case DW_FORM_block1:
4299 info_ptr += 1 + read_1_byte (abfd, info_ptr);
4300 break;
4301 case DW_FORM_block2:
4302 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
4303 break;
4304 case DW_FORM_block4:
4305 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
4306 break;
4307 case DW_FORM_sdata:
4308 case DW_FORM_udata:
4309 case DW_FORM_ref_udata:
4310 info_ptr = skip_leb128 (abfd, info_ptr);
4311 break;
4312 case DW_FORM_indirect:
4313 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4314 info_ptr += bytes_read;
4315 /* We need to continue parsing from here, so just go back to
4316 the top. */
4317 goto skip_attribute;
4318
4319 default:
4320 error (_("Dwarf Error: Cannot handle %s "
4321 "in DWARF reader [in module %s]"),
4322 dwarf_form_name (form),
4323 bfd_get_filename (abfd));
4324 }
4325 }
4326
4327 if (abbrev->has_children)
4328 return skip_children (buffer, info_ptr, cu);
4329 else
4330 return info_ptr;
4331 }
4332
4333 /* Locate ORIG_PDI's sibling.
4334 INFO_PTR should point to the start of the next DIE after ORIG_PDI
4335 in BUFFER. */
4336
4337 static gdb_byte *
4338 locate_pdi_sibling (struct partial_die_info *orig_pdi,
4339 gdb_byte *buffer, gdb_byte *info_ptr,
4340 bfd *abfd, struct dwarf2_cu *cu)
4341 {
4342 /* Do we know the sibling already? */
4343
4344 if (orig_pdi->sibling)
4345 return orig_pdi->sibling;
4346
4347 /* Are there any children to deal with? */
4348
4349 if (!orig_pdi->has_children)
4350 return info_ptr;
4351
4352 /* Skip the children the long way. */
4353
4354 return skip_children (buffer, info_ptr, cu);
4355 }
4356
4357 /* Expand this partial symbol table into a full symbol table. */
4358
4359 static void
4360 dwarf2_psymtab_to_symtab (struct partial_symtab *pst)
4361 {
4362 if (pst != NULL)
4363 {
4364 if (pst->readin)
4365 {
4366 warning (_("bug: psymtab for %s is already read in."),
4367 pst->filename);
4368 }
4369 else
4370 {
4371 if (info_verbose)
4372 {
4373 printf_filtered (_("Reading in symbols for %s..."),
4374 pst->filename);
4375 gdb_flush (gdb_stdout);
4376 }
4377
4378 /* Restore our global data. */
4379 dwarf2_per_objfile = objfile_data (pst->objfile,
4380 dwarf2_objfile_data_key);
4381
4382 /* If this psymtab is constructed from a debug-only objfile, the
4383 has_section_at_zero flag will not necessarily be correct. We
4384 can get the correct value for this flag by looking at the data
4385 associated with the (presumably stripped) associated objfile. */
4386 if (pst->objfile->separate_debug_objfile_backlink)
4387 {
4388 struct dwarf2_per_objfile *dpo_backlink
4389 = objfile_data (pst->objfile->separate_debug_objfile_backlink,
4390 dwarf2_objfile_data_key);
4391
4392 dwarf2_per_objfile->has_section_at_zero
4393 = dpo_backlink->has_section_at_zero;
4394 }
4395
4396 dwarf2_per_objfile->reading_partial_symbols = 0;
4397
4398 psymtab_to_symtab_1 (pst);
4399
4400 /* Finish up the debug error message. */
4401 if (info_verbose)
4402 printf_filtered (_("done.\n"));
4403 }
4404 }
4405 }
4406
4407 /* Add PER_CU to the queue. */
4408
4409 static void
4410 queue_comp_unit (struct dwarf2_per_cu_data *per_cu, struct objfile *objfile)
4411 {
4412 struct dwarf2_queue_item *item;
4413
4414 per_cu->queued = 1;
4415 item = xmalloc (sizeof (*item));
4416 item->per_cu = per_cu;
4417 item->next = NULL;
4418
4419 if (dwarf2_queue == NULL)
4420 dwarf2_queue = item;
4421 else
4422 dwarf2_queue_tail->next = item;
4423
4424 dwarf2_queue_tail = item;
4425 }
4426
4427 /* Process the queue. */
4428
4429 static void
4430 process_queue (struct objfile *objfile)
4431 {
4432 struct dwarf2_queue_item *item, *next_item;
4433
4434 /* The queue starts out with one item, but following a DIE reference
4435 may load a new CU, adding it to the end of the queue. */
4436 for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
4437 {
4438 if (dwarf2_per_objfile->using_index
4439 ? !item->per_cu->v.quick->symtab
4440 : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
4441 process_full_comp_unit (item->per_cu);
4442
4443 item->per_cu->queued = 0;
4444 next_item = item->next;
4445 xfree (item);
4446 }
4447
4448 dwarf2_queue_tail = NULL;
4449 }
4450
4451 /* Free all allocated queue entries. This function only releases anything if
4452 an error was thrown; if the queue was processed then it would have been
4453 freed as we went along. */
4454
4455 static void
4456 dwarf2_release_queue (void *dummy)
4457 {
4458 struct dwarf2_queue_item *item, *last;
4459
4460 item = dwarf2_queue;
4461 while (item)
4462 {
4463 /* Anything still marked queued is likely to be in an
4464 inconsistent state, so discard it. */
4465 if (item->per_cu->queued)
4466 {
4467 if (item->per_cu->cu != NULL)
4468 free_one_cached_comp_unit (item->per_cu->cu);
4469 item->per_cu->queued = 0;
4470 }
4471
4472 last = item;
4473 item = item->next;
4474 xfree (last);
4475 }
4476
4477 dwarf2_queue = dwarf2_queue_tail = NULL;
4478 }
4479
4480 /* Read in full symbols for PST, and anything it depends on. */
4481
4482 static void
4483 psymtab_to_symtab_1 (struct partial_symtab *pst)
4484 {
4485 struct dwarf2_per_cu_data *per_cu;
4486 struct cleanup *back_to;
4487 int i;
4488
4489 for (i = 0; i < pst->number_of_dependencies; i++)
4490 if (!pst->dependencies[i]->readin)
4491 {
4492 /* Inform about additional files that need to be read in. */
4493 if (info_verbose)
4494 {
4495 /* FIXME: i18n: Need to make this a single string. */
4496 fputs_filtered (" ", gdb_stdout);
4497 wrap_here ("");
4498 fputs_filtered ("and ", gdb_stdout);
4499 wrap_here ("");
4500 printf_filtered ("%s...", pst->dependencies[i]->filename);
4501 wrap_here (""); /* Flush output. */
4502 gdb_flush (gdb_stdout);
4503 }
4504 psymtab_to_symtab_1 (pst->dependencies[i]);
4505 }
4506
4507 per_cu = pst->read_symtab_private;
4508
4509 if (per_cu == NULL)
4510 {
4511 /* It's an include file, no symbols to read for it.
4512 Everything is in the parent symtab. */
4513 pst->readin = 1;
4514 return;
4515 }
4516
4517 dw2_do_instantiate_symtab (pst->objfile, per_cu);
4518 }
4519
4520 /* Load the DIEs associated with PER_CU into memory. */
4521
4522 static void
4523 load_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
4524 struct objfile *objfile)
4525 {
4526 bfd *abfd = objfile->obfd;
4527 struct dwarf2_cu *cu;
4528 unsigned int offset;
4529 gdb_byte *info_ptr, *beg_of_comp_unit;
4530 struct cleanup *free_abbrevs_cleanup = NULL, *free_cu_cleanup = NULL;
4531 struct attribute *attr;
4532 int read_cu = 0;
4533
4534 gdb_assert (! per_cu->from_debug_types);
4535
4536 /* Set local variables from the partial symbol table info. */
4537 offset = per_cu->offset;
4538
4539 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
4540 info_ptr = dwarf2_per_objfile->info.buffer + offset;
4541 beg_of_comp_unit = info_ptr;
4542
4543 if (per_cu->cu == NULL)
4544 {
4545 cu = xmalloc (sizeof (*cu));
4546 init_one_comp_unit (cu, objfile);
4547
4548 read_cu = 1;
4549
4550 /* If an error occurs while loading, release our storage. */
4551 free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
4552
4553 /* Read in the comp_unit header. */
4554 info_ptr = read_comp_unit_head (&cu->header, info_ptr, abfd);
4555
4556 /* Complete the cu_header. */
4557 cu->header.offset = offset;
4558 cu->header.first_die_offset = info_ptr - beg_of_comp_unit;
4559
4560 /* Read the abbrevs for this compilation unit. */
4561 dwarf2_read_abbrevs (abfd, cu);
4562 free_abbrevs_cleanup = make_cleanup (dwarf2_free_abbrev_table, cu);
4563
4564 /* Link this compilation unit into the compilation unit tree. */
4565 per_cu->cu = cu;
4566 cu->per_cu = per_cu;
4567
4568 /* Link this CU into read_in_chain. */
4569 per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
4570 dwarf2_per_objfile->read_in_chain = per_cu;
4571 }
4572 else
4573 {
4574 cu = per_cu->cu;
4575 info_ptr += cu->header.first_die_offset;
4576 }
4577
4578 cu->dies = read_comp_unit (info_ptr, cu);
4579
4580 /* We try not to read any attributes in this function, because not
4581 all objfiles needed for references have been loaded yet, and symbol
4582 table processing isn't initialized. But we have to set the CU language,
4583 or we won't be able to build types correctly. */
4584 prepare_one_comp_unit (cu, cu->dies);
4585
4586 /* Similarly, if we do not read the producer, we can not apply
4587 producer-specific interpretation. */
4588 attr = dwarf2_attr (cu->dies, DW_AT_producer, cu);
4589 if (attr)
4590 cu->producer = DW_STRING (attr);
4591
4592 if (read_cu)
4593 {
4594 do_cleanups (free_abbrevs_cleanup);
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 }
4601
4602 /* Add a DIE to the delayed physname list. */
4603
4604 static void
4605 add_to_method_list (struct type *type, int fnfield_index, int index,
4606 const char *name, struct die_info *die,
4607 struct dwarf2_cu *cu)
4608 {
4609 struct delayed_method_info mi;
4610 mi.type = type;
4611 mi.fnfield_index = fnfield_index;
4612 mi.index = index;
4613 mi.name = name;
4614 mi.die = die;
4615 VEC_safe_push (delayed_method_info, cu->method_list, &mi);
4616 }
4617
4618 /* A cleanup for freeing the delayed method list. */
4619
4620 static void
4621 free_delayed_list (void *ptr)
4622 {
4623 struct dwarf2_cu *cu = (struct dwarf2_cu *) ptr;
4624 if (cu->method_list != NULL)
4625 {
4626 VEC_free (delayed_method_info, cu->method_list);
4627 cu->method_list = NULL;
4628 }
4629 }
4630
4631 /* Compute the physnames of any methods on the CU's method list.
4632
4633 The computation of method physnames is delayed in order to avoid the
4634 (bad) condition that one of the method's formal parameters is of an as yet
4635 incomplete type. */
4636
4637 static void
4638 compute_delayed_physnames (struct dwarf2_cu *cu)
4639 {
4640 int i;
4641 struct delayed_method_info *mi;
4642 for (i = 0; VEC_iterate (delayed_method_info, cu->method_list, i, mi) ; ++i)
4643 {
4644 const char *physname;
4645 struct fn_fieldlist *fn_flp
4646 = &TYPE_FN_FIELDLIST (mi->type, mi->fnfield_index);
4647 physname = dwarf2_physname ((char *) mi->name, mi->die, cu);
4648 fn_flp->fn_fields[mi->index].physname = physname ? physname : "";
4649 }
4650 }
4651
4652 /* Check for GCC >= 4.x. Return minor version (x) of 4.x in such case. If it
4653 is not GCC or it is GCC older than 4.x return -1. If it is GCC 5.x or
4654 higher return INT_MAX. */
4655
4656 static int
4657 producer_is_gcc_ge_4 (struct dwarf2_cu *cu)
4658 {
4659 const char *cs;
4660 int major, minor;
4661
4662 if (cu->producer == NULL)
4663 {
4664 /* For unknown compilers expect their behavior is not compliant. For GCC
4665 this case can also happen for -gdwarf-4 type units supported since
4666 gcc-4.5. */
4667
4668 return -1;
4669 }
4670
4671 /* Skip any identifier after "GNU " - such as "C++" or "Java". */
4672
4673 if (strncmp (cu->producer, "GNU ", strlen ("GNU ")) != 0)
4674 {
4675 /* For non-GCC compilers expect their behavior is not compliant. */
4676
4677 return -1;
4678 }
4679 cs = &cu->producer[strlen ("GNU ")];
4680 while (*cs && !isdigit (*cs))
4681 cs++;
4682 if (sscanf (cs, "%d.%d", &major, &minor) != 2)
4683 {
4684 /* Not recognized as GCC. */
4685
4686 return -1;
4687 }
4688
4689 if (major < 4)
4690 return -1;
4691 if (major > 4)
4692 return INT_MAX;
4693 return minor;
4694 }
4695
4696 /* Generate full symbol information for PST and CU, whose DIEs have
4697 already been loaded into memory. */
4698
4699 static void
4700 process_full_comp_unit (struct dwarf2_per_cu_data *per_cu)
4701 {
4702 struct dwarf2_cu *cu = per_cu->cu;
4703 struct objfile *objfile = per_cu->objfile;
4704 CORE_ADDR lowpc, highpc;
4705 struct symtab *symtab;
4706 struct cleanup *back_to, *delayed_list_cleanup;
4707 CORE_ADDR baseaddr;
4708
4709 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
4710
4711 buildsym_init ();
4712 back_to = make_cleanup (really_free_pendings, NULL);
4713 delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
4714
4715 cu->list_in_scope = &file_symbols;
4716
4717 dwarf2_find_base_address (cu->dies, cu);
4718
4719 /* Do line number decoding in read_file_scope () */
4720 process_die (cu->dies, cu);
4721
4722 /* Now that we have processed all the DIEs in the CU, all the types
4723 should be complete, and it should now be safe to compute all of the
4724 physnames. */
4725 compute_delayed_physnames (cu);
4726 do_cleanups (delayed_list_cleanup);
4727
4728 /* Some compilers don't define a DW_AT_high_pc attribute for the
4729 compilation unit. If the DW_AT_high_pc is missing, synthesize
4730 it, by scanning the DIE's below the compilation unit. */
4731 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
4732
4733 symtab = end_symtab (highpc + baseaddr, objfile, SECT_OFF_TEXT (objfile));
4734
4735 if (symtab != NULL)
4736 {
4737 int gcc_4_minor = producer_is_gcc_ge_4 (cu);
4738
4739 /* Set symtab language to language from DW_AT_language. If the
4740 compilation is from a C file generated by language preprocessors, do
4741 not set the language if it was already deduced by start_subfile. */
4742 if (!(cu->language == language_c && symtab->language != language_c))
4743 symtab->language = cu->language;
4744
4745 /* GCC-4.0 has started to support -fvar-tracking. GCC-3.x still can
4746 produce DW_AT_location with location lists but it can be possibly
4747 invalid without -fvar-tracking.
4748
4749 For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
4750 needed, it would be wrong due to missing DW_AT_producer there.
4751
4752 Still one can confuse GDB by using non-standard GCC compilation
4753 options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
4754 */
4755 if (cu->has_loclist && gcc_4_minor >= 0)
4756 symtab->locations_valid = 1;
4757
4758 if (gcc_4_minor >= 5)
4759 symtab->epilogue_unwind_valid = 1;
4760 }
4761
4762 if (dwarf2_per_objfile->using_index)
4763 per_cu->v.quick->symtab = symtab;
4764 else
4765 {
4766 struct partial_symtab *pst = per_cu->v.psymtab;
4767 pst->symtab = symtab;
4768 pst->readin = 1;
4769 }
4770
4771 do_cleanups (back_to);
4772 }
4773
4774 /* Process a die and its children. */
4775
4776 static void
4777 process_die (struct die_info *die, struct dwarf2_cu *cu)
4778 {
4779 switch (die->tag)
4780 {
4781 case DW_TAG_padding:
4782 break;
4783 case DW_TAG_compile_unit:
4784 read_file_scope (die, cu);
4785 break;
4786 case DW_TAG_type_unit:
4787 read_type_unit_scope (die, cu);
4788 break;
4789 case DW_TAG_subprogram:
4790 case DW_TAG_inlined_subroutine:
4791 read_func_scope (die, cu);
4792 break;
4793 case DW_TAG_lexical_block:
4794 case DW_TAG_try_block:
4795 case DW_TAG_catch_block:
4796 read_lexical_block_scope (die, cu);
4797 break;
4798 case DW_TAG_class_type:
4799 case DW_TAG_interface_type:
4800 case DW_TAG_structure_type:
4801 case DW_TAG_union_type:
4802 process_structure_scope (die, cu);
4803 break;
4804 case DW_TAG_enumeration_type:
4805 process_enumeration_scope (die, cu);
4806 break;
4807
4808 /* These dies have a type, but processing them does not create
4809 a symbol or recurse to process the children. Therefore we can
4810 read them on-demand through read_type_die. */
4811 case DW_TAG_subroutine_type:
4812 case DW_TAG_set_type:
4813 case DW_TAG_array_type:
4814 case DW_TAG_pointer_type:
4815 case DW_TAG_ptr_to_member_type:
4816 case DW_TAG_reference_type:
4817 case DW_TAG_string_type:
4818 break;
4819
4820 case DW_TAG_base_type:
4821 case DW_TAG_subrange_type:
4822 case DW_TAG_typedef:
4823 /* Add a typedef symbol for the type definition, if it has a
4824 DW_AT_name. */
4825 new_symbol (die, read_type_die (die, cu), cu);
4826 break;
4827 case DW_TAG_common_block:
4828 read_common_block (die, cu);
4829 break;
4830 case DW_TAG_common_inclusion:
4831 break;
4832 case DW_TAG_namespace:
4833 processing_has_namespace_info = 1;
4834 read_namespace (die, cu);
4835 break;
4836 case DW_TAG_module:
4837 processing_has_namespace_info = 1;
4838 read_module (die, cu);
4839 break;
4840 case DW_TAG_imported_declaration:
4841 case DW_TAG_imported_module:
4842 processing_has_namespace_info = 1;
4843 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
4844 || cu->language != language_fortran))
4845 complaint (&symfile_complaints, _("Tag '%s' has unexpected children"),
4846 dwarf_tag_name (die->tag));
4847 read_import_statement (die, cu);
4848 break;
4849 default:
4850 new_symbol (die, NULL, cu);
4851 break;
4852 }
4853 }
4854
4855 /* A helper function for dwarf2_compute_name which determines whether DIE
4856 needs to have the name of the scope prepended to the name listed in the
4857 die. */
4858
4859 static int
4860 die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
4861 {
4862 struct attribute *attr;
4863
4864 switch (die->tag)
4865 {
4866 case DW_TAG_namespace:
4867 case DW_TAG_typedef:
4868 case DW_TAG_class_type:
4869 case DW_TAG_interface_type:
4870 case DW_TAG_structure_type:
4871 case DW_TAG_union_type:
4872 case DW_TAG_enumeration_type:
4873 case DW_TAG_enumerator:
4874 case DW_TAG_subprogram:
4875 case DW_TAG_member:
4876 return 1;
4877
4878 case DW_TAG_variable:
4879 case DW_TAG_constant:
4880 /* We only need to prefix "globally" visible variables. These include
4881 any variable marked with DW_AT_external or any variable that
4882 lives in a namespace. [Variables in anonymous namespaces
4883 require prefixing, but they are not DW_AT_external.] */
4884
4885 if (dwarf2_attr (die, DW_AT_specification, cu))
4886 {
4887 struct dwarf2_cu *spec_cu = cu;
4888
4889 return die_needs_namespace (die_specification (die, &spec_cu),
4890 spec_cu);
4891 }
4892
4893 attr = dwarf2_attr (die, DW_AT_external, cu);
4894 if (attr == NULL && die->parent->tag != DW_TAG_namespace
4895 && die->parent->tag != DW_TAG_module)
4896 return 0;
4897 /* A variable in a lexical block of some kind does not need a
4898 namespace, even though in C++ such variables may be external
4899 and have a mangled name. */
4900 if (die->parent->tag == DW_TAG_lexical_block
4901 || die->parent->tag == DW_TAG_try_block
4902 || die->parent->tag == DW_TAG_catch_block
4903 || die->parent->tag == DW_TAG_subprogram)
4904 return 0;
4905 return 1;
4906
4907 default:
4908 return 0;
4909 }
4910 }
4911
4912 /* Retrieve the last character from a mem_file. */
4913
4914 static void
4915 do_ui_file_peek_last (void *object, const char *buffer, long length)
4916 {
4917 char *last_char_p = (char *) object;
4918
4919 if (length > 0)
4920 *last_char_p = buffer[length - 1];
4921 }
4922
4923 /* Compute the fully qualified name of DIE in CU. If PHYSNAME is nonzero,
4924 compute the physname for the object, which include a method's
4925 formal parameters (C++/Java) and return type (Java).
4926
4927 For Ada, return the DIE's linkage name rather than the fully qualified
4928 name. PHYSNAME is ignored..
4929
4930 The result is allocated on the objfile_obstack and canonicalized. */
4931
4932 static const char *
4933 dwarf2_compute_name (char *name, struct die_info *die, struct dwarf2_cu *cu,
4934 int physname)
4935 {
4936 if (name == NULL)
4937 name = dwarf2_name (die, cu);
4938
4939 /* For Fortran GDB prefers DW_AT_*linkage_name if present but otherwise
4940 compute it by typename_concat inside GDB. */
4941 if (cu->language == language_ada
4942 || (cu->language == language_fortran && physname))
4943 {
4944 /* For Ada unit, we prefer the linkage name over the name, as
4945 the former contains the exported name, which the user expects
4946 to be able to reference. Ideally, we want the user to be able
4947 to reference this entity using either natural or linkage name,
4948 but we haven't started looking at this enhancement yet. */
4949 struct attribute *attr;
4950
4951 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
4952 if (attr == NULL)
4953 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
4954 if (attr && DW_STRING (attr))
4955 return DW_STRING (attr);
4956 }
4957
4958 /* These are the only languages we know how to qualify names in. */
4959 if (name != NULL
4960 && (cu->language == language_cplus || cu->language == language_java
4961 || cu->language == language_fortran))
4962 {
4963 if (die_needs_namespace (die, cu))
4964 {
4965 long length;
4966 char *prefix;
4967 struct ui_file *buf;
4968
4969 prefix = determine_prefix (die, cu);
4970 buf = mem_fileopen ();
4971 if (*prefix != '\0')
4972 {
4973 char *prefixed_name = typename_concat (NULL, prefix, name,
4974 physname, cu);
4975
4976 fputs_unfiltered (prefixed_name, buf);
4977 xfree (prefixed_name);
4978 }
4979 else
4980 fputs_unfiltered (name, buf);
4981
4982 /* Template parameters may be specified in the DIE's DW_AT_name, or
4983 as children with DW_TAG_template_type_param or
4984 DW_TAG_value_type_param. If the latter, add them to the name
4985 here. If the name already has template parameters, then
4986 skip this step; some versions of GCC emit both, and
4987 it is more efficient to use the pre-computed name.
4988
4989 Something to keep in mind about this process: it is very
4990 unlikely, or in some cases downright impossible, to produce
4991 something that will match the mangled name of a function.
4992 If the definition of the function has the same debug info,
4993 we should be able to match up with it anyway. But fallbacks
4994 using the minimal symbol, for instance to find a method
4995 implemented in a stripped copy of libstdc++, will not work.
4996 If we do not have debug info for the definition, we will have to
4997 match them up some other way.
4998
4999 When we do name matching there is a related problem with function
5000 templates; two instantiated function templates are allowed to
5001 differ only by their return types, which we do not add here. */
5002
5003 if (cu->language == language_cplus && strchr (name, '<') == NULL)
5004 {
5005 struct attribute *attr;
5006 struct die_info *child;
5007 int first = 1;
5008
5009 die->building_fullname = 1;
5010
5011 for (child = die->child; child != NULL; child = child->sibling)
5012 {
5013 struct type *type;
5014 long value;
5015 gdb_byte *bytes;
5016 struct dwarf2_locexpr_baton *baton;
5017 struct value *v;
5018
5019 if (child->tag != DW_TAG_template_type_param
5020 && child->tag != DW_TAG_template_value_param)
5021 continue;
5022
5023 if (first)
5024 {
5025 fputs_unfiltered ("<", buf);
5026 first = 0;
5027 }
5028 else
5029 fputs_unfiltered (", ", buf);
5030
5031 attr = dwarf2_attr (child, DW_AT_type, cu);
5032 if (attr == NULL)
5033 {
5034 complaint (&symfile_complaints,
5035 _("template parameter missing DW_AT_type"));
5036 fputs_unfiltered ("UNKNOWN_TYPE", buf);
5037 continue;
5038 }
5039 type = die_type (child, cu);
5040
5041 if (child->tag == DW_TAG_template_type_param)
5042 {
5043 c_print_type (type, "", buf, -1, 0);
5044 continue;
5045 }
5046
5047 attr = dwarf2_attr (child, DW_AT_const_value, cu);
5048 if (attr == NULL)
5049 {
5050 complaint (&symfile_complaints,
5051 _("template parameter missing "
5052 "DW_AT_const_value"));
5053 fputs_unfiltered ("UNKNOWN_VALUE", buf);
5054 continue;
5055 }
5056
5057 dwarf2_const_value_attr (attr, type, name,
5058 &cu->comp_unit_obstack, cu,
5059 &value, &bytes, &baton);
5060
5061 if (TYPE_NOSIGN (type))
5062 /* GDB prints characters as NUMBER 'CHAR'. If that's
5063 changed, this can use value_print instead. */
5064 c_printchar (value, type, buf);
5065 else
5066 {
5067 struct value_print_options opts;
5068
5069 if (baton != NULL)
5070 v = dwarf2_evaluate_loc_desc (type, NULL,
5071 baton->data,
5072 baton->size,
5073 baton->per_cu);
5074 else if (bytes != NULL)
5075 {
5076 v = allocate_value (type);
5077 memcpy (value_contents_writeable (v), bytes,
5078 TYPE_LENGTH (type));
5079 }
5080 else
5081 v = value_from_longest (type, value);
5082
5083 /* Specify decimal so that we do not depend on
5084 the radix. */
5085 get_formatted_print_options (&opts, 'd');
5086 opts.raw = 1;
5087 value_print (v, buf, &opts);
5088 release_value (v);
5089 value_free (v);
5090 }
5091 }
5092
5093 die->building_fullname = 0;
5094
5095 if (!first)
5096 {
5097 /* Close the argument list, with a space if necessary
5098 (nested templates). */
5099 char last_char = '\0';
5100 ui_file_put (buf, do_ui_file_peek_last, &last_char);
5101 if (last_char == '>')
5102 fputs_unfiltered (" >", buf);
5103 else
5104 fputs_unfiltered (">", buf);
5105 }
5106 }
5107
5108 /* For Java and C++ methods, append formal parameter type
5109 information, if PHYSNAME. */
5110
5111 if (physname && die->tag == DW_TAG_subprogram
5112 && (cu->language == language_cplus
5113 || cu->language == language_java))
5114 {
5115 struct type *type = read_type_die (die, cu);
5116
5117 c_type_print_args (type, buf, 1, cu->language);
5118
5119 if (cu->language == language_java)
5120 {
5121 /* For java, we must append the return type to method
5122 names. */
5123 if (die->tag == DW_TAG_subprogram)
5124 java_print_type (TYPE_TARGET_TYPE (type), "", buf,
5125 0, 0);
5126 }
5127 else if (cu->language == language_cplus)
5128 {
5129 /* Assume that an artificial first parameter is
5130 "this", but do not crash if it is not. RealView
5131 marks unnamed (and thus unused) parameters as
5132 artificial; there is no way to differentiate
5133 the two cases. */
5134 if (TYPE_NFIELDS (type) > 0
5135 && TYPE_FIELD_ARTIFICIAL (type, 0)
5136 && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
5137 && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
5138 0))))
5139 fputs_unfiltered (" const", buf);
5140 }
5141 }
5142
5143 name = ui_file_obsavestring (buf, &cu->objfile->objfile_obstack,
5144 &length);
5145 ui_file_delete (buf);
5146
5147 if (cu->language == language_cplus)
5148 {
5149 char *cname
5150 = dwarf2_canonicalize_name (name, cu,
5151 &cu->objfile->objfile_obstack);
5152
5153 if (cname != NULL)
5154 name = cname;
5155 }
5156 }
5157 }
5158
5159 return name;
5160 }
5161
5162 /* Return the fully qualified name of DIE, based on its DW_AT_name.
5163 If scope qualifiers are appropriate they will be added. The result
5164 will be allocated on the objfile_obstack, or NULL if the DIE does
5165 not have a name. NAME may either be from a previous call to
5166 dwarf2_name or NULL.
5167
5168 The output string will be canonicalized (if C++/Java). */
5169
5170 static const char *
5171 dwarf2_full_name (char *name, struct die_info *die, struct dwarf2_cu *cu)
5172 {
5173 return dwarf2_compute_name (name, die, cu, 0);
5174 }
5175
5176 /* Construct a physname for the given DIE in CU. NAME may either be
5177 from a previous call to dwarf2_name or NULL. The result will be
5178 allocated on the objfile_objstack or NULL if the DIE does not have a
5179 name.
5180
5181 The output string will be canonicalized (if C++/Java). */
5182
5183 static const char *
5184 dwarf2_physname (char *name, struct die_info *die, struct dwarf2_cu *cu)
5185 {
5186 struct attribute *attr;
5187 const char *retval, *mangled = NULL, *canon = NULL;
5188 struct cleanup *back_to;
5189 int need_copy = 1;
5190
5191 /* In this case dwarf2_compute_name is just a shortcut not building anything
5192 on its own. */
5193 if (!die_needs_namespace (die, cu))
5194 return dwarf2_compute_name (name, die, cu, 1);
5195
5196 back_to = make_cleanup (null_cleanup, NULL);
5197
5198 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
5199 if (!attr)
5200 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
5201
5202 /* DW_AT_linkage_name is missing in some cases - depend on what GDB
5203 has computed. */
5204 if (attr && DW_STRING (attr))
5205 {
5206 char *demangled;
5207
5208 mangled = DW_STRING (attr);
5209
5210 /* Use DMGL_RET_DROP for C++ template functions to suppress their return
5211 type. It is easier for GDB users to search for such functions as
5212 `name(params)' than `long name(params)'. In such case the minimal
5213 symbol names do not match the full symbol names but for template
5214 functions there is never a need to look up their definition from their
5215 declaration so the only disadvantage remains the minimal symbol
5216 variant `long name(params)' does not have the proper inferior type.
5217 */
5218
5219 demangled = cplus_demangle (mangled, (DMGL_PARAMS | DMGL_ANSI
5220 | (cu->language == language_java
5221 ? DMGL_JAVA | DMGL_RET_POSTFIX
5222 : DMGL_RET_DROP)));
5223 if (demangled)
5224 {
5225 make_cleanup (xfree, demangled);
5226 canon = demangled;
5227 }
5228 else
5229 {
5230 canon = mangled;
5231 need_copy = 0;
5232 }
5233 }
5234
5235 if (canon == NULL || check_physname)
5236 {
5237 const char *physname = dwarf2_compute_name (name, die, cu, 1);
5238
5239 if (canon != NULL && strcmp (physname, canon) != 0)
5240 {
5241 /* It may not mean a bug in GDB. The compiler could also
5242 compute DW_AT_linkage_name incorrectly. But in such case
5243 GDB would need to be bug-to-bug compatible. */
5244
5245 complaint (&symfile_complaints,
5246 _("Computed physname <%s> does not match demangled <%s> "
5247 "(from linkage <%s>) - DIE at 0x%x [in module %s]"),
5248 physname, canon, mangled, die->offset, cu->objfile->name);
5249
5250 /* Prefer DW_AT_linkage_name (in the CANON form) - when it
5251 is available here - over computed PHYSNAME. It is safer
5252 against both buggy GDB and buggy compilers. */
5253
5254 retval = canon;
5255 }
5256 else
5257 {
5258 retval = physname;
5259 need_copy = 0;
5260 }
5261 }
5262 else
5263 retval = canon;
5264
5265 if (need_copy)
5266 retval = obsavestring (retval, strlen (retval),
5267 &cu->objfile->objfile_obstack);
5268
5269 do_cleanups (back_to);
5270 return retval;
5271 }
5272
5273 /* Read the import statement specified by the given die and record it. */
5274
5275 static void
5276 read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
5277 {
5278 struct attribute *import_attr;
5279 struct die_info *imported_die, *child_die;
5280 struct dwarf2_cu *imported_cu;
5281 const char *imported_name;
5282 const char *imported_name_prefix;
5283 const char *canonical_name;
5284 const char *import_alias;
5285 const char *imported_declaration = NULL;
5286 const char *import_prefix;
5287 VEC (const_char_ptr) *excludes = NULL;
5288 struct cleanup *cleanups;
5289
5290 char *temp;
5291
5292 import_attr = dwarf2_attr (die, DW_AT_import, cu);
5293 if (import_attr == NULL)
5294 {
5295 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
5296 dwarf_tag_name (die->tag));
5297 return;
5298 }
5299
5300 imported_cu = cu;
5301 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
5302 imported_name = dwarf2_name (imported_die, imported_cu);
5303 if (imported_name == NULL)
5304 {
5305 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
5306
5307 The import in the following code:
5308 namespace A
5309 {
5310 typedef int B;
5311 }
5312
5313 int main ()
5314 {
5315 using A::B;
5316 B b;
5317 return b;
5318 }
5319
5320 ...
5321 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
5322 <52> DW_AT_decl_file : 1
5323 <53> DW_AT_decl_line : 6
5324 <54> DW_AT_import : <0x75>
5325 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
5326 <59> DW_AT_name : B
5327 <5b> DW_AT_decl_file : 1
5328 <5c> DW_AT_decl_line : 2
5329 <5d> DW_AT_type : <0x6e>
5330 ...
5331 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
5332 <76> DW_AT_byte_size : 4
5333 <77> DW_AT_encoding : 5 (signed)
5334
5335 imports the wrong die ( 0x75 instead of 0x58 ).
5336 This case will be ignored until the gcc bug is fixed. */
5337 return;
5338 }
5339
5340 /* Figure out the local name after import. */
5341 import_alias = dwarf2_name (die, cu);
5342
5343 /* Figure out where the statement is being imported to. */
5344 import_prefix = determine_prefix (die, cu);
5345
5346 /* Figure out what the scope of the imported die is and prepend it
5347 to the name of the imported die. */
5348 imported_name_prefix = determine_prefix (imported_die, imported_cu);
5349
5350 if (imported_die->tag != DW_TAG_namespace
5351 && imported_die->tag != DW_TAG_module)
5352 {
5353 imported_declaration = imported_name;
5354 canonical_name = imported_name_prefix;
5355 }
5356 else if (strlen (imported_name_prefix) > 0)
5357 {
5358 temp = alloca (strlen (imported_name_prefix)
5359 + 2 + strlen (imported_name) + 1);
5360 strcpy (temp, imported_name_prefix);
5361 strcat (temp, "::");
5362 strcat (temp, imported_name);
5363 canonical_name = temp;
5364 }
5365 else
5366 canonical_name = imported_name;
5367
5368 cleanups = make_cleanup (VEC_cleanup (const_char_ptr), &excludes);
5369
5370 if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
5371 for (child_die = die->child; child_die && child_die->tag;
5372 child_die = sibling_die (child_die))
5373 {
5374 /* DWARF-4: A Fortran use statement with a “rename list” may be
5375 represented by an imported module entry with an import attribute
5376 referring to the module and owned entries corresponding to those
5377 entities that are renamed as part of being imported. */
5378
5379 if (child_die->tag != DW_TAG_imported_declaration)
5380 {
5381 complaint (&symfile_complaints,
5382 _("child DW_TAG_imported_declaration expected "
5383 "- DIE at 0x%x [in module %s]"),
5384 child_die->offset, cu->objfile->name);
5385 continue;
5386 }
5387
5388 import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
5389 if (import_attr == NULL)
5390 {
5391 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
5392 dwarf_tag_name (child_die->tag));
5393 continue;
5394 }
5395
5396 imported_cu = cu;
5397 imported_die = follow_die_ref_or_sig (child_die, import_attr,
5398 &imported_cu);
5399 imported_name = dwarf2_name (imported_die, imported_cu);
5400 if (imported_name == NULL)
5401 {
5402 complaint (&symfile_complaints,
5403 _("child DW_TAG_imported_declaration has unknown "
5404 "imported name - DIE at 0x%x [in module %s]"),
5405 child_die->offset, cu->objfile->name);
5406 continue;
5407 }
5408
5409 VEC_safe_push (const_char_ptr, excludes, imported_name);
5410
5411 process_die (child_die, cu);
5412 }
5413
5414 cp_add_using_directive (import_prefix,
5415 canonical_name,
5416 import_alias,
5417 imported_declaration,
5418 excludes,
5419 &cu->objfile->objfile_obstack);
5420
5421 do_cleanups (cleanups);
5422 }
5423
5424 static void
5425 initialize_cu_func_list (struct dwarf2_cu *cu)
5426 {
5427 cu->first_fn = cu->last_fn = cu->cached_fn = NULL;
5428 }
5429
5430 /* Cleanup function for read_file_scope. */
5431
5432 static void
5433 free_cu_line_header (void *arg)
5434 {
5435 struct dwarf2_cu *cu = arg;
5436
5437 free_line_header (cu->line_header);
5438 cu->line_header = NULL;
5439 }
5440
5441 static void
5442 find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu,
5443 char **name, char **comp_dir)
5444 {
5445 struct attribute *attr;
5446
5447 *name = NULL;
5448 *comp_dir = NULL;
5449
5450 /* Find the filename. Do not use dwarf2_name here, since the filename
5451 is not a source language identifier. */
5452 attr = dwarf2_attr (die, DW_AT_name, cu);
5453 if (attr)
5454 {
5455 *name = DW_STRING (attr);
5456 }
5457
5458 attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
5459 if (attr)
5460 *comp_dir = DW_STRING (attr);
5461 else if (*name != NULL && IS_ABSOLUTE_PATH (*name))
5462 {
5463 *comp_dir = ldirname (*name);
5464 if (*comp_dir != NULL)
5465 make_cleanup (xfree, *comp_dir);
5466 }
5467 if (*comp_dir != NULL)
5468 {
5469 /* Irix 6.2 native cc prepends <machine>.: to the compilation
5470 directory, get rid of it. */
5471 char *cp = strchr (*comp_dir, ':');
5472
5473 if (cp && cp != *comp_dir && cp[-1] == '.' && cp[1] == '/')
5474 *comp_dir = cp + 1;
5475 }
5476
5477 if (*name == NULL)
5478 *name = "<unknown>";
5479 }
5480
5481 /* Process DW_TAG_compile_unit. */
5482
5483 static void
5484 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
5485 {
5486 struct objfile *objfile = cu->objfile;
5487 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
5488 CORE_ADDR lowpc = ((CORE_ADDR) -1);
5489 CORE_ADDR highpc = ((CORE_ADDR) 0);
5490 struct attribute *attr;
5491 char *name = NULL;
5492 char *comp_dir = NULL;
5493 struct die_info *child_die;
5494 bfd *abfd = objfile->obfd;
5495 struct line_header *line_header = 0;
5496 CORE_ADDR baseaddr;
5497
5498 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5499
5500 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
5501
5502 /* If we didn't find a lowpc, set it to highpc to avoid complaints
5503 from finish_block. */
5504 if (lowpc == ((CORE_ADDR) -1))
5505 lowpc = highpc;
5506 lowpc += baseaddr;
5507 highpc += baseaddr;
5508
5509 find_file_and_directory (die, cu, &name, &comp_dir);
5510
5511 attr = dwarf2_attr (die, DW_AT_language, cu);
5512 if (attr)
5513 {
5514 set_cu_language (DW_UNSND (attr), cu);
5515 }
5516
5517 attr = dwarf2_attr (die, DW_AT_producer, cu);
5518 if (attr)
5519 cu->producer = DW_STRING (attr);
5520
5521 /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
5522 standardised yet. As a workaround for the language detection we fall
5523 back to the DW_AT_producer string. */
5524 if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
5525 cu->language = language_opencl;
5526
5527 /* We assume that we're processing GCC output. */
5528 processing_gcc_compilation = 2;
5529
5530 processing_has_namespace_info = 0;
5531
5532 start_symtab (name, comp_dir, lowpc);
5533 record_debugformat ("DWARF 2");
5534 record_producer (cu->producer);
5535
5536 initialize_cu_func_list (cu);
5537
5538 /* Decode line number information if present. We do this before
5539 processing child DIEs, so that the line header table is available
5540 for DW_AT_decl_file. */
5541 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
5542 if (attr)
5543 {
5544 unsigned int line_offset = DW_UNSND (attr);
5545 line_header = dwarf_decode_line_header (line_offset, abfd, cu);
5546 if (line_header)
5547 {
5548 cu->line_header = line_header;
5549 make_cleanup (free_cu_line_header, cu);
5550 dwarf_decode_lines (line_header, comp_dir, abfd, cu, NULL);
5551 }
5552 }
5553
5554 /* Process all dies in compilation unit. */
5555 if (die->child != NULL)
5556 {
5557 child_die = die->child;
5558 while (child_die && child_die->tag)
5559 {
5560 process_die (child_die, cu);
5561 child_die = sibling_die (child_die);
5562 }
5563 }
5564
5565 /* Decode macro information, if present. Dwarf 2 macro information
5566 refers to information in the line number info statement program
5567 header, so we can only read it if we've read the header
5568 successfully. */
5569 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
5570 if (attr && line_header)
5571 {
5572 unsigned int macro_offset = DW_UNSND (attr);
5573
5574 dwarf_decode_macros (line_header, macro_offset,
5575 comp_dir, abfd, cu);
5576 }
5577 do_cleanups (back_to);
5578 }
5579
5580 /* Process DW_TAG_type_unit.
5581 For TUs we want to skip the first top level sibling if it's not the
5582 actual type being defined by this TU. In this case the first top
5583 level sibling is there to provide context only. */
5584
5585 static void
5586 read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
5587 {
5588 struct objfile *objfile = cu->objfile;
5589 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
5590 CORE_ADDR lowpc;
5591 struct attribute *attr;
5592 char *name = NULL;
5593 char *comp_dir = NULL;
5594 struct die_info *child_die;
5595 bfd *abfd = objfile->obfd;
5596
5597 /* start_symtab needs a low pc, but we don't really have one.
5598 Do what read_file_scope would do in the absence of such info. */
5599 lowpc = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5600
5601 /* Find the filename. Do not use dwarf2_name here, since the filename
5602 is not a source language identifier. */
5603 attr = dwarf2_attr (die, DW_AT_name, cu);
5604 if (attr)
5605 name = DW_STRING (attr);
5606
5607 attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
5608 if (attr)
5609 comp_dir = DW_STRING (attr);
5610 else if (name != NULL && IS_ABSOLUTE_PATH (name))
5611 {
5612 comp_dir = ldirname (name);
5613 if (comp_dir != NULL)
5614 make_cleanup (xfree, comp_dir);
5615 }
5616
5617 if (name == NULL)
5618 name = "<unknown>";
5619
5620 attr = dwarf2_attr (die, DW_AT_language, cu);
5621 if (attr)
5622 set_cu_language (DW_UNSND (attr), cu);
5623
5624 /* This isn't technically needed today. It is done for symmetry
5625 with read_file_scope. */
5626 attr = dwarf2_attr (die, DW_AT_producer, cu);
5627 if (attr)
5628 cu->producer = DW_STRING (attr);
5629
5630 /* We assume that we're processing GCC output. */
5631 processing_gcc_compilation = 2;
5632
5633 processing_has_namespace_info = 0;
5634
5635 start_symtab (name, comp_dir, lowpc);
5636 record_debugformat ("DWARF 2");
5637 record_producer (cu->producer);
5638
5639 /* Process the dies in the type unit. */
5640 if (die->child == NULL)
5641 {
5642 dump_die_for_error (die);
5643 error (_("Dwarf Error: Missing children for type unit [in module %s]"),
5644 bfd_get_filename (abfd));
5645 }
5646
5647 child_die = die->child;
5648
5649 while (child_die && child_die->tag)
5650 {
5651 process_die (child_die, cu);
5652
5653 child_die = sibling_die (child_die);
5654 }
5655
5656 do_cleanups (back_to);
5657 }
5658
5659 static void
5660 add_to_cu_func_list (const char *name, CORE_ADDR lowpc, CORE_ADDR highpc,
5661 struct dwarf2_cu *cu)
5662 {
5663 struct function_range *thisfn;
5664
5665 thisfn = (struct function_range *)
5666 obstack_alloc (&cu->comp_unit_obstack, sizeof (struct function_range));
5667 thisfn->name = name;
5668 thisfn->lowpc = lowpc;
5669 thisfn->highpc = highpc;
5670 thisfn->seen_line = 0;
5671 thisfn->next = NULL;
5672
5673 if (cu->last_fn == NULL)
5674 cu->first_fn = thisfn;
5675 else
5676 cu->last_fn->next = thisfn;
5677
5678 cu->last_fn = thisfn;
5679 }
5680
5681 /* qsort helper for inherit_abstract_dies. */
5682
5683 static int
5684 unsigned_int_compar (const void *ap, const void *bp)
5685 {
5686 unsigned int a = *(unsigned int *) ap;
5687 unsigned int b = *(unsigned int *) bp;
5688
5689 return (a > b) - (b > a);
5690 }
5691
5692 /* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
5693 Inherit only the children of the DW_AT_abstract_origin DIE not being
5694 already referenced by DW_AT_abstract_origin from the children of the
5695 current DIE. */
5696
5697 static void
5698 inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
5699 {
5700 struct die_info *child_die;
5701 unsigned die_children_count;
5702 /* CU offsets which were referenced by children of the current DIE. */
5703 unsigned *offsets;
5704 unsigned *offsets_end, *offsetp;
5705 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
5706 struct die_info *origin_die;
5707 /* Iterator of the ORIGIN_DIE children. */
5708 struct die_info *origin_child_die;
5709 struct cleanup *cleanups;
5710 struct attribute *attr;
5711 struct dwarf2_cu *origin_cu;
5712 struct pending **origin_previous_list_in_scope;
5713
5714 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
5715 if (!attr)
5716 return;
5717
5718 /* Note that following die references may follow to a die in a
5719 different cu. */
5720
5721 origin_cu = cu;
5722 origin_die = follow_die_ref (die, attr, &origin_cu);
5723
5724 /* We're inheriting ORIGIN's children into the scope we'd put DIE's
5725 symbols in. */
5726 origin_previous_list_in_scope = origin_cu->list_in_scope;
5727 origin_cu->list_in_scope = cu->list_in_scope;
5728
5729 if (die->tag != origin_die->tag
5730 && !(die->tag == DW_TAG_inlined_subroutine
5731 && origin_die->tag == DW_TAG_subprogram))
5732 complaint (&symfile_complaints,
5733 _("DIE 0x%x and its abstract origin 0x%x have different tags"),
5734 die->offset, origin_die->offset);
5735
5736 child_die = die->child;
5737 die_children_count = 0;
5738 while (child_die && child_die->tag)
5739 {
5740 child_die = sibling_die (child_die);
5741 die_children_count++;
5742 }
5743 offsets = xmalloc (sizeof (*offsets) * die_children_count);
5744 cleanups = make_cleanup (xfree, offsets);
5745
5746 offsets_end = offsets;
5747 child_die = die->child;
5748 while (child_die && child_die->tag)
5749 {
5750 /* For each CHILD_DIE, find the corresponding child of
5751 ORIGIN_DIE. If there is more than one layer of
5752 DW_AT_abstract_origin, follow them all; there shouldn't be,
5753 but GCC versions at least through 4.4 generate this (GCC PR
5754 40573). */
5755 struct die_info *child_origin_die = child_die;
5756 struct dwarf2_cu *child_origin_cu = cu;
5757
5758 while (1)
5759 {
5760 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
5761 child_origin_cu);
5762 if (attr == NULL)
5763 break;
5764 child_origin_die = follow_die_ref (child_origin_die, attr,
5765 &child_origin_cu);
5766 }
5767
5768 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
5769 counterpart may exist. */
5770 if (child_origin_die != child_die)
5771 {
5772 if (child_die->tag != child_origin_die->tag
5773 && !(child_die->tag == DW_TAG_inlined_subroutine
5774 && child_origin_die->tag == DW_TAG_subprogram))
5775 complaint (&symfile_complaints,
5776 _("Child DIE 0x%x and its abstract origin 0x%x have "
5777 "different tags"), child_die->offset,
5778 child_origin_die->offset);
5779 if (child_origin_die->parent != origin_die)
5780 complaint (&symfile_complaints,
5781 _("Child DIE 0x%x and its abstract origin 0x%x have "
5782 "different parents"), child_die->offset,
5783 child_origin_die->offset);
5784 else
5785 *offsets_end++ = child_origin_die->offset;
5786 }
5787 child_die = sibling_die (child_die);
5788 }
5789 qsort (offsets, offsets_end - offsets, sizeof (*offsets),
5790 unsigned_int_compar);
5791 for (offsetp = offsets + 1; offsetp < offsets_end; offsetp++)
5792 if (offsetp[-1] == *offsetp)
5793 complaint (&symfile_complaints,
5794 _("Multiple children of DIE 0x%x refer "
5795 "to DIE 0x%x as their abstract origin"),
5796 die->offset, *offsetp);
5797
5798 offsetp = offsets;
5799 origin_child_die = origin_die->child;
5800 while (origin_child_die && origin_child_die->tag)
5801 {
5802 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
5803 while (offsetp < offsets_end && *offsetp < origin_child_die->offset)
5804 offsetp++;
5805 if (offsetp >= offsets_end || *offsetp > origin_child_die->offset)
5806 {
5807 /* Found that ORIGIN_CHILD_DIE is really not referenced. */
5808 process_die (origin_child_die, origin_cu);
5809 }
5810 origin_child_die = sibling_die (origin_child_die);
5811 }
5812 origin_cu->list_in_scope = origin_previous_list_in_scope;
5813
5814 do_cleanups (cleanups);
5815 }
5816
5817 static void
5818 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
5819 {
5820 struct objfile *objfile = cu->objfile;
5821 struct context_stack *new;
5822 CORE_ADDR lowpc;
5823 CORE_ADDR highpc;
5824 struct die_info *child_die;
5825 struct attribute *attr, *call_line, *call_file;
5826 char *name;
5827 CORE_ADDR baseaddr;
5828 struct block *block;
5829 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
5830 VEC (symbolp) *template_args = NULL;
5831 struct template_symbol *templ_func = NULL;
5832
5833 if (inlined_func)
5834 {
5835 /* If we do not have call site information, we can't show the
5836 caller of this inlined function. That's too confusing, so
5837 only use the scope for local variables. */
5838 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
5839 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
5840 if (call_line == NULL || call_file == NULL)
5841 {
5842 read_lexical_block_scope (die, cu);
5843 return;
5844 }
5845 }
5846
5847 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5848
5849 name = dwarf2_name (die, cu);
5850
5851 /* Ignore functions with missing or empty names. These are actually
5852 illegal according to the DWARF standard. */
5853 if (name == NULL)
5854 {
5855 complaint (&symfile_complaints,
5856 _("missing name for subprogram DIE at %d"), die->offset);
5857 return;
5858 }
5859
5860 /* Ignore functions with missing or invalid low and high pc attributes. */
5861 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
5862 {
5863 attr = dwarf2_attr (die, DW_AT_external, cu);
5864 if (!attr || !DW_UNSND (attr))
5865 complaint (&symfile_complaints,
5866 _("cannot get low and high bounds "
5867 "for subprogram DIE at %d"),
5868 die->offset);
5869 return;
5870 }
5871
5872 lowpc += baseaddr;
5873 highpc += baseaddr;
5874
5875 /* Record the function range for dwarf_decode_lines. */
5876 add_to_cu_func_list (name, lowpc, highpc, cu);
5877
5878 /* If we have any template arguments, then we must allocate a
5879 different sort of symbol. */
5880 for (child_die = die->child; child_die; child_die = sibling_die (child_die))
5881 {
5882 if (child_die->tag == DW_TAG_template_type_param
5883 || child_die->tag == DW_TAG_template_value_param)
5884 {
5885 templ_func = OBSTACK_ZALLOC (&objfile->objfile_obstack,
5886 struct template_symbol);
5887 templ_func->base.is_cplus_template_function = 1;
5888 break;
5889 }
5890 }
5891
5892 new = push_context (0, lowpc);
5893 new->name = new_symbol_full (die, read_type_die (die, cu), cu,
5894 (struct symbol *) templ_func);
5895
5896 /* If there is a location expression for DW_AT_frame_base, record
5897 it. */
5898 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
5899 if (attr)
5900 /* FIXME: cagney/2004-01-26: The DW_AT_frame_base's location
5901 expression is being recorded directly in the function's symbol
5902 and not in a separate frame-base object. I guess this hack is
5903 to avoid adding some sort of frame-base adjunct/annex to the
5904 function's symbol :-(. The problem with doing this is that it
5905 results in a function symbol with a location expression that
5906 has nothing to do with the location of the function, ouch! The
5907 relationship should be: a function's symbol has-a frame base; a
5908 frame-base has-a location expression. */
5909 dwarf2_symbol_mark_computed (attr, new->name, cu);
5910
5911 cu->list_in_scope = &local_symbols;
5912
5913 if (die->child != NULL)
5914 {
5915 child_die = die->child;
5916 while (child_die && child_die->tag)
5917 {
5918 if (child_die->tag == DW_TAG_template_type_param
5919 || child_die->tag == DW_TAG_template_value_param)
5920 {
5921 struct symbol *arg = new_symbol (child_die, NULL, cu);
5922
5923 if (arg != NULL)
5924 VEC_safe_push (symbolp, template_args, arg);
5925 }
5926 else
5927 process_die (child_die, cu);
5928 child_die = sibling_die (child_die);
5929 }
5930 }
5931
5932 inherit_abstract_dies (die, cu);
5933
5934 /* If we have a DW_AT_specification, we might need to import using
5935 directives from the context of the specification DIE. See the
5936 comment in determine_prefix. */
5937 if (cu->language == language_cplus
5938 && dwarf2_attr (die, DW_AT_specification, cu))
5939 {
5940 struct dwarf2_cu *spec_cu = cu;
5941 struct die_info *spec_die = die_specification (die, &spec_cu);
5942
5943 while (spec_die)
5944 {
5945 child_die = spec_die->child;
5946 while (child_die && child_die->tag)
5947 {
5948 if (child_die->tag == DW_TAG_imported_module)
5949 process_die (child_die, spec_cu);
5950 child_die = sibling_die (child_die);
5951 }
5952
5953 /* In some cases, GCC generates specification DIEs that
5954 themselves contain DW_AT_specification attributes. */
5955 spec_die = die_specification (spec_die, &spec_cu);
5956 }
5957 }
5958
5959 new = pop_context ();
5960 /* Make a block for the local symbols within. */
5961 block = finish_block (new->name, &local_symbols, new->old_blocks,
5962 lowpc, highpc, objfile);
5963
5964 /* For C++, set the block's scope. */
5965 if (cu->language == language_cplus || cu->language == language_fortran)
5966 cp_set_block_scope (new->name, block, &objfile->objfile_obstack,
5967 determine_prefix (die, cu),
5968 processing_has_namespace_info);
5969
5970 /* If we have address ranges, record them. */
5971 dwarf2_record_block_ranges (die, block, baseaddr, cu);
5972
5973 /* Attach template arguments to function. */
5974 if (! VEC_empty (symbolp, template_args))
5975 {
5976 gdb_assert (templ_func != NULL);
5977
5978 templ_func->n_template_arguments = VEC_length (symbolp, template_args);
5979 templ_func->template_arguments
5980 = obstack_alloc (&objfile->objfile_obstack,
5981 (templ_func->n_template_arguments
5982 * sizeof (struct symbol *)));
5983 memcpy (templ_func->template_arguments,
5984 VEC_address (symbolp, template_args),
5985 (templ_func->n_template_arguments * sizeof (struct symbol *)));
5986 VEC_free (symbolp, template_args);
5987 }
5988
5989 /* In C++, we can have functions nested inside functions (e.g., when
5990 a function declares a class that has methods). This means that
5991 when we finish processing a function scope, we may need to go
5992 back to building a containing block's symbol lists. */
5993 local_symbols = new->locals;
5994 param_symbols = new->params;
5995 using_directives = new->using_directives;
5996
5997 /* If we've finished processing a top-level function, subsequent
5998 symbols go in the file symbol list. */
5999 if (outermost_context_p ())
6000 cu->list_in_scope = &file_symbols;
6001 }
6002
6003 /* Process all the DIES contained within a lexical block scope. Start
6004 a new scope, process the dies, and then close the scope. */
6005
6006 static void
6007 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
6008 {
6009 struct objfile *objfile = cu->objfile;
6010 struct context_stack *new;
6011 CORE_ADDR lowpc, highpc;
6012 struct die_info *child_die;
6013 CORE_ADDR baseaddr;
6014
6015 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
6016
6017 /* Ignore blocks with missing or invalid low and high pc attributes. */
6018 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
6019 as multiple lexical blocks? Handling children in a sane way would
6020 be nasty. Might be easier to properly extend generic blocks to
6021 describe ranges. */
6022 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
6023 return;
6024 lowpc += baseaddr;
6025 highpc += baseaddr;
6026
6027 push_context (0, lowpc);
6028 if (die->child != NULL)
6029 {
6030 child_die = die->child;
6031 while (child_die && child_die->tag)
6032 {
6033 process_die (child_die, cu);
6034 child_die = sibling_die (child_die);
6035 }
6036 }
6037 new = pop_context ();
6038
6039 if (local_symbols != NULL || using_directives != NULL)
6040 {
6041 struct block *block
6042 = finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
6043 highpc, objfile);
6044
6045 /* Note that recording ranges after traversing children, as we
6046 do here, means that recording a parent's ranges entails
6047 walking across all its children's ranges as they appear in
6048 the address map, which is quadratic behavior.
6049
6050 It would be nicer to record the parent's ranges before
6051 traversing its children, simply overriding whatever you find
6052 there. But since we don't even decide whether to create a
6053 block until after we've traversed its children, that's hard
6054 to do. */
6055 dwarf2_record_block_ranges (die, block, baseaddr, cu);
6056 }
6057 local_symbols = new->locals;
6058 using_directives = new->using_directives;
6059 }
6060
6061 /* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
6062 Return 1 if the attributes are present and valid, otherwise, return 0.
6063 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
6064
6065 static int
6066 dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
6067 CORE_ADDR *high_return, struct dwarf2_cu *cu,
6068 struct partial_symtab *ranges_pst)
6069 {
6070 struct objfile *objfile = cu->objfile;
6071 struct comp_unit_head *cu_header = &cu->header;
6072 bfd *obfd = objfile->obfd;
6073 unsigned int addr_size = cu_header->addr_size;
6074 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
6075 /* Base address selection entry. */
6076 CORE_ADDR base;
6077 int found_base;
6078 unsigned int dummy;
6079 gdb_byte *buffer;
6080 CORE_ADDR marker;
6081 int low_set;
6082 CORE_ADDR low = 0;
6083 CORE_ADDR high = 0;
6084 CORE_ADDR baseaddr;
6085
6086 found_base = cu->base_known;
6087 base = cu->base_address;
6088
6089 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
6090 if (offset >= dwarf2_per_objfile->ranges.size)
6091 {
6092 complaint (&symfile_complaints,
6093 _("Offset %d out of bounds for DW_AT_ranges attribute"),
6094 offset);
6095 return 0;
6096 }
6097 buffer = dwarf2_per_objfile->ranges.buffer + offset;
6098
6099 /* Read in the largest possible address. */
6100 marker = read_address (obfd, buffer, cu, &dummy);
6101 if ((marker & mask) == mask)
6102 {
6103 /* If we found the largest possible address, then
6104 read the base address. */
6105 base = read_address (obfd, buffer + addr_size, cu, &dummy);
6106 buffer += 2 * addr_size;
6107 offset += 2 * addr_size;
6108 found_base = 1;
6109 }
6110
6111 low_set = 0;
6112
6113 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
6114
6115 while (1)
6116 {
6117 CORE_ADDR range_beginning, range_end;
6118
6119 range_beginning = read_address (obfd, buffer, cu, &dummy);
6120 buffer += addr_size;
6121 range_end = read_address (obfd, buffer, cu, &dummy);
6122 buffer += addr_size;
6123 offset += 2 * addr_size;
6124
6125 /* An end of list marker is a pair of zero addresses. */
6126 if (range_beginning == 0 && range_end == 0)
6127 /* Found the end of list entry. */
6128 break;
6129
6130 /* Each base address selection entry is a pair of 2 values.
6131 The first is the largest possible address, the second is
6132 the base address. Check for a base address here. */
6133 if ((range_beginning & mask) == mask)
6134 {
6135 /* If we found the largest possible address, then
6136 read the base address. */
6137 base = read_address (obfd, buffer + addr_size, cu, &dummy);
6138 found_base = 1;
6139 continue;
6140 }
6141
6142 if (!found_base)
6143 {
6144 /* We have no valid base address for the ranges
6145 data. */
6146 complaint (&symfile_complaints,
6147 _("Invalid .debug_ranges data (no base address)"));
6148 return 0;
6149 }
6150
6151 if (range_beginning > range_end)
6152 {
6153 /* Inverted range entries are invalid. */
6154 complaint (&symfile_complaints,
6155 _("Invalid .debug_ranges data (inverted range)"));
6156 return 0;
6157 }
6158
6159 /* Empty range entries have no effect. */
6160 if (range_beginning == range_end)
6161 continue;
6162
6163 range_beginning += base;
6164 range_end += base;
6165
6166 if (ranges_pst != NULL)
6167 addrmap_set_empty (objfile->psymtabs_addrmap,
6168 range_beginning + baseaddr,
6169 range_end - 1 + baseaddr,
6170 ranges_pst);
6171
6172 /* FIXME: This is recording everything as a low-high
6173 segment of consecutive addresses. We should have a
6174 data structure for discontiguous block ranges
6175 instead. */
6176 if (! low_set)
6177 {
6178 low = range_beginning;
6179 high = range_end;
6180 low_set = 1;
6181 }
6182 else
6183 {
6184 if (range_beginning < low)
6185 low = range_beginning;
6186 if (range_end > high)
6187 high = range_end;
6188 }
6189 }
6190
6191 if (! low_set)
6192 /* If the first entry is an end-of-list marker, the range
6193 describes an empty scope, i.e. no instructions. */
6194 return 0;
6195
6196 if (low_return)
6197 *low_return = low;
6198 if (high_return)
6199 *high_return = high;
6200 return 1;
6201 }
6202
6203 /* Get low and high pc attributes from a die. Return 1 if the attributes
6204 are present and valid, otherwise, return 0. Return -1 if the range is
6205 discontinuous, i.e. derived from DW_AT_ranges information. */
6206 static int
6207 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
6208 CORE_ADDR *highpc, struct dwarf2_cu *cu,
6209 struct partial_symtab *pst)
6210 {
6211 struct attribute *attr;
6212 CORE_ADDR low = 0;
6213 CORE_ADDR high = 0;
6214 int ret = 0;
6215
6216 attr = dwarf2_attr (die, DW_AT_high_pc, cu);
6217 if (attr)
6218 {
6219 high = DW_ADDR (attr);
6220 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
6221 if (attr)
6222 low = DW_ADDR (attr);
6223 else
6224 /* Found high w/o low attribute. */
6225 return 0;
6226
6227 /* Found consecutive range of addresses. */
6228 ret = 1;
6229 }
6230 else
6231 {
6232 attr = dwarf2_attr (die, DW_AT_ranges, cu);
6233 if (attr != NULL)
6234 {
6235 /* Value of the DW_AT_ranges attribute is the offset in the
6236 .debug_ranges section. */
6237 if (!dwarf2_ranges_read (DW_UNSND (attr), &low, &high, cu, pst))
6238 return 0;
6239 /* Found discontinuous range of addresses. */
6240 ret = -1;
6241 }
6242 }
6243
6244 /* read_partial_die has also the strict LOW < HIGH requirement. */
6245 if (high <= low)
6246 return 0;
6247
6248 /* When using the GNU linker, .gnu.linkonce. sections are used to
6249 eliminate duplicate copies of functions and vtables and such.
6250 The linker will arbitrarily choose one and discard the others.
6251 The AT_*_pc values for such functions refer to local labels in
6252 these sections. If the section from that file was discarded, the
6253 labels are not in the output, so the relocs get a value of 0.
6254 If this is a discarded function, mark the pc bounds as invalid,
6255 so that GDB will ignore it. */
6256 if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
6257 return 0;
6258
6259 *lowpc = low;
6260 *highpc = high;
6261 return ret;
6262 }
6263
6264 /* Assuming that DIE represents a subprogram DIE or a lexical block, get
6265 its low and high PC addresses. Do nothing if these addresses could not
6266 be determined. Otherwise, set LOWPC to the low address if it is smaller,
6267 and HIGHPC to the high address if greater than HIGHPC. */
6268
6269 static void
6270 dwarf2_get_subprogram_pc_bounds (struct die_info *die,
6271 CORE_ADDR *lowpc, CORE_ADDR *highpc,
6272 struct dwarf2_cu *cu)
6273 {
6274 CORE_ADDR low, high;
6275 struct die_info *child = die->child;
6276
6277 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL))
6278 {
6279 *lowpc = min (*lowpc, low);
6280 *highpc = max (*highpc, high);
6281 }
6282
6283 /* If the language does not allow nested subprograms (either inside
6284 subprograms or lexical blocks), we're done. */
6285 if (cu->language != language_ada)
6286 return;
6287
6288 /* Check all the children of the given DIE. If it contains nested
6289 subprograms, then check their pc bounds. Likewise, we need to
6290 check lexical blocks as well, as they may also contain subprogram
6291 definitions. */
6292 while (child && child->tag)
6293 {
6294 if (child->tag == DW_TAG_subprogram
6295 || child->tag == DW_TAG_lexical_block)
6296 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
6297 child = sibling_die (child);
6298 }
6299 }
6300
6301 /* Get the low and high pc's represented by the scope DIE, and store
6302 them in *LOWPC and *HIGHPC. If the correct values can't be
6303 determined, set *LOWPC to -1 and *HIGHPC to 0. */
6304
6305 static void
6306 get_scope_pc_bounds (struct die_info *die,
6307 CORE_ADDR *lowpc, CORE_ADDR *highpc,
6308 struct dwarf2_cu *cu)
6309 {
6310 CORE_ADDR best_low = (CORE_ADDR) -1;
6311 CORE_ADDR best_high = (CORE_ADDR) 0;
6312 CORE_ADDR current_low, current_high;
6313
6314 if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL))
6315 {
6316 best_low = current_low;
6317 best_high = current_high;
6318 }
6319 else
6320 {
6321 struct die_info *child = die->child;
6322
6323 while (child && child->tag)
6324 {
6325 switch (child->tag) {
6326 case DW_TAG_subprogram:
6327 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
6328 break;
6329 case DW_TAG_namespace:
6330 case DW_TAG_module:
6331 /* FIXME: carlton/2004-01-16: Should we do this for
6332 DW_TAG_class_type/DW_TAG_structure_type, too? I think
6333 that current GCC's always emit the DIEs corresponding
6334 to definitions of methods of classes as children of a
6335 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
6336 the DIEs giving the declarations, which could be
6337 anywhere). But I don't see any reason why the
6338 standards says that they have to be there. */
6339 get_scope_pc_bounds (child, &current_low, &current_high, cu);
6340
6341 if (current_low != ((CORE_ADDR) -1))
6342 {
6343 best_low = min (best_low, current_low);
6344 best_high = max (best_high, current_high);
6345 }
6346 break;
6347 default:
6348 /* Ignore. */
6349 break;
6350 }
6351
6352 child = sibling_die (child);
6353 }
6354 }
6355
6356 *lowpc = best_low;
6357 *highpc = best_high;
6358 }
6359
6360 /* Record the address ranges for BLOCK, offset by BASEADDR, as given
6361 in DIE. */
6362 static void
6363 dwarf2_record_block_ranges (struct die_info *die, struct block *block,
6364 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
6365 {
6366 struct attribute *attr;
6367
6368 attr = dwarf2_attr (die, DW_AT_high_pc, cu);
6369 if (attr)
6370 {
6371 CORE_ADDR high = DW_ADDR (attr);
6372
6373 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
6374 if (attr)
6375 {
6376 CORE_ADDR low = DW_ADDR (attr);
6377
6378 record_block_range (block, baseaddr + low, baseaddr + high - 1);
6379 }
6380 }
6381
6382 attr = dwarf2_attr (die, DW_AT_ranges, cu);
6383 if (attr)
6384 {
6385 bfd *obfd = cu->objfile->obfd;
6386
6387 /* The value of the DW_AT_ranges attribute is the offset of the
6388 address range list in the .debug_ranges section. */
6389 unsigned long offset = DW_UNSND (attr);
6390 gdb_byte *buffer = dwarf2_per_objfile->ranges.buffer + offset;
6391
6392 /* For some target architectures, but not others, the
6393 read_address function sign-extends the addresses it returns.
6394 To recognize base address selection entries, we need a
6395 mask. */
6396 unsigned int addr_size = cu->header.addr_size;
6397 CORE_ADDR base_select_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
6398
6399 /* The base address, to which the next pair is relative. Note
6400 that this 'base' is a DWARF concept: most entries in a range
6401 list are relative, to reduce the number of relocs against the
6402 debugging information. This is separate from this function's
6403 'baseaddr' argument, which GDB uses to relocate debugging
6404 information from a shared library based on the address at
6405 which the library was loaded. */
6406 CORE_ADDR base = cu->base_address;
6407 int base_known = cu->base_known;
6408
6409 gdb_assert (dwarf2_per_objfile->ranges.readin);
6410 if (offset >= dwarf2_per_objfile->ranges.size)
6411 {
6412 complaint (&symfile_complaints,
6413 _("Offset %lu out of bounds for DW_AT_ranges attribute"),
6414 offset);
6415 return;
6416 }
6417
6418 for (;;)
6419 {
6420 unsigned int bytes_read;
6421 CORE_ADDR start, end;
6422
6423 start = read_address (obfd, buffer, cu, &bytes_read);
6424 buffer += bytes_read;
6425 end = read_address (obfd, buffer, cu, &bytes_read);
6426 buffer += bytes_read;
6427
6428 /* Did we find the end of the range list? */
6429 if (start == 0 && end == 0)
6430 break;
6431
6432 /* Did we find a base address selection entry? */
6433 else if ((start & base_select_mask) == base_select_mask)
6434 {
6435 base = end;
6436 base_known = 1;
6437 }
6438
6439 /* We found an ordinary address range. */
6440 else
6441 {
6442 if (!base_known)
6443 {
6444 complaint (&symfile_complaints,
6445 _("Invalid .debug_ranges data "
6446 "(no base address)"));
6447 return;
6448 }
6449
6450 if (start > end)
6451 {
6452 /* Inverted range entries are invalid. */
6453 complaint (&symfile_complaints,
6454 _("Invalid .debug_ranges data "
6455 "(inverted range)"));
6456 return;
6457 }
6458
6459 /* Empty range entries have no effect. */
6460 if (start == end)
6461 continue;
6462
6463 record_block_range (block,
6464 baseaddr + base + start,
6465 baseaddr + base + end - 1);
6466 }
6467 }
6468 }
6469 }
6470
6471 /* Check for GCC PR debug/45124 fix which is not present in any G++ version up
6472 to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
6473 during 4.6.0 experimental. */
6474
6475 static int
6476 producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
6477 {
6478 const char *cs;
6479 int major, minor, release;
6480
6481 if (cu->producer == NULL)
6482 {
6483 /* For unknown compilers expect their behavior is DWARF version
6484 compliant.
6485
6486 GCC started to support .debug_types sections by -gdwarf-4 since
6487 gcc-4.5.x. As the .debug_types sections are missing DW_AT_producer
6488 for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
6489 combination. gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
6490 interpreted incorrectly by GDB now - GCC PR debug/48229. */
6491
6492 return 0;
6493 }
6494
6495 /* Skip any identifier after "GNU " - such as "C++" or "Java". */
6496
6497 if (strncmp (cu->producer, "GNU ", strlen ("GNU ")) != 0)
6498 {
6499 /* For non-GCC compilers expect their behavior is DWARF version
6500 compliant. */
6501
6502 return 0;
6503 }
6504 cs = &cu->producer[strlen ("GNU ")];
6505 while (*cs && !isdigit (*cs))
6506 cs++;
6507 if (sscanf (cs, "%d.%d.%d", &major, &minor, &release) != 3)
6508 {
6509 /* Not recognized as GCC. */
6510
6511 return 0;
6512 }
6513
6514 return major < 4 || (major == 4 && minor < 6);
6515 }
6516
6517 /* Return the default accessibility type if it is not overriden by
6518 DW_AT_accessibility. */
6519
6520 static enum dwarf_access_attribute
6521 dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
6522 {
6523 if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
6524 {
6525 /* The default DWARF 2 accessibility for members is public, the default
6526 accessibility for inheritance is private. */
6527
6528 if (die->tag != DW_TAG_inheritance)
6529 return DW_ACCESS_public;
6530 else
6531 return DW_ACCESS_private;
6532 }
6533 else
6534 {
6535 /* DWARF 3+ defines the default accessibility a different way. The same
6536 rules apply now for DW_TAG_inheritance as for the members and it only
6537 depends on the container kind. */
6538
6539 if (die->parent->tag == DW_TAG_class_type)
6540 return DW_ACCESS_private;
6541 else
6542 return DW_ACCESS_public;
6543 }
6544 }
6545
6546 /* Look for DW_AT_data_member_location. Set *OFFSET to the byte
6547 offset. If the attribute was not found return 0, otherwise return
6548 1. If it was found but could not properly be handled, set *OFFSET
6549 to 0. */
6550
6551 static int
6552 handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
6553 LONGEST *offset)
6554 {
6555 struct attribute *attr;
6556
6557 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
6558 if (attr != NULL)
6559 {
6560 *offset = 0;
6561
6562 /* Note that we do not check for a section offset first here.
6563 This is because DW_AT_data_member_location is new in DWARF 4,
6564 so if we see it, we can assume that a constant form is really
6565 a constant and not a section offset. */
6566 if (attr_form_is_constant (attr))
6567 *offset = dwarf2_get_attr_constant_value (attr, 0);
6568 else if (attr_form_is_section_offset (attr))
6569 dwarf2_complex_location_expr_complaint ();
6570 else if (attr_form_is_block (attr))
6571 *offset = decode_locdesc (DW_BLOCK (attr), cu);
6572 else
6573 dwarf2_complex_location_expr_complaint ();
6574
6575 return 1;
6576 }
6577
6578 return 0;
6579 }
6580
6581 /* Add an aggregate field to the field list. */
6582
6583 static void
6584 dwarf2_add_field (struct field_info *fip, struct die_info *die,
6585 struct dwarf2_cu *cu)
6586 {
6587 struct objfile *objfile = cu->objfile;
6588 struct gdbarch *gdbarch = get_objfile_arch (objfile);
6589 struct nextfield *new_field;
6590 struct attribute *attr;
6591 struct field *fp;
6592 char *fieldname = "";
6593
6594 /* Allocate a new field list entry and link it in. */
6595 new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
6596 make_cleanup (xfree, new_field);
6597 memset (new_field, 0, sizeof (struct nextfield));
6598
6599 if (die->tag == DW_TAG_inheritance)
6600 {
6601 new_field->next = fip->baseclasses;
6602 fip->baseclasses = new_field;
6603 }
6604 else
6605 {
6606 new_field->next = fip->fields;
6607 fip->fields = new_field;
6608 }
6609 fip->nfields++;
6610
6611 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
6612 if (attr)
6613 new_field->accessibility = DW_UNSND (attr);
6614 else
6615 new_field->accessibility = dwarf2_default_access_attribute (die, cu);
6616 if (new_field->accessibility != DW_ACCESS_public)
6617 fip->non_public_fields = 1;
6618
6619 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
6620 if (attr)
6621 new_field->virtuality = DW_UNSND (attr);
6622 else
6623 new_field->virtuality = DW_VIRTUALITY_none;
6624
6625 fp = &new_field->field;
6626
6627 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
6628 {
6629 LONGEST offset;
6630
6631 /* Data member other than a C++ static data member. */
6632
6633 /* Get type of field. */
6634 fp->type = die_type (die, cu);
6635
6636 SET_FIELD_BITPOS (*fp, 0);
6637
6638 /* Get bit size of field (zero if none). */
6639 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
6640 if (attr)
6641 {
6642 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
6643 }
6644 else
6645 {
6646 FIELD_BITSIZE (*fp) = 0;
6647 }
6648
6649 /* Get bit offset of field. */
6650 if (handle_data_member_location (die, cu, &offset))
6651 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
6652 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
6653 if (attr)
6654 {
6655 if (gdbarch_bits_big_endian (gdbarch))
6656 {
6657 /* For big endian bits, the DW_AT_bit_offset gives the
6658 additional bit offset from the MSB of the containing
6659 anonymous object to the MSB of the field. We don't
6660 have to do anything special since we don't need to
6661 know the size of the anonymous object. */
6662 FIELD_BITPOS (*fp) += DW_UNSND (attr);
6663 }
6664 else
6665 {
6666 /* For little endian bits, compute the bit offset to the
6667 MSB of the anonymous object, subtract off the number of
6668 bits from the MSB of the field to the MSB of the
6669 object, and then subtract off the number of bits of
6670 the field itself. The result is the bit offset of
6671 the LSB of the field. */
6672 int anonymous_size;
6673 int bit_offset = DW_UNSND (attr);
6674
6675 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
6676 if (attr)
6677 {
6678 /* The size of the anonymous object containing
6679 the bit field is explicit, so use the
6680 indicated size (in bytes). */
6681 anonymous_size = DW_UNSND (attr);
6682 }
6683 else
6684 {
6685 /* The size of the anonymous object containing
6686 the bit field must be inferred from the type
6687 attribute of the data member containing the
6688 bit field. */
6689 anonymous_size = TYPE_LENGTH (fp->type);
6690 }
6691 FIELD_BITPOS (*fp) += anonymous_size * bits_per_byte
6692 - bit_offset - FIELD_BITSIZE (*fp);
6693 }
6694 }
6695
6696 /* Get name of field. */
6697 fieldname = dwarf2_name (die, cu);
6698 if (fieldname == NULL)
6699 fieldname = "";
6700
6701 /* The name is already allocated along with this objfile, so we don't
6702 need to duplicate it for the type. */
6703 fp->name = fieldname;
6704
6705 /* Change accessibility for artificial fields (e.g. virtual table
6706 pointer or virtual base class pointer) to private. */
6707 if (dwarf2_attr (die, DW_AT_artificial, cu))
6708 {
6709 FIELD_ARTIFICIAL (*fp) = 1;
6710 new_field->accessibility = DW_ACCESS_private;
6711 fip->non_public_fields = 1;
6712 }
6713 }
6714 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
6715 {
6716 /* C++ static member. */
6717
6718 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
6719 is a declaration, but all versions of G++ as of this writing
6720 (so through at least 3.2.1) incorrectly generate
6721 DW_TAG_variable tags. */
6722
6723 const char *physname;
6724
6725 /* Get name of field. */
6726 fieldname = dwarf2_name (die, cu);
6727 if (fieldname == NULL)
6728 return;
6729
6730 attr = dwarf2_attr (die, DW_AT_const_value, cu);
6731 if (attr
6732 /* Only create a symbol if this is an external value.
6733 new_symbol checks this and puts the value in the global symbol
6734 table, which we want. If it is not external, new_symbol
6735 will try to put the value in cu->list_in_scope which is wrong. */
6736 && dwarf2_flag_true_p (die, DW_AT_external, cu))
6737 {
6738 /* A static const member, not much different than an enum as far as
6739 we're concerned, except that we can support more types. */
6740 new_symbol (die, NULL, cu);
6741 }
6742
6743 /* Get physical name. */
6744 physname = dwarf2_physname (fieldname, die, cu);
6745
6746 /* The name is already allocated along with this objfile, so we don't
6747 need to duplicate it for the type. */
6748 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
6749 FIELD_TYPE (*fp) = die_type (die, cu);
6750 FIELD_NAME (*fp) = fieldname;
6751 }
6752 else if (die->tag == DW_TAG_inheritance)
6753 {
6754 LONGEST offset;
6755
6756 /* C++ base class field. */
6757 if (handle_data_member_location (die, cu, &offset))
6758 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
6759 FIELD_BITSIZE (*fp) = 0;
6760 FIELD_TYPE (*fp) = die_type (die, cu);
6761 FIELD_NAME (*fp) = type_name_no_tag (fp->type);
6762 fip->nbaseclasses++;
6763 }
6764 }
6765
6766 /* Add a typedef defined in the scope of the FIP's class. */
6767
6768 static void
6769 dwarf2_add_typedef (struct field_info *fip, struct die_info *die,
6770 struct dwarf2_cu *cu)
6771 {
6772 struct objfile *objfile = cu->objfile;
6773 struct typedef_field_list *new_field;
6774 struct attribute *attr;
6775 struct typedef_field *fp;
6776 char *fieldname = "";
6777
6778 /* Allocate a new field list entry and link it in. */
6779 new_field = xzalloc (sizeof (*new_field));
6780 make_cleanup (xfree, new_field);
6781
6782 gdb_assert (die->tag == DW_TAG_typedef);
6783
6784 fp = &new_field->field;
6785
6786 /* Get name of field. */
6787 fp->name = dwarf2_name (die, cu);
6788 if (fp->name == NULL)
6789 return;
6790
6791 fp->type = read_type_die (die, cu);
6792
6793 new_field->next = fip->typedef_field_list;
6794 fip->typedef_field_list = new_field;
6795 fip->typedef_field_list_count++;
6796 }
6797
6798 /* Create the vector of fields, and attach it to the type. */
6799
6800 static void
6801 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
6802 struct dwarf2_cu *cu)
6803 {
6804 int nfields = fip->nfields;
6805
6806 /* Record the field count, allocate space for the array of fields,
6807 and create blank accessibility bitfields if necessary. */
6808 TYPE_NFIELDS (type) = nfields;
6809 TYPE_FIELDS (type) = (struct field *)
6810 TYPE_ALLOC (type, sizeof (struct field) * nfields);
6811 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
6812
6813 if (fip->non_public_fields && cu->language != language_ada)
6814 {
6815 ALLOCATE_CPLUS_STRUCT_TYPE (type);
6816
6817 TYPE_FIELD_PRIVATE_BITS (type) =
6818 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
6819 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
6820
6821 TYPE_FIELD_PROTECTED_BITS (type) =
6822 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
6823 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
6824
6825 TYPE_FIELD_IGNORE_BITS (type) =
6826 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
6827 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
6828 }
6829
6830 /* If the type has baseclasses, allocate and clear a bit vector for
6831 TYPE_FIELD_VIRTUAL_BITS. */
6832 if (fip->nbaseclasses && cu->language != language_ada)
6833 {
6834 int num_bytes = B_BYTES (fip->nbaseclasses);
6835 unsigned char *pointer;
6836
6837 ALLOCATE_CPLUS_STRUCT_TYPE (type);
6838 pointer = TYPE_ALLOC (type, num_bytes);
6839 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
6840 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
6841 TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
6842 }
6843
6844 /* Copy the saved-up fields into the field vector. Start from the head of
6845 the list, adding to the tail of the field array, so that they end up in
6846 the same order in the array in which they were added to the list. */
6847 while (nfields-- > 0)
6848 {
6849 struct nextfield *fieldp;
6850
6851 if (fip->fields)
6852 {
6853 fieldp = fip->fields;
6854 fip->fields = fieldp->next;
6855 }
6856 else
6857 {
6858 fieldp = fip->baseclasses;
6859 fip->baseclasses = fieldp->next;
6860 }
6861
6862 TYPE_FIELD (type, nfields) = fieldp->field;
6863 switch (fieldp->accessibility)
6864 {
6865 case DW_ACCESS_private:
6866 if (cu->language != language_ada)
6867 SET_TYPE_FIELD_PRIVATE (type, nfields);
6868 break;
6869
6870 case DW_ACCESS_protected:
6871 if (cu->language != language_ada)
6872 SET_TYPE_FIELD_PROTECTED (type, nfields);
6873 break;
6874
6875 case DW_ACCESS_public:
6876 break;
6877
6878 default:
6879 /* Unknown accessibility. Complain and treat it as public. */
6880 {
6881 complaint (&symfile_complaints, _("unsupported accessibility %d"),
6882 fieldp->accessibility);
6883 }
6884 break;
6885 }
6886 if (nfields < fip->nbaseclasses)
6887 {
6888 switch (fieldp->virtuality)
6889 {
6890 case DW_VIRTUALITY_virtual:
6891 case DW_VIRTUALITY_pure_virtual:
6892 if (cu->language == language_ada)
6893 error (_("unexpected virtuality in component of Ada type"));
6894 SET_TYPE_FIELD_VIRTUAL (type, nfields);
6895 break;
6896 }
6897 }
6898 }
6899 }
6900
6901 /* Add a member function to the proper fieldlist. */
6902
6903 static void
6904 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
6905 struct type *type, struct dwarf2_cu *cu)
6906 {
6907 struct objfile *objfile = cu->objfile;
6908 struct attribute *attr;
6909 struct fnfieldlist *flp;
6910 int i;
6911 struct fn_field *fnp;
6912 char *fieldname;
6913 struct nextfnfield *new_fnfield;
6914 struct type *this_type;
6915 enum dwarf_access_attribute accessibility;
6916
6917 if (cu->language == language_ada)
6918 error (_("unexpected member function in Ada type"));
6919
6920 /* Get name of member function. */
6921 fieldname = dwarf2_name (die, cu);
6922 if (fieldname == NULL)
6923 return;
6924
6925 /* Look up member function name in fieldlist. */
6926 for (i = 0; i < fip->nfnfields; i++)
6927 {
6928 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
6929 break;
6930 }
6931
6932 /* Create new list element if necessary. */
6933 if (i < fip->nfnfields)
6934 flp = &fip->fnfieldlists[i];
6935 else
6936 {
6937 if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
6938 {
6939 fip->fnfieldlists = (struct fnfieldlist *)
6940 xrealloc (fip->fnfieldlists,
6941 (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
6942 * sizeof (struct fnfieldlist));
6943 if (fip->nfnfields == 0)
6944 make_cleanup (free_current_contents, &fip->fnfieldlists);
6945 }
6946 flp = &fip->fnfieldlists[fip->nfnfields];
6947 flp->name = fieldname;
6948 flp->length = 0;
6949 flp->head = NULL;
6950 i = fip->nfnfields++;
6951 }
6952
6953 /* Create a new member function field and chain it to the field list
6954 entry. */
6955 new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
6956 make_cleanup (xfree, new_fnfield);
6957 memset (new_fnfield, 0, sizeof (struct nextfnfield));
6958 new_fnfield->next = flp->head;
6959 flp->head = new_fnfield;
6960 flp->length++;
6961
6962 /* Fill in the member function field info. */
6963 fnp = &new_fnfield->fnfield;
6964
6965 /* Delay processing of the physname until later. */
6966 if (cu->language == language_cplus || cu->language == language_java)
6967 {
6968 add_to_method_list (type, i, flp->length - 1, fieldname,
6969 die, cu);
6970 }
6971 else
6972 {
6973 const char *physname = dwarf2_physname (fieldname, die, cu);
6974 fnp->physname = physname ? physname : "";
6975 }
6976
6977 fnp->type = alloc_type (objfile);
6978 this_type = read_type_die (die, cu);
6979 if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
6980 {
6981 int nparams = TYPE_NFIELDS (this_type);
6982
6983 /* TYPE is the domain of this method, and THIS_TYPE is the type
6984 of the method itself (TYPE_CODE_METHOD). */
6985 smash_to_method_type (fnp->type, type,
6986 TYPE_TARGET_TYPE (this_type),
6987 TYPE_FIELDS (this_type),
6988 TYPE_NFIELDS (this_type),
6989 TYPE_VARARGS (this_type));
6990
6991 /* Handle static member functions.
6992 Dwarf2 has no clean way to discern C++ static and non-static
6993 member functions. G++ helps GDB by marking the first
6994 parameter for non-static member functions (which is the this
6995 pointer) as artificial. We obtain this information from
6996 read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
6997 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
6998 fnp->voffset = VOFFSET_STATIC;
6999 }
7000 else
7001 complaint (&symfile_complaints, _("member function type missing for '%s'"),
7002 dwarf2_full_name (fieldname, die, cu));
7003
7004 /* Get fcontext from DW_AT_containing_type if present. */
7005 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
7006 fnp->fcontext = die_containing_type (die, cu);
7007
7008 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
7009 is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
7010
7011 /* Get accessibility. */
7012 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
7013 if (attr)
7014 accessibility = DW_UNSND (attr);
7015 else
7016 accessibility = dwarf2_default_access_attribute (die, cu);
7017 switch (accessibility)
7018 {
7019 case DW_ACCESS_private:
7020 fnp->is_private = 1;
7021 break;
7022 case DW_ACCESS_protected:
7023 fnp->is_protected = 1;
7024 break;
7025 }
7026
7027 /* Check for artificial methods. */
7028 attr = dwarf2_attr (die, DW_AT_artificial, cu);
7029 if (attr && DW_UNSND (attr) != 0)
7030 fnp->is_artificial = 1;
7031
7032 /* Get index in virtual function table if it is a virtual member
7033 function. For older versions of GCC, this is an offset in the
7034 appropriate virtual table, as specified by DW_AT_containing_type.
7035 For everyone else, it is an expression to be evaluated relative
7036 to the object address. */
7037
7038 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
7039 if (attr)
7040 {
7041 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
7042 {
7043 if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
7044 {
7045 /* Old-style GCC. */
7046 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
7047 }
7048 else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
7049 || (DW_BLOCK (attr)->size > 1
7050 && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
7051 && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
7052 {
7053 struct dwarf_block blk;
7054 int offset;
7055
7056 offset = (DW_BLOCK (attr)->data[0] == DW_OP_deref
7057 ? 1 : 2);
7058 blk.size = DW_BLOCK (attr)->size - offset;
7059 blk.data = DW_BLOCK (attr)->data + offset;
7060 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
7061 if ((fnp->voffset % cu->header.addr_size) != 0)
7062 dwarf2_complex_location_expr_complaint ();
7063 else
7064 fnp->voffset /= cu->header.addr_size;
7065 fnp->voffset += 2;
7066 }
7067 else
7068 dwarf2_complex_location_expr_complaint ();
7069
7070 if (!fnp->fcontext)
7071 fnp->fcontext = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
7072 }
7073 else if (attr_form_is_section_offset (attr))
7074 {
7075 dwarf2_complex_location_expr_complaint ();
7076 }
7077 else
7078 {
7079 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
7080 fieldname);
7081 }
7082 }
7083 else
7084 {
7085 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
7086 if (attr && DW_UNSND (attr))
7087 {
7088 /* GCC does this, as of 2008-08-25; PR debug/37237. */
7089 complaint (&symfile_complaints,
7090 _("Member function \"%s\" (offset %d) is virtual "
7091 "but the vtable offset is not specified"),
7092 fieldname, die->offset);
7093 ALLOCATE_CPLUS_STRUCT_TYPE (type);
7094 TYPE_CPLUS_DYNAMIC (type) = 1;
7095 }
7096 }
7097 }
7098
7099 /* Create the vector of member function fields, and attach it to the type. */
7100
7101 static void
7102 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
7103 struct dwarf2_cu *cu)
7104 {
7105 struct fnfieldlist *flp;
7106 int total_length = 0;
7107 int i;
7108
7109 if (cu->language == language_ada)
7110 error (_("unexpected member functions in Ada type"));
7111
7112 ALLOCATE_CPLUS_STRUCT_TYPE (type);
7113 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
7114 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
7115
7116 for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
7117 {
7118 struct nextfnfield *nfp = flp->head;
7119 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
7120 int k;
7121
7122 TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
7123 TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
7124 fn_flp->fn_fields = (struct fn_field *)
7125 TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
7126 for (k = flp->length; (k--, nfp); nfp = nfp->next)
7127 fn_flp->fn_fields[k] = nfp->fnfield;
7128
7129 total_length += flp->length;
7130 }
7131
7132 TYPE_NFN_FIELDS (type) = fip->nfnfields;
7133 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
7134 }
7135
7136 /* Returns non-zero if NAME is the name of a vtable member in CU's
7137 language, zero otherwise. */
7138 static int
7139 is_vtable_name (const char *name, struct dwarf2_cu *cu)
7140 {
7141 static const char vptr[] = "_vptr";
7142 static const char vtable[] = "vtable";
7143
7144 /* Look for the C++ and Java forms of the vtable. */
7145 if ((cu->language == language_java
7146 && strncmp (name, vtable, sizeof (vtable) - 1) == 0)
7147 || (strncmp (name, vptr, sizeof (vptr) - 1) == 0
7148 && is_cplus_marker (name[sizeof (vptr) - 1])))
7149 return 1;
7150
7151 return 0;
7152 }
7153
7154 /* GCC outputs unnamed structures that are really pointers to member
7155 functions, with the ABI-specified layout. If TYPE describes
7156 such a structure, smash it into a member function type.
7157
7158 GCC shouldn't do this; it should just output pointer to member DIEs.
7159 This is GCC PR debug/28767. */
7160
7161 static void
7162 quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
7163 {
7164 struct type *pfn_type, *domain_type, *new_type;
7165
7166 /* Check for a structure with no name and two children. */
7167 if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
7168 return;
7169
7170 /* Check for __pfn and __delta members. */
7171 if (TYPE_FIELD_NAME (type, 0) == NULL
7172 || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
7173 || TYPE_FIELD_NAME (type, 1) == NULL
7174 || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
7175 return;
7176
7177 /* Find the type of the method. */
7178 pfn_type = TYPE_FIELD_TYPE (type, 0);
7179 if (pfn_type == NULL
7180 || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
7181 || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
7182 return;
7183
7184 /* Look for the "this" argument. */
7185 pfn_type = TYPE_TARGET_TYPE (pfn_type);
7186 if (TYPE_NFIELDS (pfn_type) == 0
7187 /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
7188 || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
7189 return;
7190
7191 domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
7192 new_type = alloc_type (objfile);
7193 smash_to_method_type (new_type, domain_type, TYPE_TARGET_TYPE (pfn_type),
7194 TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
7195 TYPE_VARARGS (pfn_type));
7196 smash_to_methodptr_type (type, new_type);
7197 }
7198
7199 /* Called when we find the DIE that starts a structure or union scope
7200 (definition) to create a type for the structure or union. Fill in
7201 the type's name and general properties; the members will not be
7202 processed until process_structure_type.
7203
7204 NOTE: we need to call these functions regardless of whether or not the
7205 DIE has a DW_AT_name attribute, since it might be an anonymous
7206 structure or union. This gets the type entered into our set of
7207 user defined types.
7208
7209 However, if the structure is incomplete (an opaque struct/union)
7210 then suppress creating a symbol table entry for it since gdb only
7211 wants to find the one with the complete definition. Note that if
7212 it is complete, we just call new_symbol, which does it's own
7213 checking about whether the struct/union is anonymous or not (and
7214 suppresses creating a symbol table entry itself). */
7215
7216 static struct type *
7217 read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
7218 {
7219 struct objfile *objfile = cu->objfile;
7220 struct type *type;
7221 struct attribute *attr;
7222 char *name;
7223
7224 /* If the definition of this type lives in .debug_types, read that type.
7225 Don't follow DW_AT_specification though, that will take us back up
7226 the chain and we want to go down. */
7227 attr = dwarf2_attr_no_follow (die, DW_AT_signature, cu);
7228 if (attr)
7229 {
7230 struct dwarf2_cu *type_cu = cu;
7231 struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
7232
7233 /* We could just recurse on read_structure_type, but we need to call
7234 get_die_type to ensure only one type for this DIE is created.
7235 This is important, for example, because for c++ classes we need
7236 TYPE_NAME set which is only done by new_symbol. Blech. */
7237 type = read_type_die (type_die, type_cu);
7238
7239 /* TYPE_CU may not be the same as CU.
7240 Ensure TYPE is recorded in CU's type_hash table. */
7241 return set_die_type (die, type, cu);
7242 }
7243
7244 type = alloc_type (objfile);
7245 INIT_CPLUS_SPECIFIC (type);
7246
7247 name = dwarf2_name (die, cu);
7248 if (name != NULL)
7249 {
7250 if (cu->language == language_cplus
7251 || cu->language == language_java)
7252 {
7253 char *full_name = (char *) dwarf2_full_name (name, die, cu);
7254
7255 /* dwarf2_full_name might have already finished building the DIE's
7256 type. If so, there is no need to continue. */
7257 if (get_die_type (die, cu) != NULL)
7258 return get_die_type (die, cu);
7259
7260 TYPE_TAG_NAME (type) = full_name;
7261 if (die->tag == DW_TAG_structure_type
7262 || die->tag == DW_TAG_class_type)
7263 TYPE_NAME (type) = TYPE_TAG_NAME (type);
7264 }
7265 else
7266 {
7267 /* The name is already allocated along with this objfile, so
7268 we don't need to duplicate it for the type. */
7269 TYPE_TAG_NAME (type) = (char *) name;
7270 if (die->tag == DW_TAG_class_type)
7271 TYPE_NAME (type) = TYPE_TAG_NAME (type);
7272 }
7273 }
7274
7275 if (die->tag == DW_TAG_structure_type)
7276 {
7277 TYPE_CODE (type) = TYPE_CODE_STRUCT;
7278 }
7279 else if (die->tag == DW_TAG_union_type)
7280 {
7281 TYPE_CODE (type) = TYPE_CODE_UNION;
7282 }
7283 else
7284 {
7285 TYPE_CODE (type) = TYPE_CODE_CLASS;
7286 }
7287
7288 if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
7289 TYPE_DECLARED_CLASS (type) = 1;
7290
7291 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7292 if (attr)
7293 {
7294 TYPE_LENGTH (type) = DW_UNSND (attr);
7295 }
7296 else
7297 {
7298 TYPE_LENGTH (type) = 0;
7299 }
7300
7301 TYPE_STUB_SUPPORTED (type) = 1;
7302 if (die_is_declaration (die, cu))
7303 TYPE_STUB (type) = 1;
7304 else if (attr == NULL && die->child == NULL
7305 && producer_is_realview (cu->producer))
7306 /* RealView does not output the required DW_AT_declaration
7307 on incomplete types. */
7308 TYPE_STUB (type) = 1;
7309
7310 /* We need to add the type field to the die immediately so we don't
7311 infinitely recurse when dealing with pointers to the structure
7312 type within the structure itself. */
7313 set_die_type (die, type, cu);
7314
7315 /* set_die_type should be already done. */
7316 set_descriptive_type (type, die, cu);
7317
7318 return type;
7319 }
7320
7321 /* Finish creating a structure or union type, including filling in
7322 its members and creating a symbol for it. */
7323
7324 static void
7325 process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
7326 {
7327 struct objfile *objfile = cu->objfile;
7328 struct die_info *child_die = die->child;
7329 struct type *type;
7330
7331 type = get_die_type (die, cu);
7332 if (type == NULL)
7333 type = read_structure_type (die, cu);
7334
7335 if (die->child != NULL && ! die_is_declaration (die, cu))
7336 {
7337 struct field_info fi;
7338 struct die_info *child_die;
7339 VEC (symbolp) *template_args = NULL;
7340 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
7341
7342 memset (&fi, 0, sizeof (struct field_info));
7343
7344 child_die = die->child;
7345
7346 while (child_die && child_die->tag)
7347 {
7348 if (child_die->tag == DW_TAG_member
7349 || child_die->tag == DW_TAG_variable)
7350 {
7351 /* NOTE: carlton/2002-11-05: A C++ static data member
7352 should be a DW_TAG_member that is a declaration, but
7353 all versions of G++ as of this writing (so through at
7354 least 3.2.1) incorrectly generate DW_TAG_variable
7355 tags for them instead. */
7356 dwarf2_add_field (&fi, child_die, cu);
7357 }
7358 else if (child_die->tag == DW_TAG_subprogram)
7359 {
7360 /* C++ member function. */
7361 dwarf2_add_member_fn (&fi, child_die, type, cu);
7362 }
7363 else if (child_die->tag == DW_TAG_inheritance)
7364 {
7365 /* C++ base class field. */
7366 dwarf2_add_field (&fi, child_die, cu);
7367 }
7368 else if (child_die->tag == DW_TAG_typedef)
7369 dwarf2_add_typedef (&fi, child_die, cu);
7370 else if (child_die->tag == DW_TAG_template_type_param
7371 || child_die->tag == DW_TAG_template_value_param)
7372 {
7373 struct symbol *arg = new_symbol (child_die, NULL, cu);
7374
7375 if (arg != NULL)
7376 VEC_safe_push (symbolp, template_args, arg);
7377 }
7378
7379 child_die = sibling_die (child_die);
7380 }
7381
7382 /* Attach template arguments to type. */
7383 if (! VEC_empty (symbolp, template_args))
7384 {
7385 ALLOCATE_CPLUS_STRUCT_TYPE (type);
7386 TYPE_N_TEMPLATE_ARGUMENTS (type)
7387 = VEC_length (symbolp, template_args);
7388 TYPE_TEMPLATE_ARGUMENTS (type)
7389 = obstack_alloc (&objfile->objfile_obstack,
7390 (TYPE_N_TEMPLATE_ARGUMENTS (type)
7391 * sizeof (struct symbol *)));
7392 memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
7393 VEC_address (symbolp, template_args),
7394 (TYPE_N_TEMPLATE_ARGUMENTS (type)
7395 * sizeof (struct symbol *)));
7396 VEC_free (symbolp, template_args);
7397 }
7398
7399 /* Attach fields and member functions to the type. */
7400 if (fi.nfields)
7401 dwarf2_attach_fields_to_type (&fi, type, cu);
7402 if (fi.nfnfields)
7403 {
7404 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
7405
7406 /* Get the type which refers to the base class (possibly this
7407 class itself) which contains the vtable pointer for the current
7408 class from the DW_AT_containing_type attribute. This use of
7409 DW_AT_containing_type is a GNU extension. */
7410
7411 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
7412 {
7413 struct type *t = die_containing_type (die, cu);
7414
7415 TYPE_VPTR_BASETYPE (type) = t;
7416 if (type == t)
7417 {
7418 int i;
7419
7420 /* Our own class provides vtbl ptr. */
7421 for (i = TYPE_NFIELDS (t) - 1;
7422 i >= TYPE_N_BASECLASSES (t);
7423 --i)
7424 {
7425 char *fieldname = TYPE_FIELD_NAME (t, i);
7426
7427 if (is_vtable_name (fieldname, cu))
7428 {
7429 TYPE_VPTR_FIELDNO (type) = i;
7430 break;
7431 }
7432 }
7433
7434 /* Complain if virtual function table field not found. */
7435 if (i < TYPE_N_BASECLASSES (t))
7436 complaint (&symfile_complaints,
7437 _("virtual function table pointer "
7438 "not found when defining class '%s'"),
7439 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
7440 "");
7441 }
7442 else
7443 {
7444 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
7445 }
7446 }
7447 else if (cu->producer
7448 && strncmp (cu->producer,
7449 "IBM(R) XL C/C++ Advanced Edition", 32) == 0)
7450 {
7451 /* The IBM XLC compiler does not provide direct indication
7452 of the containing type, but the vtable pointer is
7453 always named __vfp. */
7454
7455 int i;
7456
7457 for (i = TYPE_NFIELDS (type) - 1;
7458 i >= TYPE_N_BASECLASSES (type);
7459 --i)
7460 {
7461 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
7462 {
7463 TYPE_VPTR_FIELDNO (type) = i;
7464 TYPE_VPTR_BASETYPE (type) = type;
7465 break;
7466 }
7467 }
7468 }
7469 }
7470
7471 /* Copy fi.typedef_field_list linked list elements content into the
7472 allocated array TYPE_TYPEDEF_FIELD_ARRAY (type). */
7473 if (fi.typedef_field_list)
7474 {
7475 int i = fi.typedef_field_list_count;
7476
7477 ALLOCATE_CPLUS_STRUCT_TYPE (type);
7478 TYPE_TYPEDEF_FIELD_ARRAY (type)
7479 = TYPE_ALLOC (type, sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * i);
7480 TYPE_TYPEDEF_FIELD_COUNT (type) = i;
7481
7482 /* Reverse the list order to keep the debug info elements order. */
7483 while (--i >= 0)
7484 {
7485 struct typedef_field *dest, *src;
7486
7487 dest = &TYPE_TYPEDEF_FIELD (type, i);
7488 src = &fi.typedef_field_list->field;
7489 fi.typedef_field_list = fi.typedef_field_list->next;
7490 *dest = *src;
7491 }
7492 }
7493
7494 do_cleanups (back_to);
7495
7496 if (HAVE_CPLUS_STRUCT (type))
7497 TYPE_CPLUS_REALLY_JAVA (type) = cu->language == language_java;
7498 }
7499
7500 quirk_gcc_member_function_pointer (type, cu->objfile);
7501
7502 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
7503 snapshots) has been known to create a die giving a declaration
7504 for a class that has, as a child, a die giving a definition for a
7505 nested class. So we have to process our children even if the
7506 current die is a declaration. Normally, of course, a declaration
7507 won't have any children at all. */
7508
7509 while (child_die != NULL && child_die->tag)
7510 {
7511 if (child_die->tag == DW_TAG_member
7512 || child_die->tag == DW_TAG_variable
7513 || child_die->tag == DW_TAG_inheritance
7514 || child_die->tag == DW_TAG_template_value_param
7515 || child_die->tag == DW_TAG_template_type_param)
7516 {
7517 /* Do nothing. */
7518 }
7519 else
7520 process_die (child_die, cu);
7521
7522 child_die = sibling_die (child_die);
7523 }
7524
7525 /* Do not consider external references. According to the DWARF standard,
7526 these DIEs are identified by the fact that they have no byte_size
7527 attribute, and a declaration attribute. */
7528 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
7529 || !die_is_declaration (die, cu))
7530 new_symbol (die, type, cu);
7531 }
7532
7533 /* Given a DW_AT_enumeration_type die, set its type. We do not
7534 complete the type's fields yet, or create any symbols. */
7535
7536 static struct type *
7537 read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
7538 {
7539 struct objfile *objfile = cu->objfile;
7540 struct type *type;
7541 struct attribute *attr;
7542 const char *name;
7543
7544 /* If the definition of this type lives in .debug_types, read that type.
7545 Don't follow DW_AT_specification though, that will take us back up
7546 the chain and we want to go down. */
7547 attr = dwarf2_attr_no_follow (die, DW_AT_signature, cu);
7548 if (attr)
7549 {
7550 struct dwarf2_cu *type_cu = cu;
7551 struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
7552
7553 type = read_type_die (type_die, type_cu);
7554
7555 /* TYPE_CU may not be the same as CU.
7556 Ensure TYPE is recorded in CU's type_hash table. */
7557 return set_die_type (die, type, cu);
7558 }
7559
7560 type = alloc_type (objfile);
7561
7562 TYPE_CODE (type) = TYPE_CODE_ENUM;
7563 name = dwarf2_full_name (NULL, die, cu);
7564 if (name != NULL)
7565 TYPE_TAG_NAME (type) = (char *) name;
7566
7567 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7568 if (attr)
7569 {
7570 TYPE_LENGTH (type) = DW_UNSND (attr);
7571 }
7572 else
7573 {
7574 TYPE_LENGTH (type) = 0;
7575 }
7576
7577 /* The enumeration DIE can be incomplete. In Ada, any type can be
7578 declared as private in the package spec, and then defined only
7579 inside the package body. Such types are known as Taft Amendment
7580 Types. When another package uses such a type, an incomplete DIE
7581 may be generated by the compiler. */
7582 if (die_is_declaration (die, cu))
7583 TYPE_STUB (type) = 1;
7584
7585 return set_die_type (die, type, cu);
7586 }
7587
7588 /* Given a pointer to a die which begins an enumeration, process all
7589 the dies that define the members of the enumeration, and create the
7590 symbol for the enumeration type.
7591
7592 NOTE: We reverse the order of the element list. */
7593
7594 static void
7595 process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
7596 {
7597 struct type *this_type;
7598
7599 this_type = get_die_type (die, cu);
7600 if (this_type == NULL)
7601 this_type = read_enumeration_type (die, cu);
7602
7603 if (die->child != NULL)
7604 {
7605 struct die_info *child_die;
7606 struct symbol *sym;
7607 struct field *fields = NULL;
7608 int num_fields = 0;
7609 int unsigned_enum = 1;
7610 char *name;
7611
7612 child_die = die->child;
7613 while (child_die && child_die->tag)
7614 {
7615 if (child_die->tag != DW_TAG_enumerator)
7616 {
7617 process_die (child_die, cu);
7618 }
7619 else
7620 {
7621 name = dwarf2_name (child_die, cu);
7622 if (name)
7623 {
7624 sym = new_symbol (child_die, this_type, cu);
7625 if (SYMBOL_VALUE (sym) < 0)
7626 unsigned_enum = 0;
7627
7628 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
7629 {
7630 fields = (struct field *)
7631 xrealloc (fields,
7632 (num_fields + DW_FIELD_ALLOC_CHUNK)
7633 * sizeof (struct field));
7634 }
7635
7636 FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
7637 FIELD_TYPE (fields[num_fields]) = NULL;
7638 SET_FIELD_BITPOS (fields[num_fields], SYMBOL_VALUE (sym));
7639 FIELD_BITSIZE (fields[num_fields]) = 0;
7640
7641 num_fields++;
7642 }
7643 }
7644
7645 child_die = sibling_die (child_die);
7646 }
7647
7648 if (num_fields)
7649 {
7650 TYPE_NFIELDS (this_type) = num_fields;
7651 TYPE_FIELDS (this_type) = (struct field *)
7652 TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
7653 memcpy (TYPE_FIELDS (this_type), fields,
7654 sizeof (struct field) * num_fields);
7655 xfree (fields);
7656 }
7657 if (unsigned_enum)
7658 TYPE_UNSIGNED (this_type) = 1;
7659 }
7660
7661 new_symbol (die, this_type, cu);
7662 }
7663
7664 /* Extract all information from a DW_TAG_array_type DIE and put it in
7665 the DIE's type field. For now, this only handles one dimensional
7666 arrays. */
7667
7668 static struct type *
7669 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
7670 {
7671 struct objfile *objfile = cu->objfile;
7672 struct die_info *child_die;
7673 struct type *type;
7674 struct type *element_type, *range_type, *index_type;
7675 struct type **range_types = NULL;
7676 struct attribute *attr;
7677 int ndim = 0;
7678 struct cleanup *back_to;
7679 char *name;
7680
7681 element_type = die_type (die, cu);
7682
7683 /* The die_type call above may have already set the type for this DIE. */
7684 type = get_die_type (die, cu);
7685 if (type)
7686 return type;
7687
7688 /* Irix 6.2 native cc creates array types without children for
7689 arrays with unspecified length. */
7690 if (die->child == NULL)
7691 {
7692 index_type = objfile_type (objfile)->builtin_int;
7693 range_type = create_range_type (NULL, index_type, 0, -1);
7694 type = create_array_type (NULL, element_type, range_type);
7695 return set_die_type (die, type, cu);
7696 }
7697
7698 back_to = make_cleanup (null_cleanup, NULL);
7699 child_die = die->child;
7700 while (child_die && child_die->tag)
7701 {
7702 if (child_die->tag == DW_TAG_subrange_type)
7703 {
7704 struct type *child_type = read_type_die (child_die, cu);
7705
7706 if (child_type != NULL)
7707 {
7708 /* The range type was succesfully read. Save it for the
7709 array type creation. */
7710 if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
7711 {
7712 range_types = (struct type **)
7713 xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
7714 * sizeof (struct type *));
7715 if (ndim == 0)
7716 make_cleanup (free_current_contents, &range_types);
7717 }
7718 range_types[ndim++] = child_type;
7719 }
7720 }
7721 child_die = sibling_die (child_die);
7722 }
7723
7724 /* Dwarf2 dimensions are output from left to right, create the
7725 necessary array types in backwards order. */
7726
7727 type = element_type;
7728
7729 if (read_array_order (die, cu) == DW_ORD_col_major)
7730 {
7731 int i = 0;
7732
7733 while (i < ndim)
7734 type = create_array_type (NULL, type, range_types[i++]);
7735 }
7736 else
7737 {
7738 while (ndim-- > 0)
7739 type = create_array_type (NULL, type, range_types[ndim]);
7740 }
7741
7742 /* Understand Dwarf2 support for vector types (like they occur on
7743 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
7744 array type. This is not part of the Dwarf2/3 standard yet, but a
7745 custom vendor extension. The main difference between a regular
7746 array and the vector variant is that vectors are passed by value
7747 to functions. */
7748 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
7749 if (attr)
7750 make_vector_type (type);
7751
7752 /* The DIE may have DW_AT_byte_size set. For example an OpenCL
7753 implementation may choose to implement triple vectors using this
7754 attribute. */
7755 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7756 if (attr)
7757 {
7758 if (DW_UNSND (attr) >= TYPE_LENGTH (type))
7759 TYPE_LENGTH (type) = DW_UNSND (attr);
7760 else
7761 complaint (&symfile_complaints,
7762 _("DW_AT_byte_size for array type smaller "
7763 "than the total size of elements"));
7764 }
7765
7766 name = dwarf2_name (die, cu);
7767 if (name)
7768 TYPE_NAME (type) = name;
7769
7770 /* Install the type in the die. */
7771 set_die_type (die, type, cu);
7772
7773 /* set_die_type should be already done. */
7774 set_descriptive_type (type, die, cu);
7775
7776 do_cleanups (back_to);
7777
7778 return type;
7779 }
7780
7781 static enum dwarf_array_dim_ordering
7782 read_array_order (struct die_info *die, struct dwarf2_cu *cu)
7783 {
7784 struct attribute *attr;
7785
7786 attr = dwarf2_attr (die, DW_AT_ordering, cu);
7787
7788 if (attr) return DW_SND (attr);
7789
7790 /* GNU F77 is a special case, as at 08/2004 array type info is the
7791 opposite order to the dwarf2 specification, but data is still
7792 laid out as per normal fortran.
7793
7794 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
7795 version checking. */
7796
7797 if (cu->language == language_fortran
7798 && cu->producer && strstr (cu->producer, "GNU F77"))
7799 {
7800 return DW_ORD_row_major;
7801 }
7802
7803 switch (cu->language_defn->la_array_ordering)
7804 {
7805 case array_column_major:
7806 return DW_ORD_col_major;
7807 case array_row_major:
7808 default:
7809 return DW_ORD_row_major;
7810 };
7811 }
7812
7813 /* Extract all information from a DW_TAG_set_type DIE and put it in
7814 the DIE's type field. */
7815
7816 static struct type *
7817 read_set_type (struct die_info *die, struct dwarf2_cu *cu)
7818 {
7819 struct type *domain_type, *set_type;
7820 struct attribute *attr;
7821
7822 domain_type = die_type (die, cu);
7823
7824 /* The die_type call above may have already set the type for this DIE. */
7825 set_type = get_die_type (die, cu);
7826 if (set_type)
7827 return set_type;
7828
7829 set_type = create_set_type (NULL, domain_type);
7830
7831 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7832 if (attr)
7833 TYPE_LENGTH (set_type) = DW_UNSND (attr);
7834
7835 return set_die_type (die, set_type, cu);
7836 }
7837
7838 /* First cut: install each common block member as a global variable. */
7839
7840 static void
7841 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
7842 {
7843 struct die_info *child_die;
7844 struct attribute *attr;
7845 struct symbol *sym;
7846 CORE_ADDR base = (CORE_ADDR) 0;
7847
7848 attr = dwarf2_attr (die, DW_AT_location, cu);
7849 if (attr)
7850 {
7851 /* Support the .debug_loc offsets. */
7852 if (attr_form_is_block (attr))
7853 {
7854 base = decode_locdesc (DW_BLOCK (attr), cu);
7855 }
7856 else if (attr_form_is_section_offset (attr))
7857 {
7858 dwarf2_complex_location_expr_complaint ();
7859 }
7860 else
7861 {
7862 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
7863 "common block member");
7864 }
7865 }
7866 if (die->child != NULL)
7867 {
7868 child_die = die->child;
7869 while (child_die && child_die->tag)
7870 {
7871 LONGEST offset;
7872
7873 sym = new_symbol (child_die, NULL, cu);
7874 if (sym != NULL
7875 && handle_data_member_location (child_die, cu, &offset))
7876 {
7877 SYMBOL_VALUE_ADDRESS (sym) = base + offset;
7878 add_symbol_to_list (sym, &global_symbols);
7879 }
7880 child_die = sibling_die (child_die);
7881 }
7882 }
7883 }
7884
7885 /* Create a type for a C++ namespace. */
7886
7887 static struct type *
7888 read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
7889 {
7890 struct objfile *objfile = cu->objfile;
7891 const char *previous_prefix, *name;
7892 int is_anonymous;
7893 struct type *type;
7894
7895 /* For extensions, reuse the type of the original namespace. */
7896 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
7897 {
7898 struct die_info *ext_die;
7899 struct dwarf2_cu *ext_cu = cu;
7900
7901 ext_die = dwarf2_extension (die, &ext_cu);
7902 type = read_type_die (ext_die, ext_cu);
7903
7904 /* EXT_CU may not be the same as CU.
7905 Ensure TYPE is recorded in CU's type_hash table. */
7906 return set_die_type (die, type, cu);
7907 }
7908
7909 name = namespace_name (die, &is_anonymous, cu);
7910
7911 /* Now build the name of the current namespace. */
7912
7913 previous_prefix = determine_prefix (die, cu);
7914 if (previous_prefix[0] != '\0')
7915 name = typename_concat (&objfile->objfile_obstack,
7916 previous_prefix, name, 0, cu);
7917
7918 /* Create the type. */
7919 type = init_type (TYPE_CODE_NAMESPACE, 0, 0, NULL,
7920 objfile);
7921 TYPE_NAME (type) = (char *) name;
7922 TYPE_TAG_NAME (type) = TYPE_NAME (type);
7923
7924 return set_die_type (die, type, cu);
7925 }
7926
7927 /* Read a C++ namespace. */
7928
7929 static void
7930 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
7931 {
7932 struct objfile *objfile = cu->objfile;
7933 int is_anonymous;
7934
7935 /* Add a symbol associated to this if we haven't seen the namespace
7936 before. Also, add a using directive if it's an anonymous
7937 namespace. */
7938
7939 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
7940 {
7941 struct type *type;
7942
7943 type = read_type_die (die, cu);
7944 new_symbol (die, type, cu);
7945
7946 namespace_name (die, &is_anonymous, cu);
7947 if (is_anonymous)
7948 {
7949 const char *previous_prefix = determine_prefix (die, cu);
7950
7951 cp_add_using_directive (previous_prefix, TYPE_NAME (type), NULL,
7952 NULL, NULL, &objfile->objfile_obstack);
7953 }
7954 }
7955
7956 if (die->child != NULL)
7957 {
7958 struct die_info *child_die = die->child;
7959
7960 while (child_die && child_die->tag)
7961 {
7962 process_die (child_die, cu);
7963 child_die = sibling_die (child_die);
7964 }
7965 }
7966 }
7967
7968 /* Read a Fortran module as type. This DIE can be only a declaration used for
7969 imported module. Still we need that type as local Fortran "use ... only"
7970 declaration imports depend on the created type in determine_prefix. */
7971
7972 static struct type *
7973 read_module_type (struct die_info *die, struct dwarf2_cu *cu)
7974 {
7975 struct objfile *objfile = cu->objfile;
7976 char *module_name;
7977 struct type *type;
7978
7979 module_name = dwarf2_name (die, cu);
7980 if (!module_name)
7981 complaint (&symfile_complaints,
7982 _("DW_TAG_module has no name, offset 0x%x"),
7983 die->offset);
7984 type = init_type (TYPE_CODE_MODULE, 0, 0, module_name, objfile);
7985
7986 /* determine_prefix uses TYPE_TAG_NAME. */
7987 TYPE_TAG_NAME (type) = TYPE_NAME (type);
7988
7989 return set_die_type (die, type, cu);
7990 }
7991
7992 /* Read a Fortran module. */
7993
7994 static void
7995 read_module (struct die_info *die, struct dwarf2_cu *cu)
7996 {
7997 struct die_info *child_die = die->child;
7998
7999 while (child_die && child_die->tag)
8000 {
8001 process_die (child_die, cu);
8002 child_die = sibling_die (child_die);
8003 }
8004 }
8005
8006 /* Return the name of the namespace represented by DIE. Set
8007 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
8008 namespace. */
8009
8010 static const char *
8011 namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
8012 {
8013 struct die_info *current_die;
8014 const char *name = NULL;
8015
8016 /* Loop through the extensions until we find a name. */
8017
8018 for (current_die = die;
8019 current_die != NULL;
8020 current_die = dwarf2_extension (die, &cu))
8021 {
8022 name = dwarf2_name (current_die, cu);
8023 if (name != NULL)
8024 break;
8025 }
8026
8027 /* Is it an anonymous namespace? */
8028
8029 *is_anonymous = (name == NULL);
8030 if (*is_anonymous)
8031 name = CP_ANONYMOUS_NAMESPACE_STR;
8032
8033 return name;
8034 }
8035
8036 /* Extract all information from a DW_TAG_pointer_type DIE and add to
8037 the user defined type vector. */
8038
8039 static struct type *
8040 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
8041 {
8042 struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
8043 struct comp_unit_head *cu_header = &cu->header;
8044 struct type *type;
8045 struct attribute *attr_byte_size;
8046 struct attribute *attr_address_class;
8047 int byte_size, addr_class;
8048 struct type *target_type;
8049
8050 target_type = die_type (die, cu);
8051
8052 /* The die_type call above may have already set the type for this DIE. */
8053 type = get_die_type (die, cu);
8054 if (type)
8055 return type;
8056
8057 type = lookup_pointer_type (target_type);
8058
8059 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
8060 if (attr_byte_size)
8061 byte_size = DW_UNSND (attr_byte_size);
8062 else
8063 byte_size = cu_header->addr_size;
8064
8065 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
8066 if (attr_address_class)
8067 addr_class = DW_UNSND (attr_address_class);
8068 else
8069 addr_class = DW_ADDR_none;
8070
8071 /* If the pointer size or address class is different than the
8072 default, create a type variant marked as such and set the
8073 length accordingly. */
8074 if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
8075 {
8076 if (gdbarch_address_class_type_flags_p (gdbarch))
8077 {
8078 int type_flags;
8079
8080 type_flags = gdbarch_address_class_type_flags
8081 (gdbarch, byte_size, addr_class);
8082 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
8083 == 0);
8084 type = make_type_with_address_space (type, type_flags);
8085 }
8086 else if (TYPE_LENGTH (type) != byte_size)
8087 {
8088 complaint (&symfile_complaints,
8089 _("invalid pointer size %d"), byte_size);
8090 }
8091 else
8092 {
8093 /* Should we also complain about unhandled address classes? */
8094 }
8095 }
8096
8097 TYPE_LENGTH (type) = byte_size;
8098 return set_die_type (die, type, cu);
8099 }
8100
8101 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
8102 the user defined type vector. */
8103
8104 static struct type *
8105 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
8106 {
8107 struct type *type;
8108 struct type *to_type;
8109 struct type *domain;
8110
8111 to_type = die_type (die, cu);
8112 domain = die_containing_type (die, cu);
8113
8114 /* The calls above may have already set the type for this DIE. */
8115 type = get_die_type (die, cu);
8116 if (type)
8117 return type;
8118
8119 if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
8120 type = lookup_methodptr_type (to_type);
8121 else
8122 type = lookup_memberptr_type (to_type, domain);
8123
8124 return set_die_type (die, type, cu);
8125 }
8126
8127 /* Extract all information from a DW_TAG_reference_type DIE and add to
8128 the user defined type vector. */
8129
8130 static struct type *
8131 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
8132 {
8133 struct comp_unit_head *cu_header = &cu->header;
8134 struct type *type, *target_type;
8135 struct attribute *attr;
8136
8137 target_type = die_type (die, cu);
8138
8139 /* The die_type call above may have already set the type for this DIE. */
8140 type = get_die_type (die, cu);
8141 if (type)
8142 return type;
8143
8144 type = lookup_reference_type (target_type);
8145 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
8146 if (attr)
8147 {
8148 TYPE_LENGTH (type) = DW_UNSND (attr);
8149 }
8150 else
8151 {
8152 TYPE_LENGTH (type) = cu_header->addr_size;
8153 }
8154 return set_die_type (die, type, cu);
8155 }
8156
8157 static struct type *
8158 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
8159 {
8160 struct type *base_type, *cv_type;
8161
8162 base_type = die_type (die, cu);
8163
8164 /* The die_type call above may have already set the type for this DIE. */
8165 cv_type = get_die_type (die, cu);
8166 if (cv_type)
8167 return cv_type;
8168
8169 /* In case the const qualifier is applied to an array type, the element type
8170 is so qualified, not the array type (section 6.7.3 of C99). */
8171 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
8172 {
8173 struct type *el_type, *inner_array;
8174
8175 base_type = copy_type (base_type);
8176 inner_array = base_type;
8177
8178 while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
8179 {
8180 TYPE_TARGET_TYPE (inner_array) =
8181 copy_type (TYPE_TARGET_TYPE (inner_array));
8182 inner_array = TYPE_TARGET_TYPE (inner_array);
8183 }
8184
8185 el_type = TYPE_TARGET_TYPE (inner_array);
8186 TYPE_TARGET_TYPE (inner_array) =
8187 make_cv_type (1, TYPE_VOLATILE (el_type), el_type, NULL);
8188
8189 return set_die_type (die, base_type, cu);
8190 }
8191
8192 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
8193 return set_die_type (die, cv_type, cu);
8194 }
8195
8196 static struct type *
8197 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
8198 {
8199 struct type *base_type, *cv_type;
8200
8201 base_type = die_type (die, cu);
8202
8203 /* The die_type call above may have already set the type for this DIE. */
8204 cv_type = get_die_type (die, cu);
8205 if (cv_type)
8206 return cv_type;
8207
8208 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
8209 return set_die_type (die, cv_type, cu);
8210 }
8211
8212 /* Extract all information from a DW_TAG_string_type DIE and add to
8213 the user defined type vector. It isn't really a user defined type,
8214 but it behaves like one, with other DIE's using an AT_user_def_type
8215 attribute to reference it. */
8216
8217 static struct type *
8218 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
8219 {
8220 struct objfile *objfile = cu->objfile;
8221 struct gdbarch *gdbarch = get_objfile_arch (objfile);
8222 struct type *type, *range_type, *index_type, *char_type;
8223 struct attribute *attr;
8224 unsigned int length;
8225
8226 attr = dwarf2_attr (die, DW_AT_string_length, cu);
8227 if (attr)
8228 {
8229 length = DW_UNSND (attr);
8230 }
8231 else
8232 {
8233 /* Check for the DW_AT_byte_size attribute. */
8234 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
8235 if (attr)
8236 {
8237 length = DW_UNSND (attr);
8238 }
8239 else
8240 {
8241 length = 1;
8242 }
8243 }
8244
8245 index_type = objfile_type (objfile)->builtin_int;
8246 range_type = create_range_type (NULL, index_type, 1, length);
8247 char_type = language_string_char_type (cu->language_defn, gdbarch);
8248 type = create_string_type (NULL, char_type, range_type);
8249
8250 return set_die_type (die, type, cu);
8251 }
8252
8253 /* Handle DIES due to C code like:
8254
8255 struct foo
8256 {
8257 int (*funcp)(int a, long l);
8258 int b;
8259 };
8260
8261 ('funcp' generates a DW_TAG_subroutine_type DIE). */
8262
8263 static struct type *
8264 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
8265 {
8266 struct type *type; /* Type that this function returns. */
8267 struct type *ftype; /* Function that returns above type. */
8268 struct attribute *attr;
8269
8270 type = die_type (die, cu);
8271
8272 /* The die_type call above may have already set the type for this DIE. */
8273 ftype = get_die_type (die, cu);
8274 if (ftype)
8275 return ftype;
8276
8277 ftype = lookup_function_type (type);
8278
8279 /* All functions in C++, Pascal and Java have prototypes. */
8280 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
8281 if ((attr && (DW_UNSND (attr) != 0))
8282 || cu->language == language_cplus
8283 || cu->language == language_java
8284 || cu->language == language_pascal)
8285 TYPE_PROTOTYPED (ftype) = 1;
8286 else if (producer_is_realview (cu->producer))
8287 /* RealView does not emit DW_AT_prototyped. We can not
8288 distinguish prototyped and unprototyped functions; default to
8289 prototyped, since that is more common in modern code (and
8290 RealView warns about unprototyped functions). */
8291 TYPE_PROTOTYPED (ftype) = 1;
8292
8293 /* Store the calling convention in the type if it's available in
8294 the subroutine die. Otherwise set the calling convention to
8295 the default value DW_CC_normal. */
8296 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
8297 if (attr)
8298 TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
8299 else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
8300 TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
8301 else
8302 TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
8303
8304 /* We need to add the subroutine type to the die immediately so
8305 we don't infinitely recurse when dealing with parameters
8306 declared as the same subroutine type. */
8307 set_die_type (die, ftype, cu);
8308
8309 if (die->child != NULL)
8310 {
8311 struct type *void_type = objfile_type (cu->objfile)->builtin_void;
8312 struct die_info *child_die;
8313 int nparams, iparams;
8314
8315 /* Count the number of parameters.
8316 FIXME: GDB currently ignores vararg functions, but knows about
8317 vararg member functions. */
8318 nparams = 0;
8319 child_die = die->child;
8320 while (child_die && child_die->tag)
8321 {
8322 if (child_die->tag == DW_TAG_formal_parameter)
8323 nparams++;
8324 else if (child_die->tag == DW_TAG_unspecified_parameters)
8325 TYPE_VARARGS (ftype) = 1;
8326 child_die = sibling_die (child_die);
8327 }
8328
8329 /* Allocate storage for parameters and fill them in. */
8330 TYPE_NFIELDS (ftype) = nparams;
8331 TYPE_FIELDS (ftype) = (struct field *)
8332 TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
8333
8334 /* TYPE_FIELD_TYPE must never be NULL. Pre-fill the array to ensure it
8335 even if we error out during the parameters reading below. */
8336 for (iparams = 0; iparams < nparams; iparams++)
8337 TYPE_FIELD_TYPE (ftype, iparams) = void_type;
8338
8339 iparams = 0;
8340 child_die = die->child;
8341 while (child_die && child_die->tag)
8342 {
8343 if (child_die->tag == DW_TAG_formal_parameter)
8344 {
8345 struct type *arg_type;
8346
8347 /* DWARF version 2 has no clean way to discern C++
8348 static and non-static member functions. G++ helps
8349 GDB by marking the first parameter for non-static
8350 member functions (which is the this pointer) as
8351 artificial. We pass this information to
8352 dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
8353
8354 DWARF version 3 added DW_AT_object_pointer, which GCC
8355 4.5 does not yet generate. */
8356 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
8357 if (attr)
8358 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
8359 else
8360 {
8361 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
8362
8363 /* GCC/43521: In java, the formal parameter
8364 "this" is sometimes not marked with DW_AT_artificial. */
8365 if (cu->language == language_java)
8366 {
8367 const char *name = dwarf2_name (child_die, cu);
8368
8369 if (name && !strcmp (name, "this"))
8370 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 1;
8371 }
8372 }
8373 arg_type = die_type (child_die, cu);
8374
8375 /* RealView does not mark THIS as const, which the testsuite
8376 expects. GCC marks THIS as const in method definitions,
8377 but not in the class specifications (GCC PR 43053). */
8378 if (cu->language == language_cplus && !TYPE_CONST (arg_type)
8379 && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
8380 {
8381 int is_this = 0;
8382 struct dwarf2_cu *arg_cu = cu;
8383 const char *name = dwarf2_name (child_die, cu);
8384
8385 attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
8386 if (attr)
8387 {
8388 /* If the compiler emits this, use it. */
8389 if (follow_die_ref (die, attr, &arg_cu) == child_die)
8390 is_this = 1;
8391 }
8392 else if (name && strcmp (name, "this") == 0)
8393 /* Function definitions will have the argument names. */
8394 is_this = 1;
8395 else if (name == NULL && iparams == 0)
8396 /* Declarations may not have the names, so like
8397 elsewhere in GDB, assume an artificial first
8398 argument is "this". */
8399 is_this = 1;
8400
8401 if (is_this)
8402 arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
8403 arg_type, 0);
8404 }
8405
8406 TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
8407 iparams++;
8408 }
8409 child_die = sibling_die (child_die);
8410 }
8411 }
8412
8413 return ftype;
8414 }
8415
8416 static struct type *
8417 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
8418 {
8419 struct objfile *objfile = cu->objfile;
8420 const char *name = NULL;
8421 struct type *this_type;
8422
8423 name = dwarf2_full_name (NULL, die, cu);
8424 this_type = init_type (TYPE_CODE_TYPEDEF, 0,
8425 TYPE_FLAG_TARGET_STUB, NULL, objfile);
8426 TYPE_NAME (this_type) = (char *) name;
8427 set_die_type (die, this_type, cu);
8428 TYPE_TARGET_TYPE (this_type) = die_type (die, cu);
8429 return this_type;
8430 }
8431
8432 /* Find a representation of a given base type and install
8433 it in the TYPE field of the die. */
8434
8435 static struct type *
8436 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
8437 {
8438 struct objfile *objfile = cu->objfile;
8439 struct type *type;
8440 struct attribute *attr;
8441 int encoding = 0, size = 0;
8442 char *name;
8443 enum type_code code = TYPE_CODE_INT;
8444 int type_flags = 0;
8445 struct type *target_type = NULL;
8446
8447 attr = dwarf2_attr (die, DW_AT_encoding, cu);
8448 if (attr)
8449 {
8450 encoding = DW_UNSND (attr);
8451 }
8452 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
8453 if (attr)
8454 {
8455 size = DW_UNSND (attr);
8456 }
8457 name = dwarf2_name (die, cu);
8458 if (!name)
8459 {
8460 complaint (&symfile_complaints,
8461 _("DW_AT_name missing from DW_TAG_base_type"));
8462 }
8463
8464 switch (encoding)
8465 {
8466 case DW_ATE_address:
8467 /* Turn DW_ATE_address into a void * pointer. */
8468 code = TYPE_CODE_PTR;
8469 type_flags |= TYPE_FLAG_UNSIGNED;
8470 target_type = init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
8471 break;
8472 case DW_ATE_boolean:
8473 code = TYPE_CODE_BOOL;
8474 type_flags |= TYPE_FLAG_UNSIGNED;
8475 break;
8476 case DW_ATE_complex_float:
8477 code = TYPE_CODE_COMPLEX;
8478 target_type = init_type (TYPE_CODE_FLT, size / 2, 0, NULL, objfile);
8479 break;
8480 case DW_ATE_decimal_float:
8481 code = TYPE_CODE_DECFLOAT;
8482 break;
8483 case DW_ATE_float:
8484 code = TYPE_CODE_FLT;
8485 break;
8486 case DW_ATE_signed:
8487 break;
8488 case DW_ATE_unsigned:
8489 type_flags |= TYPE_FLAG_UNSIGNED;
8490 if (cu->language == language_fortran
8491 && name
8492 && strncmp (name, "character(", sizeof ("character(") - 1) == 0)
8493 code = TYPE_CODE_CHAR;
8494 break;
8495 case DW_ATE_signed_char:
8496 if (cu->language == language_ada || cu->language == language_m2
8497 || cu->language == language_pascal
8498 || cu->language == language_fortran)
8499 code = TYPE_CODE_CHAR;
8500 break;
8501 case DW_ATE_unsigned_char:
8502 if (cu->language == language_ada || cu->language == language_m2
8503 || cu->language == language_pascal
8504 || cu->language == language_fortran)
8505 code = TYPE_CODE_CHAR;
8506 type_flags |= TYPE_FLAG_UNSIGNED;
8507 break;
8508 case DW_ATE_UTF:
8509 /* We just treat this as an integer and then recognize the
8510 type by name elsewhere. */
8511 break;
8512
8513 default:
8514 complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
8515 dwarf_type_encoding_name (encoding));
8516 break;
8517 }
8518
8519 type = init_type (code, size, type_flags, NULL, objfile);
8520 TYPE_NAME (type) = name;
8521 TYPE_TARGET_TYPE (type) = target_type;
8522
8523 if (name && strcmp (name, "char") == 0)
8524 TYPE_NOSIGN (type) = 1;
8525
8526 return set_die_type (die, type, cu);
8527 }
8528
8529 /* Read the given DW_AT_subrange DIE. */
8530
8531 static struct type *
8532 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
8533 {
8534 struct type *base_type;
8535 struct type *range_type;
8536 struct attribute *attr;
8537 LONGEST low = 0;
8538 LONGEST high = -1;
8539 char *name;
8540 LONGEST negative_mask;
8541
8542 base_type = die_type (die, cu);
8543 /* Preserve BASE_TYPE's original type, just set its LENGTH. */
8544 check_typedef (base_type);
8545
8546 /* The die_type call above may have already set the type for this DIE. */
8547 range_type = get_die_type (die, cu);
8548 if (range_type)
8549 return range_type;
8550
8551 if (cu->language == language_fortran)
8552 {
8553 /* FORTRAN implies a lower bound of 1, if not given. */
8554 low = 1;
8555 }
8556
8557 /* FIXME: For variable sized arrays either of these could be
8558 a variable rather than a constant value. We'll allow it,
8559 but we don't know how to handle it. */
8560 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
8561 if (attr)
8562 low = dwarf2_get_attr_constant_value (attr, 0);
8563
8564 attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
8565 if (attr)
8566 {
8567 if (attr->form == DW_FORM_block1 || is_ref_attr (attr))
8568 {
8569 /* GCC encodes arrays with unspecified or dynamic length
8570 with a DW_FORM_block1 attribute or a reference attribute.
8571 FIXME: GDB does not yet know how to handle dynamic
8572 arrays properly, treat them as arrays with unspecified
8573 length for now.
8574
8575 FIXME: jimb/2003-09-22: GDB does not really know
8576 how to handle arrays of unspecified length
8577 either; we just represent them as zero-length
8578 arrays. Choose an appropriate upper bound given
8579 the lower bound we've computed above. */
8580 high = low - 1;
8581 }
8582 else
8583 high = dwarf2_get_attr_constant_value (attr, 1);
8584 }
8585 else
8586 {
8587 attr = dwarf2_attr (die, DW_AT_count, cu);
8588 if (attr)
8589 {
8590 int count = dwarf2_get_attr_constant_value (attr, 1);
8591 high = low + count - 1;
8592 }
8593 else
8594 {
8595 /* Unspecified array length. */
8596 high = low - 1;
8597 }
8598 }
8599
8600 /* Dwarf-2 specifications explicitly allows to create subrange types
8601 without specifying a base type.
8602 In that case, the base type must be set to the type of
8603 the lower bound, upper bound or count, in that order, if any of these
8604 three attributes references an object that has a type.
8605 If no base type is found, the Dwarf-2 specifications say that
8606 a signed integer type of size equal to the size of an address should
8607 be used.
8608 For the following C code: `extern char gdb_int [];'
8609 GCC produces an empty range DIE.
8610 FIXME: muller/2010-05-28: Possible references to object for low bound,
8611 high bound or count are not yet handled by this code. */
8612 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
8613 {
8614 struct objfile *objfile = cu->objfile;
8615 struct gdbarch *gdbarch = get_objfile_arch (objfile);
8616 int addr_size = gdbarch_addr_bit (gdbarch) /8;
8617 struct type *int_type = objfile_type (objfile)->builtin_int;
8618
8619 /* Test "int", "long int", and "long long int" objfile types,
8620 and select the first one having a size above or equal to the
8621 architecture address size. */
8622 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
8623 base_type = int_type;
8624 else
8625 {
8626 int_type = objfile_type (objfile)->builtin_long;
8627 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
8628 base_type = int_type;
8629 else
8630 {
8631 int_type = objfile_type (objfile)->builtin_long_long;
8632 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
8633 base_type = int_type;
8634 }
8635 }
8636 }
8637
8638 negative_mask =
8639 (LONGEST) -1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1);
8640 if (!TYPE_UNSIGNED (base_type) && (low & negative_mask))
8641 low |= negative_mask;
8642 if (!TYPE_UNSIGNED (base_type) && (high & negative_mask))
8643 high |= negative_mask;
8644
8645 range_type = create_range_type (NULL, base_type, low, high);
8646
8647 /* Mark arrays with dynamic length at least as an array of unspecified
8648 length. GDB could check the boundary but before it gets implemented at
8649 least allow accessing the array elements. */
8650 if (attr && attr->form == DW_FORM_block1)
8651 TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
8652
8653 /* Ada expects an empty array on no boundary attributes. */
8654 if (attr == NULL && cu->language != language_ada)
8655 TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
8656
8657 name = dwarf2_name (die, cu);
8658 if (name)
8659 TYPE_NAME (range_type) = name;
8660
8661 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
8662 if (attr)
8663 TYPE_LENGTH (range_type) = DW_UNSND (attr);
8664
8665 set_die_type (die, range_type, cu);
8666
8667 /* set_die_type should be already done. */
8668 set_descriptive_type (range_type, die, cu);
8669
8670 return range_type;
8671 }
8672
8673 static struct type *
8674 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
8675 {
8676 struct type *type;
8677
8678 /* For now, we only support the C meaning of an unspecified type: void. */
8679
8680 type = init_type (TYPE_CODE_VOID, 0, 0, NULL, cu->objfile);
8681 TYPE_NAME (type) = dwarf2_name (die, cu);
8682
8683 return set_die_type (die, type, cu);
8684 }
8685
8686 /* Trivial hash function for die_info: the hash value of a DIE
8687 is its offset in .debug_info for this objfile. */
8688
8689 static hashval_t
8690 die_hash (const void *item)
8691 {
8692 const struct die_info *die = item;
8693
8694 return die->offset;
8695 }
8696
8697 /* Trivial comparison function for die_info structures: two DIEs
8698 are equal if they have the same offset. */
8699
8700 static int
8701 die_eq (const void *item_lhs, const void *item_rhs)
8702 {
8703 const struct die_info *die_lhs = item_lhs;
8704 const struct die_info *die_rhs = item_rhs;
8705
8706 return die_lhs->offset == die_rhs->offset;
8707 }
8708
8709 /* Read a whole compilation unit into a linked list of dies. */
8710
8711 static struct die_info *
8712 read_comp_unit (gdb_byte *info_ptr, struct dwarf2_cu *cu)
8713 {
8714 struct die_reader_specs reader_specs;
8715 int read_abbrevs = 0;
8716 struct cleanup *back_to = NULL;
8717 struct die_info *die;
8718
8719 if (cu->dwarf2_abbrevs == NULL)
8720 {
8721 dwarf2_read_abbrevs (cu->objfile->obfd, cu);
8722 back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
8723 read_abbrevs = 1;
8724 }
8725
8726 gdb_assert (cu->die_hash == NULL);
8727 cu->die_hash
8728 = htab_create_alloc_ex (cu->header.length / 12,
8729 die_hash,
8730 die_eq,
8731 NULL,
8732 &cu->comp_unit_obstack,
8733 hashtab_obstack_allocate,
8734 dummy_obstack_deallocate);
8735
8736 init_cu_die_reader (&reader_specs, cu);
8737
8738 die = read_die_and_children (&reader_specs, info_ptr, &info_ptr, NULL);
8739
8740 if (read_abbrevs)
8741 do_cleanups (back_to);
8742
8743 return die;
8744 }
8745
8746 /* Main entry point for reading a DIE and all children.
8747 Read the DIE and dump it if requested. */
8748
8749 static struct die_info *
8750 read_die_and_children (const struct die_reader_specs *reader,
8751 gdb_byte *info_ptr,
8752 gdb_byte **new_info_ptr,
8753 struct die_info *parent)
8754 {
8755 struct die_info *result = read_die_and_children_1 (reader, info_ptr,
8756 new_info_ptr, parent);
8757
8758 if (dwarf2_die_debug)
8759 {
8760 fprintf_unfiltered (gdb_stdlog,
8761 "\nRead die from %s of %s:\n",
8762 reader->buffer == dwarf2_per_objfile->info.buffer
8763 ? ".debug_info"
8764 : reader->buffer == dwarf2_per_objfile->types.buffer
8765 ? ".debug_types"
8766 : "unknown section",
8767 reader->abfd->filename);
8768 dump_die (result, dwarf2_die_debug);
8769 }
8770
8771 return result;
8772 }
8773
8774 /* Read a single die and all its descendents. Set the die's sibling
8775 field to NULL; set other fields in the die correctly, and set all
8776 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
8777 location of the info_ptr after reading all of those dies. PARENT
8778 is the parent of the die in question. */
8779
8780 static struct die_info *
8781 read_die_and_children_1 (const struct die_reader_specs *reader,
8782 gdb_byte *info_ptr,
8783 gdb_byte **new_info_ptr,
8784 struct die_info *parent)
8785 {
8786 struct die_info *die;
8787 gdb_byte *cur_ptr;
8788 int has_children;
8789
8790 cur_ptr = read_full_die (reader, &die, info_ptr, &has_children);
8791 if (die == NULL)
8792 {
8793 *new_info_ptr = cur_ptr;
8794 return NULL;
8795 }
8796 store_in_ref_table (die, reader->cu);
8797
8798 if (has_children)
8799 die->child = read_die_and_siblings (reader, cur_ptr, new_info_ptr, die);
8800 else
8801 {
8802 die->child = NULL;
8803 *new_info_ptr = cur_ptr;
8804 }
8805
8806 die->sibling = NULL;
8807 die->parent = parent;
8808 return die;
8809 }
8810
8811 /* Read a die, all of its descendents, and all of its siblings; set
8812 all of the fields of all of the dies correctly. Arguments are as
8813 in read_die_and_children. */
8814
8815 static struct die_info *
8816 read_die_and_siblings (const struct die_reader_specs *reader,
8817 gdb_byte *info_ptr,
8818 gdb_byte **new_info_ptr,
8819 struct die_info *parent)
8820 {
8821 struct die_info *first_die, *last_sibling;
8822 gdb_byte *cur_ptr;
8823
8824 cur_ptr = info_ptr;
8825 first_die = last_sibling = NULL;
8826
8827 while (1)
8828 {
8829 struct die_info *die
8830 = read_die_and_children_1 (reader, cur_ptr, &cur_ptr, parent);
8831
8832 if (die == NULL)
8833 {
8834 *new_info_ptr = cur_ptr;
8835 return first_die;
8836 }
8837
8838 if (!first_die)
8839 first_die = die;
8840 else
8841 last_sibling->sibling = die;
8842
8843 last_sibling = die;
8844 }
8845 }
8846
8847 /* Read the die from the .debug_info section buffer. Set DIEP to
8848 point to a newly allocated die with its information, except for its
8849 child, sibling, and parent fields. Set HAS_CHILDREN to tell
8850 whether the die has children or not. */
8851
8852 static gdb_byte *
8853 read_full_die (const struct die_reader_specs *reader,
8854 struct die_info **diep, gdb_byte *info_ptr,
8855 int *has_children)
8856 {
8857 unsigned int abbrev_number, bytes_read, i, offset;
8858 struct abbrev_info *abbrev;
8859 struct die_info *die;
8860 struct dwarf2_cu *cu = reader->cu;
8861 bfd *abfd = reader->abfd;
8862
8863 offset = info_ptr - reader->buffer;
8864 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
8865 info_ptr += bytes_read;
8866 if (!abbrev_number)
8867 {
8868 *diep = NULL;
8869 *has_children = 0;
8870 return info_ptr;
8871 }
8872
8873 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
8874 if (!abbrev)
8875 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
8876 abbrev_number,
8877 bfd_get_filename (abfd));
8878
8879 die = dwarf_alloc_die (cu, abbrev->num_attrs);
8880 die->offset = offset;
8881 die->tag = abbrev->tag;
8882 die->abbrev = abbrev_number;
8883
8884 die->num_attrs = abbrev->num_attrs;
8885
8886 for (i = 0; i < abbrev->num_attrs; ++i)
8887 info_ptr = read_attribute (&die->attrs[i], &abbrev->attrs[i],
8888 abfd, info_ptr, cu);
8889
8890 *diep = die;
8891 *has_children = abbrev->has_children;
8892 return info_ptr;
8893 }
8894
8895 /* In DWARF version 2, the description of the debugging information is
8896 stored in a separate .debug_abbrev section. Before we read any
8897 dies from a section we read in all abbreviations and install them
8898 in a hash table. This function also sets flags in CU describing
8899 the data found in the abbrev table. */
8900
8901 static void
8902 dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu)
8903 {
8904 struct comp_unit_head *cu_header = &cu->header;
8905 gdb_byte *abbrev_ptr;
8906 struct abbrev_info *cur_abbrev;
8907 unsigned int abbrev_number, bytes_read, abbrev_name;
8908 unsigned int abbrev_form, hash_number;
8909 struct attr_abbrev *cur_attrs;
8910 unsigned int allocated_attrs;
8911
8912 /* Initialize dwarf2 abbrevs. */
8913 obstack_init (&cu->abbrev_obstack);
8914 cu->dwarf2_abbrevs = obstack_alloc (&cu->abbrev_obstack,
8915 (ABBREV_HASH_SIZE
8916 * sizeof (struct abbrev_info *)));
8917 memset (cu->dwarf2_abbrevs, 0,
8918 ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
8919
8920 dwarf2_read_section (dwarf2_per_objfile->objfile,
8921 &dwarf2_per_objfile->abbrev);
8922 abbrev_ptr = dwarf2_per_objfile->abbrev.buffer + cu_header->abbrev_offset;
8923 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8924 abbrev_ptr += bytes_read;
8925
8926 allocated_attrs = ATTR_ALLOC_CHUNK;
8927 cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
8928
8929 /* Loop until we reach an abbrev number of 0. */
8930 while (abbrev_number)
8931 {
8932 cur_abbrev = dwarf_alloc_abbrev (cu);
8933
8934 /* read in abbrev header */
8935 cur_abbrev->number = abbrev_number;
8936 cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8937 abbrev_ptr += bytes_read;
8938 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
8939 abbrev_ptr += 1;
8940
8941 if (cur_abbrev->tag == DW_TAG_namespace)
8942 cu->has_namespace_info = 1;
8943
8944 /* now read in declarations */
8945 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8946 abbrev_ptr += bytes_read;
8947 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8948 abbrev_ptr += bytes_read;
8949 while (abbrev_name)
8950 {
8951 if (cur_abbrev->num_attrs == allocated_attrs)
8952 {
8953 allocated_attrs += ATTR_ALLOC_CHUNK;
8954 cur_attrs
8955 = xrealloc (cur_attrs, (allocated_attrs
8956 * sizeof (struct attr_abbrev)));
8957 }
8958
8959 /* Record whether this compilation unit might have
8960 inter-compilation-unit references. If we don't know what form
8961 this attribute will have, then it might potentially be a
8962 DW_FORM_ref_addr, so we conservatively expect inter-CU
8963 references. */
8964
8965 if (abbrev_form == DW_FORM_ref_addr
8966 || abbrev_form == DW_FORM_indirect)
8967 cu->has_form_ref_addr = 1;
8968
8969 cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
8970 cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
8971 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8972 abbrev_ptr += bytes_read;
8973 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8974 abbrev_ptr += bytes_read;
8975 }
8976
8977 cur_abbrev->attrs = obstack_alloc (&cu->abbrev_obstack,
8978 (cur_abbrev->num_attrs
8979 * sizeof (struct attr_abbrev)));
8980 memcpy (cur_abbrev->attrs, cur_attrs,
8981 cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
8982
8983 hash_number = abbrev_number % ABBREV_HASH_SIZE;
8984 cur_abbrev->next = cu->dwarf2_abbrevs[hash_number];
8985 cu->dwarf2_abbrevs[hash_number] = cur_abbrev;
8986
8987 /* Get next abbreviation.
8988 Under Irix6 the abbreviations for a compilation unit are not
8989 always properly terminated with an abbrev number of 0.
8990 Exit loop if we encounter an abbreviation which we have
8991 already read (which means we are about to read the abbreviations
8992 for the next compile unit) or if the end of the abbreviation
8993 table is reached. */
8994 if ((unsigned int) (abbrev_ptr - dwarf2_per_objfile->abbrev.buffer)
8995 >= dwarf2_per_objfile->abbrev.size)
8996 break;
8997 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8998 abbrev_ptr += bytes_read;
8999 if (dwarf2_lookup_abbrev (abbrev_number, cu) != NULL)
9000 break;
9001 }
9002
9003 xfree (cur_attrs);
9004 }
9005
9006 /* Release the memory used by the abbrev table for a compilation unit. */
9007
9008 static void
9009 dwarf2_free_abbrev_table (void *ptr_to_cu)
9010 {
9011 struct dwarf2_cu *cu = ptr_to_cu;
9012
9013 obstack_free (&cu->abbrev_obstack, NULL);
9014 cu->dwarf2_abbrevs = NULL;
9015 }
9016
9017 /* Lookup an abbrev_info structure in the abbrev hash table. */
9018
9019 static struct abbrev_info *
9020 dwarf2_lookup_abbrev (unsigned int number, struct dwarf2_cu *cu)
9021 {
9022 unsigned int hash_number;
9023 struct abbrev_info *abbrev;
9024
9025 hash_number = number % ABBREV_HASH_SIZE;
9026 abbrev = cu->dwarf2_abbrevs[hash_number];
9027
9028 while (abbrev)
9029 {
9030 if (abbrev->number == number)
9031 return abbrev;
9032 else
9033 abbrev = abbrev->next;
9034 }
9035 return NULL;
9036 }
9037
9038 /* Returns nonzero if TAG represents a type that we might generate a partial
9039 symbol for. */
9040
9041 static int
9042 is_type_tag_for_partial (int tag)
9043 {
9044 switch (tag)
9045 {
9046 #if 0
9047 /* Some types that would be reasonable to generate partial symbols for,
9048 that we don't at present. */
9049 case DW_TAG_array_type:
9050 case DW_TAG_file_type:
9051 case DW_TAG_ptr_to_member_type:
9052 case DW_TAG_set_type:
9053 case DW_TAG_string_type:
9054 case DW_TAG_subroutine_type:
9055 #endif
9056 case DW_TAG_base_type:
9057 case DW_TAG_class_type:
9058 case DW_TAG_interface_type:
9059 case DW_TAG_enumeration_type:
9060 case DW_TAG_structure_type:
9061 case DW_TAG_subrange_type:
9062 case DW_TAG_typedef:
9063 case DW_TAG_union_type:
9064 return 1;
9065 default:
9066 return 0;
9067 }
9068 }
9069
9070 /* Load all DIEs that are interesting for partial symbols into memory. */
9071
9072 static struct partial_die_info *
9073 load_partial_dies (bfd *abfd, gdb_byte *buffer, gdb_byte *info_ptr,
9074 int building_psymtab, struct dwarf2_cu *cu)
9075 {
9076 struct partial_die_info *part_die;
9077 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
9078 struct abbrev_info *abbrev;
9079 unsigned int bytes_read;
9080 unsigned int load_all = 0;
9081
9082 int nesting_level = 1;
9083
9084 parent_die = NULL;
9085 last_die = NULL;
9086
9087 if (cu->per_cu && cu->per_cu->load_all_dies)
9088 load_all = 1;
9089
9090 cu->partial_dies
9091 = htab_create_alloc_ex (cu->header.length / 12,
9092 partial_die_hash,
9093 partial_die_eq,
9094 NULL,
9095 &cu->comp_unit_obstack,
9096 hashtab_obstack_allocate,
9097 dummy_obstack_deallocate);
9098
9099 part_die = obstack_alloc (&cu->comp_unit_obstack,
9100 sizeof (struct partial_die_info));
9101
9102 while (1)
9103 {
9104 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
9105
9106 /* A NULL abbrev means the end of a series of children. */
9107 if (abbrev == NULL)
9108 {
9109 if (--nesting_level == 0)
9110 {
9111 /* PART_DIE was probably the last thing allocated on the
9112 comp_unit_obstack, so we could call obstack_free
9113 here. We don't do that because the waste is small,
9114 and will be cleaned up when we're done with this
9115 compilation unit. This way, we're also more robust
9116 against other users of the comp_unit_obstack. */
9117 return first_die;
9118 }
9119 info_ptr += bytes_read;
9120 last_die = parent_die;
9121 parent_die = parent_die->die_parent;
9122 continue;
9123 }
9124
9125 /* Check for template arguments. We never save these; if
9126 they're seen, we just mark the parent, and go on our way. */
9127 if (parent_die != NULL
9128 && cu->language == language_cplus
9129 && (abbrev->tag == DW_TAG_template_type_param
9130 || abbrev->tag == DW_TAG_template_value_param))
9131 {
9132 parent_die->has_template_arguments = 1;
9133
9134 if (!load_all)
9135 {
9136 /* We don't need a partial DIE for the template argument. */
9137 info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev,
9138 cu);
9139 continue;
9140 }
9141 }
9142
9143 /* We only recurse into subprograms looking for template arguments.
9144 Skip their other children. */
9145 if (!load_all
9146 && cu->language == language_cplus
9147 && parent_die != NULL
9148 && parent_die->tag == DW_TAG_subprogram)
9149 {
9150 info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
9151 continue;
9152 }
9153
9154 /* Check whether this DIE is interesting enough to save. Normally
9155 we would not be interested in members here, but there may be
9156 later variables referencing them via DW_AT_specification (for
9157 static members). */
9158 if (!load_all
9159 && !is_type_tag_for_partial (abbrev->tag)
9160 && abbrev->tag != DW_TAG_constant
9161 && abbrev->tag != DW_TAG_enumerator
9162 && abbrev->tag != DW_TAG_subprogram
9163 && abbrev->tag != DW_TAG_lexical_block
9164 && abbrev->tag != DW_TAG_variable
9165 && abbrev->tag != DW_TAG_namespace
9166 && abbrev->tag != DW_TAG_module
9167 && abbrev->tag != DW_TAG_member)
9168 {
9169 /* Otherwise we skip to the next sibling, if any. */
9170 info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
9171 continue;
9172 }
9173
9174 info_ptr = read_partial_die (part_die, abbrev, bytes_read, abfd,
9175 buffer, info_ptr, cu);
9176
9177 /* This two-pass algorithm for processing partial symbols has a
9178 high cost in cache pressure. Thus, handle some simple cases
9179 here which cover the majority of C partial symbols. DIEs
9180 which neither have specification tags in them, nor could have
9181 specification tags elsewhere pointing at them, can simply be
9182 processed and discarded.
9183
9184 This segment is also optional; scan_partial_symbols and
9185 add_partial_symbol will handle these DIEs if we chain
9186 them in normally. When compilers which do not emit large
9187 quantities of duplicate debug information are more common,
9188 this code can probably be removed. */
9189
9190 /* Any complete simple types at the top level (pretty much all
9191 of them, for a language without namespaces), can be processed
9192 directly. */
9193 if (parent_die == NULL
9194 && part_die->has_specification == 0
9195 && part_die->is_declaration == 0
9196 && ((part_die->tag == DW_TAG_typedef && !part_die->has_children)
9197 || part_die->tag == DW_TAG_base_type
9198 || part_die->tag == DW_TAG_subrange_type))
9199 {
9200 if (building_psymtab && part_die->name != NULL)
9201 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
9202 VAR_DOMAIN, LOC_TYPEDEF,
9203 &cu->objfile->static_psymbols,
9204 0, (CORE_ADDR) 0, cu->language, cu->objfile);
9205 info_ptr = locate_pdi_sibling (part_die, buffer, info_ptr, abfd, cu);
9206 continue;
9207 }
9208
9209 /* The exception for DW_TAG_typedef with has_children above is
9210 a workaround of GCC PR debug/47510. In the case of this complaint
9211 type_name_no_tag_or_error will error on such types later.
9212
9213 GDB skipped children of DW_TAG_typedef by the shortcut above and then
9214 it could not find the child DIEs referenced later, this is checked
9215 above. In correct DWARF DW_TAG_typedef should have no children. */
9216
9217 if (part_die->tag == DW_TAG_typedef && part_die->has_children)
9218 complaint (&symfile_complaints,
9219 _("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
9220 "- DIE at 0x%x [in module %s]"),
9221 part_die->offset, cu->objfile->name);
9222
9223 /* If we're at the second level, and we're an enumerator, and
9224 our parent has no specification (meaning possibly lives in a
9225 namespace elsewhere), then we can add the partial symbol now
9226 instead of queueing it. */
9227 if (part_die->tag == DW_TAG_enumerator
9228 && parent_die != NULL
9229 && parent_die->die_parent == NULL
9230 && parent_die->tag == DW_TAG_enumeration_type
9231 && parent_die->has_specification == 0)
9232 {
9233 if (part_die->name == NULL)
9234 complaint (&symfile_complaints,
9235 _("malformed enumerator DIE ignored"));
9236 else if (building_psymtab)
9237 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
9238 VAR_DOMAIN, LOC_CONST,
9239 (cu->language == language_cplus
9240 || cu->language == language_java)
9241 ? &cu->objfile->global_psymbols
9242 : &cu->objfile->static_psymbols,
9243 0, (CORE_ADDR) 0, cu->language, cu->objfile);
9244
9245 info_ptr = locate_pdi_sibling (part_die, buffer, info_ptr, abfd, cu);
9246 continue;
9247 }
9248
9249 /* We'll save this DIE so link it in. */
9250 part_die->die_parent = parent_die;
9251 part_die->die_sibling = NULL;
9252 part_die->die_child = NULL;
9253
9254 if (last_die && last_die == parent_die)
9255 last_die->die_child = part_die;
9256 else if (last_die)
9257 last_die->die_sibling = part_die;
9258
9259 last_die = part_die;
9260
9261 if (first_die == NULL)
9262 first_die = part_die;
9263
9264 /* Maybe add the DIE to the hash table. Not all DIEs that we
9265 find interesting need to be in the hash table, because we
9266 also have the parent/sibling/child chains; only those that we
9267 might refer to by offset later during partial symbol reading.
9268
9269 For now this means things that might have be the target of a
9270 DW_AT_specification, DW_AT_abstract_origin, or
9271 DW_AT_extension. DW_AT_extension will refer only to
9272 namespaces; DW_AT_abstract_origin refers to functions (and
9273 many things under the function DIE, but we do not recurse
9274 into function DIEs during partial symbol reading) and
9275 possibly variables as well; DW_AT_specification refers to
9276 declarations. Declarations ought to have the DW_AT_declaration
9277 flag. It happens that GCC forgets to put it in sometimes, but
9278 only for functions, not for types.
9279
9280 Adding more things than necessary to the hash table is harmless
9281 except for the performance cost. Adding too few will result in
9282 wasted time in find_partial_die, when we reread the compilation
9283 unit with load_all_dies set. */
9284
9285 if (load_all
9286 || abbrev->tag == DW_TAG_constant
9287 || abbrev->tag == DW_TAG_subprogram
9288 || abbrev->tag == DW_TAG_variable
9289 || abbrev->tag == DW_TAG_namespace
9290 || part_die->is_declaration)
9291 {
9292 void **slot;
9293
9294 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
9295 part_die->offset, INSERT);
9296 *slot = part_die;
9297 }
9298
9299 part_die = obstack_alloc (&cu->comp_unit_obstack,
9300 sizeof (struct partial_die_info));
9301
9302 /* For some DIEs we want to follow their children (if any). For C
9303 we have no reason to follow the children of structures; for other
9304 languages we have to, so that we can get at method physnames
9305 to infer fully qualified class names, for DW_AT_specification,
9306 and for C++ template arguments. For C++, we also look one level
9307 inside functions to find template arguments (if the name of the
9308 function does not already contain the template arguments).
9309
9310 For Ada, we need to scan the children of subprograms and lexical
9311 blocks as well because Ada allows the definition of nested
9312 entities that could be interesting for the debugger, such as
9313 nested subprograms for instance. */
9314 if (last_die->has_children
9315 && (load_all
9316 || last_die->tag == DW_TAG_namespace
9317 || last_die->tag == DW_TAG_module
9318 || last_die->tag == DW_TAG_enumeration_type
9319 || (cu->language == language_cplus
9320 && last_die->tag == DW_TAG_subprogram
9321 && (last_die->name == NULL
9322 || strchr (last_die->name, '<') == NULL))
9323 || (cu->language != language_c
9324 && (last_die->tag == DW_TAG_class_type
9325 || last_die->tag == DW_TAG_interface_type
9326 || last_die->tag == DW_TAG_structure_type
9327 || last_die->tag == DW_TAG_union_type))
9328 || (cu->language == language_ada
9329 && (last_die->tag == DW_TAG_subprogram
9330 || last_die->tag == DW_TAG_lexical_block))))
9331 {
9332 nesting_level++;
9333 parent_die = last_die;
9334 continue;
9335 }
9336
9337 /* Otherwise we skip to the next sibling, if any. */
9338 info_ptr = locate_pdi_sibling (last_die, buffer, info_ptr, abfd, cu);
9339
9340 /* Back to the top, do it again. */
9341 }
9342 }
9343
9344 /* Read a minimal amount of information into the minimal die structure. */
9345
9346 static gdb_byte *
9347 read_partial_die (struct partial_die_info *part_die,
9348 struct abbrev_info *abbrev,
9349 unsigned int abbrev_len, bfd *abfd,
9350 gdb_byte *buffer, gdb_byte *info_ptr,
9351 struct dwarf2_cu *cu)
9352 {
9353 unsigned int i;
9354 struct attribute attr;
9355 int has_low_pc_attr = 0;
9356 int has_high_pc_attr = 0;
9357
9358 memset (part_die, 0, sizeof (struct partial_die_info));
9359
9360 part_die->offset = info_ptr - buffer;
9361
9362 info_ptr += abbrev_len;
9363
9364 if (abbrev == NULL)
9365 return info_ptr;
9366
9367 part_die->tag = abbrev->tag;
9368 part_die->has_children = abbrev->has_children;
9369
9370 for (i = 0; i < abbrev->num_attrs; ++i)
9371 {
9372 info_ptr = read_attribute (&attr, &abbrev->attrs[i], abfd, info_ptr, cu);
9373
9374 /* Store the data if it is of an attribute we want to keep in a
9375 partial symbol table. */
9376 switch (attr.name)
9377 {
9378 case DW_AT_name:
9379 switch (part_die->tag)
9380 {
9381 case DW_TAG_compile_unit:
9382 case DW_TAG_type_unit:
9383 /* Compilation units have a DW_AT_name that is a filename, not
9384 a source language identifier. */
9385 case DW_TAG_enumeration_type:
9386 case DW_TAG_enumerator:
9387 /* These tags always have simple identifiers already; no need
9388 to canonicalize them. */
9389 part_die->name = DW_STRING (&attr);
9390 break;
9391 default:
9392 part_die->name
9393 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
9394 &cu->objfile->objfile_obstack);
9395 break;
9396 }
9397 break;
9398 case DW_AT_linkage_name:
9399 case DW_AT_MIPS_linkage_name:
9400 /* Note that both forms of linkage name might appear. We
9401 assume they will be the same, and we only store the last
9402 one we see. */
9403 if (cu->language == language_ada)
9404 part_die->name = DW_STRING (&attr);
9405 part_die->linkage_name = DW_STRING (&attr);
9406 break;
9407 case DW_AT_low_pc:
9408 has_low_pc_attr = 1;
9409 part_die->lowpc = DW_ADDR (&attr);
9410 break;
9411 case DW_AT_high_pc:
9412 has_high_pc_attr = 1;
9413 part_die->highpc = DW_ADDR (&attr);
9414 break;
9415 case DW_AT_location:
9416 /* Support the .debug_loc offsets. */
9417 if (attr_form_is_block (&attr))
9418 {
9419 part_die->locdesc = DW_BLOCK (&attr);
9420 }
9421 else if (attr_form_is_section_offset (&attr))
9422 {
9423 dwarf2_complex_location_expr_complaint ();
9424 }
9425 else
9426 {
9427 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
9428 "partial symbol information");
9429 }
9430 break;
9431 case DW_AT_external:
9432 part_die->is_external = DW_UNSND (&attr);
9433 break;
9434 case DW_AT_declaration:
9435 part_die->is_declaration = DW_UNSND (&attr);
9436 break;
9437 case DW_AT_type:
9438 part_die->has_type = 1;
9439 break;
9440 case DW_AT_abstract_origin:
9441 case DW_AT_specification:
9442 case DW_AT_extension:
9443 part_die->has_specification = 1;
9444 part_die->spec_offset = dwarf2_get_ref_die_offset (&attr);
9445 break;
9446 case DW_AT_sibling:
9447 /* Ignore absolute siblings, they might point outside of
9448 the current compile unit. */
9449 if (attr.form == DW_FORM_ref_addr)
9450 complaint (&symfile_complaints,
9451 _("ignoring absolute DW_AT_sibling"));
9452 else
9453 part_die->sibling = buffer + dwarf2_get_ref_die_offset (&attr);
9454 break;
9455 case DW_AT_byte_size:
9456 part_die->has_byte_size = 1;
9457 break;
9458 case DW_AT_calling_convention:
9459 /* DWARF doesn't provide a way to identify a program's source-level
9460 entry point. DW_AT_calling_convention attributes are only meant
9461 to describe functions' calling conventions.
9462
9463 However, because it's a necessary piece of information in
9464 Fortran, and because DW_CC_program is the only piece of debugging
9465 information whose definition refers to a 'main program' at all,
9466 several compilers have begun marking Fortran main programs with
9467 DW_CC_program --- even when those functions use the standard
9468 calling conventions.
9469
9470 So until DWARF specifies a way to provide this information and
9471 compilers pick up the new representation, we'll support this
9472 practice. */
9473 if (DW_UNSND (&attr) == DW_CC_program
9474 && cu->language == language_fortran)
9475 {
9476 set_main_name (part_die->name);
9477
9478 /* As this DIE has a static linkage the name would be difficult
9479 to look up later. */
9480 language_of_main = language_fortran;
9481 }
9482 break;
9483 default:
9484 break;
9485 }
9486 }
9487
9488 if (has_low_pc_attr && has_high_pc_attr)
9489 {
9490 /* When using the GNU linker, .gnu.linkonce. sections are used to
9491 eliminate duplicate copies of functions and vtables and such.
9492 The linker will arbitrarily choose one and discard the others.
9493 The AT_*_pc values for such functions refer to local labels in
9494 these sections. If the section from that file was discarded, the
9495 labels are not in the output, so the relocs get a value of 0.
9496 If this is a discarded function, mark the pc bounds as invalid,
9497 so that GDB will ignore it. */
9498 if (part_die->lowpc == 0 && !dwarf2_per_objfile->has_section_at_zero)
9499 {
9500 struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
9501
9502 complaint (&symfile_complaints,
9503 _("DW_AT_low_pc %s is zero "
9504 "for DIE at 0x%x [in module %s]"),
9505 paddress (gdbarch, part_die->lowpc),
9506 part_die->offset, cu->objfile->name);
9507 }
9508 /* dwarf2_get_pc_bounds has also the strict low < high requirement. */
9509 else if (part_die->lowpc >= part_die->highpc)
9510 {
9511 struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
9512
9513 complaint (&symfile_complaints,
9514 _("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
9515 "for DIE at 0x%x [in module %s]"),
9516 paddress (gdbarch, part_die->lowpc),
9517 paddress (gdbarch, part_die->highpc),
9518 part_die->offset, cu->objfile->name);
9519 }
9520 else
9521 part_die->has_pc_info = 1;
9522 }
9523
9524 return info_ptr;
9525 }
9526
9527 /* Find a cached partial DIE at OFFSET in CU. */
9528
9529 static struct partial_die_info *
9530 find_partial_die_in_comp_unit (unsigned int offset, struct dwarf2_cu *cu)
9531 {
9532 struct partial_die_info *lookup_die = NULL;
9533 struct partial_die_info part_die;
9534
9535 part_die.offset = offset;
9536 lookup_die = htab_find_with_hash (cu->partial_dies, &part_die, offset);
9537
9538 return lookup_die;
9539 }
9540
9541 /* Find a partial DIE at OFFSET, which may or may not be in CU,
9542 except in the case of .debug_types DIEs which do not reference
9543 outside their CU (they do however referencing other types via
9544 DW_FORM_ref_sig8). */
9545
9546 static struct partial_die_info *
9547 find_partial_die (unsigned int offset, struct dwarf2_cu *cu)
9548 {
9549 struct dwarf2_per_cu_data *per_cu = NULL;
9550 struct partial_die_info *pd = NULL;
9551
9552 if (cu->per_cu->from_debug_types)
9553 {
9554 pd = find_partial_die_in_comp_unit (offset, cu);
9555 if (pd != NULL)
9556 return pd;
9557 goto not_found;
9558 }
9559
9560 if (offset_in_cu_p (&cu->header, offset))
9561 {
9562 pd = find_partial_die_in_comp_unit (offset, cu);
9563 if (pd != NULL)
9564 return pd;
9565 }
9566
9567 per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile);
9568
9569 if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
9570 load_partial_comp_unit (per_cu, cu->objfile);
9571
9572 per_cu->cu->last_used = 0;
9573 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
9574
9575 if (pd == NULL && per_cu->load_all_dies == 0)
9576 {
9577 struct cleanup *back_to;
9578 struct partial_die_info comp_unit_die;
9579 struct abbrev_info *abbrev;
9580 unsigned int bytes_read;
9581 char *info_ptr;
9582
9583 per_cu->load_all_dies = 1;
9584
9585 /* Re-read the DIEs. */
9586 back_to = make_cleanup (null_cleanup, 0);
9587 if (per_cu->cu->dwarf2_abbrevs == NULL)
9588 {
9589 dwarf2_read_abbrevs (per_cu->cu->objfile->obfd, per_cu->cu);
9590 make_cleanup (dwarf2_free_abbrev_table, per_cu->cu);
9591 }
9592 info_ptr = (dwarf2_per_objfile->info.buffer
9593 + per_cu->cu->header.offset
9594 + per_cu->cu->header.first_die_offset);
9595 abbrev = peek_die_abbrev (info_ptr, &bytes_read, per_cu->cu);
9596 info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read,
9597 per_cu->cu->objfile->obfd,
9598 dwarf2_per_objfile->info.buffer, info_ptr,
9599 per_cu->cu);
9600 if (comp_unit_die.has_children)
9601 load_partial_dies (per_cu->cu->objfile->obfd,
9602 dwarf2_per_objfile->info.buffer, info_ptr,
9603 0, per_cu->cu);
9604 do_cleanups (back_to);
9605
9606 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
9607 }
9608
9609 not_found:
9610
9611 if (pd == NULL)
9612 internal_error (__FILE__, __LINE__,
9613 _("could not find partial DIE 0x%x "
9614 "in cache [from module %s]\n"),
9615 offset, bfd_get_filename (cu->objfile->obfd));
9616 return pd;
9617 }
9618
9619 /* See if we can figure out if the class lives in a namespace. We do
9620 this by looking for a member function; its demangled name will
9621 contain namespace info, if there is any. */
9622
9623 static void
9624 guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
9625 struct dwarf2_cu *cu)
9626 {
9627 /* NOTE: carlton/2003-10-07: Getting the info this way changes
9628 what template types look like, because the demangler
9629 frequently doesn't give the same name as the debug info. We
9630 could fix this by only using the demangled name to get the
9631 prefix (but see comment in read_structure_type). */
9632
9633 struct partial_die_info *real_pdi;
9634 struct partial_die_info *child_pdi;
9635
9636 /* If this DIE (this DIE's specification, if any) has a parent, then
9637 we should not do this. We'll prepend the parent's fully qualified
9638 name when we create the partial symbol. */
9639
9640 real_pdi = struct_pdi;
9641 while (real_pdi->has_specification)
9642 real_pdi = find_partial_die (real_pdi->spec_offset, cu);
9643
9644 if (real_pdi->die_parent != NULL)
9645 return;
9646
9647 for (child_pdi = struct_pdi->die_child;
9648 child_pdi != NULL;
9649 child_pdi = child_pdi->die_sibling)
9650 {
9651 if (child_pdi->tag == DW_TAG_subprogram
9652 && child_pdi->linkage_name != NULL)
9653 {
9654 char *actual_class_name
9655 = language_class_name_from_physname (cu->language_defn,
9656 child_pdi->linkage_name);
9657 if (actual_class_name != NULL)
9658 {
9659 struct_pdi->name
9660 = obsavestring (actual_class_name,
9661 strlen (actual_class_name),
9662 &cu->objfile->objfile_obstack);
9663 xfree (actual_class_name);
9664 }
9665 break;
9666 }
9667 }
9668 }
9669
9670 /* Adjust PART_DIE before generating a symbol for it. This function
9671 may set the is_external flag or change the DIE's name. */
9672
9673 static void
9674 fixup_partial_die (struct partial_die_info *part_die,
9675 struct dwarf2_cu *cu)
9676 {
9677 /* Once we've fixed up a die, there's no point in doing so again.
9678 This also avoids a memory leak if we were to call
9679 guess_partial_die_structure_name multiple times. */
9680 if (part_die->fixup_called)
9681 return;
9682
9683 /* If we found a reference attribute and the DIE has no name, try
9684 to find a name in the referred to DIE. */
9685
9686 if (part_die->name == NULL && part_die->has_specification)
9687 {
9688 struct partial_die_info *spec_die;
9689
9690 spec_die = find_partial_die (part_die->spec_offset, cu);
9691
9692 fixup_partial_die (spec_die, cu);
9693
9694 if (spec_die->name)
9695 {
9696 part_die->name = spec_die->name;
9697
9698 /* Copy DW_AT_external attribute if it is set. */
9699 if (spec_die->is_external)
9700 part_die->is_external = spec_die->is_external;
9701 }
9702 }
9703
9704 /* Set default names for some unnamed DIEs. */
9705
9706 if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
9707 part_die->name = CP_ANONYMOUS_NAMESPACE_STR;
9708
9709 /* If there is no parent die to provide a namespace, and there are
9710 children, see if we can determine the namespace from their linkage
9711 name.
9712 NOTE: We need to do this even if cu->has_namespace_info != 0.
9713 gcc-4.5 -gdwarf-4 can drop the enclosing namespace. */
9714 if (cu->language == language_cplus
9715 && dwarf2_per_objfile->types.asection != NULL
9716 && part_die->die_parent == NULL
9717 && part_die->has_children
9718 && (part_die->tag == DW_TAG_class_type
9719 || part_die->tag == DW_TAG_structure_type
9720 || part_die->tag == DW_TAG_union_type))
9721 guess_partial_die_structure_name (part_die, cu);
9722
9723 /* GCC might emit a nameless struct or union that has a linkage
9724 name. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
9725 if (part_die->name == NULL
9726 && (part_die->tag == DW_TAG_structure_type
9727 || part_die->tag == DW_TAG_union_type
9728 || part_die->tag == DW_TAG_class_type)
9729 && part_die->linkage_name != NULL)
9730 {
9731 char *demangled;
9732
9733 demangled = cplus_demangle (part_die->linkage_name, DMGL_TYPES);
9734 if (demangled)
9735 {
9736 part_die->name = obsavestring (demangled, strlen (demangled),
9737 &cu->objfile->objfile_obstack);
9738 xfree (demangled);
9739 }
9740 }
9741
9742 part_die->fixup_called = 1;
9743 }
9744
9745 /* Read an attribute value described by an attribute form. */
9746
9747 static gdb_byte *
9748 read_attribute_value (struct attribute *attr, unsigned form,
9749 bfd *abfd, gdb_byte *info_ptr,
9750 struct dwarf2_cu *cu)
9751 {
9752 struct comp_unit_head *cu_header = &cu->header;
9753 unsigned int bytes_read;
9754 struct dwarf_block *blk;
9755
9756 attr->form = form;
9757 switch (form)
9758 {
9759 case DW_FORM_ref_addr:
9760 if (cu->header.version == 2)
9761 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
9762 else
9763 DW_ADDR (attr) = read_offset (abfd, info_ptr,
9764 &cu->header, &bytes_read);
9765 info_ptr += bytes_read;
9766 break;
9767 case DW_FORM_addr:
9768 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
9769 info_ptr += bytes_read;
9770 break;
9771 case DW_FORM_block2:
9772 blk = dwarf_alloc_block (cu);
9773 blk->size = read_2_bytes (abfd, info_ptr);
9774 info_ptr += 2;
9775 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9776 info_ptr += blk->size;
9777 DW_BLOCK (attr) = blk;
9778 break;
9779 case DW_FORM_block4:
9780 blk = dwarf_alloc_block (cu);
9781 blk->size = read_4_bytes (abfd, info_ptr);
9782 info_ptr += 4;
9783 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9784 info_ptr += blk->size;
9785 DW_BLOCK (attr) = blk;
9786 break;
9787 case DW_FORM_data2:
9788 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
9789 info_ptr += 2;
9790 break;
9791 case DW_FORM_data4:
9792 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
9793 info_ptr += 4;
9794 break;
9795 case DW_FORM_data8:
9796 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
9797 info_ptr += 8;
9798 break;
9799 case DW_FORM_sec_offset:
9800 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
9801 info_ptr += bytes_read;
9802 break;
9803 case DW_FORM_string:
9804 DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
9805 DW_STRING_IS_CANONICAL (attr) = 0;
9806 info_ptr += bytes_read;
9807 break;
9808 case DW_FORM_strp:
9809 DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
9810 &bytes_read);
9811 DW_STRING_IS_CANONICAL (attr) = 0;
9812 info_ptr += bytes_read;
9813 break;
9814 case DW_FORM_exprloc:
9815 case DW_FORM_block:
9816 blk = dwarf_alloc_block (cu);
9817 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9818 info_ptr += bytes_read;
9819 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9820 info_ptr += blk->size;
9821 DW_BLOCK (attr) = blk;
9822 break;
9823 case DW_FORM_block1:
9824 blk = dwarf_alloc_block (cu);
9825 blk->size = read_1_byte (abfd, info_ptr);
9826 info_ptr += 1;
9827 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9828 info_ptr += blk->size;
9829 DW_BLOCK (attr) = blk;
9830 break;
9831 case DW_FORM_data1:
9832 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
9833 info_ptr += 1;
9834 break;
9835 case DW_FORM_flag:
9836 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
9837 info_ptr += 1;
9838 break;
9839 case DW_FORM_flag_present:
9840 DW_UNSND (attr) = 1;
9841 break;
9842 case DW_FORM_sdata:
9843 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
9844 info_ptr += bytes_read;
9845 break;
9846 case DW_FORM_udata:
9847 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9848 info_ptr += bytes_read;
9849 break;
9850 case DW_FORM_ref1:
9851 DW_ADDR (attr) = cu->header.offset + read_1_byte (abfd, info_ptr);
9852 info_ptr += 1;
9853 break;
9854 case DW_FORM_ref2:
9855 DW_ADDR (attr) = cu->header.offset + read_2_bytes (abfd, info_ptr);
9856 info_ptr += 2;
9857 break;
9858 case DW_FORM_ref4:
9859 DW_ADDR (attr) = cu->header.offset + read_4_bytes (abfd, info_ptr);
9860 info_ptr += 4;
9861 break;
9862 case DW_FORM_ref8:
9863 DW_ADDR (attr) = cu->header.offset + read_8_bytes (abfd, info_ptr);
9864 info_ptr += 8;
9865 break;
9866 case DW_FORM_ref_sig8:
9867 /* Convert the signature to something we can record in DW_UNSND
9868 for later lookup.
9869 NOTE: This is NULL if the type wasn't found. */
9870 DW_SIGNATURED_TYPE (attr) =
9871 lookup_signatured_type (cu->objfile, read_8_bytes (abfd, info_ptr));
9872 info_ptr += 8;
9873 break;
9874 case DW_FORM_ref_udata:
9875 DW_ADDR (attr) = (cu->header.offset
9876 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
9877 info_ptr += bytes_read;
9878 break;
9879 case DW_FORM_indirect:
9880 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9881 info_ptr += bytes_read;
9882 info_ptr = read_attribute_value (attr, form, abfd, info_ptr, cu);
9883 break;
9884 default:
9885 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
9886 dwarf_form_name (form),
9887 bfd_get_filename (abfd));
9888 }
9889
9890 /* We have seen instances where the compiler tried to emit a byte
9891 size attribute of -1 which ended up being encoded as an unsigned
9892 0xffffffff. Although 0xffffffff is technically a valid size value,
9893 an object of this size seems pretty unlikely so we can relatively
9894 safely treat these cases as if the size attribute was invalid and
9895 treat them as zero by default. */
9896 if (attr->name == DW_AT_byte_size
9897 && form == DW_FORM_data4
9898 && DW_UNSND (attr) >= 0xffffffff)
9899 {
9900 complaint
9901 (&symfile_complaints,
9902 _("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
9903 hex_string (DW_UNSND (attr)));
9904 DW_UNSND (attr) = 0;
9905 }
9906
9907 return info_ptr;
9908 }
9909
9910 /* Read an attribute described by an abbreviated attribute. */
9911
9912 static gdb_byte *
9913 read_attribute (struct attribute *attr, struct attr_abbrev *abbrev,
9914 bfd *abfd, gdb_byte *info_ptr, struct dwarf2_cu *cu)
9915 {
9916 attr->name = abbrev->name;
9917 return read_attribute_value (attr, abbrev->form, abfd, info_ptr, cu);
9918 }
9919
9920 /* Read dwarf information from a buffer. */
9921
9922 static unsigned int
9923 read_1_byte (bfd *abfd, gdb_byte *buf)
9924 {
9925 return bfd_get_8 (abfd, buf);
9926 }
9927
9928 static int
9929 read_1_signed_byte (bfd *abfd, gdb_byte *buf)
9930 {
9931 return bfd_get_signed_8 (abfd, buf);
9932 }
9933
9934 static unsigned int
9935 read_2_bytes (bfd *abfd, gdb_byte *buf)
9936 {
9937 return bfd_get_16 (abfd, buf);
9938 }
9939
9940 static int
9941 read_2_signed_bytes (bfd *abfd, gdb_byte *buf)
9942 {
9943 return bfd_get_signed_16 (abfd, buf);
9944 }
9945
9946 static unsigned int
9947 read_4_bytes (bfd *abfd, gdb_byte *buf)
9948 {
9949 return bfd_get_32 (abfd, buf);
9950 }
9951
9952 static int
9953 read_4_signed_bytes (bfd *abfd, gdb_byte *buf)
9954 {
9955 return bfd_get_signed_32 (abfd, buf);
9956 }
9957
9958 static ULONGEST
9959 read_8_bytes (bfd *abfd, gdb_byte *buf)
9960 {
9961 return bfd_get_64 (abfd, buf);
9962 }
9963
9964 static CORE_ADDR
9965 read_address (bfd *abfd, gdb_byte *buf, struct dwarf2_cu *cu,
9966 unsigned int *bytes_read)
9967 {
9968 struct comp_unit_head *cu_header = &cu->header;
9969 CORE_ADDR retval = 0;
9970
9971 if (cu_header->signed_addr_p)
9972 {
9973 switch (cu_header->addr_size)
9974 {
9975 case 2:
9976 retval = bfd_get_signed_16 (abfd, buf);
9977 break;
9978 case 4:
9979 retval = bfd_get_signed_32 (abfd, buf);
9980 break;
9981 case 8:
9982 retval = bfd_get_signed_64 (abfd, buf);
9983 break;
9984 default:
9985 internal_error (__FILE__, __LINE__,
9986 _("read_address: bad switch, signed [in module %s]"),
9987 bfd_get_filename (abfd));
9988 }
9989 }
9990 else
9991 {
9992 switch (cu_header->addr_size)
9993 {
9994 case 2:
9995 retval = bfd_get_16 (abfd, buf);
9996 break;
9997 case 4:
9998 retval = bfd_get_32 (abfd, buf);
9999 break;
10000 case 8:
10001 retval = bfd_get_64 (abfd, buf);
10002 break;
10003 default:
10004 internal_error (__FILE__, __LINE__,
10005 _("read_address: bad switch, "
10006 "unsigned [in module %s]"),
10007 bfd_get_filename (abfd));
10008 }
10009 }
10010
10011 *bytes_read = cu_header->addr_size;
10012 return retval;
10013 }
10014
10015 /* Read the initial length from a section. The (draft) DWARF 3
10016 specification allows the initial length to take up either 4 bytes
10017 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
10018 bytes describe the length and all offsets will be 8 bytes in length
10019 instead of 4.
10020
10021 An older, non-standard 64-bit format is also handled by this
10022 function. The older format in question stores the initial length
10023 as an 8-byte quantity without an escape value. Lengths greater
10024 than 2^32 aren't very common which means that the initial 4 bytes
10025 is almost always zero. Since a length value of zero doesn't make
10026 sense for the 32-bit format, this initial zero can be considered to
10027 be an escape value which indicates the presence of the older 64-bit
10028 format. As written, the code can't detect (old format) lengths
10029 greater than 4GB. If it becomes necessary to handle lengths
10030 somewhat larger than 4GB, we could allow other small values (such
10031 as the non-sensical values of 1, 2, and 3) to also be used as
10032 escape values indicating the presence of the old format.
10033
10034 The value returned via bytes_read should be used to increment the
10035 relevant pointer after calling read_initial_length().
10036
10037 [ Note: read_initial_length() and read_offset() are based on the
10038 document entitled "DWARF Debugging Information Format", revision
10039 3, draft 8, dated November 19, 2001. This document was obtained
10040 from:
10041
10042 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
10043
10044 This document is only a draft and is subject to change. (So beware.)
10045
10046 Details regarding the older, non-standard 64-bit format were
10047 determined empirically by examining 64-bit ELF files produced by
10048 the SGI toolchain on an IRIX 6.5 machine.
10049
10050 - Kevin, July 16, 2002
10051 ] */
10052
10053 static LONGEST
10054 read_initial_length (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read)
10055 {
10056 LONGEST length = bfd_get_32 (abfd, buf);
10057
10058 if (length == 0xffffffff)
10059 {
10060 length = bfd_get_64 (abfd, buf + 4);
10061 *bytes_read = 12;
10062 }
10063 else if (length == 0)
10064 {
10065 /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
10066 length = bfd_get_64 (abfd, buf);
10067 *bytes_read = 8;
10068 }
10069 else
10070 {
10071 *bytes_read = 4;
10072 }
10073
10074 return length;
10075 }
10076
10077 /* Cover function for read_initial_length.
10078 Returns the length of the object at BUF, and stores the size of the
10079 initial length in *BYTES_READ and stores the size that offsets will be in
10080 *OFFSET_SIZE.
10081 If the initial length size is not equivalent to that specified in
10082 CU_HEADER then issue a complaint.
10083 This is useful when reading non-comp-unit headers. */
10084
10085 static LONGEST
10086 read_checked_initial_length_and_offset (bfd *abfd, gdb_byte *buf,
10087 const struct comp_unit_head *cu_header,
10088 unsigned int *bytes_read,
10089 unsigned int *offset_size)
10090 {
10091 LONGEST length = read_initial_length (abfd, buf, bytes_read);
10092
10093 gdb_assert (cu_header->initial_length_size == 4
10094 || cu_header->initial_length_size == 8
10095 || cu_header->initial_length_size == 12);
10096
10097 if (cu_header->initial_length_size != *bytes_read)
10098 complaint (&symfile_complaints,
10099 _("intermixed 32-bit and 64-bit DWARF sections"));
10100
10101 *offset_size = (*bytes_read == 4) ? 4 : 8;
10102 return length;
10103 }
10104
10105 /* Read an offset from the data stream. The size of the offset is
10106 given by cu_header->offset_size. */
10107
10108 static LONGEST
10109 read_offset (bfd *abfd, gdb_byte *buf, const struct comp_unit_head *cu_header,
10110 unsigned int *bytes_read)
10111 {
10112 LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
10113
10114 *bytes_read = cu_header->offset_size;
10115 return offset;
10116 }
10117
10118 /* Read an offset from the data stream. */
10119
10120 static LONGEST
10121 read_offset_1 (bfd *abfd, gdb_byte *buf, unsigned int offset_size)
10122 {
10123 LONGEST retval = 0;
10124
10125 switch (offset_size)
10126 {
10127 case 4:
10128 retval = bfd_get_32 (abfd, buf);
10129 break;
10130 case 8:
10131 retval = bfd_get_64 (abfd, buf);
10132 break;
10133 default:
10134 internal_error (__FILE__, __LINE__,
10135 _("read_offset_1: bad switch [in module %s]"),
10136 bfd_get_filename (abfd));
10137 }
10138
10139 return retval;
10140 }
10141
10142 static gdb_byte *
10143 read_n_bytes (bfd *abfd, gdb_byte *buf, unsigned int size)
10144 {
10145 /* If the size of a host char is 8 bits, we can return a pointer
10146 to the buffer, otherwise we have to copy the data to a buffer
10147 allocated on the temporary obstack. */
10148 gdb_assert (HOST_CHAR_BIT == 8);
10149 return buf;
10150 }
10151
10152 static char *
10153 read_direct_string (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
10154 {
10155 /* If the size of a host char is 8 bits, we can return a pointer
10156 to the string, otherwise we have to copy the string to a buffer
10157 allocated on the temporary obstack. */
10158 gdb_assert (HOST_CHAR_BIT == 8);
10159 if (*buf == '\0')
10160 {
10161 *bytes_read_ptr = 1;
10162 return NULL;
10163 }
10164 *bytes_read_ptr = strlen ((char *) buf) + 1;
10165 return (char *) buf;
10166 }
10167
10168 static char *
10169 read_indirect_string (bfd *abfd, gdb_byte *buf,
10170 const struct comp_unit_head *cu_header,
10171 unsigned int *bytes_read_ptr)
10172 {
10173 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
10174
10175 dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->str);
10176 if (dwarf2_per_objfile->str.buffer == NULL)
10177 {
10178 error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
10179 bfd_get_filename (abfd));
10180 return NULL;
10181 }
10182 if (str_offset >= dwarf2_per_objfile->str.size)
10183 {
10184 error (_("DW_FORM_strp pointing outside of "
10185 ".debug_str section [in module %s]"),
10186 bfd_get_filename (abfd));
10187 return NULL;
10188 }
10189 gdb_assert (HOST_CHAR_BIT == 8);
10190 if (dwarf2_per_objfile->str.buffer[str_offset] == '\0')
10191 return NULL;
10192 return (char *) (dwarf2_per_objfile->str.buffer + str_offset);
10193 }
10194
10195 static unsigned long
10196 read_unsigned_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
10197 {
10198 unsigned long result;
10199 unsigned int num_read;
10200 int i, shift;
10201 unsigned char byte;
10202
10203 result = 0;
10204 shift = 0;
10205 num_read = 0;
10206 i = 0;
10207 while (1)
10208 {
10209 byte = bfd_get_8 (abfd, buf);
10210 buf++;
10211 num_read++;
10212 result |= ((unsigned long)(byte & 127) << shift);
10213 if ((byte & 128) == 0)
10214 {
10215 break;
10216 }
10217 shift += 7;
10218 }
10219 *bytes_read_ptr = num_read;
10220 return result;
10221 }
10222
10223 static long
10224 read_signed_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
10225 {
10226 long result;
10227 int i, shift, num_read;
10228 unsigned char byte;
10229
10230 result = 0;
10231 shift = 0;
10232 num_read = 0;
10233 i = 0;
10234 while (1)
10235 {
10236 byte = bfd_get_8 (abfd, buf);
10237 buf++;
10238 num_read++;
10239 result |= ((long)(byte & 127) << shift);
10240 shift += 7;
10241 if ((byte & 128) == 0)
10242 {
10243 break;
10244 }
10245 }
10246 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
10247 result |= -(((long)1) << shift);
10248 *bytes_read_ptr = num_read;
10249 return result;
10250 }
10251
10252 /* Return a pointer to just past the end of an LEB128 number in BUF. */
10253
10254 static gdb_byte *
10255 skip_leb128 (bfd *abfd, gdb_byte *buf)
10256 {
10257 int byte;
10258
10259 while (1)
10260 {
10261 byte = bfd_get_8 (abfd, buf);
10262 buf++;
10263 if ((byte & 128) == 0)
10264 return buf;
10265 }
10266 }
10267
10268 static void
10269 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
10270 {
10271 switch (lang)
10272 {
10273 case DW_LANG_C89:
10274 case DW_LANG_C99:
10275 case DW_LANG_C:
10276 cu->language = language_c;
10277 break;
10278 case DW_LANG_C_plus_plus:
10279 cu->language = language_cplus;
10280 break;
10281 case DW_LANG_D:
10282 cu->language = language_d;
10283 break;
10284 case DW_LANG_Fortran77:
10285 case DW_LANG_Fortran90:
10286 case DW_LANG_Fortran95:
10287 cu->language = language_fortran;
10288 break;
10289 case DW_LANG_Mips_Assembler:
10290 cu->language = language_asm;
10291 break;
10292 case DW_LANG_Java:
10293 cu->language = language_java;
10294 break;
10295 case DW_LANG_Ada83:
10296 case DW_LANG_Ada95:
10297 cu->language = language_ada;
10298 break;
10299 case DW_LANG_Modula2:
10300 cu->language = language_m2;
10301 break;
10302 case DW_LANG_Pascal83:
10303 cu->language = language_pascal;
10304 break;
10305 case DW_LANG_ObjC:
10306 cu->language = language_objc;
10307 break;
10308 case DW_LANG_Cobol74:
10309 case DW_LANG_Cobol85:
10310 default:
10311 cu->language = language_minimal;
10312 break;
10313 }
10314 cu->language_defn = language_def (cu->language);
10315 }
10316
10317 /* Return the named attribute or NULL if not there. */
10318
10319 static struct attribute *
10320 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
10321 {
10322 unsigned int i;
10323 struct attribute *spec = NULL;
10324
10325 for (i = 0; i < die->num_attrs; ++i)
10326 {
10327 if (die->attrs[i].name == name)
10328 return &die->attrs[i];
10329 if (die->attrs[i].name == DW_AT_specification
10330 || die->attrs[i].name == DW_AT_abstract_origin)
10331 spec = &die->attrs[i];
10332 }
10333
10334 if (spec)
10335 {
10336 die = follow_die_ref (die, spec, &cu);
10337 return dwarf2_attr (die, name, cu);
10338 }
10339
10340 return NULL;
10341 }
10342
10343 /* Return the named attribute or NULL if not there,
10344 but do not follow DW_AT_specification, etc.
10345 This is for use in contexts where we're reading .debug_types dies.
10346 Following DW_AT_specification, DW_AT_abstract_origin will take us
10347 back up the chain, and we want to go down. */
10348
10349 static struct attribute *
10350 dwarf2_attr_no_follow (struct die_info *die, unsigned int name,
10351 struct dwarf2_cu *cu)
10352 {
10353 unsigned int i;
10354
10355 for (i = 0; i < die->num_attrs; ++i)
10356 if (die->attrs[i].name == name)
10357 return &die->attrs[i];
10358
10359 return NULL;
10360 }
10361
10362 /* Return non-zero iff the attribute NAME is defined for the given DIE,
10363 and holds a non-zero value. This function should only be used for
10364 DW_FORM_flag or DW_FORM_flag_present attributes. */
10365
10366 static int
10367 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
10368 {
10369 struct attribute *attr = dwarf2_attr (die, name, cu);
10370
10371 return (attr && DW_UNSND (attr));
10372 }
10373
10374 static int
10375 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
10376 {
10377 /* A DIE is a declaration if it has a DW_AT_declaration attribute
10378 which value is non-zero. However, we have to be careful with
10379 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
10380 (via dwarf2_flag_true_p) follows this attribute. So we may
10381 end up accidently finding a declaration attribute that belongs
10382 to a different DIE referenced by the specification attribute,
10383 even though the given DIE does not have a declaration attribute. */
10384 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
10385 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
10386 }
10387
10388 /* Return the die giving the specification for DIE, if there is
10389 one. *SPEC_CU is the CU containing DIE on input, and the CU
10390 containing the return value on output. If there is no
10391 specification, but there is an abstract origin, that is
10392 returned. */
10393
10394 static struct die_info *
10395 die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
10396 {
10397 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
10398 *spec_cu);
10399
10400 if (spec_attr == NULL)
10401 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
10402
10403 if (spec_attr == NULL)
10404 return NULL;
10405 else
10406 return follow_die_ref (die, spec_attr, spec_cu);
10407 }
10408
10409 /* Free the line_header structure *LH, and any arrays and strings it
10410 refers to.
10411 NOTE: This is also used as a "cleanup" function. */
10412
10413 static void
10414 free_line_header (struct line_header *lh)
10415 {
10416 if (lh->standard_opcode_lengths)
10417 xfree (lh->standard_opcode_lengths);
10418
10419 /* Remember that all the lh->file_names[i].name pointers are
10420 pointers into debug_line_buffer, and don't need to be freed. */
10421 if (lh->file_names)
10422 xfree (lh->file_names);
10423
10424 /* Similarly for the include directory names. */
10425 if (lh->include_dirs)
10426 xfree (lh->include_dirs);
10427
10428 xfree (lh);
10429 }
10430
10431 /* Add an entry to LH's include directory table. */
10432
10433 static void
10434 add_include_dir (struct line_header *lh, char *include_dir)
10435 {
10436 /* Grow the array if necessary. */
10437 if (lh->include_dirs_size == 0)
10438 {
10439 lh->include_dirs_size = 1; /* for testing */
10440 lh->include_dirs = xmalloc (lh->include_dirs_size
10441 * sizeof (*lh->include_dirs));
10442 }
10443 else if (lh->num_include_dirs >= lh->include_dirs_size)
10444 {
10445 lh->include_dirs_size *= 2;
10446 lh->include_dirs = xrealloc (lh->include_dirs,
10447 (lh->include_dirs_size
10448 * sizeof (*lh->include_dirs)));
10449 }
10450
10451 lh->include_dirs[lh->num_include_dirs++] = include_dir;
10452 }
10453
10454 /* Add an entry to LH's file name table. */
10455
10456 static void
10457 add_file_name (struct line_header *lh,
10458 char *name,
10459 unsigned int dir_index,
10460 unsigned int mod_time,
10461 unsigned int length)
10462 {
10463 struct file_entry *fe;
10464
10465 /* Grow the array if necessary. */
10466 if (lh->file_names_size == 0)
10467 {
10468 lh->file_names_size = 1; /* for testing */
10469 lh->file_names = xmalloc (lh->file_names_size
10470 * sizeof (*lh->file_names));
10471 }
10472 else if (lh->num_file_names >= lh->file_names_size)
10473 {
10474 lh->file_names_size *= 2;
10475 lh->file_names = xrealloc (lh->file_names,
10476 (lh->file_names_size
10477 * sizeof (*lh->file_names)));
10478 }
10479
10480 fe = &lh->file_names[lh->num_file_names++];
10481 fe->name = name;
10482 fe->dir_index = dir_index;
10483 fe->mod_time = mod_time;
10484 fe->length = length;
10485 fe->included_p = 0;
10486 fe->symtab = NULL;
10487 }
10488
10489 /* Read the statement program header starting at OFFSET in
10490 .debug_line, according to the endianness of ABFD. Return a pointer
10491 to a struct line_header, allocated using xmalloc.
10492
10493 NOTE: the strings in the include directory and file name tables of
10494 the returned object point into debug_line_buffer, and must not be
10495 freed. */
10496
10497 static struct line_header *
10498 dwarf_decode_line_header (unsigned int offset, bfd *abfd,
10499 struct dwarf2_cu *cu)
10500 {
10501 struct cleanup *back_to;
10502 struct line_header *lh;
10503 gdb_byte *line_ptr;
10504 unsigned int bytes_read, offset_size;
10505 int i;
10506 char *cur_dir, *cur_file;
10507
10508 dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->line);
10509 if (dwarf2_per_objfile->line.buffer == NULL)
10510 {
10511 complaint (&symfile_complaints, _("missing .debug_line section"));
10512 return 0;
10513 }
10514
10515 /* Make sure that at least there's room for the total_length field.
10516 That could be 12 bytes long, but we're just going to fudge that. */
10517 if (offset + 4 >= dwarf2_per_objfile->line.size)
10518 {
10519 dwarf2_statement_list_fits_in_line_number_section_complaint ();
10520 return 0;
10521 }
10522
10523 lh = xmalloc (sizeof (*lh));
10524 memset (lh, 0, sizeof (*lh));
10525 back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
10526 (void *) lh);
10527
10528 line_ptr = dwarf2_per_objfile->line.buffer + offset;
10529
10530 /* Read in the header. */
10531 lh->total_length =
10532 read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
10533 &bytes_read, &offset_size);
10534 line_ptr += bytes_read;
10535 if (line_ptr + lh->total_length > (dwarf2_per_objfile->line.buffer
10536 + dwarf2_per_objfile->line.size))
10537 {
10538 dwarf2_statement_list_fits_in_line_number_section_complaint ();
10539 return 0;
10540 }
10541 lh->statement_program_end = line_ptr + lh->total_length;
10542 lh->version = read_2_bytes (abfd, line_ptr);
10543 line_ptr += 2;
10544 lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
10545 line_ptr += offset_size;
10546 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
10547 line_ptr += 1;
10548 if (lh->version >= 4)
10549 {
10550 lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
10551 line_ptr += 1;
10552 }
10553 else
10554 lh->maximum_ops_per_instruction = 1;
10555
10556 if (lh->maximum_ops_per_instruction == 0)
10557 {
10558 lh->maximum_ops_per_instruction = 1;
10559 complaint (&symfile_complaints,
10560 _("invalid maximum_ops_per_instruction "
10561 "in `.debug_line' section"));
10562 }
10563
10564 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
10565 line_ptr += 1;
10566 lh->line_base = read_1_signed_byte (abfd, line_ptr);
10567 line_ptr += 1;
10568 lh->line_range = read_1_byte (abfd, line_ptr);
10569 line_ptr += 1;
10570 lh->opcode_base = read_1_byte (abfd, line_ptr);
10571 line_ptr += 1;
10572 lh->standard_opcode_lengths
10573 = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
10574
10575 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
10576 for (i = 1; i < lh->opcode_base; ++i)
10577 {
10578 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
10579 line_ptr += 1;
10580 }
10581
10582 /* Read directory table. */
10583 while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
10584 {
10585 line_ptr += bytes_read;
10586 add_include_dir (lh, cur_dir);
10587 }
10588 line_ptr += bytes_read;
10589
10590 /* Read file name table. */
10591 while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
10592 {
10593 unsigned int dir_index, mod_time, length;
10594
10595 line_ptr += bytes_read;
10596 dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10597 line_ptr += bytes_read;
10598 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10599 line_ptr += bytes_read;
10600 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10601 line_ptr += bytes_read;
10602
10603 add_file_name (lh, cur_file, dir_index, mod_time, length);
10604 }
10605 line_ptr += bytes_read;
10606 lh->statement_program_start = line_ptr;
10607
10608 if (line_ptr > (dwarf2_per_objfile->line.buffer
10609 + dwarf2_per_objfile->line.size))
10610 complaint (&symfile_complaints,
10611 _("line number info header doesn't "
10612 "fit in `.debug_line' section"));
10613
10614 discard_cleanups (back_to);
10615 return lh;
10616 }
10617
10618 /* This function exists to work around a bug in certain compilers
10619 (particularly GCC 2.95), in which the first line number marker of a
10620 function does not show up until after the prologue, right before
10621 the second line number marker. This function shifts ADDRESS down
10622 to the beginning of the function if necessary, and is called on
10623 addresses passed to record_line. */
10624
10625 static CORE_ADDR
10626 check_cu_functions (CORE_ADDR address, struct dwarf2_cu *cu)
10627 {
10628 struct function_range *fn;
10629
10630 /* Find the function_range containing address. */
10631 if (!cu->first_fn)
10632 return address;
10633
10634 if (!cu->cached_fn)
10635 cu->cached_fn = cu->first_fn;
10636
10637 fn = cu->cached_fn;
10638 while (fn)
10639 if (fn->lowpc <= address && fn->highpc > address)
10640 goto found;
10641 else
10642 fn = fn->next;
10643
10644 fn = cu->first_fn;
10645 while (fn && fn != cu->cached_fn)
10646 if (fn->lowpc <= address && fn->highpc > address)
10647 goto found;
10648 else
10649 fn = fn->next;
10650
10651 return address;
10652
10653 found:
10654 if (fn->seen_line)
10655 return address;
10656 if (address != fn->lowpc)
10657 complaint (&symfile_complaints,
10658 _("misplaced first line number at 0x%lx for '%s'"),
10659 (unsigned long) address, fn->name);
10660 fn->seen_line = 1;
10661 return fn->lowpc;
10662 }
10663
10664 /* Subroutine of dwarf_decode_lines to simplify it.
10665 Return the file name of the psymtab for included file FILE_INDEX
10666 in line header LH of PST.
10667 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
10668 If space for the result is malloc'd, it will be freed by a cleanup.
10669 Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename. */
10670
10671 static char *
10672 psymtab_include_file_name (const struct line_header *lh, int file_index,
10673 const struct partial_symtab *pst,
10674 const char *comp_dir)
10675 {
10676 const struct file_entry fe = lh->file_names [file_index];
10677 char *include_name = fe.name;
10678 char *include_name_to_compare = include_name;
10679 char *dir_name = NULL;
10680 const char *pst_filename;
10681 char *copied_name = NULL;
10682 int file_is_pst;
10683
10684 if (fe.dir_index)
10685 dir_name = lh->include_dirs[fe.dir_index - 1];
10686
10687 if (!IS_ABSOLUTE_PATH (include_name)
10688 && (dir_name != NULL || comp_dir != NULL))
10689 {
10690 /* Avoid creating a duplicate psymtab for PST.
10691 We do this by comparing INCLUDE_NAME and PST_FILENAME.
10692 Before we do the comparison, however, we need to account
10693 for DIR_NAME and COMP_DIR.
10694 First prepend dir_name (if non-NULL). If we still don't
10695 have an absolute path prepend comp_dir (if non-NULL).
10696 However, the directory we record in the include-file's
10697 psymtab does not contain COMP_DIR (to match the
10698 corresponding symtab(s)).
10699
10700 Example:
10701
10702 bash$ cd /tmp
10703 bash$ gcc -g ./hello.c
10704 include_name = "hello.c"
10705 dir_name = "."
10706 DW_AT_comp_dir = comp_dir = "/tmp"
10707 DW_AT_name = "./hello.c" */
10708
10709 if (dir_name != NULL)
10710 {
10711 include_name = concat (dir_name, SLASH_STRING,
10712 include_name, (char *)NULL);
10713 include_name_to_compare = include_name;
10714 make_cleanup (xfree, include_name);
10715 }
10716 if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
10717 {
10718 include_name_to_compare = concat (comp_dir, SLASH_STRING,
10719 include_name, (char *)NULL);
10720 }
10721 }
10722
10723 pst_filename = pst->filename;
10724 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
10725 {
10726 copied_name = concat (pst->dirname, SLASH_STRING,
10727 pst_filename, (char *)NULL);
10728 pst_filename = copied_name;
10729 }
10730
10731 file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
10732
10733 if (include_name_to_compare != include_name)
10734 xfree (include_name_to_compare);
10735 if (copied_name != NULL)
10736 xfree (copied_name);
10737
10738 if (file_is_pst)
10739 return NULL;
10740 return include_name;
10741 }
10742
10743 /* Ignore this record_line request. */
10744
10745 static void
10746 noop_record_line (struct subfile *subfile, int line, CORE_ADDR pc)
10747 {
10748 return;
10749 }
10750
10751 /* Decode the Line Number Program (LNP) for the given line_header
10752 structure and CU. The actual information extracted and the type
10753 of structures created from the LNP depends on the value of PST.
10754
10755 1. If PST is NULL, then this procedure uses the data from the program
10756 to create all necessary symbol tables, and their linetables.
10757
10758 2. If PST is not NULL, this procedure reads the program to determine
10759 the list of files included by the unit represented by PST, and
10760 builds all the associated partial symbol tables.
10761
10762 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
10763 It is used for relative paths in the line table.
10764 NOTE: When processing partial symtabs (pst != NULL),
10765 comp_dir == pst->dirname.
10766
10767 NOTE: It is important that psymtabs have the same file name (via strcmp)
10768 as the corresponding symtab. Since COMP_DIR is not used in the name of the
10769 symtab we don't use it in the name of the psymtabs we create.
10770 E.g. expand_line_sal requires this when finding psymtabs to expand.
10771 A good testcase for this is mb-inline.exp. */
10772
10773 static void
10774 dwarf_decode_lines (struct line_header *lh, const char *comp_dir, bfd *abfd,
10775 struct dwarf2_cu *cu, struct partial_symtab *pst)
10776 {
10777 gdb_byte *line_ptr, *extended_end;
10778 gdb_byte *line_end;
10779 unsigned int bytes_read, extended_len;
10780 unsigned char op_code, extended_op, adj_opcode;
10781 CORE_ADDR baseaddr;
10782 struct objfile *objfile = cu->objfile;
10783 struct gdbarch *gdbarch = get_objfile_arch (objfile);
10784 const int decode_for_pst_p = (pst != NULL);
10785 struct subfile *last_subfile = NULL, *first_subfile = current_subfile;
10786 void (*p_record_line) (struct subfile *subfile, int line, CORE_ADDR pc)
10787 = record_line;
10788
10789 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
10790
10791 line_ptr = lh->statement_program_start;
10792 line_end = lh->statement_program_end;
10793
10794 /* Read the statement sequences until there's nothing left. */
10795 while (line_ptr < line_end)
10796 {
10797 /* state machine registers */
10798 CORE_ADDR address = 0;
10799 unsigned int file = 1;
10800 unsigned int line = 1;
10801 unsigned int column = 0;
10802 int is_stmt = lh->default_is_stmt;
10803 int basic_block = 0;
10804 int end_sequence = 0;
10805 CORE_ADDR addr;
10806 unsigned char op_index = 0;
10807
10808 if (!decode_for_pst_p && lh->num_file_names >= file)
10809 {
10810 /* Start a subfile for the current file of the state machine. */
10811 /* lh->include_dirs and lh->file_names are 0-based, but the
10812 directory and file name numbers in the statement program
10813 are 1-based. */
10814 struct file_entry *fe = &lh->file_names[file - 1];
10815 char *dir = NULL;
10816
10817 if (fe->dir_index)
10818 dir = lh->include_dirs[fe->dir_index - 1];
10819
10820 dwarf2_start_subfile (fe->name, dir, comp_dir);
10821 }
10822
10823 /* Decode the table. */
10824 while (!end_sequence)
10825 {
10826 op_code = read_1_byte (abfd, line_ptr);
10827 line_ptr += 1;
10828 if (line_ptr > line_end)
10829 {
10830 dwarf2_debug_line_missing_end_sequence_complaint ();
10831 break;
10832 }
10833
10834 if (op_code >= lh->opcode_base)
10835 {
10836 /* Special operand. */
10837 adj_opcode = op_code - lh->opcode_base;
10838 address += (((op_index + (adj_opcode / lh->line_range))
10839 / lh->maximum_ops_per_instruction)
10840 * lh->minimum_instruction_length);
10841 op_index = ((op_index + (adj_opcode / lh->line_range))
10842 % lh->maximum_ops_per_instruction);
10843 line += lh->line_base + (adj_opcode % lh->line_range);
10844 if (lh->num_file_names < file || file == 0)
10845 dwarf2_debug_line_missing_file_complaint ();
10846 /* For now we ignore lines not starting on an
10847 instruction boundary. */
10848 else if (op_index == 0)
10849 {
10850 lh->file_names[file - 1].included_p = 1;
10851 if (!decode_for_pst_p && is_stmt)
10852 {
10853 if (last_subfile != current_subfile)
10854 {
10855 addr = gdbarch_addr_bits_remove (gdbarch, address);
10856 if (last_subfile)
10857 (*p_record_line) (last_subfile, 0, addr);
10858 last_subfile = current_subfile;
10859 }
10860 /* Append row to matrix using current values. */
10861 addr = check_cu_functions (address, cu);
10862 addr = gdbarch_addr_bits_remove (gdbarch, addr);
10863 (*p_record_line) (current_subfile, line, addr);
10864 }
10865 }
10866 basic_block = 0;
10867 }
10868 else switch (op_code)
10869 {
10870 case DW_LNS_extended_op:
10871 extended_len = read_unsigned_leb128 (abfd, line_ptr,
10872 &bytes_read);
10873 line_ptr += bytes_read;
10874 extended_end = line_ptr + extended_len;
10875 extended_op = read_1_byte (abfd, line_ptr);
10876 line_ptr += 1;
10877 switch (extended_op)
10878 {
10879 case DW_LNE_end_sequence:
10880 p_record_line = record_line;
10881 end_sequence = 1;
10882 break;
10883 case DW_LNE_set_address:
10884 address = read_address (abfd, line_ptr, cu, &bytes_read);
10885
10886 if (address == 0 && !dwarf2_per_objfile->has_section_at_zero)
10887 {
10888 /* This line table is for a function which has been
10889 GCd by the linker. Ignore it. PR gdb/12528 */
10890
10891 long line_offset
10892 = line_ptr - dwarf2_per_objfile->line.buffer;
10893
10894 complaint (&symfile_complaints,
10895 _(".debug_line address at offset 0x%lx is 0 "
10896 "[in module %s]"),
10897 line_offset, cu->objfile->name);
10898 p_record_line = noop_record_line;
10899 }
10900
10901 op_index = 0;
10902 line_ptr += bytes_read;
10903 address += baseaddr;
10904 break;
10905 case DW_LNE_define_file:
10906 {
10907 char *cur_file;
10908 unsigned int dir_index, mod_time, length;
10909
10910 cur_file = read_direct_string (abfd, line_ptr,
10911 &bytes_read);
10912 line_ptr += bytes_read;
10913 dir_index =
10914 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10915 line_ptr += bytes_read;
10916 mod_time =
10917 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10918 line_ptr += bytes_read;
10919 length =
10920 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10921 line_ptr += bytes_read;
10922 add_file_name (lh, cur_file, dir_index, mod_time, length);
10923 }
10924 break;
10925 case DW_LNE_set_discriminator:
10926 /* The discriminator is not interesting to the debugger;
10927 just ignore it. */
10928 line_ptr = extended_end;
10929 break;
10930 default:
10931 complaint (&symfile_complaints,
10932 _("mangled .debug_line section"));
10933 return;
10934 }
10935 /* Make sure that we parsed the extended op correctly. If e.g.
10936 we expected a different address size than the producer used,
10937 we may have read the wrong number of bytes. */
10938 if (line_ptr != extended_end)
10939 {
10940 complaint (&symfile_complaints,
10941 _("mangled .debug_line section"));
10942 return;
10943 }
10944 break;
10945 case DW_LNS_copy:
10946 if (lh->num_file_names < file || file == 0)
10947 dwarf2_debug_line_missing_file_complaint ();
10948 else
10949 {
10950 lh->file_names[file - 1].included_p = 1;
10951 if (!decode_for_pst_p && is_stmt)
10952 {
10953 if (last_subfile != current_subfile)
10954 {
10955 addr = gdbarch_addr_bits_remove (gdbarch, address);
10956 if (last_subfile)
10957 (*p_record_line) (last_subfile, 0, addr);
10958 last_subfile = current_subfile;
10959 }
10960 addr = check_cu_functions (address, cu);
10961 addr = gdbarch_addr_bits_remove (gdbarch, addr);
10962 (*p_record_line) (current_subfile, line, addr);
10963 }
10964 }
10965 basic_block = 0;
10966 break;
10967 case DW_LNS_advance_pc:
10968 {
10969 CORE_ADDR adjust
10970 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10971
10972 address += (((op_index + adjust)
10973 / lh->maximum_ops_per_instruction)
10974 * lh->minimum_instruction_length);
10975 op_index = ((op_index + adjust)
10976 % lh->maximum_ops_per_instruction);
10977 line_ptr += bytes_read;
10978 }
10979 break;
10980 case DW_LNS_advance_line:
10981 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
10982 line_ptr += bytes_read;
10983 break;
10984 case DW_LNS_set_file:
10985 {
10986 /* The arrays lh->include_dirs and lh->file_names are
10987 0-based, but the directory and file name numbers in
10988 the statement program are 1-based. */
10989 struct file_entry *fe;
10990 char *dir = NULL;
10991
10992 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10993 line_ptr += bytes_read;
10994 if (lh->num_file_names < file || file == 0)
10995 dwarf2_debug_line_missing_file_complaint ();
10996 else
10997 {
10998 fe = &lh->file_names[file - 1];
10999 if (fe->dir_index)
11000 dir = lh->include_dirs[fe->dir_index - 1];
11001 if (!decode_for_pst_p)
11002 {
11003 last_subfile = current_subfile;
11004 dwarf2_start_subfile (fe->name, dir, comp_dir);
11005 }
11006 }
11007 }
11008 break;
11009 case DW_LNS_set_column:
11010 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
11011 line_ptr += bytes_read;
11012 break;
11013 case DW_LNS_negate_stmt:
11014 is_stmt = (!is_stmt);
11015 break;
11016 case DW_LNS_set_basic_block:
11017 basic_block = 1;
11018 break;
11019 /* Add to the address register of the state machine the
11020 address increment value corresponding to special opcode
11021 255. I.e., this value is scaled by the minimum
11022 instruction length since special opcode 255 would have
11023 scaled the increment. */
11024 case DW_LNS_const_add_pc:
11025 {
11026 CORE_ADDR adjust = (255 - lh->opcode_base) / lh->line_range;
11027
11028 address += (((op_index + adjust)
11029 / lh->maximum_ops_per_instruction)
11030 * lh->minimum_instruction_length);
11031 op_index = ((op_index + adjust)
11032 % lh->maximum_ops_per_instruction);
11033 }
11034 break;
11035 case DW_LNS_fixed_advance_pc:
11036 address += read_2_bytes (abfd, line_ptr);
11037 op_index = 0;
11038 line_ptr += 2;
11039 break;
11040 default:
11041 {
11042 /* Unknown standard opcode, ignore it. */
11043 int i;
11044
11045 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
11046 {
11047 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
11048 line_ptr += bytes_read;
11049 }
11050 }
11051 }
11052 }
11053 if (lh->num_file_names < file || file == 0)
11054 dwarf2_debug_line_missing_file_complaint ();
11055 else
11056 {
11057 lh->file_names[file - 1].included_p = 1;
11058 if (!decode_for_pst_p)
11059 {
11060 addr = gdbarch_addr_bits_remove (gdbarch, address);
11061 (*p_record_line) (current_subfile, 0, addr);
11062 }
11063 }
11064 }
11065
11066 if (decode_for_pst_p)
11067 {
11068 int file_index;
11069
11070 /* Now that we're done scanning the Line Header Program, we can
11071 create the psymtab of each included file. */
11072 for (file_index = 0; file_index < lh->num_file_names; file_index++)
11073 if (lh->file_names[file_index].included_p == 1)
11074 {
11075 char *include_name =
11076 psymtab_include_file_name (lh, file_index, pst, comp_dir);
11077 if (include_name != NULL)
11078 dwarf2_create_include_psymtab (include_name, pst, objfile);
11079 }
11080 }
11081 else
11082 {
11083 /* Make sure a symtab is created for every file, even files
11084 which contain only variables (i.e. no code with associated
11085 line numbers). */
11086
11087 int i;
11088 struct file_entry *fe;
11089
11090 for (i = 0; i < lh->num_file_names; i++)
11091 {
11092 char *dir = NULL;
11093
11094 fe = &lh->file_names[i];
11095 if (fe->dir_index)
11096 dir = lh->include_dirs[fe->dir_index - 1];
11097 dwarf2_start_subfile (fe->name, dir, comp_dir);
11098
11099 /* Skip the main file; we don't need it, and it must be
11100 allocated last, so that it will show up before the
11101 non-primary symtabs in the objfile's symtab list. */
11102 if (current_subfile == first_subfile)
11103 continue;
11104
11105 if (current_subfile->symtab == NULL)
11106 current_subfile->symtab = allocate_symtab (current_subfile->name,
11107 cu->objfile);
11108 fe->symtab = current_subfile->symtab;
11109 }
11110 }
11111 }
11112
11113 /* Start a subfile for DWARF. FILENAME is the name of the file and
11114 DIRNAME the name of the source directory which contains FILENAME
11115 or NULL if not known. COMP_DIR is the compilation directory for the
11116 linetable's compilation unit or NULL if not known.
11117 This routine tries to keep line numbers from identical absolute and
11118 relative file names in a common subfile.
11119
11120 Using the `list' example from the GDB testsuite, which resides in
11121 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
11122 of /srcdir/list0.c yields the following debugging information for list0.c:
11123
11124 DW_AT_name: /srcdir/list0.c
11125 DW_AT_comp_dir: /compdir
11126 files.files[0].name: list0.h
11127 files.files[0].dir: /srcdir
11128 files.files[1].name: list0.c
11129 files.files[1].dir: /srcdir
11130
11131 The line number information for list0.c has to end up in a single
11132 subfile, so that `break /srcdir/list0.c:1' works as expected.
11133 start_subfile will ensure that this happens provided that we pass the
11134 concatenation of files.files[1].dir and files.files[1].name as the
11135 subfile's name. */
11136
11137 static void
11138 dwarf2_start_subfile (char *filename, const char *dirname,
11139 const char *comp_dir)
11140 {
11141 char *fullname;
11142
11143 /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
11144 `start_symtab' will always pass the contents of DW_AT_comp_dir as
11145 second argument to start_subfile. To be consistent, we do the
11146 same here. In order not to lose the line information directory,
11147 we concatenate it to the filename when it makes sense.
11148 Note that the Dwarf3 standard says (speaking of filenames in line
11149 information): ``The directory index is ignored for file names
11150 that represent full path names''. Thus ignoring dirname in the
11151 `else' branch below isn't an issue. */
11152
11153 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
11154 fullname = concat (dirname, SLASH_STRING, filename, (char *)NULL);
11155 else
11156 fullname = filename;
11157
11158 start_subfile (fullname, comp_dir);
11159
11160 if (fullname != filename)
11161 xfree (fullname);
11162 }
11163
11164 static void
11165 var_decode_location (struct attribute *attr, struct symbol *sym,
11166 struct dwarf2_cu *cu)
11167 {
11168 struct objfile *objfile = cu->objfile;
11169 struct comp_unit_head *cu_header = &cu->header;
11170
11171 /* NOTE drow/2003-01-30: There used to be a comment and some special
11172 code here to turn a symbol with DW_AT_external and a
11173 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
11174 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
11175 with some versions of binutils) where shared libraries could have
11176 relocations against symbols in their debug information - the
11177 minimal symbol would have the right address, but the debug info
11178 would not. It's no longer necessary, because we will explicitly
11179 apply relocations when we read in the debug information now. */
11180
11181 /* A DW_AT_location attribute with no contents indicates that a
11182 variable has been optimized away. */
11183 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
11184 {
11185 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
11186 return;
11187 }
11188
11189 /* Handle one degenerate form of location expression specially, to
11190 preserve GDB's previous behavior when section offsets are
11191 specified. If this is just a DW_OP_addr then mark this symbol
11192 as LOC_STATIC. */
11193
11194 if (attr_form_is_block (attr)
11195 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size
11196 && DW_BLOCK (attr)->data[0] == DW_OP_addr)
11197 {
11198 unsigned int dummy;
11199
11200 SYMBOL_VALUE_ADDRESS (sym) =
11201 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
11202 SYMBOL_CLASS (sym) = LOC_STATIC;
11203 fixup_symbol_section (sym, objfile);
11204 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
11205 SYMBOL_SECTION (sym));
11206 return;
11207 }
11208
11209 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
11210 expression evaluator, and use LOC_COMPUTED only when necessary
11211 (i.e. when the value of a register or memory location is
11212 referenced, or a thread-local block, etc.). Then again, it might
11213 not be worthwhile. I'm assuming that it isn't unless performance
11214 or memory numbers show me otherwise. */
11215
11216 dwarf2_symbol_mark_computed (attr, sym, cu);
11217 SYMBOL_CLASS (sym) = LOC_COMPUTED;
11218
11219 if (SYMBOL_COMPUTED_OPS (sym) == &dwarf2_loclist_funcs)
11220 cu->has_loclist = 1;
11221 }
11222
11223 /* Given a pointer to a DWARF information entry, figure out if we need
11224 to make a symbol table entry for it, and if so, create a new entry
11225 and return a pointer to it.
11226 If TYPE is NULL, determine symbol type from the die, otherwise
11227 used the passed type.
11228 If SPACE is not NULL, use it to hold the new symbol. If it is
11229 NULL, allocate a new symbol on the objfile's obstack. */
11230
11231 static struct symbol *
11232 new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
11233 struct symbol *space)
11234 {
11235 struct objfile *objfile = cu->objfile;
11236 struct symbol *sym = NULL;
11237 char *name;
11238 struct attribute *attr = NULL;
11239 struct attribute *attr2 = NULL;
11240 CORE_ADDR baseaddr;
11241 struct pending **list_to_add = NULL;
11242
11243 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
11244
11245 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
11246
11247 name = dwarf2_name (die, cu);
11248 if (name)
11249 {
11250 const char *linkagename;
11251 int suppress_add = 0;
11252
11253 if (space)
11254 sym = space;
11255 else
11256 sym = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct symbol);
11257 OBJSTAT (objfile, n_syms++);
11258
11259 /* Cache this symbol's name and the name's demangled form (if any). */
11260 SYMBOL_SET_LANGUAGE (sym, cu->language);
11261 linkagename = dwarf2_physname (name, die, cu);
11262 SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
11263
11264 /* Fortran does not have mangling standard and the mangling does differ
11265 between gfortran, iFort etc. */
11266 if (cu->language == language_fortran
11267 && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
11268 symbol_set_demangled_name (&(sym->ginfo),
11269 (char *) dwarf2_full_name (name, die, cu),
11270 NULL);
11271
11272 /* Default assumptions.
11273 Use the passed type or decode it from the die. */
11274 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
11275 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
11276 if (type != NULL)
11277 SYMBOL_TYPE (sym) = type;
11278 else
11279 SYMBOL_TYPE (sym) = die_type (die, cu);
11280 attr = dwarf2_attr (die,
11281 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
11282 cu);
11283 if (attr)
11284 {
11285 SYMBOL_LINE (sym) = DW_UNSND (attr);
11286 }
11287
11288 attr = dwarf2_attr (die,
11289 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
11290 cu);
11291 if (attr)
11292 {
11293 int file_index = DW_UNSND (attr);
11294
11295 if (cu->line_header == NULL
11296 || file_index > cu->line_header->num_file_names)
11297 complaint (&symfile_complaints,
11298 _("file index out of range"));
11299 else if (file_index > 0)
11300 {
11301 struct file_entry *fe;
11302
11303 fe = &cu->line_header->file_names[file_index - 1];
11304 SYMBOL_SYMTAB (sym) = fe->symtab;
11305 }
11306 }
11307
11308 switch (die->tag)
11309 {
11310 case DW_TAG_label:
11311 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
11312 if (attr)
11313 {
11314 SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
11315 }
11316 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
11317 SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
11318 SYMBOL_CLASS (sym) = LOC_LABEL;
11319 add_symbol_to_list (sym, cu->list_in_scope);
11320 break;
11321 case DW_TAG_subprogram:
11322 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
11323 finish_block. */
11324 SYMBOL_CLASS (sym) = LOC_BLOCK;
11325 attr2 = dwarf2_attr (die, DW_AT_external, cu);
11326 if ((attr2 && (DW_UNSND (attr2) != 0))
11327 || cu->language == language_ada)
11328 {
11329 /* Subprograms marked external are stored as a global symbol.
11330 Ada subprograms, whether marked external or not, are always
11331 stored as a global symbol, because we want to be able to
11332 access them globally. For instance, we want to be able
11333 to break on a nested subprogram without having to
11334 specify the context. */
11335 list_to_add = &global_symbols;
11336 }
11337 else
11338 {
11339 list_to_add = cu->list_in_scope;
11340 }
11341 break;
11342 case DW_TAG_inlined_subroutine:
11343 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
11344 finish_block. */
11345 SYMBOL_CLASS (sym) = LOC_BLOCK;
11346 SYMBOL_INLINED (sym) = 1;
11347 /* Do not add the symbol to any lists. It will be found via
11348 BLOCK_FUNCTION from the blockvector. */
11349 break;
11350 case DW_TAG_template_value_param:
11351 suppress_add = 1;
11352 /* Fall through. */
11353 case DW_TAG_constant:
11354 case DW_TAG_variable:
11355 case DW_TAG_member:
11356 /* Compilation with minimal debug info may result in
11357 variables with missing type entries. Change the
11358 misleading `void' type to something sensible. */
11359 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
11360 SYMBOL_TYPE (sym)
11361 = objfile_type (objfile)->nodebug_data_symbol;
11362
11363 attr = dwarf2_attr (die, DW_AT_const_value, cu);
11364 /* In the case of DW_TAG_member, we should only be called for
11365 static const members. */
11366 if (die->tag == DW_TAG_member)
11367 {
11368 /* dwarf2_add_field uses die_is_declaration,
11369 so we do the same. */
11370 gdb_assert (die_is_declaration (die, cu));
11371 gdb_assert (attr);
11372 }
11373 if (attr)
11374 {
11375 dwarf2_const_value (attr, sym, cu);
11376 attr2 = dwarf2_attr (die, DW_AT_external, cu);
11377 if (!suppress_add)
11378 {
11379 if (attr2 && (DW_UNSND (attr2) != 0))
11380 list_to_add = &global_symbols;
11381 else
11382 list_to_add = cu->list_in_scope;
11383 }
11384 break;
11385 }
11386 attr = dwarf2_attr (die, DW_AT_location, cu);
11387 if (attr)
11388 {
11389 var_decode_location (attr, sym, cu);
11390 attr2 = dwarf2_attr (die, DW_AT_external, cu);
11391 if (SYMBOL_CLASS (sym) == LOC_STATIC
11392 && SYMBOL_VALUE_ADDRESS (sym) == 0
11393 && !dwarf2_per_objfile->has_section_at_zero)
11394 {
11395 /* When a static variable is eliminated by the linker,
11396 the corresponding debug information is not stripped
11397 out, but the variable address is set to null;
11398 do not add such variables into symbol table. */
11399 }
11400 else if (attr2 && (DW_UNSND (attr2) != 0))
11401 {
11402 /* Workaround gfortran PR debug/40040 - it uses
11403 DW_AT_location for variables in -fPIC libraries which may
11404 get overriden by other libraries/executable and get
11405 a different address. Resolve it by the minimal symbol
11406 which may come from inferior's executable using copy
11407 relocation. Make this workaround only for gfortran as for
11408 other compilers GDB cannot guess the minimal symbol
11409 Fortran mangling kind. */
11410 if (cu->language == language_fortran && die->parent
11411 && die->parent->tag == DW_TAG_module
11412 && cu->producer
11413 && strncmp (cu->producer, "GNU Fortran ", 12) == 0)
11414 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
11415
11416 /* A variable with DW_AT_external is never static,
11417 but it may be block-scoped. */
11418 list_to_add = (cu->list_in_scope == &file_symbols
11419 ? &global_symbols : cu->list_in_scope);
11420 }
11421 else
11422 list_to_add = cu->list_in_scope;
11423 }
11424 else
11425 {
11426 /* We do not know the address of this symbol.
11427 If it is an external symbol and we have type information
11428 for it, enter the symbol as a LOC_UNRESOLVED symbol.
11429 The address of the variable will then be determined from
11430 the minimal symbol table whenever the variable is
11431 referenced. */
11432 attr2 = dwarf2_attr (die, DW_AT_external, cu);
11433 if (attr2 && (DW_UNSND (attr2) != 0)
11434 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
11435 {
11436 /* A variable with DW_AT_external is never static, but it
11437 may be block-scoped. */
11438 list_to_add = (cu->list_in_scope == &file_symbols
11439 ? &global_symbols : cu->list_in_scope);
11440
11441 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
11442 }
11443 else if (!die_is_declaration (die, cu))
11444 {
11445 /* Use the default LOC_OPTIMIZED_OUT class. */
11446 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
11447 if (!suppress_add)
11448 list_to_add = cu->list_in_scope;
11449 }
11450 }
11451 break;
11452 case DW_TAG_formal_parameter:
11453 /* If we are inside a function, mark this as an argument. If
11454 not, we might be looking at an argument to an inlined function
11455 when we do not have enough information to show inlined frames;
11456 pretend it's a local variable in that case so that the user can
11457 still see it. */
11458 if (context_stack_depth > 0
11459 && context_stack[context_stack_depth - 1].name != NULL)
11460 SYMBOL_IS_ARGUMENT (sym) = 1;
11461 attr = dwarf2_attr (die, DW_AT_location, cu);
11462 if (attr)
11463 {
11464 var_decode_location (attr, sym, cu);
11465 }
11466 attr = dwarf2_attr (die, DW_AT_const_value, cu);
11467 if (attr)
11468 {
11469 dwarf2_const_value (attr, sym, cu);
11470 }
11471 attr = dwarf2_attr (die, DW_AT_variable_parameter, cu);
11472 if (attr && DW_UNSND (attr))
11473 {
11474 struct type *ref_type;
11475
11476 ref_type = lookup_reference_type (SYMBOL_TYPE (sym));
11477 SYMBOL_TYPE (sym) = ref_type;
11478 }
11479
11480 list_to_add = cu->list_in_scope;
11481 break;
11482 case DW_TAG_unspecified_parameters:
11483 /* From varargs functions; gdb doesn't seem to have any
11484 interest in this information, so just ignore it for now.
11485 (FIXME?) */
11486 break;
11487 case DW_TAG_template_type_param:
11488 suppress_add = 1;
11489 /* Fall through. */
11490 case DW_TAG_class_type:
11491 case DW_TAG_interface_type:
11492 case DW_TAG_structure_type:
11493 case DW_TAG_union_type:
11494 case DW_TAG_set_type:
11495 case DW_TAG_enumeration_type:
11496 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
11497 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
11498
11499 {
11500 /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
11501 really ever be static objects: otherwise, if you try
11502 to, say, break of a class's method and you're in a file
11503 which doesn't mention that class, it won't work unless
11504 the check for all static symbols in lookup_symbol_aux
11505 saves you. See the OtherFileClass tests in
11506 gdb.c++/namespace.exp. */
11507
11508 if (!suppress_add)
11509 {
11510 list_to_add = (cu->list_in_scope == &file_symbols
11511 && (cu->language == language_cplus
11512 || cu->language == language_java)
11513 ? &global_symbols : cu->list_in_scope);
11514
11515 /* The semantics of C++ state that "struct foo {
11516 ... }" also defines a typedef for "foo". A Java
11517 class declaration also defines a typedef for the
11518 class. */
11519 if (cu->language == language_cplus
11520 || cu->language == language_java
11521 || cu->language == language_ada)
11522 {
11523 /* The symbol's name is already allocated along
11524 with this objfile, so we don't need to
11525 duplicate it for the type. */
11526 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
11527 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
11528 }
11529 }
11530 }
11531 break;
11532 case DW_TAG_typedef:
11533 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
11534 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
11535 list_to_add = cu->list_in_scope;
11536 break;
11537 case DW_TAG_base_type:
11538 case DW_TAG_subrange_type:
11539 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
11540 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
11541 list_to_add = cu->list_in_scope;
11542 break;
11543 case DW_TAG_enumerator:
11544 attr = dwarf2_attr (die, DW_AT_const_value, cu);
11545 if (attr)
11546 {
11547 dwarf2_const_value (attr, sym, cu);
11548 }
11549 {
11550 /* NOTE: carlton/2003-11-10: See comment above in the
11551 DW_TAG_class_type, etc. block. */
11552
11553 list_to_add = (cu->list_in_scope == &file_symbols
11554 && (cu->language == language_cplus
11555 || cu->language == language_java)
11556 ? &global_symbols : cu->list_in_scope);
11557 }
11558 break;
11559 case DW_TAG_namespace:
11560 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
11561 list_to_add = &global_symbols;
11562 break;
11563 default:
11564 /* Not a tag we recognize. Hopefully we aren't processing
11565 trash data, but since we must specifically ignore things
11566 we don't recognize, there is nothing else we should do at
11567 this point. */
11568 complaint (&symfile_complaints, _("unsupported tag: '%s'"),
11569 dwarf_tag_name (die->tag));
11570 break;
11571 }
11572
11573 if (suppress_add)
11574 {
11575 sym->hash_next = objfile->template_symbols;
11576 objfile->template_symbols = sym;
11577 list_to_add = NULL;
11578 }
11579
11580 if (list_to_add != NULL)
11581 add_symbol_to_list (sym, list_to_add);
11582
11583 /* For the benefit of old versions of GCC, check for anonymous
11584 namespaces based on the demangled name. */
11585 if (!processing_has_namespace_info
11586 && cu->language == language_cplus)
11587 cp_scan_for_anonymous_namespaces (sym);
11588 }
11589 return (sym);
11590 }
11591
11592 /* A wrapper for new_symbol_full that always allocates a new symbol. */
11593
11594 static struct symbol *
11595 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
11596 {
11597 return new_symbol_full (die, type, cu, NULL);
11598 }
11599
11600 /* Given an attr with a DW_FORM_dataN value in host byte order,
11601 zero-extend it as appropriate for the symbol's type. The DWARF
11602 standard (v4) is not entirely clear about the meaning of using
11603 DW_FORM_dataN for a constant with a signed type, where the type is
11604 wider than the data. The conclusion of a discussion on the DWARF
11605 list was that this is unspecified. We choose to always zero-extend
11606 because that is the interpretation long in use by GCC. */
11607
11608 static gdb_byte *
11609 dwarf2_const_value_data (struct attribute *attr, struct type *type,
11610 const char *name, struct obstack *obstack,
11611 struct dwarf2_cu *cu, long *value, int bits)
11612 {
11613 struct objfile *objfile = cu->objfile;
11614 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
11615 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
11616 LONGEST l = DW_UNSND (attr);
11617
11618 if (bits < sizeof (*value) * 8)
11619 {
11620 l &= ((LONGEST) 1 << bits) - 1;
11621 *value = l;
11622 }
11623 else if (bits == sizeof (*value) * 8)
11624 *value = l;
11625 else
11626 {
11627 gdb_byte *bytes = obstack_alloc (obstack, bits / 8);
11628 store_unsigned_integer (bytes, bits / 8, byte_order, l);
11629 return bytes;
11630 }
11631
11632 return NULL;
11633 }
11634
11635 /* Read a constant value from an attribute. Either set *VALUE, or if
11636 the value does not fit in *VALUE, set *BYTES - either already
11637 allocated on the objfile obstack, or newly allocated on OBSTACK,
11638 or, set *BATON, if we translated the constant to a location
11639 expression. */
11640
11641 static void
11642 dwarf2_const_value_attr (struct attribute *attr, struct type *type,
11643 const char *name, struct obstack *obstack,
11644 struct dwarf2_cu *cu,
11645 long *value, gdb_byte **bytes,
11646 struct dwarf2_locexpr_baton **baton)
11647 {
11648 struct objfile *objfile = cu->objfile;
11649 struct comp_unit_head *cu_header = &cu->header;
11650 struct dwarf_block *blk;
11651 enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
11652 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
11653
11654 *value = 0;
11655 *bytes = NULL;
11656 *baton = NULL;
11657
11658 switch (attr->form)
11659 {
11660 case DW_FORM_addr:
11661 {
11662 gdb_byte *data;
11663
11664 if (TYPE_LENGTH (type) != cu_header->addr_size)
11665 dwarf2_const_value_length_mismatch_complaint (name,
11666 cu_header->addr_size,
11667 TYPE_LENGTH (type));
11668 /* Symbols of this form are reasonably rare, so we just
11669 piggyback on the existing location code rather than writing
11670 a new implementation of symbol_computed_ops. */
11671 *baton = obstack_alloc (&objfile->objfile_obstack,
11672 sizeof (struct dwarf2_locexpr_baton));
11673 (*baton)->per_cu = cu->per_cu;
11674 gdb_assert ((*baton)->per_cu);
11675
11676 (*baton)->size = 2 + cu_header->addr_size;
11677 data = obstack_alloc (&objfile->objfile_obstack, (*baton)->size);
11678 (*baton)->data = data;
11679
11680 data[0] = DW_OP_addr;
11681 store_unsigned_integer (&data[1], cu_header->addr_size,
11682 byte_order, DW_ADDR (attr));
11683 data[cu_header->addr_size + 1] = DW_OP_stack_value;
11684 }
11685 break;
11686 case DW_FORM_string:
11687 case DW_FORM_strp:
11688 /* DW_STRING is already allocated on the objfile obstack, point
11689 directly to it. */
11690 *bytes = (gdb_byte *) DW_STRING (attr);
11691 break;
11692 case DW_FORM_block1:
11693 case DW_FORM_block2:
11694 case DW_FORM_block4:
11695 case DW_FORM_block:
11696 case DW_FORM_exprloc:
11697 blk = DW_BLOCK (attr);
11698 if (TYPE_LENGTH (type) != blk->size)
11699 dwarf2_const_value_length_mismatch_complaint (name, blk->size,
11700 TYPE_LENGTH (type));
11701 *bytes = blk->data;
11702 break;
11703
11704 /* The DW_AT_const_value attributes are supposed to carry the
11705 symbol's value "represented as it would be on the target
11706 architecture." By the time we get here, it's already been
11707 converted to host endianness, so we just need to sign- or
11708 zero-extend it as appropriate. */
11709 case DW_FORM_data1:
11710 *bytes = dwarf2_const_value_data (attr, type, name,
11711 obstack, cu, value, 8);
11712 break;
11713 case DW_FORM_data2:
11714 *bytes = dwarf2_const_value_data (attr, type, name,
11715 obstack, cu, value, 16);
11716 break;
11717 case DW_FORM_data4:
11718 *bytes = dwarf2_const_value_data (attr, type, name,
11719 obstack, cu, value, 32);
11720 break;
11721 case DW_FORM_data8:
11722 *bytes = dwarf2_const_value_data (attr, type, name,
11723 obstack, cu, value, 64);
11724 break;
11725
11726 case DW_FORM_sdata:
11727 *value = DW_SND (attr);
11728 break;
11729
11730 case DW_FORM_udata:
11731 *value = DW_UNSND (attr);
11732 break;
11733
11734 default:
11735 complaint (&symfile_complaints,
11736 _("unsupported const value attribute form: '%s'"),
11737 dwarf_form_name (attr->form));
11738 *value = 0;
11739 break;
11740 }
11741 }
11742
11743
11744 /* Copy constant value from an attribute to a symbol. */
11745
11746 static void
11747 dwarf2_const_value (struct attribute *attr, struct symbol *sym,
11748 struct dwarf2_cu *cu)
11749 {
11750 struct objfile *objfile = cu->objfile;
11751 struct comp_unit_head *cu_header = &cu->header;
11752 long value;
11753 gdb_byte *bytes;
11754 struct dwarf2_locexpr_baton *baton;
11755
11756 dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
11757 SYMBOL_PRINT_NAME (sym),
11758 &objfile->objfile_obstack, cu,
11759 &value, &bytes, &baton);
11760
11761 if (baton != NULL)
11762 {
11763 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_locexpr_funcs;
11764 SYMBOL_LOCATION_BATON (sym) = baton;
11765 SYMBOL_CLASS (sym) = LOC_COMPUTED;
11766 }
11767 else if (bytes != NULL)
11768 {
11769 SYMBOL_VALUE_BYTES (sym) = bytes;
11770 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
11771 }
11772 else
11773 {
11774 SYMBOL_VALUE (sym) = value;
11775 SYMBOL_CLASS (sym) = LOC_CONST;
11776 }
11777 }
11778
11779 /* Return the type of the die in question using its DW_AT_type attribute. */
11780
11781 static struct type *
11782 die_type (struct die_info *die, struct dwarf2_cu *cu)
11783 {
11784 struct attribute *type_attr;
11785
11786 type_attr = dwarf2_attr (die, DW_AT_type, cu);
11787 if (!type_attr)
11788 {
11789 /* A missing DW_AT_type represents a void type. */
11790 return objfile_type (cu->objfile)->builtin_void;
11791 }
11792
11793 return lookup_die_type (die, type_attr, cu);
11794 }
11795
11796 /* True iff CU's producer generates GNAT Ada auxiliary information
11797 that allows to find parallel types through that information instead
11798 of having to do expensive parallel lookups by type name. */
11799
11800 static int
11801 need_gnat_info (struct dwarf2_cu *cu)
11802 {
11803 /* FIXME: brobecker/2010-10-12: As of now, only the AdaCore version
11804 of GNAT produces this auxiliary information, without any indication
11805 that it is produced. Part of enhancing the FSF version of GNAT
11806 to produce that information will be to put in place an indicator
11807 that we can use in order to determine whether the descriptive type
11808 info is available or not. One suggestion that has been made is
11809 to use a new attribute, attached to the CU die. For now, assume
11810 that the descriptive type info is not available. */
11811 return 0;
11812 }
11813
11814 /* Return the auxiliary type of the die in question using its
11815 DW_AT_GNAT_descriptive_type attribute. Returns NULL if the
11816 attribute is not present. */
11817
11818 static struct type *
11819 die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
11820 {
11821 struct attribute *type_attr;
11822
11823 type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
11824 if (!type_attr)
11825 return NULL;
11826
11827 return lookup_die_type (die, type_attr, cu);
11828 }
11829
11830 /* If DIE has a descriptive_type attribute, then set the TYPE's
11831 descriptive type accordingly. */
11832
11833 static void
11834 set_descriptive_type (struct type *type, struct die_info *die,
11835 struct dwarf2_cu *cu)
11836 {
11837 struct type *descriptive_type = die_descriptive_type (die, cu);
11838
11839 if (descriptive_type)
11840 {
11841 ALLOCATE_GNAT_AUX_TYPE (type);
11842 TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
11843 }
11844 }
11845
11846 /* Return the containing type of the die in question using its
11847 DW_AT_containing_type attribute. */
11848
11849 static struct type *
11850 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
11851 {
11852 struct attribute *type_attr;
11853
11854 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
11855 if (!type_attr)
11856 error (_("Dwarf Error: Problem turning containing type into gdb type "
11857 "[in module %s]"), cu->objfile->name);
11858
11859 return lookup_die_type (die, type_attr, cu);
11860 }
11861
11862 /* Look up the type of DIE in CU using its type attribute ATTR.
11863 If there is no type substitute an error marker. */
11864
11865 static struct type *
11866 lookup_die_type (struct die_info *die, struct attribute *attr,
11867 struct dwarf2_cu *cu)
11868 {
11869 struct type *this_type;
11870
11871 /* First see if we have it cached. */
11872
11873 if (is_ref_attr (attr))
11874 {
11875 unsigned int offset = dwarf2_get_ref_die_offset (attr);
11876
11877 this_type = get_die_type_at_offset (offset, cu->per_cu);
11878 }
11879 else if (attr->form == DW_FORM_ref_sig8)
11880 {
11881 struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
11882 struct dwarf2_cu *sig_cu;
11883 unsigned int offset;
11884
11885 /* sig_type will be NULL if the signatured type is missing from
11886 the debug info. */
11887 if (sig_type == NULL)
11888 error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
11889 "at 0x%x [in module %s]"),
11890 die->offset, cu->objfile->name);
11891
11892 gdb_assert (sig_type->per_cu.from_debug_types);
11893 offset = sig_type->per_cu.offset + sig_type->type_offset;
11894 this_type = get_die_type_at_offset (offset, &sig_type->per_cu);
11895 }
11896 else
11897 {
11898 dump_die_for_error (die);
11899 error (_("Dwarf Error: Bad type attribute %s [in module %s]"),
11900 dwarf_attr_name (attr->name), cu->objfile->name);
11901 }
11902
11903 /* If not cached we need to read it in. */
11904
11905 if (this_type == NULL)
11906 {
11907 struct die_info *type_die;
11908 struct dwarf2_cu *type_cu = cu;
11909
11910 type_die = follow_die_ref_or_sig (die, attr, &type_cu);
11911 /* If the type is cached, we should have found it above. */
11912 gdb_assert (get_die_type (type_die, type_cu) == NULL);
11913 this_type = read_type_die_1 (type_die, type_cu);
11914 }
11915
11916 /* If we still don't have a type use an error marker. */
11917
11918 if (this_type == NULL)
11919 {
11920 char *message, *saved;
11921
11922 /* read_type_die already issued a complaint. */
11923 message = xstrprintf (_("<unknown type in %s, CU 0x%x, DIE 0x%x>"),
11924 cu->objfile->name,
11925 cu->header.offset,
11926 die->offset);
11927 saved = obstack_copy0 (&cu->objfile->objfile_obstack,
11928 message, strlen (message));
11929 xfree (message);
11930
11931 this_type = init_type (TYPE_CODE_ERROR, 0, 0, saved, cu->objfile);
11932 }
11933
11934 return this_type;
11935 }
11936
11937 /* Return the type in DIE, CU.
11938 Returns NULL for invalid types.
11939
11940 This first does a lookup in the appropriate type_hash table,
11941 and only reads the die in if necessary.
11942
11943 NOTE: This can be called when reading in partial or full symbols. */
11944
11945 static struct type *
11946 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
11947 {
11948 struct type *this_type;
11949
11950 this_type = get_die_type (die, cu);
11951 if (this_type)
11952 return this_type;
11953
11954 return read_type_die_1 (die, cu);
11955 }
11956
11957 /* Read the type in DIE, CU.
11958 Returns NULL for invalid types. */
11959
11960 static struct type *
11961 read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
11962 {
11963 struct type *this_type = NULL;
11964
11965 switch (die->tag)
11966 {
11967 case DW_TAG_class_type:
11968 case DW_TAG_interface_type:
11969 case DW_TAG_structure_type:
11970 case DW_TAG_union_type:
11971 this_type = read_structure_type (die, cu);
11972 break;
11973 case DW_TAG_enumeration_type:
11974 this_type = read_enumeration_type (die, cu);
11975 break;
11976 case DW_TAG_subprogram:
11977 case DW_TAG_subroutine_type:
11978 case DW_TAG_inlined_subroutine:
11979 this_type = read_subroutine_type (die, cu);
11980 break;
11981 case DW_TAG_array_type:
11982 this_type = read_array_type (die, cu);
11983 break;
11984 case DW_TAG_set_type:
11985 this_type = read_set_type (die, cu);
11986 break;
11987 case DW_TAG_pointer_type:
11988 this_type = read_tag_pointer_type (die, cu);
11989 break;
11990 case DW_TAG_ptr_to_member_type:
11991 this_type = read_tag_ptr_to_member_type (die, cu);
11992 break;
11993 case DW_TAG_reference_type:
11994 this_type = read_tag_reference_type (die, cu);
11995 break;
11996 case DW_TAG_const_type:
11997 this_type = read_tag_const_type (die, cu);
11998 break;
11999 case DW_TAG_volatile_type:
12000 this_type = read_tag_volatile_type (die, cu);
12001 break;
12002 case DW_TAG_string_type:
12003 this_type = read_tag_string_type (die, cu);
12004 break;
12005 case DW_TAG_typedef:
12006 this_type = read_typedef (die, cu);
12007 break;
12008 case DW_TAG_subrange_type:
12009 this_type = read_subrange_type (die, cu);
12010 break;
12011 case DW_TAG_base_type:
12012 this_type = read_base_type (die, cu);
12013 break;
12014 case DW_TAG_unspecified_type:
12015 this_type = read_unspecified_type (die, cu);
12016 break;
12017 case DW_TAG_namespace:
12018 this_type = read_namespace_type (die, cu);
12019 break;
12020 case DW_TAG_module:
12021 this_type = read_module_type (die, cu);
12022 break;
12023 default:
12024 complaint (&symfile_complaints,
12025 _("unexpected tag in read_type_die: '%s'"),
12026 dwarf_tag_name (die->tag));
12027 break;
12028 }
12029
12030 return this_type;
12031 }
12032
12033 /* See if we can figure out if the class lives in a namespace. We do
12034 this by looking for a member function; its demangled name will
12035 contain namespace info, if there is any.
12036 Return the computed name or NULL.
12037 Space for the result is allocated on the objfile's obstack.
12038 This is the full-die version of guess_partial_die_structure_name.
12039 In this case we know DIE has no useful parent. */
12040
12041 static char *
12042 guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
12043 {
12044 struct die_info *spec_die;
12045 struct dwarf2_cu *spec_cu;
12046 struct die_info *child;
12047
12048 spec_cu = cu;
12049 spec_die = die_specification (die, &spec_cu);
12050 if (spec_die != NULL)
12051 {
12052 die = spec_die;
12053 cu = spec_cu;
12054 }
12055
12056 for (child = die->child;
12057 child != NULL;
12058 child = child->sibling)
12059 {
12060 if (child->tag == DW_TAG_subprogram)
12061 {
12062 struct attribute *attr;
12063
12064 attr = dwarf2_attr (child, DW_AT_linkage_name, cu);
12065 if (attr == NULL)
12066 attr = dwarf2_attr (child, DW_AT_MIPS_linkage_name, cu);
12067 if (attr != NULL)
12068 {
12069 char *actual_name
12070 = language_class_name_from_physname (cu->language_defn,
12071 DW_STRING (attr));
12072 char *name = NULL;
12073
12074 if (actual_name != NULL)
12075 {
12076 char *die_name = dwarf2_name (die, cu);
12077
12078 if (die_name != NULL
12079 && strcmp (die_name, actual_name) != 0)
12080 {
12081 /* Strip off the class name from the full name.
12082 We want the prefix. */
12083 int die_name_len = strlen (die_name);
12084 int actual_name_len = strlen (actual_name);
12085
12086 /* Test for '::' as a sanity check. */
12087 if (actual_name_len > die_name_len + 2
12088 && actual_name[actual_name_len
12089 - die_name_len - 1] == ':')
12090 name =
12091 obsavestring (actual_name,
12092 actual_name_len - die_name_len - 2,
12093 &cu->objfile->objfile_obstack);
12094 }
12095 }
12096 xfree (actual_name);
12097 return name;
12098 }
12099 }
12100 }
12101
12102 return NULL;
12103 }
12104
12105 /* Return the name of the namespace/class that DIE is defined within,
12106 or "" if we can't tell. The caller should not xfree the result.
12107
12108 For example, if we're within the method foo() in the following
12109 code:
12110
12111 namespace N {
12112 class C {
12113 void foo () {
12114 }
12115 };
12116 }
12117
12118 then determine_prefix on foo's die will return "N::C". */
12119
12120 static char *
12121 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
12122 {
12123 struct die_info *parent, *spec_die;
12124 struct dwarf2_cu *spec_cu;
12125 struct type *parent_type;
12126
12127 if (cu->language != language_cplus && cu->language != language_java
12128 && cu->language != language_fortran)
12129 return "";
12130
12131 /* We have to be careful in the presence of DW_AT_specification.
12132 For example, with GCC 3.4, given the code
12133
12134 namespace N {
12135 void foo() {
12136 // Definition of N::foo.
12137 }
12138 }
12139
12140 then we'll have a tree of DIEs like this:
12141
12142 1: DW_TAG_compile_unit
12143 2: DW_TAG_namespace // N
12144 3: DW_TAG_subprogram // declaration of N::foo
12145 4: DW_TAG_subprogram // definition of N::foo
12146 DW_AT_specification // refers to die #3
12147
12148 Thus, when processing die #4, we have to pretend that we're in
12149 the context of its DW_AT_specification, namely the contex of die
12150 #3. */
12151 spec_cu = cu;
12152 spec_die = die_specification (die, &spec_cu);
12153 if (spec_die == NULL)
12154 parent = die->parent;
12155 else
12156 {
12157 parent = spec_die->parent;
12158 cu = spec_cu;
12159 }
12160
12161 if (parent == NULL)
12162 return "";
12163 else if (parent->building_fullname)
12164 {
12165 const char *name;
12166 const char *parent_name;
12167
12168 /* It has been seen on RealView 2.2 built binaries,
12169 DW_TAG_template_type_param types actually _defined_ as
12170 children of the parent class:
12171
12172 enum E {};
12173 template class <class Enum> Class{};
12174 Class<enum E> class_e;
12175
12176 1: DW_TAG_class_type (Class)
12177 2: DW_TAG_enumeration_type (E)
12178 3: DW_TAG_enumerator (enum1:0)
12179 3: DW_TAG_enumerator (enum2:1)
12180 ...
12181 2: DW_TAG_template_type_param
12182 DW_AT_type DW_FORM_ref_udata (E)
12183
12184 Besides being broken debug info, it can put GDB into an
12185 infinite loop. Consider:
12186
12187 When we're building the full name for Class<E>, we'll start
12188 at Class, and go look over its template type parameters,
12189 finding E. We'll then try to build the full name of E, and
12190 reach here. We're now trying to build the full name of E,
12191 and look over the parent DIE for containing scope. In the
12192 broken case, if we followed the parent DIE of E, we'd again
12193 find Class, and once again go look at its template type
12194 arguments, etc., etc. Simply don't consider such parent die
12195 as source-level parent of this die (it can't be, the language
12196 doesn't allow it), and break the loop here. */
12197 name = dwarf2_name (die, cu);
12198 parent_name = dwarf2_name (parent, cu);
12199 complaint (&symfile_complaints,
12200 _("template param type '%s' defined within parent '%s'"),
12201 name ? name : "<unknown>",
12202 parent_name ? parent_name : "<unknown>");
12203 return "";
12204 }
12205 else
12206 switch (parent->tag)
12207 {
12208 case DW_TAG_namespace:
12209 parent_type = read_type_die (parent, cu);
12210 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
12211 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
12212 Work around this problem here. */
12213 if (cu->language == language_cplus
12214 && strcmp (TYPE_TAG_NAME (parent_type), "::") == 0)
12215 return "";
12216 /* We give a name to even anonymous namespaces. */
12217 return TYPE_TAG_NAME (parent_type);
12218 case DW_TAG_class_type:
12219 case DW_TAG_interface_type:
12220 case DW_TAG_structure_type:
12221 case DW_TAG_union_type:
12222 case DW_TAG_module:
12223 parent_type = read_type_die (parent, cu);
12224 if (TYPE_TAG_NAME (parent_type) != NULL)
12225 return TYPE_TAG_NAME (parent_type);
12226 else
12227 /* An anonymous structure is only allowed non-static data
12228 members; no typedefs, no member functions, et cetera.
12229 So it does not need a prefix. */
12230 return "";
12231 case DW_TAG_compile_unit:
12232 /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace. Cope. */
12233 if (cu->language == language_cplus
12234 && dwarf2_per_objfile->types.asection != NULL
12235 && die->child != NULL
12236 && (die->tag == DW_TAG_class_type
12237 || die->tag == DW_TAG_structure_type
12238 || die->tag == DW_TAG_union_type))
12239 {
12240 char *name = guess_full_die_structure_name (die, cu);
12241 if (name != NULL)
12242 return name;
12243 }
12244 return "";
12245 default:
12246 return determine_prefix (parent, cu);
12247 }
12248 }
12249
12250 /* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
12251 with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
12252 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null, perform
12253 an obconcat, otherwise allocate storage for the result. The CU argument is
12254 used to determine the language and hence, the appropriate separator. */
12255
12256 #define MAX_SEP_LEN 7 /* strlen ("__") + strlen ("_MOD_") */
12257
12258 static char *
12259 typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
12260 int physname, struct dwarf2_cu *cu)
12261 {
12262 const char *lead = "";
12263 const char *sep;
12264
12265 if (suffix == NULL || suffix[0] == '\0'
12266 || prefix == NULL || prefix[0] == '\0')
12267 sep = "";
12268 else if (cu->language == language_java)
12269 sep = ".";
12270 else if (cu->language == language_fortran && physname)
12271 {
12272 /* This is gfortran specific mangling. Normally DW_AT_linkage_name or
12273 DW_AT_MIPS_linkage_name is preferred and used instead. */
12274
12275 lead = "__";
12276 sep = "_MOD_";
12277 }
12278 else
12279 sep = "::";
12280
12281 if (prefix == NULL)
12282 prefix = "";
12283 if (suffix == NULL)
12284 suffix = "";
12285
12286 if (obs == NULL)
12287 {
12288 char *retval
12289 = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
12290
12291 strcpy (retval, lead);
12292 strcat (retval, prefix);
12293 strcat (retval, sep);
12294 strcat (retval, suffix);
12295 return retval;
12296 }
12297 else
12298 {
12299 /* We have an obstack. */
12300 return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
12301 }
12302 }
12303
12304 /* Return sibling of die, NULL if no sibling. */
12305
12306 static struct die_info *
12307 sibling_die (struct die_info *die)
12308 {
12309 return die->sibling;
12310 }
12311
12312 /* Get name of a die, return NULL if not found. */
12313
12314 static char *
12315 dwarf2_canonicalize_name (char *name, struct dwarf2_cu *cu,
12316 struct obstack *obstack)
12317 {
12318 if (name && cu->language == language_cplus)
12319 {
12320 char *canon_name = cp_canonicalize_string (name);
12321
12322 if (canon_name != NULL)
12323 {
12324 if (strcmp (canon_name, name) != 0)
12325 name = obsavestring (canon_name, strlen (canon_name),
12326 obstack);
12327 xfree (canon_name);
12328 }
12329 }
12330
12331 return name;
12332 }
12333
12334 /* Get name of a die, return NULL if not found. */
12335
12336 static char *
12337 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
12338 {
12339 struct attribute *attr;
12340
12341 attr = dwarf2_attr (die, DW_AT_name, cu);
12342 if ((!attr || !DW_STRING (attr))
12343 && die->tag != DW_TAG_class_type
12344 && die->tag != DW_TAG_interface_type
12345 && die->tag != DW_TAG_structure_type
12346 && die->tag != DW_TAG_union_type)
12347 return NULL;
12348
12349 switch (die->tag)
12350 {
12351 case DW_TAG_compile_unit:
12352 /* Compilation units have a DW_AT_name that is a filename, not
12353 a source language identifier. */
12354 case DW_TAG_enumeration_type:
12355 case DW_TAG_enumerator:
12356 /* These tags always have simple identifiers already; no need
12357 to canonicalize them. */
12358 return DW_STRING (attr);
12359
12360 case DW_TAG_subprogram:
12361 /* Java constructors will all be named "<init>", so return
12362 the class name when we see this special case. */
12363 if (cu->language == language_java
12364 && DW_STRING (attr) != NULL
12365 && strcmp (DW_STRING (attr), "<init>") == 0)
12366 {
12367 struct dwarf2_cu *spec_cu = cu;
12368 struct die_info *spec_die;
12369
12370 /* GCJ will output '<init>' for Java constructor names.
12371 For this special case, return the name of the parent class. */
12372
12373 /* GCJ may output suprogram DIEs with AT_specification set.
12374 If so, use the name of the specified DIE. */
12375 spec_die = die_specification (die, &spec_cu);
12376 if (spec_die != NULL)
12377 return dwarf2_name (spec_die, spec_cu);
12378
12379 do
12380 {
12381 die = die->parent;
12382 if (die->tag == DW_TAG_class_type)
12383 return dwarf2_name (die, cu);
12384 }
12385 while (die->tag != DW_TAG_compile_unit);
12386 }
12387 break;
12388
12389 case DW_TAG_class_type:
12390 case DW_TAG_interface_type:
12391 case DW_TAG_structure_type:
12392 case DW_TAG_union_type:
12393 /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
12394 structures or unions. These were of the form "._%d" in GCC 4.1,
12395 or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
12396 and GCC 4.4. We work around this problem by ignoring these. */
12397 if (attr && DW_STRING (attr)
12398 && (strncmp (DW_STRING (attr), "._", 2) == 0
12399 || strncmp (DW_STRING (attr), "<anonymous", 10) == 0))
12400 return NULL;
12401
12402 /* GCC might emit a nameless typedef that has a linkage name. See
12403 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
12404 if (!attr || DW_STRING (attr) == NULL)
12405 {
12406 char *demangled = NULL;
12407
12408 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
12409 if (attr == NULL)
12410 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
12411
12412 if (attr == NULL || DW_STRING (attr) == NULL)
12413 return NULL;
12414
12415 /* Avoid demangling DW_STRING (attr) the second time on a second
12416 call for the same DIE. */
12417 if (!DW_STRING_IS_CANONICAL (attr))
12418 demangled = cplus_demangle (DW_STRING (attr), DMGL_TYPES);
12419
12420 if (demangled)
12421 {
12422 /* FIXME: we already did this for the partial symbol... */
12423 DW_STRING (attr)
12424 = obsavestring (demangled, strlen (demangled),
12425 &cu->objfile->objfile_obstack);
12426 DW_STRING_IS_CANONICAL (attr) = 1;
12427 xfree (demangled);
12428 }
12429 }
12430 break;
12431
12432 default:
12433 break;
12434 }
12435
12436 if (!DW_STRING_IS_CANONICAL (attr))
12437 {
12438 DW_STRING (attr)
12439 = dwarf2_canonicalize_name (DW_STRING (attr), cu,
12440 &cu->objfile->objfile_obstack);
12441 DW_STRING_IS_CANONICAL (attr) = 1;
12442 }
12443 return DW_STRING (attr);
12444 }
12445
12446 /* Return the die that this die in an extension of, or NULL if there
12447 is none. *EXT_CU is the CU containing DIE on input, and the CU
12448 containing the return value on output. */
12449
12450 static struct die_info *
12451 dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
12452 {
12453 struct attribute *attr;
12454
12455 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
12456 if (attr == NULL)
12457 return NULL;
12458
12459 return follow_die_ref (die, attr, ext_cu);
12460 }
12461
12462 /* Convert a DIE tag into its string name. */
12463
12464 static char *
12465 dwarf_tag_name (unsigned tag)
12466 {
12467 switch (tag)
12468 {
12469 case DW_TAG_padding:
12470 return "DW_TAG_padding";
12471 case DW_TAG_array_type:
12472 return "DW_TAG_array_type";
12473 case DW_TAG_class_type:
12474 return "DW_TAG_class_type";
12475 case DW_TAG_entry_point:
12476 return "DW_TAG_entry_point";
12477 case DW_TAG_enumeration_type:
12478 return "DW_TAG_enumeration_type";
12479 case DW_TAG_formal_parameter:
12480 return "DW_TAG_formal_parameter";
12481 case DW_TAG_imported_declaration:
12482 return "DW_TAG_imported_declaration";
12483 case DW_TAG_label:
12484 return "DW_TAG_label";
12485 case DW_TAG_lexical_block:
12486 return "DW_TAG_lexical_block";
12487 case DW_TAG_member:
12488 return "DW_TAG_member";
12489 case DW_TAG_pointer_type:
12490 return "DW_TAG_pointer_type";
12491 case DW_TAG_reference_type:
12492 return "DW_TAG_reference_type";
12493 case DW_TAG_compile_unit:
12494 return "DW_TAG_compile_unit";
12495 case DW_TAG_string_type:
12496 return "DW_TAG_string_type";
12497 case DW_TAG_structure_type:
12498 return "DW_TAG_structure_type";
12499 case DW_TAG_subroutine_type:
12500 return "DW_TAG_subroutine_type";
12501 case DW_TAG_typedef:
12502 return "DW_TAG_typedef";
12503 case DW_TAG_union_type:
12504 return "DW_TAG_union_type";
12505 case DW_TAG_unspecified_parameters:
12506 return "DW_TAG_unspecified_parameters";
12507 case DW_TAG_variant:
12508 return "DW_TAG_variant";
12509 case DW_TAG_common_block:
12510 return "DW_TAG_common_block";
12511 case DW_TAG_common_inclusion:
12512 return "DW_TAG_common_inclusion";
12513 case DW_TAG_inheritance:
12514 return "DW_TAG_inheritance";
12515 case DW_TAG_inlined_subroutine:
12516 return "DW_TAG_inlined_subroutine";
12517 case DW_TAG_module:
12518 return "DW_TAG_module";
12519 case DW_TAG_ptr_to_member_type:
12520 return "DW_TAG_ptr_to_member_type";
12521 case DW_TAG_set_type:
12522 return "DW_TAG_set_type";
12523 case DW_TAG_subrange_type:
12524 return "DW_TAG_subrange_type";
12525 case DW_TAG_with_stmt:
12526 return "DW_TAG_with_stmt";
12527 case DW_TAG_access_declaration:
12528 return "DW_TAG_access_declaration";
12529 case DW_TAG_base_type:
12530 return "DW_TAG_base_type";
12531 case DW_TAG_catch_block:
12532 return "DW_TAG_catch_block";
12533 case DW_TAG_const_type:
12534 return "DW_TAG_const_type";
12535 case DW_TAG_constant:
12536 return "DW_TAG_constant";
12537 case DW_TAG_enumerator:
12538 return "DW_TAG_enumerator";
12539 case DW_TAG_file_type:
12540 return "DW_TAG_file_type";
12541 case DW_TAG_friend:
12542 return "DW_TAG_friend";
12543 case DW_TAG_namelist:
12544 return "DW_TAG_namelist";
12545 case DW_TAG_namelist_item:
12546 return "DW_TAG_namelist_item";
12547 case DW_TAG_packed_type:
12548 return "DW_TAG_packed_type";
12549 case DW_TAG_subprogram:
12550 return "DW_TAG_subprogram";
12551 case DW_TAG_template_type_param:
12552 return "DW_TAG_template_type_param";
12553 case DW_TAG_template_value_param:
12554 return "DW_TAG_template_value_param";
12555 case DW_TAG_thrown_type:
12556 return "DW_TAG_thrown_type";
12557 case DW_TAG_try_block:
12558 return "DW_TAG_try_block";
12559 case DW_TAG_variant_part:
12560 return "DW_TAG_variant_part";
12561 case DW_TAG_variable:
12562 return "DW_TAG_variable";
12563 case DW_TAG_volatile_type:
12564 return "DW_TAG_volatile_type";
12565 case DW_TAG_dwarf_procedure:
12566 return "DW_TAG_dwarf_procedure";
12567 case DW_TAG_restrict_type:
12568 return "DW_TAG_restrict_type";
12569 case DW_TAG_interface_type:
12570 return "DW_TAG_interface_type";
12571 case DW_TAG_namespace:
12572 return "DW_TAG_namespace";
12573 case DW_TAG_imported_module:
12574 return "DW_TAG_imported_module";
12575 case DW_TAG_unspecified_type:
12576 return "DW_TAG_unspecified_type";
12577 case DW_TAG_partial_unit:
12578 return "DW_TAG_partial_unit";
12579 case DW_TAG_imported_unit:
12580 return "DW_TAG_imported_unit";
12581 case DW_TAG_condition:
12582 return "DW_TAG_condition";
12583 case DW_TAG_shared_type:
12584 return "DW_TAG_shared_type";
12585 case DW_TAG_type_unit:
12586 return "DW_TAG_type_unit";
12587 case DW_TAG_MIPS_loop:
12588 return "DW_TAG_MIPS_loop";
12589 case DW_TAG_HP_array_descriptor:
12590 return "DW_TAG_HP_array_descriptor";
12591 case DW_TAG_format_label:
12592 return "DW_TAG_format_label";
12593 case DW_TAG_function_template:
12594 return "DW_TAG_function_template";
12595 case DW_TAG_class_template:
12596 return "DW_TAG_class_template";
12597 case DW_TAG_GNU_BINCL:
12598 return "DW_TAG_GNU_BINCL";
12599 case DW_TAG_GNU_EINCL:
12600 return "DW_TAG_GNU_EINCL";
12601 case DW_TAG_upc_shared_type:
12602 return "DW_TAG_upc_shared_type";
12603 case DW_TAG_upc_strict_type:
12604 return "DW_TAG_upc_strict_type";
12605 case DW_TAG_upc_relaxed_type:
12606 return "DW_TAG_upc_relaxed_type";
12607 case DW_TAG_PGI_kanji_type:
12608 return "DW_TAG_PGI_kanji_type";
12609 case DW_TAG_PGI_interface_block:
12610 return "DW_TAG_PGI_interface_block";
12611 default:
12612 return "DW_TAG_<unknown>";
12613 }
12614 }
12615
12616 /* Convert a DWARF attribute code into its string name. */
12617
12618 static char *
12619 dwarf_attr_name (unsigned attr)
12620 {
12621 switch (attr)
12622 {
12623 case DW_AT_sibling:
12624 return "DW_AT_sibling";
12625 case DW_AT_location:
12626 return "DW_AT_location";
12627 case DW_AT_name:
12628 return "DW_AT_name";
12629 case DW_AT_ordering:
12630 return "DW_AT_ordering";
12631 case DW_AT_subscr_data:
12632 return "DW_AT_subscr_data";
12633 case DW_AT_byte_size:
12634 return "DW_AT_byte_size";
12635 case DW_AT_bit_offset:
12636 return "DW_AT_bit_offset";
12637 case DW_AT_bit_size:
12638 return "DW_AT_bit_size";
12639 case DW_AT_element_list:
12640 return "DW_AT_element_list";
12641 case DW_AT_stmt_list:
12642 return "DW_AT_stmt_list";
12643 case DW_AT_low_pc:
12644 return "DW_AT_low_pc";
12645 case DW_AT_high_pc:
12646 return "DW_AT_high_pc";
12647 case DW_AT_language:
12648 return "DW_AT_language";
12649 case DW_AT_member:
12650 return "DW_AT_member";
12651 case DW_AT_discr:
12652 return "DW_AT_discr";
12653 case DW_AT_discr_value:
12654 return "DW_AT_discr_value";
12655 case DW_AT_visibility:
12656 return "DW_AT_visibility";
12657 case DW_AT_import:
12658 return "DW_AT_import";
12659 case DW_AT_string_length:
12660 return "DW_AT_string_length";
12661 case DW_AT_common_reference:
12662 return "DW_AT_common_reference";
12663 case DW_AT_comp_dir:
12664 return "DW_AT_comp_dir";
12665 case DW_AT_const_value:
12666 return "DW_AT_const_value";
12667 case DW_AT_containing_type:
12668 return "DW_AT_containing_type";
12669 case DW_AT_default_value:
12670 return "DW_AT_default_value";
12671 case DW_AT_inline:
12672 return "DW_AT_inline";
12673 case DW_AT_is_optional:
12674 return "DW_AT_is_optional";
12675 case DW_AT_lower_bound:
12676 return "DW_AT_lower_bound";
12677 case DW_AT_producer:
12678 return "DW_AT_producer";
12679 case DW_AT_prototyped:
12680 return "DW_AT_prototyped";
12681 case DW_AT_return_addr:
12682 return "DW_AT_return_addr";
12683 case DW_AT_start_scope:
12684 return "DW_AT_start_scope";
12685 case DW_AT_bit_stride:
12686 return "DW_AT_bit_stride";
12687 case DW_AT_upper_bound:
12688 return "DW_AT_upper_bound";
12689 case DW_AT_abstract_origin:
12690 return "DW_AT_abstract_origin";
12691 case DW_AT_accessibility:
12692 return "DW_AT_accessibility";
12693 case DW_AT_address_class:
12694 return "DW_AT_address_class";
12695 case DW_AT_artificial:
12696 return "DW_AT_artificial";
12697 case DW_AT_base_types:
12698 return "DW_AT_base_types";
12699 case DW_AT_calling_convention:
12700 return "DW_AT_calling_convention";
12701 case DW_AT_count:
12702 return "DW_AT_count";
12703 case DW_AT_data_member_location:
12704 return "DW_AT_data_member_location";
12705 case DW_AT_decl_column:
12706 return "DW_AT_decl_column";
12707 case DW_AT_decl_file:
12708 return "DW_AT_decl_file";
12709 case DW_AT_decl_line:
12710 return "DW_AT_decl_line";
12711 case DW_AT_declaration:
12712 return "DW_AT_declaration";
12713 case DW_AT_discr_list:
12714 return "DW_AT_discr_list";
12715 case DW_AT_encoding:
12716 return "DW_AT_encoding";
12717 case DW_AT_external:
12718 return "DW_AT_external";
12719 case DW_AT_frame_base:
12720 return "DW_AT_frame_base";
12721 case DW_AT_friend:
12722 return "DW_AT_friend";
12723 case DW_AT_identifier_case:
12724 return "DW_AT_identifier_case";
12725 case DW_AT_macro_info:
12726 return "DW_AT_macro_info";
12727 case DW_AT_namelist_items:
12728 return "DW_AT_namelist_items";
12729 case DW_AT_priority:
12730 return "DW_AT_priority";
12731 case DW_AT_segment:
12732 return "DW_AT_segment";
12733 case DW_AT_specification:
12734 return "DW_AT_specification";
12735 case DW_AT_static_link:
12736 return "DW_AT_static_link";
12737 case DW_AT_type:
12738 return "DW_AT_type";
12739 case DW_AT_use_location:
12740 return "DW_AT_use_location";
12741 case DW_AT_variable_parameter:
12742 return "DW_AT_variable_parameter";
12743 case DW_AT_virtuality:
12744 return "DW_AT_virtuality";
12745 case DW_AT_vtable_elem_location:
12746 return "DW_AT_vtable_elem_location";
12747 /* DWARF 3 values. */
12748 case DW_AT_allocated:
12749 return "DW_AT_allocated";
12750 case DW_AT_associated:
12751 return "DW_AT_associated";
12752 case DW_AT_data_location:
12753 return "DW_AT_data_location";
12754 case DW_AT_byte_stride:
12755 return "DW_AT_byte_stride";
12756 case DW_AT_entry_pc:
12757 return "DW_AT_entry_pc";
12758 case DW_AT_use_UTF8:
12759 return "DW_AT_use_UTF8";
12760 case DW_AT_extension:
12761 return "DW_AT_extension";
12762 case DW_AT_ranges:
12763 return "DW_AT_ranges";
12764 case DW_AT_trampoline:
12765 return "DW_AT_trampoline";
12766 case DW_AT_call_column:
12767 return "DW_AT_call_column";
12768 case DW_AT_call_file:
12769 return "DW_AT_call_file";
12770 case DW_AT_call_line:
12771 return "DW_AT_call_line";
12772 case DW_AT_description:
12773 return "DW_AT_description";
12774 case DW_AT_binary_scale:
12775 return "DW_AT_binary_scale";
12776 case DW_AT_decimal_scale:
12777 return "DW_AT_decimal_scale";
12778 case DW_AT_small:
12779 return "DW_AT_small";
12780 case DW_AT_decimal_sign:
12781 return "DW_AT_decimal_sign";
12782 case DW_AT_digit_count:
12783 return "DW_AT_digit_count";
12784 case DW_AT_picture_string:
12785 return "DW_AT_picture_string";
12786 case DW_AT_mutable:
12787 return "DW_AT_mutable";
12788 case DW_AT_threads_scaled:
12789 return "DW_AT_threads_scaled";
12790 case DW_AT_explicit:
12791 return "DW_AT_explicit";
12792 case DW_AT_object_pointer:
12793 return "DW_AT_object_pointer";
12794 case DW_AT_endianity:
12795 return "DW_AT_endianity";
12796 case DW_AT_elemental:
12797 return "DW_AT_elemental";
12798 case DW_AT_pure:
12799 return "DW_AT_pure";
12800 case DW_AT_recursive:
12801 return "DW_AT_recursive";
12802 /* DWARF 4 values. */
12803 case DW_AT_signature:
12804 return "DW_AT_signature";
12805 case DW_AT_linkage_name:
12806 return "DW_AT_linkage_name";
12807 /* SGI/MIPS extensions. */
12808 #ifdef MIPS /* collides with DW_AT_HP_block_index */
12809 case DW_AT_MIPS_fde:
12810 return "DW_AT_MIPS_fde";
12811 #endif
12812 case DW_AT_MIPS_loop_begin:
12813 return "DW_AT_MIPS_loop_begin";
12814 case DW_AT_MIPS_tail_loop_begin:
12815 return "DW_AT_MIPS_tail_loop_begin";
12816 case DW_AT_MIPS_epilog_begin:
12817 return "DW_AT_MIPS_epilog_begin";
12818 case DW_AT_MIPS_loop_unroll_factor:
12819 return "DW_AT_MIPS_loop_unroll_factor";
12820 case DW_AT_MIPS_software_pipeline_depth:
12821 return "DW_AT_MIPS_software_pipeline_depth";
12822 case DW_AT_MIPS_linkage_name:
12823 return "DW_AT_MIPS_linkage_name";
12824 case DW_AT_MIPS_stride:
12825 return "DW_AT_MIPS_stride";
12826 case DW_AT_MIPS_abstract_name:
12827 return "DW_AT_MIPS_abstract_name";
12828 case DW_AT_MIPS_clone_origin:
12829 return "DW_AT_MIPS_clone_origin";
12830 case DW_AT_MIPS_has_inlines:
12831 return "DW_AT_MIPS_has_inlines";
12832 /* HP extensions. */
12833 #ifndef MIPS /* collides with DW_AT_MIPS_fde */
12834 case DW_AT_HP_block_index:
12835 return "DW_AT_HP_block_index";
12836 #endif
12837 case DW_AT_HP_unmodifiable:
12838 return "DW_AT_HP_unmodifiable";
12839 case DW_AT_HP_actuals_stmt_list:
12840 return "DW_AT_HP_actuals_stmt_list";
12841 case DW_AT_HP_proc_per_section:
12842 return "DW_AT_HP_proc_per_section";
12843 case DW_AT_HP_raw_data_ptr:
12844 return "DW_AT_HP_raw_data_ptr";
12845 case DW_AT_HP_pass_by_reference:
12846 return "DW_AT_HP_pass_by_reference";
12847 case DW_AT_HP_opt_level:
12848 return "DW_AT_HP_opt_level";
12849 case DW_AT_HP_prof_version_id:
12850 return "DW_AT_HP_prof_version_id";
12851 case DW_AT_HP_opt_flags:
12852 return "DW_AT_HP_opt_flags";
12853 case DW_AT_HP_cold_region_low_pc:
12854 return "DW_AT_HP_cold_region_low_pc";
12855 case DW_AT_HP_cold_region_high_pc:
12856 return "DW_AT_HP_cold_region_high_pc";
12857 case DW_AT_HP_all_variables_modifiable:
12858 return "DW_AT_HP_all_variables_modifiable";
12859 case DW_AT_HP_linkage_name:
12860 return "DW_AT_HP_linkage_name";
12861 case DW_AT_HP_prof_flags:
12862 return "DW_AT_HP_prof_flags";
12863 /* GNU extensions. */
12864 case DW_AT_sf_names:
12865 return "DW_AT_sf_names";
12866 case DW_AT_src_info:
12867 return "DW_AT_src_info";
12868 case DW_AT_mac_info:
12869 return "DW_AT_mac_info";
12870 case DW_AT_src_coords:
12871 return "DW_AT_src_coords";
12872 case DW_AT_body_begin:
12873 return "DW_AT_body_begin";
12874 case DW_AT_body_end:
12875 return "DW_AT_body_end";
12876 case DW_AT_GNU_vector:
12877 return "DW_AT_GNU_vector";
12878 case DW_AT_GNU_odr_signature:
12879 return "DW_AT_GNU_odr_signature";
12880 /* VMS extensions. */
12881 case DW_AT_VMS_rtnbeg_pd_address:
12882 return "DW_AT_VMS_rtnbeg_pd_address";
12883 /* UPC extension. */
12884 case DW_AT_upc_threads_scaled:
12885 return "DW_AT_upc_threads_scaled";
12886 /* PGI (STMicroelectronics) extensions. */
12887 case DW_AT_PGI_lbase:
12888 return "DW_AT_PGI_lbase";
12889 case DW_AT_PGI_soffset:
12890 return "DW_AT_PGI_soffset";
12891 case DW_AT_PGI_lstride:
12892 return "DW_AT_PGI_lstride";
12893 default:
12894 return "DW_AT_<unknown>";
12895 }
12896 }
12897
12898 /* Convert a DWARF value form code into its string name. */
12899
12900 static char *
12901 dwarf_form_name (unsigned form)
12902 {
12903 switch (form)
12904 {
12905 case DW_FORM_addr:
12906 return "DW_FORM_addr";
12907 case DW_FORM_block2:
12908 return "DW_FORM_block2";
12909 case DW_FORM_block4:
12910 return "DW_FORM_block4";
12911 case DW_FORM_data2:
12912 return "DW_FORM_data2";
12913 case DW_FORM_data4:
12914 return "DW_FORM_data4";
12915 case DW_FORM_data8:
12916 return "DW_FORM_data8";
12917 case DW_FORM_string:
12918 return "DW_FORM_string";
12919 case DW_FORM_block:
12920 return "DW_FORM_block";
12921 case DW_FORM_block1:
12922 return "DW_FORM_block1";
12923 case DW_FORM_data1:
12924 return "DW_FORM_data1";
12925 case DW_FORM_flag:
12926 return "DW_FORM_flag";
12927 case DW_FORM_sdata:
12928 return "DW_FORM_sdata";
12929 case DW_FORM_strp:
12930 return "DW_FORM_strp";
12931 case DW_FORM_udata:
12932 return "DW_FORM_udata";
12933 case DW_FORM_ref_addr:
12934 return "DW_FORM_ref_addr";
12935 case DW_FORM_ref1:
12936 return "DW_FORM_ref1";
12937 case DW_FORM_ref2:
12938 return "DW_FORM_ref2";
12939 case DW_FORM_ref4:
12940 return "DW_FORM_ref4";
12941 case DW_FORM_ref8:
12942 return "DW_FORM_ref8";
12943 case DW_FORM_ref_udata:
12944 return "DW_FORM_ref_udata";
12945 case DW_FORM_indirect:
12946 return "DW_FORM_indirect";
12947 case DW_FORM_sec_offset:
12948 return "DW_FORM_sec_offset";
12949 case DW_FORM_exprloc:
12950 return "DW_FORM_exprloc";
12951 case DW_FORM_flag_present:
12952 return "DW_FORM_flag_present";
12953 case DW_FORM_ref_sig8:
12954 return "DW_FORM_ref_sig8";
12955 default:
12956 return "DW_FORM_<unknown>";
12957 }
12958 }
12959
12960 /* Convert a DWARF stack opcode into its string name. */
12961
12962 const char *
12963 dwarf_stack_op_name (unsigned op)
12964 {
12965 switch (op)
12966 {
12967 case DW_OP_addr:
12968 return "DW_OP_addr";
12969 case DW_OP_deref:
12970 return "DW_OP_deref";
12971 case DW_OP_const1u:
12972 return "DW_OP_const1u";
12973 case DW_OP_const1s:
12974 return "DW_OP_const1s";
12975 case DW_OP_const2u:
12976 return "DW_OP_const2u";
12977 case DW_OP_const2s:
12978 return "DW_OP_const2s";
12979 case DW_OP_const4u:
12980 return "DW_OP_const4u";
12981 case DW_OP_const4s:
12982 return "DW_OP_const4s";
12983 case DW_OP_const8u:
12984 return "DW_OP_const8u";
12985 case DW_OP_const8s:
12986 return "DW_OP_const8s";
12987 case DW_OP_constu:
12988 return "DW_OP_constu";
12989 case DW_OP_consts:
12990 return "DW_OP_consts";
12991 case DW_OP_dup:
12992 return "DW_OP_dup";
12993 case DW_OP_drop:
12994 return "DW_OP_drop";
12995 case DW_OP_over:
12996 return "DW_OP_over";
12997 case DW_OP_pick:
12998 return "DW_OP_pick";
12999 case DW_OP_swap:
13000 return "DW_OP_swap";
13001 case DW_OP_rot:
13002 return "DW_OP_rot";
13003 case DW_OP_xderef:
13004 return "DW_OP_xderef";
13005 case DW_OP_abs:
13006 return "DW_OP_abs";
13007 case DW_OP_and:
13008 return "DW_OP_and";
13009 case DW_OP_div:
13010 return "DW_OP_div";
13011 case DW_OP_minus:
13012 return "DW_OP_minus";
13013 case DW_OP_mod:
13014 return "DW_OP_mod";
13015 case DW_OP_mul:
13016 return "DW_OP_mul";
13017 case DW_OP_neg:
13018 return "DW_OP_neg";
13019 case DW_OP_not:
13020 return "DW_OP_not";
13021 case DW_OP_or:
13022 return "DW_OP_or";
13023 case DW_OP_plus:
13024 return "DW_OP_plus";
13025 case DW_OP_plus_uconst:
13026 return "DW_OP_plus_uconst";
13027 case DW_OP_shl:
13028 return "DW_OP_shl";
13029 case DW_OP_shr:
13030 return "DW_OP_shr";
13031 case DW_OP_shra:
13032 return "DW_OP_shra";
13033 case DW_OP_xor:
13034 return "DW_OP_xor";
13035 case DW_OP_bra:
13036 return "DW_OP_bra";
13037 case DW_OP_eq:
13038 return "DW_OP_eq";
13039 case DW_OP_ge:
13040 return "DW_OP_ge";
13041 case DW_OP_gt:
13042 return "DW_OP_gt";
13043 case DW_OP_le:
13044 return "DW_OP_le";
13045 case DW_OP_lt:
13046 return "DW_OP_lt";
13047 case DW_OP_ne:
13048 return "DW_OP_ne";
13049 case DW_OP_skip:
13050 return "DW_OP_skip";
13051 case DW_OP_lit0:
13052 return "DW_OP_lit0";
13053 case DW_OP_lit1:
13054 return "DW_OP_lit1";
13055 case DW_OP_lit2:
13056 return "DW_OP_lit2";
13057 case DW_OP_lit3:
13058 return "DW_OP_lit3";
13059 case DW_OP_lit4:
13060 return "DW_OP_lit4";
13061 case DW_OP_lit5:
13062 return "DW_OP_lit5";
13063 case DW_OP_lit6:
13064 return "DW_OP_lit6";
13065 case DW_OP_lit7:
13066 return "DW_OP_lit7";
13067 case DW_OP_lit8:
13068 return "DW_OP_lit8";
13069 case DW_OP_lit9:
13070 return "DW_OP_lit9";
13071 case DW_OP_lit10:
13072 return "DW_OP_lit10";
13073 case DW_OP_lit11:
13074 return "DW_OP_lit11";
13075 case DW_OP_lit12:
13076 return "DW_OP_lit12";
13077 case DW_OP_lit13:
13078 return "DW_OP_lit13";
13079 case DW_OP_lit14:
13080 return "DW_OP_lit14";
13081 case DW_OP_lit15:
13082 return "DW_OP_lit15";
13083 case DW_OP_lit16:
13084 return "DW_OP_lit16";
13085 case DW_OP_lit17:
13086 return "DW_OP_lit17";
13087 case DW_OP_lit18:
13088 return "DW_OP_lit18";
13089 case DW_OP_lit19:
13090 return "DW_OP_lit19";
13091 case DW_OP_lit20:
13092 return "DW_OP_lit20";
13093 case DW_OP_lit21:
13094 return "DW_OP_lit21";
13095 case DW_OP_lit22:
13096 return "DW_OP_lit22";
13097 case DW_OP_lit23:
13098 return "DW_OP_lit23";
13099 case DW_OP_lit24:
13100 return "DW_OP_lit24";
13101 case DW_OP_lit25:
13102 return "DW_OP_lit25";
13103 case DW_OP_lit26:
13104 return "DW_OP_lit26";
13105 case DW_OP_lit27:
13106 return "DW_OP_lit27";
13107 case DW_OP_lit28:
13108 return "DW_OP_lit28";
13109 case DW_OP_lit29:
13110 return "DW_OP_lit29";
13111 case DW_OP_lit30:
13112 return "DW_OP_lit30";
13113 case DW_OP_lit31:
13114 return "DW_OP_lit31";
13115 case DW_OP_reg0:
13116 return "DW_OP_reg0";
13117 case DW_OP_reg1:
13118 return "DW_OP_reg1";
13119 case DW_OP_reg2:
13120 return "DW_OP_reg2";
13121 case DW_OP_reg3:
13122 return "DW_OP_reg3";
13123 case DW_OP_reg4:
13124 return "DW_OP_reg4";
13125 case DW_OP_reg5:
13126 return "DW_OP_reg5";
13127 case DW_OP_reg6:
13128 return "DW_OP_reg6";
13129 case DW_OP_reg7:
13130 return "DW_OP_reg7";
13131 case DW_OP_reg8:
13132 return "DW_OP_reg8";
13133 case DW_OP_reg9:
13134 return "DW_OP_reg9";
13135 case DW_OP_reg10:
13136 return "DW_OP_reg10";
13137 case DW_OP_reg11:
13138 return "DW_OP_reg11";
13139 case DW_OP_reg12:
13140 return "DW_OP_reg12";
13141 case DW_OP_reg13:
13142 return "DW_OP_reg13";
13143 case DW_OP_reg14:
13144 return "DW_OP_reg14";
13145 case DW_OP_reg15:
13146 return "DW_OP_reg15";
13147 case DW_OP_reg16:
13148 return "DW_OP_reg16";
13149 case DW_OP_reg17:
13150 return "DW_OP_reg17";
13151 case DW_OP_reg18:
13152 return "DW_OP_reg18";
13153 case DW_OP_reg19:
13154 return "DW_OP_reg19";
13155 case DW_OP_reg20:
13156 return "DW_OP_reg20";
13157 case DW_OP_reg21:
13158 return "DW_OP_reg21";
13159 case DW_OP_reg22:
13160 return "DW_OP_reg22";
13161 case DW_OP_reg23:
13162 return "DW_OP_reg23";
13163 case DW_OP_reg24:
13164 return "DW_OP_reg24";
13165 case DW_OP_reg25:
13166 return "DW_OP_reg25";
13167 case DW_OP_reg26:
13168 return "DW_OP_reg26";
13169 case DW_OP_reg27:
13170 return "DW_OP_reg27";
13171 case DW_OP_reg28:
13172 return "DW_OP_reg28";
13173 case DW_OP_reg29:
13174 return "DW_OP_reg29";
13175 case DW_OP_reg30:
13176 return "DW_OP_reg30";
13177 case DW_OP_reg31:
13178 return "DW_OP_reg31";
13179 case DW_OP_breg0:
13180 return "DW_OP_breg0";
13181 case DW_OP_breg1:
13182 return "DW_OP_breg1";
13183 case DW_OP_breg2:
13184 return "DW_OP_breg2";
13185 case DW_OP_breg3:
13186 return "DW_OP_breg3";
13187 case DW_OP_breg4:
13188 return "DW_OP_breg4";
13189 case DW_OP_breg5:
13190 return "DW_OP_breg5";
13191 case DW_OP_breg6:
13192 return "DW_OP_breg6";
13193 case DW_OP_breg7:
13194 return "DW_OP_breg7";
13195 case DW_OP_breg8:
13196 return "DW_OP_breg8";
13197 case DW_OP_breg9:
13198 return "DW_OP_breg9";
13199 case DW_OP_breg10:
13200 return "DW_OP_breg10";
13201 case DW_OP_breg11:
13202 return "DW_OP_breg11";
13203 case DW_OP_breg12:
13204 return "DW_OP_breg12";
13205 case DW_OP_breg13:
13206 return "DW_OP_breg13";
13207 case DW_OP_breg14:
13208 return "DW_OP_breg14";
13209 case DW_OP_breg15:
13210 return "DW_OP_breg15";
13211 case DW_OP_breg16:
13212 return "DW_OP_breg16";
13213 case DW_OP_breg17:
13214 return "DW_OP_breg17";
13215 case DW_OP_breg18:
13216 return "DW_OP_breg18";
13217 case DW_OP_breg19:
13218 return "DW_OP_breg19";
13219 case DW_OP_breg20:
13220 return "DW_OP_breg20";
13221 case DW_OP_breg21:
13222 return "DW_OP_breg21";
13223 case DW_OP_breg22:
13224 return "DW_OP_breg22";
13225 case DW_OP_breg23:
13226 return "DW_OP_breg23";
13227 case DW_OP_breg24:
13228 return "DW_OP_breg24";
13229 case DW_OP_breg25:
13230 return "DW_OP_breg25";
13231 case DW_OP_breg26:
13232 return "DW_OP_breg26";
13233 case DW_OP_breg27:
13234 return "DW_OP_breg27";
13235 case DW_OP_breg28:
13236 return "DW_OP_breg28";
13237 case DW_OP_breg29:
13238 return "DW_OP_breg29";
13239 case DW_OP_breg30:
13240 return "DW_OP_breg30";
13241 case DW_OP_breg31:
13242 return "DW_OP_breg31";
13243 case DW_OP_regx:
13244 return "DW_OP_regx";
13245 case DW_OP_fbreg:
13246 return "DW_OP_fbreg";
13247 case DW_OP_bregx:
13248 return "DW_OP_bregx";
13249 case DW_OP_piece:
13250 return "DW_OP_piece";
13251 case DW_OP_deref_size:
13252 return "DW_OP_deref_size";
13253 case DW_OP_xderef_size:
13254 return "DW_OP_xderef_size";
13255 case DW_OP_nop:
13256 return "DW_OP_nop";
13257 /* DWARF 3 extensions. */
13258 case DW_OP_push_object_address:
13259 return "DW_OP_push_object_address";
13260 case DW_OP_call2:
13261 return "DW_OP_call2";
13262 case DW_OP_call4:
13263 return "DW_OP_call4";
13264 case DW_OP_call_ref:
13265 return "DW_OP_call_ref";
13266 case DW_OP_form_tls_address:
13267 return "DW_OP_form_tls_address";
13268 case DW_OP_call_frame_cfa:
13269 return "DW_OP_call_frame_cfa";
13270 case DW_OP_bit_piece:
13271 return "DW_OP_bit_piece";
13272 /* DWARF 4 extensions. */
13273 case DW_OP_implicit_value:
13274 return "DW_OP_implicit_value";
13275 case DW_OP_stack_value:
13276 return "DW_OP_stack_value";
13277 /* GNU extensions. */
13278 case DW_OP_GNU_push_tls_address:
13279 return "DW_OP_GNU_push_tls_address";
13280 case DW_OP_GNU_uninit:
13281 return "DW_OP_GNU_uninit";
13282 case DW_OP_GNU_implicit_pointer:
13283 return "DW_OP_GNU_implicit_pointer";
13284 case DW_OP_GNU_entry_value:
13285 return "DW_OP_GNU_entry_value";
13286 case DW_OP_GNU_const_type:
13287 return "DW_OP_GNU_const_type";
13288 case DW_OP_GNU_regval_type:
13289 return "DW_OP_GNU_regval_type";
13290 case DW_OP_GNU_deref_type:
13291 return "DW_OP_GNU_deref_type";
13292 case DW_OP_GNU_convert:
13293 return "DW_OP_GNU_convert";
13294 case DW_OP_GNU_reinterpret:
13295 return "DW_OP_GNU_reinterpret";
13296 default:
13297 return NULL;
13298 }
13299 }
13300
13301 static char *
13302 dwarf_bool_name (unsigned mybool)
13303 {
13304 if (mybool)
13305 return "TRUE";
13306 else
13307 return "FALSE";
13308 }
13309
13310 /* Convert a DWARF type code into its string name. */
13311
13312 static char *
13313 dwarf_type_encoding_name (unsigned enc)
13314 {
13315 switch (enc)
13316 {
13317 case DW_ATE_void:
13318 return "DW_ATE_void";
13319 case DW_ATE_address:
13320 return "DW_ATE_address";
13321 case DW_ATE_boolean:
13322 return "DW_ATE_boolean";
13323 case DW_ATE_complex_float:
13324 return "DW_ATE_complex_float";
13325 case DW_ATE_float:
13326 return "DW_ATE_float";
13327 case DW_ATE_signed:
13328 return "DW_ATE_signed";
13329 case DW_ATE_signed_char:
13330 return "DW_ATE_signed_char";
13331 case DW_ATE_unsigned:
13332 return "DW_ATE_unsigned";
13333 case DW_ATE_unsigned_char:
13334 return "DW_ATE_unsigned_char";
13335 /* DWARF 3. */
13336 case DW_ATE_imaginary_float:
13337 return "DW_ATE_imaginary_float";
13338 case DW_ATE_packed_decimal:
13339 return "DW_ATE_packed_decimal";
13340 case DW_ATE_numeric_string:
13341 return "DW_ATE_numeric_string";
13342 case DW_ATE_edited:
13343 return "DW_ATE_edited";
13344 case DW_ATE_signed_fixed:
13345 return "DW_ATE_signed_fixed";
13346 case DW_ATE_unsigned_fixed:
13347 return "DW_ATE_unsigned_fixed";
13348 case DW_ATE_decimal_float:
13349 return "DW_ATE_decimal_float";
13350 /* DWARF 4. */
13351 case DW_ATE_UTF:
13352 return "DW_ATE_UTF";
13353 /* HP extensions. */
13354 case DW_ATE_HP_float80:
13355 return "DW_ATE_HP_float80";
13356 case DW_ATE_HP_complex_float80:
13357 return "DW_ATE_HP_complex_float80";
13358 case DW_ATE_HP_float128:
13359 return "DW_ATE_HP_float128";
13360 case DW_ATE_HP_complex_float128:
13361 return "DW_ATE_HP_complex_float128";
13362 case DW_ATE_HP_floathpintel:
13363 return "DW_ATE_HP_floathpintel";
13364 case DW_ATE_HP_imaginary_float80:
13365 return "DW_ATE_HP_imaginary_float80";
13366 case DW_ATE_HP_imaginary_float128:
13367 return "DW_ATE_HP_imaginary_float128";
13368 default:
13369 return "DW_ATE_<unknown>";
13370 }
13371 }
13372
13373 /* Convert a DWARF call frame info operation to its string name. */
13374
13375 #if 0
13376 static char *
13377 dwarf_cfi_name (unsigned cfi_opc)
13378 {
13379 switch (cfi_opc)
13380 {
13381 case DW_CFA_advance_loc:
13382 return "DW_CFA_advance_loc";
13383 case DW_CFA_offset:
13384 return "DW_CFA_offset";
13385 case DW_CFA_restore:
13386 return "DW_CFA_restore";
13387 case DW_CFA_nop:
13388 return "DW_CFA_nop";
13389 case DW_CFA_set_loc:
13390 return "DW_CFA_set_loc";
13391 case DW_CFA_advance_loc1:
13392 return "DW_CFA_advance_loc1";
13393 case DW_CFA_advance_loc2:
13394 return "DW_CFA_advance_loc2";
13395 case DW_CFA_advance_loc4:
13396 return "DW_CFA_advance_loc4";
13397 case DW_CFA_offset_extended:
13398 return "DW_CFA_offset_extended";
13399 case DW_CFA_restore_extended:
13400 return "DW_CFA_restore_extended";
13401 case DW_CFA_undefined:
13402 return "DW_CFA_undefined";
13403 case DW_CFA_same_value:
13404 return "DW_CFA_same_value";
13405 case DW_CFA_register:
13406 return "DW_CFA_register";
13407 case DW_CFA_remember_state:
13408 return "DW_CFA_remember_state";
13409 case DW_CFA_restore_state:
13410 return "DW_CFA_restore_state";
13411 case DW_CFA_def_cfa:
13412 return "DW_CFA_def_cfa";
13413 case DW_CFA_def_cfa_register:
13414 return "DW_CFA_def_cfa_register";
13415 case DW_CFA_def_cfa_offset:
13416 return "DW_CFA_def_cfa_offset";
13417 /* DWARF 3. */
13418 case DW_CFA_def_cfa_expression:
13419 return "DW_CFA_def_cfa_expression";
13420 case DW_CFA_expression:
13421 return "DW_CFA_expression";
13422 case DW_CFA_offset_extended_sf:
13423 return "DW_CFA_offset_extended_sf";
13424 case DW_CFA_def_cfa_sf:
13425 return "DW_CFA_def_cfa_sf";
13426 case DW_CFA_def_cfa_offset_sf:
13427 return "DW_CFA_def_cfa_offset_sf";
13428 case DW_CFA_val_offset:
13429 return "DW_CFA_val_offset";
13430 case DW_CFA_val_offset_sf:
13431 return "DW_CFA_val_offset_sf";
13432 case DW_CFA_val_expression:
13433 return "DW_CFA_val_expression";
13434 /* SGI/MIPS specific. */
13435 case DW_CFA_MIPS_advance_loc8:
13436 return "DW_CFA_MIPS_advance_loc8";
13437 /* GNU extensions. */
13438 case DW_CFA_GNU_window_save:
13439 return "DW_CFA_GNU_window_save";
13440 case DW_CFA_GNU_args_size:
13441 return "DW_CFA_GNU_args_size";
13442 case DW_CFA_GNU_negative_offset_extended:
13443 return "DW_CFA_GNU_negative_offset_extended";
13444 default:
13445 return "DW_CFA_<unknown>";
13446 }
13447 }
13448 #endif
13449
13450 static void
13451 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
13452 {
13453 unsigned int i;
13454
13455 print_spaces (indent, f);
13456 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset 0x%x)\n",
13457 dwarf_tag_name (die->tag), die->abbrev, die->offset);
13458
13459 if (die->parent != NULL)
13460 {
13461 print_spaces (indent, f);
13462 fprintf_unfiltered (f, " parent at offset: 0x%x\n",
13463 die->parent->offset);
13464 }
13465
13466 print_spaces (indent, f);
13467 fprintf_unfiltered (f, " has children: %s\n",
13468 dwarf_bool_name (die->child != NULL));
13469
13470 print_spaces (indent, f);
13471 fprintf_unfiltered (f, " attributes:\n");
13472
13473 for (i = 0; i < die->num_attrs; ++i)
13474 {
13475 print_spaces (indent, f);
13476 fprintf_unfiltered (f, " %s (%s) ",
13477 dwarf_attr_name (die->attrs[i].name),
13478 dwarf_form_name (die->attrs[i].form));
13479
13480 switch (die->attrs[i].form)
13481 {
13482 case DW_FORM_ref_addr:
13483 case DW_FORM_addr:
13484 fprintf_unfiltered (f, "address: ");
13485 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
13486 break;
13487 case DW_FORM_block2:
13488 case DW_FORM_block4:
13489 case DW_FORM_block:
13490 case DW_FORM_block1:
13491 fprintf_unfiltered (f, "block: size %d",
13492 DW_BLOCK (&die->attrs[i])->size);
13493 break;
13494 case DW_FORM_exprloc:
13495 fprintf_unfiltered (f, "expression: size %u",
13496 DW_BLOCK (&die->attrs[i])->size);
13497 break;
13498 case DW_FORM_ref1:
13499 case DW_FORM_ref2:
13500 case DW_FORM_ref4:
13501 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
13502 (long) (DW_ADDR (&die->attrs[i])));
13503 break;
13504 case DW_FORM_data1:
13505 case DW_FORM_data2:
13506 case DW_FORM_data4:
13507 case DW_FORM_data8:
13508 case DW_FORM_udata:
13509 case DW_FORM_sdata:
13510 fprintf_unfiltered (f, "constant: %s",
13511 pulongest (DW_UNSND (&die->attrs[i])));
13512 break;
13513 case DW_FORM_sec_offset:
13514 fprintf_unfiltered (f, "section offset: %s",
13515 pulongest (DW_UNSND (&die->attrs[i])));
13516 break;
13517 case DW_FORM_ref_sig8:
13518 if (DW_SIGNATURED_TYPE (&die->attrs[i]) != NULL)
13519 fprintf_unfiltered (f, "signatured type, offset: 0x%x",
13520 DW_SIGNATURED_TYPE (&die->attrs[i])->per_cu.offset);
13521 else
13522 fprintf_unfiltered (f, "signatured type, offset: unknown");
13523 break;
13524 case DW_FORM_string:
13525 case DW_FORM_strp:
13526 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
13527 DW_STRING (&die->attrs[i])
13528 ? DW_STRING (&die->attrs[i]) : "",
13529 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
13530 break;
13531 case DW_FORM_flag:
13532 if (DW_UNSND (&die->attrs[i]))
13533 fprintf_unfiltered (f, "flag: TRUE");
13534 else
13535 fprintf_unfiltered (f, "flag: FALSE");
13536 break;
13537 case DW_FORM_flag_present:
13538 fprintf_unfiltered (f, "flag: TRUE");
13539 break;
13540 case DW_FORM_indirect:
13541 /* The reader will have reduced the indirect form to
13542 the "base form" so this form should not occur. */
13543 fprintf_unfiltered (f,
13544 "unexpected attribute form: DW_FORM_indirect");
13545 break;
13546 default:
13547 fprintf_unfiltered (f, "unsupported attribute form: %d.",
13548 die->attrs[i].form);
13549 break;
13550 }
13551 fprintf_unfiltered (f, "\n");
13552 }
13553 }
13554
13555 static void
13556 dump_die_for_error (struct die_info *die)
13557 {
13558 dump_die_shallow (gdb_stderr, 0, die);
13559 }
13560
13561 static void
13562 dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
13563 {
13564 int indent = level * 4;
13565
13566 gdb_assert (die != NULL);
13567
13568 if (level >= max_level)
13569 return;
13570
13571 dump_die_shallow (f, indent, die);
13572
13573 if (die->child != NULL)
13574 {
13575 print_spaces (indent, f);
13576 fprintf_unfiltered (f, " Children:");
13577 if (level + 1 < max_level)
13578 {
13579 fprintf_unfiltered (f, "\n");
13580 dump_die_1 (f, level + 1, max_level, die->child);
13581 }
13582 else
13583 {
13584 fprintf_unfiltered (f,
13585 " [not printed, max nesting level reached]\n");
13586 }
13587 }
13588
13589 if (die->sibling != NULL && level > 0)
13590 {
13591 dump_die_1 (f, level, max_level, die->sibling);
13592 }
13593 }
13594
13595 /* This is called from the pdie macro in gdbinit.in.
13596 It's not static so gcc will keep a copy callable from gdb. */
13597
13598 void
13599 dump_die (struct die_info *die, int max_level)
13600 {
13601 dump_die_1 (gdb_stdlog, 0, max_level, die);
13602 }
13603
13604 static void
13605 store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
13606 {
13607 void **slot;
13608
13609 slot = htab_find_slot_with_hash (cu->die_hash, die, die->offset, INSERT);
13610
13611 *slot = die;
13612 }
13613
13614 static int
13615 is_ref_attr (struct attribute *attr)
13616 {
13617 switch (attr->form)
13618 {
13619 case DW_FORM_ref_addr:
13620 case DW_FORM_ref1:
13621 case DW_FORM_ref2:
13622 case DW_FORM_ref4:
13623 case DW_FORM_ref8:
13624 case DW_FORM_ref_udata:
13625 return 1;
13626 default:
13627 return 0;
13628 }
13629 }
13630
13631 static unsigned int
13632 dwarf2_get_ref_die_offset (struct attribute *attr)
13633 {
13634 if (is_ref_attr (attr))
13635 return DW_ADDR (attr);
13636
13637 complaint (&symfile_complaints,
13638 _("unsupported die ref attribute form: '%s'"),
13639 dwarf_form_name (attr->form));
13640 return 0;
13641 }
13642
13643 /* Return the constant value held by ATTR. Return DEFAULT_VALUE if
13644 * the value held by the attribute is not constant. */
13645
13646 static LONGEST
13647 dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
13648 {
13649 if (attr->form == DW_FORM_sdata)
13650 return DW_SND (attr);
13651 else if (attr->form == DW_FORM_udata
13652 || attr->form == DW_FORM_data1
13653 || attr->form == DW_FORM_data2
13654 || attr->form == DW_FORM_data4
13655 || attr->form == DW_FORM_data8)
13656 return DW_UNSND (attr);
13657 else
13658 {
13659 complaint (&symfile_complaints,
13660 _("Attribute value is not a constant (%s)"),
13661 dwarf_form_name (attr->form));
13662 return default_value;
13663 }
13664 }
13665
13666 /* THIS_CU has a reference to PER_CU. If necessary, load the new compilation
13667 unit and add it to our queue.
13668 The result is non-zero if PER_CU was queued, otherwise the result is zero
13669 meaning either PER_CU is already queued or it is already loaded. */
13670
13671 static int
13672 maybe_queue_comp_unit (struct dwarf2_cu *this_cu,
13673 struct dwarf2_per_cu_data *per_cu)
13674 {
13675 /* We may arrive here during partial symbol reading, if we need full
13676 DIEs to process an unusual case (e.g. template arguments). Do
13677 not queue PER_CU, just tell our caller to load its DIEs. */
13678 if (dwarf2_per_objfile->reading_partial_symbols)
13679 {
13680 if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
13681 return 1;
13682 return 0;
13683 }
13684
13685 /* Mark the dependence relation so that we don't flush PER_CU
13686 too early. */
13687 dwarf2_add_dependence (this_cu, per_cu);
13688
13689 /* If it's already on the queue, we have nothing to do. */
13690 if (per_cu->queued)
13691 return 0;
13692
13693 /* If the compilation unit is already loaded, just mark it as
13694 used. */
13695 if (per_cu->cu != NULL)
13696 {
13697 per_cu->cu->last_used = 0;
13698 return 0;
13699 }
13700
13701 /* Add it to the queue. */
13702 queue_comp_unit (per_cu, this_cu->objfile);
13703
13704 return 1;
13705 }
13706
13707 /* Follow reference or signature attribute ATTR of SRC_DIE.
13708 On entry *REF_CU is the CU of SRC_DIE.
13709 On exit *REF_CU is the CU of the result. */
13710
13711 static struct die_info *
13712 follow_die_ref_or_sig (struct die_info *src_die, struct attribute *attr,
13713 struct dwarf2_cu **ref_cu)
13714 {
13715 struct die_info *die;
13716
13717 if (is_ref_attr (attr))
13718 die = follow_die_ref (src_die, attr, ref_cu);
13719 else if (attr->form == DW_FORM_ref_sig8)
13720 die = follow_die_sig (src_die, attr, ref_cu);
13721 else
13722 {
13723 dump_die_for_error (src_die);
13724 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
13725 (*ref_cu)->objfile->name);
13726 }
13727
13728 return die;
13729 }
13730
13731 /* Follow reference OFFSET.
13732 On entry *REF_CU is the CU of the source die referencing OFFSET.
13733 On exit *REF_CU is the CU of the result.
13734 Returns NULL if OFFSET is invalid. */
13735
13736 static struct die_info *
13737 follow_die_offset (unsigned int offset, struct dwarf2_cu **ref_cu)
13738 {
13739 struct die_info temp_die;
13740 struct dwarf2_cu *target_cu, *cu = *ref_cu;
13741
13742 gdb_assert (cu->per_cu != NULL);
13743
13744 target_cu = cu;
13745
13746 if (cu->per_cu->from_debug_types)
13747 {
13748 /* .debug_types CUs cannot reference anything outside their CU.
13749 If they need to, they have to reference a signatured type via
13750 DW_FORM_ref_sig8. */
13751 if (! offset_in_cu_p (&cu->header, offset))
13752 return NULL;
13753 }
13754 else if (! offset_in_cu_p (&cu->header, offset))
13755 {
13756 struct dwarf2_per_cu_data *per_cu;
13757
13758 per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile);
13759
13760 /* If necessary, add it to the queue and load its DIEs. */
13761 if (maybe_queue_comp_unit (cu, per_cu))
13762 load_full_comp_unit (per_cu, cu->objfile);
13763
13764 target_cu = per_cu->cu;
13765 }
13766 else if (cu->dies == NULL)
13767 {
13768 /* We're loading full DIEs during partial symbol reading. */
13769 gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
13770 load_full_comp_unit (cu->per_cu, cu->objfile);
13771 }
13772
13773 *ref_cu = target_cu;
13774 temp_die.offset = offset;
13775 return htab_find_with_hash (target_cu->die_hash, &temp_die, offset);
13776 }
13777
13778 /* Follow reference attribute ATTR of SRC_DIE.
13779 On entry *REF_CU is the CU of SRC_DIE.
13780 On exit *REF_CU is the CU of the result. */
13781
13782 static struct die_info *
13783 follow_die_ref (struct die_info *src_die, struct attribute *attr,
13784 struct dwarf2_cu **ref_cu)
13785 {
13786 unsigned int offset = dwarf2_get_ref_die_offset (attr);
13787 struct dwarf2_cu *cu = *ref_cu;
13788 struct die_info *die;
13789
13790 die = follow_die_offset (offset, ref_cu);
13791 if (!die)
13792 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced from DIE "
13793 "at 0x%x [in module %s]"),
13794 offset, src_die->offset, cu->objfile->name);
13795
13796 return die;
13797 }
13798
13799 /* Return DWARF block and its CU referenced by OFFSET at PER_CU. Returned
13800 value is intended for DW_OP_call*. */
13801
13802 struct dwarf2_locexpr_baton
13803 dwarf2_fetch_die_location_block (unsigned int offset,
13804 struct dwarf2_per_cu_data *per_cu,
13805 CORE_ADDR (*get_frame_pc) (void *baton),
13806 void *baton)
13807 {
13808 struct dwarf2_cu *cu = per_cu->cu;
13809 struct die_info *die;
13810 struct attribute *attr;
13811 struct dwarf2_locexpr_baton retval;
13812
13813 dw2_setup (per_cu->objfile);
13814
13815 die = follow_die_offset (offset, &cu);
13816 if (!die)
13817 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
13818 offset, per_cu->cu->objfile->name);
13819
13820 attr = dwarf2_attr (die, DW_AT_location, cu);
13821 if (!attr)
13822 {
13823 /* DWARF: "If there is no such attribute, then there is no effect.". */
13824
13825 retval.data = NULL;
13826 retval.size = 0;
13827 }
13828 else if (attr_form_is_section_offset (attr))
13829 {
13830 struct dwarf2_loclist_baton loclist_baton;
13831 CORE_ADDR pc = (*get_frame_pc) (baton);
13832 size_t size;
13833
13834 fill_in_loclist_baton (cu, &loclist_baton, attr);
13835
13836 retval.data = dwarf2_find_location_expression (&loclist_baton,
13837 &size, pc);
13838 retval.size = size;
13839 }
13840 else
13841 {
13842 if (!attr_form_is_block (attr))
13843 error (_("Dwarf Error: DIE at 0x%x referenced in module %s "
13844 "is neither DW_FORM_block* nor DW_FORM_exprloc"),
13845 offset, per_cu->cu->objfile->name);
13846
13847 retval.data = DW_BLOCK (attr)->data;
13848 retval.size = DW_BLOCK (attr)->size;
13849 }
13850 retval.per_cu = cu->per_cu;
13851 return retval;
13852 }
13853
13854 /* Return the type of the DIE at DIE_OFFSET in the CU named by
13855 PER_CU. */
13856
13857 struct type *
13858 dwarf2_get_die_type (unsigned int die_offset,
13859 struct dwarf2_per_cu_data *per_cu)
13860 {
13861 dw2_setup (per_cu->objfile);
13862 return get_die_type_at_offset (die_offset, per_cu);
13863 }
13864
13865 /* Follow the signature attribute ATTR in SRC_DIE.
13866 On entry *REF_CU is the CU of SRC_DIE.
13867 On exit *REF_CU is the CU of the result. */
13868
13869 static struct die_info *
13870 follow_die_sig (struct die_info *src_die, struct attribute *attr,
13871 struct dwarf2_cu **ref_cu)
13872 {
13873 struct objfile *objfile = (*ref_cu)->objfile;
13874 struct die_info temp_die;
13875 struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
13876 struct dwarf2_cu *sig_cu;
13877 struct die_info *die;
13878
13879 /* sig_type will be NULL if the signatured type is missing from
13880 the debug info. */
13881 if (sig_type == NULL)
13882 error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
13883 "at 0x%x [in module %s]"),
13884 src_die->offset, objfile->name);
13885
13886 /* If necessary, add it to the queue and load its DIEs. */
13887
13888 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu))
13889 read_signatured_type (objfile, sig_type);
13890
13891 gdb_assert (sig_type->per_cu.cu != NULL);
13892
13893 sig_cu = sig_type->per_cu.cu;
13894 temp_die.offset = sig_cu->header.offset + sig_type->type_offset;
13895 die = htab_find_with_hash (sig_cu->die_hash, &temp_die, temp_die.offset);
13896 if (die)
13897 {
13898 *ref_cu = sig_cu;
13899 return die;
13900 }
13901
13902 error (_("Dwarf Error: Cannot find signatured DIE at 0x%x referenced "
13903 "from DIE at 0x%x [in module %s]"),
13904 sig_type->type_offset, src_die->offset, objfile->name);
13905 }
13906
13907 /* Given an offset of a signatured type, return its signatured_type. */
13908
13909 static struct signatured_type *
13910 lookup_signatured_type_at_offset (struct objfile *objfile, unsigned int offset)
13911 {
13912 gdb_byte *info_ptr = dwarf2_per_objfile->types.buffer + offset;
13913 unsigned int length, initial_length_size;
13914 unsigned int sig_offset;
13915 struct signatured_type find_entry, *type_sig;
13916
13917 length = read_initial_length (objfile->obfd, info_ptr, &initial_length_size);
13918 sig_offset = (initial_length_size
13919 + 2 /*version*/
13920 + (initial_length_size == 4 ? 4 : 8) /*debug_abbrev_offset*/
13921 + 1 /*address_size*/);
13922 find_entry.signature = bfd_get_64 (objfile->obfd, info_ptr + sig_offset);
13923 type_sig = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
13924
13925 /* This is only used to lookup previously recorded types.
13926 If we didn't find it, it's our bug. */
13927 gdb_assert (type_sig != NULL);
13928 gdb_assert (offset == type_sig->per_cu.offset);
13929
13930 return type_sig;
13931 }
13932
13933 /* Read in signatured type at OFFSET and build its CU and die(s). */
13934
13935 static void
13936 read_signatured_type_at_offset (struct objfile *objfile,
13937 unsigned int offset)
13938 {
13939 struct signatured_type *type_sig;
13940
13941 dwarf2_read_section (objfile, &dwarf2_per_objfile->types);
13942
13943 /* We have the section offset, but we need the signature to do the
13944 hash table lookup. */
13945 type_sig = lookup_signatured_type_at_offset (objfile, offset);
13946
13947 gdb_assert (type_sig->per_cu.cu == NULL);
13948
13949 read_signatured_type (objfile, type_sig);
13950
13951 gdb_assert (type_sig->per_cu.cu != NULL);
13952 }
13953
13954 /* Read in a signatured type and build its CU and DIEs. */
13955
13956 static void
13957 read_signatured_type (struct objfile *objfile,
13958 struct signatured_type *type_sig)
13959 {
13960 gdb_byte *types_ptr;
13961 struct die_reader_specs reader_specs;
13962 struct dwarf2_cu *cu;
13963 ULONGEST signature;
13964 struct cleanup *back_to, *free_cu_cleanup;
13965
13966 dwarf2_read_section (objfile, &dwarf2_per_objfile->types);
13967 types_ptr = dwarf2_per_objfile->types.buffer + type_sig->per_cu.offset;
13968
13969 gdb_assert (type_sig->per_cu.cu == NULL);
13970
13971 cu = xmalloc (sizeof (*cu));
13972 init_one_comp_unit (cu, objfile);
13973
13974 type_sig->per_cu.cu = cu;
13975 cu->per_cu = &type_sig->per_cu;
13976
13977 /* If an error occurs while loading, release our storage. */
13978 free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
13979
13980 types_ptr = read_type_comp_unit_head (&cu->header, &signature,
13981 types_ptr, objfile->obfd);
13982 gdb_assert (signature == type_sig->signature);
13983
13984 cu->die_hash
13985 = htab_create_alloc_ex (cu->header.length / 12,
13986 die_hash,
13987 die_eq,
13988 NULL,
13989 &cu->comp_unit_obstack,
13990 hashtab_obstack_allocate,
13991 dummy_obstack_deallocate);
13992
13993 dwarf2_read_abbrevs (cu->objfile->obfd, cu);
13994 back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
13995
13996 init_cu_die_reader (&reader_specs, cu);
13997
13998 cu->dies = read_die_and_children (&reader_specs, types_ptr, &types_ptr,
13999 NULL /*parent*/);
14000
14001 /* We try not to read any attributes in this function, because not
14002 all objfiles needed for references have been loaded yet, and symbol
14003 table processing isn't initialized. But we have to set the CU language,
14004 or we won't be able to build types correctly. */
14005 prepare_one_comp_unit (cu, cu->dies);
14006
14007 do_cleanups (back_to);
14008
14009 /* We've successfully allocated this compilation unit. Let our caller
14010 clean it up when finished with it. */
14011 discard_cleanups (free_cu_cleanup);
14012
14013 type_sig->per_cu.cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
14014 dwarf2_per_objfile->read_in_chain = &type_sig->per_cu;
14015 }
14016
14017 /* Decode simple location descriptions.
14018 Given a pointer to a dwarf block that defines a location, compute
14019 the location and return the value.
14020
14021 NOTE drow/2003-11-18: This function is called in two situations
14022 now: for the address of static or global variables (partial symbols
14023 only) and for offsets into structures which are expected to be
14024 (more or less) constant. The partial symbol case should go away,
14025 and only the constant case should remain. That will let this
14026 function complain more accurately. A few special modes are allowed
14027 without complaint for global variables (for instance, global
14028 register values and thread-local values).
14029
14030 A location description containing no operations indicates that the
14031 object is optimized out. The return value is 0 for that case.
14032 FIXME drow/2003-11-16: No callers check for this case any more; soon all
14033 callers will only want a very basic result and this can become a
14034 complaint.
14035
14036 Note that stack[0] is unused except as a default error return. */
14037
14038 static CORE_ADDR
14039 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
14040 {
14041 struct objfile *objfile = cu->objfile;
14042 int i;
14043 int size = blk->size;
14044 gdb_byte *data = blk->data;
14045 CORE_ADDR stack[64];
14046 int stacki;
14047 unsigned int bytes_read, unsnd;
14048 gdb_byte op;
14049
14050 i = 0;
14051 stacki = 0;
14052 stack[stacki] = 0;
14053 stack[++stacki] = 0;
14054
14055 while (i < size)
14056 {
14057 op = data[i++];
14058 switch (op)
14059 {
14060 case DW_OP_lit0:
14061 case DW_OP_lit1:
14062 case DW_OP_lit2:
14063 case DW_OP_lit3:
14064 case DW_OP_lit4:
14065 case DW_OP_lit5:
14066 case DW_OP_lit6:
14067 case DW_OP_lit7:
14068 case DW_OP_lit8:
14069 case DW_OP_lit9:
14070 case DW_OP_lit10:
14071 case DW_OP_lit11:
14072 case DW_OP_lit12:
14073 case DW_OP_lit13:
14074 case DW_OP_lit14:
14075 case DW_OP_lit15:
14076 case DW_OP_lit16:
14077 case DW_OP_lit17:
14078 case DW_OP_lit18:
14079 case DW_OP_lit19:
14080 case DW_OP_lit20:
14081 case DW_OP_lit21:
14082 case DW_OP_lit22:
14083 case DW_OP_lit23:
14084 case DW_OP_lit24:
14085 case DW_OP_lit25:
14086 case DW_OP_lit26:
14087 case DW_OP_lit27:
14088 case DW_OP_lit28:
14089 case DW_OP_lit29:
14090 case DW_OP_lit30:
14091 case DW_OP_lit31:
14092 stack[++stacki] = op - DW_OP_lit0;
14093 break;
14094
14095 case DW_OP_reg0:
14096 case DW_OP_reg1:
14097 case DW_OP_reg2:
14098 case DW_OP_reg3:
14099 case DW_OP_reg4:
14100 case DW_OP_reg5:
14101 case DW_OP_reg6:
14102 case DW_OP_reg7:
14103 case DW_OP_reg8:
14104 case DW_OP_reg9:
14105 case DW_OP_reg10:
14106 case DW_OP_reg11:
14107 case DW_OP_reg12:
14108 case DW_OP_reg13:
14109 case DW_OP_reg14:
14110 case DW_OP_reg15:
14111 case DW_OP_reg16:
14112 case DW_OP_reg17:
14113 case DW_OP_reg18:
14114 case DW_OP_reg19:
14115 case DW_OP_reg20:
14116 case DW_OP_reg21:
14117 case DW_OP_reg22:
14118 case DW_OP_reg23:
14119 case DW_OP_reg24:
14120 case DW_OP_reg25:
14121 case DW_OP_reg26:
14122 case DW_OP_reg27:
14123 case DW_OP_reg28:
14124 case DW_OP_reg29:
14125 case DW_OP_reg30:
14126 case DW_OP_reg31:
14127 stack[++stacki] = op - DW_OP_reg0;
14128 if (i < size)
14129 dwarf2_complex_location_expr_complaint ();
14130 break;
14131
14132 case DW_OP_regx:
14133 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
14134 i += bytes_read;
14135 stack[++stacki] = unsnd;
14136 if (i < size)
14137 dwarf2_complex_location_expr_complaint ();
14138 break;
14139
14140 case DW_OP_addr:
14141 stack[++stacki] = read_address (objfile->obfd, &data[i],
14142 cu, &bytes_read);
14143 i += bytes_read;
14144 break;
14145
14146 case DW_OP_const1u:
14147 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
14148 i += 1;
14149 break;
14150
14151 case DW_OP_const1s:
14152 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
14153 i += 1;
14154 break;
14155
14156 case DW_OP_const2u:
14157 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
14158 i += 2;
14159 break;
14160
14161 case DW_OP_const2s:
14162 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
14163 i += 2;
14164 break;
14165
14166 case DW_OP_const4u:
14167 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
14168 i += 4;
14169 break;
14170
14171 case DW_OP_const4s:
14172 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
14173 i += 4;
14174 break;
14175
14176 case DW_OP_constu:
14177 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
14178 &bytes_read);
14179 i += bytes_read;
14180 break;
14181
14182 case DW_OP_consts:
14183 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
14184 i += bytes_read;
14185 break;
14186
14187 case DW_OP_dup:
14188 stack[stacki + 1] = stack[stacki];
14189 stacki++;
14190 break;
14191
14192 case DW_OP_plus:
14193 stack[stacki - 1] += stack[stacki];
14194 stacki--;
14195 break;
14196
14197 case DW_OP_plus_uconst:
14198 stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
14199 &bytes_read);
14200 i += bytes_read;
14201 break;
14202
14203 case DW_OP_minus:
14204 stack[stacki - 1] -= stack[stacki];
14205 stacki--;
14206 break;
14207
14208 case DW_OP_deref:
14209 /* If we're not the last op, then we definitely can't encode
14210 this using GDB's address_class enum. This is valid for partial
14211 global symbols, although the variable's address will be bogus
14212 in the psymtab. */
14213 if (i < size)
14214 dwarf2_complex_location_expr_complaint ();
14215 break;
14216
14217 case DW_OP_GNU_push_tls_address:
14218 /* The top of the stack has the offset from the beginning
14219 of the thread control block at which the variable is located. */
14220 /* Nothing should follow this operator, so the top of stack would
14221 be returned. */
14222 /* This is valid for partial global symbols, but the variable's
14223 address will be bogus in the psymtab. */
14224 if (i < size)
14225 dwarf2_complex_location_expr_complaint ();
14226 break;
14227
14228 case DW_OP_GNU_uninit:
14229 break;
14230
14231 default:
14232 {
14233 const char *name = dwarf_stack_op_name (op);
14234
14235 if (name)
14236 complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
14237 name);
14238 else
14239 complaint (&symfile_complaints, _("unsupported stack op: '%02x'"),
14240 op);
14241 }
14242
14243 return (stack[stacki]);
14244 }
14245
14246 /* Enforce maximum stack depth of SIZE-1 to avoid writing
14247 outside of the allocated space. Also enforce minimum>0. */
14248 if (stacki >= ARRAY_SIZE (stack) - 1)
14249 {
14250 complaint (&symfile_complaints,
14251 _("location description stack overflow"));
14252 return 0;
14253 }
14254
14255 if (stacki <= 0)
14256 {
14257 complaint (&symfile_complaints,
14258 _("location description stack underflow"));
14259 return 0;
14260 }
14261 }
14262 return (stack[stacki]);
14263 }
14264
14265 /* memory allocation interface */
14266
14267 static struct dwarf_block *
14268 dwarf_alloc_block (struct dwarf2_cu *cu)
14269 {
14270 struct dwarf_block *blk;
14271
14272 blk = (struct dwarf_block *)
14273 obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
14274 return (blk);
14275 }
14276
14277 static struct abbrev_info *
14278 dwarf_alloc_abbrev (struct dwarf2_cu *cu)
14279 {
14280 struct abbrev_info *abbrev;
14281
14282 abbrev = (struct abbrev_info *)
14283 obstack_alloc (&cu->abbrev_obstack, sizeof (struct abbrev_info));
14284 memset (abbrev, 0, sizeof (struct abbrev_info));
14285 return (abbrev);
14286 }
14287
14288 static struct die_info *
14289 dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
14290 {
14291 struct die_info *die;
14292 size_t size = sizeof (struct die_info);
14293
14294 if (num_attrs > 1)
14295 size += (num_attrs - 1) * sizeof (struct attribute);
14296
14297 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
14298 memset (die, 0, sizeof (struct die_info));
14299 return (die);
14300 }
14301
14302 \f
14303 /* Macro support. */
14304
14305 /* Return the full name of file number I in *LH's file name table.
14306 Use COMP_DIR as the name of the current directory of the
14307 compilation. The result is allocated using xmalloc; the caller is
14308 responsible for freeing it. */
14309 static char *
14310 file_full_name (int file, struct line_header *lh, const char *comp_dir)
14311 {
14312 /* Is the file number a valid index into the line header's file name
14313 table? Remember that file numbers start with one, not zero. */
14314 if (1 <= file && file <= lh->num_file_names)
14315 {
14316 struct file_entry *fe = &lh->file_names[file - 1];
14317
14318 if (IS_ABSOLUTE_PATH (fe->name))
14319 return xstrdup (fe->name);
14320 else
14321 {
14322 const char *dir;
14323 int dir_len;
14324 char *full_name;
14325
14326 if (fe->dir_index)
14327 dir = lh->include_dirs[fe->dir_index - 1];
14328 else
14329 dir = comp_dir;
14330
14331 if (dir)
14332 {
14333 dir_len = strlen (dir);
14334 full_name = xmalloc (dir_len + 1 + strlen (fe->name) + 1);
14335 strcpy (full_name, dir);
14336 full_name[dir_len] = '/';
14337 strcpy (full_name + dir_len + 1, fe->name);
14338 return full_name;
14339 }
14340 else
14341 return xstrdup (fe->name);
14342 }
14343 }
14344 else
14345 {
14346 /* The compiler produced a bogus file number. We can at least
14347 record the macro definitions made in the file, even if we
14348 won't be able to find the file by name. */
14349 char fake_name[80];
14350
14351 sprintf (fake_name, "<bad macro file number %d>", file);
14352
14353 complaint (&symfile_complaints,
14354 _("bad file number in macro information (%d)"),
14355 file);
14356
14357 return xstrdup (fake_name);
14358 }
14359 }
14360
14361
14362 static struct macro_source_file *
14363 macro_start_file (int file, int line,
14364 struct macro_source_file *current_file,
14365 const char *comp_dir,
14366 struct line_header *lh, struct objfile *objfile)
14367 {
14368 /* The full name of this source file. */
14369 char *full_name = file_full_name (file, lh, comp_dir);
14370
14371 /* We don't create a macro table for this compilation unit
14372 at all until we actually get a filename. */
14373 if (! pending_macros)
14374 pending_macros = new_macro_table (&objfile->objfile_obstack,
14375 objfile->macro_cache);
14376
14377 if (! current_file)
14378 /* If we have no current file, then this must be the start_file
14379 directive for the compilation unit's main source file. */
14380 current_file = macro_set_main (pending_macros, full_name);
14381 else
14382 current_file = macro_include (current_file, line, full_name);
14383
14384 xfree (full_name);
14385
14386 return current_file;
14387 }
14388
14389
14390 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
14391 followed by a null byte. */
14392 static char *
14393 copy_string (const char *buf, int len)
14394 {
14395 char *s = xmalloc (len + 1);
14396
14397 memcpy (s, buf, len);
14398 s[len] = '\0';
14399 return s;
14400 }
14401
14402
14403 static const char *
14404 consume_improper_spaces (const char *p, const char *body)
14405 {
14406 if (*p == ' ')
14407 {
14408 complaint (&symfile_complaints,
14409 _("macro definition contains spaces "
14410 "in formal argument list:\n`%s'"),
14411 body);
14412
14413 while (*p == ' ')
14414 p++;
14415 }
14416
14417 return p;
14418 }
14419
14420
14421 static void
14422 parse_macro_definition (struct macro_source_file *file, int line,
14423 const char *body)
14424 {
14425 const char *p;
14426
14427 /* The body string takes one of two forms. For object-like macro
14428 definitions, it should be:
14429
14430 <macro name> " " <definition>
14431
14432 For function-like macro definitions, it should be:
14433
14434 <macro name> "() " <definition>
14435 or
14436 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
14437
14438 Spaces may appear only where explicitly indicated, and in the
14439 <definition>.
14440
14441 The Dwarf 2 spec says that an object-like macro's name is always
14442 followed by a space, but versions of GCC around March 2002 omit
14443 the space when the macro's definition is the empty string.
14444
14445 The Dwarf 2 spec says that there should be no spaces between the
14446 formal arguments in a function-like macro's formal argument list,
14447 but versions of GCC around March 2002 include spaces after the
14448 commas. */
14449
14450
14451 /* Find the extent of the macro name. The macro name is terminated
14452 by either a space or null character (for an object-like macro) or
14453 an opening paren (for a function-like macro). */
14454 for (p = body; *p; p++)
14455 if (*p == ' ' || *p == '(')
14456 break;
14457
14458 if (*p == ' ' || *p == '\0')
14459 {
14460 /* It's an object-like macro. */
14461 int name_len = p - body;
14462 char *name = copy_string (body, name_len);
14463 const char *replacement;
14464
14465 if (*p == ' ')
14466 replacement = body + name_len + 1;
14467 else
14468 {
14469 dwarf2_macro_malformed_definition_complaint (body);
14470 replacement = body + name_len;
14471 }
14472
14473 macro_define_object (file, line, name, replacement);
14474
14475 xfree (name);
14476 }
14477 else if (*p == '(')
14478 {
14479 /* It's a function-like macro. */
14480 char *name = copy_string (body, p - body);
14481 int argc = 0;
14482 int argv_size = 1;
14483 char **argv = xmalloc (argv_size * sizeof (*argv));
14484
14485 p++;
14486
14487 p = consume_improper_spaces (p, body);
14488
14489 /* Parse the formal argument list. */
14490 while (*p && *p != ')')
14491 {
14492 /* Find the extent of the current argument name. */
14493 const char *arg_start = p;
14494
14495 while (*p && *p != ',' && *p != ')' && *p != ' ')
14496 p++;
14497
14498 if (! *p || p == arg_start)
14499 dwarf2_macro_malformed_definition_complaint (body);
14500 else
14501 {
14502 /* Make sure argv has room for the new argument. */
14503 if (argc >= argv_size)
14504 {
14505 argv_size *= 2;
14506 argv = xrealloc (argv, argv_size * sizeof (*argv));
14507 }
14508
14509 argv[argc++] = copy_string (arg_start, p - arg_start);
14510 }
14511
14512 p = consume_improper_spaces (p, body);
14513
14514 /* Consume the comma, if present. */
14515 if (*p == ',')
14516 {
14517 p++;
14518
14519 p = consume_improper_spaces (p, body);
14520 }
14521 }
14522
14523 if (*p == ')')
14524 {
14525 p++;
14526
14527 if (*p == ' ')
14528 /* Perfectly formed definition, no complaints. */
14529 macro_define_function (file, line, name,
14530 argc, (const char **) argv,
14531 p + 1);
14532 else if (*p == '\0')
14533 {
14534 /* Complain, but do define it. */
14535 dwarf2_macro_malformed_definition_complaint (body);
14536 macro_define_function (file, line, name,
14537 argc, (const char **) argv,
14538 p);
14539 }
14540 else
14541 /* Just complain. */
14542 dwarf2_macro_malformed_definition_complaint (body);
14543 }
14544 else
14545 /* Just complain. */
14546 dwarf2_macro_malformed_definition_complaint (body);
14547
14548 xfree (name);
14549 {
14550 int i;
14551
14552 for (i = 0; i < argc; i++)
14553 xfree (argv[i]);
14554 }
14555 xfree (argv);
14556 }
14557 else
14558 dwarf2_macro_malformed_definition_complaint (body);
14559 }
14560
14561
14562 static void
14563 dwarf_decode_macros (struct line_header *lh, unsigned int offset,
14564 char *comp_dir, bfd *abfd,
14565 struct dwarf2_cu *cu)
14566 {
14567 gdb_byte *mac_ptr, *mac_end;
14568 struct macro_source_file *current_file = 0;
14569 enum dwarf_macinfo_record_type macinfo_type;
14570 int at_commandline;
14571
14572 dwarf2_read_section (dwarf2_per_objfile->objfile,
14573 &dwarf2_per_objfile->macinfo);
14574 if (dwarf2_per_objfile->macinfo.buffer == NULL)
14575 {
14576 complaint (&symfile_complaints, _("missing .debug_macinfo section"));
14577 return;
14578 }
14579
14580 /* First pass: Find the name of the base filename.
14581 This filename is needed in order to process all macros whose definition
14582 (or undefinition) comes from the command line. These macros are defined
14583 before the first DW_MACINFO_start_file entry, and yet still need to be
14584 associated to the base file.
14585
14586 To determine the base file name, we scan the macro definitions until we
14587 reach the first DW_MACINFO_start_file entry. We then initialize
14588 CURRENT_FILE accordingly so that any macro definition found before the
14589 first DW_MACINFO_start_file can still be associated to the base file. */
14590
14591 mac_ptr = dwarf2_per_objfile->macinfo.buffer + offset;
14592 mac_end = dwarf2_per_objfile->macinfo.buffer
14593 + dwarf2_per_objfile->macinfo.size;
14594
14595 do
14596 {
14597 /* Do we at least have room for a macinfo type byte? */
14598 if (mac_ptr >= mac_end)
14599 {
14600 /* Complaint is printed during the second pass as GDB will probably
14601 stop the first pass earlier upon finding
14602 DW_MACINFO_start_file. */
14603 break;
14604 }
14605
14606 macinfo_type = read_1_byte (abfd, mac_ptr);
14607 mac_ptr++;
14608
14609 switch (macinfo_type)
14610 {
14611 /* A zero macinfo type indicates the end of the macro
14612 information. */
14613 case 0:
14614 break;
14615
14616 case DW_MACINFO_define:
14617 case DW_MACINFO_undef:
14618 /* Only skip the data by MAC_PTR. */
14619 {
14620 unsigned int bytes_read;
14621
14622 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14623 mac_ptr += bytes_read;
14624 read_direct_string (abfd, mac_ptr, &bytes_read);
14625 mac_ptr += bytes_read;
14626 }
14627 break;
14628
14629 case DW_MACINFO_start_file:
14630 {
14631 unsigned int bytes_read;
14632 int line, file;
14633
14634 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14635 mac_ptr += bytes_read;
14636 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14637 mac_ptr += bytes_read;
14638
14639 current_file = macro_start_file (file, line, current_file,
14640 comp_dir, lh, cu->objfile);
14641 }
14642 break;
14643
14644 case DW_MACINFO_end_file:
14645 /* No data to skip by MAC_PTR. */
14646 break;
14647
14648 case DW_MACINFO_vendor_ext:
14649 /* Only skip the data by MAC_PTR. */
14650 {
14651 unsigned int bytes_read;
14652
14653 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14654 mac_ptr += bytes_read;
14655 read_direct_string (abfd, mac_ptr, &bytes_read);
14656 mac_ptr += bytes_read;
14657 }
14658 break;
14659
14660 default:
14661 break;
14662 }
14663 } while (macinfo_type != 0 && current_file == NULL);
14664
14665 /* Second pass: Process all entries.
14666
14667 Use the AT_COMMAND_LINE flag to determine whether we are still processing
14668 command-line macro definitions/undefinitions. This flag is unset when we
14669 reach the first DW_MACINFO_start_file entry. */
14670
14671 mac_ptr = dwarf2_per_objfile->macinfo.buffer + offset;
14672
14673 /* Determines if GDB is still before first DW_MACINFO_start_file. If true
14674 GDB is still reading the definitions from command line. First
14675 DW_MACINFO_start_file will need to be ignored as it was already executed
14676 to create CURRENT_FILE for the main source holding also the command line
14677 definitions. On first met DW_MACINFO_start_file this flag is reset to
14678 normally execute all the remaining DW_MACINFO_start_file macinfos. */
14679
14680 at_commandline = 1;
14681
14682 do
14683 {
14684 /* Do we at least have room for a macinfo type byte? */
14685 if (mac_ptr >= mac_end)
14686 {
14687 dwarf2_macros_too_long_complaint ();
14688 break;
14689 }
14690
14691 macinfo_type = read_1_byte (abfd, mac_ptr);
14692 mac_ptr++;
14693
14694 switch (macinfo_type)
14695 {
14696 /* A zero macinfo type indicates the end of the macro
14697 information. */
14698 case 0:
14699 break;
14700
14701 case DW_MACINFO_define:
14702 case DW_MACINFO_undef:
14703 {
14704 unsigned int bytes_read;
14705 int line;
14706 char *body;
14707
14708 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14709 mac_ptr += bytes_read;
14710 body = read_direct_string (abfd, mac_ptr, &bytes_read);
14711 mac_ptr += bytes_read;
14712
14713 if (! current_file)
14714 {
14715 /* DWARF violation as no main source is present. */
14716 complaint (&symfile_complaints,
14717 _("debug info with no main source gives macro %s "
14718 "on line %d: %s"),
14719 macinfo_type == DW_MACINFO_define ?
14720 _("definition") :
14721 macinfo_type == DW_MACINFO_undef ?
14722 _("undefinition") :
14723 _("something-or-other"), line, body);
14724 break;
14725 }
14726 if ((line == 0 && !at_commandline)
14727 || (line != 0 && at_commandline))
14728 complaint (&symfile_complaints,
14729 _("debug info gives %s macro %s with %s line %d: %s"),
14730 at_commandline ? _("command-line") : _("in-file"),
14731 macinfo_type == DW_MACINFO_define ?
14732 _("definition") :
14733 macinfo_type == DW_MACINFO_undef ?
14734 _("undefinition") :
14735 _("something-or-other"),
14736 line == 0 ? _("zero") : _("non-zero"), line, body);
14737
14738 if (macinfo_type == DW_MACINFO_define)
14739 parse_macro_definition (current_file, line, body);
14740 else if (macinfo_type == DW_MACINFO_undef)
14741 macro_undef (current_file, line, body);
14742 }
14743 break;
14744
14745 case DW_MACINFO_start_file:
14746 {
14747 unsigned int bytes_read;
14748 int line, file;
14749
14750 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14751 mac_ptr += bytes_read;
14752 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14753 mac_ptr += bytes_read;
14754
14755 if ((line == 0 && !at_commandline)
14756 || (line != 0 && at_commandline))
14757 complaint (&symfile_complaints,
14758 _("debug info gives source %d included "
14759 "from %s at %s line %d"),
14760 file, at_commandline ? _("command-line") : _("file"),
14761 line == 0 ? _("zero") : _("non-zero"), line);
14762
14763 if (at_commandline)
14764 {
14765 /* This DW_MACINFO_start_file was executed in the pass one. */
14766 at_commandline = 0;
14767 }
14768 else
14769 current_file = macro_start_file (file, line,
14770 current_file, comp_dir,
14771 lh, cu->objfile);
14772 }
14773 break;
14774
14775 case DW_MACINFO_end_file:
14776 if (! current_file)
14777 complaint (&symfile_complaints,
14778 _("macro debug info has an unmatched "
14779 "`close_file' directive"));
14780 else
14781 {
14782 current_file = current_file->included_by;
14783 if (! current_file)
14784 {
14785 enum dwarf_macinfo_record_type next_type;
14786
14787 /* GCC circa March 2002 doesn't produce the zero
14788 type byte marking the end of the compilation
14789 unit. Complain if it's not there, but exit no
14790 matter what. */
14791
14792 /* Do we at least have room for a macinfo type byte? */
14793 if (mac_ptr >= mac_end)
14794 {
14795 dwarf2_macros_too_long_complaint ();
14796 return;
14797 }
14798
14799 /* We don't increment mac_ptr here, so this is just
14800 a look-ahead. */
14801 next_type = read_1_byte (abfd, mac_ptr);
14802 if (next_type != 0)
14803 complaint (&symfile_complaints,
14804 _("no terminating 0-type entry for "
14805 "macros in `.debug_macinfo' section"));
14806
14807 return;
14808 }
14809 }
14810 break;
14811
14812 case DW_MACINFO_vendor_ext:
14813 {
14814 unsigned int bytes_read;
14815 int constant;
14816
14817 constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
14818 mac_ptr += bytes_read;
14819 read_direct_string (abfd, mac_ptr, &bytes_read);
14820 mac_ptr += bytes_read;
14821
14822 /* We don't recognize any vendor extensions. */
14823 }
14824 break;
14825 }
14826 } while (macinfo_type != 0);
14827 }
14828
14829 /* Check if the attribute's form is a DW_FORM_block*
14830 if so return true else false. */
14831 static int
14832 attr_form_is_block (struct attribute *attr)
14833 {
14834 return (attr == NULL ? 0 :
14835 attr->form == DW_FORM_block1
14836 || attr->form == DW_FORM_block2
14837 || attr->form == DW_FORM_block4
14838 || attr->form == DW_FORM_block
14839 || attr->form == DW_FORM_exprloc);
14840 }
14841
14842 /* Return non-zero if ATTR's value is a section offset --- classes
14843 lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
14844 You may use DW_UNSND (attr) to retrieve such offsets.
14845
14846 Section 7.5.4, "Attribute Encodings", explains that no attribute
14847 may have a value that belongs to more than one of these classes; it
14848 would be ambiguous if we did, because we use the same forms for all
14849 of them. */
14850 static int
14851 attr_form_is_section_offset (struct attribute *attr)
14852 {
14853 return (attr->form == DW_FORM_data4
14854 || attr->form == DW_FORM_data8
14855 || attr->form == DW_FORM_sec_offset);
14856 }
14857
14858
14859 /* Return non-zero if ATTR's value falls in the 'constant' class, or
14860 zero otherwise. When this function returns true, you can apply
14861 dwarf2_get_attr_constant_value to it.
14862
14863 However, note that for some attributes you must check
14864 attr_form_is_section_offset before using this test. DW_FORM_data4
14865 and DW_FORM_data8 are members of both the constant class, and of
14866 the classes that contain offsets into other debug sections
14867 (lineptr, loclistptr, macptr or rangelistptr). The DWARF spec says
14868 that, if an attribute's can be either a constant or one of the
14869 section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
14870 taken as section offsets, not constants. */
14871 static int
14872 attr_form_is_constant (struct attribute *attr)
14873 {
14874 switch (attr->form)
14875 {
14876 case DW_FORM_sdata:
14877 case DW_FORM_udata:
14878 case DW_FORM_data1:
14879 case DW_FORM_data2:
14880 case DW_FORM_data4:
14881 case DW_FORM_data8:
14882 return 1;
14883 default:
14884 return 0;
14885 }
14886 }
14887
14888 /* A helper function that fills in a dwarf2_loclist_baton. */
14889
14890 static void
14891 fill_in_loclist_baton (struct dwarf2_cu *cu,
14892 struct dwarf2_loclist_baton *baton,
14893 struct attribute *attr)
14894 {
14895 dwarf2_read_section (dwarf2_per_objfile->objfile,
14896 &dwarf2_per_objfile->loc);
14897
14898 baton->per_cu = cu->per_cu;
14899 gdb_assert (baton->per_cu);
14900 /* We don't know how long the location list is, but make sure we
14901 don't run off the edge of the section. */
14902 baton->size = dwarf2_per_objfile->loc.size - DW_UNSND (attr);
14903 baton->data = dwarf2_per_objfile->loc.buffer + DW_UNSND (attr);
14904 baton->base_address = cu->base_address;
14905 }
14906
14907 static void
14908 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
14909 struct dwarf2_cu *cu)
14910 {
14911 if (attr_form_is_section_offset (attr)
14912 /* ".debug_loc" may not exist at all, or the offset may be outside
14913 the section. If so, fall through to the complaint in the
14914 other branch. */
14915 && DW_UNSND (attr) < dwarf2_section_size (dwarf2_per_objfile->objfile,
14916 &dwarf2_per_objfile->loc))
14917 {
14918 struct dwarf2_loclist_baton *baton;
14919
14920 baton = obstack_alloc (&cu->objfile->objfile_obstack,
14921 sizeof (struct dwarf2_loclist_baton));
14922
14923 fill_in_loclist_baton (cu, baton, attr);
14924
14925 if (cu->base_known == 0)
14926 complaint (&symfile_complaints,
14927 _("Location list used without "
14928 "specifying the CU base address."));
14929
14930 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_loclist_funcs;
14931 SYMBOL_LOCATION_BATON (sym) = baton;
14932 }
14933 else
14934 {
14935 struct dwarf2_locexpr_baton *baton;
14936
14937 baton = obstack_alloc (&cu->objfile->objfile_obstack,
14938 sizeof (struct dwarf2_locexpr_baton));
14939 baton->per_cu = cu->per_cu;
14940 gdb_assert (baton->per_cu);
14941
14942 if (attr_form_is_block (attr))
14943 {
14944 /* Note that we're just copying the block's data pointer
14945 here, not the actual data. We're still pointing into the
14946 info_buffer for SYM's objfile; right now we never release
14947 that buffer, but when we do clean up properly this may
14948 need to change. */
14949 baton->size = DW_BLOCK (attr)->size;
14950 baton->data = DW_BLOCK (attr)->data;
14951 }
14952 else
14953 {
14954 dwarf2_invalid_attrib_class_complaint ("location description",
14955 SYMBOL_NATURAL_NAME (sym));
14956 baton->size = 0;
14957 baton->data = NULL;
14958 }
14959
14960 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_locexpr_funcs;
14961 SYMBOL_LOCATION_BATON (sym) = baton;
14962 }
14963 }
14964
14965 /* Return the OBJFILE associated with the compilation unit CU. If CU
14966 came from a separate debuginfo file, then the master objfile is
14967 returned. */
14968
14969 struct objfile *
14970 dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
14971 {
14972 struct objfile *objfile = per_cu->objfile;
14973
14974 /* Return the master objfile, so that we can report and look up the
14975 correct file containing this variable. */
14976 if (objfile->separate_debug_objfile_backlink)
14977 objfile = objfile->separate_debug_objfile_backlink;
14978
14979 return objfile;
14980 }
14981
14982 /* Return the address size given in the compilation unit header for CU. */
14983
14984 CORE_ADDR
14985 dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
14986 {
14987 if (per_cu->cu)
14988 return per_cu->cu->header.addr_size;
14989 else
14990 {
14991 /* If the CU is not currently read in, we re-read its header. */
14992 struct objfile *objfile = per_cu->objfile;
14993 struct dwarf2_per_objfile *per_objfile
14994 = objfile_data (objfile, dwarf2_objfile_data_key);
14995 gdb_byte *info_ptr = per_objfile->info.buffer + per_cu->offset;
14996 struct comp_unit_head cu_header;
14997
14998 memset (&cu_header, 0, sizeof cu_header);
14999 read_comp_unit_head (&cu_header, info_ptr, objfile->obfd);
15000 return cu_header.addr_size;
15001 }
15002 }
15003
15004 /* Return the offset size given in the compilation unit header for CU. */
15005
15006 int
15007 dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
15008 {
15009 if (per_cu->cu)
15010 return per_cu->cu->header.offset_size;
15011 else
15012 {
15013 /* If the CU is not currently read in, we re-read its header. */
15014 struct objfile *objfile = per_cu->objfile;
15015 struct dwarf2_per_objfile *per_objfile
15016 = objfile_data (objfile, dwarf2_objfile_data_key);
15017 gdb_byte *info_ptr = per_objfile->info.buffer + per_cu->offset;
15018 struct comp_unit_head cu_header;
15019
15020 memset (&cu_header, 0, sizeof cu_header);
15021 read_comp_unit_head (&cu_header, info_ptr, objfile->obfd);
15022 return cu_header.offset_size;
15023 }
15024 }
15025
15026 /* Return the text offset of the CU. The returned offset comes from
15027 this CU's objfile. If this objfile came from a separate debuginfo
15028 file, then the offset may be different from the corresponding
15029 offset in the parent objfile. */
15030
15031 CORE_ADDR
15032 dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
15033 {
15034 struct objfile *objfile = per_cu->objfile;
15035
15036 return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
15037 }
15038
15039 /* Locate the .debug_info compilation unit from CU's objfile which contains
15040 the DIE at OFFSET. Raises an error on failure. */
15041
15042 static struct dwarf2_per_cu_data *
15043 dwarf2_find_containing_comp_unit (unsigned int offset,
15044 struct objfile *objfile)
15045 {
15046 struct dwarf2_per_cu_data *this_cu;
15047 int low, high;
15048
15049 low = 0;
15050 high = dwarf2_per_objfile->n_comp_units - 1;
15051 while (high > low)
15052 {
15053 int mid = low + (high - low) / 2;
15054
15055 if (dwarf2_per_objfile->all_comp_units[mid]->offset >= offset)
15056 high = mid;
15057 else
15058 low = mid + 1;
15059 }
15060 gdb_assert (low == high);
15061 if (dwarf2_per_objfile->all_comp_units[low]->offset > offset)
15062 {
15063 if (low == 0)
15064 error (_("Dwarf Error: could not find partial DIE containing "
15065 "offset 0x%lx [in module %s]"),
15066 (long) offset, bfd_get_filename (objfile->obfd));
15067
15068 gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset <= offset);
15069 return dwarf2_per_objfile->all_comp_units[low-1];
15070 }
15071 else
15072 {
15073 this_cu = dwarf2_per_objfile->all_comp_units[low];
15074 if (low == dwarf2_per_objfile->n_comp_units - 1
15075 && offset >= this_cu->offset + this_cu->length)
15076 error (_("invalid dwarf2 offset %u"), offset);
15077 gdb_assert (offset < this_cu->offset + this_cu->length);
15078 return this_cu;
15079 }
15080 }
15081
15082 /* Locate the compilation unit from OBJFILE which is located at exactly
15083 OFFSET. Raises an error on failure. */
15084
15085 static struct dwarf2_per_cu_data *
15086 dwarf2_find_comp_unit (unsigned int offset, struct objfile *objfile)
15087 {
15088 struct dwarf2_per_cu_data *this_cu;
15089
15090 this_cu = dwarf2_find_containing_comp_unit (offset, objfile);
15091 if (this_cu->offset != offset)
15092 error (_("no compilation unit with offset %u."), offset);
15093 return this_cu;
15094 }
15095
15096 /* Initialize dwarf2_cu CU for OBJFILE in a pre-allocated space. */
15097
15098 static void
15099 init_one_comp_unit (struct dwarf2_cu *cu, struct objfile *objfile)
15100 {
15101 memset (cu, 0, sizeof (*cu));
15102 cu->objfile = objfile;
15103 obstack_init (&cu->comp_unit_obstack);
15104 }
15105
15106 /* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE. */
15107
15108 static void
15109 prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die)
15110 {
15111 struct attribute *attr;
15112
15113 /* Set the language we're debugging. */
15114 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
15115 if (attr)
15116 set_cu_language (DW_UNSND (attr), cu);
15117 else
15118 {
15119 cu->language = language_minimal;
15120 cu->language_defn = language_def (cu->language);
15121 }
15122 }
15123
15124 /* Release one cached compilation unit, CU. We unlink it from the tree
15125 of compilation units, but we don't remove it from the read_in_chain;
15126 the caller is responsible for that.
15127 NOTE: DATA is a void * because this function is also used as a
15128 cleanup routine. */
15129
15130 static void
15131 free_one_comp_unit (void *data)
15132 {
15133 struct dwarf2_cu *cu = data;
15134
15135 if (cu->per_cu != NULL)
15136 cu->per_cu->cu = NULL;
15137 cu->per_cu = NULL;
15138
15139 obstack_free (&cu->comp_unit_obstack, NULL);
15140
15141 xfree (cu);
15142 }
15143
15144 /* This cleanup function is passed the address of a dwarf2_cu on the stack
15145 when we're finished with it. We can't free the pointer itself, but be
15146 sure to unlink it from the cache. Also release any associated storage
15147 and perform cache maintenance.
15148
15149 Only used during partial symbol parsing. */
15150
15151 static void
15152 free_stack_comp_unit (void *data)
15153 {
15154 struct dwarf2_cu *cu = data;
15155
15156 obstack_free (&cu->comp_unit_obstack, NULL);
15157 cu->partial_dies = NULL;
15158
15159 if (cu->per_cu != NULL)
15160 {
15161 /* This compilation unit is on the stack in our caller, so we
15162 should not xfree it. Just unlink it. */
15163 cu->per_cu->cu = NULL;
15164 cu->per_cu = NULL;
15165
15166 /* If we had a per-cu pointer, then we may have other compilation
15167 units loaded, so age them now. */
15168 age_cached_comp_units ();
15169 }
15170 }
15171
15172 /* Free all cached compilation units. */
15173
15174 static void
15175 free_cached_comp_units (void *data)
15176 {
15177 struct dwarf2_per_cu_data *per_cu, **last_chain;
15178
15179 per_cu = dwarf2_per_objfile->read_in_chain;
15180 last_chain = &dwarf2_per_objfile->read_in_chain;
15181 while (per_cu != NULL)
15182 {
15183 struct dwarf2_per_cu_data *next_cu;
15184
15185 next_cu = per_cu->cu->read_in_chain;
15186
15187 free_one_comp_unit (per_cu->cu);
15188 *last_chain = next_cu;
15189
15190 per_cu = next_cu;
15191 }
15192 }
15193
15194 /* Increase the age counter on each cached compilation unit, and free
15195 any that are too old. */
15196
15197 static void
15198 age_cached_comp_units (void)
15199 {
15200 struct dwarf2_per_cu_data *per_cu, **last_chain;
15201
15202 dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
15203 per_cu = dwarf2_per_objfile->read_in_chain;
15204 while (per_cu != NULL)
15205 {
15206 per_cu->cu->last_used ++;
15207 if (per_cu->cu->last_used <= dwarf2_max_cache_age)
15208 dwarf2_mark (per_cu->cu);
15209 per_cu = per_cu->cu->read_in_chain;
15210 }
15211
15212 per_cu = dwarf2_per_objfile->read_in_chain;
15213 last_chain = &dwarf2_per_objfile->read_in_chain;
15214 while (per_cu != NULL)
15215 {
15216 struct dwarf2_per_cu_data *next_cu;
15217
15218 next_cu = per_cu->cu->read_in_chain;
15219
15220 if (!per_cu->cu->mark)
15221 {
15222 free_one_comp_unit (per_cu->cu);
15223 *last_chain = next_cu;
15224 }
15225 else
15226 last_chain = &per_cu->cu->read_in_chain;
15227
15228 per_cu = next_cu;
15229 }
15230 }
15231
15232 /* Remove a single compilation unit from the cache. */
15233
15234 static void
15235 free_one_cached_comp_unit (void *target_cu)
15236 {
15237 struct dwarf2_per_cu_data *per_cu, **last_chain;
15238
15239 per_cu = dwarf2_per_objfile->read_in_chain;
15240 last_chain = &dwarf2_per_objfile->read_in_chain;
15241 while (per_cu != NULL)
15242 {
15243 struct dwarf2_per_cu_data *next_cu;
15244
15245 next_cu = per_cu->cu->read_in_chain;
15246
15247 if (per_cu->cu == target_cu)
15248 {
15249 free_one_comp_unit (per_cu->cu);
15250 *last_chain = next_cu;
15251 break;
15252 }
15253 else
15254 last_chain = &per_cu->cu->read_in_chain;
15255
15256 per_cu = next_cu;
15257 }
15258 }
15259
15260 /* Release all extra memory associated with OBJFILE. */
15261
15262 void
15263 dwarf2_free_objfile (struct objfile *objfile)
15264 {
15265 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
15266
15267 if (dwarf2_per_objfile == NULL)
15268 return;
15269
15270 /* Cached DIE trees use xmalloc and the comp_unit_obstack. */
15271 free_cached_comp_units (NULL);
15272
15273 if (dwarf2_per_objfile->quick_file_names_table)
15274 htab_delete (dwarf2_per_objfile->quick_file_names_table);
15275
15276 /* Everything else should be on the objfile obstack. */
15277 }
15278
15279 /* A pair of DIE offset and GDB type pointer. We store these
15280 in a hash table separate from the DIEs, and preserve them
15281 when the DIEs are flushed out of cache. */
15282
15283 struct dwarf2_offset_and_type
15284 {
15285 unsigned int offset;
15286 struct type *type;
15287 };
15288
15289 /* Hash function for a dwarf2_offset_and_type. */
15290
15291 static hashval_t
15292 offset_and_type_hash (const void *item)
15293 {
15294 const struct dwarf2_offset_and_type *ofs = item;
15295
15296 return ofs->offset;
15297 }
15298
15299 /* Equality function for a dwarf2_offset_and_type. */
15300
15301 static int
15302 offset_and_type_eq (const void *item_lhs, const void *item_rhs)
15303 {
15304 const struct dwarf2_offset_and_type *ofs_lhs = item_lhs;
15305 const struct dwarf2_offset_and_type *ofs_rhs = item_rhs;
15306
15307 return ofs_lhs->offset == ofs_rhs->offset;
15308 }
15309
15310 /* Set the type associated with DIE to TYPE. Save it in CU's hash
15311 table if necessary. For convenience, return TYPE.
15312
15313 The DIEs reading must have careful ordering to:
15314 * Not cause infite loops trying to read in DIEs as a prerequisite for
15315 reading current DIE.
15316 * Not trying to dereference contents of still incompletely read in types
15317 while reading in other DIEs.
15318 * Enable referencing still incompletely read in types just by a pointer to
15319 the type without accessing its fields.
15320
15321 Therefore caller should follow these rules:
15322 * Try to fetch any prerequisite types we may need to build this DIE type
15323 before building the type and calling set_die_type.
15324 * After building type call set_die_type for current DIE as soon as
15325 possible before fetching more types to complete the current type.
15326 * Make the type as complete as possible before fetching more types. */
15327
15328 static struct type *
15329 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
15330 {
15331 struct dwarf2_offset_and_type **slot, ofs;
15332 struct objfile *objfile = cu->objfile;
15333 htab_t *type_hash_ptr;
15334
15335 /* For Ada types, make sure that the gnat-specific data is always
15336 initialized (if not already set). There are a few types where
15337 we should not be doing so, because the type-specific area is
15338 already used to hold some other piece of info (eg: TYPE_CODE_FLT
15339 where the type-specific area is used to store the floatformat).
15340 But this is not a problem, because the gnat-specific information
15341 is actually not needed for these types. */
15342 if (need_gnat_info (cu)
15343 && TYPE_CODE (type) != TYPE_CODE_FUNC
15344 && TYPE_CODE (type) != TYPE_CODE_FLT
15345 && !HAVE_GNAT_AUX_INFO (type))
15346 INIT_GNAT_SPECIFIC (type);
15347
15348 if (cu->per_cu->from_debug_types)
15349 type_hash_ptr = &dwarf2_per_objfile->debug_types_type_hash;
15350 else
15351 type_hash_ptr = &dwarf2_per_objfile->debug_info_type_hash;
15352
15353 if (*type_hash_ptr == NULL)
15354 {
15355 *type_hash_ptr
15356 = htab_create_alloc_ex (127,
15357 offset_and_type_hash,
15358 offset_and_type_eq,
15359 NULL,
15360 &objfile->objfile_obstack,
15361 hashtab_obstack_allocate,
15362 dummy_obstack_deallocate);
15363 }
15364
15365 ofs.offset = die->offset;
15366 ofs.type = type;
15367 slot = (struct dwarf2_offset_and_type **)
15368 htab_find_slot_with_hash (*type_hash_ptr, &ofs, ofs.offset, INSERT);
15369 if (*slot)
15370 complaint (&symfile_complaints,
15371 _("A problem internal to GDB: DIE 0x%x has type already set"),
15372 die->offset);
15373 *slot = obstack_alloc (&objfile->objfile_obstack, sizeof (**slot));
15374 **slot = ofs;
15375 return type;
15376 }
15377
15378 /* Look up the type for the die at DIE_OFFSET in the appropriate type_hash
15379 table, or return NULL if the die does not have a saved type. */
15380
15381 static struct type *
15382 get_die_type_at_offset (unsigned int offset,
15383 struct dwarf2_per_cu_data *per_cu)
15384 {
15385 struct dwarf2_offset_and_type *slot, ofs;
15386 htab_t type_hash;
15387
15388 if (per_cu->from_debug_types)
15389 type_hash = dwarf2_per_objfile->debug_types_type_hash;
15390 else
15391 type_hash = dwarf2_per_objfile->debug_info_type_hash;
15392 if (type_hash == NULL)
15393 return NULL;
15394
15395 ofs.offset = offset;
15396 slot = htab_find_with_hash (type_hash, &ofs, ofs.offset);
15397 if (slot)
15398 return slot->type;
15399 else
15400 return NULL;
15401 }
15402
15403 /* Look up the type for DIE in the appropriate type_hash table,
15404 or return NULL if DIE does not have a saved type. */
15405
15406 static struct type *
15407 get_die_type (struct die_info *die, struct dwarf2_cu *cu)
15408 {
15409 return get_die_type_at_offset (die->offset, cu->per_cu);
15410 }
15411
15412 /* Add a dependence relationship from CU to REF_PER_CU. */
15413
15414 static void
15415 dwarf2_add_dependence (struct dwarf2_cu *cu,
15416 struct dwarf2_per_cu_data *ref_per_cu)
15417 {
15418 void **slot;
15419
15420 if (cu->dependencies == NULL)
15421 cu->dependencies
15422 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
15423 NULL, &cu->comp_unit_obstack,
15424 hashtab_obstack_allocate,
15425 dummy_obstack_deallocate);
15426
15427 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
15428 if (*slot == NULL)
15429 *slot = ref_per_cu;
15430 }
15431
15432 /* Subroutine of dwarf2_mark to pass to htab_traverse.
15433 Set the mark field in every compilation unit in the
15434 cache that we must keep because we are keeping CU. */
15435
15436 static int
15437 dwarf2_mark_helper (void **slot, void *data)
15438 {
15439 struct dwarf2_per_cu_data *per_cu;
15440
15441 per_cu = (struct dwarf2_per_cu_data *) *slot;
15442 if (per_cu->cu->mark)
15443 return 1;
15444 per_cu->cu->mark = 1;
15445
15446 if (per_cu->cu->dependencies != NULL)
15447 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
15448
15449 return 1;
15450 }
15451
15452 /* Set the mark field in CU and in every other compilation unit in the
15453 cache that we must keep because we are keeping CU. */
15454
15455 static void
15456 dwarf2_mark (struct dwarf2_cu *cu)
15457 {
15458 if (cu->mark)
15459 return;
15460 cu->mark = 1;
15461 if (cu->dependencies != NULL)
15462 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
15463 }
15464
15465 static void
15466 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
15467 {
15468 while (per_cu)
15469 {
15470 per_cu->cu->mark = 0;
15471 per_cu = per_cu->cu->read_in_chain;
15472 }
15473 }
15474
15475 /* Trivial hash function for partial_die_info: the hash value of a DIE
15476 is its offset in .debug_info for this objfile. */
15477
15478 static hashval_t
15479 partial_die_hash (const void *item)
15480 {
15481 const struct partial_die_info *part_die = item;
15482
15483 return part_die->offset;
15484 }
15485
15486 /* Trivial comparison function for partial_die_info structures: two DIEs
15487 are equal if they have the same offset. */
15488
15489 static int
15490 partial_die_eq (const void *item_lhs, const void *item_rhs)
15491 {
15492 const struct partial_die_info *part_die_lhs = item_lhs;
15493 const struct partial_die_info *part_die_rhs = item_rhs;
15494
15495 return part_die_lhs->offset == part_die_rhs->offset;
15496 }
15497
15498 static struct cmd_list_element *set_dwarf2_cmdlist;
15499 static struct cmd_list_element *show_dwarf2_cmdlist;
15500
15501 static void
15502 set_dwarf2_cmd (char *args, int from_tty)
15503 {
15504 help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout);
15505 }
15506
15507 static void
15508 show_dwarf2_cmd (char *args, int from_tty)
15509 {
15510 cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
15511 }
15512
15513 /* If section described by INFO was mmapped, munmap it now. */
15514
15515 static void
15516 munmap_section_buffer (struct dwarf2_section_info *info)
15517 {
15518 if (info->map_addr != NULL)
15519 {
15520 #ifdef HAVE_MMAP
15521 int res;
15522
15523 res = munmap (info->map_addr, info->map_len);
15524 gdb_assert (res == 0);
15525 #else
15526 /* Without HAVE_MMAP, we should never be here to begin with. */
15527 gdb_assert_not_reached ("no mmap support");
15528 #endif
15529 }
15530 }
15531
15532 /* munmap debug sections for OBJFILE, if necessary. */
15533
15534 static void
15535 dwarf2_per_objfile_free (struct objfile *objfile, void *d)
15536 {
15537 struct dwarf2_per_objfile *data = d;
15538
15539 /* This is sorted according to the order they're defined in to make it easier
15540 to keep in sync. */
15541 munmap_section_buffer (&data->info);
15542 munmap_section_buffer (&data->abbrev);
15543 munmap_section_buffer (&data->line);
15544 munmap_section_buffer (&data->loc);
15545 munmap_section_buffer (&data->macinfo);
15546 munmap_section_buffer (&data->str);
15547 munmap_section_buffer (&data->ranges);
15548 munmap_section_buffer (&data->types);
15549 munmap_section_buffer (&data->frame);
15550 munmap_section_buffer (&data->eh_frame);
15551 munmap_section_buffer (&data->gdb_index);
15552 }
15553
15554 \f
15555 /* The "save gdb-index" command. */
15556
15557 /* The contents of the hash table we create when building the string
15558 table. */
15559 struct strtab_entry
15560 {
15561 offset_type offset;
15562 const char *str;
15563 };
15564
15565 /* Hash function for a strtab_entry.
15566
15567 Function is used only during write_hash_table so no index format backward
15568 compatibility is needed. */
15569
15570 static hashval_t
15571 hash_strtab_entry (const void *e)
15572 {
15573 const struct strtab_entry *entry = e;
15574 return mapped_index_string_hash (INT_MAX, entry->str);
15575 }
15576
15577 /* Equality function for a strtab_entry. */
15578
15579 static int
15580 eq_strtab_entry (const void *a, const void *b)
15581 {
15582 const struct strtab_entry *ea = a;
15583 const struct strtab_entry *eb = b;
15584 return !strcmp (ea->str, eb->str);
15585 }
15586
15587 /* Create a strtab_entry hash table. */
15588
15589 static htab_t
15590 create_strtab (void)
15591 {
15592 return htab_create_alloc (100, hash_strtab_entry, eq_strtab_entry,
15593 xfree, xcalloc, xfree);
15594 }
15595
15596 /* Add a string to the constant pool. Return the string's offset in
15597 host order. */
15598
15599 static offset_type
15600 add_string (htab_t table, struct obstack *cpool, const char *str)
15601 {
15602 void **slot;
15603 struct strtab_entry entry;
15604 struct strtab_entry *result;
15605
15606 entry.str = str;
15607 slot = htab_find_slot (table, &entry, INSERT);
15608 if (*slot)
15609 result = *slot;
15610 else
15611 {
15612 result = XNEW (struct strtab_entry);
15613 result->offset = obstack_object_size (cpool);
15614 result->str = str;
15615 obstack_grow_str0 (cpool, str);
15616 *slot = result;
15617 }
15618 return result->offset;
15619 }
15620
15621 /* An entry in the symbol table. */
15622 struct symtab_index_entry
15623 {
15624 /* The name of the symbol. */
15625 const char *name;
15626 /* The offset of the name in the constant pool. */
15627 offset_type index_offset;
15628 /* A sorted vector of the indices of all the CUs that hold an object
15629 of this name. */
15630 VEC (offset_type) *cu_indices;
15631 };
15632
15633 /* The symbol table. This is a power-of-2-sized hash table. */
15634 struct mapped_symtab
15635 {
15636 offset_type n_elements;
15637 offset_type size;
15638 struct symtab_index_entry **data;
15639 };
15640
15641 /* Hash function for a symtab_index_entry. */
15642
15643 static hashval_t
15644 hash_symtab_entry (const void *e)
15645 {
15646 const struct symtab_index_entry *entry = e;
15647 return iterative_hash (VEC_address (offset_type, entry->cu_indices),
15648 sizeof (offset_type) * VEC_length (offset_type,
15649 entry->cu_indices),
15650 0);
15651 }
15652
15653 /* Equality function for a symtab_index_entry. */
15654
15655 static int
15656 eq_symtab_entry (const void *a, const void *b)
15657 {
15658 const struct symtab_index_entry *ea = a;
15659 const struct symtab_index_entry *eb = b;
15660 int len = VEC_length (offset_type, ea->cu_indices);
15661 if (len != VEC_length (offset_type, eb->cu_indices))
15662 return 0;
15663 return !memcmp (VEC_address (offset_type, ea->cu_indices),
15664 VEC_address (offset_type, eb->cu_indices),
15665 sizeof (offset_type) * len);
15666 }
15667
15668 /* Destroy a symtab_index_entry. */
15669
15670 static void
15671 delete_symtab_entry (void *p)
15672 {
15673 struct symtab_index_entry *entry = p;
15674 VEC_free (offset_type, entry->cu_indices);
15675 xfree (entry);
15676 }
15677
15678 /* Create a hash table holding symtab_index_entry objects. */
15679
15680 static htab_t
15681 create_symbol_hash_table (void)
15682 {
15683 return htab_create_alloc (100, hash_symtab_entry, eq_symtab_entry,
15684 delete_symtab_entry, xcalloc, xfree);
15685 }
15686
15687 /* Create a new mapped symtab object. */
15688
15689 static struct mapped_symtab *
15690 create_mapped_symtab (void)
15691 {
15692 struct mapped_symtab *symtab = XNEW (struct mapped_symtab);
15693 symtab->n_elements = 0;
15694 symtab->size = 1024;
15695 symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
15696 return symtab;
15697 }
15698
15699 /* Destroy a mapped_symtab. */
15700
15701 static void
15702 cleanup_mapped_symtab (void *p)
15703 {
15704 struct mapped_symtab *symtab = p;
15705 /* The contents of the array are freed when the other hash table is
15706 destroyed. */
15707 xfree (symtab->data);
15708 xfree (symtab);
15709 }
15710
15711 /* Find a slot in SYMTAB for the symbol NAME. Returns a pointer to
15712 the slot.
15713
15714 Function is used only during write_hash_table so no index format backward
15715 compatibility is needed. */
15716
15717 static struct symtab_index_entry **
15718 find_slot (struct mapped_symtab *symtab, const char *name)
15719 {
15720 offset_type index, step, hash = mapped_index_string_hash (INT_MAX, name);
15721
15722 index = hash & (symtab->size - 1);
15723 step = ((hash * 17) & (symtab->size - 1)) | 1;
15724
15725 for (;;)
15726 {
15727 if (!symtab->data[index] || !strcmp (name, symtab->data[index]->name))
15728 return &symtab->data[index];
15729 index = (index + step) & (symtab->size - 1);
15730 }
15731 }
15732
15733 /* Expand SYMTAB's hash table. */
15734
15735 static void
15736 hash_expand (struct mapped_symtab *symtab)
15737 {
15738 offset_type old_size = symtab->size;
15739 offset_type i;
15740 struct symtab_index_entry **old_entries = symtab->data;
15741
15742 symtab->size *= 2;
15743 symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
15744
15745 for (i = 0; i < old_size; ++i)
15746 {
15747 if (old_entries[i])
15748 {
15749 struct symtab_index_entry **slot = find_slot (symtab,
15750 old_entries[i]->name);
15751 *slot = old_entries[i];
15752 }
15753 }
15754
15755 xfree (old_entries);
15756 }
15757
15758 /* Add an entry to SYMTAB. NAME is the name of the symbol. CU_INDEX
15759 is the index of the CU in which the symbol appears. */
15760
15761 static void
15762 add_index_entry (struct mapped_symtab *symtab, const char *name,
15763 offset_type cu_index)
15764 {
15765 struct symtab_index_entry **slot;
15766
15767 ++symtab->n_elements;
15768 if (4 * symtab->n_elements / 3 >= symtab->size)
15769 hash_expand (symtab);
15770
15771 slot = find_slot (symtab, name);
15772 if (!*slot)
15773 {
15774 *slot = XNEW (struct symtab_index_entry);
15775 (*slot)->name = name;
15776 (*slot)->cu_indices = NULL;
15777 }
15778 /* Don't push an index twice. Due to how we add entries we only
15779 have to check the last one. */
15780 if (VEC_empty (offset_type, (*slot)->cu_indices)
15781 || VEC_last (offset_type, (*slot)->cu_indices) != cu_index)
15782 VEC_safe_push (offset_type, (*slot)->cu_indices, cu_index);
15783 }
15784
15785 /* Add a vector of indices to the constant pool. */
15786
15787 static offset_type
15788 add_indices_to_cpool (htab_t symbol_hash_table, struct obstack *cpool,
15789 struct symtab_index_entry *entry)
15790 {
15791 void **slot;
15792
15793 slot = htab_find_slot (symbol_hash_table, entry, INSERT);
15794 if (!*slot)
15795 {
15796 offset_type len = VEC_length (offset_type, entry->cu_indices);
15797 offset_type val = MAYBE_SWAP (len);
15798 offset_type iter;
15799 int i;
15800
15801 *slot = entry;
15802 entry->index_offset = obstack_object_size (cpool);
15803
15804 obstack_grow (cpool, &val, sizeof (val));
15805 for (i = 0;
15806 VEC_iterate (offset_type, entry->cu_indices, i, iter);
15807 ++i)
15808 {
15809 val = MAYBE_SWAP (iter);
15810 obstack_grow (cpool, &val, sizeof (val));
15811 }
15812 }
15813 else
15814 {
15815 struct symtab_index_entry *old_entry = *slot;
15816 entry->index_offset = old_entry->index_offset;
15817 entry = old_entry;
15818 }
15819 return entry->index_offset;
15820 }
15821
15822 /* Write the mapped hash table SYMTAB to the obstack OUTPUT, with
15823 constant pool entries going into the obstack CPOOL. */
15824
15825 static void
15826 write_hash_table (struct mapped_symtab *symtab,
15827 struct obstack *output, struct obstack *cpool)
15828 {
15829 offset_type i;
15830 htab_t symbol_hash_table;
15831 htab_t str_table;
15832
15833 symbol_hash_table = create_symbol_hash_table ();
15834 str_table = create_strtab ();
15835
15836 /* We add all the index vectors to the constant pool first, to
15837 ensure alignment is ok. */
15838 for (i = 0; i < symtab->size; ++i)
15839 {
15840 if (symtab->data[i])
15841 add_indices_to_cpool (symbol_hash_table, cpool, symtab->data[i]);
15842 }
15843
15844 /* Now write out the hash table. */
15845 for (i = 0; i < symtab->size; ++i)
15846 {
15847 offset_type str_off, vec_off;
15848
15849 if (symtab->data[i])
15850 {
15851 str_off = add_string (str_table, cpool, symtab->data[i]->name);
15852 vec_off = symtab->data[i]->index_offset;
15853 }
15854 else
15855 {
15856 /* While 0 is a valid constant pool index, it is not valid
15857 to have 0 for both offsets. */
15858 str_off = 0;
15859 vec_off = 0;
15860 }
15861
15862 str_off = MAYBE_SWAP (str_off);
15863 vec_off = MAYBE_SWAP (vec_off);
15864
15865 obstack_grow (output, &str_off, sizeof (str_off));
15866 obstack_grow (output, &vec_off, sizeof (vec_off));
15867 }
15868
15869 htab_delete (str_table);
15870 htab_delete (symbol_hash_table);
15871 }
15872
15873 /* Struct to map psymtab to CU index in the index file. */
15874 struct psymtab_cu_index_map
15875 {
15876 struct partial_symtab *psymtab;
15877 unsigned int cu_index;
15878 };
15879
15880 static hashval_t
15881 hash_psymtab_cu_index (const void *item)
15882 {
15883 const struct psymtab_cu_index_map *map = item;
15884
15885 return htab_hash_pointer (map->psymtab);
15886 }
15887
15888 static int
15889 eq_psymtab_cu_index (const void *item_lhs, const void *item_rhs)
15890 {
15891 const struct psymtab_cu_index_map *lhs = item_lhs;
15892 const struct psymtab_cu_index_map *rhs = item_rhs;
15893
15894 return lhs->psymtab == rhs->psymtab;
15895 }
15896
15897 /* Helper struct for building the address table. */
15898 struct addrmap_index_data
15899 {
15900 struct objfile *objfile;
15901 struct obstack *addr_obstack;
15902 htab_t cu_index_htab;
15903
15904 /* Non-zero if the previous_* fields are valid.
15905 We can't write an entry until we see the next entry (since it is only then
15906 that we know the end of the entry). */
15907 int previous_valid;
15908 /* Index of the CU in the table of all CUs in the index file. */
15909 unsigned int previous_cu_index;
15910 /* Start address of the CU. */
15911 CORE_ADDR previous_cu_start;
15912 };
15913
15914 /* Write an address entry to OBSTACK. */
15915
15916 static void
15917 add_address_entry (struct objfile *objfile, struct obstack *obstack,
15918 CORE_ADDR start, CORE_ADDR end, unsigned int cu_index)
15919 {
15920 offset_type cu_index_to_write;
15921 char addr[8];
15922 CORE_ADDR baseaddr;
15923
15924 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
15925
15926 store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, start - baseaddr);
15927 obstack_grow (obstack, addr, 8);
15928 store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, end - baseaddr);
15929 obstack_grow (obstack, addr, 8);
15930 cu_index_to_write = MAYBE_SWAP (cu_index);
15931 obstack_grow (obstack, &cu_index_to_write, sizeof (offset_type));
15932 }
15933
15934 /* Worker function for traversing an addrmap to build the address table. */
15935
15936 static int
15937 add_address_entry_worker (void *datap, CORE_ADDR start_addr, void *obj)
15938 {
15939 struct addrmap_index_data *data = datap;
15940 struct partial_symtab *pst = obj;
15941 offset_type cu_index;
15942 void **slot;
15943
15944 if (data->previous_valid)
15945 add_address_entry (data->objfile, data->addr_obstack,
15946 data->previous_cu_start, start_addr,
15947 data->previous_cu_index);
15948
15949 data->previous_cu_start = start_addr;
15950 if (pst != NULL)
15951 {
15952 struct psymtab_cu_index_map find_map, *map;
15953 find_map.psymtab = pst;
15954 map = htab_find (data->cu_index_htab, &find_map);
15955 gdb_assert (map != NULL);
15956 data->previous_cu_index = map->cu_index;
15957 data->previous_valid = 1;
15958 }
15959 else
15960 data->previous_valid = 0;
15961
15962 return 0;
15963 }
15964
15965 /* Write OBJFILE's address map to OBSTACK.
15966 CU_INDEX_HTAB is used to map addrmap entries to their CU indices
15967 in the index file. */
15968
15969 static void
15970 write_address_map (struct objfile *objfile, struct obstack *obstack,
15971 htab_t cu_index_htab)
15972 {
15973 struct addrmap_index_data addrmap_index_data;
15974
15975 /* When writing the address table, we have to cope with the fact that
15976 the addrmap iterator only provides the start of a region; we have to
15977 wait until the next invocation to get the start of the next region. */
15978
15979 addrmap_index_data.objfile = objfile;
15980 addrmap_index_data.addr_obstack = obstack;
15981 addrmap_index_data.cu_index_htab = cu_index_htab;
15982 addrmap_index_data.previous_valid = 0;
15983
15984 addrmap_foreach (objfile->psymtabs_addrmap, add_address_entry_worker,
15985 &addrmap_index_data);
15986
15987 /* It's highly unlikely the last entry (end address = 0xff...ff)
15988 is valid, but we should still handle it.
15989 The end address is recorded as the start of the next region, but that
15990 doesn't work here. To cope we pass 0xff...ff, this is a rare situation
15991 anyway. */
15992 if (addrmap_index_data.previous_valid)
15993 add_address_entry (objfile, obstack,
15994 addrmap_index_data.previous_cu_start, (CORE_ADDR) -1,
15995 addrmap_index_data.previous_cu_index);
15996 }
15997
15998 /* Add a list of partial symbols to SYMTAB. */
15999
16000 static void
16001 write_psymbols (struct mapped_symtab *symtab,
16002 htab_t psyms_seen,
16003 struct partial_symbol **psymp,
16004 int count,
16005 offset_type cu_index,
16006 int is_static)
16007 {
16008 for (; count-- > 0; ++psymp)
16009 {
16010 void **slot, *lookup;
16011
16012 if (SYMBOL_LANGUAGE (*psymp) == language_ada)
16013 error (_("Ada is not currently supported by the index"));
16014
16015 /* We only want to add a given psymbol once. However, we also
16016 want to account for whether it is global or static. So, we
16017 may add it twice, using slightly different values. */
16018 if (is_static)
16019 {
16020 uintptr_t val = 1 | (uintptr_t) *psymp;
16021
16022 lookup = (void *) val;
16023 }
16024 else
16025 lookup = *psymp;
16026
16027 /* Only add a given psymbol once. */
16028 slot = htab_find_slot (psyms_seen, lookup, INSERT);
16029 if (!*slot)
16030 {
16031 *slot = lookup;
16032 add_index_entry (symtab, SYMBOL_NATURAL_NAME (*psymp), cu_index);
16033 }
16034 }
16035 }
16036
16037 /* Write the contents of an ("unfinished") obstack to FILE. Throw an
16038 exception if there is an error. */
16039
16040 static void
16041 write_obstack (FILE *file, struct obstack *obstack)
16042 {
16043 if (fwrite (obstack_base (obstack), 1, obstack_object_size (obstack),
16044 file)
16045 != obstack_object_size (obstack))
16046 error (_("couldn't data write to file"));
16047 }
16048
16049 /* Unlink a file if the argument is not NULL. */
16050
16051 static void
16052 unlink_if_set (void *p)
16053 {
16054 char **filename = p;
16055 if (*filename)
16056 unlink (*filename);
16057 }
16058
16059 /* A helper struct used when iterating over debug_types. */
16060 struct signatured_type_index_data
16061 {
16062 struct objfile *objfile;
16063 struct mapped_symtab *symtab;
16064 struct obstack *types_list;
16065 htab_t psyms_seen;
16066 int cu_index;
16067 };
16068
16069 /* A helper function that writes a single signatured_type to an
16070 obstack. */
16071
16072 static int
16073 write_one_signatured_type (void **slot, void *d)
16074 {
16075 struct signatured_type_index_data *info = d;
16076 struct signatured_type *entry = (struct signatured_type *) *slot;
16077 struct dwarf2_per_cu_data *per_cu = &entry->per_cu;
16078 struct partial_symtab *psymtab = per_cu->v.psymtab;
16079 gdb_byte val[8];
16080
16081 write_psymbols (info->symtab,
16082 info->psyms_seen,
16083 info->objfile->global_psymbols.list
16084 + psymtab->globals_offset,
16085 psymtab->n_global_syms, info->cu_index,
16086 0);
16087 write_psymbols (info->symtab,
16088 info->psyms_seen,
16089 info->objfile->static_psymbols.list
16090 + psymtab->statics_offset,
16091 psymtab->n_static_syms, info->cu_index,
16092 1);
16093
16094 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->per_cu.offset);
16095 obstack_grow (info->types_list, val, 8);
16096 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->type_offset);
16097 obstack_grow (info->types_list, val, 8);
16098 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->signature);
16099 obstack_grow (info->types_list, val, 8);
16100
16101 ++info->cu_index;
16102
16103 return 1;
16104 }
16105
16106 /* A cleanup function for an htab_t. */
16107
16108 static void
16109 cleanup_htab (void *arg)
16110 {
16111 htab_delete (arg);
16112 }
16113
16114 /* Create an index file for OBJFILE in the directory DIR. */
16115
16116 static void
16117 write_psymtabs_to_index (struct objfile *objfile, const char *dir)
16118 {
16119 struct cleanup *cleanup;
16120 char *filename, *cleanup_filename;
16121 struct obstack contents, addr_obstack, constant_pool, symtab_obstack;
16122 struct obstack cu_list, types_cu_list;
16123 int i;
16124 FILE *out_file;
16125 struct mapped_symtab *symtab;
16126 offset_type val, size_of_contents, total_len;
16127 struct stat st;
16128 char buf[8];
16129 htab_t psyms_seen;
16130 htab_t cu_index_htab;
16131 struct psymtab_cu_index_map *psymtab_cu_index_map;
16132
16133 if (!objfile->psymtabs || !objfile->psymtabs_addrmap)
16134 return;
16135
16136 if (dwarf2_per_objfile->using_index)
16137 error (_("Cannot use an index to create the index"));
16138
16139 if (stat (objfile->name, &st) < 0)
16140 perror_with_name (objfile->name);
16141
16142 filename = concat (dir, SLASH_STRING, lbasename (objfile->name),
16143 INDEX_SUFFIX, (char *) NULL);
16144 cleanup = make_cleanup (xfree, filename);
16145
16146 out_file = fopen (filename, "wb");
16147 if (!out_file)
16148 error (_("Can't open `%s' for writing"), filename);
16149
16150 cleanup_filename = filename;
16151 make_cleanup (unlink_if_set, &cleanup_filename);
16152
16153 symtab = create_mapped_symtab ();
16154 make_cleanup (cleanup_mapped_symtab, symtab);
16155
16156 obstack_init (&addr_obstack);
16157 make_cleanup_obstack_free (&addr_obstack);
16158
16159 obstack_init (&cu_list);
16160 make_cleanup_obstack_free (&cu_list);
16161
16162 obstack_init (&types_cu_list);
16163 make_cleanup_obstack_free (&types_cu_list);
16164
16165 psyms_seen = htab_create_alloc (100, htab_hash_pointer, htab_eq_pointer,
16166 NULL, xcalloc, xfree);
16167 make_cleanup (cleanup_htab, psyms_seen);
16168
16169 /* While we're scanning CU's create a table that maps a psymtab pointer
16170 (which is what addrmap records) to its index (which is what is recorded
16171 in the index file). This will later be needed to write the address
16172 table. */
16173 cu_index_htab = htab_create_alloc (100,
16174 hash_psymtab_cu_index,
16175 eq_psymtab_cu_index,
16176 NULL, xcalloc, xfree);
16177 make_cleanup (cleanup_htab, cu_index_htab);
16178 psymtab_cu_index_map = (struct psymtab_cu_index_map *)
16179 xmalloc (sizeof (struct psymtab_cu_index_map)
16180 * dwarf2_per_objfile->n_comp_units);
16181 make_cleanup (xfree, psymtab_cu_index_map);
16182
16183 /* The CU list is already sorted, so we don't need to do additional
16184 work here. Also, the debug_types entries do not appear in
16185 all_comp_units, but only in their own hash table. */
16186 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
16187 {
16188 struct dwarf2_per_cu_data *per_cu
16189 = dwarf2_per_objfile->all_comp_units[i];
16190 struct partial_symtab *psymtab = per_cu->v.psymtab;
16191 gdb_byte val[8];
16192 struct psymtab_cu_index_map *map;
16193 void **slot;
16194
16195 write_psymbols (symtab,
16196 psyms_seen,
16197 objfile->global_psymbols.list + psymtab->globals_offset,
16198 psymtab->n_global_syms, i,
16199 0);
16200 write_psymbols (symtab,
16201 psyms_seen,
16202 objfile->static_psymbols.list + psymtab->statics_offset,
16203 psymtab->n_static_syms, i,
16204 1);
16205
16206 map = &psymtab_cu_index_map[i];
16207 map->psymtab = psymtab;
16208 map->cu_index = i;
16209 slot = htab_find_slot (cu_index_htab, map, INSERT);
16210 gdb_assert (slot != NULL);
16211 gdb_assert (*slot == NULL);
16212 *slot = map;
16213
16214 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->offset);
16215 obstack_grow (&cu_list, val, 8);
16216 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->length);
16217 obstack_grow (&cu_list, val, 8);
16218 }
16219
16220 /* Dump the address map. */
16221 write_address_map (objfile, &addr_obstack, cu_index_htab);
16222
16223 /* Write out the .debug_type entries, if any. */
16224 if (dwarf2_per_objfile->signatured_types)
16225 {
16226 struct signatured_type_index_data sig_data;
16227
16228 sig_data.objfile = objfile;
16229 sig_data.symtab = symtab;
16230 sig_data.types_list = &types_cu_list;
16231 sig_data.psyms_seen = psyms_seen;
16232 sig_data.cu_index = dwarf2_per_objfile->n_comp_units;
16233 htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
16234 write_one_signatured_type, &sig_data);
16235 }
16236
16237 obstack_init (&constant_pool);
16238 make_cleanup_obstack_free (&constant_pool);
16239 obstack_init (&symtab_obstack);
16240 make_cleanup_obstack_free (&symtab_obstack);
16241 write_hash_table (symtab, &symtab_obstack, &constant_pool);
16242
16243 obstack_init (&contents);
16244 make_cleanup_obstack_free (&contents);
16245 size_of_contents = 6 * sizeof (offset_type);
16246 total_len = size_of_contents;
16247
16248 /* The version number. */
16249 val = MAYBE_SWAP (5);
16250 obstack_grow (&contents, &val, sizeof (val));
16251
16252 /* The offset of the CU list from the start of the file. */
16253 val = MAYBE_SWAP (total_len);
16254 obstack_grow (&contents, &val, sizeof (val));
16255 total_len += obstack_object_size (&cu_list);
16256
16257 /* The offset of the types CU list from the start of the file. */
16258 val = MAYBE_SWAP (total_len);
16259 obstack_grow (&contents, &val, sizeof (val));
16260 total_len += obstack_object_size (&types_cu_list);
16261
16262 /* The offset of the address table from the start of the file. */
16263 val = MAYBE_SWAP (total_len);
16264 obstack_grow (&contents, &val, sizeof (val));
16265 total_len += obstack_object_size (&addr_obstack);
16266
16267 /* The offset of the symbol table from the start of the file. */
16268 val = MAYBE_SWAP (total_len);
16269 obstack_grow (&contents, &val, sizeof (val));
16270 total_len += obstack_object_size (&symtab_obstack);
16271
16272 /* The offset of the constant pool from the start of the file. */
16273 val = MAYBE_SWAP (total_len);
16274 obstack_grow (&contents, &val, sizeof (val));
16275 total_len += obstack_object_size (&constant_pool);
16276
16277 gdb_assert (obstack_object_size (&contents) == size_of_contents);
16278
16279 write_obstack (out_file, &contents);
16280 write_obstack (out_file, &cu_list);
16281 write_obstack (out_file, &types_cu_list);
16282 write_obstack (out_file, &addr_obstack);
16283 write_obstack (out_file, &symtab_obstack);
16284 write_obstack (out_file, &constant_pool);
16285
16286 fclose (out_file);
16287
16288 /* We want to keep the file, so we set cleanup_filename to NULL
16289 here. See unlink_if_set. */
16290 cleanup_filename = NULL;
16291
16292 do_cleanups (cleanup);
16293 }
16294
16295 /* Implementation of the `save gdb-index' command.
16296
16297 Note that the file format used by this command is documented in the
16298 GDB manual. Any changes here must be documented there. */
16299
16300 static void
16301 save_gdb_index_command (char *arg, int from_tty)
16302 {
16303 struct objfile *objfile;
16304
16305 if (!arg || !*arg)
16306 error (_("usage: save gdb-index DIRECTORY"));
16307
16308 ALL_OBJFILES (objfile)
16309 {
16310 struct stat st;
16311
16312 /* If the objfile does not correspond to an actual file, skip it. */
16313 if (stat (objfile->name, &st) < 0)
16314 continue;
16315
16316 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
16317 if (dwarf2_per_objfile)
16318 {
16319 volatile struct gdb_exception except;
16320
16321 TRY_CATCH (except, RETURN_MASK_ERROR)
16322 {
16323 write_psymtabs_to_index (objfile, arg);
16324 }
16325 if (except.reason < 0)
16326 exception_fprintf (gdb_stderr, except,
16327 _("Error while writing index for `%s': "),
16328 objfile->name);
16329 }
16330 }
16331 }
16332
16333 \f
16334
16335 int dwarf2_always_disassemble;
16336
16337 static void
16338 show_dwarf2_always_disassemble (struct ui_file *file, int from_tty,
16339 struct cmd_list_element *c, const char *value)
16340 {
16341 fprintf_filtered (file,
16342 _("Whether to always disassemble "
16343 "DWARF expressions is %s.\n"),
16344 value);
16345 }
16346
16347 static void
16348 show_check_physname (struct ui_file *file, int from_tty,
16349 struct cmd_list_element *c, const char *value)
16350 {
16351 fprintf_filtered (file,
16352 _("Whether to check \"physname\" is %s.\n"),
16353 value);
16354 }
16355
16356 void _initialize_dwarf2_read (void);
16357
16358 void
16359 _initialize_dwarf2_read (void)
16360 {
16361 struct cmd_list_element *c;
16362
16363 dwarf2_objfile_data_key
16364 = register_objfile_data_with_cleanup (NULL, dwarf2_per_objfile_free);
16365
16366 add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
16367 Set DWARF 2 specific variables.\n\
16368 Configure DWARF 2 variables such as the cache size"),
16369 &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
16370 0/*allow-unknown*/, &maintenance_set_cmdlist);
16371
16372 add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
16373 Show DWARF 2 specific variables\n\
16374 Show DWARF 2 variables such as the cache size"),
16375 &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
16376 0/*allow-unknown*/, &maintenance_show_cmdlist);
16377
16378 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
16379 &dwarf2_max_cache_age, _("\
16380 Set the upper bound on the age of cached dwarf2 compilation units."), _("\
16381 Show the upper bound on the age of cached dwarf2 compilation units."), _("\
16382 A higher limit means that cached compilation units will be stored\n\
16383 in memory longer, and more total memory will be used. Zero disables\n\
16384 caching, which can slow down startup."),
16385 NULL,
16386 show_dwarf2_max_cache_age,
16387 &set_dwarf2_cmdlist,
16388 &show_dwarf2_cmdlist);
16389
16390 add_setshow_boolean_cmd ("always-disassemble", class_obscure,
16391 &dwarf2_always_disassemble, _("\
16392 Set whether `info address' always disassembles DWARF expressions."), _("\
16393 Show whether `info address' always disassembles DWARF expressions."), _("\
16394 When enabled, DWARF expressions are always printed in an assembly-like\n\
16395 syntax. When disabled, expressions will be printed in a more\n\
16396 conversational style, when possible."),
16397 NULL,
16398 show_dwarf2_always_disassemble,
16399 &set_dwarf2_cmdlist,
16400 &show_dwarf2_cmdlist);
16401
16402 add_setshow_zinteger_cmd ("dwarf2-die", no_class, &dwarf2_die_debug, _("\
16403 Set debugging of the dwarf2 DIE reader."), _("\
16404 Show debugging of the dwarf2 DIE reader."), _("\
16405 When enabled (non-zero), DIEs are dumped after they are read in.\n\
16406 The value is the maximum depth to print."),
16407 NULL,
16408 NULL,
16409 &setdebuglist, &showdebuglist);
16410
16411 add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
16412 Set cross-checking of \"physname\" code against demangler."), _("\
16413 Show cross-checking of \"physname\" code against demangler."), _("\
16414 When enabled, GDB's internal \"physname\" code is checked against\n\
16415 the demangler."),
16416 NULL, show_check_physname,
16417 &setdebuglist, &showdebuglist);
16418
16419 c = add_cmd ("gdb-index", class_files, save_gdb_index_command,
16420 _("\
16421 Save a gdb-index file.\n\
16422 Usage: save gdb-index DIRECTORY"),
16423 &save_cmdlist);
16424 set_cmd_completer (c, filename_completer);
16425 }
This page took 0.371567 seconds and 5 git commands to generate.