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