]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/dwarf2read.c
new ppc64 tls tests
[thirdparty/binutils-gdb.git] / gdb / dwarf2read.c
CommitLineData
c906108c 1/* DWARF 2 debugging format support for GDB.
086df311 2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
8e65ff28 3 Free Software Foundation, Inc.
c906108c
SS
4
5 Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
6 Inc. with support from Florida State University (under contract
7 with the Ada Joint Program Office), and Silicon Graphics, Inc.
8 Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
9 based on Fred Fish's (Cygnus Support) implementation of DWARF 1
10 support in dwarfread.c
11
c5aa993b 12 This file is part of GDB.
c906108c 13
c5aa993b
JM
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 2 of the License, or (at
17 your option) any later version.
c906108c 18
c5aa993b
JM
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
c906108c 23
c5aa993b
JM
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. */
c906108c
SS
28
29#include "defs.h"
30#include "bfd.h"
c906108c
SS
31#include "symtab.h"
32#include "gdbtypes.h"
33#include "symfile.h"
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"
357e46e7 41
c906108c
SS
42#include "language.h"
43#include "complaints.h"
357e46e7 44#include "bcache.h"
c906108c
SS
45#include <fcntl.h>
46#include "gdb_string.h"
4bdf3d34 47#include "gdb_assert.h"
c906108c
SS
48#include <sys/types.h>
49
88496bb5
MS
50#ifndef DWARF2_REG_TO_REGNUM
51#define DWARF2_REG_TO_REGNUM(REG) (REG)
52#endif
53
107d2387 54#if 0
357e46e7 55/* .debug_info header for a compilation unit
c906108c
SS
56 Because of alignment constraints, this structure has padding and cannot
57 be mapped directly onto the beginning of the .debug_info section. */
58typedef struct comp_unit_header
59 {
60 unsigned int length; /* length of the .debug_info
61 contribution */
62 unsigned short version; /* version number -- 2 for DWARF
63 version 2 */
64 unsigned int abbrev_offset; /* offset into .debug_abbrev section */
65 unsigned char addr_size; /* byte size of an address -- 4 */
66 }
67_COMP_UNIT_HEADER;
68#define _ACTUAL_COMP_UNIT_HEADER_SIZE 11
107d2387 69#endif
c906108c
SS
70
71/* .debug_pubnames header
72 Because of alignment constraints, this structure has padding and cannot
73 be mapped directly onto the beginning of the .debug_info section. */
74typedef struct pubnames_header
75 {
76 unsigned int length; /* length of the .debug_pubnames
77 contribution */
78 unsigned char version; /* version number -- 2 for DWARF
79 version 2 */
80 unsigned int info_offset; /* offset into .debug_info section */
81 unsigned int info_size; /* byte size of .debug_info section
82 portion */
83 }
84_PUBNAMES_HEADER;
85#define _ACTUAL_PUBNAMES_HEADER_SIZE 13
86
87/* .debug_pubnames header
88 Because of alignment constraints, this structure has padding and cannot
89 be mapped directly onto the beginning of the .debug_info section. */
90typedef struct aranges_header
91 {
92 unsigned int length; /* byte len of the .debug_aranges
93 contribution */
94 unsigned short version; /* version number -- 2 for DWARF
95 version 2 */
96 unsigned int info_offset; /* offset into .debug_info section */
97 unsigned char addr_size; /* byte size of an address */
98 unsigned char seg_size; /* byte size of segment descriptor */
99 }
100_ARANGES_HEADER;
101#define _ACTUAL_ARANGES_HEADER_SIZE 12
102
103/* .debug_line statement program prologue
104 Because of alignment constraints, this structure has padding and cannot
105 be mapped directly onto the beginning of the .debug_info section. */
106typedef struct statement_prologue
107 {
108 unsigned int total_length; /* byte length of the statement
109 information */
110 unsigned short version; /* version number -- 2 for DWARF
111 version 2 */
112 unsigned int prologue_length; /* # bytes between prologue &
113 stmt program */
114 unsigned char minimum_instruction_length; /* byte size of
115 smallest instr */
116 unsigned char default_is_stmt; /* initial value of is_stmt
117 register */
118 char line_base;
119 unsigned char line_range;
120 unsigned char opcode_base; /* number assigned to first special
121 opcode */
122 unsigned char *standard_opcode_lengths;
123 }
124_STATEMENT_PROLOGUE;
125
126/* offsets and sizes of debugging sections */
127
128static file_ptr dwarf_info_offset;
129static file_ptr dwarf_abbrev_offset;
130static file_ptr dwarf_line_offset;
131static file_ptr dwarf_pubnames_offset;
132static file_ptr dwarf_aranges_offset;
133static file_ptr dwarf_loc_offset;
134static file_ptr dwarf_macinfo_offset;
135static file_ptr dwarf_str_offset;
af34e669 136static file_ptr dwarf_ranges_offset;
b6af0555
JS
137file_ptr dwarf_frame_offset;
138file_ptr dwarf_eh_frame_offset;
c906108c
SS
139
140static unsigned int dwarf_info_size;
141static unsigned int dwarf_abbrev_size;
142static unsigned int dwarf_line_size;
143static unsigned int dwarf_pubnames_size;
144static unsigned int dwarf_aranges_size;
145static unsigned int dwarf_loc_size;
146static unsigned int dwarf_macinfo_size;
147static unsigned int dwarf_str_size;
af34e669 148static unsigned int dwarf_ranges_size;
b6af0555
JS
149unsigned int dwarf_frame_size;
150unsigned int dwarf_eh_frame_size;
c906108c 151
086df311
DJ
152static asection *dwarf_info_section;
153static asection *dwarf_abbrev_section;
154static asection *dwarf_line_section;
155static asection *dwarf_pubnames_section;
156static asection *dwarf_aranges_section;
157static asection *dwarf_loc_section;
158static asection *dwarf_macinfo_section;
159static asection *dwarf_str_section;
160static asection *dwarf_ranges_section;
161asection *dwarf_frame_section;
162asection *dwarf_eh_frame_section;
163
c906108c
SS
164/* names of the debugging sections */
165
166#define INFO_SECTION ".debug_info"
167#define ABBREV_SECTION ".debug_abbrev"
168#define LINE_SECTION ".debug_line"
169#define PUBNAMES_SECTION ".debug_pubnames"
170#define ARANGES_SECTION ".debug_aranges"
171#define LOC_SECTION ".debug_loc"
172#define MACINFO_SECTION ".debug_macinfo"
173#define STR_SECTION ".debug_str"
af34e669 174#define RANGES_SECTION ".debug_ranges"
b6af0555
JS
175#define FRAME_SECTION ".debug_frame"
176#define EH_FRAME_SECTION ".eh_frame"
c906108c
SS
177
178/* local data types */
179
57349743
JB
180/* We hold several abbreviation tables in memory at the same time. */
181#ifndef ABBREV_HASH_SIZE
182#define ABBREV_HASH_SIZE 121
183#endif
184
107d2387
AC
185/* The data in a compilation unit header, after target2host
186 translation, looks like this. */
c906108c
SS
187struct comp_unit_head
188 {
613e1657 189 unsigned long length;
c906108c
SS
190 short version;
191 unsigned int abbrev_offset;
192 unsigned char addr_size;
107d2387 193 unsigned char signed_addr_p;
613e1657
KB
194 unsigned int offset_size; /* size of file offsets; either 4 or 8 */
195 unsigned int initial_length_size; /* size of the length field; either
196 4 or 12 */
57349743
JB
197
198 /* Offset to the first byte of this compilation unit header in the
199 * .debug_info section, for resolving relative reference dies. */
200
201 unsigned int offset;
202
203 /* Pointer to this compilation unit header in the .debug_info
204 * section */
205
206 char *cu_head_ptr;
207
208 /* Pointer to the first die of this compilatio unit. This will
209 * be the first byte following the compilation unit header. */
210
211 char *first_die_ptr;
212
213 /* Pointer to the next compilation unit header in the program. */
214
215 struct comp_unit_head *next;
216
217 /* DWARF abbreviation table associated with this compilation unit */
218
219 struct abbrev_info *dwarf2_abbrevs[ABBREV_HASH_SIZE];
af34e669
DJ
220
221 /* Pointer to the DIE associated with the compilation unit. */
222
223 struct die_info *die;
c906108c
SS
224 };
225
debd256d
JB
226/* The line number information for a compilation unit (found in the
227 .debug_line section) begins with a "statement program header",
228 which contains the following information. */
229struct line_header
230{
231 unsigned int total_length;
232 unsigned short version;
233 unsigned int header_length;
234 unsigned char minimum_instruction_length;
235 unsigned char default_is_stmt;
236 int line_base;
237 unsigned char line_range;
238 unsigned char opcode_base;
239
240 /* standard_opcode_lengths[i] is the number of operands for the
241 standard opcode whose value is i. This means that
242 standard_opcode_lengths[0] is unused, and the last meaningful
243 element is standard_opcode_lengths[opcode_base - 1]. */
244 unsigned char *standard_opcode_lengths;
245
246 /* The include_directories table. NOTE! These strings are not
247 allocated with xmalloc; instead, they are pointers into
248 debug_line_buffer. If you try to free them, `free' will get
249 indigestion. */
250 unsigned int num_include_dirs, include_dirs_size;
251 char **include_dirs;
252
253 /* The file_names table. NOTE! These strings are not allocated
254 with xmalloc; instead, they are pointers into debug_line_buffer.
255 Don't try to free them directly. */
256 unsigned int num_file_names, file_names_size;
257 struct file_entry
c906108c 258 {
debd256d
JB
259 char *name;
260 unsigned int dir_index;
261 unsigned int mod_time;
262 unsigned int length;
263 } *file_names;
264
265 /* The start and end of the statement program following this
266 header. These point into dwarf_line_buffer. */
267 char *statement_program_start, *statement_program_end;
268};
c906108c
SS
269
270/* When we construct a partial symbol table entry we only
271 need this much information. */
272struct partial_die_info
273 {
274 enum dwarf_tag tag;
275 unsigned char has_children;
276 unsigned char is_external;
277 unsigned char is_declaration;
278 unsigned char has_type;
279 unsigned int offset;
280 unsigned int abbrev;
281 char *name;
0b010bcc 282 int has_pc_info;
c906108c
SS
283 CORE_ADDR lowpc;
284 CORE_ADDR highpc;
285 struct dwarf_block *locdesc;
286 unsigned int language;
287 char *sibling;
288 };
289
290/* This data structure holds the information of an abbrev. */
291struct abbrev_info
292 {
293 unsigned int number; /* number identifying abbrev */
294 enum dwarf_tag tag; /* dwarf tag */
295 int has_children; /* boolean */
296 unsigned int num_attrs; /* number of attributes */
297 struct attr_abbrev *attrs; /* an array of attribute descriptions */
298 struct abbrev_info *next; /* next in chain */
299 };
300
301struct attr_abbrev
302 {
303 enum dwarf_attribute name;
304 enum dwarf_form form;
305 };
306
307/* This data structure holds a complete die structure. */
308struct die_info
309 {
c5aa993b
JM
310 enum dwarf_tag tag; /* Tag indicating type of die */
311 unsigned short has_children; /* Does the die have children */
312 unsigned int abbrev; /* Abbrev number */
313 unsigned int offset; /* Offset in .debug_info section */
314 unsigned int num_attrs; /* Number of attributes */
315 struct attribute *attrs; /* An array of attributes */
316 struct die_info *next_ref; /* Next die in ref hash table */
317 struct die_info *next; /* Next die in linked list */
318 struct type *type; /* Cached type information */
c906108c
SS
319 };
320
321/* Attributes have a name and a value */
322struct attribute
323 {
324 enum dwarf_attribute name;
325 enum dwarf_form form;
326 union
327 {
328 char *str;
329 struct dwarf_block *blk;
ce5d95e1
JB
330 unsigned long unsnd;
331 long int snd;
c906108c
SS
332 CORE_ADDR addr;
333 }
334 u;
335 };
336
5fb290d7
DJ
337struct function_range
338{
339 const char *name;
340 CORE_ADDR lowpc, highpc;
341 int seen_line;
342 struct function_range *next;
343};
344
345static struct function_range *cu_first_fn, *cu_last_fn, *cu_cached_fn;
346
c906108c
SS
347/* Get at parts of an attribute structure */
348
349#define DW_STRING(attr) ((attr)->u.str)
350#define DW_UNSND(attr) ((attr)->u.unsnd)
351#define DW_BLOCK(attr) ((attr)->u.blk)
352#define DW_SND(attr) ((attr)->u.snd)
353#define DW_ADDR(attr) ((attr)->u.addr)
354
355/* Blocks are a bunch of untyped bytes. */
356struct dwarf_block
357 {
358 unsigned int size;
359 char *data;
360 };
361
c906108c
SS
362#ifndef ATTR_ALLOC_CHUNK
363#define ATTR_ALLOC_CHUNK 4
364#endif
365
c906108c
SS
366/* A hash table of die offsets for following references. */
367#ifndef REF_HASH_SIZE
368#define REF_HASH_SIZE 1021
369#endif
370
371static struct die_info *die_ref_table[REF_HASH_SIZE];
372
373/* Obstack for allocating temporary storage used during symbol reading. */
374static struct obstack dwarf2_tmp_obstack;
375
376/* Offset to the first byte of the current compilation unit header,
377 for resolving relative reference dies. */
378static unsigned int cu_header_offset;
379
380/* Allocate fields for structs, unions and enums in this size. */
381#ifndef DW_FIELD_ALLOC_CHUNK
382#define DW_FIELD_ALLOC_CHUNK 4
383#endif
384
385/* The language we are debugging. */
386static enum language cu_language;
387static const struct language_defn *cu_language_defn;
388
389/* Actually data from the sections. */
390static char *dwarf_info_buffer;
391static char *dwarf_abbrev_buffer;
392static char *dwarf_line_buffer;
4bdf3d34 393static char *dwarf_str_buffer;
2e276125 394static char *dwarf_macinfo_buffer;
af34e669 395static char *dwarf_ranges_buffer;
c906108c
SS
396
397/* A zeroed version of a partial die for initialization purposes. */
398static struct partial_die_info zeroed_partial_die;
399
400/* The generic symbol table building routines have separate lists for
401 file scope symbols and all all other scopes (local scopes). So
402 we need to select the right one to pass to add_symbol_to_list().
403 We do it by keeping a pointer to the correct list in list_in_scope.
404
405 FIXME: The original dwarf code just treated the file scope as the first
406 local scope, and all other local scopes as nested local scopes, and worked
407 fine. Check to see if we really need to distinguish these
408 in buildsym.c. */
409static struct pending **list_in_scope = &file_symbols;
410
7a292a7a
SS
411/* FIXME: decode_locdesc sets these variables to describe the location
412 to the caller. These ought to be a structure or something. If
413 none of the flags are set, the object lives at the address returned
414 by decode_locdesc. */
415
416static int optimized_out; /* No ops in location in expression,
417 so object was optimized out. */
418static int isreg; /* Object lives in register.
419 decode_locdesc's return value is
420 the register number. */
421static int offreg; /* Object's address is the sum of the
422 register specified by basereg, plus
423 the offset returned. */
c5aa993b 424static int basereg; /* See `offreg'. */
7a292a7a
SS
425static int isderef; /* Value described by flags above is
426 the address of a pointer to the object. */
427static int islocal; /* Variable is at the returned offset
428 from the frame start, but there's
429 no identified frame pointer for
430 this function, so we can't say
431 which register it's relative to;
432 use LOC_LOCAL. */
9d774e44
EZ
433static int is_thread_local; /* Variable is at a constant offset in the
434 thread-local storage block for the
435 current thread and the dynamic linker
436 module containing this expression.
437 decode_locdesc returns the offset from
438 that base. */
c906108c
SS
439
440/* DW_AT_frame_base values for the current function.
441 frame_base_reg is -1 if DW_AT_frame_base is missing, otherwise it
442 contains the register number for the frame register.
443 frame_base_offset is the offset from the frame register to the
444 virtual stack frame. */
445static int frame_base_reg;
446static CORE_ADDR frame_base_offset;
447
357e46e7 448/* This value is added to each symbol value. FIXME: Generalize to
c906108c
SS
449 the section_offsets structure used by dbxread (once this is done,
450 pass the appropriate section number to end_symtab). */
451static CORE_ADDR baseaddr; /* Add to each symbol value */
452
453/* We put a pointer to this structure in the read_symtab_private field
454 of the psymtab.
455 The complete dwarf information for an objfile is kept in the
456 psymbol_obstack, so that absolute die references can be handled.
457 Most of the information in this structure is related to an entire
458 object file and could be passed via the sym_private field of the objfile.
459 It is however conceivable that dwarf2 might not be the only type
460 of symbols read from an object file. */
461
462struct dwarf2_pinfo
c5aa993b
JM
463 {
464 /* Pointer to start of dwarf info buffer for the objfile. */
c906108c 465
c5aa993b 466 char *dwarf_info_buffer;
c906108c 467
c5aa993b 468 /* Offset in dwarf_info_buffer for this compilation unit. */
c906108c 469
c5aa993b 470 unsigned long dwarf_info_offset;
c906108c 471
c5aa993b 472 /* Pointer to start of dwarf abbreviation buffer for the objfile. */
c906108c 473
c5aa993b 474 char *dwarf_abbrev_buffer;
c906108c 475
c5aa993b 476 /* Size of dwarf abbreviation section for the objfile. */
c906108c 477
c5aa993b 478 unsigned int dwarf_abbrev_size;
c906108c 479
c5aa993b 480 /* Pointer to start of dwarf line buffer for the objfile. */
c906108c 481
c5aa993b 482 char *dwarf_line_buffer;
4bdf3d34 483
9ab3e532
JB
484 /* Size of dwarf_line_buffer, in bytes. */
485
486 unsigned int dwarf_line_size;
487
4bdf3d34
JJ
488 /* Pointer to start of dwarf string buffer for the objfile. */
489
490 char *dwarf_str_buffer;
491
492 /* Size of dwarf string section for the objfile. */
493
494 unsigned int dwarf_str_size;
2e276125
JB
495
496 /* Pointer to start of dwarf macro buffer for the objfile. */
497
498 char *dwarf_macinfo_buffer;
499
500 /* Size of dwarf macinfo section for the objfile. */
501
502 unsigned int dwarf_macinfo_size;
503
af34e669
DJ
504 /* Pointer to start of dwarf ranges buffer for the objfile. */
505
506 char *dwarf_ranges_buffer;
507
508 /* Size of dwarf ranges buffer for the objfile. */
509
510 unsigned int dwarf_ranges_size;
511
c5aa993b 512 };
c906108c
SS
513
514#define PST_PRIVATE(p) ((struct dwarf2_pinfo *)(p)->read_symtab_private)
515#define DWARF_INFO_BUFFER(p) (PST_PRIVATE(p)->dwarf_info_buffer)
516#define DWARF_INFO_OFFSET(p) (PST_PRIVATE(p)->dwarf_info_offset)
517#define DWARF_ABBREV_BUFFER(p) (PST_PRIVATE(p)->dwarf_abbrev_buffer)
518#define DWARF_ABBREV_SIZE(p) (PST_PRIVATE(p)->dwarf_abbrev_size)
519#define DWARF_LINE_BUFFER(p) (PST_PRIVATE(p)->dwarf_line_buffer)
9ab3e532 520#define DWARF_LINE_SIZE(p) (PST_PRIVATE(p)->dwarf_line_size)
4bdf3d34
JJ
521#define DWARF_STR_BUFFER(p) (PST_PRIVATE(p)->dwarf_str_buffer)
522#define DWARF_STR_SIZE(p) (PST_PRIVATE(p)->dwarf_str_size)
2e276125
JB
523#define DWARF_MACINFO_BUFFER(p) (PST_PRIVATE(p)->dwarf_macinfo_buffer)
524#define DWARF_MACINFO_SIZE(p) (PST_PRIVATE(p)->dwarf_macinfo_size)
af34e669
DJ
525#define DWARF_RANGES_BUFFER(p) (PST_PRIVATE(p)->dwarf_ranges_buffer)
526#define DWARF_RANGES_SIZE(p) (PST_PRIVATE(p)->dwarf_ranges_size)
c906108c
SS
527
528/* Maintain an array of referenced fundamental types for the current
529 compilation unit being read. For DWARF version 1, we have to construct
530 the fundamental types on the fly, since no information about the
531 fundamental types is supplied. Each such fundamental type is created by
532 calling a language dependent routine to create the type, and then a
533 pointer to that type is then placed in the array at the index specified
534 by it's FT_<TYPENAME> value. The array has a fixed size set by the
535 FT_NUM_MEMBERS compile time constant, which is the number of predefined
536 fundamental types gdb knows how to construct. */
537static struct type *ftypes[FT_NUM_MEMBERS]; /* Fundamental types */
538
539/* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
540 but this would require a corresponding change in unpack_field_as_long
541 and friends. */
542static int bits_per_byte = 8;
543
544/* The routines that read and process dies for a C struct or C++ class
545 pass lists of data member fields and lists of member function fields
546 in an instance of a field_info structure, as defined below. */
547struct field_info
c5aa993b
JM
548 {
549 /* List of data member and baseclasses fields. */
550 struct nextfield
551 {
552 struct nextfield *next;
553 int accessibility;
554 int virtuality;
555 struct field field;
556 }
557 *fields;
c906108c 558
c5aa993b
JM
559 /* Number of fields. */
560 int nfields;
c906108c 561
c5aa993b
JM
562 /* Number of baseclasses. */
563 int nbaseclasses;
c906108c 564
c5aa993b
JM
565 /* Set if the accesibility of one of the fields is not public. */
566 int non_public_fields;
c906108c 567
c5aa993b
JM
568 /* Member function fields array, entries are allocated in the order they
569 are encountered in the object file. */
570 struct nextfnfield
571 {
572 struct nextfnfield *next;
573 struct fn_field fnfield;
574 }
575 *fnfields;
c906108c 576
c5aa993b
JM
577 /* Member function fieldlist array, contains name of possibly overloaded
578 member function, number of overloaded member functions and a pointer
579 to the head of the member function field chain. */
580 struct fnfieldlist
581 {
582 char *name;
583 int length;
584 struct nextfnfield *head;
585 }
586 *fnfieldlists;
c906108c 587
c5aa993b
JM
588 /* Number of entries in the fnfieldlists array. */
589 int nfnfields;
590 };
c906108c 591
c906108c
SS
592/* Various complaints about symbol reading that don't abort the process */
593
4d3c2250
KB
594static void
595dwarf2_non_const_array_bound_ignored_complaint (const char *arg1)
2e276125 596{
4d3c2250
KB
597 complaint (&symfile_complaints, "non-constant array bounds form '%s' ignored",
598 arg1);
599}
600
601static void
602dwarf2_statement_list_fits_in_line_number_section_complaint (void)
2e276125 603{
4d3c2250
KB
604 complaint (&symfile_complaints,
605 "statement list doesn't fit in .debug_line section");
606}
607
608static void
609dwarf2_complex_location_expr_complaint (void)
2e276125 610{
4d3c2250
KB
611 complaint (&symfile_complaints, "location expression too complex");
612}
613
614static void
615dwarf2_unsupported_at_frame_base_complaint (const char *arg1)
2e276125 616{
4d3c2250
KB
617 complaint (&symfile_complaints,
618 "unsupported DW_AT_frame_base for function '%s'", arg1);
619}
620
621static void
622dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
623 int arg3)
2e276125 624{
4d3c2250
KB
625 complaint (&symfile_complaints,
626 "const value length mismatch for '%s', got %d, expected %d", arg1,
627 arg2, arg3);
628}
629
630static void
631dwarf2_macros_too_long_complaint (void)
2e276125 632{
4d3c2250
KB
633 complaint (&symfile_complaints,
634 "macro info runs off end of `.debug_macinfo' section");
635}
636
637static void
638dwarf2_macro_malformed_definition_complaint (const char *arg1)
8e19ed76 639{
4d3c2250
KB
640 complaint (&symfile_complaints,
641 "macro debug info contains a malformed macro definition:\n`%s'",
642 arg1);
643}
644
645static void
646dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
8b2dbe47 647{
4d3c2250
KB
648 complaint (&symfile_complaints,
649 "invalid attribute class or form for '%s' in '%s'", arg1, arg2);
650}
c906108c 651
c906108c
SS
652/* local function prototypes */
653
4efb68b1 654static void dwarf2_locate_sections (bfd *, asection *, void *);
c906108c
SS
655
656#if 0
a14ed312 657static void dwarf2_build_psymtabs_easy (struct objfile *, int);
c906108c
SS
658#endif
659
a14ed312 660static void dwarf2_build_psymtabs_hard (struct objfile *, int);
c906108c 661
a14ed312 662static char *scan_partial_symbols (char *, struct objfile *,
107d2387
AC
663 CORE_ADDR *, CORE_ADDR *,
664 const struct comp_unit_head *);
c906108c 665
107d2387
AC
666static void add_partial_symbol (struct partial_die_info *, struct objfile *,
667 const struct comp_unit_head *);
c906108c 668
a14ed312 669static void dwarf2_psymtab_to_symtab (struct partial_symtab *);
c906108c 670
a14ed312 671static void psymtab_to_symtab_1 (struct partial_symtab *);
c906108c 672
086df311
DJ
673char *dwarf2_read_section (struct objfile *, file_ptr, unsigned int,
674 asection *);
c906108c 675
57349743 676static void dwarf2_read_abbrevs (bfd *abfd, struct comp_unit_head *cu_header);
c906108c 677
4efb68b1 678static void dwarf2_empty_abbrev_table (void *);
c906108c 679
57349743
JB
680static struct abbrev_info *dwarf2_lookup_abbrev (unsigned int,
681 const struct comp_unit_head *cu_header);
c906108c 682
a14ed312 683static char *read_partial_die (struct partial_die_info *,
0b010bcc 684 bfd *, char *,
107d2387 685 const struct comp_unit_head *);
c906108c 686
107d2387
AC
687static char *read_full_die (struct die_info **, bfd *, char *,
688 const struct comp_unit_head *);
c906108c 689
a14ed312 690static char *read_attribute (struct attribute *, struct attr_abbrev *,
107d2387 691 bfd *, char *, const struct comp_unit_head *);
c906108c 692
a8329558
KW
693static char *read_attribute_value (struct attribute *, unsigned,
694 bfd *, char *, const struct comp_unit_head *);
695
a14ed312 696static unsigned int read_1_byte (bfd *, char *);
c906108c 697
a14ed312 698static int read_1_signed_byte (bfd *, char *);
c906108c 699
a14ed312 700static unsigned int read_2_bytes (bfd *, char *);
c906108c 701
a14ed312 702static unsigned int read_4_bytes (bfd *, char *);
c906108c 703
ce5d95e1 704static unsigned long read_8_bytes (bfd *, char *);
c906108c 705
107d2387
AC
706static CORE_ADDR read_address (bfd *, char *ptr, const struct comp_unit_head *,
707 int *bytes_read);
c906108c 708
613e1657
KB
709static LONGEST read_initial_length (bfd *, char *,
710 struct comp_unit_head *, int *bytes_read);
711
712static LONGEST read_offset (bfd *, char *, const struct comp_unit_head *,
713 int *bytes_read);
714
a14ed312 715static char *read_n_bytes (bfd *, char *, unsigned int);
c906108c 716
a14ed312 717static char *read_string (bfd *, char *, unsigned int *);
c906108c 718
4bdf3d34
JJ
719static char *read_indirect_string (bfd *, char *, const struct comp_unit_head *,
720 unsigned int *);
721
ce5d95e1 722static unsigned long read_unsigned_leb128 (bfd *, char *, unsigned int *);
c906108c 723
ce5d95e1 724static long read_signed_leb128 (bfd *, char *, unsigned int *);
c906108c 725
a14ed312 726static void set_cu_language (unsigned int);
c906108c 727
a14ed312 728static struct attribute *dwarf_attr (struct die_info *, unsigned int);
c906108c 729
3ca72b44
AC
730static int die_is_declaration (struct die_info *);
731
debd256d
JB
732static void free_line_header (struct line_header *lh);
733
734static struct line_header *(dwarf_decode_line_header
735 (unsigned int offset,
736 bfd *abfd,
737 const struct comp_unit_head *cu_header));
738
739static void dwarf_decode_lines (struct line_header *, char *, bfd *,
107d2387 740 const struct comp_unit_head *);
c906108c 741
a14ed312 742static void dwarf2_start_subfile (char *, char *);
c906108c 743
a14ed312 744static struct symbol *new_symbol (struct die_info *, struct type *,
107d2387 745 struct objfile *, const struct comp_unit_head *);
c906108c 746
a14ed312 747static void dwarf2_const_value (struct attribute *, struct symbol *,
107d2387 748 struct objfile *, const struct comp_unit_head *);
c906108c 749
2df3850c
JM
750static void dwarf2_const_value_data (struct attribute *attr,
751 struct symbol *sym,
752 int bits);
753
107d2387
AC
754static struct type *die_type (struct die_info *, struct objfile *,
755 const struct comp_unit_head *);
c906108c 756
107d2387
AC
757static struct type *die_containing_type (struct die_info *, struct objfile *,
758 const struct comp_unit_head *);
c906108c
SS
759
760#if 0
a14ed312 761static struct type *type_at_offset (unsigned int, struct objfile *);
c906108c
SS
762#endif
763
107d2387
AC
764static struct type *tag_type_to_type (struct die_info *, struct objfile *,
765 const struct comp_unit_head *);
c906108c 766
107d2387
AC
767static void read_type_die (struct die_info *, struct objfile *,
768 const struct comp_unit_head *);
c906108c 769
107d2387
AC
770static void read_typedef (struct die_info *, struct objfile *,
771 const struct comp_unit_head *);
c906108c 772
a14ed312 773static void read_base_type (struct die_info *, struct objfile *);
c906108c 774
107d2387
AC
775static void read_file_scope (struct die_info *, struct objfile *,
776 const struct comp_unit_head *);
c906108c 777
107d2387
AC
778static void read_func_scope (struct die_info *, struct objfile *,
779 const struct comp_unit_head *);
c906108c 780
107d2387
AC
781static void read_lexical_block_scope (struct die_info *, struct objfile *,
782 const struct comp_unit_head *);
c906108c 783
a14ed312 784static int dwarf2_get_pc_bounds (struct die_info *,
af34e669
DJ
785 CORE_ADDR *, CORE_ADDR *, struct objfile *,
786 const struct comp_unit_head *);
c906108c 787
a14ed312 788static void dwarf2_add_field (struct field_info *, struct die_info *,
107d2387 789 struct objfile *, const struct comp_unit_head *);
c906108c 790
a14ed312
KB
791static void dwarf2_attach_fields_to_type (struct field_info *,
792 struct type *, struct objfile *);
c906108c 793
a14ed312 794static void dwarf2_add_member_fn (struct field_info *,
e26fb1d7
DC
795 struct die_info *, struct type *,
796 struct objfile *objfile,
107d2387 797 const struct comp_unit_head *);
c906108c 798
a14ed312
KB
799static void dwarf2_attach_fn_fields_to_type (struct field_info *,
800 struct type *, struct objfile *);
c906108c 801
107d2387
AC
802static void read_structure_scope (struct die_info *, struct objfile *,
803 const struct comp_unit_head *);
c906108c 804
107d2387
AC
805static void read_common_block (struct die_info *, struct objfile *,
806 const struct comp_unit_head *);
c906108c 807
d9fa45fe
DC
808static void read_namespace (struct die_info *die, struct objfile *objfile,
809 const struct comp_unit_head *cu_header);
810
107d2387
AC
811static void read_enumeration (struct die_info *, struct objfile *,
812 const struct comp_unit_head *);
c906108c 813
a14ed312 814static struct type *dwarf_base_type (int, int, struct objfile *);
c906108c 815
107d2387
AC
816static CORE_ADDR decode_locdesc (struct dwarf_block *, struct objfile *,
817 const struct comp_unit_head *);
c906108c 818
107d2387
AC
819static void read_array_type (struct die_info *, struct objfile *,
820 const struct comp_unit_head *);
c906108c 821
107d2387
AC
822static void read_tag_pointer_type (struct die_info *, struct objfile *,
823 const struct comp_unit_head *);
c906108c 824
107d2387
AC
825static void read_tag_ptr_to_member_type (struct die_info *, struct objfile *,
826 const struct comp_unit_head *);
c906108c 827
107d2387
AC
828static void read_tag_reference_type (struct die_info *, struct objfile *,
829 const struct comp_unit_head *);
c906108c 830
107d2387
AC
831static void read_tag_const_type (struct die_info *, struct objfile *,
832 const struct comp_unit_head *);
c906108c 833
107d2387
AC
834static void read_tag_volatile_type (struct die_info *, struct objfile *,
835 const struct comp_unit_head *);
c906108c 836
a14ed312 837static void read_tag_string_type (struct die_info *, struct objfile *);
c906108c 838
107d2387
AC
839static void read_subroutine_type (struct die_info *, struct objfile *,
840 const struct comp_unit_head *);
c906108c 841
f9aca02d
JB
842static struct die_info *read_comp_unit (char *, bfd *,
843 const struct comp_unit_head *);
c906108c 844
a14ed312 845static void free_die_list (struct die_info *);
c906108c 846
74b7792f
AC
847static struct cleanup *make_cleanup_free_die_list (struct die_info *);
848
107d2387
AC
849static void process_die (struct die_info *, struct objfile *,
850 const struct comp_unit_head *);
c906108c 851
a14ed312 852static char *dwarf2_linkage_name (struct die_info *);
c906108c 853
a14ed312 854static char *dwarf_tag_name (unsigned int);
c906108c 855
a14ed312 856static char *dwarf_attr_name (unsigned int);
c906108c 857
a14ed312 858static char *dwarf_form_name (unsigned int);
c906108c 859
a14ed312 860static char *dwarf_stack_op_name (unsigned int);
c906108c 861
a14ed312 862static char *dwarf_bool_name (unsigned int);
c906108c 863
a14ed312 864static char *dwarf_type_encoding_name (unsigned int);
c906108c
SS
865
866#if 0
a14ed312 867static char *dwarf_cfi_name (unsigned int);
c906108c 868
a14ed312 869struct die_info *copy_die (struct die_info *);
c906108c
SS
870#endif
871
f9aca02d 872static struct die_info *sibling_die (struct die_info *);
c906108c 873
f9aca02d 874static void dump_die (struct die_info *);
c906108c 875
f9aca02d 876static void dump_die_list (struct die_info *);
c906108c 877
f9aca02d 878static void store_in_ref_table (unsigned int, struct die_info *);
c906108c 879
7f0e3f52 880static void dwarf2_empty_hash_tables (void);
c906108c 881
a14ed312 882static unsigned int dwarf2_get_ref_die_offset (struct attribute *);
c906108c 883
f9aca02d 884static struct die_info *follow_die_ref (unsigned int);
c906108c 885
a14ed312 886static struct type *dwarf2_fundamental_type (struct objfile *, int);
c906108c
SS
887
888/* memory allocation interface */
889
4efb68b1 890static void dwarf2_free_tmp_obstack (void *);
c906108c 891
a14ed312 892static struct dwarf_block *dwarf_alloc_block (void);
c906108c 893
a14ed312 894static struct abbrev_info *dwarf_alloc_abbrev (void);
c906108c 895
a14ed312 896static struct die_info *dwarf_alloc_die (void);
c906108c 897
5fb290d7
DJ
898static void initialize_cu_func_list (void);
899
900static void add_to_cu_func_list (const char *, CORE_ADDR, CORE_ADDR);
901
2e276125
JB
902static void dwarf_decode_macros (struct line_header *, unsigned int,
903 char *, bfd *, const struct comp_unit_head *,
904 struct objfile *);
905
8e19ed76
PS
906static int attr_form_is_block (struct attribute *);
907
c906108c
SS
908/* Try to locate the sections we need for DWARF 2 debugging
909 information and return true if we have enough to do something. */
910
911int
fba45db2 912dwarf2_has_info (bfd *abfd)
c906108c 913{
2e276125
JB
914 dwarf_info_offset = 0;
915 dwarf_abbrev_offset = 0;
916 dwarf_line_offset = 0;
4bdf3d34 917 dwarf_str_offset = 0;
2e276125
JB
918 dwarf_macinfo_offset = 0;
919 dwarf_frame_offset = 0;
920 dwarf_eh_frame_offset = 0;
af34e669
DJ
921 dwarf_ranges_offset = 0;
922
c906108c
SS
923 bfd_map_over_sections (abfd, dwarf2_locate_sections, NULL);
924 if (dwarf_info_offset && dwarf_abbrev_offset)
925 {
926 return 1;
927 }
928 else
929 {
930 return 0;
931 }
932}
933
934/* This function is mapped across the sections and remembers the
935 offset and size of each of the debugging sections we are interested
936 in. */
937
938static void
4efb68b1 939dwarf2_locate_sections (bfd *ignore_abfd, asection *sectp, void *ignore_ptr)
c906108c
SS
940{
941 if (STREQ (sectp->name, INFO_SECTION))
942 {
943 dwarf_info_offset = sectp->filepos;
944 dwarf_info_size = bfd_get_section_size_before_reloc (sectp);
086df311 945 dwarf_info_section = sectp;
c906108c
SS
946 }
947 else if (STREQ (sectp->name, ABBREV_SECTION))
948 {
949 dwarf_abbrev_offset = sectp->filepos;
950 dwarf_abbrev_size = bfd_get_section_size_before_reloc (sectp);
086df311 951 dwarf_abbrev_section = sectp;
c906108c
SS
952 }
953 else if (STREQ (sectp->name, LINE_SECTION))
954 {
955 dwarf_line_offset = sectp->filepos;
956 dwarf_line_size = bfd_get_section_size_before_reloc (sectp);
086df311 957 dwarf_line_section = sectp;
c906108c
SS
958 }
959 else if (STREQ (sectp->name, PUBNAMES_SECTION))
960 {
961 dwarf_pubnames_offset = sectp->filepos;
962 dwarf_pubnames_size = bfd_get_section_size_before_reloc (sectp);
086df311 963 dwarf_pubnames_section = sectp;
c906108c
SS
964 }
965 else if (STREQ (sectp->name, ARANGES_SECTION))
966 {
967 dwarf_aranges_offset = sectp->filepos;
968 dwarf_aranges_size = bfd_get_section_size_before_reloc (sectp);
086df311 969 dwarf_aranges_section = sectp;
c906108c
SS
970 }
971 else if (STREQ (sectp->name, LOC_SECTION))
972 {
973 dwarf_loc_offset = sectp->filepos;
974 dwarf_loc_size = bfd_get_section_size_before_reloc (sectp);
086df311 975 dwarf_loc_section = sectp;
c906108c
SS
976 }
977 else if (STREQ (sectp->name, MACINFO_SECTION))
978 {
979 dwarf_macinfo_offset = sectp->filepos;
980 dwarf_macinfo_size = bfd_get_section_size_before_reloc (sectp);
086df311 981 dwarf_loc_section = sectp;
c906108c
SS
982 }
983 else if (STREQ (sectp->name, STR_SECTION))
984 {
985 dwarf_str_offset = sectp->filepos;
986 dwarf_str_size = bfd_get_section_size_before_reloc (sectp);
086df311 987 dwarf_str_section = sectp;
c906108c 988 }
b6af0555
JS
989 else if (STREQ (sectp->name, FRAME_SECTION))
990 {
991 dwarf_frame_offset = sectp->filepos;
992 dwarf_frame_size = bfd_get_section_size_before_reloc (sectp);
086df311 993 dwarf_frame_section = sectp;
b6af0555
JS
994 }
995 else if (STREQ (sectp->name, EH_FRAME_SECTION))
996 {
997 dwarf_eh_frame_offset = sectp->filepos;
998 dwarf_eh_frame_size = bfd_get_section_size_before_reloc (sectp);
086df311 999 dwarf_eh_frame_section = sectp;
b6af0555 1000 }
af34e669
DJ
1001 else if (STREQ (sectp->name, RANGES_SECTION))
1002 {
1003 dwarf_ranges_offset = sectp->filepos;
1004 dwarf_ranges_size = bfd_get_section_size_before_reloc (sectp);
6f10aeb1 1005 dwarf_ranges_section = sectp;
af34e669 1006 }
c906108c
SS
1007}
1008
1009/* Build a partial symbol table. */
1010
1011void
fba45db2 1012dwarf2_build_psymtabs (struct objfile *objfile, int mainline)
c906108c
SS
1013{
1014
1015 /* We definitely need the .debug_info and .debug_abbrev sections */
1016
1017 dwarf_info_buffer = dwarf2_read_section (objfile,
1018 dwarf_info_offset,
086df311
DJ
1019 dwarf_info_size,
1020 dwarf_info_section);
c906108c
SS
1021 dwarf_abbrev_buffer = dwarf2_read_section (objfile,
1022 dwarf_abbrev_offset,
086df311
DJ
1023 dwarf_abbrev_size,
1024 dwarf_abbrev_section);
41ff2da1
DC
1025
1026 if (dwarf_line_offset)
1027 dwarf_line_buffer = dwarf2_read_section (objfile,
1028 dwarf_line_offset,
086df311
DJ
1029 dwarf_line_size,
1030 dwarf_line_section);
41ff2da1
DC
1031 else
1032 dwarf_line_buffer = NULL;
c906108c 1033
4bdf3d34
JJ
1034 if (dwarf_str_offset)
1035 dwarf_str_buffer = dwarf2_read_section (objfile,
1036 dwarf_str_offset,
086df311
DJ
1037 dwarf_str_size,
1038 dwarf_str_section);
4bdf3d34
JJ
1039 else
1040 dwarf_str_buffer = NULL;
1041
2e276125
JB
1042 if (dwarf_macinfo_offset)
1043 dwarf_macinfo_buffer = dwarf2_read_section (objfile,
1044 dwarf_macinfo_offset,
086df311
DJ
1045 dwarf_macinfo_size,
1046 dwarf_macinfo_section);
2e276125
JB
1047 else
1048 dwarf_macinfo_buffer = NULL;
1049
af34e669
DJ
1050 if (dwarf_ranges_offset)
1051 dwarf_ranges_buffer = dwarf2_read_section (objfile,
1052 dwarf_ranges_offset,
086df311
DJ
1053 dwarf_ranges_size,
1054 dwarf_ranges_section);
af34e669
DJ
1055 else
1056 dwarf_ranges_buffer = NULL;
1057
ef96bde8
EZ
1058 if (mainline
1059 || (objfile->global_psymbols.size == 0
1060 && objfile->static_psymbols.size == 0))
c906108c
SS
1061 {
1062 init_psymbol_list (objfile, 1024);
1063 }
1064
1065#if 0
1066 if (dwarf_aranges_offset && dwarf_pubnames_offset)
1067 {
d4f3574e 1068 /* Things are significantly easier if we have .debug_aranges and
c906108c
SS
1069 .debug_pubnames sections */
1070
d4f3574e 1071 dwarf2_build_psymtabs_easy (objfile, mainline);
c906108c
SS
1072 }
1073 else
1074#endif
1075 /* only test this case for now */
c5aa993b 1076 {
c906108c 1077 /* In this case we have to work a bit harder */
d4f3574e 1078 dwarf2_build_psymtabs_hard (objfile, mainline);
c906108c
SS
1079 }
1080}
1081
1082#if 0
1083/* Build the partial symbol table from the information in the
1084 .debug_pubnames and .debug_aranges sections. */
1085
1086static void
fba45db2 1087dwarf2_build_psymtabs_easy (struct objfile *objfile, int mainline)
c906108c
SS
1088{
1089 bfd *abfd = objfile->obfd;
1090 char *aranges_buffer, *pubnames_buffer;
1091 char *aranges_ptr, *pubnames_ptr;
1092 unsigned int entry_length, version, info_offset, info_size;
1093
1094 pubnames_buffer = dwarf2_read_section (objfile,
1095 dwarf_pubnames_offset,
086df311
DJ
1096 dwarf_pubnames_size,
1097 dwarf_pubnames_section);
c906108c
SS
1098 pubnames_ptr = pubnames_buffer;
1099 while ((pubnames_ptr - pubnames_buffer) < dwarf_pubnames_size)
1100 {
613e1657
KB
1101 struct comp_unit_head cu_header;
1102 int bytes_read;
1103
1104 entry_length = read_initial_length (abfd, pubnames_ptr, &cu_header,
1105 &bytes_read);
1106 pubnames_ptr += bytes_read;
c906108c
SS
1107 version = read_1_byte (abfd, pubnames_ptr);
1108 pubnames_ptr += 1;
1109 info_offset = read_4_bytes (abfd, pubnames_ptr);
1110 pubnames_ptr += 4;
1111 info_size = read_4_bytes (abfd, pubnames_ptr);
1112 pubnames_ptr += 4;
1113 }
1114
1115 aranges_buffer = dwarf2_read_section (objfile,
1116 dwarf_aranges_offset,
086df311
DJ
1117 dwarf_aranges_size,
1118 dwarf_aranges_section);
c906108c
SS
1119
1120}
1121#endif
1122
107d2387
AC
1123/* Read in the comp unit header information from the debug_info at
1124 info_ptr. */
1125
1126static char *
1127read_comp_unit_head (struct comp_unit_head *cu_header,
1128 char *info_ptr, bfd *abfd)
1129{
1130 int signed_addr;
613e1657
KB
1131 int bytes_read;
1132 cu_header->length = read_initial_length (abfd, info_ptr, cu_header,
1133 &bytes_read);
1134 info_ptr += bytes_read;
107d2387
AC
1135 cu_header->version = read_2_bytes (abfd, info_ptr);
1136 info_ptr += 2;
613e1657
KB
1137 cu_header->abbrev_offset = read_offset (abfd, info_ptr, cu_header,
1138 &bytes_read);
1139 info_ptr += bytes_read;
107d2387
AC
1140 cu_header->addr_size = read_1_byte (abfd, info_ptr);
1141 info_ptr += 1;
1142 signed_addr = bfd_get_sign_extend_vma (abfd);
1143 if (signed_addr < 0)
8e65ff28
AC
1144 internal_error (__FILE__, __LINE__,
1145 "read_comp_unit_head: dwarf from non elf file");
107d2387
AC
1146 cu_header->signed_addr_p = signed_addr;
1147 return info_ptr;
1148}
1149
c906108c
SS
1150/* Build the partial symbol table by doing a quick pass through the
1151 .debug_info and .debug_abbrev sections. */
1152
1153static void
fba45db2 1154dwarf2_build_psymtabs_hard (struct objfile *objfile, int mainline)
c906108c
SS
1155{
1156 /* Instead of reading this into a big buffer, we should probably use
1157 mmap() on architectures that support it. (FIXME) */
1158 bfd *abfd = objfile->obfd;
1159 char *info_ptr, *abbrev_ptr;
1160 char *beg_of_comp_unit;
c906108c
SS
1161 struct partial_die_info comp_unit_die;
1162 struct partial_symtab *pst;
1163 struct cleanup *back_to;
c906108c
SS
1164 CORE_ADDR lowpc, highpc;
1165
c906108c
SS
1166 info_ptr = dwarf_info_buffer;
1167 abbrev_ptr = dwarf_abbrev_buffer;
1168
9e84cbde
JB
1169 /* We use dwarf2_tmp_obstack for objects that don't need to survive
1170 the partial symbol scan, like attribute values.
1171
1172 We could reduce our peak memory consumption during partial symbol
1173 table construction by freeing stuff from this obstack more often
1174 --- say, after processing each compilation unit, or each die ---
1175 but it turns out that this saves almost nothing. For an
1176 executable with 11Mb of Dwarf 2 data, I found about 64k allocated
1177 on dwarf2_tmp_obstack. Some investigation showed:
1178
1179 1) 69% of the attributes used forms DW_FORM_addr, DW_FORM_data*,
1180 DW_FORM_flag, DW_FORM_[su]data, and DW_FORM_ref*. These are
1181 all fixed-length values not requiring dynamic allocation.
1182
1183 2) 30% of the attributes used the form DW_FORM_string. For
1184 DW_FORM_string, read_attribute simply hands back a pointer to
1185 the null-terminated string in dwarf_info_buffer, so no dynamic
1186 allocation is needed there either.
1187
1188 3) The remaining 1% of the attributes all used DW_FORM_block1.
1189 75% of those were DW_AT_frame_base location lists for
1190 functions; the rest were DW_AT_location attributes, probably
1191 for the global variables.
1192
1193 Anyway, what this all means is that the memory the dwarf2
1194 reader uses as temporary space reading partial symbols is about
1195 0.5% as much as we use for dwarf_*_buffer. That's noise. */
1196
c906108c
SS
1197 obstack_init (&dwarf2_tmp_obstack);
1198 back_to = make_cleanup (dwarf2_free_tmp_obstack, NULL);
1199
af703f96
JB
1200 /* Since the objects we're extracting from dwarf_info_buffer vary in
1201 length, only the individual functions to extract them (like
1202 read_comp_unit_head and read_partial_die) can really know whether
1203 the buffer is large enough to hold another complete object.
1204
1205 At the moment, they don't actually check that. If
1206 dwarf_info_buffer holds just one extra byte after the last
1207 compilation unit's dies, then read_comp_unit_head will happily
1208 read off the end of the buffer. read_partial_die is similarly
1209 casual. Those functions should be fixed.
1210
1211 For this loop condition, simply checking whether there's any data
1212 left at all should be sufficient. */
2541c7cf 1213 while (info_ptr < dwarf_info_buffer + dwarf_info_size)
c906108c 1214 {
107d2387 1215 struct comp_unit_head cu_header;
c906108c 1216 beg_of_comp_unit = info_ptr;
107d2387 1217 info_ptr = read_comp_unit_head (&cu_header, info_ptr, abfd);
c906108c
SS
1218
1219 if (cu_header.version != 2)
1220 {
659b0389 1221 error ("Dwarf Error: wrong version in compilation unit header (is %d, should be %d) [in module %s]", cu_header.version, 2, bfd_get_filename (abfd));
c906108c
SS
1222 return;
1223 }
1224 if (cu_header.abbrev_offset >= dwarf_abbrev_size)
1225 {
659b0389 1226 error ("Dwarf Error: bad offset (0x%lx) in compilation unit header (offset 0x%lx + 6) [in module %s]",
c906108c 1227 (long) cu_header.abbrev_offset,
659b0389
ML
1228 (long) (beg_of_comp_unit - dwarf_info_buffer),
1229 bfd_get_filename (abfd));
c906108c
SS
1230 return;
1231 }
613e1657 1232 if (beg_of_comp_unit + cu_header.length + cu_header.initial_length_size
c906108c
SS
1233 > dwarf_info_buffer + dwarf_info_size)
1234 {
659b0389 1235 error ("Dwarf Error: bad length (0x%lx) in compilation unit header (offset 0x%lx + 0) [in module %s]",
c906108c 1236 (long) cu_header.length,
659b0389
ML
1237 (long) (beg_of_comp_unit - dwarf_info_buffer),
1238 bfd_get_filename (abfd));
c906108c
SS
1239 return;
1240 }
57349743
JB
1241 /* Complete the cu_header */
1242 cu_header.offset = beg_of_comp_unit - dwarf_info_buffer;
1243 cu_header.first_die_ptr = info_ptr;
1244 cu_header.cu_head_ptr = beg_of_comp_unit;
1245
c906108c 1246 /* Read the abbrevs for this compilation unit into a table */
57349743
JB
1247 dwarf2_read_abbrevs (abfd, &cu_header);
1248 make_cleanup (dwarf2_empty_abbrev_table, cu_header.dwarf2_abbrevs);
c906108c
SS
1249
1250 /* Read the compilation unit die */
107d2387 1251 info_ptr = read_partial_die (&comp_unit_die, abfd, info_ptr,
0b010bcc 1252 &cu_header);
c906108c
SS
1253
1254 /* Set the language we're debugging */
1255 set_cu_language (comp_unit_die.language);
1256
1257 /* Allocate a new partial symbol table structure */
d4f3574e 1258 pst = start_psymtab_common (objfile, objfile->section_offsets,
96baa820 1259 comp_unit_die.name ? comp_unit_die.name : "",
c906108c
SS
1260 comp_unit_die.lowpc,
1261 objfile->global_psymbols.next,
1262 objfile->static_psymbols.next);
1263
1264 pst->read_symtab_private = (char *)
1265 obstack_alloc (&objfile->psymbol_obstack, sizeof (struct dwarf2_pinfo));
1266 cu_header_offset = beg_of_comp_unit - dwarf_info_buffer;
c5aa993b
JM
1267 DWARF_INFO_BUFFER (pst) = dwarf_info_buffer;
1268 DWARF_INFO_OFFSET (pst) = beg_of_comp_unit - dwarf_info_buffer;
1269 DWARF_ABBREV_BUFFER (pst) = dwarf_abbrev_buffer;
1270 DWARF_ABBREV_SIZE (pst) = dwarf_abbrev_size;
1271 DWARF_LINE_BUFFER (pst) = dwarf_line_buffer;
9ab3e532 1272 DWARF_LINE_SIZE (pst) = dwarf_line_size;
4bdf3d34
JJ
1273 DWARF_STR_BUFFER (pst) = dwarf_str_buffer;
1274 DWARF_STR_SIZE (pst) = dwarf_str_size;
2e276125
JB
1275 DWARF_MACINFO_BUFFER (pst) = dwarf_macinfo_buffer;
1276 DWARF_MACINFO_SIZE (pst) = dwarf_macinfo_size;
af34e669
DJ
1277 DWARF_RANGES_BUFFER (pst) = dwarf_ranges_buffer;
1278 DWARF_RANGES_SIZE (pst) = dwarf_ranges_size;
613e1657 1279 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
1280
1281 /* Store the function that reads in the rest of the symbol table */
1282 pst->read_symtab = dwarf2_psymtab_to_symtab;
1283
1284 /* Check if comp unit has_children.
1285 If so, read the rest of the partial symbols from this comp unit.
1286 If not, there's no more debug_info for this comp unit. */
1287 if (comp_unit_die.has_children)
1288 {
107d2387
AC
1289 info_ptr = scan_partial_symbols (info_ptr, objfile, &lowpc, &highpc,
1290 &cu_header);
c906108c
SS
1291
1292 /* If the compilation unit didn't have an explicit address range,
1293 then use the information extracted from its child dies. */
0b010bcc 1294 if (! comp_unit_die.has_pc_info)
c906108c 1295 {
c5aa993b 1296 comp_unit_die.lowpc = lowpc;
c906108c
SS
1297 comp_unit_die.highpc = highpc;
1298 }
1299 }
c5aa993b 1300 pst->textlow = comp_unit_die.lowpc + baseaddr;
c906108c
SS
1301 pst->texthigh = comp_unit_die.highpc + baseaddr;
1302
1303 pst->n_global_syms = objfile->global_psymbols.next -
1304 (objfile->global_psymbols.list + pst->globals_offset);
1305 pst->n_static_syms = objfile->static_psymbols.next -
1306 (objfile->static_psymbols.list + pst->statics_offset);
1307 sort_pst_symbols (pst);
1308
1309 /* If there is already a psymtab or symtab for a file of this
1310 name, remove it. (If there is a symtab, more drastic things
1311 also happen.) This happens in VxWorks. */
1312 free_named_symtabs (pst->filename);
1313
613e1657
KB
1314 info_ptr = beg_of_comp_unit + cu_header.length
1315 + cu_header.initial_length_size;
c906108c
SS
1316 }
1317 do_cleanups (back_to);
1318}
1319
1320/* Read in all interesting dies to the end of the compilation unit. */
1321
1322static char *
107d2387
AC
1323scan_partial_symbols (char *info_ptr, struct objfile *objfile,
1324 CORE_ADDR *lowpc, CORE_ADDR *highpc,
1325 const struct comp_unit_head *cu_header)
c906108c
SS
1326{
1327 bfd *abfd = objfile->obfd;
1328 struct partial_die_info pdi;
1329
1330 /* This function is called after we've read in the comp_unit_die in
1331 order to read its children. We start the nesting level at 1 since
1332 we have pushed 1 level down in order to read the comp unit's children.
1333 The comp unit itself is at level 0, so we stop reading when we pop
1334 back to that level. */
1335
1336 int nesting_level = 1;
c5aa993b 1337
d9fa45fe
DC
1338 /* We only want to read in symbols corresponding to variables or
1339 other similar objects that are global or static. Normally, these
1340 are all children of the DW_TAG_compile_unit die, so are all at
1341 level 1. But C++ namespaces give ries to DW_TAG_namespace dies
1342 whose children are global objects. So we keep track of what
1343 level we currently think of as referring to file scope; this
1344 should always equal 1 plus the number of namespaces that we are
1345 currently nested within. */
1346
1347 int file_scope_level = 1;
1348
2acceee2 1349 *lowpc = ((CORE_ADDR) -1);
c906108c
SS
1350 *highpc = ((CORE_ADDR) 0);
1351
1352 while (nesting_level)
1353 {
0b010bcc 1354 info_ptr = read_partial_die (&pdi, abfd, info_ptr, cu_header);
c906108c 1355
933c6fe4
DC
1356 /* Anonymous namespaces have no name but are interesting. */
1357
1358 if (pdi.name != NULL || pdi.tag == DW_TAG_namespace)
c906108c
SS
1359 {
1360 switch (pdi.tag)
1361 {
1362 case DW_TAG_subprogram:
0b010bcc 1363 if (pdi.has_pc_info)
c906108c
SS
1364 {
1365 if (pdi.lowpc < *lowpc)
1366 {
1367 *lowpc = pdi.lowpc;
1368 }
1369 if (pdi.highpc > *highpc)
1370 {
1371 *highpc = pdi.highpc;
1372 }
d9fa45fe 1373 if ((pdi.is_external || nesting_level == file_scope_level)
c906108c
SS
1374 && !pdi.is_declaration)
1375 {
107d2387 1376 add_partial_symbol (&pdi, objfile, cu_header);
c906108c
SS
1377 }
1378 }
1379 break;
1380 case DW_TAG_variable:
1381 case DW_TAG_typedef:
1382 case DW_TAG_class_type:
1383 case DW_TAG_structure_type:
1384 case DW_TAG_union_type:
1385 case DW_TAG_enumeration_type:
d9fa45fe 1386 if ((pdi.is_external || nesting_level == file_scope_level)
c906108c
SS
1387 && !pdi.is_declaration)
1388 {
107d2387 1389 add_partial_symbol (&pdi, objfile, cu_header);
c906108c
SS
1390 }
1391 break;
1392 case DW_TAG_enumerator:
d9fa45fe
DC
1393 /* File scope enumerators are added to the partial
1394 symbol table. They're children of the enumeration
1395 type die, so they occur at a level one higher than we
1396 normally look for. */
1397 if (nesting_level == file_scope_level + 1)
107d2387 1398 add_partial_symbol (&pdi, objfile, cu_header);
c906108c
SS
1399 break;
1400 case DW_TAG_base_type:
1401 /* File scope base type definitions are added to the partial
c5aa993b 1402 symbol table. */
d9fa45fe 1403 if (nesting_level == file_scope_level)
107d2387 1404 add_partial_symbol (&pdi, objfile, cu_header);
c906108c 1405 break;
d9fa45fe
DC
1406 case DW_TAG_namespace:
1407 /* FIXME: carlton/2002-10-16: we're not yet doing
1408 anything useful with this, but for now make sure that
1409 these tags at least don't cause us to miss any
1410 important symbols. */
1411 if (pdi.has_children)
1412 file_scope_level++;
c906108c
SS
1413 default:
1414 break;
1415 }
1416 }
1417
d9fa45fe
DC
1418 /* If the die has a sibling, skip to the sibling. Do not skip
1419 enumeration types, we want to record their enumerators. Do
1420 not skip namespaces, we want to record symbols inside
1421 them. */
1422 if (pdi.sibling
1423 && pdi.tag != DW_TAG_enumeration_type
1424 && pdi.tag != DW_TAG_namespace)
c906108c
SS
1425 {
1426 info_ptr = pdi.sibling;
1427 }
1428 else if (pdi.has_children)
1429 {
d9fa45fe
DC
1430 /* Die has children, but either the optional DW_AT_sibling
1431 attribute is missing or we want to look at them. */
c906108c
SS
1432 nesting_level++;
1433 }
1434
1435 if (pdi.tag == 0)
1436 {
1437 nesting_level--;
d9fa45fe
DC
1438 /* If this is the end of a DW_TAG_namespace entry, then
1439 decrease the file_scope_level, too. */
1440 if (nesting_level < file_scope_level)
1441 {
1442 file_scope_level--;
1443 gdb_assert (nesting_level == file_scope_level);
1444 }
c906108c
SS
1445 }
1446 }
1447
1448 /* If we didn't find a lowpc, set it to highpc to avoid complaints
1449 from `maint check'. */
2acceee2 1450 if (*lowpc == ((CORE_ADDR) -1))
c906108c
SS
1451 *lowpc = *highpc;
1452 return info_ptr;
1453}
1454
1455static void
107d2387
AC
1456add_partial_symbol (struct partial_die_info *pdi, struct objfile *objfile,
1457 const struct comp_unit_head *cu_header)
c906108c
SS
1458{
1459 CORE_ADDR addr = 0;
1460
1461 switch (pdi->tag)
1462 {
1463 case DW_TAG_subprogram:
1464 if (pdi->is_external)
1465 {
1466 /*prim_record_minimal_symbol (pdi->name, pdi->lowpc + baseaddr,
c5aa993b 1467 mst_text, objfile); */
c906108c
SS
1468 add_psymbol_to_list (pdi->name, strlen (pdi->name),
1469 VAR_NAMESPACE, LOC_BLOCK,
1470 &objfile->global_psymbols,
c5aa993b 1471 0, pdi->lowpc + baseaddr, cu_language, objfile);
c906108c
SS
1472 }
1473 else
1474 {
1475 /*prim_record_minimal_symbol (pdi->name, pdi->lowpc + baseaddr,
c5aa993b 1476 mst_file_text, objfile); */
c906108c
SS
1477 add_psymbol_to_list (pdi->name, strlen (pdi->name),
1478 VAR_NAMESPACE, LOC_BLOCK,
1479 &objfile->static_psymbols,
c5aa993b 1480 0, pdi->lowpc + baseaddr, cu_language, objfile);
c906108c
SS
1481 }
1482 break;
1483 case DW_TAG_variable:
1484 if (pdi->is_external)
1485 {
1486 /* Global Variable.
1487 Don't enter into the minimal symbol tables as there is
1488 a minimal symbol table entry from the ELF symbols already.
1489 Enter into partial symbol table if it has a location
1490 descriptor or a type.
1491 If the location descriptor is missing, new_symbol will create
1492 a LOC_UNRESOLVED symbol, the address of the variable will then
1493 be determined from the minimal symbol table whenever the variable
1494 is referenced.
1495 The address for the partial symbol table entry is not
1496 used by GDB, but it comes in handy for debugging partial symbol
1497 table building. */
1498
1499 if (pdi->locdesc)
107d2387 1500 addr = decode_locdesc (pdi->locdesc, objfile, cu_header);
c906108c
SS
1501 if (pdi->locdesc || pdi->has_type)
1502 add_psymbol_to_list (pdi->name, strlen (pdi->name),
1503 VAR_NAMESPACE, LOC_STATIC,
1504 &objfile->global_psymbols,
1505 0, addr + baseaddr, cu_language, objfile);
1506 }
1507 else
1508 {
1509 /* Static Variable. Skip symbols without location descriptors. */
1510 if (pdi->locdesc == NULL)
1511 return;
107d2387 1512 addr = decode_locdesc (pdi->locdesc, objfile, cu_header);
c906108c 1513 /*prim_record_minimal_symbol (pdi->name, addr + baseaddr,
c5aa993b 1514 mst_file_data, objfile); */
c906108c
SS
1515 add_psymbol_to_list (pdi->name, strlen (pdi->name),
1516 VAR_NAMESPACE, LOC_STATIC,
1517 &objfile->static_psymbols,
1518 0, addr + baseaddr, cu_language, objfile);
1519 }
1520 break;
1521 case DW_TAG_typedef:
1522 case DW_TAG_base_type:
1523 add_psymbol_to_list (pdi->name, strlen (pdi->name),
1524 VAR_NAMESPACE, LOC_TYPEDEF,
1525 &objfile->static_psymbols,
1526 0, (CORE_ADDR) 0, cu_language, objfile);
1527 break;
1528 case DW_TAG_class_type:
1529 case DW_TAG_structure_type:
1530 case DW_TAG_union_type:
1531 case DW_TAG_enumeration_type:
1532 /* Skip aggregate types without children, these are external
c5aa993b 1533 references. */
c906108c
SS
1534 if (pdi->has_children == 0)
1535 return;
1536 add_psymbol_to_list (pdi->name, strlen (pdi->name),
1537 STRUCT_NAMESPACE, LOC_TYPEDEF,
1538 &objfile->static_psymbols,
1539 0, (CORE_ADDR) 0, cu_language, objfile);
1540
1541 if (cu_language == language_cplus)
1542 {
1543 /* For C++, these implicitly act as typedefs as well. */
1544 add_psymbol_to_list (pdi->name, strlen (pdi->name),
1545 VAR_NAMESPACE, LOC_TYPEDEF,
1546 &objfile->static_psymbols,
1547 0, (CORE_ADDR) 0, cu_language, objfile);
1548 }
1549 break;
1550 case DW_TAG_enumerator:
1551 add_psymbol_to_list (pdi->name, strlen (pdi->name),
1552 VAR_NAMESPACE, LOC_CONST,
1553 &objfile->static_psymbols,
1554 0, (CORE_ADDR) 0, cu_language, objfile);
1555 break;
1556 default:
1557 break;
1558 }
1559}
1560
1561/* Expand this partial symbol table into a full symbol table. */
1562
1563static void
fba45db2 1564dwarf2_psymtab_to_symtab (struct partial_symtab *pst)
c906108c
SS
1565{
1566 /* FIXME: This is barely more than a stub. */
1567 if (pst != NULL)
1568 {
1569 if (pst->readin)
1570 {
1571 warning ("bug: psymtab for %s is already read in.", pst->filename);
1572 }
1573 else
1574 {
1575 if (info_verbose)
1576 {
1577 printf_filtered ("Reading in symbols for %s...", pst->filename);
1578 gdb_flush (gdb_stdout);
1579 }
1580
1581 psymtab_to_symtab_1 (pst);
1582
1583 /* Finish up the debug error message. */
1584 if (info_verbose)
1585 printf_filtered ("done.\n");
1586 }
1587 }
1588}
1589
1590static void
fba45db2 1591psymtab_to_symtab_1 (struct partial_symtab *pst)
c906108c
SS
1592{
1593 struct objfile *objfile = pst->objfile;
1594 bfd *abfd = objfile->obfd;
1595 struct comp_unit_head cu_header;
1596 struct die_info *dies;
1597 unsigned long offset;
1598 CORE_ADDR lowpc, highpc;
1599 struct die_info *child_die;
1600 char *info_ptr;
1601 struct symtab *symtab;
1602 struct cleanup *back_to;
1603
1604 /* Set local variables from the partial symbol table info. */
c5aa993b
JM
1605 offset = DWARF_INFO_OFFSET (pst);
1606 dwarf_info_buffer = DWARF_INFO_BUFFER (pst);
1607 dwarf_abbrev_buffer = DWARF_ABBREV_BUFFER (pst);
1608 dwarf_abbrev_size = DWARF_ABBREV_SIZE (pst);
1609 dwarf_line_buffer = DWARF_LINE_BUFFER (pst);
9ab3e532 1610 dwarf_line_size = DWARF_LINE_SIZE (pst);
4bdf3d34
JJ
1611 dwarf_str_buffer = DWARF_STR_BUFFER (pst);
1612 dwarf_str_size = DWARF_STR_SIZE (pst);
2e276125
JB
1613 dwarf_macinfo_buffer = DWARF_MACINFO_BUFFER (pst);
1614 dwarf_macinfo_size = DWARF_MACINFO_SIZE (pst);
af34e669
DJ
1615 dwarf_ranges_buffer = DWARF_RANGES_BUFFER (pst);
1616 dwarf_ranges_size = DWARF_RANGES_SIZE (pst);
613e1657 1617 baseaddr = ANOFFSET (pst->section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
1618 cu_header_offset = offset;
1619 info_ptr = dwarf_info_buffer + offset;
1620
1621 obstack_init (&dwarf2_tmp_obstack);
1622 back_to = make_cleanup (dwarf2_free_tmp_obstack, NULL);
1623
1624 buildsym_init ();
a0b3c4fd 1625 make_cleanup (really_free_pendings, NULL);
c906108c
SS
1626
1627 /* read in the comp_unit header */
107d2387 1628 info_ptr = read_comp_unit_head (&cu_header, info_ptr, abfd);
c906108c
SS
1629
1630 /* Read the abbrevs for this compilation unit */
57349743
JB
1631 dwarf2_read_abbrevs (abfd, &cu_header);
1632 make_cleanup (dwarf2_empty_abbrev_table, cu_header.dwarf2_abbrevs);
c906108c 1633
107d2387 1634 dies = read_comp_unit (info_ptr, abfd, &cu_header);
c906108c 1635
74b7792f 1636 make_cleanup_free_die_list (dies);
c906108c
SS
1637
1638 /* Do line number decoding in read_file_scope () */
af34e669 1639 cu_header.die = dies;
107d2387 1640 process_die (dies, objfile, &cu_header);
c906108c 1641
af34e669 1642 if (!dwarf2_get_pc_bounds (dies, &lowpc, &highpc, objfile, &cu_header))
c906108c
SS
1643 {
1644 /* Some compilers don't define a DW_AT_high_pc attribute for
c5aa993b
JM
1645 the compilation unit. If the DW_AT_high_pc is missing,
1646 synthesize it, by scanning the DIE's below the compilation unit. */
c906108c
SS
1647 highpc = 0;
1648 if (dies->has_children)
1649 {
1650 child_die = dies->next;
1651 while (child_die && child_die->tag)
1652 {
1653 if (child_die->tag == DW_TAG_subprogram)
1654 {
1655 CORE_ADDR low, high;
1656
af34e669
DJ
1657 if (dwarf2_get_pc_bounds (child_die, &low, &high,
1658 objfile, &cu_header))
c906108c
SS
1659 {
1660 highpc = max (highpc, high);
1661 }
1662 }
1663 child_die = sibling_die (child_die);
1664 }
1665 }
1666 }
613e1657 1667 symtab = end_symtab (highpc + baseaddr, objfile, SECT_OFF_TEXT (objfile));
c906108c
SS
1668
1669 /* Set symtab language to language from DW_AT_language.
1670 If the compilation is from a C file generated by language preprocessors,
1671 do not set the language if it was already deduced by start_subfile. */
1672 if (symtab != NULL
1673 && !(cu_language == language_c && symtab->language != language_c))
1674 {
1675 symtab->language = cu_language;
1676 }
1677 pst->symtab = symtab;
1678 pst->readin = 1;
1679 sort_symtab_syms (pst->symtab);
1680
1681 do_cleanups (back_to);
1682}
1683
1684/* Process a die and its children. */
1685
1686static void
107d2387
AC
1687process_die (struct die_info *die, struct objfile *objfile,
1688 const struct comp_unit_head *cu_header)
c906108c
SS
1689{
1690 switch (die->tag)
1691 {
1692 case DW_TAG_padding:
1693 break;
1694 case DW_TAG_compile_unit:
107d2387 1695 read_file_scope (die, objfile, cu_header);
c906108c
SS
1696 break;
1697 case DW_TAG_subprogram:
107d2387
AC
1698 read_subroutine_type (die, objfile, cu_header);
1699 read_func_scope (die, objfile, cu_header);
c906108c
SS
1700 break;
1701 case DW_TAG_inlined_subroutine:
1702 /* FIXME: These are ignored for now.
c5aa993b
JM
1703 They could be used to set breakpoints on all inlined instances
1704 of a function and make GDB `next' properly over inlined functions. */
c906108c
SS
1705 break;
1706 case DW_TAG_lexical_block:
107d2387 1707 read_lexical_block_scope (die, objfile, cu_header);
c906108c
SS
1708 break;
1709 case DW_TAG_class_type:
1710 case DW_TAG_structure_type:
1711 case DW_TAG_union_type:
107d2387 1712 read_structure_scope (die, objfile, cu_header);
c906108c
SS
1713 break;
1714 case DW_TAG_enumeration_type:
107d2387 1715 read_enumeration (die, objfile, cu_header);
c906108c
SS
1716 break;
1717 case DW_TAG_subroutine_type:
107d2387 1718 read_subroutine_type (die, objfile, cu_header);
c906108c
SS
1719 break;
1720 case DW_TAG_array_type:
107d2387 1721 read_array_type (die, objfile, cu_header);
c906108c
SS
1722 break;
1723 case DW_TAG_pointer_type:
107d2387 1724 read_tag_pointer_type (die, objfile, cu_header);
c906108c
SS
1725 break;
1726 case DW_TAG_ptr_to_member_type:
107d2387 1727 read_tag_ptr_to_member_type (die, objfile, cu_header);
c906108c
SS
1728 break;
1729 case DW_TAG_reference_type:
107d2387 1730 read_tag_reference_type (die, objfile, cu_header);
c906108c
SS
1731 break;
1732 case DW_TAG_string_type:
1733 read_tag_string_type (die, objfile);
1734 break;
1735 case DW_TAG_base_type:
1736 read_base_type (die, objfile);
1737 if (dwarf_attr (die, DW_AT_name))
1738 {
1739 /* Add a typedef symbol for the base type definition. */
107d2387 1740 new_symbol (die, die->type, objfile, cu_header);
c906108c
SS
1741 }
1742 break;
1743 case DW_TAG_common_block:
107d2387 1744 read_common_block (die, objfile, cu_header);
c906108c
SS
1745 break;
1746 case DW_TAG_common_inclusion:
1747 break;
d9fa45fe
DC
1748 case DW_TAG_namespace:
1749 read_namespace (die, objfile, cu_header);
1750 break;
1751 case DW_TAG_imported_declaration:
1752 case DW_TAG_imported_module:
1753 /* FIXME: carlton/2002-10-16: Eventually, we should use the
1754 information contained in these. DW_TAG_imported_declaration
1755 dies shouldn't have children; DW_TAG_imported_module dies
1756 shouldn't in the C++ case, but conceivably could in the
1757 Fortran case, so we'll have to replace this gdb_assert if
1758 Fortran compilers start generating that info. */
1759 gdb_assert (!die->has_children);
1760 break;
c906108c 1761 default:
107d2387 1762 new_symbol (die, NULL, objfile, cu_header);
c906108c
SS
1763 break;
1764 }
1765}
1766
5fb290d7
DJ
1767static void
1768initialize_cu_func_list (void)
1769{
1770 cu_first_fn = cu_last_fn = cu_cached_fn = NULL;
1771}
1772
c906108c 1773static void
107d2387
AC
1774read_file_scope (struct die_info *die, struct objfile *objfile,
1775 const struct comp_unit_head *cu_header)
c906108c 1776{
debd256d 1777 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
2acceee2 1778 CORE_ADDR lowpc = ((CORE_ADDR) -1);
c906108c
SS
1779 CORE_ADDR highpc = ((CORE_ADDR) 0);
1780 struct attribute *attr;
1781 char *name = "<unknown>";
1782 char *comp_dir = NULL;
1783 struct die_info *child_die;
1784 bfd *abfd = objfile->obfd;
debd256d 1785 struct line_header *line_header = 0;
c906108c 1786
af34e669 1787 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, objfile, cu_header))
c906108c
SS
1788 {
1789 if (die->has_children)
1790 {
1791 child_die = die->next;
1792 while (child_die && child_die->tag)
1793 {
1794 if (child_die->tag == DW_TAG_subprogram)
1795 {
1796 CORE_ADDR low, high;
1797
af34e669
DJ
1798 if (dwarf2_get_pc_bounds (child_die, &low, &high,
1799 objfile, cu_header))
c906108c
SS
1800 {
1801 lowpc = min (lowpc, low);
1802 highpc = max (highpc, high);
1803 }
1804 }
1805 child_die = sibling_die (child_die);
1806 }
1807 }
1808 }
1809
1810 /* If we didn't find a lowpc, set it to highpc to avoid complaints
1811 from finish_block. */
2acceee2 1812 if (lowpc == ((CORE_ADDR) -1))
c906108c
SS
1813 lowpc = highpc;
1814 lowpc += baseaddr;
1815 highpc += baseaddr;
1816
1817 attr = dwarf_attr (die, DW_AT_name);
1818 if (attr)
1819 {
1820 name = DW_STRING (attr);
1821 }
1822 attr = dwarf_attr (die, DW_AT_comp_dir);
1823 if (attr)
1824 {
1825 comp_dir = DW_STRING (attr);
1826 if (comp_dir)
1827 {
1828 /* Irix 6.2 native cc prepends <machine>.: to the compilation
1829 directory, get rid of it. */
1830 char *cp = strchr (comp_dir, ':');
1831
1832 if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/')
1833 comp_dir = cp + 1;
1834 }
1835 }
1836
1837 if (objfile->ei.entry_point >= lowpc &&
1838 objfile->ei.entry_point < highpc)
1839 {
1840 objfile->ei.entry_file_lowpc = lowpc;
1841 objfile->ei.entry_file_highpc = highpc;
1842 }
1843
1844 attr = dwarf_attr (die, DW_AT_language);
1845 if (attr)
1846 {
1847 set_cu_language (DW_UNSND (attr));
1848 }
1849
1850 /* We assume that we're processing GCC output. */
1851 processing_gcc_compilation = 2;
1852#if 0
c5aa993b
JM
1853 /* FIXME:Do something here. */
1854 if (dip->at_producer != NULL)
c906108c
SS
1855 {
1856 handle_producer (dip->at_producer);
1857 }
1858#endif
1859
1860 /* The compilation unit may be in a different language or objfile,
1861 zero out all remembered fundamental types. */
1862 memset (ftypes, 0, FT_NUM_MEMBERS * sizeof (struct type *));
1863
1864 start_symtab (name, comp_dir, lowpc);
1865 record_debugformat ("DWARF 2");
1866
5fb290d7 1867 initialize_cu_func_list ();
c906108c
SS
1868
1869 /* Process all dies in compilation unit. */
1870 if (die->has_children)
1871 {
1872 child_die = die->next;
1873 while (child_die && child_die->tag)
1874 {
107d2387 1875 process_die (child_die, objfile, cu_header);
c906108c
SS
1876 child_die = sibling_die (child_die);
1877 }
1878 }
5fb290d7
DJ
1879
1880 /* Decode line number information if present. */
1881 attr = dwarf_attr (die, DW_AT_stmt_list);
1882 if (attr)
1883 {
debd256d
JB
1884 unsigned int line_offset = DW_UNSND (attr);
1885 line_header = dwarf_decode_line_header (line_offset,
1886 abfd, cu_header);
1887 if (line_header)
1888 {
1889 make_cleanup ((make_cleanup_ftype *) free_line_header,
1890 (void *) line_header);
1891 dwarf_decode_lines (line_header, comp_dir, abfd, cu_header);
1892 }
5fb290d7 1893 }
debd256d 1894
2e276125
JB
1895 /* Decode macro information, if present. Dwarf 2 macro information
1896 refers to information in the line number info statement program
1897 header, so we can only read it if we've read the header
1898 successfully. */
1899 attr = dwarf_attr (die, DW_AT_macro_info);
41ff2da1 1900 if (attr && line_header)
2e276125
JB
1901 {
1902 unsigned int macro_offset = DW_UNSND (attr);
1903 dwarf_decode_macros (line_header, macro_offset,
1904 comp_dir, abfd, cu_header, objfile);
1905 }
debd256d 1906 do_cleanups (back_to);
5fb290d7
DJ
1907}
1908
1909static void
1910add_to_cu_func_list (const char *name, CORE_ADDR lowpc, CORE_ADDR highpc)
1911{
1912 struct function_range *thisfn;
1913
1914 thisfn = (struct function_range *)
1915 obstack_alloc (&dwarf2_tmp_obstack, sizeof (struct function_range));
1916 thisfn->name = name;
1917 thisfn->lowpc = lowpc;
1918 thisfn->highpc = highpc;
1919 thisfn->seen_line = 0;
1920 thisfn->next = NULL;
1921
1922 if (cu_last_fn == NULL)
1923 cu_first_fn = thisfn;
1924 else
1925 cu_last_fn->next = thisfn;
1926
1927 cu_last_fn = thisfn;
c906108c
SS
1928}
1929
1930static void
107d2387
AC
1931read_func_scope (struct die_info *die, struct objfile *objfile,
1932 const struct comp_unit_head *cu_header)
c906108c
SS
1933{
1934 register struct context_stack *new;
1935 CORE_ADDR lowpc;
1936 CORE_ADDR highpc;
1937 struct die_info *child_die;
1938 struct attribute *attr;
1939 char *name;
1940
1941 name = dwarf2_linkage_name (die);
1942
1943 /* Ignore functions with missing or empty names and functions with
1944 missing or invalid low and high pc attributes. */
af34e669 1945 if (name == NULL || !dwarf2_get_pc_bounds (die, &lowpc, &highpc, objfile, cu_header))
c906108c
SS
1946 return;
1947
1948 lowpc += baseaddr;
1949 highpc += baseaddr;
1950
5fb290d7
DJ
1951 /* Record the function range for dwarf_decode_lines. */
1952 add_to_cu_func_list (name, lowpc, highpc);
1953
c906108c
SS
1954 if (objfile->ei.entry_point >= lowpc &&
1955 objfile->ei.entry_point < highpc)
1956 {
1957 objfile->ei.entry_func_lowpc = lowpc;
1958 objfile->ei.entry_func_highpc = highpc;
1959 }
1960
c906108c
SS
1961 /* Decode DW_AT_frame_base location descriptor if present, keep result
1962 for DW_OP_fbreg operands in decode_locdesc. */
1963 frame_base_reg = -1;
1964 frame_base_offset = 0;
1965 attr = dwarf_attr (die, DW_AT_frame_base);
1966 if (attr)
1967 {
8e19ed76
PS
1968 CORE_ADDR addr;
1969
1970 /* Support the .debug_loc offsets */
1971 if (attr_form_is_block (attr))
1972 {
1973 addr = decode_locdesc (DW_BLOCK (attr), objfile, cu_header);
1974 }
1975 else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
1976 {
4d3c2250 1977 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
1978 addr = 0;
1979 }
1980 else
1981 {
4d3c2250 1982 dwarf2_invalid_attrib_class_complaint ("DW_AT_frame_base", name);
8e19ed76
PS
1983 addr = 0;
1984 }
1985
7a292a7a 1986 if (isderef)
4d3c2250 1987 dwarf2_unsupported_at_frame_base_complaint (name);
7a292a7a 1988 else if (isreg)
c906108c
SS
1989 frame_base_reg = addr;
1990 else if (offreg)
1991 {
1992 frame_base_reg = basereg;
1993 frame_base_offset = addr;
1994 }
1995 else
4d3c2250 1996 dwarf2_unsupported_at_frame_base_complaint (name);
c906108c
SS
1997 }
1998
1999 new = push_context (0, lowpc);
107d2387 2000 new->name = new_symbol (die, die->type, objfile, cu_header);
c906108c
SS
2001 list_in_scope = &local_symbols;
2002
2003 if (die->has_children)
2004 {
2005 child_die = die->next;
2006 while (child_die && child_die->tag)
2007 {
107d2387 2008 process_die (child_die, objfile, cu_header);
c906108c
SS
2009 child_die = sibling_die (child_die);
2010 }
2011 }
2012
2013 new = pop_context ();
2014 /* Make a block for the local symbols within. */
2015 finish_block (new->name, &local_symbols, new->old_blocks,
2016 lowpc, highpc, objfile);
208d8187
JB
2017
2018 /* In C++, we can have functions nested inside functions (e.g., when
2019 a function declares a class that has methods). This means that
2020 when we finish processing a function scope, we may need to go
2021 back to building a containing block's symbol lists. */
2022 local_symbols = new->locals;
2023 param_symbols = new->params;
2024
921e78cf
JB
2025 /* If we've finished processing a top-level function, subsequent
2026 symbols go in the file symbol list. */
2027 if (outermost_context_p ())
2028 list_in_scope = &file_symbols;
c906108c
SS
2029}
2030
2031/* Process all the DIES contained within a lexical block scope. Start
2032 a new scope, process the dies, and then close the scope. */
2033
2034static void
107d2387
AC
2035read_lexical_block_scope (struct die_info *die, struct objfile *objfile,
2036 const struct comp_unit_head *cu_header)
c906108c
SS
2037{
2038 register struct context_stack *new;
2039 CORE_ADDR lowpc, highpc;
2040 struct die_info *child_die;
2041
2042 /* Ignore blocks with missing or invalid low and high pc attributes. */
af34e669
DJ
2043 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
2044 as multiple lexical blocks? Handling children in a sane way would
2045 be nasty. Might be easier to properly extend generic blocks to
2046 describe ranges. */
2047 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, objfile, cu_header))
c906108c
SS
2048 return;
2049 lowpc += baseaddr;
2050 highpc += baseaddr;
2051
2052 push_context (0, lowpc);
2053 if (die->has_children)
2054 {
2055 child_die = die->next;
2056 while (child_die && child_die->tag)
2057 {
107d2387 2058 process_die (child_die, objfile, cu_header);
c906108c
SS
2059 child_die = sibling_die (child_die);
2060 }
2061 }
2062 new = pop_context ();
2063
2064 if (local_symbols != NULL)
2065 {
2066 finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
2067 highpc, objfile);
2068 }
2069 local_symbols = new->locals;
2070}
2071
af34e669
DJ
2072/* Get low and high pc attributes from a die. Return 1 if the attributes
2073 are present and valid, otherwise, return 0. Return -1 if the range is
2074 discontinuous, i.e. derived from DW_AT_ranges information. */
c906108c 2075static int
af34e669
DJ
2076dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
2077 CORE_ADDR *highpc, struct objfile *objfile,
2078 const struct comp_unit_head *cu_header)
c906108c
SS
2079{
2080 struct attribute *attr;
af34e669
DJ
2081 bfd *obfd = objfile->obfd;
2082 CORE_ADDR low = 0;
2083 CORE_ADDR high = 0;
2084 int ret = 0;
c906108c 2085
c906108c
SS
2086 attr = dwarf_attr (die, DW_AT_high_pc);
2087 if (attr)
af34e669
DJ
2088 {
2089 high = DW_ADDR (attr);
2090 attr = dwarf_attr (die, DW_AT_low_pc);
2091 if (attr)
2092 low = DW_ADDR (attr);
2093 else
2094 /* Found high w/o low attribute. */
2095 return 0;
2096
2097 /* Found consecutive range of addresses. */
2098 ret = 1;
2099 }
c906108c 2100 else
af34e669
DJ
2101 {
2102 attr = dwarf_attr (die, DW_AT_ranges);
2103 if (attr != NULL)
2104 {
2105 unsigned int addr_size = cu_header->addr_size;
2106 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
2107 /* Value of the DW_AT_ranges attribute is the offset in the
2108 .debug_renges section. */
2109 unsigned int offset = DW_UNSND (attr);
2110 /* Base address selection entry. */
2111 CORE_ADDR base = 0;
2112 int found_base = 0;
2113 int dummy;
2114 unsigned int i;
2115 char *buffer;
2116 CORE_ADDR marker;
2117 int low_set;
2118
2119 /* The applicable base address is determined by (1) the closest
2120 preceding base address selection entry in the range list or
2121 (2) the DW_AT_low_pc of the compilation unit. */
2122
2123 /* ??? Was in dwarf3 draft4, and has since been removed.
2124 GCC still uses it though. */
2125 attr = dwarf_attr (cu_header->die, DW_AT_entry_pc);
2126 if (attr)
2127 {
2128 base = DW_ADDR (attr);
2129 found_base = 1;
2130 }
2131
2132 if (!found_base)
2133 {
2134 attr = dwarf_attr (cu_header->die, DW_AT_low_pc);
2135 if (attr)
2136 {
2137 base = DW_ADDR (attr);
2138 found_base = 1;
2139 }
2140 }
2141
2142 buffer = dwarf_ranges_buffer + offset;
2143
2144
2145 /* Read in the largest possible address. */
2146 marker = read_address (obfd, buffer, cu_header, &dummy);
2147 if ((marker & mask) == mask)
2148 {
2149 /* If we found the largest possible address, then
2150 read the base address. */
2151 base = read_address (obfd, buffer + addr_size,
2152 cu_header, &dummy);
2153 buffer += 2 * addr_size;
2154 offset += 2 * addr_size;
2155 found_base = 1;
2156 }
2157
2158 low_set = 0;
2159
2160 while (1)
2161 {
2162 CORE_ADDR range_beginning, range_end;
2163
2164 range_beginning = read_address (obfd, buffer,
2165 cu_header, &dummy);
2166 buffer += addr_size;
2167 range_end = read_address (obfd, buffer, cu_header, &dummy);
2168 buffer += addr_size;
2169 offset += 2 * addr_size;
2170
2171 /* An end of list marker is a pair of zero addresses. */
2172 if (range_beginning == 0 && range_end == 0)
2173 /* Found the end of list entry. */
2174 break;
2175
2176 /* Each base address selection entry is a pair of 2 values.
2177 The first is the largest possible address, the second is
2178 the base address. Check for a base address here. */
2179 if ((range_beginning & mask) == mask)
2180 {
2181 /* If we found the largest possible address, then
2182 read the base address. */
2183 base = read_address (obfd, buffer + addr_size,
2184 cu_header, &dummy);
2185 found_base = 1;
2186 continue;
2187 }
2188
2189 if (!found_base)
2190 {
2191 /* We have no valid base address for the ranges
2192 data. */
2193 complaint (&symfile_complaints,
2194 "Invalid .debug_ranges data (no base address)");
2195 return 0;
2196 }
2197
2198 /* FIXME: This is recording everything as a low-high
2199 segment of consecutive addresses. We should have a
2200 data structure for discontiguous block ranges
2201 instead. */
2202 if (! low_set)
2203 {
2204 low = range_beginning;
2205 high = range_end;
2206 low_set = 1;
2207 }
2208 else
2209 {
2210 if (range_beginning < low)
2211 low = range_beginning;
2212 if (range_end > high)
2213 high = range_end;
2214 }
2215 }
2216
2217 if (! low_set)
2218 /* If the first entry is an end-of-list marker, the range
2219 describes an empty scope, i.e. no instructions. */
2220 return 0;
2221
2222 ret = -1;
2223 }
2224 }
c906108c
SS
2225
2226 if (high < low)
2227 return 0;
2228
2229 /* When using the GNU linker, .gnu.linkonce. sections are used to
2230 eliminate duplicate copies of functions and vtables and such.
2231 The linker will arbitrarily choose one and discard the others.
2232 The AT_*_pc values for such functions refer to local labels in
2233 these sections. If the section from that file was discarded, the
2234 labels are not in the output, so the relocs get a value of 0.
2235 If this is a discarded function, mark the pc bounds as invalid,
2236 so that GDB will ignore it. */
af34e669 2237 if (low == 0 && (bfd_get_file_flags (obfd) & HAS_RELOC) == 0)
c906108c
SS
2238 return 0;
2239
2240 *lowpc = low;
2241 *highpc = high;
af34e669 2242 return ret;
c906108c
SS
2243}
2244
2245/* Add an aggregate field to the field list. */
2246
2247static void
107d2387
AC
2248dwarf2_add_field (struct field_info *fip, struct die_info *die,
2249 struct objfile *objfile,
2250 const struct comp_unit_head *cu_header)
c906108c
SS
2251{
2252 struct nextfield *new_field;
2253 struct attribute *attr;
2254 struct field *fp;
2255 char *fieldname = "";
2256
2257 /* Allocate a new field list entry and link it in. */
2258 new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
b8c9b27d 2259 make_cleanup (xfree, new_field);
c906108c
SS
2260 memset (new_field, 0, sizeof (struct nextfield));
2261 new_field->next = fip->fields;
2262 fip->fields = new_field;
2263 fip->nfields++;
2264
2265 /* Handle accessibility and virtuality of field.
2266 The default accessibility for members is public, the default
2267 accessibility for inheritance is private. */
2268 if (die->tag != DW_TAG_inheritance)
2269 new_field->accessibility = DW_ACCESS_public;
2270 else
2271 new_field->accessibility = DW_ACCESS_private;
2272 new_field->virtuality = DW_VIRTUALITY_none;
2273
2274 attr = dwarf_attr (die, DW_AT_accessibility);
2275 if (attr)
2276 new_field->accessibility = DW_UNSND (attr);
2277 if (new_field->accessibility != DW_ACCESS_public)
2278 fip->non_public_fields = 1;
2279 attr = dwarf_attr (die, DW_AT_virtuality);
2280 if (attr)
2281 new_field->virtuality = DW_UNSND (attr);
2282
2283 fp = &new_field->field;
a9a9bd0f
DC
2284
2285 if (die->tag == DW_TAG_member && ! die_is_declaration (die))
c906108c 2286 {
a9a9bd0f
DC
2287 /* Data member other than a C++ static data member. */
2288
c906108c 2289 /* Get type of field. */
107d2387 2290 fp->type = die_type (die, objfile, cu_header);
c906108c 2291
01ad7f36
DJ
2292 FIELD_STATIC_KIND (*fp) = 0;
2293
c906108c
SS
2294 /* Get bit size of field (zero if none). */
2295 attr = dwarf_attr (die, DW_AT_bit_size);
2296 if (attr)
2297 {
2298 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
2299 }
2300 else
2301 {
2302 FIELD_BITSIZE (*fp) = 0;
2303 }
2304
2305 /* Get bit offset of field. */
2306 attr = dwarf_attr (die, DW_AT_data_member_location);
2307 if (attr)
2308 {
2309 FIELD_BITPOS (*fp) =
107d2387 2310 decode_locdesc (DW_BLOCK (attr), objfile, cu_header) * bits_per_byte;
c906108c
SS
2311 }
2312 else
2313 FIELD_BITPOS (*fp) = 0;
2314 attr = dwarf_attr (die, DW_AT_bit_offset);
2315 if (attr)
2316 {
2317 if (BITS_BIG_ENDIAN)
2318 {
2319 /* For big endian bits, the DW_AT_bit_offset gives the
c5aa993b
JM
2320 additional bit offset from the MSB of the containing
2321 anonymous object to the MSB of the field. We don't
2322 have to do anything special since we don't need to
2323 know the size of the anonymous object. */
c906108c
SS
2324 FIELD_BITPOS (*fp) += DW_UNSND (attr);
2325 }
2326 else
2327 {
2328 /* For little endian bits, compute the bit offset to the
c5aa993b
JM
2329 MSB of the anonymous object, subtract off the number of
2330 bits from the MSB of the field to the MSB of the
2331 object, and then subtract off the number of bits of
2332 the field itself. The result is the bit offset of
2333 the LSB of the field. */
c906108c
SS
2334 int anonymous_size;
2335 int bit_offset = DW_UNSND (attr);
2336
2337 attr = dwarf_attr (die, DW_AT_byte_size);
2338 if (attr)
2339 {
2340 /* The size of the anonymous object containing
2341 the bit field is explicit, so use the
2342 indicated size (in bytes). */
2343 anonymous_size = DW_UNSND (attr);
2344 }
2345 else
2346 {
2347 /* The size of the anonymous object containing
2348 the bit field must be inferred from the type
2349 attribute of the data member containing the
2350 bit field. */
2351 anonymous_size = TYPE_LENGTH (fp->type);
2352 }
2353 FIELD_BITPOS (*fp) += anonymous_size * bits_per_byte
2354 - bit_offset - FIELD_BITSIZE (*fp);
2355 }
2356 }
2357
2358 /* Get name of field. */
2359 attr = dwarf_attr (die, DW_AT_name);
2360 if (attr && DW_STRING (attr))
2361 fieldname = DW_STRING (attr);
2362 fp->name = obsavestring (fieldname, strlen (fieldname),
2363 &objfile->type_obstack);
2364
2365 /* Change accessibility for artificial fields (e.g. virtual table
c5aa993b 2366 pointer or virtual base class pointer) to private. */
c906108c
SS
2367 if (dwarf_attr (die, DW_AT_artificial))
2368 {
2369 new_field->accessibility = DW_ACCESS_private;
2370 fip->non_public_fields = 1;
2371 }
2372 }
a9a9bd0f 2373 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
c906108c 2374 {
a9a9bd0f
DC
2375 /* C++ static member. */
2376
2377 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
2378 is a declaration, but all versions of G++ as of this writing
2379 (so through at least 3.2.1) incorrectly generate
2380 DW_TAG_variable tags. */
2381
c906108c 2382 char *physname;
c906108c 2383
a9a9bd0f 2384 /* Get name of field. */
2df3850c
JM
2385 attr = dwarf_attr (die, DW_AT_name);
2386 if (attr && DW_STRING (attr))
2387 fieldname = DW_STRING (attr);
2388 else
c906108c
SS
2389 return;
2390
2df3850c
JM
2391 /* Get physical name. */
2392 physname = dwarf2_linkage_name (die);
c906108c
SS
2393
2394 SET_FIELD_PHYSNAME (*fp, obsavestring (physname, strlen (physname),
c5aa993b 2395 &objfile->type_obstack));
107d2387 2396 FIELD_TYPE (*fp) = die_type (die, objfile, cu_header);
c906108c 2397 FIELD_NAME (*fp) = obsavestring (fieldname, strlen (fieldname),
c5aa993b 2398 &objfile->type_obstack);
c906108c
SS
2399 }
2400 else if (die->tag == DW_TAG_inheritance)
2401 {
2402 /* C++ base class field. */
2403 attr = dwarf_attr (die, DW_AT_data_member_location);
2404 if (attr)
107d2387
AC
2405 FIELD_BITPOS (*fp) = (decode_locdesc (DW_BLOCK (attr), objfile, cu_header)
2406 * bits_per_byte);
c906108c 2407 FIELD_BITSIZE (*fp) = 0;
01ad7f36 2408 FIELD_STATIC_KIND (*fp) = 0;
107d2387 2409 FIELD_TYPE (*fp) = die_type (die, objfile, cu_header);
c906108c
SS
2410 FIELD_NAME (*fp) = type_name_no_tag (fp->type);
2411 fip->nbaseclasses++;
2412 }
2413}
2414
2415/* Create the vector of fields, and attach it to the type. */
2416
2417static void
fba45db2
KB
2418dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
2419 struct objfile *objfile)
c906108c
SS
2420{
2421 int nfields = fip->nfields;
2422
2423 /* Record the field count, allocate space for the array of fields,
2424 and create blank accessibility bitfields if necessary. */
2425 TYPE_NFIELDS (type) = nfields;
2426 TYPE_FIELDS (type) = (struct field *)
2427 TYPE_ALLOC (type, sizeof (struct field) * nfields);
2428 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
2429
2430 if (fip->non_public_fields)
2431 {
2432 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2433
2434 TYPE_FIELD_PRIVATE_BITS (type) =
2435 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
2436 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
2437
2438 TYPE_FIELD_PROTECTED_BITS (type) =
2439 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
2440 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
2441
2442 TYPE_FIELD_IGNORE_BITS (type) =
2443 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
2444 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
2445 }
2446
2447 /* If the type has baseclasses, allocate and clear a bit vector for
2448 TYPE_FIELD_VIRTUAL_BITS. */
2449 if (fip->nbaseclasses)
2450 {
2451 int num_bytes = B_BYTES (fip->nbaseclasses);
2452 char *pointer;
2453
2454 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2455 pointer = (char *) TYPE_ALLOC (type, num_bytes);
2456 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *) pointer;
2457 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
2458 TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
2459 }
2460
2461 /* Copy the saved-up fields into the field vector. Start from the head
2462 of the list, adding to the tail of the field array, so that they end
2463 up in the same order in the array in which they were added to the list. */
2464 while (nfields-- > 0)
2465 {
2466 TYPE_FIELD (type, nfields) = fip->fields->field;
2467 switch (fip->fields->accessibility)
2468 {
c5aa993b
JM
2469 case DW_ACCESS_private:
2470 SET_TYPE_FIELD_PRIVATE (type, nfields);
2471 break;
c906108c 2472
c5aa993b
JM
2473 case DW_ACCESS_protected:
2474 SET_TYPE_FIELD_PROTECTED (type, nfields);
2475 break;
c906108c 2476
c5aa993b
JM
2477 case DW_ACCESS_public:
2478 break;
c906108c 2479
c5aa993b
JM
2480 default:
2481 /* Unknown accessibility. Complain and treat it as public. */
2482 {
4d3c2250
KB
2483 complaint (&symfile_complaints, "unsupported accessibility %d",
2484 fip->fields->accessibility);
c5aa993b
JM
2485 }
2486 break;
c906108c
SS
2487 }
2488 if (nfields < fip->nbaseclasses)
2489 {
2490 switch (fip->fields->virtuality)
2491 {
c5aa993b
JM
2492 case DW_VIRTUALITY_virtual:
2493 case DW_VIRTUALITY_pure_virtual:
2494 SET_TYPE_FIELD_VIRTUAL (type, nfields);
2495 break;
c906108c
SS
2496 }
2497 }
2498 fip->fields = fip->fields->next;
2499 }
2500}
2501
c906108c
SS
2502/* Add a member function to the proper fieldlist. */
2503
2504static void
107d2387 2505dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
e26fb1d7 2506 struct type *type, struct objfile *objfile,
107d2387 2507 const struct comp_unit_head *cu_header)
c906108c
SS
2508{
2509 struct attribute *attr;
2510 struct fnfieldlist *flp;
2511 int i;
2512 struct fn_field *fnp;
2513 char *fieldname;
2514 char *physname;
2515 struct nextfnfield *new_fnfield;
2516
2df3850c
JM
2517 /* Get name of member function. */
2518 attr = dwarf_attr (die, DW_AT_name);
2519 if (attr && DW_STRING (attr))
2520 fieldname = DW_STRING (attr);
c906108c 2521 else
2df3850c 2522 return;
c906108c 2523
2df3850c
JM
2524 /* Get the mangled name. */
2525 physname = dwarf2_linkage_name (die);
c906108c
SS
2526
2527 /* Look up member function name in fieldlist. */
2528 for (i = 0; i < fip->nfnfields; i++)
2529 {
2530 if (STREQ (fip->fnfieldlists[i].name, fieldname))
2531 break;
2532 }
2533
2534 /* Create new list element if necessary. */
2535 if (i < fip->nfnfields)
2536 flp = &fip->fnfieldlists[i];
2537 else
2538 {
2539 if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
2540 {
2541 fip->fnfieldlists = (struct fnfieldlist *)
2542 xrealloc (fip->fnfieldlists,
2543 (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
c5aa993b 2544 * sizeof (struct fnfieldlist));
c906108c 2545 if (fip->nfnfields == 0)
c13c43fd 2546 make_cleanup (free_current_contents, &fip->fnfieldlists);
c906108c
SS
2547 }
2548 flp = &fip->fnfieldlists[fip->nfnfields];
2549 flp->name = fieldname;
2550 flp->length = 0;
2551 flp->head = NULL;
2552 fip->nfnfields++;
2553 }
2554
2555 /* Create a new member function field and chain it to the field list
2556 entry. */
2557 new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
b8c9b27d 2558 make_cleanup (xfree, new_fnfield);
c906108c
SS
2559 memset (new_fnfield, 0, sizeof (struct nextfnfield));
2560 new_fnfield->next = flp->head;
2561 flp->head = new_fnfield;
2562 flp->length++;
2563
2564 /* Fill in the member function field info. */
2565 fnp = &new_fnfield->fnfield;
2566 fnp->physname = obsavestring (physname, strlen (physname),
2567 &objfile->type_obstack);
2568 fnp->type = alloc_type (objfile);
2569 if (die->type && TYPE_CODE (die->type) == TYPE_CODE_FUNC)
2570 {
2571 struct type *return_type = TYPE_TARGET_TYPE (die->type);
c906108c 2572 int nparams = TYPE_NFIELDS (die->type);
c906108c 2573
e26fb1d7
DC
2574 /* TYPE is the domain of this method, and DIE->TYPE is the type
2575 of the method itself (TYPE_CODE_METHOD). */
2576 smash_to_method_type (fnp->type, type,
ad2f7632
DJ
2577 TYPE_TARGET_TYPE (die->type),
2578 TYPE_FIELDS (die->type),
2579 TYPE_NFIELDS (die->type),
2580 TYPE_VARARGS (die->type));
c906108c
SS
2581
2582 /* Handle static member functions.
c5aa993b
JM
2583 Dwarf2 has no clean way to discern C++ static and non-static
2584 member functions. G++ helps GDB by marking the first
2585 parameter for non-static member functions (which is the
2586 this pointer) as artificial. We obtain this information
2587 from read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
c906108c
SS
2588 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (die->type, 0) == 0)
2589 fnp->voffset = VOFFSET_STATIC;
2590 }
2591 else
4d3c2250
KB
2592 complaint (&symfile_complaints, "member function type missing for '%s'",
2593 physname);
c906108c
SS
2594
2595 /* Get fcontext from DW_AT_containing_type if present. */
2596 if (dwarf_attr (die, DW_AT_containing_type) != NULL)
107d2387 2597 fnp->fcontext = die_containing_type (die, objfile, cu_header);
c906108c
SS
2598
2599 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const
2600 and is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
2601
2602 /* Get accessibility. */
2603 attr = dwarf_attr (die, DW_AT_accessibility);
2604 if (attr)
2605 {
2606 switch (DW_UNSND (attr))
2607 {
c5aa993b
JM
2608 case DW_ACCESS_private:
2609 fnp->is_private = 1;
2610 break;
2611 case DW_ACCESS_protected:
2612 fnp->is_protected = 1;
2613 break;
c906108c
SS
2614 }
2615 }
2616
b02dede2
DJ
2617 /* Check for artificial methods. */
2618 attr = dwarf_attr (die, DW_AT_artificial);
2619 if (attr && DW_UNSND (attr) != 0)
2620 fnp->is_artificial = 1;
2621
c906108c
SS
2622 /* Get index in virtual function table if it is a virtual member function. */
2623 attr = dwarf_attr (die, DW_AT_vtable_elem_location);
2624 if (attr)
8e19ed76
PS
2625 {
2626 /* Support the .debug_loc offsets */
2627 if (attr_form_is_block (attr))
2628 {
2629 fnp->voffset = decode_locdesc (DW_BLOCK (attr), objfile, cu_header) + 2;
2630 }
2631 else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
2632 {
4d3c2250 2633 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
2634 }
2635 else
2636 {
4d3c2250
KB
2637 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
2638 fieldname);
8e19ed76
PS
2639 }
2640 }
c906108c
SS
2641}
2642
2643/* Create the vector of member function fields, and attach it to the type. */
2644
2645static void
fba45db2
KB
2646dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
2647 struct objfile *objfile)
c906108c
SS
2648{
2649 struct fnfieldlist *flp;
2650 int total_length = 0;
2651 int i;
2652
2653 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2654 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
2655 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
2656
2657 for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
2658 {
2659 struct nextfnfield *nfp = flp->head;
2660 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
2661 int k;
2662
2663 TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
2664 TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
2665 fn_flp->fn_fields = (struct fn_field *)
2666 TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
2667 for (k = flp->length; (k--, nfp); nfp = nfp->next)
c5aa993b 2668 fn_flp->fn_fields[k] = nfp->fnfield;
c906108c
SS
2669
2670 total_length += flp->length;
2671 }
2672
2673 TYPE_NFN_FIELDS (type) = fip->nfnfields;
2674 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
2675}
2676
2677/* Called when we find the DIE that starts a structure or union scope
2678 (definition) to process all dies that define the members of the
2679 structure or union.
2680
2681 NOTE: we need to call struct_type regardless of whether or not the
2682 DIE has an at_name attribute, since it might be an anonymous
2683 structure or union. This gets the type entered into our set of
2684 user defined types.
2685
2686 However, if the structure is incomplete (an opaque struct/union)
2687 then suppress creating a symbol table entry for it since gdb only
2688 wants to find the one with the complete definition. Note that if
2689 it is complete, we just call new_symbol, which does it's own
2690 checking about whether the struct/union is anonymous or not (and
2691 suppresses creating a symbol table entry itself). */
2692
2693static void
107d2387
AC
2694read_structure_scope (struct die_info *die, struct objfile *objfile,
2695 const struct comp_unit_head *cu_header)
c906108c
SS
2696{
2697 struct type *type;
2698 struct attribute *attr;
2699
2700 type = alloc_type (objfile);
2701
2702 INIT_CPLUS_SPECIFIC (type);
2703 attr = dwarf_attr (die, DW_AT_name);
2704 if (attr && DW_STRING (attr))
2705 {
2706 TYPE_TAG_NAME (type) = obsavestring (DW_STRING (attr),
2707 strlen (DW_STRING (attr)),
2708 &objfile->type_obstack);
2709 }
2710
2711 if (die->tag == DW_TAG_structure_type)
2712 {
2713 TYPE_CODE (type) = TYPE_CODE_STRUCT;
2714 }
2715 else if (die->tag == DW_TAG_union_type)
2716 {
2717 TYPE_CODE (type) = TYPE_CODE_UNION;
2718 }
2719 else
2720 {
2721 /* FIXME: TYPE_CODE_CLASS is currently defined to TYPE_CODE_STRUCT
c5aa993b 2722 in gdbtypes.h. */
c906108c
SS
2723 TYPE_CODE (type) = TYPE_CODE_CLASS;
2724 }
2725
2726 attr = dwarf_attr (die, DW_AT_byte_size);
2727 if (attr)
2728 {
2729 TYPE_LENGTH (type) = DW_UNSND (attr);
2730 }
2731 else
2732 {
2733 TYPE_LENGTH (type) = 0;
2734 }
2735
2736 /* We need to add the type field to the die immediately so we don't
2737 infinitely recurse when dealing with pointers to the structure
2738 type within the structure itself. */
2739 die->type = type;
2740
3ca72b44 2741 if (die->has_children && ! die_is_declaration (die))
c906108c
SS
2742 {
2743 struct field_info fi;
2744 struct die_info *child_die;
2745 struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
2746
2747 memset (&fi, 0, sizeof (struct field_info));
2748
2749 child_die = die->next;
2750
2751 while (child_die && child_die->tag)
2752 {
a9a9bd0f
DC
2753 if (child_die->tag == DW_TAG_member
2754 || child_die->tag == DW_TAG_variable)
c906108c 2755 {
a9a9bd0f
DC
2756 /* NOTE: carlton/2002-11-05: A C++ static data member
2757 should be a DW_TAG_member that is a declaration, but
2758 all versions of G++ as of this writing (so through at
2759 least 3.2.1) incorrectly generate DW_TAG_variable
2760 tags for them instead. */
107d2387 2761 dwarf2_add_field (&fi, child_die, objfile, cu_header);
c906108c 2762 }
8713b1b1 2763 else if (child_die->tag == DW_TAG_subprogram)
c906108c
SS
2764 {
2765 /* C++ member function. */
107d2387 2766 process_die (child_die, objfile, cu_header);
e26fb1d7 2767 dwarf2_add_member_fn (&fi, child_die, type, objfile, cu_header);
c906108c
SS
2768 }
2769 else if (child_die->tag == DW_TAG_inheritance)
2770 {
2771 /* C++ base class field. */
107d2387 2772 dwarf2_add_field (&fi, child_die, objfile, cu_header);
c906108c
SS
2773 }
2774 else
2775 {
107d2387 2776 process_die (child_die, objfile, cu_header);
c906108c
SS
2777 }
2778 child_die = sibling_die (child_die);
2779 }
2780
2781 /* Attach fields and member functions to the type. */
2782 if (fi.nfields)
2783 dwarf2_attach_fields_to_type (&fi, type, objfile);
2784 if (fi.nfnfields)
2785 {
2786 dwarf2_attach_fn_fields_to_type (&fi, type, objfile);
2787
c5aa993b 2788 /* Get the type which refers to the base class (possibly this
c906108c
SS
2789 class itself) which contains the vtable pointer for the current
2790 class from the DW_AT_containing_type attribute. */
2791
2792 if (dwarf_attr (die, DW_AT_containing_type) != NULL)
2793 {
107d2387 2794 struct type *t = die_containing_type (die, objfile, cu_header);
c906108c
SS
2795
2796 TYPE_VPTR_BASETYPE (type) = t;
2797 if (type == t)
2798 {
c5aa993b
JM
2799 static const char vptr_name[] =
2800 {'_', 'v', 'p', 't', 'r', '\0'};
c906108c
SS
2801 int i;
2802
2803 /* Our own class provides vtbl ptr. */
2804 for (i = TYPE_NFIELDS (t) - 1;
2805 i >= TYPE_N_BASECLASSES (t);
2806 --i)
2807 {
2808 char *fieldname = TYPE_FIELD_NAME (t, i);
2809
2810 if (STREQN (fieldname, vptr_name, strlen (vptr_name) - 1)
2811 && is_cplus_marker (fieldname[strlen (vptr_name)]))
2812 {
2813 TYPE_VPTR_FIELDNO (type) = i;
2814 break;
2815 }
2816 }
2817
2818 /* Complain if virtual function table field not found. */
2819 if (i < TYPE_N_BASECLASSES (t))
4d3c2250
KB
2820 complaint (&symfile_complaints,
2821 "virtual function table pointer not found when defining class '%s'",
2822 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
2823 "");
c906108c
SS
2824 }
2825 else
2826 {
2827 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
2828 }
2829 }
2830 }
2831
107d2387 2832 new_symbol (die, type, objfile, cu_header);
c906108c
SS
2833
2834 do_cleanups (back_to);
2835 }
2836 else
2837 {
2838 /* No children, must be stub. */
2839 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
2840 }
c906108c
SS
2841}
2842
2843/* Given a pointer to a die which begins an enumeration, process all
2844 the dies that define the members of the enumeration.
2845
2846 This will be much nicer in draft 6 of the DWARF spec when our
2847 members will be dies instead squished into the DW_AT_element_list
2848 attribute.
2849
2850 NOTE: We reverse the order of the element list. */
2851
2852static void
107d2387
AC
2853read_enumeration (struct die_info *die, struct objfile *objfile,
2854 const struct comp_unit_head *cu_header)
c906108c
SS
2855{
2856 struct die_info *child_die;
2857 struct type *type;
2858 struct field *fields;
2859 struct attribute *attr;
2860 struct symbol *sym;
2861 int num_fields;
2862 int unsigned_enum = 1;
2863
2864 type = alloc_type (objfile);
2865
2866 TYPE_CODE (type) = TYPE_CODE_ENUM;
2867 attr = dwarf_attr (die, DW_AT_name);
2868 if (attr && DW_STRING (attr))
2869 {
2870 TYPE_TAG_NAME (type) = obsavestring (DW_STRING (attr),
2871 strlen (DW_STRING (attr)),
2872 &objfile->type_obstack);
2873 }
2874
2875 attr = dwarf_attr (die, DW_AT_byte_size);
2876 if (attr)
2877 {
2878 TYPE_LENGTH (type) = DW_UNSND (attr);
2879 }
2880 else
2881 {
2882 TYPE_LENGTH (type) = 0;
2883 }
2884
2885 num_fields = 0;
2886 fields = NULL;
2887 if (die->has_children)
2888 {
2889 child_die = die->next;
2890 while (child_die && child_die->tag)
2891 {
2892 if (child_die->tag != DW_TAG_enumerator)
2893 {
107d2387 2894 process_die (child_die, objfile, cu_header);
c906108c
SS
2895 }
2896 else
2897 {
2898 attr = dwarf_attr (child_die, DW_AT_name);
2899 if (attr)
2900 {
107d2387 2901 sym = new_symbol (child_die, type, objfile, cu_header);
c906108c
SS
2902 if (SYMBOL_VALUE (sym) < 0)
2903 unsigned_enum = 0;
2904
2905 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
2906 {
2907 fields = (struct field *)
2908 xrealloc (fields,
2909 (num_fields + DW_FIELD_ALLOC_CHUNK)
c5aa993b 2910 * sizeof (struct field));
c906108c
SS
2911 }
2912
2913 FIELD_NAME (fields[num_fields]) = SYMBOL_NAME (sym);
2914 FIELD_TYPE (fields[num_fields]) = NULL;
2915 FIELD_BITPOS (fields[num_fields]) = SYMBOL_VALUE (sym);
2916 FIELD_BITSIZE (fields[num_fields]) = 0;
01ad7f36 2917 FIELD_STATIC_KIND (fields[num_fields]) = 0;
c906108c
SS
2918
2919 num_fields++;
2920 }
2921 }
2922
2923 child_die = sibling_die (child_die);
2924 }
2925
2926 if (num_fields)
2927 {
2928 TYPE_NFIELDS (type) = num_fields;
2929 TYPE_FIELDS (type) = (struct field *)
2930 TYPE_ALLOC (type, sizeof (struct field) * num_fields);
2931 memcpy (TYPE_FIELDS (type), fields,
2932 sizeof (struct field) * num_fields);
b8c9b27d 2933 xfree (fields);
c906108c
SS
2934 }
2935 if (unsigned_enum)
2936 TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
2937 }
2938 die->type = type;
107d2387 2939 new_symbol (die, type, objfile, cu_header);
c906108c
SS
2940}
2941
2942/* Extract all information from a DW_TAG_array_type DIE and put it in
2943 the DIE's type field. For now, this only handles one dimensional
2944 arrays. */
2945
2946static void
107d2387
AC
2947read_array_type (struct die_info *die, struct objfile *objfile,
2948 const struct comp_unit_head *cu_header)
c906108c
SS
2949{
2950 struct die_info *child_die;
2951 struct type *type = NULL;
2952 struct type *element_type, *range_type, *index_type;
2953 struct type **range_types = NULL;
2954 struct attribute *attr;
2955 int ndim = 0;
2956 struct cleanup *back_to;
2957
2958 /* Return if we've already decoded this type. */
2959 if (die->type)
2960 {
2961 return;
2962 }
2963
107d2387 2964 element_type = die_type (die, objfile, cu_header);
c906108c
SS
2965
2966 /* Irix 6.2 native cc creates array types without children for
2967 arrays with unspecified length. */
2968 if (die->has_children == 0)
2969 {
2970 index_type = dwarf2_fundamental_type (objfile, FT_INTEGER);
2971 range_type = create_range_type (NULL, index_type, 0, -1);
2972 die->type = create_array_type (NULL, element_type, range_type);
2973 return;
2974 }
2975
2976 back_to = make_cleanup (null_cleanup, NULL);
2977 child_die = die->next;
2978 while (child_die && child_die->tag)
2979 {
2980 if (child_die->tag == DW_TAG_subrange_type)
2981 {
2982 unsigned int low, high;
2983
2984 /* Default bounds to an array with unspecified length. */
2985 low = 0;
2986 high = -1;
2987 if (cu_language == language_fortran)
2988 {
2989 /* FORTRAN implies a lower bound of 1, if not given. */
2990 low = 1;
2991 }
2992
107d2387 2993 index_type = die_type (child_die, objfile, cu_header);
c906108c
SS
2994 attr = dwarf_attr (child_die, DW_AT_lower_bound);
2995 if (attr)
2996 {
2997 if (attr->form == DW_FORM_sdata)
2998 {
2999 low = DW_SND (attr);
3000 }
3001 else if (attr->form == DW_FORM_udata
c5aa993b
JM
3002 || attr->form == DW_FORM_data1
3003 || attr->form == DW_FORM_data2
96383835
RH
3004 || attr->form == DW_FORM_data4
3005 || attr->form == DW_FORM_data8)
c906108c
SS
3006 {
3007 low = DW_UNSND (attr);
3008 }
3009 else
3010 {
4d3c2250
KB
3011 dwarf2_non_const_array_bound_ignored_complaint
3012 (dwarf_form_name (attr->form));
c906108c
SS
3013#ifdef FORTRAN_HACK
3014 die->type = lookup_pointer_type (element_type);
3015 return;
3016#else
3017 low = 0;
3018#endif
3019 }
3020 }
3021 attr = dwarf_attr (child_die, DW_AT_upper_bound);
3022 if (attr)
3023 {
3024 if (attr->form == DW_FORM_sdata)
3025 {
3026 high = DW_SND (attr);
3027 }
3028 else if (attr->form == DW_FORM_udata
c5aa993b
JM
3029 || attr->form == DW_FORM_data1
3030 || attr->form == DW_FORM_data2
96383835
RH
3031 || attr->form == DW_FORM_data4
3032 || attr->form == DW_FORM_data8)
c906108c
SS
3033 {
3034 high = DW_UNSND (attr);
3035 }
3036 else if (attr->form == DW_FORM_block1)
3037 {
3038 /* GCC encodes arrays with unspecified or dynamic length
3039 with a DW_FORM_block1 attribute.
3040 FIXME: GDB does not yet know how to handle dynamic
3041 arrays properly, treat them as arrays with unspecified
3042 length for now. */
3043 high = -1;
3044 }
3045 else
3046 {
4d3c2250
KB
3047 dwarf2_non_const_array_bound_ignored_complaint
3048 (dwarf_form_name (attr->form));
c906108c
SS
3049#ifdef FORTRAN_HACK
3050 die->type = lookup_pointer_type (element_type);
3051 return;
3052#else
3053 high = 1;
3054#endif
3055 }
3056 }
3057
3058 /* Create a range type and save it for array type creation. */
3059 if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
3060 {
3061 range_types = (struct type **)
3062 xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
c5aa993b 3063 * sizeof (struct type *));
c906108c 3064 if (ndim == 0)
c13c43fd 3065 make_cleanup (free_current_contents, &range_types);
c906108c
SS
3066 }
3067 range_types[ndim++] = create_range_type (NULL, index_type, low, high);
3068 }
3069 child_die = sibling_die (child_die);
3070 }
3071
3072 /* Dwarf2 dimensions are output from left to right, create the
3073 necessary array types in backwards order. */
3074 type = element_type;
3075 while (ndim-- > 0)
3076 type = create_array_type (NULL, type, range_types[ndim]);
3077
f5f8a009
EZ
3078 /* Understand Dwarf2 support for vector types (like they occur on
3079 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
3080 array type. This is not part of the Dwarf2/3 standard yet, but a
3081 custom vendor extension. The main difference between a regular
3082 array and the vector variant is that vectors are passed by value
3083 to functions. */
3084 attr = dwarf_attr (die, DW_AT_GNU_vector);
3085 if (attr)
3086 TYPE_FLAGS (type) |= TYPE_FLAG_VECTOR;
3087
c906108c
SS
3088 do_cleanups (back_to);
3089
3090 /* Install the type in the die. */
3091 die->type = type;
3092}
3093
3094/* First cut: install each common block member as a global variable. */
3095
3096static void
107d2387
AC
3097read_common_block (struct die_info *die, struct objfile *objfile,
3098 const struct comp_unit_head *cu_header)
c906108c
SS
3099{
3100 struct die_info *child_die;
3101 struct attribute *attr;
3102 struct symbol *sym;
3103 CORE_ADDR base = (CORE_ADDR) 0;
3104
3105 attr = dwarf_attr (die, DW_AT_location);
3106 if (attr)
3107 {
8e19ed76
PS
3108 /* Support the .debug_loc offsets */
3109 if (attr_form_is_block (attr))
3110 {
3111 base = decode_locdesc (DW_BLOCK (attr), objfile, cu_header);
3112 }
3113 else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8)
3114 {
4d3c2250 3115 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
3116 }
3117 else
3118 {
4d3c2250
KB
3119 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
3120 "common block member");
8e19ed76 3121 }
c906108c
SS
3122 }
3123 if (die->has_children)
3124 {
3125 child_die = die->next;
3126 while (child_die && child_die->tag)
3127 {
107d2387 3128 sym = new_symbol (child_die, NULL, objfile, cu_header);
c906108c
SS
3129 attr = dwarf_attr (child_die, DW_AT_data_member_location);
3130 if (attr)
3131 {
3132 SYMBOL_VALUE_ADDRESS (sym) =
107d2387 3133 base + decode_locdesc (DW_BLOCK (attr), objfile, cu_header);
c906108c
SS
3134 add_symbol_to_list (sym, &global_symbols);
3135 }
3136 child_die = sibling_die (child_die);
3137 }
3138 }
3139}
3140
d9fa45fe
DC
3141/* Read a C++ namespace. */
3142
3143/* FIXME: carlton/2002-10-16: For now, we don't actually do anything
3144 useful with the namespace data: we just process its children. */
3145
3146static void
3147read_namespace (struct die_info *die, struct objfile *objfile,
3148 const struct comp_unit_head *cu_header)
3149{
3150 if (die->has_children)
3151 {
3152 struct die_info *child_die = die->next;
3153
3154 while (child_die && child_die->tag)
3155 {
3156 process_die (child_die, objfile, cu_header);
3157 child_die = sibling_die (child_die);
3158 }
3159 }
3160}
3161
c906108c
SS
3162/* Extract all information from a DW_TAG_pointer_type DIE and add to
3163 the user defined type vector. */
3164
3165static void
107d2387
AC
3166read_tag_pointer_type (struct die_info *die, struct objfile *objfile,
3167 const struct comp_unit_head *cu_header)
c906108c
SS
3168{
3169 struct type *type;
8b2dbe47
KB
3170 struct attribute *attr_byte_size;
3171 struct attribute *attr_address_class;
3172 int byte_size, addr_class;
c906108c
SS
3173
3174 if (die->type)
3175 {
3176 return;
3177 }
3178
107d2387 3179 type = lookup_pointer_type (die_type (die, objfile, cu_header));
8b2dbe47
KB
3180
3181 attr_byte_size = dwarf_attr (die, DW_AT_byte_size);
3182 if (attr_byte_size)
3183 byte_size = DW_UNSND (attr_byte_size);
c906108c 3184 else
8b2dbe47
KB
3185 byte_size = cu_header->addr_size;
3186
3187 attr_address_class = dwarf_attr (die, DW_AT_address_class);
3188 if (attr_address_class)
3189 addr_class = DW_UNSND (attr_address_class);
3190 else
3191 addr_class = DW_ADDR_none;
3192
3193 /* If the pointer size or address class is different than the
3194 default, create a type variant marked as such and set the
3195 length accordingly. */
3196 if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
c906108c 3197 {
8b2dbe47
KB
3198 if (ADDRESS_CLASS_TYPE_FLAGS_P ())
3199 {
3200 int type_flags;
3201
3202 type_flags = ADDRESS_CLASS_TYPE_FLAGS (byte_size, addr_class);
3203 gdb_assert ((type_flags & ~TYPE_FLAG_ADDRESS_CLASS_ALL) == 0);
3204 type = make_type_with_address_space (type, type_flags);
3205 }
3206 else if (TYPE_LENGTH (type) != byte_size)
3207 {
4d3c2250 3208 complaint (&symfile_complaints, "invalid pointer size %d", byte_size);
8b2dbe47
KB
3209 }
3210 else {
3211 /* Should we also complain about unhandled address classes? */
3212 }
c906108c 3213 }
8b2dbe47
KB
3214
3215 TYPE_LENGTH (type) = byte_size;
c906108c
SS
3216 die->type = type;
3217}
3218
3219/* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
3220 the user defined type vector. */
3221
3222static void
107d2387
AC
3223read_tag_ptr_to_member_type (struct die_info *die, struct objfile *objfile,
3224 const struct comp_unit_head *cu_header)
c906108c
SS
3225{
3226 struct type *type;
3227 struct type *to_type;
3228 struct type *domain;
3229
3230 if (die->type)
3231 {
3232 return;
3233 }
3234
3235 type = alloc_type (objfile);
107d2387
AC
3236 to_type = die_type (die, objfile, cu_header);
3237 domain = die_containing_type (die, objfile, cu_header);
c906108c
SS
3238 smash_to_member_type (type, domain, to_type);
3239
3240 die->type = type;
3241}
3242
3243/* Extract all information from a DW_TAG_reference_type DIE and add to
3244 the user defined type vector. */
3245
3246static void
107d2387
AC
3247read_tag_reference_type (struct die_info *die, struct objfile *objfile,
3248 const struct comp_unit_head *cu_header)
c906108c
SS
3249{
3250 struct type *type;
3251 struct attribute *attr;
3252
3253 if (die->type)
3254 {
3255 return;
3256 }
3257
107d2387 3258 type = lookup_reference_type (die_type (die, objfile, cu_header));
c906108c
SS
3259 attr = dwarf_attr (die, DW_AT_byte_size);
3260 if (attr)
3261 {
3262 TYPE_LENGTH (type) = DW_UNSND (attr);
3263 }
3264 else
3265 {
107d2387 3266 TYPE_LENGTH (type) = cu_header->addr_size;
c906108c
SS
3267 }
3268 die->type = type;
3269}
3270
3271static void
107d2387
AC
3272read_tag_const_type (struct die_info *die, struct objfile *objfile,
3273 const struct comp_unit_head *cu_header)
c906108c 3274{
090c42a4
JB
3275 struct type *base_type;
3276
c906108c
SS
3277 if (die->type)
3278 {
3279 return;
3280 }
3281
090c42a4
JB
3282 base_type = die_type (die, objfile, cu_header);
3283 die->type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
c906108c
SS
3284}
3285
3286static void
107d2387
AC
3287read_tag_volatile_type (struct die_info *die, struct objfile *objfile,
3288 const struct comp_unit_head *cu_header)
c906108c 3289{
090c42a4
JB
3290 struct type *base_type;
3291
c906108c
SS
3292 if (die->type)
3293 {
3294 return;
3295 }
3296
090c42a4
JB
3297 base_type = die_type (die, objfile, cu_header);
3298 die->type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
c906108c
SS
3299}
3300
3301/* Extract all information from a DW_TAG_string_type DIE and add to
3302 the user defined type vector. It isn't really a user defined type,
3303 but it behaves like one, with other DIE's using an AT_user_def_type
3304 attribute to reference it. */
3305
3306static void
fba45db2 3307read_tag_string_type (struct die_info *die, struct objfile *objfile)
c906108c
SS
3308{
3309 struct type *type, *range_type, *index_type, *char_type;
3310 struct attribute *attr;
3311 unsigned int length;
3312
3313 if (die->type)
3314 {
3315 return;
3316 }
3317
3318 attr = dwarf_attr (die, DW_AT_string_length);
3319 if (attr)
3320 {
3321 length = DW_UNSND (attr);
3322 }
3323 else
3324 {
b21b22e0
PS
3325 /* check for the DW_AT_byte_size attribute */
3326 attr = dwarf_attr (die, DW_AT_byte_size);
3327 if (attr)
3328 {
3329 length = DW_UNSND (attr);
3330 }
3331 else
3332 {
3333 length = 1;
3334 }
c906108c
SS
3335 }
3336 index_type = dwarf2_fundamental_type (objfile, FT_INTEGER);
3337 range_type = create_range_type (NULL, index_type, 1, length);
b21b22e0
PS
3338 if (cu_language == language_fortran)
3339 {
3340 /* Need to create a unique string type for bounds
3341 information */
3342 type = create_string_type (0, range_type);
3343 }
3344 else
3345 {
3346 char_type = dwarf2_fundamental_type (objfile, FT_CHAR);
3347 type = create_string_type (char_type, range_type);
3348 }
c906108c
SS
3349 die->type = type;
3350}
3351
3352/* Handle DIES due to C code like:
3353
3354 struct foo
c5aa993b
JM
3355 {
3356 int (*funcp)(int a, long l);
3357 int b;
3358 };
c906108c
SS
3359
3360 ('funcp' generates a DW_TAG_subroutine_type DIE)
c5aa993b 3361 */
c906108c
SS
3362
3363static void
107d2387
AC
3364read_subroutine_type (struct die_info *die, struct objfile *objfile,
3365 const struct comp_unit_head *cu_header)
c906108c
SS
3366{
3367 struct type *type; /* Type that this function returns */
3368 struct type *ftype; /* Function that returns above type */
3369 struct attribute *attr;
3370
3371 /* Decode the type that this subroutine returns */
3372 if (die->type)
3373 {
3374 return;
3375 }
107d2387 3376 type = die_type (die, objfile, cu_header);
c906108c
SS
3377 ftype = lookup_function_type (type);
3378
3379 /* All functions in C++ have prototypes. */
3380 attr = dwarf_attr (die, DW_AT_prototyped);
3381 if ((attr && (DW_UNSND (attr) != 0))
3382 || cu_language == language_cplus)
3383 TYPE_FLAGS (ftype) |= TYPE_FLAG_PROTOTYPED;
3384
3385 if (die->has_children)
3386 {
3387 struct die_info *child_die;
3388 int nparams = 0;
3389 int iparams = 0;
3390
3391 /* Count the number of parameters.
3392 FIXME: GDB currently ignores vararg functions, but knows about
3393 vararg member functions. */
3394 child_die = die->next;
3395 while (child_die && child_die->tag)
3396 {
3397 if (child_die->tag == DW_TAG_formal_parameter)
3398 nparams++;
3399 else if (child_die->tag == DW_TAG_unspecified_parameters)
3400 TYPE_FLAGS (ftype) |= TYPE_FLAG_VARARGS;
3401 child_die = sibling_die (child_die);
3402 }
3403
3404 /* Allocate storage for parameters and fill them in. */
3405 TYPE_NFIELDS (ftype) = nparams;
3406 TYPE_FIELDS (ftype) = (struct field *)
3407 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
3408
3409 child_die = die->next;
3410 while (child_die && child_die->tag)
3411 {
3412 if (child_die->tag == DW_TAG_formal_parameter)
3413 {
3414 /* Dwarf2 has no clean way to discern C++ static and non-static
c5aa993b
JM
3415 member functions. G++ helps GDB by marking the first
3416 parameter for non-static member functions (which is the
3417 this pointer) as artificial. We pass this information
3418 to dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL. */
c906108c
SS
3419 attr = dwarf_attr (child_die, DW_AT_artificial);
3420 if (attr)
3421 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
3422 else
3423 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
107d2387
AC
3424 TYPE_FIELD_TYPE (ftype, iparams) = die_type (child_die, objfile,
3425 cu_header);
c906108c
SS
3426 iparams++;
3427 }
3428 child_die = sibling_die (child_die);
3429 }
3430 }
3431
3432 die->type = ftype;
3433}
3434
3435static void
107d2387
AC
3436read_typedef (struct die_info *die, struct objfile *objfile,
3437 const struct comp_unit_head *cu_header)
c906108c 3438{
2f038fcb
FF
3439 struct attribute *attr;
3440 char *name = NULL;
c906108c
SS
3441
3442 if (!die->type)
3443 {
c906108c
SS
3444 attr = dwarf_attr (die, DW_AT_name);
3445 if (attr && DW_STRING (attr))
2f038fcb
FF
3446 {
3447 name = DW_STRING (attr);
3448 }
3449 die->type = init_type (TYPE_CODE_TYPEDEF, 0, TYPE_FLAG_TARGET_STUB, name, objfile);
3450 TYPE_TARGET_TYPE (die->type) = die_type (die, objfile, cu_header);
c906108c
SS
3451 }
3452}
3453
3454/* Find a representation of a given base type and install
3455 it in the TYPE field of the die. */
3456
3457static void
fba45db2 3458read_base_type (struct die_info *die, struct objfile *objfile)
c906108c
SS
3459{
3460 struct type *type;
3461 struct attribute *attr;
3462 int encoding = 0, size = 0;
3463
3464 /* If we've already decoded this die, this is a no-op. */
3465 if (die->type)
3466 {
3467 return;
3468 }
3469
3470 attr = dwarf_attr (die, DW_AT_encoding);
3471 if (attr)
3472 {
3473 encoding = DW_UNSND (attr);
3474 }
3475 attr = dwarf_attr (die, DW_AT_byte_size);
3476 if (attr)
3477 {
3478 size = DW_UNSND (attr);
3479 }
3480 attr = dwarf_attr (die, DW_AT_name);
3481 if (attr && DW_STRING (attr))
3482 {
3483 enum type_code code = TYPE_CODE_INT;
f5ef7c67 3484 int type_flags = 0;
c906108c
SS
3485
3486 switch (encoding)
3487 {
3488 case DW_ATE_address:
3489 /* Turn DW_ATE_address into a void * pointer. */
3490 code = TYPE_CODE_PTR;
f5ef7c67 3491 type_flags |= TYPE_FLAG_UNSIGNED;
c906108c
SS
3492 break;
3493 case DW_ATE_boolean:
3494 code = TYPE_CODE_BOOL;
f5ef7c67 3495 type_flags |= TYPE_FLAG_UNSIGNED;
c906108c
SS
3496 break;
3497 case DW_ATE_complex_float:
3498 code = TYPE_CODE_COMPLEX;
3499 break;
3500 case DW_ATE_float:
3501 code = TYPE_CODE_FLT;
3502 break;
3503 case DW_ATE_signed:
3504 case DW_ATE_signed_char:
3505 break;
3506 case DW_ATE_unsigned:
3507 case DW_ATE_unsigned_char:
f5ef7c67 3508 type_flags |= TYPE_FLAG_UNSIGNED;
c906108c
SS
3509 break;
3510 default:
4d3c2250
KB
3511 complaint (&symfile_complaints, "unsupported DW_AT_encoding: '%s'",
3512 dwarf_type_encoding_name (encoding));
c906108c
SS
3513 break;
3514 }
f5ef7c67 3515 type = init_type (code, size, type_flags, DW_STRING (attr), objfile);
c906108c
SS
3516 if (encoding == DW_ATE_address)
3517 TYPE_TARGET_TYPE (type) = dwarf2_fundamental_type (objfile, FT_VOID);
f65ca430
DJ
3518 else if (encoding == DW_ATE_complex_float)
3519 {
3520 if (size == 32)
3521 TYPE_TARGET_TYPE (type)
3522 = dwarf2_fundamental_type (objfile, FT_EXT_PREC_FLOAT);
3523 else if (size == 16)
3524 TYPE_TARGET_TYPE (type)
3525 = dwarf2_fundamental_type (objfile, FT_DBL_PREC_FLOAT);
3526 else if (size == 8)
3527 TYPE_TARGET_TYPE (type)
3528 = dwarf2_fundamental_type (objfile, FT_FLOAT);
3529 }
c906108c
SS
3530 }
3531 else
3532 {
3533 type = dwarf_base_type (encoding, size, objfile);
3534 }
3535 die->type = type;
3536}
3537
3538/* Read a whole compilation unit into a linked list of dies. */
3539
f9aca02d 3540static struct die_info *
107d2387
AC
3541read_comp_unit (char *info_ptr, bfd *abfd,
3542 const struct comp_unit_head *cu_header)
c906108c
SS
3543{
3544 struct die_info *first_die, *last_die, *die;
3545 char *cur_ptr;
3546 int nesting_level;
3547
b3810801 3548 /* Reset die reference table; we are
7f0e3f52
AC
3549 building new ones now. */
3550 dwarf2_empty_hash_tables ();
c906108c
SS
3551
3552 cur_ptr = info_ptr;
3553 nesting_level = 0;
3554 first_die = last_die = NULL;
3555 do
3556 {
107d2387 3557 cur_ptr = read_full_die (&die, abfd, cur_ptr, cu_header);
c906108c
SS
3558 if (die->has_children)
3559 {
3560 nesting_level++;
3561 }
3562 if (die->tag == 0)
3563 {
3564 nesting_level--;
3565 }
3566
3567 die->next = NULL;
3568
3569 /* Enter die in reference hash table */
3570 store_in_ref_table (die->offset, die);
3571
3572 if (!first_die)
3573 {
3574 first_die = last_die = die;
3575 }
3576 else
3577 {
3578 last_die->next = die;
3579 last_die = die;
3580 }
3581 }
3582 while (nesting_level > 0);
3583 return first_die;
3584}
3585
3586/* Free a linked list of dies. */
3587
3588static void
fba45db2 3589free_die_list (struct die_info *dies)
c906108c
SS
3590{
3591 struct die_info *die, *next;
3592
3593 die = dies;
3594 while (die)
3595 {
3596 next = die->next;
b8c9b27d
KB
3597 xfree (die->attrs);
3598 xfree (die);
c906108c
SS
3599 die = next;
3600 }
3601}
3602
74b7792f
AC
3603static void
3604do_free_die_list_cleanup (void *dies)
3605{
3606 free_die_list (dies);
3607}
3608
3609static struct cleanup *
3610make_cleanup_free_die_list (struct die_info *dies)
3611{
3612 return make_cleanup (do_free_die_list_cleanup, dies);
3613}
3614
3615
c906108c
SS
3616/* Read the contents of the section at OFFSET and of size SIZE from the
3617 object file specified by OBJFILE into the psymbol_obstack and return it. */
3618
b6af0555 3619char *
fba45db2 3620dwarf2_read_section (struct objfile *objfile, file_ptr offset,
086df311 3621 unsigned int size, asection *sectp)
c906108c
SS
3622{
3623 bfd *abfd = objfile->obfd;
086df311 3624 char *buf, *retbuf;
c906108c
SS
3625
3626 if (size == 0)
3627 return NULL;
3628
3629 buf = (char *) obstack_alloc (&objfile->psymbol_obstack, size);
086df311
DJ
3630 retbuf
3631 = (char *) symfile_relocate_debug_section (abfd, sectp, (bfd_byte *) buf);
3632 if (retbuf != NULL)
3633 return retbuf;
3634
c906108c 3635 if ((bfd_seek (abfd, offset, SEEK_SET) != 0) ||
3a42e9d0 3636 (bfd_bread (buf, size, abfd) != size))
c906108c
SS
3637 {
3638 buf = NULL;
3639 error ("Dwarf Error: Can't read DWARF data from '%s'",
c5aa993b 3640 bfd_get_filename (abfd));
c906108c
SS
3641 }
3642 return buf;
3643}
3644
3645/* In DWARF version 2, the description of the debugging information is
3646 stored in a separate .debug_abbrev section. Before we read any
3647 dies from a section we read in all abbreviations and install them
3648 in a hash table. */
3649
3650static void
57349743 3651dwarf2_read_abbrevs (bfd *abfd, struct comp_unit_head *cu_header)
c906108c
SS
3652{
3653 char *abbrev_ptr;
3654 struct abbrev_info *cur_abbrev;
3655 unsigned int abbrev_number, bytes_read, abbrev_name;
3656 unsigned int abbrev_form, hash_number;
3657
57349743
JB
3658 /* Initialize dwarf2 abbrevs */
3659 memset (cu_header->dwarf2_abbrevs, 0,
3660 ABBREV_HASH_SIZE*sizeof (struct abbrev_info *));
c906108c 3661
57349743 3662 abbrev_ptr = dwarf_abbrev_buffer + cu_header->abbrev_offset;
c906108c
SS
3663 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
3664 abbrev_ptr += bytes_read;
3665
3666 /* loop until we reach an abbrev number of 0 */
3667 while (abbrev_number)
3668 {
3669 cur_abbrev = dwarf_alloc_abbrev ();
3670
3671 /* read in abbrev header */
3672 cur_abbrev->number = abbrev_number;
3673 cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
3674 abbrev_ptr += bytes_read;
3675 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
3676 abbrev_ptr += 1;
3677
3678 /* now read in declarations */
3679 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
3680 abbrev_ptr += bytes_read;
3681 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
3682 abbrev_ptr += bytes_read;
3683 while (abbrev_name)
3684 {
3685 if ((cur_abbrev->num_attrs % ATTR_ALLOC_CHUNK) == 0)
3686 {
3687 cur_abbrev->attrs = (struct attr_abbrev *)
3688 xrealloc (cur_abbrev->attrs,
3689 (cur_abbrev->num_attrs + ATTR_ALLOC_CHUNK)
c5aa993b 3690 * sizeof (struct attr_abbrev));
c906108c
SS
3691 }
3692 cur_abbrev->attrs[cur_abbrev->num_attrs].name = abbrev_name;
3693 cur_abbrev->attrs[cur_abbrev->num_attrs++].form = abbrev_form;
3694 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
3695 abbrev_ptr += bytes_read;
3696 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
3697 abbrev_ptr += bytes_read;
3698 }
3699
3700 hash_number = abbrev_number % ABBREV_HASH_SIZE;
57349743
JB
3701 cur_abbrev->next = cu_header->dwarf2_abbrevs[hash_number];
3702 cu_header->dwarf2_abbrevs[hash_number] = cur_abbrev;
c906108c
SS
3703
3704 /* Get next abbreviation.
3705 Under Irix6 the abbreviations for a compilation unit are not
c5aa993b
JM
3706 always properly terminated with an abbrev number of 0.
3707 Exit loop if we encounter an abbreviation which we have
3708 already read (which means we are about to read the abbreviations
3709 for the next compile unit) or if the end of the abbreviation
3710 table is reached. */
c906108c 3711 if ((unsigned int) (abbrev_ptr - dwarf_abbrev_buffer)
c5aa993b 3712 >= dwarf_abbrev_size)
c906108c
SS
3713 break;
3714 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
3715 abbrev_ptr += bytes_read;
57349743 3716 if (dwarf2_lookup_abbrev (abbrev_number, cu_header) != NULL)
c906108c
SS
3717 break;
3718 }
3719}
3720
3721/* Empty the abbrev table for a new compilation unit. */
3722
3723/* ARGSUSED */
3724static void
4efb68b1 3725dwarf2_empty_abbrev_table (void *ptr_to_abbrevs_table)
c906108c
SS
3726{
3727 int i;
3728 struct abbrev_info *abbrev, *next;
57349743
JB
3729 struct abbrev_info **abbrevs;
3730
3731 abbrevs = (struct abbrev_info **)ptr_to_abbrevs_table;
c906108c
SS
3732
3733 for (i = 0; i < ABBREV_HASH_SIZE; ++i)
3734 {
3735 next = NULL;
57349743 3736 abbrev = abbrevs[i];
c906108c
SS
3737 while (abbrev)
3738 {
3739 next = abbrev->next;
b8c9b27d
KB
3740 xfree (abbrev->attrs);
3741 xfree (abbrev);
c906108c
SS
3742 abbrev = next;
3743 }
57349743 3744 abbrevs[i] = NULL;
c906108c
SS
3745 }
3746}
3747
3748/* Lookup an abbrev_info structure in the abbrev hash table. */
3749
3750static struct abbrev_info *
57349743 3751dwarf2_lookup_abbrev (unsigned int number, const struct comp_unit_head *cu_header)
c906108c
SS
3752{
3753 unsigned int hash_number;
3754 struct abbrev_info *abbrev;
3755
3756 hash_number = number % ABBREV_HASH_SIZE;
57349743 3757 abbrev = cu_header->dwarf2_abbrevs[hash_number];
c906108c
SS
3758
3759 while (abbrev)
3760 {
3761 if (abbrev->number == number)
3762 return abbrev;
3763 else
3764 abbrev = abbrev->next;
3765 }
3766 return NULL;
3767}
3768
3769/* Read a minimal amount of information into the minimal die structure. */
3770
3771static char *
107d2387 3772read_partial_die (struct partial_die_info *part_die, bfd *abfd,
0b010bcc 3773 char *info_ptr, const struct comp_unit_head *cu_header)
c906108c
SS
3774{
3775 unsigned int abbrev_number, bytes_read, i;
3776 struct abbrev_info *abbrev;
3777 struct attribute attr;
3778 struct attribute spec_attr;
3779 int found_spec_attr = 0;
c5aa993b 3780 int has_low_pc_attr = 0;
c906108c
SS
3781 int has_high_pc_attr = 0;
3782
3783 *part_die = zeroed_partial_die;
c906108c
SS
3784 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
3785 info_ptr += bytes_read;
3786 if (!abbrev_number)
3787 return info_ptr;
3788
57349743 3789 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu_header);
c906108c
SS
3790 if (!abbrev)
3791 {
659b0389
ML
3792 error ("Dwarf Error: Could not find abbrev number %d [in module %s]", abbrev_number,
3793 bfd_get_filename (abfd));
c906108c
SS
3794 }
3795 part_die->offset = info_ptr - dwarf_info_buffer;
3796 part_die->tag = abbrev->tag;
3797 part_die->has_children = abbrev->has_children;
3798 part_die->abbrev = abbrev_number;
3799
3800 for (i = 0; i < abbrev->num_attrs; ++i)
3801 {
107d2387
AC
3802 info_ptr = read_attribute (&attr, &abbrev->attrs[i], abfd,
3803 info_ptr, cu_header);
c906108c
SS
3804
3805 /* Store the data if it is of an attribute we want to keep in a
c5aa993b 3806 partial symbol table. */
c906108c
SS
3807 switch (attr.name)
3808 {
3809 case DW_AT_name:
3810
3811 /* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */
3812 if (part_die->name == NULL)
3813 part_die->name = DW_STRING (&attr);
3814 break;
3815 case DW_AT_MIPS_linkage_name:
3816 part_die->name = DW_STRING (&attr);
3817 break;
3818 case DW_AT_low_pc:
3819 has_low_pc_attr = 1;
3820 part_die->lowpc = DW_ADDR (&attr);
3821 break;
3822 case DW_AT_high_pc:
3823 has_high_pc_attr = 1;
3824 part_die->highpc = DW_ADDR (&attr);
3825 break;
3826 case DW_AT_location:
8e19ed76
PS
3827 /* Support the .debug_loc offsets */
3828 if (attr_form_is_block (&attr))
3829 {
3830 part_die->locdesc = DW_BLOCK (&attr);
3831 }
3832 else if (attr.form == DW_FORM_data4 || attr.form == DW_FORM_data8)
3833 {
4d3c2250 3834 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
3835 }
3836 else
3837 {
4d3c2250
KB
3838 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
3839 "partial symbol information");
8e19ed76 3840 }
c906108c
SS
3841 break;
3842 case DW_AT_language:
3843 part_die->language = DW_UNSND (&attr);
3844 break;
3845 case DW_AT_external:
3846 part_die->is_external = DW_UNSND (&attr);
3847 break;
3848 case DW_AT_declaration:
3849 part_die->is_declaration = DW_UNSND (&attr);
3850 break;
3851 case DW_AT_type:
3852 part_die->has_type = 1;
3853 break;
3854 case DW_AT_abstract_origin:
3855 case DW_AT_specification:
3856 found_spec_attr = 1;
3857 spec_attr = attr;
3858 break;
3859 case DW_AT_sibling:
3860 /* Ignore absolute siblings, they might point outside of
3861 the current compile unit. */
3862 if (attr.form == DW_FORM_ref_addr)
4d3c2250 3863 complaint (&symfile_complaints, "ignoring absolute DW_AT_sibling");
c906108c
SS
3864 else
3865 part_die->sibling =
3866 dwarf_info_buffer + dwarf2_get_ref_die_offset (&attr);
3867 break;
3868 default:
3869 break;
3870 }
3871 }
3872
3873 /* If we found a reference attribute and the die has no name, try
3874 to find a name in the referred to die. */
3875
3876 if (found_spec_attr && part_die->name == NULL)
3877 {
3878 struct partial_die_info spec_die;
3879 char *spec_ptr;
3880 int dummy;
3881
3882 spec_ptr = dwarf_info_buffer + dwarf2_get_ref_die_offset (&spec_attr);
0b010bcc 3883 read_partial_die (&spec_die, abfd, spec_ptr, cu_header);
c906108c
SS
3884 if (spec_die.name)
3885 {
3886 part_die->name = spec_die.name;
3887
3888 /* Copy DW_AT_external attribute if it is set. */
3889 if (spec_die.is_external)
3890 part_die->is_external = spec_die.is_external;
3891 }
3892 }
3893
3894 /* When using the GNU linker, .gnu.linkonce. sections are used to
3895 eliminate duplicate copies of functions and vtables and such.
3896 The linker will arbitrarily choose one and discard the others.
3897 The AT_*_pc values for such functions refer to local labels in
3898 these sections. If the section from that file was discarded, the
3899 labels are not in the output, so the relocs get a value of 0.
3900 If this is a discarded function, mark the pc bounds as invalid,
3901 so that GDB will ignore it. */
3902 if (has_low_pc_attr && has_high_pc_attr
3903 && part_die->lowpc < part_die->highpc
3904 && (part_die->lowpc != 0
3905 || (bfd_get_file_flags (abfd) & HAS_RELOC)))
0b010bcc 3906 part_die->has_pc_info = 1;
c906108c
SS
3907 return info_ptr;
3908}
3909
3910/* Read the die from the .debug_info section buffer. And set diep to
3911 point to a newly allocated die with its information. */
3912
3913static char *
107d2387
AC
3914read_full_die (struct die_info **diep, bfd *abfd, char *info_ptr,
3915 const struct comp_unit_head *cu_header)
c906108c
SS
3916{
3917 unsigned int abbrev_number, bytes_read, i, offset;
3918 struct abbrev_info *abbrev;
3919 struct die_info *die;
3920
3921 offset = info_ptr - dwarf_info_buffer;
3922 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
3923 info_ptr += bytes_read;
3924 if (!abbrev_number)
3925 {
3926 die = dwarf_alloc_die ();
3927 die->tag = 0;
3928 die->abbrev = abbrev_number;
3929 die->type = NULL;
3930 *diep = die;
3931 return info_ptr;
3932 }
3933
57349743 3934 abbrev = dwarf2_lookup_abbrev (abbrev_number, cu_header);
c906108c
SS
3935 if (!abbrev)
3936 {
659b0389
ML
3937 error ("Dwarf Error: could not find abbrev number %d [in module %s]", abbrev_number,
3938 bfd_get_filename (abfd));
c906108c
SS
3939 }
3940 die = dwarf_alloc_die ();
3941 die->offset = offset;
3942 die->tag = abbrev->tag;
3943 die->has_children = abbrev->has_children;
3944 die->abbrev = abbrev_number;
3945 die->type = NULL;
3946
3947 die->num_attrs = abbrev->num_attrs;
3948 die->attrs = (struct attribute *)
3949 xmalloc (die->num_attrs * sizeof (struct attribute));
3950
3951 for (i = 0; i < abbrev->num_attrs; ++i)
3952 {
3953 info_ptr = read_attribute (&die->attrs[i], &abbrev->attrs[i],
107d2387 3954 abfd, info_ptr, cu_header);
c906108c
SS
3955 }
3956
3957 *diep = die;
3958 return info_ptr;
3959}
3960
a8329558 3961/* Read an attribute value described by an attribute form. */
c906108c
SS
3962
3963static char *
a8329558 3964read_attribute_value (struct attribute *attr, unsigned form,
107d2387
AC
3965 bfd *abfd, char *info_ptr,
3966 const struct comp_unit_head *cu_header)
c906108c
SS
3967{
3968 unsigned int bytes_read;
3969 struct dwarf_block *blk;
3970
a8329558
KW
3971 attr->form = form;
3972 switch (form)
c906108c
SS
3973 {
3974 case DW_FORM_addr:
3975 case DW_FORM_ref_addr:
107d2387
AC
3976 DW_ADDR (attr) = read_address (abfd, info_ptr, cu_header, &bytes_read);
3977 info_ptr += bytes_read;
c906108c
SS
3978 break;
3979 case DW_FORM_block2:
3980 blk = dwarf_alloc_block ();
3981 blk->size = read_2_bytes (abfd, info_ptr);
3982 info_ptr += 2;
3983 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
3984 info_ptr += blk->size;
3985 DW_BLOCK (attr) = blk;
3986 break;
3987 case DW_FORM_block4:
3988 blk = dwarf_alloc_block ();
3989 blk->size = read_4_bytes (abfd, info_ptr);
3990 info_ptr += 4;
3991 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
3992 info_ptr += blk->size;
3993 DW_BLOCK (attr) = blk;
3994 break;
3995 case DW_FORM_data2:
3996 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
3997 info_ptr += 2;
3998 break;
3999 case DW_FORM_data4:
4000 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
4001 info_ptr += 4;
4002 break;
4003 case DW_FORM_data8:
4004 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
4005 info_ptr += 8;
4006 break;
4007 case DW_FORM_string:
4008 DW_STRING (attr) = read_string (abfd, info_ptr, &bytes_read);
4009 info_ptr += bytes_read;
4010 break;
4bdf3d34
JJ
4011 case DW_FORM_strp:
4012 DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
4013 &bytes_read);
4014 info_ptr += bytes_read;
4015 break;
c906108c
SS
4016 case DW_FORM_block:
4017 blk = dwarf_alloc_block ();
4018 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4019 info_ptr += bytes_read;
4020 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
4021 info_ptr += blk->size;
4022 DW_BLOCK (attr) = blk;
4023 break;
4024 case DW_FORM_block1:
4025 blk = dwarf_alloc_block ();
4026 blk->size = read_1_byte (abfd, info_ptr);
4027 info_ptr += 1;
4028 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
4029 info_ptr += blk->size;
4030 DW_BLOCK (attr) = blk;
4031 break;
4032 case DW_FORM_data1:
4033 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
4034 info_ptr += 1;
4035 break;
4036 case DW_FORM_flag:
4037 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
4038 info_ptr += 1;
4039 break;
4040 case DW_FORM_sdata:
4041 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
4042 info_ptr += bytes_read;
4043 break;
4044 case DW_FORM_udata:
4045 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4046 info_ptr += bytes_read;
4047 break;
4048 case DW_FORM_ref1:
4049 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
4050 info_ptr += 1;
4051 break;
4052 case DW_FORM_ref2:
4053 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
4054 info_ptr += 2;
4055 break;
4056 case DW_FORM_ref4:
4057 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
4058 info_ptr += 4;
4059 break;
613e1657
KB
4060 case DW_FORM_ref8:
4061 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
4062 info_ptr += 8;
4063 break;
c906108c
SS
4064 case DW_FORM_ref_udata:
4065 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4066 info_ptr += bytes_read;
4067 break;
c906108c 4068 case DW_FORM_indirect:
a8329558
KW
4069 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
4070 info_ptr += bytes_read;
4071 info_ptr = read_attribute_value (attr, form, abfd, info_ptr, cu_header);
4072 break;
c906108c 4073 default:
659b0389
ML
4074 error ("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]",
4075 dwarf_form_name (form),
4076 bfd_get_filename (abfd));
c906108c
SS
4077 }
4078 return info_ptr;
4079}
4080
a8329558
KW
4081/* Read an attribute described by an abbreviated attribute. */
4082
4083static char *
4084read_attribute (struct attribute *attr, struct attr_abbrev *abbrev,
4085 bfd *abfd, char *info_ptr,
4086 const struct comp_unit_head *cu_header)
4087{
4088 attr->name = abbrev->name;
4089 return read_attribute_value (attr, abbrev->form, abfd, info_ptr, cu_header);
4090}
4091
c906108c
SS
4092/* read dwarf information from a buffer */
4093
4094static unsigned int
fba45db2 4095read_1_byte (bfd *abfd, char *buf)
c906108c
SS
4096{
4097 return bfd_get_8 (abfd, (bfd_byte *) buf);
4098}
4099
4100static int
fba45db2 4101read_1_signed_byte (bfd *abfd, char *buf)
c906108c
SS
4102{
4103 return bfd_get_signed_8 (abfd, (bfd_byte *) buf);
4104}
4105
4106static unsigned int
fba45db2 4107read_2_bytes (bfd *abfd, char *buf)
c906108c
SS
4108{
4109 return bfd_get_16 (abfd, (bfd_byte *) buf);
4110}
4111
4112static int
fba45db2 4113read_2_signed_bytes (bfd *abfd, char *buf)
c906108c
SS
4114{
4115 return bfd_get_signed_16 (abfd, (bfd_byte *) buf);
4116}
4117
4118static unsigned int
fba45db2 4119read_4_bytes (bfd *abfd, char *buf)
c906108c
SS
4120{
4121 return bfd_get_32 (abfd, (bfd_byte *) buf);
4122}
4123
4124static int
fba45db2 4125read_4_signed_bytes (bfd *abfd, char *buf)
c906108c
SS
4126{
4127 return bfd_get_signed_32 (abfd, (bfd_byte *) buf);
4128}
4129
ce5d95e1 4130static unsigned long
fba45db2 4131read_8_bytes (bfd *abfd, char *buf)
c906108c
SS
4132{
4133 return bfd_get_64 (abfd, (bfd_byte *) buf);
4134}
4135
4136static CORE_ADDR
107d2387
AC
4137read_address (bfd *abfd, char *buf, const struct comp_unit_head *cu_header,
4138 int *bytes_read)
c906108c
SS
4139{
4140 CORE_ADDR retval = 0;
4141
107d2387 4142 if (cu_header->signed_addr_p)
c906108c 4143 {
107d2387
AC
4144 switch (cu_header->addr_size)
4145 {
4146 case 2:
4147 retval = bfd_get_signed_16 (abfd, (bfd_byte *) buf);
4148 break;
4149 case 4:
4150 retval = bfd_get_signed_32 (abfd, (bfd_byte *) buf);
4151 break;
4152 case 8:
4153 retval = bfd_get_signed_64 (abfd, (bfd_byte *) buf);
4154 break;
4155 default:
8e65ff28 4156 internal_error (__FILE__, __LINE__,
659b0389
ML
4157 "read_address: bad switch, signed [in module %s]",
4158 bfd_get_filename (abfd));
107d2387
AC
4159 }
4160 }
4161 else
4162 {
4163 switch (cu_header->addr_size)
4164 {
4165 case 2:
4166 retval = bfd_get_16 (abfd, (bfd_byte *) buf);
4167 break;
4168 case 4:
4169 retval = bfd_get_32 (abfd, (bfd_byte *) buf);
4170 break;
4171 case 8:
4172 retval = bfd_get_64 (abfd, (bfd_byte *) buf);
4173 break;
4174 default:
8e65ff28 4175 internal_error (__FILE__, __LINE__,
659b0389
ML
4176 "read_address: bad switch, unsigned [in module %s]",
4177 bfd_get_filename (abfd));
107d2387 4178 }
c906108c 4179 }
64367e0a 4180
107d2387
AC
4181 *bytes_read = cu_header->addr_size;
4182 return retval;
c906108c
SS
4183}
4184
f7ef9339 4185/* Read the initial length from a section. The (draft) DWARF 3
613e1657
KB
4186 specification allows the initial length to take up either 4 bytes
4187 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
4188 bytes describe the length and all offsets will be 8 bytes in length
4189 instead of 4.
4190
f7ef9339
KB
4191 An older, non-standard 64-bit format is also handled by this
4192 function. The older format in question stores the initial length
4193 as an 8-byte quantity without an escape value. Lengths greater
4194 than 2^32 aren't very common which means that the initial 4 bytes
4195 is almost always zero. Since a length value of zero doesn't make
4196 sense for the 32-bit format, this initial zero can be considered to
4197 be an escape value which indicates the presence of the older 64-bit
4198 format. As written, the code can't detect (old format) lengths
4199 greater than 4GB. If it becomes necessary to handle lengths somewhat
4200 larger than 4GB, we could allow other small values (such as the
4201 non-sensical values of 1, 2, and 3) to also be used as escape values
4202 indicating the presence of the old format.
4203
613e1657
KB
4204 The value returned via bytes_read should be used to increment
4205 the relevant pointer after calling read_initial_length().
4206
4207 As a side effect, this function sets the fields initial_length_size
4208 and offset_size in cu_header to the values appropriate for the
4209 length field. (The format of the initial length field determines
4210 the width of file offsets to be fetched later with fetch_offset().)
4211
4212 [ Note: read_initial_length() and read_offset() are based on the
4213 document entitled "DWARF Debugging Information Format", revision
f7ef9339 4214 3, draft 8, dated November 19, 2001. This document was obtained
613e1657
KB
4215 from:
4216
f7ef9339 4217 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
613e1657
KB
4218
4219 This document is only a draft and is subject to change. (So beware.)
4220
f7ef9339
KB
4221 Details regarding the older, non-standard 64-bit format were
4222 determined empirically by examining 64-bit ELF files produced
4223 by the SGI toolchain on an IRIX 6.5 machine.
4224
4225 - Kevin, July 16, 2002
613e1657
KB
4226 ] */
4227
4228static LONGEST
4229read_initial_length (bfd *abfd, char *buf, struct comp_unit_head *cu_header,
4230 int *bytes_read)
4231{
4232 LONGEST retval = 0;
4233
4234 retval = bfd_get_32 (abfd, (bfd_byte *) buf);
4235
4236 if (retval == 0xffffffff)
4237 {
4238 retval = bfd_get_64 (abfd, (bfd_byte *) buf + 4);
4239 *bytes_read = 12;
4240 if (cu_header != NULL)
4241 {
4242 cu_header->initial_length_size = 12;
4243 cu_header->offset_size = 8;
4244 }
4245 }
f7ef9339
KB
4246 else if (retval == 0)
4247 {
4248 /* Handle (non-standard) 64-bit DWARF2 formats such as that used
4249 by IRIX. */
4250 retval = bfd_get_64 (abfd, (bfd_byte *) buf);
4251 *bytes_read = 8;
4252 if (cu_header != NULL)
4253 {
4254 cu_header->initial_length_size = 8;
4255 cu_header->offset_size = 8;
4256 }
4257 }
613e1657
KB
4258 else
4259 {
4260 *bytes_read = 4;
4261 if (cu_header != NULL)
4262 {
4263 cu_header->initial_length_size = 4;
4264 cu_header->offset_size = 4;
4265 }
4266 }
4267
4268 return retval;
4269}
4270
4271/* Read an offset from the data stream. The size of the offset is
4272 given by cu_header->offset_size. */
4273
4274static LONGEST
4275read_offset (bfd *abfd, char *buf, const struct comp_unit_head *cu_header,
4276 int *bytes_read)
4277{
4278 LONGEST retval = 0;
4279
4280 switch (cu_header->offset_size)
4281 {
4282 case 4:
4283 retval = bfd_get_32 (abfd, (bfd_byte *) buf);
4284 *bytes_read = 4;
4285 break;
4286 case 8:
4287 retval = bfd_get_64 (abfd, (bfd_byte *) buf);
4288 *bytes_read = 8;
4289 break;
4290 default:
8e65ff28 4291 internal_error (__FILE__, __LINE__,
659b0389
ML
4292 "read_offset: bad switch [in module %s]",
4293 bfd_get_filename (abfd));
613e1657
KB
4294 }
4295
4296 return retval;
4297}
4298
c906108c 4299static char *
fba45db2 4300read_n_bytes (bfd *abfd, char *buf, unsigned int size)
c906108c
SS
4301{
4302 /* If the size of a host char is 8 bits, we can return a pointer
4303 to the buffer, otherwise we have to copy the data to a buffer
4304 allocated on the temporary obstack. */
4bdf3d34 4305 gdb_assert (HOST_CHAR_BIT == 8);
c906108c 4306 return buf;
c906108c
SS
4307}
4308
4309static char *
fba45db2 4310read_string (bfd *abfd, char *buf, unsigned int *bytes_read_ptr)
c906108c
SS
4311{
4312 /* If the size of a host char is 8 bits, we can return a pointer
4313 to the string, otherwise we have to copy the string to a buffer
4314 allocated on the temporary obstack. */
4bdf3d34 4315 gdb_assert (HOST_CHAR_BIT == 8);
c906108c
SS
4316 if (*buf == '\0')
4317 {
4318 *bytes_read_ptr = 1;
4319 return NULL;
4320 }
4321 *bytes_read_ptr = strlen (buf) + 1;
4322 return buf;
4bdf3d34
JJ
4323}
4324
4325static char *
4326read_indirect_string (bfd *abfd, char *buf,
4327 const struct comp_unit_head *cu_header,
4328 unsigned int *bytes_read_ptr)
4329{
4330 LONGEST str_offset = read_offset (abfd, buf, cu_header,
4331 (int *) bytes_read_ptr);
c906108c 4332
4bdf3d34 4333 if (dwarf_str_buffer == NULL)
c906108c 4334 {
659b0389
ML
4335 error ("DW_FORM_strp used without .debug_str section [in module %s]",
4336 bfd_get_filename (abfd));
4bdf3d34 4337 return NULL;
c906108c 4338 }
4bdf3d34 4339 if (str_offset >= dwarf_str_size)
c906108c 4340 {
659b0389
ML
4341 error ("DW_FORM_strp pointing outside of .debug_str section [in module %s]",
4342 bfd_get_filename (abfd));
c906108c
SS
4343 return NULL;
4344 }
4bdf3d34
JJ
4345 gdb_assert (HOST_CHAR_BIT == 8);
4346 if (dwarf_str_buffer[str_offset] == '\0')
4347 return NULL;
4348 return dwarf_str_buffer + str_offset;
c906108c
SS
4349}
4350
ce5d95e1 4351static unsigned long
fba45db2 4352read_unsigned_leb128 (bfd *abfd, char *buf, unsigned int *bytes_read_ptr)
c906108c 4353{
ce5d95e1
JB
4354 unsigned long result;
4355 unsigned int num_read;
c906108c
SS
4356 int i, shift;
4357 unsigned char byte;
4358
4359 result = 0;
4360 shift = 0;
4361 num_read = 0;
4362 i = 0;
4363 while (1)
4364 {
4365 byte = bfd_get_8 (abfd, (bfd_byte *) buf);
4366 buf++;
4367 num_read++;
ce5d95e1 4368 result |= ((unsigned long)(byte & 127) << shift);
c906108c
SS
4369 if ((byte & 128) == 0)
4370 {
4371 break;
4372 }
4373 shift += 7;
4374 }
4375 *bytes_read_ptr = num_read;
4376 return result;
4377}
4378
ce5d95e1 4379static long
fba45db2 4380read_signed_leb128 (bfd *abfd, char *buf, unsigned int *bytes_read_ptr)
c906108c 4381{
ce5d95e1 4382 long result;
c906108c
SS
4383 int i, shift, size, num_read;
4384 unsigned char byte;
4385
4386 result = 0;
4387 shift = 0;
4388 size = 32;
4389 num_read = 0;
4390 i = 0;
4391 while (1)
4392 {
4393 byte = bfd_get_8 (abfd, (bfd_byte *) buf);
4394 buf++;
4395 num_read++;
ce5d95e1 4396 result |= ((long)(byte & 127) << shift);
c906108c
SS
4397 shift += 7;
4398 if ((byte & 128) == 0)
4399 {
4400 break;
4401 }
4402 }
4403 if ((shift < size) && (byte & 0x40))
4404 {
4405 result |= -(1 << shift);
4406 }
4407 *bytes_read_ptr = num_read;
4408 return result;
4409}
4410
4411static void
fba45db2 4412set_cu_language (unsigned int lang)
c906108c
SS
4413{
4414 switch (lang)
4415 {
4416 case DW_LANG_C89:
4417 case DW_LANG_C:
4418 cu_language = language_c;
4419 break;
4420 case DW_LANG_C_plus_plus:
4421 cu_language = language_cplus;
4422 break;
4423 case DW_LANG_Fortran77:
4424 case DW_LANG_Fortran90:
b21b22e0 4425 case DW_LANG_Fortran95:
c906108c
SS
4426 cu_language = language_fortran;
4427 break;
4428 case DW_LANG_Mips_Assembler:
4429 cu_language = language_asm;
4430 break;
bebd888e
PB
4431 case DW_LANG_Java:
4432 cu_language = language_java;
4433 break;
c906108c 4434 case DW_LANG_Ada83:
8aaf0b47 4435 case DW_LANG_Ada95:
c906108c
SS
4436 case DW_LANG_Cobol74:
4437 case DW_LANG_Cobol85:
4438 case DW_LANG_Pascal83:
4439 case DW_LANG_Modula2:
4440 default:
4441 cu_language = language_unknown;
4442 break;
4443 }
4444 cu_language_defn = language_def (cu_language);
4445}
4446
4447/* Return the named attribute or NULL if not there. */
4448
4449static struct attribute *
fba45db2 4450dwarf_attr (struct die_info *die, unsigned int name)
c906108c
SS
4451{
4452 unsigned int i;
4453 struct attribute *spec = NULL;
4454
4455 for (i = 0; i < die->num_attrs; ++i)
4456 {
4457 if (die->attrs[i].name == name)
4458 {
4459 return &die->attrs[i];
4460 }
4461 if (die->attrs[i].name == DW_AT_specification
4462 || die->attrs[i].name == DW_AT_abstract_origin)
4463 spec = &die->attrs[i];
4464 }
4465 if (spec)
4466 {
4467 struct die_info *ref_die =
c5aa993b 4468 follow_die_ref (dwarf2_get_ref_die_offset (spec));
c906108c
SS
4469
4470 if (ref_die)
4471 return dwarf_attr (ref_die, name);
4472 }
c5aa993b 4473
c906108c
SS
4474 return NULL;
4475}
4476
3ca72b44
AC
4477static int
4478die_is_declaration (struct die_info *die)
4479{
4480 return (dwarf_attr (die, DW_AT_declaration)
4481 && ! dwarf_attr (die, DW_AT_specification));
4482}
4483
c906108c 4484
debd256d
JB
4485/* Free the line_header structure *LH, and any arrays and strings it
4486 refers to. */
4487static void
4488free_line_header (struct line_header *lh)
4489{
4490 if (lh->standard_opcode_lengths)
a8bc7b56 4491 xfree (lh->standard_opcode_lengths);
debd256d
JB
4492
4493 /* Remember that all the lh->file_names[i].name pointers are
4494 pointers into debug_line_buffer, and don't need to be freed. */
4495 if (lh->file_names)
a8bc7b56 4496 xfree (lh->file_names);
debd256d
JB
4497
4498 /* Similarly for the include directory names. */
4499 if (lh->include_dirs)
a8bc7b56 4500 xfree (lh->include_dirs);
debd256d 4501
a8bc7b56 4502 xfree (lh);
debd256d
JB
4503}
4504
4505
4506/* Add an entry to LH's include directory table. */
4507static void
4508add_include_dir (struct line_header *lh, char *include_dir)
c906108c 4509{
debd256d
JB
4510 /* Grow the array if necessary. */
4511 if (lh->include_dirs_size == 0)
c5aa993b 4512 {
debd256d
JB
4513 lh->include_dirs_size = 1; /* for testing */
4514 lh->include_dirs = xmalloc (lh->include_dirs_size
4515 * sizeof (*lh->include_dirs));
4516 }
4517 else if (lh->num_include_dirs >= lh->include_dirs_size)
4518 {
4519 lh->include_dirs_size *= 2;
4520 lh->include_dirs = xrealloc (lh->include_dirs,
4521 (lh->include_dirs_size
4522 * sizeof (*lh->include_dirs)));
c5aa993b 4523 }
c906108c 4524
debd256d
JB
4525 lh->include_dirs[lh->num_include_dirs++] = include_dir;
4526}
4527
4528
4529/* Add an entry to LH's file name table. */
4530static void
4531add_file_name (struct line_header *lh,
4532 char *name,
4533 unsigned int dir_index,
4534 unsigned int mod_time,
4535 unsigned int length)
4536{
4537 struct file_entry *fe;
4538
4539 /* Grow the array if necessary. */
4540 if (lh->file_names_size == 0)
4541 {
4542 lh->file_names_size = 1; /* for testing */
4543 lh->file_names = xmalloc (lh->file_names_size
4544 * sizeof (*lh->file_names));
4545 }
4546 else if (lh->num_file_names >= lh->file_names_size)
4547 {
4548 lh->file_names_size *= 2;
4549 lh->file_names = xrealloc (lh->file_names,
4550 (lh->file_names_size
4551 * sizeof (*lh->file_names)));
4552 }
4553
4554 fe = &lh->file_names[lh->num_file_names++];
4555 fe->name = name;
4556 fe->dir_index = dir_index;
4557 fe->mod_time = mod_time;
4558 fe->length = length;
4559}
4560
4561
4562/* Read the statement program header starting at OFFSET in
4563 dwarf_line_buffer, according to the endianness of ABFD. Return a
4564 pointer to a struct line_header, allocated using xmalloc.
4565
4566 NOTE: the strings in the include directory and file name tables of
4567 the returned object point into debug_line_buffer, and must not be
4568 freed. */
4569static struct line_header *
4570dwarf_decode_line_header (unsigned int offset, bfd *abfd,
4571 const struct comp_unit_head *cu_header)
4572{
4573 struct cleanup *back_to;
4574 struct line_header *lh;
4575 char *line_ptr;
4576 int bytes_read;
4577 int i;
4578 char *cur_dir, *cur_file;
4579
4580 if (dwarf_line_buffer == NULL)
4581 {
4d3c2250 4582 complaint (&symfile_complaints, "missing .debug_line section");
debd256d
JB
4583 return 0;
4584 }
4585
4586 /* Make sure that at least there's room for the total_length field. That
4587 could be 12 bytes long, but we're just going to fudge that. */
4588 if (offset + 4 >= dwarf_line_size)
4589 {
4d3c2250 4590 dwarf2_statement_list_fits_in_line_number_section_complaint ();
debd256d
JB
4591 return 0;
4592 }
4593
4594 lh = xmalloc (sizeof (*lh));
4595 memset (lh, 0, sizeof (*lh));
4596 back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
4597 (void *) lh);
4598
4599 line_ptr = dwarf_line_buffer + offset;
4600
4601 /* read in the header */
4602 lh->total_length = read_initial_length (abfd, line_ptr, NULL, &bytes_read);
4603 line_ptr += bytes_read;
4604 if (line_ptr + lh->total_length > dwarf_line_buffer + dwarf_line_size)
4605 {
4d3c2250 4606 dwarf2_statement_list_fits_in_line_number_section_complaint ();
debd256d
JB
4607 return 0;
4608 }
4609 lh->statement_program_end = line_ptr + lh->total_length;
4610 lh->version = read_2_bytes (abfd, line_ptr);
4611 line_ptr += 2;
4612 lh->header_length = read_offset (abfd, line_ptr, cu_header, &bytes_read);
4613 line_ptr += bytes_read;
4614 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
4615 line_ptr += 1;
4616 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
4617 line_ptr += 1;
4618 lh->line_base = read_1_signed_byte (abfd, line_ptr);
4619 line_ptr += 1;
4620 lh->line_range = read_1_byte (abfd, line_ptr);
4621 line_ptr += 1;
4622 lh->opcode_base = read_1_byte (abfd, line_ptr);
4623 line_ptr += 1;
4624 lh->standard_opcode_lengths
4625 = (unsigned char *) xmalloc (lh->opcode_base * sizeof (unsigned char));
4626
4627 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
4628 for (i = 1; i < lh->opcode_base; ++i)
4629 {
4630 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
4631 line_ptr += 1;
4632 }
4633
4634 /* Read directory table */
4635 while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL)
4636 {
4637 line_ptr += bytes_read;
4638 add_include_dir (lh, cur_dir);
4639 }
4640 line_ptr += bytes_read;
4641
4642 /* Read file name table */
4643 while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL)
4644 {
4645 unsigned int dir_index, mod_time, length;
4646
4647 line_ptr += bytes_read;
4648 dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
4649 line_ptr += bytes_read;
4650 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
4651 line_ptr += bytes_read;
4652 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
4653 line_ptr += bytes_read;
4654
4655 add_file_name (lh, cur_file, dir_index, mod_time, length);
4656 }
4657 line_ptr += bytes_read;
4658 lh->statement_program_start = line_ptr;
4659
4660 if (line_ptr > dwarf_line_buffer + dwarf_line_size)
4d3c2250
KB
4661 complaint (&symfile_complaints,
4662 "line number info header doesn't fit in `.debug_line' section");
debd256d
JB
4663
4664 discard_cleanups (back_to);
4665 return lh;
4666}
c906108c 4667
5fb290d7
DJ
4668/* This function exists to work around a bug in certain compilers
4669 (particularly GCC 2.95), in which the first line number marker of a
4670 function does not show up until after the prologue, right before
4671 the second line number marker. This function shifts ADDRESS down
4672 to the beginning of the function if necessary, and is called on
4673 addresses passed to record_line. */
4674
4675static CORE_ADDR
4676check_cu_functions (CORE_ADDR address)
4677{
4678 struct function_range *fn;
4679
4680 /* Find the function_range containing address. */
4681 if (!cu_first_fn)
4682 return address;
4683
4684 if (!cu_cached_fn)
4685 cu_cached_fn = cu_first_fn;
4686
4687 fn = cu_cached_fn;
4688 while (fn)
4689 if (fn->lowpc <= address && fn->highpc > address)
4690 goto found;
4691 else
4692 fn = fn->next;
4693
4694 fn = cu_first_fn;
4695 while (fn && fn != cu_cached_fn)
4696 if (fn->lowpc <= address && fn->highpc > address)
4697 goto found;
4698 else
4699 fn = fn->next;
4700
4701 return address;
4702
4703 found:
4704 if (fn->seen_line)
4705 return address;
4706 if (address != fn->lowpc)
4d3c2250
KB
4707 complaint (&symfile_complaints,
4708 "misplaced first line number at 0x%lx for '%s'",
4709 (unsigned long) address, fn->name);
5fb290d7
DJ
4710 fn->seen_line = 1;
4711 return fn->lowpc;
4712}
4713
debd256d
JB
4714/* Decode the line number information for the compilation unit whose
4715 line number info is at OFFSET in the .debug_line section.
4716 The compilation directory of the file is passed in COMP_DIR. */
4717
c906108c 4718static void
debd256d 4719dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd,
107d2387 4720 const struct comp_unit_head *cu_header)
c906108c
SS
4721{
4722 char *line_ptr;
4723 char *line_end;
c906108c 4724 unsigned int i, bytes_read;
debd256d 4725 char *cur_dir;
c906108c
SS
4726 unsigned char op_code, extended_op, adj_opcode;
4727
debd256d
JB
4728 line_ptr = lh->statement_program_start;
4729 line_end = lh->statement_program_end;
c906108c
SS
4730
4731 /* Read the statement sequences until there's nothing left. */
4732 while (line_ptr < line_end)
4733 {
4734 /* state machine registers */
4735 CORE_ADDR address = 0;
4736 unsigned int file = 1;
4737 unsigned int line = 1;
4738 unsigned int column = 0;
debd256d 4739 int is_stmt = lh->default_is_stmt;
c906108c
SS
4740 int basic_block = 0;
4741 int end_sequence = 0;
4742
4743 /* Start a subfile for the current file of the state machine. */
debd256d 4744 if (lh->num_file_names >= file)
c906108c 4745 {
debd256d
JB
4746 /* lh->include_dirs and lh->file_names are 0-based, but the
4747 directory and file name numbers in the statement program
4748 are 1-based. */
4749 struct file_entry *fe = &lh->file_names[file - 1];
4750 char *dir;
4751 if (fe->dir_index)
4752 dir = lh->include_dirs[fe->dir_index - 1];
4753 else
4754 dir = comp_dir;
4755 dwarf2_start_subfile (fe->name, dir);
c906108c
SS
4756 }
4757
4758 /* Decode the table. */
c5aa993b 4759 while (!end_sequence)
c906108c
SS
4760 {
4761 op_code = read_1_byte (abfd, line_ptr);
4762 line_ptr += 1;
9aa1fe7e 4763
debd256d 4764 if (op_code >= lh->opcode_base)
9aa1fe7e 4765 { /* Special operand. */
debd256d
JB
4766 adj_opcode = op_code - lh->opcode_base;
4767 address += (adj_opcode / lh->line_range)
4768 * lh->minimum_instruction_length;
4769 line += lh->line_base + (adj_opcode % lh->line_range);
9aa1fe7e 4770 /* append row to matrix using current values */
5fb290d7 4771 address = check_cu_functions (address);
9aa1fe7e
GK
4772 record_line (current_subfile, line, address);
4773 basic_block = 1;
4774 }
4775 else switch (op_code)
c906108c
SS
4776 {
4777 case DW_LNS_extended_op:
4778 line_ptr += 1; /* ignore length */
4779 extended_op = read_1_byte (abfd, line_ptr);
4780 line_ptr += 1;
4781 switch (extended_op)
4782 {
4783 case DW_LNE_end_sequence:
4784 end_sequence = 1;
5fb290d7 4785 record_line (current_subfile, 0, address);
c906108c
SS
4786 break;
4787 case DW_LNE_set_address:
107d2387
AC
4788 address = read_address (abfd, line_ptr, cu_header, &bytes_read);
4789 line_ptr += bytes_read;
4790 address += baseaddr;
c906108c
SS
4791 break;
4792 case DW_LNE_define_file:
debd256d
JB
4793 {
4794 char *cur_file;
4795 unsigned int dir_index, mod_time, length;
4796
4797 cur_file = read_string (abfd, line_ptr, &bytes_read);
4798 line_ptr += bytes_read;
4799 dir_index =
4800 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
4801 line_ptr += bytes_read;
4802 mod_time =
4803 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
4804 line_ptr += bytes_read;
4805 length =
4806 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
4807 line_ptr += bytes_read;
4808 add_file_name (lh, cur_file, dir_index, mod_time, length);
4809 }
c906108c
SS
4810 break;
4811 default:
4d3c2250
KB
4812 complaint (&symfile_complaints,
4813 "mangled .debug_line section");
debd256d 4814 return;
c906108c
SS
4815 }
4816 break;
4817 case DW_LNS_copy:
5fb290d7 4818 address = check_cu_functions (address);
c906108c
SS
4819 record_line (current_subfile, line, address);
4820 basic_block = 0;
4821 break;
4822 case DW_LNS_advance_pc:
debd256d 4823 address += lh->minimum_instruction_length
c906108c
SS
4824 * read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
4825 line_ptr += bytes_read;
4826 break;
4827 case DW_LNS_advance_line:
4828 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
4829 line_ptr += bytes_read;
4830 break;
4831 case DW_LNS_set_file:
debd256d
JB
4832 {
4833 /* lh->include_dirs and lh->file_names are 0-based,
4834 but the directory and file name numbers in the
4835 statement program are 1-based. */
4836 struct file_entry *fe;
4837 char *dir;
4838 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
4839 line_ptr += bytes_read;
4840 fe = &lh->file_names[file - 1];
4841 if (fe->dir_index)
4842 dir = lh->include_dirs[fe->dir_index - 1];
4843 else
4844 dir = comp_dir;
4845 dwarf2_start_subfile (fe->name, dir);
4846 }
c906108c
SS
4847 break;
4848 case DW_LNS_set_column:
4849 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
4850 line_ptr += bytes_read;
4851 break;
4852 case DW_LNS_negate_stmt:
4853 is_stmt = (!is_stmt);
4854 break;
4855 case DW_LNS_set_basic_block:
4856 basic_block = 1;
4857 break;
c2c6d25f
JM
4858 /* Add to the address register of the state machine the
4859 address increment value corresponding to special opcode
4860 255. Ie, this value is scaled by the minimum instruction
4861 length since special opcode 255 would have scaled the
4862 the increment. */
c906108c 4863 case DW_LNS_const_add_pc:
debd256d
JB
4864 address += (lh->minimum_instruction_length
4865 * ((255 - lh->opcode_base) / lh->line_range));
c906108c
SS
4866 break;
4867 case DW_LNS_fixed_advance_pc:
4868 address += read_2_bytes (abfd, line_ptr);
4869 line_ptr += 2;
4870 break;
9aa1fe7e
GK
4871 default:
4872 { /* Unknown standard opcode, ignore it. */
4873 int i;
debd256d 4874 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
9aa1fe7e
GK
4875 {
4876 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
4877 line_ptr += bytes_read;
4878 }
4879 }
c906108c
SS
4880 }
4881 }
4882 }
c906108c
SS
4883}
4884
4885/* Start a subfile for DWARF. FILENAME is the name of the file and
4886 DIRNAME the name of the source directory which contains FILENAME
4887 or NULL if not known.
4888 This routine tries to keep line numbers from identical absolute and
4889 relative file names in a common subfile.
4890
4891 Using the `list' example from the GDB testsuite, which resides in
4892 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
4893 of /srcdir/list0.c yields the following debugging information for list0.c:
4894
c5aa993b
JM
4895 DW_AT_name: /srcdir/list0.c
4896 DW_AT_comp_dir: /compdir
357e46e7 4897 files.files[0].name: list0.h
c5aa993b 4898 files.files[0].dir: /srcdir
357e46e7 4899 files.files[1].name: list0.c
c5aa993b 4900 files.files[1].dir: /srcdir
c906108c
SS
4901
4902 The line number information for list0.c has to end up in a single
4903 subfile, so that `break /srcdir/list0.c:1' works as expected. */
4904
4905static void
fba45db2 4906dwarf2_start_subfile (char *filename, char *dirname)
c906108c
SS
4907{
4908 /* If the filename isn't absolute, try to match an existing subfile
4909 with the full pathname. */
4910
d5166ae1 4911 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
c906108c
SS
4912 {
4913 struct subfile *subfile;
4914 char *fullname = concat (dirname, "/", filename, NULL);
4915
4916 for (subfile = subfiles; subfile; subfile = subfile->next)
4917 {
d5166ae1 4918 if (FILENAME_CMP (subfile->name, fullname) == 0)
c906108c
SS
4919 {
4920 current_subfile = subfile;
b8c9b27d 4921 xfree (fullname);
c906108c
SS
4922 return;
4923 }
4924 }
b8c9b27d 4925 xfree (fullname);
c906108c
SS
4926 }
4927 start_subfile (filename, dirname);
4928}
4929
4930/* Given a pointer to a DWARF information entry, figure out if we need
4931 to make a symbol table entry for it, and if so, create a new entry
4932 and return a pointer to it.
4933 If TYPE is NULL, determine symbol type from the die, otherwise
2df3850c 4934 used the passed type. */
c906108c
SS
4935
4936static struct symbol *
107d2387
AC
4937new_symbol (struct die_info *die, struct type *type, struct objfile *objfile,
4938 const struct comp_unit_head *cu_header)
c906108c
SS
4939{
4940 struct symbol *sym = NULL;
4941 char *name;
4942 struct attribute *attr = NULL;
4943 struct attribute *attr2 = NULL;
8e19ed76 4944 CORE_ADDR addr = 0;
c906108c
SS
4945
4946 name = dwarf2_linkage_name (die);
4947 if (name)
4948 {
4949 sym = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
4950 sizeof (struct symbol));
4951 OBJSTAT (objfile, n_syms++);
4952 memset (sym, 0, sizeof (struct symbol));
4953 SYMBOL_NAME (sym) = obsavestring (name, strlen (name),
4954 &objfile->symbol_obstack);
4955
4956 /* Default assumptions.
c5aa993b 4957 Use the passed type or decode it from the die. */
c906108c
SS
4958 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
4959 SYMBOL_CLASS (sym) = LOC_STATIC;
4960 if (type != NULL)
4961 SYMBOL_TYPE (sym) = type;
4962 else
107d2387 4963 SYMBOL_TYPE (sym) = die_type (die, objfile, cu_header);
c906108c
SS
4964 attr = dwarf_attr (die, DW_AT_decl_line);
4965 if (attr)
4966 {
4967 SYMBOL_LINE (sym) = DW_UNSND (attr);
4968 }
4969
4970 /* If this symbol is from a C++ compilation, then attempt to
4971 cache the demangled form for future reference. This is a
4972 typical time versus space tradeoff, that was decided in favor
4973 of time because it sped up C++ symbol lookups by a factor of
4974 about 20. */
4975
4976 SYMBOL_LANGUAGE (sym) = cu_language;
4977 SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
4978 switch (die->tag)
4979 {
4980 case DW_TAG_label:
4981 attr = dwarf_attr (die, DW_AT_low_pc);
4982 if (attr)
4983 {
4984 SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr;
4985 }
4986 SYMBOL_CLASS (sym) = LOC_LABEL;
4987 break;
4988 case DW_TAG_subprogram:
4989 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
4990 finish_block. */
4991 SYMBOL_CLASS (sym) = LOC_BLOCK;
4992 attr2 = dwarf_attr (die, DW_AT_external);
4993 if (attr2 && (DW_UNSND (attr2) != 0))
4994 {
4995 add_symbol_to_list (sym, &global_symbols);
4996 }
4997 else
4998 {
4999 add_symbol_to_list (sym, list_in_scope);
5000 }
5001 break;
5002 case DW_TAG_variable:
5003 /* Compilation with minimal debug info may result in variables
5004 with missing type entries. Change the misleading `void' type
5005 to something sensible. */
5006 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
5007 SYMBOL_TYPE (sym) = init_type (TYPE_CODE_INT,
5008 TARGET_INT_BIT / HOST_CHAR_BIT, 0,
5009 "<variable, no debug info>",
5010 objfile);
5011 attr = dwarf_attr (die, DW_AT_const_value);
5012 if (attr)
5013 {
107d2387 5014 dwarf2_const_value (attr, sym, objfile, cu_header);
c906108c
SS
5015 attr2 = dwarf_attr (die, DW_AT_external);
5016 if (attr2 && (DW_UNSND (attr2) != 0))
5017 add_symbol_to_list (sym, &global_symbols);
5018 else
5019 add_symbol_to_list (sym, list_in_scope);
5020 break;
5021 }
5022 attr = dwarf_attr (die, DW_AT_location);
5023 if (attr)
5024 {
5025 attr2 = dwarf_attr (die, DW_AT_external);
5026 if (attr2 && (DW_UNSND (attr2) != 0))
5027 {
8e19ed76
PS
5028 /* Support the .debug_loc offsets */
5029 if (attr_form_is_block (attr))
5030 {
5031 SYMBOL_VALUE_ADDRESS (sym) =
5032 decode_locdesc (DW_BLOCK (attr), objfile, cu_header);
5033 }
5034 else if (attr->form == DW_FORM_data4
5035 || attr->form == DW_FORM_data8)
5036 {
4d3c2250 5037 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
5038 }
5039 else
5040 {
4d3c2250
KB
5041 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
5042 "external variable");
8e19ed76 5043 }
c906108c 5044 add_symbol_to_list (sym, &global_symbols);
9d774e44
EZ
5045 if (is_thread_local)
5046 {
5047 /* SYMBOL_VALUE_ADDRESS contains at this point the
5048 offset of the variable within the thread local
5049 storage. */
5050 SYMBOL_CLASS (sym) = LOC_THREAD_LOCAL_STATIC;
5051 SYMBOL_OBJFILE (sym) = objfile;
5052 }
c906108c 5053
c5aa993b 5054 /* In shared libraries the address of the variable
c906108c
SS
5055 in the location descriptor might still be relocatable,
5056 so its value could be zero.
5057 Enter the symbol as a LOC_UNRESOLVED symbol, if its
5058 value is zero, the address of the variable will then
5059 be determined from the minimal symbol table whenever
5060 the variable is referenced. */
9d774e44 5061 else if (SYMBOL_VALUE_ADDRESS (sym))
c906108c 5062 {
a275699e
KB
5063 fixup_symbol_section (sym, objfile);
5064 SYMBOL_VALUE_ADDRESS (sym) +=
5065 ANOFFSET (objfile->section_offsets,
5066 SYMBOL_SECTION (sym));
c906108c
SS
5067 SYMBOL_CLASS (sym) = LOC_STATIC;
5068 }
5069 else
5070 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
5071 }
5072 else
5073 {
8e19ed76
PS
5074 /* Support the .debug_loc offsets */
5075 if (attr_form_is_block (attr))
5076 {
5077 SYMBOL_VALUE (sym) = addr =
5078 decode_locdesc (DW_BLOCK (attr), objfile, cu_header);
5079 }
5080 else if (attr->form == DW_FORM_data4
5081 || attr->form == DW_FORM_data8)
5082 {
4d3c2250 5083 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
5084 }
5085 else
5086 {
4d3c2250
KB
5087 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
5088 "external variable");
8e19ed76
PS
5089 addr = 0;
5090 }
c906108c
SS
5091 add_symbol_to_list (sym, list_in_scope);
5092 if (optimized_out)
5093 {
5094 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
5095 }
5096 else if (isreg)
5097 {
5098 SYMBOL_CLASS (sym) = LOC_REGISTER;
88496bb5
MS
5099 SYMBOL_VALUE (sym) =
5100 DWARF2_REG_TO_REGNUM (SYMBOL_VALUE (sym));
c906108c
SS
5101 }
5102 else if (offreg)
5103 {
5104 SYMBOL_CLASS (sym) = LOC_BASEREG;
88496bb5 5105 SYMBOL_BASEREG (sym) = DWARF2_REG_TO_REGNUM (basereg);
c906108c
SS
5106 }
5107 else if (islocal)
5108 {
5109 SYMBOL_CLASS (sym) = LOC_LOCAL;
5110 }
9d774e44
EZ
5111 else if (is_thread_local)
5112 {
5113 SYMBOL_CLASS (sym) = LOC_THREAD_LOCAL_STATIC;
5114 SYMBOL_OBJFILE (sym) = objfile;
5115 }
c906108c
SS
5116 else
5117 {
a275699e
KB
5118 fixup_symbol_section (sym, objfile);
5119 SYMBOL_VALUE_ADDRESS (sym) =
5120 addr + ANOFFSET (objfile->section_offsets,
5121 SYMBOL_SECTION (sym));
c906108c 5122 SYMBOL_CLASS (sym) = LOC_STATIC;
c906108c
SS
5123 }
5124 }
5125 }
5126 else
5127 {
5128 /* We do not know the address of this symbol.
c5aa993b
JM
5129 If it is an external symbol and we have type information
5130 for it, enter the symbol as a LOC_UNRESOLVED symbol.
5131 The address of the variable will then be determined from
5132 the minimal symbol table whenever the variable is
5133 referenced. */
c906108c
SS
5134 attr2 = dwarf_attr (die, DW_AT_external);
5135 if (attr2 && (DW_UNSND (attr2) != 0)
5136 && dwarf_attr (die, DW_AT_type) != NULL)
5137 {
5138 SYMBOL_CLASS (sym) = LOC_UNRESOLVED;
5139 add_symbol_to_list (sym, &global_symbols);
5140 }
5141 }
5142 break;
5143 case DW_TAG_formal_parameter:
5144 attr = dwarf_attr (die, DW_AT_location);
5145 if (attr)
5146 {
107d2387
AC
5147 SYMBOL_VALUE (sym) =
5148 decode_locdesc (DW_BLOCK (attr), objfile, cu_header);
c906108c
SS
5149 if (isreg)
5150 {
5151 SYMBOL_CLASS (sym) = LOC_REGPARM;
88496bb5
MS
5152 SYMBOL_VALUE (sym) =
5153 DWARF2_REG_TO_REGNUM (SYMBOL_VALUE (sym));
c906108c
SS
5154 }
5155 else if (offreg)
5156 {
7a292a7a
SS
5157 if (isderef)
5158 {
5159 if (basereg != frame_base_reg)
4d3c2250 5160 dwarf2_complex_location_expr_complaint ();
7a292a7a
SS
5161 SYMBOL_CLASS (sym) = LOC_REF_ARG;
5162 }
5163 else
5164 {
5165 SYMBOL_CLASS (sym) = LOC_BASEREG_ARG;
88496bb5 5166 SYMBOL_BASEREG (sym) = DWARF2_REG_TO_REGNUM (basereg);
7a292a7a 5167 }
c906108c
SS
5168 }
5169 else
5170 {
5171 SYMBOL_CLASS (sym) = LOC_ARG;
5172 }
5173 }
5174 attr = dwarf_attr (die, DW_AT_const_value);
5175 if (attr)
5176 {
107d2387 5177 dwarf2_const_value (attr, sym, objfile, cu_header);
c906108c
SS
5178 }
5179 add_symbol_to_list (sym, list_in_scope);
5180 break;
5181 case DW_TAG_unspecified_parameters:
5182 /* From varargs functions; gdb doesn't seem to have any
5183 interest in this information, so just ignore it for now.
5184 (FIXME?) */
5185 break;
5186 case DW_TAG_class_type:
5187 case DW_TAG_structure_type:
5188 case DW_TAG_union_type:
5189 case DW_TAG_enumeration_type:
5190 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
5191 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
5192 add_symbol_to_list (sym, list_in_scope);
5193
5194 /* The semantics of C++ state that "struct foo { ... }" also
5195 defines a typedef for "foo". Synthesize a typedef symbol so
5196 that "ptype foo" works as expected. */
5197 if (cu_language == language_cplus)
5198 {
5199 struct symbol *typedef_sym = (struct symbol *)
c5aa993b
JM
5200 obstack_alloc (&objfile->symbol_obstack,
5201 sizeof (struct symbol));
c906108c
SS
5202 *typedef_sym = *sym;
5203 SYMBOL_NAMESPACE (typedef_sym) = VAR_NAMESPACE;
5204 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
5205 TYPE_NAME (SYMBOL_TYPE (sym)) =
5206 obsavestring (SYMBOL_NAME (sym),
5207 strlen (SYMBOL_NAME (sym)),
5208 &objfile->type_obstack);
5209 add_symbol_to_list (typedef_sym, list_in_scope);
5210 }
5211 break;
5212 case DW_TAG_typedef:
5213 case DW_TAG_base_type:
5214 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
5215 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
5216 add_symbol_to_list (sym, list_in_scope);
5217 break;
5218 case DW_TAG_enumerator:
5219 attr = dwarf_attr (die, DW_AT_const_value);
5220 if (attr)
5221 {
107d2387 5222 dwarf2_const_value (attr, sym, objfile, cu_header);
c906108c
SS
5223 }
5224 add_symbol_to_list (sym, list_in_scope);
5225 break;
5226 default:
5227 /* Not a tag we recognize. Hopefully we aren't processing
5228 trash data, but since we must specifically ignore things
5229 we don't recognize, there is nothing else we should do at
5230 this point. */
4d3c2250
KB
5231 complaint (&symfile_complaints, "unsupported tag: '%s'",
5232 dwarf_tag_name (die->tag));
c906108c
SS
5233 break;
5234 }
5235 }
5236 return (sym);
5237}
5238
5239/* Copy constant value from an attribute to a symbol. */
5240
5241static void
107d2387
AC
5242dwarf2_const_value (struct attribute *attr, struct symbol *sym,
5243 struct objfile *objfile,
5244 const struct comp_unit_head *cu_header)
c906108c
SS
5245{
5246 struct dwarf_block *blk;
5247
5248 switch (attr->form)
5249 {
5250 case DW_FORM_addr:
107d2387 5251 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != cu_header->addr_size)
4d3c2250
KB
5252 dwarf2_const_value_length_mismatch_complaint (SYMBOL_NAME (sym),
5253 cu_header->addr_size,
5254 TYPE_LENGTH (SYMBOL_TYPE
5255 (sym)));
c906108c 5256 SYMBOL_VALUE_BYTES (sym) = (char *)
107d2387
AC
5257 obstack_alloc (&objfile->symbol_obstack, cu_header->addr_size);
5258 store_address (SYMBOL_VALUE_BYTES (sym), cu_header->addr_size,
5259 DW_ADDR (attr));
c906108c
SS
5260 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
5261 break;
5262 case DW_FORM_block1:
5263 case DW_FORM_block2:
5264 case DW_FORM_block4:
5265 case DW_FORM_block:
5266 blk = DW_BLOCK (attr);
5267 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != blk->size)
4d3c2250
KB
5268 dwarf2_const_value_length_mismatch_complaint (SYMBOL_NAME (sym),
5269 blk->size,
5270 TYPE_LENGTH (SYMBOL_TYPE
5271 (sym)));
c906108c
SS
5272 SYMBOL_VALUE_BYTES (sym) = (char *)
5273 obstack_alloc (&objfile->symbol_obstack, blk->size);
5274 memcpy (SYMBOL_VALUE_BYTES (sym), blk->data, blk->size);
5275 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
5276 break;
2df3850c
JM
5277
5278 /* The DW_AT_const_value attributes are supposed to carry the
5279 symbol's value "represented as it would be on the target
5280 architecture." By the time we get here, it's already been
5281 converted to host endianness, so we just need to sign- or
5282 zero-extend it as appropriate. */
5283 case DW_FORM_data1:
5284 dwarf2_const_value_data (attr, sym, 8);
5285 break;
c906108c 5286 case DW_FORM_data2:
2df3850c
JM
5287 dwarf2_const_value_data (attr, sym, 16);
5288 break;
c906108c 5289 case DW_FORM_data4:
2df3850c
JM
5290 dwarf2_const_value_data (attr, sym, 32);
5291 break;
c906108c 5292 case DW_FORM_data8:
2df3850c
JM
5293 dwarf2_const_value_data (attr, sym, 64);
5294 break;
5295
c906108c 5296 case DW_FORM_sdata:
2df3850c
JM
5297 SYMBOL_VALUE (sym) = DW_SND (attr);
5298 SYMBOL_CLASS (sym) = LOC_CONST;
5299 break;
5300
c906108c
SS
5301 case DW_FORM_udata:
5302 SYMBOL_VALUE (sym) = DW_UNSND (attr);
5303 SYMBOL_CLASS (sym) = LOC_CONST;
5304 break;
2df3850c 5305
c906108c 5306 default:
4d3c2250
KB
5307 complaint (&symfile_complaints,
5308 "unsupported const value attribute form: '%s'",
5309 dwarf_form_name (attr->form));
c906108c
SS
5310 SYMBOL_VALUE (sym) = 0;
5311 SYMBOL_CLASS (sym) = LOC_CONST;
5312 break;
5313 }
5314}
5315
2df3850c
JM
5316
5317/* Given an attr with a DW_FORM_dataN value in host byte order, sign-
5318 or zero-extend it as appropriate for the symbol's type. */
5319static void
5320dwarf2_const_value_data (struct attribute *attr,
5321 struct symbol *sym,
5322 int bits)
5323{
5324 LONGEST l = DW_UNSND (attr);
5325
5326 if (bits < sizeof (l) * 8)
5327 {
5328 if (TYPE_UNSIGNED (SYMBOL_TYPE (sym)))
5329 l &= ((LONGEST) 1 << bits) - 1;
5330 else
bf9198f1 5331 l = (l << (sizeof (l) * 8 - bits)) >> (sizeof (l) * 8 - bits);
2df3850c
JM
5332 }
5333
5334 SYMBOL_VALUE (sym) = l;
5335 SYMBOL_CLASS (sym) = LOC_CONST;
5336}
5337
5338
c906108c
SS
5339/* Return the type of the die in question using its DW_AT_type attribute. */
5340
5341static struct type *
107d2387
AC
5342die_type (struct die_info *die, struct objfile *objfile,
5343 const struct comp_unit_head *cu_header)
c906108c
SS
5344{
5345 struct type *type;
5346 struct attribute *type_attr;
5347 struct die_info *type_die;
5348 unsigned int ref;
5349
5350 type_attr = dwarf_attr (die, DW_AT_type);
5351 if (!type_attr)
5352 {
5353 /* A missing DW_AT_type represents a void type. */
5354 return dwarf2_fundamental_type (objfile, FT_VOID);
5355 }
5356 else
5357 {
5358 ref = dwarf2_get_ref_die_offset (type_attr);
5359 type_die = follow_die_ref (ref);
5360 if (!type_die)
5361 {
659b0389
ML
5362 error ("Dwarf Error: Cannot find referent at offset %d [in module %s]",
5363 ref, objfile->name);
c906108c
SS
5364 return NULL;
5365 }
5366 }
107d2387 5367 type = tag_type_to_type (type_die, objfile, cu_header);
c906108c
SS
5368 if (!type)
5369 {
5370 dump_die (type_die);
659b0389
ML
5371 error ("Dwarf Error: Problem turning type die at offset into gdb type [in module %s]",
5372 objfile->name);
c906108c
SS
5373 }
5374 return type;
5375}
5376
5377/* Return the containing type of the die in question using its
5378 DW_AT_containing_type attribute. */
5379
5380static struct type *
107d2387
AC
5381die_containing_type (struct die_info *die, struct objfile *objfile,
5382 const struct comp_unit_head *cu_header)
c906108c
SS
5383{
5384 struct type *type = NULL;
5385 struct attribute *type_attr;
5386 struct die_info *type_die = NULL;
5387 unsigned int ref;
5388
5389 type_attr = dwarf_attr (die, DW_AT_containing_type);
5390 if (type_attr)
5391 {
5392 ref = dwarf2_get_ref_die_offset (type_attr);
5393 type_die = follow_die_ref (ref);
5394 if (!type_die)
5395 {
659b0389
ML
5396 error ("Dwarf Error: Cannot find referent at offset %d [in module %s]", ref,
5397 objfile->name);
c906108c
SS
5398 return NULL;
5399 }
107d2387 5400 type = tag_type_to_type (type_die, objfile, cu_header);
c906108c
SS
5401 }
5402 if (!type)
5403 {
5404 if (type_die)
5405 dump_die (type_die);
659b0389
ML
5406 error ("Dwarf Error: Problem turning containing type into gdb type [in module %s]",
5407 objfile->name);
c906108c
SS
5408 }
5409 return type;
5410}
5411
5412#if 0
5413static struct type *
fba45db2 5414type_at_offset (unsigned int offset, struct objfile *objfile)
c906108c
SS
5415{
5416 struct die_info *die;
5417 struct type *type;
5418
5419 die = follow_die_ref (offset);
5420 if (!die)
5421 {
5422 error ("Dwarf Error: Cannot find type referent at offset %d.", offset);
5423 return NULL;
5424 }
5425 type = tag_type_to_type (die, objfile);
5426 return type;
5427}
5428#endif
5429
5430static struct type *
107d2387
AC
5431tag_type_to_type (struct die_info *die, struct objfile *objfile,
5432 const struct comp_unit_head *cu_header)
c906108c
SS
5433{
5434 if (die->type)
5435 {
5436 return die->type;
5437 }
5438 else
5439 {
b3810801 5440 read_type_die (die, objfile, cu_header);
c906108c
SS
5441 if (!die->type)
5442 {
5443 dump_die (die);
659b0389
ML
5444 error ("Dwarf Error: Cannot find type of die [in module %s]",
5445 objfile->name);
c906108c
SS
5446 }
5447 return die->type;
5448 }
5449}
5450
5451static void
107d2387
AC
5452read_type_die (struct die_info *die, struct objfile *objfile,
5453 const struct comp_unit_head *cu_header)
c906108c
SS
5454{
5455 switch (die->tag)
5456 {
5457 case DW_TAG_class_type:
5458 case DW_TAG_structure_type:
5459 case DW_TAG_union_type:
107d2387 5460 read_structure_scope (die, objfile, cu_header);
c906108c
SS
5461 break;
5462 case DW_TAG_enumeration_type:
107d2387 5463 read_enumeration (die, objfile, cu_header);
c906108c
SS
5464 break;
5465 case DW_TAG_subprogram:
5466 case DW_TAG_subroutine_type:
107d2387 5467 read_subroutine_type (die, objfile, cu_header);
c906108c
SS
5468 break;
5469 case DW_TAG_array_type:
107d2387 5470 read_array_type (die, objfile, cu_header);
c906108c
SS
5471 break;
5472 case DW_TAG_pointer_type:
107d2387 5473 read_tag_pointer_type (die, objfile, cu_header);
c906108c
SS
5474 break;
5475 case DW_TAG_ptr_to_member_type:
107d2387 5476 read_tag_ptr_to_member_type (die, objfile, cu_header);
c906108c
SS
5477 break;
5478 case DW_TAG_reference_type:
107d2387 5479 read_tag_reference_type (die, objfile, cu_header);
c906108c
SS
5480 break;
5481 case DW_TAG_const_type:
107d2387 5482 read_tag_const_type (die, objfile, cu_header);
c906108c
SS
5483 break;
5484 case DW_TAG_volatile_type:
107d2387 5485 read_tag_volatile_type (die, objfile, cu_header);
c906108c
SS
5486 break;
5487 case DW_TAG_string_type:
5488 read_tag_string_type (die, objfile);
5489 break;
5490 case DW_TAG_typedef:
107d2387 5491 read_typedef (die, objfile, cu_header);
c906108c
SS
5492 break;
5493 case DW_TAG_base_type:
5494 read_base_type (die, objfile);
5495 break;
5496 default:
4d3c2250
KB
5497 complaint (&symfile_complaints, "unexepected tag in read_type_die: '%s'",
5498 dwarf_tag_name (die->tag));
c906108c
SS
5499 break;
5500 }
5501}
5502
5503static struct type *
fba45db2 5504dwarf_base_type (int encoding, int size, struct objfile *objfile)
c906108c
SS
5505{
5506 /* FIXME - this should not produce a new (struct type *)
5507 every time. It should cache base types. */
5508 struct type *type;
5509 switch (encoding)
5510 {
5511 case DW_ATE_address:
5512 type = dwarf2_fundamental_type (objfile, FT_VOID);
5513 return type;
5514 case DW_ATE_boolean:
5515 type = dwarf2_fundamental_type (objfile, FT_BOOLEAN);
5516 return type;
5517 case DW_ATE_complex_float:
5518 if (size == 16)
5519 {
5520 type = dwarf2_fundamental_type (objfile, FT_DBL_PREC_COMPLEX);
5521 }
5522 else
5523 {
5524 type = dwarf2_fundamental_type (objfile, FT_COMPLEX);
5525 }
5526 return type;
5527 case DW_ATE_float:
5528 if (size == 8)
5529 {
5530 type = dwarf2_fundamental_type (objfile, FT_DBL_PREC_FLOAT);
5531 }
5532 else
5533 {
5534 type = dwarf2_fundamental_type (objfile, FT_FLOAT);
5535 }
5536 return type;
5537 case DW_ATE_signed:
5538 switch (size)
5539 {
5540 case 1:
5541 type = dwarf2_fundamental_type (objfile, FT_SIGNED_CHAR);
5542 break;
5543 case 2:
5544 type = dwarf2_fundamental_type (objfile, FT_SIGNED_SHORT);
5545 break;
5546 default:
5547 case 4:
5548 type = dwarf2_fundamental_type (objfile, FT_SIGNED_INTEGER);
5549 break;
5550 }
5551 return type;
5552 case DW_ATE_signed_char:
5553 type = dwarf2_fundamental_type (objfile, FT_SIGNED_CHAR);
5554 return type;
5555 case DW_ATE_unsigned:
5556 switch (size)
5557 {
5558 case 1:
5559 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_CHAR);
5560 break;
5561 case 2:
5562 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_SHORT);
5563 break;
5564 default:
5565 case 4:
5566 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_INTEGER);
5567 break;
5568 }
5569 return type;
5570 case DW_ATE_unsigned_char:
5571 type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_CHAR);
5572 return type;
5573 default:
5574 type = dwarf2_fundamental_type (objfile, FT_SIGNED_INTEGER);
5575 return type;
5576 }
5577}
5578
5579#if 0
5580struct die_info *
fba45db2 5581copy_die (struct die_info *old_die)
c906108c
SS
5582{
5583 struct die_info *new_die;
5584 int i, num_attrs;
5585
5586 new_die = (struct die_info *) xmalloc (sizeof (struct die_info));
5587 memset (new_die, 0, sizeof (struct die_info));
5588
5589 new_die->tag = old_die->tag;
5590 new_die->has_children = old_die->has_children;
5591 new_die->abbrev = old_die->abbrev;
5592 new_die->offset = old_die->offset;
5593 new_die->type = NULL;
5594
5595 num_attrs = old_die->num_attrs;
5596 new_die->num_attrs = num_attrs;
5597 new_die->attrs = (struct attribute *)
5598 xmalloc (num_attrs * sizeof (struct attribute));
5599
5600 for (i = 0; i < old_die->num_attrs; ++i)
5601 {
5602 new_die->attrs[i].name = old_die->attrs[i].name;
5603 new_die->attrs[i].form = old_die->attrs[i].form;
5604 new_die->attrs[i].u.addr = old_die->attrs[i].u.addr;
5605 }
5606
5607 new_die->next = NULL;
5608 return new_die;
5609}
5610#endif
5611
5612/* Return sibling of die, NULL if no sibling. */
5613
f9aca02d 5614static struct die_info *
fba45db2 5615sibling_die (struct die_info *die)
c906108c
SS
5616{
5617 int nesting_level = 0;
5618
5619 if (!die->has_children)
5620 {
5621 if (die->next && (die->next->tag == 0))
5622 {
5623 return NULL;
5624 }
5625 else
5626 {
5627 return die->next;
5628 }
5629 }
5630 else
5631 {
5632 do
5633 {
5634 if (die->has_children)
5635 {
5636 nesting_level++;
5637 }
5638 if (die->tag == 0)
5639 {
5640 nesting_level--;
5641 }
5642 die = die->next;
5643 }
5644 while (nesting_level);
5645 if (die && (die->tag == 0))
5646 {
5647 return NULL;
5648 }
5649 else
5650 {
5651 return die;
5652 }
5653 }
5654}
5655
5656/* Get linkage name of a die, return NULL if not found. */
5657
5658static char *
fba45db2 5659dwarf2_linkage_name (struct die_info *die)
c906108c
SS
5660{
5661 struct attribute *attr;
5662
5663 attr = dwarf_attr (die, DW_AT_MIPS_linkage_name);
5664 if (attr && DW_STRING (attr))
5665 return DW_STRING (attr);
5666 attr = dwarf_attr (die, DW_AT_name);
5667 if (attr && DW_STRING (attr))
5668 return DW_STRING (attr);
5669 return NULL;
5670}
5671
5672/* Convert a DIE tag into its string name. */
5673
5674static char *
fba45db2 5675dwarf_tag_name (register unsigned tag)
c906108c
SS
5676{
5677 switch (tag)
5678 {
5679 case DW_TAG_padding:
5680 return "DW_TAG_padding";
5681 case DW_TAG_array_type:
5682 return "DW_TAG_array_type";
5683 case DW_TAG_class_type:
5684 return "DW_TAG_class_type";
5685 case DW_TAG_entry_point:
5686 return "DW_TAG_entry_point";
5687 case DW_TAG_enumeration_type:
5688 return "DW_TAG_enumeration_type";
5689 case DW_TAG_formal_parameter:
5690 return "DW_TAG_formal_parameter";
5691 case DW_TAG_imported_declaration:
5692 return "DW_TAG_imported_declaration";
5693 case DW_TAG_label:
5694 return "DW_TAG_label";
5695 case DW_TAG_lexical_block:
5696 return "DW_TAG_lexical_block";
5697 case DW_TAG_member:
5698 return "DW_TAG_member";
5699 case DW_TAG_pointer_type:
5700 return "DW_TAG_pointer_type";
5701 case DW_TAG_reference_type:
5702 return "DW_TAG_reference_type";
5703 case DW_TAG_compile_unit:
5704 return "DW_TAG_compile_unit";
5705 case DW_TAG_string_type:
5706 return "DW_TAG_string_type";
5707 case DW_TAG_structure_type:
5708 return "DW_TAG_structure_type";
5709 case DW_TAG_subroutine_type:
5710 return "DW_TAG_subroutine_type";
5711 case DW_TAG_typedef:
5712 return "DW_TAG_typedef";
5713 case DW_TAG_union_type:
5714 return "DW_TAG_union_type";
5715 case DW_TAG_unspecified_parameters:
5716 return "DW_TAG_unspecified_parameters";
5717 case DW_TAG_variant:
5718 return "DW_TAG_variant";
5719 case DW_TAG_common_block:
5720 return "DW_TAG_common_block";
5721 case DW_TAG_common_inclusion:
5722 return "DW_TAG_common_inclusion";
5723 case DW_TAG_inheritance:
5724 return "DW_TAG_inheritance";
5725 case DW_TAG_inlined_subroutine:
5726 return "DW_TAG_inlined_subroutine";
5727 case DW_TAG_module:
5728 return "DW_TAG_module";
5729 case DW_TAG_ptr_to_member_type:
5730 return "DW_TAG_ptr_to_member_type";
5731 case DW_TAG_set_type:
5732 return "DW_TAG_set_type";
5733 case DW_TAG_subrange_type:
5734 return "DW_TAG_subrange_type";
5735 case DW_TAG_with_stmt:
5736 return "DW_TAG_with_stmt";
5737 case DW_TAG_access_declaration:
5738 return "DW_TAG_access_declaration";
5739 case DW_TAG_base_type:
5740 return "DW_TAG_base_type";
5741 case DW_TAG_catch_block:
5742 return "DW_TAG_catch_block";
5743 case DW_TAG_const_type:
5744 return "DW_TAG_const_type";
5745 case DW_TAG_constant:
5746 return "DW_TAG_constant";
5747 case DW_TAG_enumerator:
5748 return "DW_TAG_enumerator";
5749 case DW_TAG_file_type:
5750 return "DW_TAG_file_type";
5751 case DW_TAG_friend:
5752 return "DW_TAG_friend";
5753 case DW_TAG_namelist:
5754 return "DW_TAG_namelist";
5755 case DW_TAG_namelist_item:
5756 return "DW_TAG_namelist_item";
5757 case DW_TAG_packed_type:
5758 return "DW_TAG_packed_type";
5759 case DW_TAG_subprogram:
5760 return "DW_TAG_subprogram";
5761 case DW_TAG_template_type_param:
5762 return "DW_TAG_template_type_param";
5763 case DW_TAG_template_value_param:
5764 return "DW_TAG_template_value_param";
5765 case DW_TAG_thrown_type:
5766 return "DW_TAG_thrown_type";
5767 case DW_TAG_try_block:
5768 return "DW_TAG_try_block";
5769 case DW_TAG_variant_part:
5770 return "DW_TAG_variant_part";
5771 case DW_TAG_variable:
5772 return "DW_TAG_variable";
5773 case DW_TAG_volatile_type:
5774 return "DW_TAG_volatile_type";
d9fa45fe
DC
5775 case DW_TAG_dwarf_procedure:
5776 return "DW_TAG_dwarf_procedure";
5777 case DW_TAG_restrict_type:
5778 return "DW_TAG_restrict_type";
5779 case DW_TAG_interface_type:
5780 return "DW_TAG_interface_type";
5781 case DW_TAG_namespace:
5782 return "DW_TAG_namespace";
5783 case DW_TAG_imported_module:
5784 return "DW_TAG_imported_module";
5785 case DW_TAG_unspecified_type:
5786 return "DW_TAG_unspecified_type";
5787 case DW_TAG_partial_unit:
5788 return "DW_TAG_partial_unit";
5789 case DW_TAG_imported_unit:
5790 return "DW_TAG_imported_unit";
c906108c
SS
5791 case DW_TAG_MIPS_loop:
5792 return "DW_TAG_MIPS_loop";
5793 case DW_TAG_format_label:
5794 return "DW_TAG_format_label";
5795 case DW_TAG_function_template:
5796 return "DW_TAG_function_template";
5797 case DW_TAG_class_template:
5798 return "DW_TAG_class_template";
5799 default:
5800 return "DW_TAG_<unknown>";
5801 }
5802}
5803
5804/* Convert a DWARF attribute code into its string name. */
5805
5806static char *
fba45db2 5807dwarf_attr_name (register unsigned attr)
c906108c
SS
5808{
5809 switch (attr)
5810 {
5811 case DW_AT_sibling:
5812 return "DW_AT_sibling";
5813 case DW_AT_location:
5814 return "DW_AT_location";
5815 case DW_AT_name:
5816 return "DW_AT_name";
5817 case DW_AT_ordering:
5818 return "DW_AT_ordering";
5819 case DW_AT_subscr_data:
5820 return "DW_AT_subscr_data";
5821 case DW_AT_byte_size:
5822 return "DW_AT_byte_size";
5823 case DW_AT_bit_offset:
5824 return "DW_AT_bit_offset";
5825 case DW_AT_bit_size:
5826 return "DW_AT_bit_size";
5827 case DW_AT_element_list:
5828 return "DW_AT_element_list";
5829 case DW_AT_stmt_list:
5830 return "DW_AT_stmt_list";
5831 case DW_AT_low_pc:
5832 return "DW_AT_low_pc";
5833 case DW_AT_high_pc:
5834 return "DW_AT_high_pc";
5835 case DW_AT_language:
5836 return "DW_AT_language";
5837 case DW_AT_member:
5838 return "DW_AT_member";
5839 case DW_AT_discr:
5840 return "DW_AT_discr";
5841 case DW_AT_discr_value:
5842 return "DW_AT_discr_value";
5843 case DW_AT_visibility:
5844 return "DW_AT_visibility";
5845 case DW_AT_import:
5846 return "DW_AT_import";
5847 case DW_AT_string_length:
5848 return "DW_AT_string_length";
5849 case DW_AT_common_reference:
5850 return "DW_AT_common_reference";
5851 case DW_AT_comp_dir:
5852 return "DW_AT_comp_dir";
5853 case DW_AT_const_value:
5854 return "DW_AT_const_value";
5855 case DW_AT_containing_type:
5856 return "DW_AT_containing_type";
5857 case DW_AT_default_value:
5858 return "DW_AT_default_value";
5859 case DW_AT_inline:
5860 return "DW_AT_inline";
5861 case DW_AT_is_optional:
5862 return "DW_AT_is_optional";
5863 case DW_AT_lower_bound:
5864 return "DW_AT_lower_bound";
5865 case DW_AT_producer:
5866 return "DW_AT_producer";
5867 case DW_AT_prototyped:
5868 return "DW_AT_prototyped";
5869 case DW_AT_return_addr:
5870 return "DW_AT_return_addr";
5871 case DW_AT_start_scope:
5872 return "DW_AT_start_scope";
5873 case DW_AT_stride_size:
5874 return "DW_AT_stride_size";
5875 case DW_AT_upper_bound:
5876 return "DW_AT_upper_bound";
5877 case DW_AT_abstract_origin:
5878 return "DW_AT_abstract_origin";
5879 case DW_AT_accessibility:
5880 return "DW_AT_accessibility";
5881 case DW_AT_address_class:
5882 return "DW_AT_address_class";
5883 case DW_AT_artificial:
5884 return "DW_AT_artificial";
5885 case DW_AT_base_types:
5886 return "DW_AT_base_types";
5887 case DW_AT_calling_convention:
5888 return "DW_AT_calling_convention";
5889 case DW_AT_count:
5890 return "DW_AT_count";
5891 case DW_AT_data_member_location:
5892 return "DW_AT_data_member_location";
5893 case DW_AT_decl_column:
5894 return "DW_AT_decl_column";
5895 case DW_AT_decl_file:
5896 return "DW_AT_decl_file";
5897 case DW_AT_decl_line:
5898 return "DW_AT_decl_line";
5899 case DW_AT_declaration:
5900 return "DW_AT_declaration";
5901 case DW_AT_discr_list:
5902 return "DW_AT_discr_list";
5903 case DW_AT_encoding:
5904 return "DW_AT_encoding";
5905 case DW_AT_external:
5906 return "DW_AT_external";
5907 case DW_AT_frame_base:
5908 return "DW_AT_frame_base";
5909 case DW_AT_friend:
5910 return "DW_AT_friend";
5911 case DW_AT_identifier_case:
5912 return "DW_AT_identifier_case";
5913 case DW_AT_macro_info:
5914 return "DW_AT_macro_info";
5915 case DW_AT_namelist_items:
5916 return "DW_AT_namelist_items";
5917 case DW_AT_priority:
5918 return "DW_AT_priority";
5919 case DW_AT_segment:
5920 return "DW_AT_segment";
5921 case DW_AT_specification:
5922 return "DW_AT_specification";
5923 case DW_AT_static_link:
5924 return "DW_AT_static_link";
5925 case DW_AT_type:
5926 return "DW_AT_type";
5927 case DW_AT_use_location:
5928 return "DW_AT_use_location";
5929 case DW_AT_variable_parameter:
5930 return "DW_AT_variable_parameter";
5931 case DW_AT_virtuality:
5932 return "DW_AT_virtuality";
5933 case DW_AT_vtable_elem_location:
5934 return "DW_AT_vtable_elem_location";
d9fa45fe
DC
5935 case DW_AT_allocated:
5936 return "DW_AT_allocated";
5937 case DW_AT_associated:
5938 return "DW_AT_associated";
5939 case DW_AT_data_location:
5940 return "DW_AT_data_location";
5941 case DW_AT_stride:
5942 return "DW_AT_stride";
5943 case DW_AT_entry_pc:
5944 return "DW_AT_entry_pc";
5945 case DW_AT_use_UTF8:
5946 return "DW_AT_use_UTF8";
5947 case DW_AT_extension:
5948 return "DW_AT_extension";
5949 case DW_AT_ranges:
5950 return "DW_AT_ranges";
5951 case DW_AT_trampoline:
5952 return "DW_AT_trampoline";
5953 case DW_AT_call_column:
5954 return "DW_AT_call_column";
5955 case DW_AT_call_file:
5956 return "DW_AT_call_file";
5957 case DW_AT_call_line:
5958 return "DW_AT_call_line";
c906108c
SS
5959#ifdef MIPS
5960 case DW_AT_MIPS_fde:
5961 return "DW_AT_MIPS_fde";
5962 case DW_AT_MIPS_loop_begin:
5963 return "DW_AT_MIPS_loop_begin";
5964 case DW_AT_MIPS_tail_loop_begin:
5965 return "DW_AT_MIPS_tail_loop_begin";
5966 case DW_AT_MIPS_epilog_begin:
5967 return "DW_AT_MIPS_epilog_begin";
5968 case DW_AT_MIPS_loop_unroll_factor:
5969 return "DW_AT_MIPS_loop_unroll_factor";
5970 case DW_AT_MIPS_software_pipeline_depth:
5971 return "DW_AT_MIPS_software_pipeline_depth";
5972 case DW_AT_MIPS_linkage_name:
5973 return "DW_AT_MIPS_linkage_name";
5974#endif
5975
5976 case DW_AT_sf_names:
5977 return "DW_AT_sf_names";
5978 case DW_AT_src_info:
5979 return "DW_AT_src_info";
5980 case DW_AT_mac_info:
5981 return "DW_AT_mac_info";
5982 case DW_AT_src_coords:
5983 return "DW_AT_src_coords";
5984 case DW_AT_body_begin:
5985 return "DW_AT_body_begin";
5986 case DW_AT_body_end:
5987 return "DW_AT_body_end";
f5f8a009
EZ
5988 case DW_AT_GNU_vector:
5989 return "DW_AT_GNU_vector";
c906108c
SS
5990 default:
5991 return "DW_AT_<unknown>";
5992 }
5993}
5994
5995/* Convert a DWARF value form code into its string name. */
5996
5997static char *
fba45db2 5998dwarf_form_name (register unsigned form)
c906108c
SS
5999{
6000 switch (form)
6001 {
6002 case DW_FORM_addr:
6003 return "DW_FORM_addr";
6004 case DW_FORM_block2:
6005 return "DW_FORM_block2";
6006 case DW_FORM_block4:
6007 return "DW_FORM_block4";
6008 case DW_FORM_data2:
6009 return "DW_FORM_data2";
6010 case DW_FORM_data4:
6011 return "DW_FORM_data4";
6012 case DW_FORM_data8:
6013 return "DW_FORM_data8";
6014 case DW_FORM_string:
6015 return "DW_FORM_string";
6016 case DW_FORM_block:
6017 return "DW_FORM_block";
6018 case DW_FORM_block1:
6019 return "DW_FORM_block1";
6020 case DW_FORM_data1:
6021 return "DW_FORM_data1";
6022 case DW_FORM_flag:
6023 return "DW_FORM_flag";
6024 case DW_FORM_sdata:
6025 return "DW_FORM_sdata";
6026 case DW_FORM_strp:
6027 return "DW_FORM_strp";
6028 case DW_FORM_udata:
6029 return "DW_FORM_udata";
6030 case DW_FORM_ref_addr:
6031 return "DW_FORM_ref_addr";
6032 case DW_FORM_ref1:
6033 return "DW_FORM_ref1";
6034 case DW_FORM_ref2:
6035 return "DW_FORM_ref2";
6036 case DW_FORM_ref4:
6037 return "DW_FORM_ref4";
6038 case DW_FORM_ref8:
6039 return "DW_FORM_ref8";
6040 case DW_FORM_ref_udata:
6041 return "DW_FORM_ref_udata";
6042 case DW_FORM_indirect:
6043 return "DW_FORM_indirect";
6044 default:
6045 return "DW_FORM_<unknown>";
6046 }
6047}
6048
6049/* Convert a DWARF stack opcode into its string name. */
6050
6051static char *
fba45db2 6052dwarf_stack_op_name (register unsigned op)
c906108c
SS
6053{
6054 switch (op)
6055 {
6056 case DW_OP_addr:
6057 return "DW_OP_addr";
6058 case DW_OP_deref:
6059 return "DW_OP_deref";
6060 case DW_OP_const1u:
6061 return "DW_OP_const1u";
6062 case DW_OP_const1s:
6063 return "DW_OP_const1s";
6064 case DW_OP_const2u:
6065 return "DW_OP_const2u";
6066 case DW_OP_const2s:
6067 return "DW_OP_const2s";
6068 case DW_OP_const4u:
6069 return "DW_OP_const4u";
6070 case DW_OP_const4s:
6071 return "DW_OP_const4s";
6072 case DW_OP_const8u:
6073 return "DW_OP_const8u";
6074 case DW_OP_const8s:
6075 return "DW_OP_const8s";
6076 case DW_OP_constu:
6077 return "DW_OP_constu";
6078 case DW_OP_consts:
6079 return "DW_OP_consts";
6080 case DW_OP_dup:
6081 return "DW_OP_dup";
6082 case DW_OP_drop:
6083 return "DW_OP_drop";
6084 case DW_OP_over:
6085 return "DW_OP_over";
6086 case DW_OP_pick:
6087 return "DW_OP_pick";
6088 case DW_OP_swap:
6089 return "DW_OP_swap";
6090 case DW_OP_rot:
6091 return "DW_OP_rot";
6092 case DW_OP_xderef:
6093 return "DW_OP_xderef";
6094 case DW_OP_abs:
6095 return "DW_OP_abs";
6096 case DW_OP_and:
6097 return "DW_OP_and";
6098 case DW_OP_div:
6099 return "DW_OP_div";
6100 case DW_OP_minus:
6101 return "DW_OP_minus";
6102 case DW_OP_mod:
6103 return "DW_OP_mod";
6104 case DW_OP_mul:
6105 return "DW_OP_mul";
6106 case DW_OP_neg:
6107 return "DW_OP_neg";
6108 case DW_OP_not:
6109 return "DW_OP_not";
6110 case DW_OP_or:
6111 return "DW_OP_or";
6112 case DW_OP_plus:
6113 return "DW_OP_plus";
6114 case DW_OP_plus_uconst:
6115 return "DW_OP_plus_uconst";
6116 case DW_OP_shl:
6117 return "DW_OP_shl";
6118 case DW_OP_shr:
6119 return "DW_OP_shr";
6120 case DW_OP_shra:
6121 return "DW_OP_shra";
6122 case DW_OP_xor:
6123 return "DW_OP_xor";
6124 case DW_OP_bra:
6125 return "DW_OP_bra";
6126 case DW_OP_eq:
6127 return "DW_OP_eq";
6128 case DW_OP_ge:
6129 return "DW_OP_ge";
6130 case DW_OP_gt:
6131 return "DW_OP_gt";
6132 case DW_OP_le:
6133 return "DW_OP_le";
6134 case DW_OP_lt:
6135 return "DW_OP_lt";
6136 case DW_OP_ne:
6137 return "DW_OP_ne";
6138 case DW_OP_skip:
6139 return "DW_OP_skip";
6140 case DW_OP_lit0:
6141 return "DW_OP_lit0";
6142 case DW_OP_lit1:
6143 return "DW_OP_lit1";
6144 case DW_OP_lit2:
6145 return "DW_OP_lit2";
6146 case DW_OP_lit3:
6147 return "DW_OP_lit3";
6148 case DW_OP_lit4:
6149 return "DW_OP_lit4";
6150 case DW_OP_lit5:
6151 return "DW_OP_lit5";
6152 case DW_OP_lit6:
6153 return "DW_OP_lit6";
6154 case DW_OP_lit7:
6155 return "DW_OP_lit7";
6156 case DW_OP_lit8:
6157 return "DW_OP_lit8";
6158 case DW_OP_lit9:
6159 return "DW_OP_lit9";
6160 case DW_OP_lit10:
6161 return "DW_OP_lit10";
6162 case DW_OP_lit11:
6163 return "DW_OP_lit11";
6164 case DW_OP_lit12:
6165 return "DW_OP_lit12";
6166 case DW_OP_lit13:
6167 return "DW_OP_lit13";
6168 case DW_OP_lit14:
6169 return "DW_OP_lit14";
6170 case DW_OP_lit15:
6171 return "DW_OP_lit15";
6172 case DW_OP_lit16:
6173 return "DW_OP_lit16";
6174 case DW_OP_lit17:
6175 return "DW_OP_lit17";
6176 case DW_OP_lit18:
6177 return "DW_OP_lit18";
6178 case DW_OP_lit19:
6179 return "DW_OP_lit19";
6180 case DW_OP_lit20:
6181 return "DW_OP_lit20";
6182 case DW_OP_lit21:
6183 return "DW_OP_lit21";
6184 case DW_OP_lit22:
6185 return "DW_OP_lit22";
6186 case DW_OP_lit23:
6187 return "DW_OP_lit23";
6188 case DW_OP_lit24:
6189 return "DW_OP_lit24";
6190 case DW_OP_lit25:
6191 return "DW_OP_lit25";
6192 case DW_OP_lit26:
6193 return "DW_OP_lit26";
6194 case DW_OP_lit27:
6195 return "DW_OP_lit27";
6196 case DW_OP_lit28:
6197 return "DW_OP_lit28";
6198 case DW_OP_lit29:
6199 return "DW_OP_lit29";
6200 case DW_OP_lit30:
6201 return "DW_OP_lit30";
6202 case DW_OP_lit31:
6203 return "DW_OP_lit31";
6204 case DW_OP_reg0:
6205 return "DW_OP_reg0";
6206 case DW_OP_reg1:
6207 return "DW_OP_reg1";
6208 case DW_OP_reg2:
6209 return "DW_OP_reg2";
6210 case DW_OP_reg3:
6211 return "DW_OP_reg3";
6212 case DW_OP_reg4:
6213 return "DW_OP_reg4";
6214 case DW_OP_reg5:
6215 return "DW_OP_reg5";
6216 case DW_OP_reg6:
6217 return "DW_OP_reg6";
6218 case DW_OP_reg7:
6219 return "DW_OP_reg7";
6220 case DW_OP_reg8:
6221 return "DW_OP_reg8";
6222 case DW_OP_reg9:
6223 return "DW_OP_reg9";
6224 case DW_OP_reg10:
6225 return "DW_OP_reg10";
6226 case DW_OP_reg11:
6227 return "DW_OP_reg11";
6228 case DW_OP_reg12:
6229 return "DW_OP_reg12";
6230 case DW_OP_reg13:
6231 return "DW_OP_reg13";
6232 case DW_OP_reg14:
6233 return "DW_OP_reg14";
6234 case DW_OP_reg15:
6235 return "DW_OP_reg15";
6236 case DW_OP_reg16:
6237 return "DW_OP_reg16";
6238 case DW_OP_reg17:
6239 return "DW_OP_reg17";
6240 case DW_OP_reg18:
6241 return "DW_OP_reg18";
6242 case DW_OP_reg19:
6243 return "DW_OP_reg19";
6244 case DW_OP_reg20:
6245 return "DW_OP_reg20";
6246 case DW_OP_reg21:
6247 return "DW_OP_reg21";
6248 case DW_OP_reg22:
6249 return "DW_OP_reg22";
6250 case DW_OP_reg23:
6251 return "DW_OP_reg23";
6252 case DW_OP_reg24:
6253 return "DW_OP_reg24";
6254 case DW_OP_reg25:
6255 return "DW_OP_reg25";
6256 case DW_OP_reg26:
6257 return "DW_OP_reg26";
6258 case DW_OP_reg27:
6259 return "DW_OP_reg27";
6260 case DW_OP_reg28:
6261 return "DW_OP_reg28";
6262 case DW_OP_reg29:
6263 return "DW_OP_reg29";
6264 case DW_OP_reg30:
6265 return "DW_OP_reg30";
6266 case DW_OP_reg31:
6267 return "DW_OP_reg31";
6268 case DW_OP_breg0:
6269 return "DW_OP_breg0";
6270 case DW_OP_breg1:
6271 return "DW_OP_breg1";
6272 case DW_OP_breg2:
6273 return "DW_OP_breg2";
6274 case DW_OP_breg3:
6275 return "DW_OP_breg3";
6276 case DW_OP_breg4:
6277 return "DW_OP_breg4";
6278 case DW_OP_breg5:
6279 return "DW_OP_breg5";
6280 case DW_OP_breg6:
6281 return "DW_OP_breg6";
6282 case DW_OP_breg7:
6283 return "DW_OP_breg7";
6284 case DW_OP_breg8:
6285 return "DW_OP_breg8";
6286 case DW_OP_breg9:
6287 return "DW_OP_breg9";
6288 case DW_OP_breg10:
6289 return "DW_OP_breg10";
6290 case DW_OP_breg11:
6291 return "DW_OP_breg11";
6292 case DW_OP_breg12:
6293 return "DW_OP_breg12";
6294 case DW_OP_breg13:
6295 return "DW_OP_breg13";
6296 case DW_OP_breg14:
6297 return "DW_OP_breg14";
6298 case DW_OP_breg15:
6299 return "DW_OP_breg15";
6300 case DW_OP_breg16:
6301 return "DW_OP_breg16";
6302 case DW_OP_breg17:
6303 return "DW_OP_breg17";
6304 case DW_OP_breg18:
6305 return "DW_OP_breg18";
6306 case DW_OP_breg19:
6307 return "DW_OP_breg19";
6308 case DW_OP_breg20:
6309 return "DW_OP_breg20";
6310 case DW_OP_breg21:
6311 return "DW_OP_breg21";
6312 case DW_OP_breg22:
6313 return "DW_OP_breg22";
6314 case DW_OP_breg23:
6315 return "DW_OP_breg23";
6316 case DW_OP_breg24:
6317 return "DW_OP_breg24";
6318 case DW_OP_breg25:
6319 return "DW_OP_breg25";
6320 case DW_OP_breg26:
6321 return "DW_OP_breg26";
6322 case DW_OP_breg27:
6323 return "DW_OP_breg27";
6324 case DW_OP_breg28:
6325 return "DW_OP_breg28";
6326 case DW_OP_breg29:
6327 return "DW_OP_breg29";
6328 case DW_OP_breg30:
6329 return "DW_OP_breg30";
6330 case DW_OP_breg31:
6331 return "DW_OP_breg31";
6332 case DW_OP_regx:
6333 return "DW_OP_regx";
6334 case DW_OP_fbreg:
6335 return "DW_OP_fbreg";
6336 case DW_OP_bregx:
6337 return "DW_OP_bregx";
6338 case DW_OP_piece:
6339 return "DW_OP_piece";
6340 case DW_OP_deref_size:
6341 return "DW_OP_deref_size";
6342 case DW_OP_xderef_size:
6343 return "DW_OP_xderef_size";
6344 case DW_OP_nop:
6345 return "DW_OP_nop";
ed348acc
EZ
6346 /* DWARF 3 extensions. */
6347 case DW_OP_push_object_address:
6348 return "DW_OP_push_object_address";
6349 case DW_OP_call2:
6350 return "DW_OP_call2";
6351 case DW_OP_call4:
6352 return "DW_OP_call4";
6353 case DW_OP_call_ref:
6354 return "DW_OP_call_ref";
6355 /* GNU extensions. */
6356 case DW_OP_GNU_push_tls_address:
6357 return "DW_OP_GNU_push_tls_address";
c906108c
SS
6358 default:
6359 return "OP_<unknown>";
6360 }
6361}
6362
6363static char *
fba45db2 6364dwarf_bool_name (unsigned mybool)
c906108c
SS
6365{
6366 if (mybool)
6367 return "TRUE";
6368 else
6369 return "FALSE";
6370}
6371
6372/* Convert a DWARF type code into its string name. */
6373
6374static char *
fba45db2 6375dwarf_type_encoding_name (register unsigned enc)
c906108c
SS
6376{
6377 switch (enc)
6378 {
6379 case DW_ATE_address:
6380 return "DW_ATE_address";
6381 case DW_ATE_boolean:
6382 return "DW_ATE_boolean";
6383 case DW_ATE_complex_float:
6384 return "DW_ATE_complex_float";
6385 case DW_ATE_float:
6386 return "DW_ATE_float";
6387 case DW_ATE_signed:
6388 return "DW_ATE_signed";
6389 case DW_ATE_signed_char:
6390 return "DW_ATE_signed_char";
6391 case DW_ATE_unsigned:
6392 return "DW_ATE_unsigned";
6393 case DW_ATE_unsigned_char:
6394 return "DW_ATE_unsigned_char";
d9fa45fe
DC
6395 case DW_ATE_imaginary_float:
6396 return "DW_ATE_imaginary_float";
c906108c
SS
6397 default:
6398 return "DW_ATE_<unknown>";
6399 }
6400}
6401
6402/* Convert a DWARF call frame info operation to its string name. */
6403
6404#if 0
6405static char *
fba45db2 6406dwarf_cfi_name (register unsigned cfi_opc)
c906108c
SS
6407{
6408 switch (cfi_opc)
6409 {
6410 case DW_CFA_advance_loc:
6411 return "DW_CFA_advance_loc";
6412 case DW_CFA_offset:
6413 return "DW_CFA_offset";
6414 case DW_CFA_restore:
6415 return "DW_CFA_restore";
6416 case DW_CFA_nop:
6417 return "DW_CFA_nop";
6418 case DW_CFA_set_loc:
6419 return "DW_CFA_set_loc";
6420 case DW_CFA_advance_loc1:
6421 return "DW_CFA_advance_loc1";
6422 case DW_CFA_advance_loc2:
6423 return "DW_CFA_advance_loc2";
6424 case DW_CFA_advance_loc4:
6425 return "DW_CFA_advance_loc4";
6426 case DW_CFA_offset_extended:
6427 return "DW_CFA_offset_extended";
6428 case DW_CFA_restore_extended:
6429 return "DW_CFA_restore_extended";
6430 case DW_CFA_undefined:
6431 return "DW_CFA_undefined";
6432 case DW_CFA_same_value:
6433 return "DW_CFA_same_value";
6434 case DW_CFA_register:
6435 return "DW_CFA_register";
6436 case DW_CFA_remember_state:
6437 return "DW_CFA_remember_state";
6438 case DW_CFA_restore_state:
6439 return "DW_CFA_restore_state";
6440 case DW_CFA_def_cfa:
6441 return "DW_CFA_def_cfa";
6442 case DW_CFA_def_cfa_register:
6443 return "DW_CFA_def_cfa_register";
6444 case DW_CFA_def_cfa_offset:
6445 return "DW_CFA_def_cfa_offset";
985cb1a3
JM
6446
6447 /* DWARF 3 */
6448 case DW_CFA_def_cfa_expression:
6449 return "DW_CFA_def_cfa_expression";
6450 case DW_CFA_expression:
6451 return "DW_CFA_expression";
6452 case DW_CFA_offset_extended_sf:
6453 return "DW_CFA_offset_extended_sf";
6454 case DW_CFA_def_cfa_sf:
6455 return "DW_CFA_def_cfa_sf";
6456 case DW_CFA_def_cfa_offset_sf:
6457 return "DW_CFA_def_cfa_offset_sf";
6458
c906108c
SS
6459 /* SGI/MIPS specific */
6460 case DW_CFA_MIPS_advance_loc8:
6461 return "DW_CFA_MIPS_advance_loc8";
985cb1a3
JM
6462
6463 /* GNU extensions */
6464 case DW_CFA_GNU_window_save:
6465 return "DW_CFA_GNU_window_save";
6466 case DW_CFA_GNU_args_size:
6467 return "DW_CFA_GNU_args_size";
6468 case DW_CFA_GNU_negative_offset_extended:
6469 return "DW_CFA_GNU_negative_offset_extended";
6470
c906108c
SS
6471 default:
6472 return "DW_CFA_<unknown>";
6473 }
6474}
6475#endif
6476
f9aca02d 6477static void
fba45db2 6478dump_die (struct die_info *die)
c906108c
SS
6479{
6480 unsigned int i;
6481
48cd0caa 6482 fprintf_unfiltered (gdb_stderr, "Die: %s (abbrev = %d, offset = %d)\n",
c906108c 6483 dwarf_tag_name (die->tag), die->abbrev, die->offset);
48cd0caa 6484 fprintf_unfiltered (gdb_stderr, "\thas children: %s\n",
c906108c
SS
6485 dwarf_bool_name (die->has_children));
6486
48cd0caa 6487 fprintf_unfiltered (gdb_stderr, "\tattributes:\n");
c906108c
SS
6488 for (i = 0; i < die->num_attrs; ++i)
6489 {
48cd0caa 6490 fprintf_unfiltered (gdb_stderr, "\t\t%s (%s) ",
c906108c
SS
6491 dwarf_attr_name (die->attrs[i].name),
6492 dwarf_form_name (die->attrs[i].form));
6493 switch (die->attrs[i].form)
6494 {
6495 case DW_FORM_ref_addr:
6496 case DW_FORM_addr:
48cd0caa 6497 fprintf_unfiltered (gdb_stderr, "address: ");
c906108c
SS
6498 print_address_numeric (DW_ADDR (&die->attrs[i]), 1, gdb_stderr);
6499 break;
6500 case DW_FORM_block2:
6501 case DW_FORM_block4:
6502 case DW_FORM_block:
6503 case DW_FORM_block1:
48cd0caa 6504 fprintf_unfiltered (gdb_stderr, "block: size %d", DW_BLOCK (&die->attrs[i])->size);
c906108c
SS
6505 break;
6506 case DW_FORM_data1:
6507 case DW_FORM_data2:
6508 case DW_FORM_data4:
ce5d95e1 6509 case DW_FORM_data8:
c906108c
SS
6510 case DW_FORM_ref1:
6511 case DW_FORM_ref2:
6512 case DW_FORM_ref4:
6513 case DW_FORM_udata:
6514 case DW_FORM_sdata:
48cd0caa 6515 fprintf_unfiltered (gdb_stderr, "constant: %ld", DW_UNSND (&die->attrs[i]));
c906108c
SS
6516 break;
6517 case DW_FORM_string:
4bdf3d34 6518 case DW_FORM_strp:
48cd0caa 6519 fprintf_unfiltered (gdb_stderr, "string: \"%s\"",
c906108c 6520 DW_STRING (&die->attrs[i])
c5aa993b 6521 ? DW_STRING (&die->attrs[i]) : "");
c906108c
SS
6522 break;
6523 case DW_FORM_flag:
6524 if (DW_UNSND (&die->attrs[i]))
48cd0caa 6525 fprintf_unfiltered (gdb_stderr, "flag: TRUE");
c906108c 6526 else
48cd0caa 6527 fprintf_unfiltered (gdb_stderr, "flag: FALSE");
c906108c 6528 break;
a8329558
KW
6529 case DW_FORM_indirect:
6530 /* the reader will have reduced the indirect form to
6531 the "base form" so this form should not occur */
48cd0caa 6532 fprintf_unfiltered (gdb_stderr, "unexpected attribute form: DW_FORM_indirect");
a8329558 6533 break;
c906108c 6534 default:
48cd0caa 6535 fprintf_unfiltered (gdb_stderr, "unsupported attribute form: %d.",
c5aa993b 6536 die->attrs[i].form);
c906108c 6537 }
48cd0caa 6538 fprintf_unfiltered (gdb_stderr, "\n");
c906108c
SS
6539 }
6540}
6541
f9aca02d 6542static void
fba45db2 6543dump_die_list (struct die_info *die)
c906108c
SS
6544{
6545 while (die)
6546 {
6547 dump_die (die);
6548 die = die->next;
6549 }
6550}
6551
f9aca02d 6552static void
fba45db2 6553store_in_ref_table (unsigned int offset, struct die_info *die)
c906108c
SS
6554{
6555 int h;
6556 struct die_info *old;
6557
6558 h = (offset % REF_HASH_SIZE);
6559 old = die_ref_table[h];
6560 die->next_ref = old;
6561 die_ref_table[h] = die;
6562}
6563
6564
6565static void
fba45db2 6566dwarf2_empty_hash_tables (void)
c906108c
SS
6567{
6568 memset (die_ref_table, 0, sizeof (die_ref_table));
6569}
6570
6571static unsigned int
fba45db2 6572dwarf2_get_ref_die_offset (struct attribute *attr)
c906108c
SS
6573{
6574 unsigned int result = 0;
6575
6576 switch (attr->form)
6577 {
6578 case DW_FORM_ref_addr:
6579 result = DW_ADDR (attr);
6580 break;
6581 case DW_FORM_ref1:
6582 case DW_FORM_ref2:
6583 case DW_FORM_ref4:
613e1657 6584 case DW_FORM_ref8:
c906108c
SS
6585 case DW_FORM_ref_udata:
6586 result = cu_header_offset + DW_UNSND (attr);
6587 break;
6588 default:
4d3c2250
KB
6589 complaint (&symfile_complaints,
6590 "unsupported die ref attribute form: '%s'",
6591 dwarf_form_name (attr->form));
c906108c
SS
6592 }
6593 return result;
6594}
6595
f9aca02d 6596static struct die_info *
fba45db2 6597follow_die_ref (unsigned int offset)
c906108c
SS
6598{
6599 struct die_info *die;
6600 int h;
6601
6602 h = (offset % REF_HASH_SIZE);
6603 die = die_ref_table[h];
6604 while (die)
6605 {
6606 if (die->offset == offset)
6607 {
6608 return die;
6609 }
6610 die = die->next_ref;
6611 }
6612 return NULL;
6613}
6614
6615static struct type *
fba45db2 6616dwarf2_fundamental_type (struct objfile *objfile, int typeid)
c906108c
SS
6617{
6618 if (typeid < 0 || typeid >= FT_NUM_MEMBERS)
6619 {
659b0389
ML
6620 error ("Dwarf Error: internal error - invalid fundamental type id %d [in module %s]",
6621 typeid, objfile->name);
c906108c
SS
6622 }
6623
6624 /* Look for this particular type in the fundamental type vector. If
6625 one is not found, create and install one appropriate for the
6626 current language and the current target machine. */
6627
6628 if (ftypes[typeid] == NULL)
6629 {
6630 ftypes[typeid] = cu_language_defn->la_fund_type (objfile, typeid);
6631 }
6632
6633 return (ftypes[typeid]);
6634}
6635
6636/* Decode simple location descriptions.
6637 Given a pointer to a dwarf block that defines a location, compute
6638 the location and return the value.
6639
6640 FIXME: This is a kludge until we figure out a better
6641 way to handle the location descriptions.
6642 Gdb's design does not mesh well with the DWARF2 notion of a location
6643 computing interpreter, which is a shame because the flexibility goes unused.
6644 FIXME: Implement more operations as necessary.
6645
6646 A location description containing no operations indicates that the
6647 object is optimized out. The global optimized_out flag is set for
6648 those, the return value is meaningless.
6649
6650 When the result is a register number, the global isreg flag is set,
6651 otherwise it is cleared.
6652
6653 When the result is a base register offset, the global offreg flag is set
6654 and the register number is returned in basereg, otherwise it is cleared.
6655
6656 When the DW_OP_fbreg operation is encountered without a corresponding
6657 DW_AT_frame_base attribute, the global islocal flag is set.
6658 Hopefully the machine dependent code knows how to set up a virtual
6659 frame pointer for the local references.
c5aa993b 6660
c906108c
SS
6661 Note that stack[0] is unused except as a default error return.
6662 Note that stack overflow is not yet handled. */
6663
6664static CORE_ADDR
107d2387
AC
6665decode_locdesc (struct dwarf_block *blk, struct objfile *objfile,
6666 const struct comp_unit_head *cu_header)
c906108c
SS
6667{
6668 int i;
6669 int size = blk->size;
6670 char *data = blk->data;
6671 CORE_ADDR stack[64];
6672 int stacki;
6673 unsigned int bytes_read, unsnd;
6674 unsigned char op;
6675
6676 i = 0;
6677 stacki = 0;
6678 stack[stacki] = 0;
6679 isreg = 0;
6680 offreg = 0;
7a292a7a 6681 isderef = 0;
c906108c 6682 islocal = 0;
9d774e44 6683 is_thread_local = 0;
c906108c
SS
6684 optimized_out = 1;
6685
6686 while (i < size)
6687 {
6688 optimized_out = 0;
6689 op = data[i++];
6690 switch (op)
6691 {
f1bea926
JM
6692 case DW_OP_lit0:
6693 case DW_OP_lit1:
6694 case DW_OP_lit2:
6695 case DW_OP_lit3:
6696 case DW_OP_lit4:
6697 case DW_OP_lit5:
6698 case DW_OP_lit6:
6699 case DW_OP_lit7:
6700 case DW_OP_lit8:
6701 case DW_OP_lit9:
6702 case DW_OP_lit10:
6703 case DW_OP_lit11:
6704 case DW_OP_lit12:
6705 case DW_OP_lit13:
6706 case DW_OP_lit14:
6707 case DW_OP_lit15:
6708 case DW_OP_lit16:
6709 case DW_OP_lit17:
6710 case DW_OP_lit18:
6711 case DW_OP_lit19:
6712 case DW_OP_lit20:
6713 case DW_OP_lit21:
6714 case DW_OP_lit22:
6715 case DW_OP_lit23:
6716 case DW_OP_lit24:
6717 case DW_OP_lit25:
6718 case DW_OP_lit26:
6719 case DW_OP_lit27:
6720 case DW_OP_lit28:
6721 case DW_OP_lit29:
6722 case DW_OP_lit30:
6723 case DW_OP_lit31:
6724 stack[++stacki] = op - DW_OP_lit0;
6725 break;
6726
c906108c
SS
6727 case DW_OP_reg0:
6728 case DW_OP_reg1:
6729 case DW_OP_reg2:
6730 case DW_OP_reg3:
6731 case DW_OP_reg4:
6732 case DW_OP_reg5:
6733 case DW_OP_reg6:
6734 case DW_OP_reg7:
6735 case DW_OP_reg8:
6736 case DW_OP_reg9:
6737 case DW_OP_reg10:
6738 case DW_OP_reg11:
6739 case DW_OP_reg12:
6740 case DW_OP_reg13:
6741 case DW_OP_reg14:
6742 case DW_OP_reg15:
6743 case DW_OP_reg16:
6744 case DW_OP_reg17:
6745 case DW_OP_reg18:
6746 case DW_OP_reg19:
6747 case DW_OP_reg20:
6748 case DW_OP_reg21:
6749 case DW_OP_reg22:
6750 case DW_OP_reg23:
6751 case DW_OP_reg24:
6752 case DW_OP_reg25:
6753 case DW_OP_reg26:
6754 case DW_OP_reg27:
6755 case DW_OP_reg28:
6756 case DW_OP_reg29:
6757 case DW_OP_reg30:
6758 case DW_OP_reg31:
6759 isreg = 1;
6760 stack[++stacki] = op - DW_OP_reg0;
6761 break;
6762
6763 case DW_OP_regx:
6764 isreg = 1;
6765 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
6766 i += bytes_read;
c906108c
SS
6767 stack[++stacki] = unsnd;
6768 break;
6769
6770 case DW_OP_breg0:
6771 case DW_OP_breg1:
6772 case DW_OP_breg2:
6773 case DW_OP_breg3:
6774 case DW_OP_breg4:
6775 case DW_OP_breg5:
6776 case DW_OP_breg6:
6777 case DW_OP_breg7:
6778 case DW_OP_breg8:
6779 case DW_OP_breg9:
6780 case DW_OP_breg10:
6781 case DW_OP_breg11:
6782 case DW_OP_breg12:
6783 case DW_OP_breg13:
6784 case DW_OP_breg14:
6785 case DW_OP_breg15:
6786 case DW_OP_breg16:
6787 case DW_OP_breg17:
6788 case DW_OP_breg18:
6789 case DW_OP_breg19:
6790 case DW_OP_breg20:
6791 case DW_OP_breg21:
6792 case DW_OP_breg22:
6793 case DW_OP_breg23:
6794 case DW_OP_breg24:
6795 case DW_OP_breg25:
6796 case DW_OP_breg26:
6797 case DW_OP_breg27:
6798 case DW_OP_breg28:
6799 case DW_OP_breg29:
6800 case DW_OP_breg30:
6801 case DW_OP_breg31:
6802 offreg = 1;
6803 basereg = op - DW_OP_breg0;
6804 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
6805 i += bytes_read;
6806 break;
6807
dfcd3bfb
JM
6808 case DW_OP_bregx:
6809 offreg = 1;
6810 basereg = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
6811 i += bytes_read;
6812 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
6813 i += bytes_read;
6814 break;
6815
c906108c
SS
6816 case DW_OP_fbreg:
6817 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
6818 i += bytes_read;
6819 if (frame_base_reg >= 0)
6820 {
6821 offreg = 1;
6822 basereg = frame_base_reg;
6823 stack[stacki] += frame_base_offset;
6824 }
6825 else
6826 {
4d3c2250
KB
6827 complaint (&symfile_complaints,
6828 "DW_AT_frame_base missing for DW_OP_fbreg");
c906108c
SS
6829 islocal = 1;
6830 }
6831 break;
6832
6833 case DW_OP_addr:
107d2387
AC
6834 stack[++stacki] = read_address (objfile->obfd, &data[i],
6835 cu_header, &bytes_read);
6836 i += bytes_read;
c906108c
SS
6837 break;
6838
6839 case DW_OP_const1u:
6840 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
6841 i += 1;
6842 break;
6843
6844 case DW_OP_const1s:
6845 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
6846 i += 1;
6847 break;
6848
6849 case DW_OP_const2u:
6850 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
6851 i += 2;
6852 break;
6853
6854 case DW_OP_const2s:
6855 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
6856 i += 2;
6857 break;
6858
6859 case DW_OP_const4u:
6860 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
6861 i += 4;
6862 break;
6863
6864 case DW_OP_const4s:
6865 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
6866 i += 4;
6867 break;
6868
6869 case DW_OP_constu:
6870 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
c5aa993b 6871 &bytes_read);
c906108c
SS
6872 i += bytes_read;
6873 break;
6874
6875 case DW_OP_consts:
6876 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
6877 i += bytes_read;
6878 break;
6879
f1bea926
JM
6880 case DW_OP_dup:
6881 stack[stacki + 1] = stack[stacki];
6882 stacki++;
6883 break;
6884
c906108c
SS
6885 case DW_OP_plus:
6886 stack[stacki - 1] += stack[stacki];
6887 stacki--;
6888 break;
6889
6890 case DW_OP_plus_uconst:
6891 stack[stacki] += read_unsigned_leb128 (NULL, (data + i), &bytes_read);
6892 i += bytes_read;
6893 break;
6894
6895 case DW_OP_minus:
f1bea926 6896 stack[stacki - 1] -= stack[stacki];
c906108c
SS
6897 stacki--;
6898 break;
6899
7a292a7a
SS
6900 case DW_OP_deref:
6901 isderef = 1;
6902 /* If we're not the last op, then we definitely can't encode
c5aa993b 6903 this using GDB's address_class enum. */
7a292a7a 6904 if (i < size)
4d3c2250 6905 dwarf2_complex_location_expr_complaint ();
7a292a7a
SS
6906 break;
6907
9d774e44
EZ
6908 case DW_OP_GNU_push_tls_address:
6909 is_thread_local = 1;
6910 /* The top of the stack has the offset from the beginning
6911 of the thread control block at which the variable is located. */
6912 /* Nothing should follow this operator, so the top of stack would
6913 be returned. */
6914 if (i < size)
4d3c2250 6915 dwarf2_complex_location_expr_complaint ();
9d774e44
EZ
6916 break;
6917
c906108c 6918 default:
4d3c2250
KB
6919 complaint (&symfile_complaints, "unsupported stack op: '%s'",
6920 dwarf_stack_op_name (op));
c906108c
SS
6921 return (stack[stacki]);
6922 }
6923 }
6924 return (stack[stacki]);
6925}
6926
6927/* memory allocation interface */
6928
6929/* ARGSUSED */
6930static void
4efb68b1 6931dwarf2_free_tmp_obstack (void *ignore)
c906108c
SS
6932{
6933 obstack_free (&dwarf2_tmp_obstack, NULL);
6934}
6935
6936static struct dwarf_block *
fba45db2 6937dwarf_alloc_block (void)
c906108c
SS
6938{
6939 struct dwarf_block *blk;
6940
6941 blk = (struct dwarf_block *)
6942 obstack_alloc (&dwarf2_tmp_obstack, sizeof (struct dwarf_block));
6943 return (blk);
6944}
6945
6946static struct abbrev_info *
fba45db2 6947dwarf_alloc_abbrev (void)
c906108c
SS
6948{
6949 struct abbrev_info *abbrev;
6950
6951 abbrev = (struct abbrev_info *) xmalloc (sizeof (struct abbrev_info));
6952 memset (abbrev, 0, sizeof (struct abbrev_info));
6953 return (abbrev);
6954}
6955
6956static struct die_info *
fba45db2 6957dwarf_alloc_die (void)
c906108c
SS
6958{
6959 struct die_info *die;
6960
6961 die = (struct die_info *) xmalloc (sizeof (struct die_info));
6962 memset (die, 0, sizeof (struct die_info));
6963 return (die);
6964}
2e276125
JB
6965
6966\f
6967/* Macro support. */
6968
6969
6970/* Return the full name of file number I in *LH's file name table.
6971 Use COMP_DIR as the name of the current directory of the
6972 compilation. The result is allocated using xmalloc; the caller is
6973 responsible for freeing it. */
6974static char *
6975file_full_name (int file, struct line_header *lh, const char *comp_dir)
6976{
6977 struct file_entry *fe = &lh->file_names[file - 1];
6978
6979 if (IS_ABSOLUTE_PATH (fe->name))
6980 return xstrdup (fe->name);
6981 else
6982 {
6983 const char *dir;
6984 int dir_len;
6985 char *full_name;
6986
6987 if (fe->dir_index)
6988 dir = lh->include_dirs[fe->dir_index - 1];
6989 else
6990 dir = comp_dir;
6991
6992 if (dir)
6993 {
6994 dir_len = strlen (dir);
6995 full_name = xmalloc (dir_len + 1 + strlen (fe->name) + 1);
6996 strcpy (full_name, dir);
6997 full_name[dir_len] = '/';
6998 strcpy (full_name + dir_len + 1, fe->name);
6999 return full_name;
7000 }
7001 else
7002 return xstrdup (fe->name);
7003 }
7004}
7005
7006
7007static struct macro_source_file *
7008macro_start_file (int file, int line,
7009 struct macro_source_file *current_file,
7010 const char *comp_dir,
7011 struct line_header *lh, struct objfile *objfile)
7012{
7013 /* The full name of this source file. */
7014 char *full_name = file_full_name (file, lh, comp_dir);
7015
7016 /* We don't create a macro table for this compilation unit
7017 at all until we actually get a filename. */
7018 if (! pending_macros)
7019 pending_macros = new_macro_table (&objfile->symbol_obstack,
af5f3db6 7020 objfile->macro_cache);
2e276125
JB
7021
7022 if (! current_file)
7023 /* If we have no current file, then this must be the start_file
7024 directive for the compilation unit's main source file. */
7025 current_file = macro_set_main (pending_macros, full_name);
7026 else
7027 current_file = macro_include (current_file, line, full_name);
7028
7029 xfree (full_name);
7030
7031 return current_file;
7032}
7033
7034
7035/* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
7036 followed by a null byte. */
7037static char *
7038copy_string (const char *buf, int len)
7039{
7040 char *s = xmalloc (len + 1);
7041 memcpy (s, buf, len);
7042 s[len] = '\0';
7043
7044 return s;
7045}
7046
7047
7048static const char *
7049consume_improper_spaces (const char *p, const char *body)
7050{
7051 if (*p == ' ')
7052 {
4d3c2250
KB
7053 complaint (&symfile_complaints,
7054 "macro definition contains spaces in formal argument list:\n`%s'",
7055 body);
2e276125
JB
7056
7057 while (*p == ' ')
7058 p++;
7059 }
7060
7061 return p;
7062}
7063
7064
7065static void
7066parse_macro_definition (struct macro_source_file *file, int line,
7067 const char *body)
7068{
7069 const char *p;
7070
7071 /* The body string takes one of two forms. For object-like macro
7072 definitions, it should be:
7073
7074 <macro name> " " <definition>
7075
7076 For function-like macro definitions, it should be:
7077
7078 <macro name> "() " <definition>
7079 or
7080 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
7081
7082 Spaces may appear only where explicitly indicated, and in the
7083 <definition>.
7084
7085 The Dwarf 2 spec says that an object-like macro's name is always
7086 followed by a space, but versions of GCC around March 2002 omit
7087 the space when the macro's definition is the empty string.
7088
7089 The Dwarf 2 spec says that there should be no spaces between the
7090 formal arguments in a function-like macro's formal argument list,
7091 but versions of GCC around March 2002 include spaces after the
7092 commas. */
7093
7094
7095 /* Find the extent of the macro name. The macro name is terminated
7096 by either a space or null character (for an object-like macro) or
7097 an opening paren (for a function-like macro). */
7098 for (p = body; *p; p++)
7099 if (*p == ' ' || *p == '(')
7100 break;
7101
7102 if (*p == ' ' || *p == '\0')
7103 {
7104 /* It's an object-like macro. */
7105 int name_len = p - body;
7106 char *name = copy_string (body, name_len);
7107 const char *replacement;
7108
7109 if (*p == ' ')
7110 replacement = body + name_len + 1;
7111 else
7112 {
4d3c2250 7113 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
7114 replacement = body + name_len;
7115 }
7116
7117 macro_define_object (file, line, name, replacement);
7118
7119 xfree (name);
7120 }
7121 else if (*p == '(')
7122 {
7123 /* It's a function-like macro. */
7124 char *name = copy_string (body, p - body);
7125 int argc = 0;
7126 int argv_size = 1;
7127 char **argv = xmalloc (argv_size * sizeof (*argv));
7128
7129 p++;
7130
7131 p = consume_improper_spaces (p, body);
7132
7133 /* Parse the formal argument list. */
7134 while (*p && *p != ')')
7135 {
7136 /* Find the extent of the current argument name. */
7137 const char *arg_start = p;
7138
7139 while (*p && *p != ',' && *p != ')' && *p != ' ')
7140 p++;
7141
7142 if (! *p || p == arg_start)
4d3c2250 7143 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
7144 else
7145 {
7146 /* Make sure argv has room for the new argument. */
7147 if (argc >= argv_size)
7148 {
7149 argv_size *= 2;
7150 argv = xrealloc (argv, argv_size * sizeof (*argv));
7151 }
7152
7153 argv[argc++] = copy_string (arg_start, p - arg_start);
7154 }
7155
7156 p = consume_improper_spaces (p, body);
7157
7158 /* Consume the comma, if present. */
7159 if (*p == ',')
7160 {
7161 p++;
7162
7163 p = consume_improper_spaces (p, body);
7164 }
7165 }
7166
7167 if (*p == ')')
7168 {
7169 p++;
7170
7171 if (*p == ' ')
7172 /* Perfectly formed definition, no complaints. */
7173 macro_define_function (file, line, name,
7174 argc, (const char **) argv,
7175 p + 1);
7176 else if (*p == '\0')
7177 {
7178 /* Complain, but do define it. */
4d3c2250 7179 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
7180 macro_define_function (file, line, name,
7181 argc, (const char **) argv,
7182 p);
7183 }
7184 else
7185 /* Just complain. */
4d3c2250 7186 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
7187 }
7188 else
7189 /* Just complain. */
4d3c2250 7190 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
7191
7192 xfree (name);
7193 {
7194 int i;
7195
7196 for (i = 0; i < argc; i++)
7197 xfree (argv[i]);
7198 }
7199 xfree (argv);
7200 }
7201 else
4d3c2250 7202 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
7203}
7204
7205
7206static void
7207dwarf_decode_macros (struct line_header *lh, unsigned int offset,
7208 char *comp_dir, bfd *abfd,
7209 const struct comp_unit_head *cu_header,
7210 struct objfile *objfile)
7211{
7212 char *mac_ptr, *mac_end;
7213 struct macro_source_file *current_file = 0;
7214
7215 if (dwarf_macinfo_buffer == NULL)
7216 {
4d3c2250 7217 complaint (&symfile_complaints, "missing .debug_macinfo section");
2e276125
JB
7218 return;
7219 }
7220
7221 mac_ptr = dwarf_macinfo_buffer + offset;
7222 mac_end = dwarf_macinfo_buffer + dwarf_macinfo_size;
7223
7224 for (;;)
7225 {
7226 enum dwarf_macinfo_record_type macinfo_type;
7227
7228 /* Do we at least have room for a macinfo type byte? */
7229 if (mac_ptr >= mac_end)
7230 {
4d3c2250 7231 dwarf2_macros_too_long_complaint ();
2e276125
JB
7232 return;
7233 }
7234
7235 macinfo_type = read_1_byte (abfd, mac_ptr);
7236 mac_ptr++;
7237
7238 switch (macinfo_type)
7239 {
7240 /* A zero macinfo type indicates the end of the macro
7241 information. */
7242 case 0:
7243 return;
7244
7245 case DW_MACINFO_define:
7246 case DW_MACINFO_undef:
7247 {
7248 int bytes_read;
7249 int line;
7250 char *body;
7251
7252 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
7253 mac_ptr += bytes_read;
7254 body = read_string (abfd, mac_ptr, &bytes_read);
7255 mac_ptr += bytes_read;
7256
7257 if (! current_file)
4d3c2250
KB
7258 complaint (&symfile_complaints,
7259 "debug info gives macro %s outside of any file: %s",
7260 macinfo_type ==
7261 DW_MACINFO_define ? "definition" : macinfo_type ==
7262 DW_MACINFO_undef ? "undefinition" :
7263 "something-or-other", body);
2e276125
JB
7264 else
7265 {
7266 if (macinfo_type == DW_MACINFO_define)
7267 parse_macro_definition (current_file, line, body);
7268 else if (macinfo_type == DW_MACINFO_undef)
7269 macro_undef (current_file, line, body);
7270 }
7271 }
7272 break;
7273
7274 case DW_MACINFO_start_file:
7275 {
7276 int bytes_read;
7277 int line, file;
7278
7279 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
7280 mac_ptr += bytes_read;
7281 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
7282 mac_ptr += bytes_read;
7283
7284 current_file = macro_start_file (file, line,
7285 current_file, comp_dir,
7286 lh, objfile);
7287 }
7288 break;
7289
7290 case DW_MACINFO_end_file:
7291 if (! current_file)
4d3c2250
KB
7292 complaint (&symfile_complaints,
7293 "macro debug info has an unmatched `close_file' directive");
2e276125
JB
7294 else
7295 {
7296 current_file = current_file->included_by;
7297 if (! current_file)
7298 {
7299 enum dwarf_macinfo_record_type next_type;
7300
7301 /* GCC circa March 2002 doesn't produce the zero
7302 type byte marking the end of the compilation
7303 unit. Complain if it's not there, but exit no
7304 matter what. */
7305
7306 /* Do we at least have room for a macinfo type byte? */
7307 if (mac_ptr >= mac_end)
7308 {
4d3c2250 7309 dwarf2_macros_too_long_complaint ();
2e276125
JB
7310 return;
7311 }
7312
7313 /* We don't increment mac_ptr here, so this is just
7314 a look-ahead. */
7315 next_type = read_1_byte (abfd, mac_ptr);
7316 if (next_type != 0)
4d3c2250
KB
7317 complaint (&symfile_complaints,
7318 "no terminating 0-type entry for macros in `.debug_macinfo' section");
2e276125
JB
7319
7320 return;
7321 }
7322 }
7323 break;
7324
7325 case DW_MACINFO_vendor_ext:
7326 {
7327 int bytes_read;
7328 int constant;
7329 char *string;
7330
7331 constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
7332 mac_ptr += bytes_read;
7333 string = read_string (abfd, mac_ptr, &bytes_read);
7334 mac_ptr += bytes_read;
7335
7336 /* We don't recognize any vendor extensions. */
7337 }
7338 break;
7339 }
7340 }
7341}
8e19ed76
PS
7342
7343/* Check if the attribute's form is a DW_FORM_block*
7344 if so return true else false. */
7345static int
7346attr_form_is_block (struct attribute *attr)
7347{
7348 return (attr == NULL ? 0 :
7349 attr->form == DW_FORM_block1
7350 || attr->form == DW_FORM_block2
7351 || attr->form == DW_FORM_block4
7352 || attr->form == DW_FORM_block);
7353}