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