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