* dwarf2read.c (dwarf2_compute_name): Check that the first
[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
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
61 #include <fcntl.h>
62 #include "gdb_string.h"
63 #include "gdb_assert.h"
64 #include <sys/types.h>
65 #ifdef HAVE_ZLIB_H
66 #include <zlib.h>
67 #endif
68 #ifdef HAVE_MMAP
69 #include <sys/mman.h>
70 #ifndef MAP_FAILED
71 #define MAP_FAILED ((void *) -1)
72 #endif
73 #endif
74
75 typedef struct symbol *symbolp;
76 DEF_VEC_P (symbolp);
77
78 #if 0
79 /* .debug_info header for a compilation unit
80 Because of alignment constraints, this structure has padding and cannot
81 be mapped directly onto the beginning of the .debug_info section. */
82 typedef struct comp_unit_header
83 {
84 unsigned int length; /* length of the .debug_info
85 contribution */
86 unsigned short version; /* version number -- 2 for DWARF
87 version 2 */
88 unsigned int abbrev_offset; /* offset into .debug_abbrev section */
89 unsigned char addr_size; /* byte size of an address -- 4 */
90 }
91 _COMP_UNIT_HEADER;
92 #define _ACTUAL_COMP_UNIT_HEADER_SIZE 11
93 #endif
94
95 /* .debug_line statement program prologue
96 Because of alignment constraints, this structure has padding and cannot
97 be mapped directly onto the beginning of the .debug_info section. */
98 typedef struct statement_prologue
99 {
100 unsigned int total_length; /* byte length of the statement
101 information */
102 unsigned short version; /* version number -- 2 for DWARF
103 version 2 */
104 unsigned int prologue_length; /* # bytes between prologue &
105 stmt program */
106 unsigned char minimum_instruction_length; /* byte size of
107 smallest instr */
108 unsigned char default_is_stmt; /* initial value of is_stmt
109 register */
110 char line_base;
111 unsigned char line_range;
112 unsigned char opcode_base; /* number assigned to first special
113 opcode */
114 unsigned char *standard_opcode_lengths;
115 }
116 _STATEMENT_PROLOGUE;
117
118 /* When non-zero, dump DIEs after they are read in. */
119 static int dwarf2_die_debug = 0;
120
121 static int pagesize;
122
123 /* When set, the file that we're processing is known to have debugging
124 info for C++ namespaces. GCC 3.3.x did not produce this information,
125 but later versions do. */
126
127 static int processing_has_namespace_info;
128
129 static const struct objfile_data *dwarf2_objfile_data_key;
130
131 struct dwarf2_section_info
132 {
133 asection *asection;
134 gdb_byte *buffer;
135 bfd_size_type size;
136 int was_mmapped;
137 /* True if we have tried to read this section. */
138 int readin;
139 };
140
141 /* All offsets in the index are of this type. It must be
142 architecture-independent. */
143 typedef uint32_t offset_type;
144
145 DEF_VEC_I (offset_type);
146
147 /* A description of the mapped index. The file format is described in
148 a comment by the code that writes the index. */
149 struct mapped_index
150 {
151 /* The total length of the buffer. */
152 off_t total_size;
153 /* A pointer to the address table data. */
154 const gdb_byte *address_table;
155 /* Size of the address table data in bytes. */
156 offset_type address_table_size;
157 /* The hash table. */
158 const offset_type *index_table;
159 /* Size in slots, each slot is 2 offset_types. */
160 offset_type index_table_slots;
161 /* A pointer to the constant pool. */
162 const char *constant_pool;
163 };
164
165 struct dwarf2_per_objfile
166 {
167 struct dwarf2_section_info info;
168 struct dwarf2_section_info abbrev;
169 struct dwarf2_section_info line;
170 struct dwarf2_section_info loc;
171 struct dwarf2_section_info macinfo;
172 struct dwarf2_section_info str;
173 struct dwarf2_section_info ranges;
174 struct dwarf2_section_info types;
175 struct dwarf2_section_info frame;
176 struct dwarf2_section_info eh_frame;
177 struct dwarf2_section_info gdb_index;
178
179 /* Back link. */
180 struct objfile *objfile;
181
182 /* A list of all the compilation units. This is used to locate
183 the target compilation unit of a particular reference. */
184 struct dwarf2_per_cu_data **all_comp_units;
185
186 /* The number of compilation units in ALL_COMP_UNITS. */
187 int n_comp_units;
188
189 /* The number of .debug_types-related CUs. */
190 int n_type_comp_units;
191
192 /* The .debug_types-related CUs. */
193 struct dwarf2_per_cu_data **type_comp_units;
194
195 /* A chain of compilation units that are currently read in, so that
196 they can be freed later. */
197 struct dwarf2_per_cu_data *read_in_chain;
198
199 /* A table mapping .debug_types signatures to its signatured_type entry.
200 This is NULL if the .debug_types section hasn't been read in yet. */
201 htab_t signatured_types;
202
203 /* A flag indicating wether this objfile has a section loaded at a
204 VMA of 0. */
205 int has_section_at_zero;
206
207 /* True if we are using the mapped index. */
208 unsigned char using_index;
209
210 /* The mapped index. */
211 struct mapped_index *index_table;
212
213 /* Set during partial symbol reading, to prevent queueing of full
214 symbols. */
215 int reading_partial_symbols;
216
217 /* Table mapping type .debug_info DIE offsets to types.
218 This is NULL if not allocated yet.
219 It (currently) makes sense to allocate debug_types_type_hash lazily.
220 To keep things simple we allocate both lazily. */
221 htab_t debug_info_type_hash;
222
223 /* Table mapping type .debug_types DIE offsets to types.
224 This is NULL if not allocated yet. */
225 htab_t debug_types_type_hash;
226 };
227
228 static struct dwarf2_per_objfile *dwarf2_per_objfile;
229
230 /* names of the debugging sections */
231
232 /* Note that if the debugging section has been compressed, it might
233 have a name like .zdebug_info. */
234
235 #define INFO_SECTION "debug_info"
236 #define ABBREV_SECTION "debug_abbrev"
237 #define LINE_SECTION "debug_line"
238 #define LOC_SECTION "debug_loc"
239 #define MACINFO_SECTION "debug_macinfo"
240 #define STR_SECTION "debug_str"
241 #define RANGES_SECTION "debug_ranges"
242 #define TYPES_SECTION "debug_types"
243 #define FRAME_SECTION "debug_frame"
244 #define EH_FRAME_SECTION "eh_frame"
245 #define GDB_INDEX_SECTION "gdb_index"
246
247 /* local data types */
248
249 /* We hold several abbreviation tables in memory at the same time. */
250 #ifndef ABBREV_HASH_SIZE
251 #define ABBREV_HASH_SIZE 121
252 #endif
253
254 /* The data in a compilation unit header, after target2host
255 translation, looks like this. */
256 struct comp_unit_head
257 {
258 unsigned int length;
259 short version;
260 unsigned char addr_size;
261 unsigned char signed_addr_p;
262 unsigned int abbrev_offset;
263
264 /* Size of file offsets; either 4 or 8. */
265 unsigned int offset_size;
266
267 /* Size of the length field; either 4 or 12. */
268 unsigned int initial_length_size;
269
270 /* Offset to the first byte of this compilation unit header in the
271 .debug_info section, for resolving relative reference dies. */
272 unsigned int offset;
273
274 /* Offset to first die in this cu from the start of the cu.
275 This will be the first byte following the compilation unit header. */
276 unsigned int first_die_offset;
277 };
278
279 /* Type used for delaying computation of method physnames.
280 See comments for compute_delayed_physnames. */
281 struct delayed_method_info
282 {
283 /* The type to which the method is attached, i.e., its parent class. */
284 struct type *type;
285
286 /* The index of the method in the type's function fieldlists. */
287 int fnfield_index;
288
289 /* The index of the method in the fieldlist. */
290 int index;
291
292 /* The name of the DIE. */
293 const char *name;
294
295 /* The DIE associated with this method. */
296 struct die_info *die;
297 };
298
299 typedef struct delayed_method_info delayed_method_info;
300 DEF_VEC_O (delayed_method_info);
301
302 /* Internal state when decoding a particular compilation unit. */
303 struct dwarf2_cu
304 {
305 /* The objfile containing this compilation unit. */
306 struct objfile *objfile;
307
308 /* The header of the compilation unit. */
309 struct comp_unit_head header;
310
311 /* Base address of this compilation unit. */
312 CORE_ADDR base_address;
313
314 /* Non-zero if base_address has been set. */
315 int base_known;
316
317 struct function_range *first_fn, *last_fn, *cached_fn;
318
319 /* The language we are debugging. */
320 enum language language;
321 const struct language_defn *language_defn;
322
323 const char *producer;
324
325 /* The generic symbol table building routines have separate lists for
326 file scope symbols and all all other scopes (local scopes). So
327 we need to select the right one to pass to add_symbol_to_list().
328 We do it by keeping a pointer to the correct list in list_in_scope.
329
330 FIXME: The original dwarf code just treated the file scope as the
331 first local scope, and all other local scopes as nested local
332 scopes, and worked fine. Check to see if we really need to
333 distinguish these in buildsym.c. */
334 struct pending **list_in_scope;
335
336 /* DWARF abbreviation table associated with this compilation unit. */
337 struct abbrev_info **dwarf2_abbrevs;
338
339 /* Storage for the abbrev table. */
340 struct obstack abbrev_obstack;
341
342 /* Hash table holding all the loaded partial DIEs. */
343 htab_t partial_dies;
344
345 /* Storage for things with the same lifetime as this read-in compilation
346 unit, including partial DIEs. */
347 struct obstack comp_unit_obstack;
348
349 /* When multiple dwarf2_cu structures are living in memory, this field
350 chains them all together, so that they can be released efficiently.
351 We will probably also want a generation counter so that most-recently-used
352 compilation units are cached... */
353 struct dwarf2_per_cu_data *read_in_chain;
354
355 /* Backchain to our per_cu entry if the tree has been built. */
356 struct dwarf2_per_cu_data *per_cu;
357
358 /* How many compilation units ago was this CU last referenced? */
359 int last_used;
360
361 /* A hash table of die offsets for following references. */
362 htab_t die_hash;
363
364 /* Full DIEs if read in. */
365 struct die_info *dies;
366
367 /* A set of pointers to dwarf2_per_cu_data objects for compilation
368 units referenced by this one. Only set during full symbol processing;
369 partial symbol tables do not have dependencies. */
370 htab_t dependencies;
371
372 /* Header data from the line table, during full symbol processing. */
373 struct line_header *line_header;
374
375 /* A list of methods which need to have physnames computed
376 after all type information has been read. */
377 VEC (delayed_method_info) *method_list;
378
379 /* Mark used when releasing cached dies. */
380 unsigned int mark : 1;
381
382 /* This flag will be set if this compilation unit might include
383 inter-compilation-unit references. */
384 unsigned int has_form_ref_addr : 1;
385
386 /* This flag will be set if this compilation unit includes any
387 DW_TAG_namespace DIEs. If we know that there are explicit
388 DIEs for namespaces, we don't need to try to infer them
389 from mangled names. */
390 unsigned int has_namespace_info : 1;
391 };
392
393 /* When using the index (and thus not using psymtabs), each CU has an
394 object of this type. This is used to hold information needed by
395 the various "quick" methods. */
396 struct dwarf2_per_cu_quick_data
397 {
398 /* The line table. This can be NULL if there was no line table. */
399 struct line_header *lines;
400
401 /* The file names from the line table. */
402 const char **file_names;
403 /* The file names from the line table after being run through
404 gdb_realpath. */
405 const char **full_names;
406
407 /* The corresponding symbol table. This is NULL if symbols for this
408 CU have not yet been read. */
409 struct symtab *symtab;
410
411 /* A temporary mark bit used when iterating over all CUs in
412 expand_symtabs_matching. */
413 unsigned int mark : 1;
414
415 /* True if we've tried to read the line table. */
416 unsigned int read_lines : 1;
417 };
418
419 /* Persistent data held for a compilation unit, even when not
420 processing it. We put a pointer to this structure in the
421 read_symtab_private field of the psymtab. If we encounter
422 inter-compilation-unit references, we also maintain a sorted
423 list of all compilation units. */
424
425 struct dwarf2_per_cu_data
426 {
427 /* The start offset and length of this compilation unit. 2**29-1
428 bytes should suffice to store the length of any compilation unit
429 - if it doesn't, GDB will fall over anyway.
430 NOTE: Unlike comp_unit_head.length, this length includes
431 initial_length_size. */
432 unsigned int offset;
433 unsigned int length : 29;
434
435 /* Flag indicating this compilation unit will be read in before
436 any of the current compilation units are processed. */
437 unsigned int queued : 1;
438
439 /* This flag will be set if we need to load absolutely all DIEs
440 for this compilation unit, instead of just the ones we think
441 are interesting. It gets set if we look for a DIE in the
442 hash table and don't find it. */
443 unsigned int load_all_dies : 1;
444
445 /* Non-zero if this CU is from .debug_types.
446 Otherwise it's from .debug_info. */
447 unsigned int from_debug_types : 1;
448
449 /* Set to non-NULL iff this CU is currently loaded. When it gets freed out
450 of the CU cache it gets reset to NULL again. */
451 struct dwarf2_cu *cu;
452
453 /* The corresponding objfile. */
454 struct objfile *objfile;
455
456 /* When using partial symbol tables, the 'psymtab' field is active.
457 Otherwise the 'quick' field is active. */
458 union
459 {
460 /* The partial symbol table associated with this compilation unit,
461 or NULL for partial units (which do not have an associated
462 symtab). */
463 struct partial_symtab *psymtab;
464
465 /* Data needed by the "quick" functions. */
466 struct dwarf2_per_cu_quick_data *quick;
467 } v;
468 };
469
470 /* Entry in the signatured_types hash table. */
471
472 struct signatured_type
473 {
474 ULONGEST signature;
475
476 /* Offset in .debug_types of the TU (type_unit) for this type. */
477 unsigned int offset;
478
479 /* Offset in .debug_types of the type defined by this TU. */
480 unsigned int type_offset;
481
482 /* The CU(/TU) of this type. */
483 struct dwarf2_per_cu_data per_cu;
484 };
485
486 /* Struct used to pass misc. parameters to read_die_and_children, et. al.
487 which are used for both .debug_info and .debug_types dies.
488 All parameters here are unchanging for the life of the call.
489 This struct exists to abstract away the constant parameters of
490 die reading. */
491
492 struct die_reader_specs
493 {
494 /* The bfd of this objfile. */
495 bfd* abfd;
496
497 /* The CU of the DIE we are parsing. */
498 struct dwarf2_cu *cu;
499
500 /* Pointer to start of section buffer.
501 This is either the start of .debug_info or .debug_types. */
502 const gdb_byte *buffer;
503 };
504
505 /* The line number information for a compilation unit (found in the
506 .debug_line section) begins with a "statement program header",
507 which contains the following information. */
508 struct line_header
509 {
510 unsigned int total_length;
511 unsigned short version;
512 unsigned int header_length;
513 unsigned char minimum_instruction_length;
514 unsigned char maximum_ops_per_instruction;
515 unsigned char default_is_stmt;
516 int line_base;
517 unsigned char line_range;
518 unsigned char opcode_base;
519
520 /* standard_opcode_lengths[i] is the number of operands for the
521 standard opcode whose value is i. This means that
522 standard_opcode_lengths[0] is unused, and the last meaningful
523 element is standard_opcode_lengths[opcode_base - 1]. */
524 unsigned char *standard_opcode_lengths;
525
526 /* The include_directories table. NOTE! These strings are not
527 allocated with xmalloc; instead, they are pointers into
528 debug_line_buffer. If you try to free them, `free' will get
529 indigestion. */
530 unsigned int num_include_dirs, include_dirs_size;
531 char **include_dirs;
532
533 /* The file_names table. NOTE! These strings are not allocated
534 with xmalloc; instead, they are pointers into debug_line_buffer.
535 Don't try to free them directly. */
536 unsigned int num_file_names, file_names_size;
537 struct file_entry
538 {
539 char *name;
540 unsigned int dir_index;
541 unsigned int mod_time;
542 unsigned int length;
543 int included_p; /* Non-zero if referenced by the Line Number Program. */
544 struct symtab *symtab; /* The associated symbol table, if any. */
545 } *file_names;
546
547 /* The start and end of the statement program following this
548 header. These point into dwarf2_per_objfile->line_buffer. */
549 gdb_byte *statement_program_start, *statement_program_end;
550 };
551
552 /* When we construct a partial symbol table entry we only
553 need this much information. */
554 struct partial_die_info
555 {
556 /* Offset of this DIE. */
557 unsigned int offset;
558
559 /* DWARF-2 tag for this DIE. */
560 ENUM_BITFIELD(dwarf_tag) tag : 16;
561
562 /* Assorted flags describing the data found in this DIE. */
563 unsigned int has_children : 1;
564 unsigned int is_external : 1;
565 unsigned int is_declaration : 1;
566 unsigned int has_type : 1;
567 unsigned int has_specification : 1;
568 unsigned int has_pc_info : 1;
569
570 /* Flag set if the SCOPE field of this structure has been
571 computed. */
572 unsigned int scope_set : 1;
573
574 /* Flag set if the DIE has a byte_size attribute. */
575 unsigned int has_byte_size : 1;
576
577 /* Flag set if any of the DIE's children are template arguments. */
578 unsigned int has_template_arguments : 1;
579
580 /* The name of this DIE. Normally the value of DW_AT_name, but
581 sometimes a default name for unnamed DIEs. */
582 char *name;
583
584 /* The scope to prepend to our children. This is generally
585 allocated on the comp_unit_obstack, so will disappear
586 when this compilation unit leaves the cache. */
587 char *scope;
588
589 /* The location description associated with this DIE, if any. */
590 struct dwarf_block *locdesc;
591
592 /* If HAS_PC_INFO, the PC range associated with this DIE. */
593 CORE_ADDR lowpc;
594 CORE_ADDR highpc;
595
596 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
597 DW_AT_sibling, if any. */
598 gdb_byte *sibling;
599
600 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
601 DW_AT_specification (or DW_AT_abstract_origin or
602 DW_AT_extension). */
603 unsigned int spec_offset;
604
605 /* Pointers to this DIE's parent, first child, and next sibling,
606 if any. */
607 struct partial_die_info *die_parent, *die_child, *die_sibling;
608 };
609
610 /* This data structure holds the information of an abbrev. */
611 struct abbrev_info
612 {
613 unsigned int number; /* number identifying abbrev */
614 enum dwarf_tag tag; /* dwarf tag */
615 unsigned short has_children; /* boolean */
616 unsigned short num_attrs; /* number of attributes */
617 struct attr_abbrev *attrs; /* an array of attribute descriptions */
618 struct abbrev_info *next; /* next in chain */
619 };
620
621 struct attr_abbrev
622 {
623 ENUM_BITFIELD(dwarf_attribute) name : 16;
624 ENUM_BITFIELD(dwarf_form) form : 16;
625 };
626
627 /* Attributes have a name and a value */
628 struct attribute
629 {
630 ENUM_BITFIELD(dwarf_attribute) name : 16;
631 ENUM_BITFIELD(dwarf_form) form : 15;
632
633 /* Has DW_STRING already been updated by dwarf2_canonicalize_name? This
634 field should be in u.str (existing only for DW_STRING) but it is kept
635 here for better struct attribute alignment. */
636 unsigned int string_is_canonical : 1;
637
638 union
639 {
640 char *str;
641 struct dwarf_block *blk;
642 ULONGEST unsnd;
643 LONGEST snd;
644 CORE_ADDR addr;
645 struct signatured_type *signatured_type;
646 }
647 u;
648 };
649
650 /* This data structure holds a complete die structure. */
651 struct die_info
652 {
653 /* DWARF-2 tag for this DIE. */
654 ENUM_BITFIELD(dwarf_tag) tag : 16;
655
656 /* Number of attributes */
657 unsigned char num_attrs;
658
659 /* True if we're presently building the full type name for the
660 type derived from this DIE. */
661 unsigned char building_fullname : 1;
662
663 /* Abbrev number */
664 unsigned int abbrev;
665
666 /* Offset in .debug_info or .debug_types section. */
667 unsigned int offset;
668
669 /* The dies in a compilation unit form an n-ary tree. PARENT
670 points to this die's parent; CHILD points to the first child of
671 this node; and all the children of a given node are chained
672 together via their SIBLING fields, terminated by a die whose
673 tag is zero. */
674 struct die_info *child; /* Its first child, if any. */
675 struct die_info *sibling; /* Its next sibling, if any. */
676 struct die_info *parent; /* Its parent, if any. */
677
678 /* An array of attributes, with NUM_ATTRS elements. There may be
679 zero, but it's not common and zero-sized arrays are not
680 sufficiently portable C. */
681 struct attribute attrs[1];
682 };
683
684 struct function_range
685 {
686 const char *name;
687 CORE_ADDR lowpc, highpc;
688 int seen_line;
689 struct function_range *next;
690 };
691
692 /* Get at parts of an attribute structure */
693
694 #define DW_STRING(attr) ((attr)->u.str)
695 #define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
696 #define DW_UNSND(attr) ((attr)->u.unsnd)
697 #define DW_BLOCK(attr) ((attr)->u.blk)
698 #define DW_SND(attr) ((attr)->u.snd)
699 #define DW_ADDR(attr) ((attr)->u.addr)
700 #define DW_SIGNATURED_TYPE(attr) ((attr)->u.signatured_type)
701
702 /* Blocks are a bunch of untyped bytes. */
703 struct dwarf_block
704 {
705 unsigned int size;
706 gdb_byte *data;
707 };
708
709 #ifndef ATTR_ALLOC_CHUNK
710 #define ATTR_ALLOC_CHUNK 4
711 #endif
712
713 /* Allocate fields for structs, unions and enums in this size. */
714 #ifndef DW_FIELD_ALLOC_CHUNK
715 #define DW_FIELD_ALLOC_CHUNK 4
716 #endif
717
718 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
719 but this would require a corresponding change in unpack_field_as_long
720 and friends. */
721 static int bits_per_byte = 8;
722
723 /* The routines that read and process dies for a C struct or C++ class
724 pass lists of data member fields and lists of member function fields
725 in an instance of a field_info structure, as defined below. */
726 struct field_info
727 {
728 /* List of data member and baseclasses fields. */
729 struct nextfield
730 {
731 struct nextfield *next;
732 int accessibility;
733 int virtuality;
734 struct field field;
735 }
736 *fields, *baseclasses;
737
738 /* Number of fields (including baseclasses). */
739 int nfields;
740
741 /* Number of baseclasses. */
742 int nbaseclasses;
743
744 /* Set if the accesibility of one of the fields is not public. */
745 int non_public_fields;
746
747 /* Member function fields array, entries are allocated in the order they
748 are encountered in the object file. */
749 struct nextfnfield
750 {
751 struct nextfnfield *next;
752 struct fn_field fnfield;
753 }
754 *fnfields;
755
756 /* Member function fieldlist array, contains name of possibly overloaded
757 member function, number of overloaded member functions and a pointer
758 to the head of the member function field chain. */
759 struct fnfieldlist
760 {
761 char *name;
762 int length;
763 struct nextfnfield *head;
764 }
765 *fnfieldlists;
766
767 /* Number of entries in the fnfieldlists array. */
768 int nfnfields;
769
770 /* typedefs defined inside this class. TYPEDEF_FIELD_LIST contains head of
771 a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements. */
772 struct typedef_field_list
773 {
774 struct typedef_field field;
775 struct typedef_field_list *next;
776 }
777 *typedef_field_list;
778 unsigned typedef_field_list_count;
779 };
780
781 /* One item on the queue of compilation units to read in full symbols
782 for. */
783 struct dwarf2_queue_item
784 {
785 struct dwarf2_per_cu_data *per_cu;
786 struct dwarf2_queue_item *next;
787 };
788
789 /* The current queue. */
790 static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
791
792 /* Loaded secondary compilation units are kept in memory until they
793 have not been referenced for the processing of this many
794 compilation units. Set this to zero to disable caching. Cache
795 sizes of up to at least twenty will improve startup time for
796 typical inter-CU-reference binaries, at an obvious memory cost. */
797 static int dwarf2_max_cache_age = 5;
798 static void
799 show_dwarf2_max_cache_age (struct ui_file *file, int from_tty,
800 struct cmd_list_element *c, const char *value)
801 {
802 fprintf_filtered (file, _("\
803 The upper bound on the age of cached dwarf2 compilation units is %s.\n"),
804 value);
805 }
806
807
808 /* Various complaints about symbol reading that don't abort the process */
809
810 static void
811 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
812 {
813 complaint (&symfile_complaints,
814 _("statement list doesn't fit in .debug_line section"));
815 }
816
817 static void
818 dwarf2_debug_line_missing_file_complaint (void)
819 {
820 complaint (&symfile_complaints,
821 _(".debug_line section has line data without a file"));
822 }
823
824 static void
825 dwarf2_debug_line_missing_end_sequence_complaint (void)
826 {
827 complaint (&symfile_complaints,
828 _(".debug_line section has line program sequence without an end"));
829 }
830
831 static void
832 dwarf2_complex_location_expr_complaint (void)
833 {
834 complaint (&symfile_complaints, _("location expression too complex"));
835 }
836
837 static void
838 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
839 int arg3)
840 {
841 complaint (&symfile_complaints,
842 _("const value length mismatch for '%s', got %d, expected %d"), arg1,
843 arg2, arg3);
844 }
845
846 static void
847 dwarf2_macros_too_long_complaint (void)
848 {
849 complaint (&symfile_complaints,
850 _("macro info runs off end of `.debug_macinfo' section"));
851 }
852
853 static void
854 dwarf2_macro_malformed_definition_complaint (const char *arg1)
855 {
856 complaint (&symfile_complaints,
857 _("macro debug info contains a malformed macro definition:\n`%s'"),
858 arg1);
859 }
860
861 static void
862 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
863 {
864 complaint (&symfile_complaints,
865 _("invalid attribute class or form for '%s' in '%s'"), arg1, arg2);
866 }
867
868 /* local function prototypes */
869
870 static void dwarf2_locate_sections (bfd *, asection *, void *);
871
872 static void dwarf2_create_include_psymtab (char *, struct partial_symtab *,
873 struct objfile *);
874
875 static void dwarf2_build_psymtabs_hard (struct objfile *);
876
877 static void scan_partial_symbols (struct partial_die_info *,
878 CORE_ADDR *, CORE_ADDR *,
879 int, struct dwarf2_cu *);
880
881 static void add_partial_symbol (struct partial_die_info *,
882 struct dwarf2_cu *);
883
884 static void add_partial_namespace (struct partial_die_info *pdi,
885 CORE_ADDR *lowpc, CORE_ADDR *highpc,
886 int need_pc, struct dwarf2_cu *cu);
887
888 static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
889 CORE_ADDR *highpc, int need_pc,
890 struct dwarf2_cu *cu);
891
892 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
893 struct dwarf2_cu *cu);
894
895 static void add_partial_subprogram (struct partial_die_info *pdi,
896 CORE_ADDR *lowpc, CORE_ADDR *highpc,
897 int need_pc, struct dwarf2_cu *cu);
898
899 static gdb_byte *locate_pdi_sibling (struct partial_die_info *orig_pdi,
900 gdb_byte *buffer, gdb_byte *info_ptr,
901 bfd *abfd, struct dwarf2_cu *cu);
902
903 static void dwarf2_psymtab_to_symtab (struct partial_symtab *);
904
905 static void psymtab_to_symtab_1 (struct partial_symtab *);
906
907 static void dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu);
908
909 static void dwarf2_free_abbrev_table (void *);
910
911 static struct abbrev_info *peek_die_abbrev (gdb_byte *, unsigned int *,
912 struct dwarf2_cu *);
913
914 static struct abbrev_info *dwarf2_lookup_abbrev (unsigned int,
915 struct dwarf2_cu *);
916
917 static struct partial_die_info *load_partial_dies (bfd *,
918 gdb_byte *, gdb_byte *,
919 int, struct dwarf2_cu *);
920
921 static gdb_byte *read_partial_die (struct partial_die_info *,
922 struct abbrev_info *abbrev,
923 unsigned int, bfd *,
924 gdb_byte *, gdb_byte *,
925 struct dwarf2_cu *);
926
927 static struct partial_die_info *find_partial_die (unsigned int,
928 struct dwarf2_cu *);
929
930 static void fixup_partial_die (struct partial_die_info *,
931 struct dwarf2_cu *);
932
933 static gdb_byte *read_attribute (struct attribute *, struct attr_abbrev *,
934 bfd *, gdb_byte *, struct dwarf2_cu *);
935
936 static gdb_byte *read_attribute_value (struct attribute *, unsigned,
937 bfd *, gdb_byte *, struct dwarf2_cu *);
938
939 static unsigned int read_1_byte (bfd *, gdb_byte *);
940
941 static int read_1_signed_byte (bfd *, gdb_byte *);
942
943 static unsigned int read_2_bytes (bfd *, gdb_byte *);
944
945 static unsigned int read_4_bytes (bfd *, gdb_byte *);
946
947 static ULONGEST read_8_bytes (bfd *, gdb_byte *);
948
949 static CORE_ADDR read_address (bfd *, gdb_byte *ptr, struct dwarf2_cu *,
950 unsigned int *);
951
952 static LONGEST read_initial_length (bfd *, gdb_byte *, unsigned int *);
953
954 static LONGEST read_checked_initial_length_and_offset
955 (bfd *, gdb_byte *, const struct comp_unit_head *,
956 unsigned int *, unsigned int *);
957
958 static LONGEST read_offset (bfd *, gdb_byte *, const struct comp_unit_head *,
959 unsigned int *);
960
961 static LONGEST read_offset_1 (bfd *, gdb_byte *, unsigned int);
962
963 static gdb_byte *read_n_bytes (bfd *, gdb_byte *, unsigned int);
964
965 static char *read_direct_string (bfd *, gdb_byte *, unsigned int *);
966
967 static char *read_indirect_string (bfd *, gdb_byte *,
968 const struct comp_unit_head *,
969 unsigned int *);
970
971 static unsigned long read_unsigned_leb128 (bfd *, gdb_byte *, unsigned int *);
972
973 static long read_signed_leb128 (bfd *, gdb_byte *, unsigned int *);
974
975 static gdb_byte *skip_leb128 (bfd *, gdb_byte *);
976
977 static void set_cu_language (unsigned int, struct dwarf2_cu *);
978
979 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
980 struct dwarf2_cu *);
981
982 static struct attribute *dwarf2_attr_no_follow (struct die_info *,
983 unsigned int,
984 struct dwarf2_cu *);
985
986 static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
987 struct dwarf2_cu *cu);
988
989 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
990
991 static struct die_info *die_specification (struct die_info *die,
992 struct dwarf2_cu **);
993
994 static void free_line_header (struct line_header *lh);
995
996 static void add_file_name (struct line_header *, char *, unsigned int,
997 unsigned int, unsigned int);
998
999 static struct line_header *(dwarf_decode_line_header
1000 (unsigned int offset,
1001 bfd *abfd, struct dwarf2_cu *cu));
1002
1003 static void dwarf_decode_lines (struct line_header *, char *, bfd *,
1004 struct dwarf2_cu *, struct partial_symtab *);
1005
1006 static void dwarf2_start_subfile (char *, char *, char *);
1007
1008 static struct symbol *new_symbol (struct die_info *, struct type *,
1009 struct dwarf2_cu *);
1010
1011 static struct symbol *new_symbol_full (struct die_info *, struct type *,
1012 struct dwarf2_cu *, struct symbol *);
1013
1014 static void dwarf2_const_value (struct attribute *, struct symbol *,
1015 struct dwarf2_cu *);
1016
1017 static void dwarf2_const_value_attr (struct attribute *attr,
1018 struct type *type,
1019 const char *name,
1020 struct obstack *obstack,
1021 struct dwarf2_cu *cu, long *value,
1022 gdb_byte **bytes,
1023 struct dwarf2_locexpr_baton **baton);
1024
1025 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
1026
1027 static int need_gnat_info (struct dwarf2_cu *);
1028
1029 static struct type *die_descriptive_type (struct die_info *, struct dwarf2_cu *);
1030
1031 static void set_descriptive_type (struct type *, struct die_info *,
1032 struct dwarf2_cu *);
1033
1034 static struct type *die_containing_type (struct die_info *,
1035 struct dwarf2_cu *);
1036
1037 static struct type *lookup_die_type (struct die_info *, struct attribute *,
1038 struct dwarf2_cu *);
1039
1040 static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
1041
1042 static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1043
1044 static char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
1045
1046 static char *typename_concat (struct obstack *obs, const char *prefix,
1047 const char *suffix, int physname,
1048 struct dwarf2_cu *cu);
1049
1050 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
1051
1052 static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1053
1054 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
1055
1056 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
1057
1058 static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1059 struct dwarf2_cu *, struct partial_symtab *);
1060
1061 static int dwarf2_get_pc_bounds (struct die_info *,
1062 CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *,
1063 struct partial_symtab *);
1064
1065 static void get_scope_pc_bounds (struct die_info *,
1066 CORE_ADDR *, CORE_ADDR *,
1067 struct dwarf2_cu *);
1068
1069 static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1070 CORE_ADDR, struct dwarf2_cu *);
1071
1072 static void dwarf2_add_field (struct field_info *, struct die_info *,
1073 struct dwarf2_cu *);
1074
1075 static void dwarf2_attach_fields_to_type (struct field_info *,
1076 struct type *, struct dwarf2_cu *);
1077
1078 static void dwarf2_add_member_fn (struct field_info *,
1079 struct die_info *, struct type *,
1080 struct dwarf2_cu *);
1081
1082 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
1083 struct type *, struct dwarf2_cu *);
1084
1085 static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
1086
1087 static void read_common_block (struct die_info *, struct dwarf2_cu *);
1088
1089 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
1090
1091 static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1092
1093 static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1094
1095 static struct type *read_module_type (struct die_info *die,
1096 struct dwarf2_cu *cu);
1097
1098 static const char *namespace_name (struct die_info *die,
1099 int *is_anonymous, struct dwarf2_cu *);
1100
1101 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
1102
1103 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
1104
1105 static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
1106 struct dwarf2_cu *);
1107
1108 static struct die_info *read_comp_unit (gdb_byte *, struct dwarf2_cu *);
1109
1110 static struct die_info *read_die_and_children_1 (const struct die_reader_specs *reader,
1111 gdb_byte *info_ptr,
1112 gdb_byte **new_info_ptr,
1113 struct die_info *parent);
1114
1115 static struct die_info *read_die_and_children (const struct die_reader_specs *reader,
1116 gdb_byte *info_ptr,
1117 gdb_byte **new_info_ptr,
1118 struct die_info *parent);
1119
1120 static struct die_info *read_die_and_siblings (const struct die_reader_specs *reader,
1121 gdb_byte *info_ptr,
1122 gdb_byte **new_info_ptr,
1123 struct die_info *parent);
1124
1125 static gdb_byte *read_full_die (const struct die_reader_specs *reader,
1126 struct die_info **, gdb_byte *,
1127 int *);
1128
1129 static void process_die (struct die_info *, struct dwarf2_cu *);
1130
1131 static char *dwarf2_canonicalize_name (char *, struct dwarf2_cu *,
1132 struct obstack *);
1133
1134 static char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
1135
1136 static const char *dwarf2_full_name (char *name,
1137 struct die_info *die,
1138 struct dwarf2_cu *cu);
1139
1140 static struct die_info *dwarf2_extension (struct die_info *die,
1141 struct dwarf2_cu **);
1142
1143 static char *dwarf_tag_name (unsigned int);
1144
1145 static char *dwarf_attr_name (unsigned int);
1146
1147 static char *dwarf_form_name (unsigned int);
1148
1149 static char *dwarf_bool_name (unsigned int);
1150
1151 static char *dwarf_type_encoding_name (unsigned int);
1152
1153 #if 0
1154 static char *dwarf_cfi_name (unsigned int);
1155 #endif
1156
1157 static struct die_info *sibling_die (struct die_info *);
1158
1159 static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1160
1161 static void dump_die_for_error (struct die_info *);
1162
1163 static void dump_die_1 (struct ui_file *, int level, int max_level,
1164 struct die_info *);
1165
1166 /*static*/ void dump_die (struct die_info *, int max_level);
1167
1168 static void store_in_ref_table (struct die_info *,
1169 struct dwarf2_cu *);
1170
1171 static int is_ref_attr (struct attribute *);
1172
1173 static unsigned int dwarf2_get_ref_die_offset (struct attribute *);
1174
1175 static LONGEST dwarf2_get_attr_constant_value (struct attribute *, int);
1176
1177 static struct die_info *follow_die_ref_or_sig (struct die_info *,
1178 struct attribute *,
1179 struct dwarf2_cu **);
1180
1181 static struct die_info *follow_die_ref (struct die_info *,
1182 struct attribute *,
1183 struct dwarf2_cu **);
1184
1185 static struct die_info *follow_die_sig (struct die_info *,
1186 struct attribute *,
1187 struct dwarf2_cu **);
1188
1189 static void read_signatured_type_at_offset (struct objfile *objfile,
1190 unsigned int offset);
1191
1192 static void read_signatured_type (struct objfile *,
1193 struct signatured_type *type_sig);
1194
1195 /* memory allocation interface */
1196
1197 static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
1198
1199 static struct abbrev_info *dwarf_alloc_abbrev (struct dwarf2_cu *);
1200
1201 static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
1202
1203 static void initialize_cu_func_list (struct dwarf2_cu *);
1204
1205 static void add_to_cu_func_list (const char *, CORE_ADDR, CORE_ADDR,
1206 struct dwarf2_cu *);
1207
1208 static void dwarf_decode_macros (struct line_header *, unsigned int,
1209 char *, bfd *, struct dwarf2_cu *);
1210
1211 static int attr_form_is_block (struct attribute *);
1212
1213 static int attr_form_is_section_offset (struct attribute *);
1214
1215 static int attr_form_is_constant (struct attribute *);
1216
1217 static void dwarf2_symbol_mark_computed (struct attribute *attr,
1218 struct symbol *sym,
1219 struct dwarf2_cu *cu);
1220
1221 static gdb_byte *skip_one_die (gdb_byte *buffer, gdb_byte *info_ptr,
1222 struct abbrev_info *abbrev,
1223 struct dwarf2_cu *cu);
1224
1225 static void free_stack_comp_unit (void *);
1226
1227 static hashval_t partial_die_hash (const void *item);
1228
1229 static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1230
1231 static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1232 (unsigned int offset, struct objfile *objfile);
1233
1234 static struct dwarf2_per_cu_data *dwarf2_find_comp_unit
1235 (unsigned int offset, struct objfile *objfile);
1236
1237 static struct dwarf2_cu *alloc_one_comp_unit (struct objfile *objfile);
1238
1239 static void free_one_comp_unit (void *);
1240
1241 static void free_cached_comp_units (void *);
1242
1243 static void age_cached_comp_units (void);
1244
1245 static void free_one_cached_comp_unit (void *);
1246
1247 static struct type *set_die_type (struct die_info *, struct type *,
1248 struct dwarf2_cu *);
1249
1250 static void create_all_comp_units (struct objfile *);
1251
1252 static int create_debug_types_hash_table (struct objfile *objfile);
1253
1254 static void load_full_comp_unit (struct dwarf2_per_cu_data *,
1255 struct objfile *);
1256
1257 static void process_full_comp_unit (struct dwarf2_per_cu_data *);
1258
1259 static void dwarf2_add_dependence (struct dwarf2_cu *,
1260 struct dwarf2_per_cu_data *);
1261
1262 static void dwarf2_mark (struct dwarf2_cu *);
1263
1264 static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1265
1266 static struct type *get_die_type_at_offset (unsigned int,
1267 struct dwarf2_per_cu_data *per_cu);
1268
1269 static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
1270
1271 static void dwarf2_release_queue (void *dummy);
1272
1273 static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1274 struct objfile *objfile);
1275
1276 static void process_queue (struct objfile *objfile);
1277
1278 static void find_file_and_directory (struct die_info *die,
1279 struct dwarf2_cu *cu,
1280 char **name, char **comp_dir);
1281
1282 static char *file_full_name (int file, struct line_header *lh,
1283 const char *comp_dir);
1284
1285 static gdb_byte *partial_read_comp_unit_head (struct comp_unit_head *header,
1286 gdb_byte *info_ptr,
1287 gdb_byte *buffer,
1288 unsigned int buffer_size,
1289 bfd *abfd);
1290
1291 static void init_cu_die_reader (struct die_reader_specs *reader,
1292 struct dwarf2_cu *cu);
1293
1294 static htab_t allocate_signatured_type_table (struct objfile *objfile);
1295
1296 #if WORDS_BIGENDIAN
1297
1298 /* Convert VALUE between big- and little-endian. */
1299 static offset_type
1300 byte_swap (offset_type value)
1301 {
1302 offset_type result;
1303
1304 result = (value & 0xff) << 24;
1305 result |= (value & 0xff00) << 8;
1306 result |= (value & 0xff0000) >> 8;
1307 result |= (value & 0xff000000) >> 24;
1308 return result;
1309 }
1310
1311 #define MAYBE_SWAP(V) byte_swap (V)
1312
1313 #else
1314 #define MAYBE_SWAP(V) (V)
1315 #endif /* WORDS_BIGENDIAN */
1316
1317 /* The suffix for an index file. */
1318 #define INDEX_SUFFIX ".gdb-index"
1319
1320 static const char *dwarf2_physname (char *name, struct die_info *die,
1321 struct dwarf2_cu *cu);
1322
1323 /* Try to locate the sections we need for DWARF 2 debugging
1324 information and return true if we have enough to do something. */
1325
1326 int
1327 dwarf2_has_info (struct objfile *objfile)
1328 {
1329 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
1330 if (!dwarf2_per_objfile)
1331 {
1332 /* Initialize per-objfile state. */
1333 struct dwarf2_per_objfile *data
1334 = obstack_alloc (&objfile->objfile_obstack, sizeof (*data));
1335
1336 memset (data, 0, sizeof (*data));
1337 set_objfile_data (objfile, dwarf2_objfile_data_key, data);
1338 dwarf2_per_objfile = data;
1339
1340 bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections, NULL);
1341 dwarf2_per_objfile->objfile = objfile;
1342 }
1343 return (dwarf2_per_objfile->info.asection != NULL
1344 && dwarf2_per_objfile->abbrev.asection != NULL);
1345 }
1346
1347 /* When loading sections, we can either look for ".<name>", or for
1348 * ".z<name>", which indicates a compressed section. */
1349
1350 static int
1351 section_is_p (const char *section_name, const char *name)
1352 {
1353 return (section_name[0] == '.'
1354 && (strcmp (section_name + 1, name) == 0
1355 || (section_name[1] == 'z'
1356 && strcmp (section_name + 2, name) == 0)));
1357 }
1358
1359 /* This function is mapped across the sections and remembers the
1360 offset and size of each of the debugging sections we are interested
1361 in. */
1362
1363 static void
1364 dwarf2_locate_sections (bfd *abfd, asection *sectp, void *ignore_ptr)
1365 {
1366 if (section_is_p (sectp->name, INFO_SECTION))
1367 {
1368 dwarf2_per_objfile->info.asection = sectp;
1369 dwarf2_per_objfile->info.size = bfd_get_section_size (sectp);
1370 }
1371 else if (section_is_p (sectp->name, ABBREV_SECTION))
1372 {
1373 dwarf2_per_objfile->abbrev.asection = sectp;
1374 dwarf2_per_objfile->abbrev.size = bfd_get_section_size (sectp);
1375 }
1376 else if (section_is_p (sectp->name, LINE_SECTION))
1377 {
1378 dwarf2_per_objfile->line.asection = sectp;
1379 dwarf2_per_objfile->line.size = bfd_get_section_size (sectp);
1380 }
1381 else if (section_is_p (sectp->name, LOC_SECTION))
1382 {
1383 dwarf2_per_objfile->loc.asection = sectp;
1384 dwarf2_per_objfile->loc.size = bfd_get_section_size (sectp);
1385 }
1386 else if (section_is_p (sectp->name, MACINFO_SECTION))
1387 {
1388 dwarf2_per_objfile->macinfo.asection = sectp;
1389 dwarf2_per_objfile->macinfo.size = bfd_get_section_size (sectp);
1390 }
1391 else if (section_is_p (sectp->name, STR_SECTION))
1392 {
1393 dwarf2_per_objfile->str.asection = sectp;
1394 dwarf2_per_objfile->str.size = bfd_get_section_size (sectp);
1395 }
1396 else if (section_is_p (sectp->name, FRAME_SECTION))
1397 {
1398 dwarf2_per_objfile->frame.asection = sectp;
1399 dwarf2_per_objfile->frame.size = bfd_get_section_size (sectp);
1400 }
1401 else if (section_is_p (sectp->name, EH_FRAME_SECTION))
1402 {
1403 flagword aflag = bfd_get_section_flags (ignore_abfd, sectp);
1404
1405 if (aflag & SEC_HAS_CONTENTS)
1406 {
1407 dwarf2_per_objfile->eh_frame.asection = sectp;
1408 dwarf2_per_objfile->eh_frame.size = bfd_get_section_size (sectp);
1409 }
1410 }
1411 else if (section_is_p (sectp->name, RANGES_SECTION))
1412 {
1413 dwarf2_per_objfile->ranges.asection = sectp;
1414 dwarf2_per_objfile->ranges.size = bfd_get_section_size (sectp);
1415 }
1416 else if (section_is_p (sectp->name, TYPES_SECTION))
1417 {
1418 dwarf2_per_objfile->types.asection = sectp;
1419 dwarf2_per_objfile->types.size = bfd_get_section_size (sectp);
1420 }
1421 else if (section_is_p (sectp->name, GDB_INDEX_SECTION))
1422 {
1423 dwarf2_per_objfile->gdb_index.asection = sectp;
1424 dwarf2_per_objfile->gdb_index.size = bfd_get_section_size (sectp);
1425 }
1426
1427 if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD)
1428 && bfd_section_vma (abfd, sectp) == 0)
1429 dwarf2_per_objfile->has_section_at_zero = 1;
1430 }
1431
1432 /* Decompress a section that was compressed using zlib. Store the
1433 decompressed buffer, and its size, in OUTBUF and OUTSIZE. */
1434
1435 static void
1436 zlib_decompress_section (struct objfile *objfile, asection *sectp,
1437 gdb_byte **outbuf, bfd_size_type *outsize)
1438 {
1439 bfd *abfd = objfile->obfd;
1440 #ifndef HAVE_ZLIB_H
1441 error (_("Support for zlib-compressed DWARF data (from '%s') "
1442 "is disabled in this copy of GDB"),
1443 bfd_get_filename (abfd));
1444 #else
1445 bfd_size_type compressed_size = bfd_get_section_size (sectp);
1446 gdb_byte *compressed_buffer = xmalloc (compressed_size);
1447 struct cleanup *cleanup = make_cleanup (xfree, compressed_buffer);
1448 bfd_size_type uncompressed_size;
1449 gdb_byte *uncompressed_buffer;
1450 z_stream strm;
1451 int rc;
1452 int header_size = 12;
1453
1454 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1455 || bfd_bread (compressed_buffer, compressed_size, abfd) != compressed_size)
1456 error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1457 bfd_get_filename (abfd));
1458
1459 /* Read the zlib header. In this case, it should be "ZLIB" followed
1460 by the uncompressed section size, 8 bytes in big-endian order. */
1461 if (compressed_size < header_size
1462 || strncmp (compressed_buffer, "ZLIB", 4) != 0)
1463 error (_("Dwarf Error: Corrupt DWARF ZLIB header from '%s'"),
1464 bfd_get_filename (abfd));
1465 uncompressed_size = compressed_buffer[4]; uncompressed_size <<= 8;
1466 uncompressed_size += compressed_buffer[5]; uncompressed_size <<= 8;
1467 uncompressed_size += compressed_buffer[6]; uncompressed_size <<= 8;
1468 uncompressed_size += compressed_buffer[7]; uncompressed_size <<= 8;
1469 uncompressed_size += compressed_buffer[8]; uncompressed_size <<= 8;
1470 uncompressed_size += compressed_buffer[9]; uncompressed_size <<= 8;
1471 uncompressed_size += compressed_buffer[10]; uncompressed_size <<= 8;
1472 uncompressed_size += compressed_buffer[11];
1473
1474 /* It is possible the section consists of several compressed
1475 buffers concatenated together, so we uncompress in a loop. */
1476 strm.zalloc = NULL;
1477 strm.zfree = NULL;
1478 strm.opaque = NULL;
1479 strm.avail_in = compressed_size - header_size;
1480 strm.next_in = (Bytef*) compressed_buffer + header_size;
1481 strm.avail_out = uncompressed_size;
1482 uncompressed_buffer = obstack_alloc (&objfile->objfile_obstack,
1483 uncompressed_size);
1484 rc = inflateInit (&strm);
1485 while (strm.avail_in > 0)
1486 {
1487 if (rc != Z_OK)
1488 error (_("Dwarf Error: setting up DWARF uncompression in '%s': %d"),
1489 bfd_get_filename (abfd), rc);
1490 strm.next_out = ((Bytef*) uncompressed_buffer
1491 + (uncompressed_size - strm.avail_out));
1492 rc = inflate (&strm, Z_FINISH);
1493 if (rc != Z_STREAM_END)
1494 error (_("Dwarf Error: zlib error uncompressing from '%s': %d"),
1495 bfd_get_filename (abfd), rc);
1496 rc = inflateReset (&strm);
1497 }
1498 rc = inflateEnd (&strm);
1499 if (rc != Z_OK
1500 || strm.avail_out != 0)
1501 error (_("Dwarf Error: concluding DWARF uncompression in '%s': %d"),
1502 bfd_get_filename (abfd), rc);
1503
1504 do_cleanups (cleanup);
1505 *outbuf = uncompressed_buffer;
1506 *outsize = uncompressed_size;
1507 #endif
1508 }
1509
1510 /* Read the contents of the section SECTP from object file specified by
1511 OBJFILE, store info about the section into INFO.
1512 If the section is compressed, uncompress it before returning. */
1513
1514 static void
1515 dwarf2_read_section (struct objfile *objfile, struct dwarf2_section_info *info)
1516 {
1517 bfd *abfd = objfile->obfd;
1518 asection *sectp = info->asection;
1519 gdb_byte *buf, *retbuf;
1520 unsigned char header[4];
1521
1522 if (info->readin)
1523 return;
1524 info->buffer = NULL;
1525 info->was_mmapped = 0;
1526 info->readin = 1;
1527
1528 if (info->asection == NULL || info->size == 0)
1529 return;
1530
1531 /* Check if the file has a 4-byte header indicating compression. */
1532 if (info->size > sizeof (header)
1533 && bfd_seek (abfd, sectp->filepos, SEEK_SET) == 0
1534 && bfd_bread (header, sizeof (header), abfd) == sizeof (header))
1535 {
1536 /* Upon decompression, update the buffer and its size. */
1537 if (strncmp (header, "ZLIB", sizeof (header)) == 0)
1538 {
1539 zlib_decompress_section (objfile, sectp, &info->buffer,
1540 &info->size);
1541 return;
1542 }
1543 }
1544
1545 #ifdef HAVE_MMAP
1546 if (pagesize == 0)
1547 pagesize = getpagesize ();
1548
1549 /* Only try to mmap sections which are large enough: we don't want to
1550 waste space due to fragmentation. Also, only try mmap for sections
1551 without relocations. */
1552
1553 if (info->size > 4 * pagesize && (sectp->flags & SEC_RELOC) == 0)
1554 {
1555 off_t pg_offset = sectp->filepos & ~(pagesize - 1);
1556 size_t map_length = info->size + sectp->filepos - pg_offset;
1557 caddr_t retbuf = bfd_mmap (abfd, 0, map_length, PROT_READ,
1558 MAP_PRIVATE, pg_offset);
1559
1560 if (retbuf != MAP_FAILED)
1561 {
1562 info->was_mmapped = 1;
1563 info->buffer = retbuf + (sectp->filepos & (pagesize - 1)) ;
1564 #if HAVE_POSIX_MADVISE
1565 posix_madvise (retbuf, map_length, POSIX_MADV_WILLNEED);
1566 #endif
1567 return;
1568 }
1569 }
1570 #endif
1571
1572 /* If we get here, we are a normal, not-compressed section. */
1573 info->buffer = buf
1574 = obstack_alloc (&objfile->objfile_obstack, info->size);
1575
1576 /* When debugging .o files, we may need to apply relocations; see
1577 http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
1578 We never compress sections in .o files, so we only need to
1579 try this when the section is not compressed. */
1580 retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
1581 if (retbuf != NULL)
1582 {
1583 info->buffer = retbuf;
1584 return;
1585 }
1586
1587 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
1588 || bfd_bread (buf, info->size, abfd) != info->size)
1589 error (_("Dwarf Error: Can't read DWARF data from '%s'"),
1590 bfd_get_filename (abfd));
1591 }
1592
1593 /* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
1594 SECTION_NAME. */
1595
1596 void
1597 dwarf2_get_section_info (struct objfile *objfile, const char *section_name,
1598 asection **sectp, gdb_byte **bufp,
1599 bfd_size_type *sizep)
1600 {
1601 struct dwarf2_per_objfile *data
1602 = objfile_data (objfile, dwarf2_objfile_data_key);
1603 struct dwarf2_section_info *info;
1604
1605 /* We may see an objfile without any DWARF, in which case we just
1606 return nothing. */
1607 if (data == NULL)
1608 {
1609 *sectp = NULL;
1610 *bufp = NULL;
1611 *sizep = 0;
1612 return;
1613 }
1614 if (section_is_p (section_name, EH_FRAME_SECTION))
1615 info = &data->eh_frame;
1616 else if (section_is_p (section_name, FRAME_SECTION))
1617 info = &data->frame;
1618 else
1619 gdb_assert_not_reached ("unexpected section");
1620
1621 if (info->asection != NULL && info->size != 0 && info->buffer == NULL)
1622 /* We haven't read this section in yet. Do it now. */
1623 dwarf2_read_section (objfile, info);
1624
1625 *sectp = info->asection;
1626 *bufp = info->buffer;
1627 *sizep = info->size;
1628 }
1629
1630 \f
1631
1632 /* Read in the symbols for PER_CU. OBJFILE is the objfile from which
1633 this CU came. */
1634 static void
1635 dw2_do_instantiate_symtab (struct objfile *objfile,
1636 struct dwarf2_per_cu_data *per_cu)
1637 {
1638 struct cleanup *back_to;
1639
1640 back_to = make_cleanup (dwarf2_release_queue, NULL);
1641
1642 queue_comp_unit (per_cu, objfile);
1643
1644 if (per_cu->from_debug_types)
1645 read_signatured_type_at_offset (objfile, per_cu->offset);
1646 else
1647 load_full_comp_unit (per_cu, objfile);
1648
1649 process_queue (objfile);
1650
1651 /* Age the cache, releasing compilation units that have not
1652 been used recently. */
1653 age_cached_comp_units ();
1654
1655 do_cleanups (back_to);
1656 }
1657
1658 /* Ensure that the symbols for PER_CU have been read in. OBJFILE is
1659 the objfile from which this CU came. Returns the resulting symbol
1660 table. */
1661 static struct symtab *
1662 dw2_instantiate_symtab (struct objfile *objfile,
1663 struct dwarf2_per_cu_data *per_cu)
1664 {
1665 if (!per_cu->v.quick->symtab)
1666 {
1667 struct cleanup *back_to = make_cleanup (free_cached_comp_units, NULL);
1668 increment_reading_symtab ();
1669 dw2_do_instantiate_symtab (objfile, per_cu);
1670 do_cleanups (back_to);
1671 }
1672 return per_cu->v.quick->symtab;
1673 }
1674
1675 /* Return the CU given its index. */
1676 static struct dwarf2_per_cu_data *
1677 dw2_get_cu (int index)
1678 {
1679 if (index >= dwarf2_per_objfile->n_comp_units)
1680 {
1681 index -= dwarf2_per_objfile->n_comp_units;
1682 return dwarf2_per_objfile->type_comp_units[index];
1683 }
1684 return dwarf2_per_objfile->all_comp_units[index];
1685 }
1686
1687 /* A helper function that knows how to read a 64-bit value in a way
1688 that doesn't make gdb die. Returns 1 if the conversion went ok, 0
1689 otherwise. */
1690 static int
1691 extract_cu_value (const char *bytes, ULONGEST *result)
1692 {
1693 if (sizeof (ULONGEST) < 8)
1694 {
1695 int i;
1696
1697 /* Ignore the upper 4 bytes if they are all zero. */
1698 for (i = 0; i < 4; ++i)
1699 if (bytes[i + 4] != 0)
1700 return 0;
1701
1702 *result = extract_unsigned_integer (bytes, 4, BFD_ENDIAN_LITTLE);
1703 }
1704 else
1705 *result = extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
1706 return 1;
1707 }
1708
1709 /* Read the CU list from the mapped index, and use it to create all
1710 the CU objects for this objfile. Return 0 if something went wrong,
1711 1 if everything went ok. */
1712 static int
1713 create_cus_from_index (struct objfile *objfile, const gdb_byte *cu_list,
1714 offset_type cu_list_elements)
1715 {
1716 offset_type i;
1717
1718 dwarf2_per_objfile->n_comp_units = cu_list_elements / 2;
1719 dwarf2_per_objfile->all_comp_units
1720 = obstack_alloc (&objfile->objfile_obstack,
1721 dwarf2_per_objfile->n_comp_units
1722 * sizeof (struct dwarf2_per_cu_data *));
1723
1724 for (i = 0; i < cu_list_elements; i += 2)
1725 {
1726 struct dwarf2_per_cu_data *the_cu;
1727 ULONGEST offset, length;
1728
1729 if (!extract_cu_value (cu_list, &offset)
1730 || !extract_cu_value (cu_list + 8, &length))
1731 return 0;
1732 cu_list += 2 * 8;
1733
1734 the_cu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1735 struct dwarf2_per_cu_data);
1736 the_cu->offset = offset;
1737 the_cu->length = length;
1738 the_cu->objfile = objfile;
1739 the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1740 struct dwarf2_per_cu_quick_data);
1741 dwarf2_per_objfile->all_comp_units[i / 2] = the_cu;
1742 }
1743
1744 return 1;
1745 }
1746
1747 /* Create the signatured type hash table from the index. */
1748
1749 static int
1750 create_signatured_type_table_from_index (struct objfile *objfile,
1751 const gdb_byte *bytes,
1752 offset_type elements)
1753 {
1754 offset_type i;
1755 htab_t sig_types_hash;
1756
1757 dwarf2_per_objfile->n_type_comp_units = elements / 3;
1758 dwarf2_per_objfile->type_comp_units
1759 = obstack_alloc (&objfile->objfile_obstack,
1760 dwarf2_per_objfile->n_type_comp_units
1761 * sizeof (struct dwarf2_per_cu_data *));
1762
1763 sig_types_hash = allocate_signatured_type_table (objfile);
1764
1765 for (i = 0; i < elements; i += 3)
1766 {
1767 struct signatured_type *type_sig;
1768 ULONGEST offset, type_offset, signature;
1769 void **slot;
1770
1771 if (!extract_cu_value (bytes, &offset)
1772 || !extract_cu_value (bytes + 8, &type_offset))
1773 return 0;
1774 signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
1775 bytes += 3 * 8;
1776
1777 type_sig = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1778 struct signatured_type);
1779 type_sig->signature = signature;
1780 type_sig->offset = offset;
1781 type_sig->type_offset = type_offset;
1782 type_sig->per_cu.from_debug_types = 1;
1783 type_sig->per_cu.offset = offset;
1784 type_sig->per_cu.objfile = objfile;
1785 type_sig->per_cu.v.quick
1786 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1787 struct dwarf2_per_cu_quick_data);
1788
1789 slot = htab_find_slot (sig_types_hash, type_sig, INSERT);
1790 *slot = type_sig;
1791
1792 dwarf2_per_objfile->type_comp_units[i / 3] = &type_sig->per_cu;
1793 }
1794
1795 dwarf2_per_objfile->signatured_types = sig_types_hash;
1796
1797 return 1;
1798 }
1799
1800 /* Read the address map data from the mapped index, and use it to
1801 populate the objfile's psymtabs_addrmap. */
1802 static void
1803 create_addrmap_from_index (struct objfile *objfile, struct mapped_index *index)
1804 {
1805 const gdb_byte *iter, *end;
1806 struct obstack temp_obstack;
1807 struct addrmap *mutable_map;
1808 struct cleanup *cleanup;
1809 CORE_ADDR baseaddr;
1810
1811 obstack_init (&temp_obstack);
1812 cleanup = make_cleanup_obstack_free (&temp_obstack);
1813 mutable_map = addrmap_create_mutable (&temp_obstack);
1814
1815 iter = index->address_table;
1816 end = iter + index->address_table_size;
1817
1818 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1819
1820 while (iter < end)
1821 {
1822 ULONGEST hi, lo, cu_index;
1823 lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
1824 iter += 8;
1825 hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
1826 iter += 8;
1827 cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
1828 iter += 4;
1829
1830 addrmap_set_empty (mutable_map, lo + baseaddr, hi + baseaddr - 1,
1831 dw2_get_cu (cu_index));
1832 }
1833
1834 objfile->psymtabs_addrmap = addrmap_create_fixed (mutable_map,
1835 &objfile->objfile_obstack);
1836 do_cleanups (cleanup);
1837 }
1838
1839 /* The hash function for strings in the mapped index. This is the
1840 same as the hashtab.c hash function, but we keep a separate copy to
1841 maintain control over the implementation. This is necessary
1842 because the hash function is tied to the format of the mapped index
1843 file. */
1844 static hashval_t
1845 mapped_index_string_hash (const void *p)
1846 {
1847 const unsigned char *str = (const unsigned char *) p;
1848 hashval_t r = 0;
1849 unsigned char c;
1850
1851 while ((c = *str++) != 0)
1852 r = r * 67 + c - 113;
1853
1854 return r;
1855 }
1856
1857 /* Find a slot in the mapped index INDEX for the object named NAME.
1858 If NAME is found, set *VEC_OUT to point to the CU vector in the
1859 constant pool and return 1. If NAME cannot be found, return 0. */
1860 static int
1861 find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
1862 offset_type **vec_out)
1863 {
1864 offset_type hash = mapped_index_string_hash (name);
1865 offset_type slot, step;
1866
1867 slot = hash & (index->index_table_slots - 1);
1868 step = ((hash * 17) & (index->index_table_slots - 1)) | 1;
1869
1870 for (;;)
1871 {
1872 /* Convert a slot number to an offset into the table. */
1873 offset_type i = 2 * slot;
1874 const char *str;
1875 if (index->index_table[i] == 0 && index->index_table[i + 1] == 0)
1876 return 0;
1877
1878 str = index->constant_pool + MAYBE_SWAP (index->index_table[i]);
1879 if (!strcmp (name, str))
1880 {
1881 *vec_out = (offset_type *) (index->constant_pool
1882 + MAYBE_SWAP (index->index_table[i + 1]));
1883 return 1;
1884 }
1885
1886 slot = (slot + step) & (index->index_table_slots - 1);
1887 }
1888 }
1889
1890 /* Read the index file. If everything went ok, initialize the "quick"
1891 elements of all the CUs and return 1. Otherwise, return 0. */
1892 static int
1893 dwarf2_read_index (struct objfile *objfile)
1894 {
1895 char *addr;
1896 struct mapped_index *map;
1897 offset_type *metadata;
1898 const gdb_byte *cu_list;
1899 const gdb_byte *types_list = NULL;
1900 offset_type version, cu_list_elements;
1901 offset_type types_list_elements = 0;
1902 int i;
1903
1904 if (dwarf2_per_objfile->gdb_index.asection == NULL
1905 || dwarf2_per_objfile->gdb_index.size == 0)
1906 return 0;
1907
1908 /* Older elfutils strip versions could keep the section in the main
1909 executable while splitting it for the separate debug info file. */
1910 if ((bfd_get_file_flags (dwarf2_per_objfile->gdb_index.asection)
1911 & SEC_HAS_CONTENTS) == 0)
1912 return 0;
1913
1914 dwarf2_read_section (objfile, &dwarf2_per_objfile->gdb_index);
1915
1916 addr = dwarf2_per_objfile->gdb_index.buffer;
1917 /* Version check. */
1918 version = MAYBE_SWAP (*(offset_type *) addr);
1919 if (version == 1)
1920 {
1921 /* Index version 1 neglected to account for .debug_types. So,
1922 if we see .debug_types, we cannot use this index. */
1923 if (dwarf2_per_objfile->types.asection != NULL
1924 && dwarf2_per_objfile->types.size != 0)
1925 return 0;
1926 }
1927 else if (version != 2)
1928 return 0;
1929
1930 map = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct mapped_index);
1931 map->total_size = dwarf2_per_objfile->gdb_index.size;
1932
1933 metadata = (offset_type *) (addr + sizeof (offset_type));
1934
1935 i = 0;
1936 cu_list = addr + MAYBE_SWAP (metadata[i]);
1937 cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
1938 / 8);
1939 ++i;
1940
1941 if (version == 2)
1942 {
1943 types_list = addr + MAYBE_SWAP (metadata[i]);
1944 types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
1945 - MAYBE_SWAP (metadata[i]))
1946 / 8);
1947 ++i;
1948 }
1949
1950 map->address_table = addr + MAYBE_SWAP (metadata[i]);
1951 map->address_table_size = (MAYBE_SWAP (metadata[i + 1])
1952 - MAYBE_SWAP (metadata[i]));
1953 ++i;
1954
1955 map->index_table = (offset_type *) (addr + MAYBE_SWAP (metadata[i]));
1956 map->index_table_slots = ((MAYBE_SWAP (metadata[i + 1])
1957 - MAYBE_SWAP (metadata[i]))
1958 / (2 * sizeof (offset_type)));
1959 ++i;
1960
1961 map->constant_pool = addr + MAYBE_SWAP (metadata[i]);
1962
1963 if (!create_cus_from_index (objfile, cu_list, cu_list_elements))
1964 return 0;
1965
1966 if (version == 2
1967 && types_list_elements
1968 && !create_signatured_type_table_from_index (objfile, types_list,
1969 types_list_elements))
1970 return 0;
1971
1972 create_addrmap_from_index (objfile, map);
1973
1974 dwarf2_per_objfile->index_table = map;
1975 dwarf2_per_objfile->using_index = 1;
1976
1977 return 1;
1978 }
1979
1980 /* A helper for the "quick" functions which sets the global
1981 dwarf2_per_objfile according to OBJFILE. */
1982 static void
1983 dw2_setup (struct objfile *objfile)
1984 {
1985 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
1986 gdb_assert (dwarf2_per_objfile);
1987 }
1988
1989 /* A helper for the "quick" functions which attempts to read the line
1990 table for THIS_CU. */
1991 static void
1992 dw2_require_line_header (struct objfile *objfile,
1993 struct dwarf2_per_cu_data *this_cu)
1994 {
1995 bfd *abfd = objfile->obfd;
1996 struct line_header *lh = NULL;
1997 struct attribute *attr;
1998 struct cleanup *cleanups;
1999 struct die_info *comp_unit_die;
2000 struct dwarf2_section_info* sec;
2001 gdb_byte *beg_of_comp_unit, *info_ptr, *buffer;
2002 int has_children, i;
2003 struct dwarf2_cu cu;
2004 unsigned int bytes_read, buffer_size;
2005 struct die_reader_specs reader_specs;
2006 char *name, *comp_dir;
2007
2008 if (this_cu->v.quick->read_lines)
2009 return;
2010 this_cu->v.quick->read_lines = 1;
2011
2012 memset (&cu, 0, sizeof (cu));
2013 cu.objfile = objfile;
2014 obstack_init (&cu.comp_unit_obstack);
2015
2016 cleanups = make_cleanup (free_stack_comp_unit, &cu);
2017
2018 if (this_cu->from_debug_types)
2019 sec = &dwarf2_per_objfile->types;
2020 else
2021 sec = &dwarf2_per_objfile->info;
2022 dwarf2_read_section (objfile, sec);
2023 buffer_size = sec->size;
2024 buffer = sec->buffer;
2025 info_ptr = buffer + this_cu->offset;
2026 beg_of_comp_unit = info_ptr;
2027
2028 info_ptr = partial_read_comp_unit_head (&cu.header, info_ptr,
2029 buffer, buffer_size,
2030 abfd);
2031
2032 /* Complete the cu_header. */
2033 cu.header.offset = beg_of_comp_unit - buffer;
2034 cu.header.first_die_offset = info_ptr - beg_of_comp_unit;
2035
2036 this_cu->cu = &cu;
2037 cu.per_cu = this_cu;
2038
2039 dwarf2_read_abbrevs (abfd, &cu);
2040 make_cleanup (dwarf2_free_abbrev_table, &cu);
2041
2042 if (this_cu->from_debug_types)
2043 info_ptr += 8 /*signature*/ + cu.header.offset_size;
2044 init_cu_die_reader (&reader_specs, &cu);
2045 info_ptr = read_full_die (&reader_specs, &comp_unit_die, info_ptr,
2046 &has_children);
2047
2048 attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, &cu);
2049 if (attr)
2050 {
2051 unsigned int line_offset = DW_UNSND (attr);
2052 lh = dwarf_decode_line_header (line_offset, abfd, &cu);
2053 }
2054 if (lh == NULL)
2055 {
2056 do_cleanups (cleanups);
2057 return;
2058 }
2059
2060 find_file_and_directory (comp_unit_die, &cu, &name, &comp_dir);
2061
2062 this_cu->v.quick->lines = lh;
2063
2064 this_cu->v.quick->file_names
2065 = obstack_alloc (&objfile->objfile_obstack,
2066 lh->num_file_names * sizeof (char *));
2067 for (i = 0; i < lh->num_file_names; ++i)
2068 this_cu->v.quick->file_names[i] = file_full_name (i + 1, lh, comp_dir);
2069
2070 do_cleanups (cleanups);
2071 }
2072
2073 /* A helper for the "quick" functions which computes and caches the
2074 real path for a given file name from the line table.
2075 dw2_require_line_header must have been called before this is
2076 invoked. */
2077 static const char *
2078 dw2_require_full_path (struct objfile *objfile,
2079 struct dwarf2_per_cu_data *per_cu,
2080 int index)
2081 {
2082 if (!per_cu->v.quick->full_names)
2083 per_cu->v.quick->full_names
2084 = OBSTACK_CALLOC (&objfile->objfile_obstack,
2085 per_cu->v.quick->lines->num_file_names,
2086 sizeof (char *));
2087
2088 if (!per_cu->v.quick->full_names[index])
2089 per_cu->v.quick->full_names[index]
2090 = gdb_realpath (per_cu->v.quick->file_names[index]);
2091
2092 return per_cu->v.quick->full_names[index];
2093 }
2094
2095 static struct symtab *
2096 dw2_find_last_source_symtab (struct objfile *objfile)
2097 {
2098 int index;
2099 dw2_setup (objfile);
2100 index = dwarf2_per_objfile->n_comp_units - 1;
2101 return dw2_instantiate_symtab (objfile, dw2_get_cu (index));
2102 }
2103
2104 static void
2105 dw2_forget_cached_source_info (struct objfile *objfile)
2106 {
2107 int i;
2108
2109 dw2_setup (objfile);
2110 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2111 + dwarf2_per_objfile->n_type_comp_units); ++i)
2112 {
2113 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2114
2115 if (per_cu->v.quick->full_names)
2116 {
2117 int j;
2118
2119 for (j = 0; j < per_cu->v.quick->lines->num_file_names; ++j)
2120 xfree ((void *) per_cu->v.quick->full_names[j]);
2121 }
2122 }
2123 }
2124
2125 static int
2126 dw2_lookup_symtab (struct objfile *objfile, const char *name,
2127 const char *full_path, const char *real_path,
2128 struct symtab **result)
2129 {
2130 int i;
2131 int check_basename = lbasename (name) == name;
2132 struct dwarf2_per_cu_data *base_cu = NULL;
2133
2134 dw2_setup (objfile);
2135 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2136 + dwarf2_per_objfile->n_type_comp_units); ++i)
2137 {
2138 int j;
2139 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2140
2141 if (per_cu->v.quick->symtab)
2142 continue;
2143
2144 dw2_require_line_header (objfile, per_cu);
2145 if (!per_cu->v.quick->lines)
2146 continue;
2147
2148 for (j = 0; j < per_cu->v.quick->lines->num_file_names; ++j)
2149 {
2150 const char *this_name = per_cu->v.quick->file_names[j];
2151
2152 if (FILENAME_CMP (name, this_name) == 0)
2153 {
2154 *result = dw2_instantiate_symtab (objfile, per_cu);
2155 return 1;
2156 }
2157
2158 if (check_basename && ! base_cu
2159 && FILENAME_CMP (lbasename (this_name), name) == 0)
2160 base_cu = per_cu;
2161
2162 if (full_path != NULL)
2163 {
2164 const char *this_full_name = dw2_require_full_path (objfile,
2165 per_cu, j);
2166
2167 if (this_full_name
2168 && FILENAME_CMP (full_path, this_full_name) == 0)
2169 {
2170 *result = dw2_instantiate_symtab (objfile, per_cu);
2171 return 1;
2172 }
2173 }
2174
2175 if (real_path != NULL)
2176 {
2177 const char *this_full_name = dw2_require_full_path (objfile,
2178 per_cu, j);
2179
2180 if (this_full_name != NULL)
2181 {
2182 char *rp = gdb_realpath (this_full_name);
2183 if (rp != NULL && FILENAME_CMP (real_path, rp) == 0)
2184 {
2185 xfree (rp);
2186 *result = dw2_instantiate_symtab (objfile, per_cu);
2187 return 1;
2188 }
2189 xfree (rp);
2190 }
2191 }
2192 }
2193 }
2194
2195 if (base_cu)
2196 {
2197 *result = dw2_instantiate_symtab (objfile, base_cu);
2198 return 1;
2199 }
2200
2201 return 0;
2202 }
2203
2204 static struct symtab *
2205 dw2_lookup_symbol (struct objfile *objfile, int block_index,
2206 const char *name, domain_enum domain)
2207 {
2208 /* We do all the work in the pre_expand_symtabs_matching hook
2209 instead. */
2210 return NULL;
2211 }
2212
2213 /* A helper function that expands all symtabs that hold an object
2214 named NAME. */
2215 static void
2216 dw2_do_expand_symtabs_matching (struct objfile *objfile, const char *name)
2217 {
2218 dw2_setup (objfile);
2219
2220 if (dwarf2_per_objfile->index_table)
2221 {
2222 offset_type *vec;
2223
2224 if (find_slot_in_mapped_hash (dwarf2_per_objfile->index_table,
2225 name, &vec))
2226 {
2227 offset_type i, len = MAYBE_SWAP (*vec);
2228 for (i = 0; i < len; ++i)
2229 {
2230 offset_type cu_index = MAYBE_SWAP (vec[i + 1]);
2231 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (cu_index);
2232
2233 dw2_instantiate_symtab (objfile, per_cu);
2234 }
2235 }
2236 }
2237 }
2238
2239 static void
2240 dw2_pre_expand_symtabs_matching (struct objfile *objfile,
2241 int kind, const char *name,
2242 domain_enum domain)
2243 {
2244 dw2_do_expand_symtabs_matching (objfile, name);
2245 }
2246
2247 static void
2248 dw2_print_stats (struct objfile *objfile)
2249 {
2250 int i, count;
2251
2252 dw2_setup (objfile);
2253 count = 0;
2254 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2255 + dwarf2_per_objfile->n_type_comp_units); ++i)
2256 {
2257 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2258
2259 if (!per_cu->v.quick->symtab)
2260 ++count;
2261 }
2262 printf_filtered (_(" Number of unread CUs: %d\n"), count);
2263 }
2264
2265 static void
2266 dw2_dump (struct objfile *objfile)
2267 {
2268 /* Nothing worth printing. */
2269 }
2270
2271 static void
2272 dw2_relocate (struct objfile *objfile, struct section_offsets *new_offsets,
2273 struct section_offsets *delta)
2274 {
2275 /* There's nothing to relocate here. */
2276 }
2277
2278 static void
2279 dw2_expand_symtabs_for_function (struct objfile *objfile,
2280 const char *func_name)
2281 {
2282 dw2_do_expand_symtabs_matching (objfile, func_name);
2283 }
2284
2285 static void
2286 dw2_expand_all_symtabs (struct objfile *objfile)
2287 {
2288 int i;
2289
2290 dw2_setup (objfile);
2291
2292 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2293 + dwarf2_per_objfile->n_type_comp_units); ++i)
2294 {
2295 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2296
2297 dw2_instantiate_symtab (objfile, per_cu);
2298 }
2299 }
2300
2301 static void
2302 dw2_expand_symtabs_with_filename (struct objfile *objfile,
2303 const char *filename)
2304 {
2305 int i;
2306
2307 dw2_setup (objfile);
2308 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2309 + dwarf2_per_objfile->n_type_comp_units); ++i)
2310 {
2311 int j;
2312 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2313
2314 if (per_cu->v.quick->symtab)
2315 continue;
2316
2317 dw2_require_line_header (objfile, per_cu);
2318 if (!per_cu->v.quick->lines)
2319 continue;
2320
2321 for (j = 0; j < per_cu->v.quick->lines->num_file_names; ++j)
2322 {
2323 const char *this_name = per_cu->v.quick->file_names[j];
2324 if (strcmp (this_name, filename) == 0)
2325 {
2326 dw2_instantiate_symtab (objfile, per_cu);
2327 break;
2328 }
2329 }
2330 }
2331 }
2332
2333 static const char *
2334 dw2_find_symbol_file (struct objfile *objfile, const char *name)
2335 {
2336 struct dwarf2_per_cu_data *per_cu;
2337 offset_type *vec;
2338
2339 dw2_setup (objfile);
2340
2341 if (!dwarf2_per_objfile->index_table)
2342 return NULL;
2343
2344 if (!find_slot_in_mapped_hash (dwarf2_per_objfile->index_table,
2345 name, &vec))
2346 return NULL;
2347
2348 /* Note that this just looks at the very first one named NAME -- but
2349 actually we are looking for a function. find_main_filename
2350 should be rewritten so that it doesn't require a custom hook. It
2351 could just use the ordinary symbol tables. */
2352 /* vec[0] is the length, which must always be >0. */
2353 per_cu = dw2_get_cu (MAYBE_SWAP (vec[1]));
2354
2355 dw2_require_line_header (objfile, per_cu);
2356 if (!per_cu->v.quick->lines)
2357 return NULL;
2358
2359 return per_cu->v.quick->file_names[per_cu->v.quick->lines->num_file_names - 1];
2360 }
2361
2362 static void
2363 dw2_map_ada_symtabs (struct objfile *objfile,
2364 int (*wild_match) (const char *, int, const char *),
2365 int (*is_name_suffix) (const char *),
2366 void (*callback) (struct objfile *,
2367 struct symtab *, void *),
2368 const char *name, int global,
2369 domain_enum namespace, int wild,
2370 void *data)
2371 {
2372 /* For now, we don't support Ada, so this function can't be
2373 reached. */
2374 internal_error (__FILE__, __LINE__,
2375 _("map_ada_symtabs called via index method"));
2376 }
2377
2378 static void
2379 dw2_expand_symtabs_matching (struct objfile *objfile,
2380 int (*file_matcher) (const char *, void *),
2381 int (*name_matcher) (const char *, void *),
2382 domain_enum kind,
2383 void *data)
2384 {
2385 int i;
2386 offset_type iter;
2387
2388 dw2_setup (objfile);
2389 if (!dwarf2_per_objfile->index_table)
2390 return;
2391
2392 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2393 + dwarf2_per_objfile->n_type_comp_units); ++i)
2394 {
2395 int j;
2396 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2397
2398 per_cu->v.quick->mark = 0;
2399 if (per_cu->v.quick->symtab)
2400 continue;
2401
2402 dw2_require_line_header (objfile, per_cu);
2403 if (!per_cu->v.quick->lines)
2404 continue;
2405
2406 for (j = 0; j < per_cu->v.quick->lines->num_file_names; ++j)
2407 {
2408 if (file_matcher (per_cu->v.quick->file_names[j], data))
2409 {
2410 per_cu->v.quick->mark = 1;
2411 break;
2412 }
2413 }
2414 }
2415
2416 for (iter = 0;
2417 iter < dwarf2_per_objfile->index_table->index_table_slots;
2418 ++iter)
2419 {
2420 offset_type idx = 2 * iter;
2421 const char *name;
2422 offset_type *vec, vec_len, vec_idx;
2423
2424 if (dwarf2_per_objfile->index_table->index_table[idx] == 0
2425 && dwarf2_per_objfile->index_table->index_table[idx + 1] == 0)
2426 continue;
2427
2428 name = (dwarf2_per_objfile->index_table->constant_pool
2429 + dwarf2_per_objfile->index_table->index_table[idx]);
2430
2431 if (! (*name_matcher) (name, data))
2432 continue;
2433
2434 /* The name was matched, now expand corresponding CUs that were
2435 marked. */
2436 vec = (offset_type *) (dwarf2_per_objfile->index_table->constant_pool
2437 + dwarf2_per_objfile->index_table->index_table[idx + 1]);
2438 vec_len = MAYBE_SWAP (vec[0]);
2439 for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
2440 {
2441 struct dwarf2_per_cu_data *per_cu;
2442
2443 per_cu = dw2_get_cu (MAYBE_SWAP (vec[vec_idx + 1]));
2444 if (per_cu->v.quick->mark)
2445 dw2_instantiate_symtab (objfile, per_cu);
2446 }
2447 }
2448 }
2449
2450 static struct symtab *
2451 dw2_find_pc_sect_symtab (struct objfile *objfile,
2452 struct minimal_symbol *msymbol,
2453 CORE_ADDR pc,
2454 struct obj_section *section,
2455 int warn_if_readin)
2456 {
2457 struct dwarf2_per_cu_data *data;
2458
2459 dw2_setup (objfile);
2460
2461 if (!objfile->psymtabs_addrmap)
2462 return NULL;
2463
2464 data = addrmap_find (objfile->psymtabs_addrmap, pc);
2465 if (!data)
2466 return NULL;
2467
2468 if (warn_if_readin && data->v.quick->symtab)
2469 warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
2470 paddress (get_objfile_arch (objfile), pc));
2471
2472 return dw2_instantiate_symtab (objfile, data);
2473 }
2474
2475 static void
2476 dw2_map_symbol_names (struct objfile *objfile,
2477 void (*fun) (const char *, void *),
2478 void *data)
2479 {
2480 offset_type iter;
2481 dw2_setup (objfile);
2482
2483 if (!dwarf2_per_objfile->index_table)
2484 return;
2485
2486 for (iter = 0;
2487 iter < dwarf2_per_objfile->index_table->index_table_slots;
2488 ++iter)
2489 {
2490 offset_type idx = 2 * iter;
2491 const char *name;
2492 offset_type *vec, vec_len, vec_idx;
2493
2494 if (dwarf2_per_objfile->index_table->index_table[idx] == 0
2495 && dwarf2_per_objfile->index_table->index_table[idx + 1] == 0)
2496 continue;
2497
2498 name = (dwarf2_per_objfile->index_table->constant_pool
2499 + dwarf2_per_objfile->index_table->index_table[idx]);
2500
2501 (*fun) (name, data);
2502 }
2503 }
2504
2505 static void
2506 dw2_map_symbol_filenames (struct objfile *objfile,
2507 void (*fun) (const char *, const char *, void *),
2508 void *data)
2509 {
2510 int i;
2511
2512 dw2_setup (objfile);
2513 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2514 + dwarf2_per_objfile->n_type_comp_units); ++i)
2515 {
2516 int j;
2517 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2518
2519 if (per_cu->v.quick->symtab)
2520 continue;
2521
2522 dw2_require_line_header (objfile, per_cu);
2523 if (!per_cu->v.quick->lines)
2524 continue;
2525
2526 for (j = 0; j < per_cu->v.quick->lines->num_file_names; ++j)
2527 {
2528 const char *this_full_name = dw2_require_full_path (objfile, per_cu,
2529 j);
2530 (*fun) (per_cu->v.quick->file_names[j], this_full_name, data);
2531 }
2532 }
2533 }
2534
2535 static int
2536 dw2_has_symbols (struct objfile *objfile)
2537 {
2538 return 1;
2539 }
2540
2541 const struct quick_symbol_functions dwarf2_gdb_index_functions =
2542 {
2543 dw2_has_symbols,
2544 dw2_find_last_source_symtab,
2545 dw2_forget_cached_source_info,
2546 dw2_lookup_symtab,
2547 dw2_lookup_symbol,
2548 dw2_pre_expand_symtabs_matching,
2549 dw2_print_stats,
2550 dw2_dump,
2551 dw2_relocate,
2552 dw2_expand_symtabs_for_function,
2553 dw2_expand_all_symtabs,
2554 dw2_expand_symtabs_with_filename,
2555 dw2_find_symbol_file,
2556 dw2_map_ada_symtabs,
2557 dw2_expand_symtabs_matching,
2558 dw2_find_pc_sect_symtab,
2559 dw2_map_symbol_names,
2560 dw2_map_symbol_filenames
2561 };
2562
2563 /* Initialize for reading DWARF for this objfile. Return 0 if this
2564 file will use psymtabs, or 1 if using the GNU index. */
2565
2566 int
2567 dwarf2_initialize_objfile (struct objfile *objfile)
2568 {
2569 /* If we're about to read full symbols, don't bother with the
2570 indices. In this case we also don't care if some other debug
2571 format is making psymtabs, because they are all about to be
2572 expanded anyway. */
2573 if ((objfile->flags & OBJF_READNOW))
2574 {
2575 int i;
2576
2577 dwarf2_per_objfile->using_index = 1;
2578 create_all_comp_units (objfile);
2579 create_debug_types_hash_table (objfile);
2580
2581 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2582 + dwarf2_per_objfile->n_type_comp_units); ++i)
2583 {
2584 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
2585
2586 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2587 struct dwarf2_per_cu_quick_data);
2588 }
2589
2590 /* Return 1 so that gdb sees the "quick" functions. However,
2591 these functions will be no-ops because we will have expanded
2592 all symtabs. */
2593 return 1;
2594 }
2595
2596 if (dwarf2_read_index (objfile))
2597 return 1;
2598
2599 dwarf2_build_psymtabs (objfile);
2600 return 0;
2601 }
2602
2603 \f
2604
2605 /* Build a partial symbol table. */
2606
2607 void
2608 dwarf2_build_psymtabs (struct objfile *objfile)
2609 {
2610 if (objfile->global_psymbols.size == 0 && objfile->static_psymbols.size == 0)
2611 {
2612 init_psymbol_list (objfile, 1024);
2613 }
2614
2615 dwarf2_build_psymtabs_hard (objfile);
2616 }
2617
2618 /* Return TRUE if OFFSET is within CU_HEADER. */
2619
2620 static inline int
2621 offset_in_cu_p (const struct comp_unit_head *cu_header, unsigned int offset)
2622 {
2623 unsigned int bottom = cu_header->offset;
2624 unsigned int top = (cu_header->offset
2625 + cu_header->length
2626 + cu_header->initial_length_size);
2627
2628 return (offset >= bottom && offset < top);
2629 }
2630
2631 /* Read in the comp unit header information from the debug_info at info_ptr.
2632 NOTE: This leaves members offset, first_die_offset to be filled in
2633 by the caller. */
2634
2635 static gdb_byte *
2636 read_comp_unit_head (struct comp_unit_head *cu_header,
2637 gdb_byte *info_ptr, bfd *abfd)
2638 {
2639 int signed_addr;
2640 unsigned int bytes_read;
2641
2642 cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
2643 cu_header->initial_length_size = bytes_read;
2644 cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
2645 info_ptr += bytes_read;
2646 cu_header->version = read_2_bytes (abfd, info_ptr);
2647 info_ptr += 2;
2648 cu_header->abbrev_offset = read_offset (abfd, info_ptr, cu_header,
2649 &bytes_read);
2650 info_ptr += bytes_read;
2651 cu_header->addr_size = read_1_byte (abfd, info_ptr);
2652 info_ptr += 1;
2653 signed_addr = bfd_get_sign_extend_vma (abfd);
2654 if (signed_addr < 0)
2655 internal_error (__FILE__, __LINE__,
2656 _("read_comp_unit_head: dwarf from non elf file"));
2657 cu_header->signed_addr_p = signed_addr;
2658
2659 return info_ptr;
2660 }
2661
2662 static gdb_byte *
2663 partial_read_comp_unit_head (struct comp_unit_head *header, gdb_byte *info_ptr,
2664 gdb_byte *buffer, unsigned int buffer_size,
2665 bfd *abfd)
2666 {
2667 gdb_byte *beg_of_comp_unit = info_ptr;
2668
2669 info_ptr = read_comp_unit_head (header, info_ptr, abfd);
2670
2671 if (header->version != 2 && header->version != 3 && header->version != 4)
2672 error (_("Dwarf Error: wrong version in compilation unit header "
2673 "(is %d, should be 2, 3, or 4) [in module %s]"), header->version,
2674 bfd_get_filename (abfd));
2675
2676 if (header->abbrev_offset >= dwarf2_per_objfile->abbrev.size)
2677 error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
2678 "(offset 0x%lx + 6) [in module %s]"),
2679 (long) header->abbrev_offset,
2680 (long) (beg_of_comp_unit - buffer),
2681 bfd_get_filename (abfd));
2682
2683 if (beg_of_comp_unit + header->length + header->initial_length_size
2684 > buffer + buffer_size)
2685 error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
2686 "(offset 0x%lx + 0) [in module %s]"),
2687 (long) header->length,
2688 (long) (beg_of_comp_unit - buffer),
2689 bfd_get_filename (abfd));
2690
2691 return info_ptr;
2692 }
2693
2694 /* Read in the types comp unit header information from .debug_types entry at
2695 types_ptr. The result is a pointer to one past the end of the header. */
2696
2697 static gdb_byte *
2698 read_type_comp_unit_head (struct comp_unit_head *cu_header,
2699 ULONGEST *signature,
2700 gdb_byte *types_ptr, bfd *abfd)
2701 {
2702 gdb_byte *initial_types_ptr = types_ptr;
2703
2704 dwarf2_read_section (dwarf2_per_objfile->objfile,
2705 &dwarf2_per_objfile->types);
2706 cu_header->offset = types_ptr - dwarf2_per_objfile->types.buffer;
2707
2708 types_ptr = read_comp_unit_head (cu_header, types_ptr, abfd);
2709
2710 *signature = read_8_bytes (abfd, types_ptr);
2711 types_ptr += 8;
2712 types_ptr += cu_header->offset_size;
2713 cu_header->first_die_offset = types_ptr - initial_types_ptr;
2714
2715 return types_ptr;
2716 }
2717
2718 /* Allocate a new partial symtab for file named NAME and mark this new
2719 partial symtab as being an include of PST. */
2720
2721 static void
2722 dwarf2_create_include_psymtab (char *name, struct partial_symtab *pst,
2723 struct objfile *objfile)
2724 {
2725 struct partial_symtab *subpst = allocate_psymtab (name, objfile);
2726
2727 subpst->section_offsets = pst->section_offsets;
2728 subpst->textlow = 0;
2729 subpst->texthigh = 0;
2730
2731 subpst->dependencies = (struct partial_symtab **)
2732 obstack_alloc (&objfile->objfile_obstack,
2733 sizeof (struct partial_symtab *));
2734 subpst->dependencies[0] = pst;
2735 subpst->number_of_dependencies = 1;
2736
2737 subpst->globals_offset = 0;
2738 subpst->n_global_syms = 0;
2739 subpst->statics_offset = 0;
2740 subpst->n_static_syms = 0;
2741 subpst->symtab = NULL;
2742 subpst->read_symtab = pst->read_symtab;
2743 subpst->readin = 0;
2744
2745 /* No private part is necessary for include psymtabs. This property
2746 can be used to differentiate between such include psymtabs and
2747 the regular ones. */
2748 subpst->read_symtab_private = NULL;
2749 }
2750
2751 /* Read the Line Number Program data and extract the list of files
2752 included by the source file represented by PST. Build an include
2753 partial symtab for each of these included files. */
2754
2755 static void
2756 dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
2757 struct die_info *die,
2758 struct partial_symtab *pst)
2759 {
2760 struct objfile *objfile = cu->objfile;
2761 bfd *abfd = objfile->obfd;
2762 struct line_header *lh = NULL;
2763 struct attribute *attr;
2764
2765 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
2766 if (attr)
2767 {
2768 unsigned int line_offset = DW_UNSND (attr);
2769
2770 lh = dwarf_decode_line_header (line_offset, abfd, cu);
2771 }
2772 if (lh == NULL)
2773 return; /* No linetable, so no includes. */
2774
2775 /* NOTE: pst->dirname is DW_AT_comp_dir (if present). */
2776 dwarf_decode_lines (lh, pst->dirname, abfd, cu, pst);
2777
2778 free_line_header (lh);
2779 }
2780
2781 static hashval_t
2782 hash_type_signature (const void *item)
2783 {
2784 const struct signatured_type *type_sig = item;
2785
2786 /* This drops the top 32 bits of the signature, but is ok for a hash. */
2787 return type_sig->signature;
2788 }
2789
2790 static int
2791 eq_type_signature (const void *item_lhs, const void *item_rhs)
2792 {
2793 const struct signatured_type *lhs = item_lhs;
2794 const struct signatured_type *rhs = item_rhs;
2795
2796 return lhs->signature == rhs->signature;
2797 }
2798
2799 /* Allocate a hash table for signatured types. */
2800
2801 static htab_t
2802 allocate_signatured_type_table (struct objfile *objfile)
2803 {
2804 return htab_create_alloc_ex (41,
2805 hash_type_signature,
2806 eq_type_signature,
2807 NULL,
2808 &objfile->objfile_obstack,
2809 hashtab_obstack_allocate,
2810 dummy_obstack_deallocate);
2811 }
2812
2813 /* A helper function to add a signatured type CU to a list. */
2814
2815 static int
2816 add_signatured_type_cu_to_list (void **slot, void *datum)
2817 {
2818 struct signatured_type *sigt = *slot;
2819 struct dwarf2_per_cu_data ***datap = datum;
2820
2821 **datap = &sigt->per_cu;
2822 ++*datap;
2823
2824 return 1;
2825 }
2826
2827 /* Create the hash table of all entries in the .debug_types section.
2828 The result is zero if there is an error (e.g. missing .debug_types section),
2829 otherwise non-zero. */
2830
2831 static int
2832 create_debug_types_hash_table (struct objfile *objfile)
2833 {
2834 gdb_byte *info_ptr;
2835 htab_t types_htab;
2836 struct dwarf2_per_cu_data **iter;
2837
2838 dwarf2_read_section (objfile, &dwarf2_per_objfile->types);
2839 info_ptr = dwarf2_per_objfile->types.buffer;
2840
2841 if (info_ptr == NULL)
2842 {
2843 dwarf2_per_objfile->signatured_types = NULL;
2844 return 0;
2845 }
2846
2847 types_htab = allocate_signatured_type_table (objfile);
2848
2849 if (dwarf2_die_debug)
2850 fprintf_unfiltered (gdb_stdlog, "Signatured types:\n");
2851
2852 while (info_ptr < dwarf2_per_objfile->types.buffer + dwarf2_per_objfile->types.size)
2853 {
2854 unsigned int offset;
2855 unsigned int offset_size;
2856 unsigned int type_offset;
2857 unsigned int length, initial_length_size;
2858 unsigned short version;
2859 ULONGEST signature;
2860 struct signatured_type *type_sig;
2861 void **slot;
2862 gdb_byte *ptr = info_ptr;
2863
2864 offset = ptr - dwarf2_per_objfile->types.buffer;
2865
2866 /* We need to read the type's signature in order to build the hash
2867 table, but we don't need to read anything else just yet. */
2868
2869 /* Sanity check to ensure entire cu is present. */
2870 length = read_initial_length (objfile->obfd, ptr, &initial_length_size);
2871 if (ptr + length + initial_length_size
2872 > dwarf2_per_objfile->types.buffer + dwarf2_per_objfile->types.size)
2873 {
2874 complaint (&symfile_complaints,
2875 _("debug type entry runs off end of `.debug_types' section, ignored"));
2876 break;
2877 }
2878
2879 offset_size = initial_length_size == 4 ? 4 : 8;
2880 ptr += initial_length_size;
2881 version = bfd_get_16 (objfile->obfd, ptr);
2882 ptr += 2;
2883 ptr += offset_size; /* abbrev offset */
2884 ptr += 1; /* address size */
2885 signature = bfd_get_64 (objfile->obfd, ptr);
2886 ptr += 8;
2887 type_offset = read_offset_1 (objfile->obfd, ptr, offset_size);
2888
2889 type_sig = obstack_alloc (&objfile->objfile_obstack, sizeof (*type_sig));
2890 memset (type_sig, 0, sizeof (*type_sig));
2891 type_sig->signature = signature;
2892 type_sig->offset = offset;
2893 type_sig->type_offset = type_offset;
2894 type_sig->per_cu.objfile = objfile;
2895 type_sig->per_cu.from_debug_types = 1;
2896
2897 slot = htab_find_slot (types_htab, type_sig, INSERT);
2898 gdb_assert (slot != NULL);
2899 *slot = type_sig;
2900
2901 if (dwarf2_die_debug)
2902 fprintf_unfiltered (gdb_stdlog, " offset 0x%x, signature 0x%s\n",
2903 offset, phex (signature, sizeof (signature)));
2904
2905 info_ptr = info_ptr + initial_length_size + length;
2906 }
2907
2908 dwarf2_per_objfile->signatured_types = types_htab;
2909
2910 dwarf2_per_objfile->n_type_comp_units = htab_elements (types_htab);
2911 dwarf2_per_objfile->type_comp_units
2912 = obstack_alloc (&objfile->objfile_obstack,
2913 dwarf2_per_objfile->n_type_comp_units
2914 * sizeof (struct dwarf2_per_cu_data *));
2915 iter = &dwarf2_per_objfile->type_comp_units[0];
2916 htab_traverse_noresize (types_htab, add_signatured_type_cu_to_list, &iter);
2917 gdb_assert (iter - &dwarf2_per_objfile->type_comp_units[0]
2918 == dwarf2_per_objfile->n_type_comp_units);
2919
2920 return 1;
2921 }
2922
2923 /* Lookup a signature based type.
2924 Returns NULL if SIG is not present in the table. */
2925
2926 static struct signatured_type *
2927 lookup_signatured_type (struct objfile *objfile, ULONGEST sig)
2928 {
2929 struct signatured_type find_entry, *entry;
2930
2931 if (dwarf2_per_objfile->signatured_types == NULL)
2932 {
2933 complaint (&symfile_complaints,
2934 _("missing `.debug_types' section for DW_FORM_sig8 die"));
2935 return 0;
2936 }
2937
2938 find_entry.signature = sig;
2939 entry = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
2940 return entry;
2941 }
2942
2943 /* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
2944
2945 static void
2946 init_cu_die_reader (struct die_reader_specs *reader,
2947 struct dwarf2_cu *cu)
2948 {
2949 reader->abfd = cu->objfile->obfd;
2950 reader->cu = cu;
2951 if (cu->per_cu->from_debug_types)
2952 {
2953 gdb_assert (dwarf2_per_objfile->types.readin);
2954 reader->buffer = dwarf2_per_objfile->types.buffer;
2955 }
2956 else
2957 {
2958 gdb_assert (dwarf2_per_objfile->info.readin);
2959 reader->buffer = dwarf2_per_objfile->info.buffer;
2960 }
2961 }
2962
2963 /* Find the base address of the compilation unit for range lists and
2964 location lists. It will normally be specified by DW_AT_low_pc.
2965 In DWARF-3 draft 4, the base address could be overridden by
2966 DW_AT_entry_pc. It's been removed, but GCC still uses this for
2967 compilation units with discontinuous ranges. */
2968
2969 static void
2970 dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
2971 {
2972 struct attribute *attr;
2973
2974 cu->base_known = 0;
2975 cu->base_address = 0;
2976
2977 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
2978 if (attr)
2979 {
2980 cu->base_address = DW_ADDR (attr);
2981 cu->base_known = 1;
2982 }
2983 else
2984 {
2985 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
2986 if (attr)
2987 {
2988 cu->base_address = DW_ADDR (attr);
2989 cu->base_known = 1;
2990 }
2991 }
2992 }
2993
2994 /* Subroutine of process_type_comp_unit and dwarf2_build_psymtabs_hard
2995 to combine the common parts.
2996 Process a compilation unit for a psymtab.
2997 BUFFER is a pointer to the beginning of the dwarf section buffer,
2998 either .debug_info or debug_types.
2999 INFO_PTR is a pointer to the start of the CU.
3000 Returns a pointer to the next CU. */
3001
3002 static gdb_byte *
3003 process_psymtab_comp_unit (struct objfile *objfile,
3004 struct dwarf2_per_cu_data *this_cu,
3005 gdb_byte *buffer, gdb_byte *info_ptr,
3006 unsigned int buffer_size)
3007 {
3008 bfd *abfd = objfile->obfd;
3009 gdb_byte *beg_of_comp_unit = info_ptr;
3010 struct die_info *comp_unit_die;
3011 struct partial_symtab *pst;
3012 CORE_ADDR baseaddr;
3013 struct cleanup *back_to_inner;
3014 struct dwarf2_cu cu;
3015 int has_children, has_pc_info;
3016 struct attribute *attr;
3017 CORE_ADDR best_lowpc = 0, best_highpc = 0;
3018 struct die_reader_specs reader_specs;
3019
3020 memset (&cu, 0, sizeof (cu));
3021 cu.objfile = objfile;
3022 obstack_init (&cu.comp_unit_obstack);
3023
3024 back_to_inner = make_cleanup (free_stack_comp_unit, &cu);
3025
3026 info_ptr = partial_read_comp_unit_head (&cu.header, info_ptr,
3027 buffer, buffer_size,
3028 abfd);
3029
3030 /* Complete the cu_header. */
3031 cu.header.offset = beg_of_comp_unit - buffer;
3032 cu.header.first_die_offset = info_ptr - beg_of_comp_unit;
3033
3034 cu.list_in_scope = &file_symbols;
3035
3036 /* If this compilation unit was already read in, free the
3037 cached copy in order to read it in again. This is
3038 necessary because we skipped some symbols when we first
3039 read in the compilation unit (see load_partial_dies).
3040 This problem could be avoided, but the benefit is
3041 unclear. */
3042 if (this_cu->cu != NULL)
3043 free_one_cached_comp_unit (this_cu->cu);
3044
3045 /* Note that this is a pointer to our stack frame, being
3046 added to a global data structure. It will be cleaned up
3047 in free_stack_comp_unit when we finish with this
3048 compilation unit. */
3049 this_cu->cu = &cu;
3050 cu.per_cu = this_cu;
3051
3052 /* Read the abbrevs for this compilation unit into a table. */
3053 dwarf2_read_abbrevs (abfd, &cu);
3054 make_cleanup (dwarf2_free_abbrev_table, &cu);
3055
3056 /* Read the compilation unit die. */
3057 if (this_cu->from_debug_types)
3058 info_ptr += 8 /*signature*/ + cu.header.offset_size;
3059 init_cu_die_reader (&reader_specs, &cu);
3060 info_ptr = read_full_die (&reader_specs, &comp_unit_die, info_ptr,
3061 &has_children);
3062
3063 if (this_cu->from_debug_types)
3064 {
3065 /* offset,length haven't been set yet for type units. */
3066 this_cu->offset = cu.header.offset;
3067 this_cu->length = cu.header.length + cu.header.initial_length_size;
3068 }
3069 else if (comp_unit_die->tag == DW_TAG_partial_unit)
3070 {
3071 info_ptr = (beg_of_comp_unit + cu.header.length
3072 + cu.header.initial_length_size);
3073 do_cleanups (back_to_inner);
3074 return info_ptr;
3075 }
3076
3077 /* Set the language we're debugging. */
3078 attr = dwarf2_attr (comp_unit_die, DW_AT_language, &cu);
3079 if (attr)
3080 set_cu_language (DW_UNSND (attr), &cu);
3081 else
3082 set_cu_language (language_minimal, &cu);
3083
3084 /* Allocate a new partial symbol table structure. */
3085 attr = dwarf2_attr (comp_unit_die, DW_AT_name, &cu);
3086 pst = start_psymtab_common (objfile, objfile->section_offsets,
3087 (attr != NULL) ? DW_STRING (attr) : "",
3088 /* TEXTLOW and TEXTHIGH are set below. */
3089 0,
3090 objfile->global_psymbols.next,
3091 objfile->static_psymbols.next);
3092
3093 attr = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, &cu);
3094 if (attr != NULL)
3095 pst->dirname = DW_STRING (attr);
3096
3097 pst->read_symtab_private = this_cu;
3098
3099 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3100
3101 /* Store the function that reads in the rest of the symbol table */
3102 pst->read_symtab = dwarf2_psymtab_to_symtab;
3103
3104 this_cu->v.psymtab = pst;
3105
3106 dwarf2_find_base_address (comp_unit_die, &cu);
3107
3108 /* Possibly set the default values of LOWPC and HIGHPC from
3109 `DW_AT_ranges'. */
3110 has_pc_info = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
3111 &best_highpc, &cu, pst);
3112 if (has_pc_info == 1 && best_lowpc < best_highpc)
3113 /* Store the contiguous range if it is not empty; it can be empty for
3114 CUs with no code. */
3115 addrmap_set_empty (objfile->psymtabs_addrmap,
3116 best_lowpc + baseaddr,
3117 best_highpc + baseaddr - 1, pst);
3118
3119 /* Check if comp unit has_children.
3120 If so, read the rest of the partial symbols from this comp unit.
3121 If not, there's no more debug_info for this comp unit. */
3122 if (has_children)
3123 {
3124 struct partial_die_info *first_die;
3125 CORE_ADDR lowpc, highpc;
3126
3127 lowpc = ((CORE_ADDR) -1);
3128 highpc = ((CORE_ADDR) 0);
3129
3130 first_die = load_partial_dies (abfd, buffer, info_ptr, 1, &cu);
3131
3132 scan_partial_symbols (first_die, &lowpc, &highpc,
3133 ! has_pc_info, &cu);
3134
3135 /* If we didn't find a lowpc, set it to highpc to avoid
3136 complaints from `maint check'. */
3137 if (lowpc == ((CORE_ADDR) -1))
3138 lowpc = highpc;
3139
3140 /* If the compilation unit didn't have an explicit address range,
3141 then use the information extracted from its child dies. */
3142 if (! has_pc_info)
3143 {
3144 best_lowpc = lowpc;
3145 best_highpc = highpc;
3146 }
3147 }
3148 pst->textlow = best_lowpc + baseaddr;
3149 pst->texthigh = best_highpc + baseaddr;
3150
3151 pst->n_global_syms = objfile->global_psymbols.next -
3152 (objfile->global_psymbols.list + pst->globals_offset);
3153 pst->n_static_syms = objfile->static_psymbols.next -
3154 (objfile->static_psymbols.list + pst->statics_offset);
3155 sort_pst_symbols (pst);
3156
3157 info_ptr = (beg_of_comp_unit + cu.header.length
3158 + cu.header.initial_length_size);
3159
3160 if (this_cu->from_debug_types)
3161 {
3162 /* It's not clear we want to do anything with stmt lists here.
3163 Waiting to see what gcc ultimately does. */
3164 }
3165 else
3166 {
3167 /* Get the list of files included in the current compilation unit,
3168 and build a psymtab for each of them. */
3169 dwarf2_build_include_psymtabs (&cu, comp_unit_die, pst);
3170 }
3171
3172 do_cleanups (back_to_inner);
3173
3174 return info_ptr;
3175 }
3176
3177 /* Traversal function for htab_traverse_noresize.
3178 Process one .debug_types comp-unit. */
3179
3180 static int
3181 process_type_comp_unit (void **slot, void *info)
3182 {
3183 struct signatured_type *entry = (struct signatured_type *) *slot;
3184 struct objfile *objfile = (struct objfile *) info;
3185 struct dwarf2_per_cu_data *this_cu;
3186
3187 this_cu = &entry->per_cu;
3188
3189 gdb_assert (dwarf2_per_objfile->types.readin);
3190 process_psymtab_comp_unit (objfile, this_cu,
3191 dwarf2_per_objfile->types.buffer,
3192 dwarf2_per_objfile->types.buffer + entry->offset,
3193 dwarf2_per_objfile->types.size);
3194
3195 return 1;
3196 }
3197
3198 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
3199 Build partial symbol tables for the .debug_types comp-units. */
3200
3201 static void
3202 build_type_psymtabs (struct objfile *objfile)
3203 {
3204 if (! create_debug_types_hash_table (objfile))
3205 return;
3206
3207 htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
3208 process_type_comp_unit, objfile);
3209 }
3210
3211 /* A cleanup function that clears objfile's psymtabs_addrmap field. */
3212
3213 static void
3214 psymtabs_addrmap_cleanup (void *o)
3215 {
3216 struct objfile *objfile = o;
3217
3218 objfile->psymtabs_addrmap = NULL;
3219 }
3220
3221 /* Build the partial symbol table by doing a quick pass through the
3222 .debug_info and .debug_abbrev sections. */
3223
3224 static void
3225 dwarf2_build_psymtabs_hard (struct objfile *objfile)
3226 {
3227 gdb_byte *info_ptr;
3228 struct cleanup *back_to, *addrmap_cleanup;
3229 struct obstack temp_obstack;
3230
3231 dwarf2_per_objfile->reading_partial_symbols = 1;
3232
3233 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
3234 info_ptr = dwarf2_per_objfile->info.buffer;
3235
3236 /* Any cached compilation units will be linked by the per-objfile
3237 read_in_chain. Make sure to free them when we're done. */
3238 back_to = make_cleanup (free_cached_comp_units, NULL);
3239
3240 build_type_psymtabs (objfile);
3241
3242 create_all_comp_units (objfile);
3243
3244 /* Create a temporary address map on a temporary obstack. We later
3245 copy this to the final obstack. */
3246 obstack_init (&temp_obstack);
3247 make_cleanup_obstack_free (&temp_obstack);
3248 objfile->psymtabs_addrmap = addrmap_create_mutable (&temp_obstack);
3249 addrmap_cleanup = make_cleanup (psymtabs_addrmap_cleanup, objfile);
3250
3251 /* Since the objects we're extracting from .debug_info vary in
3252 length, only the individual functions to extract them (like
3253 read_comp_unit_head and load_partial_die) can really know whether
3254 the buffer is large enough to hold another complete object.
3255
3256 At the moment, they don't actually check that. If .debug_info
3257 holds just one extra byte after the last compilation unit's dies,
3258 then read_comp_unit_head will happily read off the end of the
3259 buffer. read_partial_die is similarly casual. Those functions
3260 should be fixed.
3261
3262 For this loop condition, simply checking whether there's any data
3263 left at all should be sufficient. */
3264
3265 while (info_ptr < (dwarf2_per_objfile->info.buffer
3266 + dwarf2_per_objfile->info.size))
3267 {
3268 struct dwarf2_per_cu_data *this_cu;
3269
3270 this_cu = dwarf2_find_comp_unit (info_ptr - dwarf2_per_objfile->info.buffer,
3271 objfile);
3272
3273 info_ptr = process_psymtab_comp_unit (objfile, this_cu,
3274 dwarf2_per_objfile->info.buffer,
3275 info_ptr,
3276 dwarf2_per_objfile->info.size);
3277 }
3278
3279 objfile->psymtabs_addrmap = addrmap_create_fixed (objfile->psymtabs_addrmap,
3280 &objfile->objfile_obstack);
3281 discard_cleanups (addrmap_cleanup);
3282
3283 do_cleanups (back_to);
3284 }
3285
3286 /* Load the partial DIEs for a secondary CU into memory. */
3287
3288 static void
3289 load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu,
3290 struct objfile *objfile)
3291 {
3292 bfd *abfd = objfile->obfd;
3293 gdb_byte *info_ptr, *beg_of_comp_unit;
3294 struct die_info *comp_unit_die;
3295 struct dwarf2_cu *cu;
3296 struct cleanup *free_abbrevs_cleanup, *free_cu_cleanup = NULL;
3297 struct attribute *attr;
3298 int has_children;
3299 struct die_reader_specs reader_specs;
3300 int read_cu = 0;
3301
3302 gdb_assert (! this_cu->from_debug_types);
3303
3304 gdb_assert (dwarf2_per_objfile->info.readin);
3305 info_ptr = dwarf2_per_objfile->info.buffer + this_cu->offset;
3306 beg_of_comp_unit = info_ptr;
3307
3308 if (this_cu->cu == NULL)
3309 {
3310 cu = alloc_one_comp_unit (objfile);
3311
3312 read_cu = 1;
3313
3314 /* If an error occurs while loading, release our storage. */
3315 free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
3316
3317 info_ptr = partial_read_comp_unit_head (&cu->header, info_ptr,
3318 dwarf2_per_objfile->info.buffer,
3319 dwarf2_per_objfile->info.size,
3320 abfd);
3321
3322 /* Complete the cu_header. */
3323 cu->header.offset = this_cu->offset;
3324 cu->header.first_die_offset = info_ptr - beg_of_comp_unit;
3325
3326 /* Link this compilation unit into the compilation unit tree. */
3327 this_cu->cu = cu;
3328 cu->per_cu = this_cu;
3329
3330 /* Link this CU into read_in_chain. */
3331 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
3332 dwarf2_per_objfile->read_in_chain = this_cu;
3333 }
3334 else
3335 {
3336 cu = this_cu->cu;
3337 info_ptr += cu->header.first_die_offset;
3338 }
3339
3340 /* Read the abbrevs for this compilation unit into a table. */
3341 gdb_assert (cu->dwarf2_abbrevs == NULL);
3342 dwarf2_read_abbrevs (abfd, cu);
3343 free_abbrevs_cleanup = make_cleanup (dwarf2_free_abbrev_table, cu);
3344
3345 /* Read the compilation unit die. */
3346 init_cu_die_reader (&reader_specs, cu);
3347 info_ptr = read_full_die (&reader_specs, &comp_unit_die, info_ptr,
3348 &has_children);
3349
3350 /* Set the language we're debugging. */
3351 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
3352 if (attr)
3353 set_cu_language (DW_UNSND (attr), cu);
3354 else
3355 set_cu_language (language_minimal, cu);
3356
3357 /* Check if comp unit has_children.
3358 If so, read the rest of the partial symbols from this comp unit.
3359 If not, there's no more debug_info for this comp unit. */
3360 if (has_children)
3361 load_partial_dies (abfd, dwarf2_per_objfile->info.buffer, info_ptr, 0, cu);
3362
3363 do_cleanups (free_abbrevs_cleanup);
3364
3365 if (read_cu)
3366 {
3367 /* We've successfully allocated this compilation unit. Let our
3368 caller clean it up when finished with it. */
3369 discard_cleanups (free_cu_cleanup);
3370 }
3371 }
3372
3373 /* Create a list of all compilation units in OBJFILE. We do this only
3374 if an inter-comp-unit reference is found; presumably if there is one,
3375 there will be many, and one will occur early in the .debug_info section.
3376 So there's no point in building this list incrementally. */
3377
3378 static void
3379 create_all_comp_units (struct objfile *objfile)
3380 {
3381 int n_allocated;
3382 int n_comp_units;
3383 struct dwarf2_per_cu_data **all_comp_units;
3384 gdb_byte *info_ptr;
3385
3386 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
3387 info_ptr = dwarf2_per_objfile->info.buffer;
3388
3389 n_comp_units = 0;
3390 n_allocated = 10;
3391 all_comp_units = xmalloc (n_allocated
3392 * sizeof (struct dwarf2_per_cu_data *));
3393
3394 while (info_ptr < dwarf2_per_objfile->info.buffer + dwarf2_per_objfile->info.size)
3395 {
3396 unsigned int length, initial_length_size;
3397 struct dwarf2_per_cu_data *this_cu;
3398 unsigned int offset;
3399
3400 offset = info_ptr - dwarf2_per_objfile->info.buffer;
3401
3402 /* Read just enough information to find out where the next
3403 compilation unit is. */
3404 length = read_initial_length (objfile->obfd, info_ptr,
3405 &initial_length_size);
3406
3407 /* Save the compilation unit for later lookup. */
3408 this_cu = obstack_alloc (&objfile->objfile_obstack,
3409 sizeof (struct dwarf2_per_cu_data));
3410 memset (this_cu, 0, sizeof (*this_cu));
3411 this_cu->offset = offset;
3412 this_cu->length = length + initial_length_size;
3413 this_cu->objfile = objfile;
3414
3415 if (n_comp_units == n_allocated)
3416 {
3417 n_allocated *= 2;
3418 all_comp_units = xrealloc (all_comp_units,
3419 n_allocated
3420 * sizeof (struct dwarf2_per_cu_data *));
3421 }
3422 all_comp_units[n_comp_units++] = this_cu;
3423
3424 info_ptr = info_ptr + this_cu->length;
3425 }
3426
3427 dwarf2_per_objfile->all_comp_units
3428 = obstack_alloc (&objfile->objfile_obstack,
3429 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
3430 memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
3431 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
3432 xfree (all_comp_units);
3433 dwarf2_per_objfile->n_comp_units = n_comp_units;
3434 }
3435
3436 /* Process all loaded DIEs for compilation unit CU, starting at
3437 FIRST_DIE. The caller should pass NEED_PC == 1 if the compilation
3438 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
3439 DW_AT_ranges). If NEED_PC is set, then this function will set
3440 *LOWPC and *HIGHPC to the lowest and highest PC values found in CU
3441 and record the covered ranges in the addrmap. */
3442
3443 static void
3444 scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
3445 CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
3446 {
3447 struct partial_die_info *pdi;
3448
3449 /* Now, march along the PDI's, descending into ones which have
3450 interesting children but skipping the children of the other ones,
3451 until we reach the end of the compilation unit. */
3452
3453 pdi = first_die;
3454
3455 while (pdi != NULL)
3456 {
3457 fixup_partial_die (pdi, cu);
3458
3459 /* Anonymous namespaces or modules have no name but have interesting
3460 children, so we need to look at them. Ditto for anonymous
3461 enums. */
3462
3463 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
3464 || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type)
3465 {
3466 switch (pdi->tag)
3467 {
3468 case DW_TAG_subprogram:
3469 add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
3470 break;
3471 case DW_TAG_variable:
3472 case DW_TAG_typedef:
3473 case DW_TAG_union_type:
3474 if (!pdi->is_declaration)
3475 {
3476 add_partial_symbol (pdi, cu);
3477 }
3478 break;
3479 case DW_TAG_class_type:
3480 case DW_TAG_interface_type:
3481 case DW_TAG_structure_type:
3482 if (!pdi->is_declaration)
3483 {
3484 add_partial_symbol (pdi, cu);
3485 }
3486 break;
3487 case DW_TAG_enumeration_type:
3488 if (!pdi->is_declaration)
3489 add_partial_enumeration (pdi, cu);
3490 break;
3491 case DW_TAG_base_type:
3492 case DW_TAG_subrange_type:
3493 /* File scope base type definitions are added to the partial
3494 symbol table. */
3495 add_partial_symbol (pdi, cu);
3496 break;
3497 case DW_TAG_namespace:
3498 add_partial_namespace (pdi, lowpc, highpc, need_pc, cu);
3499 break;
3500 case DW_TAG_module:
3501 add_partial_module (pdi, lowpc, highpc, need_pc, cu);
3502 break;
3503 default:
3504 break;
3505 }
3506 }
3507
3508 /* If the die has a sibling, skip to the sibling. */
3509
3510 pdi = pdi->die_sibling;
3511 }
3512 }
3513
3514 /* Functions used to compute the fully scoped name of a partial DIE.
3515
3516 Normally, this is simple. For C++, the parent DIE's fully scoped
3517 name is concatenated with "::" and the partial DIE's name. For
3518 Java, the same thing occurs except that "." is used instead of "::".
3519 Enumerators are an exception; they use the scope of their parent
3520 enumeration type, i.e. the name of the enumeration type is not
3521 prepended to the enumerator.
3522
3523 There are two complexities. One is DW_AT_specification; in this
3524 case "parent" means the parent of the target of the specification,
3525 instead of the direct parent of the DIE. The other is compilers
3526 which do not emit DW_TAG_namespace; in this case we try to guess
3527 the fully qualified name of structure types from their members'
3528 linkage names. This must be done using the DIE's children rather
3529 than the children of any DW_AT_specification target. We only need
3530 to do this for structures at the top level, i.e. if the target of
3531 any DW_AT_specification (if any; otherwise the DIE itself) does not
3532 have a parent. */
3533
3534 /* Compute the scope prefix associated with PDI's parent, in
3535 compilation unit CU. The result will be allocated on CU's
3536 comp_unit_obstack, or a copy of the already allocated PDI->NAME
3537 field. NULL is returned if no prefix is necessary. */
3538 static char *
3539 partial_die_parent_scope (struct partial_die_info *pdi,
3540 struct dwarf2_cu *cu)
3541 {
3542 char *grandparent_scope;
3543 struct partial_die_info *parent, *real_pdi;
3544
3545 /* We need to look at our parent DIE; if we have a DW_AT_specification,
3546 then this means the parent of the specification DIE. */
3547
3548 real_pdi = pdi;
3549 while (real_pdi->has_specification)
3550 real_pdi = find_partial_die (real_pdi->spec_offset, cu);
3551
3552 parent = real_pdi->die_parent;
3553 if (parent == NULL)
3554 return NULL;
3555
3556 if (parent->scope_set)
3557 return parent->scope;
3558
3559 fixup_partial_die (parent, cu);
3560
3561 grandparent_scope = partial_die_parent_scope (parent, cu);
3562
3563 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
3564 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
3565 Work around this problem here. */
3566 if (cu->language == language_cplus
3567 && parent->tag == DW_TAG_namespace
3568 && strcmp (parent->name, "::") == 0
3569 && grandparent_scope == NULL)
3570 {
3571 parent->scope = NULL;
3572 parent->scope_set = 1;
3573 return NULL;
3574 }
3575
3576 if (parent->tag == DW_TAG_namespace
3577 || parent->tag == DW_TAG_module
3578 || parent->tag == DW_TAG_structure_type
3579 || parent->tag == DW_TAG_class_type
3580 || parent->tag == DW_TAG_interface_type
3581 || parent->tag == DW_TAG_union_type
3582 || parent->tag == DW_TAG_enumeration_type)
3583 {
3584 if (grandparent_scope == NULL)
3585 parent->scope = parent->name;
3586 else
3587 parent->scope = typename_concat (&cu->comp_unit_obstack, grandparent_scope,
3588 parent->name, 0, cu);
3589 }
3590 else if (parent->tag == DW_TAG_enumerator)
3591 /* Enumerators should not get the name of the enumeration as a prefix. */
3592 parent->scope = grandparent_scope;
3593 else
3594 {
3595 /* FIXME drow/2004-04-01: What should we be doing with
3596 function-local names? For partial symbols, we should probably be
3597 ignoring them. */
3598 complaint (&symfile_complaints,
3599 _("unhandled containing DIE tag %d for DIE at %d"),
3600 parent->tag, pdi->offset);
3601 parent->scope = grandparent_scope;
3602 }
3603
3604 parent->scope_set = 1;
3605 return parent->scope;
3606 }
3607
3608 /* Return the fully scoped name associated with PDI, from compilation unit
3609 CU. The result will be allocated with malloc. */
3610 static char *
3611 partial_die_full_name (struct partial_die_info *pdi,
3612 struct dwarf2_cu *cu)
3613 {
3614 char *parent_scope;
3615
3616 /* If this is a template instantiation, we can not work out the
3617 template arguments from partial DIEs. So, unfortunately, we have
3618 to go through the full DIEs. At least any work we do building
3619 types here will be reused if full symbols are loaded later. */
3620 if (pdi->has_template_arguments)
3621 {
3622 fixup_partial_die (pdi, cu);
3623
3624 if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
3625 {
3626 struct die_info *die;
3627 struct attribute attr;
3628 struct dwarf2_cu *ref_cu = cu;
3629
3630 attr.name = 0;
3631 attr.form = DW_FORM_ref_addr;
3632 attr.u.addr = pdi->offset;
3633 die = follow_die_ref (NULL, &attr, &ref_cu);
3634
3635 return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
3636 }
3637 }
3638
3639 parent_scope = partial_die_parent_scope (pdi, cu);
3640 if (parent_scope == NULL)
3641 return NULL;
3642 else
3643 return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
3644 }
3645
3646 static void
3647 add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
3648 {
3649 struct objfile *objfile = cu->objfile;
3650 CORE_ADDR addr = 0;
3651 char *actual_name = NULL;
3652 const struct partial_symbol *psym = NULL;
3653 CORE_ADDR baseaddr;
3654 int built_actual_name = 0;
3655
3656 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3657
3658 actual_name = partial_die_full_name (pdi, cu);
3659 if (actual_name)
3660 built_actual_name = 1;
3661
3662 if (actual_name == NULL)
3663 actual_name = pdi->name;
3664
3665 switch (pdi->tag)
3666 {
3667 case DW_TAG_subprogram:
3668 if (pdi->is_external || cu->language == language_ada)
3669 {
3670 /* brobecker/2007-12-26: Normally, only "external" DIEs are part
3671 of the global scope. But in Ada, we want to be able to access
3672 nested procedures globally. So all Ada subprograms are stored
3673 in the global scope. */
3674 /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
3675 mst_text, objfile); */
3676 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
3677 built_actual_name,
3678 VAR_DOMAIN, LOC_BLOCK,
3679 &objfile->global_psymbols,
3680 0, pdi->lowpc + baseaddr,
3681 cu->language, objfile);
3682 }
3683 else
3684 {
3685 /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
3686 mst_file_text, objfile); */
3687 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
3688 built_actual_name,
3689 VAR_DOMAIN, LOC_BLOCK,
3690 &objfile->static_psymbols,
3691 0, pdi->lowpc + baseaddr,
3692 cu->language, objfile);
3693 }
3694 break;
3695 case DW_TAG_variable:
3696 if (pdi->locdesc)
3697 addr = decode_locdesc (pdi->locdesc, cu);
3698
3699 if (pdi->locdesc
3700 && addr == 0
3701 && !dwarf2_per_objfile->has_section_at_zero)
3702 {
3703 /* A global or static variable may also have been stripped
3704 out by the linker if unused, in which case its address
3705 will be nullified; do not add such variables into partial
3706 symbol table then. */
3707 }
3708 else if (pdi->is_external)
3709 {
3710 /* Global Variable.
3711 Don't enter into the minimal symbol tables as there is
3712 a minimal symbol table entry from the ELF symbols already.
3713 Enter into partial symbol table if it has a location
3714 descriptor or a type.
3715 If the location descriptor is missing, new_symbol will create
3716 a LOC_UNRESOLVED symbol, the address of the variable will then
3717 be determined from the minimal symbol table whenever the variable
3718 is referenced.
3719 The address for the partial symbol table entry is not
3720 used by GDB, but it comes in handy for debugging partial symbol
3721 table building. */
3722
3723 if (pdi->locdesc || pdi->has_type)
3724 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
3725 built_actual_name,
3726 VAR_DOMAIN, LOC_STATIC,
3727 &objfile->global_psymbols,
3728 0, addr + baseaddr,
3729 cu->language, objfile);
3730 }
3731 else
3732 {
3733 /* Static Variable. Skip symbols without location descriptors. */
3734 if (pdi->locdesc == NULL)
3735 {
3736 if (built_actual_name)
3737 xfree (actual_name);
3738 return;
3739 }
3740 /*prim_record_minimal_symbol (actual_name, addr + baseaddr,
3741 mst_file_data, objfile); */
3742 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
3743 built_actual_name,
3744 VAR_DOMAIN, LOC_STATIC,
3745 &objfile->static_psymbols,
3746 0, addr + baseaddr,
3747 cu->language, objfile);
3748 }
3749 break;
3750 case DW_TAG_typedef:
3751 case DW_TAG_base_type:
3752 case DW_TAG_subrange_type:
3753 add_psymbol_to_list (actual_name, strlen (actual_name),
3754 built_actual_name,
3755 VAR_DOMAIN, LOC_TYPEDEF,
3756 &objfile->static_psymbols,
3757 0, (CORE_ADDR) 0, cu->language, objfile);
3758 break;
3759 case DW_TAG_namespace:
3760 add_psymbol_to_list (actual_name, strlen (actual_name),
3761 built_actual_name,
3762 VAR_DOMAIN, LOC_TYPEDEF,
3763 &objfile->global_psymbols,
3764 0, (CORE_ADDR) 0, cu->language, objfile);
3765 break;
3766 case DW_TAG_class_type:
3767 case DW_TAG_interface_type:
3768 case DW_TAG_structure_type:
3769 case DW_TAG_union_type:
3770 case DW_TAG_enumeration_type:
3771 /* Skip external references. The DWARF standard says in the section
3772 about "Structure, Union, and Class Type Entries": "An incomplete
3773 structure, union or class type is represented by a structure,
3774 union or class entry that does not have a byte size attribute
3775 and that has a DW_AT_declaration attribute." */
3776 if (!pdi->has_byte_size && pdi->is_declaration)
3777 {
3778 if (built_actual_name)
3779 xfree (actual_name);
3780 return;
3781 }
3782
3783 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
3784 static vs. global. */
3785 add_psymbol_to_list (actual_name, strlen (actual_name),
3786 built_actual_name,
3787 STRUCT_DOMAIN, LOC_TYPEDEF,
3788 (cu->language == language_cplus
3789 || cu->language == language_java)
3790 ? &objfile->global_psymbols
3791 : &objfile->static_psymbols,
3792 0, (CORE_ADDR) 0, cu->language, objfile);
3793
3794 break;
3795 case DW_TAG_enumerator:
3796 add_psymbol_to_list (actual_name, strlen (actual_name),
3797 built_actual_name,
3798 VAR_DOMAIN, LOC_CONST,
3799 (cu->language == language_cplus
3800 || cu->language == language_java)
3801 ? &objfile->global_psymbols
3802 : &objfile->static_psymbols,
3803 0, (CORE_ADDR) 0, cu->language, objfile);
3804 break;
3805 default:
3806 break;
3807 }
3808
3809 if (built_actual_name)
3810 xfree (actual_name);
3811 }
3812
3813 /* Read a partial die corresponding to a namespace; also, add a symbol
3814 corresponding to that namespace to the symbol table. NAMESPACE is
3815 the name of the enclosing namespace. */
3816
3817 static void
3818 add_partial_namespace (struct partial_die_info *pdi,
3819 CORE_ADDR *lowpc, CORE_ADDR *highpc,
3820 int need_pc, struct dwarf2_cu *cu)
3821 {
3822 /* Add a symbol for the namespace. */
3823
3824 add_partial_symbol (pdi, cu);
3825
3826 /* Now scan partial symbols in that namespace. */
3827
3828 if (pdi->has_children)
3829 scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
3830 }
3831
3832 /* Read a partial die corresponding to a Fortran module. */
3833
3834 static void
3835 add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
3836 CORE_ADDR *highpc, int need_pc, struct dwarf2_cu *cu)
3837 {
3838 /* Now scan partial symbols in that module. */
3839
3840 if (pdi->has_children)
3841 scan_partial_symbols (pdi->die_child, lowpc, highpc, need_pc, cu);
3842 }
3843
3844 /* Read a partial die corresponding to a subprogram and create a partial
3845 symbol for that subprogram. When the CU language allows it, this
3846 routine also defines a partial symbol for each nested subprogram
3847 that this subprogram contains.
3848
3849 DIE my also be a lexical block, in which case we simply search
3850 recursively for suprograms defined inside that lexical block.
3851 Again, this is only performed when the CU language allows this
3852 type of definitions. */
3853
3854 static void
3855 add_partial_subprogram (struct partial_die_info *pdi,
3856 CORE_ADDR *lowpc, CORE_ADDR *highpc,
3857 int need_pc, struct dwarf2_cu *cu)
3858 {
3859 if (pdi->tag == DW_TAG_subprogram)
3860 {
3861 if (pdi->has_pc_info)
3862 {
3863 if (pdi->lowpc < *lowpc)
3864 *lowpc = pdi->lowpc;
3865 if (pdi->highpc > *highpc)
3866 *highpc = pdi->highpc;
3867 if (need_pc)
3868 {
3869 CORE_ADDR baseaddr;
3870 struct objfile *objfile = cu->objfile;
3871
3872 baseaddr = ANOFFSET (objfile->section_offsets,
3873 SECT_OFF_TEXT (objfile));
3874 addrmap_set_empty (objfile->psymtabs_addrmap,
3875 pdi->lowpc + baseaddr,
3876 pdi->highpc - 1 + baseaddr,
3877 cu->per_cu->v.psymtab);
3878 }
3879 if (!pdi->is_declaration)
3880 /* Ignore subprogram DIEs that do not have a name, they are
3881 illegal. Do not emit a complaint at this point, we will
3882 do so when we convert this psymtab into a symtab. */
3883 if (pdi->name)
3884 add_partial_symbol (pdi, cu);
3885 }
3886 }
3887
3888 if (! pdi->has_children)
3889 return;
3890
3891 if (cu->language == language_ada)
3892 {
3893 pdi = pdi->die_child;
3894 while (pdi != NULL)
3895 {
3896 fixup_partial_die (pdi, cu);
3897 if (pdi->tag == DW_TAG_subprogram
3898 || pdi->tag == DW_TAG_lexical_block)
3899 add_partial_subprogram (pdi, lowpc, highpc, need_pc, cu);
3900 pdi = pdi->die_sibling;
3901 }
3902 }
3903 }
3904
3905 /* See if we can figure out if the class lives in a namespace. We do
3906 this by looking for a member function; its demangled name will
3907 contain namespace info, if there is any. */
3908
3909 static void
3910 guess_structure_name (struct partial_die_info *struct_pdi,
3911 struct dwarf2_cu *cu)
3912 {
3913 if ((cu->language == language_cplus
3914 || cu->language == language_java)
3915 && cu->has_namespace_info == 0
3916 && struct_pdi->has_children)
3917 {
3918 /* NOTE: carlton/2003-10-07: Getting the info this way changes
3919 what template types look like, because the demangler
3920 frequently doesn't give the same name as the debug info. We
3921 could fix this by only using the demangled name to get the
3922 prefix (but see comment in read_structure_type). */
3923
3924 struct partial_die_info *real_pdi;
3925
3926 /* If this DIE (this DIE's specification, if any) has a parent, then
3927 we should not do this. We'll prepend the parent's fully qualified
3928 name when we create the partial symbol. */
3929
3930 real_pdi = struct_pdi;
3931 while (real_pdi->has_specification)
3932 real_pdi = find_partial_die (real_pdi->spec_offset, cu);
3933
3934 if (real_pdi->die_parent != NULL)
3935 return;
3936 }
3937 }
3938
3939 /* Read a partial die corresponding to an enumeration type. */
3940
3941 static void
3942 add_partial_enumeration (struct partial_die_info *enum_pdi,
3943 struct dwarf2_cu *cu)
3944 {
3945 struct partial_die_info *pdi;
3946
3947 if (enum_pdi->name != NULL)
3948 add_partial_symbol (enum_pdi, cu);
3949
3950 pdi = enum_pdi->die_child;
3951 while (pdi)
3952 {
3953 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
3954 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
3955 else
3956 add_partial_symbol (pdi, cu);
3957 pdi = pdi->die_sibling;
3958 }
3959 }
3960
3961 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
3962 Return the corresponding abbrev, or NULL if the number is zero (indicating
3963 an empty DIE). In either case *BYTES_READ will be set to the length of
3964 the initial number. */
3965
3966 static struct abbrev_info *
3967 peek_die_abbrev (gdb_byte *info_ptr, unsigned int *bytes_read,
3968 struct dwarf2_cu *cu)
3969 {
3970 bfd *abfd = cu->objfile->obfd;
3971 unsigned int abbrev_number;
3972 struct abbrev_info *abbrev;
3973
3974 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
3975
3976 if (abbrev_number == 0)
3977 return NULL;
3978
3979 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
3980 if (!abbrev)
3981 {
3982 error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"), abbrev_number,
3983 bfd_get_filename (abfd));
3984 }
3985
3986 return abbrev;
3987 }
3988
3989 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
3990 Returns a pointer to the end of a series of DIEs, terminated by an empty
3991 DIE. Any children of the skipped DIEs will also be skipped. */
3992
3993 static gdb_byte *
3994 skip_children (gdb_byte *buffer, gdb_byte *info_ptr, struct dwarf2_cu *cu)
3995 {
3996 struct abbrev_info *abbrev;
3997 unsigned int bytes_read;
3998
3999 while (1)
4000 {
4001 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
4002 if (abbrev == NULL)
4003 return info_ptr + bytes_read;
4004 else
4005 info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
4006 }
4007 }
4008
4009 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
4010 INFO_PTR should point just after the initial uleb128 of a DIE, and the
4011 abbrev corresponding to that skipped uleb128 should be passed in
4012 ABBREV. Returns a pointer to this DIE's sibling, skipping any
4013 children. */
4014
4015 static gdb_byte *
4016 skip_one_die (gdb_byte *buffer, gdb_byte *info_ptr,
4017 struct abbrev_info *abbrev, struct dwarf2_cu *cu)
4018 {
4019 unsigned int bytes_read;
4020 struct attribute attr;
4021 bfd *abfd = cu->objfile->obfd;
4022 unsigned int form, i;
4023
4024 for (i = 0; i < abbrev->num_attrs; i++)
4025 {
4026 /* The only abbrev we care about is DW_AT_sibling. */
4027 if (abbrev->attrs[i].name == DW_AT_sibling)
4028 {
4029 read_attribute (&attr, &abbrev->attrs[i],
4030 abfd, info_ptr, cu);
4031 if (attr.form == DW_FORM_ref_addr)
4032 complaint (&symfile_complaints, _("ignoring absolute DW_AT_sibling"));
4033 else
4034 return buffer + dwarf2_get_ref_die_offset (&attr);
4035 }
4036
4037 /* If it isn't DW_AT_sibling, skip this attribute. */
4038 form = abbrev->attrs[i].form;
4039 skip_attribute:
4040 switch (form)
4041 {
4042 case DW_FORM_ref_addr:
4043 /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
4044 and later it is offset sized. */
4045 if (cu->header.version == 2)
4046 info_ptr += cu->header.addr_size;
4047 else
4048 info_ptr += cu->header.offset_size;
4049 break;
4050 case DW_FORM_addr:
4051 info_ptr += cu->header.addr_size;
4052 break;
4053 case DW_FORM_data1:
4054 case DW_FORM_ref1:
4055 case DW_FORM_flag:
4056 info_ptr += 1;
4057 break;
4058 case DW_FORM_flag_present:
4059 break;
4060 case DW_FORM_data2:
4061 case DW_FORM_ref2:
4062 info_ptr += 2;
4063 break;
4064 case DW_FORM_data4:
4065 case DW_FORM_ref4:
4066 info_ptr += 4;
4067 break;
4068 case DW_FORM_data8:
4069 case DW_FORM_ref8:
4070 case DW_FORM_sig8:
4071 info_ptr += 8;
4072 break;
4073 case DW_FORM_string:
4074 read_direct_string (abfd, info_ptr, &bytes_read);
4075 info_ptr += bytes_read;
4076 break;
4077 case DW_FORM_sec_offset:
4078 case DW_FORM_strp:
4079 info_ptr += cu->header.offset_size;
4080 break;
4081 case DW_FORM_exprloc:
4082 case DW_FORM_block:
4083 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4084 info_ptr += bytes_read;
4085 break;
4086 case DW_FORM_block1:
4087 info_ptr += 1 + read_1_byte (abfd, info_ptr);
4088 break;
4089 case DW_FORM_block2:
4090 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
4091 break;
4092 case DW_FORM_block4:
4093 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
4094 break;
4095 case DW_FORM_sdata:
4096 case DW_FORM_udata:
4097 case DW_FORM_ref_udata:
4098 info_ptr = skip_leb128 (abfd, info_ptr);
4099 break;
4100 case DW_FORM_indirect:
4101 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4102 info_ptr += bytes_read;
4103 /* We need to continue parsing from here, so just go back to
4104 the top. */
4105 goto skip_attribute;
4106
4107 default:
4108 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
4109 dwarf_form_name (form),
4110 bfd_get_filename (abfd));
4111 }
4112 }
4113
4114 if (abbrev->has_children)
4115 return skip_children (buffer, info_ptr, cu);
4116 else
4117 return info_ptr;
4118 }
4119
4120 /* Locate ORIG_PDI's sibling.
4121 INFO_PTR should point to the start of the next DIE after ORIG_PDI
4122 in BUFFER. */
4123
4124 static gdb_byte *
4125 locate_pdi_sibling (struct partial_die_info *orig_pdi,
4126 gdb_byte *buffer, gdb_byte *info_ptr,
4127 bfd *abfd, struct dwarf2_cu *cu)
4128 {
4129 /* Do we know the sibling already? */
4130
4131 if (orig_pdi->sibling)
4132 return orig_pdi->sibling;
4133
4134 /* Are there any children to deal with? */
4135
4136 if (!orig_pdi->has_children)
4137 return info_ptr;
4138
4139 /* Skip the children the long way. */
4140
4141 return skip_children (buffer, info_ptr, cu);
4142 }
4143
4144 /* Expand this partial symbol table into a full symbol table. */
4145
4146 static void
4147 dwarf2_psymtab_to_symtab (struct partial_symtab *pst)
4148 {
4149 if (pst != NULL)
4150 {
4151 if (pst->readin)
4152 {
4153 warning (_("bug: psymtab for %s is already read in."), pst->filename);
4154 }
4155 else
4156 {
4157 if (info_verbose)
4158 {
4159 printf_filtered (_("Reading in symbols for %s..."), pst->filename);
4160 gdb_flush (gdb_stdout);
4161 }
4162
4163 /* Restore our global data. */
4164 dwarf2_per_objfile = objfile_data (pst->objfile,
4165 dwarf2_objfile_data_key);
4166
4167 /* If this psymtab is constructed from a debug-only objfile, the
4168 has_section_at_zero flag will not necessarily be correct. We
4169 can get the correct value for this flag by looking at the data
4170 associated with the (presumably stripped) associated objfile. */
4171 if (pst->objfile->separate_debug_objfile_backlink)
4172 {
4173 struct dwarf2_per_objfile *dpo_backlink
4174 = objfile_data (pst->objfile->separate_debug_objfile_backlink,
4175 dwarf2_objfile_data_key);
4176
4177 dwarf2_per_objfile->has_section_at_zero
4178 = dpo_backlink->has_section_at_zero;
4179 }
4180
4181 dwarf2_per_objfile->reading_partial_symbols = 0;
4182
4183 psymtab_to_symtab_1 (pst);
4184
4185 /* Finish up the debug error message. */
4186 if (info_verbose)
4187 printf_filtered (_("done.\n"));
4188 }
4189 }
4190 }
4191
4192 /* Add PER_CU to the queue. */
4193
4194 static void
4195 queue_comp_unit (struct dwarf2_per_cu_data *per_cu, struct objfile *objfile)
4196 {
4197 struct dwarf2_queue_item *item;
4198
4199 per_cu->queued = 1;
4200 item = xmalloc (sizeof (*item));
4201 item->per_cu = per_cu;
4202 item->next = NULL;
4203
4204 if (dwarf2_queue == NULL)
4205 dwarf2_queue = item;
4206 else
4207 dwarf2_queue_tail->next = item;
4208
4209 dwarf2_queue_tail = item;
4210 }
4211
4212 /* Process the queue. */
4213
4214 static void
4215 process_queue (struct objfile *objfile)
4216 {
4217 struct dwarf2_queue_item *item, *next_item;
4218
4219 /* The queue starts out with one item, but following a DIE reference
4220 may load a new CU, adding it to the end of the queue. */
4221 for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
4222 {
4223 if (dwarf2_per_objfile->using_index
4224 ? !item->per_cu->v.quick->symtab
4225 : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
4226 process_full_comp_unit (item->per_cu);
4227
4228 item->per_cu->queued = 0;
4229 next_item = item->next;
4230 xfree (item);
4231 }
4232
4233 dwarf2_queue_tail = NULL;
4234 }
4235
4236 /* Free all allocated queue entries. This function only releases anything if
4237 an error was thrown; if the queue was processed then it would have been
4238 freed as we went along. */
4239
4240 static void
4241 dwarf2_release_queue (void *dummy)
4242 {
4243 struct dwarf2_queue_item *item, *last;
4244
4245 item = dwarf2_queue;
4246 while (item)
4247 {
4248 /* Anything still marked queued is likely to be in an
4249 inconsistent state, so discard it. */
4250 if (item->per_cu->queued)
4251 {
4252 if (item->per_cu->cu != NULL)
4253 free_one_cached_comp_unit (item->per_cu->cu);
4254 item->per_cu->queued = 0;
4255 }
4256
4257 last = item;
4258 item = item->next;
4259 xfree (last);
4260 }
4261
4262 dwarf2_queue = dwarf2_queue_tail = NULL;
4263 }
4264
4265 /* Read in full symbols for PST, and anything it depends on. */
4266
4267 static void
4268 psymtab_to_symtab_1 (struct partial_symtab *pst)
4269 {
4270 struct dwarf2_per_cu_data *per_cu;
4271 struct cleanup *back_to;
4272 int i;
4273
4274 for (i = 0; i < pst->number_of_dependencies; i++)
4275 if (!pst->dependencies[i]->readin)
4276 {
4277 /* Inform about additional files that need to be read in. */
4278 if (info_verbose)
4279 {
4280 /* FIXME: i18n: Need to make this a single string. */
4281 fputs_filtered (" ", gdb_stdout);
4282 wrap_here ("");
4283 fputs_filtered ("and ", gdb_stdout);
4284 wrap_here ("");
4285 printf_filtered ("%s...", pst->dependencies[i]->filename);
4286 wrap_here (""); /* Flush output */
4287 gdb_flush (gdb_stdout);
4288 }
4289 psymtab_to_symtab_1 (pst->dependencies[i]);
4290 }
4291
4292 per_cu = pst->read_symtab_private;
4293
4294 if (per_cu == NULL)
4295 {
4296 /* It's an include file, no symbols to read for it.
4297 Everything is in the parent symtab. */
4298 pst->readin = 1;
4299 return;
4300 }
4301
4302 dw2_do_instantiate_symtab (pst->objfile, per_cu);
4303 }
4304
4305 /* Load the DIEs associated with PER_CU into memory. */
4306
4307 static void
4308 load_full_comp_unit (struct dwarf2_per_cu_data *per_cu, struct objfile *objfile)
4309 {
4310 bfd *abfd = objfile->obfd;
4311 struct dwarf2_cu *cu;
4312 unsigned int offset;
4313 gdb_byte *info_ptr, *beg_of_comp_unit;
4314 struct cleanup *free_abbrevs_cleanup = NULL, *free_cu_cleanup = NULL;
4315 struct attribute *attr;
4316 int read_cu = 0;
4317
4318 gdb_assert (! per_cu->from_debug_types);
4319
4320 /* Set local variables from the partial symbol table info. */
4321 offset = per_cu->offset;
4322
4323 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
4324 info_ptr = dwarf2_per_objfile->info.buffer + offset;
4325 beg_of_comp_unit = info_ptr;
4326
4327 if (per_cu->cu == NULL)
4328 {
4329 cu = alloc_one_comp_unit (objfile);
4330
4331 read_cu = 1;
4332
4333 /* If an error occurs while loading, release our storage. */
4334 free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
4335
4336 /* Read in the comp_unit header. */
4337 info_ptr = read_comp_unit_head (&cu->header, info_ptr, abfd);
4338
4339 /* Complete the cu_header. */
4340 cu->header.offset = offset;
4341 cu->header.first_die_offset = info_ptr - beg_of_comp_unit;
4342
4343 /* Read the abbrevs for this compilation unit. */
4344 dwarf2_read_abbrevs (abfd, cu);
4345 free_abbrevs_cleanup = make_cleanup (dwarf2_free_abbrev_table, cu);
4346
4347 /* Link this compilation unit into the compilation unit tree. */
4348 per_cu->cu = cu;
4349 cu->per_cu = per_cu;
4350
4351 /* Link this CU into read_in_chain. */
4352 per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
4353 dwarf2_per_objfile->read_in_chain = per_cu;
4354 }
4355 else
4356 {
4357 cu = per_cu->cu;
4358 info_ptr += cu->header.first_die_offset;
4359 }
4360
4361 cu->dies = read_comp_unit (info_ptr, cu);
4362
4363 /* We try not to read any attributes in this function, because not
4364 all objfiles needed for references have been loaded yet, and symbol
4365 table processing isn't initialized. But we have to set the CU language,
4366 or we won't be able to build types correctly. */
4367 attr = dwarf2_attr (cu->dies, DW_AT_language, cu);
4368 if (attr)
4369 set_cu_language (DW_UNSND (attr), cu);
4370 else
4371 set_cu_language (language_minimal, cu);
4372
4373 /* Similarly, if we do not read the producer, we can not apply
4374 producer-specific interpretation. */
4375 attr = dwarf2_attr (cu->dies, DW_AT_producer, cu);
4376 if (attr)
4377 cu->producer = DW_STRING (attr);
4378
4379 if (read_cu)
4380 {
4381 do_cleanups (free_abbrevs_cleanup);
4382
4383 /* We've successfully allocated this compilation unit. Let our
4384 caller clean it up when finished with it. */
4385 discard_cleanups (free_cu_cleanup);
4386 }
4387 }
4388
4389 /* Add a DIE to the delayed physname list. */
4390
4391 static void
4392 add_to_method_list (struct type *type, int fnfield_index, int index,
4393 const char *name, struct die_info *die,
4394 struct dwarf2_cu *cu)
4395 {
4396 struct delayed_method_info mi;
4397 mi.type = type;
4398 mi.fnfield_index = fnfield_index;
4399 mi.index = index;
4400 mi.name = name;
4401 mi.die = die;
4402 VEC_safe_push (delayed_method_info, cu->method_list, &mi);
4403 }
4404
4405 /* A cleanup for freeing the delayed method list. */
4406
4407 static void
4408 free_delayed_list (void *ptr)
4409 {
4410 struct dwarf2_cu *cu = (struct dwarf2_cu *) ptr;
4411 if (cu->method_list != NULL)
4412 {
4413 VEC_free (delayed_method_info, cu->method_list);
4414 cu->method_list = NULL;
4415 }
4416 }
4417
4418 /* Compute the physnames of any methods on the CU's method list.
4419
4420 The computation of method physnames is delayed in order to avoid the
4421 (bad) condition that one of the method's formal parameters is of an as yet
4422 incomplete type. */
4423
4424 static void
4425 compute_delayed_physnames (struct dwarf2_cu *cu)
4426 {
4427 int i;
4428 struct delayed_method_info *mi;
4429 for (i = 0; VEC_iterate (delayed_method_info, cu->method_list, i, mi) ; ++i)
4430 {
4431 char *physname;
4432 struct fn_fieldlist *fn_flp
4433 = &TYPE_FN_FIELDLIST (mi->type, mi->fnfield_index);
4434 physname = (char *) dwarf2_physname ((char *) mi->name, mi->die, cu);
4435 fn_flp->fn_fields[mi->index].physname = physname ? physname : "";
4436 }
4437 }
4438
4439 /* Generate full symbol information for PST and CU, whose DIEs have
4440 already been loaded into memory. */
4441
4442 static void
4443 process_full_comp_unit (struct dwarf2_per_cu_data *per_cu)
4444 {
4445 struct dwarf2_cu *cu = per_cu->cu;
4446 struct objfile *objfile = per_cu->objfile;
4447 CORE_ADDR lowpc, highpc;
4448 struct symtab *symtab;
4449 struct cleanup *back_to, *delayed_list_cleanup;
4450 CORE_ADDR baseaddr;
4451
4452 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
4453
4454 buildsym_init ();
4455 back_to = make_cleanup (really_free_pendings, NULL);
4456 delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
4457
4458 cu->list_in_scope = &file_symbols;
4459
4460 dwarf2_find_base_address (cu->dies, cu);
4461
4462 /* Do line number decoding in read_file_scope () */
4463 process_die (cu->dies, cu);
4464
4465 /* Now that we have processed all the DIEs in the CU, all the types
4466 should be complete, and it should now be safe to compute all of the
4467 physnames. */
4468 compute_delayed_physnames (cu);
4469 do_cleanups (delayed_list_cleanup);
4470
4471 /* Some compilers don't define a DW_AT_high_pc attribute for the
4472 compilation unit. If the DW_AT_high_pc is missing, synthesize
4473 it, by scanning the DIE's below the compilation unit. */
4474 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
4475
4476 symtab = end_symtab (highpc + baseaddr, objfile, SECT_OFF_TEXT (objfile));
4477
4478 /* Set symtab language to language from DW_AT_language.
4479 If the compilation is from a C file generated by language preprocessors,
4480 do not set the language if it was already deduced by start_subfile. */
4481 if (symtab != NULL
4482 && !(cu->language == language_c && symtab->language != language_c))
4483 {
4484 symtab->language = cu->language;
4485 }
4486
4487 if (dwarf2_per_objfile->using_index)
4488 per_cu->v.quick->symtab = symtab;
4489 else
4490 {
4491 struct partial_symtab *pst = per_cu->v.psymtab;
4492 pst->symtab = symtab;
4493 pst->readin = 1;
4494 }
4495
4496 do_cleanups (back_to);
4497 }
4498
4499 /* Process a die and its children. */
4500
4501 static void
4502 process_die (struct die_info *die, struct dwarf2_cu *cu)
4503 {
4504 switch (die->tag)
4505 {
4506 case DW_TAG_padding:
4507 break;
4508 case DW_TAG_compile_unit:
4509 read_file_scope (die, cu);
4510 break;
4511 case DW_TAG_type_unit:
4512 read_type_unit_scope (die, cu);
4513 break;
4514 case DW_TAG_subprogram:
4515 case DW_TAG_inlined_subroutine:
4516 read_func_scope (die, cu);
4517 break;
4518 case DW_TAG_lexical_block:
4519 case DW_TAG_try_block:
4520 case DW_TAG_catch_block:
4521 read_lexical_block_scope (die, cu);
4522 break;
4523 case DW_TAG_class_type:
4524 case DW_TAG_interface_type:
4525 case DW_TAG_structure_type:
4526 case DW_TAG_union_type:
4527 process_structure_scope (die, cu);
4528 break;
4529 case DW_TAG_enumeration_type:
4530 process_enumeration_scope (die, cu);
4531 break;
4532
4533 /* These dies have a type, but processing them does not create
4534 a symbol or recurse to process the children. Therefore we can
4535 read them on-demand through read_type_die. */
4536 case DW_TAG_subroutine_type:
4537 case DW_TAG_set_type:
4538 case DW_TAG_array_type:
4539 case DW_TAG_pointer_type:
4540 case DW_TAG_ptr_to_member_type:
4541 case DW_TAG_reference_type:
4542 case DW_TAG_string_type:
4543 break;
4544
4545 case DW_TAG_base_type:
4546 case DW_TAG_subrange_type:
4547 case DW_TAG_typedef:
4548 /* Add a typedef symbol for the type definition, if it has a
4549 DW_AT_name. */
4550 new_symbol (die, read_type_die (die, cu), cu);
4551 break;
4552 case DW_TAG_common_block:
4553 read_common_block (die, cu);
4554 break;
4555 case DW_TAG_common_inclusion:
4556 break;
4557 case DW_TAG_namespace:
4558 processing_has_namespace_info = 1;
4559 read_namespace (die, cu);
4560 break;
4561 case DW_TAG_module:
4562 processing_has_namespace_info = 1;
4563 read_module (die, cu);
4564 break;
4565 case DW_TAG_imported_declaration:
4566 case DW_TAG_imported_module:
4567 processing_has_namespace_info = 1;
4568 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
4569 || cu->language != language_fortran))
4570 complaint (&symfile_complaints, _("Tag '%s' has unexpected children"),
4571 dwarf_tag_name (die->tag));
4572 read_import_statement (die, cu);
4573 break;
4574 default:
4575 new_symbol (die, NULL, cu);
4576 break;
4577 }
4578 }
4579
4580 /* A helper function for dwarf2_compute_name which determines whether DIE
4581 needs to have the name of the scope prepended to the name listed in the
4582 die. */
4583
4584 static int
4585 die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
4586 {
4587 struct attribute *attr;
4588
4589 switch (die->tag)
4590 {
4591 case DW_TAG_namespace:
4592 case DW_TAG_typedef:
4593 case DW_TAG_class_type:
4594 case DW_TAG_interface_type:
4595 case DW_TAG_structure_type:
4596 case DW_TAG_union_type:
4597 case DW_TAG_enumeration_type:
4598 case DW_TAG_enumerator:
4599 case DW_TAG_subprogram:
4600 case DW_TAG_member:
4601 return 1;
4602
4603 case DW_TAG_variable:
4604 /* We only need to prefix "globally" visible variables. These include
4605 any variable marked with DW_AT_external or any variable that
4606 lives in a namespace. [Variables in anonymous namespaces
4607 require prefixing, but they are not DW_AT_external.] */
4608
4609 if (dwarf2_attr (die, DW_AT_specification, cu))
4610 {
4611 struct dwarf2_cu *spec_cu = cu;
4612
4613 return die_needs_namespace (die_specification (die, &spec_cu),
4614 spec_cu);
4615 }
4616
4617 attr = dwarf2_attr (die, DW_AT_external, cu);
4618 if (attr == NULL && die->parent->tag != DW_TAG_namespace
4619 && die->parent->tag != DW_TAG_module)
4620 return 0;
4621 /* A variable in a lexical block of some kind does not need a
4622 namespace, even though in C++ such variables may be external
4623 and have a mangled name. */
4624 if (die->parent->tag == DW_TAG_lexical_block
4625 || die->parent->tag == DW_TAG_try_block
4626 || die->parent->tag == DW_TAG_catch_block
4627 || die->parent->tag == DW_TAG_subprogram)
4628 return 0;
4629 return 1;
4630
4631 default:
4632 return 0;
4633 }
4634 }
4635
4636 /* Retrieve the last character from a mem_file. */
4637
4638 static void
4639 do_ui_file_peek_last (void *object, const char *buffer, long length)
4640 {
4641 char *last_char_p = (char *) object;
4642
4643 if (length > 0)
4644 *last_char_p = buffer[length - 1];
4645 }
4646
4647 /* Compute the fully qualified name of DIE in CU. If PHYSNAME is nonzero,
4648 compute the physname for the object, which include a method's
4649 formal parameters (C++/Java) and return type (Java).
4650
4651 For Ada, return the DIE's linkage name rather than the fully qualified
4652 name. PHYSNAME is ignored..
4653
4654 The result is allocated on the objfile_obstack and canonicalized. */
4655
4656 static const char *
4657 dwarf2_compute_name (char *name, struct die_info *die, struct dwarf2_cu *cu,
4658 int physname)
4659 {
4660 if (name == NULL)
4661 name = dwarf2_name (die, cu);
4662
4663 /* For Fortran GDB prefers DW_AT_*linkage_name if present but otherwise
4664 compute it by typename_concat inside GDB. */
4665 if (cu->language == language_ada
4666 || (cu->language == language_fortran && physname))
4667 {
4668 /* For Ada unit, we prefer the linkage name over the name, as
4669 the former contains the exported name, which the user expects
4670 to be able to reference. Ideally, we want the user to be able
4671 to reference this entity using either natural or linkage name,
4672 but we haven't started looking at this enhancement yet. */
4673 struct attribute *attr;
4674
4675 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
4676 if (attr == NULL)
4677 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
4678 if (attr && DW_STRING (attr))
4679 return DW_STRING (attr);
4680 }
4681
4682 /* These are the only languages we know how to qualify names in. */
4683 if (name != NULL
4684 && (cu->language == language_cplus || cu->language == language_java
4685 || cu->language == language_fortran))
4686 {
4687 if (die_needs_namespace (die, cu))
4688 {
4689 long length;
4690 char *prefix;
4691 struct ui_file *buf;
4692
4693 prefix = determine_prefix (die, cu);
4694 buf = mem_fileopen ();
4695 if (*prefix != '\0')
4696 {
4697 char *prefixed_name = typename_concat (NULL, prefix, name,
4698 physname, cu);
4699
4700 fputs_unfiltered (prefixed_name, buf);
4701 xfree (prefixed_name);
4702 }
4703 else
4704 fputs_unfiltered (name ? name : "", buf);
4705
4706 /* Template parameters may be specified in the DIE's DW_AT_name, or
4707 as children with DW_TAG_template_type_param or
4708 DW_TAG_value_type_param. If the latter, add them to the name
4709 here. If the name already has template parameters, then
4710 skip this step; some versions of GCC emit both, and
4711 it is more efficient to use the pre-computed name.
4712
4713 Something to keep in mind about this process: it is very
4714 unlikely, or in some cases downright impossible, to produce
4715 something that will match the mangled name of a function.
4716 If the definition of the function has the same debug info,
4717 we should be able to match up with it anyway. But fallbacks
4718 using the minimal symbol, for instance to find a method
4719 implemented in a stripped copy of libstdc++, will not work.
4720 If we do not have debug info for the definition, we will have to
4721 match them up some other way.
4722
4723 When we do name matching there is a related problem with function
4724 templates; two instantiated function templates are allowed to
4725 differ only by their return types, which we do not add here. */
4726
4727 if (cu->language == language_cplus && strchr (name, '<') == NULL)
4728 {
4729 struct attribute *attr;
4730 struct die_info *child;
4731 int first = 1;
4732
4733 die->building_fullname = 1;
4734
4735 for (child = die->child; child != NULL; child = child->sibling)
4736 {
4737 struct type *type;
4738 long value;
4739 gdb_byte *bytes;
4740 struct dwarf2_locexpr_baton *baton;
4741 struct value *v;
4742
4743 if (child->tag != DW_TAG_template_type_param
4744 && child->tag != DW_TAG_template_value_param)
4745 continue;
4746
4747 if (first)
4748 {
4749 fputs_unfiltered ("<", buf);
4750 first = 0;
4751 }
4752 else
4753 fputs_unfiltered (", ", buf);
4754
4755 attr = dwarf2_attr (child, DW_AT_type, cu);
4756 if (attr == NULL)
4757 {
4758 complaint (&symfile_complaints,
4759 _("template parameter missing DW_AT_type"));
4760 fputs_unfiltered ("UNKNOWN_TYPE", buf);
4761 continue;
4762 }
4763 type = die_type (child, cu);
4764
4765 if (child->tag == DW_TAG_template_type_param)
4766 {
4767 c_print_type (type, "", buf, -1, 0);
4768 continue;
4769 }
4770
4771 attr = dwarf2_attr (child, DW_AT_const_value, cu);
4772 if (attr == NULL)
4773 {
4774 complaint (&symfile_complaints,
4775 _("template parameter missing DW_AT_const_value"));
4776 fputs_unfiltered ("UNKNOWN_VALUE", buf);
4777 continue;
4778 }
4779
4780 dwarf2_const_value_attr (attr, type, name,
4781 &cu->comp_unit_obstack, cu,
4782 &value, &bytes, &baton);
4783
4784 if (TYPE_NOSIGN (type))
4785 /* GDB prints characters as NUMBER 'CHAR'. If that's
4786 changed, this can use value_print instead. */
4787 c_printchar (value, type, buf);
4788 else
4789 {
4790 struct value_print_options opts;
4791
4792 if (baton != NULL)
4793 v = dwarf2_evaluate_loc_desc (type, NULL,
4794 baton->data,
4795 baton->size,
4796 baton->per_cu);
4797 else if (bytes != NULL)
4798 {
4799 v = allocate_value (type);
4800 memcpy (value_contents_writeable (v), bytes,
4801 TYPE_LENGTH (type));
4802 }
4803 else
4804 v = value_from_longest (type, value);
4805
4806 /* Specify decimal so that we do not depend on the radix. */
4807 get_formatted_print_options (&opts, 'd');
4808 opts.raw = 1;
4809 value_print (v, buf, &opts);
4810 release_value (v);
4811 value_free (v);
4812 }
4813 }
4814
4815 die->building_fullname = 0;
4816
4817 if (!first)
4818 {
4819 /* Close the argument list, with a space if necessary
4820 (nested templates). */
4821 char last_char = '\0';
4822 ui_file_put (buf, do_ui_file_peek_last, &last_char);
4823 if (last_char == '>')
4824 fputs_unfiltered (" >", buf);
4825 else
4826 fputs_unfiltered (">", buf);
4827 }
4828 }
4829
4830 /* For Java and C++ methods, append formal parameter type
4831 information, if PHYSNAME. */
4832
4833 if (physname && die->tag == DW_TAG_subprogram
4834 && (cu->language == language_cplus
4835 || cu->language == language_java))
4836 {
4837 struct type *type = read_type_die (die, cu);
4838
4839 c_type_print_args (type, buf, 0, cu->language);
4840
4841 if (cu->language == language_java)
4842 {
4843 /* For java, we must append the return type to method
4844 names. */
4845 if (die->tag == DW_TAG_subprogram)
4846 java_print_type (TYPE_TARGET_TYPE (type), "", buf,
4847 0, 0);
4848 }
4849 else if (cu->language == language_cplus)
4850 {
4851 /* Assume that an artificial first parameter is
4852 "this", but do not crash if it is not. RealView
4853 marks unnamed (and thus unused) parameters as
4854 artificial; there is no way to differentiate
4855 the two cases. */
4856 if (TYPE_NFIELDS (type) > 0
4857 && TYPE_FIELD_ARTIFICIAL (type, 0)
4858 && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
4859 && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type, 0))))
4860 fputs_unfiltered (" const", buf);
4861 }
4862 }
4863
4864 name = ui_file_obsavestring (buf, &cu->objfile->objfile_obstack,
4865 &length);
4866 ui_file_delete (buf);
4867
4868 if (cu->language == language_cplus)
4869 {
4870 char *cname
4871 = dwarf2_canonicalize_name (name, cu,
4872 &cu->objfile->objfile_obstack);
4873
4874 if (cname != NULL)
4875 name = cname;
4876 }
4877 }
4878 }
4879
4880 return name;
4881 }
4882
4883 /* Return the fully qualified name of DIE, based on its DW_AT_name.
4884 If scope qualifiers are appropriate they will be added. The result
4885 will be allocated on the objfile_obstack, or NULL if the DIE does
4886 not have a name. NAME may either be from a previous call to
4887 dwarf2_name or NULL.
4888
4889 The output string will be canonicalized (if C++/Java). */
4890
4891 static const char *
4892 dwarf2_full_name (char *name, struct die_info *die, struct dwarf2_cu *cu)
4893 {
4894 return dwarf2_compute_name (name, die, cu, 0);
4895 }
4896
4897 /* Construct a physname for the given DIE in CU. NAME may either be
4898 from a previous call to dwarf2_name or NULL. The result will be
4899 allocated on the objfile_objstack or NULL if the DIE does not have a
4900 name.
4901
4902 The output string will be canonicalized (if C++/Java). */
4903
4904 static const char *
4905 dwarf2_physname (char *name, struct die_info *die, struct dwarf2_cu *cu)
4906 {
4907 return dwarf2_compute_name (name, die, cu, 1);
4908 }
4909
4910 /* Read the import statement specified by the given die and record it. */
4911
4912 static void
4913 read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
4914 {
4915 struct attribute *import_attr;
4916 struct die_info *imported_die;
4917 struct dwarf2_cu *imported_cu;
4918 const char *imported_name;
4919 const char *imported_name_prefix;
4920 const char *canonical_name;
4921 const char *import_alias;
4922 const char *imported_declaration = NULL;
4923 const char *import_prefix;
4924
4925 char *temp;
4926
4927 import_attr = dwarf2_attr (die, DW_AT_import, cu);
4928 if (import_attr == NULL)
4929 {
4930 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
4931 dwarf_tag_name (die->tag));
4932 return;
4933 }
4934
4935 imported_cu = cu;
4936 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
4937 imported_name = dwarf2_name (imported_die, imported_cu);
4938 if (imported_name == NULL)
4939 {
4940 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
4941
4942 The import in the following code:
4943 namespace A
4944 {
4945 typedef int B;
4946 }
4947
4948 int main ()
4949 {
4950 using A::B;
4951 B b;
4952 return b;
4953 }
4954
4955 ...
4956 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
4957 <52> DW_AT_decl_file : 1
4958 <53> DW_AT_decl_line : 6
4959 <54> DW_AT_import : <0x75>
4960 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
4961 <59> DW_AT_name : B
4962 <5b> DW_AT_decl_file : 1
4963 <5c> DW_AT_decl_line : 2
4964 <5d> DW_AT_type : <0x6e>
4965 ...
4966 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
4967 <76> DW_AT_byte_size : 4
4968 <77> DW_AT_encoding : 5 (signed)
4969
4970 imports the wrong die ( 0x75 instead of 0x58 ).
4971 This case will be ignored until the gcc bug is fixed. */
4972 return;
4973 }
4974
4975 /* Figure out the local name after import. */
4976 import_alias = dwarf2_name (die, cu);
4977
4978 /* Figure out where the statement is being imported to. */
4979 import_prefix = determine_prefix (die, cu);
4980
4981 /* Figure out what the scope of the imported die is and prepend it
4982 to the name of the imported die. */
4983 imported_name_prefix = determine_prefix (imported_die, imported_cu);
4984
4985 if (imported_die->tag != DW_TAG_namespace
4986 && imported_die->tag != DW_TAG_module)
4987 {
4988 imported_declaration = imported_name;
4989 canonical_name = imported_name_prefix;
4990 }
4991 else if (strlen (imported_name_prefix) > 0)
4992 {
4993 temp = alloca (strlen (imported_name_prefix)
4994 + 2 + strlen (imported_name) + 1);
4995 strcpy (temp, imported_name_prefix);
4996 strcat (temp, "::");
4997 strcat (temp, imported_name);
4998 canonical_name = temp;
4999 }
5000 else
5001 canonical_name = imported_name;
5002
5003 cp_add_using_directive (import_prefix,
5004 canonical_name,
5005 import_alias,
5006 imported_declaration,
5007 &cu->objfile->objfile_obstack);
5008 }
5009
5010 static void
5011 initialize_cu_func_list (struct dwarf2_cu *cu)
5012 {
5013 cu->first_fn = cu->last_fn = cu->cached_fn = NULL;
5014 }
5015
5016 static void
5017 free_cu_line_header (void *arg)
5018 {
5019 struct dwarf2_cu *cu = arg;
5020
5021 free_line_header (cu->line_header);
5022 cu->line_header = NULL;
5023 }
5024
5025 static void
5026 find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu,
5027 char **name, char **comp_dir)
5028 {
5029 struct attribute *attr;
5030
5031 *name = NULL;
5032 *comp_dir = NULL;
5033
5034 /* Find the filename. Do not use dwarf2_name here, since the filename
5035 is not a source language identifier. */
5036 attr = dwarf2_attr (die, DW_AT_name, cu);
5037 if (attr)
5038 {
5039 *name = DW_STRING (attr);
5040 }
5041
5042 attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
5043 if (attr)
5044 *comp_dir = DW_STRING (attr);
5045 else if (*name != NULL && IS_ABSOLUTE_PATH (*name))
5046 {
5047 *comp_dir = ldirname (*name);
5048 if (*comp_dir != NULL)
5049 make_cleanup (xfree, *comp_dir);
5050 }
5051 if (*comp_dir != NULL)
5052 {
5053 /* Irix 6.2 native cc prepends <machine>.: to the compilation
5054 directory, get rid of it. */
5055 char *cp = strchr (*comp_dir, ':');
5056
5057 if (cp && cp != *comp_dir && cp[-1] == '.' && cp[1] == '/')
5058 *comp_dir = cp + 1;
5059 }
5060
5061 if (*name == NULL)
5062 *name = "<unknown>";
5063 }
5064
5065 static void
5066 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
5067 {
5068 struct objfile *objfile = cu->objfile;
5069 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
5070 CORE_ADDR lowpc = ((CORE_ADDR) -1);
5071 CORE_ADDR highpc = ((CORE_ADDR) 0);
5072 struct attribute *attr;
5073 char *name = NULL;
5074 char *comp_dir = NULL;
5075 struct die_info *child_die;
5076 bfd *abfd = objfile->obfd;
5077 struct line_header *line_header = 0;
5078 CORE_ADDR baseaddr;
5079
5080 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5081
5082 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
5083
5084 /* If we didn't find a lowpc, set it to highpc to avoid complaints
5085 from finish_block. */
5086 if (lowpc == ((CORE_ADDR) -1))
5087 lowpc = highpc;
5088 lowpc += baseaddr;
5089 highpc += baseaddr;
5090
5091 find_file_and_directory (die, cu, &name, &comp_dir);
5092
5093 attr = dwarf2_attr (die, DW_AT_language, cu);
5094 if (attr)
5095 {
5096 set_cu_language (DW_UNSND (attr), cu);
5097 }
5098
5099 attr = dwarf2_attr (die, DW_AT_producer, cu);
5100 if (attr)
5101 cu->producer = DW_STRING (attr);
5102
5103 /* We assume that we're processing GCC output. */
5104 processing_gcc_compilation = 2;
5105
5106 processing_has_namespace_info = 0;
5107
5108 start_symtab (name, comp_dir, lowpc);
5109 record_debugformat ("DWARF 2");
5110 record_producer (cu->producer);
5111
5112 initialize_cu_func_list (cu);
5113
5114 /* Decode line number information if present. We do this before
5115 processing child DIEs, so that the line header table is available
5116 for DW_AT_decl_file. */
5117 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
5118 if (attr)
5119 {
5120 unsigned int line_offset = DW_UNSND (attr);
5121 line_header = dwarf_decode_line_header (line_offset, abfd, cu);
5122 if (line_header)
5123 {
5124 cu->line_header = line_header;
5125 make_cleanup (free_cu_line_header, cu);
5126 dwarf_decode_lines (line_header, comp_dir, abfd, cu, NULL);
5127 }
5128 }
5129
5130 /* Process all dies in compilation unit. */
5131 if (die->child != NULL)
5132 {
5133 child_die = die->child;
5134 while (child_die && child_die->tag)
5135 {
5136 process_die (child_die, cu);
5137 child_die = sibling_die (child_die);
5138 }
5139 }
5140
5141 /* Decode macro information, if present. Dwarf 2 macro information
5142 refers to information in the line number info statement program
5143 header, so we can only read it if we've read the header
5144 successfully. */
5145 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
5146 if (attr && line_header)
5147 {
5148 unsigned int macro_offset = DW_UNSND (attr);
5149
5150 dwarf_decode_macros (line_header, macro_offset,
5151 comp_dir, abfd, cu);
5152 }
5153 do_cleanups (back_to);
5154 }
5155
5156 /* For TUs we want to skip the first top level sibling if it's not the
5157 actual type being defined by this TU. In this case the first top
5158 level sibling is there to provide context only. */
5159
5160 static void
5161 read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
5162 {
5163 struct objfile *objfile = cu->objfile;
5164 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
5165 CORE_ADDR lowpc;
5166 struct attribute *attr;
5167 char *name = NULL;
5168 char *comp_dir = NULL;
5169 struct die_info *child_die;
5170 bfd *abfd = objfile->obfd;
5171
5172 /* start_symtab needs a low pc, but we don't really have one.
5173 Do what read_file_scope would do in the absence of such info. */
5174 lowpc = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5175
5176 /* Find the filename. Do not use dwarf2_name here, since the filename
5177 is not a source language identifier. */
5178 attr = dwarf2_attr (die, DW_AT_name, cu);
5179 if (attr)
5180 name = DW_STRING (attr);
5181
5182 attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
5183 if (attr)
5184 comp_dir = DW_STRING (attr);
5185 else if (name != NULL && IS_ABSOLUTE_PATH (name))
5186 {
5187 comp_dir = ldirname (name);
5188 if (comp_dir != NULL)
5189 make_cleanup (xfree, comp_dir);
5190 }
5191
5192 if (name == NULL)
5193 name = "<unknown>";
5194
5195 attr = dwarf2_attr (die, DW_AT_language, cu);
5196 if (attr)
5197 set_cu_language (DW_UNSND (attr), cu);
5198
5199 /* This isn't technically needed today. It is done for symmetry
5200 with read_file_scope. */
5201 attr = dwarf2_attr (die, DW_AT_producer, cu);
5202 if (attr)
5203 cu->producer = DW_STRING (attr);
5204
5205 /* We assume that we're processing GCC output. */
5206 processing_gcc_compilation = 2;
5207
5208 processing_has_namespace_info = 0;
5209
5210 start_symtab (name, comp_dir, lowpc);
5211 record_debugformat ("DWARF 2");
5212 record_producer (cu->producer);
5213
5214 /* Process the dies in the type unit. */
5215 if (die->child == NULL)
5216 {
5217 dump_die_for_error (die);
5218 error (_("Dwarf Error: Missing children for type unit [in module %s]"),
5219 bfd_get_filename (abfd));
5220 }
5221
5222 child_die = die->child;
5223
5224 while (child_die && child_die->tag)
5225 {
5226 process_die (child_die, cu);
5227
5228 child_die = sibling_die (child_die);
5229 }
5230
5231 do_cleanups (back_to);
5232 }
5233
5234 static void
5235 add_to_cu_func_list (const char *name, CORE_ADDR lowpc, CORE_ADDR highpc,
5236 struct dwarf2_cu *cu)
5237 {
5238 struct function_range *thisfn;
5239
5240 thisfn = (struct function_range *)
5241 obstack_alloc (&cu->comp_unit_obstack, sizeof (struct function_range));
5242 thisfn->name = name;
5243 thisfn->lowpc = lowpc;
5244 thisfn->highpc = highpc;
5245 thisfn->seen_line = 0;
5246 thisfn->next = NULL;
5247
5248 if (cu->last_fn == NULL)
5249 cu->first_fn = thisfn;
5250 else
5251 cu->last_fn->next = thisfn;
5252
5253 cu->last_fn = thisfn;
5254 }
5255
5256 /* qsort helper for inherit_abstract_dies. */
5257
5258 static int
5259 unsigned_int_compar (const void *ap, const void *bp)
5260 {
5261 unsigned int a = *(unsigned int *) ap;
5262 unsigned int b = *(unsigned int *) bp;
5263
5264 return (a > b) - (b > a);
5265 }
5266
5267 /* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
5268 Inherit only the children of the DW_AT_abstract_origin DIE not being already
5269 referenced by DW_AT_abstract_origin from the children of the current DIE. */
5270
5271 static void
5272 inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
5273 {
5274 struct die_info *child_die;
5275 unsigned die_children_count;
5276 /* CU offsets which were referenced by children of the current DIE. */
5277 unsigned *offsets;
5278 unsigned *offsets_end, *offsetp;
5279 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
5280 struct die_info *origin_die;
5281 /* Iterator of the ORIGIN_DIE children. */
5282 struct die_info *origin_child_die;
5283 struct cleanup *cleanups;
5284 struct attribute *attr;
5285 struct dwarf2_cu *origin_cu;
5286 struct pending **origin_previous_list_in_scope;
5287
5288 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
5289 if (!attr)
5290 return;
5291
5292 /* Note that following die references may follow to a die in a
5293 different cu. */
5294
5295 origin_cu = cu;
5296 origin_die = follow_die_ref (die, attr, &origin_cu);
5297
5298 /* We're inheriting ORIGIN's children into the scope we'd put DIE's
5299 symbols in. */
5300 origin_previous_list_in_scope = origin_cu->list_in_scope;
5301 origin_cu->list_in_scope = cu->list_in_scope;
5302
5303 if (die->tag != origin_die->tag
5304 && !(die->tag == DW_TAG_inlined_subroutine
5305 && origin_die->tag == DW_TAG_subprogram))
5306 complaint (&symfile_complaints,
5307 _("DIE 0x%x and its abstract origin 0x%x have different tags"),
5308 die->offset, origin_die->offset);
5309
5310 child_die = die->child;
5311 die_children_count = 0;
5312 while (child_die && child_die->tag)
5313 {
5314 child_die = sibling_die (child_die);
5315 die_children_count++;
5316 }
5317 offsets = xmalloc (sizeof (*offsets) * die_children_count);
5318 cleanups = make_cleanup (xfree, offsets);
5319
5320 offsets_end = offsets;
5321 child_die = die->child;
5322 while (child_die && child_die->tag)
5323 {
5324 /* For each CHILD_DIE, find the corresponding child of
5325 ORIGIN_DIE. If there is more than one layer of
5326 DW_AT_abstract_origin, follow them all; there shouldn't be,
5327 but GCC versions at least through 4.4 generate this (GCC PR
5328 40573). */
5329 struct die_info *child_origin_die = child_die;
5330 struct dwarf2_cu *child_origin_cu = cu;
5331
5332 while (1)
5333 {
5334 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
5335 child_origin_cu);
5336 if (attr == NULL)
5337 break;
5338 child_origin_die = follow_die_ref (child_origin_die, attr,
5339 &child_origin_cu);
5340 }
5341
5342 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
5343 counterpart may exist. */
5344 if (child_origin_die != child_die)
5345 {
5346 if (child_die->tag != child_origin_die->tag
5347 && !(child_die->tag == DW_TAG_inlined_subroutine
5348 && child_origin_die->tag == DW_TAG_subprogram))
5349 complaint (&symfile_complaints,
5350 _("Child DIE 0x%x and its abstract origin 0x%x have "
5351 "different tags"), child_die->offset,
5352 child_origin_die->offset);
5353 if (child_origin_die->parent != origin_die)
5354 complaint (&symfile_complaints,
5355 _("Child DIE 0x%x and its abstract origin 0x%x have "
5356 "different parents"), child_die->offset,
5357 child_origin_die->offset);
5358 else
5359 *offsets_end++ = child_origin_die->offset;
5360 }
5361 child_die = sibling_die (child_die);
5362 }
5363 qsort (offsets, offsets_end - offsets, sizeof (*offsets),
5364 unsigned_int_compar);
5365 for (offsetp = offsets + 1; offsetp < offsets_end; offsetp++)
5366 if (offsetp[-1] == *offsetp)
5367 complaint (&symfile_complaints, _("Multiple children of DIE 0x%x refer "
5368 "to DIE 0x%x as their abstract origin"),
5369 die->offset, *offsetp);
5370
5371 offsetp = offsets;
5372 origin_child_die = origin_die->child;
5373 while (origin_child_die && origin_child_die->tag)
5374 {
5375 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
5376 while (offsetp < offsets_end && *offsetp < origin_child_die->offset)
5377 offsetp++;
5378 if (offsetp >= offsets_end || *offsetp > origin_child_die->offset)
5379 {
5380 /* Found that ORIGIN_CHILD_DIE is really not referenced. */
5381 process_die (origin_child_die, origin_cu);
5382 }
5383 origin_child_die = sibling_die (origin_child_die);
5384 }
5385 origin_cu->list_in_scope = origin_previous_list_in_scope;
5386
5387 do_cleanups (cleanups);
5388 }
5389
5390 static void
5391 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
5392 {
5393 struct objfile *objfile = cu->objfile;
5394 struct context_stack *new;
5395 CORE_ADDR lowpc;
5396 CORE_ADDR highpc;
5397 struct die_info *child_die;
5398 struct attribute *attr, *call_line, *call_file;
5399 char *name;
5400 CORE_ADDR baseaddr;
5401 struct block *block;
5402 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
5403 VEC (symbolp) *template_args = NULL;
5404 struct template_symbol *templ_func = NULL;
5405
5406 if (inlined_func)
5407 {
5408 /* If we do not have call site information, we can't show the
5409 caller of this inlined function. That's too confusing, so
5410 only use the scope for local variables. */
5411 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
5412 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
5413 if (call_line == NULL || call_file == NULL)
5414 {
5415 read_lexical_block_scope (die, cu);
5416 return;
5417 }
5418 }
5419
5420 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5421
5422 name = dwarf2_name (die, cu);
5423
5424 /* Ignore functions with missing or empty names. These are actually
5425 illegal according to the DWARF standard. */
5426 if (name == NULL)
5427 {
5428 complaint (&symfile_complaints,
5429 _("missing name for subprogram DIE at %d"), die->offset);
5430 return;
5431 }
5432
5433 /* Ignore functions with missing or invalid low and high pc attributes. */
5434 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
5435 {
5436 attr = dwarf2_attr (die, DW_AT_external, cu);
5437 if (!attr || !DW_UNSND (attr))
5438 complaint (&symfile_complaints,
5439 _("cannot get low and high bounds for subprogram DIE at %d"),
5440 die->offset);
5441 return;
5442 }
5443
5444 lowpc += baseaddr;
5445 highpc += baseaddr;
5446
5447 /* Record the function range for dwarf_decode_lines. */
5448 add_to_cu_func_list (name, lowpc, highpc, cu);
5449
5450 /* If we have any template arguments, then we must allocate a
5451 different sort of symbol. */
5452 for (child_die = die->child; child_die; child_die = sibling_die (child_die))
5453 {
5454 if (child_die->tag == DW_TAG_template_type_param
5455 || child_die->tag == DW_TAG_template_value_param)
5456 {
5457 templ_func = OBSTACK_ZALLOC (&objfile->objfile_obstack,
5458 struct template_symbol);
5459 templ_func->base.is_cplus_template_function = 1;
5460 break;
5461 }
5462 }
5463
5464 new = push_context (0, lowpc);
5465 new->name = new_symbol_full (die, read_type_die (die, cu), cu,
5466 (struct symbol *) templ_func);
5467
5468 /* If there is a location expression for DW_AT_frame_base, record
5469 it. */
5470 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
5471 if (attr)
5472 /* FIXME: cagney/2004-01-26: The DW_AT_frame_base's location
5473 expression is being recorded directly in the function's symbol
5474 and not in a separate frame-base object. I guess this hack is
5475 to avoid adding some sort of frame-base adjunct/annex to the
5476 function's symbol :-(. The problem with doing this is that it
5477 results in a function symbol with a location expression that
5478 has nothing to do with the location of the function, ouch! The
5479 relationship should be: a function's symbol has-a frame base; a
5480 frame-base has-a location expression. */
5481 dwarf2_symbol_mark_computed (attr, new->name, cu);
5482
5483 cu->list_in_scope = &local_symbols;
5484
5485 if (die->child != NULL)
5486 {
5487 child_die = die->child;
5488 while (child_die && child_die->tag)
5489 {
5490 if (child_die->tag == DW_TAG_template_type_param
5491 || child_die->tag == DW_TAG_template_value_param)
5492 {
5493 struct symbol *arg = new_symbol (child_die, NULL, cu);
5494
5495 if (arg != NULL)
5496 VEC_safe_push (symbolp, template_args, arg);
5497 }
5498 else
5499 process_die (child_die, cu);
5500 child_die = sibling_die (child_die);
5501 }
5502 }
5503
5504 inherit_abstract_dies (die, cu);
5505
5506 /* If we have a DW_AT_specification, we might need to import using
5507 directives from the context of the specification DIE. See the
5508 comment in determine_prefix. */
5509 if (cu->language == language_cplus
5510 && dwarf2_attr (die, DW_AT_specification, cu))
5511 {
5512 struct dwarf2_cu *spec_cu = cu;
5513 struct die_info *spec_die = die_specification (die, &spec_cu);
5514
5515 while (spec_die)
5516 {
5517 child_die = spec_die->child;
5518 while (child_die && child_die->tag)
5519 {
5520 if (child_die->tag == DW_TAG_imported_module)
5521 process_die (child_die, spec_cu);
5522 child_die = sibling_die (child_die);
5523 }
5524
5525 /* In some cases, GCC generates specification DIEs that
5526 themselves contain DW_AT_specification attributes. */
5527 spec_die = die_specification (spec_die, &spec_cu);
5528 }
5529 }
5530
5531 new = pop_context ();
5532 /* Make a block for the local symbols within. */
5533 block = finish_block (new->name, &local_symbols, new->old_blocks,
5534 lowpc, highpc, objfile);
5535
5536 /* For C++, set the block's scope. */
5537 if (cu->language == language_cplus || cu->language == language_fortran)
5538 cp_set_block_scope (new->name, block, &objfile->objfile_obstack,
5539 determine_prefix (die, cu),
5540 processing_has_namespace_info);
5541
5542 /* If we have address ranges, record them. */
5543 dwarf2_record_block_ranges (die, block, baseaddr, cu);
5544
5545 /* Attach template arguments to function. */
5546 if (! VEC_empty (symbolp, template_args))
5547 {
5548 gdb_assert (templ_func != NULL);
5549
5550 templ_func->n_template_arguments = VEC_length (symbolp, template_args);
5551 templ_func->template_arguments
5552 = obstack_alloc (&objfile->objfile_obstack,
5553 (templ_func->n_template_arguments
5554 * sizeof (struct symbol *)));
5555 memcpy (templ_func->template_arguments,
5556 VEC_address (symbolp, template_args),
5557 (templ_func->n_template_arguments * sizeof (struct symbol *)));
5558 VEC_free (symbolp, template_args);
5559 }
5560
5561 /* In C++, we can have functions nested inside functions (e.g., when
5562 a function declares a class that has methods). This means that
5563 when we finish processing a function scope, we may need to go
5564 back to building a containing block's symbol lists. */
5565 local_symbols = new->locals;
5566 param_symbols = new->params;
5567 using_directives = new->using_directives;
5568
5569 /* If we've finished processing a top-level function, subsequent
5570 symbols go in the file symbol list. */
5571 if (outermost_context_p ())
5572 cu->list_in_scope = &file_symbols;
5573 }
5574
5575 /* Process all the DIES contained within a lexical block scope. Start
5576 a new scope, process the dies, and then close the scope. */
5577
5578 static void
5579 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
5580 {
5581 struct objfile *objfile = cu->objfile;
5582 struct context_stack *new;
5583 CORE_ADDR lowpc, highpc;
5584 struct die_info *child_die;
5585 CORE_ADDR baseaddr;
5586
5587 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5588
5589 /* Ignore blocks with missing or invalid low and high pc attributes. */
5590 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
5591 as multiple lexical blocks? Handling children in a sane way would
5592 be nasty. Might be easier to properly extend generic blocks to
5593 describe ranges. */
5594 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
5595 return;
5596 lowpc += baseaddr;
5597 highpc += baseaddr;
5598
5599 push_context (0, lowpc);
5600 if (die->child != NULL)
5601 {
5602 child_die = die->child;
5603 while (child_die && child_die->tag)
5604 {
5605 process_die (child_die, cu);
5606 child_die = sibling_die (child_die);
5607 }
5608 }
5609 new = pop_context ();
5610
5611 if (local_symbols != NULL || using_directives != NULL)
5612 {
5613 struct block *block
5614 = finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
5615 highpc, objfile);
5616
5617 /* Note that recording ranges after traversing children, as we
5618 do here, means that recording a parent's ranges entails
5619 walking across all its children's ranges as they appear in
5620 the address map, which is quadratic behavior.
5621
5622 It would be nicer to record the parent's ranges before
5623 traversing its children, simply overriding whatever you find
5624 there. But since we don't even decide whether to create a
5625 block until after we've traversed its children, that's hard
5626 to do. */
5627 dwarf2_record_block_ranges (die, block, baseaddr, cu);
5628 }
5629 local_symbols = new->locals;
5630 using_directives = new->using_directives;
5631 }
5632
5633 /* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
5634 Return 1 if the attributes are present and valid, otherwise, return 0.
5635 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
5636
5637 static int
5638 dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
5639 CORE_ADDR *high_return, struct dwarf2_cu *cu,
5640 struct partial_symtab *ranges_pst)
5641 {
5642 struct objfile *objfile = cu->objfile;
5643 struct comp_unit_head *cu_header = &cu->header;
5644 bfd *obfd = objfile->obfd;
5645 unsigned int addr_size = cu_header->addr_size;
5646 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
5647 /* Base address selection entry. */
5648 CORE_ADDR base;
5649 int found_base;
5650 unsigned int dummy;
5651 gdb_byte *buffer;
5652 CORE_ADDR marker;
5653 int low_set;
5654 CORE_ADDR low = 0;
5655 CORE_ADDR high = 0;
5656 CORE_ADDR baseaddr;
5657
5658 found_base = cu->base_known;
5659 base = cu->base_address;
5660
5661 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
5662 if (offset >= dwarf2_per_objfile->ranges.size)
5663 {
5664 complaint (&symfile_complaints,
5665 _("Offset %d out of bounds for DW_AT_ranges attribute"),
5666 offset);
5667 return 0;
5668 }
5669 buffer = dwarf2_per_objfile->ranges.buffer + offset;
5670
5671 /* Read in the largest possible address. */
5672 marker = read_address (obfd, buffer, cu, &dummy);
5673 if ((marker & mask) == mask)
5674 {
5675 /* If we found the largest possible address, then
5676 read the base address. */
5677 base = read_address (obfd, buffer + addr_size, cu, &dummy);
5678 buffer += 2 * addr_size;
5679 offset += 2 * addr_size;
5680 found_base = 1;
5681 }
5682
5683 low_set = 0;
5684
5685 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5686
5687 while (1)
5688 {
5689 CORE_ADDR range_beginning, range_end;
5690
5691 range_beginning = read_address (obfd, buffer, cu, &dummy);
5692 buffer += addr_size;
5693 range_end = read_address (obfd, buffer, cu, &dummy);
5694 buffer += addr_size;
5695 offset += 2 * addr_size;
5696
5697 /* An end of list marker is a pair of zero addresses. */
5698 if (range_beginning == 0 && range_end == 0)
5699 /* Found the end of list entry. */
5700 break;
5701
5702 /* Each base address selection entry is a pair of 2 values.
5703 The first is the largest possible address, the second is
5704 the base address. Check for a base address here. */
5705 if ((range_beginning & mask) == mask)
5706 {
5707 /* If we found the largest possible address, then
5708 read the base address. */
5709 base = read_address (obfd, buffer + addr_size, cu, &dummy);
5710 found_base = 1;
5711 continue;
5712 }
5713
5714 if (!found_base)
5715 {
5716 /* We have no valid base address for the ranges
5717 data. */
5718 complaint (&symfile_complaints,
5719 _("Invalid .debug_ranges data (no base address)"));
5720 return 0;
5721 }
5722
5723 range_beginning += base;
5724 range_end += base;
5725
5726 if (ranges_pst != NULL && range_beginning < range_end)
5727 addrmap_set_empty (objfile->psymtabs_addrmap,
5728 range_beginning + baseaddr, range_end - 1 + baseaddr,
5729 ranges_pst);
5730
5731 /* FIXME: This is recording everything as a low-high
5732 segment of consecutive addresses. We should have a
5733 data structure for discontiguous block ranges
5734 instead. */
5735 if (! low_set)
5736 {
5737 low = range_beginning;
5738 high = range_end;
5739 low_set = 1;
5740 }
5741 else
5742 {
5743 if (range_beginning < low)
5744 low = range_beginning;
5745 if (range_end > high)
5746 high = range_end;
5747 }
5748 }
5749
5750 if (! low_set)
5751 /* If the first entry is an end-of-list marker, the range
5752 describes an empty scope, i.e. no instructions. */
5753 return 0;
5754
5755 if (low_return)
5756 *low_return = low;
5757 if (high_return)
5758 *high_return = high;
5759 return 1;
5760 }
5761
5762 /* Get low and high pc attributes from a die. Return 1 if the attributes
5763 are present and valid, otherwise, return 0. Return -1 if the range is
5764 discontinuous, i.e. derived from DW_AT_ranges information. */
5765 static int
5766 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
5767 CORE_ADDR *highpc, struct dwarf2_cu *cu,
5768 struct partial_symtab *pst)
5769 {
5770 struct attribute *attr;
5771 CORE_ADDR low = 0;
5772 CORE_ADDR high = 0;
5773 int ret = 0;
5774
5775 attr = dwarf2_attr (die, DW_AT_high_pc, cu);
5776 if (attr)
5777 {
5778 high = DW_ADDR (attr);
5779 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
5780 if (attr)
5781 low = DW_ADDR (attr);
5782 else
5783 /* Found high w/o low attribute. */
5784 return 0;
5785
5786 /* Found consecutive range of addresses. */
5787 ret = 1;
5788 }
5789 else
5790 {
5791 attr = dwarf2_attr (die, DW_AT_ranges, cu);
5792 if (attr != NULL)
5793 {
5794 /* Value of the DW_AT_ranges attribute is the offset in the
5795 .debug_ranges section. */
5796 if (!dwarf2_ranges_read (DW_UNSND (attr), &low, &high, cu, pst))
5797 return 0;
5798 /* Found discontinuous range of addresses. */
5799 ret = -1;
5800 }
5801 }
5802
5803 if (high < low)
5804 return 0;
5805
5806 /* When using the GNU linker, .gnu.linkonce. sections are used to
5807 eliminate duplicate copies of functions and vtables and such.
5808 The linker will arbitrarily choose one and discard the others.
5809 The AT_*_pc values for such functions refer to local labels in
5810 these sections. If the section from that file was discarded, the
5811 labels are not in the output, so the relocs get a value of 0.
5812 If this is a discarded function, mark the pc bounds as invalid,
5813 so that GDB will ignore it. */
5814 if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
5815 return 0;
5816
5817 *lowpc = low;
5818 *highpc = high;
5819 return ret;
5820 }
5821
5822 /* Assuming that DIE represents a subprogram DIE or a lexical block, get
5823 its low and high PC addresses. Do nothing if these addresses could not
5824 be determined. Otherwise, set LOWPC to the low address if it is smaller,
5825 and HIGHPC to the high address if greater than HIGHPC. */
5826
5827 static void
5828 dwarf2_get_subprogram_pc_bounds (struct die_info *die,
5829 CORE_ADDR *lowpc, CORE_ADDR *highpc,
5830 struct dwarf2_cu *cu)
5831 {
5832 CORE_ADDR low, high;
5833 struct die_info *child = die->child;
5834
5835 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL))
5836 {
5837 *lowpc = min (*lowpc, low);
5838 *highpc = max (*highpc, high);
5839 }
5840
5841 /* If the language does not allow nested subprograms (either inside
5842 subprograms or lexical blocks), we're done. */
5843 if (cu->language != language_ada)
5844 return;
5845
5846 /* Check all the children of the given DIE. If it contains nested
5847 subprograms, then check their pc bounds. Likewise, we need to
5848 check lexical blocks as well, as they may also contain subprogram
5849 definitions. */
5850 while (child && child->tag)
5851 {
5852 if (child->tag == DW_TAG_subprogram
5853 || child->tag == DW_TAG_lexical_block)
5854 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
5855 child = sibling_die (child);
5856 }
5857 }
5858
5859 /* Get the low and high pc's represented by the scope DIE, and store
5860 them in *LOWPC and *HIGHPC. If the correct values can't be
5861 determined, set *LOWPC to -1 and *HIGHPC to 0. */
5862
5863 static void
5864 get_scope_pc_bounds (struct die_info *die,
5865 CORE_ADDR *lowpc, CORE_ADDR *highpc,
5866 struct dwarf2_cu *cu)
5867 {
5868 CORE_ADDR best_low = (CORE_ADDR) -1;
5869 CORE_ADDR best_high = (CORE_ADDR) 0;
5870 CORE_ADDR current_low, current_high;
5871
5872 if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL))
5873 {
5874 best_low = current_low;
5875 best_high = current_high;
5876 }
5877 else
5878 {
5879 struct die_info *child = die->child;
5880
5881 while (child && child->tag)
5882 {
5883 switch (child->tag) {
5884 case DW_TAG_subprogram:
5885 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
5886 break;
5887 case DW_TAG_namespace:
5888 case DW_TAG_module:
5889 /* FIXME: carlton/2004-01-16: Should we do this for
5890 DW_TAG_class_type/DW_TAG_structure_type, too? I think
5891 that current GCC's always emit the DIEs corresponding
5892 to definitions of methods of classes as children of a
5893 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
5894 the DIEs giving the declarations, which could be
5895 anywhere). But I don't see any reason why the
5896 standards says that they have to be there. */
5897 get_scope_pc_bounds (child, &current_low, &current_high, cu);
5898
5899 if (current_low != ((CORE_ADDR) -1))
5900 {
5901 best_low = min (best_low, current_low);
5902 best_high = max (best_high, current_high);
5903 }
5904 break;
5905 default:
5906 /* Ignore. */
5907 break;
5908 }
5909
5910 child = sibling_die (child);
5911 }
5912 }
5913
5914 *lowpc = best_low;
5915 *highpc = best_high;
5916 }
5917
5918 /* Record the address ranges for BLOCK, offset by BASEADDR, as given
5919 in DIE. */
5920 static void
5921 dwarf2_record_block_ranges (struct die_info *die, struct block *block,
5922 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
5923 {
5924 struct attribute *attr;
5925
5926 attr = dwarf2_attr (die, DW_AT_high_pc, cu);
5927 if (attr)
5928 {
5929 CORE_ADDR high = DW_ADDR (attr);
5930
5931 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
5932 if (attr)
5933 {
5934 CORE_ADDR low = DW_ADDR (attr);
5935
5936 record_block_range (block, baseaddr + low, baseaddr + high - 1);
5937 }
5938 }
5939
5940 attr = dwarf2_attr (die, DW_AT_ranges, cu);
5941 if (attr)
5942 {
5943 bfd *obfd = cu->objfile->obfd;
5944
5945 /* The value of the DW_AT_ranges attribute is the offset of the
5946 address range list in the .debug_ranges section. */
5947 unsigned long offset = DW_UNSND (attr);
5948 gdb_byte *buffer = dwarf2_per_objfile->ranges.buffer + offset;
5949
5950 /* For some target architectures, but not others, the
5951 read_address function sign-extends the addresses it returns.
5952 To recognize base address selection entries, we need a
5953 mask. */
5954 unsigned int addr_size = cu->header.addr_size;
5955 CORE_ADDR base_select_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
5956
5957 /* The base address, to which the next pair is relative. Note
5958 that this 'base' is a DWARF concept: most entries in a range
5959 list are relative, to reduce the number of relocs against the
5960 debugging information. This is separate from this function's
5961 'baseaddr' argument, which GDB uses to relocate debugging
5962 information from a shared library based on the address at
5963 which the library was loaded. */
5964 CORE_ADDR base = cu->base_address;
5965 int base_known = cu->base_known;
5966
5967 gdb_assert (dwarf2_per_objfile->ranges.readin);
5968 if (offset >= dwarf2_per_objfile->ranges.size)
5969 {
5970 complaint (&symfile_complaints,
5971 _("Offset %lu out of bounds for DW_AT_ranges attribute"),
5972 offset);
5973 return;
5974 }
5975
5976 for (;;)
5977 {
5978 unsigned int bytes_read;
5979 CORE_ADDR start, end;
5980
5981 start = read_address (obfd, buffer, cu, &bytes_read);
5982 buffer += bytes_read;
5983 end = read_address (obfd, buffer, cu, &bytes_read);
5984 buffer += bytes_read;
5985
5986 /* Did we find the end of the range list? */
5987 if (start == 0 && end == 0)
5988 break;
5989
5990 /* Did we find a base address selection entry? */
5991 else if ((start & base_select_mask) == base_select_mask)
5992 {
5993 base = end;
5994 base_known = 1;
5995 }
5996
5997 /* We found an ordinary address range. */
5998 else
5999 {
6000 if (!base_known)
6001 {
6002 complaint (&symfile_complaints,
6003 _("Invalid .debug_ranges data (no base address)"));
6004 return;
6005 }
6006
6007 record_block_range (block,
6008 baseaddr + base + start,
6009 baseaddr + base + end - 1);
6010 }
6011 }
6012 }
6013 }
6014
6015 /* Add an aggregate field to the field list. */
6016
6017 static void
6018 dwarf2_add_field (struct field_info *fip, struct die_info *die,
6019 struct dwarf2_cu *cu)
6020 {
6021 struct objfile *objfile = cu->objfile;
6022 struct gdbarch *gdbarch = get_objfile_arch (objfile);
6023 struct nextfield *new_field;
6024 struct attribute *attr;
6025 struct field *fp;
6026 char *fieldname = "";
6027
6028 /* Allocate a new field list entry and link it in. */
6029 new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
6030 make_cleanup (xfree, new_field);
6031 memset (new_field, 0, sizeof (struct nextfield));
6032
6033 if (die->tag == DW_TAG_inheritance)
6034 {
6035 new_field->next = fip->baseclasses;
6036 fip->baseclasses = new_field;
6037 }
6038 else
6039 {
6040 new_field->next = fip->fields;
6041 fip->fields = new_field;
6042 }
6043 fip->nfields++;
6044
6045 /* Handle accessibility and virtuality of field.
6046 The default accessibility for members is public, the default
6047 accessibility for inheritance is private. */
6048 if (die->tag != DW_TAG_inheritance)
6049 new_field->accessibility = DW_ACCESS_public;
6050 else
6051 new_field->accessibility = DW_ACCESS_private;
6052 new_field->virtuality = DW_VIRTUALITY_none;
6053
6054 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
6055 if (attr)
6056 new_field->accessibility = DW_UNSND (attr);
6057 if (new_field->accessibility != DW_ACCESS_public)
6058 fip->non_public_fields = 1;
6059 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
6060 if (attr)
6061 new_field->virtuality = DW_UNSND (attr);
6062
6063 fp = &new_field->field;
6064
6065 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
6066 {
6067 /* Data member other than a C++ static data member. */
6068
6069 /* Get type of field. */
6070 fp->type = die_type (die, cu);
6071
6072 SET_FIELD_BITPOS (*fp, 0);
6073
6074 /* Get bit size of field (zero if none). */
6075 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
6076 if (attr)
6077 {
6078 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
6079 }
6080 else
6081 {
6082 FIELD_BITSIZE (*fp) = 0;
6083 }
6084
6085 /* Get bit offset of field. */
6086 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
6087 if (attr)
6088 {
6089 int byte_offset = 0;
6090
6091 if (attr_form_is_section_offset (attr))
6092 dwarf2_complex_location_expr_complaint ();
6093 else if (attr_form_is_constant (attr))
6094 byte_offset = dwarf2_get_attr_constant_value (attr, 0);
6095 else if (attr_form_is_block (attr))
6096 byte_offset = decode_locdesc (DW_BLOCK (attr), cu);
6097 else
6098 dwarf2_complex_location_expr_complaint ();
6099
6100 SET_FIELD_BITPOS (*fp, byte_offset * bits_per_byte);
6101 }
6102 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
6103 if (attr)
6104 {
6105 if (gdbarch_bits_big_endian (gdbarch))
6106 {
6107 /* For big endian bits, the DW_AT_bit_offset gives the
6108 additional bit offset from the MSB of the containing
6109 anonymous object to the MSB of the field. We don't
6110 have to do anything special since we don't need to
6111 know the size of the anonymous object. */
6112 FIELD_BITPOS (*fp) += DW_UNSND (attr);
6113 }
6114 else
6115 {
6116 /* For little endian bits, compute the bit offset to the
6117 MSB of the anonymous object, subtract off the number of
6118 bits from the MSB of the field to the MSB of the
6119 object, and then subtract off the number of bits of
6120 the field itself. The result is the bit offset of
6121 the LSB of the field. */
6122 int anonymous_size;
6123 int bit_offset = DW_UNSND (attr);
6124
6125 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
6126 if (attr)
6127 {
6128 /* The size of the anonymous object containing
6129 the bit field is explicit, so use the
6130 indicated size (in bytes). */
6131 anonymous_size = DW_UNSND (attr);
6132 }
6133 else
6134 {
6135 /* The size of the anonymous object containing
6136 the bit field must be inferred from the type
6137 attribute of the data member containing the
6138 bit field. */
6139 anonymous_size = TYPE_LENGTH (fp->type);
6140 }
6141 FIELD_BITPOS (*fp) += anonymous_size * bits_per_byte
6142 - bit_offset - FIELD_BITSIZE (*fp);
6143 }
6144 }
6145
6146 /* Get name of field. */
6147 fieldname = dwarf2_name (die, cu);
6148 if (fieldname == NULL)
6149 fieldname = "";
6150
6151 /* The name is already allocated along with this objfile, so we don't
6152 need to duplicate it for the type. */
6153 fp->name = fieldname;
6154
6155 /* Change accessibility for artificial fields (e.g. virtual table
6156 pointer or virtual base class pointer) to private. */
6157 if (dwarf2_attr (die, DW_AT_artificial, cu))
6158 {
6159 FIELD_ARTIFICIAL (*fp) = 1;
6160 new_field->accessibility = DW_ACCESS_private;
6161 fip->non_public_fields = 1;
6162 }
6163 }
6164 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
6165 {
6166 /* C++ static member. */
6167
6168 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
6169 is a declaration, but all versions of G++ as of this writing
6170 (so through at least 3.2.1) incorrectly generate
6171 DW_TAG_variable tags. */
6172
6173 char *physname;
6174
6175 /* Get name of field. */
6176 fieldname = dwarf2_name (die, cu);
6177 if (fieldname == NULL)
6178 return;
6179
6180 attr = dwarf2_attr (die, DW_AT_const_value, cu);
6181 if (attr
6182 /* Only create a symbol if this is an external value.
6183 new_symbol checks this and puts the value in the global symbol
6184 table, which we want. If it is not external, new_symbol
6185 will try to put the value in cu->list_in_scope which is wrong. */
6186 && dwarf2_flag_true_p (die, DW_AT_external, cu))
6187 {
6188 /* A static const member, not much different than an enum as far as
6189 we're concerned, except that we can support more types. */
6190 new_symbol (die, NULL, cu);
6191 }
6192
6193 /* Get physical name. */
6194 physname = (char *) dwarf2_physname (fieldname, die, cu);
6195
6196 /* The name is already allocated along with this objfile, so we don't
6197 need to duplicate it for the type. */
6198 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
6199 FIELD_TYPE (*fp) = die_type (die, cu);
6200 FIELD_NAME (*fp) = fieldname;
6201 }
6202 else if (die->tag == DW_TAG_inheritance)
6203 {
6204 /* C++ base class field. */
6205 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
6206 if (attr)
6207 {
6208 int byte_offset = 0;
6209
6210 if (attr_form_is_section_offset (attr))
6211 dwarf2_complex_location_expr_complaint ();
6212 else if (attr_form_is_constant (attr))
6213 byte_offset = dwarf2_get_attr_constant_value (attr, 0);
6214 else if (attr_form_is_block (attr))
6215 byte_offset = decode_locdesc (DW_BLOCK (attr), cu);
6216 else
6217 dwarf2_complex_location_expr_complaint ();
6218
6219 SET_FIELD_BITPOS (*fp, byte_offset * bits_per_byte);
6220 }
6221 FIELD_BITSIZE (*fp) = 0;
6222 FIELD_TYPE (*fp) = die_type (die, cu);
6223 FIELD_NAME (*fp) = type_name_no_tag (fp->type);
6224 fip->nbaseclasses++;
6225 }
6226 }
6227
6228 /* Add a typedef defined in the scope of the FIP's class. */
6229
6230 static void
6231 dwarf2_add_typedef (struct field_info *fip, struct die_info *die,
6232 struct dwarf2_cu *cu)
6233 {
6234 struct objfile *objfile = cu->objfile;
6235 struct gdbarch *gdbarch = get_objfile_arch (objfile);
6236 struct typedef_field_list *new_field;
6237 struct attribute *attr;
6238 struct typedef_field *fp;
6239 char *fieldname = "";
6240
6241 /* Allocate a new field list entry and link it in. */
6242 new_field = xzalloc (sizeof (*new_field));
6243 make_cleanup (xfree, new_field);
6244
6245 gdb_assert (die->tag == DW_TAG_typedef);
6246
6247 fp = &new_field->field;
6248
6249 /* Get name of field. */
6250 fp->name = dwarf2_name (die, cu);
6251 if (fp->name == NULL)
6252 return;
6253
6254 fp->type = read_type_die (die, cu);
6255
6256 new_field->next = fip->typedef_field_list;
6257 fip->typedef_field_list = new_field;
6258 fip->typedef_field_list_count++;
6259 }
6260
6261 /* Create the vector of fields, and attach it to the type. */
6262
6263 static void
6264 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
6265 struct dwarf2_cu *cu)
6266 {
6267 int nfields = fip->nfields;
6268
6269 /* Record the field count, allocate space for the array of fields,
6270 and create blank accessibility bitfields if necessary. */
6271 TYPE_NFIELDS (type) = nfields;
6272 TYPE_FIELDS (type) = (struct field *)
6273 TYPE_ALLOC (type, sizeof (struct field) * nfields);
6274 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
6275
6276 if (fip->non_public_fields && cu->language != language_ada)
6277 {
6278 ALLOCATE_CPLUS_STRUCT_TYPE (type);
6279
6280 TYPE_FIELD_PRIVATE_BITS (type) =
6281 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
6282 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
6283
6284 TYPE_FIELD_PROTECTED_BITS (type) =
6285 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
6286 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
6287
6288 TYPE_FIELD_IGNORE_BITS (type) =
6289 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
6290 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
6291 }
6292
6293 /* If the type has baseclasses, allocate and clear a bit vector for
6294 TYPE_FIELD_VIRTUAL_BITS. */
6295 if (fip->nbaseclasses && cu->language != language_ada)
6296 {
6297 int num_bytes = B_BYTES (fip->nbaseclasses);
6298 unsigned char *pointer;
6299
6300 ALLOCATE_CPLUS_STRUCT_TYPE (type);
6301 pointer = TYPE_ALLOC (type, num_bytes);
6302 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
6303 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
6304 TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
6305 }
6306
6307 /* Copy the saved-up fields into the field vector. Start from the head
6308 of the list, adding to the tail of the field array, so that they end
6309 up in the same order in the array in which they were added to the list. */
6310 while (nfields-- > 0)
6311 {
6312 struct nextfield *fieldp;
6313
6314 if (fip->fields)
6315 {
6316 fieldp = fip->fields;
6317 fip->fields = fieldp->next;
6318 }
6319 else
6320 {
6321 fieldp = fip->baseclasses;
6322 fip->baseclasses = fieldp->next;
6323 }
6324
6325 TYPE_FIELD (type, nfields) = fieldp->field;
6326 switch (fieldp->accessibility)
6327 {
6328 case DW_ACCESS_private:
6329 if (cu->language != language_ada)
6330 SET_TYPE_FIELD_PRIVATE (type, nfields);
6331 break;
6332
6333 case DW_ACCESS_protected:
6334 if (cu->language != language_ada)
6335 SET_TYPE_FIELD_PROTECTED (type, nfields);
6336 break;
6337
6338 case DW_ACCESS_public:
6339 break;
6340
6341 default:
6342 /* Unknown accessibility. Complain and treat it as public. */
6343 {
6344 complaint (&symfile_complaints, _("unsupported accessibility %d"),
6345 fieldp->accessibility);
6346 }
6347 break;
6348 }
6349 if (nfields < fip->nbaseclasses)
6350 {
6351 switch (fieldp->virtuality)
6352 {
6353 case DW_VIRTUALITY_virtual:
6354 case DW_VIRTUALITY_pure_virtual:
6355 if (cu->language == language_ada)
6356 error ("unexpected virtuality in component of Ada type");
6357 SET_TYPE_FIELD_VIRTUAL (type, nfields);
6358 break;
6359 }
6360 }
6361 }
6362 }
6363
6364 /* Add a member function to the proper fieldlist. */
6365
6366 static void
6367 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
6368 struct type *type, struct dwarf2_cu *cu)
6369 {
6370 struct objfile *objfile = cu->objfile;
6371 struct attribute *attr;
6372 struct fnfieldlist *flp;
6373 int i;
6374 struct fn_field *fnp;
6375 char *fieldname;
6376 struct nextfnfield *new_fnfield;
6377 struct type *this_type;
6378
6379 if (cu->language == language_ada)
6380 error ("unexpected member function in Ada type");
6381
6382 /* Get name of member function. */
6383 fieldname = dwarf2_name (die, cu);
6384 if (fieldname == NULL)
6385 return;
6386
6387 /* Look up member function name in fieldlist. */
6388 for (i = 0; i < fip->nfnfields; i++)
6389 {
6390 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
6391 break;
6392 }
6393
6394 /* Create new list element if necessary. */
6395 if (i < fip->nfnfields)
6396 flp = &fip->fnfieldlists[i];
6397 else
6398 {
6399 if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
6400 {
6401 fip->fnfieldlists = (struct fnfieldlist *)
6402 xrealloc (fip->fnfieldlists,
6403 (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
6404 * sizeof (struct fnfieldlist));
6405 if (fip->nfnfields == 0)
6406 make_cleanup (free_current_contents, &fip->fnfieldlists);
6407 }
6408 flp = &fip->fnfieldlists[fip->nfnfields];
6409 flp->name = fieldname;
6410 flp->length = 0;
6411 flp->head = NULL;
6412 i = fip->nfnfields++;
6413 }
6414
6415 /* Create a new member function field and chain it to the field list
6416 entry. */
6417 new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
6418 make_cleanup (xfree, new_fnfield);
6419 memset (new_fnfield, 0, sizeof (struct nextfnfield));
6420 new_fnfield->next = flp->head;
6421 flp->head = new_fnfield;
6422 flp->length++;
6423
6424 /* Fill in the member function field info. */
6425 fnp = &new_fnfield->fnfield;
6426
6427 /* Delay processing of the physname until later. */
6428 if (cu->language == language_cplus || cu->language == language_java)
6429 {
6430 add_to_method_list (type, i, flp->length - 1, fieldname,
6431 die, cu);
6432 }
6433 else
6434 {
6435 char *physname = (char *) dwarf2_physname (fieldname, die, cu);
6436 fnp->physname = physname ? physname : "";
6437 }
6438
6439 fnp->type = alloc_type (objfile);
6440 this_type = read_type_die (die, cu);
6441 if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
6442 {
6443 int nparams = TYPE_NFIELDS (this_type);
6444
6445 /* TYPE is the domain of this method, and THIS_TYPE is the type
6446 of the method itself (TYPE_CODE_METHOD). */
6447 smash_to_method_type (fnp->type, type,
6448 TYPE_TARGET_TYPE (this_type),
6449 TYPE_FIELDS (this_type),
6450 TYPE_NFIELDS (this_type),
6451 TYPE_VARARGS (this_type));
6452
6453 /* Handle static member functions.
6454 Dwarf2 has no clean way to discern C++ static and non-static
6455 member functions. G++ helps GDB by marking the first
6456 parameter for non-static member functions (which is the
6457 this pointer) as artificial. We obtain this information
6458 from read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
6459 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
6460 fnp->voffset = VOFFSET_STATIC;
6461 }
6462 else
6463 complaint (&symfile_complaints, _("member function type missing for '%s'"),
6464 dwarf2_full_name (fieldname, die, cu));
6465
6466 /* Get fcontext from DW_AT_containing_type if present. */
6467 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
6468 fnp->fcontext = die_containing_type (die, cu);
6469
6470 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const
6471 and is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
6472
6473 /* Get accessibility. */
6474 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
6475 if (attr)
6476 {
6477 switch (DW_UNSND (attr))
6478 {
6479 case DW_ACCESS_private:
6480 fnp->is_private = 1;
6481 break;
6482 case DW_ACCESS_protected:
6483 fnp->is_protected = 1;
6484 break;
6485 }
6486 }
6487
6488 /* Check for artificial methods. */
6489 attr = dwarf2_attr (die, DW_AT_artificial, cu);
6490 if (attr && DW_UNSND (attr) != 0)
6491 fnp->is_artificial = 1;
6492
6493 /* Get index in virtual function table if it is a virtual member
6494 function. For older versions of GCC, this is an offset in the
6495 appropriate virtual table, as specified by DW_AT_containing_type.
6496 For everyone else, it is an expression to be evaluated relative
6497 to the object address. */
6498
6499 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
6500 if (attr)
6501 {
6502 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
6503 {
6504 if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
6505 {
6506 /* Old-style GCC. */
6507 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
6508 }
6509 else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
6510 || (DW_BLOCK (attr)->size > 1
6511 && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
6512 && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
6513 {
6514 struct dwarf_block blk;
6515 int offset;
6516
6517 offset = (DW_BLOCK (attr)->data[0] == DW_OP_deref
6518 ? 1 : 2);
6519 blk.size = DW_BLOCK (attr)->size - offset;
6520 blk.data = DW_BLOCK (attr)->data + offset;
6521 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
6522 if ((fnp->voffset % cu->header.addr_size) != 0)
6523 dwarf2_complex_location_expr_complaint ();
6524 else
6525 fnp->voffset /= cu->header.addr_size;
6526 fnp->voffset += 2;
6527 }
6528 else
6529 dwarf2_complex_location_expr_complaint ();
6530
6531 if (!fnp->fcontext)
6532 fnp->fcontext = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
6533 }
6534 else if (attr_form_is_section_offset (attr))
6535 {
6536 dwarf2_complex_location_expr_complaint ();
6537 }
6538 else
6539 {
6540 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
6541 fieldname);
6542 }
6543 }
6544 else
6545 {
6546 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
6547 if (attr && DW_UNSND (attr))
6548 {
6549 /* GCC does this, as of 2008-08-25; PR debug/37237. */
6550 complaint (&symfile_complaints,
6551 _("Member function \"%s\" (offset %d) is virtual but the vtable offset is not specified"),
6552 fieldname, die->offset);
6553 ALLOCATE_CPLUS_STRUCT_TYPE (type);
6554 TYPE_CPLUS_DYNAMIC (type) = 1;
6555 }
6556 }
6557 }
6558
6559 /* Create the vector of member function fields, and attach it to the type. */
6560
6561 static void
6562 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
6563 struct dwarf2_cu *cu)
6564 {
6565 struct fnfieldlist *flp;
6566 int total_length = 0;
6567 int i;
6568
6569 if (cu->language == language_ada)
6570 error ("unexpected member functions in Ada type");
6571
6572 ALLOCATE_CPLUS_STRUCT_TYPE (type);
6573 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
6574 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
6575
6576 for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
6577 {
6578 struct nextfnfield *nfp = flp->head;
6579 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
6580 int k;
6581
6582 TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
6583 TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
6584 fn_flp->fn_fields = (struct fn_field *)
6585 TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
6586 for (k = flp->length; (k--, nfp); nfp = nfp->next)
6587 fn_flp->fn_fields[k] = nfp->fnfield;
6588
6589 total_length += flp->length;
6590 }
6591
6592 TYPE_NFN_FIELDS (type) = fip->nfnfields;
6593 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
6594 }
6595
6596 /* Returns non-zero if NAME is the name of a vtable member in CU's
6597 language, zero otherwise. */
6598 static int
6599 is_vtable_name (const char *name, struct dwarf2_cu *cu)
6600 {
6601 static const char vptr[] = "_vptr";
6602 static const char vtable[] = "vtable";
6603
6604 /* Look for the C++ and Java forms of the vtable. */
6605 if ((cu->language == language_java
6606 && strncmp (name, vtable, sizeof (vtable) - 1) == 0)
6607 || (strncmp (name, vptr, sizeof (vptr) - 1) == 0
6608 && is_cplus_marker (name[sizeof (vptr) - 1])))
6609 return 1;
6610
6611 return 0;
6612 }
6613
6614 /* GCC outputs unnamed structures that are really pointers to member
6615 functions, with the ABI-specified layout. If TYPE describes
6616 such a structure, smash it into a member function type.
6617
6618 GCC shouldn't do this; it should just output pointer to member DIEs.
6619 This is GCC PR debug/28767. */
6620
6621 static void
6622 quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
6623 {
6624 struct type *pfn_type, *domain_type, *new_type;
6625
6626 /* Check for a structure with no name and two children. */
6627 if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
6628 return;
6629
6630 /* Check for __pfn and __delta members. */
6631 if (TYPE_FIELD_NAME (type, 0) == NULL
6632 || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
6633 || TYPE_FIELD_NAME (type, 1) == NULL
6634 || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
6635 return;
6636
6637 /* Find the type of the method. */
6638 pfn_type = TYPE_FIELD_TYPE (type, 0);
6639 if (pfn_type == NULL
6640 || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
6641 || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
6642 return;
6643
6644 /* Look for the "this" argument. */
6645 pfn_type = TYPE_TARGET_TYPE (pfn_type);
6646 if (TYPE_NFIELDS (pfn_type) == 0
6647 /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
6648 || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
6649 return;
6650
6651 domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
6652 new_type = alloc_type (objfile);
6653 smash_to_method_type (new_type, domain_type, TYPE_TARGET_TYPE (pfn_type),
6654 TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
6655 TYPE_VARARGS (pfn_type));
6656 smash_to_methodptr_type (type, new_type);
6657 }
6658
6659 /* Called when we find the DIE that starts a structure or union scope
6660 (definition) to create a type for the structure or union. Fill in
6661 the type's name and general properties; the members will not be
6662 processed until process_structure_type.
6663
6664 NOTE: we need to call these functions regardless of whether or not the
6665 DIE has a DW_AT_name attribute, since it might be an anonymous
6666 structure or union. This gets the type entered into our set of
6667 user defined types.
6668
6669 However, if the structure is incomplete (an opaque struct/union)
6670 then suppress creating a symbol table entry for it since gdb only
6671 wants to find the one with the complete definition. Note that if
6672 it is complete, we just call new_symbol, which does it's own
6673 checking about whether the struct/union is anonymous or not (and
6674 suppresses creating a symbol table entry itself). */
6675
6676 static struct type *
6677 read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
6678 {
6679 struct objfile *objfile = cu->objfile;
6680 struct type *type;
6681 struct attribute *attr;
6682 char *name;
6683
6684 /* If the definition of this type lives in .debug_types, read that type.
6685 Don't follow DW_AT_specification though, that will take us back up
6686 the chain and we want to go down. */
6687 attr = dwarf2_attr_no_follow (die, DW_AT_signature, cu);
6688 if (attr)
6689 {
6690 struct dwarf2_cu *type_cu = cu;
6691 struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
6692
6693 /* We could just recurse on read_structure_type, but we need to call
6694 get_die_type to ensure only one type for this DIE is created.
6695 This is important, for example, because for c++ classes we need
6696 TYPE_NAME set which is only done by new_symbol. Blech. */
6697 type = read_type_die (type_die, type_cu);
6698
6699 /* TYPE_CU may not be the same as CU.
6700 Ensure TYPE is recorded in CU's type_hash table. */
6701 return set_die_type (die, type, cu);
6702 }
6703
6704 type = alloc_type (objfile);
6705 INIT_CPLUS_SPECIFIC (type);
6706
6707 name = dwarf2_name (die, cu);
6708 if (name != NULL)
6709 {
6710 if (cu->language == language_cplus
6711 || cu->language == language_java)
6712 {
6713 char *full_name = (char *) dwarf2_full_name (name, die, cu);
6714
6715 /* dwarf2_full_name might have already finished building the DIE's
6716 type. If so, there is no need to continue. */
6717 if (get_die_type (die, cu) != NULL)
6718 return get_die_type (die, cu);
6719
6720 TYPE_TAG_NAME (type) = full_name;
6721 if (die->tag == DW_TAG_structure_type
6722 || die->tag == DW_TAG_class_type)
6723 TYPE_NAME (type) = TYPE_TAG_NAME (type);
6724 }
6725 else
6726 {
6727 /* The name is already allocated along with this objfile, so
6728 we don't need to duplicate it for the type. */
6729 TYPE_TAG_NAME (type) = (char *) name;
6730 if (die->tag == DW_TAG_class_type)
6731 TYPE_NAME (type) = TYPE_TAG_NAME (type);
6732 }
6733 }
6734
6735 if (die->tag == DW_TAG_structure_type)
6736 {
6737 TYPE_CODE (type) = TYPE_CODE_STRUCT;
6738 }
6739 else if (die->tag == DW_TAG_union_type)
6740 {
6741 TYPE_CODE (type) = TYPE_CODE_UNION;
6742 }
6743 else
6744 {
6745 TYPE_CODE (type) = TYPE_CODE_CLASS;
6746 }
6747
6748 if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
6749 TYPE_DECLARED_CLASS (type) = 1;
6750
6751 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
6752 if (attr)
6753 {
6754 TYPE_LENGTH (type) = DW_UNSND (attr);
6755 }
6756 else
6757 {
6758 TYPE_LENGTH (type) = 0;
6759 }
6760
6761 TYPE_STUB_SUPPORTED (type) = 1;
6762 if (die_is_declaration (die, cu))
6763 TYPE_STUB (type) = 1;
6764 else if (attr == NULL && die->child == NULL
6765 && producer_is_realview (cu->producer))
6766 /* RealView does not output the required DW_AT_declaration
6767 on incomplete types. */
6768 TYPE_STUB (type) = 1;
6769
6770 /* We need to add the type field to the die immediately so we don't
6771 infinitely recurse when dealing with pointers to the structure
6772 type within the structure itself. */
6773 set_die_type (die, type, cu);
6774
6775 /* set_die_type should be already done. */
6776 set_descriptive_type (type, die, cu);
6777
6778 return type;
6779 }
6780
6781 /* Finish creating a structure or union type, including filling in
6782 its members and creating a symbol for it. */
6783
6784 static void
6785 process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
6786 {
6787 struct objfile *objfile = cu->objfile;
6788 struct die_info *child_die = die->child;
6789 struct type *type;
6790
6791 type = get_die_type (die, cu);
6792 if (type == NULL)
6793 type = read_structure_type (die, cu);
6794
6795 if (die->child != NULL && ! die_is_declaration (die, cu))
6796 {
6797 struct field_info fi;
6798 struct die_info *child_die;
6799 VEC (symbolp) *template_args = NULL;
6800 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
6801
6802 memset (&fi, 0, sizeof (struct field_info));
6803
6804 child_die = die->child;
6805
6806 while (child_die && child_die->tag)
6807 {
6808 if (child_die->tag == DW_TAG_member
6809 || child_die->tag == DW_TAG_variable)
6810 {
6811 /* NOTE: carlton/2002-11-05: A C++ static data member
6812 should be a DW_TAG_member that is a declaration, but
6813 all versions of G++ as of this writing (so through at
6814 least 3.2.1) incorrectly generate DW_TAG_variable
6815 tags for them instead. */
6816 dwarf2_add_field (&fi, child_die, cu);
6817 }
6818 else if (child_die->tag == DW_TAG_subprogram)
6819 {
6820 /* C++ member function. */
6821 dwarf2_add_member_fn (&fi, child_die, type, cu);
6822 }
6823 else if (child_die->tag == DW_TAG_inheritance)
6824 {
6825 /* C++ base class field. */
6826 dwarf2_add_field (&fi, child_die, cu);
6827 }
6828 else if (child_die->tag == DW_TAG_typedef)
6829 dwarf2_add_typedef (&fi, child_die, cu);
6830 else if (child_die->tag == DW_TAG_template_type_param
6831 || child_die->tag == DW_TAG_template_value_param)
6832 {
6833 struct symbol *arg = new_symbol (child_die, NULL, cu);
6834
6835 if (arg != NULL)
6836 VEC_safe_push (symbolp, template_args, arg);
6837 }
6838
6839 child_die = sibling_die (child_die);
6840 }
6841
6842 /* Attach template arguments to type. */
6843 if (! VEC_empty (symbolp, template_args))
6844 {
6845 ALLOCATE_CPLUS_STRUCT_TYPE (type);
6846 TYPE_N_TEMPLATE_ARGUMENTS (type)
6847 = VEC_length (symbolp, template_args);
6848 TYPE_TEMPLATE_ARGUMENTS (type)
6849 = obstack_alloc (&objfile->objfile_obstack,
6850 (TYPE_N_TEMPLATE_ARGUMENTS (type)
6851 * sizeof (struct symbol *)));
6852 memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
6853 VEC_address (symbolp, template_args),
6854 (TYPE_N_TEMPLATE_ARGUMENTS (type)
6855 * sizeof (struct symbol *)));
6856 VEC_free (symbolp, template_args);
6857 }
6858
6859 /* Attach fields and member functions to the type. */
6860 if (fi.nfields)
6861 dwarf2_attach_fields_to_type (&fi, type, cu);
6862 if (fi.nfnfields)
6863 {
6864 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
6865
6866 /* Get the type which refers to the base class (possibly this
6867 class itself) which contains the vtable pointer for the current
6868 class from the DW_AT_containing_type attribute. This use of
6869 DW_AT_containing_type is a GNU extension. */
6870
6871 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
6872 {
6873 struct type *t = die_containing_type (die, cu);
6874
6875 TYPE_VPTR_BASETYPE (type) = t;
6876 if (type == t)
6877 {
6878 int i;
6879
6880 /* Our own class provides vtbl ptr. */
6881 for (i = TYPE_NFIELDS (t) - 1;
6882 i >= TYPE_N_BASECLASSES (t);
6883 --i)
6884 {
6885 char *fieldname = TYPE_FIELD_NAME (t, i);
6886
6887 if (is_vtable_name (fieldname, cu))
6888 {
6889 TYPE_VPTR_FIELDNO (type) = i;
6890 break;
6891 }
6892 }
6893
6894 /* Complain if virtual function table field not found. */
6895 if (i < TYPE_N_BASECLASSES (t))
6896 complaint (&symfile_complaints,
6897 _("virtual function table pointer not found when defining class '%s'"),
6898 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
6899 "");
6900 }
6901 else
6902 {
6903 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
6904 }
6905 }
6906 else if (cu->producer
6907 && strncmp (cu->producer,
6908 "IBM(R) XL C/C++ Advanced Edition", 32) == 0)
6909 {
6910 /* The IBM XLC compiler does not provide direct indication
6911 of the containing type, but the vtable pointer is
6912 always named __vfp. */
6913
6914 int i;
6915
6916 for (i = TYPE_NFIELDS (type) - 1;
6917 i >= TYPE_N_BASECLASSES (type);
6918 --i)
6919 {
6920 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
6921 {
6922 TYPE_VPTR_FIELDNO (type) = i;
6923 TYPE_VPTR_BASETYPE (type) = type;
6924 break;
6925 }
6926 }
6927 }
6928 }
6929
6930 /* Copy fi.typedef_field_list linked list elements content into the
6931 allocated array TYPE_TYPEDEF_FIELD_ARRAY (type). */
6932 if (fi.typedef_field_list)
6933 {
6934 int i = fi.typedef_field_list_count;
6935
6936 ALLOCATE_CPLUS_STRUCT_TYPE (type);
6937 TYPE_TYPEDEF_FIELD_ARRAY (type)
6938 = TYPE_ALLOC (type, sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * i);
6939 TYPE_TYPEDEF_FIELD_COUNT (type) = i;
6940
6941 /* Reverse the list order to keep the debug info elements order. */
6942 while (--i >= 0)
6943 {
6944 struct typedef_field *dest, *src;
6945
6946 dest = &TYPE_TYPEDEF_FIELD (type, i);
6947 src = &fi.typedef_field_list->field;
6948 fi.typedef_field_list = fi.typedef_field_list->next;
6949 *dest = *src;
6950 }
6951 }
6952
6953 do_cleanups (back_to);
6954 }
6955
6956 quirk_gcc_member_function_pointer (type, cu->objfile);
6957
6958 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
6959 snapshots) has been known to create a die giving a declaration
6960 for a class that has, as a child, a die giving a definition for a
6961 nested class. So we have to process our children even if the
6962 current die is a declaration. Normally, of course, a declaration
6963 won't have any children at all. */
6964
6965 while (child_die != NULL && child_die->tag)
6966 {
6967 if (child_die->tag == DW_TAG_member
6968 || child_die->tag == DW_TAG_variable
6969 || child_die->tag == DW_TAG_inheritance
6970 || child_die->tag == DW_TAG_template_value_param
6971 || child_die->tag == DW_TAG_template_type_param)
6972 {
6973 /* Do nothing. */
6974 }
6975 else
6976 process_die (child_die, cu);
6977
6978 child_die = sibling_die (child_die);
6979 }
6980
6981 /* Do not consider external references. According to the DWARF standard,
6982 these DIEs are identified by the fact that they have no byte_size
6983 attribute, and a declaration attribute. */
6984 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
6985 || !die_is_declaration (die, cu))
6986 new_symbol (die, type, cu);
6987 }
6988
6989 /* Given a DW_AT_enumeration_type die, set its type. We do not
6990 complete the type's fields yet, or create any symbols. */
6991
6992 static struct type *
6993 read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
6994 {
6995 struct objfile *objfile = cu->objfile;
6996 struct type *type;
6997 struct attribute *attr;
6998 const char *name;
6999
7000 /* If the definition of this type lives in .debug_types, read that type.
7001 Don't follow DW_AT_specification though, that will take us back up
7002 the chain and we want to go down. */
7003 attr = dwarf2_attr_no_follow (die, DW_AT_signature, cu);
7004 if (attr)
7005 {
7006 struct dwarf2_cu *type_cu = cu;
7007 struct die_info *type_die = follow_die_ref_or_sig (die, attr, &type_cu);
7008
7009 type = read_type_die (type_die, type_cu);
7010
7011 /* TYPE_CU may not be the same as CU.
7012 Ensure TYPE is recorded in CU's type_hash table. */
7013 return set_die_type (die, type, cu);
7014 }
7015
7016 type = alloc_type (objfile);
7017
7018 TYPE_CODE (type) = TYPE_CODE_ENUM;
7019 name = dwarf2_full_name (NULL, die, cu);
7020 if (name != NULL)
7021 TYPE_TAG_NAME (type) = (char *) name;
7022
7023 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7024 if (attr)
7025 {
7026 TYPE_LENGTH (type) = DW_UNSND (attr);
7027 }
7028 else
7029 {
7030 TYPE_LENGTH (type) = 0;
7031 }
7032
7033 /* The enumeration DIE can be incomplete. In Ada, any type can be
7034 declared as private in the package spec, and then defined only
7035 inside the package body. Such types are known as Taft Amendment
7036 Types. When another package uses such a type, an incomplete DIE
7037 may be generated by the compiler. */
7038 if (die_is_declaration (die, cu))
7039 TYPE_STUB (type) = 1;
7040
7041 return set_die_type (die, type, cu);
7042 }
7043
7044 /* Given a pointer to a die which begins an enumeration, process all
7045 the dies that define the members of the enumeration, and create the
7046 symbol for the enumeration type.
7047
7048 NOTE: We reverse the order of the element list. */
7049
7050 static void
7051 process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
7052 {
7053 struct type *this_type;
7054
7055 this_type = get_die_type (die, cu);
7056 if (this_type == NULL)
7057 this_type = read_enumeration_type (die, cu);
7058
7059 if (die->child != NULL)
7060 {
7061 struct die_info *child_die;
7062 struct symbol *sym;
7063 struct field *fields = NULL;
7064 int num_fields = 0;
7065 int unsigned_enum = 1;
7066 char *name;
7067
7068 child_die = die->child;
7069 while (child_die && child_die->tag)
7070 {
7071 if (child_die->tag != DW_TAG_enumerator)
7072 {
7073 process_die (child_die, cu);
7074 }
7075 else
7076 {
7077 name = dwarf2_name (child_die, cu);
7078 if (name)
7079 {
7080 sym = new_symbol (child_die, this_type, cu);
7081 if (SYMBOL_VALUE (sym) < 0)
7082 unsigned_enum = 0;
7083
7084 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
7085 {
7086 fields = (struct field *)
7087 xrealloc (fields,
7088 (num_fields + DW_FIELD_ALLOC_CHUNK)
7089 * sizeof (struct field));
7090 }
7091
7092 FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
7093 FIELD_TYPE (fields[num_fields]) = NULL;
7094 SET_FIELD_BITPOS (fields[num_fields], SYMBOL_VALUE (sym));
7095 FIELD_BITSIZE (fields[num_fields]) = 0;
7096
7097 num_fields++;
7098 }
7099 }
7100
7101 child_die = sibling_die (child_die);
7102 }
7103
7104 if (num_fields)
7105 {
7106 TYPE_NFIELDS (this_type) = num_fields;
7107 TYPE_FIELDS (this_type) = (struct field *)
7108 TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
7109 memcpy (TYPE_FIELDS (this_type), fields,
7110 sizeof (struct field) * num_fields);
7111 xfree (fields);
7112 }
7113 if (unsigned_enum)
7114 TYPE_UNSIGNED (this_type) = 1;
7115 }
7116
7117 new_symbol (die, this_type, cu);
7118 }
7119
7120 /* Extract all information from a DW_TAG_array_type DIE and put it in
7121 the DIE's type field. For now, this only handles one dimensional
7122 arrays. */
7123
7124 static struct type *
7125 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
7126 {
7127 struct objfile *objfile = cu->objfile;
7128 struct die_info *child_die;
7129 struct type *type;
7130 struct type *element_type, *range_type, *index_type;
7131 struct type **range_types = NULL;
7132 struct attribute *attr;
7133 int ndim = 0;
7134 struct cleanup *back_to;
7135 char *name;
7136
7137 element_type = die_type (die, cu);
7138
7139 /* The die_type call above may have already set the type for this DIE. */
7140 type = get_die_type (die, cu);
7141 if (type)
7142 return type;
7143
7144 /* Irix 6.2 native cc creates array types without children for
7145 arrays with unspecified length. */
7146 if (die->child == NULL)
7147 {
7148 index_type = objfile_type (objfile)->builtin_int;
7149 range_type = create_range_type (NULL, index_type, 0, -1);
7150 type = create_array_type (NULL, element_type, range_type);
7151 return set_die_type (die, type, cu);
7152 }
7153
7154 back_to = make_cleanup (null_cleanup, NULL);
7155 child_die = die->child;
7156 while (child_die && child_die->tag)
7157 {
7158 if (child_die->tag == DW_TAG_subrange_type)
7159 {
7160 struct type *child_type = read_type_die (child_die, cu);
7161
7162 if (child_type != NULL)
7163 {
7164 /* The range type was succesfully read. Save it for
7165 the array type creation. */
7166 if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
7167 {
7168 range_types = (struct type **)
7169 xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
7170 * sizeof (struct type *));
7171 if (ndim == 0)
7172 make_cleanup (free_current_contents, &range_types);
7173 }
7174 range_types[ndim++] = child_type;
7175 }
7176 }
7177 child_die = sibling_die (child_die);
7178 }
7179
7180 /* Dwarf2 dimensions are output from left to right, create the
7181 necessary array types in backwards order. */
7182
7183 type = element_type;
7184
7185 if (read_array_order (die, cu) == DW_ORD_col_major)
7186 {
7187 int i = 0;
7188
7189 while (i < ndim)
7190 type = create_array_type (NULL, type, range_types[i++]);
7191 }
7192 else
7193 {
7194 while (ndim-- > 0)
7195 type = create_array_type (NULL, type, range_types[ndim]);
7196 }
7197
7198 /* Understand Dwarf2 support for vector types (like they occur on
7199 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
7200 array type. This is not part of the Dwarf2/3 standard yet, but a
7201 custom vendor extension. The main difference between a regular
7202 array and the vector variant is that vectors are passed by value
7203 to functions. */
7204 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
7205 if (attr)
7206 make_vector_type (type);
7207
7208 name = dwarf2_name (die, cu);
7209 if (name)
7210 TYPE_NAME (type) = name;
7211
7212 /* Install the type in the die. */
7213 set_die_type (die, type, cu);
7214
7215 /* set_die_type should be already done. */
7216 set_descriptive_type (type, die, cu);
7217
7218 do_cleanups (back_to);
7219
7220 return type;
7221 }
7222
7223 static enum dwarf_array_dim_ordering
7224 read_array_order (struct die_info *die, struct dwarf2_cu *cu)
7225 {
7226 struct attribute *attr;
7227
7228 attr = dwarf2_attr (die, DW_AT_ordering, cu);
7229
7230 if (attr) return DW_SND (attr);
7231
7232 /*
7233 GNU F77 is a special case, as at 08/2004 array type info is the
7234 opposite order to the dwarf2 specification, but data is still
7235 laid out as per normal fortran.
7236
7237 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
7238 version checking.
7239 */
7240
7241 if (cu->language == language_fortran
7242 && cu->producer && strstr (cu->producer, "GNU F77"))
7243 {
7244 return DW_ORD_row_major;
7245 }
7246
7247 switch (cu->language_defn->la_array_ordering)
7248 {
7249 case array_column_major:
7250 return DW_ORD_col_major;
7251 case array_row_major:
7252 default:
7253 return DW_ORD_row_major;
7254 };
7255 }
7256
7257 /* Extract all information from a DW_TAG_set_type DIE and put it in
7258 the DIE's type field. */
7259
7260 static struct type *
7261 read_set_type (struct die_info *die, struct dwarf2_cu *cu)
7262 {
7263 struct type *domain_type, *set_type;
7264 struct attribute *attr;
7265
7266 domain_type = die_type (die, cu);
7267
7268 /* The die_type call above may have already set the type for this DIE. */
7269 set_type = get_die_type (die, cu);
7270 if (set_type)
7271 return set_type;
7272
7273 set_type = create_set_type (NULL, domain_type);
7274
7275 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7276 if (attr)
7277 TYPE_LENGTH (set_type) = DW_UNSND (attr);
7278
7279 return set_die_type (die, set_type, cu);
7280 }
7281
7282 /* First cut: install each common block member as a global variable. */
7283
7284 static void
7285 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
7286 {
7287 struct die_info *child_die;
7288 struct attribute *attr;
7289 struct symbol *sym;
7290 CORE_ADDR base = (CORE_ADDR) 0;
7291
7292 attr = dwarf2_attr (die, DW_AT_location, cu);
7293 if (attr)
7294 {
7295 /* Support the .debug_loc offsets */
7296 if (attr_form_is_block (attr))
7297 {
7298 base = decode_locdesc (DW_BLOCK (attr), cu);
7299 }
7300 else if (attr_form_is_section_offset (attr))
7301 {
7302 dwarf2_complex_location_expr_complaint ();
7303 }
7304 else
7305 {
7306 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
7307 "common block member");
7308 }
7309 }
7310 if (die->child != NULL)
7311 {
7312 child_die = die->child;
7313 while (child_die && child_die->tag)
7314 {
7315 sym = new_symbol (child_die, NULL, cu);
7316 attr = dwarf2_attr (child_die, DW_AT_data_member_location, cu);
7317 if (sym != NULL && attr != NULL)
7318 {
7319 CORE_ADDR byte_offset = 0;
7320
7321 if (attr_form_is_section_offset (attr))
7322 dwarf2_complex_location_expr_complaint ();
7323 else if (attr_form_is_constant (attr))
7324 byte_offset = dwarf2_get_attr_constant_value (attr, 0);
7325 else if (attr_form_is_block (attr))
7326 byte_offset = decode_locdesc (DW_BLOCK (attr), cu);
7327 else
7328 dwarf2_complex_location_expr_complaint ();
7329
7330 SYMBOL_VALUE_ADDRESS (sym) = base + byte_offset;
7331 add_symbol_to_list (sym, &global_symbols);
7332 }
7333 child_die = sibling_die (child_die);
7334 }
7335 }
7336 }
7337
7338 /* Create a type for a C++ namespace. */
7339
7340 static struct type *
7341 read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
7342 {
7343 struct objfile *objfile = cu->objfile;
7344 const char *previous_prefix, *name;
7345 int is_anonymous;
7346 struct type *type;
7347
7348 /* For extensions, reuse the type of the original namespace. */
7349 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
7350 {
7351 struct die_info *ext_die;
7352 struct dwarf2_cu *ext_cu = cu;
7353
7354 ext_die = dwarf2_extension (die, &ext_cu);
7355 type = read_type_die (ext_die, ext_cu);
7356
7357 /* EXT_CU may not be the same as CU.
7358 Ensure TYPE is recorded in CU's type_hash table. */
7359 return set_die_type (die, type, cu);
7360 }
7361
7362 name = namespace_name (die, &is_anonymous, cu);
7363
7364 /* Now build the name of the current namespace. */
7365
7366 previous_prefix = determine_prefix (die, cu);
7367 if (previous_prefix[0] != '\0')
7368 name = typename_concat (&objfile->objfile_obstack,
7369 previous_prefix, name, 0, cu);
7370
7371 /* Create the type. */
7372 type = init_type (TYPE_CODE_NAMESPACE, 0, 0, NULL,
7373 objfile);
7374 TYPE_NAME (type) = (char *) name;
7375 TYPE_TAG_NAME (type) = TYPE_NAME (type);
7376
7377 return set_die_type (die, type, cu);
7378 }
7379
7380 /* Read a C++ namespace. */
7381
7382 static void
7383 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
7384 {
7385 struct objfile *objfile = cu->objfile;
7386 const char *name;
7387 int is_anonymous;
7388
7389 /* Add a symbol associated to this if we haven't seen the namespace
7390 before. Also, add a using directive if it's an anonymous
7391 namespace. */
7392
7393 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
7394 {
7395 struct type *type;
7396
7397 type = read_type_die (die, cu);
7398 new_symbol (die, type, cu);
7399
7400 name = namespace_name (die, &is_anonymous, cu);
7401 if (is_anonymous)
7402 {
7403 const char *previous_prefix = determine_prefix (die, cu);
7404
7405 cp_add_using_directive (previous_prefix, TYPE_NAME (type), NULL,
7406 NULL, &objfile->objfile_obstack);
7407 }
7408 }
7409
7410 if (die->child != NULL)
7411 {
7412 struct die_info *child_die = die->child;
7413
7414 while (child_die && child_die->tag)
7415 {
7416 process_die (child_die, cu);
7417 child_die = sibling_die (child_die);
7418 }
7419 }
7420 }
7421
7422 /* Read a Fortran module as type. This DIE can be only a declaration used for
7423 imported module. Still we need that type as local Fortran "use ... only"
7424 declaration imports depend on the created type in determine_prefix. */
7425
7426 static struct type *
7427 read_module_type (struct die_info *die, struct dwarf2_cu *cu)
7428 {
7429 struct objfile *objfile = cu->objfile;
7430 char *module_name;
7431 struct type *type;
7432
7433 module_name = dwarf2_name (die, cu);
7434 if (!module_name)
7435 complaint (&symfile_complaints, _("DW_TAG_module has no name, offset 0x%x"),
7436 die->offset);
7437 type = init_type (TYPE_CODE_MODULE, 0, 0, module_name, objfile);
7438
7439 /* determine_prefix uses TYPE_TAG_NAME. */
7440 TYPE_TAG_NAME (type) = TYPE_NAME (type);
7441
7442 return set_die_type (die, type, cu);
7443 }
7444
7445 /* Read a Fortran module. */
7446
7447 static void
7448 read_module (struct die_info *die, struct dwarf2_cu *cu)
7449 {
7450 struct die_info *child_die = die->child;
7451
7452 while (child_die && child_die->tag)
7453 {
7454 process_die (child_die, cu);
7455 child_die = sibling_die (child_die);
7456 }
7457 }
7458
7459 /* Return the name of the namespace represented by DIE. Set
7460 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
7461 namespace. */
7462
7463 static const char *
7464 namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
7465 {
7466 struct die_info *current_die;
7467 const char *name = NULL;
7468
7469 /* Loop through the extensions until we find a name. */
7470
7471 for (current_die = die;
7472 current_die != NULL;
7473 current_die = dwarf2_extension (die, &cu))
7474 {
7475 name = dwarf2_name (current_die, cu);
7476 if (name != NULL)
7477 break;
7478 }
7479
7480 /* Is it an anonymous namespace? */
7481
7482 *is_anonymous = (name == NULL);
7483 if (*is_anonymous)
7484 name = "(anonymous namespace)";
7485
7486 return name;
7487 }
7488
7489 /* Extract all information from a DW_TAG_pointer_type DIE and add to
7490 the user defined type vector. */
7491
7492 static struct type *
7493 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
7494 {
7495 struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
7496 struct comp_unit_head *cu_header = &cu->header;
7497 struct type *type;
7498 struct attribute *attr_byte_size;
7499 struct attribute *attr_address_class;
7500 int byte_size, addr_class;
7501 struct type *target_type;
7502
7503 target_type = die_type (die, cu);
7504
7505 /* The die_type call above may have already set the type for this DIE. */
7506 type = get_die_type (die, cu);
7507 if (type)
7508 return type;
7509
7510 type = lookup_pointer_type (target_type);
7511
7512 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
7513 if (attr_byte_size)
7514 byte_size = DW_UNSND (attr_byte_size);
7515 else
7516 byte_size = cu_header->addr_size;
7517
7518 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
7519 if (attr_address_class)
7520 addr_class = DW_UNSND (attr_address_class);
7521 else
7522 addr_class = DW_ADDR_none;
7523
7524 /* If the pointer size or address class is different than the
7525 default, create a type variant marked as such and set the
7526 length accordingly. */
7527 if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
7528 {
7529 if (gdbarch_address_class_type_flags_p (gdbarch))
7530 {
7531 int type_flags;
7532
7533 type_flags = gdbarch_address_class_type_flags
7534 (gdbarch, byte_size, addr_class);
7535 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
7536 == 0);
7537 type = make_type_with_address_space (type, type_flags);
7538 }
7539 else if (TYPE_LENGTH (type) != byte_size)
7540 {
7541 complaint (&symfile_complaints, _("invalid pointer size %d"), byte_size);
7542 }
7543 else
7544 {
7545 /* Should we also complain about unhandled address classes? */
7546 }
7547 }
7548
7549 TYPE_LENGTH (type) = byte_size;
7550 return set_die_type (die, type, cu);
7551 }
7552
7553 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
7554 the user defined type vector. */
7555
7556 static struct type *
7557 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
7558 {
7559 struct type *type;
7560 struct type *to_type;
7561 struct type *domain;
7562
7563 to_type = die_type (die, cu);
7564 domain = die_containing_type (die, cu);
7565
7566 /* The calls above may have already set the type for this DIE. */
7567 type = get_die_type (die, cu);
7568 if (type)
7569 return type;
7570
7571 if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
7572 type = lookup_methodptr_type (to_type);
7573 else
7574 type = lookup_memberptr_type (to_type, domain);
7575
7576 return set_die_type (die, type, cu);
7577 }
7578
7579 /* Extract all information from a DW_TAG_reference_type DIE and add to
7580 the user defined type vector. */
7581
7582 static struct type *
7583 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
7584 {
7585 struct comp_unit_head *cu_header = &cu->header;
7586 struct type *type, *target_type;
7587 struct attribute *attr;
7588
7589 target_type = die_type (die, cu);
7590
7591 /* The die_type call above may have already set the type for this DIE. */
7592 type = get_die_type (die, cu);
7593 if (type)
7594 return type;
7595
7596 type = lookup_reference_type (target_type);
7597 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7598 if (attr)
7599 {
7600 TYPE_LENGTH (type) = DW_UNSND (attr);
7601 }
7602 else
7603 {
7604 TYPE_LENGTH (type) = cu_header->addr_size;
7605 }
7606 return set_die_type (die, type, cu);
7607 }
7608
7609 static struct type *
7610 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
7611 {
7612 struct type *base_type, *cv_type;
7613
7614 base_type = die_type (die, cu);
7615
7616 /* The die_type call above may have already set the type for this DIE. */
7617 cv_type = get_die_type (die, cu);
7618 if (cv_type)
7619 return cv_type;
7620
7621 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
7622 return set_die_type (die, cv_type, cu);
7623 }
7624
7625 static struct type *
7626 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
7627 {
7628 struct type *base_type, *cv_type;
7629
7630 base_type = die_type (die, cu);
7631
7632 /* The die_type call above may have already set the type for this DIE. */
7633 cv_type = get_die_type (die, cu);
7634 if (cv_type)
7635 return cv_type;
7636
7637 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
7638 return set_die_type (die, cv_type, cu);
7639 }
7640
7641 /* Extract all information from a DW_TAG_string_type DIE and add to
7642 the user defined type vector. It isn't really a user defined type,
7643 but it behaves like one, with other DIE's using an AT_user_def_type
7644 attribute to reference it. */
7645
7646 static struct type *
7647 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
7648 {
7649 struct objfile *objfile = cu->objfile;
7650 struct gdbarch *gdbarch = get_objfile_arch (objfile);
7651 struct type *type, *range_type, *index_type, *char_type;
7652 struct attribute *attr;
7653 unsigned int length;
7654
7655 attr = dwarf2_attr (die, DW_AT_string_length, cu);
7656 if (attr)
7657 {
7658 length = DW_UNSND (attr);
7659 }
7660 else
7661 {
7662 /* check for the DW_AT_byte_size attribute */
7663 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7664 if (attr)
7665 {
7666 length = DW_UNSND (attr);
7667 }
7668 else
7669 {
7670 length = 1;
7671 }
7672 }
7673
7674 index_type = objfile_type (objfile)->builtin_int;
7675 range_type = create_range_type (NULL, index_type, 1, length);
7676 char_type = language_string_char_type (cu->language_defn, gdbarch);
7677 type = create_string_type (NULL, char_type, range_type);
7678
7679 return set_die_type (die, type, cu);
7680 }
7681
7682 /* Handle DIES due to C code like:
7683
7684 struct foo
7685 {
7686 int (*funcp)(int a, long l);
7687 int b;
7688 };
7689
7690 ('funcp' generates a DW_TAG_subroutine_type DIE)
7691 */
7692
7693 static struct type *
7694 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
7695 {
7696 struct type *type; /* Type that this function returns */
7697 struct type *ftype; /* Function that returns above type */
7698 struct attribute *attr;
7699
7700 type = die_type (die, cu);
7701
7702 /* The die_type call above may have already set the type for this DIE. */
7703 ftype = get_die_type (die, cu);
7704 if (ftype)
7705 return ftype;
7706
7707 ftype = lookup_function_type (type);
7708
7709 /* All functions in C++, Pascal and Java have prototypes. */
7710 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
7711 if ((attr && (DW_UNSND (attr) != 0))
7712 || cu->language == language_cplus
7713 || cu->language == language_java
7714 || cu->language == language_pascal)
7715 TYPE_PROTOTYPED (ftype) = 1;
7716 else if (producer_is_realview (cu->producer))
7717 /* RealView does not emit DW_AT_prototyped. We can not
7718 distinguish prototyped and unprototyped functions; default to
7719 prototyped, since that is more common in modern code (and
7720 RealView warns about unprototyped functions). */
7721 TYPE_PROTOTYPED (ftype) = 1;
7722
7723 /* Store the calling convention in the type if it's available in
7724 the subroutine die. Otherwise set the calling convention to
7725 the default value DW_CC_normal. */
7726 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
7727 TYPE_CALLING_CONVENTION (ftype) = attr ? DW_UNSND (attr) : DW_CC_normal;
7728
7729 /* We need to add the subroutine type to the die immediately so
7730 we don't infinitely recurse when dealing with parameters
7731 declared as the same subroutine type. */
7732 set_die_type (die, ftype, cu);
7733
7734 if (die->child != NULL)
7735 {
7736 struct type *void_type = objfile_type (cu->objfile)->builtin_void;
7737 struct die_info *child_die;
7738 int nparams, iparams;
7739
7740 /* Count the number of parameters.
7741 FIXME: GDB currently ignores vararg functions, but knows about
7742 vararg member functions. */
7743 nparams = 0;
7744 child_die = die->child;
7745 while (child_die && child_die->tag)
7746 {
7747 if (child_die->tag == DW_TAG_formal_parameter)
7748 nparams++;
7749 else if (child_die->tag == DW_TAG_unspecified_parameters)
7750 TYPE_VARARGS (ftype) = 1;
7751 child_die = sibling_die (child_die);
7752 }
7753
7754 /* Allocate storage for parameters and fill them in. */
7755 TYPE_NFIELDS (ftype) = nparams;
7756 TYPE_FIELDS (ftype) = (struct field *)
7757 TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
7758
7759 /* TYPE_FIELD_TYPE must never be NULL. Pre-fill the array to ensure it
7760 even if we error out during the parameters reading below. */
7761 for (iparams = 0; iparams < nparams; iparams++)
7762 TYPE_FIELD_TYPE (ftype, iparams) = void_type;
7763
7764 iparams = 0;
7765 child_die = die->child;
7766 while (child_die && child_die->tag)
7767 {
7768 if (child_die->tag == DW_TAG_formal_parameter)
7769 {
7770 struct type *arg_type;
7771
7772 /* DWARF version 2 has no clean way to discern C++
7773 static and non-static member functions. G++ helps
7774 GDB by marking the first parameter for non-static
7775 member functions (which is the this pointer) as
7776 artificial. We pass this information to
7777 dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
7778
7779 DWARF version 3 added DW_AT_object_pointer, which GCC
7780 4.5 does not yet generate. */
7781 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
7782 if (attr)
7783 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
7784 else
7785 {
7786 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
7787
7788 /* GCC/43521: In java, the formal parameter
7789 "this" is sometimes not marked with DW_AT_artificial. */
7790 if (cu->language == language_java)
7791 {
7792 const char *name = dwarf2_name (child_die, cu);
7793
7794 if (name && !strcmp (name, "this"))
7795 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 1;
7796 }
7797 }
7798 arg_type = die_type (child_die, cu);
7799
7800 /* RealView does not mark THIS as const, which the testsuite
7801 expects. GCC marks THIS as const in method definitions,
7802 but not in the class specifications (GCC PR 43053). */
7803 if (cu->language == language_cplus && !TYPE_CONST (arg_type)
7804 && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
7805 {
7806 int is_this = 0;
7807 struct dwarf2_cu *arg_cu = cu;
7808 const char *name = dwarf2_name (child_die, cu);
7809
7810 attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
7811 if (attr)
7812 {
7813 /* If the compiler emits this, use it. */
7814 if (follow_die_ref (die, attr, &arg_cu) == child_die)
7815 is_this = 1;
7816 }
7817 else if (name && strcmp (name, "this") == 0)
7818 /* Function definitions will have the argument names. */
7819 is_this = 1;
7820 else if (name == NULL && iparams == 0)
7821 /* Declarations may not have the names, so like
7822 elsewhere in GDB, assume an artificial first
7823 argument is "this". */
7824 is_this = 1;
7825
7826 if (is_this)
7827 arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
7828 arg_type, 0);
7829 }
7830
7831 TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
7832 iparams++;
7833 }
7834 child_die = sibling_die (child_die);
7835 }
7836 }
7837
7838 return ftype;
7839 }
7840
7841 static struct type *
7842 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
7843 {
7844 struct objfile *objfile = cu->objfile;
7845 const char *name = NULL;
7846 struct type *this_type;
7847
7848 name = dwarf2_full_name (NULL, die, cu);
7849 this_type = init_type (TYPE_CODE_TYPEDEF, 0,
7850 TYPE_FLAG_TARGET_STUB, NULL, objfile);
7851 TYPE_NAME (this_type) = (char *) name;
7852 set_die_type (die, this_type, cu);
7853 TYPE_TARGET_TYPE (this_type) = die_type (die, cu);
7854 return this_type;
7855 }
7856
7857 /* Find a representation of a given base type and install
7858 it in the TYPE field of the die. */
7859
7860 static struct type *
7861 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
7862 {
7863 struct objfile *objfile = cu->objfile;
7864 struct type *type;
7865 struct attribute *attr;
7866 int encoding = 0, size = 0;
7867 char *name;
7868 enum type_code code = TYPE_CODE_INT;
7869 int type_flags = 0;
7870 struct type *target_type = NULL;
7871
7872 attr = dwarf2_attr (die, DW_AT_encoding, cu);
7873 if (attr)
7874 {
7875 encoding = DW_UNSND (attr);
7876 }
7877 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
7878 if (attr)
7879 {
7880 size = DW_UNSND (attr);
7881 }
7882 name = dwarf2_name (die, cu);
7883 if (!name)
7884 {
7885 complaint (&symfile_complaints,
7886 _("DW_AT_name missing from DW_TAG_base_type"));
7887 }
7888
7889 switch (encoding)
7890 {
7891 case DW_ATE_address:
7892 /* Turn DW_ATE_address into a void * pointer. */
7893 code = TYPE_CODE_PTR;
7894 type_flags |= TYPE_FLAG_UNSIGNED;
7895 target_type = init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
7896 break;
7897 case DW_ATE_boolean:
7898 code = TYPE_CODE_BOOL;
7899 type_flags |= TYPE_FLAG_UNSIGNED;
7900 break;
7901 case DW_ATE_complex_float:
7902 code = TYPE_CODE_COMPLEX;
7903 target_type = init_type (TYPE_CODE_FLT, size / 2, 0, NULL, objfile);
7904 break;
7905 case DW_ATE_decimal_float:
7906 code = TYPE_CODE_DECFLOAT;
7907 break;
7908 case DW_ATE_float:
7909 code = TYPE_CODE_FLT;
7910 break;
7911 case DW_ATE_signed:
7912 break;
7913 case DW_ATE_unsigned:
7914 type_flags |= TYPE_FLAG_UNSIGNED;
7915 break;
7916 case DW_ATE_signed_char:
7917 if (cu->language == language_ada || cu->language == language_m2
7918 || cu->language == language_pascal)
7919 code = TYPE_CODE_CHAR;
7920 break;
7921 case DW_ATE_unsigned_char:
7922 if (cu->language == language_ada || cu->language == language_m2
7923 || cu->language == language_pascal)
7924 code = TYPE_CODE_CHAR;
7925 type_flags |= TYPE_FLAG_UNSIGNED;
7926 break;
7927 case DW_ATE_UTF:
7928 /* We just treat this as an integer and then recognize the
7929 type by name elsewhere. */
7930 break;
7931
7932 default:
7933 complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
7934 dwarf_type_encoding_name (encoding));
7935 break;
7936 }
7937
7938 type = init_type (code, size, type_flags, NULL, objfile);
7939 TYPE_NAME (type) = name;
7940 TYPE_TARGET_TYPE (type) = target_type;
7941
7942 if (name && strcmp (name, "char") == 0)
7943 TYPE_NOSIGN (type) = 1;
7944
7945 return set_die_type (die, type, cu);
7946 }
7947
7948 /* Read the given DW_AT_subrange DIE. */
7949
7950 static struct type *
7951 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
7952 {
7953 struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
7954 struct type *base_type;
7955 struct type *range_type;
7956 struct attribute *attr;
7957 LONGEST low = 0;
7958 LONGEST high = -1;
7959 char *name;
7960 LONGEST negative_mask;
7961
7962 base_type = die_type (die, cu);
7963 /* Preserve BASE_TYPE's original type, just set its LENGTH. */
7964 check_typedef (base_type);
7965
7966 /* The die_type call above may have already set the type for this DIE. */
7967 range_type = get_die_type (die, cu);
7968 if (range_type)
7969 return range_type;
7970
7971 if (cu->language == language_fortran)
7972 {
7973 /* FORTRAN implies a lower bound of 1, if not given. */
7974 low = 1;
7975 }
7976
7977 /* FIXME: For variable sized arrays either of these could be
7978 a variable rather than a constant value. We'll allow it,
7979 but we don't know how to handle it. */
7980 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
7981 if (attr)
7982 low = dwarf2_get_attr_constant_value (attr, 0);
7983
7984 attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
7985 if (attr)
7986 {
7987 if (attr->form == DW_FORM_block1 || is_ref_attr (attr))
7988 {
7989 /* GCC encodes arrays with unspecified or dynamic length
7990 with a DW_FORM_block1 attribute or a reference attribute.
7991 FIXME: GDB does not yet know how to handle dynamic
7992 arrays properly, treat them as arrays with unspecified
7993 length for now.
7994
7995 FIXME: jimb/2003-09-22: GDB does not really know
7996 how to handle arrays of unspecified length
7997 either; we just represent them as zero-length
7998 arrays. Choose an appropriate upper bound given
7999 the lower bound we've computed above. */
8000 high = low - 1;
8001 }
8002 else
8003 high = dwarf2_get_attr_constant_value (attr, 1);
8004 }
8005 else
8006 {
8007 attr = dwarf2_attr (die, DW_AT_count, cu);
8008 if (attr)
8009 {
8010 int count = dwarf2_get_attr_constant_value (attr, 1);
8011 high = low + count - 1;
8012 }
8013 }
8014
8015 /* Dwarf-2 specifications explicitly allows to create subrange types
8016 without specifying a base type.
8017 In that case, the base type must be set to the type of
8018 the lower bound, upper bound or count, in that order, if any of these
8019 three attributes references an object that has a type.
8020 If no base type is found, the Dwarf-2 specifications say that
8021 a signed integer type of size equal to the size of an address should
8022 be used.
8023 For the following C code: `extern char gdb_int [];'
8024 GCC produces an empty range DIE.
8025 FIXME: muller/2010-05-28: Possible references to object for low bound,
8026 high bound or count are not yet handled by this code.
8027 */
8028 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
8029 {
8030 struct objfile *objfile = cu->objfile;
8031 struct gdbarch *gdbarch = get_objfile_arch (objfile);
8032 int addr_size = gdbarch_addr_bit (gdbarch) /8;
8033 struct type *int_type = objfile_type (objfile)->builtin_int;
8034
8035 /* Test "int", "long int", and "long long int" objfile types,
8036 and select the first one having a size above or equal to the
8037 architecture address size. */
8038 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
8039 base_type = int_type;
8040 else
8041 {
8042 int_type = objfile_type (objfile)->builtin_long;
8043 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
8044 base_type = int_type;
8045 else
8046 {
8047 int_type = objfile_type (objfile)->builtin_long_long;
8048 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
8049 base_type = int_type;
8050 }
8051 }
8052 }
8053
8054 negative_mask =
8055 (LONGEST) -1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1);
8056 if (!TYPE_UNSIGNED (base_type) && (low & negative_mask))
8057 low |= negative_mask;
8058 if (!TYPE_UNSIGNED (base_type) && (high & negative_mask))
8059 high |= negative_mask;
8060
8061 range_type = create_range_type (NULL, base_type, low, high);
8062
8063 /* Mark arrays with dynamic length at least as an array of unspecified
8064 length. GDB could check the boundary but before it gets implemented at
8065 least allow accessing the array elements. */
8066 if (attr && attr->form == DW_FORM_block1)
8067 TYPE_HIGH_BOUND_UNDEFINED (range_type) = 1;
8068
8069 name = dwarf2_name (die, cu);
8070 if (name)
8071 TYPE_NAME (range_type) = name;
8072
8073 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
8074 if (attr)
8075 TYPE_LENGTH (range_type) = DW_UNSND (attr);
8076
8077 set_die_type (die, range_type, cu);
8078
8079 /* set_die_type should be already done. */
8080 set_descriptive_type (range_type, die, cu);
8081
8082 return range_type;
8083 }
8084
8085 static struct type *
8086 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
8087 {
8088 struct type *type;
8089
8090 /* For now, we only support the C meaning of an unspecified type: void. */
8091
8092 type = init_type (TYPE_CODE_VOID, 0, 0, NULL, cu->objfile);
8093 TYPE_NAME (type) = dwarf2_name (die, cu);
8094
8095 return set_die_type (die, type, cu);
8096 }
8097
8098 /* Trivial hash function for die_info: the hash value of a DIE
8099 is its offset in .debug_info for this objfile. */
8100
8101 static hashval_t
8102 die_hash (const void *item)
8103 {
8104 const struct die_info *die = item;
8105
8106 return die->offset;
8107 }
8108
8109 /* Trivial comparison function for die_info structures: two DIEs
8110 are equal if they have the same offset. */
8111
8112 static int
8113 die_eq (const void *item_lhs, const void *item_rhs)
8114 {
8115 const struct die_info *die_lhs = item_lhs;
8116 const struct die_info *die_rhs = item_rhs;
8117
8118 return die_lhs->offset == die_rhs->offset;
8119 }
8120
8121 /* Read a whole compilation unit into a linked list of dies. */
8122
8123 static struct die_info *
8124 read_comp_unit (gdb_byte *info_ptr, struct dwarf2_cu *cu)
8125 {
8126 struct die_reader_specs reader_specs;
8127 int read_abbrevs = 0;
8128 struct cleanup *back_to = NULL;
8129 struct die_info *die;
8130
8131 if (cu->dwarf2_abbrevs == NULL)
8132 {
8133 dwarf2_read_abbrevs (cu->objfile->obfd, cu);
8134 back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
8135 read_abbrevs = 1;
8136 }
8137
8138 gdb_assert (cu->die_hash == NULL);
8139 cu->die_hash
8140 = htab_create_alloc_ex (cu->header.length / 12,
8141 die_hash,
8142 die_eq,
8143 NULL,
8144 &cu->comp_unit_obstack,
8145 hashtab_obstack_allocate,
8146 dummy_obstack_deallocate);
8147
8148 init_cu_die_reader (&reader_specs, cu);
8149
8150 die = read_die_and_children (&reader_specs, info_ptr, &info_ptr, NULL);
8151
8152 if (read_abbrevs)
8153 do_cleanups (back_to);
8154
8155 return die;
8156 }
8157
8158 /* Main entry point for reading a DIE and all children.
8159 Read the DIE and dump it if requested. */
8160
8161 static struct die_info *
8162 read_die_and_children (const struct die_reader_specs *reader,
8163 gdb_byte *info_ptr,
8164 gdb_byte **new_info_ptr,
8165 struct die_info *parent)
8166 {
8167 struct die_info *result = read_die_and_children_1 (reader, info_ptr,
8168 new_info_ptr, parent);
8169
8170 if (dwarf2_die_debug)
8171 {
8172 fprintf_unfiltered (gdb_stdlog,
8173 "\nRead die from %s of %s:\n",
8174 reader->buffer == dwarf2_per_objfile->info.buffer
8175 ? ".debug_info"
8176 : reader->buffer == dwarf2_per_objfile->types.buffer
8177 ? ".debug_types"
8178 : "unknown section",
8179 reader->abfd->filename);
8180 dump_die (result, dwarf2_die_debug);
8181 }
8182
8183 return result;
8184 }
8185
8186 /* Read a single die and all its descendents. Set the die's sibling
8187 field to NULL; set other fields in the die correctly, and set all
8188 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
8189 location of the info_ptr after reading all of those dies. PARENT
8190 is the parent of the die in question. */
8191
8192 static struct die_info *
8193 read_die_and_children_1 (const struct die_reader_specs *reader,
8194 gdb_byte *info_ptr,
8195 gdb_byte **new_info_ptr,
8196 struct die_info *parent)
8197 {
8198 struct die_info *die;
8199 gdb_byte *cur_ptr;
8200 int has_children;
8201
8202 cur_ptr = read_full_die (reader, &die, info_ptr, &has_children);
8203 if (die == NULL)
8204 {
8205 *new_info_ptr = cur_ptr;
8206 return NULL;
8207 }
8208 store_in_ref_table (die, reader->cu);
8209
8210 if (has_children)
8211 die->child = read_die_and_siblings (reader, cur_ptr, new_info_ptr, die);
8212 else
8213 {
8214 die->child = NULL;
8215 *new_info_ptr = cur_ptr;
8216 }
8217
8218 die->sibling = NULL;
8219 die->parent = parent;
8220 return die;
8221 }
8222
8223 /* Read a die, all of its descendents, and all of its siblings; set
8224 all of the fields of all of the dies correctly. Arguments are as
8225 in read_die_and_children. */
8226
8227 static struct die_info *
8228 read_die_and_siblings (const struct die_reader_specs *reader,
8229 gdb_byte *info_ptr,
8230 gdb_byte **new_info_ptr,
8231 struct die_info *parent)
8232 {
8233 struct die_info *first_die, *last_sibling;
8234 gdb_byte *cur_ptr;
8235
8236 cur_ptr = info_ptr;
8237 first_die = last_sibling = NULL;
8238
8239 while (1)
8240 {
8241 struct die_info *die
8242 = read_die_and_children_1 (reader, cur_ptr, &cur_ptr, parent);
8243
8244 if (die == NULL)
8245 {
8246 *new_info_ptr = cur_ptr;
8247 return first_die;
8248 }
8249
8250 if (!first_die)
8251 first_die = die;
8252 else
8253 last_sibling->sibling = die;
8254
8255 last_sibling = die;
8256 }
8257 }
8258
8259 /* Read the die from the .debug_info section buffer. Set DIEP to
8260 point to a newly allocated die with its information, except for its
8261 child, sibling, and parent fields. Set HAS_CHILDREN to tell
8262 whether the die has children or not. */
8263
8264 static gdb_byte *
8265 read_full_die (const struct die_reader_specs *reader,
8266 struct die_info **diep, gdb_byte *info_ptr,
8267 int *has_children)
8268 {
8269 unsigned int abbrev_number, bytes_read, i, offset;
8270 struct abbrev_info *abbrev;
8271 struct die_info *die;
8272 struct dwarf2_cu *cu = reader->cu;
8273 bfd *abfd = reader->abfd;
8274
8275 offset = info_ptr - reader->buffer;
8276 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
8277 info_ptr += bytes_read;
8278 if (!abbrev_number)
8279 {
8280 *diep = NULL;
8281 *has_children = 0;
8282 return info_ptr;
8283 }
8284
8285 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
8286 if (!abbrev)
8287 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
8288 abbrev_number,
8289 bfd_get_filename (abfd));
8290
8291 die = dwarf_alloc_die (cu, abbrev->num_attrs);
8292 die->offset = offset;
8293 die->tag = abbrev->tag;
8294 die->abbrev = abbrev_number;
8295
8296 die->num_attrs = abbrev->num_attrs;
8297
8298 for (i = 0; i < abbrev->num_attrs; ++i)
8299 info_ptr = read_attribute (&die->attrs[i], &abbrev->attrs[i],
8300 abfd, info_ptr, cu);
8301
8302 *diep = die;
8303 *has_children = abbrev->has_children;
8304 return info_ptr;
8305 }
8306
8307 /* In DWARF version 2, the description of the debugging information is
8308 stored in a separate .debug_abbrev section. Before we read any
8309 dies from a section we read in all abbreviations and install them
8310 in a hash table. This function also sets flags in CU describing
8311 the data found in the abbrev table. */
8312
8313 static void
8314 dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu)
8315 {
8316 struct comp_unit_head *cu_header = &cu->header;
8317 gdb_byte *abbrev_ptr;
8318 struct abbrev_info *cur_abbrev;
8319 unsigned int abbrev_number, bytes_read, abbrev_name;
8320 unsigned int abbrev_form, hash_number;
8321 struct attr_abbrev *cur_attrs;
8322 unsigned int allocated_attrs;
8323
8324 /* Initialize dwarf2 abbrevs */
8325 obstack_init (&cu->abbrev_obstack);
8326 cu->dwarf2_abbrevs = obstack_alloc (&cu->abbrev_obstack,
8327 (ABBREV_HASH_SIZE
8328 * sizeof (struct abbrev_info *)));
8329 memset (cu->dwarf2_abbrevs, 0,
8330 ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
8331
8332 dwarf2_read_section (dwarf2_per_objfile->objfile,
8333 &dwarf2_per_objfile->abbrev);
8334 abbrev_ptr = dwarf2_per_objfile->abbrev.buffer + cu_header->abbrev_offset;
8335 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8336 abbrev_ptr += bytes_read;
8337
8338 allocated_attrs = ATTR_ALLOC_CHUNK;
8339 cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
8340
8341 /* loop until we reach an abbrev number of 0 */
8342 while (abbrev_number)
8343 {
8344 cur_abbrev = dwarf_alloc_abbrev (cu);
8345
8346 /* read in abbrev header */
8347 cur_abbrev->number = abbrev_number;
8348 cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8349 abbrev_ptr += bytes_read;
8350 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
8351 abbrev_ptr += 1;
8352
8353 if (cur_abbrev->tag == DW_TAG_namespace)
8354 cu->has_namespace_info = 1;
8355
8356 /* now read in declarations */
8357 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8358 abbrev_ptr += bytes_read;
8359 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8360 abbrev_ptr += bytes_read;
8361 while (abbrev_name)
8362 {
8363 if (cur_abbrev->num_attrs == allocated_attrs)
8364 {
8365 allocated_attrs += ATTR_ALLOC_CHUNK;
8366 cur_attrs
8367 = xrealloc (cur_attrs, (allocated_attrs
8368 * sizeof (struct attr_abbrev)));
8369 }
8370
8371 /* Record whether this compilation unit might have
8372 inter-compilation-unit references. If we don't know what form
8373 this attribute will have, then it might potentially be a
8374 DW_FORM_ref_addr, so we conservatively expect inter-CU
8375 references. */
8376
8377 if (abbrev_form == DW_FORM_ref_addr
8378 || abbrev_form == DW_FORM_indirect)
8379 cu->has_form_ref_addr = 1;
8380
8381 cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
8382 cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
8383 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8384 abbrev_ptr += bytes_read;
8385 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8386 abbrev_ptr += bytes_read;
8387 }
8388
8389 cur_abbrev->attrs = obstack_alloc (&cu->abbrev_obstack,
8390 (cur_abbrev->num_attrs
8391 * sizeof (struct attr_abbrev)));
8392 memcpy (cur_abbrev->attrs, cur_attrs,
8393 cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
8394
8395 hash_number = abbrev_number % ABBREV_HASH_SIZE;
8396 cur_abbrev->next = cu->dwarf2_abbrevs[hash_number];
8397 cu->dwarf2_abbrevs[hash_number] = cur_abbrev;
8398
8399 /* Get next abbreviation.
8400 Under Irix6 the abbreviations for a compilation unit are not
8401 always properly terminated with an abbrev number of 0.
8402 Exit loop if we encounter an abbreviation which we have
8403 already read (which means we are about to read the abbreviations
8404 for the next compile unit) or if the end of the abbreviation
8405 table is reached. */
8406 if ((unsigned int) (abbrev_ptr - dwarf2_per_objfile->abbrev.buffer)
8407 >= dwarf2_per_objfile->abbrev.size)
8408 break;
8409 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
8410 abbrev_ptr += bytes_read;
8411 if (dwarf2_lookup_abbrev (abbrev_number, cu) != NULL)
8412 break;
8413 }
8414
8415 xfree (cur_attrs);
8416 }
8417
8418 /* Release the memory used by the abbrev table for a compilation unit. */
8419
8420 static void
8421 dwarf2_free_abbrev_table (void *ptr_to_cu)
8422 {
8423 struct dwarf2_cu *cu = ptr_to_cu;
8424
8425 obstack_free (&cu->abbrev_obstack, NULL);
8426 cu->dwarf2_abbrevs = NULL;
8427 }
8428
8429 /* Lookup an abbrev_info structure in the abbrev hash table. */
8430
8431 static struct abbrev_info *
8432 dwarf2_lookup_abbrev (unsigned int number, struct dwarf2_cu *cu)
8433 {
8434 unsigned int hash_number;
8435 struct abbrev_info *abbrev;
8436
8437 hash_number = number % ABBREV_HASH_SIZE;
8438 abbrev = cu->dwarf2_abbrevs[hash_number];
8439
8440 while (abbrev)
8441 {
8442 if (abbrev->number == number)
8443 return abbrev;
8444 else
8445 abbrev = abbrev->next;
8446 }
8447 return NULL;
8448 }
8449
8450 /* Returns nonzero if TAG represents a type that we might generate a partial
8451 symbol for. */
8452
8453 static int
8454 is_type_tag_for_partial (int tag)
8455 {
8456 switch (tag)
8457 {
8458 #if 0
8459 /* Some types that would be reasonable to generate partial symbols for,
8460 that we don't at present. */
8461 case DW_TAG_array_type:
8462 case DW_TAG_file_type:
8463 case DW_TAG_ptr_to_member_type:
8464 case DW_TAG_set_type:
8465 case DW_TAG_string_type:
8466 case DW_TAG_subroutine_type:
8467 #endif
8468 case DW_TAG_base_type:
8469 case DW_TAG_class_type:
8470 case DW_TAG_interface_type:
8471 case DW_TAG_enumeration_type:
8472 case DW_TAG_structure_type:
8473 case DW_TAG_subrange_type:
8474 case DW_TAG_typedef:
8475 case DW_TAG_union_type:
8476 return 1;
8477 default:
8478 return 0;
8479 }
8480 }
8481
8482 /* Load all DIEs that are interesting for partial symbols into memory. */
8483
8484 static struct partial_die_info *
8485 load_partial_dies (bfd *abfd, gdb_byte *buffer, gdb_byte *info_ptr,
8486 int building_psymtab, struct dwarf2_cu *cu)
8487 {
8488 struct partial_die_info *part_die;
8489 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
8490 struct abbrev_info *abbrev;
8491 unsigned int bytes_read;
8492 unsigned int load_all = 0;
8493
8494 int nesting_level = 1;
8495
8496 parent_die = NULL;
8497 last_die = NULL;
8498
8499 if (cu->per_cu && cu->per_cu->load_all_dies)
8500 load_all = 1;
8501
8502 cu->partial_dies
8503 = htab_create_alloc_ex (cu->header.length / 12,
8504 partial_die_hash,
8505 partial_die_eq,
8506 NULL,
8507 &cu->comp_unit_obstack,
8508 hashtab_obstack_allocate,
8509 dummy_obstack_deallocate);
8510
8511 part_die = obstack_alloc (&cu->comp_unit_obstack,
8512 sizeof (struct partial_die_info));
8513
8514 while (1)
8515 {
8516 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
8517
8518 /* A NULL abbrev means the end of a series of children. */
8519 if (abbrev == NULL)
8520 {
8521 if (--nesting_level == 0)
8522 {
8523 /* PART_DIE was probably the last thing allocated on the
8524 comp_unit_obstack, so we could call obstack_free
8525 here. We don't do that because the waste is small,
8526 and will be cleaned up when we're done with this
8527 compilation unit. This way, we're also more robust
8528 against other users of the comp_unit_obstack. */
8529 return first_die;
8530 }
8531 info_ptr += bytes_read;
8532 last_die = parent_die;
8533 parent_die = parent_die->die_parent;
8534 continue;
8535 }
8536
8537 /* Check for template arguments. We never save these; if
8538 they're seen, we just mark the parent, and go on our way. */
8539 if (parent_die != NULL
8540 && cu->language == language_cplus
8541 && (abbrev->tag == DW_TAG_template_type_param
8542 || abbrev->tag == DW_TAG_template_value_param))
8543 {
8544 parent_die->has_template_arguments = 1;
8545
8546 if (!load_all)
8547 {
8548 /* We don't need a partial DIE for the template argument. */
8549 info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev,
8550 cu);
8551 continue;
8552 }
8553 }
8554
8555 /* We only recurse into subprograms looking for template arguments.
8556 Skip their other children. */
8557 if (!load_all
8558 && cu->language == language_cplus
8559 && parent_die != NULL
8560 && parent_die->tag == DW_TAG_subprogram)
8561 {
8562 info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
8563 continue;
8564 }
8565
8566 /* Check whether this DIE is interesting enough to save. Normally
8567 we would not be interested in members here, but there may be
8568 later variables referencing them via DW_AT_specification (for
8569 static members). */
8570 if (!load_all
8571 && !is_type_tag_for_partial (abbrev->tag)
8572 && abbrev->tag != DW_TAG_enumerator
8573 && abbrev->tag != DW_TAG_subprogram
8574 && abbrev->tag != DW_TAG_lexical_block
8575 && abbrev->tag != DW_TAG_variable
8576 && abbrev->tag != DW_TAG_namespace
8577 && abbrev->tag != DW_TAG_module
8578 && abbrev->tag != DW_TAG_member)
8579 {
8580 /* Otherwise we skip to the next sibling, if any. */
8581 info_ptr = skip_one_die (buffer, info_ptr + bytes_read, abbrev, cu);
8582 continue;
8583 }
8584
8585 info_ptr = read_partial_die (part_die, abbrev, bytes_read, abfd,
8586 buffer, info_ptr, cu);
8587
8588 /* This two-pass algorithm for processing partial symbols has a
8589 high cost in cache pressure. Thus, handle some simple cases
8590 here which cover the majority of C partial symbols. DIEs
8591 which neither have specification tags in them, nor could have
8592 specification tags elsewhere pointing at them, can simply be
8593 processed and discarded.
8594
8595 This segment is also optional; scan_partial_symbols and
8596 add_partial_symbol will handle these DIEs if we chain
8597 them in normally. When compilers which do not emit large
8598 quantities of duplicate debug information are more common,
8599 this code can probably be removed. */
8600
8601 /* Any complete simple types at the top level (pretty much all
8602 of them, for a language without namespaces), can be processed
8603 directly. */
8604 if (parent_die == NULL
8605 && part_die->has_specification == 0
8606 && part_die->is_declaration == 0
8607 && (part_die->tag == DW_TAG_typedef
8608 || part_die->tag == DW_TAG_base_type
8609 || part_die->tag == DW_TAG_subrange_type))
8610 {
8611 if (building_psymtab && part_die->name != NULL)
8612 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
8613 VAR_DOMAIN, LOC_TYPEDEF,
8614 &cu->objfile->static_psymbols,
8615 0, (CORE_ADDR) 0, cu->language, cu->objfile);
8616 info_ptr = locate_pdi_sibling (part_die, buffer, info_ptr, abfd, cu);
8617 continue;
8618 }
8619
8620 /* If we're at the second level, and we're an enumerator, and
8621 our parent has no specification (meaning possibly lives in a
8622 namespace elsewhere), then we can add the partial symbol now
8623 instead of queueing it. */
8624 if (part_die->tag == DW_TAG_enumerator
8625 && parent_die != NULL
8626 && parent_die->die_parent == NULL
8627 && parent_die->tag == DW_TAG_enumeration_type
8628 && parent_die->has_specification == 0)
8629 {
8630 if (part_die->name == NULL)
8631 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
8632 else if (building_psymtab)
8633 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
8634 VAR_DOMAIN, LOC_CONST,
8635 (cu->language == language_cplus
8636 || cu->language == language_java)
8637 ? &cu->objfile->global_psymbols
8638 : &cu->objfile->static_psymbols,
8639 0, (CORE_ADDR) 0, cu->language, cu->objfile);
8640
8641 info_ptr = locate_pdi_sibling (part_die, buffer, info_ptr, abfd, cu);
8642 continue;
8643 }
8644
8645 /* We'll save this DIE so link it in. */
8646 part_die->die_parent = parent_die;
8647 part_die->die_sibling = NULL;
8648 part_die->die_child = NULL;
8649
8650 if (last_die && last_die == parent_die)
8651 last_die->die_child = part_die;
8652 else if (last_die)
8653 last_die->die_sibling = part_die;
8654
8655 last_die = part_die;
8656
8657 if (first_die == NULL)
8658 first_die = part_die;
8659
8660 /* Maybe add the DIE to the hash table. Not all DIEs that we
8661 find interesting need to be in the hash table, because we
8662 also have the parent/sibling/child chains; only those that we
8663 might refer to by offset later during partial symbol reading.
8664
8665 For now this means things that might have be the target of a
8666 DW_AT_specification, DW_AT_abstract_origin, or
8667 DW_AT_extension. DW_AT_extension will refer only to
8668 namespaces; DW_AT_abstract_origin refers to functions (and
8669 many things under the function DIE, but we do not recurse
8670 into function DIEs during partial symbol reading) and
8671 possibly variables as well; DW_AT_specification refers to
8672 declarations. Declarations ought to have the DW_AT_declaration
8673 flag. It happens that GCC forgets to put it in sometimes, but
8674 only for functions, not for types.
8675
8676 Adding more things than necessary to the hash table is harmless
8677 except for the performance cost. Adding too few will result in
8678 wasted time in find_partial_die, when we reread the compilation
8679 unit with load_all_dies set. */
8680
8681 if (load_all
8682 || abbrev->tag == DW_TAG_subprogram
8683 || abbrev->tag == DW_TAG_variable
8684 || abbrev->tag == DW_TAG_namespace
8685 || part_die->is_declaration)
8686 {
8687 void **slot;
8688
8689 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
8690 part_die->offset, INSERT);
8691 *slot = part_die;
8692 }
8693
8694 part_die = obstack_alloc (&cu->comp_unit_obstack,
8695 sizeof (struct partial_die_info));
8696
8697 /* For some DIEs we want to follow their children (if any). For C
8698 we have no reason to follow the children of structures; for other
8699 languages we have to, so that we can get at method physnames
8700 to infer fully qualified class names, for DW_AT_specification,
8701 and for C++ template arguments. For C++, we also look one level
8702 inside functions to find template arguments (if the name of the
8703 function does not already contain the template arguments).
8704
8705 For Ada, we need to scan the children of subprograms and lexical
8706 blocks as well because Ada allows the definition of nested
8707 entities that could be interesting for the debugger, such as
8708 nested subprograms for instance. */
8709 if (last_die->has_children
8710 && (load_all
8711 || last_die->tag == DW_TAG_namespace
8712 || last_die->tag == DW_TAG_module
8713 || last_die->tag == DW_TAG_enumeration_type
8714 || (cu->language == language_cplus
8715 && last_die->tag == DW_TAG_subprogram
8716 && (last_die->name == NULL
8717 || strchr (last_die->name, '<') == NULL))
8718 || (cu->language != language_c
8719 && (last_die->tag == DW_TAG_class_type
8720 || last_die->tag == DW_TAG_interface_type
8721 || last_die->tag == DW_TAG_structure_type
8722 || last_die->tag == DW_TAG_union_type))
8723 || (cu->language == language_ada
8724 && (last_die->tag == DW_TAG_subprogram
8725 || last_die->tag == DW_TAG_lexical_block))))
8726 {
8727 nesting_level++;
8728 parent_die = last_die;
8729 continue;
8730 }
8731
8732 /* Otherwise we skip to the next sibling, if any. */
8733 info_ptr = locate_pdi_sibling (last_die, buffer, info_ptr, abfd, cu);
8734
8735 /* Back to the top, do it again. */
8736 }
8737 }
8738
8739 /* Read a minimal amount of information into the minimal die structure. */
8740
8741 static gdb_byte *
8742 read_partial_die (struct partial_die_info *part_die,
8743 struct abbrev_info *abbrev,
8744 unsigned int abbrev_len, bfd *abfd,
8745 gdb_byte *buffer, gdb_byte *info_ptr,
8746 struct dwarf2_cu *cu)
8747 {
8748 unsigned int i;
8749 struct attribute attr;
8750 int has_low_pc_attr = 0;
8751 int has_high_pc_attr = 0;
8752
8753 memset (part_die, 0, sizeof (struct partial_die_info));
8754
8755 part_die->offset = info_ptr - buffer;
8756
8757 info_ptr += abbrev_len;
8758
8759 if (abbrev == NULL)
8760 return info_ptr;
8761
8762 part_die->tag = abbrev->tag;
8763 part_die->has_children = abbrev->has_children;
8764
8765 for (i = 0; i < abbrev->num_attrs; ++i)
8766 {
8767 info_ptr = read_attribute (&attr, &abbrev->attrs[i], abfd, info_ptr, cu);
8768
8769 /* Store the data if it is of an attribute we want to keep in a
8770 partial symbol table. */
8771 switch (attr.name)
8772 {
8773 case DW_AT_name:
8774 switch (part_die->tag)
8775 {
8776 case DW_TAG_compile_unit:
8777 case DW_TAG_type_unit:
8778 /* Compilation units have a DW_AT_name that is a filename, not
8779 a source language identifier. */
8780 case DW_TAG_enumeration_type:
8781 case DW_TAG_enumerator:
8782 /* These tags always have simple identifiers already; no need
8783 to canonicalize them. */
8784 part_die->name = DW_STRING (&attr);
8785 break;
8786 default:
8787 part_die->name
8788 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
8789 &cu->objfile->objfile_obstack);
8790 break;
8791 }
8792 break;
8793 case DW_AT_linkage_name:
8794 case DW_AT_MIPS_linkage_name:
8795 /* Note that both forms of linkage name might appear. We
8796 assume they will be the same, and we only store the last
8797 one we see. */
8798 if (cu->language == language_ada)
8799 part_die->name = DW_STRING (&attr);
8800 break;
8801 case DW_AT_low_pc:
8802 has_low_pc_attr = 1;
8803 part_die->lowpc = DW_ADDR (&attr);
8804 break;
8805 case DW_AT_high_pc:
8806 has_high_pc_attr = 1;
8807 part_die->highpc = DW_ADDR (&attr);
8808 break;
8809 case DW_AT_location:
8810 /* Support the .debug_loc offsets */
8811 if (attr_form_is_block (&attr))
8812 {
8813 part_die->locdesc = DW_BLOCK (&attr);
8814 }
8815 else if (attr_form_is_section_offset (&attr))
8816 {
8817 dwarf2_complex_location_expr_complaint ();
8818 }
8819 else
8820 {
8821 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
8822 "partial symbol information");
8823 }
8824 break;
8825 case DW_AT_external:
8826 part_die->is_external = DW_UNSND (&attr);
8827 break;
8828 case DW_AT_declaration:
8829 part_die->is_declaration = DW_UNSND (&attr);
8830 break;
8831 case DW_AT_type:
8832 part_die->has_type = 1;
8833 break;
8834 case DW_AT_abstract_origin:
8835 case DW_AT_specification:
8836 case DW_AT_extension:
8837 part_die->has_specification = 1;
8838 part_die->spec_offset = dwarf2_get_ref_die_offset (&attr);
8839 break;
8840 case DW_AT_sibling:
8841 /* Ignore absolute siblings, they might point outside of
8842 the current compile unit. */
8843 if (attr.form == DW_FORM_ref_addr)
8844 complaint (&symfile_complaints, _("ignoring absolute DW_AT_sibling"));
8845 else
8846 part_die->sibling = buffer + dwarf2_get_ref_die_offset (&attr);
8847 break;
8848 case DW_AT_byte_size:
8849 part_die->has_byte_size = 1;
8850 break;
8851 case DW_AT_calling_convention:
8852 /* DWARF doesn't provide a way to identify a program's source-level
8853 entry point. DW_AT_calling_convention attributes are only meant
8854 to describe functions' calling conventions.
8855
8856 However, because it's a necessary piece of information in
8857 Fortran, and because DW_CC_program is the only piece of debugging
8858 information whose definition refers to a 'main program' at all,
8859 several compilers have begun marking Fortran main programs with
8860 DW_CC_program --- even when those functions use the standard
8861 calling conventions.
8862
8863 So until DWARF specifies a way to provide this information and
8864 compilers pick up the new representation, we'll support this
8865 practice. */
8866 if (DW_UNSND (&attr) == DW_CC_program
8867 && cu->language == language_fortran)
8868 set_main_name (part_die->name);
8869 break;
8870 default:
8871 break;
8872 }
8873 }
8874
8875 /* When using the GNU linker, .gnu.linkonce. sections are used to
8876 eliminate duplicate copies of functions and vtables and such.
8877 The linker will arbitrarily choose one and discard the others.
8878 The AT_*_pc values for such functions refer to local labels in
8879 these sections. If the section from that file was discarded, the
8880 labels are not in the output, so the relocs get a value of 0.
8881 If this is a discarded function, mark the pc bounds as invalid,
8882 so that GDB will ignore it. */
8883 if (has_low_pc_attr && has_high_pc_attr
8884 && part_die->lowpc < part_die->highpc
8885 && (part_die->lowpc != 0
8886 || dwarf2_per_objfile->has_section_at_zero))
8887 part_die->has_pc_info = 1;
8888
8889 return info_ptr;
8890 }
8891
8892 /* Find a cached partial DIE at OFFSET in CU. */
8893
8894 static struct partial_die_info *
8895 find_partial_die_in_comp_unit (unsigned int offset, struct dwarf2_cu *cu)
8896 {
8897 struct partial_die_info *lookup_die = NULL;
8898 struct partial_die_info part_die;
8899
8900 part_die.offset = offset;
8901 lookup_die = htab_find_with_hash (cu->partial_dies, &part_die, offset);
8902
8903 return lookup_die;
8904 }
8905
8906 /* Find a partial DIE at OFFSET, which may or may not be in CU,
8907 except in the case of .debug_types DIEs which do not reference
8908 outside their CU (they do however referencing other types via
8909 DW_FORM_sig8). */
8910
8911 static struct partial_die_info *
8912 find_partial_die (unsigned int offset, struct dwarf2_cu *cu)
8913 {
8914 struct dwarf2_per_cu_data *per_cu = NULL;
8915 struct partial_die_info *pd = NULL;
8916
8917 if (cu->per_cu->from_debug_types)
8918 {
8919 pd = find_partial_die_in_comp_unit (offset, cu);
8920 if (pd != NULL)
8921 return pd;
8922 goto not_found;
8923 }
8924
8925 if (offset_in_cu_p (&cu->header, offset))
8926 {
8927 pd = find_partial_die_in_comp_unit (offset, cu);
8928 if (pd != NULL)
8929 return pd;
8930 }
8931
8932 per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile);
8933
8934 if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
8935 load_partial_comp_unit (per_cu, cu->objfile);
8936
8937 per_cu->cu->last_used = 0;
8938 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
8939
8940 if (pd == NULL && per_cu->load_all_dies == 0)
8941 {
8942 struct cleanup *back_to;
8943 struct partial_die_info comp_unit_die;
8944 struct abbrev_info *abbrev;
8945 unsigned int bytes_read;
8946 char *info_ptr;
8947
8948 per_cu->load_all_dies = 1;
8949
8950 /* Re-read the DIEs. */
8951 back_to = make_cleanup (null_cleanup, 0);
8952 if (per_cu->cu->dwarf2_abbrevs == NULL)
8953 {
8954 dwarf2_read_abbrevs (per_cu->cu->objfile->obfd, per_cu->cu);
8955 make_cleanup (dwarf2_free_abbrev_table, per_cu->cu);
8956 }
8957 info_ptr = (dwarf2_per_objfile->info.buffer
8958 + per_cu->cu->header.offset
8959 + per_cu->cu->header.first_die_offset);
8960 abbrev = peek_die_abbrev (info_ptr, &bytes_read, per_cu->cu);
8961 info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read,
8962 per_cu->cu->objfile->obfd,
8963 dwarf2_per_objfile->info.buffer, info_ptr,
8964 per_cu->cu);
8965 if (comp_unit_die.has_children)
8966 load_partial_dies (per_cu->cu->objfile->obfd,
8967 dwarf2_per_objfile->info.buffer, info_ptr,
8968 0, per_cu->cu);
8969 do_cleanups (back_to);
8970
8971 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
8972 }
8973
8974 not_found:
8975
8976 if (pd == NULL)
8977 internal_error (__FILE__, __LINE__,
8978 _("could not find partial DIE 0x%x in cache [from module %s]\n"),
8979 offset, bfd_get_filename (cu->objfile->obfd));
8980 return pd;
8981 }
8982
8983 /* Adjust PART_DIE before generating a symbol for it. This function
8984 may set the is_external flag or change the DIE's name. */
8985
8986 static void
8987 fixup_partial_die (struct partial_die_info *part_die,
8988 struct dwarf2_cu *cu)
8989 {
8990 /* If we found a reference attribute and the DIE has no name, try
8991 to find a name in the referred to DIE. */
8992
8993 if (part_die->name == NULL && part_die->has_specification)
8994 {
8995 struct partial_die_info *spec_die;
8996
8997 spec_die = find_partial_die (part_die->spec_offset, cu);
8998
8999 fixup_partial_die (spec_die, cu);
9000
9001 if (spec_die->name)
9002 {
9003 part_die->name = spec_die->name;
9004
9005 /* Copy DW_AT_external attribute if it is set. */
9006 if (spec_die->is_external)
9007 part_die->is_external = spec_die->is_external;
9008 }
9009 }
9010
9011 /* Set default names for some unnamed DIEs. */
9012 if (part_die->name == NULL && (part_die->tag == DW_TAG_structure_type
9013 || part_die->tag == DW_TAG_class_type))
9014 part_die->name = "(anonymous class)";
9015
9016 if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
9017 part_die->name = "(anonymous namespace)";
9018
9019 if (part_die->tag == DW_TAG_structure_type
9020 || part_die->tag == DW_TAG_class_type
9021 || part_die->tag == DW_TAG_union_type)
9022 guess_structure_name (part_die, cu);
9023 }
9024
9025 /* Read an attribute value described by an attribute form. */
9026
9027 static gdb_byte *
9028 read_attribute_value (struct attribute *attr, unsigned form,
9029 bfd *abfd, gdb_byte *info_ptr,
9030 struct dwarf2_cu *cu)
9031 {
9032 struct comp_unit_head *cu_header = &cu->header;
9033 unsigned int bytes_read;
9034 struct dwarf_block *blk;
9035
9036 attr->form = form;
9037 switch (form)
9038 {
9039 case DW_FORM_ref_addr:
9040 if (cu->header.version == 2)
9041 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
9042 else
9043 DW_ADDR (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
9044 info_ptr += bytes_read;
9045 break;
9046 case DW_FORM_addr:
9047 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
9048 info_ptr += bytes_read;
9049 break;
9050 case DW_FORM_block2:
9051 blk = dwarf_alloc_block (cu);
9052 blk->size = read_2_bytes (abfd, info_ptr);
9053 info_ptr += 2;
9054 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9055 info_ptr += blk->size;
9056 DW_BLOCK (attr) = blk;
9057 break;
9058 case DW_FORM_block4:
9059 blk = dwarf_alloc_block (cu);
9060 blk->size = read_4_bytes (abfd, info_ptr);
9061 info_ptr += 4;
9062 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9063 info_ptr += blk->size;
9064 DW_BLOCK (attr) = blk;
9065 break;
9066 case DW_FORM_data2:
9067 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
9068 info_ptr += 2;
9069 break;
9070 case DW_FORM_data4:
9071 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
9072 info_ptr += 4;
9073 break;
9074 case DW_FORM_data8:
9075 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
9076 info_ptr += 8;
9077 break;
9078 case DW_FORM_sec_offset:
9079 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
9080 info_ptr += bytes_read;
9081 break;
9082 case DW_FORM_string:
9083 DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
9084 DW_STRING_IS_CANONICAL (attr) = 0;
9085 info_ptr += bytes_read;
9086 break;
9087 case DW_FORM_strp:
9088 DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
9089 &bytes_read);
9090 DW_STRING_IS_CANONICAL (attr) = 0;
9091 info_ptr += bytes_read;
9092 break;
9093 case DW_FORM_exprloc:
9094 case DW_FORM_block:
9095 blk = dwarf_alloc_block (cu);
9096 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9097 info_ptr += bytes_read;
9098 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9099 info_ptr += blk->size;
9100 DW_BLOCK (attr) = blk;
9101 break;
9102 case DW_FORM_block1:
9103 blk = dwarf_alloc_block (cu);
9104 blk->size = read_1_byte (abfd, info_ptr);
9105 info_ptr += 1;
9106 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
9107 info_ptr += blk->size;
9108 DW_BLOCK (attr) = blk;
9109 break;
9110 case DW_FORM_data1:
9111 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
9112 info_ptr += 1;
9113 break;
9114 case DW_FORM_flag:
9115 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
9116 info_ptr += 1;
9117 break;
9118 case DW_FORM_flag_present:
9119 DW_UNSND (attr) = 1;
9120 break;
9121 case DW_FORM_sdata:
9122 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
9123 info_ptr += bytes_read;
9124 break;
9125 case DW_FORM_udata:
9126 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9127 info_ptr += bytes_read;
9128 break;
9129 case DW_FORM_ref1:
9130 DW_ADDR (attr) = cu->header.offset + read_1_byte (abfd, info_ptr);
9131 info_ptr += 1;
9132 break;
9133 case DW_FORM_ref2:
9134 DW_ADDR (attr) = cu->header.offset + read_2_bytes (abfd, info_ptr);
9135 info_ptr += 2;
9136 break;
9137 case DW_FORM_ref4:
9138 DW_ADDR (attr) = cu->header.offset + read_4_bytes (abfd, info_ptr);
9139 info_ptr += 4;
9140 break;
9141 case DW_FORM_ref8:
9142 DW_ADDR (attr) = cu->header.offset + read_8_bytes (abfd, info_ptr);
9143 info_ptr += 8;
9144 break;
9145 case DW_FORM_sig8:
9146 /* Convert the signature to something we can record in DW_UNSND
9147 for later lookup.
9148 NOTE: This is NULL if the type wasn't found. */
9149 DW_SIGNATURED_TYPE (attr) =
9150 lookup_signatured_type (cu->objfile, read_8_bytes (abfd, info_ptr));
9151 info_ptr += 8;
9152 break;
9153 case DW_FORM_ref_udata:
9154 DW_ADDR (attr) = (cu->header.offset
9155 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
9156 info_ptr += bytes_read;
9157 break;
9158 case DW_FORM_indirect:
9159 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9160 info_ptr += bytes_read;
9161 info_ptr = read_attribute_value (attr, form, abfd, info_ptr, cu);
9162 break;
9163 default:
9164 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
9165 dwarf_form_name (form),
9166 bfd_get_filename (abfd));
9167 }
9168
9169 /* We have seen instances where the compiler tried to emit a byte
9170 size attribute of -1 which ended up being encoded as an unsigned
9171 0xffffffff. Although 0xffffffff is technically a valid size value,
9172 an object of this size seems pretty unlikely so we can relatively
9173 safely treat these cases as if the size attribute was invalid and
9174 treat them as zero by default. */
9175 if (attr->name == DW_AT_byte_size
9176 && form == DW_FORM_data4
9177 && DW_UNSND (attr) >= 0xffffffff)
9178 {
9179 complaint
9180 (&symfile_complaints,
9181 _("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
9182 hex_string (DW_UNSND (attr)));
9183 DW_UNSND (attr) = 0;
9184 }
9185
9186 return info_ptr;
9187 }
9188
9189 /* Read an attribute described by an abbreviated attribute. */
9190
9191 static gdb_byte *
9192 read_attribute (struct attribute *attr, struct attr_abbrev *abbrev,
9193 bfd *abfd, gdb_byte *info_ptr, struct dwarf2_cu *cu)
9194 {
9195 attr->name = abbrev->name;
9196 return read_attribute_value (attr, abbrev->form, abfd, info_ptr, cu);
9197 }
9198
9199 /* read dwarf information from a buffer */
9200
9201 static unsigned int
9202 read_1_byte (bfd *abfd, gdb_byte *buf)
9203 {
9204 return bfd_get_8 (abfd, buf);
9205 }
9206
9207 static int
9208 read_1_signed_byte (bfd *abfd, gdb_byte *buf)
9209 {
9210 return bfd_get_signed_8 (abfd, buf);
9211 }
9212
9213 static unsigned int
9214 read_2_bytes (bfd *abfd, gdb_byte *buf)
9215 {
9216 return bfd_get_16 (abfd, buf);
9217 }
9218
9219 static int
9220 read_2_signed_bytes (bfd *abfd, gdb_byte *buf)
9221 {
9222 return bfd_get_signed_16 (abfd, buf);
9223 }
9224
9225 static unsigned int
9226 read_4_bytes (bfd *abfd, gdb_byte *buf)
9227 {
9228 return bfd_get_32 (abfd, buf);
9229 }
9230
9231 static int
9232 read_4_signed_bytes (bfd *abfd, gdb_byte *buf)
9233 {
9234 return bfd_get_signed_32 (abfd, buf);
9235 }
9236
9237 static ULONGEST
9238 read_8_bytes (bfd *abfd, gdb_byte *buf)
9239 {
9240 return bfd_get_64 (abfd, buf);
9241 }
9242
9243 static CORE_ADDR
9244 read_address (bfd *abfd, gdb_byte *buf, struct dwarf2_cu *cu,
9245 unsigned int *bytes_read)
9246 {
9247 struct comp_unit_head *cu_header = &cu->header;
9248 CORE_ADDR retval = 0;
9249
9250 if (cu_header->signed_addr_p)
9251 {
9252 switch (cu_header->addr_size)
9253 {
9254 case 2:
9255 retval = bfd_get_signed_16 (abfd, buf);
9256 break;
9257 case 4:
9258 retval = bfd_get_signed_32 (abfd, buf);
9259 break;
9260 case 8:
9261 retval = bfd_get_signed_64 (abfd, buf);
9262 break;
9263 default:
9264 internal_error (__FILE__, __LINE__,
9265 _("read_address: bad switch, signed [in module %s]"),
9266 bfd_get_filename (abfd));
9267 }
9268 }
9269 else
9270 {
9271 switch (cu_header->addr_size)
9272 {
9273 case 2:
9274 retval = bfd_get_16 (abfd, buf);
9275 break;
9276 case 4:
9277 retval = bfd_get_32 (abfd, buf);
9278 break;
9279 case 8:
9280 retval = bfd_get_64 (abfd, buf);
9281 break;
9282 default:
9283 internal_error (__FILE__, __LINE__,
9284 _("read_address: bad switch, unsigned [in module %s]"),
9285 bfd_get_filename (abfd));
9286 }
9287 }
9288
9289 *bytes_read = cu_header->addr_size;
9290 return retval;
9291 }
9292
9293 /* Read the initial length from a section. The (draft) DWARF 3
9294 specification allows the initial length to take up either 4 bytes
9295 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
9296 bytes describe the length and all offsets will be 8 bytes in length
9297 instead of 4.
9298
9299 An older, non-standard 64-bit format is also handled by this
9300 function. The older format in question stores the initial length
9301 as an 8-byte quantity without an escape value. Lengths greater
9302 than 2^32 aren't very common which means that the initial 4 bytes
9303 is almost always zero. Since a length value of zero doesn't make
9304 sense for the 32-bit format, this initial zero can be considered to
9305 be an escape value which indicates the presence of the older 64-bit
9306 format. As written, the code can't detect (old format) lengths
9307 greater than 4GB. If it becomes necessary to handle lengths
9308 somewhat larger than 4GB, we could allow other small values (such
9309 as the non-sensical values of 1, 2, and 3) to also be used as
9310 escape values indicating the presence of the old format.
9311
9312 The value returned via bytes_read should be used to increment the
9313 relevant pointer after calling read_initial_length().
9314
9315 [ Note: read_initial_length() and read_offset() are based on the
9316 document entitled "DWARF Debugging Information Format", revision
9317 3, draft 8, dated November 19, 2001. This document was obtained
9318 from:
9319
9320 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
9321
9322 This document is only a draft and is subject to change. (So beware.)
9323
9324 Details regarding the older, non-standard 64-bit format were
9325 determined empirically by examining 64-bit ELF files produced by
9326 the SGI toolchain on an IRIX 6.5 machine.
9327
9328 - Kevin, July 16, 2002
9329 ] */
9330
9331 static LONGEST
9332 read_initial_length (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read)
9333 {
9334 LONGEST length = bfd_get_32 (abfd, buf);
9335
9336 if (length == 0xffffffff)
9337 {
9338 length = bfd_get_64 (abfd, buf + 4);
9339 *bytes_read = 12;
9340 }
9341 else if (length == 0)
9342 {
9343 /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
9344 length = bfd_get_64 (abfd, buf);
9345 *bytes_read = 8;
9346 }
9347 else
9348 {
9349 *bytes_read = 4;
9350 }
9351
9352 return length;
9353 }
9354
9355 /* Cover function for read_initial_length.
9356 Returns the length of the object at BUF, and stores the size of the
9357 initial length in *BYTES_READ and stores the size that offsets will be in
9358 *OFFSET_SIZE.
9359 If the initial length size is not equivalent to that specified in
9360 CU_HEADER then issue a complaint.
9361 This is useful when reading non-comp-unit headers. */
9362
9363 static LONGEST
9364 read_checked_initial_length_and_offset (bfd *abfd, gdb_byte *buf,
9365 const struct comp_unit_head *cu_header,
9366 unsigned int *bytes_read,
9367 unsigned int *offset_size)
9368 {
9369 LONGEST length = read_initial_length (abfd, buf, bytes_read);
9370
9371 gdb_assert (cu_header->initial_length_size == 4
9372 || cu_header->initial_length_size == 8
9373 || cu_header->initial_length_size == 12);
9374
9375 if (cu_header->initial_length_size != *bytes_read)
9376 complaint (&symfile_complaints,
9377 _("intermixed 32-bit and 64-bit DWARF sections"));
9378
9379 *offset_size = (*bytes_read == 4) ? 4 : 8;
9380 return length;
9381 }
9382
9383 /* Read an offset from the data stream. The size of the offset is
9384 given by cu_header->offset_size. */
9385
9386 static LONGEST
9387 read_offset (bfd *abfd, gdb_byte *buf, const struct comp_unit_head *cu_header,
9388 unsigned int *bytes_read)
9389 {
9390 LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
9391
9392 *bytes_read = cu_header->offset_size;
9393 return offset;
9394 }
9395
9396 /* Read an offset from the data stream. */
9397
9398 static LONGEST
9399 read_offset_1 (bfd *abfd, gdb_byte *buf, unsigned int offset_size)
9400 {
9401 LONGEST retval = 0;
9402
9403 switch (offset_size)
9404 {
9405 case 4:
9406 retval = bfd_get_32 (abfd, buf);
9407 break;
9408 case 8:
9409 retval = bfd_get_64 (abfd, buf);
9410 break;
9411 default:
9412 internal_error (__FILE__, __LINE__,
9413 _("read_offset_1: bad switch [in module %s]"),
9414 bfd_get_filename (abfd));
9415 }
9416
9417 return retval;
9418 }
9419
9420 static gdb_byte *
9421 read_n_bytes (bfd *abfd, gdb_byte *buf, unsigned int size)
9422 {
9423 /* If the size of a host char is 8 bits, we can return a pointer
9424 to the buffer, otherwise we have to copy the data to a buffer
9425 allocated on the temporary obstack. */
9426 gdb_assert (HOST_CHAR_BIT == 8);
9427 return buf;
9428 }
9429
9430 static char *
9431 read_direct_string (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
9432 {
9433 /* If the size of a host char is 8 bits, we can return a pointer
9434 to the string, otherwise we have to copy the string to a buffer
9435 allocated on the temporary obstack. */
9436 gdb_assert (HOST_CHAR_BIT == 8);
9437 if (*buf == '\0')
9438 {
9439 *bytes_read_ptr = 1;
9440 return NULL;
9441 }
9442 *bytes_read_ptr = strlen ((char *) buf) + 1;
9443 return (char *) buf;
9444 }
9445
9446 static char *
9447 read_indirect_string (bfd *abfd, gdb_byte *buf,
9448 const struct comp_unit_head *cu_header,
9449 unsigned int *bytes_read_ptr)
9450 {
9451 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
9452
9453 dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->str);
9454 if (dwarf2_per_objfile->str.buffer == NULL)
9455 {
9456 error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
9457 bfd_get_filename (abfd));
9458 return NULL;
9459 }
9460 if (str_offset >= dwarf2_per_objfile->str.size)
9461 {
9462 error (_("DW_FORM_strp pointing outside of .debug_str section [in module %s]"),
9463 bfd_get_filename (abfd));
9464 return NULL;
9465 }
9466 gdb_assert (HOST_CHAR_BIT == 8);
9467 if (dwarf2_per_objfile->str.buffer[str_offset] == '\0')
9468 return NULL;
9469 return (char *) (dwarf2_per_objfile->str.buffer + str_offset);
9470 }
9471
9472 static unsigned long
9473 read_unsigned_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
9474 {
9475 unsigned long result;
9476 unsigned int num_read;
9477 int i, shift;
9478 unsigned char byte;
9479
9480 result = 0;
9481 shift = 0;
9482 num_read = 0;
9483 i = 0;
9484 while (1)
9485 {
9486 byte = bfd_get_8 (abfd, buf);
9487 buf++;
9488 num_read++;
9489 result |= ((unsigned long)(byte & 127) << shift);
9490 if ((byte & 128) == 0)
9491 {
9492 break;
9493 }
9494 shift += 7;
9495 }
9496 *bytes_read_ptr = num_read;
9497 return result;
9498 }
9499
9500 static long
9501 read_signed_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
9502 {
9503 long result;
9504 int i, shift, num_read;
9505 unsigned char byte;
9506
9507 result = 0;
9508 shift = 0;
9509 num_read = 0;
9510 i = 0;
9511 while (1)
9512 {
9513 byte = bfd_get_8 (abfd, buf);
9514 buf++;
9515 num_read++;
9516 result |= ((long)(byte & 127) << shift);
9517 shift += 7;
9518 if ((byte & 128) == 0)
9519 {
9520 break;
9521 }
9522 }
9523 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
9524 result |= -(((long)1) << shift);
9525 *bytes_read_ptr = num_read;
9526 return result;
9527 }
9528
9529 /* Return a pointer to just past the end of an LEB128 number in BUF. */
9530
9531 static gdb_byte *
9532 skip_leb128 (bfd *abfd, gdb_byte *buf)
9533 {
9534 int byte;
9535
9536 while (1)
9537 {
9538 byte = bfd_get_8 (abfd, buf);
9539 buf++;
9540 if ((byte & 128) == 0)
9541 return buf;
9542 }
9543 }
9544
9545 static void
9546 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
9547 {
9548 switch (lang)
9549 {
9550 case DW_LANG_C89:
9551 case DW_LANG_C99:
9552 case DW_LANG_C:
9553 cu->language = language_c;
9554 break;
9555 case DW_LANG_C_plus_plus:
9556 cu->language = language_cplus;
9557 break;
9558 case DW_LANG_D:
9559 cu->language = language_d;
9560 break;
9561 case DW_LANG_Fortran77:
9562 case DW_LANG_Fortran90:
9563 case DW_LANG_Fortran95:
9564 cu->language = language_fortran;
9565 break;
9566 case DW_LANG_Mips_Assembler:
9567 cu->language = language_asm;
9568 break;
9569 case DW_LANG_Java:
9570 cu->language = language_java;
9571 break;
9572 case DW_LANG_Ada83:
9573 case DW_LANG_Ada95:
9574 cu->language = language_ada;
9575 break;
9576 case DW_LANG_Modula2:
9577 cu->language = language_m2;
9578 break;
9579 case DW_LANG_Pascal83:
9580 cu->language = language_pascal;
9581 break;
9582 case DW_LANG_ObjC:
9583 cu->language = language_objc;
9584 break;
9585 case DW_LANG_Cobol74:
9586 case DW_LANG_Cobol85:
9587 default:
9588 cu->language = language_minimal;
9589 break;
9590 }
9591 cu->language_defn = language_def (cu->language);
9592 }
9593
9594 /* Return the named attribute or NULL if not there. */
9595
9596 static struct attribute *
9597 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
9598 {
9599 unsigned int i;
9600 struct attribute *spec = NULL;
9601
9602 for (i = 0; i < die->num_attrs; ++i)
9603 {
9604 if (die->attrs[i].name == name)
9605 return &die->attrs[i];
9606 if (die->attrs[i].name == DW_AT_specification
9607 || die->attrs[i].name == DW_AT_abstract_origin)
9608 spec = &die->attrs[i];
9609 }
9610
9611 if (spec)
9612 {
9613 die = follow_die_ref (die, spec, &cu);
9614 return dwarf2_attr (die, name, cu);
9615 }
9616
9617 return NULL;
9618 }
9619
9620 /* Return the named attribute or NULL if not there,
9621 but do not follow DW_AT_specification, etc.
9622 This is for use in contexts where we're reading .debug_types dies.
9623 Following DW_AT_specification, DW_AT_abstract_origin will take us
9624 back up the chain, and we want to go down. */
9625
9626 static struct attribute *
9627 dwarf2_attr_no_follow (struct die_info *die, unsigned int name,
9628 struct dwarf2_cu *cu)
9629 {
9630 unsigned int i;
9631
9632 for (i = 0; i < die->num_attrs; ++i)
9633 if (die->attrs[i].name == name)
9634 return &die->attrs[i];
9635
9636 return NULL;
9637 }
9638
9639 /* Return non-zero iff the attribute NAME is defined for the given DIE,
9640 and holds a non-zero value. This function should only be used for
9641 DW_FORM_flag or DW_FORM_flag_present attributes. */
9642
9643 static int
9644 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
9645 {
9646 struct attribute *attr = dwarf2_attr (die, name, cu);
9647
9648 return (attr && DW_UNSND (attr));
9649 }
9650
9651 static int
9652 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
9653 {
9654 /* A DIE is a declaration if it has a DW_AT_declaration attribute
9655 which value is non-zero. However, we have to be careful with
9656 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
9657 (via dwarf2_flag_true_p) follows this attribute. So we may
9658 end up accidently finding a declaration attribute that belongs
9659 to a different DIE referenced by the specification attribute,
9660 even though the given DIE does not have a declaration attribute. */
9661 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
9662 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
9663 }
9664
9665 /* Return the die giving the specification for DIE, if there is
9666 one. *SPEC_CU is the CU containing DIE on input, and the CU
9667 containing the return value on output. If there is no
9668 specification, but there is an abstract origin, that is
9669 returned. */
9670
9671 static struct die_info *
9672 die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
9673 {
9674 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
9675 *spec_cu);
9676
9677 if (spec_attr == NULL)
9678 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
9679
9680 if (spec_attr == NULL)
9681 return NULL;
9682 else
9683 return follow_die_ref (die, spec_attr, spec_cu);
9684 }
9685
9686 /* Free the line_header structure *LH, and any arrays and strings it
9687 refers to. */
9688 static void
9689 free_line_header (struct line_header *lh)
9690 {
9691 if (lh->standard_opcode_lengths)
9692 xfree (lh->standard_opcode_lengths);
9693
9694 /* Remember that all the lh->file_names[i].name pointers are
9695 pointers into debug_line_buffer, and don't need to be freed. */
9696 if (lh->file_names)
9697 xfree (lh->file_names);
9698
9699 /* Similarly for the include directory names. */
9700 if (lh->include_dirs)
9701 xfree (lh->include_dirs);
9702
9703 xfree (lh);
9704 }
9705
9706
9707 /* Add an entry to LH's include directory table. */
9708 static void
9709 add_include_dir (struct line_header *lh, char *include_dir)
9710 {
9711 /* Grow the array if necessary. */
9712 if (lh->include_dirs_size == 0)
9713 {
9714 lh->include_dirs_size = 1; /* for testing */
9715 lh->include_dirs = xmalloc (lh->include_dirs_size
9716 * sizeof (*lh->include_dirs));
9717 }
9718 else if (lh->num_include_dirs >= lh->include_dirs_size)
9719 {
9720 lh->include_dirs_size *= 2;
9721 lh->include_dirs = xrealloc (lh->include_dirs,
9722 (lh->include_dirs_size
9723 * sizeof (*lh->include_dirs)));
9724 }
9725
9726 lh->include_dirs[lh->num_include_dirs++] = include_dir;
9727 }
9728
9729
9730 /* Add an entry to LH's file name table. */
9731 static void
9732 add_file_name (struct line_header *lh,
9733 char *name,
9734 unsigned int dir_index,
9735 unsigned int mod_time,
9736 unsigned int length)
9737 {
9738 struct file_entry *fe;
9739
9740 /* Grow the array if necessary. */
9741 if (lh->file_names_size == 0)
9742 {
9743 lh->file_names_size = 1; /* for testing */
9744 lh->file_names = xmalloc (lh->file_names_size
9745 * sizeof (*lh->file_names));
9746 }
9747 else if (lh->num_file_names >= lh->file_names_size)
9748 {
9749 lh->file_names_size *= 2;
9750 lh->file_names = xrealloc (lh->file_names,
9751 (lh->file_names_size
9752 * sizeof (*lh->file_names)));
9753 }
9754
9755 fe = &lh->file_names[lh->num_file_names++];
9756 fe->name = name;
9757 fe->dir_index = dir_index;
9758 fe->mod_time = mod_time;
9759 fe->length = length;
9760 fe->included_p = 0;
9761 fe->symtab = NULL;
9762 }
9763
9764
9765 /* Read the statement program header starting at OFFSET in
9766 .debug_line, according to the endianness of ABFD. Return a pointer
9767 to a struct line_header, allocated using xmalloc.
9768
9769 NOTE: the strings in the include directory and file name tables of
9770 the returned object point into debug_line_buffer, and must not be
9771 freed. */
9772 static struct line_header *
9773 dwarf_decode_line_header (unsigned int offset, bfd *abfd,
9774 struct dwarf2_cu *cu)
9775 {
9776 struct cleanup *back_to;
9777 struct line_header *lh;
9778 gdb_byte *line_ptr;
9779 unsigned int bytes_read, offset_size;
9780 int i;
9781 char *cur_dir, *cur_file;
9782
9783 dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->line);
9784 if (dwarf2_per_objfile->line.buffer == NULL)
9785 {
9786 complaint (&symfile_complaints, _("missing .debug_line section"));
9787 return 0;
9788 }
9789
9790 /* Make sure that at least there's room for the total_length field.
9791 That could be 12 bytes long, but we're just going to fudge that. */
9792 if (offset + 4 >= dwarf2_per_objfile->line.size)
9793 {
9794 dwarf2_statement_list_fits_in_line_number_section_complaint ();
9795 return 0;
9796 }
9797
9798 lh = xmalloc (sizeof (*lh));
9799 memset (lh, 0, sizeof (*lh));
9800 back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
9801 (void *) lh);
9802
9803 line_ptr = dwarf2_per_objfile->line.buffer + offset;
9804
9805 /* Read in the header. */
9806 lh->total_length =
9807 read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
9808 &bytes_read, &offset_size);
9809 line_ptr += bytes_read;
9810 if (line_ptr + lh->total_length > (dwarf2_per_objfile->line.buffer
9811 + dwarf2_per_objfile->line.size))
9812 {
9813 dwarf2_statement_list_fits_in_line_number_section_complaint ();
9814 return 0;
9815 }
9816 lh->statement_program_end = line_ptr + lh->total_length;
9817 lh->version = read_2_bytes (abfd, line_ptr);
9818 line_ptr += 2;
9819 lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
9820 line_ptr += offset_size;
9821 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
9822 line_ptr += 1;
9823 if (lh->version >= 4)
9824 {
9825 lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
9826 line_ptr += 1;
9827 }
9828 else
9829 lh->maximum_ops_per_instruction = 1;
9830
9831 if (lh->maximum_ops_per_instruction == 0)
9832 {
9833 lh->maximum_ops_per_instruction = 1;
9834 complaint (&symfile_complaints,
9835 _("invalid maximum_ops_per_instruction in `.debug_line' section"));
9836 }
9837
9838 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
9839 line_ptr += 1;
9840 lh->line_base = read_1_signed_byte (abfd, line_ptr);
9841 line_ptr += 1;
9842 lh->line_range = read_1_byte (abfd, line_ptr);
9843 line_ptr += 1;
9844 lh->opcode_base = read_1_byte (abfd, line_ptr);
9845 line_ptr += 1;
9846 lh->standard_opcode_lengths
9847 = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
9848
9849 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
9850 for (i = 1; i < lh->opcode_base; ++i)
9851 {
9852 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
9853 line_ptr += 1;
9854 }
9855
9856 /* Read directory table. */
9857 while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
9858 {
9859 line_ptr += bytes_read;
9860 add_include_dir (lh, cur_dir);
9861 }
9862 line_ptr += bytes_read;
9863
9864 /* Read file name table. */
9865 while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
9866 {
9867 unsigned int dir_index, mod_time, length;
9868
9869 line_ptr += bytes_read;
9870 dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
9871 line_ptr += bytes_read;
9872 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
9873 line_ptr += bytes_read;
9874 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
9875 line_ptr += bytes_read;
9876
9877 add_file_name (lh, cur_file, dir_index, mod_time, length);
9878 }
9879 line_ptr += bytes_read;
9880 lh->statement_program_start = line_ptr;
9881
9882 if (line_ptr > (dwarf2_per_objfile->line.buffer
9883 + dwarf2_per_objfile->line.size))
9884 complaint (&symfile_complaints,
9885 _("line number info header doesn't fit in `.debug_line' section"));
9886
9887 discard_cleanups (back_to);
9888 return lh;
9889 }
9890
9891 /* This function exists to work around a bug in certain compilers
9892 (particularly GCC 2.95), in which the first line number marker of a
9893 function does not show up until after the prologue, right before
9894 the second line number marker. This function shifts ADDRESS down
9895 to the beginning of the function if necessary, and is called on
9896 addresses passed to record_line. */
9897
9898 static CORE_ADDR
9899 check_cu_functions (CORE_ADDR address, struct dwarf2_cu *cu)
9900 {
9901 struct function_range *fn;
9902
9903 /* Find the function_range containing address. */
9904 if (!cu->first_fn)
9905 return address;
9906
9907 if (!cu->cached_fn)
9908 cu->cached_fn = cu->first_fn;
9909
9910 fn = cu->cached_fn;
9911 while (fn)
9912 if (fn->lowpc <= address && fn->highpc > address)
9913 goto found;
9914 else
9915 fn = fn->next;
9916
9917 fn = cu->first_fn;
9918 while (fn && fn != cu->cached_fn)
9919 if (fn->lowpc <= address && fn->highpc > address)
9920 goto found;
9921 else
9922 fn = fn->next;
9923
9924 return address;
9925
9926 found:
9927 if (fn->seen_line)
9928 return address;
9929 if (address != fn->lowpc)
9930 complaint (&symfile_complaints,
9931 _("misplaced first line number at 0x%lx for '%s'"),
9932 (unsigned long) address, fn->name);
9933 fn->seen_line = 1;
9934 return fn->lowpc;
9935 }
9936
9937 /* Subroutine of dwarf_decode_lines to simplify it.
9938 Return the file name of the psymtab for included file FILE_INDEX
9939 in line header LH of PST.
9940 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
9941 If space for the result is malloc'd, it will be freed by a cleanup.
9942 Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename. */
9943
9944 static char *
9945 psymtab_include_file_name (const struct line_header *lh, int file_index,
9946 const struct partial_symtab *pst,
9947 const char *comp_dir)
9948 {
9949 const struct file_entry fe = lh->file_names [file_index];
9950 char *include_name = fe.name;
9951 char *include_name_to_compare = include_name;
9952 char *dir_name = NULL;
9953 char *pst_filename;
9954 int file_is_pst;
9955
9956 if (fe.dir_index)
9957 dir_name = lh->include_dirs[fe.dir_index - 1];
9958
9959 if (!IS_ABSOLUTE_PATH (include_name)
9960 && (dir_name != NULL || comp_dir != NULL))
9961 {
9962 /* Avoid creating a duplicate psymtab for PST.
9963 We do this by comparing INCLUDE_NAME and PST_FILENAME.
9964 Before we do the comparison, however, we need to account
9965 for DIR_NAME and COMP_DIR.
9966 First prepend dir_name (if non-NULL). If we still don't
9967 have an absolute path prepend comp_dir (if non-NULL).
9968 However, the directory we record in the include-file's
9969 psymtab does not contain COMP_DIR (to match the
9970 corresponding symtab(s)).
9971
9972 Example:
9973
9974 bash$ cd /tmp
9975 bash$ gcc -g ./hello.c
9976 include_name = "hello.c"
9977 dir_name = "."
9978 DW_AT_comp_dir = comp_dir = "/tmp"
9979 DW_AT_name = "./hello.c" */
9980
9981 if (dir_name != NULL)
9982 {
9983 include_name = concat (dir_name, SLASH_STRING,
9984 include_name, (char *)NULL);
9985 include_name_to_compare = include_name;
9986 make_cleanup (xfree, include_name);
9987 }
9988 if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
9989 {
9990 include_name_to_compare = concat (comp_dir, SLASH_STRING,
9991 include_name, (char *)NULL);
9992 }
9993 }
9994
9995 pst_filename = pst->filename;
9996 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
9997 {
9998 pst_filename = concat (pst->dirname, SLASH_STRING,
9999 pst_filename, (char *)NULL);
10000 }
10001
10002 file_is_pst = strcmp (include_name_to_compare, pst_filename) == 0;
10003
10004 if (include_name_to_compare != include_name)
10005 xfree (include_name_to_compare);
10006 if (pst_filename != pst->filename)
10007 xfree (pst_filename);
10008
10009 if (file_is_pst)
10010 return NULL;
10011 return include_name;
10012 }
10013
10014 /* Decode the Line Number Program (LNP) for the given line_header
10015 structure and CU. The actual information extracted and the type
10016 of structures created from the LNP depends on the value of PST.
10017
10018 1. If PST is NULL, then this procedure uses the data from the program
10019 to create all necessary symbol tables, and their linetables.
10020
10021 2. If PST is not NULL, this procedure reads the program to determine
10022 the list of files included by the unit represented by PST, and
10023 builds all the associated partial symbol tables.
10024
10025 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
10026 It is used for relative paths in the line table.
10027 NOTE: When processing partial symtabs (pst != NULL),
10028 comp_dir == pst->dirname.
10029
10030 NOTE: It is important that psymtabs have the same file name (via strcmp)
10031 as the corresponding symtab. Since COMP_DIR is not used in the name of the
10032 symtab we don't use it in the name of the psymtabs we create.
10033 E.g. expand_line_sal requires this when finding psymtabs to expand.
10034 A good testcase for this is mb-inline.exp. */
10035
10036 static void
10037 dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd,
10038 struct dwarf2_cu *cu, struct partial_symtab *pst)
10039 {
10040 gdb_byte *line_ptr, *extended_end;
10041 gdb_byte *line_end;
10042 unsigned int bytes_read, extended_len;
10043 unsigned char op_code, extended_op, adj_opcode;
10044 CORE_ADDR baseaddr;
10045 struct objfile *objfile = cu->objfile;
10046 struct gdbarch *gdbarch = get_objfile_arch (objfile);
10047 const int decode_for_pst_p = (pst != NULL);
10048 struct subfile *last_subfile = NULL, *first_subfile = current_subfile;
10049
10050 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
10051
10052 line_ptr = lh->statement_program_start;
10053 line_end = lh->statement_program_end;
10054
10055 /* Read the statement sequences until there's nothing left. */
10056 while (line_ptr < line_end)
10057 {
10058 /* state machine registers */
10059 CORE_ADDR address = 0;
10060 unsigned int file = 1;
10061 unsigned int line = 1;
10062 unsigned int column = 0;
10063 int is_stmt = lh->default_is_stmt;
10064 int basic_block = 0;
10065 int end_sequence = 0;
10066 CORE_ADDR addr;
10067 unsigned char op_index = 0;
10068
10069 if (!decode_for_pst_p && lh->num_file_names >= file)
10070 {
10071 /* Start a subfile for the current file of the state machine. */
10072 /* lh->include_dirs and lh->file_names are 0-based, but the
10073 directory and file name numbers in the statement program
10074 are 1-based. */
10075 struct file_entry *fe = &lh->file_names[file - 1];
10076 char *dir = NULL;
10077
10078 if (fe->dir_index)
10079 dir = lh->include_dirs[fe->dir_index - 1];
10080
10081 dwarf2_start_subfile (fe->name, dir, comp_dir);
10082 }
10083
10084 /* Decode the table. */
10085 while (!end_sequence)
10086 {
10087 op_code = read_1_byte (abfd, line_ptr);
10088 line_ptr += 1;
10089 if (line_ptr > line_end)
10090 {
10091 dwarf2_debug_line_missing_end_sequence_complaint ();
10092 break;
10093 }
10094
10095 if (op_code >= lh->opcode_base)
10096 {
10097 /* Special operand. */
10098 adj_opcode = op_code - lh->opcode_base;
10099 address += (((op_index + (adj_opcode / lh->line_range))
10100 / lh->maximum_ops_per_instruction)
10101 * lh->minimum_instruction_length);
10102 op_index = ((op_index + (adj_opcode / lh->line_range))
10103 % lh->maximum_ops_per_instruction);
10104 line += lh->line_base + (adj_opcode % lh->line_range);
10105 if (lh->num_file_names < file || file == 0)
10106 dwarf2_debug_line_missing_file_complaint ();
10107 /* For now we ignore lines not starting on an
10108 instruction boundary. */
10109 else if (op_index == 0)
10110 {
10111 lh->file_names[file - 1].included_p = 1;
10112 if (!decode_for_pst_p && is_stmt)
10113 {
10114 if (last_subfile != current_subfile)
10115 {
10116 addr = gdbarch_addr_bits_remove (gdbarch, address);
10117 if (last_subfile)
10118 record_line (last_subfile, 0, addr);
10119 last_subfile = current_subfile;
10120 }
10121 /* Append row to matrix using current values. */
10122 addr = check_cu_functions (address, cu);
10123 addr = gdbarch_addr_bits_remove (gdbarch, addr);
10124 record_line (current_subfile, line, addr);
10125 }
10126 }
10127 basic_block = 0;
10128 }
10129 else switch (op_code)
10130 {
10131 case DW_LNS_extended_op:
10132 extended_len = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10133 line_ptr += bytes_read;
10134 extended_end = line_ptr + extended_len;
10135 extended_op = read_1_byte (abfd, line_ptr);
10136 line_ptr += 1;
10137 switch (extended_op)
10138 {
10139 case DW_LNE_end_sequence:
10140 end_sequence = 1;
10141 break;
10142 case DW_LNE_set_address:
10143 address = read_address (abfd, line_ptr, cu, &bytes_read);
10144 op_index = 0;
10145 line_ptr += bytes_read;
10146 address += baseaddr;
10147 break;
10148 case DW_LNE_define_file:
10149 {
10150 char *cur_file;
10151 unsigned int dir_index, mod_time, length;
10152
10153 cur_file = read_direct_string (abfd, line_ptr, &bytes_read);
10154 line_ptr += bytes_read;
10155 dir_index =
10156 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10157 line_ptr += bytes_read;
10158 mod_time =
10159 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10160 line_ptr += bytes_read;
10161 length =
10162 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10163 line_ptr += bytes_read;
10164 add_file_name (lh, cur_file, dir_index, mod_time, length);
10165 }
10166 break;
10167 case DW_LNE_set_discriminator:
10168 /* The discriminator is not interesting to the debugger;
10169 just ignore it. */
10170 line_ptr = extended_end;
10171 break;
10172 default:
10173 complaint (&symfile_complaints,
10174 _("mangled .debug_line section"));
10175 return;
10176 }
10177 /* Make sure that we parsed the extended op correctly. If e.g.
10178 we expected a different address size than the producer used,
10179 we may have read the wrong number of bytes. */
10180 if (line_ptr != extended_end)
10181 {
10182 complaint (&symfile_complaints,
10183 _("mangled .debug_line section"));
10184 return;
10185 }
10186 break;
10187 case DW_LNS_copy:
10188 if (lh->num_file_names < file || file == 0)
10189 dwarf2_debug_line_missing_file_complaint ();
10190 else
10191 {
10192 lh->file_names[file - 1].included_p = 1;
10193 if (!decode_for_pst_p && is_stmt)
10194 {
10195 if (last_subfile != current_subfile)
10196 {
10197 addr = gdbarch_addr_bits_remove (gdbarch, address);
10198 if (last_subfile)
10199 record_line (last_subfile, 0, addr);
10200 last_subfile = current_subfile;
10201 }
10202 addr = check_cu_functions (address, cu);
10203 addr = gdbarch_addr_bits_remove (gdbarch, addr);
10204 record_line (current_subfile, line, addr);
10205 }
10206 }
10207 basic_block = 0;
10208 break;
10209 case DW_LNS_advance_pc:
10210 {
10211 CORE_ADDR adjust
10212 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10213
10214 address += (((op_index + adjust)
10215 / lh->maximum_ops_per_instruction)
10216 * lh->minimum_instruction_length);
10217 op_index = ((op_index + adjust)
10218 % lh->maximum_ops_per_instruction);
10219 line_ptr += bytes_read;
10220 }
10221 break;
10222 case DW_LNS_advance_line:
10223 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
10224 line_ptr += bytes_read;
10225 break;
10226 case DW_LNS_set_file:
10227 {
10228 /* The arrays lh->include_dirs and lh->file_names are
10229 0-based, but the directory and file name numbers in
10230 the statement program are 1-based. */
10231 struct file_entry *fe;
10232 char *dir = NULL;
10233
10234 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10235 line_ptr += bytes_read;
10236 if (lh->num_file_names < file || file == 0)
10237 dwarf2_debug_line_missing_file_complaint ();
10238 else
10239 {
10240 fe = &lh->file_names[file - 1];
10241 if (fe->dir_index)
10242 dir = lh->include_dirs[fe->dir_index - 1];
10243 if (!decode_for_pst_p)
10244 {
10245 last_subfile = current_subfile;
10246 dwarf2_start_subfile (fe->name, dir, comp_dir);
10247 }
10248 }
10249 }
10250 break;
10251 case DW_LNS_set_column:
10252 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10253 line_ptr += bytes_read;
10254 break;
10255 case DW_LNS_negate_stmt:
10256 is_stmt = (!is_stmt);
10257 break;
10258 case DW_LNS_set_basic_block:
10259 basic_block = 1;
10260 break;
10261 /* Add to the address register of the state machine the
10262 address increment value corresponding to special opcode
10263 255. I.e., this value is scaled by the minimum
10264 instruction length since special opcode 255 would have
10265 scaled the the increment. */
10266 case DW_LNS_const_add_pc:
10267 {
10268 CORE_ADDR adjust = (255 - lh->opcode_base) / lh->line_range;
10269
10270 address += (((op_index + adjust)
10271 / lh->maximum_ops_per_instruction)
10272 * lh->minimum_instruction_length);
10273 op_index = ((op_index + adjust)
10274 % lh->maximum_ops_per_instruction);
10275 }
10276 break;
10277 case DW_LNS_fixed_advance_pc:
10278 address += read_2_bytes (abfd, line_ptr);
10279 op_index = 0;
10280 line_ptr += 2;
10281 break;
10282 default:
10283 {
10284 /* Unknown standard opcode, ignore it. */
10285 int i;
10286
10287 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
10288 {
10289 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
10290 line_ptr += bytes_read;
10291 }
10292 }
10293 }
10294 }
10295 if (lh->num_file_names < file || file == 0)
10296 dwarf2_debug_line_missing_file_complaint ();
10297 else
10298 {
10299 lh->file_names[file - 1].included_p = 1;
10300 if (!decode_for_pst_p)
10301 {
10302 addr = gdbarch_addr_bits_remove (gdbarch, address);
10303 record_line (current_subfile, 0, addr);
10304 }
10305 }
10306 }
10307
10308 if (decode_for_pst_p)
10309 {
10310 int file_index;
10311
10312 /* Now that we're done scanning the Line Header Program, we can
10313 create the psymtab of each included file. */
10314 for (file_index = 0; file_index < lh->num_file_names; file_index++)
10315 if (lh->file_names[file_index].included_p == 1)
10316 {
10317 char *include_name =
10318 psymtab_include_file_name (lh, file_index, pst, comp_dir);
10319 if (include_name != NULL)
10320 dwarf2_create_include_psymtab (include_name, pst, objfile);
10321 }
10322 }
10323 else
10324 {
10325 /* Make sure a symtab is created for every file, even files
10326 which contain only variables (i.e. no code with associated
10327 line numbers). */
10328
10329 int i;
10330 struct file_entry *fe;
10331
10332 for (i = 0; i < lh->num_file_names; i++)
10333 {
10334 char *dir = NULL;
10335
10336 fe = &lh->file_names[i];
10337 if (fe->dir_index)
10338 dir = lh->include_dirs[fe->dir_index - 1];
10339 dwarf2_start_subfile (fe->name, dir, comp_dir);
10340
10341 /* Skip the main file; we don't need it, and it must be
10342 allocated last, so that it will show up before the
10343 non-primary symtabs in the objfile's symtab list. */
10344 if (current_subfile == first_subfile)
10345 continue;
10346
10347 if (current_subfile->symtab == NULL)
10348 current_subfile->symtab = allocate_symtab (current_subfile->name,
10349 cu->objfile);
10350 fe->symtab = current_subfile->symtab;
10351 }
10352 }
10353 }
10354
10355 /* Start a subfile for DWARF. FILENAME is the name of the file and
10356 DIRNAME the name of the source directory which contains FILENAME
10357 or NULL if not known. COMP_DIR is the compilation directory for the
10358 linetable's compilation unit or NULL if not known.
10359 This routine tries to keep line numbers from identical absolute and
10360 relative file names in a common subfile.
10361
10362 Using the `list' example from the GDB testsuite, which resides in
10363 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
10364 of /srcdir/list0.c yields the following debugging information for list0.c:
10365
10366 DW_AT_name: /srcdir/list0.c
10367 DW_AT_comp_dir: /compdir
10368 files.files[0].name: list0.h
10369 files.files[0].dir: /srcdir
10370 files.files[1].name: list0.c
10371 files.files[1].dir: /srcdir
10372
10373 The line number information for list0.c has to end up in a single
10374 subfile, so that `break /srcdir/list0.c:1' works as expected.
10375 start_subfile will ensure that this happens provided that we pass the
10376 concatenation of files.files[1].dir and files.files[1].name as the
10377 subfile's name. */
10378
10379 static void
10380 dwarf2_start_subfile (char *filename, char *dirname, char *comp_dir)
10381 {
10382 char *fullname;
10383
10384 /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
10385 `start_symtab' will always pass the contents of DW_AT_comp_dir as
10386 second argument to start_subfile. To be consistent, we do the
10387 same here. In order not to lose the line information directory,
10388 we concatenate it to the filename when it makes sense.
10389 Note that the Dwarf3 standard says (speaking of filenames in line
10390 information): ``The directory index is ignored for file names
10391 that represent full path names''. Thus ignoring dirname in the
10392 `else' branch below isn't an issue. */
10393
10394 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
10395 fullname = concat (dirname, SLASH_STRING, filename, (char *)NULL);
10396 else
10397 fullname = filename;
10398
10399 start_subfile (fullname, comp_dir);
10400
10401 if (fullname != filename)
10402 xfree (fullname);
10403 }
10404
10405 static void
10406 var_decode_location (struct attribute *attr, struct symbol *sym,
10407 struct dwarf2_cu *cu)
10408 {
10409 struct objfile *objfile = cu->objfile;
10410 struct comp_unit_head *cu_header = &cu->header;
10411
10412 /* NOTE drow/2003-01-30: There used to be a comment and some special
10413 code here to turn a symbol with DW_AT_external and a
10414 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
10415 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
10416 with some versions of binutils) where shared libraries could have
10417 relocations against symbols in their debug information - the
10418 minimal symbol would have the right address, but the debug info
10419 would not. It's no longer necessary, because we will explicitly
10420 apply relocations when we read in the debug information now. */
10421
10422 /* A DW_AT_location attribute with no contents indicates that a
10423 variable has been optimized away. */
10424 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
10425 {
10426 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
10427 return;
10428 }
10429
10430 /* Handle one degenerate form of location expression specially, to
10431 preserve GDB's previous behavior when section offsets are
10432 specified. If this is just a DW_OP_addr then mark this symbol
10433 as LOC_STATIC. */
10434
10435 if (attr_form_is_block (attr)
10436 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size
10437 && DW_BLOCK (attr)->data[0] == DW_OP_addr)
10438 {
10439 unsigned int dummy;
10440
10441 SYMBOL_VALUE_ADDRESS (sym) =
10442 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
10443 SYMBOL_CLASS (sym) = LOC_STATIC;
10444 fixup_symbol_section (sym, objfile);
10445 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
10446 SYMBOL_SECTION (sym));
10447 return;
10448 }
10449
10450 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
10451 expression evaluator, and use LOC_COMPUTED only when necessary
10452 (i.e. when the value of a register or memory location is
10453 referenced, or a thread-local block, etc.). Then again, it might
10454 not be worthwhile. I'm assuming that it isn't unless performance
10455 or memory numbers show me otherwise. */
10456
10457 dwarf2_symbol_mark_computed (attr, sym, cu);
10458 SYMBOL_CLASS (sym) = LOC_COMPUTED;
10459 }
10460
10461 /* Given a pointer to a DWARF information entry, figure out if we need
10462 to make a symbol table entry for it, and if so, create a new entry
10463 and return a pointer to it.
10464 If TYPE is NULL, determine symbol type from the die, otherwise
10465 used the passed type.
10466 If SPACE is not NULL, use it to hold the new symbol. If it is
10467 NULL, allocate a new symbol on the objfile's obstack. */
10468
10469 static struct symbol *
10470 new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
10471 struct symbol *space)
10472 {
10473 struct objfile *objfile = cu->objfile;
10474 struct symbol *sym = NULL;
10475 char *name;
10476 struct attribute *attr = NULL;
10477 struct attribute *attr2 = NULL;
10478 CORE_ADDR baseaddr;
10479 struct pending **list_to_add = NULL;
10480
10481 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
10482
10483 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
10484
10485 name = dwarf2_name (die, cu);
10486 if (name)
10487 {
10488 const char *linkagename;
10489 int suppress_add = 0;
10490
10491 if (space)
10492 sym = space;
10493 else
10494 sym = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct symbol);
10495 OBJSTAT (objfile, n_syms++);
10496
10497 /* Cache this symbol's name and the name's demangled form (if any). */
10498 SYMBOL_SET_LANGUAGE (sym, cu->language);
10499 linkagename = dwarf2_physname (name, die, cu);
10500 SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
10501
10502 /* Fortran does not have mangling standard and the mangling does differ
10503 between gfortran, iFort etc. */
10504 if (cu->language == language_fortran
10505 && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
10506 symbol_set_demangled_name (&(sym->ginfo),
10507 (char *) dwarf2_full_name (name, die, cu),
10508 NULL);
10509
10510 /* Default assumptions.
10511 Use the passed type or decode it from the die. */
10512 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
10513 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
10514 if (type != NULL)
10515 SYMBOL_TYPE (sym) = type;
10516 else
10517 SYMBOL_TYPE (sym) = die_type (die, cu);
10518 attr = dwarf2_attr (die,
10519 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
10520 cu);
10521 if (attr)
10522 {
10523 SYMBOL_LINE (sym) = DW_UNSND (attr);
10524 }
10525
10526 attr = dwarf2_attr (die,
10527 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
10528 cu);
10529 if (attr)
10530 {
10531 int file_index = DW_UNSND (attr);
10532
10533 if (cu->line_header == NULL
10534 || file_index > cu->line_header->num_file_names)
10535 complaint (&symfile_complaints,
10536 _("file index out of range"));
10537 else if (file_index > 0)
10538 {
10539 struct file_entry *fe;
10540
10541 fe = &cu->line_header->file_names[file_index - 1];
10542 SYMBOL_SYMTAB (sym) = fe->symtab;
10543 }
10544 }
10545
10546 switch (die->tag)
10547 {
10548 case DW_TAG_label:
10549 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
10550 if (attr)
10551 {
10552 SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
10553 }
10554 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
10555 SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
10556 SYMBOL_CLASS (sym) = LOC_LABEL;
10557 add_symbol_to_list (sym, cu->list_in_scope);
10558 break;
10559 case DW_TAG_subprogram:
10560 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
10561 finish_block. */
10562 SYMBOL_CLASS (sym) = LOC_BLOCK;
10563 attr2 = dwarf2_attr (die, DW_AT_external, cu);
10564 if ((attr2 && (DW_UNSND (attr2) != 0))
10565 || cu->language == language_ada)
10566 {
10567 /* Subprograms marked external are stored as a global symbol.
10568 Ada subprograms, whether marked external or not, are always
10569 stored as a global symbol, because we want to be able to
10570 access them globally. For instance, we want to be able
10571 to break on a nested subprogram without having to
10572 specify the context. */
10573 list_to_add = &global_symbols;
10574 }
10575 else
10576 {
10577 list_to_add = cu->list_in_scope;
10578 }
10579 break;
10580 case DW_TAG_inlined_subroutine:
10581 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
10582 finish_block. */
10583 SYMBOL_CLASS (sym) = LOC_BLOCK;
10584 SYMBOL_INLINED (sym) = 1;
10585 /* Do not add the symbol to any lists. It will be found via
10586 BLOCK_FUNCTION from the blockvector. */
10587 break;
10588 case DW_TAG_template_value_param:
10589 suppress_add = 1;
10590 /* Fall through. */
10591 case DW_TAG_variable:
10592 case DW_TAG_member:
10593 /* Compilation with minimal debug info may result in variables
10594 with missing type entries. Change the misleading `void' type
10595 to something sensible. */
10596 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
10597 SYMBOL_TYPE (sym)
10598 = objfile_type (objfile)->nodebug_data_symbol;
10599
10600 attr = dwarf2_attr (die, DW_AT_const_value, cu);
10601 /* In the case of DW_TAG_member, we should only be called for
10602 static const members. */
10603 if (die->tag == DW_TAG_member)
10604 {
10605 /* dwarf2_add_field uses die_is_declaration,
10606 so we do the same. */
10607 gdb_assert (die_is_declaration (die, cu));
10608 gdb_assert (attr);
10609 }
10610 if (attr)
10611 {
10612 dwarf2_const_value (attr, sym, cu);
10613 attr2 = dwarf2_attr (die, DW_AT_external, cu);
10614 if (!suppress_add)
10615 {
10616 if (attr2 && (DW_UNSND (attr2) != 0))
10617 list_to_add = &global_symbols;
10618 else
10619 list_to_add = cu->list_in_scope;
10620 }
10621 break;
10622 }
10623 attr = dwarf2_attr (die, DW_AT_location, cu);
10624 if (attr)
10625 {
10626 var_decode_location (attr, sym, cu);
10627 attr2 = dwarf2_attr (die, DW_AT_external, cu);
10628 if (SYMBOL_CLASS (sym) == LOC_STATIC
10629 && SYMBOL_VALUE_ADDRESS (sym) == 0
10630 && !dwarf2_per_objfile->has_section_at_zero)
10631 {
10632 /* When a static variable is eliminated by the linker,
10633 the corresponding debug information is not stripped
10634 out, but the variable address is set to null;
10635 do not add such variables into symbol table. */
10636 }
10637 else if (attr2 && (DW_UNSND (attr2) != 0))
10638 {
10639 /* Workaround gfortran PR debug/40040 - it uses
10640 DW_AT_location for variables in -fPIC libraries which may
10641 get overriden by other libraries/executable and get
10642 a different address. Resolve it by the minimal symbol
10643 which may come from inferior's executable using copy
10644 relocation. Make this workaround only for gfortran as for
10645 other compilers GDB cannot guess the minimal symbol
10646 Fortran mangling kind. */
10647 if (cu->language == language_fortran && die->parent
10648 && die->parent->tag == DW_TAG_module
10649 && cu->producer
10650 && strncmp (cu->producer, "GNU Fortran ", 12) == 0)
10651 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
10652
10653 /* A variable with DW_AT_external is never static,
10654 but it may be block-scoped. */
10655 list_to_add = (cu->list_in_scope == &file_symbols
10656 ? &global_symbols : cu->list_in_scope);
10657 }
10658 else
10659 list_to_add = cu->list_in_scope;
10660 }
10661 else
10662 {
10663 /* We do not know the address of this symbol.
10664 If it is an external symbol and we have type information
10665 for it, enter the symbol as a LOC_UNRESOLVED symbol.
10666 The address of the variable will then be determined from
10667 the minimal symbol table whenever the variable is
10668 referenced. */
10669 attr2 = dwarf2_attr (die, DW_AT_external, cu);
10670 if (attr2 && (DW_UNSND (attr2) != 0)
10671 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
10672 {
10673 /* A variable with DW_AT_external is never static, but it
10674 may be block-scoped. */
10675 list_to_add = (cu->list_in_scope == &file_symbols
10676 ? &global_symbols : cu->list_in_scope);
10677
10678 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
10679 }
10680 else if (!die_is_declaration (die, cu))
10681 {
10682 /* Use the default LOC_OPTIMIZED_OUT class. */
10683 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
10684 if (!suppress_add)
10685 list_to_add = cu->list_in_scope;
10686 }
10687 }
10688 break;
10689 case DW_TAG_formal_parameter:
10690 /* If we are inside a function, mark this as an argument. If
10691 not, we might be looking at an argument to an inlined function
10692 when we do not have enough information to show inlined frames;
10693 pretend it's a local variable in that case so that the user can
10694 still see it. */
10695 if (context_stack_depth > 0
10696 && context_stack[context_stack_depth - 1].name != NULL)
10697 SYMBOL_IS_ARGUMENT (sym) = 1;
10698 attr = dwarf2_attr (die, DW_AT_location, cu);
10699 if (attr)
10700 {
10701 var_decode_location (attr, sym, cu);
10702 }
10703 attr = dwarf2_attr (die, DW_AT_const_value, cu);
10704 if (attr)
10705 {
10706 dwarf2_const_value (attr, sym, cu);
10707 }
10708 attr = dwarf2_attr (die, DW_AT_variable_parameter, cu);
10709 if (attr && DW_UNSND (attr))
10710 {
10711 struct type *ref_type;
10712
10713 ref_type = lookup_reference_type (SYMBOL_TYPE (sym));
10714 SYMBOL_TYPE (sym) = ref_type;
10715 }
10716
10717 list_to_add = cu->list_in_scope;
10718 break;
10719 case DW_TAG_unspecified_parameters:
10720 /* From varargs functions; gdb doesn't seem to have any
10721 interest in this information, so just ignore it for now.
10722 (FIXME?) */
10723 break;
10724 case DW_TAG_template_type_param:
10725 suppress_add = 1;
10726 /* Fall through. */
10727 case DW_TAG_class_type:
10728 case DW_TAG_interface_type:
10729 case DW_TAG_structure_type:
10730 case DW_TAG_union_type:
10731 case DW_TAG_set_type:
10732 case DW_TAG_enumeration_type:
10733 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
10734 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
10735
10736 {
10737 /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
10738 really ever be static objects: otherwise, if you try
10739 to, say, break of a class's method and you're in a file
10740 which doesn't mention that class, it won't work unless
10741 the check for all static symbols in lookup_symbol_aux
10742 saves you. See the OtherFileClass tests in
10743 gdb.c++/namespace.exp. */
10744
10745 if (!suppress_add)
10746 {
10747 list_to_add = (cu->list_in_scope == &file_symbols
10748 && (cu->language == language_cplus
10749 || cu->language == language_java)
10750 ? &global_symbols : cu->list_in_scope);
10751
10752 /* The semantics of C++ state that "struct foo {
10753 ... }" also defines a typedef for "foo". A Java
10754 class declaration also defines a typedef for the
10755 class. */
10756 if (cu->language == language_cplus
10757 || cu->language == language_java
10758 || cu->language == language_ada)
10759 {
10760 /* The symbol's name is already allocated along
10761 with this objfile, so we don't need to
10762 duplicate it for the type. */
10763 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
10764 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
10765 }
10766 }
10767 }
10768 break;
10769 case DW_TAG_typedef:
10770 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
10771 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
10772 list_to_add = cu->list_in_scope;
10773 break;
10774 case DW_TAG_base_type:
10775 case DW_TAG_subrange_type:
10776 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
10777 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
10778 list_to_add = cu->list_in_scope;
10779 break;
10780 case DW_TAG_enumerator:
10781 attr = dwarf2_attr (die, DW_AT_const_value, cu);
10782 if (attr)
10783 {
10784 dwarf2_const_value (attr, sym, cu);
10785 }
10786 {
10787 /* NOTE: carlton/2003-11-10: See comment above in the
10788 DW_TAG_class_type, etc. block. */
10789
10790 list_to_add = (cu->list_in_scope == &file_symbols
10791 && (cu->language == language_cplus
10792 || cu->language == language_java)
10793 ? &global_symbols : cu->list_in_scope);
10794 }
10795 break;
10796 case DW_TAG_namespace:
10797 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
10798 list_to_add = &global_symbols;
10799 break;
10800 default:
10801 /* Not a tag we recognize. Hopefully we aren't processing
10802 trash data, but since we must specifically ignore things
10803 we don't recognize, there is nothing else we should do at
10804 this point. */
10805 complaint (&symfile_complaints, _("unsupported tag: '%s'"),
10806 dwarf_tag_name (die->tag));
10807 break;
10808 }
10809
10810 if (suppress_add)
10811 {
10812 sym->hash_next = objfile->template_symbols;
10813 objfile->template_symbols = sym;
10814 list_to_add = NULL;
10815 }
10816
10817 if (list_to_add != NULL)
10818 add_symbol_to_list (sym, list_to_add);
10819
10820 /* For the benefit of old versions of GCC, check for anonymous
10821 namespaces based on the demangled name. */
10822 if (!processing_has_namespace_info
10823 && cu->language == language_cplus)
10824 cp_scan_for_anonymous_namespaces (sym);
10825 }
10826 return (sym);
10827 }
10828
10829 /* A wrapper for new_symbol_full that always allocates a new symbol. */
10830
10831 static struct symbol *
10832 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
10833 {
10834 return new_symbol_full (die, type, cu, NULL);
10835 }
10836
10837 /* Given an attr with a DW_FORM_dataN value in host byte order,
10838 zero-extend it as appropriate for the symbol's type. The DWARF
10839 standard (v4) is not entirely clear about the meaning of using
10840 DW_FORM_dataN for a constant with a signed type, where the type is
10841 wider than the data. The conclusion of a discussion on the DWARF
10842 list was that this is unspecified. We choose to always zero-extend
10843 because that is the interpretation long in use by GCC. */
10844
10845 static gdb_byte *
10846 dwarf2_const_value_data (struct attribute *attr, struct type *type,
10847 const char *name, struct obstack *obstack,
10848 struct dwarf2_cu *cu, long *value, int bits)
10849 {
10850 struct objfile *objfile = cu->objfile;
10851 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
10852 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
10853 LONGEST l = DW_UNSND (attr);
10854
10855 if (bits < sizeof (*value) * 8)
10856 {
10857 l &= ((LONGEST) 1 << bits) - 1;
10858 *value = l;
10859 }
10860 else if (bits == sizeof (*value) * 8)
10861 *value = l;
10862 else
10863 {
10864 gdb_byte *bytes = obstack_alloc (obstack, bits / 8);
10865 store_unsigned_integer (bytes, bits / 8, byte_order, l);
10866 return bytes;
10867 }
10868
10869 return NULL;
10870 }
10871
10872 /* Read a constant value from an attribute. Either set *VALUE, or if
10873 the value does not fit in *VALUE, set *BYTES - either already
10874 allocated on the objfile obstack, or newly allocated on OBSTACK,
10875 or, set *BATON, if we translated the constant to a location
10876 expression. */
10877
10878 static void
10879 dwarf2_const_value_attr (struct attribute *attr, struct type *type,
10880 const char *name, struct obstack *obstack,
10881 struct dwarf2_cu *cu,
10882 long *value, gdb_byte **bytes,
10883 struct dwarf2_locexpr_baton **baton)
10884 {
10885 struct objfile *objfile = cu->objfile;
10886 struct comp_unit_head *cu_header = &cu->header;
10887 struct dwarf_block *blk;
10888 enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
10889 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
10890
10891 *value = 0;
10892 *bytes = NULL;
10893 *baton = NULL;
10894
10895 switch (attr->form)
10896 {
10897 case DW_FORM_addr:
10898 {
10899 gdb_byte *data;
10900
10901 if (TYPE_LENGTH (type) != cu_header->addr_size)
10902 dwarf2_const_value_length_mismatch_complaint (name,
10903 cu_header->addr_size,
10904 TYPE_LENGTH (type));
10905 /* Symbols of this form are reasonably rare, so we just
10906 piggyback on the existing location code rather than writing
10907 a new implementation of symbol_computed_ops. */
10908 *baton = obstack_alloc (&objfile->objfile_obstack,
10909 sizeof (struct dwarf2_locexpr_baton));
10910 (*baton)->per_cu = cu->per_cu;
10911 gdb_assert ((*baton)->per_cu);
10912
10913 (*baton)->size = 2 + cu_header->addr_size;
10914 data = obstack_alloc (&objfile->objfile_obstack, (*baton)->size);
10915 (*baton)->data = data;
10916
10917 data[0] = DW_OP_addr;
10918 store_unsigned_integer (&data[1], cu_header->addr_size,
10919 byte_order, DW_ADDR (attr));
10920 data[cu_header->addr_size + 1] = DW_OP_stack_value;
10921 }
10922 break;
10923 case DW_FORM_string:
10924 case DW_FORM_strp:
10925 /* DW_STRING is already allocated on the objfile obstack, point
10926 directly to it. */
10927 *bytes = (gdb_byte *) DW_STRING (attr);
10928 break;
10929 case DW_FORM_block1:
10930 case DW_FORM_block2:
10931 case DW_FORM_block4:
10932 case DW_FORM_block:
10933 case DW_FORM_exprloc:
10934 blk = DW_BLOCK (attr);
10935 if (TYPE_LENGTH (type) != blk->size)
10936 dwarf2_const_value_length_mismatch_complaint (name, blk->size,
10937 TYPE_LENGTH (type));
10938 *bytes = blk->data;
10939 break;
10940
10941 /* The DW_AT_const_value attributes are supposed to carry the
10942 symbol's value "represented as it would be on the target
10943 architecture." By the time we get here, it's already been
10944 converted to host endianness, so we just need to sign- or
10945 zero-extend it as appropriate. */
10946 case DW_FORM_data1:
10947 *bytes = dwarf2_const_value_data (attr, type, name, obstack, cu, value, 8);
10948 break;
10949 case DW_FORM_data2:
10950 *bytes = dwarf2_const_value_data (attr, type, name, obstack, cu, value, 16);
10951 break;
10952 case DW_FORM_data4:
10953 *bytes = dwarf2_const_value_data (attr, type, name, obstack, cu, value, 32);
10954 break;
10955 case DW_FORM_data8:
10956 *bytes = dwarf2_const_value_data (attr, type, name, obstack, cu, value, 64);
10957 break;
10958
10959 case DW_FORM_sdata:
10960 *value = DW_SND (attr);
10961 break;
10962
10963 case DW_FORM_udata:
10964 *value = DW_UNSND (attr);
10965 break;
10966
10967 default:
10968 complaint (&symfile_complaints,
10969 _("unsupported const value attribute form: '%s'"),
10970 dwarf_form_name (attr->form));
10971 *value = 0;
10972 break;
10973 }
10974 }
10975
10976
10977 /* Copy constant value from an attribute to a symbol. */
10978
10979 static void
10980 dwarf2_const_value (struct attribute *attr, struct symbol *sym,
10981 struct dwarf2_cu *cu)
10982 {
10983 struct objfile *objfile = cu->objfile;
10984 struct comp_unit_head *cu_header = &cu->header;
10985 long value;
10986 gdb_byte *bytes;
10987 struct dwarf2_locexpr_baton *baton;
10988
10989 dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
10990 SYMBOL_PRINT_NAME (sym),
10991 &objfile->objfile_obstack, cu,
10992 &value, &bytes, &baton);
10993
10994 if (baton != NULL)
10995 {
10996 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_locexpr_funcs;
10997 SYMBOL_LOCATION_BATON (sym) = baton;
10998 SYMBOL_CLASS (sym) = LOC_COMPUTED;
10999 }
11000 else if (bytes != NULL)
11001 {
11002 SYMBOL_VALUE_BYTES (sym) = bytes;
11003 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
11004 }
11005 else
11006 {
11007 SYMBOL_VALUE (sym) = value;
11008 SYMBOL_CLASS (sym) = LOC_CONST;
11009 }
11010 }
11011
11012 /* Return the type of the die in question using its DW_AT_type attribute. */
11013
11014 static struct type *
11015 die_type (struct die_info *die, struct dwarf2_cu *cu)
11016 {
11017 struct attribute *type_attr;
11018
11019 type_attr = dwarf2_attr (die, DW_AT_type, cu);
11020 if (!type_attr)
11021 {
11022 /* A missing DW_AT_type represents a void type. */
11023 return objfile_type (cu->objfile)->builtin_void;
11024 }
11025
11026 return lookup_die_type (die, type_attr, cu);
11027 }
11028
11029 /* True iff CU's producer generates GNAT Ada auxiliary information
11030 that allows to find parallel types through that information instead
11031 of having to do expensive parallel lookups by type name. */
11032
11033 static int
11034 need_gnat_info (struct dwarf2_cu *cu)
11035 {
11036 /* FIXME: brobecker/2010-10-12: As of now, only the AdaCore version
11037 of GNAT produces this auxiliary information, without any indication
11038 that it is produced. Part of enhancing the FSF version of GNAT
11039 to produce that information will be to put in place an indicator
11040 that we can use in order to determine whether the descriptive type
11041 info is available or not. One suggestion that has been made is
11042 to use a new attribute, attached to the CU die. For now, assume
11043 that the descriptive type info is not available. */
11044 return 0;
11045 }
11046
11047 /* Return the auxiliary type of the die in question using its
11048 DW_AT_GNAT_descriptive_type attribute. Returns NULL if the
11049 attribute is not present. */
11050
11051 static struct type *
11052 die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
11053 {
11054 struct attribute *type_attr;
11055
11056 type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
11057 if (!type_attr)
11058 return NULL;
11059
11060 return lookup_die_type (die, type_attr, cu);
11061 }
11062
11063 /* If DIE has a descriptive_type attribute, then set the TYPE's
11064 descriptive type accordingly. */
11065
11066 static void
11067 set_descriptive_type (struct type *type, struct die_info *die,
11068 struct dwarf2_cu *cu)
11069 {
11070 struct type *descriptive_type = die_descriptive_type (die, cu);
11071
11072 if (descriptive_type)
11073 {
11074 ALLOCATE_GNAT_AUX_TYPE (type);
11075 TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
11076 }
11077 }
11078
11079 /* Return the containing type of the die in question using its
11080 DW_AT_containing_type attribute. */
11081
11082 static struct type *
11083 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
11084 {
11085 struct attribute *type_attr;
11086
11087 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
11088 if (!type_attr)
11089 error (_("Dwarf Error: Problem turning containing type into gdb type "
11090 "[in module %s]"), cu->objfile->name);
11091
11092 return lookup_die_type (die, type_attr, cu);
11093 }
11094
11095 /* Look up the type of DIE in CU using its type attribute ATTR.
11096 If there is no type substitute an error marker. */
11097
11098 static struct type *
11099 lookup_die_type (struct die_info *die, struct attribute *attr,
11100 struct dwarf2_cu *cu)
11101 {
11102 struct type *this_type;
11103
11104 /* First see if we have it cached. */
11105
11106 if (is_ref_attr (attr))
11107 {
11108 unsigned int offset = dwarf2_get_ref_die_offset (attr);
11109
11110 this_type = get_die_type_at_offset (offset, cu->per_cu);
11111 }
11112 else if (attr->form == DW_FORM_sig8)
11113 {
11114 struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
11115 struct dwarf2_cu *sig_cu;
11116 unsigned int offset;
11117
11118 /* sig_type will be NULL if the signatured type is missing from
11119 the debug info. */
11120 if (sig_type == NULL)
11121 error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
11122 "at 0x%x [in module %s]"),
11123 die->offset, cu->objfile->name);
11124
11125 gdb_assert (sig_type->per_cu.from_debug_types);
11126 offset = sig_type->offset + sig_type->type_offset;
11127 this_type = get_die_type_at_offset (offset, &sig_type->per_cu);
11128 }
11129 else
11130 {
11131 dump_die_for_error (die);
11132 error (_("Dwarf Error: Bad type attribute %s [in module %s]"),
11133 dwarf_attr_name (attr->name), cu->objfile->name);
11134 }
11135
11136 /* If not cached we need to read it in. */
11137
11138 if (this_type == NULL)
11139 {
11140 struct die_info *type_die;
11141 struct dwarf2_cu *type_cu = cu;
11142
11143 type_die = follow_die_ref_or_sig (die, attr, &type_cu);
11144 /* If the type is cached, we should have found it above. */
11145 gdb_assert (get_die_type (type_die, type_cu) == NULL);
11146 this_type = read_type_die_1 (type_die, type_cu);
11147 }
11148
11149 /* If we still don't have a type use an error marker. */
11150
11151 if (this_type == NULL)
11152 {
11153 char *message, *saved;
11154
11155 /* read_type_die already issued a complaint. */
11156 message = xstrprintf (_("<unknown type in %s, CU 0x%x, DIE 0x%x>"),
11157 cu->objfile->name,
11158 cu->header.offset,
11159 die->offset);
11160 saved = obstack_copy0 (&cu->objfile->objfile_obstack,
11161 message, strlen (message));
11162 xfree (message);
11163
11164 this_type = init_type (TYPE_CODE_ERROR, 0, 0, saved, cu->objfile);
11165 }
11166
11167 return this_type;
11168 }
11169
11170 /* Return the type in DIE, CU.
11171 Returns NULL for invalid types.
11172
11173 This first does a lookup in the appropriate type_hash table,
11174 and only reads the die in if necessary.
11175
11176 NOTE: This can be called when reading in partial or full symbols. */
11177
11178 static struct type *
11179 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
11180 {
11181 struct type *this_type;
11182
11183 this_type = get_die_type (die, cu);
11184 if (this_type)
11185 return this_type;
11186
11187 return read_type_die_1 (die, cu);
11188 }
11189
11190 /* Read the type in DIE, CU.
11191 Returns NULL for invalid types. */
11192
11193 static struct type *
11194 read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
11195 {
11196 struct type *this_type = NULL;
11197
11198 switch (die->tag)
11199 {
11200 case DW_TAG_class_type:
11201 case DW_TAG_interface_type:
11202 case DW_TAG_structure_type:
11203 case DW_TAG_union_type:
11204 this_type = read_structure_type (die, cu);
11205 break;
11206 case DW_TAG_enumeration_type:
11207 this_type = read_enumeration_type (die, cu);
11208 break;
11209 case DW_TAG_subprogram:
11210 case DW_TAG_subroutine_type:
11211 case DW_TAG_inlined_subroutine:
11212 this_type = read_subroutine_type (die, cu);
11213 break;
11214 case DW_TAG_array_type:
11215 this_type = read_array_type (die, cu);
11216 break;
11217 case DW_TAG_set_type:
11218 this_type = read_set_type (die, cu);
11219 break;
11220 case DW_TAG_pointer_type:
11221 this_type = read_tag_pointer_type (die, cu);
11222 break;
11223 case DW_TAG_ptr_to_member_type:
11224 this_type = read_tag_ptr_to_member_type (die, cu);
11225 break;
11226 case DW_TAG_reference_type:
11227 this_type = read_tag_reference_type (die, cu);
11228 break;
11229 case DW_TAG_const_type:
11230 this_type = read_tag_const_type (die, cu);
11231 break;
11232 case DW_TAG_volatile_type:
11233 this_type = read_tag_volatile_type (die, cu);
11234 break;
11235 case DW_TAG_string_type:
11236 this_type = read_tag_string_type (die, cu);
11237 break;
11238 case DW_TAG_typedef:
11239 this_type = read_typedef (die, cu);
11240 break;
11241 case DW_TAG_subrange_type:
11242 this_type = read_subrange_type (die, cu);
11243 break;
11244 case DW_TAG_base_type:
11245 this_type = read_base_type (die, cu);
11246 break;
11247 case DW_TAG_unspecified_type:
11248 this_type = read_unspecified_type (die, cu);
11249 break;
11250 case DW_TAG_namespace:
11251 this_type = read_namespace_type (die, cu);
11252 break;
11253 case DW_TAG_module:
11254 this_type = read_module_type (die, cu);
11255 break;
11256 default:
11257 complaint (&symfile_complaints, _("unexpected tag in read_type_die: '%s'"),
11258 dwarf_tag_name (die->tag));
11259 break;
11260 }
11261
11262 return this_type;
11263 }
11264
11265 /* Return the name of the namespace/class that DIE is defined within,
11266 or "" if we can't tell. The caller should not xfree the result.
11267
11268 For example, if we're within the method foo() in the following
11269 code:
11270
11271 namespace N {
11272 class C {
11273 void foo () {
11274 }
11275 };
11276 }
11277
11278 then determine_prefix on foo's die will return "N::C". */
11279
11280 static char *
11281 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
11282 {
11283 struct die_info *parent, *spec_die;
11284 struct dwarf2_cu *spec_cu;
11285 struct type *parent_type;
11286
11287 if (cu->language != language_cplus && cu->language != language_java
11288 && cu->language != language_fortran)
11289 return "";
11290
11291 /* We have to be careful in the presence of DW_AT_specification.
11292 For example, with GCC 3.4, given the code
11293
11294 namespace N {
11295 void foo() {
11296 // Definition of N::foo.
11297 }
11298 }
11299
11300 then we'll have a tree of DIEs like this:
11301
11302 1: DW_TAG_compile_unit
11303 2: DW_TAG_namespace // N
11304 3: DW_TAG_subprogram // declaration of N::foo
11305 4: DW_TAG_subprogram // definition of N::foo
11306 DW_AT_specification // refers to die #3
11307
11308 Thus, when processing die #4, we have to pretend that we're in
11309 the context of its DW_AT_specification, namely the contex of die
11310 #3. */
11311 spec_cu = cu;
11312 spec_die = die_specification (die, &spec_cu);
11313 if (spec_die == NULL)
11314 parent = die->parent;
11315 else
11316 {
11317 parent = spec_die->parent;
11318 cu = spec_cu;
11319 }
11320
11321 if (parent == NULL)
11322 return "";
11323 else if (parent->building_fullname)
11324 {
11325 const char *name;
11326 const char *parent_name;
11327
11328 /* It has been seen on RealView 2.2 built binaries,
11329 DW_TAG_template_type_param types actually _defined_ as
11330 children of the parent class:
11331
11332 enum E {};
11333 template class <class Enum> Class{};
11334 Class<enum E> class_e;
11335
11336 1: DW_TAG_class_type (Class)
11337 2: DW_TAG_enumeration_type (E)
11338 3: DW_TAG_enumerator (enum1:0)
11339 3: DW_TAG_enumerator (enum2:1)
11340 ...
11341 2: DW_TAG_template_type_param
11342 DW_AT_type DW_FORM_ref_udata (E)
11343
11344 Besides being broken debug info, it can put GDB into an
11345 infinite loop. Consider:
11346
11347 When we're building the full name for Class<E>, we'll start
11348 at Class, and go look over its template type parameters,
11349 finding E. We'll then try to build the full name of E, and
11350 reach here. We're now trying to build the full name of E,
11351 and look over the parent DIE for containing scope. In the
11352 broken case, if we followed the parent DIE of E, we'd again
11353 find Class, and once again go look at its template type
11354 arguments, etc., etc. Simply don't consider such parent die
11355 as source-level parent of this die (it can't be, the language
11356 doesn't allow it), and break the loop here. */
11357 name = dwarf2_name (die, cu);
11358 parent_name = dwarf2_name (parent, cu);
11359 complaint (&symfile_complaints,
11360 _("template param type '%s' defined within parent '%s'"),
11361 name ? name : "<unknown>",
11362 parent_name ? parent_name : "<unknown>");
11363 return "";
11364 }
11365 else
11366 switch (parent->tag)
11367 {
11368 case DW_TAG_namespace:
11369 parent_type = read_type_die (parent, cu);
11370 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
11371 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
11372 Work around this problem here. */
11373 if (cu->language == language_cplus
11374 && strcmp (TYPE_TAG_NAME (parent_type), "::") == 0)
11375 return "";
11376 /* We give a name to even anonymous namespaces. */
11377 return TYPE_TAG_NAME (parent_type);
11378 case DW_TAG_class_type:
11379 case DW_TAG_interface_type:
11380 case DW_TAG_structure_type:
11381 case DW_TAG_union_type:
11382 case DW_TAG_module:
11383 parent_type = read_type_die (parent, cu);
11384 if (TYPE_TAG_NAME (parent_type) != NULL)
11385 return TYPE_TAG_NAME (parent_type);
11386 else
11387 /* An anonymous structure is only allowed non-static data
11388 members; no typedefs, no member functions, et cetera.
11389 So it does not need a prefix. */
11390 return "";
11391 default:
11392 return determine_prefix (parent, cu);
11393 }
11394 }
11395
11396 /* Return a newly-allocated string formed by concatenating PREFIX and
11397 SUFFIX with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
11398 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null,
11399 perform an obconcat, otherwise allocate storage for the result. The CU argument
11400 is used to determine the language and hence, the appropriate separator. */
11401
11402 #define MAX_SEP_LEN 7 /* strlen ("__") + strlen ("_MOD_") */
11403
11404 static char *
11405 typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
11406 int physname, struct dwarf2_cu *cu)
11407 {
11408 const char *lead = "";
11409 const char *sep;
11410
11411 if (suffix == NULL || suffix[0] == '\0' || prefix == NULL || prefix[0] == '\0')
11412 sep = "";
11413 else if (cu->language == language_java)
11414 sep = ".";
11415 else if (cu->language == language_fortran && physname)
11416 {
11417 /* This is gfortran specific mangling. Normally DW_AT_linkage_name or
11418 DW_AT_MIPS_linkage_name is preferred and used instead. */
11419
11420 lead = "__";
11421 sep = "_MOD_";
11422 }
11423 else
11424 sep = "::";
11425
11426 if (prefix == NULL)
11427 prefix = "";
11428 if (suffix == NULL)
11429 suffix = "";
11430
11431 if (obs == NULL)
11432 {
11433 char *retval = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
11434
11435 strcpy (retval, lead);
11436 strcat (retval, prefix);
11437 strcat (retval, sep);
11438 strcat (retval, suffix);
11439 return retval;
11440 }
11441 else
11442 {
11443 /* We have an obstack. */
11444 return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
11445 }
11446 }
11447
11448 /* Return sibling of die, NULL if no sibling. */
11449
11450 static struct die_info *
11451 sibling_die (struct die_info *die)
11452 {
11453 return die->sibling;
11454 }
11455
11456 /* Get name of a die, return NULL if not found. */
11457
11458 static char *
11459 dwarf2_canonicalize_name (char *name, struct dwarf2_cu *cu,
11460 struct obstack *obstack)
11461 {
11462 if (name && cu->language == language_cplus)
11463 {
11464 char *canon_name = cp_canonicalize_string (name);
11465
11466 if (canon_name != NULL)
11467 {
11468 if (strcmp (canon_name, name) != 0)
11469 name = obsavestring (canon_name, strlen (canon_name),
11470 obstack);
11471 xfree (canon_name);
11472 }
11473 }
11474
11475 return name;
11476 }
11477
11478 /* Get name of a die, return NULL if not found. */
11479
11480 static char *
11481 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
11482 {
11483 struct attribute *attr;
11484
11485 attr = dwarf2_attr (die, DW_AT_name, cu);
11486 if (!attr || !DW_STRING (attr))
11487 return NULL;
11488
11489 switch (die->tag)
11490 {
11491 case DW_TAG_compile_unit:
11492 /* Compilation units have a DW_AT_name that is a filename, not
11493 a source language identifier. */
11494 case DW_TAG_enumeration_type:
11495 case DW_TAG_enumerator:
11496 /* These tags always have simple identifiers already; no need
11497 to canonicalize them. */
11498 return DW_STRING (attr);
11499
11500 case DW_TAG_subprogram:
11501 /* Java constructors will all be named "<init>", so return
11502 the class name when we see this special case. */
11503 if (cu->language == language_java
11504 && DW_STRING (attr) != NULL
11505 && strcmp (DW_STRING (attr), "<init>") == 0)
11506 {
11507 struct dwarf2_cu *spec_cu = cu;
11508 struct die_info *spec_die;
11509
11510 /* GCJ will output '<init>' for Java constructor names.
11511 For this special case, return the name of the parent class. */
11512
11513 /* GCJ may output suprogram DIEs with AT_specification set.
11514 If so, use the name of the specified DIE. */
11515 spec_die = die_specification (die, &spec_cu);
11516 if (spec_die != NULL)
11517 return dwarf2_name (spec_die, spec_cu);
11518
11519 do
11520 {
11521 die = die->parent;
11522 if (die->tag == DW_TAG_class_type)
11523 return dwarf2_name (die, cu);
11524 }
11525 while (die->tag != DW_TAG_compile_unit);
11526 }
11527 break;
11528
11529 case DW_TAG_class_type:
11530 case DW_TAG_interface_type:
11531 case DW_TAG_structure_type:
11532 case DW_TAG_union_type:
11533 /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
11534 structures or unions. These were of the form "._%d" in GCC 4.1,
11535 or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
11536 and GCC 4.4. We work around this problem by ignoring these. */
11537 if (strncmp (DW_STRING (attr), "._", 2) == 0
11538 || strncmp (DW_STRING (attr), "<anonymous", 10) == 0)
11539 return NULL;
11540 break;
11541
11542 default:
11543 break;
11544 }
11545
11546 if (!DW_STRING_IS_CANONICAL (attr))
11547 {
11548 DW_STRING (attr)
11549 = dwarf2_canonicalize_name (DW_STRING (attr), cu,
11550 &cu->objfile->objfile_obstack);
11551 DW_STRING_IS_CANONICAL (attr) = 1;
11552 }
11553 return DW_STRING (attr);
11554 }
11555
11556 /* Return the die that this die in an extension of, or NULL if there
11557 is none. *EXT_CU is the CU containing DIE on input, and the CU
11558 containing the return value on output. */
11559
11560 static struct die_info *
11561 dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
11562 {
11563 struct attribute *attr;
11564
11565 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
11566 if (attr == NULL)
11567 return NULL;
11568
11569 return follow_die_ref (die, attr, ext_cu);
11570 }
11571
11572 /* Convert a DIE tag into its string name. */
11573
11574 static char *
11575 dwarf_tag_name (unsigned tag)
11576 {
11577 switch (tag)
11578 {
11579 case DW_TAG_padding:
11580 return "DW_TAG_padding";
11581 case DW_TAG_array_type:
11582 return "DW_TAG_array_type";
11583 case DW_TAG_class_type:
11584 return "DW_TAG_class_type";
11585 case DW_TAG_entry_point:
11586 return "DW_TAG_entry_point";
11587 case DW_TAG_enumeration_type:
11588 return "DW_TAG_enumeration_type";
11589 case DW_TAG_formal_parameter:
11590 return "DW_TAG_formal_parameter";
11591 case DW_TAG_imported_declaration:
11592 return "DW_TAG_imported_declaration";
11593 case DW_TAG_label:
11594 return "DW_TAG_label";
11595 case DW_TAG_lexical_block:
11596 return "DW_TAG_lexical_block";
11597 case DW_TAG_member:
11598 return "DW_TAG_member";
11599 case DW_TAG_pointer_type:
11600 return "DW_TAG_pointer_type";
11601 case DW_TAG_reference_type:
11602 return "DW_TAG_reference_type";
11603 case DW_TAG_compile_unit:
11604 return "DW_TAG_compile_unit";
11605 case DW_TAG_string_type:
11606 return "DW_TAG_string_type";
11607 case DW_TAG_structure_type:
11608 return "DW_TAG_structure_type";
11609 case DW_TAG_subroutine_type:
11610 return "DW_TAG_subroutine_type";
11611 case DW_TAG_typedef:
11612 return "DW_TAG_typedef";
11613 case DW_TAG_union_type:
11614 return "DW_TAG_union_type";
11615 case DW_TAG_unspecified_parameters:
11616 return "DW_TAG_unspecified_parameters";
11617 case DW_TAG_variant:
11618 return "DW_TAG_variant";
11619 case DW_TAG_common_block:
11620 return "DW_TAG_common_block";
11621 case DW_TAG_common_inclusion:
11622 return "DW_TAG_common_inclusion";
11623 case DW_TAG_inheritance:
11624 return "DW_TAG_inheritance";
11625 case DW_TAG_inlined_subroutine:
11626 return "DW_TAG_inlined_subroutine";
11627 case DW_TAG_module:
11628 return "DW_TAG_module";
11629 case DW_TAG_ptr_to_member_type:
11630 return "DW_TAG_ptr_to_member_type";
11631 case DW_TAG_set_type:
11632 return "DW_TAG_set_type";
11633 case DW_TAG_subrange_type:
11634 return "DW_TAG_subrange_type";
11635 case DW_TAG_with_stmt:
11636 return "DW_TAG_with_stmt";
11637 case DW_TAG_access_declaration:
11638 return "DW_TAG_access_declaration";
11639 case DW_TAG_base_type:
11640 return "DW_TAG_base_type";
11641 case DW_TAG_catch_block:
11642 return "DW_TAG_catch_block";
11643 case DW_TAG_const_type:
11644 return "DW_TAG_const_type";
11645 case DW_TAG_constant:
11646 return "DW_TAG_constant";
11647 case DW_TAG_enumerator:
11648 return "DW_TAG_enumerator";
11649 case DW_TAG_file_type:
11650 return "DW_TAG_file_type";
11651 case DW_TAG_friend:
11652 return "DW_TAG_friend";
11653 case DW_TAG_namelist:
11654 return "DW_TAG_namelist";
11655 case DW_TAG_namelist_item:
11656 return "DW_TAG_namelist_item";
11657 case DW_TAG_packed_type:
11658 return "DW_TAG_packed_type";
11659 case DW_TAG_subprogram:
11660 return "DW_TAG_subprogram";
11661 case DW_TAG_template_type_param:
11662 return "DW_TAG_template_type_param";
11663 case DW_TAG_template_value_param:
11664 return "DW_TAG_template_value_param";
11665 case DW_TAG_thrown_type:
11666 return "DW_TAG_thrown_type";
11667 case DW_TAG_try_block:
11668 return "DW_TAG_try_block";
11669 case DW_TAG_variant_part:
11670 return "DW_TAG_variant_part";
11671 case DW_TAG_variable:
11672 return "DW_TAG_variable";
11673 case DW_TAG_volatile_type:
11674 return "DW_TAG_volatile_type";
11675 case DW_TAG_dwarf_procedure:
11676 return "DW_TAG_dwarf_procedure";
11677 case DW_TAG_restrict_type:
11678 return "DW_TAG_restrict_type";
11679 case DW_TAG_interface_type:
11680 return "DW_TAG_interface_type";
11681 case DW_TAG_namespace:
11682 return "DW_TAG_namespace";
11683 case DW_TAG_imported_module:
11684 return "DW_TAG_imported_module";
11685 case DW_TAG_unspecified_type:
11686 return "DW_TAG_unspecified_type";
11687 case DW_TAG_partial_unit:
11688 return "DW_TAG_partial_unit";
11689 case DW_TAG_imported_unit:
11690 return "DW_TAG_imported_unit";
11691 case DW_TAG_condition:
11692 return "DW_TAG_condition";
11693 case DW_TAG_shared_type:
11694 return "DW_TAG_shared_type";
11695 case DW_TAG_type_unit:
11696 return "DW_TAG_type_unit";
11697 case DW_TAG_MIPS_loop:
11698 return "DW_TAG_MIPS_loop";
11699 case DW_TAG_HP_array_descriptor:
11700 return "DW_TAG_HP_array_descriptor";
11701 case DW_TAG_format_label:
11702 return "DW_TAG_format_label";
11703 case DW_TAG_function_template:
11704 return "DW_TAG_function_template";
11705 case DW_TAG_class_template:
11706 return "DW_TAG_class_template";
11707 case DW_TAG_GNU_BINCL:
11708 return "DW_TAG_GNU_BINCL";
11709 case DW_TAG_GNU_EINCL:
11710 return "DW_TAG_GNU_EINCL";
11711 case DW_TAG_upc_shared_type:
11712 return "DW_TAG_upc_shared_type";
11713 case DW_TAG_upc_strict_type:
11714 return "DW_TAG_upc_strict_type";
11715 case DW_TAG_upc_relaxed_type:
11716 return "DW_TAG_upc_relaxed_type";
11717 case DW_TAG_PGI_kanji_type:
11718 return "DW_TAG_PGI_kanji_type";
11719 case DW_TAG_PGI_interface_block:
11720 return "DW_TAG_PGI_interface_block";
11721 default:
11722 return "DW_TAG_<unknown>";
11723 }
11724 }
11725
11726 /* Convert a DWARF attribute code into its string name. */
11727
11728 static char *
11729 dwarf_attr_name (unsigned attr)
11730 {
11731 switch (attr)
11732 {
11733 case DW_AT_sibling:
11734 return "DW_AT_sibling";
11735 case DW_AT_location:
11736 return "DW_AT_location";
11737 case DW_AT_name:
11738 return "DW_AT_name";
11739 case DW_AT_ordering:
11740 return "DW_AT_ordering";
11741 case DW_AT_subscr_data:
11742 return "DW_AT_subscr_data";
11743 case DW_AT_byte_size:
11744 return "DW_AT_byte_size";
11745 case DW_AT_bit_offset:
11746 return "DW_AT_bit_offset";
11747 case DW_AT_bit_size:
11748 return "DW_AT_bit_size";
11749 case DW_AT_element_list:
11750 return "DW_AT_element_list";
11751 case DW_AT_stmt_list:
11752 return "DW_AT_stmt_list";
11753 case DW_AT_low_pc:
11754 return "DW_AT_low_pc";
11755 case DW_AT_high_pc:
11756 return "DW_AT_high_pc";
11757 case DW_AT_language:
11758 return "DW_AT_language";
11759 case DW_AT_member:
11760 return "DW_AT_member";
11761 case DW_AT_discr:
11762 return "DW_AT_discr";
11763 case DW_AT_discr_value:
11764 return "DW_AT_discr_value";
11765 case DW_AT_visibility:
11766 return "DW_AT_visibility";
11767 case DW_AT_import:
11768 return "DW_AT_import";
11769 case DW_AT_string_length:
11770 return "DW_AT_string_length";
11771 case DW_AT_common_reference:
11772 return "DW_AT_common_reference";
11773 case DW_AT_comp_dir:
11774 return "DW_AT_comp_dir";
11775 case DW_AT_const_value:
11776 return "DW_AT_const_value";
11777 case DW_AT_containing_type:
11778 return "DW_AT_containing_type";
11779 case DW_AT_default_value:
11780 return "DW_AT_default_value";
11781 case DW_AT_inline:
11782 return "DW_AT_inline";
11783 case DW_AT_is_optional:
11784 return "DW_AT_is_optional";
11785 case DW_AT_lower_bound:
11786 return "DW_AT_lower_bound";
11787 case DW_AT_producer:
11788 return "DW_AT_producer";
11789 case DW_AT_prototyped:
11790 return "DW_AT_prototyped";
11791 case DW_AT_return_addr:
11792 return "DW_AT_return_addr";
11793 case DW_AT_start_scope:
11794 return "DW_AT_start_scope";
11795 case DW_AT_bit_stride:
11796 return "DW_AT_bit_stride";
11797 case DW_AT_upper_bound:
11798 return "DW_AT_upper_bound";
11799 case DW_AT_abstract_origin:
11800 return "DW_AT_abstract_origin";
11801 case DW_AT_accessibility:
11802 return "DW_AT_accessibility";
11803 case DW_AT_address_class:
11804 return "DW_AT_address_class";
11805 case DW_AT_artificial:
11806 return "DW_AT_artificial";
11807 case DW_AT_base_types:
11808 return "DW_AT_base_types";
11809 case DW_AT_calling_convention:
11810 return "DW_AT_calling_convention";
11811 case DW_AT_count:
11812 return "DW_AT_count";
11813 case DW_AT_data_member_location:
11814 return "DW_AT_data_member_location";
11815 case DW_AT_decl_column:
11816 return "DW_AT_decl_column";
11817 case DW_AT_decl_file:
11818 return "DW_AT_decl_file";
11819 case DW_AT_decl_line:
11820 return "DW_AT_decl_line";
11821 case DW_AT_declaration:
11822 return "DW_AT_declaration";
11823 case DW_AT_discr_list:
11824 return "DW_AT_discr_list";
11825 case DW_AT_encoding:
11826 return "DW_AT_encoding";
11827 case DW_AT_external:
11828 return "DW_AT_external";
11829 case DW_AT_frame_base:
11830 return "DW_AT_frame_base";
11831 case DW_AT_friend:
11832 return "DW_AT_friend";
11833 case DW_AT_identifier_case:
11834 return "DW_AT_identifier_case";
11835 case DW_AT_macro_info:
11836 return "DW_AT_macro_info";
11837 case DW_AT_namelist_items:
11838 return "DW_AT_namelist_items";
11839 case DW_AT_priority:
11840 return "DW_AT_priority";
11841 case DW_AT_segment:
11842 return "DW_AT_segment";
11843 case DW_AT_specification:
11844 return "DW_AT_specification";
11845 case DW_AT_static_link:
11846 return "DW_AT_static_link";
11847 case DW_AT_type:
11848 return "DW_AT_type";
11849 case DW_AT_use_location:
11850 return "DW_AT_use_location";
11851 case DW_AT_variable_parameter:
11852 return "DW_AT_variable_parameter";
11853 case DW_AT_virtuality:
11854 return "DW_AT_virtuality";
11855 case DW_AT_vtable_elem_location:
11856 return "DW_AT_vtable_elem_location";
11857 /* DWARF 3 values. */
11858 case DW_AT_allocated:
11859 return "DW_AT_allocated";
11860 case DW_AT_associated:
11861 return "DW_AT_associated";
11862 case DW_AT_data_location:
11863 return "DW_AT_data_location";
11864 case DW_AT_byte_stride:
11865 return "DW_AT_byte_stride";
11866 case DW_AT_entry_pc:
11867 return "DW_AT_entry_pc";
11868 case DW_AT_use_UTF8:
11869 return "DW_AT_use_UTF8";
11870 case DW_AT_extension:
11871 return "DW_AT_extension";
11872 case DW_AT_ranges:
11873 return "DW_AT_ranges";
11874 case DW_AT_trampoline:
11875 return "DW_AT_trampoline";
11876 case DW_AT_call_column:
11877 return "DW_AT_call_column";
11878 case DW_AT_call_file:
11879 return "DW_AT_call_file";
11880 case DW_AT_call_line:
11881 return "DW_AT_call_line";
11882 case DW_AT_description:
11883 return "DW_AT_description";
11884 case DW_AT_binary_scale:
11885 return "DW_AT_binary_scale";
11886 case DW_AT_decimal_scale:
11887 return "DW_AT_decimal_scale";
11888 case DW_AT_small:
11889 return "DW_AT_small";
11890 case DW_AT_decimal_sign:
11891 return "DW_AT_decimal_sign";
11892 case DW_AT_digit_count:
11893 return "DW_AT_digit_count";
11894 case DW_AT_picture_string:
11895 return "DW_AT_picture_string";
11896 case DW_AT_mutable:
11897 return "DW_AT_mutable";
11898 case DW_AT_threads_scaled:
11899 return "DW_AT_threads_scaled";
11900 case DW_AT_explicit:
11901 return "DW_AT_explicit";
11902 case DW_AT_object_pointer:
11903 return "DW_AT_object_pointer";
11904 case DW_AT_endianity:
11905 return "DW_AT_endianity";
11906 case DW_AT_elemental:
11907 return "DW_AT_elemental";
11908 case DW_AT_pure:
11909 return "DW_AT_pure";
11910 case DW_AT_recursive:
11911 return "DW_AT_recursive";
11912 /* DWARF 4 values. */
11913 case DW_AT_signature:
11914 return "DW_AT_signature";
11915 case DW_AT_linkage_name:
11916 return "DW_AT_linkage_name";
11917 /* SGI/MIPS extensions. */
11918 #ifdef MIPS /* collides with DW_AT_HP_block_index */
11919 case DW_AT_MIPS_fde:
11920 return "DW_AT_MIPS_fde";
11921 #endif
11922 case DW_AT_MIPS_loop_begin:
11923 return "DW_AT_MIPS_loop_begin";
11924 case DW_AT_MIPS_tail_loop_begin:
11925 return "DW_AT_MIPS_tail_loop_begin";
11926 case DW_AT_MIPS_epilog_begin:
11927 return "DW_AT_MIPS_epilog_begin";
11928 case DW_AT_MIPS_loop_unroll_factor:
11929 return "DW_AT_MIPS_loop_unroll_factor";
11930 case DW_AT_MIPS_software_pipeline_depth:
11931 return "DW_AT_MIPS_software_pipeline_depth";
11932 case DW_AT_MIPS_linkage_name:
11933 return "DW_AT_MIPS_linkage_name";
11934 case DW_AT_MIPS_stride:
11935 return "DW_AT_MIPS_stride";
11936 case DW_AT_MIPS_abstract_name:
11937 return "DW_AT_MIPS_abstract_name";
11938 case DW_AT_MIPS_clone_origin:
11939 return "DW_AT_MIPS_clone_origin";
11940 case DW_AT_MIPS_has_inlines:
11941 return "DW_AT_MIPS_has_inlines";
11942 /* HP extensions. */
11943 #ifndef MIPS /* collides with DW_AT_MIPS_fde */
11944 case DW_AT_HP_block_index:
11945 return "DW_AT_HP_block_index";
11946 #endif
11947 case DW_AT_HP_unmodifiable:
11948 return "DW_AT_HP_unmodifiable";
11949 case DW_AT_HP_actuals_stmt_list:
11950 return "DW_AT_HP_actuals_stmt_list";
11951 case DW_AT_HP_proc_per_section:
11952 return "DW_AT_HP_proc_per_section";
11953 case DW_AT_HP_raw_data_ptr:
11954 return "DW_AT_HP_raw_data_ptr";
11955 case DW_AT_HP_pass_by_reference:
11956 return "DW_AT_HP_pass_by_reference";
11957 case DW_AT_HP_opt_level:
11958 return "DW_AT_HP_opt_level";
11959 case DW_AT_HP_prof_version_id:
11960 return "DW_AT_HP_prof_version_id";
11961 case DW_AT_HP_opt_flags:
11962 return "DW_AT_HP_opt_flags";
11963 case DW_AT_HP_cold_region_low_pc:
11964 return "DW_AT_HP_cold_region_low_pc";
11965 case DW_AT_HP_cold_region_high_pc:
11966 return "DW_AT_HP_cold_region_high_pc";
11967 case DW_AT_HP_all_variables_modifiable:
11968 return "DW_AT_HP_all_variables_modifiable";
11969 case DW_AT_HP_linkage_name:
11970 return "DW_AT_HP_linkage_name";
11971 case DW_AT_HP_prof_flags:
11972 return "DW_AT_HP_prof_flags";
11973 /* GNU extensions. */
11974 case DW_AT_sf_names:
11975 return "DW_AT_sf_names";
11976 case DW_AT_src_info:
11977 return "DW_AT_src_info";
11978 case DW_AT_mac_info:
11979 return "DW_AT_mac_info";
11980 case DW_AT_src_coords:
11981 return "DW_AT_src_coords";
11982 case DW_AT_body_begin:
11983 return "DW_AT_body_begin";
11984 case DW_AT_body_end:
11985 return "DW_AT_body_end";
11986 case DW_AT_GNU_vector:
11987 return "DW_AT_GNU_vector";
11988 case DW_AT_GNU_odr_signature:
11989 return "DW_AT_GNU_odr_signature";
11990 /* VMS extensions. */
11991 case DW_AT_VMS_rtnbeg_pd_address:
11992 return "DW_AT_VMS_rtnbeg_pd_address";
11993 /* UPC extension. */
11994 case DW_AT_upc_threads_scaled:
11995 return "DW_AT_upc_threads_scaled";
11996 /* PGI (STMicroelectronics) extensions. */
11997 case DW_AT_PGI_lbase:
11998 return "DW_AT_PGI_lbase";
11999 case DW_AT_PGI_soffset:
12000 return "DW_AT_PGI_soffset";
12001 case DW_AT_PGI_lstride:
12002 return "DW_AT_PGI_lstride";
12003 default:
12004 return "DW_AT_<unknown>";
12005 }
12006 }
12007
12008 /* Convert a DWARF value form code into its string name. */
12009
12010 static char *
12011 dwarf_form_name (unsigned form)
12012 {
12013 switch (form)
12014 {
12015 case DW_FORM_addr:
12016 return "DW_FORM_addr";
12017 case DW_FORM_block2:
12018 return "DW_FORM_block2";
12019 case DW_FORM_block4:
12020 return "DW_FORM_block4";
12021 case DW_FORM_data2:
12022 return "DW_FORM_data2";
12023 case DW_FORM_data4:
12024 return "DW_FORM_data4";
12025 case DW_FORM_data8:
12026 return "DW_FORM_data8";
12027 case DW_FORM_string:
12028 return "DW_FORM_string";
12029 case DW_FORM_block:
12030 return "DW_FORM_block";
12031 case DW_FORM_block1:
12032 return "DW_FORM_block1";
12033 case DW_FORM_data1:
12034 return "DW_FORM_data1";
12035 case DW_FORM_flag:
12036 return "DW_FORM_flag";
12037 case DW_FORM_sdata:
12038 return "DW_FORM_sdata";
12039 case DW_FORM_strp:
12040 return "DW_FORM_strp";
12041 case DW_FORM_udata:
12042 return "DW_FORM_udata";
12043 case DW_FORM_ref_addr:
12044 return "DW_FORM_ref_addr";
12045 case DW_FORM_ref1:
12046 return "DW_FORM_ref1";
12047 case DW_FORM_ref2:
12048 return "DW_FORM_ref2";
12049 case DW_FORM_ref4:
12050 return "DW_FORM_ref4";
12051 case DW_FORM_ref8:
12052 return "DW_FORM_ref8";
12053 case DW_FORM_ref_udata:
12054 return "DW_FORM_ref_udata";
12055 case DW_FORM_indirect:
12056 return "DW_FORM_indirect";
12057 case DW_FORM_sec_offset:
12058 return "DW_FORM_sec_offset";
12059 case DW_FORM_exprloc:
12060 return "DW_FORM_exprloc";
12061 case DW_FORM_flag_present:
12062 return "DW_FORM_flag_present";
12063 case DW_FORM_sig8:
12064 return "DW_FORM_sig8";
12065 default:
12066 return "DW_FORM_<unknown>";
12067 }
12068 }
12069
12070 /* Convert a DWARF stack opcode into its string name. */
12071
12072 const char *
12073 dwarf_stack_op_name (unsigned op, int def)
12074 {
12075 switch (op)
12076 {
12077 case DW_OP_addr:
12078 return "DW_OP_addr";
12079 case DW_OP_deref:
12080 return "DW_OP_deref";
12081 case DW_OP_const1u:
12082 return "DW_OP_const1u";
12083 case DW_OP_const1s:
12084 return "DW_OP_const1s";
12085 case DW_OP_const2u:
12086 return "DW_OP_const2u";
12087 case DW_OP_const2s:
12088 return "DW_OP_const2s";
12089 case DW_OP_const4u:
12090 return "DW_OP_const4u";
12091 case DW_OP_const4s:
12092 return "DW_OP_const4s";
12093 case DW_OP_const8u:
12094 return "DW_OP_const8u";
12095 case DW_OP_const8s:
12096 return "DW_OP_const8s";
12097 case DW_OP_constu:
12098 return "DW_OP_constu";
12099 case DW_OP_consts:
12100 return "DW_OP_consts";
12101 case DW_OP_dup:
12102 return "DW_OP_dup";
12103 case DW_OP_drop:
12104 return "DW_OP_drop";
12105 case DW_OP_over:
12106 return "DW_OP_over";
12107 case DW_OP_pick:
12108 return "DW_OP_pick";
12109 case DW_OP_swap:
12110 return "DW_OP_swap";
12111 case DW_OP_rot:
12112 return "DW_OP_rot";
12113 case DW_OP_xderef:
12114 return "DW_OP_xderef";
12115 case DW_OP_abs:
12116 return "DW_OP_abs";
12117 case DW_OP_and:
12118 return "DW_OP_and";
12119 case DW_OP_div:
12120 return "DW_OP_div";
12121 case DW_OP_minus:
12122 return "DW_OP_minus";
12123 case DW_OP_mod:
12124 return "DW_OP_mod";
12125 case DW_OP_mul:
12126 return "DW_OP_mul";
12127 case DW_OP_neg:
12128 return "DW_OP_neg";
12129 case DW_OP_not:
12130 return "DW_OP_not";
12131 case DW_OP_or:
12132 return "DW_OP_or";
12133 case DW_OP_plus:
12134 return "DW_OP_plus";
12135 case DW_OP_plus_uconst:
12136 return "DW_OP_plus_uconst";
12137 case DW_OP_shl:
12138 return "DW_OP_shl";
12139 case DW_OP_shr:
12140 return "DW_OP_shr";
12141 case DW_OP_shra:
12142 return "DW_OP_shra";
12143 case DW_OP_xor:
12144 return "DW_OP_xor";
12145 case DW_OP_bra:
12146 return "DW_OP_bra";
12147 case DW_OP_eq:
12148 return "DW_OP_eq";
12149 case DW_OP_ge:
12150 return "DW_OP_ge";
12151 case DW_OP_gt:
12152 return "DW_OP_gt";
12153 case DW_OP_le:
12154 return "DW_OP_le";
12155 case DW_OP_lt:
12156 return "DW_OP_lt";
12157 case DW_OP_ne:
12158 return "DW_OP_ne";
12159 case DW_OP_skip:
12160 return "DW_OP_skip";
12161 case DW_OP_lit0:
12162 return "DW_OP_lit0";
12163 case DW_OP_lit1:
12164 return "DW_OP_lit1";
12165 case DW_OP_lit2:
12166 return "DW_OP_lit2";
12167 case DW_OP_lit3:
12168 return "DW_OP_lit3";
12169 case DW_OP_lit4:
12170 return "DW_OP_lit4";
12171 case DW_OP_lit5:
12172 return "DW_OP_lit5";
12173 case DW_OP_lit6:
12174 return "DW_OP_lit6";
12175 case DW_OP_lit7:
12176 return "DW_OP_lit7";
12177 case DW_OP_lit8:
12178 return "DW_OP_lit8";
12179 case DW_OP_lit9:
12180 return "DW_OP_lit9";
12181 case DW_OP_lit10:
12182 return "DW_OP_lit10";
12183 case DW_OP_lit11:
12184 return "DW_OP_lit11";
12185 case DW_OP_lit12:
12186 return "DW_OP_lit12";
12187 case DW_OP_lit13:
12188 return "DW_OP_lit13";
12189 case DW_OP_lit14:
12190 return "DW_OP_lit14";
12191 case DW_OP_lit15:
12192 return "DW_OP_lit15";
12193 case DW_OP_lit16:
12194 return "DW_OP_lit16";
12195 case DW_OP_lit17:
12196 return "DW_OP_lit17";
12197 case DW_OP_lit18:
12198 return "DW_OP_lit18";
12199 case DW_OP_lit19:
12200 return "DW_OP_lit19";
12201 case DW_OP_lit20:
12202 return "DW_OP_lit20";
12203 case DW_OP_lit21:
12204 return "DW_OP_lit21";
12205 case DW_OP_lit22:
12206 return "DW_OP_lit22";
12207 case DW_OP_lit23:
12208 return "DW_OP_lit23";
12209 case DW_OP_lit24:
12210 return "DW_OP_lit24";
12211 case DW_OP_lit25:
12212 return "DW_OP_lit25";
12213 case DW_OP_lit26:
12214 return "DW_OP_lit26";
12215 case DW_OP_lit27:
12216 return "DW_OP_lit27";
12217 case DW_OP_lit28:
12218 return "DW_OP_lit28";
12219 case DW_OP_lit29:
12220 return "DW_OP_lit29";
12221 case DW_OP_lit30:
12222 return "DW_OP_lit30";
12223 case DW_OP_lit31:
12224 return "DW_OP_lit31";
12225 case DW_OP_reg0:
12226 return "DW_OP_reg0";
12227 case DW_OP_reg1:
12228 return "DW_OP_reg1";
12229 case DW_OP_reg2:
12230 return "DW_OP_reg2";
12231 case DW_OP_reg3:
12232 return "DW_OP_reg3";
12233 case DW_OP_reg4:
12234 return "DW_OP_reg4";
12235 case DW_OP_reg5:
12236 return "DW_OP_reg5";
12237 case DW_OP_reg6:
12238 return "DW_OP_reg6";
12239 case DW_OP_reg7:
12240 return "DW_OP_reg7";
12241 case DW_OP_reg8:
12242 return "DW_OP_reg8";
12243 case DW_OP_reg9:
12244 return "DW_OP_reg9";
12245 case DW_OP_reg10:
12246 return "DW_OP_reg10";
12247 case DW_OP_reg11:
12248 return "DW_OP_reg11";
12249 case DW_OP_reg12:
12250 return "DW_OP_reg12";
12251 case DW_OP_reg13:
12252 return "DW_OP_reg13";
12253 case DW_OP_reg14:
12254 return "DW_OP_reg14";
12255 case DW_OP_reg15:
12256 return "DW_OP_reg15";
12257 case DW_OP_reg16:
12258 return "DW_OP_reg16";
12259 case DW_OP_reg17:
12260 return "DW_OP_reg17";
12261 case DW_OP_reg18:
12262 return "DW_OP_reg18";
12263 case DW_OP_reg19:
12264 return "DW_OP_reg19";
12265 case DW_OP_reg20:
12266 return "DW_OP_reg20";
12267 case DW_OP_reg21:
12268 return "DW_OP_reg21";
12269 case DW_OP_reg22:
12270 return "DW_OP_reg22";
12271 case DW_OP_reg23:
12272 return "DW_OP_reg23";
12273 case DW_OP_reg24:
12274 return "DW_OP_reg24";
12275 case DW_OP_reg25:
12276 return "DW_OP_reg25";
12277 case DW_OP_reg26:
12278 return "DW_OP_reg26";
12279 case DW_OP_reg27:
12280 return "DW_OP_reg27";
12281 case DW_OP_reg28:
12282 return "DW_OP_reg28";
12283 case DW_OP_reg29:
12284 return "DW_OP_reg29";
12285 case DW_OP_reg30:
12286 return "DW_OP_reg30";
12287 case DW_OP_reg31:
12288 return "DW_OP_reg31";
12289 case DW_OP_breg0:
12290 return "DW_OP_breg0";
12291 case DW_OP_breg1:
12292 return "DW_OP_breg1";
12293 case DW_OP_breg2:
12294 return "DW_OP_breg2";
12295 case DW_OP_breg3:
12296 return "DW_OP_breg3";
12297 case DW_OP_breg4:
12298 return "DW_OP_breg4";
12299 case DW_OP_breg5:
12300 return "DW_OP_breg5";
12301 case DW_OP_breg6:
12302 return "DW_OP_breg6";
12303 case DW_OP_breg7:
12304 return "DW_OP_breg7";
12305 case DW_OP_breg8:
12306 return "DW_OP_breg8";
12307 case DW_OP_breg9:
12308 return "DW_OP_breg9";
12309 case DW_OP_breg10:
12310 return "DW_OP_breg10";
12311 case DW_OP_breg11:
12312 return "DW_OP_breg11";
12313 case DW_OP_breg12:
12314 return "DW_OP_breg12";
12315 case DW_OP_breg13:
12316 return "DW_OP_breg13";
12317 case DW_OP_breg14:
12318 return "DW_OP_breg14";
12319 case DW_OP_breg15:
12320 return "DW_OP_breg15";
12321 case DW_OP_breg16:
12322 return "DW_OP_breg16";
12323 case DW_OP_breg17:
12324 return "DW_OP_breg17";
12325 case DW_OP_breg18:
12326 return "DW_OP_breg18";
12327 case DW_OP_breg19:
12328 return "DW_OP_breg19";
12329 case DW_OP_breg20:
12330 return "DW_OP_breg20";
12331 case DW_OP_breg21:
12332 return "DW_OP_breg21";
12333 case DW_OP_breg22:
12334 return "DW_OP_breg22";
12335 case DW_OP_breg23:
12336 return "DW_OP_breg23";
12337 case DW_OP_breg24:
12338 return "DW_OP_breg24";
12339 case DW_OP_breg25:
12340 return "DW_OP_breg25";
12341 case DW_OP_breg26:
12342 return "DW_OP_breg26";
12343 case DW_OP_breg27:
12344 return "DW_OP_breg27";
12345 case DW_OP_breg28:
12346 return "DW_OP_breg28";
12347 case DW_OP_breg29:
12348 return "DW_OP_breg29";
12349 case DW_OP_breg30:
12350 return "DW_OP_breg30";
12351 case DW_OP_breg31:
12352 return "DW_OP_breg31";
12353 case DW_OP_regx:
12354 return "DW_OP_regx";
12355 case DW_OP_fbreg:
12356 return "DW_OP_fbreg";
12357 case DW_OP_bregx:
12358 return "DW_OP_bregx";
12359 case DW_OP_piece:
12360 return "DW_OP_piece";
12361 case DW_OP_deref_size:
12362 return "DW_OP_deref_size";
12363 case DW_OP_xderef_size:
12364 return "DW_OP_xderef_size";
12365 case DW_OP_nop:
12366 return "DW_OP_nop";
12367 /* DWARF 3 extensions. */
12368 case DW_OP_push_object_address:
12369 return "DW_OP_push_object_address";
12370 case DW_OP_call2:
12371 return "DW_OP_call2";
12372 case DW_OP_call4:
12373 return "DW_OP_call4";
12374 case DW_OP_call_ref:
12375 return "DW_OP_call_ref";
12376 case DW_OP_form_tls_address:
12377 return "DW_OP_form_tls_address";
12378 case DW_OP_call_frame_cfa:
12379 return "DW_OP_call_frame_cfa";
12380 case DW_OP_bit_piece:
12381 return "DW_OP_bit_piece";
12382 /* DWARF 4 extensions. */
12383 case DW_OP_implicit_value:
12384 return "DW_OP_implicit_value";
12385 case DW_OP_stack_value:
12386 return "DW_OP_stack_value";
12387 /* GNU extensions. */
12388 case DW_OP_GNU_push_tls_address:
12389 return "DW_OP_GNU_push_tls_address";
12390 case DW_OP_GNU_uninit:
12391 return "DW_OP_GNU_uninit";
12392 default:
12393 return def ? "OP_<unknown>" : NULL;
12394 }
12395 }
12396
12397 static char *
12398 dwarf_bool_name (unsigned mybool)
12399 {
12400 if (mybool)
12401 return "TRUE";
12402 else
12403 return "FALSE";
12404 }
12405
12406 /* Convert a DWARF type code into its string name. */
12407
12408 static char *
12409 dwarf_type_encoding_name (unsigned enc)
12410 {
12411 switch (enc)
12412 {
12413 case DW_ATE_void:
12414 return "DW_ATE_void";
12415 case DW_ATE_address:
12416 return "DW_ATE_address";
12417 case DW_ATE_boolean:
12418 return "DW_ATE_boolean";
12419 case DW_ATE_complex_float:
12420 return "DW_ATE_complex_float";
12421 case DW_ATE_float:
12422 return "DW_ATE_float";
12423 case DW_ATE_signed:
12424 return "DW_ATE_signed";
12425 case DW_ATE_signed_char:
12426 return "DW_ATE_signed_char";
12427 case DW_ATE_unsigned:
12428 return "DW_ATE_unsigned";
12429 case DW_ATE_unsigned_char:
12430 return "DW_ATE_unsigned_char";
12431 /* DWARF 3. */
12432 case DW_ATE_imaginary_float:
12433 return "DW_ATE_imaginary_float";
12434 case DW_ATE_packed_decimal:
12435 return "DW_ATE_packed_decimal";
12436 case DW_ATE_numeric_string:
12437 return "DW_ATE_numeric_string";
12438 case DW_ATE_edited:
12439 return "DW_ATE_edited";
12440 case DW_ATE_signed_fixed:
12441 return "DW_ATE_signed_fixed";
12442 case DW_ATE_unsigned_fixed:
12443 return "DW_ATE_unsigned_fixed";
12444 case DW_ATE_decimal_float:
12445 return "DW_ATE_decimal_float";
12446 /* DWARF 4. */
12447 case DW_ATE_UTF:
12448 return "DW_ATE_UTF";
12449 /* HP extensions. */
12450 case DW_ATE_HP_float80:
12451 return "DW_ATE_HP_float80";
12452 case DW_ATE_HP_complex_float80:
12453 return "DW_ATE_HP_complex_float80";
12454 case DW_ATE_HP_float128:
12455 return "DW_ATE_HP_float128";
12456 case DW_ATE_HP_complex_float128:
12457 return "DW_ATE_HP_complex_float128";
12458 case DW_ATE_HP_floathpintel:
12459 return "DW_ATE_HP_floathpintel";
12460 case DW_ATE_HP_imaginary_float80:
12461 return "DW_ATE_HP_imaginary_float80";
12462 case DW_ATE_HP_imaginary_float128:
12463 return "DW_ATE_HP_imaginary_float128";
12464 default:
12465 return "DW_ATE_<unknown>";
12466 }
12467 }
12468
12469 /* Convert a DWARF call frame info operation to its string name. */
12470
12471 #if 0
12472 static char *
12473 dwarf_cfi_name (unsigned cfi_opc)
12474 {
12475 switch (cfi_opc)
12476 {
12477 case DW_CFA_advance_loc:
12478 return "DW_CFA_advance_loc";
12479 case DW_CFA_offset:
12480 return "DW_CFA_offset";
12481 case DW_CFA_restore:
12482 return "DW_CFA_restore";
12483 case DW_CFA_nop:
12484 return "DW_CFA_nop";
12485 case DW_CFA_set_loc:
12486 return "DW_CFA_set_loc";
12487 case DW_CFA_advance_loc1:
12488 return "DW_CFA_advance_loc1";
12489 case DW_CFA_advance_loc2:
12490 return "DW_CFA_advance_loc2";
12491 case DW_CFA_advance_loc4:
12492 return "DW_CFA_advance_loc4";
12493 case DW_CFA_offset_extended:
12494 return "DW_CFA_offset_extended";
12495 case DW_CFA_restore_extended:
12496 return "DW_CFA_restore_extended";
12497 case DW_CFA_undefined:
12498 return "DW_CFA_undefined";
12499 case DW_CFA_same_value:
12500 return "DW_CFA_same_value";
12501 case DW_CFA_register:
12502 return "DW_CFA_register";
12503 case DW_CFA_remember_state:
12504 return "DW_CFA_remember_state";
12505 case DW_CFA_restore_state:
12506 return "DW_CFA_restore_state";
12507 case DW_CFA_def_cfa:
12508 return "DW_CFA_def_cfa";
12509 case DW_CFA_def_cfa_register:
12510 return "DW_CFA_def_cfa_register";
12511 case DW_CFA_def_cfa_offset:
12512 return "DW_CFA_def_cfa_offset";
12513 /* DWARF 3. */
12514 case DW_CFA_def_cfa_expression:
12515 return "DW_CFA_def_cfa_expression";
12516 case DW_CFA_expression:
12517 return "DW_CFA_expression";
12518 case DW_CFA_offset_extended_sf:
12519 return "DW_CFA_offset_extended_sf";
12520 case DW_CFA_def_cfa_sf:
12521 return "DW_CFA_def_cfa_sf";
12522 case DW_CFA_def_cfa_offset_sf:
12523 return "DW_CFA_def_cfa_offset_sf";
12524 case DW_CFA_val_offset:
12525 return "DW_CFA_val_offset";
12526 case DW_CFA_val_offset_sf:
12527 return "DW_CFA_val_offset_sf";
12528 case DW_CFA_val_expression:
12529 return "DW_CFA_val_expression";
12530 /* SGI/MIPS specific. */
12531 case DW_CFA_MIPS_advance_loc8:
12532 return "DW_CFA_MIPS_advance_loc8";
12533 /* GNU extensions. */
12534 case DW_CFA_GNU_window_save:
12535 return "DW_CFA_GNU_window_save";
12536 case DW_CFA_GNU_args_size:
12537 return "DW_CFA_GNU_args_size";
12538 case DW_CFA_GNU_negative_offset_extended:
12539 return "DW_CFA_GNU_negative_offset_extended";
12540 default:
12541 return "DW_CFA_<unknown>";
12542 }
12543 }
12544 #endif
12545
12546 static void
12547 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
12548 {
12549 unsigned int i;
12550
12551 print_spaces (indent, f);
12552 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset 0x%x)\n",
12553 dwarf_tag_name (die->tag), die->abbrev, die->offset);
12554
12555 if (die->parent != NULL)
12556 {
12557 print_spaces (indent, f);
12558 fprintf_unfiltered (f, " parent at offset: 0x%x\n",
12559 die->parent->offset);
12560 }
12561
12562 print_spaces (indent, f);
12563 fprintf_unfiltered (f, " has children: %s\n",
12564 dwarf_bool_name (die->child != NULL));
12565
12566 print_spaces (indent, f);
12567 fprintf_unfiltered (f, " attributes:\n");
12568
12569 for (i = 0; i < die->num_attrs; ++i)
12570 {
12571 print_spaces (indent, f);
12572 fprintf_unfiltered (f, " %s (%s) ",
12573 dwarf_attr_name (die->attrs[i].name),
12574 dwarf_form_name (die->attrs[i].form));
12575
12576 switch (die->attrs[i].form)
12577 {
12578 case DW_FORM_ref_addr:
12579 case DW_FORM_addr:
12580 fprintf_unfiltered (f, "address: ");
12581 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
12582 break;
12583 case DW_FORM_block2:
12584 case DW_FORM_block4:
12585 case DW_FORM_block:
12586 case DW_FORM_block1:
12587 fprintf_unfiltered (f, "block: size %d", DW_BLOCK (&die->attrs[i])->size);
12588 break;
12589 case DW_FORM_exprloc:
12590 fprintf_unfiltered (f, "expression: size %u",
12591 DW_BLOCK (&die->attrs[i])->size);
12592 break;
12593 case DW_FORM_ref1:
12594 case DW_FORM_ref2:
12595 case DW_FORM_ref4:
12596 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
12597 (long) (DW_ADDR (&die->attrs[i])));
12598 break;
12599 case DW_FORM_data1:
12600 case DW_FORM_data2:
12601 case DW_FORM_data4:
12602 case DW_FORM_data8:
12603 case DW_FORM_udata:
12604 case DW_FORM_sdata:
12605 fprintf_unfiltered (f, "constant: %s",
12606 pulongest (DW_UNSND (&die->attrs[i])));
12607 break;
12608 case DW_FORM_sec_offset:
12609 fprintf_unfiltered (f, "section offset: %s",
12610 pulongest (DW_UNSND (&die->attrs[i])));
12611 break;
12612 case DW_FORM_sig8:
12613 if (DW_SIGNATURED_TYPE (&die->attrs[i]) != NULL)
12614 fprintf_unfiltered (f, "signatured type, offset: 0x%x",
12615 DW_SIGNATURED_TYPE (&die->attrs[i])->offset);
12616 else
12617 fprintf_unfiltered (f, "signatured type, offset: unknown");
12618 break;
12619 case DW_FORM_string:
12620 case DW_FORM_strp:
12621 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
12622 DW_STRING (&die->attrs[i])
12623 ? DW_STRING (&die->attrs[i]) : "",
12624 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
12625 break;
12626 case DW_FORM_flag:
12627 if (DW_UNSND (&die->attrs[i]))
12628 fprintf_unfiltered (f, "flag: TRUE");
12629 else
12630 fprintf_unfiltered (f, "flag: FALSE");
12631 break;
12632 case DW_FORM_flag_present:
12633 fprintf_unfiltered (f, "flag: TRUE");
12634 break;
12635 case DW_FORM_indirect:
12636 /* the reader will have reduced the indirect form to
12637 the "base form" so this form should not occur */
12638 fprintf_unfiltered (f, "unexpected attribute form: DW_FORM_indirect");
12639 break;
12640 default:
12641 fprintf_unfiltered (f, "unsupported attribute form: %d.",
12642 die->attrs[i].form);
12643 break;
12644 }
12645 fprintf_unfiltered (f, "\n");
12646 }
12647 }
12648
12649 static void
12650 dump_die_for_error (struct die_info *die)
12651 {
12652 dump_die_shallow (gdb_stderr, 0, die);
12653 }
12654
12655 static void
12656 dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
12657 {
12658 int indent = level * 4;
12659
12660 gdb_assert (die != NULL);
12661
12662 if (level >= max_level)
12663 return;
12664
12665 dump_die_shallow (f, indent, die);
12666
12667 if (die->child != NULL)
12668 {
12669 print_spaces (indent, f);
12670 fprintf_unfiltered (f, " Children:");
12671 if (level + 1 < max_level)
12672 {
12673 fprintf_unfiltered (f, "\n");
12674 dump_die_1 (f, level + 1, max_level, die->child);
12675 }
12676 else
12677 {
12678 fprintf_unfiltered (f, " [not printed, max nesting level reached]\n");
12679 }
12680 }
12681
12682 if (die->sibling != NULL && level > 0)
12683 {
12684 dump_die_1 (f, level, max_level, die->sibling);
12685 }
12686 }
12687
12688 /* This is called from the pdie macro in gdbinit.in.
12689 It's not static so gcc will keep a copy callable from gdb. */
12690
12691 void
12692 dump_die (struct die_info *die, int max_level)
12693 {
12694 dump_die_1 (gdb_stdlog, 0, max_level, die);
12695 }
12696
12697 static void
12698 store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
12699 {
12700 void **slot;
12701
12702 slot = htab_find_slot_with_hash (cu->die_hash, die, die->offset, INSERT);
12703
12704 *slot = die;
12705 }
12706
12707 static int
12708 is_ref_attr (struct attribute *attr)
12709 {
12710 switch (attr->form)
12711 {
12712 case DW_FORM_ref_addr:
12713 case DW_FORM_ref1:
12714 case DW_FORM_ref2:
12715 case DW_FORM_ref4:
12716 case DW_FORM_ref8:
12717 case DW_FORM_ref_udata:
12718 return 1;
12719 default:
12720 return 0;
12721 }
12722 }
12723
12724 static unsigned int
12725 dwarf2_get_ref_die_offset (struct attribute *attr)
12726 {
12727 if (is_ref_attr (attr))
12728 return DW_ADDR (attr);
12729
12730 complaint (&symfile_complaints,
12731 _("unsupported die ref attribute form: '%s'"),
12732 dwarf_form_name (attr->form));
12733 return 0;
12734 }
12735
12736 /* Return the constant value held by ATTR. Return DEFAULT_VALUE if
12737 * the value held by the attribute is not constant. */
12738
12739 static LONGEST
12740 dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
12741 {
12742 if (attr->form == DW_FORM_sdata)
12743 return DW_SND (attr);
12744 else if (attr->form == DW_FORM_udata
12745 || attr->form == DW_FORM_data1
12746 || attr->form == DW_FORM_data2
12747 || attr->form == DW_FORM_data4
12748 || attr->form == DW_FORM_data8)
12749 return DW_UNSND (attr);
12750 else
12751 {
12752 complaint (&symfile_complaints, _("Attribute value is not a constant (%s)"),
12753 dwarf_form_name (attr->form));
12754 return default_value;
12755 }
12756 }
12757
12758 /* THIS_CU has a reference to PER_CU. If necessary, load the new compilation
12759 unit and add it to our queue.
12760 The result is non-zero if PER_CU was queued, otherwise the result is zero
12761 meaning either PER_CU is already queued or it is already loaded. */
12762
12763 static int
12764 maybe_queue_comp_unit (struct dwarf2_cu *this_cu,
12765 struct dwarf2_per_cu_data *per_cu)
12766 {
12767 /* We may arrive here during partial symbol reading, if we need full
12768 DIEs to process an unusual case (e.g. template arguments). Do
12769 not queue PER_CU, just tell our caller to load its DIEs. */
12770 if (dwarf2_per_objfile->reading_partial_symbols)
12771 {
12772 if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
12773 return 1;
12774 return 0;
12775 }
12776
12777 /* Mark the dependence relation so that we don't flush PER_CU
12778 too early. */
12779 dwarf2_add_dependence (this_cu, per_cu);
12780
12781 /* If it's already on the queue, we have nothing to do. */
12782 if (per_cu->queued)
12783 return 0;
12784
12785 /* If the compilation unit is already loaded, just mark it as
12786 used. */
12787 if (per_cu->cu != NULL)
12788 {
12789 per_cu->cu->last_used = 0;
12790 return 0;
12791 }
12792
12793 /* Add it to the queue. */
12794 queue_comp_unit (per_cu, this_cu->objfile);
12795
12796 return 1;
12797 }
12798
12799 /* Follow reference or signature attribute ATTR of SRC_DIE.
12800 On entry *REF_CU is the CU of SRC_DIE.
12801 On exit *REF_CU is the CU of the result. */
12802
12803 static struct die_info *
12804 follow_die_ref_or_sig (struct die_info *src_die, struct attribute *attr,
12805 struct dwarf2_cu **ref_cu)
12806 {
12807 struct die_info *die;
12808
12809 if (is_ref_attr (attr))
12810 die = follow_die_ref (src_die, attr, ref_cu);
12811 else if (attr->form == DW_FORM_sig8)
12812 die = follow_die_sig (src_die, attr, ref_cu);
12813 else
12814 {
12815 dump_die_for_error (src_die);
12816 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
12817 (*ref_cu)->objfile->name);
12818 }
12819
12820 return die;
12821 }
12822
12823 /* Follow reference OFFSET.
12824 On entry *REF_CU is the CU of the source die referencing OFFSET.
12825 On exit *REF_CU is the CU of the result.
12826 Returns NULL if OFFSET is invalid. */
12827
12828 static struct die_info *
12829 follow_die_offset (unsigned int offset, struct dwarf2_cu **ref_cu)
12830 {
12831 struct die_info temp_die;
12832 struct dwarf2_cu *target_cu, *cu = *ref_cu;
12833
12834 gdb_assert (cu->per_cu != NULL);
12835
12836 target_cu = cu;
12837
12838 if (cu->per_cu->from_debug_types)
12839 {
12840 /* .debug_types CUs cannot reference anything outside their CU.
12841 If they need to, they have to reference a signatured type via
12842 DW_FORM_sig8. */
12843 if (! offset_in_cu_p (&cu->header, offset))
12844 return NULL;
12845 }
12846 else if (! offset_in_cu_p (&cu->header, offset))
12847 {
12848 struct dwarf2_per_cu_data *per_cu;
12849
12850 per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile);
12851
12852 /* If necessary, add it to the queue and load its DIEs. */
12853 if (maybe_queue_comp_unit (cu, per_cu))
12854 load_full_comp_unit (per_cu, cu->objfile);
12855
12856 target_cu = per_cu->cu;
12857 }
12858 else if (cu->dies == NULL)
12859 {
12860 /* We're loading full DIEs during partial symbol reading. */
12861 gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
12862 load_full_comp_unit (cu->per_cu, cu->objfile);
12863 }
12864
12865 *ref_cu = target_cu;
12866 temp_die.offset = offset;
12867 return htab_find_with_hash (target_cu->die_hash, &temp_die, offset);
12868 }
12869
12870 /* Follow reference attribute ATTR of SRC_DIE.
12871 On entry *REF_CU is the CU of SRC_DIE.
12872 On exit *REF_CU is the CU of the result. */
12873
12874 static struct die_info *
12875 follow_die_ref (struct die_info *src_die, struct attribute *attr,
12876 struct dwarf2_cu **ref_cu)
12877 {
12878 unsigned int offset = dwarf2_get_ref_die_offset (attr);
12879 struct dwarf2_cu *cu = *ref_cu;
12880 struct die_info *die;
12881
12882 die = follow_die_offset (offset, ref_cu);
12883 if (!die)
12884 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced from DIE "
12885 "at 0x%x [in module %s]"),
12886 offset, src_die->offset, cu->objfile->name);
12887
12888 return die;
12889 }
12890
12891 /* Return DWARF block and its CU referenced by OFFSET at PER_CU. Returned
12892 value is intended for DW_OP_call*. */
12893
12894 struct dwarf2_locexpr_baton
12895 dwarf2_fetch_die_location_block (unsigned int offset,
12896 struct dwarf2_per_cu_data *per_cu)
12897 {
12898 struct dwarf2_cu *cu = per_cu->cu;
12899 struct die_info *die;
12900 struct attribute *attr;
12901 struct dwarf2_locexpr_baton retval;
12902
12903 die = follow_die_offset (offset, &cu);
12904 if (!die)
12905 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
12906 offset, per_cu->cu->objfile->name);
12907
12908 attr = dwarf2_attr (die, DW_AT_location, cu);
12909 if (!attr)
12910 {
12911 /* DWARF: "If there is no such attribute, then there is no effect.". */
12912
12913 retval.data = NULL;
12914 retval.size = 0;
12915 }
12916 else
12917 {
12918 if (!attr_form_is_block (attr))
12919 error (_("Dwarf Error: DIE at 0x%x referenced in module %s "
12920 "is neither DW_FORM_block* nor DW_FORM_exprloc"),
12921 offset, per_cu->cu->objfile->name);
12922
12923 retval.data = DW_BLOCK (attr)->data;
12924 retval.size = DW_BLOCK (attr)->size;
12925 }
12926 retval.per_cu = cu->per_cu;
12927 return retval;
12928 }
12929
12930 /* Follow the signature attribute ATTR in SRC_DIE.
12931 On entry *REF_CU is the CU of SRC_DIE.
12932 On exit *REF_CU is the CU of the result. */
12933
12934 static struct die_info *
12935 follow_die_sig (struct die_info *src_die, struct attribute *attr,
12936 struct dwarf2_cu **ref_cu)
12937 {
12938 struct objfile *objfile = (*ref_cu)->objfile;
12939 struct die_info temp_die;
12940 struct signatured_type *sig_type = DW_SIGNATURED_TYPE (attr);
12941 struct dwarf2_cu *sig_cu;
12942 struct die_info *die;
12943
12944 /* sig_type will be NULL if the signatured type is missing from
12945 the debug info. */
12946 if (sig_type == NULL)
12947 error (_("Dwarf Error: Cannot find signatured DIE referenced from DIE "
12948 "at 0x%x [in module %s]"),
12949 src_die->offset, objfile->name);
12950
12951 /* If necessary, add it to the queue and load its DIEs. */
12952
12953 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu))
12954 read_signatured_type (objfile, sig_type);
12955
12956 gdb_assert (sig_type->per_cu.cu != NULL);
12957
12958 sig_cu = sig_type->per_cu.cu;
12959 temp_die.offset = sig_cu->header.offset + sig_type->type_offset;
12960 die = htab_find_with_hash (sig_cu->die_hash, &temp_die, temp_die.offset);
12961 if (die)
12962 {
12963 *ref_cu = sig_cu;
12964 return die;
12965 }
12966
12967 error (_("Dwarf Error: Cannot find signatured DIE at 0x%x referenced from DIE "
12968 "at 0x%x [in module %s]"),
12969 sig_type->type_offset, src_die->offset, objfile->name);
12970 }
12971
12972 /* Given an offset of a signatured type, return its signatured_type. */
12973
12974 static struct signatured_type *
12975 lookup_signatured_type_at_offset (struct objfile *objfile, unsigned int offset)
12976 {
12977 gdb_byte *info_ptr = dwarf2_per_objfile->types.buffer + offset;
12978 unsigned int length, initial_length_size;
12979 unsigned int sig_offset;
12980 struct signatured_type find_entry, *type_sig;
12981
12982 length = read_initial_length (objfile->obfd, info_ptr, &initial_length_size);
12983 sig_offset = (initial_length_size
12984 + 2 /*version*/
12985 + (initial_length_size == 4 ? 4 : 8) /*debug_abbrev_offset*/
12986 + 1 /*address_size*/);
12987 find_entry.signature = bfd_get_64 (objfile->obfd, info_ptr + sig_offset);
12988 type_sig = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
12989
12990 /* This is only used to lookup previously recorded types.
12991 If we didn't find it, it's our bug. */
12992 gdb_assert (type_sig != NULL);
12993 gdb_assert (offset == type_sig->offset);
12994
12995 return type_sig;
12996 }
12997
12998 /* Read in signatured type at OFFSET and build its CU and die(s). */
12999
13000 static void
13001 read_signatured_type_at_offset (struct objfile *objfile,
13002 unsigned int offset)
13003 {
13004 struct signatured_type *type_sig;
13005
13006 dwarf2_read_section (objfile, &dwarf2_per_objfile->types);
13007
13008 /* We have the section offset, but we need the signature to do the
13009 hash table lookup. */
13010 type_sig = lookup_signatured_type_at_offset (objfile, offset);
13011
13012 gdb_assert (type_sig->per_cu.cu == NULL);
13013
13014 read_signatured_type (objfile, type_sig);
13015
13016 gdb_assert (type_sig->per_cu.cu != NULL);
13017 }
13018
13019 /* Read in a signatured type and build its CU and DIEs. */
13020
13021 static void
13022 read_signatured_type (struct objfile *objfile,
13023 struct signatured_type *type_sig)
13024 {
13025 gdb_byte *types_ptr;
13026 struct die_reader_specs reader_specs;
13027 struct dwarf2_cu *cu;
13028 ULONGEST signature;
13029 struct cleanup *back_to, *free_cu_cleanup;
13030 struct attribute *attr;
13031
13032 dwarf2_read_section (objfile, &dwarf2_per_objfile->types);
13033 types_ptr = dwarf2_per_objfile->types.buffer + type_sig->offset;
13034
13035 gdb_assert (type_sig->per_cu.cu == NULL);
13036
13037 cu = xmalloc (sizeof (struct dwarf2_cu));
13038 memset (cu, 0, sizeof (struct dwarf2_cu));
13039 obstack_init (&cu->comp_unit_obstack);
13040 cu->objfile = objfile;
13041 type_sig->per_cu.cu = cu;
13042 cu->per_cu = &type_sig->per_cu;
13043
13044 /* If an error occurs while loading, release our storage. */
13045 free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
13046
13047 types_ptr = read_type_comp_unit_head (&cu->header, &signature,
13048 types_ptr, objfile->obfd);
13049 gdb_assert (signature == type_sig->signature);
13050
13051 cu->die_hash
13052 = htab_create_alloc_ex (cu->header.length / 12,
13053 die_hash,
13054 die_eq,
13055 NULL,
13056 &cu->comp_unit_obstack,
13057 hashtab_obstack_allocate,
13058 dummy_obstack_deallocate);
13059
13060 dwarf2_read_abbrevs (cu->objfile->obfd, cu);
13061 back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
13062
13063 init_cu_die_reader (&reader_specs, cu);
13064
13065 cu->dies = read_die_and_children (&reader_specs, types_ptr, &types_ptr,
13066 NULL /*parent*/);
13067
13068 /* We try not to read any attributes in this function, because not
13069 all objfiles needed for references have been loaded yet, and symbol
13070 table processing isn't initialized. But we have to set the CU language,
13071 or we won't be able to build types correctly. */
13072 attr = dwarf2_attr (cu->dies, DW_AT_language, cu);
13073 if (attr)
13074 set_cu_language (DW_UNSND (attr), cu);
13075 else
13076 set_cu_language (language_minimal, cu);
13077
13078 do_cleanups (back_to);
13079
13080 /* We've successfully allocated this compilation unit. Let our caller
13081 clean it up when finished with it. */
13082 discard_cleanups (free_cu_cleanup);
13083
13084 type_sig->per_cu.cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
13085 dwarf2_per_objfile->read_in_chain = &type_sig->per_cu;
13086 }
13087
13088 /* Decode simple location descriptions.
13089 Given a pointer to a dwarf block that defines a location, compute
13090 the location and return the value.
13091
13092 NOTE drow/2003-11-18: This function is called in two situations
13093 now: for the address of static or global variables (partial symbols
13094 only) and for offsets into structures which are expected to be
13095 (more or less) constant. The partial symbol case should go away,
13096 and only the constant case should remain. That will let this
13097 function complain more accurately. A few special modes are allowed
13098 without complaint for global variables (for instance, global
13099 register values and thread-local values).
13100
13101 A location description containing no operations indicates that the
13102 object is optimized out. The return value is 0 for that case.
13103 FIXME drow/2003-11-16: No callers check for this case any more; soon all
13104 callers will only want a very basic result and this can become a
13105 complaint.
13106
13107 Note that stack[0] is unused except as a default error return.
13108 Note that stack overflow is not yet handled. */
13109
13110 static CORE_ADDR
13111 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
13112 {
13113 struct objfile *objfile = cu->objfile;
13114 int i;
13115 int size = blk->size;
13116 gdb_byte *data = blk->data;
13117 CORE_ADDR stack[64];
13118 int stacki;
13119 unsigned int bytes_read, unsnd;
13120 gdb_byte op;
13121
13122 i = 0;
13123 stacki = 0;
13124 stack[stacki] = 0;
13125
13126 while (i < size)
13127 {
13128 op = data[i++];
13129 switch (op)
13130 {
13131 case DW_OP_lit0:
13132 case DW_OP_lit1:
13133 case DW_OP_lit2:
13134 case DW_OP_lit3:
13135 case DW_OP_lit4:
13136 case DW_OP_lit5:
13137 case DW_OP_lit6:
13138 case DW_OP_lit7:
13139 case DW_OP_lit8:
13140 case DW_OP_lit9:
13141 case DW_OP_lit10:
13142 case DW_OP_lit11:
13143 case DW_OP_lit12:
13144 case DW_OP_lit13:
13145 case DW_OP_lit14:
13146 case DW_OP_lit15:
13147 case DW_OP_lit16:
13148 case DW_OP_lit17:
13149 case DW_OP_lit18:
13150 case DW_OP_lit19:
13151 case DW_OP_lit20:
13152 case DW_OP_lit21:
13153 case DW_OP_lit22:
13154 case DW_OP_lit23:
13155 case DW_OP_lit24:
13156 case DW_OP_lit25:
13157 case DW_OP_lit26:
13158 case DW_OP_lit27:
13159 case DW_OP_lit28:
13160 case DW_OP_lit29:
13161 case DW_OP_lit30:
13162 case DW_OP_lit31:
13163 stack[++stacki] = op - DW_OP_lit0;
13164 break;
13165
13166 case DW_OP_reg0:
13167 case DW_OP_reg1:
13168 case DW_OP_reg2:
13169 case DW_OP_reg3:
13170 case DW_OP_reg4:
13171 case DW_OP_reg5:
13172 case DW_OP_reg6:
13173 case DW_OP_reg7:
13174 case DW_OP_reg8:
13175 case DW_OP_reg9:
13176 case DW_OP_reg10:
13177 case DW_OP_reg11:
13178 case DW_OP_reg12:
13179 case DW_OP_reg13:
13180 case DW_OP_reg14:
13181 case DW_OP_reg15:
13182 case DW_OP_reg16:
13183 case DW_OP_reg17:
13184 case DW_OP_reg18:
13185 case DW_OP_reg19:
13186 case DW_OP_reg20:
13187 case DW_OP_reg21:
13188 case DW_OP_reg22:
13189 case DW_OP_reg23:
13190 case DW_OP_reg24:
13191 case DW_OP_reg25:
13192 case DW_OP_reg26:
13193 case DW_OP_reg27:
13194 case DW_OP_reg28:
13195 case DW_OP_reg29:
13196 case DW_OP_reg30:
13197 case DW_OP_reg31:
13198 stack[++stacki] = op - DW_OP_reg0;
13199 if (i < size)
13200 dwarf2_complex_location_expr_complaint ();
13201 break;
13202
13203 case DW_OP_regx:
13204 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
13205 i += bytes_read;
13206 stack[++stacki] = unsnd;
13207 if (i < size)
13208 dwarf2_complex_location_expr_complaint ();
13209 break;
13210
13211 case DW_OP_addr:
13212 stack[++stacki] = read_address (objfile->obfd, &data[i],
13213 cu, &bytes_read);
13214 i += bytes_read;
13215 break;
13216
13217 case DW_OP_const1u:
13218 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
13219 i += 1;
13220 break;
13221
13222 case DW_OP_const1s:
13223 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
13224 i += 1;
13225 break;
13226
13227 case DW_OP_const2u:
13228 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
13229 i += 2;
13230 break;
13231
13232 case DW_OP_const2s:
13233 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
13234 i += 2;
13235 break;
13236
13237 case DW_OP_const4u:
13238 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
13239 i += 4;
13240 break;
13241
13242 case DW_OP_const4s:
13243 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
13244 i += 4;
13245 break;
13246
13247 case DW_OP_constu:
13248 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
13249 &bytes_read);
13250 i += bytes_read;
13251 break;
13252
13253 case DW_OP_consts:
13254 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
13255 i += bytes_read;
13256 break;
13257
13258 case DW_OP_dup:
13259 stack[stacki + 1] = stack[stacki];
13260 stacki++;
13261 break;
13262
13263 case DW_OP_plus:
13264 stack[stacki - 1] += stack[stacki];
13265 stacki--;
13266 break;
13267
13268 case DW_OP_plus_uconst:
13269 stack[stacki] += read_unsigned_leb128 (NULL, (data + i), &bytes_read);
13270 i += bytes_read;
13271 break;
13272
13273 case DW_OP_minus:
13274 stack[stacki - 1] -= stack[stacki];
13275 stacki--;
13276 break;
13277
13278 case DW_OP_deref:
13279 /* If we're not the last op, then we definitely can't encode
13280 this using GDB's address_class enum. This is valid for partial
13281 global symbols, although the variable's address will be bogus
13282 in the psymtab. */
13283 if (i < size)
13284 dwarf2_complex_location_expr_complaint ();
13285 break;
13286
13287 case DW_OP_GNU_push_tls_address:
13288 /* The top of the stack has the offset from the beginning
13289 of the thread control block at which the variable is located. */
13290 /* Nothing should follow this operator, so the top of stack would
13291 be returned. */
13292 /* This is valid for partial global symbols, but the variable's
13293 address will be bogus in the psymtab. */
13294 if (i < size)
13295 dwarf2_complex_location_expr_complaint ();
13296 break;
13297
13298 case DW_OP_GNU_uninit:
13299 break;
13300
13301 default:
13302 complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
13303 dwarf_stack_op_name (op, 1));
13304 return (stack[stacki]);
13305 }
13306 }
13307 return (stack[stacki]);
13308 }
13309
13310 /* memory allocation interface */
13311
13312 static struct dwarf_block *
13313 dwarf_alloc_block (struct dwarf2_cu *cu)
13314 {
13315 struct dwarf_block *blk;
13316
13317 blk = (struct dwarf_block *)
13318 obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
13319 return (blk);
13320 }
13321
13322 static struct abbrev_info *
13323 dwarf_alloc_abbrev (struct dwarf2_cu *cu)
13324 {
13325 struct abbrev_info *abbrev;
13326
13327 abbrev = (struct abbrev_info *)
13328 obstack_alloc (&cu->abbrev_obstack, sizeof (struct abbrev_info));
13329 memset (abbrev, 0, sizeof (struct abbrev_info));
13330 return (abbrev);
13331 }
13332
13333 static struct die_info *
13334 dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
13335 {
13336 struct die_info *die;
13337 size_t size = sizeof (struct die_info);
13338
13339 if (num_attrs > 1)
13340 size += (num_attrs - 1) * sizeof (struct attribute);
13341
13342 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
13343 memset (die, 0, sizeof (struct die_info));
13344 return (die);
13345 }
13346
13347 \f
13348 /* Macro support. */
13349
13350
13351 /* Return the full name of file number I in *LH's file name table.
13352 Use COMP_DIR as the name of the current directory of the
13353 compilation. The result is allocated using xmalloc; the caller is
13354 responsible for freeing it. */
13355 static char *
13356 file_full_name (int file, struct line_header *lh, const char *comp_dir)
13357 {
13358 /* Is the file number a valid index into the line header's file name
13359 table? Remember that file numbers start with one, not zero. */
13360 if (1 <= file && file <= lh->num_file_names)
13361 {
13362 struct file_entry *fe = &lh->file_names[file - 1];
13363
13364 if (IS_ABSOLUTE_PATH (fe->name))
13365 return xstrdup (fe->name);
13366 else
13367 {
13368 const char *dir;
13369 int dir_len;
13370 char *full_name;
13371
13372 if (fe->dir_index)
13373 dir = lh->include_dirs[fe->dir_index - 1];
13374 else
13375 dir = comp_dir;
13376
13377 if (dir)
13378 {
13379 dir_len = strlen (dir);
13380 full_name = xmalloc (dir_len + 1 + strlen (fe->name) + 1);
13381 strcpy (full_name, dir);
13382 full_name[dir_len] = '/';
13383 strcpy (full_name + dir_len + 1, fe->name);
13384 return full_name;
13385 }
13386 else
13387 return xstrdup (fe->name);
13388 }
13389 }
13390 else
13391 {
13392 /* The compiler produced a bogus file number. We can at least
13393 record the macro definitions made in the file, even if we
13394 won't be able to find the file by name. */
13395 char fake_name[80];
13396
13397 sprintf (fake_name, "<bad macro file number %d>", file);
13398
13399 complaint (&symfile_complaints,
13400 _("bad file number in macro information (%d)"),
13401 file);
13402
13403 return xstrdup (fake_name);
13404 }
13405 }
13406
13407
13408 static struct macro_source_file *
13409 macro_start_file (int file, int line,
13410 struct macro_source_file *current_file,
13411 const char *comp_dir,
13412 struct line_header *lh, struct objfile *objfile)
13413 {
13414 /* The full name of this source file. */
13415 char *full_name = file_full_name (file, lh, comp_dir);
13416
13417 /* We don't create a macro table for this compilation unit
13418 at all until we actually get a filename. */
13419 if (! pending_macros)
13420 pending_macros = new_macro_table (&objfile->objfile_obstack,
13421 objfile->macro_cache);
13422
13423 if (! current_file)
13424 /* If we have no current file, then this must be the start_file
13425 directive for the compilation unit's main source file. */
13426 current_file = macro_set_main (pending_macros, full_name);
13427 else
13428 current_file = macro_include (current_file, line, full_name);
13429
13430 xfree (full_name);
13431
13432 return current_file;
13433 }
13434
13435
13436 /* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
13437 followed by a null byte. */
13438 static char *
13439 copy_string (const char *buf, int len)
13440 {
13441 char *s = xmalloc (len + 1);
13442
13443 memcpy (s, buf, len);
13444 s[len] = '\0';
13445 return s;
13446 }
13447
13448
13449 static const char *
13450 consume_improper_spaces (const char *p, const char *body)
13451 {
13452 if (*p == ' ')
13453 {
13454 complaint (&symfile_complaints,
13455 _("macro definition contains spaces in formal argument list:\n`%s'"),
13456 body);
13457
13458 while (*p == ' ')
13459 p++;
13460 }
13461
13462 return p;
13463 }
13464
13465
13466 static void
13467 parse_macro_definition (struct macro_source_file *file, int line,
13468 const char *body)
13469 {
13470 const char *p;
13471
13472 /* The body string takes one of two forms. For object-like macro
13473 definitions, it should be:
13474
13475 <macro name> " " <definition>
13476
13477 For function-like macro definitions, it should be:
13478
13479 <macro name> "() " <definition>
13480 or
13481 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
13482
13483 Spaces may appear only where explicitly indicated, and in the
13484 <definition>.
13485
13486 The Dwarf 2 spec says that an object-like macro's name is always
13487 followed by a space, but versions of GCC around March 2002 omit
13488 the space when the macro's definition is the empty string.
13489
13490 The Dwarf 2 spec says that there should be no spaces between the
13491 formal arguments in a function-like macro's formal argument list,
13492 but versions of GCC around March 2002 include spaces after the
13493 commas. */
13494
13495
13496 /* Find the extent of the macro name. The macro name is terminated
13497 by either a space or null character (for an object-like macro) or
13498 an opening paren (for a function-like macro). */
13499 for (p = body; *p; p++)
13500 if (*p == ' ' || *p == '(')
13501 break;
13502
13503 if (*p == ' ' || *p == '\0')
13504 {
13505 /* It's an object-like macro. */
13506 int name_len = p - body;
13507 char *name = copy_string (body, name_len);
13508 const char *replacement;
13509
13510 if (*p == ' ')
13511 replacement = body + name_len + 1;
13512 else
13513 {
13514 dwarf2_macro_malformed_definition_complaint (body);
13515 replacement = body + name_len;
13516 }
13517
13518 macro_define_object (file, line, name, replacement);
13519
13520 xfree (name);
13521 }
13522 else if (*p == '(')
13523 {
13524 /* It's a function-like macro. */
13525 char *name = copy_string (body, p - body);
13526 int argc = 0;
13527 int argv_size = 1;
13528 char **argv = xmalloc (argv_size * sizeof (*argv));
13529
13530 p++;
13531
13532 p = consume_improper_spaces (p, body);
13533
13534 /* Parse the formal argument list. */
13535 while (*p && *p != ')')
13536 {
13537 /* Find the extent of the current argument name. */
13538 const char *arg_start = p;
13539
13540 while (*p && *p != ',' && *p != ')' && *p != ' ')
13541 p++;
13542
13543 if (! *p || p == arg_start)
13544 dwarf2_macro_malformed_definition_complaint (body);
13545 else
13546 {
13547 /* Make sure argv has room for the new argument. */
13548 if (argc >= argv_size)
13549 {
13550 argv_size *= 2;
13551 argv = xrealloc (argv, argv_size * sizeof (*argv));
13552 }
13553
13554 argv[argc++] = copy_string (arg_start, p - arg_start);
13555 }
13556
13557 p = consume_improper_spaces (p, body);
13558
13559 /* Consume the comma, if present. */
13560 if (*p == ',')
13561 {
13562 p++;
13563
13564 p = consume_improper_spaces (p, body);
13565 }
13566 }
13567
13568 if (*p == ')')
13569 {
13570 p++;
13571
13572 if (*p == ' ')
13573 /* Perfectly formed definition, no complaints. */
13574 macro_define_function (file, line, name,
13575 argc, (const char **) argv,
13576 p + 1);
13577 else if (*p == '\0')
13578 {
13579 /* Complain, but do define it. */
13580 dwarf2_macro_malformed_definition_complaint (body);
13581 macro_define_function (file, line, name,
13582 argc, (const char **) argv,
13583 p);
13584 }
13585 else
13586 /* Just complain. */
13587 dwarf2_macro_malformed_definition_complaint (body);
13588 }
13589 else
13590 /* Just complain. */
13591 dwarf2_macro_malformed_definition_complaint (body);
13592
13593 xfree (name);
13594 {
13595 int i;
13596
13597 for (i = 0; i < argc; i++)
13598 xfree (argv[i]);
13599 }
13600 xfree (argv);
13601 }
13602 else
13603 dwarf2_macro_malformed_definition_complaint (body);
13604 }
13605
13606
13607 static void
13608 dwarf_decode_macros (struct line_header *lh, unsigned int offset,
13609 char *comp_dir, bfd *abfd,
13610 struct dwarf2_cu *cu)
13611 {
13612 gdb_byte *mac_ptr, *mac_end;
13613 struct macro_source_file *current_file = 0;
13614 enum dwarf_macinfo_record_type macinfo_type;
13615 int at_commandline;
13616
13617 dwarf2_read_section (dwarf2_per_objfile->objfile,
13618 &dwarf2_per_objfile->macinfo);
13619 if (dwarf2_per_objfile->macinfo.buffer == NULL)
13620 {
13621 complaint (&symfile_complaints, _("missing .debug_macinfo section"));
13622 return;
13623 }
13624
13625 /* First pass: Find the name of the base filename.
13626 This filename is needed in order to process all macros whose definition
13627 (or undefinition) comes from the command line. These macros are defined
13628 before the first DW_MACINFO_start_file entry, and yet still need to be
13629 associated to the base file.
13630
13631 To determine the base file name, we scan the macro definitions until we
13632 reach the first DW_MACINFO_start_file entry. We then initialize
13633 CURRENT_FILE accordingly so that any macro definition found before the
13634 first DW_MACINFO_start_file can still be associated to the base file. */
13635
13636 mac_ptr = dwarf2_per_objfile->macinfo.buffer + offset;
13637 mac_end = dwarf2_per_objfile->macinfo.buffer
13638 + dwarf2_per_objfile->macinfo.size;
13639
13640 do
13641 {
13642 /* Do we at least have room for a macinfo type byte? */
13643 if (mac_ptr >= mac_end)
13644 {
13645 /* Complaint is printed during the second pass as GDB will probably
13646 stop the first pass earlier upon finding DW_MACINFO_start_file. */
13647 break;
13648 }
13649
13650 macinfo_type = read_1_byte (abfd, mac_ptr);
13651 mac_ptr++;
13652
13653 switch (macinfo_type)
13654 {
13655 /* A zero macinfo type indicates the end of the macro
13656 information. */
13657 case 0:
13658 break;
13659
13660 case DW_MACINFO_define:
13661 case DW_MACINFO_undef:
13662 /* Only skip the data by MAC_PTR. */
13663 {
13664 unsigned int bytes_read;
13665
13666 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
13667 mac_ptr += bytes_read;
13668 read_direct_string (abfd, mac_ptr, &bytes_read);
13669 mac_ptr += bytes_read;
13670 }
13671 break;
13672
13673 case DW_MACINFO_start_file:
13674 {
13675 unsigned int bytes_read;
13676 int line, file;
13677
13678 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
13679 mac_ptr += bytes_read;
13680 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
13681 mac_ptr += bytes_read;
13682
13683 current_file = macro_start_file (file, line, current_file, comp_dir,
13684 lh, cu->objfile);
13685 }
13686 break;
13687
13688 case DW_MACINFO_end_file:
13689 /* No data to skip by MAC_PTR. */
13690 break;
13691
13692 case DW_MACINFO_vendor_ext:
13693 /* Only skip the data by MAC_PTR. */
13694 {
13695 unsigned int bytes_read;
13696
13697 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
13698 mac_ptr += bytes_read;
13699 read_direct_string (abfd, mac_ptr, &bytes_read);
13700 mac_ptr += bytes_read;
13701 }
13702 break;
13703
13704 default:
13705 break;
13706 }
13707 } while (macinfo_type != 0 && current_file == NULL);
13708
13709 /* Second pass: Process all entries.
13710
13711 Use the AT_COMMAND_LINE flag to determine whether we are still processing
13712 command-line macro definitions/undefinitions. This flag is unset when we
13713 reach the first DW_MACINFO_start_file entry. */
13714
13715 mac_ptr = dwarf2_per_objfile->macinfo.buffer + offset;
13716
13717 /* Determines if GDB is still before first DW_MACINFO_start_file. If true
13718 GDB is still reading the definitions from command line. First
13719 DW_MACINFO_start_file will need to be ignored as it was already executed
13720 to create CURRENT_FILE for the main source holding also the command line
13721 definitions. On first met DW_MACINFO_start_file this flag is reset to
13722 normally execute all the remaining DW_MACINFO_start_file macinfos. */
13723
13724 at_commandline = 1;
13725
13726 do
13727 {
13728 /* Do we at least have room for a macinfo type byte? */
13729 if (mac_ptr >= mac_end)
13730 {
13731 dwarf2_macros_too_long_complaint ();
13732 break;
13733 }
13734
13735 macinfo_type = read_1_byte (abfd, mac_ptr);
13736 mac_ptr++;
13737
13738 switch (macinfo_type)
13739 {
13740 /* A zero macinfo type indicates the end of the macro
13741 information. */
13742 case 0:
13743 break;
13744
13745 case DW_MACINFO_define:
13746 case DW_MACINFO_undef:
13747 {
13748 unsigned int bytes_read;
13749 int line;
13750 char *body;
13751
13752 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
13753 mac_ptr += bytes_read;
13754 body = read_direct_string (abfd, mac_ptr, &bytes_read);
13755 mac_ptr += bytes_read;
13756
13757 if (! current_file)
13758 {
13759 /* DWARF violation as no main source is present. */
13760 complaint (&symfile_complaints,
13761 _("debug info with no main source gives macro %s "
13762 "on line %d: %s"),
13763 macinfo_type == DW_MACINFO_define ?
13764 _("definition") :
13765 macinfo_type == DW_MACINFO_undef ?
13766 _("undefinition") :
13767 _("something-or-other"), line, body);
13768 break;
13769 }
13770 if ((line == 0 && !at_commandline) || (line != 0 && at_commandline))
13771 complaint (&symfile_complaints,
13772 _("debug info gives %s macro %s with %s line %d: %s"),
13773 at_commandline ? _("command-line") : _("in-file"),
13774 macinfo_type == DW_MACINFO_define ?
13775 _("definition") :
13776 macinfo_type == DW_MACINFO_undef ?
13777 _("undefinition") :
13778 _("something-or-other"),
13779 line == 0 ? _("zero") : _("non-zero"), line, body);
13780
13781 if (macinfo_type == DW_MACINFO_define)
13782 parse_macro_definition (current_file, line, body);
13783 else if (macinfo_type == DW_MACINFO_undef)
13784 macro_undef (current_file, line, body);
13785 }
13786 break;
13787
13788 case DW_MACINFO_start_file:
13789 {
13790 unsigned int bytes_read;
13791 int line, file;
13792
13793 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
13794 mac_ptr += bytes_read;
13795 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
13796 mac_ptr += bytes_read;
13797
13798 if ((line == 0 && !at_commandline) || (line != 0 && at_commandline))
13799 complaint (&symfile_complaints,
13800 _("debug info gives source %d included "
13801 "from %s at %s line %d"),
13802 file, at_commandline ? _("command-line") : _("file"),
13803 line == 0 ? _("zero") : _("non-zero"), line);
13804
13805 if (at_commandline)
13806 {
13807 /* This DW_MACINFO_start_file was executed in the pass one. */
13808 at_commandline = 0;
13809 }
13810 else
13811 current_file = macro_start_file (file, line,
13812 current_file, comp_dir,
13813 lh, cu->objfile);
13814 }
13815 break;
13816
13817 case DW_MACINFO_end_file:
13818 if (! current_file)
13819 complaint (&symfile_complaints,
13820 _("macro debug info has an unmatched `close_file' directive"));
13821 else
13822 {
13823 current_file = current_file->included_by;
13824 if (! current_file)
13825 {
13826 enum dwarf_macinfo_record_type next_type;
13827
13828 /* GCC circa March 2002 doesn't produce the zero
13829 type byte marking the end of the compilation
13830 unit. Complain if it's not there, but exit no
13831 matter what. */
13832
13833 /* Do we at least have room for a macinfo type byte? */
13834 if (mac_ptr >= mac_end)
13835 {
13836 dwarf2_macros_too_long_complaint ();
13837 return;
13838 }
13839
13840 /* We don't increment mac_ptr here, so this is just
13841 a look-ahead. */
13842 next_type = read_1_byte (abfd, mac_ptr);
13843 if (next_type != 0)
13844 complaint (&symfile_complaints,
13845 _("no terminating 0-type entry for macros in `.debug_macinfo' section"));
13846
13847 return;
13848 }
13849 }
13850 break;
13851
13852 case DW_MACINFO_vendor_ext:
13853 {
13854 unsigned int bytes_read;
13855 int constant;
13856 char *string;
13857
13858 constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
13859 mac_ptr += bytes_read;
13860 string = read_direct_string (abfd, mac_ptr, &bytes_read);
13861 mac_ptr += bytes_read;
13862
13863 /* We don't recognize any vendor extensions. */
13864 }
13865 break;
13866 }
13867 } while (macinfo_type != 0);
13868 }
13869
13870 /* Check if the attribute's form is a DW_FORM_block*
13871 if so return true else false. */
13872 static int
13873 attr_form_is_block (struct attribute *attr)
13874 {
13875 return (attr == NULL ? 0 :
13876 attr->form == DW_FORM_block1
13877 || attr->form == DW_FORM_block2
13878 || attr->form == DW_FORM_block4
13879 || attr->form == DW_FORM_block
13880 || attr->form == DW_FORM_exprloc);
13881 }
13882
13883 /* Return non-zero if ATTR's value is a section offset --- classes
13884 lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
13885 You may use DW_UNSND (attr) to retrieve such offsets.
13886
13887 Section 7.5.4, "Attribute Encodings", explains that no attribute
13888 may have a value that belongs to more than one of these classes; it
13889 would be ambiguous if we did, because we use the same forms for all
13890 of them. */
13891 static int
13892 attr_form_is_section_offset (struct attribute *attr)
13893 {
13894 return (attr->form == DW_FORM_data4
13895 || attr->form == DW_FORM_data8
13896 || attr->form == DW_FORM_sec_offset);
13897 }
13898
13899
13900 /* Return non-zero if ATTR's value falls in the 'constant' class, or
13901 zero otherwise. When this function returns true, you can apply
13902 dwarf2_get_attr_constant_value to it.
13903
13904 However, note that for some attributes you must check
13905 attr_form_is_section_offset before using this test. DW_FORM_data4
13906 and DW_FORM_data8 are members of both the constant class, and of
13907 the classes that contain offsets into other debug sections
13908 (lineptr, loclistptr, macptr or rangelistptr). The DWARF spec says
13909 that, if an attribute's can be either a constant or one of the
13910 section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
13911 taken as section offsets, not constants. */
13912 static int
13913 attr_form_is_constant (struct attribute *attr)
13914 {
13915 switch (attr->form)
13916 {
13917 case DW_FORM_sdata:
13918 case DW_FORM_udata:
13919 case DW_FORM_data1:
13920 case DW_FORM_data2:
13921 case DW_FORM_data4:
13922 case DW_FORM_data8:
13923 return 1;
13924 default:
13925 return 0;
13926 }
13927 }
13928
13929 static void
13930 dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
13931 struct dwarf2_cu *cu)
13932 {
13933 if (attr_form_is_section_offset (attr)
13934 /* ".debug_loc" may not exist at all, or the offset may be outside
13935 the section. If so, fall through to the complaint in the
13936 other branch. */
13937 && DW_UNSND (attr) < dwarf2_per_objfile->loc.size)
13938 {
13939 struct dwarf2_loclist_baton *baton;
13940
13941 baton = obstack_alloc (&cu->objfile->objfile_obstack,
13942 sizeof (struct dwarf2_loclist_baton));
13943 baton->per_cu = cu->per_cu;
13944 gdb_assert (baton->per_cu);
13945
13946 dwarf2_read_section (dwarf2_per_objfile->objfile,
13947 &dwarf2_per_objfile->loc);
13948
13949 /* We don't know how long the location list is, but make sure we
13950 don't run off the edge of the section. */
13951 baton->size = dwarf2_per_objfile->loc.size - DW_UNSND (attr);
13952 baton->data = dwarf2_per_objfile->loc.buffer + DW_UNSND (attr);
13953 baton->base_address = cu->base_address;
13954 if (cu->base_known == 0)
13955 complaint (&symfile_complaints,
13956 _("Location list used without specifying the CU base address."));
13957
13958 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_loclist_funcs;
13959 SYMBOL_LOCATION_BATON (sym) = baton;
13960 }
13961 else
13962 {
13963 struct dwarf2_locexpr_baton *baton;
13964
13965 baton = obstack_alloc (&cu->objfile->objfile_obstack,
13966 sizeof (struct dwarf2_locexpr_baton));
13967 baton->per_cu = cu->per_cu;
13968 gdb_assert (baton->per_cu);
13969
13970 if (attr_form_is_block (attr))
13971 {
13972 /* Note that we're just copying the block's data pointer
13973 here, not the actual data. We're still pointing into the
13974 info_buffer for SYM's objfile; right now we never release
13975 that buffer, but when we do clean up properly this may
13976 need to change. */
13977 baton->size = DW_BLOCK (attr)->size;
13978 baton->data = DW_BLOCK (attr)->data;
13979 }
13980 else
13981 {
13982 dwarf2_invalid_attrib_class_complaint ("location description",
13983 SYMBOL_NATURAL_NAME (sym));
13984 baton->size = 0;
13985 baton->data = NULL;
13986 }
13987
13988 SYMBOL_COMPUTED_OPS (sym) = &dwarf2_locexpr_funcs;
13989 SYMBOL_LOCATION_BATON (sym) = baton;
13990 }
13991 }
13992
13993 /* Return the OBJFILE associated with the compilation unit CU. If CU
13994 came from a separate debuginfo file, then the master objfile is
13995 returned. */
13996
13997 struct objfile *
13998 dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
13999 {
14000 struct objfile *objfile = per_cu->objfile;
14001
14002 /* Return the master objfile, so that we can report and look up the
14003 correct file containing this variable. */
14004 if (objfile->separate_debug_objfile_backlink)
14005 objfile = objfile->separate_debug_objfile_backlink;
14006
14007 return objfile;
14008 }
14009
14010 /* Return the address size given in the compilation unit header for CU. */
14011
14012 CORE_ADDR
14013 dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
14014 {
14015 if (per_cu->cu)
14016 return per_cu->cu->header.addr_size;
14017 else
14018 {
14019 /* If the CU is not currently read in, we re-read its header. */
14020 struct objfile *objfile = per_cu->objfile;
14021 struct dwarf2_per_objfile *per_objfile
14022 = objfile_data (objfile, dwarf2_objfile_data_key);
14023 gdb_byte *info_ptr = per_objfile->info.buffer + per_cu->offset;
14024 struct comp_unit_head cu_header;
14025
14026 memset (&cu_header, 0, sizeof cu_header);
14027 read_comp_unit_head (&cu_header, info_ptr, objfile->obfd);
14028 return cu_header.addr_size;
14029 }
14030 }
14031
14032 /* Return the offset size given in the compilation unit header for CU. */
14033
14034 int
14035 dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
14036 {
14037 if (per_cu->cu)
14038 return per_cu->cu->header.offset_size;
14039 else
14040 {
14041 /* If the CU is not currently read in, we re-read its header. */
14042 struct objfile *objfile = per_cu->objfile;
14043 struct dwarf2_per_objfile *per_objfile
14044 = objfile_data (objfile, dwarf2_objfile_data_key);
14045 gdb_byte *info_ptr = per_objfile->info.buffer + per_cu->offset;
14046 struct comp_unit_head cu_header;
14047
14048 memset (&cu_header, 0, sizeof cu_header);
14049 read_comp_unit_head (&cu_header, info_ptr, objfile->obfd);
14050 return cu_header.offset_size;
14051 }
14052 }
14053
14054 /* Return the text offset of the CU. The returned offset comes from
14055 this CU's objfile. If this objfile came from a separate debuginfo
14056 file, then the offset may be different from the corresponding
14057 offset in the parent objfile. */
14058
14059 CORE_ADDR
14060 dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
14061 {
14062 struct objfile *objfile = per_cu->objfile;
14063
14064 return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
14065 }
14066
14067 /* Locate the .debug_info compilation unit from CU's objfile which contains
14068 the DIE at OFFSET. Raises an error on failure. */
14069
14070 static struct dwarf2_per_cu_data *
14071 dwarf2_find_containing_comp_unit (unsigned int offset,
14072 struct objfile *objfile)
14073 {
14074 struct dwarf2_per_cu_data *this_cu;
14075 int low, high;
14076
14077 low = 0;
14078 high = dwarf2_per_objfile->n_comp_units - 1;
14079 while (high > low)
14080 {
14081 int mid = low + (high - low) / 2;
14082
14083 if (dwarf2_per_objfile->all_comp_units[mid]->offset >= offset)
14084 high = mid;
14085 else
14086 low = mid + 1;
14087 }
14088 gdb_assert (low == high);
14089 if (dwarf2_per_objfile->all_comp_units[low]->offset > offset)
14090 {
14091 if (low == 0)
14092 error (_("Dwarf Error: could not find partial DIE containing "
14093 "offset 0x%lx [in module %s]"),
14094 (long) offset, bfd_get_filename (objfile->obfd));
14095
14096 gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset <= offset);
14097 return dwarf2_per_objfile->all_comp_units[low-1];
14098 }
14099 else
14100 {
14101 this_cu = dwarf2_per_objfile->all_comp_units[low];
14102 if (low == dwarf2_per_objfile->n_comp_units - 1
14103 && offset >= this_cu->offset + this_cu->length)
14104 error (_("invalid dwarf2 offset %u"), offset);
14105 gdb_assert (offset < this_cu->offset + this_cu->length);
14106 return this_cu;
14107 }
14108 }
14109
14110 /* Locate the compilation unit from OBJFILE which is located at exactly
14111 OFFSET. Raises an error on failure. */
14112
14113 static struct dwarf2_per_cu_data *
14114 dwarf2_find_comp_unit (unsigned int offset, struct objfile *objfile)
14115 {
14116 struct dwarf2_per_cu_data *this_cu;
14117
14118 this_cu = dwarf2_find_containing_comp_unit (offset, objfile);
14119 if (this_cu->offset != offset)
14120 error (_("no compilation unit with offset %u."), offset);
14121 return this_cu;
14122 }
14123
14124 /* Malloc space for a dwarf2_cu for OBJFILE and initialize it. */
14125
14126 static struct dwarf2_cu *
14127 alloc_one_comp_unit (struct objfile *objfile)
14128 {
14129 struct dwarf2_cu *cu = xcalloc (1, sizeof (struct dwarf2_cu));
14130 cu->objfile = objfile;
14131 obstack_init (&cu->comp_unit_obstack);
14132 return cu;
14133 }
14134
14135 /* Release one cached compilation unit, CU. We unlink it from the tree
14136 of compilation units, but we don't remove it from the read_in_chain;
14137 the caller is responsible for that.
14138 NOTE: DATA is a void * because this function is also used as a
14139 cleanup routine. */
14140
14141 static void
14142 free_one_comp_unit (void *data)
14143 {
14144 struct dwarf2_cu *cu = data;
14145
14146 if (cu->per_cu != NULL)
14147 cu->per_cu->cu = NULL;
14148 cu->per_cu = NULL;
14149
14150 obstack_free (&cu->comp_unit_obstack, NULL);
14151
14152 xfree (cu);
14153 }
14154
14155 /* This cleanup function is passed the address of a dwarf2_cu on the stack
14156 when we're finished with it. We can't free the pointer itself, but be
14157 sure to unlink it from the cache. Also release any associated storage
14158 and perform cache maintenance.
14159
14160 Only used during partial symbol parsing. */
14161
14162 static void
14163 free_stack_comp_unit (void *data)
14164 {
14165 struct dwarf2_cu *cu = data;
14166
14167 obstack_free (&cu->comp_unit_obstack, NULL);
14168 cu->partial_dies = NULL;
14169
14170 if (cu->per_cu != NULL)
14171 {
14172 /* This compilation unit is on the stack in our caller, so we
14173 should not xfree it. Just unlink it. */
14174 cu->per_cu->cu = NULL;
14175 cu->per_cu = NULL;
14176
14177 /* If we had a per-cu pointer, then we may have other compilation
14178 units loaded, so age them now. */
14179 age_cached_comp_units ();
14180 }
14181 }
14182
14183 /* Free all cached compilation units. */
14184
14185 static void
14186 free_cached_comp_units (void *data)
14187 {
14188 struct dwarf2_per_cu_data *per_cu, **last_chain;
14189
14190 per_cu = dwarf2_per_objfile->read_in_chain;
14191 last_chain = &dwarf2_per_objfile->read_in_chain;
14192 while (per_cu != NULL)
14193 {
14194 struct dwarf2_per_cu_data *next_cu;
14195
14196 next_cu = per_cu->cu->read_in_chain;
14197
14198 free_one_comp_unit (per_cu->cu);
14199 *last_chain = next_cu;
14200
14201 per_cu = next_cu;
14202 }
14203 }
14204
14205 /* Increase the age counter on each cached compilation unit, and free
14206 any that are too old. */
14207
14208 static void
14209 age_cached_comp_units (void)
14210 {
14211 struct dwarf2_per_cu_data *per_cu, **last_chain;
14212
14213 dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
14214 per_cu = dwarf2_per_objfile->read_in_chain;
14215 while (per_cu != NULL)
14216 {
14217 per_cu->cu->last_used ++;
14218 if (per_cu->cu->last_used <= dwarf2_max_cache_age)
14219 dwarf2_mark (per_cu->cu);
14220 per_cu = per_cu->cu->read_in_chain;
14221 }
14222
14223 per_cu = dwarf2_per_objfile->read_in_chain;
14224 last_chain = &dwarf2_per_objfile->read_in_chain;
14225 while (per_cu != NULL)
14226 {
14227 struct dwarf2_per_cu_data *next_cu;
14228
14229 next_cu = per_cu->cu->read_in_chain;
14230
14231 if (!per_cu->cu->mark)
14232 {
14233 free_one_comp_unit (per_cu->cu);
14234 *last_chain = next_cu;
14235 }
14236 else
14237 last_chain = &per_cu->cu->read_in_chain;
14238
14239 per_cu = next_cu;
14240 }
14241 }
14242
14243 /* Remove a single compilation unit from the cache. */
14244
14245 static void
14246 free_one_cached_comp_unit (void *target_cu)
14247 {
14248 struct dwarf2_per_cu_data *per_cu, **last_chain;
14249
14250 per_cu = dwarf2_per_objfile->read_in_chain;
14251 last_chain = &dwarf2_per_objfile->read_in_chain;
14252 while (per_cu != NULL)
14253 {
14254 struct dwarf2_per_cu_data *next_cu;
14255
14256 next_cu = per_cu->cu->read_in_chain;
14257
14258 if (per_cu->cu == target_cu)
14259 {
14260 free_one_comp_unit (per_cu->cu);
14261 *last_chain = next_cu;
14262 break;
14263 }
14264 else
14265 last_chain = &per_cu->cu->read_in_chain;
14266
14267 per_cu = next_cu;
14268 }
14269 }
14270
14271 /* Release all extra memory associated with OBJFILE. */
14272
14273 void
14274 dwarf2_free_objfile (struct objfile *objfile)
14275 {
14276 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
14277
14278 if (dwarf2_per_objfile == NULL)
14279 return;
14280
14281 /* Cached DIE trees use xmalloc and the comp_unit_obstack. */
14282 free_cached_comp_units (NULL);
14283
14284 if (dwarf2_per_objfile->using_index)
14285 {
14286 int i;
14287
14288 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
14289 {
14290 int j;
14291 struct dwarf2_per_cu_data *per_cu =
14292 dwarf2_per_objfile->all_comp_units[i];
14293
14294 if (!per_cu->v.quick->lines)
14295 continue;
14296
14297 for (j = 0; j < per_cu->v.quick->lines->num_file_names; ++j)
14298 {
14299 if (per_cu->v.quick->file_names)
14300 xfree ((void *) per_cu->v.quick->file_names[j]);
14301 if (per_cu->v.quick->full_names)
14302 xfree ((void *) per_cu->v.quick->full_names[j]);
14303 }
14304
14305 free_line_header (per_cu->v.quick->lines);
14306 }
14307 }
14308
14309 /* Everything else should be on the objfile obstack. */
14310 }
14311
14312 /* A pair of DIE offset and GDB type pointer. We store these
14313 in a hash table separate from the DIEs, and preserve them
14314 when the DIEs are flushed out of cache. */
14315
14316 struct dwarf2_offset_and_type
14317 {
14318 unsigned int offset;
14319 struct type *type;
14320 };
14321
14322 /* Hash function for a dwarf2_offset_and_type. */
14323
14324 static hashval_t
14325 offset_and_type_hash (const void *item)
14326 {
14327 const struct dwarf2_offset_and_type *ofs = item;
14328
14329 return ofs->offset;
14330 }
14331
14332 /* Equality function for a dwarf2_offset_and_type. */
14333
14334 static int
14335 offset_and_type_eq (const void *item_lhs, const void *item_rhs)
14336 {
14337 const struct dwarf2_offset_and_type *ofs_lhs = item_lhs;
14338 const struct dwarf2_offset_and_type *ofs_rhs = item_rhs;
14339
14340 return ofs_lhs->offset == ofs_rhs->offset;
14341 }
14342
14343 /* Set the type associated with DIE to TYPE. Save it in CU's hash
14344 table if necessary. For convenience, return TYPE.
14345
14346 The DIEs reading must have careful ordering to:
14347 * Not cause infite loops trying to read in DIEs as a prerequisite for
14348 reading current DIE.
14349 * Not trying to dereference contents of still incompletely read in types
14350 while reading in other DIEs.
14351 * Enable referencing still incompletely read in types just by a pointer to
14352 the type without accessing its fields.
14353
14354 Therefore caller should follow these rules:
14355 * Try to fetch any prerequisite types we may need to build this DIE type
14356 before building the type and calling set_die_type.
14357 * After building type call set_die_type for current DIE as soon as
14358 possible before fetching more types to complete the current type.
14359 * Make the type as complete as possible before fetching more types. */
14360
14361 static struct type *
14362 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
14363 {
14364 struct dwarf2_offset_and_type **slot, ofs;
14365 struct objfile *objfile = cu->objfile;
14366 htab_t *type_hash_ptr;
14367
14368 /* For Ada types, make sure that the gnat-specific data is always
14369 initialized (if not already set). There are a few types where
14370 we should not be doing so, because the type-specific area is
14371 already used to hold some other piece of info (eg: TYPE_CODE_FLT
14372 where the type-specific area is used to store the floatformat).
14373 But this is not a problem, because the gnat-specific information
14374 is actually not needed for these types. */
14375 if (need_gnat_info (cu)
14376 && TYPE_CODE (type) != TYPE_CODE_FUNC
14377 && TYPE_CODE (type) != TYPE_CODE_FLT
14378 && !HAVE_GNAT_AUX_INFO (type))
14379 INIT_GNAT_SPECIFIC (type);
14380
14381 if (cu->per_cu->from_debug_types)
14382 type_hash_ptr = &dwarf2_per_objfile->debug_types_type_hash;
14383 else
14384 type_hash_ptr = &dwarf2_per_objfile->debug_info_type_hash;
14385
14386 if (*type_hash_ptr == NULL)
14387 {
14388 *type_hash_ptr
14389 = htab_create_alloc_ex (127,
14390 offset_and_type_hash,
14391 offset_and_type_eq,
14392 NULL,
14393 &objfile->objfile_obstack,
14394 hashtab_obstack_allocate,
14395 dummy_obstack_deallocate);
14396 }
14397
14398 ofs.offset = die->offset;
14399 ofs.type = type;
14400 slot = (struct dwarf2_offset_and_type **)
14401 htab_find_slot_with_hash (*type_hash_ptr, &ofs, ofs.offset, INSERT);
14402 if (*slot)
14403 complaint (&symfile_complaints,
14404 _("A problem internal to GDB: DIE 0x%x has type already set"),
14405 die->offset);
14406 *slot = obstack_alloc (&objfile->objfile_obstack, sizeof (**slot));
14407 **slot = ofs;
14408 return type;
14409 }
14410
14411 /* Look up the type for the die at DIE_OFFSET in the appropriate type_hash
14412 table, or return NULL if the die does not have a saved type. */
14413
14414 static struct type *
14415 get_die_type_at_offset (unsigned int offset,
14416 struct dwarf2_per_cu_data *per_cu)
14417 {
14418 struct dwarf2_offset_and_type *slot, ofs;
14419 htab_t type_hash;
14420
14421 if (per_cu->from_debug_types)
14422 type_hash = dwarf2_per_objfile->debug_types_type_hash;
14423 else
14424 type_hash = dwarf2_per_objfile->debug_info_type_hash;
14425 if (type_hash == NULL)
14426 return NULL;
14427
14428 ofs.offset = offset;
14429 slot = htab_find_with_hash (type_hash, &ofs, ofs.offset);
14430 if (slot)
14431 return slot->type;
14432 else
14433 return NULL;
14434 }
14435
14436 /* Look up the type for DIE in the appropriate type_hash table,
14437 or return NULL if DIE does not have a saved type. */
14438
14439 static struct type *
14440 get_die_type (struct die_info *die, struct dwarf2_cu *cu)
14441 {
14442 return get_die_type_at_offset (die->offset, cu->per_cu);
14443 }
14444
14445 /* Add a dependence relationship from CU to REF_PER_CU. */
14446
14447 static void
14448 dwarf2_add_dependence (struct dwarf2_cu *cu,
14449 struct dwarf2_per_cu_data *ref_per_cu)
14450 {
14451 void **slot;
14452
14453 if (cu->dependencies == NULL)
14454 cu->dependencies
14455 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
14456 NULL, &cu->comp_unit_obstack,
14457 hashtab_obstack_allocate,
14458 dummy_obstack_deallocate);
14459
14460 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
14461 if (*slot == NULL)
14462 *slot = ref_per_cu;
14463 }
14464
14465 /* Subroutine of dwarf2_mark to pass to htab_traverse.
14466 Set the mark field in every compilation unit in the
14467 cache that we must keep because we are keeping CU. */
14468
14469 static int
14470 dwarf2_mark_helper (void **slot, void *data)
14471 {
14472 struct dwarf2_per_cu_data *per_cu;
14473
14474 per_cu = (struct dwarf2_per_cu_data *) *slot;
14475 if (per_cu->cu->mark)
14476 return 1;
14477 per_cu->cu->mark = 1;
14478
14479 if (per_cu->cu->dependencies != NULL)
14480 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
14481
14482 return 1;
14483 }
14484
14485 /* Set the mark field in CU and in every other compilation unit in the
14486 cache that we must keep because we are keeping CU. */
14487
14488 static void
14489 dwarf2_mark (struct dwarf2_cu *cu)
14490 {
14491 if (cu->mark)
14492 return;
14493 cu->mark = 1;
14494 if (cu->dependencies != NULL)
14495 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
14496 }
14497
14498 static void
14499 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
14500 {
14501 while (per_cu)
14502 {
14503 per_cu->cu->mark = 0;
14504 per_cu = per_cu->cu->read_in_chain;
14505 }
14506 }
14507
14508 /* Trivial hash function for partial_die_info: the hash value of a DIE
14509 is its offset in .debug_info for this objfile. */
14510
14511 static hashval_t
14512 partial_die_hash (const void *item)
14513 {
14514 const struct partial_die_info *part_die = item;
14515
14516 return part_die->offset;
14517 }
14518
14519 /* Trivial comparison function for partial_die_info structures: two DIEs
14520 are equal if they have the same offset. */
14521
14522 static int
14523 partial_die_eq (const void *item_lhs, const void *item_rhs)
14524 {
14525 const struct partial_die_info *part_die_lhs = item_lhs;
14526 const struct partial_die_info *part_die_rhs = item_rhs;
14527
14528 return part_die_lhs->offset == part_die_rhs->offset;
14529 }
14530
14531 static struct cmd_list_element *set_dwarf2_cmdlist;
14532 static struct cmd_list_element *show_dwarf2_cmdlist;
14533
14534 static void
14535 set_dwarf2_cmd (char *args, int from_tty)
14536 {
14537 help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout);
14538 }
14539
14540 static void
14541 show_dwarf2_cmd (char *args, int from_tty)
14542 {
14543 cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
14544 }
14545
14546 /* If section described by INFO was mmapped, munmap it now. */
14547
14548 static void
14549 munmap_section_buffer (struct dwarf2_section_info *info)
14550 {
14551 if (info->was_mmapped)
14552 {
14553 #ifdef HAVE_MMAP
14554 intptr_t begin = (intptr_t) info->buffer;
14555 intptr_t map_begin = begin & ~(pagesize - 1);
14556 size_t map_length = info->size + begin - map_begin;
14557
14558 gdb_assert (munmap ((void *) map_begin, map_length) == 0);
14559 #else
14560 /* Without HAVE_MMAP, we should never be here to begin with. */
14561 gdb_assert_not_reached ("no mmap support");
14562 #endif
14563 }
14564 }
14565
14566 /* munmap debug sections for OBJFILE, if necessary. */
14567
14568 static void
14569 dwarf2_per_objfile_free (struct objfile *objfile, void *d)
14570 {
14571 struct dwarf2_per_objfile *data = d;
14572
14573 /* This is sorted according to the order they're defined in to make it easier
14574 to keep in sync. */
14575 munmap_section_buffer (&data->info);
14576 munmap_section_buffer (&data->abbrev);
14577 munmap_section_buffer (&data->line);
14578 munmap_section_buffer (&data->loc);
14579 munmap_section_buffer (&data->macinfo);
14580 munmap_section_buffer (&data->str);
14581 munmap_section_buffer (&data->ranges);
14582 munmap_section_buffer (&data->types);
14583 munmap_section_buffer (&data->frame);
14584 munmap_section_buffer (&data->eh_frame);
14585 munmap_section_buffer (&data->gdb_index);
14586 }
14587
14588 \f
14589
14590 /* The contents of the hash table we create when building the string
14591 table. */
14592 struct strtab_entry
14593 {
14594 offset_type offset;
14595 const char *str;
14596 };
14597
14598 /* Hash function for a strtab_entry. */
14599 static hashval_t
14600 hash_strtab_entry (const void *e)
14601 {
14602 const struct strtab_entry *entry = e;
14603 return mapped_index_string_hash (entry->str);
14604 }
14605
14606 /* Equality function for a strtab_entry. */
14607 static int
14608 eq_strtab_entry (const void *a, const void *b)
14609 {
14610 const struct strtab_entry *ea = a;
14611 const struct strtab_entry *eb = b;
14612 return !strcmp (ea->str, eb->str);
14613 }
14614
14615 /* Create a strtab_entry hash table. */
14616 static htab_t
14617 create_strtab (void)
14618 {
14619 return htab_create_alloc (100, hash_strtab_entry, eq_strtab_entry,
14620 xfree, xcalloc, xfree);
14621 }
14622
14623 /* Add a string to the constant pool. Return the string's offset in
14624 host order. */
14625 static offset_type
14626 add_string (htab_t table, struct obstack *cpool, const char *str)
14627 {
14628 void **slot;
14629 struct strtab_entry entry;
14630 struct strtab_entry *result;
14631
14632 entry.str = str;
14633 slot = htab_find_slot (table, &entry, INSERT);
14634 if (*slot)
14635 result = *slot;
14636 else
14637 {
14638 result = XNEW (struct strtab_entry);
14639 result->offset = obstack_object_size (cpool);
14640 result->str = str;
14641 obstack_grow_str0 (cpool, str);
14642 *slot = result;
14643 }
14644 return result->offset;
14645 }
14646
14647 /* An entry in the symbol table. */
14648 struct symtab_index_entry
14649 {
14650 /* The name of the symbol. */
14651 const char *name;
14652 /* The offset of the name in the constant pool. */
14653 offset_type index_offset;
14654 /* A sorted vector of the indices of all the CUs that hold an object
14655 of this name. */
14656 VEC (offset_type) *cu_indices;
14657 };
14658
14659 /* The symbol table. This is a power-of-2-sized hash table. */
14660 struct mapped_symtab
14661 {
14662 offset_type n_elements;
14663 offset_type size;
14664 struct symtab_index_entry **data;
14665 };
14666
14667 /* Hash function for a symtab_index_entry. */
14668 static hashval_t
14669 hash_symtab_entry (const void *e)
14670 {
14671 const struct symtab_index_entry *entry = e;
14672 return iterative_hash (VEC_address (offset_type, entry->cu_indices),
14673 sizeof (offset_type) * VEC_length (offset_type,
14674 entry->cu_indices),
14675 0);
14676 }
14677
14678 /* Equality function for a symtab_index_entry. */
14679 static int
14680 eq_symtab_entry (const void *a, const void *b)
14681 {
14682 const struct symtab_index_entry *ea = a;
14683 const struct symtab_index_entry *eb = b;
14684 int len = VEC_length (offset_type, ea->cu_indices);
14685 if (len != VEC_length (offset_type, eb->cu_indices))
14686 return 0;
14687 return !memcmp (VEC_address (offset_type, ea->cu_indices),
14688 VEC_address (offset_type, eb->cu_indices),
14689 sizeof (offset_type) * len);
14690 }
14691
14692 /* Destroy a symtab_index_entry. */
14693 static void
14694 delete_symtab_entry (void *p)
14695 {
14696 struct symtab_index_entry *entry = p;
14697 VEC_free (offset_type, entry->cu_indices);
14698 xfree (entry);
14699 }
14700
14701 /* Create a hash table holding symtab_index_entry objects. */
14702 static htab_t
14703 create_index_table (void)
14704 {
14705 return htab_create_alloc (100, hash_symtab_entry, eq_symtab_entry,
14706 delete_symtab_entry, xcalloc, xfree);
14707 }
14708
14709 /* Create a new mapped symtab object. */
14710 static struct mapped_symtab *
14711 create_mapped_symtab (void)
14712 {
14713 struct mapped_symtab *symtab = XNEW (struct mapped_symtab);
14714 symtab->n_elements = 0;
14715 symtab->size = 1024;
14716 symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
14717 return symtab;
14718 }
14719
14720 /* Destroy a mapped_symtab. */
14721 static void
14722 cleanup_mapped_symtab (void *p)
14723 {
14724 struct mapped_symtab *symtab = p;
14725 /* The contents of the array are freed when the other hash table is
14726 destroyed. */
14727 xfree (symtab->data);
14728 xfree (symtab);
14729 }
14730
14731 /* Find a slot in SYMTAB for the symbol NAME. Returns a pointer to
14732 the slot. */
14733 static struct symtab_index_entry **
14734 find_slot (struct mapped_symtab *symtab, const char *name)
14735 {
14736 offset_type index, step, hash = mapped_index_string_hash (name);
14737
14738 index = hash & (symtab->size - 1);
14739 step = ((hash * 17) & (symtab->size - 1)) | 1;
14740
14741 for (;;)
14742 {
14743 if (!symtab->data[index] || !strcmp (name, symtab->data[index]->name))
14744 return &symtab->data[index];
14745 index = (index + step) & (symtab->size - 1);
14746 }
14747 }
14748
14749 /* Expand SYMTAB's hash table. */
14750 static void
14751 hash_expand (struct mapped_symtab *symtab)
14752 {
14753 offset_type old_size = symtab->size;
14754 offset_type i;
14755 struct symtab_index_entry **old_entries = symtab->data;
14756
14757 symtab->size *= 2;
14758 symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
14759
14760 for (i = 0; i < old_size; ++i)
14761 {
14762 if (old_entries[i])
14763 {
14764 struct symtab_index_entry **slot = find_slot (symtab,
14765 old_entries[i]->name);
14766 *slot = old_entries[i];
14767 }
14768 }
14769
14770 xfree (old_entries);
14771 }
14772
14773 /* Add an entry to SYMTAB. NAME is the name of the symbol. CU_INDEX
14774 is the index of the CU in which the symbol appears. */
14775 static void
14776 add_index_entry (struct mapped_symtab *symtab, const char *name,
14777 offset_type cu_index)
14778 {
14779 struct symtab_index_entry **slot;
14780
14781 ++symtab->n_elements;
14782 if (4 * symtab->n_elements / 3 >= symtab->size)
14783 hash_expand (symtab);
14784
14785 slot = find_slot (symtab, name);
14786 if (!*slot)
14787 {
14788 *slot = XNEW (struct symtab_index_entry);
14789 (*slot)->name = name;
14790 (*slot)->cu_indices = NULL;
14791 }
14792 /* Don't push an index twice. Due to how we add entries we only
14793 have to check the last one. */
14794 if (VEC_empty (offset_type, (*slot)->cu_indices)
14795 || VEC_length (offset_type, (*slot)->cu_indices) != cu_index)
14796 VEC_safe_push (offset_type, (*slot)->cu_indices, cu_index);
14797 }
14798
14799 /* Add a vector of indices to the constant pool. */
14800 static offset_type
14801 add_indices_to_cpool (htab_t index_table, struct obstack *cpool,
14802 struct symtab_index_entry *entry)
14803 {
14804 void **slot;
14805
14806 slot = htab_find_slot (index_table, entry, INSERT);
14807 if (!*slot)
14808 {
14809 offset_type len = VEC_length (offset_type, entry->cu_indices);
14810 offset_type val = MAYBE_SWAP (len);
14811 offset_type iter;
14812 int i;
14813
14814 *slot = entry;
14815 entry->index_offset = obstack_object_size (cpool);
14816
14817 obstack_grow (cpool, &val, sizeof (val));
14818 for (i = 0;
14819 VEC_iterate (offset_type, entry->cu_indices, i, iter);
14820 ++i)
14821 {
14822 val = MAYBE_SWAP (iter);
14823 obstack_grow (cpool, &val, sizeof (val));
14824 }
14825 }
14826 else
14827 {
14828 struct symtab_index_entry *old_entry = *slot;
14829 entry->index_offset = old_entry->index_offset;
14830 entry = old_entry;
14831 }
14832 return entry->index_offset;
14833 }
14834
14835 /* Write the mapped hash table SYMTAB to the obstack OUTPUT, with
14836 constant pool entries going into the obstack CPOOL. */
14837 static void
14838 write_hash_table (struct mapped_symtab *symtab,
14839 struct obstack *output, struct obstack *cpool)
14840 {
14841 offset_type i;
14842 htab_t index_table;
14843 htab_t str_table;
14844
14845 index_table = create_index_table ();
14846 str_table = create_strtab ();
14847 /* We add all the index vectors to the constant pool first, to
14848 ensure alignment is ok. */
14849 for (i = 0; i < symtab->size; ++i)
14850 {
14851 if (symtab->data[i])
14852 add_indices_to_cpool (index_table, cpool, symtab->data[i]);
14853 }
14854
14855 /* Now write out the hash table. */
14856 for (i = 0; i < symtab->size; ++i)
14857 {
14858 offset_type str_off, vec_off;
14859
14860 if (symtab->data[i])
14861 {
14862 str_off = add_string (str_table, cpool, symtab->data[i]->name);
14863 vec_off = symtab->data[i]->index_offset;
14864 }
14865 else
14866 {
14867 /* While 0 is a valid constant pool index, it is not valid
14868 to have 0 for both offsets. */
14869 str_off = 0;
14870 vec_off = 0;
14871 }
14872
14873 str_off = MAYBE_SWAP (str_off);
14874 vec_off = MAYBE_SWAP (vec_off);
14875
14876 obstack_grow (output, &str_off, sizeof (str_off));
14877 obstack_grow (output, &vec_off, sizeof (vec_off));
14878 }
14879
14880 htab_delete (str_table);
14881 htab_delete (index_table);
14882 }
14883
14884 /* Write an address entry to ADDR_OBSTACK. The addresses are taken
14885 from PST; CU_INDEX is the index of the CU in the vector of all
14886 CUs. */
14887 static void
14888 add_address_entry (struct objfile *objfile,
14889 struct obstack *addr_obstack, struct partial_symtab *pst,
14890 unsigned int cu_index)
14891 {
14892 offset_type offset;
14893 char addr[8];
14894 CORE_ADDR baseaddr;
14895
14896 /* Don't bother recording empty ranges. */
14897 if (pst->textlow == pst->texthigh)
14898 return;
14899
14900 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
14901
14902 store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, pst->textlow - baseaddr);
14903 obstack_grow (addr_obstack, addr, 8);
14904 store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, pst->texthigh - baseaddr);
14905 obstack_grow (addr_obstack, addr, 8);
14906 offset = MAYBE_SWAP (cu_index);
14907 obstack_grow (addr_obstack, &offset, sizeof (offset_type));
14908 }
14909
14910 /* Add a list of partial symbols to SYMTAB. */
14911 static void
14912 write_psymbols (struct mapped_symtab *symtab,
14913 struct partial_symbol **psymp,
14914 int count,
14915 offset_type cu_index)
14916 {
14917 for (; count-- > 0; ++psymp)
14918 {
14919 if (SYMBOL_LANGUAGE (*psymp) == language_ada)
14920 error (_("Ada is not currently supported by the index"));
14921 add_index_entry (symtab, SYMBOL_NATURAL_NAME (*psymp), cu_index);
14922 }
14923 }
14924
14925 /* Write the contents of an ("unfinished") obstack to FILE. Throw an
14926 exception if there is an error. */
14927 static void
14928 write_obstack (FILE *file, struct obstack *obstack)
14929 {
14930 if (fwrite (obstack_base (obstack), 1, obstack_object_size (obstack),
14931 file)
14932 != obstack_object_size (obstack))
14933 error (_("couldn't data write to file"));
14934 }
14935
14936 /* Unlink a file if the argument is not NULL. */
14937 static void
14938 unlink_if_set (void *p)
14939 {
14940 char **filename = p;
14941 if (*filename)
14942 unlink (*filename);
14943 }
14944
14945 /* A helper struct used when iterating over debug_types. */
14946 struct signatured_type_index_data
14947 {
14948 struct objfile *objfile;
14949 struct mapped_symtab *symtab;
14950 struct obstack *types_list;
14951 int cu_index;
14952 };
14953
14954 /* A helper function that writes a single signatured_type to an
14955 obstack. */
14956 static int
14957 write_one_signatured_type (void **slot, void *d)
14958 {
14959 struct signatured_type_index_data *info = d;
14960 struct signatured_type *entry = (struct signatured_type *) *slot;
14961 struct dwarf2_per_cu_data *per_cu = &entry->per_cu;
14962 struct partial_symtab *psymtab = per_cu->v.psymtab;
14963 gdb_byte val[8];
14964
14965 write_psymbols (info->symtab,
14966 info->objfile->global_psymbols.list + psymtab->globals_offset,
14967 psymtab->n_global_syms, info->cu_index);
14968 write_psymbols (info->symtab,
14969 info->objfile->static_psymbols.list + psymtab->statics_offset,
14970 psymtab->n_static_syms, info->cu_index);
14971
14972 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->offset);
14973 obstack_grow (info->types_list, val, 8);
14974 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->type_offset);
14975 obstack_grow (info->types_list, val, 8);
14976 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->signature);
14977 obstack_grow (info->types_list, val, 8);
14978
14979 ++info->cu_index;
14980
14981 return 1;
14982 }
14983
14984 /* Create an index file for OBJFILE in the directory DIR. */
14985 static void
14986 write_psymtabs_to_index (struct objfile *objfile, const char *dir)
14987 {
14988 struct cleanup *cleanup;
14989 char *filename, *cleanup_filename;
14990 struct obstack contents, addr_obstack, constant_pool, symtab_obstack;
14991 struct obstack cu_list, types_cu_list;
14992 int i;
14993 FILE *out_file;
14994 struct mapped_symtab *symtab;
14995 offset_type val, size_of_contents, total_len;
14996 struct stat st;
14997 char buf[8];
14998
14999 if (!objfile->psymtabs)
15000 return;
15001 if (dwarf2_per_objfile->using_index)
15002 error (_("Cannot use an index to create the index"));
15003
15004 if (stat (objfile->name, &st) < 0)
15005 perror_with_name (_("Could not stat"));
15006
15007 filename = concat (dir, SLASH_STRING, lbasename (objfile->name),
15008 INDEX_SUFFIX, (char *) NULL);
15009 cleanup = make_cleanup (xfree, filename);
15010
15011 out_file = fopen (filename, "wb");
15012 if (!out_file)
15013 error (_("Can't open `%s' for writing"), filename);
15014
15015 cleanup_filename = filename;
15016 make_cleanup (unlink_if_set, &cleanup_filename);
15017
15018 symtab = create_mapped_symtab ();
15019 make_cleanup (cleanup_mapped_symtab, symtab);
15020
15021 obstack_init (&addr_obstack);
15022 make_cleanup_obstack_free (&addr_obstack);
15023
15024 obstack_init (&cu_list);
15025 make_cleanup_obstack_free (&cu_list);
15026
15027 obstack_init (&types_cu_list);
15028 make_cleanup_obstack_free (&types_cu_list);
15029
15030 /* The list is already sorted, so we don't need to do additional
15031 work here. Also, the debug_types entries do not appear in
15032 all_comp_units, but only in their own hash table. */
15033 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
15034 {
15035 struct dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->all_comp_units[i];
15036 struct partial_symtab *psymtab = per_cu->v.psymtab;
15037 gdb_byte val[8];
15038
15039 write_psymbols (symtab,
15040 objfile->global_psymbols.list + psymtab->globals_offset,
15041 psymtab->n_global_syms, i);
15042 write_psymbols (symtab,
15043 objfile->static_psymbols.list + psymtab->statics_offset,
15044 psymtab->n_static_syms, i);
15045
15046 add_address_entry (objfile, &addr_obstack, psymtab, i);
15047
15048 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->offset);
15049 obstack_grow (&cu_list, val, 8);
15050 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->length);
15051 obstack_grow (&cu_list, val, 8);
15052 }
15053
15054 /* Write out the .debug_type entries, if any. */
15055 if (dwarf2_per_objfile->signatured_types)
15056 {
15057 struct signatured_type_index_data sig_data;
15058
15059 sig_data.objfile = objfile;
15060 sig_data.symtab = symtab;
15061 sig_data.types_list = &types_cu_list;
15062 sig_data.cu_index = dwarf2_per_objfile->n_comp_units;
15063 htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
15064 write_one_signatured_type, &sig_data);
15065 }
15066
15067 obstack_init (&constant_pool);
15068 make_cleanup_obstack_free (&constant_pool);
15069 obstack_init (&symtab_obstack);
15070 make_cleanup_obstack_free (&symtab_obstack);
15071 write_hash_table (symtab, &symtab_obstack, &constant_pool);
15072
15073 obstack_init (&contents);
15074 make_cleanup_obstack_free (&contents);
15075 size_of_contents = 6 * sizeof (offset_type);
15076 total_len = size_of_contents;
15077
15078 /* The version number. */
15079 val = MAYBE_SWAP (2);
15080 obstack_grow (&contents, &val, sizeof (val));
15081
15082 /* The offset of the CU list from the start of the file. */
15083 val = MAYBE_SWAP (total_len);
15084 obstack_grow (&contents, &val, sizeof (val));
15085 total_len += obstack_object_size (&cu_list);
15086
15087 /* The offset of the types CU list from the start of the file. */
15088 val = MAYBE_SWAP (total_len);
15089 obstack_grow (&contents, &val, sizeof (val));
15090 total_len += obstack_object_size (&types_cu_list);
15091
15092 /* The offset of the address table from the start of the file. */
15093 val = MAYBE_SWAP (total_len);
15094 obstack_grow (&contents, &val, sizeof (val));
15095 total_len += obstack_object_size (&addr_obstack);
15096
15097 /* The offset of the symbol table from the start of the file. */
15098 val = MAYBE_SWAP (total_len);
15099 obstack_grow (&contents, &val, sizeof (val));
15100 total_len += obstack_object_size (&symtab_obstack);
15101
15102 /* The offset of the constant pool from the start of the file. */
15103 val = MAYBE_SWAP (total_len);
15104 obstack_grow (&contents, &val, sizeof (val));
15105 total_len += obstack_object_size (&constant_pool);
15106
15107 gdb_assert (obstack_object_size (&contents) == size_of_contents);
15108
15109 write_obstack (out_file, &contents);
15110 write_obstack (out_file, &cu_list);
15111 write_obstack (out_file, &types_cu_list);
15112 write_obstack (out_file, &addr_obstack);
15113 write_obstack (out_file, &symtab_obstack);
15114 write_obstack (out_file, &constant_pool);
15115
15116 fclose (out_file);
15117
15118 /* We want to keep the file, so we set cleanup_filename to NULL
15119 here. See unlink_if_set. */
15120 cleanup_filename = NULL;
15121
15122 do_cleanups (cleanup);
15123 }
15124
15125 /* The mapped index file format is designed to be directly mmap()able
15126 on any architecture. In most cases, a datum is represented using a
15127 little-endian 32-bit integer value, called an offset_type. Big
15128 endian machines must byte-swap the values before using them.
15129 Exceptions to this rule are noted. The data is laid out such that
15130 alignment is always respected.
15131
15132 A mapped index consists of several sections.
15133
15134 1. The file header. This is a sequence of values, of offset_type
15135 unless otherwise noted:
15136 [0] The version number. Currently 1 or 2. The differences are
15137 noted below. Version 1 did not account for .debug_types sections;
15138 the presence of a .debug_types section invalidates any version 1
15139 index that may exist.
15140 [1] The offset, from the start of the file, of the CU list.
15141 [1.5] In version 2, the offset, from the start of the file, of the
15142 types CU list. This offset does not appear in version 1. Note
15143 that this can be empty, in which case this offset will be equal to
15144 the next offset.
15145 [2] The offset, from the start of the file, of the address section.
15146 [3] The offset, from the start of the file, of the symbol table.
15147 [4] The offset, from the start of the file, of the constant pool.
15148
15149 2. The CU list. This is a sequence of pairs of 64-bit
15150 little-endian values, sorted by the CU offset. The first element
15151 in each pair is the offset of a CU in the .debug_info section. The
15152 second element in each pair is the length of that CU. References
15153 to a CU elsewhere in the map are done using a CU index, which is
15154 just the 0-based index into this table. Note that if there are
15155 type CUs, then conceptually CUs and type CUs form a single list for
15156 the purposes of CU indices.
15157
15158 2.5 The types CU list. This does not appear in a version 1 index.
15159 This is a sequence of triplets of 64-bit little-endian values. In
15160 a triplet, the first value is the CU offset, the second value is
15161 the type offset in the CU, and the third value is the type
15162 signature. The types CU list is not sorted.
15163
15164 3. The address section. The address section consists of a sequence
15165 of address entries. Each address entry has three elements.
15166 [0] The low address. This is a 64-bit little-endian value.
15167 [1] The high address. This is a 64-bit little-endian value.
15168 [2] The CU index. This is an offset_type value.
15169
15170 4. The symbol table. This is a hash table. The size of the hash
15171 table is always a power of 2. The initial hash and the step are
15172 currently defined by the `find_slot' function.
15173
15174 Each slot in the hash table consists of a pair of offset_type
15175 values. The first value is the offset of the symbol's name in the
15176 constant pool. The second value is the offset of the CU vector in
15177 the constant pool.
15178
15179 If both values are 0, then this slot in the hash table is empty.
15180 This is ok because while 0 is a valid constant pool index, it
15181 cannot be a valid index for both a string and a CU vector.
15182
15183 A string in the constant pool is stored as a \0-terminated string,
15184 as you'd expect.
15185
15186 A CU vector in the constant pool is a sequence of offset_type
15187 values. The first value is the number of CU indices in the vector.
15188 Each subsequent value is the index of a CU in the CU list. This
15189 element in the hash table is used to indicate which CUs define the
15190 symbol.
15191
15192 5. The constant pool. This is simply a bunch of bytes. It is
15193 organized so that alignment is correct: CU vectors are stored
15194 first, followed by strings. */
15195 static void
15196 save_gdb_index_command (char *arg, int from_tty)
15197 {
15198 struct objfile *objfile;
15199
15200 if (!arg || !*arg)
15201 error (_("usage: save gdb-index DIRECTORY"));
15202
15203 ALL_OBJFILES (objfile)
15204 {
15205 struct stat st;
15206
15207 /* If the objfile does not correspond to an actual file, skip it. */
15208 if (stat (objfile->name, &st) < 0)
15209 continue;
15210
15211 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
15212 if (dwarf2_per_objfile)
15213 {
15214 volatile struct gdb_exception except;
15215
15216 TRY_CATCH (except, RETURN_MASK_ERROR)
15217 {
15218 write_psymtabs_to_index (objfile, arg);
15219 }
15220 if (except.reason < 0)
15221 exception_fprintf (gdb_stderr, except,
15222 _("Error while writing index for `%s': "),
15223 objfile->name);
15224 }
15225 }
15226 }
15227
15228 \f
15229
15230 int dwarf2_always_disassemble;
15231
15232 static void
15233 show_dwarf2_always_disassemble (struct ui_file *file, int from_tty,
15234 struct cmd_list_element *c, const char *value)
15235 {
15236 fprintf_filtered (file, _("\
15237 Whether to always disassemble DWARF expressions is %s.\n"),
15238 value);
15239 }
15240
15241 void _initialize_dwarf2_read (void);
15242
15243 void
15244 _initialize_dwarf2_read (void)
15245 {
15246 struct cmd_list_element *c;
15247
15248 dwarf2_objfile_data_key
15249 = register_objfile_data_with_cleanup (NULL, dwarf2_per_objfile_free);
15250
15251 add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
15252 Set DWARF 2 specific variables.\n\
15253 Configure DWARF 2 variables such as the cache size"),
15254 &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
15255 0/*allow-unknown*/, &maintenance_set_cmdlist);
15256
15257 add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
15258 Show DWARF 2 specific variables\n\
15259 Show DWARF 2 variables such as the cache size"),
15260 &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
15261 0/*allow-unknown*/, &maintenance_show_cmdlist);
15262
15263 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
15264 &dwarf2_max_cache_age, _("\
15265 Set the upper bound on the age of cached dwarf2 compilation units."), _("\
15266 Show the upper bound on the age of cached dwarf2 compilation units."), _("\
15267 A higher limit means that cached compilation units will be stored\n\
15268 in memory longer, and more total memory will be used. Zero disables\n\
15269 caching, which can slow down startup."),
15270 NULL,
15271 show_dwarf2_max_cache_age,
15272 &set_dwarf2_cmdlist,
15273 &show_dwarf2_cmdlist);
15274
15275 add_setshow_boolean_cmd ("always-disassemble", class_obscure,
15276 &dwarf2_always_disassemble, _("\
15277 Set whether `info address' always disassembles DWARF expressions."), _("\
15278 Show whether `info address' always disassembles DWARF expressions."), _("\
15279 When enabled, DWARF expressions are always printed in an assembly-like\n\
15280 syntax. When disabled, expressions will be printed in a more\n\
15281 conversational style, when possible."),
15282 NULL,
15283 show_dwarf2_always_disassemble,
15284 &set_dwarf2_cmdlist,
15285 &show_dwarf2_cmdlist);
15286
15287 add_setshow_zinteger_cmd ("dwarf2-die", no_class, &dwarf2_die_debug, _("\
15288 Set debugging of the dwarf2 DIE reader."), _("\
15289 Show debugging of the dwarf2 DIE reader."), _("\
15290 When enabled (non-zero), DIEs are dumped after they are read in.\n\
15291 The value is the maximum depth to print."),
15292 NULL,
15293 NULL,
15294 &setdebuglist, &showdebuglist);
15295
15296 c = add_cmd ("gdb-index", class_files, save_gdb_index_command,
15297 _("Save a .gdb-index file"),
15298 &save_cmdlist);
15299 set_cmd_completer (c, filename_completer);
15300 }
This page took 0.330024 seconds and 5 git commands to generate.