* buildsym.c (start_subfile): Handle producer.
[deliverable/binutils-gdb.git] / gdb / dwarf2read.c
CommitLineData
c906108c 1/* DWARF 2 debugging format support for GDB.
917c78fc 2
72019c9c
GM
3 Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2005, 2006
8e65ff28 5 Free Software Foundation, Inc.
c906108c
SS
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 in dwarfread.c
13
c5aa993b 14 This file is part of GDB.
c906108c 15
c5aa993b
JM
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 2 of the License, or (at
19 your option) any later version.
c906108c 20
c5aa993b
JM
21 This program is distributed in the hope that it will be useful, but
22 WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 General Public License for more details.
c906108c 25
c5aa993b
JM
26 You should have received a copy of the GNU General Public License
27 along with this program; if not, write to the Free Software
197e01b6
EZ
28 Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA. */
c906108c
SS
30
31#include "defs.h"
32#include "bfd.h"
c906108c
SS
33#include "symtab.h"
34#include "gdbtypes.h"
c906108c
SS
35#include "objfiles.h"
36#include "elf/dwarf2.h"
37#include "buildsym.h"
38#include "demangle.h"
39#include "expression.h"
d5166ae1 40#include "filenames.h" /* for DOSish file names */
2e276125 41#include "macrotab.h"
c906108c
SS
42#include "language.h"
43#include "complaints.h"
357e46e7 44#include "bcache.h"
4c2df51b
DJ
45#include "dwarf2expr.h"
46#include "dwarf2loc.h"
9219021c 47#include "cp-support.h"
72bf9492 48#include "hashtab.h"
ae038cb0
DJ
49#include "command.h"
50#include "gdbcmd.h"
4c2df51b 51
c906108c
SS
52#include <fcntl.h>
53#include "gdb_string.h"
4bdf3d34 54#include "gdb_assert.h"
c906108c
SS
55#include <sys/types.h>
56
d8151005
DJ
57/* A note on memory usage for this file.
58
59 At the present time, this code reads the debug info sections into
60 the objfile's objfile_obstack. A definite improvement for startup
61 time, on platforms which do not emit relocations for debug
62 sections, would be to use mmap instead. The object's complete
63 debug information is loaded into memory, partly to simplify
64 absolute DIE references.
65
66 Whether using obstacks or mmap, the sections should remain loaded
67 until the objfile is released, and pointers into the section data
68 can be used for any other data associated to the objfile (symbol
69 names, type names, location expressions to name a few). */
70
88496bb5
MS
71#ifndef DWARF2_REG_TO_REGNUM
72#define DWARF2_REG_TO_REGNUM(REG) (REG)
73#endif
74
107d2387 75#if 0
357e46e7 76/* .debug_info header for a compilation unit
c906108c
SS
77 Because of alignment constraints, this structure has padding and cannot
78 be mapped directly onto the beginning of the .debug_info section. */
79typedef struct comp_unit_header
80 {
81 unsigned int length; /* length of the .debug_info
82 contribution */
83 unsigned short version; /* version number -- 2 for DWARF
84 version 2 */
85 unsigned int abbrev_offset; /* offset into .debug_abbrev section */
86 unsigned char addr_size; /* byte size of an address -- 4 */
87 }
88_COMP_UNIT_HEADER;
89#define _ACTUAL_COMP_UNIT_HEADER_SIZE 11
107d2387 90#endif
c906108c
SS
91
92/* .debug_pubnames header
93 Because of alignment constraints, this structure has padding and cannot
94 be mapped directly onto the beginning of the .debug_info section. */
95typedef struct pubnames_header
96 {
97 unsigned int length; /* length of the .debug_pubnames
98 contribution */
99 unsigned char version; /* version number -- 2 for DWARF
100 version 2 */
101 unsigned int info_offset; /* offset into .debug_info section */
102 unsigned int info_size; /* byte size of .debug_info section
103 portion */
104 }
105_PUBNAMES_HEADER;
106#define _ACTUAL_PUBNAMES_HEADER_SIZE 13
107
108/* .debug_pubnames header
109 Because of alignment constraints, this structure has padding and cannot
110 be mapped directly onto the beginning of the .debug_info section. */
111typedef struct aranges_header
112 {
113 unsigned int length; /* byte len of the .debug_aranges
114 contribution */
115 unsigned short version; /* version number -- 2 for DWARF
116 version 2 */
117 unsigned int info_offset; /* offset into .debug_info section */
118 unsigned char addr_size; /* byte size of an address */
119 unsigned char seg_size; /* byte size of segment descriptor */
120 }
121_ARANGES_HEADER;
122#define _ACTUAL_ARANGES_HEADER_SIZE 12
123
124/* .debug_line statement program prologue
125 Because of alignment constraints, this structure has padding and cannot
126 be mapped directly onto the beginning of the .debug_info section. */
127typedef struct statement_prologue
128 {
129 unsigned int total_length; /* byte length of the statement
130 information */
131 unsigned short version; /* version number -- 2 for DWARF
132 version 2 */
133 unsigned int prologue_length; /* # bytes between prologue &
134 stmt program */
135 unsigned char minimum_instruction_length; /* byte size of
136 smallest instr */
137 unsigned char default_is_stmt; /* initial value of is_stmt
138 register */
139 char line_base;
140 unsigned char line_range;
141 unsigned char opcode_base; /* number assigned to first special
142 opcode */
143 unsigned char *standard_opcode_lengths;
144 }
145_STATEMENT_PROLOGUE;
146
6502dd73
DJ
147static const struct objfile_data *dwarf2_objfile_data_key;
148
149struct dwarf2_per_objfile
150{
151 /* Sizes of debugging sections. */
152 unsigned int info_size;
153 unsigned int abbrev_size;
154 unsigned int line_size;
155 unsigned int pubnames_size;
156 unsigned int aranges_size;
157 unsigned int loc_size;
158 unsigned int macinfo_size;
159 unsigned int str_size;
160 unsigned int ranges_size;
161 unsigned int frame_size;
162 unsigned int eh_frame_size;
163
164 /* Loaded data from the sections. */
fe1b8b76
JB
165 gdb_byte *info_buffer;
166 gdb_byte *abbrev_buffer;
167 gdb_byte *line_buffer;
168 gdb_byte *str_buffer;
169 gdb_byte *macinfo_buffer;
170 gdb_byte *ranges_buffer;
171 gdb_byte *loc_buffer;
ae038cb0 172
10b3939b
DJ
173 /* A list of all the compilation units. This is used to locate
174 the target compilation unit of a particular reference. */
ae038cb0
DJ
175 struct dwarf2_per_cu_data **all_comp_units;
176
177 /* The number of compilation units in ALL_COMP_UNITS. */
178 int n_comp_units;
179
180 /* A chain of compilation units that are currently read in, so that
181 they can be freed later. */
182 struct dwarf2_per_cu_data *read_in_chain;
72dca2f5
FR
183
184 /* A flag indicating wether this objfile has a section loaded at a
185 VMA of 0. */
186 int has_section_at_zero;
6502dd73
DJ
187};
188
189static struct dwarf2_per_objfile *dwarf2_per_objfile;
c906108c 190
086df311
DJ
191static asection *dwarf_info_section;
192static asection *dwarf_abbrev_section;
193static asection *dwarf_line_section;
194static asection *dwarf_pubnames_section;
195static asection *dwarf_aranges_section;
196static asection *dwarf_loc_section;
197static asection *dwarf_macinfo_section;
198static asection *dwarf_str_section;
199static asection *dwarf_ranges_section;
200asection *dwarf_frame_section;
201asection *dwarf_eh_frame_section;
202
c906108c
SS
203/* names of the debugging sections */
204
205#define INFO_SECTION ".debug_info"
206#define ABBREV_SECTION ".debug_abbrev"
207#define LINE_SECTION ".debug_line"
208#define PUBNAMES_SECTION ".debug_pubnames"
209#define ARANGES_SECTION ".debug_aranges"
210#define LOC_SECTION ".debug_loc"
211#define MACINFO_SECTION ".debug_macinfo"
212#define STR_SECTION ".debug_str"
af34e669 213#define RANGES_SECTION ".debug_ranges"
b6af0555
JS
214#define FRAME_SECTION ".debug_frame"
215#define EH_FRAME_SECTION ".eh_frame"
c906108c
SS
216
217/* local data types */
218
57349743
JB
219/* We hold several abbreviation tables in memory at the same time. */
220#ifndef ABBREV_HASH_SIZE
221#define ABBREV_HASH_SIZE 121
222#endif
223
107d2387
AC
224/* The data in a compilation unit header, after target2host
225 translation, looks like this. */
c906108c 226struct comp_unit_head
a738430d
MK
227{
228 unsigned long length;
229 short version;
230 unsigned int abbrev_offset;
231 unsigned char addr_size;
232 unsigned char signed_addr_p;
57349743 233
a738430d
MK
234 /* Size of file offsets; either 4 or 8. */
235 unsigned int offset_size;
57349743 236
a738430d
MK
237 /* Size of the length field; either 4 or 12. */
238 unsigned int initial_length_size;
57349743 239
a738430d
MK
240 /* Offset to the first byte of this compilation unit header in the
241 .debug_info section, for resolving relative reference dies. */
242 unsigned int offset;
57349743 243
a738430d
MK
244 /* Pointer to this compilation unit header in the .debug_info
245 section. */
fe1b8b76 246 gdb_byte *cu_head_ptr;
57349743 247
a738430d
MK
248 /* Pointer to the first die of this compilation unit. This will be
249 the first byte following the compilation unit header. */
fe1b8b76 250 gdb_byte *first_die_ptr;
af34e669 251
a738430d
MK
252 /* Pointer to the next compilation unit header in the program. */
253 struct comp_unit_head *next;
0d53c4c4 254
a738430d
MK
255 /* Base address of this compilation unit. */
256 CORE_ADDR base_address;
0d53c4c4 257
a738430d
MK
258 /* Non-zero if base_address has been set. */
259 int base_known;
260};
c906108c 261
10b3939b
DJ
262/* Fixed size for the DIE hash table. */
263#ifndef REF_HASH_SIZE
264#define REF_HASH_SIZE 1021
265#endif
266
e7c27a73
DJ
267/* Internal state when decoding a particular compilation unit. */
268struct dwarf2_cu
269{
270 /* The objfile containing this compilation unit. */
271 struct objfile *objfile;
272
273 /* The header of the compilation unit.
274
275 FIXME drow/2003-11-10: Some of the things from the comp_unit_head
f3dd6933 276 should logically be moved to the dwarf2_cu structure. */
e7c27a73 277 struct comp_unit_head header;
e142c38c
DJ
278
279 struct function_range *first_fn, *last_fn, *cached_fn;
280
281 /* The language we are debugging. */
282 enum language language;
283 const struct language_defn *language_defn;
284
b0f35d58
DL
285 const char *producer;
286
e142c38c
DJ
287 /* The generic symbol table building routines have separate lists for
288 file scope symbols and all all other scopes (local scopes). So
289 we need to select the right one to pass to add_symbol_to_list().
290 We do it by keeping a pointer to the correct list in list_in_scope.
291
292 FIXME: The original dwarf code just treated the file scope as the
293 first local scope, and all other local scopes as nested local
294 scopes, and worked fine. Check to see if we really need to
295 distinguish these in buildsym.c. */
296 struct pending **list_in_scope;
297
298 /* Maintain an array of referenced fundamental types for the current
299 compilation unit being read. For DWARF version 1, we have to construct
300 the fundamental types on the fly, since no information about the
301 fundamental types is supplied. Each such fundamental type is created by
302 calling a language dependent routine to create the type, and then a
303 pointer to that type is then placed in the array at the index specified
304 by it's FT_<TYPENAME> value. The array has a fixed size set by the
305 FT_NUM_MEMBERS compile time constant, which is the number of predefined
306 fundamental types gdb knows how to construct. */
307 struct type *ftypes[FT_NUM_MEMBERS]; /* Fundamental types */
f3dd6933
DJ
308
309 /* DWARF abbreviation table associated with this compilation unit. */
310 struct abbrev_info **dwarf2_abbrevs;
311
312 /* Storage for the abbrev table. */
313 struct obstack abbrev_obstack;
72bf9492
DJ
314
315 /* Hash table holding all the loaded partial DIEs. */
316 htab_t partial_dies;
317
318 /* Storage for things with the same lifetime as this read-in compilation
319 unit, including partial DIEs. */
320 struct obstack comp_unit_obstack;
321
ae038cb0
DJ
322 /* When multiple dwarf2_cu structures are living in memory, this field
323 chains them all together, so that they can be released efficiently.
324 We will probably also want a generation counter so that most-recently-used
325 compilation units are cached... */
326 struct dwarf2_per_cu_data *read_in_chain;
327
328 /* Backchain to our per_cu entry if the tree has been built. */
329 struct dwarf2_per_cu_data *per_cu;
330
331 /* How many compilation units ago was this CU last referenced? */
332 int last_used;
333
10b3939b
DJ
334 /* A hash table of die offsets for following references. */
335 struct die_info *die_ref_table[REF_HASH_SIZE];
336
337 /* Full DIEs if read in. */
338 struct die_info *dies;
339
340 /* A set of pointers to dwarf2_per_cu_data objects for compilation
341 units referenced by this one. Only set during full symbol processing;
342 partial symbol tables do not have dependencies. */
343 htab_t dependencies;
344
ae038cb0
DJ
345 /* Mark used when releasing cached dies. */
346 unsigned int mark : 1;
347
348 /* This flag will be set if this compilation unit might include
349 inter-compilation-unit references. */
350 unsigned int has_form_ref_addr : 1;
351
72bf9492
DJ
352 /* This flag will be set if this compilation unit includes any
353 DW_TAG_namespace DIEs. If we know that there are explicit
354 DIEs for namespaces, we don't need to try to infer them
355 from mangled names. */
356 unsigned int has_namespace_info : 1;
e7c27a73
DJ
357};
358
10b3939b
DJ
359/* Persistent data held for a compilation unit, even when not
360 processing it. We put a pointer to this structure in the
361 read_symtab_private field of the psymtab. If we encounter
362 inter-compilation-unit references, we also maintain a sorted
363 list of all compilation units. */
364
ae038cb0
DJ
365struct dwarf2_per_cu_data
366{
5afb4e99 367 /* The start offset and length of this compilation unit. 2**30-1
ae038cb0
DJ
368 bytes should suffice to store the length of any compilation unit
369 - if it doesn't, GDB will fall over anyway. */
370 unsigned long offset;
5afb4e99 371 unsigned long length : 30;
ae038cb0
DJ
372
373 /* Flag indicating this compilation unit will be read in before
374 any of the current compilation units are processed. */
375 unsigned long queued : 1;
376
5afb4e99
DJ
377 /* This flag will be set if we need to load absolutely all DIEs
378 for this compilation unit, instead of just the ones we think
379 are interesting. It gets set if we look for a DIE in the
380 hash table and don't find it. */
381 unsigned int load_all_dies : 1;
382
ae038cb0
DJ
383 /* Set iff currently read in. */
384 struct dwarf2_cu *cu;
1c379e20
DJ
385
386 /* If full symbols for this CU have been read in, then this field
387 holds a map of DIE offsets to types. It isn't always possible
388 to reconstruct this information later, so we have to preserve
389 it. */
1c379e20 390 htab_t type_hash;
10b3939b 391
31ffec48
DJ
392 /* The partial symbol table associated with this compilation unit,
393 or NULL for partial units (which do not have an associated
394 symtab). */
10b3939b 395 struct partial_symtab *psymtab;
ae038cb0
DJ
396};
397
debd256d
JB
398/* The line number information for a compilation unit (found in the
399 .debug_line section) begins with a "statement program header",
400 which contains the following information. */
401struct line_header
402{
403 unsigned int total_length;
404 unsigned short version;
405 unsigned int header_length;
406 unsigned char minimum_instruction_length;
407 unsigned char default_is_stmt;
408 int line_base;
409 unsigned char line_range;
410 unsigned char opcode_base;
411
412 /* standard_opcode_lengths[i] is the number of operands for the
413 standard opcode whose value is i. This means that
414 standard_opcode_lengths[0] is unused, and the last meaningful
415 element is standard_opcode_lengths[opcode_base - 1]. */
416 unsigned char *standard_opcode_lengths;
417
418 /* The include_directories table. NOTE! These strings are not
419 allocated with xmalloc; instead, they are pointers into
420 debug_line_buffer. If you try to free them, `free' will get
421 indigestion. */
422 unsigned int num_include_dirs, include_dirs_size;
423 char **include_dirs;
424
425 /* The file_names table. NOTE! These strings are not allocated
426 with xmalloc; instead, they are pointers into debug_line_buffer.
427 Don't try to free them directly. */
428 unsigned int num_file_names, file_names_size;
429 struct file_entry
c906108c 430 {
debd256d
JB
431 char *name;
432 unsigned int dir_index;
433 unsigned int mod_time;
434 unsigned int length;
aaa75496 435 int included_p; /* Non-zero if referenced by the Line Number Program. */
debd256d
JB
436 } *file_names;
437
438 /* The start and end of the statement program following this
6502dd73 439 header. These point into dwarf2_per_objfile->line_buffer. */
fe1b8b76 440 gdb_byte *statement_program_start, *statement_program_end;
debd256d 441};
c906108c
SS
442
443/* When we construct a partial symbol table entry we only
444 need this much information. */
445struct partial_die_info
446 {
72bf9492 447 /* Offset of this DIE. */
c906108c 448 unsigned int offset;
72bf9492
DJ
449
450 /* DWARF-2 tag for this DIE. */
451 ENUM_BITFIELD(dwarf_tag) tag : 16;
452
453 /* Language code associated with this DIE. This is only used
454 for the compilation unit DIE. */
455 unsigned int language : 8;
456
457 /* Assorted flags describing the data found in this DIE. */
458 unsigned int has_children : 1;
459 unsigned int is_external : 1;
460 unsigned int is_declaration : 1;
461 unsigned int has_type : 1;
462 unsigned int has_specification : 1;
aaa75496 463 unsigned int has_stmt_list : 1;
72bf9492
DJ
464 unsigned int has_pc_info : 1;
465
466 /* Flag set if the SCOPE field of this structure has been
467 computed. */
468 unsigned int scope_set : 1;
469
470 /* The name of this DIE. Normally the value of DW_AT_name, but
471 sometimes DW_TAG_MIPS_linkage_name or a string computed in some
472 other fashion. */
c906108c 473 char *name;
57c22c6c 474 char *dirname;
72bf9492
DJ
475
476 /* The scope to prepend to our children. This is generally
477 allocated on the comp_unit_obstack, so will disappear
478 when this compilation unit leaves the cache. */
479 char *scope;
480
481 /* The location description associated with this DIE, if any. */
482 struct dwarf_block *locdesc;
483
484 /* If HAS_PC_INFO, the PC range associated with this DIE. */
c906108c
SS
485 CORE_ADDR lowpc;
486 CORE_ADDR highpc;
72bf9492
DJ
487
488 /* Pointer into the info_buffer pointing at the target of
489 DW_AT_sibling, if any. */
fe1b8b76 490 gdb_byte *sibling;
72bf9492
DJ
491
492 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
493 DW_AT_specification (or DW_AT_abstract_origin or
494 DW_AT_extension). */
495 unsigned int spec_offset;
496
aaa75496
JB
497 /* If HAS_STMT_LIST, the offset of the Line Number Information data. */
498 unsigned int line_offset;
499
72bf9492
DJ
500 /* Pointers to this DIE's parent, first child, and next sibling,
501 if any. */
502 struct partial_die_info *die_parent, *die_child, *die_sibling;
c906108c
SS
503 };
504
505/* This data structure holds the information of an abbrev. */
506struct abbrev_info
507 {
508 unsigned int number; /* number identifying abbrev */
509 enum dwarf_tag tag; /* dwarf tag */
f3dd6933
DJ
510 unsigned short has_children; /* boolean */
511 unsigned short num_attrs; /* number of attributes */
c906108c
SS
512 struct attr_abbrev *attrs; /* an array of attribute descriptions */
513 struct abbrev_info *next; /* next in chain */
514 };
515
516struct attr_abbrev
517 {
518 enum dwarf_attribute name;
519 enum dwarf_form form;
520 };
521
522/* This data structure holds a complete die structure. */
523struct die_info
524 {
c5aa993b 525 enum dwarf_tag tag; /* Tag indicating type of die */
c5aa993b
JM
526 unsigned int abbrev; /* Abbrev number */
527 unsigned int offset; /* Offset in .debug_info section */
528 unsigned int num_attrs; /* Number of attributes */
529 struct attribute *attrs; /* An array of attributes */
530 struct die_info *next_ref; /* Next die in ref hash table */
78ba4af6
JB
531
532 /* The dies in a compilation unit form an n-ary tree. PARENT
533 points to this die's parent; CHILD points to the first child of
534 this node; and all the children of a given node are chained
535 together via their SIBLING fields, terminated by a die whose
536 tag is zero. */
639d11d3
DC
537 struct die_info *child; /* Its first child, if any. */
538 struct die_info *sibling; /* Its next sibling, if any. */
539 struct die_info *parent; /* Its parent, if any. */
78ba4af6 540
c5aa993b 541 struct type *type; /* Cached type information */
c906108c
SS
542 };
543
544/* Attributes have a name and a value */
545struct attribute
546 {
547 enum dwarf_attribute name;
548 enum dwarf_form form;
549 union
550 {
551 char *str;
552 struct dwarf_block *blk;
ce5d95e1
JB
553 unsigned long unsnd;
554 long int snd;
c906108c
SS
555 CORE_ADDR addr;
556 }
557 u;
558 };
559
5fb290d7
DJ
560struct function_range
561{
562 const char *name;
563 CORE_ADDR lowpc, highpc;
564 int seen_line;
565 struct function_range *next;
566};
567
c906108c
SS
568/* Get at parts of an attribute structure */
569
570#define DW_STRING(attr) ((attr)->u.str)
571#define DW_UNSND(attr) ((attr)->u.unsnd)
572#define DW_BLOCK(attr) ((attr)->u.blk)
573#define DW_SND(attr) ((attr)->u.snd)
574#define DW_ADDR(attr) ((attr)->u.addr)
575
576/* Blocks are a bunch of untyped bytes. */
577struct dwarf_block
578 {
579 unsigned int size;
fe1b8b76 580 gdb_byte *data;
c906108c
SS
581 };
582
c906108c
SS
583#ifndef ATTR_ALLOC_CHUNK
584#define ATTR_ALLOC_CHUNK 4
585#endif
586
c906108c
SS
587/* Allocate fields for structs, unions and enums in this size. */
588#ifndef DW_FIELD_ALLOC_CHUNK
589#define DW_FIELD_ALLOC_CHUNK 4
590#endif
591
c906108c
SS
592/* A zeroed version of a partial die for initialization purposes. */
593static struct partial_die_info zeroed_partial_die;
594
c906108c
SS
595/* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
596 but this would require a corresponding change in unpack_field_as_long
597 and friends. */
598static int bits_per_byte = 8;
599
600/* The routines that read and process dies for a C struct or C++ class
601 pass lists of data member fields and lists of member function fields
602 in an instance of a field_info structure, as defined below. */
603struct field_info
c5aa993b
JM
604 {
605 /* List of data member and baseclasses fields. */
606 struct nextfield
607 {
608 struct nextfield *next;
609 int accessibility;
610 int virtuality;
611 struct field field;
612 }
613 *fields;
c906108c 614
c5aa993b
JM
615 /* Number of fields. */
616 int nfields;
c906108c 617
c5aa993b
JM
618 /* Number of baseclasses. */
619 int nbaseclasses;
c906108c 620
c5aa993b
JM
621 /* Set if the accesibility of one of the fields is not public. */
622 int non_public_fields;
c906108c 623
c5aa993b
JM
624 /* Member function fields array, entries are allocated in the order they
625 are encountered in the object file. */
626 struct nextfnfield
627 {
628 struct nextfnfield *next;
629 struct fn_field fnfield;
630 }
631 *fnfields;
c906108c 632
c5aa993b
JM
633 /* Member function fieldlist array, contains name of possibly overloaded
634 member function, number of overloaded member functions and a pointer
635 to the head of the member function field chain. */
636 struct fnfieldlist
637 {
638 char *name;
639 int length;
640 struct nextfnfield *head;
641 }
642 *fnfieldlists;
c906108c 643
c5aa993b
JM
644 /* Number of entries in the fnfieldlists array. */
645 int nfnfields;
646 };
c906108c 647
10b3939b
DJ
648/* One item on the queue of compilation units to read in full symbols
649 for. */
650struct dwarf2_queue_item
651{
652 struct dwarf2_per_cu_data *per_cu;
653 struct dwarf2_queue_item *next;
654};
655
656/* The current queue. */
657static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
658
ae038cb0
DJ
659/* Loaded secondary compilation units are kept in memory until they
660 have not been referenced for the processing of this many
661 compilation units. Set this to zero to disable caching. Cache
662 sizes of up to at least twenty will improve startup time for
663 typical inter-CU-reference binaries, at an obvious memory cost. */
664static int dwarf2_max_cache_age = 5;
920d2a44
AC
665static void
666show_dwarf2_max_cache_age (struct ui_file *file, int from_tty,
667 struct cmd_list_element *c, const char *value)
668{
669 fprintf_filtered (file, _("\
670The upper bound on the age of cached dwarf2 compilation units is %s.\n"),
671 value);
672}
673
ae038cb0 674
c906108c
SS
675/* Various complaints about symbol reading that don't abort the process */
676
4d3c2250
KB
677static void
678dwarf2_statement_list_fits_in_line_number_section_complaint (void)
2e276125 679{
4d3c2250 680 complaint (&symfile_complaints,
e2e0b3e5 681 _("statement list doesn't fit in .debug_line section"));
4d3c2250
KB
682}
683
684static void
685dwarf2_complex_location_expr_complaint (void)
2e276125 686{
e2e0b3e5 687 complaint (&symfile_complaints, _("location expression too complex"));
4d3c2250
KB
688}
689
4d3c2250
KB
690static void
691dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
692 int arg3)
2e276125 693{
4d3c2250 694 complaint (&symfile_complaints,
e2e0b3e5 695 _("const value length mismatch for '%s', got %d, expected %d"), arg1,
4d3c2250
KB
696 arg2, arg3);
697}
698
699static void
700dwarf2_macros_too_long_complaint (void)
2e276125 701{
4d3c2250 702 complaint (&symfile_complaints,
e2e0b3e5 703 _("macro info runs off end of `.debug_macinfo' section"));
4d3c2250
KB
704}
705
706static void
707dwarf2_macro_malformed_definition_complaint (const char *arg1)
8e19ed76 708{
4d3c2250 709 complaint (&symfile_complaints,
e2e0b3e5 710 _("macro debug info contains a malformed macro definition:\n`%s'"),
4d3c2250
KB
711 arg1);
712}
713
714static void
715dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
8b2dbe47 716{
4d3c2250 717 complaint (&symfile_complaints,
e2e0b3e5 718 _("invalid attribute class or form for '%s' in '%s'"), arg1, arg2);
4d3c2250 719}
c906108c 720
c906108c
SS
721/* local function prototypes */
722
4efb68b1 723static void dwarf2_locate_sections (bfd *, asection *, void *);
c906108c
SS
724
725#if 0
a14ed312 726static void dwarf2_build_psymtabs_easy (struct objfile *, int);
c906108c
SS
727#endif
728
aaa75496
JB
729static void dwarf2_create_include_psymtab (char *, struct partial_symtab *,
730 struct objfile *);
731
732static void dwarf2_build_include_psymtabs (struct dwarf2_cu *,
733 struct partial_die_info *,
734 struct partial_symtab *);
735
a14ed312 736static void dwarf2_build_psymtabs_hard (struct objfile *, int);
c906108c 737
72bf9492
DJ
738static void scan_partial_symbols (struct partial_die_info *,
739 CORE_ADDR *, CORE_ADDR *,
740 struct dwarf2_cu *);
c906108c 741
72bf9492
DJ
742static void add_partial_symbol (struct partial_die_info *,
743 struct dwarf2_cu *);
63d06c5c 744
72bf9492 745static int pdi_needs_namespace (enum dwarf_tag tag);
91c24f0a 746
72bf9492
DJ
747static void add_partial_namespace (struct partial_die_info *pdi,
748 CORE_ADDR *lowpc, CORE_ADDR *highpc,
749 struct dwarf2_cu *cu);
63d06c5c 750
72bf9492
DJ
751static void add_partial_enumeration (struct partial_die_info *enum_pdi,
752 struct dwarf2_cu *cu);
91c24f0a 753
fe1b8b76
JB
754static gdb_byte *locate_pdi_sibling (struct partial_die_info *orig_pdi,
755 gdb_byte *info_ptr,
756 bfd *abfd,
757 struct dwarf2_cu *cu);
91c24f0a 758
a14ed312 759static void dwarf2_psymtab_to_symtab (struct partial_symtab *);
c906108c 760
a14ed312 761static void psymtab_to_symtab_1 (struct partial_symtab *);
c906108c 762
fe1b8b76 763gdb_byte *dwarf2_read_section (struct objfile *, asection *);
c906108c 764
e7c27a73 765static void dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu);
c906108c 766
f3dd6933 767static void dwarf2_free_abbrev_table (void *);
c906108c 768
fe1b8b76 769static struct abbrev_info *peek_die_abbrev (gdb_byte *, unsigned int *,
891d2f0b 770 struct dwarf2_cu *);
72bf9492 771
57349743 772static struct abbrev_info *dwarf2_lookup_abbrev (unsigned int,
e7c27a73 773 struct dwarf2_cu *);
c906108c 774
fe1b8b76 775static struct partial_die_info *load_partial_dies (bfd *, gdb_byte *, int,
72bf9492
DJ
776 struct dwarf2_cu *);
777
fe1b8b76
JB
778static gdb_byte *read_partial_die (struct partial_die_info *,
779 struct abbrev_info *abbrev, unsigned int,
780 bfd *, gdb_byte *, struct dwarf2_cu *);
c906108c 781
72bf9492 782static struct partial_die_info *find_partial_die (unsigned long,
10b3939b 783 struct dwarf2_cu *);
72bf9492
DJ
784
785static void fixup_partial_die (struct partial_die_info *,
786 struct dwarf2_cu *);
787
fe1b8b76
JB
788static gdb_byte *read_full_die (struct die_info **, bfd *, gdb_byte *,
789 struct dwarf2_cu *, int *);
c906108c 790
fe1b8b76
JB
791static gdb_byte *read_attribute (struct attribute *, struct attr_abbrev *,
792 bfd *, gdb_byte *, struct dwarf2_cu *);
c906108c 793
fe1b8b76
JB
794static gdb_byte *read_attribute_value (struct attribute *, unsigned,
795 bfd *, gdb_byte *, struct dwarf2_cu *);
a8329558 796
fe1b8b76 797static unsigned int read_1_byte (bfd *, gdb_byte *);
c906108c 798
fe1b8b76 799static int read_1_signed_byte (bfd *, gdb_byte *);
c906108c 800
fe1b8b76 801static unsigned int read_2_bytes (bfd *, gdb_byte *);
c906108c 802
fe1b8b76 803static unsigned int read_4_bytes (bfd *, gdb_byte *);
c906108c 804
fe1b8b76 805static unsigned long read_8_bytes (bfd *, gdb_byte *);
c906108c 806
fe1b8b76 807static CORE_ADDR read_address (bfd *, gdb_byte *ptr, struct dwarf2_cu *,
891d2f0b 808 unsigned int *);
c906108c 809
fe1b8b76 810static LONGEST read_initial_length (bfd *, gdb_byte *,
891d2f0b 811 struct comp_unit_head *, unsigned int *);
613e1657 812
fe1b8b76 813static LONGEST read_offset (bfd *, gdb_byte *, const struct comp_unit_head *,
891d2f0b 814 unsigned int *);
613e1657 815
fe1b8b76 816static gdb_byte *read_n_bytes (bfd *, gdb_byte *, unsigned int);
c906108c 817
fe1b8b76 818static char *read_string (bfd *, gdb_byte *, unsigned int *);
c906108c 819
fe1b8b76
JB
820static char *read_indirect_string (bfd *, gdb_byte *,
821 const struct comp_unit_head *,
822 unsigned int *);
4bdf3d34 823
fe1b8b76 824static unsigned long read_unsigned_leb128 (bfd *, gdb_byte *, unsigned int *);
c906108c 825
fe1b8b76 826static long read_signed_leb128 (bfd *, gdb_byte *, unsigned int *);
c906108c 827
fe1b8b76 828static gdb_byte *skip_leb128 (bfd *, gdb_byte *);
4bb7a0a7 829
e142c38c 830static void set_cu_language (unsigned int, struct dwarf2_cu *);
c906108c 831
e142c38c
DJ
832static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
833 struct dwarf2_cu *);
c906108c 834
05cf31d1
JB
835static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
836 struct dwarf2_cu *cu);
837
e142c38c 838static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
3ca72b44 839
e142c38c
DJ
840static struct die_info *die_specification (struct die_info *die,
841 struct dwarf2_cu *);
63d06c5c 842
debd256d
JB
843static void free_line_header (struct line_header *lh);
844
aaa75496
JB
845static void add_file_name (struct line_header *, char *, unsigned int,
846 unsigned int, unsigned int);
847
debd256d
JB
848static struct line_header *(dwarf_decode_line_header
849 (unsigned int offset,
e7c27a73 850 bfd *abfd, struct dwarf2_cu *cu));
debd256d
JB
851
852static void dwarf_decode_lines (struct line_header *, char *, bfd *,
aaa75496 853 struct dwarf2_cu *, struct partial_symtab *);
c906108c 854
4f1520fb 855static void dwarf2_start_subfile (char *, char *, char *);
c906108c 856
a14ed312 857static struct symbol *new_symbol (struct die_info *, struct type *,
e7c27a73 858 struct dwarf2_cu *);
c906108c 859
a14ed312 860static void dwarf2_const_value (struct attribute *, struct symbol *,
e7c27a73 861 struct dwarf2_cu *);
c906108c 862
2df3850c
JM
863static void dwarf2_const_value_data (struct attribute *attr,
864 struct symbol *sym,
865 int bits);
866
e7c27a73 867static struct type *die_type (struct die_info *, struct dwarf2_cu *);
c906108c 868
e7c27a73
DJ
869static struct type *die_containing_type (struct die_info *,
870 struct dwarf2_cu *);
c906108c 871
e7c27a73 872static struct type *tag_type_to_type (struct die_info *, struct dwarf2_cu *);
c906108c 873
e7c27a73 874static void read_type_die (struct die_info *, struct dwarf2_cu *);
c906108c 875
086ed43d 876static char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
63d06c5c 877
fe1b8b76
JB
878static char *typename_concat (struct obstack *,
879 const char *prefix,
880 const char *suffix,
987504bb 881 struct dwarf2_cu *);
63d06c5c 882
e7c27a73 883static void read_typedef (struct die_info *, struct dwarf2_cu *);
c906108c 884
e7c27a73 885static void read_base_type (struct die_info *, struct dwarf2_cu *);
c906108c 886
a02abb62
JB
887static void read_subrange_type (struct die_info *die, struct dwarf2_cu *cu);
888
e7c27a73 889static void read_file_scope (struct die_info *, struct dwarf2_cu *);
c906108c 890
e7c27a73 891static void read_func_scope (struct die_info *, struct dwarf2_cu *);
c906108c 892
e7c27a73 893static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
c906108c 894
a14ed312 895static int dwarf2_get_pc_bounds (struct die_info *,
e7c27a73 896 CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *);
c906108c 897
fae299cd
DC
898static void get_scope_pc_bounds (struct die_info *,
899 CORE_ADDR *, CORE_ADDR *,
900 struct dwarf2_cu *);
901
a14ed312 902static void dwarf2_add_field (struct field_info *, struct die_info *,
e7c27a73 903 struct dwarf2_cu *);
c906108c 904
a14ed312 905static void dwarf2_attach_fields_to_type (struct field_info *,
e7c27a73 906 struct type *, struct dwarf2_cu *);
c906108c 907
a14ed312 908static void dwarf2_add_member_fn (struct field_info *,
e26fb1d7 909 struct die_info *, struct type *,
e7c27a73 910 struct dwarf2_cu *);
c906108c 911
a14ed312 912static void dwarf2_attach_fn_fields_to_type (struct field_info *,
e7c27a73 913 struct type *, struct dwarf2_cu *);
c906108c 914
134d01f1
DJ
915static void read_structure_type (struct die_info *, struct dwarf2_cu *);
916
917static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
c906108c 918
8176b9b8
DC
919static char *determine_class_name (struct die_info *die, struct dwarf2_cu *cu);
920
e7c27a73 921static void read_common_block (struct die_info *, struct dwarf2_cu *);
c906108c 922
e7c27a73 923static void read_namespace (struct die_info *die, struct dwarf2_cu *);
d9fa45fe 924
38d518c9 925static const char *namespace_name (struct die_info *die,
e142c38c 926 int *is_anonymous, struct dwarf2_cu *);
38d518c9 927
134d01f1
DJ
928static void read_enumeration_type (struct die_info *, struct dwarf2_cu *);
929
930static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
c906108c 931
e7c27a73 932static struct type *dwarf_base_type (int, int, struct dwarf2_cu *);
c906108c 933
e7c27a73 934static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
c906108c 935
e7c27a73 936static void read_array_type (struct die_info *, struct dwarf2_cu *);
c906108c 937
7ca2d3a3
DL
938static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
939 struct dwarf2_cu *);
940
e7c27a73 941static void read_tag_pointer_type (struct die_info *, struct dwarf2_cu *);
c906108c 942
e7c27a73
DJ
943static void read_tag_ptr_to_member_type (struct die_info *,
944 struct dwarf2_cu *);
c906108c 945
e7c27a73 946static void read_tag_reference_type (struct die_info *, struct dwarf2_cu *);
c906108c 947
e7c27a73 948static void read_tag_const_type (struct die_info *, struct dwarf2_cu *);
c906108c 949
e7c27a73 950static void read_tag_volatile_type (struct die_info *, struct dwarf2_cu *);
c906108c 951
e7c27a73 952static void read_tag_string_type (struct die_info *, struct dwarf2_cu *);
c906108c 953
e7c27a73 954static void read_subroutine_type (struct die_info *, struct dwarf2_cu *);
c906108c 955
fe1b8b76 956static struct die_info *read_comp_unit (gdb_byte *, bfd *, struct dwarf2_cu *);
c906108c 957
fe1b8b76 958static struct die_info *read_die_and_children (gdb_byte *info_ptr, bfd *abfd,
e7c27a73 959 struct dwarf2_cu *,
fe1b8b76 960 gdb_byte **new_info_ptr,
639d11d3
DC
961 struct die_info *parent);
962
fe1b8b76 963static struct die_info *read_die_and_siblings (gdb_byte *info_ptr, bfd *abfd,
e7c27a73 964 struct dwarf2_cu *,
fe1b8b76 965 gdb_byte **new_info_ptr,
639d11d3
DC
966 struct die_info *parent);
967
a14ed312 968static void free_die_list (struct die_info *);
c906108c 969
e7c27a73 970static void process_die (struct die_info *, struct dwarf2_cu *);
c906108c 971
e142c38c 972static char *dwarf2_linkage_name (struct die_info *, struct dwarf2_cu *);
c906108c 973
e142c38c 974static char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
9219021c 975
e142c38c
DJ
976static struct die_info *dwarf2_extension (struct die_info *die,
977 struct dwarf2_cu *);
9219021c 978
a14ed312 979static char *dwarf_tag_name (unsigned int);
c906108c 980
a14ed312 981static char *dwarf_attr_name (unsigned int);
c906108c 982
a14ed312 983static char *dwarf_form_name (unsigned int);
c906108c 984
a14ed312 985static char *dwarf_stack_op_name (unsigned int);
c906108c 986
a14ed312 987static char *dwarf_bool_name (unsigned int);
c906108c 988
a14ed312 989static char *dwarf_type_encoding_name (unsigned int);
c906108c
SS
990
991#if 0
a14ed312 992static char *dwarf_cfi_name (unsigned int);
c906108c 993
a14ed312 994struct die_info *copy_die (struct die_info *);
c906108c
SS
995#endif
996
f9aca02d 997static struct die_info *sibling_die (struct die_info *);
c906108c 998
f9aca02d 999static void dump_die (struct die_info *);
c906108c 1000
f9aca02d 1001static void dump_die_list (struct die_info *);
c906108c 1002
10b3939b
DJ
1003static void store_in_ref_table (unsigned int, struct die_info *,
1004 struct dwarf2_cu *);
c906108c 1005
e142c38c
DJ
1006static unsigned int dwarf2_get_ref_die_offset (struct attribute *,
1007 struct dwarf2_cu *);
c906108c 1008
a02abb62
JB
1009static int dwarf2_get_attr_constant_value (struct attribute *, int);
1010
10b3939b
DJ
1011static struct die_info *follow_die_ref (struct die_info *,
1012 struct attribute *,
1013 struct dwarf2_cu *);
c906108c 1014
e142c38c
DJ
1015static struct type *dwarf2_fundamental_type (struct objfile *, int,
1016 struct dwarf2_cu *);
c906108c
SS
1017
1018/* memory allocation interface */
1019
7b5a2f43 1020static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
c906108c 1021
f3dd6933 1022static struct abbrev_info *dwarf_alloc_abbrev (struct dwarf2_cu *);
c906108c 1023
a14ed312 1024static struct die_info *dwarf_alloc_die (void);
c906108c 1025
e142c38c 1026static void initialize_cu_func_list (struct dwarf2_cu *);
5fb290d7 1027
e142c38c
DJ
1028static void add_to_cu_func_list (const char *, CORE_ADDR, CORE_ADDR,
1029 struct dwarf2_cu *);
5fb290d7 1030
2e276125 1031static void dwarf_decode_macros (struct line_header *, unsigned int,
e7c27a73 1032 char *, bfd *, struct dwarf2_cu *);
2e276125 1033
8e19ed76
PS
1034static int attr_form_is_block (struct attribute *);
1035
4c2df51b
DJ
1036static void
1037dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
e7c27a73 1038 struct dwarf2_cu *cu);
4c2df51b 1039
fe1b8b76
JB
1040static gdb_byte *skip_one_die (gdb_byte *info_ptr, struct abbrev_info *abbrev,
1041 struct dwarf2_cu *cu);
4bb7a0a7 1042
72bf9492
DJ
1043static void free_stack_comp_unit (void *);
1044
72bf9492
DJ
1045static hashval_t partial_die_hash (const void *item);
1046
1047static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1048
ae038cb0
DJ
1049static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1050 (unsigned long offset, struct objfile *objfile);
1051
1052static struct dwarf2_per_cu_data *dwarf2_find_comp_unit
1053 (unsigned long offset, struct objfile *objfile);
1054
1055static void free_one_comp_unit (void *);
1056
1057static void free_cached_comp_units (void *);
1058
1059static void age_cached_comp_units (void);
1060
1061static void free_one_cached_comp_unit (void *);
1062
1c379e20
DJ
1063static void set_die_type (struct die_info *, struct type *,
1064 struct dwarf2_cu *);
1065
1c379e20
DJ
1066static void reset_die_and_siblings_types (struct die_info *,
1067 struct dwarf2_cu *);
1c379e20 1068
ae038cb0
DJ
1069static void create_all_comp_units (struct objfile *);
1070
31ffec48
DJ
1071static struct dwarf2_cu *load_full_comp_unit (struct dwarf2_per_cu_data *,
1072 struct objfile *);
10b3939b
DJ
1073
1074static void process_full_comp_unit (struct dwarf2_per_cu_data *);
1075
1076static void dwarf2_add_dependence (struct dwarf2_cu *,
1077 struct dwarf2_per_cu_data *);
1078
ae038cb0
DJ
1079static void dwarf2_mark (struct dwarf2_cu *);
1080
1081static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1082
72019c9c
GM
1083static void read_set_type (struct die_info *, struct dwarf2_cu *);
1084
1085
c906108c
SS
1086/* Try to locate the sections we need for DWARF 2 debugging
1087 information and return true if we have enough to do something. */
1088
1089int
6502dd73 1090dwarf2_has_info (struct objfile *objfile)
c906108c 1091{
6502dd73
DJ
1092 struct dwarf2_per_objfile *data;
1093
1094 /* Initialize per-objfile state. */
1095 data = obstack_alloc (&objfile->objfile_obstack, sizeof (*data));
1096 memset (data, 0, sizeof (*data));
1097 set_objfile_data (objfile, dwarf2_objfile_data_key, data);
1098 dwarf2_per_objfile = data;
1099
188dd5d6
DJ
1100 dwarf_info_section = 0;
1101 dwarf_abbrev_section = 0;
1102 dwarf_line_section = 0;
1103 dwarf_str_section = 0;
1104 dwarf_macinfo_section = 0;
1105 dwarf_frame_section = 0;
1106 dwarf_eh_frame_section = 0;
1107 dwarf_ranges_section = 0;
1108 dwarf_loc_section = 0;
af34e669 1109
6502dd73 1110 bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections, NULL);
188dd5d6 1111 return (dwarf_info_section != NULL && dwarf_abbrev_section != NULL);
c906108c
SS
1112}
1113
1114/* This function is mapped across the sections and remembers the
1115 offset and size of each of the debugging sections we are interested
1116 in. */
1117
1118static void
72dca2f5 1119dwarf2_locate_sections (bfd *abfd, asection *sectp, void *ignore_ptr)
c906108c 1120{
6314a349 1121 if (strcmp (sectp->name, INFO_SECTION) == 0)
c906108c 1122 {
2c500098 1123 dwarf2_per_objfile->info_size = bfd_get_section_size (sectp);
086df311 1124 dwarf_info_section = sectp;
c906108c 1125 }
6314a349 1126 else if (strcmp (sectp->name, ABBREV_SECTION) == 0)
c906108c 1127 {
2c500098 1128 dwarf2_per_objfile->abbrev_size = bfd_get_section_size (sectp);
086df311 1129 dwarf_abbrev_section = sectp;
c906108c 1130 }
6314a349 1131 else if (strcmp (sectp->name, LINE_SECTION) == 0)
c906108c 1132 {
2c500098 1133 dwarf2_per_objfile->line_size = bfd_get_section_size (sectp);
086df311 1134 dwarf_line_section = sectp;
c906108c 1135 }
6314a349 1136 else if (strcmp (sectp->name, PUBNAMES_SECTION) == 0)
c906108c 1137 {
2c500098 1138 dwarf2_per_objfile->pubnames_size = bfd_get_section_size (sectp);
086df311 1139 dwarf_pubnames_section = sectp;
c906108c 1140 }
6314a349 1141 else if (strcmp (sectp->name, ARANGES_SECTION) == 0)
c906108c 1142 {
2c500098 1143 dwarf2_per_objfile->aranges_size = bfd_get_section_size (sectp);
086df311 1144 dwarf_aranges_section = sectp;
c906108c 1145 }
6314a349 1146 else if (strcmp (sectp->name, LOC_SECTION) == 0)
c906108c 1147 {
2c500098 1148 dwarf2_per_objfile->loc_size = bfd_get_section_size (sectp);
086df311 1149 dwarf_loc_section = sectp;
c906108c 1150 }
6314a349 1151 else if (strcmp (sectp->name, MACINFO_SECTION) == 0)
c906108c 1152 {
2c500098 1153 dwarf2_per_objfile->macinfo_size = bfd_get_section_size (sectp);
0cf824c9 1154 dwarf_macinfo_section = sectp;
c906108c 1155 }
6314a349 1156 else if (strcmp (sectp->name, STR_SECTION) == 0)
c906108c 1157 {
2c500098 1158 dwarf2_per_objfile->str_size = bfd_get_section_size (sectp);
086df311 1159 dwarf_str_section = sectp;
c906108c 1160 }
6314a349 1161 else if (strcmp (sectp->name, FRAME_SECTION) == 0)
b6af0555 1162 {
2c500098 1163 dwarf2_per_objfile->frame_size = bfd_get_section_size (sectp);
086df311 1164 dwarf_frame_section = sectp;
b6af0555 1165 }
6314a349 1166 else if (strcmp (sectp->name, EH_FRAME_SECTION) == 0)
b6af0555 1167 {
3799ccc6
EZ
1168 flagword aflag = bfd_get_section_flags (ignore_abfd, sectp);
1169 if (aflag & SEC_HAS_CONTENTS)
1170 {
2c500098 1171 dwarf2_per_objfile->eh_frame_size = bfd_get_section_size (sectp);
3799ccc6
EZ
1172 dwarf_eh_frame_section = sectp;
1173 }
b6af0555 1174 }
6314a349 1175 else if (strcmp (sectp->name, RANGES_SECTION) == 0)
af34e669 1176 {
2c500098 1177 dwarf2_per_objfile->ranges_size = bfd_get_section_size (sectp);
6f10aeb1 1178 dwarf_ranges_section = sectp;
af34e669 1179 }
72dca2f5
FR
1180
1181 if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD)
1182 && bfd_section_vma (abfd, sectp) == 0)
1183 dwarf2_per_objfile->has_section_at_zero = 1;
c906108c
SS
1184}
1185
1186/* Build a partial symbol table. */
1187
1188void
fba45db2 1189dwarf2_build_psymtabs (struct objfile *objfile, int mainline)
c906108c 1190{
c906108c
SS
1191 /* We definitely need the .debug_info and .debug_abbrev sections */
1192
6502dd73
DJ
1193 dwarf2_per_objfile->info_buffer = dwarf2_read_section (objfile, dwarf_info_section);
1194 dwarf2_per_objfile->abbrev_buffer = dwarf2_read_section (objfile, dwarf_abbrev_section);
188dd5d6
DJ
1195
1196 if (dwarf_line_section)
6502dd73 1197 dwarf2_per_objfile->line_buffer = dwarf2_read_section (objfile, dwarf_line_section);
41ff2da1 1198 else
6502dd73 1199 dwarf2_per_objfile->line_buffer = NULL;
c906108c 1200
188dd5d6 1201 if (dwarf_str_section)
6502dd73 1202 dwarf2_per_objfile->str_buffer = dwarf2_read_section (objfile, dwarf_str_section);
4bdf3d34 1203 else
6502dd73 1204 dwarf2_per_objfile->str_buffer = NULL;
4bdf3d34 1205
188dd5d6 1206 if (dwarf_macinfo_section)
6502dd73 1207 dwarf2_per_objfile->macinfo_buffer = dwarf2_read_section (objfile,
086df311 1208 dwarf_macinfo_section);
2e276125 1209 else
6502dd73 1210 dwarf2_per_objfile->macinfo_buffer = NULL;
2e276125 1211
188dd5d6 1212 if (dwarf_ranges_section)
6502dd73 1213 dwarf2_per_objfile->ranges_buffer = dwarf2_read_section (objfile, dwarf_ranges_section);
af34e669 1214 else
6502dd73 1215 dwarf2_per_objfile->ranges_buffer = NULL;
af34e669 1216
188dd5d6 1217 if (dwarf_loc_section)
6502dd73 1218 dwarf2_per_objfile->loc_buffer = dwarf2_read_section (objfile, dwarf_loc_section);
0d53c4c4 1219 else
6502dd73 1220 dwarf2_per_objfile->loc_buffer = NULL;
0d53c4c4 1221
ef96bde8
EZ
1222 if (mainline
1223 || (objfile->global_psymbols.size == 0
1224 && objfile->static_psymbols.size == 0))
c906108c
SS
1225 {
1226 init_psymbol_list (objfile, 1024);
1227 }
1228
1229#if 0
1230 if (dwarf_aranges_offset && dwarf_pubnames_offset)
1231 {
d4f3574e 1232 /* Things are significantly easier if we have .debug_aranges and
c906108c
SS
1233 .debug_pubnames sections */
1234
d4f3574e 1235 dwarf2_build_psymtabs_easy (objfile, mainline);
c906108c
SS
1236 }
1237 else
1238#endif
1239 /* only test this case for now */
c5aa993b 1240 {
c906108c 1241 /* In this case we have to work a bit harder */
d4f3574e 1242 dwarf2_build_psymtabs_hard (objfile, mainline);
c906108c
SS
1243 }
1244}
1245
1246#if 0
1247/* Build the partial symbol table from the information in the
1248 .debug_pubnames and .debug_aranges sections. */
1249
1250static void
fba45db2 1251dwarf2_build_psymtabs_easy (struct objfile *objfile, int mainline)
c906108c
SS
1252{
1253 bfd *abfd = objfile->obfd;
1254 char *aranges_buffer, *pubnames_buffer;
1255 char *aranges_ptr, *pubnames_ptr;
1256 unsigned int entry_length, version, info_offset, info_size;
1257
1258 pubnames_buffer = dwarf2_read_section (objfile,
086df311 1259 dwarf_pubnames_section);
c906108c 1260 pubnames_ptr = pubnames_buffer;
6502dd73 1261 while ((pubnames_ptr - pubnames_buffer) < dwarf2_per_objfile->pubnames_size)
c906108c 1262 {
613e1657 1263 struct comp_unit_head cu_header;
891d2f0b 1264 unsigned int bytes_read;
613e1657
KB
1265
1266 entry_length = read_initial_length (abfd, pubnames_ptr, &cu_header,
891d2f0b 1267 &bytes_read);
613e1657 1268 pubnames_ptr += bytes_read;
c906108c
SS
1269 version = read_1_byte (abfd, pubnames_ptr);
1270 pubnames_ptr += 1;
1271 info_offset = read_4_bytes (abfd, pubnames_ptr);
1272 pubnames_ptr += 4;
1273 info_size = read_4_bytes (abfd, pubnames_ptr);
1274 pubnames_ptr += 4;
1275 }
1276
1277 aranges_buffer = dwarf2_read_section (objfile,
086df311 1278 dwarf_aranges_section);
c906108c
SS
1279
1280}
1281#endif
1282
107d2387 1283/* Read in the comp unit header information from the debug_info at
917c78fc 1284 info_ptr. */
107d2387 1285
fe1b8b76 1286static gdb_byte *
107d2387 1287read_comp_unit_head (struct comp_unit_head *cu_header,
fe1b8b76 1288 gdb_byte *info_ptr, bfd *abfd)
107d2387
AC
1289{
1290 int signed_addr;
891d2f0b 1291 unsigned int bytes_read;
613e1657
KB
1292 cu_header->length = read_initial_length (abfd, info_ptr, cu_header,
1293 &bytes_read);
1294 info_ptr += bytes_read;
107d2387
AC
1295 cu_header->version = read_2_bytes (abfd, info_ptr);
1296 info_ptr += 2;
613e1657
KB
1297 cu_header->abbrev_offset = read_offset (abfd, info_ptr, cu_header,
1298 &bytes_read);
1299 info_ptr += bytes_read;
107d2387
AC
1300 cu_header->addr_size = read_1_byte (abfd, info_ptr);
1301 info_ptr += 1;
1302 signed_addr = bfd_get_sign_extend_vma (abfd);
1303 if (signed_addr < 0)
8e65ff28 1304 internal_error (__FILE__, __LINE__,
e2e0b3e5 1305 _("read_comp_unit_head: dwarf from non elf file"));
107d2387
AC
1306 cu_header->signed_addr_p = signed_addr;
1307 return info_ptr;
1308}
1309
fe1b8b76
JB
1310static gdb_byte *
1311partial_read_comp_unit_head (struct comp_unit_head *header, gdb_byte *info_ptr,
72bf9492
DJ
1312 bfd *abfd)
1313{
fe1b8b76 1314 gdb_byte *beg_of_comp_unit = info_ptr;
72bf9492
DJ
1315
1316 info_ptr = read_comp_unit_head (header, info_ptr, abfd);
1317
2b949cb6 1318 if (header->version != 2 && header->version != 3)
8a3fe4f8
AC
1319 error (_("Dwarf Error: wrong version in compilation unit header "
1320 "(is %d, should be %d) [in module %s]"), header->version,
72bf9492
DJ
1321 2, bfd_get_filename (abfd));
1322
1323 if (header->abbrev_offset >= dwarf2_per_objfile->abbrev_size)
8a3fe4f8
AC
1324 error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
1325 "(offset 0x%lx + 6) [in module %s]"),
72bf9492
DJ
1326 (long) header->abbrev_offset,
1327 (long) (beg_of_comp_unit - dwarf2_per_objfile->info_buffer),
1328 bfd_get_filename (abfd));
1329
1330 if (beg_of_comp_unit + header->length + header->initial_length_size
1331 > dwarf2_per_objfile->info_buffer + dwarf2_per_objfile->info_size)
8a3fe4f8
AC
1332 error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
1333 "(offset 0x%lx + 0) [in module %s]"),
72bf9492
DJ
1334 (long) header->length,
1335 (long) (beg_of_comp_unit - dwarf2_per_objfile->info_buffer),
1336 bfd_get_filename (abfd));
1337
1338 return info_ptr;
1339}
1340
aaa75496
JB
1341/* Allocate a new partial symtab for file named NAME and mark this new
1342 partial symtab as being an include of PST. */
1343
1344static void
1345dwarf2_create_include_psymtab (char *name, struct partial_symtab *pst,
1346 struct objfile *objfile)
1347{
1348 struct partial_symtab *subpst = allocate_psymtab (name, objfile);
1349
1350 subpst->section_offsets = pst->section_offsets;
1351 subpst->textlow = 0;
1352 subpst->texthigh = 0;
1353
1354 subpst->dependencies = (struct partial_symtab **)
1355 obstack_alloc (&objfile->objfile_obstack,
1356 sizeof (struct partial_symtab *));
1357 subpst->dependencies[0] = pst;
1358 subpst->number_of_dependencies = 1;
1359
1360 subpst->globals_offset = 0;
1361 subpst->n_global_syms = 0;
1362 subpst->statics_offset = 0;
1363 subpst->n_static_syms = 0;
1364 subpst->symtab = NULL;
1365 subpst->read_symtab = pst->read_symtab;
1366 subpst->readin = 0;
1367
1368 /* No private part is necessary for include psymtabs. This property
1369 can be used to differentiate between such include psymtabs and
10b3939b 1370 the regular ones. */
58a9656e 1371 subpst->read_symtab_private = NULL;
aaa75496
JB
1372}
1373
1374/* Read the Line Number Program data and extract the list of files
1375 included by the source file represented by PST. Build an include
1376 partial symtab for each of these included files.
1377
1378 This procedure assumes that there *is* a Line Number Program in
1379 the given CU. Callers should check that PDI->HAS_STMT_LIST is set
1380 before calling this procedure. */
1381
1382static void
1383dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
1384 struct partial_die_info *pdi,
1385 struct partial_symtab *pst)
1386{
1387 struct objfile *objfile = cu->objfile;
1388 bfd *abfd = objfile->obfd;
1389 struct line_header *lh;
1390
1391 lh = dwarf_decode_line_header (pdi->line_offset, abfd, cu);
1392 if (lh == NULL)
1393 return; /* No linetable, so no includes. */
1394
1395 dwarf_decode_lines (lh, NULL, abfd, cu, pst);
1396
1397 free_line_header (lh);
1398}
1399
1400
c906108c
SS
1401/* Build the partial symbol table by doing a quick pass through the
1402 .debug_info and .debug_abbrev sections. */
1403
1404static void
fba45db2 1405dwarf2_build_psymtabs_hard (struct objfile *objfile, int mainline)
c906108c
SS
1406{
1407 /* Instead of reading this into a big buffer, we should probably use
1408 mmap() on architectures that support it. (FIXME) */
1409 bfd *abfd = objfile->obfd;
fe1b8b76
JB
1410 gdb_byte *info_ptr;
1411 gdb_byte *beg_of_comp_unit;
c906108c
SS
1412 struct partial_die_info comp_unit_die;
1413 struct partial_symtab *pst;
ae038cb0 1414 struct cleanup *back_to;
e142c38c 1415 CORE_ADDR lowpc, highpc, baseaddr;
c906108c 1416
6502dd73 1417 info_ptr = dwarf2_per_objfile->info_buffer;
c906108c 1418
ae038cb0
DJ
1419 /* Any cached compilation units will be linked by the per-objfile
1420 read_in_chain. Make sure to free them when we're done. */
1421 back_to = make_cleanup (free_cached_comp_units, NULL);
1422
10b3939b
DJ
1423 create_all_comp_units (objfile);
1424
6502dd73 1425 /* Since the objects we're extracting from .debug_info vary in
af703f96 1426 length, only the individual functions to extract them (like
72bf9492 1427 read_comp_unit_head and load_partial_die) can really know whether
af703f96
JB
1428 the buffer is large enough to hold another complete object.
1429
6502dd73
DJ
1430 At the moment, they don't actually check that. If .debug_info
1431 holds just one extra byte after the last compilation unit's dies,
1432 then read_comp_unit_head will happily read off the end of the
1433 buffer. read_partial_die is similarly casual. Those functions
1434 should be fixed.
af703f96
JB
1435
1436 For this loop condition, simply checking whether there's any data
1437 left at all should be sufficient. */
6502dd73
DJ
1438 while (info_ptr < (dwarf2_per_objfile->info_buffer
1439 + dwarf2_per_objfile->info_size))
c906108c 1440 {
f3dd6933 1441 struct cleanup *back_to_inner;
e7c27a73 1442 struct dwarf2_cu cu;
72bf9492
DJ
1443 struct abbrev_info *abbrev;
1444 unsigned int bytes_read;
1445 struct dwarf2_per_cu_data *this_cu;
1446
c906108c 1447 beg_of_comp_unit = info_ptr;
c906108c 1448
72bf9492
DJ
1449 memset (&cu, 0, sizeof (cu));
1450
1451 obstack_init (&cu.comp_unit_obstack);
1452
1453 back_to_inner = make_cleanup (free_stack_comp_unit, &cu);
1454
e7c27a73 1455 cu.objfile = objfile;
72bf9492 1456 info_ptr = partial_read_comp_unit_head (&cu.header, info_ptr, abfd);
e7c27a73 1457
57349743 1458 /* Complete the cu_header */
6502dd73 1459 cu.header.offset = beg_of_comp_unit - dwarf2_per_objfile->info_buffer;
e7c27a73
DJ
1460 cu.header.first_die_ptr = info_ptr;
1461 cu.header.cu_head_ptr = beg_of_comp_unit;
57349743 1462
e142c38c
DJ
1463 cu.list_in_scope = &file_symbols;
1464
c906108c 1465 /* Read the abbrevs for this compilation unit into a table */
e7c27a73 1466 dwarf2_read_abbrevs (abfd, &cu);
72bf9492 1467 make_cleanup (dwarf2_free_abbrev_table, &cu);
c906108c 1468
10b3939b 1469 this_cu = dwarf2_find_comp_unit (cu.header.offset, objfile);
ae038cb0 1470
c906108c 1471 /* Read the compilation unit die */
72bf9492
DJ
1472 abbrev = peek_die_abbrev (info_ptr, &bytes_read, &cu);
1473 info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read,
1474 abfd, info_ptr, &cu);
c906108c 1475
31ffec48
DJ
1476 if (comp_unit_die.tag == DW_TAG_partial_unit)
1477 {
1478 info_ptr = (beg_of_comp_unit + cu.header.length
1479 + cu.header.initial_length_size);
1480 do_cleanups (back_to_inner);
1481 continue;
1482 }
1483
c906108c 1484 /* Set the language we're debugging */
e142c38c 1485 set_cu_language (comp_unit_die.language, &cu);
c906108c
SS
1486
1487 /* Allocate a new partial symbol table structure */
d4f3574e 1488 pst = start_psymtab_common (objfile, objfile->section_offsets,
96baa820 1489 comp_unit_die.name ? comp_unit_die.name : "",
c906108c
SS
1490 comp_unit_die.lowpc,
1491 objfile->global_psymbols.next,
1492 objfile->static_psymbols.next);
1493
ae038cb0
DJ
1494 if (comp_unit_die.dirname)
1495 pst->dirname = xstrdup (comp_unit_die.dirname);
57c22c6c 1496
10b3939b
DJ
1497 pst->read_symtab_private = (char *) this_cu;
1498
613e1657 1499 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
1500
1501 /* Store the function that reads in the rest of the symbol table */
1502 pst->read_symtab = dwarf2_psymtab_to_symtab;
1503
10b3939b
DJ
1504 /* If this compilation unit was already read in, free the
1505 cached copy in order to read it in again. This is
1506 necessary because we skipped some symbols when we first
1507 read in the compilation unit (see load_partial_dies).
1508 This problem could be avoided, but the benefit is
1509 unclear. */
1510 if (this_cu->cu != NULL)
1511 free_one_cached_comp_unit (this_cu->cu);
ae038cb0 1512
10b3939b 1513 cu.per_cu = this_cu;
ae038cb0 1514
10b3939b
DJ
1515 /* Note that this is a pointer to our stack frame, being
1516 added to a global data structure. It will be cleaned up
1517 in free_stack_comp_unit when we finish with this
1518 compilation unit. */
1519 this_cu->cu = &cu;
ae038cb0 1520
10b3939b 1521 this_cu->psymtab = pst;
ae038cb0 1522
c906108c
SS
1523 /* Check if comp unit has_children.
1524 If so, read the rest of the partial symbols from this comp unit.
1525 If not, there's no more debug_info for this comp unit. */
1526 if (comp_unit_die.has_children)
1527 {
72bf9492
DJ
1528 struct partial_die_info *first_die;
1529
91c24f0a
DC
1530 lowpc = ((CORE_ADDR) -1);
1531 highpc = ((CORE_ADDR) 0);
1532
72bf9492
DJ
1533 first_die = load_partial_dies (abfd, info_ptr, 1, &cu);
1534
1535 scan_partial_symbols (first_die, &lowpc, &highpc, &cu);
c906108c 1536
91c24f0a
DC
1537 /* If we didn't find a lowpc, set it to highpc to avoid
1538 complaints from `maint check'. */
1539 if (lowpc == ((CORE_ADDR) -1))
1540 lowpc = highpc;
72bf9492 1541
c906108c
SS
1542 /* If the compilation unit didn't have an explicit address range,
1543 then use the information extracted from its child dies. */
0b010bcc 1544 if (! comp_unit_die.has_pc_info)
c906108c 1545 {
c5aa993b 1546 comp_unit_die.lowpc = lowpc;
c906108c
SS
1547 comp_unit_die.highpc = highpc;
1548 }
1549 }
c5aa993b 1550 pst->textlow = comp_unit_die.lowpc + baseaddr;
c906108c
SS
1551 pst->texthigh = comp_unit_die.highpc + baseaddr;
1552
1553 pst->n_global_syms = objfile->global_psymbols.next -
1554 (objfile->global_psymbols.list + pst->globals_offset);
1555 pst->n_static_syms = objfile->static_psymbols.next -
1556 (objfile->static_psymbols.list + pst->statics_offset);
1557 sort_pst_symbols (pst);
1558
1559 /* If there is already a psymtab or symtab for a file of this
1560 name, remove it. (If there is a symtab, more drastic things
1561 also happen.) This happens in VxWorks. */
1562 free_named_symtabs (pst->filename);
1563
dd373385
EZ
1564 info_ptr = beg_of_comp_unit + cu.header.length
1565 + cu.header.initial_length_size;
1566
aaa75496
JB
1567 if (comp_unit_die.has_stmt_list)
1568 {
1569 /* Get the list of files included in the current compilation unit,
1570 and build a psymtab for each of them. */
1571 dwarf2_build_include_psymtabs (&cu, &comp_unit_die, pst);
1572 }
1573
f3dd6933 1574 do_cleanups (back_to_inner);
c906108c 1575 }
ae038cb0
DJ
1576 do_cleanups (back_to);
1577}
1578
1579/* Load the DIEs for a secondary CU into memory. */
1580
1581static void
1582load_comp_unit (struct dwarf2_per_cu_data *this_cu, struct objfile *objfile)
1583{
1584 bfd *abfd = objfile->obfd;
fe1b8b76 1585 gdb_byte *info_ptr, *beg_of_comp_unit;
ae038cb0
DJ
1586 struct partial_die_info comp_unit_die;
1587 struct dwarf2_cu *cu;
1588 struct abbrev_info *abbrev;
1589 unsigned int bytes_read;
1590 struct cleanup *back_to;
1591
1592 info_ptr = dwarf2_per_objfile->info_buffer + this_cu->offset;
1593 beg_of_comp_unit = info_ptr;
1594
1595 cu = xmalloc (sizeof (struct dwarf2_cu));
1596 memset (cu, 0, sizeof (struct dwarf2_cu));
1597
1598 obstack_init (&cu->comp_unit_obstack);
1599
1600 cu->objfile = objfile;
1601 info_ptr = partial_read_comp_unit_head (&cu->header, info_ptr, abfd);
1602
1603 /* Complete the cu_header. */
1604 cu->header.offset = beg_of_comp_unit - dwarf2_per_objfile->info_buffer;
1605 cu->header.first_die_ptr = info_ptr;
1606 cu->header.cu_head_ptr = beg_of_comp_unit;
1607
1608 /* Read the abbrevs for this compilation unit into a table. */
1609 dwarf2_read_abbrevs (abfd, cu);
1610 back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
1611
1612 /* Read the compilation unit die. */
1613 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
1614 info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read,
1615 abfd, info_ptr, cu);
1616
1617 /* Set the language we're debugging. */
1618 set_cu_language (comp_unit_die.language, cu);
1619
1620 /* Link this compilation unit into the compilation unit tree. */
1621 this_cu->cu = cu;
1622 cu->per_cu = this_cu;
1623
1624 /* Check if comp unit has_children.
1625 If so, read the rest of the partial symbols from this comp unit.
1626 If not, there's no more debug_info for this comp unit. */
1627 if (comp_unit_die.has_children)
1628 load_partial_dies (abfd, info_ptr, 0, cu);
1629
1630 do_cleanups (back_to);
1631}
1632
1633/* Create a list of all compilation units in OBJFILE. We do this only
1634 if an inter-comp-unit reference is found; presumably if there is one,
1635 there will be many, and one will occur early in the .debug_info section.
1636 So there's no point in building this list incrementally. */
1637
1638static void
1639create_all_comp_units (struct objfile *objfile)
1640{
1641 int n_allocated;
1642 int n_comp_units;
1643 struct dwarf2_per_cu_data **all_comp_units;
fe1b8b76 1644 gdb_byte *info_ptr = dwarf2_per_objfile->info_buffer;
ae038cb0
DJ
1645
1646 n_comp_units = 0;
1647 n_allocated = 10;
1648 all_comp_units = xmalloc (n_allocated
1649 * sizeof (struct dwarf2_per_cu_data *));
1650
1651 while (info_ptr < dwarf2_per_objfile->info_buffer + dwarf2_per_objfile->info_size)
1652 {
1653 struct comp_unit_head cu_header;
fe1b8b76 1654 gdb_byte *beg_of_comp_unit;
ae038cb0
DJ
1655 struct dwarf2_per_cu_data *this_cu;
1656 unsigned long offset;
891d2f0b 1657 unsigned int bytes_read;
ae038cb0
DJ
1658
1659 offset = info_ptr - dwarf2_per_objfile->info_buffer;
1660
1661 /* Read just enough information to find out where the next
1662 compilation unit is. */
dd373385 1663 cu_header.initial_length_size = 0;
ae038cb0
DJ
1664 cu_header.length = read_initial_length (objfile->obfd, info_ptr,
1665 &cu_header, &bytes_read);
1666
1667 /* Save the compilation unit for later lookup. */
1668 this_cu = obstack_alloc (&objfile->objfile_obstack,
1669 sizeof (struct dwarf2_per_cu_data));
1670 memset (this_cu, 0, sizeof (*this_cu));
1671 this_cu->offset = offset;
1672 this_cu->length = cu_header.length + cu_header.initial_length_size;
1673
1674 if (n_comp_units == n_allocated)
1675 {
1676 n_allocated *= 2;
1677 all_comp_units = xrealloc (all_comp_units,
1678 n_allocated
1679 * sizeof (struct dwarf2_per_cu_data *));
1680 }
1681 all_comp_units[n_comp_units++] = this_cu;
1682
1683 info_ptr = info_ptr + this_cu->length;
1684 }
1685
1686 dwarf2_per_objfile->all_comp_units
1687 = obstack_alloc (&objfile->objfile_obstack,
1688 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
1689 memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
1690 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
1691 xfree (all_comp_units);
1692 dwarf2_per_objfile->n_comp_units = n_comp_units;
c906108c
SS
1693}
1694
72bf9492
DJ
1695/* Process all loaded DIEs for compilation unit CU, starting at FIRST_DIE.
1696 Also set *LOWPC and *HIGHPC to the lowest and highest PC values found
1697 in CU. */
c906108c 1698
72bf9492
DJ
1699static void
1700scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
1701 CORE_ADDR *highpc, struct dwarf2_cu *cu)
c906108c 1702{
e7c27a73 1703 struct objfile *objfile = cu->objfile;
c906108c 1704 bfd *abfd = objfile->obfd;
72bf9492 1705 struct partial_die_info *pdi;
c906108c 1706
91c24f0a
DC
1707 /* Now, march along the PDI's, descending into ones which have
1708 interesting children but skipping the children of the other ones,
1709 until we reach the end of the compilation unit. */
c906108c 1710
72bf9492 1711 pdi = first_die;
91c24f0a 1712
72bf9492
DJ
1713 while (pdi != NULL)
1714 {
1715 fixup_partial_die (pdi, cu);
c906108c 1716
91c24f0a
DC
1717 /* Anonymous namespaces have no name but have interesting
1718 children, so we need to look at them. Ditto for anonymous
1719 enums. */
933c6fe4 1720
72bf9492
DJ
1721 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
1722 || pdi->tag == DW_TAG_enumeration_type)
c906108c 1723 {
72bf9492 1724 switch (pdi->tag)
c906108c
SS
1725 {
1726 case DW_TAG_subprogram:
72bf9492 1727 if (pdi->has_pc_info)
c906108c 1728 {
72bf9492 1729 if (pdi->lowpc < *lowpc)
c906108c 1730 {
72bf9492 1731 *lowpc = pdi->lowpc;
c906108c 1732 }
72bf9492 1733 if (pdi->highpc > *highpc)
c906108c 1734 {
72bf9492 1735 *highpc = pdi->highpc;
c906108c 1736 }
72bf9492 1737 if (!pdi->is_declaration)
c906108c 1738 {
72bf9492 1739 add_partial_symbol (pdi, cu);
c906108c
SS
1740 }
1741 }
1742 break;
1743 case DW_TAG_variable:
1744 case DW_TAG_typedef:
91c24f0a 1745 case DW_TAG_union_type:
72bf9492 1746 if (!pdi->is_declaration)
63d06c5c 1747 {
72bf9492 1748 add_partial_symbol (pdi, cu);
63d06c5c
DC
1749 }
1750 break;
c906108c
SS
1751 case DW_TAG_class_type:
1752 case DW_TAG_structure_type:
72bf9492 1753 if (!pdi->is_declaration)
c906108c 1754 {
72bf9492 1755 add_partial_symbol (pdi, cu);
c906108c
SS
1756 }
1757 break;
91c24f0a 1758 case DW_TAG_enumeration_type:
72bf9492
DJ
1759 if (!pdi->is_declaration)
1760 add_partial_enumeration (pdi, cu);
c906108c
SS
1761 break;
1762 case DW_TAG_base_type:
a02abb62 1763 case DW_TAG_subrange_type:
c906108c 1764 /* File scope base type definitions are added to the partial
c5aa993b 1765 symbol table. */
72bf9492 1766 add_partial_symbol (pdi, cu);
c906108c 1767 break;
d9fa45fe 1768 case DW_TAG_namespace:
72bf9492 1769 add_partial_namespace (pdi, lowpc, highpc, cu);
91c24f0a 1770 break;
c906108c
SS
1771 default:
1772 break;
1773 }
1774 }
1775
72bf9492
DJ
1776 /* If the die has a sibling, skip to the sibling. */
1777
1778 pdi = pdi->die_sibling;
1779 }
1780}
1781
1782/* Functions used to compute the fully scoped name of a partial DIE.
91c24f0a 1783
72bf9492 1784 Normally, this is simple. For C++, the parent DIE's fully scoped
987504bb
JJ
1785 name is concatenated with "::" and the partial DIE's name. For
1786 Java, the same thing occurs except that "." is used instead of "::".
72bf9492
DJ
1787 Enumerators are an exception; they use the scope of their parent
1788 enumeration type, i.e. the name of the enumeration type is not
1789 prepended to the enumerator.
91c24f0a 1790
72bf9492
DJ
1791 There are two complexities. One is DW_AT_specification; in this
1792 case "parent" means the parent of the target of the specification,
1793 instead of the direct parent of the DIE. The other is compilers
1794 which do not emit DW_TAG_namespace; in this case we try to guess
1795 the fully qualified name of structure types from their members'
1796 linkage names. This must be done using the DIE's children rather
1797 than the children of any DW_AT_specification target. We only need
1798 to do this for structures at the top level, i.e. if the target of
1799 any DW_AT_specification (if any; otherwise the DIE itself) does not
1800 have a parent. */
1801
1802/* Compute the scope prefix associated with PDI's parent, in
1803 compilation unit CU. The result will be allocated on CU's
1804 comp_unit_obstack, or a copy of the already allocated PDI->NAME
1805 field. NULL is returned if no prefix is necessary. */
1806static char *
1807partial_die_parent_scope (struct partial_die_info *pdi,
1808 struct dwarf2_cu *cu)
1809{
1810 char *grandparent_scope;
1811 struct partial_die_info *parent, *real_pdi;
91c24f0a 1812
72bf9492
DJ
1813 /* We need to look at our parent DIE; if we have a DW_AT_specification,
1814 then this means the parent of the specification DIE. */
1815
1816 real_pdi = pdi;
72bf9492 1817 while (real_pdi->has_specification)
10b3939b 1818 real_pdi = find_partial_die (real_pdi->spec_offset, cu);
72bf9492
DJ
1819
1820 parent = real_pdi->die_parent;
1821 if (parent == NULL)
1822 return NULL;
1823
1824 if (parent->scope_set)
1825 return parent->scope;
1826
1827 fixup_partial_die (parent, cu);
1828
10b3939b 1829 grandparent_scope = partial_die_parent_scope (parent, cu);
72bf9492
DJ
1830
1831 if (parent->tag == DW_TAG_namespace
1832 || parent->tag == DW_TAG_structure_type
1833 || parent->tag == DW_TAG_class_type
1834 || parent->tag == DW_TAG_union_type)
1835 {
1836 if (grandparent_scope == NULL)
1837 parent->scope = parent->name;
1838 else
987504bb
JJ
1839 parent->scope = typename_concat (&cu->comp_unit_obstack, grandparent_scope,
1840 parent->name, cu);
72bf9492
DJ
1841 }
1842 else if (parent->tag == DW_TAG_enumeration_type)
1843 /* Enumerators should not get the name of the enumeration as a prefix. */
1844 parent->scope = grandparent_scope;
1845 else
1846 {
1847 /* FIXME drow/2004-04-01: What should we be doing with
1848 function-local names? For partial symbols, we should probably be
1849 ignoring them. */
1850 complaint (&symfile_complaints,
e2e0b3e5 1851 _("unhandled containing DIE tag %d for DIE at %d"),
72bf9492
DJ
1852 parent->tag, pdi->offset);
1853 parent->scope = grandparent_scope;
c906108c
SS
1854 }
1855
72bf9492
DJ
1856 parent->scope_set = 1;
1857 return parent->scope;
1858}
1859
1860/* Return the fully scoped name associated with PDI, from compilation unit
1861 CU. The result will be allocated with malloc. */
1862static char *
1863partial_die_full_name (struct partial_die_info *pdi,
1864 struct dwarf2_cu *cu)
1865{
1866 char *parent_scope;
1867
1868 parent_scope = partial_die_parent_scope (pdi, cu);
1869 if (parent_scope == NULL)
1870 return NULL;
1871 else
987504bb 1872 return typename_concat (NULL, parent_scope, pdi->name, cu);
c906108c
SS
1873}
1874
1875static void
72bf9492 1876add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
c906108c 1877{
e7c27a73 1878 struct objfile *objfile = cu->objfile;
c906108c 1879 CORE_ADDR addr = 0;
72bf9492
DJ
1880 char *actual_name;
1881 const char *my_prefix;
5c4e30ca 1882 const struct partial_symbol *psym = NULL;
e142c38c 1883 CORE_ADDR baseaddr;
72bf9492 1884 int built_actual_name = 0;
e142c38c
DJ
1885
1886 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 1887
72bf9492
DJ
1888 actual_name = NULL;
1889
1890 if (pdi_needs_namespace (pdi->tag))
63d06c5c 1891 {
72bf9492
DJ
1892 actual_name = partial_die_full_name (pdi, cu);
1893 if (actual_name)
1894 built_actual_name = 1;
63d06c5c
DC
1895 }
1896
72bf9492
DJ
1897 if (actual_name == NULL)
1898 actual_name = pdi->name;
1899
c906108c
SS
1900 switch (pdi->tag)
1901 {
1902 case DW_TAG_subprogram:
1903 if (pdi->is_external)
1904 {
38d518c9 1905 /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
c5aa993b 1906 mst_text, objfile); */
38d518c9 1907 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
5c4e30ca
DC
1908 VAR_DOMAIN, LOC_BLOCK,
1909 &objfile->global_psymbols,
1910 0, pdi->lowpc + baseaddr,
e142c38c 1911 cu->language, objfile);
c906108c
SS
1912 }
1913 else
1914 {
38d518c9 1915 /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
c5aa993b 1916 mst_file_text, objfile); */
38d518c9 1917 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
5c4e30ca
DC
1918 VAR_DOMAIN, LOC_BLOCK,
1919 &objfile->static_psymbols,
1920 0, pdi->lowpc + baseaddr,
e142c38c 1921 cu->language, objfile);
c906108c
SS
1922 }
1923 break;
1924 case DW_TAG_variable:
1925 if (pdi->is_external)
1926 {
1927 /* Global Variable.
1928 Don't enter into the minimal symbol tables as there is
1929 a minimal symbol table entry from the ELF symbols already.
1930 Enter into partial symbol table if it has a location
1931 descriptor or a type.
1932 If the location descriptor is missing, new_symbol will create
1933 a LOC_UNRESOLVED symbol, the address of the variable will then
1934 be determined from the minimal symbol table whenever the variable
1935 is referenced.
1936 The address for the partial symbol table entry is not
1937 used by GDB, but it comes in handy for debugging partial symbol
1938 table building. */
1939
1940 if (pdi->locdesc)
e7c27a73 1941 addr = decode_locdesc (pdi->locdesc, cu);
c906108c 1942 if (pdi->locdesc || pdi->has_type)
38d518c9 1943 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
5c4e30ca
DC
1944 VAR_DOMAIN, LOC_STATIC,
1945 &objfile->global_psymbols,
1946 0, addr + baseaddr,
e142c38c 1947 cu->language, objfile);
c906108c
SS
1948 }
1949 else
1950 {
1951 /* Static Variable. Skip symbols without location descriptors. */
1952 if (pdi->locdesc == NULL)
1953 return;
e7c27a73 1954 addr = decode_locdesc (pdi->locdesc, cu);
38d518c9 1955 /*prim_record_minimal_symbol (actual_name, addr + baseaddr,
c5aa993b 1956 mst_file_data, objfile); */
38d518c9 1957 psym = add_psymbol_to_list (actual_name, strlen (actual_name),
5c4e30ca
DC
1958 VAR_DOMAIN, LOC_STATIC,
1959 &objfile->static_psymbols,
1960 0, addr + baseaddr,
e142c38c 1961 cu->language, objfile);
c906108c
SS
1962 }
1963 break;
1964 case DW_TAG_typedef:
1965 case DW_TAG_base_type:
a02abb62 1966 case DW_TAG_subrange_type:
38d518c9 1967 add_psymbol_to_list (actual_name, strlen (actual_name),
176620f1 1968 VAR_DOMAIN, LOC_TYPEDEF,
c906108c 1969 &objfile->static_psymbols,
e142c38c 1970 0, (CORE_ADDR) 0, cu->language, objfile);
c906108c 1971 break;
72bf9492
DJ
1972 case DW_TAG_namespace:
1973 add_psymbol_to_list (actual_name, strlen (actual_name),
1974 VAR_DOMAIN, LOC_TYPEDEF,
1975 &objfile->global_psymbols,
1976 0, (CORE_ADDR) 0, cu->language, objfile);
1977 break;
c906108c
SS
1978 case DW_TAG_class_type:
1979 case DW_TAG_structure_type:
1980 case DW_TAG_union_type:
1981 case DW_TAG_enumeration_type:
1982 /* Skip aggregate types without children, these are external
c5aa993b 1983 references. */
63d06c5c
DC
1984 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
1985 static vs. global. */
c906108c
SS
1986 if (pdi->has_children == 0)
1987 return;
38d518c9 1988 add_psymbol_to_list (actual_name, strlen (actual_name),
176620f1 1989 STRUCT_DOMAIN, LOC_TYPEDEF,
987504bb
JJ
1990 (cu->language == language_cplus
1991 || cu->language == language_java)
63d06c5c
DC
1992 ? &objfile->global_psymbols
1993 : &objfile->static_psymbols,
e142c38c 1994 0, (CORE_ADDR) 0, cu->language, objfile);
c906108c 1995
987504bb
JJ
1996 if (cu->language == language_cplus
1997 || cu->language == language_java)
c906108c 1998 {
987504bb 1999 /* For C++ and Java, these implicitly act as typedefs as well. */
38d518c9 2000 add_psymbol_to_list (actual_name, strlen (actual_name),
176620f1 2001 VAR_DOMAIN, LOC_TYPEDEF,
63d06c5c 2002 &objfile->global_psymbols,
e142c38c 2003 0, (CORE_ADDR) 0, cu->language, objfile);
c906108c
SS
2004 }
2005 break;
2006 case DW_TAG_enumerator:
38d518c9 2007 add_psymbol_to_list (actual_name, strlen (actual_name),
176620f1 2008 VAR_DOMAIN, LOC_CONST,
987504bb
JJ
2009 (cu->language == language_cplus
2010 || cu->language == language_java)
f6fe98ef
DJ
2011 ? &objfile->global_psymbols
2012 : &objfile->static_psymbols,
e142c38c 2013 0, (CORE_ADDR) 0, cu->language, objfile);
c906108c
SS
2014 break;
2015 default:
2016 break;
2017 }
5c4e30ca
DC
2018
2019 /* Check to see if we should scan the name for possible namespace
2020 info. Only do this if this is C++, if we don't have namespace
2021 debugging info in the file, if the psym is of an appropriate type
2022 (otherwise we'll have psym == NULL), and if we actually had a
2023 mangled name to begin with. */
2024
72bf9492
DJ
2025 /* FIXME drow/2004-02-22: Why don't we do this for classes, i.e. the
2026 cases which do not set PSYM above? */
2027
e142c38c 2028 if (cu->language == language_cplus
72bf9492 2029 && cu->has_namespace_info == 0
5c4e30ca
DC
2030 && psym != NULL
2031 && SYMBOL_CPLUS_DEMANGLED_NAME (psym) != NULL)
2032 cp_check_possible_namespace_symbols (SYMBOL_CPLUS_DEMANGLED_NAME (psym),
2033 objfile);
72bf9492
DJ
2034
2035 if (built_actual_name)
2036 xfree (actual_name);
c906108c
SS
2037}
2038
72bf9492
DJ
2039/* Determine whether a die of type TAG living in a C++ class or
2040 namespace needs to have the name of the scope prepended to the
63d06c5c
DC
2041 name listed in the die. */
2042
2043static int
72bf9492 2044pdi_needs_namespace (enum dwarf_tag tag)
63d06c5c 2045{
63d06c5c
DC
2046 switch (tag)
2047 {
72bf9492 2048 case DW_TAG_namespace:
63d06c5c
DC
2049 case DW_TAG_typedef:
2050 case DW_TAG_class_type:
2051 case DW_TAG_structure_type:
2052 case DW_TAG_union_type:
2053 case DW_TAG_enumeration_type:
2054 case DW_TAG_enumerator:
2055 return 1;
2056 default:
2057 return 0;
2058 }
2059}
2060
5c4e30ca
DC
2061/* Read a partial die corresponding to a namespace; also, add a symbol
2062 corresponding to that namespace to the symbol table. NAMESPACE is
2063 the name of the enclosing namespace. */
91c24f0a 2064
72bf9492
DJ
2065static void
2066add_partial_namespace (struct partial_die_info *pdi,
91c24f0a 2067 CORE_ADDR *lowpc, CORE_ADDR *highpc,
72bf9492 2068 struct dwarf2_cu *cu)
91c24f0a 2069{
e7c27a73 2070 struct objfile *objfile = cu->objfile;
5c4e30ca 2071
72bf9492 2072 /* Add a symbol for the namespace. */
e7c27a73 2073
72bf9492 2074 add_partial_symbol (pdi, cu);
5c4e30ca
DC
2075
2076 /* Now scan partial symbols in that namespace. */
2077
91c24f0a 2078 if (pdi->has_children)
72bf9492 2079 scan_partial_symbols (pdi->die_child, lowpc, highpc, cu);
91c24f0a
DC
2080}
2081
72bf9492
DJ
2082/* See if we can figure out if the class lives in a namespace. We do
2083 this by looking for a member function; its demangled name will
2084 contain namespace info, if there is any. */
63d06c5c 2085
72bf9492
DJ
2086static void
2087guess_structure_name (struct partial_die_info *struct_pdi,
2088 struct dwarf2_cu *cu)
63d06c5c 2089{
987504bb
JJ
2090 if ((cu->language == language_cplus
2091 || cu->language == language_java)
72bf9492 2092 && cu->has_namespace_info == 0
63d06c5c
DC
2093 && struct_pdi->has_children)
2094 {
63d06c5c
DC
2095 /* NOTE: carlton/2003-10-07: Getting the info this way changes
2096 what template types look like, because the demangler
2097 frequently doesn't give the same name as the debug info. We
2098 could fix this by only using the demangled name to get the
134d01f1 2099 prefix (but see comment in read_structure_type). */
63d06c5c 2100
72bf9492
DJ
2101 struct partial_die_info *child_pdi = struct_pdi->die_child;
2102 struct partial_die_info *real_pdi;
5d51ca54 2103
72bf9492
DJ
2104 /* If this DIE (this DIE's specification, if any) has a parent, then
2105 we should not do this. We'll prepend the parent's fully qualified
2106 name when we create the partial symbol. */
5d51ca54 2107
72bf9492 2108 real_pdi = struct_pdi;
72bf9492 2109 while (real_pdi->has_specification)
10b3939b 2110 real_pdi = find_partial_die (real_pdi->spec_offset, cu);
63d06c5c 2111
72bf9492
DJ
2112 if (real_pdi->die_parent != NULL)
2113 return;
63d06c5c 2114
72bf9492
DJ
2115 while (child_pdi != NULL)
2116 {
2117 if (child_pdi->tag == DW_TAG_subprogram)
63d06c5c 2118 {
72bf9492 2119 char *actual_class_name
31c27f77
JJ
2120 = language_class_name_from_physname (cu->language_defn,
2121 child_pdi->name);
63d06c5c 2122 if (actual_class_name != NULL)
72bf9492
DJ
2123 {
2124 struct_pdi->name
2125 = obsavestring (actual_class_name,
2126 strlen (actual_class_name),
2127 &cu->comp_unit_obstack);
2128 xfree (actual_class_name);
2129 }
63d06c5c
DC
2130 break;
2131 }
72bf9492
DJ
2132
2133 child_pdi = child_pdi->die_sibling;
63d06c5c
DC
2134 }
2135 }
63d06c5c
DC
2136}
2137
91c24f0a
DC
2138/* Read a partial die corresponding to an enumeration type. */
2139
72bf9492
DJ
2140static void
2141add_partial_enumeration (struct partial_die_info *enum_pdi,
2142 struct dwarf2_cu *cu)
91c24f0a 2143{
e7c27a73 2144 struct objfile *objfile = cu->objfile;
91c24f0a 2145 bfd *abfd = objfile->obfd;
72bf9492 2146 struct partial_die_info *pdi;
91c24f0a
DC
2147
2148 if (enum_pdi->name != NULL)
72bf9492
DJ
2149 add_partial_symbol (enum_pdi, cu);
2150
2151 pdi = enum_pdi->die_child;
2152 while (pdi)
91c24f0a 2153 {
72bf9492 2154 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
e2e0b3e5 2155 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
91c24f0a 2156 else
72bf9492
DJ
2157 add_partial_symbol (pdi, cu);
2158 pdi = pdi->die_sibling;
91c24f0a 2159 }
91c24f0a
DC
2160}
2161
4bb7a0a7
DJ
2162/* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
2163 Return the corresponding abbrev, or NULL if the number is zero (indicating
2164 an empty DIE). In either case *BYTES_READ will be set to the length of
2165 the initial number. */
2166
2167static struct abbrev_info *
fe1b8b76 2168peek_die_abbrev (gdb_byte *info_ptr, unsigned int *bytes_read,
891d2f0b 2169 struct dwarf2_cu *cu)
4bb7a0a7
DJ
2170{
2171 bfd *abfd = cu->objfile->obfd;
2172 unsigned int abbrev_number;
2173 struct abbrev_info *abbrev;
2174
2175 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
2176
2177 if (abbrev_number == 0)
2178 return NULL;
2179
2180 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
2181 if (!abbrev)
2182 {
8a3fe4f8 2183 error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"), abbrev_number,
4bb7a0a7
DJ
2184 bfd_get_filename (abfd));
2185 }
2186
2187 return abbrev;
2188}
2189
2190/* Scan the debug information for CU starting at INFO_PTR. Returns a
2191 pointer to the end of a series of DIEs, terminated by an empty
2192 DIE. Any children of the skipped DIEs will also be skipped. */
2193
fe1b8b76
JB
2194static gdb_byte *
2195skip_children (gdb_byte *info_ptr, struct dwarf2_cu *cu)
4bb7a0a7
DJ
2196{
2197 struct abbrev_info *abbrev;
2198 unsigned int bytes_read;
2199
2200 while (1)
2201 {
2202 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
2203 if (abbrev == NULL)
2204 return info_ptr + bytes_read;
2205 else
2206 info_ptr = skip_one_die (info_ptr + bytes_read, abbrev, cu);
2207 }
2208}
2209
2210/* Scan the debug information for CU starting at INFO_PTR. INFO_PTR
2211 should point just after the initial uleb128 of a DIE, and the
2212 abbrev corresponding to that skipped uleb128 should be passed in
2213 ABBREV. Returns a pointer to this DIE's sibling, skipping any
2214 children. */
2215
fe1b8b76
JB
2216static gdb_byte *
2217skip_one_die (gdb_byte *info_ptr, struct abbrev_info *abbrev,
4bb7a0a7
DJ
2218 struct dwarf2_cu *cu)
2219{
2220 unsigned int bytes_read;
2221 struct attribute attr;
2222 bfd *abfd = cu->objfile->obfd;
2223 unsigned int form, i;
2224
2225 for (i = 0; i < abbrev->num_attrs; i++)
2226 {
2227 /* The only abbrev we care about is DW_AT_sibling. */
2228 if (abbrev->attrs[i].name == DW_AT_sibling)
2229 {
2230 read_attribute (&attr, &abbrev->attrs[i],
2231 abfd, info_ptr, cu);
2232 if (attr.form == DW_FORM_ref_addr)
e2e0b3e5 2233 complaint (&symfile_complaints, _("ignoring absolute DW_AT_sibling"));
4bb7a0a7 2234 else
6502dd73
DJ
2235 return dwarf2_per_objfile->info_buffer
2236 + dwarf2_get_ref_die_offset (&attr, cu);
4bb7a0a7
DJ
2237 }
2238
2239 /* If it isn't DW_AT_sibling, skip this attribute. */
2240 form = abbrev->attrs[i].form;
2241 skip_attribute:
2242 switch (form)
2243 {
2244 case DW_FORM_addr:
2245 case DW_FORM_ref_addr:
2246 info_ptr += cu->header.addr_size;
2247 break;
2248 case DW_FORM_data1:
2249 case DW_FORM_ref1:
2250 case DW_FORM_flag:
2251 info_ptr += 1;
2252 break;
2253 case DW_FORM_data2:
2254 case DW_FORM_ref2:
2255 info_ptr += 2;
2256 break;
2257 case DW_FORM_data4:
2258 case DW_FORM_ref4:
2259 info_ptr += 4;
2260 break;
2261 case DW_FORM_data8:
2262 case DW_FORM_ref8:
2263 info_ptr += 8;
2264 break;
2265 case DW_FORM_string:
2266 read_string (abfd, info_ptr, &bytes_read);
2267 info_ptr += bytes_read;
2268 break;
2269 case DW_FORM_strp:
2270 info_ptr += cu->header.offset_size;
2271 break;
2272 case DW_FORM_block:
2273 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
2274 info_ptr += bytes_read;
2275 break;
2276 case DW_FORM_block1:
2277 info_ptr += 1 + read_1_byte (abfd, info_ptr);
2278 break;
2279 case DW_FORM_block2:
2280 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
2281 break;
2282 case DW_FORM_block4:
2283 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
2284 break;
2285 case DW_FORM_sdata:
2286 case DW_FORM_udata:
2287 case DW_FORM_ref_udata:
2288 info_ptr = skip_leb128 (abfd, info_ptr);
2289 break;
2290 case DW_FORM_indirect:
2291 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
2292 info_ptr += bytes_read;
2293 /* We need to continue parsing from here, so just go back to
2294 the top. */
2295 goto skip_attribute;
2296
2297 default:
8a3fe4f8 2298 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
4bb7a0a7
DJ
2299 dwarf_form_name (form),
2300 bfd_get_filename (abfd));
2301 }
2302 }
2303
2304 if (abbrev->has_children)
2305 return skip_children (info_ptr, cu);
2306 else
2307 return info_ptr;
2308}
2309
2310/* Locate ORIG_PDI's sibling; INFO_PTR should point to the start of
2311 the next DIE after ORIG_PDI. */
91c24f0a 2312
fe1b8b76
JB
2313static gdb_byte *
2314locate_pdi_sibling (struct partial_die_info *orig_pdi, gdb_byte *info_ptr,
e7c27a73 2315 bfd *abfd, struct dwarf2_cu *cu)
91c24f0a
DC
2316{
2317 /* Do we know the sibling already? */
72bf9492 2318
91c24f0a
DC
2319 if (orig_pdi->sibling)
2320 return orig_pdi->sibling;
2321
2322 /* Are there any children to deal with? */
2323
2324 if (!orig_pdi->has_children)
2325 return info_ptr;
2326
4bb7a0a7 2327 /* Skip the children the long way. */
91c24f0a 2328
4bb7a0a7 2329 return skip_children (info_ptr, cu);
91c24f0a
DC
2330}
2331
c906108c
SS
2332/* Expand this partial symbol table into a full symbol table. */
2333
2334static void
fba45db2 2335dwarf2_psymtab_to_symtab (struct partial_symtab *pst)
c906108c
SS
2336{
2337 /* FIXME: This is barely more than a stub. */
2338 if (pst != NULL)
2339 {
2340 if (pst->readin)
2341 {
8a3fe4f8 2342 warning (_("bug: psymtab for %s is already read in."), pst->filename);
c906108c
SS
2343 }
2344 else
2345 {
2346 if (info_verbose)
2347 {
a3f17187 2348 printf_filtered (_("Reading in symbols for %s..."), pst->filename);
c906108c
SS
2349 gdb_flush (gdb_stdout);
2350 }
2351
10b3939b
DJ
2352 /* Restore our global data. */
2353 dwarf2_per_objfile = objfile_data (pst->objfile,
2354 dwarf2_objfile_data_key);
2355
c906108c
SS
2356 psymtab_to_symtab_1 (pst);
2357
2358 /* Finish up the debug error message. */
2359 if (info_verbose)
a3f17187 2360 printf_filtered (_("done.\n"));
c906108c
SS
2361 }
2362 }
2363}
2364
10b3939b
DJ
2365/* Add PER_CU to the queue. */
2366
2367static void
2368queue_comp_unit (struct dwarf2_per_cu_data *per_cu)
2369{
2370 struct dwarf2_queue_item *item;
2371
2372 per_cu->queued = 1;
2373 item = xmalloc (sizeof (*item));
2374 item->per_cu = per_cu;
2375 item->next = NULL;
2376
2377 if (dwarf2_queue == NULL)
2378 dwarf2_queue = item;
2379 else
2380 dwarf2_queue_tail->next = item;
2381
2382 dwarf2_queue_tail = item;
2383}
2384
2385/* Process the queue. */
2386
2387static void
2388process_queue (struct objfile *objfile)
2389{
2390 struct dwarf2_queue_item *item, *next_item;
2391
2392 /* Initially, there is just one item on the queue. Load its DIEs,
2393 and the DIEs of any other compilation units it requires,
2394 transitively. */
2395
2396 for (item = dwarf2_queue; item != NULL; item = item->next)
2397 {
2398 /* Read in this compilation unit. This may add new items to
2399 the end of the queue. */
31ffec48 2400 load_full_comp_unit (item->per_cu, objfile);
10b3939b
DJ
2401
2402 item->per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
2403 dwarf2_per_objfile->read_in_chain = item->per_cu;
2404
2405 /* If this compilation unit has already had full symbols created,
2406 reset the TYPE fields in each DIE. */
31ffec48 2407 if (item->per_cu->type_hash)
10b3939b
DJ
2408 reset_die_and_siblings_types (item->per_cu->cu->dies,
2409 item->per_cu->cu);
2410 }
2411
2412 /* Now everything left on the queue needs to be read in. Process
2413 them, one at a time, removing from the queue as we finish. */
2414 for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
2415 {
31ffec48 2416 if (item->per_cu->psymtab && !item->per_cu->psymtab->readin)
10b3939b
DJ
2417 process_full_comp_unit (item->per_cu);
2418
2419 item->per_cu->queued = 0;
2420 next_item = item->next;
2421 xfree (item);
2422 }
2423
2424 dwarf2_queue_tail = NULL;
2425}
2426
2427/* Free all allocated queue entries. This function only releases anything if
2428 an error was thrown; if the queue was processed then it would have been
2429 freed as we went along. */
2430
2431static void
2432dwarf2_release_queue (void *dummy)
2433{
2434 struct dwarf2_queue_item *item, *last;
2435
2436 item = dwarf2_queue;
2437 while (item)
2438 {
2439 /* Anything still marked queued is likely to be in an
2440 inconsistent state, so discard it. */
2441 if (item->per_cu->queued)
2442 {
2443 if (item->per_cu->cu != NULL)
2444 free_one_cached_comp_unit (item->per_cu->cu);
2445 item->per_cu->queued = 0;
2446 }
2447
2448 last = item;
2449 item = item->next;
2450 xfree (last);
2451 }
2452
2453 dwarf2_queue = dwarf2_queue_tail = NULL;
2454}
2455
2456/* Read in full symbols for PST, and anything it depends on. */
2457
c906108c 2458static void
fba45db2 2459psymtab_to_symtab_1 (struct partial_symtab *pst)
c906108c 2460{
10b3939b 2461 struct dwarf2_per_cu_data *per_cu;
c906108c 2462 struct cleanup *back_to;
aaa75496
JB
2463 int i;
2464
2465 for (i = 0; i < pst->number_of_dependencies; i++)
2466 if (!pst->dependencies[i]->readin)
2467 {
2468 /* Inform about additional files that need to be read in. */
2469 if (info_verbose)
2470 {
a3f17187 2471 /* FIXME: i18n: Need to make this a single string. */
aaa75496
JB
2472 fputs_filtered (" ", gdb_stdout);
2473 wrap_here ("");
2474 fputs_filtered ("and ", gdb_stdout);
2475 wrap_here ("");
2476 printf_filtered ("%s...", pst->dependencies[i]->filename);
2477 wrap_here (""); /* Flush output */
2478 gdb_flush (gdb_stdout);
2479 }
2480 psymtab_to_symtab_1 (pst->dependencies[i]);
2481 }
2482
10b3939b
DJ
2483 per_cu = (struct dwarf2_per_cu_data *) pst->read_symtab_private;
2484
2485 if (per_cu == NULL)
aaa75496
JB
2486 {
2487 /* It's an include file, no symbols to read for it.
2488 Everything is in the parent symtab. */
2489 pst->readin = 1;
2490 return;
2491 }
c906108c 2492
10b3939b
DJ
2493 back_to = make_cleanup (dwarf2_release_queue, NULL);
2494
2495 queue_comp_unit (per_cu);
2496
2497 process_queue (pst->objfile);
2498
2499 /* Age the cache, releasing compilation units that have not
2500 been used recently. */
2501 age_cached_comp_units ();
2502
2503 do_cleanups (back_to);
2504}
2505
2506/* Load the DIEs associated with PST and PER_CU into memory. */
2507
2508static struct dwarf2_cu *
31ffec48 2509load_full_comp_unit (struct dwarf2_per_cu_data *per_cu, struct objfile *objfile)
10b3939b 2510{
31ffec48 2511 bfd *abfd = objfile->obfd;
10b3939b
DJ
2512 struct dwarf2_cu *cu;
2513 unsigned long offset;
fe1b8b76 2514 gdb_byte *info_ptr;
10b3939b
DJ
2515 struct cleanup *back_to, *free_cu_cleanup;
2516 struct attribute *attr;
2517 CORE_ADDR baseaddr;
6502dd73 2518
c906108c 2519 /* Set local variables from the partial symbol table info. */
10b3939b 2520 offset = per_cu->offset;
6502dd73
DJ
2521
2522 info_ptr = dwarf2_per_objfile->info_buffer + offset;
63d06c5c 2523
10b3939b
DJ
2524 cu = xmalloc (sizeof (struct dwarf2_cu));
2525 memset (cu, 0, sizeof (struct dwarf2_cu));
c906108c 2526
10b3939b
DJ
2527 /* If an error occurs while loading, release our storage. */
2528 free_cu_cleanup = make_cleanup (free_one_comp_unit, cu);
c906108c 2529
31ffec48 2530 cu->objfile = objfile;
e7c27a73 2531
c906108c 2532 /* read in the comp_unit header */
10b3939b 2533 info_ptr = read_comp_unit_head (&cu->header, info_ptr, abfd);
c906108c
SS
2534
2535 /* Read the abbrevs for this compilation unit */
10b3939b
DJ
2536 dwarf2_read_abbrevs (abfd, cu);
2537 back_to = make_cleanup (dwarf2_free_abbrev_table, cu);
2538
2539 cu->header.offset = offset;
c906108c 2540
10b3939b
DJ
2541 cu->per_cu = per_cu;
2542 per_cu->cu = cu;
e142c38c 2543
10b3939b
DJ
2544 /* We use this obstack for block values in dwarf_alloc_block. */
2545 obstack_init (&cu->comp_unit_obstack);
2546
2547 cu->dies = read_comp_unit (info_ptr, abfd, cu);
2548
2549 /* We try not to read any attributes in this function, because not
2550 all objfiles needed for references have been loaded yet, and symbol
2551 table processing isn't initialized. But we have to set the CU language,
2552 or we won't be able to build types correctly. */
2553 attr = dwarf2_attr (cu->dies, DW_AT_language, cu);
2554 if (attr)
2555 set_cu_language (DW_UNSND (attr), cu);
2556 else
2557 set_cu_language (language_minimal, cu);
2558
2559 do_cleanups (back_to);
e142c38c 2560
10b3939b
DJ
2561 /* We've successfully allocated this compilation unit. Let our caller
2562 clean it up when finished with it. */
2563 discard_cleanups (free_cu_cleanup);
c906108c 2564
10b3939b
DJ
2565 return cu;
2566}
2567
2568/* Generate full symbol information for PST and CU, whose DIEs have
2569 already been loaded into memory. */
2570
2571static void
2572process_full_comp_unit (struct dwarf2_per_cu_data *per_cu)
2573{
2574 struct partial_symtab *pst = per_cu->psymtab;
2575 struct dwarf2_cu *cu = per_cu->cu;
2576 struct objfile *objfile = pst->objfile;
2577 bfd *abfd = objfile->obfd;
2578 CORE_ADDR lowpc, highpc;
2579 struct symtab *symtab;
2580 struct cleanup *back_to;
2581 struct attribute *attr;
2582 CORE_ADDR baseaddr;
2583
2584 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2585
2586 /* We're in the global namespace. */
2587 processing_current_prefix = "";
2588
2589 buildsym_init ();
2590 back_to = make_cleanup (really_free_pendings, NULL);
2591
2592 cu->list_in_scope = &file_symbols;
c906108c 2593
0d53c4c4
DJ
2594 /* Find the base address of the compilation unit for range lists and
2595 location lists. It will normally be specified by DW_AT_low_pc.
2596 In DWARF-3 draft 4, the base address could be overridden by
2597 DW_AT_entry_pc. It's been removed, but GCC still uses this for
2598 compilation units with discontinuous ranges. */
2599
10b3939b
DJ
2600 cu->header.base_known = 0;
2601 cu->header.base_address = 0;
0d53c4c4 2602
10b3939b 2603 attr = dwarf2_attr (cu->dies, DW_AT_entry_pc, cu);
0d53c4c4
DJ
2604 if (attr)
2605 {
10b3939b
DJ
2606 cu->header.base_address = DW_ADDR (attr);
2607 cu->header.base_known = 1;
0d53c4c4
DJ
2608 }
2609 else
2610 {
10b3939b 2611 attr = dwarf2_attr (cu->dies, DW_AT_low_pc, cu);
0d53c4c4
DJ
2612 if (attr)
2613 {
10b3939b
DJ
2614 cu->header.base_address = DW_ADDR (attr);
2615 cu->header.base_known = 1;
0d53c4c4
DJ
2616 }
2617 }
2618
c906108c 2619 /* Do line number decoding in read_file_scope () */
10b3939b 2620 process_die (cu->dies, cu);
c906108c 2621
fae299cd
DC
2622 /* Some compilers don't define a DW_AT_high_pc attribute for the
2623 compilation unit. If the DW_AT_high_pc is missing, synthesize
2624 it, by scanning the DIE's below the compilation unit. */
10b3939b 2625 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
c906108c 2626
613e1657 2627 symtab = end_symtab (highpc + baseaddr, objfile, SECT_OFF_TEXT (objfile));
c906108c
SS
2628
2629 /* Set symtab language to language from DW_AT_language.
2630 If the compilation is from a C file generated by language preprocessors,
2631 do not set the language if it was already deduced by start_subfile. */
2632 if (symtab != NULL
10b3939b 2633 && !(cu->language == language_c && symtab->language != language_c))
c906108c 2634 {
10b3939b 2635 symtab->language = cu->language;
c906108c
SS
2636 }
2637 pst->symtab = symtab;
2638 pst->readin = 1;
c906108c
SS
2639
2640 do_cleanups (back_to);
2641}
2642
2643/* Process a die and its children. */
2644
2645static void
e7c27a73 2646process_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
2647{
2648 switch (die->tag)
2649 {
2650 case DW_TAG_padding:
2651 break;
2652 case DW_TAG_compile_unit:
e7c27a73 2653 read_file_scope (die, cu);
c906108c
SS
2654 break;
2655 case DW_TAG_subprogram:
e7c27a73
DJ
2656 read_subroutine_type (die, cu);
2657 read_func_scope (die, cu);
c906108c
SS
2658 break;
2659 case DW_TAG_inlined_subroutine:
2660 /* FIXME: These are ignored for now.
c5aa993b
JM
2661 They could be used to set breakpoints on all inlined instances
2662 of a function and make GDB `next' properly over inlined functions. */
c906108c
SS
2663 break;
2664 case DW_TAG_lexical_block:
14898363
L
2665 case DW_TAG_try_block:
2666 case DW_TAG_catch_block:
e7c27a73 2667 read_lexical_block_scope (die, cu);
c906108c
SS
2668 break;
2669 case DW_TAG_class_type:
2670 case DW_TAG_structure_type:
2671 case DW_TAG_union_type:
134d01f1
DJ
2672 read_structure_type (die, cu);
2673 process_structure_scope (die, cu);
c906108c
SS
2674 break;
2675 case DW_TAG_enumeration_type:
134d01f1
DJ
2676 read_enumeration_type (die, cu);
2677 process_enumeration_scope (die, cu);
c906108c 2678 break;
134d01f1
DJ
2679
2680 /* FIXME drow/2004-03-14: These initialize die->type, but do not create
2681 a symbol or process any children. Therefore it doesn't do anything
2682 that won't be done on-demand by read_type_die. */
c906108c 2683 case DW_TAG_subroutine_type:
e7c27a73 2684 read_subroutine_type (die, cu);
c906108c 2685 break;
72019c9c
GM
2686 case DW_TAG_set_type:
2687 read_set_type (die, cu);
2688 break;
c906108c 2689 case DW_TAG_array_type:
e7c27a73 2690 read_array_type (die, cu);
c906108c
SS
2691 break;
2692 case DW_TAG_pointer_type:
e7c27a73 2693 read_tag_pointer_type (die, cu);
c906108c
SS
2694 break;
2695 case DW_TAG_ptr_to_member_type:
e7c27a73 2696 read_tag_ptr_to_member_type (die, cu);
c906108c
SS
2697 break;
2698 case DW_TAG_reference_type:
e7c27a73 2699 read_tag_reference_type (die, cu);
c906108c
SS
2700 break;
2701 case DW_TAG_string_type:
e7c27a73 2702 read_tag_string_type (die, cu);
c906108c 2703 break;
134d01f1
DJ
2704 /* END FIXME */
2705
c906108c 2706 case DW_TAG_base_type:
e7c27a73 2707 read_base_type (die, cu);
134d01f1
DJ
2708 /* Add a typedef symbol for the type definition, if it has a
2709 DW_AT_name. */
2710 new_symbol (die, die->type, cu);
c906108c 2711 break;
a02abb62
JB
2712 case DW_TAG_subrange_type:
2713 read_subrange_type (die, cu);
134d01f1
DJ
2714 /* Add a typedef symbol for the type definition, if it has a
2715 DW_AT_name. */
2716 new_symbol (die, die->type, cu);
a02abb62 2717 break;
c906108c 2718 case DW_TAG_common_block:
e7c27a73 2719 read_common_block (die, cu);
c906108c
SS
2720 break;
2721 case DW_TAG_common_inclusion:
2722 break;
d9fa45fe 2723 case DW_TAG_namespace:
63d06c5c 2724 processing_has_namespace_info = 1;
e7c27a73 2725 read_namespace (die, cu);
d9fa45fe
DC
2726 break;
2727 case DW_TAG_imported_declaration:
2728 case DW_TAG_imported_module:
2729 /* FIXME: carlton/2002-10-16: Eventually, we should use the
2730 information contained in these. DW_TAG_imported_declaration
2731 dies shouldn't have children; DW_TAG_imported_module dies
2732 shouldn't in the C++ case, but conceivably could in the
2733 Fortran case, so we'll have to replace this gdb_assert if
2734 Fortran compilers start generating that info. */
63d06c5c 2735 processing_has_namespace_info = 1;
639d11d3 2736 gdb_assert (die->child == NULL);
d9fa45fe 2737 break;
c906108c 2738 default:
e7c27a73 2739 new_symbol (die, NULL, cu);
c906108c
SS
2740 break;
2741 }
2742}
2743
5fb290d7 2744static void
e142c38c 2745initialize_cu_func_list (struct dwarf2_cu *cu)
5fb290d7 2746{
e142c38c 2747 cu->first_fn = cu->last_fn = cu->cached_fn = NULL;
5fb290d7
DJ
2748}
2749
c906108c 2750static void
e7c27a73 2751read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 2752{
e7c27a73
DJ
2753 struct objfile *objfile = cu->objfile;
2754 struct comp_unit_head *cu_header = &cu->header;
debd256d 2755 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
2acceee2 2756 CORE_ADDR lowpc = ((CORE_ADDR) -1);
c906108c
SS
2757 CORE_ADDR highpc = ((CORE_ADDR) 0);
2758 struct attribute *attr;
2759 char *name = "<unknown>";
2760 char *comp_dir = NULL;
2761 struct die_info *child_die;
2762 bfd *abfd = objfile->obfd;
debd256d 2763 struct line_header *line_header = 0;
e142c38c
DJ
2764 CORE_ADDR baseaddr;
2765
2766 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 2767
fae299cd 2768 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
c906108c
SS
2769
2770 /* If we didn't find a lowpc, set it to highpc to avoid complaints
2771 from finish_block. */
2acceee2 2772 if (lowpc == ((CORE_ADDR) -1))
c906108c
SS
2773 lowpc = highpc;
2774 lowpc += baseaddr;
2775 highpc += baseaddr;
2776
e142c38c 2777 attr = dwarf2_attr (die, DW_AT_name, cu);
c906108c
SS
2778 if (attr)
2779 {
2780 name = DW_STRING (attr);
2781 }
e142c38c 2782 attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
c906108c
SS
2783 if (attr)
2784 {
2785 comp_dir = DW_STRING (attr);
2786 if (comp_dir)
2787 {
2788 /* Irix 6.2 native cc prepends <machine>.: to the compilation
2789 directory, get rid of it. */
2790 char *cp = strchr (comp_dir, ':');
2791
2792 if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/')
2793 comp_dir = cp + 1;
2794 }
2795 }
2796
e142c38c 2797 attr = dwarf2_attr (die, DW_AT_language, cu);
c906108c
SS
2798 if (attr)
2799 {
e142c38c 2800 set_cu_language (DW_UNSND (attr), cu);
c906108c
SS
2801 }
2802
b0f35d58
DL
2803 attr = dwarf2_attr (die, DW_AT_producer, cu);
2804 if (attr)
2805 cu->producer = DW_STRING (attr);
303b6f5d 2806
c906108c
SS
2807 /* We assume that we're processing GCC output. */
2808 processing_gcc_compilation = 2;
c906108c
SS
2809
2810 /* The compilation unit may be in a different language or objfile,
2811 zero out all remembered fundamental types. */
e142c38c 2812 memset (cu->ftypes, 0, FT_NUM_MEMBERS * sizeof (struct type *));
c906108c
SS
2813
2814 start_symtab (name, comp_dir, lowpc);
2815 record_debugformat ("DWARF 2");
303b6f5d 2816 record_producer (cu->producer);
c906108c 2817
e142c38c 2818 initialize_cu_func_list (cu);
c906108c
SS
2819
2820 /* Process all dies in compilation unit. */
639d11d3 2821 if (die->child != NULL)
c906108c 2822 {
639d11d3 2823 child_die = die->child;
c906108c
SS
2824 while (child_die && child_die->tag)
2825 {
e7c27a73 2826 process_die (child_die, cu);
c906108c
SS
2827 child_die = sibling_die (child_die);
2828 }
2829 }
5fb290d7
DJ
2830
2831 /* Decode line number information if present. */
e142c38c 2832 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
5fb290d7
DJ
2833 if (attr)
2834 {
debd256d 2835 unsigned int line_offset = DW_UNSND (attr);
e7c27a73 2836 line_header = dwarf_decode_line_header (line_offset, abfd, cu);
debd256d
JB
2837 if (line_header)
2838 {
2839 make_cleanup ((make_cleanup_ftype *) free_line_header,
2840 (void *) line_header);
aaa75496 2841 dwarf_decode_lines (line_header, comp_dir, abfd, cu, NULL);
debd256d 2842 }
5fb290d7 2843 }
debd256d 2844
2e276125
JB
2845 /* Decode macro information, if present. Dwarf 2 macro information
2846 refers to information in the line number info statement program
2847 header, so we can only read it if we've read the header
2848 successfully. */
e142c38c 2849 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
41ff2da1 2850 if (attr && line_header)
2e276125
JB
2851 {
2852 unsigned int macro_offset = DW_UNSND (attr);
2853 dwarf_decode_macros (line_header, macro_offset,
e7c27a73 2854 comp_dir, abfd, cu);
2e276125 2855 }
debd256d 2856 do_cleanups (back_to);
5fb290d7
DJ
2857}
2858
2859static void
e142c38c
DJ
2860add_to_cu_func_list (const char *name, CORE_ADDR lowpc, CORE_ADDR highpc,
2861 struct dwarf2_cu *cu)
5fb290d7
DJ
2862{
2863 struct function_range *thisfn;
2864
2865 thisfn = (struct function_range *)
7b5a2f43 2866 obstack_alloc (&cu->comp_unit_obstack, sizeof (struct function_range));
5fb290d7
DJ
2867 thisfn->name = name;
2868 thisfn->lowpc = lowpc;
2869 thisfn->highpc = highpc;
2870 thisfn->seen_line = 0;
2871 thisfn->next = NULL;
2872
e142c38c
DJ
2873 if (cu->last_fn == NULL)
2874 cu->first_fn = thisfn;
5fb290d7 2875 else
e142c38c 2876 cu->last_fn->next = thisfn;
5fb290d7 2877
e142c38c 2878 cu->last_fn = thisfn;
c906108c
SS
2879}
2880
2881static void
e7c27a73 2882read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 2883{
e7c27a73 2884 struct objfile *objfile = cu->objfile;
52f0bd74 2885 struct context_stack *new;
c906108c
SS
2886 CORE_ADDR lowpc;
2887 CORE_ADDR highpc;
2888 struct die_info *child_die;
2889 struct attribute *attr;
2890 char *name;
fdde2d81
DC
2891 const char *previous_prefix = processing_current_prefix;
2892 struct cleanup *back_to = NULL;
e142c38c 2893 CORE_ADDR baseaddr;
c906108c 2894
e142c38c
DJ
2895 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2896
2897 name = dwarf2_linkage_name (die, cu);
c906108c
SS
2898
2899 /* Ignore functions with missing or empty names and functions with
2900 missing or invalid low and high pc attributes. */
e7c27a73 2901 if (name == NULL || !dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu))
c906108c
SS
2902 return;
2903
987504bb
JJ
2904 if (cu->language == language_cplus
2905 || cu->language == language_java)
fdde2d81 2906 {
086ed43d 2907 struct die_info *spec_die = die_specification (die, cu);
fdde2d81 2908
2a35147e
JB
2909 /* NOTE: carlton/2004-01-23: We have to be careful in the
2910 presence of DW_AT_specification. For example, with GCC 3.4,
2911 given the code
2912
2913 namespace N {
2914 void foo() {
2915 // Definition of N::foo.
2916 }
2917 }
2918
2919 then we'll have a tree of DIEs like this:
2920
2921 1: DW_TAG_compile_unit
2922 2: DW_TAG_namespace // N
2923 3: DW_TAG_subprogram // declaration of N::foo
2924 4: DW_TAG_subprogram // definition of N::foo
2925 DW_AT_specification // refers to die #3
2926
2927 Thus, when processing die #4, we have to pretend that we're
2928 in the context of its DW_AT_specification, namely the contex
2929 of die #3. */
fdde2d81
DC
2930
2931 if (spec_die != NULL)
2932 {
e142c38c 2933 char *specification_prefix = determine_prefix (spec_die, cu);
fdde2d81
DC
2934 processing_current_prefix = specification_prefix;
2935 back_to = make_cleanup (xfree, specification_prefix);
2936 }
2937 }
2938
c906108c
SS
2939 lowpc += baseaddr;
2940 highpc += baseaddr;
2941
5fb290d7 2942 /* Record the function range for dwarf_decode_lines. */
e142c38c 2943 add_to_cu_func_list (name, lowpc, highpc, cu);
5fb290d7 2944
c906108c 2945 new = push_context (0, lowpc);
e7c27a73 2946 new->name = new_symbol (die, die->type, cu);
4c2df51b 2947
4cecd739
DJ
2948 /* If there is a location expression for DW_AT_frame_base, record
2949 it. */
e142c38c 2950 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
4c2df51b 2951 if (attr)
c034e007
AC
2952 /* FIXME: cagney/2004-01-26: The DW_AT_frame_base's location
2953 expression is being recorded directly in the function's symbol
2954 and not in a separate frame-base object. I guess this hack is
2955 to avoid adding some sort of frame-base adjunct/annex to the
2956 function's symbol :-(. The problem with doing this is that it
2957 results in a function symbol with a location expression that
2958 has nothing to do with the location of the function, ouch! The
2959 relationship should be: a function's symbol has-a frame base; a
2960 frame-base has-a location expression. */
e7c27a73 2961 dwarf2_symbol_mark_computed (attr, new->name, cu);
4c2df51b 2962
e142c38c 2963 cu->list_in_scope = &local_symbols;
c906108c 2964
639d11d3 2965 if (die->child != NULL)
c906108c 2966 {
639d11d3 2967 child_die = die->child;
c906108c
SS
2968 while (child_die && child_die->tag)
2969 {
e7c27a73 2970 process_die (child_die, cu);
c906108c
SS
2971 child_die = sibling_die (child_die);
2972 }
2973 }
2974
2975 new = pop_context ();
2976 /* Make a block for the local symbols within. */
2977 finish_block (new->name, &local_symbols, new->old_blocks,
2978 lowpc, highpc, objfile);
208d8187
JB
2979
2980 /* In C++, we can have functions nested inside functions (e.g., when
2981 a function declares a class that has methods). This means that
2982 when we finish processing a function scope, we may need to go
2983 back to building a containing block's symbol lists. */
2984 local_symbols = new->locals;
2985 param_symbols = new->params;
2986
921e78cf
JB
2987 /* If we've finished processing a top-level function, subsequent
2988 symbols go in the file symbol list. */
2989 if (outermost_context_p ())
e142c38c 2990 cu->list_in_scope = &file_symbols;
fdde2d81
DC
2991
2992 processing_current_prefix = previous_prefix;
2993 if (back_to != NULL)
2994 do_cleanups (back_to);
c906108c
SS
2995}
2996
2997/* Process all the DIES contained within a lexical block scope. Start
2998 a new scope, process the dies, and then close the scope. */
2999
3000static void
e7c27a73 3001read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 3002{
e7c27a73 3003 struct objfile *objfile = cu->objfile;
52f0bd74 3004 struct context_stack *new;
c906108c
SS
3005 CORE_ADDR lowpc, highpc;
3006 struct die_info *child_die;
e142c38c
DJ
3007 CORE_ADDR baseaddr;
3008
3009 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
3010
3011 /* Ignore blocks with missing or invalid low and high pc attributes. */
af34e669
DJ
3012 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
3013 as multiple lexical blocks? Handling children in a sane way would
3014 be nasty. Might be easier to properly extend generic blocks to
3015 describe ranges. */
e7c27a73 3016 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu))
c906108c
SS
3017 return;
3018 lowpc += baseaddr;
3019 highpc += baseaddr;
3020
3021 push_context (0, lowpc);
639d11d3 3022 if (die->child != NULL)
c906108c 3023 {
639d11d3 3024 child_die = die->child;
c906108c
SS
3025 while (child_die && child_die->tag)
3026 {
e7c27a73 3027 process_die (child_die, cu);
c906108c
SS
3028 child_die = sibling_die (child_die);
3029 }
3030 }
3031 new = pop_context ();
3032
3033 if (local_symbols != NULL)
3034 {
3035 finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
3036 highpc, objfile);
3037 }
3038 local_symbols = new->locals;
3039}
3040
af34e669
DJ
3041/* Get low and high pc attributes from a die. Return 1 if the attributes
3042 are present and valid, otherwise, return 0. Return -1 if the range is
3043 discontinuous, i.e. derived from DW_AT_ranges information. */
c906108c 3044static int
af34e669 3045dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
e7c27a73 3046 CORE_ADDR *highpc, struct dwarf2_cu *cu)
c906108c 3047{
e7c27a73
DJ
3048 struct objfile *objfile = cu->objfile;
3049 struct comp_unit_head *cu_header = &cu->header;
c906108c 3050 struct attribute *attr;
af34e669
DJ
3051 bfd *obfd = objfile->obfd;
3052 CORE_ADDR low = 0;
3053 CORE_ADDR high = 0;
3054 int ret = 0;
c906108c 3055
e142c38c 3056 attr = dwarf2_attr (die, DW_AT_high_pc, cu);
c906108c 3057 if (attr)
af34e669
DJ
3058 {
3059 high = DW_ADDR (attr);
e142c38c 3060 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
af34e669
DJ
3061 if (attr)
3062 low = DW_ADDR (attr);
3063 else
3064 /* Found high w/o low attribute. */
3065 return 0;
3066
3067 /* Found consecutive range of addresses. */
3068 ret = 1;
3069 }
c906108c 3070 else
af34e669 3071 {
e142c38c 3072 attr = dwarf2_attr (die, DW_AT_ranges, cu);
af34e669
DJ
3073 if (attr != NULL)
3074 {
3075 unsigned int addr_size = cu_header->addr_size;
3076 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
3077 /* Value of the DW_AT_ranges attribute is the offset in the
a604369a 3078 .debug_ranges section. */
af34e669
DJ
3079 unsigned int offset = DW_UNSND (attr);
3080 /* Base address selection entry. */
0d53c4c4
DJ
3081 CORE_ADDR base;
3082 int found_base;
891d2f0b 3083 unsigned int dummy;
fe1b8b76 3084 gdb_byte *buffer;
af34e669
DJ
3085 CORE_ADDR marker;
3086 int low_set;
3087
0d53c4c4
DJ
3088 found_base = cu_header->base_known;
3089 base = cu_header->base_address;
a604369a 3090
6502dd73 3091 if (offset >= dwarf2_per_objfile->ranges_size)
a604369a
KB
3092 {
3093 complaint (&symfile_complaints,
e2e0b3e5 3094 _("Offset %d out of bounds for DW_AT_ranges attribute"),
a604369a
KB
3095 offset);
3096 return 0;
3097 }
6502dd73 3098 buffer = dwarf2_per_objfile->ranges_buffer + offset;
af34e669 3099
af34e669 3100 /* Read in the largest possible address. */
e7c27a73 3101 marker = read_address (obfd, buffer, cu, &dummy);
af34e669
DJ
3102 if ((marker & mask) == mask)
3103 {
3104 /* If we found the largest possible address, then
3105 read the base address. */
e7c27a73 3106 base = read_address (obfd, buffer + addr_size, cu, &dummy);
af34e669
DJ
3107 buffer += 2 * addr_size;
3108 offset += 2 * addr_size;
3109 found_base = 1;
3110 }
3111
3112 low_set = 0;
3113
3114 while (1)
3115 {
3116 CORE_ADDR range_beginning, range_end;
3117
e7c27a73 3118 range_beginning = read_address (obfd, buffer, cu, &dummy);
af34e669 3119 buffer += addr_size;
e7c27a73 3120 range_end = read_address (obfd, buffer, cu, &dummy);
af34e669
DJ
3121 buffer += addr_size;
3122 offset += 2 * addr_size;
3123
3124 /* An end of list marker is a pair of zero addresses. */
3125 if (range_beginning == 0 && range_end == 0)
3126 /* Found the end of list entry. */
3127 break;
3128
3129 /* Each base address selection entry is a pair of 2 values.
3130 The first is the largest possible address, the second is
3131 the base address. Check for a base address here. */
3132 if ((range_beginning & mask) == mask)
3133 {
3134 /* If we found the largest possible address, then
3135 read the base address. */
e7c27a73 3136 base = read_address (obfd, buffer + addr_size, cu, &dummy);
af34e669
DJ
3137 found_base = 1;
3138 continue;
3139 }
3140
3141 if (!found_base)
3142 {
3143 /* We have no valid base address for the ranges
3144 data. */
3145 complaint (&symfile_complaints,
e2e0b3e5 3146 _("Invalid .debug_ranges data (no base address)"));
af34e669
DJ
3147 return 0;
3148 }
3149
8f05cde5
DJ
3150 range_beginning += base;
3151 range_end += base;
3152
af34e669
DJ
3153 /* FIXME: This is recording everything as a low-high
3154 segment of consecutive addresses. We should have a
3155 data structure for discontiguous block ranges
3156 instead. */
3157 if (! low_set)
3158 {
3159 low = range_beginning;
3160 high = range_end;
3161 low_set = 1;
3162 }
3163 else
3164 {
3165 if (range_beginning < low)
3166 low = range_beginning;
3167 if (range_end > high)
3168 high = range_end;
3169 }
3170 }
3171
3172 if (! low_set)
3173 /* If the first entry is an end-of-list marker, the range
3174 describes an empty scope, i.e. no instructions. */
3175 return 0;
3176
3177 ret = -1;
3178 }
3179 }
c906108c
SS
3180
3181 if (high < low)
3182 return 0;
3183
3184 /* When using the GNU linker, .gnu.linkonce. sections are used to
3185 eliminate duplicate copies of functions and vtables and such.
3186 The linker will arbitrarily choose one and discard the others.
3187 The AT_*_pc values for such functions refer to local labels in
3188 these sections. If the section from that file was discarded, the
3189 labels are not in the output, so the relocs get a value of 0.
3190 If this is a discarded function, mark the pc bounds as invalid,
3191 so that GDB will ignore it. */
72dca2f5 3192 if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
c906108c
SS
3193 return 0;
3194
3195 *lowpc = low;
3196 *highpc = high;
af34e669 3197 return ret;
c906108c
SS
3198}
3199
fae299cd
DC
3200/* Get the low and high pc's represented by the scope DIE, and store
3201 them in *LOWPC and *HIGHPC. If the correct values can't be
3202 determined, set *LOWPC to -1 and *HIGHPC to 0. */
3203
3204static void
3205get_scope_pc_bounds (struct die_info *die,
3206 CORE_ADDR *lowpc, CORE_ADDR *highpc,
3207 struct dwarf2_cu *cu)
3208{
3209 CORE_ADDR best_low = (CORE_ADDR) -1;
3210 CORE_ADDR best_high = (CORE_ADDR) 0;
3211 CORE_ADDR current_low, current_high;
3212
3213 if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu))
3214 {
3215 best_low = current_low;
3216 best_high = current_high;
3217 }
3218 else
3219 {
3220 struct die_info *child = die->child;
3221
3222 while (child && child->tag)
3223 {
3224 switch (child->tag) {
3225 case DW_TAG_subprogram:
3226 if (dwarf2_get_pc_bounds (child, &current_low, &current_high, cu))
3227 {
3228 best_low = min (best_low, current_low);
3229 best_high = max (best_high, current_high);
3230 }
3231 break;
3232 case DW_TAG_namespace:
3233 /* FIXME: carlton/2004-01-16: Should we do this for
3234 DW_TAG_class_type/DW_TAG_structure_type, too? I think
3235 that current GCC's always emit the DIEs corresponding
3236 to definitions of methods of classes as children of a
3237 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
3238 the DIEs giving the declarations, which could be
3239 anywhere). But I don't see any reason why the
3240 standards says that they have to be there. */
3241 get_scope_pc_bounds (child, &current_low, &current_high, cu);
3242
3243 if (current_low != ((CORE_ADDR) -1))
3244 {
3245 best_low = min (best_low, current_low);
3246 best_high = max (best_high, current_high);
3247 }
3248 break;
3249 default:
3250 /* Ignore. */
3251 break;
3252 }
3253
3254 child = sibling_die (child);
3255 }
3256 }
3257
3258 *lowpc = best_low;
3259 *highpc = best_high;
3260}
3261
c906108c
SS
3262/* Add an aggregate field to the field list. */
3263
3264static void
107d2387 3265dwarf2_add_field (struct field_info *fip, struct die_info *die,
e7c27a73
DJ
3266 struct dwarf2_cu *cu)
3267{
3268 struct objfile *objfile = cu->objfile;
c906108c
SS
3269 struct nextfield *new_field;
3270 struct attribute *attr;
3271 struct field *fp;
3272 char *fieldname = "";
3273
3274 /* Allocate a new field list entry and link it in. */
3275 new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
b8c9b27d 3276 make_cleanup (xfree, new_field);
c906108c
SS
3277 memset (new_field, 0, sizeof (struct nextfield));
3278 new_field->next = fip->fields;
3279 fip->fields = new_field;
3280 fip->nfields++;
3281
3282 /* Handle accessibility and virtuality of field.
3283 The default accessibility for members is public, the default
3284 accessibility for inheritance is private. */
3285 if (die->tag != DW_TAG_inheritance)
3286 new_field->accessibility = DW_ACCESS_public;
3287 else
3288 new_field->accessibility = DW_ACCESS_private;
3289 new_field->virtuality = DW_VIRTUALITY_none;
3290
e142c38c 3291 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
c906108c
SS
3292 if (attr)
3293 new_field->accessibility = DW_UNSND (attr);
3294 if (new_field->accessibility != DW_ACCESS_public)
3295 fip->non_public_fields = 1;
e142c38c 3296 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
c906108c
SS
3297 if (attr)
3298 new_field->virtuality = DW_UNSND (attr);
3299
3300 fp = &new_field->field;
a9a9bd0f 3301
e142c38c 3302 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
c906108c 3303 {
a9a9bd0f
DC
3304 /* Data member other than a C++ static data member. */
3305
c906108c 3306 /* Get type of field. */
e7c27a73 3307 fp->type = die_type (die, cu);
c906108c 3308
01ad7f36
DJ
3309 FIELD_STATIC_KIND (*fp) = 0;
3310
c906108c 3311 /* Get bit size of field (zero if none). */
e142c38c 3312 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
c906108c
SS
3313 if (attr)
3314 {
3315 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
3316 }
3317 else
3318 {
3319 FIELD_BITSIZE (*fp) = 0;
3320 }
3321
3322 /* Get bit offset of field. */
e142c38c 3323 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
c906108c
SS
3324 if (attr)
3325 {
3326 FIELD_BITPOS (*fp) =
e7c27a73 3327 decode_locdesc (DW_BLOCK (attr), cu) * bits_per_byte;
c906108c
SS
3328 }
3329 else
3330 FIELD_BITPOS (*fp) = 0;
e142c38c 3331 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
c906108c
SS
3332 if (attr)
3333 {
3334 if (BITS_BIG_ENDIAN)
3335 {
3336 /* For big endian bits, the DW_AT_bit_offset gives the
c5aa993b
JM
3337 additional bit offset from the MSB of the containing
3338 anonymous object to the MSB of the field. We don't
3339 have to do anything special since we don't need to
3340 know the size of the anonymous object. */
c906108c
SS
3341 FIELD_BITPOS (*fp) += DW_UNSND (attr);
3342 }
3343 else
3344 {
3345 /* For little endian bits, compute the bit offset to the
c5aa993b
JM
3346 MSB of the anonymous object, subtract off the number of
3347 bits from the MSB of the field to the MSB of the
3348 object, and then subtract off the number of bits of
3349 the field itself. The result is the bit offset of
3350 the LSB of the field. */
c906108c
SS
3351 int anonymous_size;
3352 int bit_offset = DW_UNSND (attr);
3353
e142c38c 3354 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
3355 if (attr)
3356 {
3357 /* The size of the anonymous object containing
3358 the bit field is explicit, so use the
3359 indicated size (in bytes). */
3360 anonymous_size = DW_UNSND (attr);
3361 }
3362 else
3363 {
3364 /* The size of the anonymous object containing
3365 the bit field must be inferred from the type
3366 attribute of the data member containing the
3367 bit field. */
3368 anonymous_size = TYPE_LENGTH (fp->type);
3369 }
3370 FIELD_BITPOS (*fp) += anonymous_size * bits_per_byte
3371 - bit_offset - FIELD_BITSIZE (*fp);
3372 }
3373 }
3374
3375 /* Get name of field. */
e142c38c 3376 attr = dwarf2_attr (die, DW_AT_name, cu);
c906108c
SS
3377 if (attr && DW_STRING (attr))
3378 fieldname = DW_STRING (attr);
d8151005
DJ
3379
3380 /* The name is already allocated along with this objfile, so we don't
3381 need to duplicate it for the type. */
3382 fp->name = fieldname;
c906108c
SS
3383
3384 /* Change accessibility for artificial fields (e.g. virtual table
c5aa993b 3385 pointer or virtual base class pointer) to private. */
e142c38c 3386 if (dwarf2_attr (die, DW_AT_artificial, cu))
c906108c
SS
3387 {
3388 new_field->accessibility = DW_ACCESS_private;
3389 fip->non_public_fields = 1;
3390 }
3391 }
a9a9bd0f 3392 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
c906108c 3393 {
a9a9bd0f
DC
3394 /* C++ static member. */
3395
3396 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
3397 is a declaration, but all versions of G++ as of this writing
3398 (so through at least 3.2.1) incorrectly generate
3399 DW_TAG_variable tags. */
3400
c906108c 3401 char *physname;
c906108c 3402
a9a9bd0f 3403 /* Get name of field. */
e142c38c 3404 attr = dwarf2_attr (die, DW_AT_name, cu);
2df3850c
JM
3405 if (attr && DW_STRING (attr))
3406 fieldname = DW_STRING (attr);
3407 else
c906108c
SS
3408 return;
3409
2df3850c 3410 /* Get physical name. */
e142c38c 3411 physname = dwarf2_linkage_name (die, cu);
c906108c 3412
d8151005
DJ
3413 /* The name is already allocated along with this objfile, so we don't
3414 need to duplicate it for the type. */
3415 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
e7c27a73 3416 FIELD_TYPE (*fp) = die_type (die, cu);
d8151005 3417 FIELD_NAME (*fp) = fieldname;
c906108c
SS
3418 }
3419 else if (die->tag == DW_TAG_inheritance)
3420 {
3421 /* C++ base class field. */
e142c38c 3422 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
c906108c 3423 if (attr)
e7c27a73 3424 FIELD_BITPOS (*fp) = (decode_locdesc (DW_BLOCK (attr), cu)
107d2387 3425 * bits_per_byte);
c906108c 3426 FIELD_BITSIZE (*fp) = 0;
01ad7f36 3427 FIELD_STATIC_KIND (*fp) = 0;
e7c27a73 3428 FIELD_TYPE (*fp) = die_type (die, cu);
c906108c
SS
3429 FIELD_NAME (*fp) = type_name_no_tag (fp->type);
3430 fip->nbaseclasses++;
3431 }
3432}
3433
3434/* Create the vector of fields, and attach it to the type. */
3435
3436static void
fba45db2 3437dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 3438 struct dwarf2_cu *cu)
c906108c
SS
3439{
3440 int nfields = fip->nfields;
3441
3442 /* Record the field count, allocate space for the array of fields,
3443 and create blank accessibility bitfields if necessary. */
3444 TYPE_NFIELDS (type) = nfields;
3445 TYPE_FIELDS (type) = (struct field *)
3446 TYPE_ALLOC (type, sizeof (struct field) * nfields);
3447 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
3448
3449 if (fip->non_public_fields)
3450 {
3451 ALLOCATE_CPLUS_STRUCT_TYPE (type);
3452
3453 TYPE_FIELD_PRIVATE_BITS (type) =
3454 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
3455 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
3456
3457 TYPE_FIELD_PROTECTED_BITS (type) =
3458 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
3459 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
3460
3461 TYPE_FIELD_IGNORE_BITS (type) =
3462 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
3463 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
3464 }
3465
3466 /* If the type has baseclasses, allocate and clear a bit vector for
3467 TYPE_FIELD_VIRTUAL_BITS. */
3468 if (fip->nbaseclasses)
3469 {
3470 int num_bytes = B_BYTES (fip->nbaseclasses);
fe1b8b76 3471 unsigned char *pointer;
c906108c
SS
3472
3473 ALLOCATE_CPLUS_STRUCT_TYPE (type);
fe1b8b76
JB
3474 pointer = TYPE_ALLOC (type, num_bytes);
3475 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
c906108c
SS
3476 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
3477 TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
3478 }
3479
3480 /* Copy the saved-up fields into the field vector. Start from the head
3481 of the list, adding to the tail of the field array, so that they end
3482 up in the same order in the array in which they were added to the list. */
3483 while (nfields-- > 0)
3484 {
3485 TYPE_FIELD (type, nfields) = fip->fields->field;
3486 switch (fip->fields->accessibility)
3487 {
c5aa993b
JM
3488 case DW_ACCESS_private:
3489 SET_TYPE_FIELD_PRIVATE (type, nfields);
3490 break;
c906108c 3491
c5aa993b
JM
3492 case DW_ACCESS_protected:
3493 SET_TYPE_FIELD_PROTECTED (type, nfields);
3494 break;
c906108c 3495
c5aa993b
JM
3496 case DW_ACCESS_public:
3497 break;
c906108c 3498
c5aa993b
JM
3499 default:
3500 /* Unknown accessibility. Complain and treat it as public. */
3501 {
e2e0b3e5 3502 complaint (&symfile_complaints, _("unsupported accessibility %d"),
4d3c2250 3503 fip->fields->accessibility);
c5aa993b
JM
3504 }
3505 break;
c906108c
SS
3506 }
3507 if (nfields < fip->nbaseclasses)
3508 {
3509 switch (fip->fields->virtuality)
3510 {
c5aa993b
JM
3511 case DW_VIRTUALITY_virtual:
3512 case DW_VIRTUALITY_pure_virtual:
3513 SET_TYPE_FIELD_VIRTUAL (type, nfields);
3514 break;
c906108c
SS
3515 }
3516 }
3517 fip->fields = fip->fields->next;
3518 }
3519}
3520
c906108c
SS
3521/* Add a member function to the proper fieldlist. */
3522
3523static void
107d2387 3524dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
e7c27a73 3525 struct type *type, struct dwarf2_cu *cu)
c906108c 3526{
e7c27a73 3527 struct objfile *objfile = cu->objfile;
c906108c
SS
3528 struct attribute *attr;
3529 struct fnfieldlist *flp;
3530 int i;
3531 struct fn_field *fnp;
3532 char *fieldname;
3533 char *physname;
3534 struct nextfnfield *new_fnfield;
3535
2df3850c 3536 /* Get name of member function. */
e142c38c 3537 attr = dwarf2_attr (die, DW_AT_name, cu);
2df3850c
JM
3538 if (attr && DW_STRING (attr))
3539 fieldname = DW_STRING (attr);
c906108c 3540 else
2df3850c 3541 return;
c906108c 3542
2df3850c 3543 /* Get the mangled name. */
e142c38c 3544 physname = dwarf2_linkage_name (die, cu);
c906108c
SS
3545
3546 /* Look up member function name in fieldlist. */
3547 for (i = 0; i < fip->nfnfields; i++)
3548 {
27bfe10e 3549 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
c906108c
SS
3550 break;
3551 }
3552
3553 /* Create new list element if necessary. */
3554 if (i < fip->nfnfields)
3555 flp = &fip->fnfieldlists[i];
3556 else
3557 {
3558 if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
3559 {
3560 fip->fnfieldlists = (struct fnfieldlist *)
3561 xrealloc (fip->fnfieldlists,
3562 (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
c5aa993b 3563 * sizeof (struct fnfieldlist));
c906108c 3564 if (fip->nfnfields == 0)
c13c43fd 3565 make_cleanup (free_current_contents, &fip->fnfieldlists);
c906108c
SS
3566 }
3567 flp = &fip->fnfieldlists[fip->nfnfields];
3568 flp->name = fieldname;
3569 flp->length = 0;
3570 flp->head = NULL;
3571 fip->nfnfields++;
3572 }
3573
3574 /* Create a new member function field and chain it to the field list
3575 entry. */
3576 new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
b8c9b27d 3577 make_cleanup (xfree, new_fnfield);
c906108c
SS
3578 memset (new_fnfield, 0, sizeof (struct nextfnfield));
3579 new_fnfield->next = flp->head;
3580 flp->head = new_fnfield;
3581 flp->length++;
3582
3583 /* Fill in the member function field info. */
3584 fnp = &new_fnfield->fnfield;
d8151005
DJ
3585 /* The name is already allocated along with this objfile, so we don't
3586 need to duplicate it for the type. */
3587 fnp->physname = physname ? physname : "";
c906108c
SS
3588 fnp->type = alloc_type (objfile);
3589 if (die->type && TYPE_CODE (die->type) == TYPE_CODE_FUNC)
3590 {
c906108c 3591 int nparams = TYPE_NFIELDS (die->type);
c906108c 3592
e26fb1d7
DC
3593 /* TYPE is the domain of this method, and DIE->TYPE is the type
3594 of the method itself (TYPE_CODE_METHOD). */
3595 smash_to_method_type (fnp->type, type,
ad2f7632
DJ
3596 TYPE_TARGET_TYPE (die->type),
3597 TYPE_FIELDS (die->type),
3598 TYPE_NFIELDS (die->type),
3599 TYPE_VARARGS (die->type));
c906108c
SS
3600
3601 /* Handle static member functions.
c5aa993b
JM
3602 Dwarf2 has no clean way to discern C++ static and non-static
3603 member functions. G++ helps GDB by marking the first
3604 parameter for non-static member functions (which is the
3605 this pointer) as artificial. We obtain this information
3606 from read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
c906108c
SS
3607 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (die->type, 0) == 0)
3608 fnp->voffset = VOFFSET_STATIC;
3609 }
3610 else
e2e0b3e5 3611 complaint (&symfile_complaints, _("member function type missing for '%s'"),
4d3c2250 3612 physname);
c906108c
SS
3613
3614 /* Get fcontext from DW_AT_containing_type if present. */
e142c38c 3615 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
e7c27a73 3616 fnp->fcontext = die_containing_type (die, cu);
c906108c
SS
3617
3618 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const
3619 and is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
3620
3621 /* Get accessibility. */
e142c38c 3622 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
c906108c
SS
3623 if (attr)
3624 {
3625 switch (DW_UNSND (attr))
3626 {
c5aa993b
JM
3627 case DW_ACCESS_private:
3628 fnp->is_private = 1;
3629 break;
3630 case DW_ACCESS_protected:
3631 fnp->is_protected = 1;
3632 break;
c906108c
SS
3633 }
3634 }
3635
b02dede2 3636 /* Check for artificial methods. */
e142c38c 3637 attr = dwarf2_attr (die, DW_AT_artificial, cu);
b02dede2
DJ
3638 if (attr && DW_UNSND (attr) != 0)
3639 fnp->is_artificial = 1;
3640
c906108c 3641 /* Get index in virtual function table if it is a virtual member function. */
e142c38c 3642 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
c906108c 3643 if (attr)
8e19ed76
PS
3644 {
3645 /* Support the .debug_loc offsets */
3646 if (attr_form_is_block (attr))
3647 {
e7c27a73 3648 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
8e19ed76
PS
3649 }
3650 else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
3651 {
4d3c2250 3652 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
3653 }
3654 else
3655 {
4d3c2250
KB
3656 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
3657 fieldname);
8e19ed76
PS
3658 }
3659 }
c906108c
SS
3660}
3661
3662/* Create the vector of member function fields, and attach it to the type. */
3663
3664static void
fba45db2 3665dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 3666 struct dwarf2_cu *cu)
c906108c
SS
3667{
3668 struct fnfieldlist *flp;
3669 int total_length = 0;
3670 int i;
3671
3672 ALLOCATE_CPLUS_STRUCT_TYPE (type);
3673 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
3674 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
3675
3676 for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
3677 {
3678 struct nextfnfield *nfp = flp->head;
3679 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
3680 int k;
3681
3682 TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
3683 TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
3684 fn_flp->fn_fields = (struct fn_field *)
3685 TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
3686 for (k = flp->length; (k--, nfp); nfp = nfp->next)
c5aa993b 3687 fn_flp->fn_fields[k] = nfp->fnfield;
c906108c
SS
3688
3689 total_length += flp->length;
3690 }
3691
3692 TYPE_NFN_FIELDS (type) = fip->nfnfields;
3693 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
3694}
3695
1168df01
JB
3696/* Returns non-zero if NAME is the name of a vtable member in CU's
3697 language, zero otherwise. */
3698static int
3699is_vtable_name (const char *name, struct dwarf2_cu *cu)
3700{
3701 static const char vptr[] = "_vptr";
987504bb 3702 static const char vtable[] = "vtable";
1168df01 3703
987504bb
JJ
3704 /* Look for the C++ and Java forms of the vtable. */
3705 if ((cu->language == language_java
3706 && strncmp (name, vtable, sizeof (vtable) - 1) == 0)
3707 || (strncmp (name, vptr, sizeof (vptr) - 1) == 0
3708 && is_cplus_marker (name[sizeof (vptr) - 1])))
1168df01
JB
3709 return 1;
3710
3711 return 0;
3712}
3713
c0dd20ea
DJ
3714/* GCC outputs unnamed structures that are really pointers to member
3715 functions, with the ABI-specified layout. If DIE (from CU) describes
3716 such a structure, set its type, and return nonzero. Otherwise return
61049d3b
DJ
3717 zero.
3718
3719 GCC shouldn't do this; it should just output pointer to member DIEs.
3720 This is GCC PR debug/28767. */
c0dd20ea
DJ
3721
3722static int
3723quirk_gcc_member_function_pointer (struct die_info *die, struct dwarf2_cu *cu)
3724{
3725 struct objfile *objfile = cu->objfile;
3726 struct type *type;
3727 struct die_info *pfn_die, *delta_die;
3728 struct attribute *pfn_name, *delta_name;
3729 struct type *pfn_type, *domain_type;
3730
3731 /* Check for a structure with no name and two children. */
3732 if (die->tag != DW_TAG_structure_type
3733 || dwarf2_attr (die, DW_AT_name, cu) != NULL
3734 || die->child == NULL
3735 || die->child->sibling == NULL
3736 || (die->child->sibling->sibling != NULL
3737 && die->child->sibling->sibling->tag != DW_TAG_padding))
3738 return 0;
3739
3740 /* Check for __pfn and __delta members. */
3741 pfn_die = die->child;
3742 pfn_name = dwarf2_attr (pfn_die, DW_AT_name, cu);
3743 if (pfn_die->tag != DW_TAG_member
3744 || pfn_name == NULL
3745 || DW_STRING (pfn_name) == NULL
3746 || strcmp ("__pfn", DW_STRING (pfn_name)) != 0)
3747 return 0;
3748
3749 delta_die = pfn_die->sibling;
3750 delta_name = dwarf2_attr (delta_die, DW_AT_name, cu);
3751 if (delta_die->tag != DW_TAG_member
3752 || delta_name == NULL
3753 || DW_STRING (delta_name) == NULL
3754 || strcmp ("__delta", DW_STRING (delta_name)) != 0)
3755 return 0;
3756
3757 /* Find the type of the method. */
3758 pfn_type = die_type (pfn_die, cu);
3759 if (pfn_type == NULL
3760 || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
3761 || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
3762 return 0;
3763
3764 /* Look for the "this" argument. */
3765 pfn_type = TYPE_TARGET_TYPE (pfn_type);
3766 if (TYPE_NFIELDS (pfn_type) == 0
3767 || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
3768 return 0;
3769
3770 domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
3771 type = alloc_type (objfile);
3772 smash_to_method_type (type, domain_type, TYPE_TARGET_TYPE (pfn_type),
3773 TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
3774 TYPE_VARARGS (pfn_type));
0d5de010 3775 type = lookup_methodptr_type (type);
c0dd20ea
DJ
3776 set_die_type (die, type, cu);
3777
3778 return 1;
3779}
1168df01 3780
c906108c
SS
3781/* Called when we find the DIE that starts a structure or union scope
3782 (definition) to process all dies that define the members of the
3783 structure or union.
3784
3785 NOTE: we need to call struct_type regardless of whether or not the
3786 DIE has an at_name attribute, since it might be an anonymous
3787 structure or union. This gets the type entered into our set of
3788 user defined types.
3789
3790 However, if the structure is incomplete (an opaque struct/union)
3791 then suppress creating a symbol table entry for it since gdb only
3792 wants to find the one with the complete definition. Note that if
3793 it is complete, we just call new_symbol, which does it's own
3794 checking about whether the struct/union is anonymous or not (and
3795 suppresses creating a symbol table entry itself). */
3796
3797static void
134d01f1 3798read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 3799{
e7c27a73 3800 struct objfile *objfile = cu->objfile;
c906108c
SS
3801 struct type *type;
3802 struct attribute *attr;
63d06c5c
DC
3803 const char *previous_prefix = processing_current_prefix;
3804 struct cleanup *back_to = NULL;
c906108c 3805
134d01f1
DJ
3806 if (die->type)
3807 return;
3808
c0dd20ea
DJ
3809 if (quirk_gcc_member_function_pointer (die, cu))
3810 return;
c906108c 3811
c0dd20ea 3812 type = alloc_type (objfile);
c906108c 3813 INIT_CPLUS_SPECIFIC (type);
e142c38c 3814 attr = dwarf2_attr (die, DW_AT_name, cu);
c906108c
SS
3815 if (attr && DW_STRING (attr))
3816 {
987504bb
JJ
3817 if (cu->language == language_cplus
3818 || cu->language == language_java)
63d06c5c 3819 {
8176b9b8
DC
3820 char *new_prefix = determine_class_name (die, cu);
3821 TYPE_TAG_NAME (type) = obsavestring (new_prefix,
3822 strlen (new_prefix),
3823 &objfile->objfile_obstack);
3824 back_to = make_cleanup (xfree, new_prefix);
63d06c5c
DC
3825 processing_current_prefix = new_prefix;
3826 }
3827 else
3828 {
d8151005
DJ
3829 /* The name is already allocated along with this objfile, so
3830 we don't need to duplicate it for the type. */
8176b9b8 3831 TYPE_TAG_NAME (type) = DW_STRING (attr);
63d06c5c 3832 }
c906108c
SS
3833 }
3834
3835 if (die->tag == DW_TAG_structure_type)
3836 {
3837 TYPE_CODE (type) = TYPE_CODE_STRUCT;
3838 }
3839 else if (die->tag == DW_TAG_union_type)
3840 {
3841 TYPE_CODE (type) = TYPE_CODE_UNION;
3842 }
3843 else
3844 {
3845 /* FIXME: TYPE_CODE_CLASS is currently defined to TYPE_CODE_STRUCT
c5aa993b 3846 in gdbtypes.h. */
c906108c
SS
3847 TYPE_CODE (type) = TYPE_CODE_CLASS;
3848 }
3849
e142c38c 3850 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
3851 if (attr)
3852 {
3853 TYPE_LENGTH (type) = DW_UNSND (attr);
3854 }
3855 else
3856 {
3857 TYPE_LENGTH (type) = 0;
3858 }
3859
dc718098
JB
3860 if (die_is_declaration (die, cu))
3861 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
3862
c906108c
SS
3863 /* We need to add the type field to the die immediately so we don't
3864 infinitely recurse when dealing with pointers to the structure
3865 type within the structure itself. */
1c379e20 3866 set_die_type (die, type, cu);
c906108c 3867
e142c38c 3868 if (die->child != NULL && ! die_is_declaration (die, cu))
c906108c
SS
3869 {
3870 struct field_info fi;
3871 struct die_info *child_die;
3872 struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
3873
3874 memset (&fi, 0, sizeof (struct field_info));
3875
639d11d3 3876 child_die = die->child;
c906108c
SS
3877
3878 while (child_die && child_die->tag)
3879 {
a9a9bd0f
DC
3880 if (child_die->tag == DW_TAG_member
3881 || child_die->tag == DW_TAG_variable)
c906108c 3882 {
a9a9bd0f
DC
3883 /* NOTE: carlton/2002-11-05: A C++ static data member
3884 should be a DW_TAG_member that is a declaration, but
3885 all versions of G++ as of this writing (so through at
3886 least 3.2.1) incorrectly generate DW_TAG_variable
3887 tags for them instead. */
e7c27a73 3888 dwarf2_add_field (&fi, child_die, cu);
c906108c 3889 }
8713b1b1 3890 else if (child_die->tag == DW_TAG_subprogram)
c906108c
SS
3891 {
3892 /* C++ member function. */
134d01f1 3893 read_type_die (child_die, cu);
e7c27a73 3894 dwarf2_add_member_fn (&fi, child_die, type, cu);
c906108c
SS
3895 }
3896 else if (child_die->tag == DW_TAG_inheritance)
3897 {
3898 /* C++ base class field. */
e7c27a73 3899 dwarf2_add_field (&fi, child_die, cu);
c906108c 3900 }
c906108c
SS
3901 child_die = sibling_die (child_die);
3902 }
3903
3904 /* Attach fields and member functions to the type. */
3905 if (fi.nfields)
e7c27a73 3906 dwarf2_attach_fields_to_type (&fi, type, cu);
c906108c
SS
3907 if (fi.nfnfields)
3908 {
e7c27a73 3909 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
c906108c 3910
c5aa993b 3911 /* Get the type which refers to the base class (possibly this
c906108c
SS
3912 class itself) which contains the vtable pointer for the current
3913 class from the DW_AT_containing_type attribute. */
3914
e142c38c 3915 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
c906108c 3916 {
e7c27a73 3917 struct type *t = die_containing_type (die, cu);
c906108c
SS
3918
3919 TYPE_VPTR_BASETYPE (type) = t;
3920 if (type == t)
3921 {
c906108c
SS
3922 int i;
3923
3924 /* Our own class provides vtbl ptr. */
3925 for (i = TYPE_NFIELDS (t) - 1;
3926 i >= TYPE_N_BASECLASSES (t);
3927 --i)
3928 {
3929 char *fieldname = TYPE_FIELD_NAME (t, i);
3930
1168df01 3931 if (is_vtable_name (fieldname, cu))
c906108c
SS
3932 {
3933 TYPE_VPTR_FIELDNO (type) = i;
3934 break;
3935 }
3936 }
3937
3938 /* Complain if virtual function table field not found. */
3939 if (i < TYPE_N_BASECLASSES (t))
4d3c2250 3940 complaint (&symfile_complaints,
e2e0b3e5 3941 _("virtual function table pointer not found when defining class '%s'"),
4d3c2250
KB
3942 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
3943 "");
c906108c
SS
3944 }
3945 else
3946 {
3947 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
3948 }
3949 }
f6235d4c
EZ
3950 else if (cu->producer
3951 && strncmp (cu->producer,
3952 "IBM(R) XL C/C++ Advanced Edition", 32) == 0)
3953 {
3954 /* The IBM XLC compiler does not provide direct indication
3955 of the containing type, but the vtable pointer is
3956 always named __vfp. */
3957
3958 int i;
3959
3960 for (i = TYPE_NFIELDS (type) - 1;
3961 i >= TYPE_N_BASECLASSES (type);
3962 --i)
3963 {
3964 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
3965 {
3966 TYPE_VPTR_FIELDNO (type) = i;
3967 TYPE_VPTR_BASETYPE (type) = type;
3968 break;
3969 }
3970 }
3971 }
c906108c
SS
3972 }
3973
c906108c
SS
3974 do_cleanups (back_to);
3975 }
63d06c5c
DC
3976
3977 processing_current_prefix = previous_prefix;
3978 if (back_to != NULL)
3979 do_cleanups (back_to);
c906108c
SS
3980}
3981
134d01f1
DJ
3982static void
3983process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
3984{
3985 struct objfile *objfile = cu->objfile;
3986 const char *previous_prefix = processing_current_prefix;
90aeadfc 3987 struct die_info *child_die = die->child;
c906108c 3988
134d01f1
DJ
3989 if (TYPE_TAG_NAME (die->type) != NULL)
3990 processing_current_prefix = TYPE_TAG_NAME (die->type);
c906108c 3991
90aeadfc
DC
3992 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
3993 snapshots) has been known to create a die giving a declaration
3994 for a class that has, as a child, a die giving a definition for a
3995 nested class. So we have to process our children even if the
3996 current die is a declaration. Normally, of course, a declaration
3997 won't have any children at all. */
134d01f1 3998
90aeadfc
DC
3999 while (child_die != NULL && child_die->tag)
4000 {
4001 if (child_die->tag == DW_TAG_member
4002 || child_die->tag == DW_TAG_variable
4003 || child_die->tag == DW_TAG_inheritance)
134d01f1 4004 {
90aeadfc 4005 /* Do nothing. */
134d01f1 4006 }
90aeadfc
DC
4007 else
4008 process_die (child_die, cu);
134d01f1 4009
90aeadfc 4010 child_die = sibling_die (child_die);
134d01f1
DJ
4011 }
4012
90aeadfc
DC
4013 if (die->child != NULL && ! die_is_declaration (die, cu))
4014 new_symbol (die, die->type, cu);
4015
134d01f1
DJ
4016 processing_current_prefix = previous_prefix;
4017}
4018
4019/* Given a DW_AT_enumeration_type die, set its type. We do not
4020 complete the type's fields yet, or create any symbols. */
c906108c
SS
4021
4022static void
134d01f1 4023read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 4024{
e7c27a73 4025 struct objfile *objfile = cu->objfile;
c906108c 4026 struct type *type;
c906108c 4027 struct attribute *attr;
134d01f1
DJ
4028
4029 if (die->type)
4030 return;
c906108c
SS
4031
4032 type = alloc_type (objfile);
4033
4034 TYPE_CODE (type) = TYPE_CODE_ENUM;
e142c38c 4035 attr = dwarf2_attr (die, DW_AT_name, cu);
c906108c
SS
4036 if (attr && DW_STRING (attr))
4037 {
d8151005 4038 char *name = DW_STRING (attr);
63d06c5c
DC
4039
4040 if (processing_has_namespace_info)
4041 {
987504bb
JJ
4042 TYPE_TAG_NAME (type) = typename_concat (&objfile->objfile_obstack,
4043 processing_current_prefix,
4044 name, cu);
63d06c5c
DC
4045 }
4046 else
4047 {
d8151005
DJ
4048 /* The name is already allocated along with this objfile, so
4049 we don't need to duplicate it for the type. */
4050 TYPE_TAG_NAME (type) = name;
63d06c5c 4051 }
c906108c
SS
4052 }
4053
e142c38c 4054 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
4055 if (attr)
4056 {
4057 TYPE_LENGTH (type) = DW_UNSND (attr);
4058 }
4059 else
4060 {
4061 TYPE_LENGTH (type) = 0;
4062 }
4063
1c379e20 4064 set_die_type (die, type, cu);
134d01f1
DJ
4065}
4066
8176b9b8 4067/* Determine the name of the type represented by DIE, which should be
987504bb 4068 a named C++ or Java compound type. Return the name in question; the caller
8176b9b8
DC
4069 is responsible for xfree()'ing it. */
4070
4071static char *
4072determine_class_name (struct die_info *die, struct dwarf2_cu *cu)
4073{
4074 struct cleanup *back_to = NULL;
4075 struct die_info *spec_die = die_specification (die, cu);
4076 char *new_prefix = NULL;
4077
4078 /* If this is the definition of a class that is declared by another
4079 die, then processing_current_prefix may not be accurate; see
4080 read_func_scope for a similar example. */
4081 if (spec_die != NULL)
4082 {
4083 char *specification_prefix = determine_prefix (spec_die, cu);
4084 processing_current_prefix = specification_prefix;
4085 back_to = make_cleanup (xfree, specification_prefix);
4086 }
4087
4088 /* If we don't have namespace debug info, guess the name by trying
4089 to demangle the names of members, just like we did in
72bf9492 4090 guess_structure_name. */
8176b9b8
DC
4091 if (!processing_has_namespace_info)
4092 {
4093 struct die_info *child;
4094
4095 for (child = die->child;
4096 child != NULL && child->tag != 0;
4097 child = sibling_die (child))
4098 {
4099 if (child->tag == DW_TAG_subprogram)
4100 {
31c27f77
JJ
4101 new_prefix
4102 = language_class_name_from_physname (cu->language_defn,
4103 dwarf2_linkage_name
8176b9b8
DC
4104 (child, cu));
4105
4106 if (new_prefix != NULL)
4107 break;
4108 }
4109 }
4110 }
4111
4112 if (new_prefix == NULL)
4113 {
4114 const char *name = dwarf2_name (die, cu);
987504bb
JJ
4115 new_prefix = typename_concat (NULL, processing_current_prefix,
4116 name ? name : "<<anonymous>>",
4117 cu);
8176b9b8
DC
4118 }
4119
4120 if (back_to != NULL)
4121 do_cleanups (back_to);
4122
4123 return new_prefix;
4124}
4125
134d01f1
DJ
4126/* Given a pointer to a die which begins an enumeration, process all
4127 the dies that define the members of the enumeration, and create the
4128 symbol for the enumeration type.
4129
4130 NOTE: We reverse the order of the element list. */
4131
4132static void
4133process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
4134{
4135 struct objfile *objfile = cu->objfile;
4136 struct die_info *child_die;
4137 struct field *fields;
4138 struct attribute *attr;
4139 struct symbol *sym;
4140 int num_fields;
4141 int unsigned_enum = 1;
4142
c906108c
SS
4143 num_fields = 0;
4144 fields = NULL;
639d11d3 4145 if (die->child != NULL)
c906108c 4146 {
639d11d3 4147 child_die = die->child;
c906108c
SS
4148 while (child_die && child_die->tag)
4149 {
4150 if (child_die->tag != DW_TAG_enumerator)
4151 {
e7c27a73 4152 process_die (child_die, cu);
c906108c
SS
4153 }
4154 else
4155 {
e142c38c 4156 attr = dwarf2_attr (child_die, DW_AT_name, cu);
c906108c
SS
4157 if (attr)
4158 {
134d01f1 4159 sym = new_symbol (child_die, die->type, cu);
c906108c
SS
4160 if (SYMBOL_VALUE (sym) < 0)
4161 unsigned_enum = 0;
4162
4163 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
4164 {
4165 fields = (struct field *)
4166 xrealloc (fields,
4167 (num_fields + DW_FIELD_ALLOC_CHUNK)
c5aa993b 4168 * sizeof (struct field));
c906108c
SS
4169 }
4170
22abf04a 4171 FIELD_NAME (fields[num_fields]) = DEPRECATED_SYMBOL_NAME (sym);
c906108c
SS
4172 FIELD_TYPE (fields[num_fields]) = NULL;
4173 FIELD_BITPOS (fields[num_fields]) = SYMBOL_VALUE (sym);
4174 FIELD_BITSIZE (fields[num_fields]) = 0;
01ad7f36 4175 FIELD_STATIC_KIND (fields[num_fields]) = 0;
c906108c
SS
4176
4177 num_fields++;
4178 }
4179 }
4180
4181 child_die = sibling_die (child_die);
4182 }
4183
4184 if (num_fields)
4185 {
134d01f1
DJ
4186 TYPE_NFIELDS (die->type) = num_fields;
4187 TYPE_FIELDS (die->type) = (struct field *)
4188 TYPE_ALLOC (die->type, sizeof (struct field) * num_fields);
4189 memcpy (TYPE_FIELDS (die->type), fields,
c906108c 4190 sizeof (struct field) * num_fields);
b8c9b27d 4191 xfree (fields);
c906108c
SS
4192 }
4193 if (unsigned_enum)
134d01f1 4194 TYPE_FLAGS (die->type) |= TYPE_FLAG_UNSIGNED;
c906108c 4195 }
134d01f1
DJ
4196
4197 new_symbol (die, die->type, cu);
c906108c
SS
4198}
4199
4200/* Extract all information from a DW_TAG_array_type DIE and put it in
4201 the DIE's type field. For now, this only handles one dimensional
4202 arrays. */
4203
4204static void
e7c27a73 4205read_array_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 4206{
e7c27a73 4207 struct objfile *objfile = cu->objfile;
c906108c
SS
4208 struct die_info *child_die;
4209 struct type *type = NULL;
4210 struct type *element_type, *range_type, *index_type;
4211 struct type **range_types = NULL;
4212 struct attribute *attr;
4213 int ndim = 0;
4214 struct cleanup *back_to;
4215
4216 /* Return if we've already decoded this type. */
4217 if (die->type)
4218 {
4219 return;
4220 }
4221
e7c27a73 4222 element_type = die_type (die, cu);
c906108c
SS
4223
4224 /* Irix 6.2 native cc creates array types without children for
4225 arrays with unspecified length. */
639d11d3 4226 if (die->child == NULL)
c906108c 4227 {
e142c38c 4228 index_type = dwarf2_fundamental_type (objfile, FT_INTEGER, cu);
c906108c 4229 range_type = create_range_type (NULL, index_type, 0, -1);
1c379e20
DJ
4230 set_die_type (die, create_array_type (NULL, element_type, range_type),
4231 cu);
c906108c
SS
4232 return;
4233 }
4234
4235 back_to = make_cleanup (null_cleanup, NULL);
639d11d3 4236 child_die = die->child;
c906108c
SS
4237 while (child_die && child_die->tag)
4238 {
4239 if (child_die->tag == DW_TAG_subrange_type)
4240 {
a02abb62 4241 read_subrange_type (child_die, cu);
c906108c 4242
a02abb62
JB
4243 if (child_die->type != NULL)
4244 {
4245 /* The range type was succesfully read. Save it for
4246 the array type creation. */
4247 if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
4248 {
4249 range_types = (struct type **)
4250 xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
4251 * sizeof (struct type *));
4252 if (ndim == 0)
4253 make_cleanup (free_current_contents, &range_types);
4254 }
4255 range_types[ndim++] = child_die->type;
4256 }
c906108c
SS
4257 }
4258 child_die = sibling_die (child_die);
4259 }
4260
4261 /* Dwarf2 dimensions are output from left to right, create the
4262 necessary array types in backwards order. */
7ca2d3a3 4263
c906108c 4264 type = element_type;
7ca2d3a3
DL
4265
4266 if (read_array_order (die, cu) == DW_ORD_col_major)
4267 {
4268 int i = 0;
4269 while (i < ndim)
4270 type = create_array_type (NULL, type, range_types[i++]);
4271 }
4272 else
4273 {
4274 while (ndim-- > 0)
4275 type = create_array_type (NULL, type, range_types[ndim]);
4276 }
c906108c 4277
f5f8a009
EZ
4278 /* Understand Dwarf2 support for vector types (like they occur on
4279 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
4280 array type. This is not part of the Dwarf2/3 standard yet, but a
4281 custom vendor extension. The main difference between a regular
4282 array and the vector variant is that vectors are passed by value
4283 to functions. */
e142c38c 4284 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
f5f8a009
EZ
4285 if (attr)
4286 TYPE_FLAGS (type) |= TYPE_FLAG_VECTOR;
4287
714e295e
JB
4288 attr = dwarf2_attr (die, DW_AT_name, cu);
4289 if (attr && DW_STRING (attr))
4290 TYPE_NAME (type) = DW_STRING (attr);
4291
c906108c
SS
4292 do_cleanups (back_to);
4293
4294 /* Install the type in the die. */
1c379e20 4295 set_die_type (die, type, cu);
c906108c
SS
4296}
4297
7ca2d3a3
DL
4298static enum dwarf_array_dim_ordering
4299read_array_order (struct die_info *die, struct dwarf2_cu *cu)
4300{
4301 struct attribute *attr;
4302
4303 attr = dwarf2_attr (die, DW_AT_ordering, cu);
4304
4305 if (attr) return DW_SND (attr);
4306
4307 /*
4308 GNU F77 is a special case, as at 08/2004 array type info is the
4309 opposite order to the dwarf2 specification, but data is still
4310 laid out as per normal fortran.
4311
4312 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
4313 version checking.
4314 */
4315
4316 if (cu->language == language_fortran &&
4317 cu->producer && strstr (cu->producer, "GNU F77"))
4318 {
4319 return DW_ORD_row_major;
4320 }
4321
4322 switch (cu->language_defn->la_array_ordering)
4323 {
4324 case array_column_major:
4325 return DW_ORD_col_major;
4326 case array_row_major:
4327 default:
4328 return DW_ORD_row_major;
4329 };
4330}
4331
72019c9c
GM
4332/* Extract all information from a DW_TAG_set_type DIE and put it in
4333 the DIE's type field. */
4334
4335static void
4336read_set_type (struct die_info *die, struct dwarf2_cu *cu)
4337{
4338 if (die->type == NULL)
4339 die->type = create_set_type ((struct type *) NULL, die_type (die, cu));
4340}
7ca2d3a3 4341
c906108c
SS
4342/* First cut: install each common block member as a global variable. */
4343
4344static void
e7c27a73 4345read_common_block (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
4346{
4347 struct die_info *child_die;
4348 struct attribute *attr;
4349 struct symbol *sym;
4350 CORE_ADDR base = (CORE_ADDR) 0;
4351
e142c38c 4352 attr = dwarf2_attr (die, DW_AT_location, cu);
c906108c
SS
4353 if (attr)
4354 {
8e19ed76
PS
4355 /* Support the .debug_loc offsets */
4356 if (attr_form_is_block (attr))
4357 {
e7c27a73 4358 base = decode_locdesc (DW_BLOCK (attr), cu);
8e19ed76
PS
4359 }
4360 else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
4361 {
4d3c2250 4362 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
4363 }
4364 else
4365 {
4d3c2250
KB
4366 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
4367 "common block member");
8e19ed76 4368 }
c906108c 4369 }
639d11d3 4370 if (die->child != NULL)
c906108c 4371 {
639d11d3 4372 child_die = die->child;
c906108c
SS
4373 while (child_die && child_die->tag)
4374 {
e7c27a73 4375 sym = new_symbol (child_die, NULL, cu);
e142c38c 4376 attr = dwarf2_attr (child_die, DW_AT_data_member_location, cu);
c906108c
SS
4377 if (attr)
4378 {
4379 SYMBOL_VALUE_ADDRESS (sym) =
e7c27a73 4380 base + decode_locdesc (DW_BLOCK (attr), cu);
c906108c
SS
4381 add_symbol_to_list (sym, &global_symbols);
4382 }
4383 child_die = sibling_die (child_die);
4384 }
4385 }
4386}
4387
d9fa45fe
DC
4388/* Read a C++ namespace. */
4389
d9fa45fe 4390static void
e7c27a73 4391read_namespace (struct die_info *die, struct dwarf2_cu *cu)
d9fa45fe 4392{
e7c27a73 4393 struct objfile *objfile = cu->objfile;
38d518c9 4394 const char *previous_prefix = processing_current_prefix;
63d06c5c 4395 const char *name;
9219021c
DC
4396 int is_anonymous;
4397 struct die_info *current_die;
987504bb 4398 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
9219021c 4399
e142c38c 4400 name = namespace_name (die, &is_anonymous, cu);
9219021c
DC
4401
4402 /* Now build the name of the current namespace. */
4403
38d518c9 4404 if (previous_prefix[0] == '\0')
9219021c 4405 {
38d518c9 4406 processing_current_prefix = name;
9219021c
DC
4407 }
4408 else
4409 {
987504bb
JJ
4410 char *temp_name = typename_concat (NULL, previous_prefix, name, cu);
4411 make_cleanup (xfree, temp_name);
38d518c9 4412 processing_current_prefix = temp_name;
9219021c
DC
4413 }
4414
5c4e30ca
DC
4415 /* Add a symbol associated to this if we haven't seen the namespace
4416 before. Also, add a using directive if it's an anonymous
4417 namespace. */
9219021c 4418
e142c38c 4419 if (dwarf2_extension (die, cu) == NULL)
5c4e30ca
DC
4420 {
4421 struct type *type;
4422
4423 /* FIXME: carlton/2003-06-27: Once GDB is more const-correct,
4424 this cast will hopefully become unnecessary. */
4425 type = init_type (TYPE_CODE_NAMESPACE, 0, 0,
38d518c9 4426 (char *) processing_current_prefix,
5c4e30ca
DC
4427 objfile);
4428 TYPE_TAG_NAME (type) = TYPE_NAME (type);
4429
e7c27a73 4430 new_symbol (die, type, cu);
1c379e20 4431 set_die_type (die, type, cu);
5c4e30ca
DC
4432
4433 if (is_anonymous)
38d518c9
EZ
4434 cp_add_using_directive (processing_current_prefix,
4435 strlen (previous_prefix),
4436 strlen (processing_current_prefix));
5c4e30ca 4437 }
9219021c 4438
639d11d3 4439 if (die->child != NULL)
d9fa45fe 4440 {
639d11d3 4441 struct die_info *child_die = die->child;
d9fa45fe
DC
4442
4443 while (child_die && child_die->tag)
4444 {
e7c27a73 4445 process_die (child_die, cu);
d9fa45fe
DC
4446 child_die = sibling_die (child_die);
4447 }
4448 }
9219021c 4449
38d518c9 4450 processing_current_prefix = previous_prefix;
987504bb 4451 do_cleanups (back_to);
38d518c9
EZ
4452}
4453
4454/* Return the name of the namespace represented by DIE. Set
4455 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
4456 namespace. */
4457
4458static const char *
e142c38c 4459namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
38d518c9
EZ
4460{
4461 struct die_info *current_die;
4462 const char *name = NULL;
4463
4464 /* Loop through the extensions until we find a name. */
4465
4466 for (current_die = die;
4467 current_die != NULL;
e142c38c 4468 current_die = dwarf2_extension (die, cu))
38d518c9 4469 {
e142c38c 4470 name = dwarf2_name (current_die, cu);
38d518c9
EZ
4471 if (name != NULL)
4472 break;
4473 }
4474
4475 /* Is it an anonymous namespace? */
4476
4477 *is_anonymous = (name == NULL);
4478 if (*is_anonymous)
4479 name = "(anonymous namespace)";
4480
4481 return name;
d9fa45fe
DC
4482}
4483
c906108c
SS
4484/* Extract all information from a DW_TAG_pointer_type DIE and add to
4485 the user defined type vector. */
4486
4487static void
e7c27a73 4488read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 4489{
e7c27a73 4490 struct comp_unit_head *cu_header = &cu->header;
c906108c 4491 struct type *type;
8b2dbe47
KB
4492 struct attribute *attr_byte_size;
4493 struct attribute *attr_address_class;
4494 int byte_size, addr_class;
c906108c
SS
4495
4496 if (die->type)
4497 {
4498 return;
4499 }
4500
e7c27a73 4501 type = lookup_pointer_type (die_type (die, cu));
8b2dbe47 4502
e142c38c 4503 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
8b2dbe47
KB
4504 if (attr_byte_size)
4505 byte_size = DW_UNSND (attr_byte_size);
c906108c 4506 else
8b2dbe47
KB
4507 byte_size = cu_header->addr_size;
4508
e142c38c 4509 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
8b2dbe47
KB
4510 if (attr_address_class)
4511 addr_class = DW_UNSND (attr_address_class);
4512 else
4513 addr_class = DW_ADDR_none;
4514
4515 /* If the pointer size or address class is different than the
4516 default, create a type variant marked as such and set the
4517 length accordingly. */
4518 if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
c906108c 4519 {
8b2dbe47
KB
4520 if (ADDRESS_CLASS_TYPE_FLAGS_P ())
4521 {
4522 int type_flags;
4523
4524 type_flags = ADDRESS_CLASS_TYPE_FLAGS (byte_size, addr_class);
4525 gdb_assert ((type_flags & ~TYPE_FLAG_ADDRESS_CLASS_ALL) == 0);
4526 type = make_type_with_address_space (type, type_flags);
4527 }
4528 else if (TYPE_LENGTH (type) != byte_size)
4529 {
e2e0b3e5 4530 complaint (&symfile_complaints, _("invalid pointer size %d"), byte_size);
8b2dbe47
KB
4531 }
4532 else {
4533 /* Should we also complain about unhandled address classes? */
4534 }
c906108c 4535 }
8b2dbe47
KB
4536
4537 TYPE_LENGTH (type) = byte_size;
1c379e20 4538 set_die_type (die, type, cu);
c906108c
SS
4539}
4540
4541/* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
4542 the user defined type vector. */
4543
4544static void
e7c27a73 4545read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 4546{
e7c27a73 4547 struct objfile *objfile = cu->objfile;
c906108c
SS
4548 struct type *type;
4549 struct type *to_type;
4550 struct type *domain;
4551
4552 if (die->type)
4553 {
4554 return;
4555 }
4556
e7c27a73
DJ
4557 to_type = die_type (die, cu);
4558 domain = die_containing_type (die, cu);
0d5de010
DJ
4559
4560 if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
4561 type = lookup_methodptr_type (to_type);
4562 else
4563 type = lookup_memberptr_type (to_type, domain);
c906108c 4564
1c379e20 4565 set_die_type (die, type, cu);
c906108c
SS
4566}
4567
4568/* Extract all information from a DW_TAG_reference_type DIE and add to
4569 the user defined type vector. */
4570
4571static void
e7c27a73 4572read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 4573{
e7c27a73 4574 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
4575 struct type *type;
4576 struct attribute *attr;
4577
4578 if (die->type)
4579 {
4580 return;
4581 }
4582
e7c27a73 4583 type = lookup_reference_type (die_type (die, cu));
e142c38c 4584 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
4585 if (attr)
4586 {
4587 TYPE_LENGTH (type) = DW_UNSND (attr);
4588 }
4589 else
4590 {
107d2387 4591 TYPE_LENGTH (type) = cu_header->addr_size;
c906108c 4592 }
1c379e20 4593 set_die_type (die, type, cu);
c906108c
SS
4594}
4595
4596static void
e7c27a73 4597read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 4598{
090c42a4
JB
4599 struct type *base_type;
4600
c906108c
SS
4601 if (die->type)
4602 {
4603 return;
4604 }
4605
e7c27a73 4606 base_type = die_type (die, cu);
1c379e20
DJ
4607 set_die_type (die, make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0),
4608 cu);
c906108c
SS
4609}
4610
4611static void
e7c27a73 4612read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 4613{
090c42a4
JB
4614 struct type *base_type;
4615
c906108c
SS
4616 if (die->type)
4617 {
4618 return;
4619 }
4620
e7c27a73 4621 base_type = die_type (die, cu);
1c379e20
DJ
4622 set_die_type (die, make_cv_type (TYPE_CONST (base_type), 1, base_type, 0),
4623 cu);
c906108c
SS
4624}
4625
4626/* Extract all information from a DW_TAG_string_type DIE and add to
4627 the user defined type vector. It isn't really a user defined type,
4628 but it behaves like one, with other DIE's using an AT_user_def_type
4629 attribute to reference it. */
4630
4631static void
e7c27a73 4632read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 4633{
e7c27a73 4634 struct objfile *objfile = cu->objfile;
c906108c
SS
4635 struct type *type, *range_type, *index_type, *char_type;
4636 struct attribute *attr;
4637 unsigned int length;
4638
4639 if (die->type)
4640 {
4641 return;
4642 }
4643
e142c38c 4644 attr = dwarf2_attr (die, DW_AT_string_length, cu);
c906108c
SS
4645 if (attr)
4646 {
4647 length = DW_UNSND (attr);
4648 }
4649 else
4650 {
b21b22e0 4651 /* check for the DW_AT_byte_size attribute */
e142c38c 4652 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
b21b22e0
PS
4653 if (attr)
4654 {
4655 length = DW_UNSND (attr);
4656 }
4657 else
4658 {
4659 length = 1;
4660 }
c906108c 4661 }
e142c38c 4662 index_type = dwarf2_fundamental_type (objfile, FT_INTEGER, cu);
c906108c 4663 range_type = create_range_type (NULL, index_type, 1, length);
e142c38c 4664 if (cu->language == language_fortran)
b21b22e0
PS
4665 {
4666 /* Need to create a unique string type for bounds
4667 information */
4668 type = create_string_type (0, range_type);
4669 }
4670 else
4671 {
e142c38c 4672 char_type = dwarf2_fundamental_type (objfile, FT_CHAR, cu);
b21b22e0
PS
4673 type = create_string_type (char_type, range_type);
4674 }
1c379e20 4675 set_die_type (die, type, cu);
c906108c
SS
4676}
4677
4678/* Handle DIES due to C code like:
4679
4680 struct foo
c5aa993b
JM
4681 {
4682 int (*funcp)(int a, long l);
4683 int b;
4684 };
c906108c
SS
4685
4686 ('funcp' generates a DW_TAG_subroutine_type DIE)
c5aa993b 4687 */
c906108c
SS
4688
4689static void
e7c27a73 4690read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
4691{
4692 struct type *type; /* Type that this function returns */
4693 struct type *ftype; /* Function that returns above type */
4694 struct attribute *attr;
4695
4696 /* Decode the type that this subroutine returns */
4697 if (die->type)
4698 {
4699 return;
4700 }
e7c27a73 4701 type = die_type (die, cu);
1326e61b 4702 ftype = make_function_type (type, (struct type **) 0);
c906108c 4703
987504bb 4704 /* All functions in C++ and Java have prototypes. */
e142c38c 4705 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
c906108c 4706 if ((attr && (DW_UNSND (attr) != 0))
987504bb
JJ
4707 || cu->language == language_cplus
4708 || cu->language == language_java)
c906108c
SS
4709 TYPE_FLAGS (ftype) |= TYPE_FLAG_PROTOTYPED;
4710
639d11d3 4711 if (die->child != NULL)
c906108c
SS
4712 {
4713 struct die_info *child_die;
4714 int nparams = 0;
4715 int iparams = 0;
4716
4717 /* Count the number of parameters.
4718 FIXME: GDB currently ignores vararg functions, but knows about
4719 vararg member functions. */
639d11d3 4720 child_die = die->child;
c906108c
SS
4721 while (child_die && child_die->tag)
4722 {
4723 if (child_die->tag == DW_TAG_formal_parameter)
4724 nparams++;
4725 else if (child_die->tag == DW_TAG_unspecified_parameters)
4726 TYPE_FLAGS (ftype) |= TYPE_FLAG_VARARGS;
4727 child_die = sibling_die (child_die);
4728 }
4729
4730 /* Allocate storage for parameters and fill them in. */
4731 TYPE_NFIELDS (ftype) = nparams;
4732 TYPE_FIELDS (ftype) = (struct field *)
ae5a43e0 4733 TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
c906108c 4734
639d11d3 4735 child_die = die->child;
c906108c
SS
4736 while (child_die && child_die->tag)
4737 {
4738 if (child_die->tag == DW_TAG_formal_parameter)
4739 {
4740 /* Dwarf2 has no clean way to discern C++ static and non-static
c5aa993b
JM
4741 member functions. G++ helps GDB by marking the first
4742 parameter for non-static member functions (which is the
4743 this pointer) as artificial. We pass this information
4744 to dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL. */
e142c38c 4745 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
c906108c
SS
4746 if (attr)
4747 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
4748 else
4749 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
e7c27a73 4750 TYPE_FIELD_TYPE (ftype, iparams) = die_type (child_die, cu);
c906108c
SS
4751 iparams++;
4752 }
4753 child_die = sibling_die (child_die);
4754 }
4755 }
4756
1c379e20 4757 set_die_type (die, ftype, cu);
c906108c
SS
4758}
4759
4760static void
e7c27a73 4761read_typedef (struct die_info *die, struct dwarf2_cu *cu)
c906108c 4762{
e7c27a73 4763 struct objfile *objfile = cu->objfile;
2f038fcb
FF
4764 struct attribute *attr;
4765 char *name = NULL;
c906108c
SS
4766
4767 if (!die->type)
4768 {
e142c38c 4769 attr = dwarf2_attr (die, DW_AT_name, cu);
c906108c 4770 if (attr && DW_STRING (attr))
2f038fcb
FF
4771 {
4772 name = DW_STRING (attr);
4773 }
1c379e20
DJ
4774 set_die_type (die, init_type (TYPE_CODE_TYPEDEF, 0,
4775 TYPE_FLAG_TARGET_STUB, name, objfile),
4776 cu);
e7c27a73 4777 TYPE_TARGET_TYPE (die->type) = die_type (die, cu);
c906108c
SS
4778 }
4779}
4780
4781/* Find a representation of a given base type and install
4782 it in the TYPE field of the die. */
4783
4784static void
e7c27a73 4785read_base_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 4786{
e7c27a73 4787 struct objfile *objfile = cu->objfile;
c906108c
SS
4788 struct type *type;
4789 struct attribute *attr;
4790 int encoding = 0, size = 0;
4791
4792 /* If we've already decoded this die, this is a no-op. */
4793 if (die->type)
4794 {
4795 return;
4796 }
4797
e142c38c 4798 attr = dwarf2_attr (die, DW_AT_encoding, cu);
c906108c
SS
4799 if (attr)
4800 {
4801 encoding = DW_UNSND (attr);
4802 }
e142c38c 4803 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
4804 if (attr)
4805 {
4806 size = DW_UNSND (attr);
4807 }
e142c38c 4808 attr = dwarf2_attr (die, DW_AT_name, cu);
c906108c
SS
4809 if (attr && DW_STRING (attr))
4810 {
4811 enum type_code code = TYPE_CODE_INT;
f5ef7c67 4812 int type_flags = 0;
c906108c
SS
4813
4814 switch (encoding)
4815 {
4816 case DW_ATE_address:
4817 /* Turn DW_ATE_address into a void * pointer. */
4818 code = TYPE_CODE_PTR;
f5ef7c67 4819 type_flags |= TYPE_FLAG_UNSIGNED;
c906108c
SS
4820 break;
4821 case DW_ATE_boolean:
4822 code = TYPE_CODE_BOOL;
f5ef7c67 4823 type_flags |= TYPE_FLAG_UNSIGNED;
c906108c
SS
4824 break;
4825 case DW_ATE_complex_float:
4826 code = TYPE_CODE_COMPLEX;
4827 break;
4828 case DW_ATE_float:
4829 code = TYPE_CODE_FLT;
4830 break;
4831 case DW_ATE_signed:
c906108c
SS
4832 break;
4833 case DW_ATE_unsigned:
72019c9c
GM
4834 type_flags |= TYPE_FLAG_UNSIGNED;
4835 break;
4836 case DW_ATE_signed_char:
4837 if (cu->language == language_m2)
4838 code = TYPE_CODE_CHAR;
4839 break;
4840 case DW_ATE_unsigned_char:
4841 if (cu->language == language_m2)
4842 code = TYPE_CODE_CHAR;
f5ef7c67 4843 type_flags |= TYPE_FLAG_UNSIGNED;
c906108c
SS
4844 break;
4845 default:
e2e0b3e5 4846 complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
4d3c2250 4847 dwarf_type_encoding_name (encoding));
c906108c
SS
4848 break;
4849 }
f5ef7c67 4850 type = init_type (code, size, type_flags, DW_STRING (attr), objfile);
c906108c 4851 if (encoding == DW_ATE_address)
e142c38c
DJ
4852 TYPE_TARGET_TYPE (type) = dwarf2_fundamental_type (objfile, FT_VOID,
4853 cu);
f65ca430
DJ
4854 else if (encoding == DW_ATE_complex_float)
4855 {
4856 if (size == 32)
4857 TYPE_TARGET_TYPE (type)
e142c38c 4858 = dwarf2_fundamental_type (objfile, FT_EXT_PREC_FLOAT, cu);
f65ca430
DJ
4859 else if (size == 16)
4860 TYPE_TARGET_TYPE (type)
e142c38c 4861 = dwarf2_fundamental_type (objfile, FT_DBL_PREC_FLOAT, cu);
f65ca430
DJ
4862 else if (size == 8)
4863 TYPE_TARGET_TYPE (type)
e142c38c 4864 = dwarf2_fundamental_type (objfile, FT_FLOAT, cu);
f65ca430 4865 }
c906108c
SS
4866 }
4867 else
4868 {
e7c27a73 4869 type = dwarf_base_type (encoding, size, cu);
c906108c 4870 }
1c379e20 4871 set_die_type (die, type, cu);
c906108c
SS
4872}
4873
a02abb62
JB
4874/* Read the given DW_AT_subrange DIE. */
4875
4876static void
4877read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
4878{
4879 struct type *base_type;
4880 struct type *range_type;
4881 struct attribute *attr;
4882 int low = 0;
4883 int high = -1;
4884
4885 /* If we have already decoded this die, then nothing more to do. */
4886 if (die->type)
4887 return;
4888
4889 base_type = die_type (die, cu);
4890 if (base_type == NULL)
4891 {
4892 complaint (&symfile_complaints,
e2e0b3e5 4893 _("DW_AT_type missing from DW_TAG_subrange_type"));
a02abb62
JB
4894 return;
4895 }
4896
4897 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
4898 base_type = alloc_type (NULL);
4899
e142c38c 4900 if (cu->language == language_fortran)
a02abb62
JB
4901 {
4902 /* FORTRAN implies a lower bound of 1, if not given. */
4903 low = 1;
4904 }
4905
dd5e6932
DJ
4906 /* FIXME: For variable sized arrays either of these could be
4907 a variable rather than a constant value. We'll allow it,
4908 but we don't know how to handle it. */
e142c38c 4909 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
a02abb62
JB
4910 if (attr)
4911 low = dwarf2_get_attr_constant_value (attr, 0);
4912
e142c38c 4913 attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
a02abb62
JB
4914 if (attr)
4915 {
4916 if (attr->form == DW_FORM_block1)
4917 {
4918 /* GCC encodes arrays with unspecified or dynamic length
4919 with a DW_FORM_block1 attribute.
4920 FIXME: GDB does not yet know how to handle dynamic
4921 arrays properly, treat them as arrays with unspecified
4922 length for now.
4923
4924 FIXME: jimb/2003-09-22: GDB does not really know
4925 how to handle arrays of unspecified length
4926 either; we just represent them as zero-length
4927 arrays. Choose an appropriate upper bound given
4928 the lower bound we've computed above. */
4929 high = low - 1;
4930 }
4931 else
4932 high = dwarf2_get_attr_constant_value (attr, 1);
4933 }
4934
4935 range_type = create_range_type (NULL, base_type, low, high);
4936
e142c38c 4937 attr = dwarf2_attr (die, DW_AT_name, cu);
a02abb62
JB
4938 if (attr && DW_STRING (attr))
4939 TYPE_NAME (range_type) = DW_STRING (attr);
4940
e142c38c 4941 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
a02abb62
JB
4942 if (attr)
4943 TYPE_LENGTH (range_type) = DW_UNSND (attr);
4944
1c379e20 4945 set_die_type (die, range_type, cu);
a02abb62
JB
4946}
4947
81a17f79
JB
4948static void
4949read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
4950{
4951 struct type *type;
4952 struct attribute *attr;
4953
4954 if (die->type)
4955 return;
4956
4957 /* For now, we only support the C meaning of an unspecified type: void. */
4958
4959 attr = dwarf2_attr (die, DW_AT_name, cu);
4960 type = init_type (TYPE_CODE_VOID, 0, 0, attr ? DW_STRING (attr) : "",
4961 cu->objfile);
4962
4963 set_die_type (die, type, cu);
4964}
a02abb62 4965
c906108c
SS
4966/* Read a whole compilation unit into a linked list of dies. */
4967
f9aca02d 4968static struct die_info *
fe1b8b76 4969read_comp_unit (gdb_byte *info_ptr, bfd *abfd, struct dwarf2_cu *cu)
c906108c 4970{
e7c27a73 4971 return read_die_and_children (info_ptr, abfd, cu, &info_ptr, NULL);
639d11d3
DC
4972}
4973
4974/* Read a single die and all its descendents. Set the die's sibling
4975 field to NULL; set other fields in the die correctly, and set all
4976 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
4977 location of the info_ptr after reading all of those dies. PARENT
4978 is the parent of the die in question. */
4979
4980static struct die_info *
fe1b8b76 4981read_die_and_children (gdb_byte *info_ptr, bfd *abfd,
e7c27a73 4982 struct dwarf2_cu *cu,
fe1b8b76 4983 gdb_byte **new_info_ptr,
639d11d3
DC
4984 struct die_info *parent)
4985{
4986 struct die_info *die;
fe1b8b76 4987 gdb_byte *cur_ptr;
639d11d3
DC
4988 int has_children;
4989
e7c27a73 4990 cur_ptr = read_full_die (&die, abfd, info_ptr, cu, &has_children);
10b3939b 4991 store_in_ref_table (die->offset, die, cu);
639d11d3
DC
4992
4993 if (has_children)
4994 {
e7c27a73 4995 die->child = read_die_and_siblings (cur_ptr, abfd, cu,
639d11d3
DC
4996 new_info_ptr, die);
4997 }
4998 else
4999 {
5000 die->child = NULL;
5001 *new_info_ptr = cur_ptr;
5002 }
5003
5004 die->sibling = NULL;
5005 die->parent = parent;
5006 return die;
5007}
5008
5009/* Read a die, all of its descendents, and all of its siblings; set
5010 all of the fields of all of the dies correctly. Arguments are as
5011 in read_die_and_children. */
5012
5013static struct die_info *
fe1b8b76 5014read_die_and_siblings (gdb_byte *info_ptr, bfd *abfd,
e7c27a73 5015 struct dwarf2_cu *cu,
fe1b8b76 5016 gdb_byte **new_info_ptr,
639d11d3
DC
5017 struct die_info *parent)
5018{
5019 struct die_info *first_die, *last_sibling;
fe1b8b76 5020 gdb_byte *cur_ptr;
639d11d3 5021
c906108c 5022 cur_ptr = info_ptr;
639d11d3
DC
5023 first_die = last_sibling = NULL;
5024
5025 while (1)
c906108c 5026 {
639d11d3 5027 struct die_info *die
e7c27a73 5028 = read_die_and_children (cur_ptr, abfd, cu, &cur_ptr, parent);
639d11d3
DC
5029
5030 if (!first_die)
c906108c 5031 {
639d11d3 5032 first_die = die;
c906108c 5033 }
639d11d3 5034 else
c906108c 5035 {
639d11d3 5036 last_sibling->sibling = die;
c906108c
SS
5037 }
5038
639d11d3 5039 if (die->tag == 0)
c906108c 5040 {
639d11d3
DC
5041 *new_info_ptr = cur_ptr;
5042 return first_die;
c906108c
SS
5043 }
5044 else
5045 {
639d11d3 5046 last_sibling = die;
c906108c
SS
5047 }
5048 }
c906108c
SS
5049}
5050
5051/* Free a linked list of dies. */
5052
5053static void
fba45db2 5054free_die_list (struct die_info *dies)
c906108c
SS
5055{
5056 struct die_info *die, *next;
5057
5058 die = dies;
5059 while (die)
5060 {
639d11d3
DC
5061 if (die->child != NULL)
5062 free_die_list (die->child);
5063 next = die->sibling;
b8c9b27d
KB
5064 xfree (die->attrs);
5065 xfree (die);
c906108c
SS
5066 die = next;
5067 }
5068}
5069
5070/* Read the contents of the section at OFFSET and of size SIZE from the
8b92e4d5 5071 object file specified by OBJFILE into the objfile_obstack and return it. */
c906108c 5072
fe1b8b76 5073gdb_byte *
188dd5d6 5074dwarf2_read_section (struct objfile *objfile, asection *sectp)
c906108c
SS
5075{
5076 bfd *abfd = objfile->obfd;
fe1b8b76 5077 gdb_byte *buf, *retbuf;
2c500098 5078 bfd_size_type size = bfd_get_section_size (sectp);
c906108c
SS
5079
5080 if (size == 0)
5081 return NULL;
5082
fe1b8b76
JB
5083 buf = obstack_alloc (&objfile->objfile_obstack, size);
5084 retbuf = symfile_relocate_debug_section (abfd, sectp, buf);
086df311
DJ
5085 if (retbuf != NULL)
5086 return retbuf;
5087
188dd5d6
DJ
5088 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
5089 || bfd_bread (buf, size, abfd) != size)
8a3fe4f8 5090 error (_("Dwarf Error: Can't read DWARF data from '%s'"),
188dd5d6
DJ
5091 bfd_get_filename (abfd));
5092
c906108c
SS
5093 return buf;
5094}
5095
5096/* In DWARF version 2, the description of the debugging information is
5097 stored in a separate .debug_abbrev section. Before we read any
5098 dies from a section we read in all abbreviations and install them
72bf9492
DJ
5099 in a hash table. This function also sets flags in CU describing
5100 the data found in the abbrev table. */
c906108c
SS
5101
5102static void
e7c27a73 5103dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu)
c906108c 5104{
e7c27a73 5105 struct comp_unit_head *cu_header = &cu->header;
fe1b8b76 5106 gdb_byte *abbrev_ptr;
c906108c
SS
5107 struct abbrev_info *cur_abbrev;
5108 unsigned int abbrev_number, bytes_read, abbrev_name;
5109 unsigned int abbrev_form, hash_number;
f3dd6933
DJ
5110 struct attr_abbrev *cur_attrs;
5111 unsigned int allocated_attrs;
c906108c 5112
57349743 5113 /* Initialize dwarf2 abbrevs */
f3dd6933
DJ
5114 obstack_init (&cu->abbrev_obstack);
5115 cu->dwarf2_abbrevs = obstack_alloc (&cu->abbrev_obstack,
5116 (ABBREV_HASH_SIZE
5117 * sizeof (struct abbrev_info *)));
5118 memset (cu->dwarf2_abbrevs, 0,
5119 ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
c906108c 5120
6502dd73 5121 abbrev_ptr = dwarf2_per_objfile->abbrev_buffer + cu_header->abbrev_offset;
c906108c
SS
5122 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5123 abbrev_ptr += bytes_read;
5124
f3dd6933
DJ
5125 allocated_attrs = ATTR_ALLOC_CHUNK;
5126 cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
5127
c906108c
SS
5128 /* loop until we reach an abbrev number of 0 */
5129 while (abbrev_number)
5130 {
f3dd6933 5131 cur_abbrev = dwarf_alloc_abbrev (cu);
c906108c
SS
5132
5133 /* read in abbrev header */
5134 cur_abbrev->number = abbrev_number;
5135 cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5136 abbrev_ptr += bytes_read;
5137 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
5138 abbrev_ptr += 1;
5139
72bf9492
DJ
5140 if (cur_abbrev->tag == DW_TAG_namespace)
5141 cu->has_namespace_info = 1;
5142
c906108c
SS
5143 /* now read in declarations */
5144 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5145 abbrev_ptr += bytes_read;
5146 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5147 abbrev_ptr += bytes_read;
5148 while (abbrev_name)
5149 {
f3dd6933 5150 if (cur_abbrev->num_attrs == allocated_attrs)
c906108c 5151 {
f3dd6933
DJ
5152 allocated_attrs += ATTR_ALLOC_CHUNK;
5153 cur_attrs
5154 = xrealloc (cur_attrs, (allocated_attrs
5155 * sizeof (struct attr_abbrev)));
c906108c 5156 }
ae038cb0
DJ
5157
5158 /* Record whether this compilation unit might have
5159 inter-compilation-unit references. If we don't know what form
5160 this attribute will have, then it might potentially be a
5161 DW_FORM_ref_addr, so we conservatively expect inter-CU
5162 references. */
5163
5164 if (abbrev_form == DW_FORM_ref_addr
5165 || abbrev_form == DW_FORM_indirect)
5166 cu->has_form_ref_addr = 1;
5167
f3dd6933
DJ
5168 cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
5169 cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
c906108c
SS
5170 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5171 abbrev_ptr += bytes_read;
5172 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5173 abbrev_ptr += bytes_read;
5174 }
5175
f3dd6933
DJ
5176 cur_abbrev->attrs = obstack_alloc (&cu->abbrev_obstack,
5177 (cur_abbrev->num_attrs
5178 * sizeof (struct attr_abbrev)));
5179 memcpy (cur_abbrev->attrs, cur_attrs,
5180 cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
5181
c906108c 5182 hash_number = abbrev_number % ABBREV_HASH_SIZE;
f3dd6933
DJ
5183 cur_abbrev->next = cu->dwarf2_abbrevs[hash_number];
5184 cu->dwarf2_abbrevs[hash_number] = cur_abbrev;
c906108c
SS
5185
5186 /* Get next abbreviation.
5187 Under Irix6 the abbreviations for a compilation unit are not
c5aa993b
JM
5188 always properly terminated with an abbrev number of 0.
5189 Exit loop if we encounter an abbreviation which we have
5190 already read (which means we are about to read the abbreviations
5191 for the next compile unit) or if the end of the abbreviation
5192 table is reached. */
6502dd73
DJ
5193 if ((unsigned int) (abbrev_ptr - dwarf2_per_objfile->abbrev_buffer)
5194 >= dwarf2_per_objfile->abbrev_size)
c906108c
SS
5195 break;
5196 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
5197 abbrev_ptr += bytes_read;
e7c27a73 5198 if (dwarf2_lookup_abbrev (abbrev_number, cu) != NULL)
c906108c
SS
5199 break;
5200 }
f3dd6933
DJ
5201
5202 xfree (cur_attrs);
c906108c
SS
5203}
5204
f3dd6933 5205/* Release the memory used by the abbrev table for a compilation unit. */
c906108c 5206
c906108c 5207static void
f3dd6933 5208dwarf2_free_abbrev_table (void *ptr_to_cu)
c906108c 5209{
f3dd6933 5210 struct dwarf2_cu *cu = ptr_to_cu;
c906108c 5211
f3dd6933
DJ
5212 obstack_free (&cu->abbrev_obstack, NULL);
5213 cu->dwarf2_abbrevs = NULL;
c906108c
SS
5214}
5215
5216/* Lookup an abbrev_info structure in the abbrev hash table. */
5217
5218static struct abbrev_info *
e7c27a73 5219dwarf2_lookup_abbrev (unsigned int number, struct dwarf2_cu *cu)
c906108c
SS
5220{
5221 unsigned int hash_number;
5222 struct abbrev_info *abbrev;
5223
5224 hash_number = number % ABBREV_HASH_SIZE;
f3dd6933 5225 abbrev = cu->dwarf2_abbrevs[hash_number];
c906108c
SS
5226
5227 while (abbrev)
5228 {
5229 if (abbrev->number == number)
5230 return abbrev;
5231 else
5232 abbrev = abbrev->next;
5233 }
5234 return NULL;
5235}
5236
72bf9492
DJ
5237/* Returns nonzero if TAG represents a type that we might generate a partial
5238 symbol for. */
5239
5240static int
5241is_type_tag_for_partial (int tag)
5242{
5243 switch (tag)
5244 {
5245#if 0
5246 /* Some types that would be reasonable to generate partial symbols for,
5247 that we don't at present. */
5248 case DW_TAG_array_type:
5249 case DW_TAG_file_type:
5250 case DW_TAG_ptr_to_member_type:
5251 case DW_TAG_set_type:
5252 case DW_TAG_string_type:
5253 case DW_TAG_subroutine_type:
5254#endif
5255 case DW_TAG_base_type:
5256 case DW_TAG_class_type:
5257 case DW_TAG_enumeration_type:
5258 case DW_TAG_structure_type:
5259 case DW_TAG_subrange_type:
5260 case DW_TAG_typedef:
5261 case DW_TAG_union_type:
5262 return 1;
5263 default:
5264 return 0;
5265 }
5266}
5267
5268/* Load all DIEs that are interesting for partial symbols into memory. */
5269
5270static struct partial_die_info *
fe1b8b76 5271load_partial_dies (bfd *abfd, gdb_byte *info_ptr, int building_psymtab,
72bf9492
DJ
5272 struct dwarf2_cu *cu)
5273{
5274 struct partial_die_info *part_die;
5275 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
5276 struct abbrev_info *abbrev;
5277 unsigned int bytes_read;
5afb4e99 5278 unsigned int load_all = 0;
72bf9492
DJ
5279
5280 int nesting_level = 1;
5281
5282 parent_die = NULL;
5283 last_die = NULL;
5284
5afb4e99
DJ
5285 if (cu->per_cu && cu->per_cu->load_all_dies)
5286 load_all = 1;
5287
72bf9492
DJ
5288 cu->partial_dies
5289 = htab_create_alloc_ex (cu->header.length / 12,
5290 partial_die_hash,
5291 partial_die_eq,
5292 NULL,
5293 &cu->comp_unit_obstack,
5294 hashtab_obstack_allocate,
5295 dummy_obstack_deallocate);
5296
5297 part_die = obstack_alloc (&cu->comp_unit_obstack,
5298 sizeof (struct partial_die_info));
5299
5300 while (1)
5301 {
5302 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
5303
5304 /* A NULL abbrev means the end of a series of children. */
5305 if (abbrev == NULL)
5306 {
5307 if (--nesting_level == 0)
5308 {
5309 /* PART_DIE was probably the last thing allocated on the
5310 comp_unit_obstack, so we could call obstack_free
5311 here. We don't do that because the waste is small,
5312 and will be cleaned up when we're done with this
5313 compilation unit. This way, we're also more robust
5314 against other users of the comp_unit_obstack. */
5315 return first_die;
5316 }
5317 info_ptr += bytes_read;
5318 last_die = parent_die;
5319 parent_die = parent_die->die_parent;
5320 continue;
5321 }
5322
5afb4e99
DJ
5323 /* Check whether this DIE is interesting enough to save. Normally
5324 we would not be interested in members here, but there may be
5325 later variables referencing them via DW_AT_specification (for
5326 static members). */
5327 if (!load_all
5328 && !is_type_tag_for_partial (abbrev->tag)
72bf9492
DJ
5329 && abbrev->tag != DW_TAG_enumerator
5330 && abbrev->tag != DW_TAG_subprogram
5331 && abbrev->tag != DW_TAG_variable
5afb4e99
DJ
5332 && abbrev->tag != DW_TAG_namespace
5333 && abbrev->tag != DW_TAG_member)
72bf9492
DJ
5334 {
5335 /* Otherwise we skip to the next sibling, if any. */
5336 info_ptr = skip_one_die (info_ptr + bytes_read, abbrev, cu);
5337 continue;
5338 }
5339
5340 info_ptr = read_partial_die (part_die, abbrev, bytes_read,
5341 abfd, info_ptr, cu);
5342
5343 /* This two-pass algorithm for processing partial symbols has a
5344 high cost in cache pressure. Thus, handle some simple cases
5345 here which cover the majority of C partial symbols. DIEs
5346 which neither have specification tags in them, nor could have
5347 specification tags elsewhere pointing at them, can simply be
5348 processed and discarded.
5349
5350 This segment is also optional; scan_partial_symbols and
5351 add_partial_symbol will handle these DIEs if we chain
5352 them in normally. When compilers which do not emit large
5353 quantities of duplicate debug information are more common,
5354 this code can probably be removed. */
5355
5356 /* Any complete simple types at the top level (pretty much all
5357 of them, for a language without namespaces), can be processed
5358 directly. */
5359 if (parent_die == NULL
5360 && part_die->has_specification == 0
5361 && part_die->is_declaration == 0
5362 && (part_die->tag == DW_TAG_typedef
5363 || part_die->tag == DW_TAG_base_type
5364 || part_die->tag == DW_TAG_subrange_type))
5365 {
5366 if (building_psymtab && part_die->name != NULL)
5367 add_psymbol_to_list (part_die->name, strlen (part_die->name),
5368 VAR_DOMAIN, LOC_TYPEDEF,
5369 &cu->objfile->static_psymbols,
5370 0, (CORE_ADDR) 0, cu->language, cu->objfile);
5371 info_ptr = locate_pdi_sibling (part_die, info_ptr, abfd, cu);
5372 continue;
5373 }
5374
5375 /* If we're at the second level, and we're an enumerator, and
5376 our parent has no specification (meaning possibly lives in a
5377 namespace elsewhere), then we can add the partial symbol now
5378 instead of queueing it. */
5379 if (part_die->tag == DW_TAG_enumerator
5380 && parent_die != NULL
5381 && parent_die->die_parent == NULL
5382 && parent_die->tag == DW_TAG_enumeration_type
5383 && parent_die->has_specification == 0)
5384 {
5385 if (part_die->name == NULL)
e2e0b3e5 5386 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
72bf9492
DJ
5387 else if (building_psymtab)
5388 add_psymbol_to_list (part_die->name, strlen (part_die->name),
5389 VAR_DOMAIN, LOC_CONST,
987504bb
JJ
5390 (cu->language == language_cplus
5391 || cu->language == language_java)
72bf9492
DJ
5392 ? &cu->objfile->global_psymbols
5393 : &cu->objfile->static_psymbols,
5394 0, (CORE_ADDR) 0, cu->language, cu->objfile);
5395
5396 info_ptr = locate_pdi_sibling (part_die, info_ptr, abfd, cu);
5397 continue;
5398 }
5399
5400 /* We'll save this DIE so link it in. */
5401 part_die->die_parent = parent_die;
5402 part_die->die_sibling = NULL;
5403 part_die->die_child = NULL;
5404
5405 if (last_die && last_die == parent_die)
5406 last_die->die_child = part_die;
5407 else if (last_die)
5408 last_die->die_sibling = part_die;
5409
5410 last_die = part_die;
5411
5412 if (first_die == NULL)
5413 first_die = part_die;
5414
5415 /* Maybe add the DIE to the hash table. Not all DIEs that we
5416 find interesting need to be in the hash table, because we
5417 also have the parent/sibling/child chains; only those that we
5418 might refer to by offset later during partial symbol reading.
5419
5420 For now this means things that might have be the target of a
5421 DW_AT_specification, DW_AT_abstract_origin, or
5422 DW_AT_extension. DW_AT_extension will refer only to
5423 namespaces; DW_AT_abstract_origin refers to functions (and
5424 many things under the function DIE, but we do not recurse
5425 into function DIEs during partial symbol reading) and
5426 possibly variables as well; DW_AT_specification refers to
5427 declarations. Declarations ought to have the DW_AT_declaration
5428 flag. It happens that GCC forgets to put it in sometimes, but
5429 only for functions, not for types.
5430
5431 Adding more things than necessary to the hash table is harmless
5432 except for the performance cost. Adding too few will result in
5afb4e99
DJ
5433 wasted time in find_partial_die, when we reread the compilation
5434 unit with load_all_dies set. */
72bf9492 5435
5afb4e99
DJ
5436 if (load_all
5437 || abbrev->tag == DW_TAG_subprogram
72bf9492
DJ
5438 || abbrev->tag == DW_TAG_variable
5439 || abbrev->tag == DW_TAG_namespace
5440 || part_die->is_declaration)
5441 {
5442 void **slot;
5443
5444 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
5445 part_die->offset, INSERT);
5446 *slot = part_die;
5447 }
5448
5449 part_die = obstack_alloc (&cu->comp_unit_obstack,
5450 sizeof (struct partial_die_info));
5451
5452 /* For some DIEs we want to follow their children (if any). For C
5453 we have no reason to follow the children of structures; for other
5454 languages we have to, both so that we can get at method physnames
5455 to infer fully qualified class names, and for DW_AT_specification. */
5456 if (last_die->has_children
5afb4e99
DJ
5457 && (load_all
5458 || last_die->tag == DW_TAG_namespace
72bf9492
DJ
5459 || last_die->tag == DW_TAG_enumeration_type
5460 || (cu->language != language_c
5461 && (last_die->tag == DW_TAG_class_type
5462 || last_die->tag == DW_TAG_structure_type
5463 || last_die->tag == DW_TAG_union_type))))
5464 {
5465 nesting_level++;
5466 parent_die = last_die;
5467 continue;
5468 }
5469
5470 /* Otherwise we skip to the next sibling, if any. */
5471 info_ptr = locate_pdi_sibling (last_die, info_ptr, abfd, cu);
5472
5473 /* Back to the top, do it again. */
5474 }
5475}
5476
c906108c
SS
5477/* Read a minimal amount of information into the minimal die structure. */
5478
fe1b8b76 5479static gdb_byte *
72bf9492
DJ
5480read_partial_die (struct partial_die_info *part_die,
5481 struct abbrev_info *abbrev,
5482 unsigned int abbrev_len, bfd *abfd,
fe1b8b76 5483 gdb_byte *info_ptr, struct dwarf2_cu *cu)
c906108c 5484{
72bf9492 5485 unsigned int bytes_read, i;
c906108c 5486 struct attribute attr;
c5aa993b 5487 int has_low_pc_attr = 0;
c906108c
SS
5488 int has_high_pc_attr = 0;
5489
72bf9492 5490 memset (part_die, 0, sizeof (struct partial_die_info));
c906108c 5491
6502dd73 5492 part_die->offset = info_ptr - dwarf2_per_objfile->info_buffer;
72bf9492
DJ
5493
5494 info_ptr += abbrev_len;
5495
5496 if (abbrev == NULL)
5497 return info_ptr;
5498
c906108c
SS
5499 part_die->tag = abbrev->tag;
5500 part_die->has_children = abbrev->has_children;
c906108c
SS
5501
5502 for (i = 0; i < abbrev->num_attrs; ++i)
5503 {
e7c27a73 5504 info_ptr = read_attribute (&attr, &abbrev->attrs[i], abfd, info_ptr, cu);
c906108c
SS
5505
5506 /* Store the data if it is of an attribute we want to keep in a
c5aa993b 5507 partial symbol table. */
c906108c
SS
5508 switch (attr.name)
5509 {
5510 case DW_AT_name:
5511
5512 /* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */
5513 if (part_die->name == NULL)
5514 part_die->name = DW_STRING (&attr);
5515 break;
57c22c6c
BR
5516 case DW_AT_comp_dir:
5517 if (part_die->dirname == NULL)
5518 part_die->dirname = DW_STRING (&attr);
5519 break;
c906108c
SS
5520 case DW_AT_MIPS_linkage_name:
5521 part_die->name = DW_STRING (&attr);
5522 break;
5523 case DW_AT_low_pc:
5524 has_low_pc_attr = 1;
5525 part_die->lowpc = DW_ADDR (&attr);
5526 break;
5527 case DW_AT_high_pc:
5528 has_high_pc_attr = 1;
5529 part_die->highpc = DW_ADDR (&attr);
5530 break;
5531 case DW_AT_location:
8e19ed76
PS
5532 /* Support the .debug_loc offsets */
5533 if (attr_form_is_block (&attr))
5534 {
5535 part_die->locdesc = DW_BLOCK (&attr);
5536 }
5537 else if (attr.form == DW_FORM_data4 || attr.form == DW_FORM_data8)
5538 {
4d3c2250 5539 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
5540 }
5541 else
5542 {
4d3c2250
KB
5543 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
5544 "partial symbol information");
8e19ed76 5545 }
c906108c
SS
5546 break;
5547 case DW_AT_language:
5548 part_die->language = DW_UNSND (&attr);
5549 break;
5550 case DW_AT_external:
5551 part_die->is_external = DW_UNSND (&attr);
5552 break;
5553 case DW_AT_declaration:
5554 part_die->is_declaration = DW_UNSND (&attr);
5555 break;
5556 case DW_AT_type:
5557 part_die->has_type = 1;
5558 break;
5559 case DW_AT_abstract_origin:
5560 case DW_AT_specification:
72bf9492
DJ
5561 case DW_AT_extension:
5562 part_die->has_specification = 1;
5563 part_die->spec_offset = dwarf2_get_ref_die_offset (&attr, cu);
c906108c
SS
5564 break;
5565 case DW_AT_sibling:
5566 /* Ignore absolute siblings, they might point outside of
5567 the current compile unit. */
5568 if (attr.form == DW_FORM_ref_addr)
e2e0b3e5 5569 complaint (&symfile_complaints, _("ignoring absolute DW_AT_sibling"));
c906108c 5570 else
6502dd73
DJ
5571 part_die->sibling = dwarf2_per_objfile->info_buffer
5572 + dwarf2_get_ref_die_offset (&attr, cu);
c906108c 5573 break;
aaa75496
JB
5574 case DW_AT_stmt_list:
5575 part_die->has_stmt_list = 1;
5576 part_die->line_offset = DW_UNSND (&attr);
5577 break;
c906108c
SS
5578 default:
5579 break;
5580 }
5581 }
5582
c906108c
SS
5583 /* When using the GNU linker, .gnu.linkonce. sections are used to
5584 eliminate duplicate copies of functions and vtables and such.
5585 The linker will arbitrarily choose one and discard the others.
5586 The AT_*_pc values for such functions refer to local labels in
5587 these sections. If the section from that file was discarded, the
5588 labels are not in the output, so the relocs get a value of 0.
5589 If this is a discarded function, mark the pc bounds as invalid,
5590 so that GDB will ignore it. */
5591 if (has_low_pc_attr && has_high_pc_attr
5592 && part_die->lowpc < part_die->highpc
5593 && (part_die->lowpc != 0
72dca2f5 5594 || dwarf2_per_objfile->has_section_at_zero))
0b010bcc 5595 part_die->has_pc_info = 1;
c906108c
SS
5596 return info_ptr;
5597}
5598
72bf9492
DJ
5599/* Find a cached partial DIE at OFFSET in CU. */
5600
5601static struct partial_die_info *
5602find_partial_die_in_comp_unit (unsigned long offset, struct dwarf2_cu *cu)
5603{
5604 struct partial_die_info *lookup_die = NULL;
5605 struct partial_die_info part_die;
5606
5607 part_die.offset = offset;
5608 lookup_die = htab_find_with_hash (cu->partial_dies, &part_die, offset);
5609
72bf9492
DJ
5610 return lookup_die;
5611}
5612
5613/* Find a partial DIE at OFFSET, which may or may not be in CU. */
5614
5615static struct partial_die_info *
10b3939b 5616find_partial_die (unsigned long offset, struct dwarf2_cu *cu)
72bf9492 5617{
5afb4e99
DJ
5618 struct dwarf2_per_cu_data *per_cu = NULL;
5619 struct partial_die_info *pd = NULL;
72bf9492
DJ
5620
5621 if (offset >= cu->header.offset
5622 && offset < cu->header.offset + cu->header.length)
5afb4e99
DJ
5623 {
5624 pd = find_partial_die_in_comp_unit (offset, cu);
5625 if (pd != NULL)
5626 return pd;
5627 }
72bf9492 5628
ae038cb0
DJ
5629 per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile);
5630
ae038cb0
DJ
5631 if (per_cu->cu == NULL)
5632 {
5633 load_comp_unit (per_cu, cu->objfile);
5634 per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
5635 dwarf2_per_objfile->read_in_chain = per_cu;
5636 }
5637
5638 per_cu->cu->last_used = 0;
5afb4e99
DJ
5639 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
5640
5641 if (pd == NULL && per_cu->load_all_dies == 0)
5642 {
5643 struct cleanup *back_to;
5644 struct partial_die_info comp_unit_die;
5645 struct abbrev_info *abbrev;
5646 unsigned int bytes_read;
5647 char *info_ptr;
5648
5649 per_cu->load_all_dies = 1;
5650
5651 /* Re-read the DIEs. */
5652 back_to = make_cleanup (null_cleanup, 0);
5653 if (per_cu->cu->dwarf2_abbrevs == NULL)
5654 {
5655 dwarf2_read_abbrevs (per_cu->cu->objfile->obfd, per_cu->cu);
5656 back_to = make_cleanup (dwarf2_free_abbrev_table, per_cu->cu);
5657 }
5658 info_ptr = per_cu->cu->header.first_die_ptr;
5659 abbrev = peek_die_abbrev (info_ptr, &bytes_read, per_cu->cu);
5660 info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read,
5661 per_cu->cu->objfile->obfd, info_ptr,
5662 per_cu->cu);
5663 if (comp_unit_die.has_children)
5664 load_partial_dies (per_cu->cu->objfile->obfd, info_ptr, 0, per_cu->cu);
5665 do_cleanups (back_to);
5666
5667 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
5668 }
5669
5670 if (pd == NULL)
5671 internal_error (__FILE__, __LINE__,
5672 _("could not find partial DIE 0x%lx in cache [from module %s]\n"),
5673 offset, bfd_get_filename (cu->objfile->obfd));
5674 return pd;
72bf9492
DJ
5675}
5676
5677/* Adjust PART_DIE before generating a symbol for it. This function
5678 may set the is_external flag or change the DIE's name. */
5679
5680static void
5681fixup_partial_die (struct partial_die_info *part_die,
5682 struct dwarf2_cu *cu)
5683{
5684 /* If we found a reference attribute and the DIE has no name, try
5685 to find a name in the referred to DIE. */
5686
5687 if (part_die->name == NULL && part_die->has_specification)
5688 {
5689 struct partial_die_info *spec_die;
72bf9492 5690
10b3939b 5691 spec_die = find_partial_die (part_die->spec_offset, cu);
72bf9492 5692
10b3939b 5693 fixup_partial_die (spec_die, cu);
72bf9492
DJ
5694
5695 if (spec_die->name)
5696 {
5697 part_die->name = spec_die->name;
5698
5699 /* Copy DW_AT_external attribute if it is set. */
5700 if (spec_die->is_external)
5701 part_die->is_external = spec_die->is_external;
5702 }
5703 }
5704
5705 /* Set default names for some unnamed DIEs. */
5706 if (part_die->name == NULL && (part_die->tag == DW_TAG_structure_type
5707 || part_die->tag == DW_TAG_class_type))
5708 part_die->name = "(anonymous class)";
5709
5710 if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
5711 part_die->name = "(anonymous namespace)";
5712
5713 if (part_die->tag == DW_TAG_structure_type
5714 || part_die->tag == DW_TAG_class_type
5715 || part_die->tag == DW_TAG_union_type)
5716 guess_structure_name (part_die, cu);
5717}
5718
639d11d3
DC
5719/* Read the die from the .debug_info section buffer. Set DIEP to
5720 point to a newly allocated die with its information, except for its
5721 child, sibling, and parent fields. Set HAS_CHILDREN to tell
5722 whether the die has children or not. */
c906108c 5723
fe1b8b76
JB
5724static gdb_byte *
5725read_full_die (struct die_info **diep, bfd *abfd, gdb_byte *info_ptr,
e7c27a73 5726 struct dwarf2_cu *cu, int *has_children)
c906108c
SS
5727{
5728 unsigned int abbrev_number, bytes_read, i, offset;
5729 struct abbrev_info *abbrev;
5730 struct die_info *die;
5731
6502dd73 5732 offset = info_ptr - dwarf2_per_objfile->info_buffer;
c906108c
SS
5733 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
5734 info_ptr += bytes_read;
5735 if (!abbrev_number)
5736 {
5737 die = dwarf_alloc_die ();
5738 die->tag = 0;
5739 die->abbrev = abbrev_number;
5740 die->type = NULL;
5741 *diep = die;
639d11d3 5742 *has_children = 0;
c906108c
SS
5743 return info_ptr;
5744 }
5745
e7c27a73 5746 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu);
c906108c
SS
5747 if (!abbrev)
5748 {
8a3fe4f8 5749 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
72bf9492 5750 abbrev_number,
639d11d3 5751 bfd_get_filename (abfd));
c906108c
SS
5752 }
5753 die = dwarf_alloc_die ();
5754 die->offset = offset;
5755 die->tag = abbrev->tag;
c906108c
SS
5756 die->abbrev = abbrev_number;
5757 die->type = NULL;
5758
5759 die->num_attrs = abbrev->num_attrs;
5760 die->attrs = (struct attribute *)
5761 xmalloc (die->num_attrs * sizeof (struct attribute));
5762
5763 for (i = 0; i < abbrev->num_attrs; ++i)
5764 {
5765 info_ptr = read_attribute (&die->attrs[i], &abbrev->attrs[i],
e7c27a73 5766 abfd, info_ptr, cu);
10b3939b
DJ
5767
5768 /* If this attribute is an absolute reference to a different
5769 compilation unit, make sure that compilation unit is loaded
5770 also. */
5771 if (die->attrs[i].form == DW_FORM_ref_addr
5772 && (DW_ADDR (&die->attrs[i]) < cu->header.offset
5773 || (DW_ADDR (&die->attrs[i])
5774 >= cu->header.offset + cu->header.length)))
5775 {
5776 struct dwarf2_per_cu_data *per_cu;
5777 per_cu = dwarf2_find_containing_comp_unit (DW_ADDR (&die->attrs[i]),
5778 cu->objfile);
5779
5780 /* Mark the dependence relation so that we don't flush PER_CU
5781 too early. */
5782 dwarf2_add_dependence (cu, per_cu);
5783
5784 /* If it's already on the queue, we have nothing to do. */
5785 if (per_cu->queued)
5786 continue;
5787
5788 /* If the compilation unit is already loaded, just mark it as
5789 used. */
5790 if (per_cu->cu != NULL)
5791 {
5792 per_cu->cu->last_used = 0;
5793 continue;
5794 }
5795
5796 /* Add it to the queue. */
5797 queue_comp_unit (per_cu);
5798 }
c906108c
SS
5799 }
5800
5801 *diep = die;
639d11d3 5802 *has_children = abbrev->has_children;
c906108c
SS
5803 return info_ptr;
5804}
5805
a8329558 5806/* Read an attribute value described by an attribute form. */
c906108c 5807
fe1b8b76 5808static gdb_byte *
a8329558 5809read_attribute_value (struct attribute *attr, unsigned form,
fe1b8b76 5810 bfd *abfd, gdb_byte *info_ptr,
e7c27a73 5811 struct dwarf2_cu *cu)
c906108c 5812{
e7c27a73 5813 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
5814 unsigned int bytes_read;
5815 struct dwarf_block *blk;
5816
a8329558
KW
5817 attr->form = form;
5818 switch (form)
c906108c
SS
5819 {
5820 case DW_FORM_addr:
5821 case DW_FORM_ref_addr:
e7c27a73 5822 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
107d2387 5823 info_ptr += bytes_read;
c906108c
SS
5824 break;
5825 case DW_FORM_block2:
7b5a2f43 5826 blk = dwarf_alloc_block (cu);
c906108c
SS
5827 blk->size = read_2_bytes (abfd, info_ptr);
5828 info_ptr += 2;
5829 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
5830 info_ptr += blk->size;
5831 DW_BLOCK (attr) = blk;
5832 break;
5833 case DW_FORM_block4:
7b5a2f43 5834 blk = dwarf_alloc_block (cu);
c906108c
SS
5835 blk->size = read_4_bytes (abfd, info_ptr);
5836 info_ptr += 4;
5837 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
5838 info_ptr += blk->size;
5839 DW_BLOCK (attr) = blk;
5840 break;
5841 case DW_FORM_data2:
5842 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
5843 info_ptr += 2;
5844 break;
5845 case DW_FORM_data4:
5846 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
5847 info_ptr += 4;
5848 break;
5849 case DW_FORM_data8:
5850 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
5851 info_ptr += 8;
5852 break;
5853 case DW_FORM_string:
5854 DW_STRING (attr) = read_string (abfd, info_ptr, &bytes_read);
5855 info_ptr += bytes_read;
5856 break;
4bdf3d34
JJ
5857 case DW_FORM_strp:
5858 DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
5859 &bytes_read);
5860 info_ptr += bytes_read;
5861 break;
c906108c 5862 case DW_FORM_block:
7b5a2f43 5863 blk = dwarf_alloc_block (cu);
c906108c
SS
5864 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
5865 info_ptr += bytes_read;
5866 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
5867 info_ptr += blk->size;
5868 DW_BLOCK (attr) = blk;
5869 break;
5870 case DW_FORM_block1:
7b5a2f43 5871 blk = dwarf_alloc_block (cu);
c906108c
SS
5872 blk->size = read_1_byte (abfd, info_ptr);
5873 info_ptr += 1;
5874 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
5875 info_ptr += blk->size;
5876 DW_BLOCK (attr) = blk;
5877 break;
5878 case DW_FORM_data1:
5879 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
5880 info_ptr += 1;
5881 break;
5882 case DW_FORM_flag:
5883 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
5884 info_ptr += 1;
5885 break;
5886 case DW_FORM_sdata:
5887 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
5888 info_ptr += bytes_read;
5889 break;
5890 case DW_FORM_udata:
5891 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
5892 info_ptr += bytes_read;
5893 break;
5894 case DW_FORM_ref1:
10b3939b 5895 DW_ADDR (attr) = cu->header.offset + read_1_byte (abfd, info_ptr);
c906108c
SS
5896 info_ptr += 1;
5897 break;
5898 case DW_FORM_ref2:
10b3939b 5899 DW_ADDR (attr) = cu->header.offset + read_2_bytes (abfd, info_ptr);
c906108c
SS
5900 info_ptr += 2;
5901 break;
5902 case DW_FORM_ref4:
10b3939b 5903 DW_ADDR (attr) = cu->header.offset + read_4_bytes (abfd, info_ptr);
c906108c
SS
5904 info_ptr += 4;
5905 break;
613e1657 5906 case DW_FORM_ref8:
10b3939b 5907 DW_ADDR (attr) = cu->header.offset + read_8_bytes (abfd, info_ptr);
613e1657
KB
5908 info_ptr += 8;
5909 break;
c906108c 5910 case DW_FORM_ref_udata:
10b3939b
DJ
5911 DW_ADDR (attr) = (cu->header.offset
5912 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
c906108c
SS
5913 info_ptr += bytes_read;
5914 break;
c906108c 5915 case DW_FORM_indirect:
a8329558
KW
5916 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
5917 info_ptr += bytes_read;
e7c27a73 5918 info_ptr = read_attribute_value (attr, form, abfd, info_ptr, cu);
a8329558 5919 break;
c906108c 5920 default:
8a3fe4f8 5921 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
659b0389
ML
5922 dwarf_form_name (form),
5923 bfd_get_filename (abfd));
c906108c
SS
5924 }
5925 return info_ptr;
5926}
5927
a8329558
KW
5928/* Read an attribute described by an abbreviated attribute. */
5929
fe1b8b76 5930static gdb_byte *
a8329558 5931read_attribute (struct attribute *attr, struct attr_abbrev *abbrev,
fe1b8b76 5932 bfd *abfd, gdb_byte *info_ptr, struct dwarf2_cu *cu)
a8329558
KW
5933{
5934 attr->name = abbrev->name;
e7c27a73 5935 return read_attribute_value (attr, abbrev->form, abfd, info_ptr, cu);
a8329558
KW
5936}
5937
c906108c
SS
5938/* read dwarf information from a buffer */
5939
5940static unsigned int
fe1b8b76 5941read_1_byte (bfd *abfd, gdb_byte *buf)
c906108c 5942{
fe1b8b76 5943 return bfd_get_8 (abfd, buf);
c906108c
SS
5944}
5945
5946static int
fe1b8b76 5947read_1_signed_byte (bfd *abfd, gdb_byte *buf)
c906108c 5948{
fe1b8b76 5949 return bfd_get_signed_8 (abfd, buf);
c906108c
SS
5950}
5951
5952static unsigned int
fe1b8b76 5953read_2_bytes (bfd *abfd, gdb_byte *buf)
c906108c 5954{
fe1b8b76 5955 return bfd_get_16 (abfd, buf);
c906108c
SS
5956}
5957
5958static int
fe1b8b76 5959read_2_signed_bytes (bfd *abfd, gdb_byte *buf)
c906108c 5960{
fe1b8b76 5961 return bfd_get_signed_16 (abfd, buf);
c906108c
SS
5962}
5963
5964static unsigned int
fe1b8b76 5965read_4_bytes (bfd *abfd, gdb_byte *buf)
c906108c 5966{
fe1b8b76 5967 return bfd_get_32 (abfd, buf);
c906108c
SS
5968}
5969
5970static int
fe1b8b76 5971read_4_signed_bytes (bfd *abfd, gdb_byte *buf)
c906108c 5972{
fe1b8b76 5973 return bfd_get_signed_32 (abfd, buf);
c906108c
SS
5974}
5975
ce5d95e1 5976static unsigned long
fe1b8b76 5977read_8_bytes (bfd *abfd, gdb_byte *buf)
c906108c 5978{
fe1b8b76 5979 return bfd_get_64 (abfd, buf);
c906108c
SS
5980}
5981
5982static CORE_ADDR
fe1b8b76 5983read_address (bfd *abfd, gdb_byte *buf, struct dwarf2_cu *cu,
891d2f0b 5984 unsigned int *bytes_read)
c906108c 5985{
e7c27a73 5986 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
5987 CORE_ADDR retval = 0;
5988
107d2387 5989 if (cu_header->signed_addr_p)
c906108c 5990 {
107d2387
AC
5991 switch (cu_header->addr_size)
5992 {
5993 case 2:
fe1b8b76 5994 retval = bfd_get_signed_16 (abfd, buf);
107d2387
AC
5995 break;
5996 case 4:
fe1b8b76 5997 retval = bfd_get_signed_32 (abfd, buf);
107d2387
AC
5998 break;
5999 case 8:
fe1b8b76 6000 retval = bfd_get_signed_64 (abfd, buf);
107d2387
AC
6001 break;
6002 default:
8e65ff28 6003 internal_error (__FILE__, __LINE__,
e2e0b3e5 6004 _("read_address: bad switch, signed [in module %s]"),
659b0389 6005 bfd_get_filename (abfd));
107d2387
AC
6006 }
6007 }
6008 else
6009 {
6010 switch (cu_header->addr_size)
6011 {
6012 case 2:
fe1b8b76 6013 retval = bfd_get_16 (abfd, buf);
107d2387
AC
6014 break;
6015 case 4:
fe1b8b76 6016 retval = bfd_get_32 (abfd, buf);
107d2387
AC
6017 break;
6018 case 8:
fe1b8b76 6019 retval = bfd_get_64 (abfd, buf);
107d2387
AC
6020 break;
6021 default:
8e65ff28 6022 internal_error (__FILE__, __LINE__,
e2e0b3e5 6023 _("read_address: bad switch, unsigned [in module %s]"),
659b0389 6024 bfd_get_filename (abfd));
107d2387 6025 }
c906108c 6026 }
64367e0a 6027
107d2387
AC
6028 *bytes_read = cu_header->addr_size;
6029 return retval;
c906108c
SS
6030}
6031
f7ef9339 6032/* Read the initial length from a section. The (draft) DWARF 3
613e1657
KB
6033 specification allows the initial length to take up either 4 bytes
6034 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
6035 bytes describe the length and all offsets will be 8 bytes in length
6036 instead of 4.
6037
f7ef9339
KB
6038 An older, non-standard 64-bit format is also handled by this
6039 function. The older format in question stores the initial length
6040 as an 8-byte quantity without an escape value. Lengths greater
6041 than 2^32 aren't very common which means that the initial 4 bytes
6042 is almost always zero. Since a length value of zero doesn't make
6043 sense for the 32-bit format, this initial zero can be considered to
6044 be an escape value which indicates the presence of the older 64-bit
6045 format. As written, the code can't detect (old format) lengths
917c78fc
MK
6046 greater than 4GB. If it becomes necessary to handle lengths
6047 somewhat larger than 4GB, we could allow other small values (such
6048 as the non-sensical values of 1, 2, and 3) to also be used as
6049 escape values indicating the presence of the old format.
f7ef9339 6050
917c78fc
MK
6051 The value returned via bytes_read should be used to increment the
6052 relevant pointer after calling read_initial_length().
613e1657
KB
6053
6054 As a side effect, this function sets the fields initial_length_size
6055 and offset_size in cu_header to the values appropriate for the
6056 length field. (The format of the initial length field determines
dd373385 6057 the width of file offsets to be fetched later with read_offset().)
613e1657
KB
6058
6059 [ Note: read_initial_length() and read_offset() are based on the
6060 document entitled "DWARF Debugging Information Format", revision
f7ef9339 6061 3, draft 8, dated November 19, 2001. This document was obtained
613e1657
KB
6062 from:
6063
f7ef9339 6064 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
613e1657
KB
6065
6066 This document is only a draft and is subject to change. (So beware.)
6067
f7ef9339 6068 Details regarding the older, non-standard 64-bit format were
917c78fc
MK
6069 determined empirically by examining 64-bit ELF files produced by
6070 the SGI toolchain on an IRIX 6.5 machine.
f7ef9339
KB
6071
6072 - Kevin, July 16, 2002
613e1657
KB
6073 ] */
6074
6075static LONGEST
fe1b8b76 6076read_initial_length (bfd *abfd, gdb_byte *buf, struct comp_unit_head *cu_header,
891d2f0b 6077 unsigned int *bytes_read)
613e1657 6078{
fe1b8b76 6079 LONGEST length = bfd_get_32 (abfd, buf);
613e1657 6080
dd373385 6081 if (length == 0xffffffff)
613e1657 6082 {
fe1b8b76 6083 length = bfd_get_64 (abfd, buf + 4);
613e1657 6084 *bytes_read = 12;
613e1657 6085 }
dd373385 6086 else if (length == 0)
f7ef9339 6087 {
dd373385 6088 /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
fe1b8b76 6089 length = bfd_get_64 (abfd, buf);
f7ef9339 6090 *bytes_read = 8;
f7ef9339 6091 }
613e1657
KB
6092 else
6093 {
6094 *bytes_read = 4;
613e1657
KB
6095 }
6096
dd373385
EZ
6097 if (cu_header)
6098 {
6099 gdb_assert (cu_header->initial_length_size == 0
6100 || cu_header->initial_length_size == 4
6101 || cu_header->initial_length_size == 8
6102 || cu_header->initial_length_size == 12);
6103
6104 if (cu_header->initial_length_size != 0
6105 && cu_header->initial_length_size != *bytes_read)
6106 complaint (&symfile_complaints,
6107 _("intermixed 32-bit and 64-bit DWARF sections"));
6108
6109 cu_header->initial_length_size = *bytes_read;
6110 cu_header->offset_size = (*bytes_read == 4) ? 4 : 8;
6111 }
6112
6113 return length;
613e1657
KB
6114}
6115
6116/* Read an offset from the data stream. The size of the offset is
917c78fc 6117 given by cu_header->offset_size. */
613e1657
KB
6118
6119static LONGEST
fe1b8b76 6120read_offset (bfd *abfd, gdb_byte *buf, const struct comp_unit_head *cu_header,
891d2f0b 6121 unsigned int *bytes_read)
613e1657
KB
6122{
6123 LONGEST retval = 0;
6124
6125 switch (cu_header->offset_size)
6126 {
6127 case 4:
fe1b8b76 6128 retval = bfd_get_32 (abfd, buf);
613e1657
KB
6129 *bytes_read = 4;
6130 break;
6131 case 8:
fe1b8b76 6132 retval = bfd_get_64 (abfd, buf);
613e1657
KB
6133 *bytes_read = 8;
6134 break;
6135 default:
8e65ff28 6136 internal_error (__FILE__, __LINE__,
e2e0b3e5 6137 _("read_offset: bad switch [in module %s]"),
659b0389 6138 bfd_get_filename (abfd));
613e1657
KB
6139 }
6140
917c78fc 6141 return retval;
613e1657
KB
6142}
6143
fe1b8b76
JB
6144static gdb_byte *
6145read_n_bytes (bfd *abfd, gdb_byte *buf, unsigned int size)
c906108c
SS
6146{
6147 /* If the size of a host char is 8 bits, we can return a pointer
6148 to the buffer, otherwise we have to copy the data to a buffer
6149 allocated on the temporary obstack. */
4bdf3d34 6150 gdb_assert (HOST_CHAR_BIT == 8);
c906108c 6151 return buf;
c906108c
SS
6152}
6153
6154static char *
fe1b8b76 6155read_string (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
c906108c
SS
6156{
6157 /* If the size of a host char is 8 bits, we can return a pointer
6158 to the string, otherwise we have to copy the string to a buffer
6159 allocated on the temporary obstack. */
4bdf3d34 6160 gdb_assert (HOST_CHAR_BIT == 8);
c906108c
SS
6161 if (*buf == '\0')
6162 {
6163 *bytes_read_ptr = 1;
6164 return NULL;
6165 }
fe1b8b76
JB
6166 *bytes_read_ptr = strlen ((char *) buf) + 1;
6167 return (char *) buf;
4bdf3d34
JJ
6168}
6169
6170static char *
fe1b8b76 6171read_indirect_string (bfd *abfd, gdb_byte *buf,
4bdf3d34
JJ
6172 const struct comp_unit_head *cu_header,
6173 unsigned int *bytes_read_ptr)
6174{
6175 LONGEST str_offset = read_offset (abfd, buf, cu_header,
891d2f0b 6176 bytes_read_ptr);
c906108c 6177
6502dd73 6178 if (dwarf2_per_objfile->str_buffer == NULL)
c906108c 6179 {
8a3fe4f8 6180 error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
659b0389 6181 bfd_get_filename (abfd));
4bdf3d34 6182 return NULL;
c906108c 6183 }
6502dd73 6184 if (str_offset >= dwarf2_per_objfile->str_size)
c906108c 6185 {
8a3fe4f8 6186 error (_("DW_FORM_strp pointing outside of .debug_str section [in module %s]"),
659b0389 6187 bfd_get_filename (abfd));
c906108c
SS
6188 return NULL;
6189 }
4bdf3d34 6190 gdb_assert (HOST_CHAR_BIT == 8);
6502dd73 6191 if (dwarf2_per_objfile->str_buffer[str_offset] == '\0')
4bdf3d34 6192 return NULL;
fe1b8b76 6193 return (char *) (dwarf2_per_objfile->str_buffer + str_offset);
c906108c
SS
6194}
6195
ce5d95e1 6196static unsigned long
fe1b8b76 6197read_unsigned_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
c906108c 6198{
ce5d95e1
JB
6199 unsigned long result;
6200 unsigned int num_read;
c906108c
SS
6201 int i, shift;
6202 unsigned char byte;
6203
6204 result = 0;
6205 shift = 0;
6206 num_read = 0;
6207 i = 0;
6208 while (1)
6209 {
fe1b8b76 6210 byte = bfd_get_8 (abfd, buf);
c906108c
SS
6211 buf++;
6212 num_read++;
ce5d95e1 6213 result |= ((unsigned long)(byte & 127) << shift);
c906108c
SS
6214 if ((byte & 128) == 0)
6215 {
6216 break;
6217 }
6218 shift += 7;
6219 }
6220 *bytes_read_ptr = num_read;
6221 return result;
6222}
6223
ce5d95e1 6224static long
fe1b8b76 6225read_signed_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr)
c906108c 6226{
ce5d95e1 6227 long result;
77e0b926 6228 int i, shift, num_read;
c906108c
SS
6229 unsigned char byte;
6230
6231 result = 0;
6232 shift = 0;
c906108c
SS
6233 num_read = 0;
6234 i = 0;
6235 while (1)
6236 {
fe1b8b76 6237 byte = bfd_get_8 (abfd, buf);
c906108c
SS
6238 buf++;
6239 num_read++;
ce5d95e1 6240 result |= ((long)(byte & 127) << shift);
c906108c
SS
6241 shift += 7;
6242 if ((byte & 128) == 0)
6243 {
6244 break;
6245 }
6246 }
77e0b926
DJ
6247 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
6248 result |= -(((long)1) << shift);
c906108c
SS
6249 *bytes_read_ptr = num_read;
6250 return result;
6251}
6252
4bb7a0a7
DJ
6253/* Return a pointer to just past the end of an LEB128 number in BUF. */
6254
fe1b8b76
JB
6255static gdb_byte *
6256skip_leb128 (bfd *abfd, gdb_byte *buf)
4bb7a0a7
DJ
6257{
6258 int byte;
6259
6260 while (1)
6261 {
fe1b8b76 6262 byte = bfd_get_8 (abfd, buf);
4bb7a0a7
DJ
6263 buf++;
6264 if ((byte & 128) == 0)
6265 return buf;
6266 }
6267}
6268
c906108c 6269static void
e142c38c 6270set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
c906108c
SS
6271{
6272 switch (lang)
6273 {
6274 case DW_LANG_C89:
6275 case DW_LANG_C:
e142c38c 6276 cu->language = language_c;
c906108c
SS
6277 break;
6278 case DW_LANG_C_plus_plus:
e142c38c 6279 cu->language = language_cplus;
c906108c
SS
6280 break;
6281 case DW_LANG_Fortran77:
6282 case DW_LANG_Fortran90:
b21b22e0 6283 case DW_LANG_Fortran95:
e142c38c 6284 cu->language = language_fortran;
c906108c
SS
6285 break;
6286 case DW_LANG_Mips_Assembler:
e142c38c 6287 cu->language = language_asm;
c906108c 6288 break;
bebd888e 6289 case DW_LANG_Java:
e142c38c 6290 cu->language = language_java;
bebd888e 6291 break;
c906108c 6292 case DW_LANG_Ada83:
8aaf0b47 6293 case DW_LANG_Ada95:
bc5f45f8
JB
6294 cu->language = language_ada;
6295 break;
72019c9c
GM
6296 case DW_LANG_Modula2:
6297 cu->language = language_m2;
6298 break;
c906108c
SS
6299 case DW_LANG_Cobol74:
6300 case DW_LANG_Cobol85:
6301 case DW_LANG_Pascal83:
c906108c 6302 default:
e142c38c 6303 cu->language = language_minimal;
c906108c
SS
6304 break;
6305 }
e142c38c 6306 cu->language_defn = language_def (cu->language);
c906108c
SS
6307}
6308
6309/* Return the named attribute or NULL if not there. */
6310
6311static struct attribute *
e142c38c 6312dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
c906108c
SS
6313{
6314 unsigned int i;
6315 struct attribute *spec = NULL;
6316
6317 for (i = 0; i < die->num_attrs; ++i)
6318 {
6319 if (die->attrs[i].name == name)
10b3939b 6320 return &die->attrs[i];
c906108c
SS
6321 if (die->attrs[i].name == DW_AT_specification
6322 || die->attrs[i].name == DW_AT_abstract_origin)
6323 spec = &die->attrs[i];
6324 }
c906108c 6325
10b3939b
DJ
6326 if (spec)
6327 return dwarf2_attr (follow_die_ref (die, spec, cu), name, cu);
c5aa993b 6328
c906108c
SS
6329 return NULL;
6330}
6331
05cf31d1
JB
6332/* Return non-zero iff the attribute NAME is defined for the given DIE,
6333 and holds a non-zero value. This function should only be used for
6334 DW_FORM_flag attributes. */
6335
6336static int
6337dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
6338{
6339 struct attribute *attr = dwarf2_attr (die, name, cu);
6340
6341 return (attr && DW_UNSND (attr));
6342}
6343
3ca72b44 6344static int
e142c38c 6345die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
3ca72b44 6346{
05cf31d1
JB
6347 /* A DIE is a declaration if it has a DW_AT_declaration attribute
6348 which value is non-zero. However, we have to be careful with
6349 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
6350 (via dwarf2_flag_true_p) follows this attribute. So we may
6351 end up accidently finding a declaration attribute that belongs
6352 to a different DIE referenced by the specification attribute,
6353 even though the given DIE does not have a declaration attribute. */
6354 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
6355 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
3ca72b44
AC
6356}
6357
63d06c5c
DC
6358/* Return the die giving the specification for DIE, if there is
6359 one. */
6360
6361static struct die_info *
e142c38c 6362die_specification (struct die_info *die, struct dwarf2_cu *cu)
63d06c5c 6363{
e142c38c 6364 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification, cu);
63d06c5c
DC
6365
6366 if (spec_attr == NULL)
6367 return NULL;
6368 else
10b3939b 6369 return follow_die_ref (die, spec_attr, cu);
63d06c5c 6370}
c906108c 6371
debd256d
JB
6372/* Free the line_header structure *LH, and any arrays and strings it
6373 refers to. */
6374static void
6375free_line_header (struct line_header *lh)
6376{
6377 if (lh->standard_opcode_lengths)
a8bc7b56 6378 xfree (lh->standard_opcode_lengths);
debd256d
JB
6379
6380 /* Remember that all the lh->file_names[i].name pointers are
6381 pointers into debug_line_buffer, and don't need to be freed. */
6382 if (lh->file_names)
a8bc7b56 6383 xfree (lh->file_names);
debd256d
JB
6384
6385 /* Similarly for the include directory names. */
6386 if (lh->include_dirs)
a8bc7b56 6387 xfree (lh->include_dirs);
debd256d 6388
a8bc7b56 6389 xfree (lh);
debd256d
JB
6390}
6391
6392
6393/* Add an entry to LH's include directory table. */
6394static void
6395add_include_dir (struct line_header *lh, char *include_dir)
c906108c 6396{
debd256d
JB
6397 /* Grow the array if necessary. */
6398 if (lh->include_dirs_size == 0)
c5aa993b 6399 {
debd256d
JB
6400 lh->include_dirs_size = 1; /* for testing */
6401 lh->include_dirs = xmalloc (lh->include_dirs_size
6402 * sizeof (*lh->include_dirs));
6403 }
6404 else if (lh->num_include_dirs >= lh->include_dirs_size)
6405 {
6406 lh->include_dirs_size *= 2;
6407 lh->include_dirs = xrealloc (lh->include_dirs,
6408 (lh->include_dirs_size
6409 * sizeof (*lh->include_dirs)));
c5aa993b 6410 }
c906108c 6411
debd256d
JB
6412 lh->include_dirs[lh->num_include_dirs++] = include_dir;
6413}
6414
6415
6416/* Add an entry to LH's file name table. */
6417static void
6418add_file_name (struct line_header *lh,
6419 char *name,
6420 unsigned int dir_index,
6421 unsigned int mod_time,
6422 unsigned int length)
6423{
6424 struct file_entry *fe;
6425
6426 /* Grow the array if necessary. */
6427 if (lh->file_names_size == 0)
6428 {
6429 lh->file_names_size = 1; /* for testing */
6430 lh->file_names = xmalloc (lh->file_names_size
6431 * sizeof (*lh->file_names));
6432 }
6433 else if (lh->num_file_names >= lh->file_names_size)
6434 {
6435 lh->file_names_size *= 2;
6436 lh->file_names = xrealloc (lh->file_names,
6437 (lh->file_names_size
6438 * sizeof (*lh->file_names)));
6439 }
6440
6441 fe = &lh->file_names[lh->num_file_names++];
6442 fe->name = name;
6443 fe->dir_index = dir_index;
6444 fe->mod_time = mod_time;
6445 fe->length = length;
aaa75496 6446 fe->included_p = 0;
debd256d
JB
6447}
6448
6449
6450/* Read the statement program header starting at OFFSET in
6502dd73
DJ
6451 .debug_line, according to the endianness of ABFD. Return a pointer
6452 to a struct line_header, allocated using xmalloc.
debd256d
JB
6453
6454 NOTE: the strings in the include directory and file name tables of
6455 the returned object point into debug_line_buffer, and must not be
6456 freed. */
6457static struct line_header *
6458dwarf_decode_line_header (unsigned int offset, bfd *abfd,
e7c27a73 6459 struct dwarf2_cu *cu)
debd256d
JB
6460{
6461 struct cleanup *back_to;
6462 struct line_header *lh;
fe1b8b76 6463 gdb_byte *line_ptr;
891d2f0b 6464 unsigned int bytes_read;
debd256d
JB
6465 int i;
6466 char *cur_dir, *cur_file;
6467
6502dd73 6468 if (dwarf2_per_objfile->line_buffer == NULL)
debd256d 6469 {
e2e0b3e5 6470 complaint (&symfile_complaints, _("missing .debug_line section"));
debd256d
JB
6471 return 0;
6472 }
6473
a738430d
MK
6474 /* Make sure that at least there's room for the total_length field.
6475 That could be 12 bytes long, but we're just going to fudge that. */
6502dd73 6476 if (offset + 4 >= dwarf2_per_objfile->line_size)
debd256d 6477 {
4d3c2250 6478 dwarf2_statement_list_fits_in_line_number_section_complaint ();
debd256d
JB
6479 return 0;
6480 }
6481
6482 lh = xmalloc (sizeof (*lh));
6483 memset (lh, 0, sizeof (*lh));
6484 back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
6485 (void *) lh);
6486
6502dd73 6487 line_ptr = dwarf2_per_objfile->line_buffer + offset;
debd256d 6488
a738430d 6489 /* Read in the header. */
dd373385
EZ
6490 lh->total_length =
6491 read_initial_length (abfd, line_ptr, &cu->header, &bytes_read);
debd256d 6492 line_ptr += bytes_read;
6502dd73
DJ
6493 if (line_ptr + lh->total_length > (dwarf2_per_objfile->line_buffer
6494 + dwarf2_per_objfile->line_size))
debd256d 6495 {
4d3c2250 6496 dwarf2_statement_list_fits_in_line_number_section_complaint ();
debd256d
JB
6497 return 0;
6498 }
6499 lh->statement_program_end = line_ptr + lh->total_length;
6500 lh->version = read_2_bytes (abfd, line_ptr);
6501 line_ptr += 2;
e7c27a73 6502 lh->header_length = read_offset (abfd, line_ptr, &cu->header, &bytes_read);
debd256d
JB
6503 line_ptr += bytes_read;
6504 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
6505 line_ptr += 1;
6506 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
6507 line_ptr += 1;
6508 lh->line_base = read_1_signed_byte (abfd, line_ptr);
6509 line_ptr += 1;
6510 lh->line_range = read_1_byte (abfd, line_ptr);
6511 line_ptr += 1;
6512 lh->opcode_base = read_1_byte (abfd, line_ptr);
6513 line_ptr += 1;
6514 lh->standard_opcode_lengths
fe1b8b76 6515 = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
debd256d
JB
6516
6517 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
6518 for (i = 1; i < lh->opcode_base; ++i)
6519 {
6520 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
6521 line_ptr += 1;
6522 }
6523
a738430d 6524 /* Read directory table. */
debd256d
JB
6525 while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL)
6526 {
6527 line_ptr += bytes_read;
6528 add_include_dir (lh, cur_dir);
6529 }
6530 line_ptr += bytes_read;
6531
a738430d 6532 /* Read file name table. */
debd256d
JB
6533 while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL)
6534 {
6535 unsigned int dir_index, mod_time, length;
6536
6537 line_ptr += bytes_read;
6538 dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6539 line_ptr += bytes_read;
6540 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6541 line_ptr += bytes_read;
6542 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6543 line_ptr += bytes_read;
6544
6545 add_file_name (lh, cur_file, dir_index, mod_time, length);
6546 }
6547 line_ptr += bytes_read;
6548 lh->statement_program_start = line_ptr;
6549
6502dd73
DJ
6550 if (line_ptr > (dwarf2_per_objfile->line_buffer
6551 + dwarf2_per_objfile->line_size))
4d3c2250 6552 complaint (&symfile_complaints,
e2e0b3e5 6553 _("line number info header doesn't fit in `.debug_line' section"));
debd256d
JB
6554
6555 discard_cleanups (back_to);
6556 return lh;
6557}
c906108c 6558
5fb290d7
DJ
6559/* This function exists to work around a bug in certain compilers
6560 (particularly GCC 2.95), in which the first line number marker of a
6561 function does not show up until after the prologue, right before
6562 the second line number marker. This function shifts ADDRESS down
6563 to the beginning of the function if necessary, and is called on
6564 addresses passed to record_line. */
6565
6566static CORE_ADDR
e142c38c 6567check_cu_functions (CORE_ADDR address, struct dwarf2_cu *cu)
5fb290d7
DJ
6568{
6569 struct function_range *fn;
6570
6571 /* Find the function_range containing address. */
e142c38c 6572 if (!cu->first_fn)
5fb290d7
DJ
6573 return address;
6574
e142c38c
DJ
6575 if (!cu->cached_fn)
6576 cu->cached_fn = cu->first_fn;
5fb290d7 6577
e142c38c 6578 fn = cu->cached_fn;
5fb290d7
DJ
6579 while (fn)
6580 if (fn->lowpc <= address && fn->highpc > address)
6581 goto found;
6582 else
6583 fn = fn->next;
6584
e142c38c
DJ
6585 fn = cu->first_fn;
6586 while (fn && fn != cu->cached_fn)
5fb290d7
DJ
6587 if (fn->lowpc <= address && fn->highpc > address)
6588 goto found;
6589 else
6590 fn = fn->next;
6591
6592 return address;
6593
6594 found:
6595 if (fn->seen_line)
6596 return address;
6597 if (address != fn->lowpc)
4d3c2250 6598 complaint (&symfile_complaints,
e2e0b3e5 6599 _("misplaced first line number at 0x%lx for '%s'"),
4d3c2250 6600 (unsigned long) address, fn->name);
5fb290d7
DJ
6601 fn->seen_line = 1;
6602 return fn->lowpc;
6603}
6604
aaa75496
JB
6605/* Decode the Line Number Program (LNP) for the given line_header
6606 structure and CU. The actual information extracted and the type
6607 of structures created from the LNP depends on the value of PST.
6608
6609 1. If PST is NULL, then this procedure uses the data from the program
6610 to create all necessary symbol tables, and their linetables.
6611 The compilation directory of the file is passed in COMP_DIR,
6612 and must not be NULL.
6613
6614 2. If PST is not NULL, this procedure reads the program to determine
6615 the list of files included by the unit represented by PST, and
6616 builds all the associated partial symbol tables. In this case,
6617 the value of COMP_DIR is ignored, and can thus be NULL (the COMP_DIR
6618 is not used to compute the full name of the symtab, and therefore
6619 omitting it when building the partial symtab does not introduce
6620 the potential for inconsistency - a partial symtab and its associated
6621 symbtab having a different fullname -). */
debd256d 6622
c906108c 6623static void
debd256d 6624dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd,
aaa75496 6625 struct dwarf2_cu *cu, struct partial_symtab *pst)
c906108c 6626{
fe1b8b76
JB
6627 gdb_byte *line_ptr;
6628 gdb_byte *line_end;
e7c27a73 6629 unsigned int bytes_read;
c906108c 6630 unsigned char op_code, extended_op, adj_opcode;
e142c38c
DJ
6631 CORE_ADDR baseaddr;
6632 struct objfile *objfile = cu->objfile;
aaa75496 6633 const int decode_for_pst_p = (pst != NULL);
366da635 6634 struct subfile *last_subfile = NULL;
e142c38c
DJ
6635
6636 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 6637
debd256d
JB
6638 line_ptr = lh->statement_program_start;
6639 line_end = lh->statement_program_end;
c906108c
SS
6640
6641 /* Read the statement sequences until there's nothing left. */
6642 while (line_ptr < line_end)
6643 {
6644 /* state machine registers */
6645 CORE_ADDR address = 0;
6646 unsigned int file = 1;
6647 unsigned int line = 1;
6648 unsigned int column = 0;
debd256d 6649 int is_stmt = lh->default_is_stmt;
c906108c
SS
6650 int basic_block = 0;
6651 int end_sequence = 0;
6652
aaa75496 6653 if (!decode_for_pst_p && lh->num_file_names >= file)
c906108c 6654 {
aaa75496 6655 /* Start a subfile for the current file of the state machine. */
debd256d
JB
6656 /* lh->include_dirs and lh->file_names are 0-based, but the
6657 directory and file name numbers in the statement program
6658 are 1-based. */
6659 struct file_entry *fe = &lh->file_names[file - 1];
4f1520fb 6660 char *dir = NULL;
a738430d 6661
debd256d
JB
6662 if (fe->dir_index)
6663 dir = lh->include_dirs[fe->dir_index - 1];
4f1520fb
FR
6664
6665 dwarf2_start_subfile (fe->name, dir, comp_dir);
c906108c
SS
6666 }
6667
a738430d 6668 /* Decode the table. */
c5aa993b 6669 while (!end_sequence)
c906108c
SS
6670 {
6671 op_code = read_1_byte (abfd, line_ptr);
6672 line_ptr += 1;
9aa1fe7e 6673
debd256d 6674 if (op_code >= lh->opcode_base)
a738430d
MK
6675 {
6676 /* Special operand. */
debd256d
JB
6677 adj_opcode = op_code - lh->opcode_base;
6678 address += (adj_opcode / lh->line_range)
6679 * lh->minimum_instruction_length;
6680 line += lh->line_base + (adj_opcode % lh->line_range);
aa495d11 6681 lh->file_names[file - 1].included_p = 1;
aaa75496
JB
6682 if (!decode_for_pst_p)
6683 {
366da635
DJ
6684 if (last_subfile != current_subfile)
6685 {
6686 if (last_subfile)
6687 record_line (last_subfile, 0, address);
6688 last_subfile = current_subfile;
6689 }
a738430d 6690 /* Append row to matrix using current values. */
aaa75496
JB
6691 record_line (current_subfile, line,
6692 check_cu_functions (address, cu));
6693 }
9aa1fe7e
GK
6694 basic_block = 1;
6695 }
6696 else switch (op_code)
c906108c
SS
6697 {
6698 case DW_LNS_extended_op:
473b7be6
DJ
6699 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6700 line_ptr += bytes_read;
c906108c
SS
6701 extended_op = read_1_byte (abfd, line_ptr);
6702 line_ptr += 1;
6703 switch (extended_op)
6704 {
6705 case DW_LNE_end_sequence:
6706 end_sequence = 1;
aa495d11 6707 lh->file_names[file - 1].included_p = 1;
aaa75496
JB
6708 if (!decode_for_pst_p)
6709 record_line (current_subfile, 0, address);
c906108c
SS
6710 break;
6711 case DW_LNE_set_address:
e7c27a73 6712 address = read_address (abfd, line_ptr, cu, &bytes_read);
107d2387
AC
6713 line_ptr += bytes_read;
6714 address += baseaddr;
c906108c
SS
6715 break;
6716 case DW_LNE_define_file:
debd256d
JB
6717 {
6718 char *cur_file;
6719 unsigned int dir_index, mod_time, length;
6720
6721 cur_file = read_string (abfd, line_ptr, &bytes_read);
6722 line_ptr += bytes_read;
6723 dir_index =
6724 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6725 line_ptr += bytes_read;
6726 mod_time =
6727 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6728 line_ptr += bytes_read;
6729 length =
6730 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6731 line_ptr += bytes_read;
6732 add_file_name (lh, cur_file, dir_index, mod_time, length);
6733 }
c906108c
SS
6734 break;
6735 default:
4d3c2250 6736 complaint (&symfile_complaints,
e2e0b3e5 6737 _("mangled .debug_line section"));
debd256d 6738 return;
c906108c
SS
6739 }
6740 break;
6741 case DW_LNS_copy:
aa495d11 6742 lh->file_names[file - 1].included_p = 1;
aaa75496 6743 if (!decode_for_pst_p)
366da635
DJ
6744 {
6745 if (last_subfile != current_subfile)
6746 {
6747 if (last_subfile)
6748 record_line (last_subfile, 0, address);
6749 last_subfile = current_subfile;
6750 }
6751 record_line (current_subfile, line,
6752 check_cu_functions (address, cu));
6753 }
c906108c
SS
6754 basic_block = 0;
6755 break;
6756 case DW_LNS_advance_pc:
debd256d 6757 address += lh->minimum_instruction_length
c906108c
SS
6758 * read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6759 line_ptr += bytes_read;
6760 break;
6761 case DW_LNS_advance_line:
6762 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
6763 line_ptr += bytes_read;
6764 break;
6765 case DW_LNS_set_file:
debd256d 6766 {
a738430d
MK
6767 /* The arrays lh->include_dirs and lh->file_names are
6768 0-based, but the directory and file name numbers in
6769 the statement program are 1-based. */
debd256d 6770 struct file_entry *fe;
4f1520fb 6771 char *dir = NULL;
a738430d 6772
debd256d
JB
6773 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6774 line_ptr += bytes_read;
6775 fe = &lh->file_names[file - 1];
6776 if (fe->dir_index)
6777 dir = lh->include_dirs[fe->dir_index - 1];
4f1520fb 6778
aaa75496 6779 if (!decode_for_pst_p)
366da635
DJ
6780 {
6781 last_subfile = current_subfile;
6782 dwarf2_start_subfile (fe->name, dir, comp_dir);
6783 }
debd256d 6784 }
c906108c
SS
6785 break;
6786 case DW_LNS_set_column:
6787 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6788 line_ptr += bytes_read;
6789 break;
6790 case DW_LNS_negate_stmt:
6791 is_stmt = (!is_stmt);
6792 break;
6793 case DW_LNS_set_basic_block:
6794 basic_block = 1;
6795 break;
c2c6d25f
JM
6796 /* Add to the address register of the state machine the
6797 address increment value corresponding to special opcode
a738430d
MK
6798 255. I.e., this value is scaled by the minimum
6799 instruction length since special opcode 255 would have
6800 scaled the the increment. */
c906108c 6801 case DW_LNS_const_add_pc:
debd256d
JB
6802 address += (lh->minimum_instruction_length
6803 * ((255 - lh->opcode_base) / lh->line_range));
c906108c
SS
6804 break;
6805 case DW_LNS_fixed_advance_pc:
6806 address += read_2_bytes (abfd, line_ptr);
6807 line_ptr += 2;
6808 break;
9aa1fe7e 6809 default:
a738430d
MK
6810 {
6811 /* Unknown standard opcode, ignore it. */
9aa1fe7e 6812 int i;
a738430d 6813
debd256d 6814 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
9aa1fe7e
GK
6815 {
6816 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
6817 line_ptr += bytes_read;
6818 }
6819 }
c906108c
SS
6820 }
6821 }
6822 }
aaa75496
JB
6823
6824 if (decode_for_pst_p)
6825 {
6826 int file_index;
6827
6828 /* Now that we're done scanning the Line Header Program, we can
6829 create the psymtab of each included file. */
6830 for (file_index = 0; file_index < lh->num_file_names; file_index++)
6831 if (lh->file_names[file_index].included_p == 1)
6832 {
5b5464ad
JB
6833 const struct file_entry fe = lh->file_names [file_index];
6834 char *include_name = fe.name;
6835 char *dir_name = NULL;
6836 char *pst_filename = pst->filename;
6837
6838 if (fe.dir_index)
6839 dir_name = lh->include_dirs[fe.dir_index - 1];
6840
6841 if (!IS_ABSOLUTE_PATH (include_name) && dir_name != NULL)
6842 {
1754f103
MK
6843 include_name = concat (dir_name, SLASH_STRING,
6844 include_name, (char *)NULL);
5b5464ad
JB
6845 make_cleanup (xfree, include_name);
6846 }
6847
6848 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
6849 {
1754f103
MK
6850 pst_filename = concat (pst->dirname, SLASH_STRING,
6851 pst_filename, (char *)NULL);
5b5464ad
JB
6852 make_cleanup (xfree, pst_filename);
6853 }
6854
6855 if (strcmp (include_name, pst_filename) != 0)
aaa75496
JB
6856 dwarf2_create_include_psymtab (include_name, pst, objfile);
6857 }
6858 }
c906108c
SS
6859}
6860
6861/* Start a subfile for DWARF. FILENAME is the name of the file and
6862 DIRNAME the name of the source directory which contains FILENAME
4f1520fb
FR
6863 or NULL if not known. COMP_DIR is the compilation directory for the
6864 linetable's compilation unit or NULL if not known.
c906108c
SS
6865 This routine tries to keep line numbers from identical absolute and
6866 relative file names in a common subfile.
6867
6868 Using the `list' example from the GDB testsuite, which resides in
6869 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
6870 of /srcdir/list0.c yields the following debugging information for list0.c:
6871
c5aa993b
JM
6872 DW_AT_name: /srcdir/list0.c
6873 DW_AT_comp_dir: /compdir
357e46e7 6874 files.files[0].name: list0.h
c5aa993b 6875 files.files[0].dir: /srcdir
357e46e7 6876 files.files[1].name: list0.c
c5aa993b 6877 files.files[1].dir: /srcdir
c906108c
SS
6878
6879 The line number information for list0.c has to end up in a single
4f1520fb
FR
6880 subfile, so that `break /srcdir/list0.c:1' works as expected.
6881 start_subfile will ensure that this happens provided that we pass the
6882 concatenation of files.files[1].dir and files.files[1].name as the
6883 subfile's name. */
c906108c
SS
6884
6885static void
4f1520fb 6886dwarf2_start_subfile (char *filename, char *dirname, char *comp_dir)
c906108c 6887{
4f1520fb
FR
6888 char *fullname;
6889
6890 /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
6891 `start_symtab' will always pass the contents of DW_AT_comp_dir as
6892 second argument to start_subfile. To be consistent, we do the
6893 same here. In order not to lose the line information directory,
6894 we concatenate it to the filename when it makes sense.
6895 Note that the Dwarf3 standard says (speaking of filenames in line
6896 information): ``The directory index is ignored for file names
6897 that represent full path names''. Thus ignoring dirname in the
6898 `else' branch below isn't an issue. */
c906108c 6899
d5166ae1 6900 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
4f1520fb
FR
6901 fullname = concat (dirname, SLASH_STRING, filename, (char *)NULL);
6902 else
6903 fullname = filename;
c906108c 6904
4f1520fb
FR
6905 start_subfile (fullname, comp_dir);
6906
6907 if (fullname != filename)
6908 xfree (fullname);
c906108c
SS
6909}
6910
4c2df51b
DJ
6911static void
6912var_decode_location (struct attribute *attr, struct symbol *sym,
e7c27a73 6913 struct dwarf2_cu *cu)
4c2df51b 6914{
e7c27a73
DJ
6915 struct objfile *objfile = cu->objfile;
6916 struct comp_unit_head *cu_header = &cu->header;
6917
4c2df51b
DJ
6918 /* NOTE drow/2003-01-30: There used to be a comment and some special
6919 code here to turn a symbol with DW_AT_external and a
6920 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
6921 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
6922 with some versions of binutils) where shared libraries could have
6923 relocations against symbols in their debug information - the
6924 minimal symbol would have the right address, but the debug info
6925 would not. It's no longer necessary, because we will explicitly
6926 apply relocations when we read in the debug information now. */
6927
6928 /* A DW_AT_location attribute with no contents indicates that a
6929 variable has been optimized away. */
6930 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
6931 {
6932 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
6933 return;
6934 }
6935
6936 /* Handle one degenerate form of location expression specially, to
6937 preserve GDB's previous behavior when section offsets are
6938 specified. If this is just a DW_OP_addr then mark this symbol
6939 as LOC_STATIC. */
6940
6941 if (attr_form_is_block (attr)
6942 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size
6943 && DW_BLOCK (attr)->data[0] == DW_OP_addr)
6944 {
891d2f0b 6945 unsigned int dummy;
4c2df51b
DJ
6946
6947 SYMBOL_VALUE_ADDRESS (sym) =
e7c27a73 6948 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
4c2df51b
DJ
6949 fixup_symbol_section (sym, objfile);
6950 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
6951 SYMBOL_SECTION (sym));
6952 SYMBOL_CLASS (sym) = LOC_STATIC;
6953 return;
6954 }
6955
6956 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
6957 expression evaluator, and use LOC_COMPUTED only when necessary
6958 (i.e. when the value of a register or memory location is
6959 referenced, or a thread-local block, etc.). Then again, it might
6960 not be worthwhile. I'm assuming that it isn't unless performance
6961 or memory numbers show me otherwise. */
6962
e7c27a73 6963 dwarf2_symbol_mark_computed (attr, sym, cu);
4c2df51b
DJ
6964 SYMBOL_CLASS (sym) = LOC_COMPUTED;
6965}
6966
c906108c
SS
6967/* Given a pointer to a DWARF information entry, figure out if we need
6968 to make a symbol table entry for it, and if so, create a new entry
6969 and return a pointer to it.
6970 If TYPE is NULL, determine symbol type from the die, otherwise
2df3850c 6971 used the passed type. */
c906108c
SS
6972
6973static struct symbol *
e7c27a73 6974new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
c906108c 6975{
e7c27a73 6976 struct objfile *objfile = cu->objfile;
c906108c
SS
6977 struct symbol *sym = NULL;
6978 char *name;
6979 struct attribute *attr = NULL;
6980 struct attribute *attr2 = NULL;
e142c38c
DJ
6981 CORE_ADDR baseaddr;
6982
6983 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 6984
5c4e30ca 6985 if (die->tag != DW_TAG_namespace)
e142c38c 6986 name = dwarf2_linkage_name (die, cu);
5c4e30ca
DC
6987 else
6988 name = TYPE_NAME (type);
6989
c906108c
SS
6990 if (name)
6991 {
4a146b47 6992 sym = (struct symbol *) obstack_alloc (&objfile->objfile_obstack,
c906108c
SS
6993 sizeof (struct symbol));
6994 OBJSTAT (objfile, n_syms++);
6995 memset (sym, 0, sizeof (struct symbol));
2de7ced7
DJ
6996
6997 /* Cache this symbol's name and the name's demangled form (if any). */
e142c38c 6998 SYMBOL_LANGUAGE (sym) = cu->language;
2de7ced7 6999 SYMBOL_SET_NAMES (sym, name, strlen (name), objfile);
c906108c
SS
7000
7001 /* Default assumptions.
c5aa993b 7002 Use the passed type or decode it from the die. */
176620f1 7003 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
875dc2fc 7004 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
c906108c
SS
7005 if (type != NULL)
7006 SYMBOL_TYPE (sym) = type;
7007 else
e7c27a73 7008 SYMBOL_TYPE (sym) = die_type (die, cu);
e142c38c 7009 attr = dwarf2_attr (die, DW_AT_decl_line, cu);
c906108c
SS
7010 if (attr)
7011 {
7012 SYMBOL_LINE (sym) = DW_UNSND (attr);
7013 }
c906108c
SS
7014 switch (die->tag)
7015 {
7016 case DW_TAG_label:
e142c38c 7017 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
c906108c
SS
7018 if (attr)
7019 {
7020 SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
7021 }
7022 SYMBOL_CLASS (sym) = LOC_LABEL;
7023 break;
7024 case DW_TAG_subprogram:
7025 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
7026 finish_block. */
7027 SYMBOL_CLASS (sym) = LOC_BLOCK;
e142c38c 7028 attr2 = dwarf2_attr (die, DW_AT_external, cu);
c906108c
SS
7029 if (attr2 && (DW_UNSND (attr2) != 0))
7030 {
7031 add_symbol_to_list (sym, &global_symbols);
7032 }
7033 else
7034 {
e142c38c 7035 add_symbol_to_list (sym, cu->list_in_scope);
c906108c
SS
7036 }
7037 break;
7038 case DW_TAG_variable:
7039 /* Compilation with minimal debug info may result in variables
7040 with missing type entries. Change the misleading `void' type
7041 to something sensible. */
7042 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
7043 SYMBOL_TYPE (sym) = init_type (TYPE_CODE_INT,
7044 TARGET_INT_BIT / HOST_CHAR_BIT, 0,
7045 "<variable, no debug info>",
7046 objfile);
e142c38c 7047 attr = dwarf2_attr (die, DW_AT_const_value, cu);
c906108c
SS
7048 if (attr)
7049 {
e7c27a73 7050 dwarf2_const_value (attr, sym, cu);
e142c38c 7051 attr2 = dwarf2_attr (die, DW_AT_external, cu);
c906108c
SS
7052 if (attr2 && (DW_UNSND (attr2) != 0))
7053 add_symbol_to_list (sym, &global_symbols);
7054 else
e142c38c 7055 add_symbol_to_list (sym, cu->list_in_scope);
c906108c
SS
7056 break;
7057 }
e142c38c 7058 attr = dwarf2_attr (die, DW_AT_location, cu);
c906108c
SS
7059 if (attr)
7060 {
e7c27a73 7061 var_decode_location (attr, sym, cu);
e142c38c 7062 attr2 = dwarf2_attr (die, DW_AT_external, cu);
c906108c 7063 if (attr2 && (DW_UNSND (attr2) != 0))
4c2df51b 7064 add_symbol_to_list (sym, &global_symbols);
c906108c 7065 else
e142c38c 7066 add_symbol_to_list (sym, cu->list_in_scope);
c906108c
SS
7067 }
7068 else
7069 {
7070 /* We do not know the address of this symbol.
c5aa993b
JM
7071 If it is an external symbol and we have type information
7072 for it, enter the symbol as a LOC_UNRESOLVED symbol.
7073 The address of the variable will then be determined from
7074 the minimal symbol table whenever the variable is
7075 referenced. */
e142c38c 7076 attr2 = dwarf2_attr (die, DW_AT_external, cu);
c906108c 7077 if (attr2 && (DW_UNSND (attr2) != 0)
e142c38c 7078 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
c906108c
SS
7079 {
7080 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
7081 add_symbol_to_list (sym, &global_symbols);
7082 }
7083 }
7084 break;
7085 case DW_TAG_formal_parameter:
e142c38c 7086 attr = dwarf2_attr (die, DW_AT_location, cu);
c906108c
SS
7087 if (attr)
7088 {
e7c27a73 7089 var_decode_location (attr, sym, cu);
7cf6e574
DJ
7090 /* FIXME drow/2003-07-31: Is LOC_COMPUTED_ARG necessary? */
7091 if (SYMBOL_CLASS (sym) == LOC_COMPUTED)
7092 SYMBOL_CLASS (sym) = LOC_COMPUTED_ARG;
c906108c 7093 }
e142c38c 7094 attr = dwarf2_attr (die, DW_AT_const_value, cu);
c906108c
SS
7095 if (attr)
7096 {
e7c27a73 7097 dwarf2_const_value (attr, sym, cu);
c906108c 7098 }
e142c38c 7099 add_symbol_to_list (sym, cu->list_in_scope);
c906108c
SS
7100 break;
7101 case DW_TAG_unspecified_parameters:
7102 /* From varargs functions; gdb doesn't seem to have any
7103 interest in this information, so just ignore it for now.
7104 (FIXME?) */
7105 break;
7106 case DW_TAG_class_type:
7107 case DW_TAG_structure_type:
7108 case DW_TAG_union_type:
72019c9c 7109 case DW_TAG_set_type:
c906108c
SS
7110 case DW_TAG_enumeration_type:
7111 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
176620f1 7112 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
c906108c 7113
63d06c5c
DC
7114 /* Make sure that the symbol includes appropriate enclosing
7115 classes/namespaces in its name. These are calculated in
134d01f1 7116 read_structure_type, and the correct name is saved in
63d06c5c
DC
7117 the type. */
7118
987504bb
JJ
7119 if (cu->language == language_cplus
7120 || cu->language == language_java)
c906108c 7121 {
63d06c5c
DC
7122 struct type *type = SYMBOL_TYPE (sym);
7123
7124 if (TYPE_TAG_NAME (type) != NULL)
7125 {
7126 /* FIXME: carlton/2003-11-10: Should this use
7127 SYMBOL_SET_NAMES instead? (The same problem also
d8151005
DJ
7128 arises further down in this function.) */
7129 /* The type's name is already allocated along with
7130 this objfile, so we don't need to duplicate it
7131 for the symbol. */
7132 SYMBOL_LINKAGE_NAME (sym) = TYPE_TAG_NAME (type);
63d06c5c 7133 }
c906108c 7134 }
63d06c5c
DC
7135
7136 {
987504bb 7137 /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
63d06c5c
DC
7138 really ever be static objects: otherwise, if you try
7139 to, say, break of a class's method and you're in a file
7140 which doesn't mention that class, it won't work unless
7141 the check for all static symbols in lookup_symbol_aux
7142 saves you. See the OtherFileClass tests in
7143 gdb.c++/namespace.exp. */
7144
7145 struct pending **list_to_add;
7146
e142c38c 7147 list_to_add = (cu->list_in_scope == &file_symbols
987504bb
JJ
7148 && (cu->language == language_cplus
7149 || cu->language == language_java)
e142c38c 7150 ? &global_symbols : cu->list_in_scope);
63d06c5c
DC
7151
7152 add_symbol_to_list (sym, list_to_add);
7153
7154 /* The semantics of C++ state that "struct foo { ... }" also
987504bb
JJ
7155 defines a typedef for "foo". A Java class declaration also
7156 defines a typedef for the class. Synthesize a typedef symbol
7157 so that "ptype foo" works as expected. */
7158 if (cu->language == language_cplus
7159 || cu->language == language_java)
63d06c5c
DC
7160 {
7161 struct symbol *typedef_sym = (struct symbol *)
4a146b47 7162 obstack_alloc (&objfile->objfile_obstack,
63d06c5c
DC
7163 sizeof (struct symbol));
7164 *typedef_sym = *sym;
7165 SYMBOL_DOMAIN (typedef_sym) = VAR_DOMAIN;
d8151005
DJ
7166 /* The symbol's name is already allocated along with
7167 this objfile, so we don't need to duplicate it for
7168 the type. */
63d06c5c 7169 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
77ef991d 7170 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
63d06c5c
DC
7171 add_symbol_to_list (typedef_sym, list_to_add);
7172 }
7173 }
c906108c
SS
7174 break;
7175 case DW_TAG_typedef:
63d06c5c
DC
7176 if (processing_has_namespace_info
7177 && processing_current_prefix[0] != '\0')
7178 {
987504bb
JJ
7179 SYMBOL_LINKAGE_NAME (sym) = typename_concat (&objfile->objfile_obstack,
7180 processing_current_prefix,
7181 name, cu);
63d06c5c
DC
7182 }
7183 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
7184 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e142c38c 7185 add_symbol_to_list (sym, cu->list_in_scope);
63d06c5c 7186 break;
c906108c 7187 case DW_TAG_base_type:
a02abb62 7188 case DW_TAG_subrange_type:
c906108c 7189 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
176620f1 7190 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e142c38c 7191 add_symbol_to_list (sym, cu->list_in_scope);
c906108c
SS
7192 break;
7193 case DW_TAG_enumerator:
63d06c5c
DC
7194 if (processing_has_namespace_info
7195 && processing_current_prefix[0] != '\0')
7196 {
987504bb
JJ
7197 SYMBOL_LINKAGE_NAME (sym) = typename_concat (&objfile->objfile_obstack,
7198 processing_current_prefix,
7199 name, cu);
63d06c5c 7200 }
e142c38c 7201 attr = dwarf2_attr (die, DW_AT_const_value, cu);
c906108c
SS
7202 if (attr)
7203 {
e7c27a73 7204 dwarf2_const_value (attr, sym, cu);
c906108c 7205 }
63d06c5c
DC
7206 {
7207 /* NOTE: carlton/2003-11-10: See comment above in the
7208 DW_TAG_class_type, etc. block. */
7209
7210 struct pending **list_to_add;
7211
e142c38c 7212 list_to_add = (cu->list_in_scope == &file_symbols
987504bb
JJ
7213 && (cu->language == language_cplus
7214 || cu->language == language_java)
e142c38c 7215 ? &global_symbols : cu->list_in_scope);
63d06c5c
DC
7216
7217 add_symbol_to_list (sym, list_to_add);
7218 }
c906108c 7219 break;
5c4e30ca
DC
7220 case DW_TAG_namespace:
7221 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
7222 add_symbol_to_list (sym, &global_symbols);
7223 break;
c906108c
SS
7224 default:
7225 /* Not a tag we recognize. Hopefully we aren't processing
7226 trash data, but since we must specifically ignore things
7227 we don't recognize, there is nothing else we should do at
7228 this point. */
e2e0b3e5 7229 complaint (&symfile_complaints, _("unsupported tag: '%s'"),
4d3c2250 7230 dwarf_tag_name (die->tag));
c906108c
SS
7231 break;
7232 }
7233 }
7234 return (sym);
7235}
7236
7237/* Copy constant value from an attribute to a symbol. */
7238
7239static void
107d2387 7240dwarf2_const_value (struct attribute *attr, struct symbol *sym,
e7c27a73 7241 struct dwarf2_cu *cu)
c906108c 7242{
e7c27a73
DJ
7243 struct objfile *objfile = cu->objfile;
7244 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
7245 struct dwarf_block *blk;
7246
7247 switch (attr->form)
7248 {
7249 case DW_FORM_addr:
107d2387 7250 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != cu_header->addr_size)
22abf04a 7251 dwarf2_const_value_length_mismatch_complaint (DEPRECATED_SYMBOL_NAME (sym),
4d3c2250
KB
7252 cu_header->addr_size,
7253 TYPE_LENGTH (SYMBOL_TYPE
7254 (sym)));
4e38b386 7255 SYMBOL_VALUE_BYTES (sym) =
4a146b47 7256 obstack_alloc (&objfile->objfile_obstack, cu_header->addr_size);
fbd9dcd3
AC
7257 /* NOTE: cagney/2003-05-09: In-lined store_address call with
7258 it's body - store_unsigned_integer. */
7259 store_unsigned_integer (SYMBOL_VALUE_BYTES (sym), cu_header->addr_size,
7260 DW_ADDR (attr));
c906108c
SS
7261 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
7262 break;
7263 case DW_FORM_block1:
7264 case DW_FORM_block2:
7265 case DW_FORM_block4:
7266 case DW_FORM_block:
7267 blk = DW_BLOCK (attr);
7268 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != blk->size)
22abf04a 7269 dwarf2_const_value_length_mismatch_complaint (DEPRECATED_SYMBOL_NAME (sym),
4d3c2250
KB
7270 blk->size,
7271 TYPE_LENGTH (SYMBOL_TYPE
7272 (sym)));
4e38b386 7273 SYMBOL_VALUE_BYTES (sym) =
4a146b47 7274 obstack_alloc (&objfile->objfile_obstack, blk->size);
c906108c
SS
7275 memcpy (SYMBOL_VALUE_BYTES (sym), blk->data, blk->size);
7276 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
7277 break;
2df3850c
JM
7278
7279 /* The DW_AT_const_value attributes are supposed to carry the
7280 symbol's value "represented as it would be on the target
7281 architecture." By the time we get here, it's already been
7282 converted to host endianness, so we just need to sign- or
7283 zero-extend it as appropriate. */
7284 case DW_FORM_data1:
7285 dwarf2_const_value_data (attr, sym, 8);
7286 break;
c906108c 7287 case DW_FORM_data2:
2df3850c
JM
7288 dwarf2_const_value_data (attr, sym, 16);
7289 break;
c906108c 7290 case DW_FORM_data4:
2df3850c
JM
7291 dwarf2_const_value_data (attr, sym, 32);
7292 break;
c906108c 7293 case DW_FORM_data8:
2df3850c
JM
7294 dwarf2_const_value_data (attr, sym, 64);
7295 break;
7296
c906108c 7297 case DW_FORM_sdata:
2df3850c
JM
7298 SYMBOL_VALUE (sym) = DW_SND (attr);
7299 SYMBOL_CLASS (sym) = LOC_CONST;
7300 break;
7301
c906108c
SS
7302 case DW_FORM_udata:
7303 SYMBOL_VALUE (sym) = DW_UNSND (attr);
7304 SYMBOL_CLASS (sym) = LOC_CONST;
7305 break;
2df3850c 7306
c906108c 7307 default:
4d3c2250 7308 complaint (&symfile_complaints,
e2e0b3e5 7309 _("unsupported const value attribute form: '%s'"),
4d3c2250 7310 dwarf_form_name (attr->form));
c906108c
SS
7311 SYMBOL_VALUE (sym) = 0;
7312 SYMBOL_CLASS (sym) = LOC_CONST;
7313 break;
7314 }
7315}
7316
2df3850c
JM
7317
7318/* Given an attr with a DW_FORM_dataN value in host byte order, sign-
7319 or zero-extend it as appropriate for the symbol's type. */
7320static void
7321dwarf2_const_value_data (struct attribute *attr,
7322 struct symbol *sym,
7323 int bits)
7324{
7325 LONGEST l = DW_UNSND (attr);
7326
7327 if (bits < sizeof (l) * 8)
7328 {
7329 if (TYPE_UNSIGNED (SYMBOL_TYPE (sym)))
7330 l &= ((LONGEST) 1 << bits) - 1;
7331 else
bf9198f1 7332 l = (l << (sizeof (l) * 8 - bits)) >> (sizeof (l) * 8 - bits);
2df3850c
JM
7333 }
7334
7335 SYMBOL_VALUE (sym) = l;
7336 SYMBOL_CLASS (sym) = LOC_CONST;
7337}
7338
7339
c906108c
SS
7340/* Return the type of the die in question using its DW_AT_type attribute. */
7341
7342static struct type *
e7c27a73 7343die_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
7344{
7345 struct type *type;
7346 struct attribute *type_attr;
7347 struct die_info *type_die;
c906108c 7348
e142c38c 7349 type_attr = dwarf2_attr (die, DW_AT_type, cu);
c906108c
SS
7350 if (!type_attr)
7351 {
7352 /* A missing DW_AT_type represents a void type. */
e142c38c 7353 return dwarf2_fundamental_type (cu->objfile, FT_VOID, cu);
c906108c
SS
7354 }
7355 else
10b3939b
DJ
7356 type_die = follow_die_ref (die, type_attr, cu);
7357
e7c27a73 7358 type = tag_type_to_type (type_die, cu);
c906108c
SS
7359 if (!type)
7360 {
7361 dump_die (type_die);
8a3fe4f8 7362 error (_("Dwarf Error: Problem turning type die at offset into gdb type [in module %s]"),
e7c27a73 7363 cu->objfile->name);
c906108c
SS
7364 }
7365 return type;
7366}
7367
7368/* Return the containing type of the die in question using its
7369 DW_AT_containing_type attribute. */
7370
7371static struct type *
e7c27a73 7372die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
7373{
7374 struct type *type = NULL;
7375 struct attribute *type_attr;
7376 struct die_info *type_die = NULL;
c906108c 7377
e142c38c 7378 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
c906108c
SS
7379 if (type_attr)
7380 {
10b3939b 7381 type_die = follow_die_ref (die, type_attr, cu);
e7c27a73 7382 type = tag_type_to_type (type_die, cu);
c906108c
SS
7383 }
7384 if (!type)
7385 {
7386 if (type_die)
7387 dump_die (type_die);
8a3fe4f8 7388 error (_("Dwarf Error: Problem turning containing type into gdb type [in module %s]"),
e7c27a73 7389 cu->objfile->name);
c906108c
SS
7390 }
7391 return type;
7392}
7393
c906108c 7394static struct type *
e7c27a73 7395tag_type_to_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
7396{
7397 if (die->type)
7398 {
7399 return die->type;
7400 }
7401 else
7402 {
e7c27a73 7403 read_type_die (die, cu);
c906108c
SS
7404 if (!die->type)
7405 {
7406 dump_die (die);
8a3fe4f8 7407 error (_("Dwarf Error: Cannot find type of die [in module %s]"),
e7c27a73 7408 cu->objfile->name);
c906108c
SS
7409 }
7410 return die->type;
7411 }
7412}
7413
7414static void
e7c27a73 7415read_type_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 7416{
e142c38c 7417 char *prefix = determine_prefix (die, cu);
63d06c5c
DC
7418 const char *old_prefix = processing_current_prefix;
7419 struct cleanup *back_to = make_cleanup (xfree, prefix);
7420 processing_current_prefix = prefix;
7421
c906108c
SS
7422 switch (die->tag)
7423 {
7424 case DW_TAG_class_type:
7425 case DW_TAG_structure_type:
7426 case DW_TAG_union_type:
134d01f1 7427 read_structure_type (die, cu);
c906108c
SS
7428 break;
7429 case DW_TAG_enumeration_type:
134d01f1 7430 read_enumeration_type (die, cu);
c906108c
SS
7431 break;
7432 case DW_TAG_subprogram:
7433 case DW_TAG_subroutine_type:
e7c27a73 7434 read_subroutine_type (die, cu);
c906108c
SS
7435 break;
7436 case DW_TAG_array_type:
e7c27a73 7437 read_array_type (die, cu);
c906108c 7438 break;
72019c9c
GM
7439 case DW_TAG_set_type:
7440 read_set_type (die, cu);
7441 break;
c906108c 7442 case DW_TAG_pointer_type:
e7c27a73 7443 read_tag_pointer_type (die, cu);
c906108c
SS
7444 break;
7445 case DW_TAG_ptr_to_member_type:
e7c27a73 7446 read_tag_ptr_to_member_type (die, cu);
c906108c
SS
7447 break;
7448 case DW_TAG_reference_type:
e7c27a73 7449 read_tag_reference_type (die, cu);
c906108c
SS
7450 break;
7451 case DW_TAG_const_type:
e7c27a73 7452 read_tag_const_type (die, cu);
c906108c
SS
7453 break;
7454 case DW_TAG_volatile_type:
e7c27a73 7455 read_tag_volatile_type (die, cu);
c906108c
SS
7456 break;
7457 case DW_TAG_string_type:
e7c27a73 7458 read_tag_string_type (die, cu);
c906108c
SS
7459 break;
7460 case DW_TAG_typedef:
e7c27a73 7461 read_typedef (die, cu);
c906108c 7462 break;
a02abb62
JB
7463 case DW_TAG_subrange_type:
7464 read_subrange_type (die, cu);
7465 break;
c906108c 7466 case DW_TAG_base_type:
e7c27a73 7467 read_base_type (die, cu);
c906108c 7468 break;
81a17f79
JB
7469 case DW_TAG_unspecified_type:
7470 read_unspecified_type (die, cu);
7471 break;
c906108c 7472 default:
a1f5b845 7473 complaint (&symfile_complaints, _("unexpected tag in read_type_die: '%s'"),
4d3c2250 7474 dwarf_tag_name (die->tag));
c906108c
SS
7475 break;
7476 }
63d06c5c
DC
7477
7478 processing_current_prefix = old_prefix;
7479 do_cleanups (back_to);
7480}
7481
fdde2d81
DC
7482/* Return the name of the namespace/class that DIE is defined within,
7483 or "" if we can't tell. The caller should xfree the result. */
7484
7485/* NOTE: carlton/2004-01-23: See read_func_scope (and the comment
7486 therein) for an example of how to use this function to deal with
7487 DW_AT_specification. */
7488
7489static char *
e142c38c 7490determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
63d06c5c
DC
7491{
7492 struct die_info *parent;
7493
987504bb
JJ
7494 if (cu->language != language_cplus
7495 && cu->language != language_java)
63d06c5c
DC
7496 return NULL;
7497
7498 parent = die->parent;
7499
7500 if (parent == NULL)
7501 {
8176b9b8 7502 return xstrdup ("");
63d06c5c
DC
7503 }
7504 else
7505 {
63d06c5c
DC
7506 switch (parent->tag) {
7507 case DW_TAG_namespace:
7508 {
8176b9b8
DC
7509 /* FIXME: carlton/2004-03-05: Should I follow extension dies
7510 before doing this check? */
7511 if (parent->type != NULL && TYPE_TAG_NAME (parent->type) != NULL)
7512 {
7513 return xstrdup (TYPE_TAG_NAME (parent->type));
7514 }
7515 else
7516 {
7517 int dummy;
7518 char *parent_prefix = determine_prefix (parent, cu);
987504bb 7519 char *retval = typename_concat (NULL, parent_prefix,
8176b9b8 7520 namespace_name (parent, &dummy,
987504bb
JJ
7521 cu),
7522 cu);
8176b9b8
DC
7523 xfree (parent_prefix);
7524 return retval;
7525 }
63d06c5c
DC
7526 }
7527 break;
7528 case DW_TAG_class_type:
7529 case DW_TAG_structure_type:
7530 {
8176b9b8 7531 if (parent->type != NULL && TYPE_TAG_NAME (parent->type) != NULL)
63d06c5c 7532 {
8176b9b8 7533 return xstrdup (TYPE_TAG_NAME (parent->type));
63d06c5c
DC
7534 }
7535 else
8176b9b8
DC
7536 {
7537 const char *old_prefix = processing_current_prefix;
7538 char *new_prefix = determine_prefix (parent, cu);
7539 char *retval;
7540
7541 processing_current_prefix = new_prefix;
7542 retval = determine_class_name (parent, cu);
7543 processing_current_prefix = old_prefix;
7544
7545 xfree (new_prefix);
7546 return retval;
7547 }
63d06c5c 7548 }
63d06c5c 7549 default:
8176b9b8 7550 return determine_prefix (parent, cu);
63d06c5c 7551 }
63d06c5c
DC
7552 }
7553}
7554
987504bb
JJ
7555/* Return a newly-allocated string formed by concatenating PREFIX and
7556 SUFFIX with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
7557 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null,
7558 perform an obconcat, otherwise allocate storage for the result. The CU argument
7559 is used to determine the language and hence, the appropriate separator. */
7560
7561#define MAX_SEP_LEN 2 /* sizeof ("::") */
63d06c5c
DC
7562
7563static char *
987504bb
JJ
7564typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
7565 struct dwarf2_cu *cu)
63d06c5c 7566{
987504bb 7567 char *sep;
63d06c5c 7568
987504bb
JJ
7569 if (suffix == NULL || suffix[0] == '\0' || prefix == NULL || prefix[0] == '\0')
7570 sep = "";
7571 else if (cu->language == language_java)
7572 sep = ".";
7573 else
7574 sep = "::";
63d06c5c 7575
987504bb
JJ
7576 if (obs == NULL)
7577 {
7578 char *retval = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
7579 retval[0] = '\0';
7580
7581 if (prefix)
7582 {
7583 strcpy (retval, prefix);
7584 strcat (retval, sep);
7585 }
7586 if (suffix)
7587 strcat (retval, suffix);
7588
63d06c5c
DC
7589 return retval;
7590 }
987504bb
JJ
7591 else
7592 {
7593 /* We have an obstack. */
7594 return obconcat (obs, prefix, sep, suffix);
7595 }
63d06c5c
DC
7596}
7597
c906108c 7598static struct type *
e7c27a73 7599dwarf_base_type (int encoding, int size, struct dwarf2_cu *cu)
c906108c 7600{
e7c27a73
DJ
7601 struct objfile *objfile = cu->objfile;
7602
c906108c
SS
7603 /* FIXME - this should not produce a new (struct type *)
7604 every time. It should cache base types. */
7605 struct type *type;
7606 switch (encoding)
7607 {
7608 case DW_ATE_address:
e142c38c 7609 type = dwarf2_fundamental_type (objfile, FT_VOID, cu);
c906108c
SS
7610 return type;
7611 case DW_ATE_boolean:
e142c38c 7612 type = dwarf2_fundamental_type (objfile, FT_BOOLEAN, cu);
c906108c
SS
7613 return type;
7614 case DW_ATE_complex_float:
7615 if (size == 16)
7616 {
e142c38c 7617 type = dwarf2_fundamental_type (objfile, FT_DBL_PREC_COMPLEX, cu);
c906108c
SS
7618 }
7619 else
7620 {
e142c38c 7621 type = dwarf2_fundamental_type (objfile, FT_COMPLEX, cu);
c906108c
SS
7622 }
7623 return type;
7624 case DW_ATE_float:
7625 if (size == 8)
7626 {
e142c38c 7627 type = dwarf2_fundamental_type (objfile, FT_DBL_PREC_FLOAT, cu);
c906108c
SS
7628 }
7629 else
7630 {
e142c38c 7631 type = dwarf2_fundamental_type (objfile, FT_FLOAT, cu);
c906108c
SS
7632 }
7633 return type;
7634 case DW_ATE_signed:
7635 switch (size)
7636 {
7637 case 1:
e142c38c 7638 type = dwarf2_fundamental_type (objfile, FT_SIGNED_CHAR, cu);
c906108c
SS
7639 break;
7640 case 2:
e142c38c 7641 type = dwarf2_fundamental_type (objfile, FT_SIGNED_SHORT, cu);
c906108c
SS
7642 break;
7643 default:
7644 case 4:
e142c38c 7645 type = dwarf2_fundamental_type (objfile, FT_SIGNED_INTEGER, cu);
c906108c
SS
7646 break;
7647 }
7648 return type;
7649 case DW_ATE_signed_char:
e142c38c 7650 type = dwarf2_fundamental_type (objfile, FT_SIGNED_CHAR, cu);
c906108c
SS
7651 return type;
7652 case DW_ATE_unsigned:
7653 switch (size)
7654 {
7655 case 1:
e142c38c 7656 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_CHAR, cu);
c906108c
SS
7657 break;
7658 case 2:
e142c38c 7659 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_SHORT, cu);
c906108c
SS
7660 break;
7661 default:
7662 case 4:
e142c38c 7663 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_INTEGER, cu);
c906108c
SS
7664 break;
7665 }
7666 return type;
7667 case DW_ATE_unsigned_char:
e142c38c 7668 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_CHAR, cu);
c906108c
SS
7669 return type;
7670 default:
e142c38c 7671 type = dwarf2_fundamental_type (objfile, FT_SIGNED_INTEGER, cu);
c906108c
SS
7672 return type;
7673 }
7674}
7675
7676#if 0
7677struct die_info *
fba45db2 7678copy_die (struct die_info *old_die)
c906108c
SS
7679{
7680 struct die_info *new_die;
7681 int i, num_attrs;
7682
7683 new_die = (struct die_info *) xmalloc (sizeof (struct die_info));
7684 memset (new_die, 0, sizeof (struct die_info));
7685
7686 new_die->tag = old_die->tag;
7687 new_die->has_children = old_die->has_children;
7688 new_die->abbrev = old_die->abbrev;
7689 new_die->offset = old_die->offset;
7690 new_die->type = NULL;
7691
7692 num_attrs = old_die->num_attrs;
7693 new_die->num_attrs = num_attrs;
7694 new_die->attrs = (struct attribute *)
7695 xmalloc (num_attrs * sizeof (struct attribute));
7696
7697 for (i = 0; i < old_die->num_attrs; ++i)
7698 {
7699 new_die->attrs[i].name = old_die->attrs[i].name;
7700 new_die->attrs[i].form = old_die->attrs[i].form;
7701 new_die->attrs[i].u.addr = old_die->attrs[i].u.addr;
7702 }
7703
7704 new_die->next = NULL;
7705 return new_die;
7706}
7707#endif
7708
7709/* Return sibling of die, NULL if no sibling. */
7710
f9aca02d 7711static struct die_info *
fba45db2 7712sibling_die (struct die_info *die)
c906108c 7713{
639d11d3 7714 return die->sibling;
c906108c
SS
7715}
7716
7717/* Get linkage name of a die, return NULL if not found. */
7718
7719static char *
e142c38c 7720dwarf2_linkage_name (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
7721{
7722 struct attribute *attr;
7723
e142c38c 7724 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
c906108c
SS
7725 if (attr && DW_STRING (attr))
7726 return DW_STRING (attr);
e142c38c 7727 attr = dwarf2_attr (die, DW_AT_name, cu);
c906108c
SS
7728 if (attr && DW_STRING (attr))
7729 return DW_STRING (attr);
7730 return NULL;
7731}
7732
9219021c
DC
7733/* Get name of a die, return NULL if not found. */
7734
7735static char *
e142c38c 7736dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
9219021c
DC
7737{
7738 struct attribute *attr;
7739
e142c38c 7740 attr = dwarf2_attr (die, DW_AT_name, cu);
9219021c
DC
7741 if (attr && DW_STRING (attr))
7742 return DW_STRING (attr);
7743 return NULL;
7744}
7745
7746/* Return the die that this die in an extension of, or NULL if there
7747 is none. */
7748
7749static struct die_info *
e142c38c 7750dwarf2_extension (struct die_info *die, struct dwarf2_cu *cu)
9219021c
DC
7751{
7752 struct attribute *attr;
9219021c 7753
e142c38c 7754 attr = dwarf2_attr (die, DW_AT_extension, cu);
9219021c
DC
7755 if (attr == NULL)
7756 return NULL;
7757
10b3939b 7758 return follow_die_ref (die, attr, cu);
9219021c
DC
7759}
7760
c906108c
SS
7761/* Convert a DIE tag into its string name. */
7762
7763static char *
aa1ee363 7764dwarf_tag_name (unsigned tag)
c906108c
SS
7765{
7766 switch (tag)
7767 {
7768 case DW_TAG_padding:
7769 return "DW_TAG_padding";
7770 case DW_TAG_array_type:
7771 return "DW_TAG_array_type";
7772 case DW_TAG_class_type:
7773 return "DW_TAG_class_type";
7774 case DW_TAG_entry_point:
7775 return "DW_TAG_entry_point";
7776 case DW_TAG_enumeration_type:
7777 return "DW_TAG_enumeration_type";
7778 case DW_TAG_formal_parameter:
7779 return "DW_TAG_formal_parameter";
7780 case DW_TAG_imported_declaration:
7781 return "DW_TAG_imported_declaration";
7782 case DW_TAG_label:
7783 return "DW_TAG_label";
7784 case DW_TAG_lexical_block:
7785 return "DW_TAG_lexical_block";
7786 case DW_TAG_member:
7787 return "DW_TAG_member";
7788 case DW_TAG_pointer_type:
7789 return "DW_TAG_pointer_type";
7790 case DW_TAG_reference_type:
7791 return "DW_TAG_reference_type";
7792 case DW_TAG_compile_unit:
7793 return "DW_TAG_compile_unit";
7794 case DW_TAG_string_type:
7795 return "DW_TAG_string_type";
7796 case DW_TAG_structure_type:
7797 return "DW_TAG_structure_type";
7798 case DW_TAG_subroutine_type:
7799 return "DW_TAG_subroutine_type";
7800 case DW_TAG_typedef:
7801 return "DW_TAG_typedef";
7802 case DW_TAG_union_type:
7803 return "DW_TAG_union_type";
7804 case DW_TAG_unspecified_parameters:
7805 return "DW_TAG_unspecified_parameters";
7806 case DW_TAG_variant:
7807 return "DW_TAG_variant";
7808 case DW_TAG_common_block:
7809 return "DW_TAG_common_block";
7810 case DW_TAG_common_inclusion:
7811 return "DW_TAG_common_inclusion";
7812 case DW_TAG_inheritance:
7813 return "DW_TAG_inheritance";
7814 case DW_TAG_inlined_subroutine:
7815 return "DW_TAG_inlined_subroutine";
7816 case DW_TAG_module:
7817 return "DW_TAG_module";
7818 case DW_TAG_ptr_to_member_type:
7819 return "DW_TAG_ptr_to_member_type";
7820 case DW_TAG_set_type:
7821 return "DW_TAG_set_type";
7822 case DW_TAG_subrange_type:
7823 return "DW_TAG_subrange_type";
7824 case DW_TAG_with_stmt:
7825 return "DW_TAG_with_stmt";
7826 case DW_TAG_access_declaration:
7827 return "DW_TAG_access_declaration";
7828 case DW_TAG_base_type:
7829 return "DW_TAG_base_type";
7830 case DW_TAG_catch_block:
7831 return "DW_TAG_catch_block";
7832 case DW_TAG_const_type:
7833 return "DW_TAG_const_type";
7834 case DW_TAG_constant:
7835 return "DW_TAG_constant";
7836 case DW_TAG_enumerator:
7837 return "DW_TAG_enumerator";
7838 case DW_TAG_file_type:
7839 return "DW_TAG_file_type";
7840 case DW_TAG_friend:
7841 return "DW_TAG_friend";
7842 case DW_TAG_namelist:
7843 return "DW_TAG_namelist";
7844 case DW_TAG_namelist_item:
7845 return "DW_TAG_namelist_item";
7846 case DW_TAG_packed_type:
7847 return "DW_TAG_packed_type";
7848 case DW_TAG_subprogram:
7849 return "DW_TAG_subprogram";
7850 case DW_TAG_template_type_param:
7851 return "DW_TAG_template_type_param";
7852 case DW_TAG_template_value_param:
7853 return "DW_TAG_template_value_param";
7854 case DW_TAG_thrown_type:
7855 return "DW_TAG_thrown_type";
7856 case DW_TAG_try_block:
7857 return "DW_TAG_try_block";
7858 case DW_TAG_variant_part:
7859 return "DW_TAG_variant_part";
7860 case DW_TAG_variable:
7861 return "DW_TAG_variable";
7862 case DW_TAG_volatile_type:
7863 return "DW_TAG_volatile_type";
d9fa45fe
DC
7864 case DW_TAG_dwarf_procedure:
7865 return "DW_TAG_dwarf_procedure";
7866 case DW_TAG_restrict_type:
7867 return "DW_TAG_restrict_type";
7868 case DW_TAG_interface_type:
7869 return "DW_TAG_interface_type";
7870 case DW_TAG_namespace:
7871 return "DW_TAG_namespace";
7872 case DW_TAG_imported_module:
7873 return "DW_TAG_imported_module";
7874 case DW_TAG_unspecified_type:
7875 return "DW_TAG_unspecified_type";
7876 case DW_TAG_partial_unit:
7877 return "DW_TAG_partial_unit";
7878 case DW_TAG_imported_unit:
7879 return "DW_TAG_imported_unit";
b7619582
GF
7880 case DW_TAG_condition:
7881 return "DW_TAG_condition";
7882 case DW_TAG_shared_type:
7883 return "DW_TAG_shared_type";
c906108c
SS
7884 case DW_TAG_MIPS_loop:
7885 return "DW_TAG_MIPS_loop";
b7619582
GF
7886 case DW_TAG_HP_array_descriptor:
7887 return "DW_TAG_HP_array_descriptor";
c906108c
SS
7888 case DW_TAG_format_label:
7889 return "DW_TAG_format_label";
7890 case DW_TAG_function_template:
7891 return "DW_TAG_function_template";
7892 case DW_TAG_class_template:
7893 return "DW_TAG_class_template";
b7619582
GF
7894 case DW_TAG_GNU_BINCL:
7895 return "DW_TAG_GNU_BINCL";
7896 case DW_TAG_GNU_EINCL:
7897 return "DW_TAG_GNU_EINCL";
7898 case DW_TAG_upc_shared_type:
7899 return "DW_TAG_upc_shared_type";
7900 case DW_TAG_upc_strict_type:
7901 return "DW_TAG_upc_strict_type";
7902 case DW_TAG_upc_relaxed_type:
7903 return "DW_TAG_upc_relaxed_type";
7904 case DW_TAG_PGI_kanji_type:
7905 return "DW_TAG_PGI_kanji_type";
7906 case DW_TAG_PGI_interface_block:
7907 return "DW_TAG_PGI_interface_block";
c906108c
SS
7908 default:
7909 return "DW_TAG_<unknown>";
7910 }
7911}
7912
7913/* Convert a DWARF attribute code into its string name. */
7914
7915static char *
aa1ee363 7916dwarf_attr_name (unsigned attr)
c906108c
SS
7917{
7918 switch (attr)
7919 {
7920 case DW_AT_sibling:
7921 return "DW_AT_sibling";
7922 case DW_AT_location:
7923 return "DW_AT_location";
7924 case DW_AT_name:
7925 return "DW_AT_name";
7926 case DW_AT_ordering:
7927 return "DW_AT_ordering";
7928 case DW_AT_subscr_data:
7929 return "DW_AT_subscr_data";
7930 case DW_AT_byte_size:
7931 return "DW_AT_byte_size";
7932 case DW_AT_bit_offset:
7933 return "DW_AT_bit_offset";
7934 case DW_AT_bit_size:
7935 return "DW_AT_bit_size";
7936 case DW_AT_element_list:
7937 return "DW_AT_element_list";
7938 case DW_AT_stmt_list:
7939 return "DW_AT_stmt_list";
7940 case DW_AT_low_pc:
7941 return "DW_AT_low_pc";
7942 case DW_AT_high_pc:
7943 return "DW_AT_high_pc";
7944 case DW_AT_language:
7945 return "DW_AT_language";
7946 case DW_AT_member:
7947 return "DW_AT_member";
7948 case DW_AT_discr:
7949 return "DW_AT_discr";
7950 case DW_AT_discr_value:
7951 return "DW_AT_discr_value";
7952 case DW_AT_visibility:
7953 return "DW_AT_visibility";
7954 case DW_AT_import:
7955 return "DW_AT_import";
7956 case DW_AT_string_length:
7957 return "DW_AT_string_length";
7958 case DW_AT_common_reference:
7959 return "DW_AT_common_reference";
7960 case DW_AT_comp_dir:
7961 return "DW_AT_comp_dir";
7962 case DW_AT_const_value:
7963 return "DW_AT_const_value";
7964 case DW_AT_containing_type:
7965 return "DW_AT_containing_type";
7966 case DW_AT_default_value:
7967 return "DW_AT_default_value";
7968 case DW_AT_inline:
7969 return "DW_AT_inline";
7970 case DW_AT_is_optional:
7971 return "DW_AT_is_optional";
7972 case DW_AT_lower_bound:
7973 return "DW_AT_lower_bound";
7974 case DW_AT_producer:
7975 return "DW_AT_producer";
7976 case DW_AT_prototyped:
7977 return "DW_AT_prototyped";
7978 case DW_AT_return_addr:
7979 return "DW_AT_return_addr";
7980 case DW_AT_start_scope:
7981 return "DW_AT_start_scope";
7982 case DW_AT_stride_size:
7983 return "DW_AT_stride_size";
7984 case DW_AT_upper_bound:
7985 return "DW_AT_upper_bound";
7986 case DW_AT_abstract_origin:
7987 return "DW_AT_abstract_origin";
7988 case DW_AT_accessibility:
7989 return "DW_AT_accessibility";
7990 case DW_AT_address_class:
7991 return "DW_AT_address_class";
7992 case DW_AT_artificial:
7993 return "DW_AT_artificial";
7994 case DW_AT_base_types:
7995 return "DW_AT_base_types";
7996 case DW_AT_calling_convention:
7997 return "DW_AT_calling_convention";
7998 case DW_AT_count:
7999 return "DW_AT_count";
8000 case DW_AT_data_member_location:
8001 return "DW_AT_data_member_location";
8002 case DW_AT_decl_column:
8003 return "DW_AT_decl_column";
8004 case DW_AT_decl_file:
8005 return "DW_AT_decl_file";
8006 case DW_AT_decl_line:
8007 return "DW_AT_decl_line";
8008 case DW_AT_declaration:
8009 return "DW_AT_declaration";
8010 case DW_AT_discr_list:
8011 return "DW_AT_discr_list";
8012 case DW_AT_encoding:
8013 return "DW_AT_encoding";
8014 case DW_AT_external:
8015 return "DW_AT_external";
8016 case DW_AT_frame_base:
8017 return "DW_AT_frame_base";
8018 case DW_AT_friend:
8019 return "DW_AT_friend";
8020 case DW_AT_identifier_case:
8021 return "DW_AT_identifier_case";
8022 case DW_AT_macro_info:
8023 return "DW_AT_macro_info";
8024 case DW_AT_namelist_items:
8025 return "DW_AT_namelist_items";
8026 case DW_AT_priority:
8027 return "DW_AT_priority";
8028 case DW_AT_segment:
8029 return "DW_AT_segment";
8030 case DW_AT_specification:
8031 return "DW_AT_specification";
8032 case DW_AT_static_link:
8033 return "DW_AT_static_link";
8034 case DW_AT_type:
8035 return "DW_AT_type";
8036 case DW_AT_use_location:
8037 return "DW_AT_use_location";
8038 case DW_AT_variable_parameter:
8039 return "DW_AT_variable_parameter";
8040 case DW_AT_virtuality:
8041 return "DW_AT_virtuality";
8042 case DW_AT_vtable_elem_location:
8043 return "DW_AT_vtable_elem_location";
b7619582 8044 /* DWARF 3 values. */
d9fa45fe
DC
8045 case DW_AT_allocated:
8046 return "DW_AT_allocated";
8047 case DW_AT_associated:
8048 return "DW_AT_associated";
8049 case DW_AT_data_location:
8050 return "DW_AT_data_location";
8051 case DW_AT_stride:
8052 return "DW_AT_stride";
8053 case DW_AT_entry_pc:
8054 return "DW_AT_entry_pc";
8055 case DW_AT_use_UTF8:
8056 return "DW_AT_use_UTF8";
8057 case DW_AT_extension:
8058 return "DW_AT_extension";
8059 case DW_AT_ranges:
8060 return "DW_AT_ranges";
8061 case DW_AT_trampoline:
8062 return "DW_AT_trampoline";
8063 case DW_AT_call_column:
8064 return "DW_AT_call_column";
8065 case DW_AT_call_file:
8066 return "DW_AT_call_file";
8067 case DW_AT_call_line:
8068 return "DW_AT_call_line";
b7619582
GF
8069 case DW_AT_description:
8070 return "DW_AT_description";
8071 case DW_AT_binary_scale:
8072 return "DW_AT_binary_scale";
8073 case DW_AT_decimal_scale:
8074 return "DW_AT_decimal_scale";
8075 case DW_AT_small:
8076 return "DW_AT_small";
8077 case DW_AT_decimal_sign:
8078 return "DW_AT_decimal_sign";
8079 case DW_AT_digit_count:
8080 return "DW_AT_digit_count";
8081 case DW_AT_picture_string:
8082 return "DW_AT_picture_string";
8083 case DW_AT_mutable:
8084 return "DW_AT_mutable";
8085 case DW_AT_threads_scaled:
8086 return "DW_AT_threads_scaled";
8087 case DW_AT_explicit:
8088 return "DW_AT_explicit";
8089 case DW_AT_object_pointer:
8090 return "DW_AT_object_pointer";
8091 case DW_AT_endianity:
8092 return "DW_AT_endianity";
8093 case DW_AT_elemental:
8094 return "DW_AT_elemental";
8095 case DW_AT_pure:
8096 return "DW_AT_pure";
8097 case DW_AT_recursive:
8098 return "DW_AT_recursive";
c906108c 8099#ifdef MIPS
b7619582 8100 /* SGI/MIPS extensions. */
c906108c
SS
8101 case DW_AT_MIPS_fde:
8102 return "DW_AT_MIPS_fde";
8103 case DW_AT_MIPS_loop_begin:
8104 return "DW_AT_MIPS_loop_begin";
8105 case DW_AT_MIPS_tail_loop_begin:
8106 return "DW_AT_MIPS_tail_loop_begin";
8107 case DW_AT_MIPS_epilog_begin:
8108 return "DW_AT_MIPS_epilog_begin";
8109 case DW_AT_MIPS_loop_unroll_factor:
8110 return "DW_AT_MIPS_loop_unroll_factor";
8111 case DW_AT_MIPS_software_pipeline_depth:
8112 return "DW_AT_MIPS_software_pipeline_depth";
8113 case DW_AT_MIPS_linkage_name:
8114 return "DW_AT_MIPS_linkage_name";
b7619582
GF
8115 case DW_AT_MIPS_stride:
8116 return "DW_AT_MIPS_stride";
8117 case DW_AT_MIPS_abstract_name:
8118 return "DW_AT_MIPS_abstract_name";
8119 case DW_AT_MIPS_clone_origin:
8120 return "DW_AT_MIPS_clone_origin";
8121 case DW_AT_MIPS_has_inlines:
8122 return "DW_AT_MIPS_has_inlines";
8123#endif
8124 /* HP extensions. */
8125 case DW_AT_HP_block_index:
8126 return "DW_AT_HP_block_index";
8127 case DW_AT_HP_unmodifiable:
8128 return "DW_AT_HP_unmodifiable";
8129 case DW_AT_HP_actuals_stmt_list:
8130 return "DW_AT_HP_actuals_stmt_list";
8131 case DW_AT_HP_proc_per_section:
8132 return "DW_AT_HP_proc_per_section";
8133 case DW_AT_HP_raw_data_ptr:
8134 return "DW_AT_HP_raw_data_ptr";
8135 case DW_AT_HP_pass_by_reference:
8136 return "DW_AT_HP_pass_by_reference";
8137 case DW_AT_HP_opt_level:
8138 return "DW_AT_HP_opt_level";
8139 case DW_AT_HP_prof_version_id:
8140 return "DW_AT_HP_prof_version_id";
8141 case DW_AT_HP_opt_flags:
8142 return "DW_AT_HP_opt_flags";
8143 case DW_AT_HP_cold_region_low_pc:
8144 return "DW_AT_HP_cold_region_low_pc";
8145 case DW_AT_HP_cold_region_high_pc:
8146 return "DW_AT_HP_cold_region_high_pc";
8147 case DW_AT_HP_all_variables_modifiable:
8148 return "DW_AT_HP_all_variables_modifiable";
8149 case DW_AT_HP_linkage_name:
8150 return "DW_AT_HP_linkage_name";
8151 case DW_AT_HP_prof_flags:
8152 return "DW_AT_HP_prof_flags";
8153 /* GNU extensions. */
c906108c
SS
8154 case DW_AT_sf_names:
8155 return "DW_AT_sf_names";
8156 case DW_AT_src_info:
8157 return "DW_AT_src_info";
8158 case DW_AT_mac_info:
8159 return "DW_AT_mac_info";
8160 case DW_AT_src_coords:
8161 return "DW_AT_src_coords";
8162 case DW_AT_body_begin:
8163 return "DW_AT_body_begin";
8164 case DW_AT_body_end:
8165 return "DW_AT_body_end";
f5f8a009
EZ
8166 case DW_AT_GNU_vector:
8167 return "DW_AT_GNU_vector";
b7619582
GF
8168 /* VMS extensions. */
8169 case DW_AT_VMS_rtnbeg_pd_address:
8170 return "DW_AT_VMS_rtnbeg_pd_address";
8171 /* UPC extension. */
8172 case DW_AT_upc_threads_scaled:
8173 return "DW_AT_upc_threads_scaled";
8174 /* PGI (STMicroelectronics) extensions. */
8175 case DW_AT_PGI_lbase:
8176 return "DW_AT_PGI_lbase";
8177 case DW_AT_PGI_soffset:
8178 return "DW_AT_PGI_soffset";
8179 case DW_AT_PGI_lstride:
8180 return "DW_AT_PGI_lstride";
c906108c
SS
8181 default:
8182 return "DW_AT_<unknown>";
8183 }
8184}
8185
8186/* Convert a DWARF value form code into its string name. */
8187
8188static char *
aa1ee363 8189dwarf_form_name (unsigned form)
c906108c
SS
8190{
8191 switch (form)
8192 {
8193 case DW_FORM_addr:
8194 return "DW_FORM_addr";
8195 case DW_FORM_block2:
8196 return "DW_FORM_block2";
8197 case DW_FORM_block4:
8198 return "DW_FORM_block4";
8199 case DW_FORM_data2:
8200 return "DW_FORM_data2";
8201 case DW_FORM_data4:
8202 return "DW_FORM_data4";
8203 case DW_FORM_data8:
8204 return "DW_FORM_data8";
8205 case DW_FORM_string:
8206 return "DW_FORM_string";
8207 case DW_FORM_block:
8208 return "DW_FORM_block";
8209 case DW_FORM_block1:
8210 return "DW_FORM_block1";
8211 case DW_FORM_data1:
8212 return "DW_FORM_data1";
8213 case DW_FORM_flag:
8214 return "DW_FORM_flag";
8215 case DW_FORM_sdata:
8216 return "DW_FORM_sdata";
8217 case DW_FORM_strp:
8218 return "DW_FORM_strp";
8219 case DW_FORM_udata:
8220 return "DW_FORM_udata";
8221 case DW_FORM_ref_addr:
8222 return "DW_FORM_ref_addr";
8223 case DW_FORM_ref1:
8224 return "DW_FORM_ref1";
8225 case DW_FORM_ref2:
8226 return "DW_FORM_ref2";
8227 case DW_FORM_ref4:
8228 return "DW_FORM_ref4";
8229 case DW_FORM_ref8:
8230 return "DW_FORM_ref8";
8231 case DW_FORM_ref_udata:
8232 return "DW_FORM_ref_udata";
8233 case DW_FORM_indirect:
8234 return "DW_FORM_indirect";
8235 default:
8236 return "DW_FORM_<unknown>";
8237 }
8238}
8239
8240/* Convert a DWARF stack opcode into its string name. */
8241
8242static char *
aa1ee363 8243dwarf_stack_op_name (unsigned op)
c906108c
SS
8244{
8245 switch (op)
8246 {
8247 case DW_OP_addr:
8248 return "DW_OP_addr";
8249 case DW_OP_deref:
8250 return "DW_OP_deref";
8251 case DW_OP_const1u:
8252 return "DW_OP_const1u";
8253 case DW_OP_const1s:
8254 return "DW_OP_const1s";
8255 case DW_OP_const2u:
8256 return "DW_OP_const2u";
8257 case DW_OP_const2s:
8258 return "DW_OP_const2s";
8259 case DW_OP_const4u:
8260 return "DW_OP_const4u";
8261 case DW_OP_const4s:
8262 return "DW_OP_const4s";
8263 case DW_OP_const8u:
8264 return "DW_OP_const8u";
8265 case DW_OP_const8s:
8266 return "DW_OP_const8s";
8267 case DW_OP_constu:
8268 return "DW_OP_constu";
8269 case DW_OP_consts:
8270 return "DW_OP_consts";
8271 case DW_OP_dup:
8272 return "DW_OP_dup";
8273 case DW_OP_drop:
8274 return "DW_OP_drop";
8275 case DW_OP_over:
8276 return "DW_OP_over";
8277 case DW_OP_pick:
8278 return "DW_OP_pick";
8279 case DW_OP_swap:
8280 return "DW_OP_swap";
8281 case DW_OP_rot:
8282 return "DW_OP_rot";
8283 case DW_OP_xderef:
8284 return "DW_OP_xderef";
8285 case DW_OP_abs:
8286 return "DW_OP_abs";
8287 case DW_OP_and:
8288 return "DW_OP_and";
8289 case DW_OP_div:
8290 return "DW_OP_div";
8291 case DW_OP_minus:
8292 return "DW_OP_minus";
8293 case DW_OP_mod:
8294 return "DW_OP_mod";
8295 case DW_OP_mul:
8296 return "DW_OP_mul";
8297 case DW_OP_neg:
8298 return "DW_OP_neg";
8299 case DW_OP_not:
8300 return "DW_OP_not";
8301 case DW_OP_or:
8302 return "DW_OP_or";
8303 case DW_OP_plus:
8304 return "DW_OP_plus";
8305 case DW_OP_plus_uconst:
8306 return "DW_OP_plus_uconst";
8307 case DW_OP_shl:
8308 return "DW_OP_shl";
8309 case DW_OP_shr:
8310 return "DW_OP_shr";
8311 case DW_OP_shra:
8312 return "DW_OP_shra";
8313 case DW_OP_xor:
8314 return "DW_OP_xor";
8315 case DW_OP_bra:
8316 return "DW_OP_bra";
8317 case DW_OP_eq:
8318 return "DW_OP_eq";
8319 case DW_OP_ge:
8320 return "DW_OP_ge";
8321 case DW_OP_gt:
8322 return "DW_OP_gt";
8323 case DW_OP_le:
8324 return "DW_OP_le";
8325 case DW_OP_lt:
8326 return "DW_OP_lt";
8327 case DW_OP_ne:
8328 return "DW_OP_ne";
8329 case DW_OP_skip:
8330 return "DW_OP_skip";
8331 case DW_OP_lit0:
8332 return "DW_OP_lit0";
8333 case DW_OP_lit1:
8334 return "DW_OP_lit1";
8335 case DW_OP_lit2:
8336 return "DW_OP_lit2";
8337 case DW_OP_lit3:
8338 return "DW_OP_lit3";
8339 case DW_OP_lit4:
8340 return "DW_OP_lit4";
8341 case DW_OP_lit5:
8342 return "DW_OP_lit5";
8343 case DW_OP_lit6:
8344 return "DW_OP_lit6";
8345 case DW_OP_lit7:
8346 return "DW_OP_lit7";
8347 case DW_OP_lit8:
8348 return "DW_OP_lit8";
8349 case DW_OP_lit9:
8350 return "DW_OP_lit9";
8351 case DW_OP_lit10:
8352 return "DW_OP_lit10";
8353 case DW_OP_lit11:
8354 return "DW_OP_lit11";
8355 case DW_OP_lit12:
8356 return "DW_OP_lit12";
8357 case DW_OP_lit13:
8358 return "DW_OP_lit13";
8359 case DW_OP_lit14:
8360 return "DW_OP_lit14";
8361 case DW_OP_lit15:
8362 return "DW_OP_lit15";
8363 case DW_OP_lit16:
8364 return "DW_OP_lit16";
8365 case DW_OP_lit17:
8366 return "DW_OP_lit17";
8367 case DW_OP_lit18:
8368 return "DW_OP_lit18";
8369 case DW_OP_lit19:
8370 return "DW_OP_lit19";
8371 case DW_OP_lit20:
8372 return "DW_OP_lit20";
8373 case DW_OP_lit21:
8374 return "DW_OP_lit21";
8375 case DW_OP_lit22:
8376 return "DW_OP_lit22";
8377 case DW_OP_lit23:
8378 return "DW_OP_lit23";
8379 case DW_OP_lit24:
8380 return "DW_OP_lit24";
8381 case DW_OP_lit25:
8382 return "DW_OP_lit25";
8383 case DW_OP_lit26:
8384 return "DW_OP_lit26";
8385 case DW_OP_lit27:
8386 return "DW_OP_lit27";
8387 case DW_OP_lit28:
8388 return "DW_OP_lit28";
8389 case DW_OP_lit29:
8390 return "DW_OP_lit29";
8391 case DW_OP_lit30:
8392 return "DW_OP_lit30";
8393 case DW_OP_lit31:
8394 return "DW_OP_lit31";
8395 case DW_OP_reg0:
8396 return "DW_OP_reg0";
8397 case DW_OP_reg1:
8398 return "DW_OP_reg1";
8399 case DW_OP_reg2:
8400 return "DW_OP_reg2";
8401 case DW_OP_reg3:
8402 return "DW_OP_reg3";
8403 case DW_OP_reg4:
8404 return "DW_OP_reg4";
8405 case DW_OP_reg5:
8406 return "DW_OP_reg5";
8407 case DW_OP_reg6:
8408 return "DW_OP_reg6";
8409 case DW_OP_reg7:
8410 return "DW_OP_reg7";
8411 case DW_OP_reg8:
8412 return "DW_OP_reg8";
8413 case DW_OP_reg9:
8414 return "DW_OP_reg9";
8415 case DW_OP_reg10:
8416 return "DW_OP_reg10";
8417 case DW_OP_reg11:
8418 return "DW_OP_reg11";
8419 case DW_OP_reg12:
8420 return "DW_OP_reg12";
8421 case DW_OP_reg13:
8422 return "DW_OP_reg13";
8423 case DW_OP_reg14:
8424 return "DW_OP_reg14";
8425 case DW_OP_reg15:
8426 return "DW_OP_reg15";
8427 case DW_OP_reg16:
8428 return "DW_OP_reg16";
8429 case DW_OP_reg17:
8430 return "DW_OP_reg17";
8431 case DW_OP_reg18:
8432 return "DW_OP_reg18";
8433 case DW_OP_reg19:
8434 return "DW_OP_reg19";
8435 case DW_OP_reg20:
8436 return "DW_OP_reg20";
8437 case DW_OP_reg21:
8438 return "DW_OP_reg21";
8439 case DW_OP_reg22:
8440 return "DW_OP_reg22";
8441 case DW_OP_reg23:
8442 return "DW_OP_reg23";
8443 case DW_OP_reg24:
8444 return "DW_OP_reg24";
8445 case DW_OP_reg25:
8446 return "DW_OP_reg25";
8447 case DW_OP_reg26:
8448 return "DW_OP_reg26";
8449 case DW_OP_reg27:
8450 return "DW_OP_reg27";
8451 case DW_OP_reg28:
8452 return "DW_OP_reg28";
8453 case DW_OP_reg29:
8454 return "DW_OP_reg29";
8455 case DW_OP_reg30:
8456 return "DW_OP_reg30";
8457 case DW_OP_reg31:
8458 return "DW_OP_reg31";
8459 case DW_OP_breg0:
8460 return "DW_OP_breg0";
8461 case DW_OP_breg1:
8462 return "DW_OP_breg1";
8463 case DW_OP_breg2:
8464 return "DW_OP_breg2";
8465 case DW_OP_breg3:
8466 return "DW_OP_breg3";
8467 case DW_OP_breg4:
8468 return "DW_OP_breg4";
8469 case DW_OP_breg5:
8470 return "DW_OP_breg5";
8471 case DW_OP_breg6:
8472 return "DW_OP_breg6";
8473 case DW_OP_breg7:
8474 return "DW_OP_breg7";
8475 case DW_OP_breg8:
8476 return "DW_OP_breg8";
8477 case DW_OP_breg9:
8478 return "DW_OP_breg9";
8479 case DW_OP_breg10:
8480 return "DW_OP_breg10";
8481 case DW_OP_breg11:
8482 return "DW_OP_breg11";
8483 case DW_OP_breg12:
8484 return "DW_OP_breg12";
8485 case DW_OP_breg13:
8486 return "DW_OP_breg13";
8487 case DW_OP_breg14:
8488 return "DW_OP_breg14";
8489 case DW_OP_breg15:
8490 return "DW_OP_breg15";
8491 case DW_OP_breg16:
8492 return "DW_OP_breg16";
8493 case DW_OP_breg17:
8494 return "DW_OP_breg17";
8495 case DW_OP_breg18:
8496 return "DW_OP_breg18";
8497 case DW_OP_breg19:
8498 return "DW_OP_breg19";
8499 case DW_OP_breg20:
8500 return "DW_OP_breg20";
8501 case DW_OP_breg21:
8502 return "DW_OP_breg21";
8503 case DW_OP_breg22:
8504 return "DW_OP_breg22";
8505 case DW_OP_breg23:
8506 return "DW_OP_breg23";
8507 case DW_OP_breg24:
8508 return "DW_OP_breg24";
8509 case DW_OP_breg25:
8510 return "DW_OP_breg25";
8511 case DW_OP_breg26:
8512 return "DW_OP_breg26";
8513 case DW_OP_breg27:
8514 return "DW_OP_breg27";
8515 case DW_OP_breg28:
8516 return "DW_OP_breg28";
8517 case DW_OP_breg29:
8518 return "DW_OP_breg29";
8519 case DW_OP_breg30:
8520 return "DW_OP_breg30";
8521 case DW_OP_breg31:
8522 return "DW_OP_breg31";
8523 case DW_OP_regx:
8524 return "DW_OP_regx";
8525 case DW_OP_fbreg:
8526 return "DW_OP_fbreg";
8527 case DW_OP_bregx:
8528 return "DW_OP_bregx";
8529 case DW_OP_piece:
8530 return "DW_OP_piece";
8531 case DW_OP_deref_size:
8532 return "DW_OP_deref_size";
8533 case DW_OP_xderef_size:
8534 return "DW_OP_xderef_size";
8535 case DW_OP_nop:
8536 return "DW_OP_nop";
b7619582 8537 /* DWARF 3 extensions. */
ed348acc
EZ
8538 case DW_OP_push_object_address:
8539 return "DW_OP_push_object_address";
8540 case DW_OP_call2:
8541 return "DW_OP_call2";
8542 case DW_OP_call4:
8543 return "DW_OP_call4";
8544 case DW_OP_call_ref:
8545 return "DW_OP_call_ref";
b7619582
GF
8546 /* GNU extensions. */
8547 case DW_OP_form_tls_address:
8548 return "DW_OP_form_tls_address";
8549 case DW_OP_call_frame_cfa:
8550 return "DW_OP_call_frame_cfa";
8551 case DW_OP_bit_piece:
8552 return "DW_OP_bit_piece";
ed348acc
EZ
8553 case DW_OP_GNU_push_tls_address:
8554 return "DW_OP_GNU_push_tls_address";
b7619582
GF
8555 /* HP extensions. */
8556 case DW_OP_HP_is_value:
8557 return "DW_OP_HP_is_value";
8558 case DW_OP_HP_fltconst4:
8559 return "DW_OP_HP_fltconst4";
8560 case DW_OP_HP_fltconst8:
8561 return "DW_OP_HP_fltconst8";
8562 case DW_OP_HP_mod_range:
8563 return "DW_OP_HP_mod_range";
8564 case DW_OP_HP_unmod_range:
8565 return "DW_OP_HP_unmod_range";
8566 case DW_OP_HP_tls:
8567 return "DW_OP_HP_tls";
c906108c
SS
8568 default:
8569 return "OP_<unknown>";
8570 }
8571}
8572
8573static char *
fba45db2 8574dwarf_bool_name (unsigned mybool)
c906108c
SS
8575{
8576 if (mybool)
8577 return "TRUE";
8578 else
8579 return "FALSE";
8580}
8581
8582/* Convert a DWARF type code into its string name. */
8583
8584static char *
aa1ee363 8585dwarf_type_encoding_name (unsigned enc)
c906108c
SS
8586{
8587 switch (enc)
8588 {
b7619582
GF
8589 case DW_ATE_void:
8590 return "DW_ATE_void";
c906108c
SS
8591 case DW_ATE_address:
8592 return "DW_ATE_address";
8593 case DW_ATE_boolean:
8594 return "DW_ATE_boolean";
8595 case DW_ATE_complex_float:
8596 return "DW_ATE_complex_float";
8597 case DW_ATE_float:
8598 return "DW_ATE_float";
8599 case DW_ATE_signed:
8600 return "DW_ATE_signed";
8601 case DW_ATE_signed_char:
8602 return "DW_ATE_signed_char";
8603 case DW_ATE_unsigned:
8604 return "DW_ATE_unsigned";
8605 case DW_ATE_unsigned_char:
8606 return "DW_ATE_unsigned_char";
b7619582 8607 /* DWARF 3. */
d9fa45fe
DC
8608 case DW_ATE_imaginary_float:
8609 return "DW_ATE_imaginary_float";
b7619582
GF
8610 case DW_ATE_packed_decimal:
8611 return "DW_ATE_packed_decimal";
8612 case DW_ATE_numeric_string:
8613 return "DW_ATE_numeric_string";
8614 case DW_ATE_edited:
8615 return "DW_ATE_edited";
8616 case DW_ATE_signed_fixed:
8617 return "DW_ATE_signed_fixed";
8618 case DW_ATE_unsigned_fixed:
8619 return "DW_ATE_unsigned_fixed";
8620 case DW_ATE_decimal_float:
8621 return "DW_ATE_decimal_float";
8622 /* HP extensions. */
8623 case DW_ATE_HP_float80:
8624 return "DW_ATE_HP_float80";
8625 case DW_ATE_HP_complex_float80:
8626 return "DW_ATE_HP_complex_float80";
8627 case DW_ATE_HP_float128:
8628 return "DW_ATE_HP_float128";
8629 case DW_ATE_HP_complex_float128:
8630 return "DW_ATE_HP_complex_float128";
8631 case DW_ATE_HP_floathpintel:
8632 return "DW_ATE_HP_floathpintel";
8633 case DW_ATE_HP_imaginary_float80:
8634 return "DW_ATE_HP_imaginary_float80";
8635 case DW_ATE_HP_imaginary_float128:
8636 return "DW_ATE_HP_imaginary_float128";
c906108c
SS
8637 default:
8638 return "DW_ATE_<unknown>";
8639 }
8640}
8641
8642/* Convert a DWARF call frame info operation to its string name. */
8643
8644#if 0
8645static char *
aa1ee363 8646dwarf_cfi_name (unsigned cfi_opc)
c906108c
SS
8647{
8648 switch (cfi_opc)
8649 {
8650 case DW_CFA_advance_loc:
8651 return "DW_CFA_advance_loc";
8652 case DW_CFA_offset:
8653 return "DW_CFA_offset";
8654 case DW_CFA_restore:
8655 return "DW_CFA_restore";
8656 case DW_CFA_nop:
8657 return "DW_CFA_nop";
8658 case DW_CFA_set_loc:
8659 return "DW_CFA_set_loc";
8660 case DW_CFA_advance_loc1:
8661 return "DW_CFA_advance_loc1";
8662 case DW_CFA_advance_loc2:
8663 return "DW_CFA_advance_loc2";
8664 case DW_CFA_advance_loc4:
8665 return "DW_CFA_advance_loc4";
8666 case DW_CFA_offset_extended:
8667 return "DW_CFA_offset_extended";
8668 case DW_CFA_restore_extended:
8669 return "DW_CFA_restore_extended";
8670 case DW_CFA_undefined:
8671 return "DW_CFA_undefined";
8672 case DW_CFA_same_value:
8673 return "DW_CFA_same_value";
8674 case DW_CFA_register:
8675 return "DW_CFA_register";
8676 case DW_CFA_remember_state:
8677 return "DW_CFA_remember_state";
8678 case DW_CFA_restore_state:
8679 return "DW_CFA_restore_state";
8680 case DW_CFA_def_cfa:
8681 return "DW_CFA_def_cfa";
8682 case DW_CFA_def_cfa_register:
8683 return "DW_CFA_def_cfa_register";
8684 case DW_CFA_def_cfa_offset:
8685 return "DW_CFA_def_cfa_offset";
b7619582 8686 /* DWARF 3. */
985cb1a3
JM
8687 case DW_CFA_def_cfa_expression:
8688 return "DW_CFA_def_cfa_expression";
8689 case DW_CFA_expression:
8690 return "DW_CFA_expression";
8691 case DW_CFA_offset_extended_sf:
8692 return "DW_CFA_offset_extended_sf";
8693 case DW_CFA_def_cfa_sf:
8694 return "DW_CFA_def_cfa_sf";
8695 case DW_CFA_def_cfa_offset_sf:
8696 return "DW_CFA_def_cfa_offset_sf";
b7619582
GF
8697 case DW_CFA_val_offset:
8698 return "DW_CFA_val_offset";
8699 case DW_CFA_val_offset_sf:
8700 return "DW_CFA_val_offset_sf";
8701 case DW_CFA_val_expression:
8702 return "DW_CFA_val_expression";
8703 /* SGI/MIPS specific. */
c906108c
SS
8704 case DW_CFA_MIPS_advance_loc8:
8705 return "DW_CFA_MIPS_advance_loc8";
b7619582 8706 /* GNU extensions. */
985cb1a3
JM
8707 case DW_CFA_GNU_window_save:
8708 return "DW_CFA_GNU_window_save";
8709 case DW_CFA_GNU_args_size:
8710 return "DW_CFA_GNU_args_size";
8711 case DW_CFA_GNU_negative_offset_extended:
8712 return "DW_CFA_GNU_negative_offset_extended";
c906108c
SS
8713 default:
8714 return "DW_CFA_<unknown>";
8715 }
8716}
8717#endif
8718
f9aca02d 8719static void
fba45db2 8720dump_die (struct die_info *die)
c906108c
SS
8721{
8722 unsigned int i;
8723
48cd0caa 8724 fprintf_unfiltered (gdb_stderr, "Die: %s (abbrev = %d, offset = %d)\n",
c906108c 8725 dwarf_tag_name (die->tag), die->abbrev, die->offset);
48cd0caa 8726 fprintf_unfiltered (gdb_stderr, "\thas children: %s\n",
639d11d3 8727 dwarf_bool_name (die->child != NULL));
c906108c 8728
48cd0caa 8729 fprintf_unfiltered (gdb_stderr, "\tattributes:\n");
c906108c
SS
8730 for (i = 0; i < die->num_attrs; ++i)
8731 {
48cd0caa 8732 fprintf_unfiltered (gdb_stderr, "\t\t%s (%s) ",
c906108c
SS
8733 dwarf_attr_name (die->attrs[i].name),
8734 dwarf_form_name (die->attrs[i].form));
8735 switch (die->attrs[i].form)
8736 {
8737 case DW_FORM_ref_addr:
8738 case DW_FORM_addr:
48cd0caa 8739 fprintf_unfiltered (gdb_stderr, "address: ");
66bf4b3a 8740 deprecated_print_address_numeric (DW_ADDR (&die->attrs[i]), 1, gdb_stderr);
c906108c
SS
8741 break;
8742 case DW_FORM_block2:
8743 case DW_FORM_block4:
8744 case DW_FORM_block:
8745 case DW_FORM_block1:
48cd0caa 8746 fprintf_unfiltered (gdb_stderr, "block: size %d", DW_BLOCK (&die->attrs[i])->size);
c906108c 8747 break;
10b3939b
DJ
8748 case DW_FORM_ref1:
8749 case DW_FORM_ref2:
8750 case DW_FORM_ref4:
8751 fprintf_unfiltered (gdb_stderr, "constant ref: %ld (adjusted)",
8752 (long) (DW_ADDR (&die->attrs[i])));
8753 break;
c906108c
SS
8754 case DW_FORM_data1:
8755 case DW_FORM_data2:
8756 case DW_FORM_data4:
ce5d95e1 8757 case DW_FORM_data8:
c906108c
SS
8758 case DW_FORM_udata:
8759 case DW_FORM_sdata:
48cd0caa 8760 fprintf_unfiltered (gdb_stderr, "constant: %ld", DW_UNSND (&die->attrs[i]));
c906108c
SS
8761 break;
8762 case DW_FORM_string:
4bdf3d34 8763 case DW_FORM_strp:
48cd0caa 8764 fprintf_unfiltered (gdb_stderr, "string: \"%s\"",
c906108c 8765 DW_STRING (&die->attrs[i])
c5aa993b 8766 ? DW_STRING (&die->attrs[i]) : "");
c906108c
SS
8767 break;
8768 case DW_FORM_flag:
8769 if (DW_UNSND (&die->attrs[i]))
48cd0caa 8770 fprintf_unfiltered (gdb_stderr, "flag: TRUE");
c906108c 8771 else
48cd0caa 8772 fprintf_unfiltered (gdb_stderr, "flag: FALSE");
c906108c 8773 break;
a8329558
KW
8774 case DW_FORM_indirect:
8775 /* the reader will have reduced the indirect form to
8776 the "base form" so this form should not occur */
48cd0caa 8777 fprintf_unfiltered (gdb_stderr, "unexpected attribute form: DW_FORM_indirect");
a8329558 8778 break;
c906108c 8779 default:
48cd0caa 8780 fprintf_unfiltered (gdb_stderr, "unsupported attribute form: %d.",
c5aa993b 8781 die->attrs[i].form);
c906108c 8782 }
48cd0caa 8783 fprintf_unfiltered (gdb_stderr, "\n");
c906108c
SS
8784 }
8785}
8786
f9aca02d 8787static void
fba45db2 8788dump_die_list (struct die_info *die)
c906108c
SS
8789{
8790 while (die)
8791 {
8792 dump_die (die);
639d11d3
DC
8793 if (die->child != NULL)
8794 dump_die_list (die->child);
8795 if (die->sibling != NULL)
8796 dump_die_list (die->sibling);
c906108c
SS
8797 }
8798}
8799
f9aca02d 8800static void
10b3939b
DJ
8801store_in_ref_table (unsigned int offset, struct die_info *die,
8802 struct dwarf2_cu *cu)
c906108c
SS
8803{
8804 int h;
8805 struct die_info *old;
8806
8807 h = (offset % REF_HASH_SIZE);
10b3939b 8808 old = cu->die_ref_table[h];
c906108c 8809 die->next_ref = old;
10b3939b 8810 cu->die_ref_table[h] = die;
c906108c
SS
8811}
8812
8813static unsigned int
e142c38c 8814dwarf2_get_ref_die_offset (struct attribute *attr, struct dwarf2_cu *cu)
c906108c
SS
8815{
8816 unsigned int result = 0;
8817
8818 switch (attr->form)
8819 {
8820 case DW_FORM_ref_addr:
c906108c
SS
8821 case DW_FORM_ref1:
8822 case DW_FORM_ref2:
8823 case DW_FORM_ref4:
613e1657 8824 case DW_FORM_ref8:
c906108c 8825 case DW_FORM_ref_udata:
10b3939b 8826 result = DW_ADDR (attr);
c906108c
SS
8827 break;
8828 default:
4d3c2250 8829 complaint (&symfile_complaints,
e2e0b3e5 8830 _("unsupported die ref attribute form: '%s'"),
4d3c2250 8831 dwarf_form_name (attr->form));
c906108c
SS
8832 }
8833 return result;
8834}
8835
a02abb62
JB
8836/* Return the constant value held by the given attribute. Return -1
8837 if the value held by the attribute is not constant. */
8838
8839static int
8840dwarf2_get_attr_constant_value (struct attribute *attr, int default_value)
8841{
8842 if (attr->form == DW_FORM_sdata)
8843 return DW_SND (attr);
8844 else if (attr->form == DW_FORM_udata
8845 || attr->form == DW_FORM_data1
8846 || attr->form == DW_FORM_data2
8847 || attr->form == DW_FORM_data4
8848 || attr->form == DW_FORM_data8)
8849 return DW_UNSND (attr);
8850 else
8851 {
e2e0b3e5 8852 complaint (&symfile_complaints, _("Attribute value is not a constant (%s)"),
a02abb62
JB
8853 dwarf_form_name (attr->form));
8854 return default_value;
8855 }
8856}
8857
f9aca02d 8858static struct die_info *
10b3939b
DJ
8859follow_die_ref (struct die_info *src_die, struct attribute *attr,
8860 struct dwarf2_cu *cu)
c906108c
SS
8861{
8862 struct die_info *die;
10b3939b 8863 unsigned int offset;
c906108c 8864 int h;
10b3939b
DJ
8865 struct die_info temp_die;
8866 struct dwarf2_cu *target_cu;
8867
8868 offset = dwarf2_get_ref_die_offset (attr, cu);
8869
8870 if (DW_ADDR (attr) < cu->header.offset
8871 || DW_ADDR (attr) >= cu->header.offset + cu->header.length)
8872 {
8873 struct dwarf2_per_cu_data *per_cu;
8874 per_cu = dwarf2_find_containing_comp_unit (DW_ADDR (attr),
8875 cu->objfile);
8876 target_cu = per_cu->cu;
8877 }
8878 else
8879 target_cu = cu;
c906108c
SS
8880
8881 h = (offset % REF_HASH_SIZE);
10b3939b 8882 die = target_cu->die_ref_table[h];
c906108c
SS
8883 while (die)
8884 {
8885 if (die->offset == offset)
10b3939b 8886 return die;
c906108c
SS
8887 die = die->next_ref;
8888 }
10b3939b 8889
8a3fe4f8
AC
8890 error (_("Dwarf Error: Cannot find DIE at 0x%lx referenced from DIE "
8891 "at 0x%lx [in module %s]"),
10b3939b
DJ
8892 (long) src_die->offset, (long) offset, cu->objfile->name);
8893
c906108c
SS
8894 return NULL;
8895}
8896
8897static struct type *
e142c38c
DJ
8898dwarf2_fundamental_type (struct objfile *objfile, int typeid,
8899 struct dwarf2_cu *cu)
c906108c
SS
8900{
8901 if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
8902 {
8a3fe4f8 8903 error (_("Dwarf Error: internal error - invalid fundamental type id %d [in module %s]"),
659b0389 8904 typeid, objfile->name);
c906108c
SS
8905 }
8906
8907 /* Look for this particular type in the fundamental type vector. If
8908 one is not found, create and install one appropriate for the
8909 current language and the current target machine. */
8910
e142c38c 8911 if (cu->ftypes[typeid] == NULL)
c906108c 8912 {
e142c38c 8913 cu->ftypes[typeid] = cu->language_defn->la_fund_type (objfile, typeid);
c906108c
SS
8914 }
8915
e142c38c 8916 return (cu->ftypes[typeid]);
c906108c
SS
8917}
8918
8919/* Decode simple location descriptions.
8920 Given a pointer to a dwarf block that defines a location, compute
8921 the location and return the value.
8922
4cecd739
DJ
8923 NOTE drow/2003-11-18: This function is called in two situations
8924 now: for the address of static or global variables (partial symbols
8925 only) and for offsets into structures which are expected to be
8926 (more or less) constant. The partial symbol case should go away,
8927 and only the constant case should remain. That will let this
8928 function complain more accurately. A few special modes are allowed
8929 without complaint for global variables (for instance, global
8930 register values and thread-local values).
c906108c
SS
8931
8932 A location description containing no operations indicates that the
4cecd739 8933 object is optimized out. The return value is 0 for that case.
6b992462
DJ
8934 FIXME drow/2003-11-16: No callers check for this case any more; soon all
8935 callers will only want a very basic result and this can become a
8936 complaint.
c906108c 8937
c906108c
SS
8938 Note that stack[0] is unused except as a default error return.
8939 Note that stack overflow is not yet handled. */
8940
8941static CORE_ADDR
e7c27a73 8942decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
c906108c 8943{
e7c27a73
DJ
8944 struct objfile *objfile = cu->objfile;
8945 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
8946 int i;
8947 int size = blk->size;
fe1b8b76 8948 gdb_byte *data = blk->data;
c906108c
SS
8949 CORE_ADDR stack[64];
8950 int stacki;
8951 unsigned int bytes_read, unsnd;
fe1b8b76 8952 gdb_byte op;
c906108c
SS
8953
8954 i = 0;
8955 stacki = 0;
8956 stack[stacki] = 0;
c906108c
SS
8957
8958 while (i < size)
8959 {
c906108c
SS
8960 op = data[i++];
8961 switch (op)
8962 {
f1bea926
JM
8963 case DW_OP_lit0:
8964 case DW_OP_lit1:
8965 case DW_OP_lit2:
8966 case DW_OP_lit3:
8967 case DW_OP_lit4:
8968 case DW_OP_lit5:
8969 case DW_OP_lit6:
8970 case DW_OP_lit7:
8971 case DW_OP_lit8:
8972 case DW_OP_lit9:
8973 case DW_OP_lit10:
8974 case DW_OP_lit11:
8975 case DW_OP_lit12:
8976 case DW_OP_lit13:
8977 case DW_OP_lit14:
8978 case DW_OP_lit15:
8979 case DW_OP_lit16:
8980 case DW_OP_lit17:
8981 case DW_OP_lit18:
8982 case DW_OP_lit19:
8983 case DW_OP_lit20:
8984 case DW_OP_lit21:
8985 case DW_OP_lit22:
8986 case DW_OP_lit23:
8987 case DW_OP_lit24:
8988 case DW_OP_lit25:
8989 case DW_OP_lit26:
8990 case DW_OP_lit27:
8991 case DW_OP_lit28:
8992 case DW_OP_lit29:
8993 case DW_OP_lit30:
8994 case DW_OP_lit31:
8995 stack[++stacki] = op - DW_OP_lit0;
8996 break;
8997
c906108c
SS
8998 case DW_OP_reg0:
8999 case DW_OP_reg1:
9000 case DW_OP_reg2:
9001 case DW_OP_reg3:
9002 case DW_OP_reg4:
9003 case DW_OP_reg5:
9004 case DW_OP_reg6:
9005 case DW_OP_reg7:
9006 case DW_OP_reg8:
9007 case DW_OP_reg9:
9008 case DW_OP_reg10:
9009 case DW_OP_reg11:
9010 case DW_OP_reg12:
9011 case DW_OP_reg13:
9012 case DW_OP_reg14:
9013 case DW_OP_reg15:
9014 case DW_OP_reg16:
9015 case DW_OP_reg17:
9016 case DW_OP_reg18:
9017 case DW_OP_reg19:
9018 case DW_OP_reg20:
9019 case DW_OP_reg21:
9020 case DW_OP_reg22:
9021 case DW_OP_reg23:
9022 case DW_OP_reg24:
9023 case DW_OP_reg25:
9024 case DW_OP_reg26:
9025 case DW_OP_reg27:
9026 case DW_OP_reg28:
9027 case DW_OP_reg29:
9028 case DW_OP_reg30:
9029 case DW_OP_reg31:
c906108c 9030 stack[++stacki] = op - DW_OP_reg0;
4cecd739
DJ
9031 if (i < size)
9032 dwarf2_complex_location_expr_complaint ();
c906108c
SS
9033 break;
9034
9035 case DW_OP_regx:
c906108c
SS
9036 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
9037 i += bytes_read;
c906108c 9038 stack[++stacki] = unsnd;
4cecd739
DJ
9039 if (i < size)
9040 dwarf2_complex_location_expr_complaint ();
c906108c
SS
9041 break;
9042
9043 case DW_OP_addr:
107d2387 9044 stack[++stacki] = read_address (objfile->obfd, &data[i],
e7c27a73 9045 cu, &bytes_read);
107d2387 9046 i += bytes_read;
c906108c
SS
9047 break;
9048
9049 case DW_OP_const1u:
9050 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
9051 i += 1;
9052 break;
9053
9054 case DW_OP_const1s:
9055 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
9056 i += 1;
9057 break;
9058
9059 case DW_OP_const2u:
9060 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
9061 i += 2;
9062 break;
9063
9064 case DW_OP_const2s:
9065 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
9066 i += 2;
9067 break;
9068
9069 case DW_OP_const4u:
9070 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
9071 i += 4;
9072 break;
9073
9074 case DW_OP_const4s:
9075 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
9076 i += 4;
9077 break;
9078
9079 case DW_OP_constu:
9080 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
c5aa993b 9081 &bytes_read);
c906108c
SS
9082 i += bytes_read;
9083 break;
9084
9085 case DW_OP_consts:
9086 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
9087 i += bytes_read;
9088 break;
9089
f1bea926
JM
9090 case DW_OP_dup:
9091 stack[stacki + 1] = stack[stacki];
9092 stacki++;
9093 break;
9094
c906108c
SS
9095 case DW_OP_plus:
9096 stack[stacki - 1] += stack[stacki];
9097 stacki--;
9098 break;
9099
9100 case DW_OP_plus_uconst:
9101 stack[stacki] += read_unsigned_leb128 (NULL, (data + i), &bytes_read);
9102 i += bytes_read;
9103 break;
9104
9105 case DW_OP_minus:
f1bea926 9106 stack[stacki - 1] -= stack[stacki];
c906108c
SS
9107 stacki--;
9108 break;
9109
7a292a7a 9110 case DW_OP_deref:
7a292a7a 9111 /* If we're not the last op, then we definitely can't encode
4cecd739
DJ
9112 this using GDB's address_class enum. This is valid for partial
9113 global symbols, although the variable's address will be bogus
9114 in the psymtab. */
7a292a7a 9115 if (i < size)
4d3c2250 9116 dwarf2_complex_location_expr_complaint ();
7a292a7a
SS
9117 break;
9118
9d774e44 9119 case DW_OP_GNU_push_tls_address:
9d774e44
EZ
9120 /* The top of the stack has the offset from the beginning
9121 of the thread control block at which the variable is located. */
9122 /* Nothing should follow this operator, so the top of stack would
9123 be returned. */
4cecd739
DJ
9124 /* This is valid for partial global symbols, but the variable's
9125 address will be bogus in the psymtab. */
9d774e44 9126 if (i < size)
4d3c2250 9127 dwarf2_complex_location_expr_complaint ();
9d774e44
EZ
9128 break;
9129
c906108c 9130 default:
e2e0b3e5 9131 complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
4d3c2250 9132 dwarf_stack_op_name (op));
c906108c
SS
9133 return (stack[stacki]);
9134 }
9135 }
9136 return (stack[stacki]);
9137}
9138
9139/* memory allocation interface */
9140
c906108c 9141static struct dwarf_block *
7b5a2f43 9142dwarf_alloc_block (struct dwarf2_cu *cu)
c906108c
SS
9143{
9144 struct dwarf_block *blk;
9145
9146 blk = (struct dwarf_block *)
7b5a2f43 9147 obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
c906108c
SS
9148 return (blk);
9149}
9150
9151static struct abbrev_info *
f3dd6933 9152dwarf_alloc_abbrev (struct dwarf2_cu *cu)
c906108c
SS
9153{
9154 struct abbrev_info *abbrev;
9155
f3dd6933
DJ
9156 abbrev = (struct abbrev_info *)
9157 obstack_alloc (&cu->abbrev_obstack, sizeof (struct abbrev_info));
c906108c
SS
9158 memset (abbrev, 0, sizeof (struct abbrev_info));
9159 return (abbrev);
9160}
9161
9162static struct die_info *
fba45db2 9163dwarf_alloc_die (void)
c906108c
SS
9164{
9165 struct die_info *die;
9166
9167 die = (struct die_info *) xmalloc (sizeof (struct die_info));
9168 memset (die, 0, sizeof (struct die_info));
9169 return (die);
9170}
2e276125
JB
9171
9172\f
9173/* Macro support. */
9174
9175
9176/* Return the full name of file number I in *LH's file name table.
9177 Use COMP_DIR as the name of the current directory of the
9178 compilation. The result is allocated using xmalloc; the caller is
9179 responsible for freeing it. */
9180static char *
9181file_full_name (int file, struct line_header *lh, const char *comp_dir)
9182{
6a83a1e6
EZ
9183 /* Is the file number a valid index into the line header's file name
9184 table? Remember that file numbers start with one, not zero. */
9185 if (1 <= file && file <= lh->num_file_names)
9186 {
9187 struct file_entry *fe = &lh->file_names[file - 1];
2e276125 9188
6a83a1e6
EZ
9189 if (IS_ABSOLUTE_PATH (fe->name))
9190 return xstrdup (fe->name);
9191 else
9192 {
9193 const char *dir;
9194 int dir_len;
9195 char *full_name;
9196
9197 if (fe->dir_index)
9198 dir = lh->include_dirs[fe->dir_index - 1];
9199 else
9200 dir = comp_dir;
9201
9202 if (dir)
9203 {
9204 dir_len = strlen (dir);
9205 full_name = xmalloc (dir_len + 1 + strlen (fe->name) + 1);
9206 strcpy (full_name, dir);
9207 full_name[dir_len] = '/';
9208 strcpy (full_name + dir_len + 1, fe->name);
9209 return full_name;
9210 }
9211 else
9212 return xstrdup (fe->name);
9213 }
9214 }
2e276125
JB
9215 else
9216 {
6a83a1e6
EZ
9217 /* The compiler produced a bogus file number. We can at least
9218 record the macro definitions made in the file, even if we
9219 won't be able to find the file by name. */
9220 char fake_name[80];
9221 sprintf (fake_name, "<bad macro file number %d>", file);
2e276125 9222
6a83a1e6
EZ
9223 complaint (&symfile_complaints,
9224 _("bad file number in macro information (%d)"),
9225 file);
2e276125 9226
6a83a1e6 9227 return xstrdup (fake_name);
2e276125
JB
9228 }
9229}
9230
9231
9232static struct macro_source_file *
9233macro_start_file (int file, int line,
9234 struct macro_source_file *current_file,
9235 const char *comp_dir,
9236 struct line_header *lh, struct objfile *objfile)
9237{
9238 /* The full name of this source file. */
9239 char *full_name = file_full_name (file, lh, comp_dir);
9240
9241 /* We don't create a macro table for this compilation unit
9242 at all until we actually get a filename. */
9243 if (! pending_macros)
4a146b47 9244 pending_macros = new_macro_table (&objfile->objfile_obstack,
af5f3db6 9245 objfile->macro_cache);
2e276125
JB
9246
9247 if (! current_file)
9248 /* If we have no current file, then this must be the start_file
9249 directive for the compilation unit's main source file. */
9250 current_file = macro_set_main (pending_macros, full_name);
9251 else
9252 current_file = macro_include (current_file, line, full_name);
9253
9254 xfree (full_name);
9255
9256 return current_file;
9257}
9258
9259
9260/* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
9261 followed by a null byte. */
9262static char *
9263copy_string (const char *buf, int len)
9264{
9265 char *s = xmalloc (len + 1);
9266 memcpy (s, buf, len);
9267 s[len] = '\0';
9268
9269 return s;
9270}
9271
9272
9273static const char *
9274consume_improper_spaces (const char *p, const char *body)
9275{
9276 if (*p == ' ')
9277 {
4d3c2250 9278 complaint (&symfile_complaints,
e2e0b3e5 9279 _("macro definition contains spaces in formal argument list:\n`%s'"),
4d3c2250 9280 body);
2e276125
JB
9281
9282 while (*p == ' ')
9283 p++;
9284 }
9285
9286 return p;
9287}
9288
9289
9290static void
9291parse_macro_definition (struct macro_source_file *file, int line,
9292 const char *body)
9293{
9294 const char *p;
9295
9296 /* The body string takes one of two forms. For object-like macro
9297 definitions, it should be:
9298
9299 <macro name> " " <definition>
9300
9301 For function-like macro definitions, it should be:
9302
9303 <macro name> "() " <definition>
9304 or
9305 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
9306
9307 Spaces may appear only where explicitly indicated, and in the
9308 <definition>.
9309
9310 The Dwarf 2 spec says that an object-like macro's name is always
9311 followed by a space, but versions of GCC around March 2002 omit
9312 the space when the macro's definition is the empty string.
9313
9314 The Dwarf 2 spec says that there should be no spaces between the
9315 formal arguments in a function-like macro's formal argument list,
9316 but versions of GCC around March 2002 include spaces after the
9317 commas. */
9318
9319
9320 /* Find the extent of the macro name. The macro name is terminated
9321 by either a space or null character (for an object-like macro) or
9322 an opening paren (for a function-like macro). */
9323 for (p = body; *p; p++)
9324 if (*p == ' ' || *p == '(')
9325 break;
9326
9327 if (*p == ' ' || *p == '\0')
9328 {
9329 /* It's an object-like macro. */
9330 int name_len = p - body;
9331 char *name = copy_string (body, name_len);
9332 const char *replacement;
9333
9334 if (*p == ' ')
9335 replacement = body + name_len + 1;
9336 else
9337 {
4d3c2250 9338 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
9339 replacement = body + name_len;
9340 }
9341
9342 macro_define_object (file, line, name, replacement);
9343
9344 xfree (name);
9345 }
9346 else if (*p == '(')
9347 {
9348 /* It's a function-like macro. */
9349 char *name = copy_string (body, p - body);
9350 int argc = 0;
9351 int argv_size = 1;
9352 char **argv = xmalloc (argv_size * sizeof (*argv));
9353
9354 p++;
9355
9356 p = consume_improper_spaces (p, body);
9357
9358 /* Parse the formal argument list. */
9359 while (*p && *p != ')')
9360 {
9361 /* Find the extent of the current argument name. */
9362 const char *arg_start = p;
9363
9364 while (*p && *p != ',' && *p != ')' && *p != ' ')
9365 p++;
9366
9367 if (! *p || p == arg_start)
4d3c2250 9368 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
9369 else
9370 {
9371 /* Make sure argv has room for the new argument. */
9372 if (argc >= argv_size)
9373 {
9374 argv_size *= 2;
9375 argv = xrealloc (argv, argv_size * sizeof (*argv));
9376 }
9377
9378 argv[argc++] = copy_string (arg_start, p - arg_start);
9379 }
9380
9381 p = consume_improper_spaces (p, body);
9382
9383 /* Consume the comma, if present. */
9384 if (*p == ',')
9385 {
9386 p++;
9387
9388 p = consume_improper_spaces (p, body);
9389 }
9390 }
9391
9392 if (*p == ')')
9393 {
9394 p++;
9395
9396 if (*p == ' ')
9397 /* Perfectly formed definition, no complaints. */
9398 macro_define_function (file, line, name,
9399 argc, (const char **) argv,
9400 p + 1);
9401 else if (*p == '\0')
9402 {
9403 /* Complain, but do define it. */
4d3c2250 9404 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
9405 macro_define_function (file, line, name,
9406 argc, (const char **) argv,
9407 p);
9408 }
9409 else
9410 /* Just complain. */
4d3c2250 9411 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
9412 }
9413 else
9414 /* Just complain. */
4d3c2250 9415 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
9416
9417 xfree (name);
9418 {
9419 int i;
9420
9421 for (i = 0; i < argc; i++)
9422 xfree (argv[i]);
9423 }
9424 xfree (argv);
9425 }
9426 else
4d3c2250 9427 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
9428}
9429
9430
9431static void
9432dwarf_decode_macros (struct line_header *lh, unsigned int offset,
9433 char *comp_dir, bfd *abfd,
e7c27a73 9434 struct dwarf2_cu *cu)
2e276125 9435{
fe1b8b76 9436 gdb_byte *mac_ptr, *mac_end;
2e276125
JB
9437 struct macro_source_file *current_file = 0;
9438
6502dd73 9439 if (dwarf2_per_objfile->macinfo_buffer == NULL)
2e276125 9440 {
e2e0b3e5 9441 complaint (&symfile_complaints, _("missing .debug_macinfo section"));
2e276125
JB
9442 return;
9443 }
9444
6502dd73
DJ
9445 mac_ptr = dwarf2_per_objfile->macinfo_buffer + offset;
9446 mac_end = dwarf2_per_objfile->macinfo_buffer
9447 + dwarf2_per_objfile->macinfo_size;
2e276125
JB
9448
9449 for (;;)
9450 {
9451 enum dwarf_macinfo_record_type macinfo_type;
9452
9453 /* Do we at least have room for a macinfo type byte? */
9454 if (mac_ptr >= mac_end)
9455 {
4d3c2250 9456 dwarf2_macros_too_long_complaint ();
2e276125
JB
9457 return;
9458 }
9459
9460 macinfo_type = read_1_byte (abfd, mac_ptr);
9461 mac_ptr++;
9462
9463 switch (macinfo_type)
9464 {
9465 /* A zero macinfo type indicates the end of the macro
9466 information. */
9467 case 0:
9468 return;
9469
9470 case DW_MACINFO_define:
9471 case DW_MACINFO_undef:
9472 {
891d2f0b 9473 unsigned int bytes_read;
2e276125
JB
9474 int line;
9475 char *body;
9476
9477 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
9478 mac_ptr += bytes_read;
9479 body = read_string (abfd, mac_ptr, &bytes_read);
9480 mac_ptr += bytes_read;
9481
9482 if (! current_file)
4d3c2250 9483 complaint (&symfile_complaints,
e2e0b3e5 9484 _("debug info gives macro %s outside of any file: %s"),
4d3c2250
KB
9485 macinfo_type ==
9486 DW_MACINFO_define ? "definition" : macinfo_type ==
9487 DW_MACINFO_undef ? "undefinition" :
9488 "something-or-other", body);
2e276125
JB
9489 else
9490 {
9491 if (macinfo_type == DW_MACINFO_define)
9492 parse_macro_definition (current_file, line, body);
9493 else if (macinfo_type == DW_MACINFO_undef)
9494 macro_undef (current_file, line, body);
9495 }
9496 }
9497 break;
9498
9499 case DW_MACINFO_start_file:
9500 {
891d2f0b 9501 unsigned int bytes_read;
2e276125
JB
9502 int line, file;
9503
9504 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
9505 mac_ptr += bytes_read;
9506 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
9507 mac_ptr += bytes_read;
9508
9509 current_file = macro_start_file (file, line,
9510 current_file, comp_dir,
e7c27a73 9511 lh, cu->objfile);
2e276125
JB
9512 }
9513 break;
9514
9515 case DW_MACINFO_end_file:
9516 if (! current_file)
4d3c2250 9517 complaint (&symfile_complaints,
e2e0b3e5 9518 _("macro debug info has an unmatched `close_file' directive"));
2e276125
JB
9519 else
9520 {
9521 current_file = current_file->included_by;
9522 if (! current_file)
9523 {
9524 enum dwarf_macinfo_record_type next_type;
9525
9526 /* GCC circa March 2002 doesn't produce the zero
9527 type byte marking the end of the compilation
9528 unit. Complain if it's not there, but exit no
9529 matter what. */
9530
9531 /* Do we at least have room for a macinfo type byte? */
9532 if (mac_ptr >= mac_end)
9533 {
4d3c2250 9534 dwarf2_macros_too_long_complaint ();
2e276125
JB
9535 return;
9536 }
9537
9538 /* We don't increment mac_ptr here, so this is just
9539 a look-ahead. */
9540 next_type = read_1_byte (abfd, mac_ptr);
9541 if (next_type != 0)
4d3c2250 9542 complaint (&symfile_complaints,
e2e0b3e5 9543 _("no terminating 0-type entry for macros in `.debug_macinfo' section"));
2e276125
JB
9544
9545 return;
9546 }
9547 }
9548 break;
9549
9550 case DW_MACINFO_vendor_ext:
9551 {
891d2f0b 9552 unsigned int bytes_read;
2e276125
JB
9553 int constant;
9554 char *string;
9555
9556 constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
9557 mac_ptr += bytes_read;
9558 string = read_string (abfd, mac_ptr, &bytes_read);
9559 mac_ptr += bytes_read;
9560
9561 /* We don't recognize any vendor extensions. */
9562 }
9563 break;
9564 }
9565 }
9566}
8e19ed76
PS
9567
9568/* Check if the attribute's form is a DW_FORM_block*
9569 if so return true else false. */
9570static int
9571attr_form_is_block (struct attribute *attr)
9572{
9573 return (attr == NULL ? 0 :
9574 attr->form == DW_FORM_block1
9575 || attr->form == DW_FORM_block2
9576 || attr->form == DW_FORM_block4
9577 || attr->form == DW_FORM_block);
9578}
4c2df51b
DJ
9579
9580static void
9581dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym,
e7c27a73 9582 struct dwarf2_cu *cu)
4c2df51b 9583{
99bcc461
DJ
9584 if ((attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
9585 /* ".debug_loc" may not exist at all, or the offset may be outside
9586 the section. If so, fall through to the complaint in the
9587 other branch. */
9588 && DW_UNSND (attr) < dwarf2_per_objfile->loc_size)
4c2df51b 9589 {
0d53c4c4 9590 struct dwarf2_loclist_baton *baton;
4c2df51b 9591
4a146b47 9592 baton = obstack_alloc (&cu->objfile->objfile_obstack,
0d53c4c4 9593 sizeof (struct dwarf2_loclist_baton));
e7c27a73 9594 baton->objfile = cu->objfile;
4c2df51b 9595
0d53c4c4
DJ
9596 /* We don't know how long the location list is, but make sure we
9597 don't run off the edge of the section. */
6502dd73
DJ
9598 baton->size = dwarf2_per_objfile->loc_size - DW_UNSND (attr);
9599 baton->data = dwarf2_per_objfile->loc_buffer + DW_UNSND (attr);
e7c27a73
DJ
9600 baton->base_address = cu->header.base_address;
9601 if (cu->header.base_known == 0)
0d53c4c4 9602 complaint (&symfile_complaints,
e2e0b3e5 9603 _("Location list used without specifying the CU base address."));
4c2df51b 9604
a67af2b9 9605 SYMBOL_OPS (sym) = &dwarf2_loclist_funcs;
0d53c4c4
DJ
9606 SYMBOL_LOCATION_BATON (sym) = baton;
9607 }
9608 else
9609 {
9610 struct dwarf2_locexpr_baton *baton;
9611
4a146b47 9612 baton = obstack_alloc (&cu->objfile->objfile_obstack,
0d53c4c4 9613 sizeof (struct dwarf2_locexpr_baton));
e7c27a73 9614 baton->objfile = cu->objfile;
0d53c4c4
DJ
9615
9616 if (attr_form_is_block (attr))
9617 {
9618 /* Note that we're just copying the block's data pointer
9619 here, not the actual data. We're still pointing into the
6502dd73
DJ
9620 info_buffer for SYM's objfile; right now we never release
9621 that buffer, but when we do clean up properly this may
9622 need to change. */
0d53c4c4
DJ
9623 baton->size = DW_BLOCK (attr)->size;
9624 baton->data = DW_BLOCK (attr)->data;
9625 }
9626 else
9627 {
9628 dwarf2_invalid_attrib_class_complaint ("location description",
9629 SYMBOL_NATURAL_NAME (sym));
9630 baton->size = 0;
9631 baton->data = NULL;
9632 }
9633
a67af2b9 9634 SYMBOL_OPS (sym) = &dwarf2_locexpr_funcs;
0d53c4c4
DJ
9635 SYMBOL_LOCATION_BATON (sym) = baton;
9636 }
4c2df51b 9637}
6502dd73 9638
ae038cb0 9639/* Locate the compilation unit from CU's objfile which contains the
10b3939b 9640 DIE at OFFSET. Raises an error on failure. */
ae038cb0
DJ
9641
9642static struct dwarf2_per_cu_data *
9643dwarf2_find_containing_comp_unit (unsigned long offset,
9644 struct objfile *objfile)
9645{
9646 struct dwarf2_per_cu_data *this_cu;
9647 int low, high;
9648
ae038cb0
DJ
9649 low = 0;
9650 high = dwarf2_per_objfile->n_comp_units - 1;
9651 while (high > low)
9652 {
9653 int mid = low + (high - low) / 2;
9654 if (dwarf2_per_objfile->all_comp_units[mid]->offset >= offset)
9655 high = mid;
9656 else
9657 low = mid + 1;
9658 }
9659 gdb_assert (low == high);
9660 if (dwarf2_per_objfile->all_comp_units[low]->offset > offset)
9661 {
10b3939b 9662 if (low == 0)
8a3fe4f8
AC
9663 error (_("Dwarf Error: could not find partial DIE containing "
9664 "offset 0x%lx [in module %s]"),
10b3939b
DJ
9665 (long) offset, bfd_get_filename (objfile->obfd));
9666
ae038cb0
DJ
9667 gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset <= offset);
9668 return dwarf2_per_objfile->all_comp_units[low-1];
9669 }
9670 else
9671 {
9672 this_cu = dwarf2_per_objfile->all_comp_units[low];
9673 if (low == dwarf2_per_objfile->n_comp_units - 1
9674 && offset >= this_cu->offset + this_cu->length)
8a3fe4f8 9675 error (_("invalid dwarf2 offset %ld"), offset);
ae038cb0
DJ
9676 gdb_assert (offset < this_cu->offset + this_cu->length);
9677 return this_cu;
9678 }
9679}
9680
10b3939b
DJ
9681/* Locate the compilation unit from OBJFILE which is located at exactly
9682 OFFSET. Raises an error on failure. */
9683
ae038cb0
DJ
9684static struct dwarf2_per_cu_data *
9685dwarf2_find_comp_unit (unsigned long offset, struct objfile *objfile)
9686{
9687 struct dwarf2_per_cu_data *this_cu;
9688 this_cu = dwarf2_find_containing_comp_unit (offset, objfile);
9689 if (this_cu->offset != offset)
8a3fe4f8 9690 error (_("no compilation unit with offset %ld."), offset);
ae038cb0
DJ
9691 return this_cu;
9692}
9693
9694/* Release one cached compilation unit, CU. We unlink it from the tree
9695 of compilation units, but we don't remove it from the read_in_chain;
9696 the caller is responsible for that. */
9697
9698static void
9699free_one_comp_unit (void *data)
9700{
9701 struct dwarf2_cu *cu = data;
9702
9703 if (cu->per_cu != NULL)
9704 cu->per_cu->cu = NULL;
9705 cu->per_cu = NULL;
9706
9707 obstack_free (&cu->comp_unit_obstack, NULL);
10b3939b
DJ
9708 if (cu->dies)
9709 free_die_list (cu->dies);
ae038cb0
DJ
9710
9711 xfree (cu);
9712}
9713
72bf9492 9714/* This cleanup function is passed the address of a dwarf2_cu on the stack
ae038cb0
DJ
9715 when we're finished with it. We can't free the pointer itself, but be
9716 sure to unlink it from the cache. Also release any associated storage
9717 and perform cache maintenance.
72bf9492
DJ
9718
9719 Only used during partial symbol parsing. */
9720
9721static void
9722free_stack_comp_unit (void *data)
9723{
9724 struct dwarf2_cu *cu = data;
9725
9726 obstack_free (&cu->comp_unit_obstack, NULL);
9727 cu->partial_dies = NULL;
ae038cb0
DJ
9728
9729 if (cu->per_cu != NULL)
9730 {
9731 /* This compilation unit is on the stack in our caller, so we
9732 should not xfree it. Just unlink it. */
9733 cu->per_cu->cu = NULL;
9734 cu->per_cu = NULL;
9735
9736 /* If we had a per-cu pointer, then we may have other compilation
9737 units loaded, so age them now. */
9738 age_cached_comp_units ();
9739 }
9740}
9741
9742/* Free all cached compilation units. */
9743
9744static void
9745free_cached_comp_units (void *data)
9746{
9747 struct dwarf2_per_cu_data *per_cu, **last_chain;
9748
9749 per_cu = dwarf2_per_objfile->read_in_chain;
9750 last_chain = &dwarf2_per_objfile->read_in_chain;
9751 while (per_cu != NULL)
9752 {
9753 struct dwarf2_per_cu_data *next_cu;
9754
9755 next_cu = per_cu->cu->read_in_chain;
9756
9757 free_one_comp_unit (per_cu->cu);
9758 *last_chain = next_cu;
9759
9760 per_cu = next_cu;
9761 }
9762}
9763
9764/* Increase the age counter on each cached compilation unit, and free
9765 any that are too old. */
9766
9767static void
9768age_cached_comp_units (void)
9769{
9770 struct dwarf2_per_cu_data *per_cu, **last_chain;
9771
9772 dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
9773 per_cu = dwarf2_per_objfile->read_in_chain;
9774 while (per_cu != NULL)
9775 {
9776 per_cu->cu->last_used ++;
9777 if (per_cu->cu->last_used <= dwarf2_max_cache_age)
9778 dwarf2_mark (per_cu->cu);
9779 per_cu = per_cu->cu->read_in_chain;
9780 }
9781
9782 per_cu = dwarf2_per_objfile->read_in_chain;
9783 last_chain = &dwarf2_per_objfile->read_in_chain;
9784 while (per_cu != NULL)
9785 {
9786 struct dwarf2_per_cu_data *next_cu;
9787
9788 next_cu = per_cu->cu->read_in_chain;
9789
9790 if (!per_cu->cu->mark)
9791 {
9792 free_one_comp_unit (per_cu->cu);
9793 *last_chain = next_cu;
9794 }
9795 else
9796 last_chain = &per_cu->cu->read_in_chain;
9797
9798 per_cu = next_cu;
9799 }
9800}
9801
9802/* Remove a single compilation unit from the cache. */
9803
9804static void
9805free_one_cached_comp_unit (void *target_cu)
9806{
9807 struct dwarf2_per_cu_data *per_cu, **last_chain;
9808
9809 per_cu = dwarf2_per_objfile->read_in_chain;
9810 last_chain = &dwarf2_per_objfile->read_in_chain;
9811 while (per_cu != NULL)
9812 {
9813 struct dwarf2_per_cu_data *next_cu;
9814
9815 next_cu = per_cu->cu->read_in_chain;
9816
9817 if (per_cu->cu == target_cu)
9818 {
9819 free_one_comp_unit (per_cu->cu);
9820 *last_chain = next_cu;
9821 break;
9822 }
9823 else
9824 last_chain = &per_cu->cu->read_in_chain;
9825
9826 per_cu = next_cu;
9827 }
9828}
9829
1c379e20
DJ
9830/* A pair of DIE offset and GDB type pointer. We store these
9831 in a hash table separate from the DIEs, and preserve them
9832 when the DIEs are flushed out of cache. */
9833
9834struct dwarf2_offset_and_type
9835{
9836 unsigned int offset;
9837 struct type *type;
9838};
9839
9840/* Hash function for a dwarf2_offset_and_type. */
9841
9842static hashval_t
9843offset_and_type_hash (const void *item)
9844{
9845 const struct dwarf2_offset_and_type *ofs = item;
9846 return ofs->offset;
9847}
9848
9849/* Equality function for a dwarf2_offset_and_type. */
9850
9851static int
9852offset_and_type_eq (const void *item_lhs, const void *item_rhs)
9853{
9854 const struct dwarf2_offset_and_type *ofs_lhs = item_lhs;
9855 const struct dwarf2_offset_and_type *ofs_rhs = item_rhs;
9856 return ofs_lhs->offset == ofs_rhs->offset;
9857}
9858
9859/* Set the type associated with DIE to TYPE. Save it in CU's hash
9860 table if necessary. */
9861
9862static void
9863set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
9864{
9865 struct dwarf2_offset_and_type **slot, ofs;
9866
9867 die->type = type;
9868
9869 if (cu->per_cu == NULL)
9870 return;
9871
9872 if (cu->per_cu->type_hash == NULL)
9873 cu->per_cu->type_hash
9874 = htab_create_alloc_ex (cu->header.length / 24,
9875 offset_and_type_hash,
9876 offset_and_type_eq,
9877 NULL,
9878 &cu->objfile->objfile_obstack,
9879 hashtab_obstack_allocate,
9880 dummy_obstack_deallocate);
9881
9882 ofs.offset = die->offset;
9883 ofs.type = type;
9884 slot = (struct dwarf2_offset_and_type **)
9885 htab_find_slot_with_hash (cu->per_cu->type_hash, &ofs, ofs.offset, INSERT);
9886 *slot = obstack_alloc (&cu->objfile->objfile_obstack, sizeof (**slot));
9887 **slot = ofs;
9888}
9889
1c379e20
DJ
9890/* Find the type for DIE in TYPE_HASH, or return NULL if DIE does not
9891 have a saved type. */
9892
9893static struct type *
9894get_die_type (struct die_info *die, htab_t type_hash)
9895{
9896 struct dwarf2_offset_and_type *slot, ofs;
9897
9898 ofs.offset = die->offset;
9899 slot = htab_find_with_hash (type_hash, &ofs, ofs.offset);
9900 if (slot)
9901 return slot->type;
9902 else
9903 return NULL;
9904}
9905
9906/* Restore the types of the DIE tree starting at START_DIE from the hash
9907 table saved in CU. */
9908
9909static void
9910reset_die_and_siblings_types (struct die_info *start_die, struct dwarf2_cu *cu)
9911{
9912 struct die_info *die;
9913
9914 if (cu->per_cu->type_hash == NULL)
9915 return;
9916
9917 for (die = start_die; die != NULL; die = die->sibling)
9918 {
9919 die->type = get_die_type (die, cu->per_cu->type_hash);
9920 if (die->child != NULL)
9921 reset_die_and_siblings_types (die->child, cu);
9922 }
9923}
9924
10b3939b
DJ
9925/* Set the mark field in CU and in every other compilation unit in the
9926 cache that we must keep because we are keeping CU. */
9927
9928/* Add a dependence relationship from CU to REF_PER_CU. */
9929
9930static void
9931dwarf2_add_dependence (struct dwarf2_cu *cu,
9932 struct dwarf2_per_cu_data *ref_per_cu)
9933{
9934 void **slot;
9935
9936 if (cu->dependencies == NULL)
9937 cu->dependencies
9938 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
9939 NULL, &cu->comp_unit_obstack,
9940 hashtab_obstack_allocate,
9941 dummy_obstack_deallocate);
9942
9943 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
9944 if (*slot == NULL)
9945 *slot = ref_per_cu;
9946}
1c379e20 9947
ae038cb0
DJ
9948/* Set the mark field in CU and in every other compilation unit in the
9949 cache that we must keep because we are keeping CU. */
9950
10b3939b
DJ
9951static int
9952dwarf2_mark_helper (void **slot, void *data)
9953{
9954 struct dwarf2_per_cu_data *per_cu;
9955
9956 per_cu = (struct dwarf2_per_cu_data *) *slot;
9957 if (per_cu->cu->mark)
9958 return 1;
9959 per_cu->cu->mark = 1;
9960
9961 if (per_cu->cu->dependencies != NULL)
9962 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
9963
9964 return 1;
9965}
9966
ae038cb0
DJ
9967static void
9968dwarf2_mark (struct dwarf2_cu *cu)
9969{
9970 if (cu->mark)
9971 return;
9972 cu->mark = 1;
10b3939b
DJ
9973 if (cu->dependencies != NULL)
9974 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
ae038cb0
DJ
9975}
9976
9977static void
9978dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
9979{
9980 while (per_cu)
9981 {
9982 per_cu->cu->mark = 0;
9983 per_cu = per_cu->cu->read_in_chain;
9984 }
72bf9492
DJ
9985}
9986
72bf9492
DJ
9987/* Trivial hash function for partial_die_info: the hash value of a DIE
9988 is its offset in .debug_info for this objfile. */
9989
9990static hashval_t
9991partial_die_hash (const void *item)
9992{
9993 const struct partial_die_info *part_die = item;
9994 return part_die->offset;
9995}
9996
9997/* Trivial comparison function for partial_die_info structures: two DIEs
9998 are equal if they have the same offset. */
9999
10000static int
10001partial_die_eq (const void *item_lhs, const void *item_rhs)
10002{
10003 const struct partial_die_info *part_die_lhs = item_lhs;
10004 const struct partial_die_info *part_die_rhs = item_rhs;
10005 return part_die_lhs->offset == part_die_rhs->offset;
10006}
10007
ae038cb0
DJ
10008static struct cmd_list_element *set_dwarf2_cmdlist;
10009static struct cmd_list_element *show_dwarf2_cmdlist;
10010
10011static void
10012set_dwarf2_cmd (char *args, int from_tty)
10013{
10014 help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout);
10015}
10016
10017static void
10018show_dwarf2_cmd (char *args, int from_tty)
10019{
10020 cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
10021}
10022
6502dd73
DJ
10023void _initialize_dwarf2_read (void);
10024
10025void
10026_initialize_dwarf2_read (void)
10027{
10028 dwarf2_objfile_data_key = register_objfile_data ();
ae038cb0 10029
1bedd215
AC
10030 add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
10031Set DWARF 2 specific variables.\n\
10032Configure DWARF 2 variables such as the cache size"),
ae038cb0
DJ
10033 &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
10034 0/*allow-unknown*/, &maintenance_set_cmdlist);
10035
1bedd215
AC
10036 add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
10037Show DWARF 2 specific variables\n\
10038Show DWARF 2 variables such as the cache size"),
ae038cb0
DJ
10039 &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
10040 0/*allow-unknown*/, &maintenance_show_cmdlist);
10041
10042 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
7915a72c
AC
10043 &dwarf2_max_cache_age, _("\
10044Set the upper bound on the age of cached dwarf2 compilation units."), _("\
10045Show the upper bound on the age of cached dwarf2 compilation units."), _("\
10046A higher limit means that cached compilation units will be stored\n\
10047in memory longer, and more total memory will be used. Zero disables\n\
10048caching, which can slow down startup."),
2c5b56ce 10049 NULL,
920d2a44 10050 show_dwarf2_max_cache_age,
2c5b56ce 10051 &set_dwarf2_cmdlist,
ae038cb0 10052 &show_dwarf2_cmdlist);
6502dd73 10053}
This page took 1.132911 seconds and 4 git commands to generate.