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