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