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