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