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