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