]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/dwarfread.c
When creating user defined types for subroutine and array types, check
[thirdparty/binutils-gdb.git] / gdb / dwarfread.c
1 /* DWARF debugging format support for GDB.
2 Copyright (C) 1991 Free Software Foundation, Inc.
3 Written by Fred Fish at Cygnus Support, portions based on dbxread.c,
4 mipsread.c, coffread.c, and dwarfread.c from a Data General SVR4 gdb port.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21
22 /*
23
24 FIXME: Figure out how to get the frame pointer register number in the
25 execution environment of the target. Remove R_FP kludge
26
27 FIXME: Add generation of dependencies list to partial symtab code.
28
29 FIXME: Currently we ignore host/target byte ordering and integer size
30 differences. Should remap data from external form to an internal form
31 before trying to use it.
32
33 FIXME: Resolve minor differences between what information we put in the
34 partial symbol table and what dbxread puts in. For example, we don't yet
35 put enum constants there. And dbxread seems to invent a lot of typedefs
36 we never see. Use the new printpsym command to see the partial symbol table
37 contents.
38
39 FIXME: Figure out a better way to tell gdb about the name of the function
40 contain the user's entry point (I.E. main())
41
42 FIXME: The current DWARF specification has a very strong bias towards
43 machines with 32-bit integers, as it assumes that many attributes of the
44 program (such as an address) will fit in such an integer. There are many
45 references in the spec to things that are 2, 4, or 8 bytes long. Given that
46 we will probably run into problems on machines where some of these assumptions
47 are invalid (64-bit ints for example), we don't bother at this time to try to
48 make this code more flexible and just use shorts, ints, and longs (and their
49 sizes) where it seems appropriate. I.E. we use a short int to hold DWARF
50 tags, and assume that the tag size in the file is the same as sizeof(short).
51
52 FIXME: See other FIXME's and "ifdef 0" scattered throughout the code for
53 other things to work on, if you get bored. :-)
54
55 */
56
57 #include <stdio.h>
58 #ifdef __STDC__
59 #include <stdarg.h>
60 #else
61 #include <varargs.h>
62 #endif
63 #include <fcntl.h>
64
65 #include "defs.h"
66 #include "bfd.h"
67 #include "symtab.h"
68 #include "symfile.h"
69 #include "elf/dwarf.h"
70 #include "ansidecl.h"
71 #include "buildsym.h"
72
73 #ifdef MAINTENANCE /* Define to 1 to compile in some maintenance stuff */
74 #define SQUAWK(stuff) dwarfwarn stuff
75 #else
76 #define SQUAWK(stuff)
77 #endif
78
79 #ifndef R_FP /* FIXME */
80 #define R_FP 14 /* Kludge to get frame pointer register number */
81 #endif
82
83 typedef unsigned int DIEREF; /* Reference to a DIE */
84
85 #ifndef GCC_PRODUCER
86 #define GCC_PRODUCER "GNU C "
87 #endif
88
89 #define STREQ(a,b) (strcmp(a,b)==0)
90 #define STREQN(a,b,n) (strncmp(a,b,n)==0)
91
92 /* The Amiga SVR4 header file <dwarf.h> defines AT_element_list as a
93 FORM_BLOCK2, and this is the value emitted by the AT&T compiler.
94 However, the Issue 2 DWARF specification from AT&T defines it as
95 a FORM_BLOCK4, as does the latest specification from UI/PLSIG.
96 For backwards compatibility with the AT&T compiler produced executables
97 we define AT_short_element_list for this variant. */
98
99 #define AT_short_element_list (0x00f0|FORM_BLOCK2)
100
101 /* External variables referenced. */
102
103 extern CORE_ADDR startup_file_start; /* From blockframe.c */
104 extern CORE_ADDR startup_file_end; /* From blockframe.c */
105 extern CORE_ADDR entry_scope_lowpc; /* From blockframe.c */
106 extern CORE_ADDR entry_scope_highpc; /* From blockframc.c */
107 extern CORE_ADDR main_scope_lowpc; /* From blockframe.c */
108 extern CORE_ADDR main_scope_highpc; /* From blockframc.c */
109 extern int info_verbose; /* From main.c; nonzero => verbose */
110
111
112 /* The DWARF debugging information consists of two major pieces,
113 one is a block of DWARF Information Entries (DIE's) and the other
114 is a line number table. The "struct dieinfo" structure contains
115 the information for a single DIE, the one currently being processed.
116
117 In order to make it easier to randomly access the attribute fields
118 of the current DIE, which are specifically unordered within the DIE
119 each DIE is scanned and an instance of the "struct dieinfo"
120 structure is initialized.
121
122 Initialization is done in two levels. The first, done by basicdieinfo(),
123 just initializes those fields that are vital to deciding whether or not
124 to use this DIE, how to skip past it, etc. The second, done by the
125 function completedieinfo(), fills in the rest of the information.
126
127 Attributes which have block forms are not interpreted at the time
128 the DIE is scanned, instead we just save pointers to the start
129 of their value fields.
130
131 Some fields have a flag <name>_p that is set when the value of the
132 field is valid (I.E. we found a matching attribute in the DIE). Since
133 we may want to test for the presence of some attributes in the DIE,
134 such as AT_low_pc, without restricting the values of the field,
135 we need someway to note that we found such an attribute.
136
137 */
138
139 typedef char BLOCK;
140
141 struct dieinfo {
142 char * die; /* Pointer to the raw DIE data */
143 long dielength; /* Length of the raw DIE data */
144 DIEREF dieref; /* Offset of this DIE */
145 short dietag; /* Tag for this DIE */
146 long at_padding;
147 long at_sibling;
148 BLOCK * at_location;
149 char * at_name;
150 unsigned short at_fund_type;
151 BLOCK * at_mod_fund_type;
152 long at_user_def_type;
153 BLOCK * at_mod_u_d_type;
154 short at_ordering;
155 BLOCK * at_subscr_data;
156 long at_byte_size;
157 short at_bit_offset;
158 long at_bit_size;
159 BLOCK * at_element_list;
160 long at_stmt_list;
161 long at_low_pc;
162 long at_high_pc;
163 long at_language;
164 long at_member;
165 long at_discr;
166 BLOCK * at_discr_value;
167 short at_visibility;
168 long at_import;
169 BLOCK * at_string_length;
170 char * at_comp_dir;
171 char * at_producer;
172 long at_frame_base;
173 long at_start_scope;
174 long at_stride_size;
175 long at_src_info;
176 short at_prototyped;
177 unsigned int has_at_low_pc:1;
178 unsigned int has_at_stmt_list:1;
179 unsigned int short_element_list:1;
180 };
181
182 static int diecount; /* Approximate count of dies for compilation unit */
183 static struct dieinfo *curdie; /* For warnings and such */
184
185 static char *dbbase; /* Base pointer to dwarf info */
186 static int dbroff; /* Relative offset from start of .debug section */
187 static char *lnbase; /* Base pointer to line section */
188 static int isreg; /* Kludge to identify register variables */
189 static int offreg; /* Kludge to identify basereg references */
190
191 static CORE_ADDR baseaddr; /* Add to each symbol value */
192
193 /* Each partial symbol table entry contains a pointer to private data for the
194 read_symtab() function to use when expanding a partial symbol table entry
195 to a full symbol table entry. For DWARF debugging info, this data is
196 contained in the following structure and macros are provided for easy
197 access to the members given a pointer to a partial symbol table entry.
198
199 dbfoff Always the absolute file offset to the start of the ".debug"
200 section for the file containing the DIE's being accessed.
201
202 dbroff Relative offset from the start of the ".debug" access to the
203 first DIE to be accessed. When building the partial symbol
204 table, this value will be zero since we are accessing the
205 entire ".debug" section. When expanding a partial symbol
206 table entry, this value will be the offset to the first
207 DIE for the compilation unit containing the symbol that
208 triggers the expansion.
209
210 dblength The size of the chunk of DIE's being examined, in bytes.
211
212 lnfoff The absolute file offset to the line table fragment. Ignored
213 when building partial symbol tables, but used when expanding
214 them, and contains the absolute file offset to the fragment
215 of the ".line" section containing the line numbers for the
216 current compilation unit.
217 */
218
219 struct dwfinfo {
220 int dbfoff; /* Absolute file offset to start of .debug section */
221 int dbroff; /* Relative offset from start of .debug section */
222 int dblength; /* Size of the chunk of DIE's being examined */
223 int lnfoff; /* Absolute file offset to line table fragment */
224 };
225
226 #define DBFOFF(p) (((struct dwfinfo *)((p)->read_symtab_private))->dbfoff)
227 #define DBROFF(p) (((struct dwfinfo *)((p)->read_symtab_private))->dbroff)
228 #define DBLENGTH(p) (((struct dwfinfo *)((p)->read_symtab_private))->dblength)
229 #define LNFOFF(p) (((struct dwfinfo *)((p)->read_symtab_private))->lnfoff)
230
231 /* The generic symbol table building routines have separate lists for
232 file scope symbols and all all other scopes (local scopes). So
233 we need to select the right one to pass to add_symbol_to_list().
234 We do it by keeping a pointer to the correct list in list_in_scope.
235
236 FIXME: The original dwarf code just treated the file scope as the first
237 local scope, and all other local scopes as nested local scopes, and worked
238 fine. Check to see if we really need to distinguish these in buildsym.c */
239
240 struct pending **list_in_scope = &file_symbols;
241
242 /* DIES which have user defined types or modified user defined types refer to
243 other DIES for the type information. Thus we need to associate the offset
244 of a DIE for a user defined type with a pointer to the type information.
245
246 Originally this was done using a simple but expensive algorithm, with an
247 array of unsorted structures, each containing an offset/type-pointer pair.
248 This array was scanned linearly each time a lookup was done. The result
249 was that gdb was spending over half it's startup time munging through this
250 array of pointers looking for a structure that had the right offset member.
251
252 The second attempt used the same array of structures, but the array was
253 sorted using qsort each time a new offset/type was recorded, and a binary
254 search was used to find the type pointer for a given DIE offset. This was
255 even slower, due to the overhead of sorting the array each time a new
256 offset/type pair was entered.
257
258 The third attempt uses a fixed size array of type pointers, indexed by a
259 value derived from the DIE offset. Since the minimum DIE size is 4 bytes,
260 we can divide any DIE offset by 4 to obtain a unique index into this fixed
261 size array. Since each element is a 4 byte pointer, it takes exactly as
262 much memory to hold this array as to hold the DWARF info for a given
263 compilation unit. But it gets freed as soon as we are done with it. */
264
265 static struct type **utypes; /* Pointer to array of user type pointers */
266 static int numutypes; /* Max number of user type pointers */
267
268 /* Forward declarations of static functions so we don't have to worry
269 about ordering within this file. The EXFUN macro may be slightly
270 misleading. Should probably be called DCLFUN instead, or something
271 more intuitive, since it can be used for both static and external
272 definitions. */
273
274 static void
275 EXFUN (dwarfwarn, (char *fmt DOTS));
276
277 static void
278 EXFUN (scan_partial_symbols, (char *thisdie AND char *enddie));
279
280 static void
281 EXFUN (scan_compilation_units,
282 (char *filename AND char *thisdie AND char *enddie
283 AND unsigned int dbfoff AND unsigned int lnoffset
284 AND struct objfile *objfile));
285
286 static struct partial_symtab *
287 EXFUN(dwarf_start_psymtab, (struct objfile *objfile AND CORE_ADDR addr
288 AND char *filename AND CORE_ADDR textlow
289 AND CORE_ADDR texthigh AND int dbfoff
290 AND int curoff AND int culength AND int lnfoff
291 AND struct partial_symbol *global_syms
292 AND struct partial_symbol *static_syms));
293
294 static void
295 EXFUN(add_partial_symbol, (struct dieinfo *dip));
296
297 static void
298 EXFUN(init_psymbol_list, (int total_symbols));
299
300 static void
301 EXFUN(basicdieinfo, (struct dieinfo *dip AND char *diep));
302
303 static void
304 EXFUN(completedieinfo, (struct dieinfo *dip));
305
306 static void
307 EXFUN(dwarf_psymtab_to_symtab, (struct partial_symtab *pst));
308
309 static void
310 EXFUN(psymtab_to_symtab_1, (struct partial_symtab *pst));
311
312 static struct symtab *
313 EXFUN(read_ofile_symtab, (struct partial_symtab *pst));
314
315 static void
316 EXFUN(process_dies,
317 (char *thisdie AND char *enddie AND struct objfile *objfile));
318
319 static void
320 EXFUN(read_structure_scope,
321 (struct dieinfo *dip AND char *thisdie AND char *enddie AND
322 struct objfile *objfile));
323
324 static struct type *
325 EXFUN(decode_array_element_type, (char *scan AND char *end));
326
327 static struct type *
328 EXFUN(decode_subscr_data, (char *scan AND char *end));
329
330 static void
331 EXFUN(dwarf_read_array_type, (struct dieinfo *dip));
332
333 static void
334 EXFUN(read_subroutine_type,
335 (struct dieinfo *dip AND char *thisdie AND char *enddie));
336
337 static void
338 EXFUN(read_enumeration,
339 (struct dieinfo *dip AND char *thisdie AND char *enddie));
340
341 static struct type *
342 EXFUN(struct_type,
343 (struct dieinfo *dip AND char *thisdie AND char *enddie AND
344 struct objfile *objfile));
345
346 static struct type *
347 EXFUN(enum_type, (struct dieinfo *dip));
348
349 static void
350 EXFUN(decode_line_numbers, (char *linetable));
351
352 static struct type *
353 EXFUN(decode_die_type, (struct dieinfo *dip));
354
355 static struct type *
356 EXFUN(decode_mod_fund_type, (char *typedata));
357
358 static struct type *
359 EXFUN(decode_mod_u_d_type, (char *typedata));
360
361 static struct type *
362 EXFUN(decode_modified_type,
363 (unsigned char *modifiers AND unsigned short modcount AND int mtype));
364
365 static struct type *
366 EXFUN(decode_fund_type, (unsigned short fundtype));
367
368 static char *
369 EXFUN(create_name, (char *name AND struct obstack *obstackp));
370
371 static struct type *
372 EXFUN(lookup_utype, (DIEREF dieref));
373
374 static struct type *
375 EXFUN(alloc_utype, (DIEREF dieref AND struct type *usetype));
376
377 static struct symbol *
378 EXFUN(new_symbol, (struct dieinfo *dip));
379
380 static int
381 EXFUN(locval, (char *loc));
382
383 static void
384 EXFUN(record_misc_function, (char *name AND CORE_ADDR address AND
385 enum misc_function_type));
386
387 static int
388 EXFUN(compare_psymbols,
389 (struct partial_symbol *s1 AND struct partial_symbol *s2));
390
391
392 /*
393
394 GLOBAL FUNCTION
395
396 dwarf_build_psymtabs -- build partial symtabs from DWARF debug info
397
398 SYNOPSIS
399
400 void dwarf_build_psymtabs (int desc, char *filename, CORE_ADDR addr,
401 int mainline, unsigned int dbfoff, unsigned int dbsize,
402 unsigned int lnoffset, unsigned int lnsize,
403 struct objfile *objfile)
404
405 DESCRIPTION
406
407 This function is called upon to build partial symtabs from files
408 containing DIE's (Dwarf Information Entries) and DWARF line numbers.
409
410 It is passed a file descriptor for an open file containing the DIES
411 and line number information, the corresponding filename for that
412 file, a base address for relocating the symbols, a flag indicating
413 whether or not this debugging information is from a "main symbol
414 table" rather than a shared library or dynamically linked file,
415 and file offset/size pairs for the DIE information and line number
416 information.
417
418 RETURNS
419
420 No return value.
421
422 */
423
424 void
425 DEFUN(dwarf_build_psymtabs,
426 (desc, filename, addr, mainline, dbfoff, dbsize, lnoffset, lnsize,
427 objfile),
428 int desc AND
429 char *filename AND
430 CORE_ADDR addr AND
431 int mainline AND
432 unsigned int dbfoff AND
433 unsigned int dbsize AND
434 unsigned int lnoffset AND
435 unsigned int lnsize AND
436 struct objfile *objfile)
437 {
438 struct cleanup *back_to;
439
440 dbbase = xmalloc (dbsize);
441 dbroff = 0;
442 if ((lseek (desc, dbfoff, 0) != dbfoff) ||
443 (read (desc, dbbase, dbsize) != dbsize))
444 {
445 free (dbbase);
446 error ("can't read DWARF data from '%s'", filename);
447 }
448 back_to = make_cleanup (free, dbbase);
449
450 /* If we are reinitializing, or if we have never loaded syms yet, init.
451 Since we have no idea how many DIES we are looking at, we just guess
452 some arbitrary value. */
453
454 if (mainline || global_psymbols.size == 0 || static_psymbols.size == 0)
455 {
456 init_psymbol_list (1024);
457 }
458
459 /* From this point on, we don't need to pass mainline around, so zap
460 baseaddr to zero if we don't need relocation. */
461
462 if (mainline)
463 {
464 baseaddr = 0;
465 }
466 else
467 {
468 baseaddr = addr;
469 }
470
471 /* Follow the compilation unit sibling chain, building a partial symbol
472 table entry for each one. Save enough information about each compilation
473 unit to locate the full DWARF information later. */
474
475 scan_compilation_units (filename, dbbase, dbbase + dbsize,
476 dbfoff, lnoffset, objfile);
477
478 do_cleanups (back_to);
479 }
480
481
482 /*
483
484 LOCAL FUNCTION
485
486 record_misc_function -- add entry to miscellaneous function vector
487
488 SYNOPSIS
489
490 static void record_misc_function (char *name, CORE_ADDR address,
491 enum misc_function_type mf_type)
492
493 DESCRIPTION
494
495 Given a pointer to the name of a symbol that should be added to the
496 miscellaneous function vector, and the address associated with that
497 symbol, records this information for later use in building the
498 miscellaneous function vector.
499
500 */
501
502 static void
503 DEFUN(record_misc_function, (name, address, mf_type),
504 char *name AND CORE_ADDR address AND enum misc_function_type mf_type)
505 {
506 prim_record_misc_function (obsavestring (name, strlen (name)), address,
507 mf_type);
508 }
509
510 /*
511
512 LOCAL FUNCTION
513
514 dwarfwarn -- issue a DWARF related warning
515
516 DESCRIPTION
517
518 Issue warnings about DWARF related things that aren't serious enough
519 to warrant aborting with an error, but should not be ignored either.
520 This includes things like detectable corruption in DIE's, missing
521 DIE's, unimplemented features, etc.
522
523 In general, running across tags or attributes that we don't recognize
524 is not considered to be a problem and we should not issue warnings
525 about such.
526
527 NOTES
528
529 We mostly follow the example of the error() routine, but without
530 returning to command level. It is arguable about whether warnings
531 should be issued at all, and if so, where they should go (stdout or
532 stderr).
533
534 We assume that curdie is valid and contains at least the basic
535 information for the DIE where the problem was noticed.
536 */
537
538 #ifdef __STDC__
539
540 static void
541 DEFUN(dwarfwarn, (fmt), char *fmt DOTS)
542 {
543 va_list ap;
544
545 va_start (ap, fmt);
546 warning_setup ();
547 fprintf (stderr, "DWARF warning (ref 0x%x): ", curdie -> dieref);
548 if (curdie -> at_name)
549 {
550 fprintf (stderr, "'%s': ", curdie -> at_name);
551 }
552 vfprintf (stderr, fmt, ap);
553 fprintf (stderr, "\n");
554 fflush (stderr);
555 va_end (ap);
556 }
557
558 #else
559
560 static void
561 dwarfwarn (va_alist)
562 va_dcl
563 {
564 va_list ap;
565 char *fmt;
566
567 va_start (ap);
568 fmt = va_arg (ap, char *);
569 warning_setup ();
570 fprintf (stderr, "DWARF warning (ref 0x%x): ", curdie -> dieref);
571 if (curdie -> at_name)
572 {
573 fprintf (stderr, "'%s': ", curdie -> at_name);
574 }
575 vfprintf (stderr, fmt, ap);
576 fprintf (stderr, "\n");
577 fflush (stderr);
578 va_end (ap);
579 }
580
581 #endif
582
583 /*
584
585 LOCAL FUNCTION
586
587 compare_psymbols -- compare two partial symbols by name
588
589 DESCRIPTION
590
591 Given pointer to two partial symbol table entries, compare
592 them by name and return -N, 0, or +N (ala strcmp). Typically
593 used by sorting routines like qsort().
594
595 NOTES
596
597 This is a copy from dbxread.c. It should be moved to a generic
598 gdb file and made available for all psymtab builders (FIXME).
599
600 Does direct compare of first two characters before punting
601 and passing to strcmp for longer compares. Note that the
602 original version had a bug whereby two null strings or two
603 identically named one character strings would return the
604 comparison of memory following the null byte.
605
606 */
607
608 static int
609 DEFUN(compare_psymbols, (s1, s2),
610 struct partial_symbol *s1 AND
611 struct partial_symbol *s2)
612 {
613 register char *st1 = SYMBOL_NAME (s1);
614 register char *st2 = SYMBOL_NAME (s2);
615
616 if ((st1[0] - st2[0]) || !st1[0])
617 {
618 return (st1[0] - st2[0]);
619 }
620 else if ((st1[1] - st2[1]) || !st1[1])
621 {
622 return (st1[1] - st2[1]);
623 }
624 else
625 {
626 return (strcmp (st1 + 2, st2 + 2));
627 }
628 }
629
630 /*
631
632 LOCAL FUNCTION
633
634 read_lexical_block_scope -- process all dies in a lexical block
635
636 SYNOPSIS
637
638 static void read_lexical_block_scope (struct dieinfo *dip,
639 char *thisdie, char *enddie)
640
641 DESCRIPTION
642
643 Process all the DIES contained within a lexical block scope.
644 Start a new scope, process the dies, and then close the scope.
645
646 */
647
648 static void
649 DEFUN(read_lexical_block_scope, (dip, thisdie, enddie, objfile),
650 struct dieinfo *dip AND
651 char *thisdie AND
652 char *enddie AND
653 struct objfile *objfile)
654 {
655 register struct context_stack *new;
656
657 (void) push_context (0, dip -> at_low_pc);
658 process_dies (thisdie + dip -> dielength, enddie, objfile);
659 new = pop_context ();
660 if (local_symbols != NULL)
661 {
662 finish_block (0, &local_symbols, new -> old_blocks, new -> start_addr,
663 dip -> at_high_pc);
664 }
665 local_symbols = new -> locals;
666 }
667
668 /*
669
670 LOCAL FUNCTION
671
672 lookup_utype -- look up a user defined type from die reference
673
674 SYNOPSIS
675
676 static type *lookup_utype (DIEREF dieref)
677
678 DESCRIPTION
679
680 Given a DIE reference, lookup the user defined type associated with
681 that DIE, if it has been registered already. If not registered, then
682 return NULL. Alloc_utype() can be called to register an empty
683 type for this reference, which will be filled in later when the
684 actual referenced DIE is processed.
685 */
686
687 static struct type *
688 DEFUN(lookup_utype, (dieref), DIEREF dieref)
689 {
690 struct type *type = NULL;
691 int utypeidx;
692
693 utypeidx = (dieref - dbroff) / 4;
694 if ((utypeidx < 0) || (utypeidx >= numutypes))
695 {
696 dwarfwarn ("reference to DIE (0x%x) outside compilation unit", dieref);
697 }
698 else
699 {
700 type = *(utypes + utypeidx);
701 }
702 return (type);
703 }
704
705
706 /*
707
708 LOCAL FUNCTION
709
710 alloc_utype -- add a user defined type for die reference
711
712 SYNOPSIS
713
714 static type *alloc_utype (DIEREF dieref, struct type *utypep)
715
716 DESCRIPTION
717
718 Given a die reference DIEREF, and a possible pointer to a user
719 defined type UTYPEP, register that this reference has a user
720 defined type and either use the specified type in UTYPEP or
721 make a new empty type that will be filled in later.
722
723 We should only be called after calling lookup_utype() to verify that
724 there is not currently a type registered for DIEREF.
725 */
726
727 static struct type *
728 DEFUN(alloc_utype, (dieref, utypep),
729 DIEREF dieref AND
730 struct type *utypep)
731 {
732 struct type **typep;
733 int utypeidx;
734
735 utypeidx = (dieref - dbroff) / 4;
736 typep = utypes + utypeidx;
737 if ((utypeidx < 0) || (utypeidx >= numutypes))
738 {
739 utypep = builtin_type_int;
740 dwarfwarn ("reference to DIE (0x%x) outside compilation unit", dieref);
741 }
742 else if (*typep != NULL)
743 {
744 utypep = *typep;
745 SQUAWK (("internal error: dup user type allocation"));
746 }
747 else
748 {
749 if (utypep == NULL)
750 {
751 utypep = (struct type *)
752 obstack_alloc (symbol_obstack, sizeof (struct type));
753 (void) memset (utypep, 0, sizeof (struct type));
754 }
755 *typep = utypep;
756 }
757 return (utypep);
758 }
759
760 /*
761
762 LOCAL FUNCTION
763
764 decode_die_type -- return a type for a specified die
765
766 SYNOPSIS
767
768 static struct type *decode_die_type (struct dieinfo *dip)
769
770 DESCRIPTION
771
772 Given a pointer to a die information structure DIP, decode the
773 type of the die and return a pointer to the decoded type. All
774 dies without specific types default to type int.
775 */
776
777 static struct type *
778 DEFUN(decode_die_type, (dip), struct dieinfo *dip)
779 {
780 struct type *type = NULL;
781
782 if (dip -> at_fund_type != 0)
783 {
784 type = decode_fund_type (dip -> at_fund_type);
785 }
786 else if (dip -> at_mod_fund_type != NULL)
787 {
788 type = decode_mod_fund_type (dip -> at_mod_fund_type);
789 }
790 else if (dip -> at_user_def_type)
791 {
792 if ((type = lookup_utype (dip -> at_user_def_type)) == NULL)
793 {
794 type = alloc_utype (dip -> at_user_def_type, NULL);
795 }
796 }
797 else if (dip -> at_mod_u_d_type)
798 {
799 type = decode_mod_u_d_type (dip -> at_mod_u_d_type);
800 }
801 else
802 {
803 type = builtin_type_int;
804 }
805 return (type);
806 }
807
808 /*
809
810 LOCAL FUNCTION
811
812 struct_type -- compute and return the type for a struct or union
813
814 SYNOPSIS
815
816 static struct type *struct_type (struct dieinfo *dip, char *thisdie,
817 char *enddie, struct objfile *objfile)
818
819 DESCRIPTION
820
821 Given pointer to a die information structure for a die which
822 defines a union or structure (and MUST define one or the other),
823 and pointers to the raw die data that define the range of dies which
824 define the members, compute and return the user defined type for the
825 structure or union.
826 */
827
828 static struct type *
829 DEFUN(struct_type, (dip, thisdie, enddie, objfile),
830 struct dieinfo *dip AND
831 char *thisdie AND
832 char *enddie AND
833 struct objfile *objfile)
834 {
835 struct type *type;
836 struct nextfield {
837 struct nextfield *next;
838 struct field field;
839 };
840 struct nextfield *list = NULL;
841 struct nextfield *new;
842 int nfields = 0;
843 int n;
844 char *tpart1;
845 struct dieinfo mbr;
846 char *nextdie;
847
848 if ((type = lookup_utype (dip -> dieref)) == NULL)
849 {
850 /* No forward references created an empty type, so install one now */
851 type = alloc_utype (dip -> dieref, NULL);
852 }
853 INIT_CPLUS_SPECIFIC(type);
854 switch (dip -> dietag)
855 {
856 case TAG_structure_type:
857 TYPE_CODE (type) = TYPE_CODE_STRUCT;
858 tpart1 = "struct";
859 break;
860 case TAG_union_type:
861 TYPE_CODE (type) = TYPE_CODE_UNION;
862 tpart1 = "union";
863 break;
864 default:
865 /* Should never happen */
866 TYPE_CODE (type) = TYPE_CODE_UNDEF;
867 tpart1 = "???";
868 SQUAWK (("missing structure or union tag"));
869 break;
870 }
871 /* Some compilers try to be helpful by inventing "fake" names for
872 anonymous enums, structures, and unions, like "~0fake" or ".0fake".
873 Thanks, but no thanks... */
874 if (dip -> at_name != NULL
875 && *dip -> at_name != '~'
876 && *dip -> at_name != '.')
877 {
878 TYPE_NAME (type) = obconcat (tpart1, " ", dip -> at_name);
879 }
880 if (dip -> at_byte_size != 0)
881 {
882 TYPE_LENGTH (type) = dip -> at_byte_size;
883 }
884 thisdie += dip -> dielength;
885 while (thisdie < enddie)
886 {
887 basicdieinfo (&mbr, thisdie);
888 completedieinfo (&mbr);
889 if (mbr.dielength <= sizeof (long))
890 {
891 break;
892 }
893 else if (mbr.at_sibling != 0)
894 {
895 nextdie = dbbase + mbr.at_sibling - dbroff;
896 }
897 else
898 {
899 nextdie = thisdie + mbr.dielength;
900 }
901 switch (mbr.dietag)
902 {
903 case TAG_member:
904 /* Get space to record the next field's data. */
905 new = (struct nextfield *) alloca (sizeof (struct nextfield));
906 new -> next = list;
907 list = new;
908 /* Save the data. */
909 list -> field.name = savestring (mbr.at_name, strlen (mbr.at_name));
910 list -> field.type = decode_die_type (&mbr);
911 list -> field.bitpos = 8 * locval (mbr.at_location);
912 list -> field.bitsize = 0;
913 nfields++;
914 break;
915 default:
916 process_dies (thisdie, nextdie, objfile);
917 break;
918 }
919 thisdie = nextdie;
920 }
921 /* Now create the vector of fields, and record how big it is. We may
922 not even have any fields, if this DIE was generated due to a reference
923 to an anonymous structure or union. In this case, TYPE_FLAG_STUB is
924 set, which clues gdb in to the fact that it needs to search elsewhere
925 for the full structure definition. */
926 if (nfields == 0)
927 {
928 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
929 }
930 else
931 {
932 TYPE_NFIELDS (type) = nfields;
933 TYPE_FIELDS (type) = (struct field *)
934 obstack_alloc (symbol_obstack, sizeof (struct field) * nfields);
935 /* Copy the saved-up fields into the field vector. */
936 for (n = nfields; list; list = list -> next)
937 {
938 TYPE_FIELD (type, --n) = list -> field;
939 }
940 }
941 return (type);
942 }
943
944 /*
945
946 LOCAL FUNCTION
947
948 read_structure_scope -- process all dies within struct or union
949
950 SYNOPSIS
951
952 static void read_structure_scope (struct dieinfo *dip,
953 char *thisdie, char *enddie, struct objfile *objfile)
954
955 DESCRIPTION
956
957 Called when we find the DIE that starts a structure or union
958 scope (definition) to process all dies that define the members
959 of the structure or union. DIP is a pointer to the die info
960 struct for the DIE that names the structure or union.
961
962 NOTES
963
964 Note that we need to call struct_type regardless of whether or not
965 the DIE has an at_name attribute, since it might be an anonymous
966 structure or union. This gets the type entered into our set of
967 user defined types.
968
969 However, if the structure is incomplete (an opaque struct/union)
970 then suppress creating a symbol table entry for it since gdb only
971 wants to find the one with the complete definition. Note that if
972 it is complete, we just call new_symbol, which does it's own
973 checking about whether the struct/union is anonymous or not (and
974 suppresses creating a symbol table entry itself).
975
976 */
977
978 static void
979 DEFUN(read_structure_scope, (dip, thisdie, enddie, objfile),
980 struct dieinfo *dip AND
981 char *thisdie AND
982 char *enddie AND
983 struct objfile *objfile)
984 {
985 struct type *type;
986 struct symbol *sym;
987
988 type = struct_type (dip, thisdie, enddie, objfile);
989 if (!(TYPE_FLAGS (type) & TYPE_FLAG_STUB))
990 {
991 if ((sym = new_symbol (dip)) != NULL)
992 {
993 SYMBOL_TYPE (sym) = type;
994 }
995 }
996 }
997
998 /*
999
1000 LOCAL FUNCTION
1001
1002 decode_array_element_type -- decode type of the array elements
1003
1004 SYNOPSIS
1005
1006 static struct type *decode_array_element_type (char *scan, char *end)
1007
1008 DESCRIPTION
1009
1010 As the last step in decoding the array subscript information for an
1011 array DIE, we need to decode the type of the array elements. We are
1012 passed a pointer to this last part of the subscript information and
1013 must return the appropriate type. If the type attribute is not
1014 recognized, just warn about the problem and return type int.
1015 */
1016
1017 static struct type *
1018 DEFUN(decode_array_element_type, (scan, end), char *scan AND char *end)
1019 {
1020 struct type *typep;
1021 short attribute;
1022 DIEREF dieref;
1023 unsigned short fundtype;
1024
1025 (void) memcpy (&attribute, scan, sizeof (short));
1026 scan += sizeof (short);
1027 switch (attribute)
1028 {
1029 case AT_fund_type:
1030 (void) memcpy (&fundtype, scan, sizeof (short));
1031 typep = decode_fund_type (fundtype);
1032 break;
1033 case AT_mod_fund_type:
1034 typep = decode_mod_fund_type (scan);
1035 break;
1036 case AT_user_def_type:
1037 (void) memcpy (&dieref, scan, sizeof (DIEREF));
1038 if ((typep = lookup_utype (dieref)) == NULL)
1039 {
1040 typep = alloc_utype (dieref, NULL);
1041 }
1042 break;
1043 case AT_mod_u_d_type:
1044 typep = decode_mod_u_d_type (scan);
1045 break;
1046 default:
1047 SQUAWK (("bad array element type attribute 0x%x", attribute));
1048 typep = builtin_type_int;
1049 break;
1050 }
1051 return (typep);
1052 }
1053
1054 /*
1055
1056 LOCAL FUNCTION
1057
1058 decode_subscr_data -- decode array subscript and element type data
1059
1060 SYNOPSIS
1061
1062 static struct type *decode_subscr_data (char *scan, char *end)
1063
1064 DESCRIPTION
1065
1066 The array subscripts and the data type of the elements of an
1067 array are described by a list of data items, stored as a block
1068 of contiguous bytes. There is a data item describing each array
1069 dimension, and a final data item describing the element type.
1070 The data items are ordered the same as their appearance in the
1071 source (I.E. leftmost dimension first, next to leftmost second,
1072 etc).
1073
1074 We are passed a pointer to the start of the block of bytes
1075 containing the data items, and a pointer to the first byte past
1076 the data. This function decodes the data and returns a type.
1077
1078 BUGS
1079 FIXME: This code only implements the forms currently used
1080 by the AT&T and GNU C compilers.
1081
1082 The end pointer is supplied for error checking, maybe we should
1083 use it for that...
1084 */
1085
1086 static struct type *
1087 DEFUN(decode_subscr_data, (scan, end), char *scan AND char *end)
1088 {
1089 struct type *typep = NULL;
1090 struct type *nexttype;
1091 int format;
1092 short fundtype;
1093 long lowbound;
1094 long highbound;
1095
1096 format = *scan++;
1097 switch (format)
1098 {
1099 case FMT_ET:
1100 typep = decode_array_element_type (scan, end);
1101 break;
1102 case FMT_FT_C_C:
1103 (void) memcpy (&fundtype, scan, sizeof (short));
1104 scan += sizeof (short);
1105 if (fundtype != FT_integer && fundtype != FT_signed_integer
1106 && fundtype != FT_unsigned_integer)
1107 {
1108 SQUAWK (("array subscripts must be integral types, not type 0x%x",
1109 fundtype));
1110 }
1111 else
1112 {
1113 (void) memcpy (&lowbound, scan, sizeof (long));
1114 scan += sizeof (long);
1115 (void) memcpy (&highbound, scan, sizeof (long));
1116 scan += sizeof (long);
1117 nexttype = decode_subscr_data (scan, end);
1118 if (nexttype != NULL)
1119 {
1120 typep = (struct type *)
1121 obstack_alloc (symbol_obstack, sizeof (struct type));
1122 (void) memset (typep, 0, sizeof (struct type));
1123 TYPE_CODE (typep) = TYPE_CODE_ARRAY;
1124 TYPE_LENGTH (typep) = TYPE_LENGTH (nexttype);
1125 TYPE_LENGTH (typep) *= lowbound + highbound + 1;
1126 TYPE_TARGET_TYPE (typep) = nexttype;
1127 }
1128 }
1129 break;
1130 case FMT_FT_C_X:
1131 case FMT_FT_X_C:
1132 case FMT_FT_X_X:
1133 case FMT_UT_C_C:
1134 case FMT_UT_C_X:
1135 case FMT_UT_X_C:
1136 case FMT_UT_X_X:
1137 SQUAWK (("array subscript format 0x%x not handled yet", format));
1138 break;
1139 default:
1140 SQUAWK (("unknown array subscript format %x", format));
1141 break;
1142 }
1143 return (typep);
1144 }
1145
1146 /*
1147
1148 LOCAL FUNCTION
1149
1150 dwarf_read_array_type -- read TAG_array_type DIE
1151
1152 SYNOPSIS
1153
1154 static void dwarf_read_array_type (struct dieinfo *dip)
1155
1156 DESCRIPTION
1157
1158 Extract all information from a TAG_array_type DIE and add to
1159 the user defined type vector.
1160 */
1161
1162 static void
1163 DEFUN(dwarf_read_array_type, (dip), struct dieinfo *dip)
1164 {
1165 struct type *type;
1166 struct type *utype;
1167 char *sub;
1168 char *subend;
1169 short temp;
1170
1171 if (dip -> at_ordering != ORD_row_major)
1172 {
1173 /* FIXME: Can gdb even handle column major arrays? */
1174 SQUAWK (("array not row major; not handled correctly"));
1175 }
1176 if ((sub = dip -> at_subscr_data) != NULL)
1177 {
1178 (void) memcpy (&temp, sub, sizeof (short));
1179 subend = sub + sizeof (short) + temp;
1180 sub += sizeof (short);
1181 type = decode_subscr_data (sub, subend);
1182 if (type == NULL)
1183 {
1184 if ((utype = lookup_utype (dip -> dieref)) == NULL)
1185 {
1186 utype = alloc_utype (dip -> dieref, NULL);
1187 }
1188 TYPE_CODE (utype) = TYPE_CODE_ARRAY;
1189 TYPE_TARGET_TYPE (utype) = builtin_type_int;
1190 TYPE_LENGTH (utype) = 1 * TYPE_LENGTH (TYPE_TARGET_TYPE (utype));
1191 }
1192 else
1193 {
1194 if ((utype = lookup_utype (dip -> dieref)) == NULL)
1195 {
1196 (void) alloc_utype (dip -> dieref, type);
1197 }
1198 else
1199 {
1200 TYPE_CODE (utype) = TYPE_CODE_ARRAY;
1201 TYPE_LENGTH (utype) = TYPE_LENGTH (type);
1202 TYPE_TARGET_TYPE (utype) = TYPE_TARGET_TYPE (type);
1203 }
1204 }
1205 }
1206 }
1207
1208 /*
1209
1210 LOCAL FUNCTION
1211
1212 read_subroutine_type -- process TAG_subroutine_type dies
1213
1214 SYNOPSIS
1215
1216 static void read_subroutine_type (struct dieinfo *dip, char thisdie,
1217 char *enddie)
1218
1219 DESCRIPTION
1220
1221 Handle DIES due to C code like:
1222
1223 struct foo {
1224 int (*funcp)(int a, long l); (Generates TAG_subroutine_type DIE)
1225 int b;
1226 };
1227
1228 NOTES
1229
1230 The parameter DIES are currently ignored. See if gdb has a way to
1231 include this info in it's type system, and decode them if so. Is
1232 this what the type structure's "arg_types" field is for? (FIXME)
1233 */
1234
1235 static void
1236 DEFUN(read_subroutine_type, (dip, thisdie, enddie),
1237 struct dieinfo *dip AND
1238 char *thisdie AND
1239 char *enddie)
1240 {
1241 struct type *type; /* Type that this function returns */
1242 struct type *ftype; /* Function that returns above type */
1243
1244 /* Decode the type that this subroutine returns */
1245
1246 type = decode_die_type (dip);
1247
1248 /* Check to see if we already have a partially constructed user
1249 defined type for this DIE, from a forward reference. */
1250
1251 if ((ftype = lookup_utype (dip -> dieref)) == NULL)
1252 {
1253 /* This is the first reference to one of these types. Make
1254 a new one and place it in the user defined types. */
1255 ftype = lookup_function_type (type);
1256 (void) alloc_utype (dip -> dieref, ftype);
1257 }
1258 else
1259 {
1260 /* We have an existing partially constructed type, so bash it
1261 into the correct type. */
1262 TYPE_TARGET_TYPE (ftype) = type;
1263 TYPE_FUNCTION_TYPE (type) = ftype;
1264 TYPE_LENGTH (ftype) = 1;
1265 TYPE_CODE (ftype) = TYPE_CODE_FUNC;
1266 }
1267 }
1268
1269 /*
1270
1271 LOCAL FUNCTION
1272
1273 read_enumeration -- process dies which define an enumeration
1274
1275 SYNOPSIS
1276
1277 static void read_enumeration (struct dieinfo *dip, char *thisdie,
1278 char *enddie)
1279
1280 DESCRIPTION
1281
1282 Given a pointer to a die which begins an enumeration, process all
1283 the dies that define the members of the enumeration.
1284
1285 NOTES
1286
1287 Note that we need to call enum_type regardless of whether or not we
1288 have a symbol, since we might have an enum without a tag name (thus
1289 no symbol for the tagname).
1290 */
1291
1292 static void
1293 DEFUN(read_enumeration, (dip, thisdie, enddie),
1294 struct dieinfo *dip AND
1295 char *thisdie AND
1296 char *enddie)
1297 {
1298 struct type *type;
1299 struct symbol *sym;
1300
1301 type = enum_type (dip);
1302 if ((sym = new_symbol (dip)) != NULL)
1303 {
1304 SYMBOL_TYPE (sym) = type;
1305 }
1306 }
1307
1308 /*
1309
1310 LOCAL FUNCTION
1311
1312 enum_type -- decode and return a type for an enumeration
1313
1314 SYNOPSIS
1315
1316 static type *enum_type (struct dieinfo *dip)
1317
1318 DESCRIPTION
1319
1320 Given a pointer to a die information structure for the die which
1321 starts an enumeration, process all the dies that define the members
1322 of the enumeration and return a type pointer for the enumeration.
1323
1324 At the same time, for each member of the enumeration, create a
1325 symbol for it with namespace VAR_NAMESPACE and class LOC_CONST,
1326 and give it the type of the enumeration itself.
1327
1328 NOTES
1329
1330 Note that the DWARF specification explicitly mandates that enum
1331 constants occur in reverse order from the source program order,
1332 for "consistency" and because this ordering is easier for many
1333 compilers to generate. (Draft 5, sec 3.9.5, Enumeration type
1334 Entries). Because gdb wants to see the enum members in program
1335 source order, we have to ensure that the order gets reversed while
1336 we are processing them.
1337 */
1338
1339 static struct type *
1340 DEFUN(enum_type, (dip), struct dieinfo *dip)
1341 {
1342 struct type *type;
1343 struct nextfield {
1344 struct nextfield *next;
1345 struct field field;
1346 };
1347 struct nextfield *list = NULL;
1348 struct nextfield *new;
1349 int nfields = 0;
1350 int n;
1351 char *scan;
1352 char *listend;
1353 long ltemp;
1354 short stemp;
1355 struct symbol *sym;
1356
1357 if ((type = lookup_utype (dip -> dieref)) == NULL)
1358 {
1359 /* No forward references created an empty type, so install one now */
1360 type = alloc_utype (dip -> dieref, NULL);
1361 }
1362 TYPE_CODE (type) = TYPE_CODE_ENUM;
1363 /* Some compilers try to be helpful by inventing "fake" names for
1364 anonymous enums, structures, and unions, like "~0fake" or ".0fake".
1365 Thanks, but no thanks... */
1366 if (dip -> at_name != NULL
1367 && *dip -> at_name != '~'
1368 && *dip -> at_name != '.')
1369 {
1370 TYPE_NAME (type) = obconcat ("enum", " ", dip -> at_name);
1371 }
1372 if (dip -> at_byte_size != 0)
1373 {
1374 TYPE_LENGTH (type) = dip -> at_byte_size;
1375 }
1376 if ((scan = dip -> at_element_list) != NULL)
1377 {
1378 if (dip -> short_element_list)
1379 {
1380 (void) memcpy (&stemp, scan, sizeof (stemp));
1381 listend = scan + stemp + sizeof (stemp);
1382 scan += sizeof (stemp);
1383 }
1384 else
1385 {
1386 (void) memcpy (&ltemp, scan, sizeof (ltemp));
1387 listend = scan + ltemp + sizeof (ltemp);
1388 scan += sizeof (ltemp);
1389 }
1390 while (scan < listend)
1391 {
1392 new = (struct nextfield *) alloca (sizeof (struct nextfield));
1393 new -> next = list;
1394 list = new;
1395 list -> field.type = NULL;
1396 list -> field.bitsize = 0;
1397 (void) memcpy (&list -> field.bitpos, scan, sizeof (long));
1398 scan += sizeof (long);
1399 list -> field.name = savestring (scan, strlen (scan));
1400 scan += strlen (scan) + 1;
1401 nfields++;
1402 /* Handcraft a new symbol for this enum member. */
1403 sym = (struct symbol *) obstack_alloc (symbol_obstack,
1404 sizeof (struct symbol));
1405 (void) memset (sym, 0, sizeof (struct symbol));
1406 SYMBOL_NAME (sym) = create_name (list -> field.name, symbol_obstack);
1407 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1408 SYMBOL_CLASS (sym) = LOC_CONST;
1409 SYMBOL_TYPE (sym) = type;
1410 SYMBOL_VALUE (sym) = list -> field.bitpos;
1411 add_symbol_to_list (sym, list_in_scope);
1412 }
1413 /* Now create the vector of fields, and record how big it is. This is
1414 where we reverse the order, by pulling the members of the list in
1415 reverse order from how they were inserted. If we have no fields
1416 (this is apparently possible in C++) then skip building a field
1417 vector. */
1418 if (nfields > 0)
1419 {
1420 TYPE_NFIELDS (type) = nfields;
1421 TYPE_FIELDS (type) = (struct field *)
1422 obstack_alloc (symbol_obstack, sizeof (struct field) * nfields);
1423 /* Copy the saved-up fields into the field vector. */
1424 for (n = 0; (n < nfields) && (list != NULL); list = list -> next)
1425 {
1426 TYPE_FIELD (type, n++) = list -> field;
1427 }
1428 }
1429 }
1430 return (type);
1431 }
1432
1433 /*
1434
1435 LOCAL FUNCTION
1436
1437 read_func_scope -- process all dies within a function scope
1438
1439 DESCRIPTION
1440
1441 Process all dies within a given function scope. We are passed
1442 a die information structure pointer DIP for the die which
1443 starts the function scope, and pointers into the raw die data
1444 that define the dies within the function scope.
1445
1446 For now, we ignore lexical block scopes within the function.
1447 The problem is that AT&T cc does not define a DWARF lexical
1448 block scope for the function itself, while gcc defines a
1449 lexical block scope for the function. We need to think about
1450 how to handle this difference, or if it is even a problem.
1451 (FIXME)
1452 */
1453
1454 static void
1455 DEFUN(read_func_scope, (dip, thisdie, enddie, objfile),
1456 struct dieinfo *dip AND
1457 char *thisdie AND
1458 char *enddie AND
1459 struct objfile *objfile)
1460 {
1461 register struct context_stack *new;
1462
1463 if (entry_point >= dip -> at_low_pc && entry_point < dip -> at_high_pc)
1464 {
1465 entry_scope_lowpc = dip -> at_low_pc;
1466 entry_scope_highpc = dip -> at_high_pc;
1467 }
1468 if (STREQ (dip -> at_name, "main")) /* FIXME: hardwired name */
1469 {
1470 main_scope_lowpc = dip -> at_low_pc;
1471 main_scope_highpc = dip -> at_high_pc;
1472 }
1473 new = push_context (0, dip -> at_low_pc);
1474 new -> name = new_symbol (dip);
1475 list_in_scope = &local_symbols;
1476 process_dies (thisdie + dip -> dielength, enddie, objfile);
1477 new = pop_context ();
1478 /* Make a block for the local symbols within. */
1479 finish_block (new -> name, &local_symbols, new -> old_blocks,
1480 new -> start_addr, dip -> at_high_pc);
1481 list_in_scope = &file_symbols;
1482 }
1483
1484 /*
1485
1486 LOCAL FUNCTION
1487
1488 read_file_scope -- process all dies within a file scope
1489
1490 DESCRIPTION
1491
1492 Process all dies within a given file scope. We are passed a
1493 pointer to the die information structure for the die which
1494 starts the file scope, and pointers into the raw die data which
1495 mark the range of dies within the file scope.
1496
1497 When the partial symbol table is built, the file offset for the line
1498 number table for each compilation unit is saved in the partial symbol
1499 table entry for that compilation unit. As the symbols for each
1500 compilation unit are read, the line number table is read into memory
1501 and the variable lnbase is set to point to it. Thus all we have to
1502 do is use lnbase to access the line number table for the current
1503 compilation unit.
1504 */
1505
1506 static void
1507 DEFUN(read_file_scope, (dip, thisdie, enddie, objfile),
1508 struct dieinfo *dip AND
1509 char *thisdie AND
1510 char *enddie AND
1511 struct objfile *objfile)
1512 {
1513 struct cleanup *back_to;
1514 struct symtab *symtab;
1515
1516 if (entry_point >= dip -> at_low_pc && entry_point < dip -> at_high_pc)
1517 {
1518 startup_file_start = dip -> at_low_pc;
1519 startup_file_end = dip -> at_high_pc;
1520 }
1521 if (dip -> at_producer != NULL)
1522 {
1523 processing_gcc_compilation =
1524 STREQN (dip -> at_producer, GCC_PRODUCER, strlen (GCC_PRODUCER));
1525 }
1526 numutypes = (enddie - thisdie) / 4;
1527 utypes = (struct type **) xmalloc (numutypes * sizeof (struct type *));
1528 back_to = make_cleanup (free, utypes);
1529 (void) memset (utypes, 0, numutypes * sizeof (struct type *));
1530 start_symtab (dip -> at_name, NULL, dip -> at_low_pc);
1531 decode_line_numbers (lnbase);
1532 process_dies (thisdie + dip -> dielength, enddie, objfile);
1533 symtab = end_symtab (dip -> at_high_pc, 0, 0, objfile);
1534 /* FIXME: The following may need to be expanded for other languages */
1535 switch (dip -> at_language)
1536 {
1537 case LANG_C89:
1538 case LANG_C:
1539 symtab -> language = language_c;
1540 break;
1541 case LANG_C_PLUS_PLUS:
1542 symtab -> language = language_cplus;
1543 break;
1544 default:
1545 ;
1546 }
1547 do_cleanups (back_to);
1548 utypes = NULL;
1549 numutypes = 0;
1550 }
1551
1552 /*
1553
1554 LOCAL FUNCTION
1555
1556 process_dies -- process a range of DWARF Information Entries
1557
1558 SYNOPSIS
1559
1560 static void process_dies (char *thisdie, char *enddie,
1561 struct objfile *objfile)
1562
1563 DESCRIPTION
1564
1565 Process all DIE's in a specified range. May be (and almost
1566 certainly will be) called recursively.
1567 */
1568
1569 static void
1570 DEFUN(process_dies, (thisdie, enddie, objfile),
1571 char *thisdie AND char *enddie AND struct objfile *objfile)
1572 {
1573 char *nextdie;
1574 struct dieinfo di;
1575
1576 while (thisdie < enddie)
1577 {
1578 basicdieinfo (&di, thisdie);
1579 if (di.dielength < sizeof (long))
1580 {
1581 break;
1582 }
1583 else if (di.dietag == TAG_padding)
1584 {
1585 nextdie = thisdie + di.dielength;
1586 }
1587 else
1588 {
1589 completedieinfo (&di);
1590 if (di.at_sibling != 0)
1591 {
1592 nextdie = dbbase + di.at_sibling - dbroff;
1593 }
1594 else
1595 {
1596 nextdie = thisdie + di.dielength;
1597 }
1598 switch (di.dietag)
1599 {
1600 case TAG_compile_unit:
1601 read_file_scope (&di, thisdie, nextdie, objfile);
1602 break;
1603 case TAG_global_subroutine:
1604 case TAG_subroutine:
1605 if (di.has_at_low_pc)
1606 {
1607 read_func_scope (&di, thisdie, nextdie, objfile);
1608 }
1609 break;
1610 case TAG_lexical_block:
1611 read_lexical_block_scope (&di, thisdie, nextdie, objfile);
1612 break;
1613 case TAG_structure_type:
1614 case TAG_union_type:
1615 read_structure_scope (&di, thisdie, nextdie, objfile);
1616 break;
1617 case TAG_enumeration_type:
1618 read_enumeration (&di, thisdie, nextdie);
1619 break;
1620 case TAG_subroutine_type:
1621 read_subroutine_type (&di, thisdie, nextdie);
1622 break;
1623 case TAG_array_type:
1624 dwarf_read_array_type (&di);
1625 break;
1626 default:
1627 (void) new_symbol (&di);
1628 break;
1629 }
1630 }
1631 thisdie = nextdie;
1632 }
1633 }
1634
1635 /*
1636
1637 LOCAL FUNCTION
1638
1639 decode_line_numbers -- decode a line number table fragment
1640
1641 SYNOPSIS
1642
1643 static void decode_line_numbers (char *tblscan, char *tblend,
1644 long length, long base, long line, long pc)
1645
1646 DESCRIPTION
1647
1648 Translate the DWARF line number information to gdb form.
1649
1650 The ".line" section contains one or more line number tables, one for
1651 each ".line" section from the objects that were linked.
1652
1653 The AT_stmt_list attribute for each TAG_source_file entry in the
1654 ".debug" section contains the offset into the ".line" section for the
1655 start of the table for that file.
1656
1657 The table itself has the following structure:
1658
1659 <table length><base address><source statement entry>
1660 4 bytes 4 bytes 10 bytes
1661
1662 The table length is the total size of the table, including the 4 bytes
1663 for the length information.
1664
1665 The base address is the address of the first instruction generated
1666 for the source file.
1667
1668 Each source statement entry has the following structure:
1669
1670 <line number><statement position><address delta>
1671 4 bytes 2 bytes 4 bytes
1672
1673 The line number is relative to the start of the file, starting with
1674 line 1.
1675
1676 The statement position either -1 (0xFFFF) or the number of characters
1677 from the beginning of the line to the beginning of the statement.
1678
1679 The address delta is the difference between the base address and
1680 the address of the first instruction for the statement.
1681
1682 Note that we must copy the bytes from the packed table to our local
1683 variables before attempting to use them, to avoid alignment problems
1684 on some machines, particularly RISC processors.
1685
1686 BUGS
1687
1688 Does gdb expect the line numbers to be sorted? They are now by
1689 chance/luck, but are not required to be. (FIXME)
1690
1691 The line with number 0 is unused, gdb apparently can discover the
1692 span of the last line some other way. How? (FIXME)
1693 */
1694
1695 static void
1696 DEFUN(decode_line_numbers, (linetable), char *linetable)
1697 {
1698 char *tblscan;
1699 char *tblend;
1700 long length;
1701 long base;
1702 long line;
1703 long pc;
1704
1705 if (linetable != NULL)
1706 {
1707 tblscan = tblend = linetable;
1708 (void) memcpy (&length, tblscan, sizeof (long));
1709 tblscan += sizeof (long);
1710 tblend += length;
1711 (void) memcpy (&base, tblscan, sizeof (long));
1712 base += baseaddr;
1713 tblscan += sizeof (long);
1714 while (tblscan < tblend)
1715 {
1716 (void) memcpy (&line, tblscan, sizeof (long));
1717 tblscan += sizeof (long) + sizeof (short);
1718 (void) memcpy (&pc, tblscan, sizeof (long));
1719 tblscan += sizeof (long);
1720 pc += base;
1721 if (line > 0)
1722 {
1723 record_line (current_subfile, line, pc);
1724 }
1725 }
1726 }
1727 }
1728
1729 /*
1730
1731 LOCAL FUNCTION
1732
1733 locval -- compute the value of a location attribute
1734
1735 SYNOPSIS
1736
1737 static int locval (char *loc)
1738
1739 DESCRIPTION
1740
1741 Given pointer to a string of bytes that define a location, compute
1742 the location and return the value.
1743
1744 When computing values involving the current value of the frame pointer,
1745 the value zero is used, which results in a value relative to the frame
1746 pointer, rather than the absolute value. This is what GDB wants
1747 anyway.
1748
1749 When the result is a register number, the global isreg flag is set,
1750 otherwise it is cleared. This is a kludge until we figure out a better
1751 way to handle the problem. Gdb's design does not mesh well with the
1752 DWARF notion of a location computing interpreter, which is a shame
1753 because the flexibility goes unused.
1754
1755 NOTES
1756
1757 Note that stack[0] is unused except as a default error return.
1758 Note that stack overflow is not yet handled.
1759 */
1760
1761 static int
1762 DEFUN(locval, (loc), char *loc)
1763 {
1764 unsigned short nbytes;
1765 auto int stack[64];
1766 int stacki;
1767 char *end;
1768 long regno;
1769
1770 (void) memcpy (&nbytes, loc, sizeof (short));
1771 end = loc + sizeof (short) + nbytes;
1772 stacki = 0;
1773 stack[stacki] = 0;
1774 isreg = 0;
1775 offreg = 0;
1776 for (loc += sizeof (short); loc < end; loc += sizeof (long))
1777 {
1778 switch (*loc++) {
1779 case 0:
1780 /* error */
1781 loc = end;
1782 break;
1783 case OP_REG:
1784 /* push register (number) */
1785 (void) memcpy (&stack[++stacki], loc, sizeof (long));
1786 isreg = 1;
1787 break;
1788 case OP_BASEREG:
1789 /* push value of register (number) */
1790 /* Actually, we compute the value as if register has 0 */
1791 offreg = 1;
1792 (void) memcpy (&regno, loc, sizeof (long));
1793 if (regno == R_FP)
1794 {
1795 stack[++stacki] = 0;
1796 }
1797 else
1798 {
1799 stack[++stacki] = 0;
1800 SQUAWK (("BASEREG %d not handled!", regno));
1801 }
1802 break;
1803 case OP_ADDR:
1804 /* push address (relocated address) */
1805 (void) memcpy (&stack[++stacki], loc, sizeof (long));
1806 break;
1807 case OP_CONST:
1808 /* push constant (number) */
1809 (void) memcpy (&stack[++stacki], loc, sizeof (long));
1810 break;
1811 case OP_DEREF2:
1812 /* pop, deref and push 2 bytes (as a long) */
1813 SQUAWK (("OP_DEREF2 address %#x not handled", stack[stacki]));
1814 break;
1815 case OP_DEREF4: /* pop, deref and push 4 bytes (as a long) */
1816 SQUAWK (("OP_DEREF4 address %#x not handled", stack[stacki]));
1817 break;
1818 case OP_ADD: /* pop top 2 items, add, push result */
1819 stack[stacki - 1] += stack[stacki];
1820 stacki--;
1821 break;
1822 }
1823 }
1824 return (stack[stacki]);
1825 }
1826
1827 /*
1828
1829 LOCAL FUNCTION
1830
1831 read_ofile_symtab -- build a full symtab entry from chunk of DIE's
1832
1833 SYNOPSIS
1834
1835 static struct symtab *read_ofile_symtab (struct partial_symtab *pst)
1836
1837 DESCRIPTION
1838
1839 */
1840
1841 static struct symtab *
1842 DEFUN(read_ofile_symtab, (pst),
1843 struct partial_symtab *pst)
1844 {
1845 struct cleanup *back_to;
1846 long lnsize;
1847 int foffset;
1848 bfd *abfd = pst->objfile->obfd;
1849
1850 /* Allocate a buffer for the entire chunk of DIE's for this compilation
1851 unit, seek to the location in the file, and read in all the DIE's. */
1852
1853 diecount = 0;
1854 dbbase = xmalloc (DBLENGTH(pst));
1855 dbroff = DBROFF(pst);
1856 foffset = DBFOFF(pst) + dbroff;
1857 baseaddr = pst -> addr;
1858 if (bfd_seek (abfd, foffset, 0) ||
1859 (bfd_read (dbbase, DBLENGTH(pst), 1, abfd) != DBLENGTH(pst)))
1860 {
1861 free (dbbase);
1862 error ("can't read DWARF data");
1863 }
1864 back_to = make_cleanup (free, dbbase);
1865
1866 /* If there is a line number table associated with this compilation unit
1867 then read the first long word from the line number table fragment, which
1868 contains the size of the fragment in bytes (including the long word
1869 itself). Allocate a buffer for the fragment and read it in for future
1870 processing. */
1871
1872 lnbase = NULL;
1873 if (LNFOFF (pst))
1874 {
1875 if (bfd_seek (abfd, LNFOFF (pst), 0) ||
1876 (bfd_read (&lnsize, sizeof(long), 1, abfd) != sizeof(long)))
1877 {
1878 error ("can't read DWARF line number table size");
1879 }
1880 lnbase = xmalloc (lnsize);
1881 if (bfd_seek (abfd, LNFOFF (pst), 0) ||
1882 (bfd_read (lnbase, lnsize, 1, abfd) != lnsize))
1883 {
1884 free (lnbase);
1885 error ("can't read DWARF line numbers");
1886 }
1887 make_cleanup (free, lnbase);
1888 }
1889
1890 process_dies (dbbase, dbbase + DBLENGTH(pst), pst -> objfile);
1891 do_cleanups (back_to);
1892 return (symtab_list);
1893 }
1894
1895 /*
1896
1897 LOCAL FUNCTION
1898
1899 psymtab_to_symtab_1 -- do grunt work for building a full symtab entry
1900
1901 SYNOPSIS
1902
1903 static void psymtab_to_symtab_1 (struct partial_symtab *pst)
1904
1905 DESCRIPTION
1906
1907 Called once for each partial symbol table entry that needs to be
1908 expanded into a full symbol table entry.
1909
1910 */
1911
1912 static void
1913 DEFUN(psymtab_to_symtab_1,
1914 (pst),
1915 struct partial_symtab *pst)
1916 {
1917 int i;
1918
1919 if (!pst)
1920 {
1921 return;
1922 }
1923 if (pst->readin)
1924 {
1925 fprintf (stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
1926 pst -> filename);
1927 return;
1928 }
1929
1930 /* Read in all partial symtabs on which this one is dependent */
1931 for (i = 0; i < pst -> number_of_dependencies; i++)
1932 if (!pst -> dependencies[i] -> readin)
1933 {
1934 /* Inform about additional files that need to be read in. */
1935 if (info_verbose)
1936 {
1937 fputs_filtered (" ", stdout);
1938 wrap_here ("");
1939 fputs_filtered ("and ", stdout);
1940 wrap_here ("");
1941 printf_filtered ("%s...", pst -> dependencies[i] -> filename);
1942 wrap_here (""); /* Flush output */
1943 fflush (stdout);
1944 }
1945 psymtab_to_symtab_1 (pst -> dependencies[i]);
1946 }
1947
1948 if (DBLENGTH(pst)) /* Otherwise it's a dummy */
1949 {
1950 pst -> symtab = read_ofile_symtab (pst);
1951 if (info_verbose)
1952 {
1953 printf_filtered ("%d DIE's, sorting...", diecount);
1954 fflush (stdout);
1955 }
1956 sort_symtab_syms (pst -> symtab);
1957 }
1958 pst -> readin = 1;
1959 }
1960
1961 /*
1962
1963 LOCAL FUNCTION
1964
1965 dwarf_psymtab_to_symtab -- build a full symtab entry from partial one
1966
1967 SYNOPSIS
1968
1969 static void dwarf_psymtab_to_symtab (struct partial_symtab *pst)
1970
1971 DESCRIPTION
1972
1973 This is the DWARF support entry point for building a full symbol
1974 table entry from a partial symbol table entry. We are passed a
1975 pointer to the partial symbol table entry that needs to be expanded.
1976
1977 */
1978
1979 static void
1980 DEFUN(dwarf_psymtab_to_symtab, (pst), struct partial_symtab *pst)
1981 {
1982
1983 if (!pst)
1984 {
1985 return;
1986 }
1987 if (pst -> readin)
1988 {
1989 fprintf (stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
1990 pst -> filename);
1991 return;
1992 }
1993
1994 if (DBLENGTH(pst) || pst -> number_of_dependencies)
1995 {
1996 /* Print the message now, before starting serious work, to avoid
1997 disconcerting pauses. */
1998 if (info_verbose)
1999 {
2000 printf_filtered ("Reading in symbols for %s...", pst -> filename);
2001 fflush (stdout);
2002 }
2003
2004 psymtab_to_symtab_1 (pst);
2005
2006 #if 0 /* FIXME: Check to see what dbxread is doing here and see if
2007 we need to do an equivalent or is this something peculiar to
2008 stabs/a.out format. */
2009 /* Match with global symbols. This only needs to be done once,
2010 after all of the symtabs and dependencies have been read in. */
2011 scan_file_globals ();
2012 #endif
2013
2014 /* Finish up the debug error message. */
2015 if (info_verbose)
2016 {
2017 printf_filtered ("done.\n");
2018 }
2019 }
2020 }
2021
2022 /*
2023
2024 LOCAL FUNCTION
2025
2026 init_psymbol_list -- initialize storage for partial symbols
2027
2028 SYNOPSIS
2029
2030 static void init_psymbol_list (int total_symbols)
2031
2032 DESCRIPTION
2033
2034 Initializes storage for all of the partial symbols that will be
2035 created by dwarf_build_psymtabs and subsidiaries.
2036 */
2037
2038 static void
2039 DEFUN(init_psymbol_list, (total_symbols), int total_symbols)
2040 {
2041 /* Free any previously allocated psymbol lists. */
2042
2043 if (global_psymbols.list)
2044 {
2045 free (global_psymbols.list);
2046 }
2047 if (static_psymbols.list)
2048 {
2049 free (static_psymbols.list);
2050 }
2051
2052 /* Current best guess is that there are approximately a twentieth
2053 of the total symbols (in a debugging file) are global or static
2054 oriented symbols */
2055
2056 global_psymbols.size = total_symbols / 10;
2057 static_psymbols.size = total_symbols / 10;
2058 global_psymbols.next = global_psymbols.list = (struct partial_symbol *)
2059 xmalloc (global_psymbols.size * sizeof (struct partial_symbol));
2060 static_psymbols.next = static_psymbols.list = (struct partial_symbol *)
2061 xmalloc (static_psymbols.size * sizeof (struct partial_symbol));
2062 }
2063
2064 /*
2065
2066 LOCAL FUNCTION
2067
2068 dwarf_start_psymtab -- allocate and fill a partial symtab entry
2069
2070 DESCRIPTION
2071
2072 Allocate and partially fill a partial symtab. It will be completely
2073 filled at the end of the symbol list.
2074
2075 SYMFILE_NAME is the name of the symbol-file we are reading from, and
2076 ADDR is the address relative to which its symbols are (incremental)
2077 or 0 (normal). FILENAME is the name of the compilation unit that
2078 these symbols were defined in, and they appear starting a address
2079 TEXTLOW. DBROFF is the absolute file offset in SYMFILE_NAME where
2080 the full symbols can be read for compilation unit FILENAME.
2081 GLOBAL_SYMS and STATIC_SYMS are pointers to the current end of the
2082 psymtab vector.
2083
2084 */
2085
2086 static struct partial_symtab *
2087 DEFUN(dwarf_start_psymtab,
2088 (objfile, addr, filename, textlow, texthigh, dbfoff, curoff,
2089 culength, lnfoff, global_syms, static_syms),
2090 struct objfile *objfile AND
2091 CORE_ADDR addr AND
2092 char *filename AND
2093 CORE_ADDR textlow AND
2094 CORE_ADDR texthigh AND
2095 int dbfoff AND
2096 int curoff AND
2097 int culength AND
2098 int lnfoff AND
2099 struct partial_symbol *global_syms AND
2100 struct partial_symbol *static_syms)
2101 {
2102 struct partial_symtab *result;
2103
2104 result = (struct partial_symtab *)
2105 obstack_alloc (psymbol_obstack, sizeof (struct partial_symtab));
2106 (void) memset (result, 0, sizeof (struct partial_symtab));
2107 result -> addr = addr;
2108 result -> objfile = objfile;
2109 result -> filename = create_name (filename, psymbol_obstack);
2110 result -> textlow = textlow;
2111 result -> texthigh = texthigh;
2112 result -> read_symtab_private = (char *) obstack_alloc (psymbol_obstack,
2113 sizeof (struct dwfinfo));
2114 DBFOFF (result) = dbfoff;
2115 DBROFF (result) = curoff;
2116 DBLENGTH (result) = culength;
2117 LNFOFF (result) = lnfoff;
2118 result -> readin = 0;
2119 result -> symtab = NULL;
2120 result -> read_symtab = dwarf_psymtab_to_symtab;
2121 result -> globals_offset = global_syms - global_psymbols.list;
2122 result -> statics_offset = static_syms - static_psymbols.list;
2123
2124 result->n_global_syms = 0;
2125 result->n_static_syms = 0;
2126
2127 return result;
2128 }
2129
2130 /*
2131
2132 LOCAL FUNCTION
2133
2134 add_enum_psymbol -- add enumeration members to partial symbol table
2135
2136 DESCRIPTION
2137
2138 Given pointer to a DIE that is known to be for an enumeration,
2139 extract the symbolic names of the enumeration members and add
2140 partial symbols for them.
2141 */
2142
2143 static void
2144 DEFUN(add_enum_psymbol, (dip), struct dieinfo *dip)
2145 {
2146 char *scan;
2147 char *listend;
2148 long ltemp;
2149 short stemp;
2150
2151 if ((scan = dip -> at_element_list) != NULL)
2152 {
2153 if (dip -> short_element_list)
2154 {
2155 (void) memcpy (&stemp, scan, sizeof (stemp));
2156 listend = scan + stemp + sizeof (stemp);
2157 scan += sizeof (stemp);
2158 }
2159 else
2160 {
2161 (void) memcpy (&ltemp, scan, sizeof (ltemp));
2162 listend = scan + ltemp + sizeof (ltemp);
2163 scan += sizeof (ltemp);
2164 }
2165 while (scan < listend)
2166 {
2167 scan += sizeof (long);
2168 ADD_PSYMBOL_TO_LIST (scan, strlen (scan), VAR_NAMESPACE, LOC_CONST,
2169 static_psymbols, 0);
2170 scan += strlen (scan) + 1;
2171 }
2172 }
2173 }
2174
2175 /*
2176
2177 LOCAL FUNCTION
2178
2179 add_partial_symbol -- add symbol to partial symbol table
2180
2181 DESCRIPTION
2182
2183 Given a DIE, if it is one of the types that we want to
2184 add to a partial symbol table, finish filling in the die info
2185 and then add a partial symbol table entry for it.
2186
2187 */
2188
2189 static void
2190 DEFUN(add_partial_symbol, (dip), struct dieinfo *dip)
2191 {
2192 switch (dip -> dietag)
2193 {
2194 case TAG_global_subroutine:
2195 record_misc_function (dip -> at_name, dip -> at_low_pc, mf_text);
2196 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2197 VAR_NAMESPACE, LOC_BLOCK, global_psymbols,
2198 dip -> at_low_pc);
2199 break;
2200 case TAG_global_variable:
2201 record_misc_function (dip -> at_name, locval (dip -> at_location),
2202 mf_data);
2203 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2204 VAR_NAMESPACE, LOC_STATIC, global_psymbols,
2205 0);
2206 break;
2207 case TAG_subroutine:
2208 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2209 VAR_NAMESPACE, LOC_BLOCK, static_psymbols,
2210 dip -> at_low_pc);
2211 break;
2212 case TAG_local_variable:
2213 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2214 VAR_NAMESPACE, LOC_STATIC, static_psymbols,
2215 0);
2216 break;
2217 case TAG_typedef:
2218 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2219 VAR_NAMESPACE, LOC_TYPEDEF, static_psymbols,
2220 0);
2221 break;
2222 case TAG_structure_type:
2223 case TAG_union_type:
2224 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2225 STRUCT_NAMESPACE, LOC_TYPEDEF, static_psymbols,
2226 0);
2227 break;
2228 case TAG_enumeration_type:
2229 if (dip -> at_name)
2230 {
2231 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2232 STRUCT_NAMESPACE, LOC_TYPEDEF, static_psymbols,
2233 0);
2234 }
2235 add_enum_psymbol (dip);
2236 break;
2237 }
2238 }
2239
2240 /*
2241
2242 LOCAL FUNCTION
2243
2244 scan_partial_symbols -- scan DIE's within a single compilation unit
2245
2246 DESCRIPTION
2247
2248 Process the DIE's within a single compilation unit, looking for
2249 interesting DIE's that contribute to the partial symbol table entry
2250 for this compilation unit. Since we cannot follow any sibling
2251 chains without reading the complete DIE info for every DIE,
2252 it is probably faster to just sequentially check each one to
2253 see if it is one of the types we are interested in, and if so,
2254 then extract all the attributes info and generate a partial
2255 symbol table entry.
2256
2257 NOTES
2258
2259 Don't attempt to add anonymous structures or unions since they have
2260 no name. Anonymous enumerations however are processed, because we
2261 want to extract their member names (the check for a tag name is
2262 done later).
2263
2264 Also, for variables and subroutines, check that this is the place
2265 where the actual definition occurs, rather than just a reference
2266 to an external.
2267 */
2268
2269 static void
2270 DEFUN(scan_partial_symbols, (thisdie, enddie), char *thisdie AND char *enddie)
2271 {
2272 char *nextdie;
2273 struct dieinfo di;
2274
2275 while (thisdie < enddie)
2276 {
2277 basicdieinfo (&di, thisdie);
2278 if (di.dielength < sizeof (long))
2279 {
2280 break;
2281 }
2282 else
2283 {
2284 nextdie = thisdie + di.dielength;
2285 /* To avoid getting complete die information for every die, we
2286 only do it (below) for the cases we are interested in. */
2287 switch (di.dietag)
2288 {
2289 case TAG_global_subroutine:
2290 case TAG_subroutine:
2291 case TAG_global_variable:
2292 case TAG_local_variable:
2293 completedieinfo (&di);
2294 if (di.at_name && (di.has_at_low_pc || di.at_location))
2295 {
2296 add_partial_symbol (&di);
2297 }
2298 break;
2299 case TAG_typedef:
2300 case TAG_structure_type:
2301 case TAG_union_type:
2302 completedieinfo (&di);
2303 if (di.at_name)
2304 {
2305 add_partial_symbol (&di);
2306 }
2307 break;
2308 case TAG_enumeration_type:
2309 completedieinfo (&di);
2310 add_partial_symbol (&di);
2311 break;
2312 }
2313 }
2314 thisdie = nextdie;
2315 }
2316 }
2317
2318 /*
2319
2320 LOCAL FUNCTION
2321
2322 scan_compilation_units -- build a psymtab entry for each compilation
2323
2324 DESCRIPTION
2325
2326 This is the top level dwarf parsing routine for building partial
2327 symbol tables.
2328
2329 It scans from the beginning of the DWARF table looking for the first
2330 TAG_compile_unit DIE, and then follows the sibling chain to locate
2331 each additional TAG_compile_unit DIE.
2332
2333 For each TAG_compile_unit DIE it creates a partial symtab structure,
2334 calls a subordinate routine to collect all the compilation unit's
2335 global DIE's, file scope DIEs, typedef DIEs, etc, and then links the
2336 new partial symtab structure into the partial symbol table. It also
2337 records the appropriate information in the partial symbol table entry
2338 to allow the chunk of DIE's and line number table for this compilation
2339 unit to be located and re-read later, to generate a complete symbol
2340 table entry for the compilation unit.
2341
2342 Thus it effectively partitions up a chunk of DIE's for multiple
2343 compilation units into smaller DIE chunks and line number tables,
2344 and associates them with a partial symbol table entry.
2345
2346 NOTES
2347
2348 If any compilation unit has no line number table associated with
2349 it for some reason (a missing at_stmt_list attribute, rather than
2350 just one with a value of zero, which is valid) then we ensure that
2351 the recorded file offset is zero so that the routine which later
2352 reads line number table fragments knows that there is no fragment
2353 to read.
2354
2355 RETURNS
2356
2357 Returns no value.
2358
2359 */
2360
2361 static void
2362 DEFUN(scan_compilation_units,
2363 (filename, thisdie, enddie, dbfoff, lnoffset, objfile),
2364 char *filename AND
2365 char *thisdie AND
2366 char *enddie AND
2367 unsigned int dbfoff AND
2368 unsigned int lnoffset AND
2369 struct objfile *objfile)
2370 {
2371 char *nextdie;
2372 struct dieinfo di;
2373 struct partial_symtab *pst;
2374 int culength;
2375 int curoff;
2376 int curlnoffset;
2377
2378 while (thisdie < enddie)
2379 {
2380 basicdieinfo (&di, thisdie);
2381 if (di.dielength < sizeof (long))
2382 {
2383 break;
2384 }
2385 else if (di.dietag != TAG_compile_unit)
2386 {
2387 nextdie = thisdie + di.dielength;
2388 }
2389 else
2390 {
2391 completedieinfo (&di);
2392 if (di.at_sibling != 0)
2393 {
2394 nextdie = dbbase + di.at_sibling - dbroff;
2395 }
2396 else
2397 {
2398 nextdie = thisdie + di.dielength;
2399 }
2400 curoff = thisdie - dbbase;
2401 culength = nextdie - thisdie;
2402 curlnoffset = di.has_at_stmt_list ? lnoffset + di.at_stmt_list : 0;
2403 pst = dwarf_start_psymtab (objfile, baseaddr, di.at_name,
2404 di.at_low_pc,
2405 di.at_high_pc,
2406 dbfoff, curoff, culength, curlnoffset,
2407 global_psymbols.next,
2408 static_psymbols.next);
2409 scan_partial_symbols (thisdie + di.dielength, nextdie);
2410 pst -> n_global_syms = global_psymbols.next -
2411 (global_psymbols.list + pst -> globals_offset);
2412 pst -> n_static_syms = static_psymbols.next -
2413 (static_psymbols.list + pst -> statics_offset);
2414 /* Sort the global list; don't sort the static list */
2415 qsort (global_psymbols.list + pst -> globals_offset,
2416 pst -> n_global_syms, sizeof (struct partial_symbol),
2417 compare_psymbols);
2418 /* If there is already a psymtab or symtab for a file of this name,
2419 remove it. (If there is a symtab, more drastic things also
2420 happen.) This happens in VxWorks. */
2421 free_named_symtabs (pst -> filename);
2422 /* Place the partial symtab on the partial symtab list */
2423 pst -> next = partial_symtab_list;
2424 partial_symtab_list = pst;
2425 }
2426 thisdie = nextdie;
2427 }
2428 }
2429
2430 /*
2431
2432 LOCAL FUNCTION
2433
2434 new_symbol -- make a symbol table entry for a new symbol
2435
2436 SYNOPSIS
2437
2438 static struct symbol *new_symbol (struct dieinfo *dip)
2439
2440 DESCRIPTION
2441
2442 Given a pointer to a DWARF information entry, figure out if we need
2443 to make a symbol table entry for it, and if so, create a new entry
2444 and return a pointer to it.
2445 */
2446
2447 static struct symbol *
2448 DEFUN(new_symbol, (dip), struct dieinfo *dip)
2449 {
2450 struct symbol *sym = NULL;
2451
2452 if (dip -> at_name != NULL)
2453 {
2454 sym = (struct symbol *) obstack_alloc (symbol_obstack,
2455 sizeof (struct symbol));
2456 (void) memset (sym, 0, sizeof (struct symbol));
2457 SYMBOL_NAME (sym) = create_name (dip -> at_name, symbol_obstack);
2458 /* default assumptions */
2459 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2460 SYMBOL_CLASS (sym) = LOC_STATIC;
2461 SYMBOL_TYPE (sym) = decode_die_type (dip);
2462 switch (dip -> dietag)
2463 {
2464 case TAG_label:
2465 SYMBOL_VALUE (sym) = dip -> at_low_pc;
2466 SYMBOL_CLASS (sym) = LOC_LABEL;
2467 break;
2468 case TAG_global_subroutine:
2469 case TAG_subroutine:
2470 SYMBOL_VALUE (sym) = dip -> at_low_pc;
2471 SYMBOL_TYPE (sym) = lookup_function_type (SYMBOL_TYPE (sym));
2472 SYMBOL_CLASS (sym) = LOC_BLOCK;
2473 if (dip -> dietag == TAG_global_subroutine)
2474 {
2475 add_symbol_to_list (sym, &global_symbols);
2476 }
2477 else
2478 {
2479 add_symbol_to_list (sym, list_in_scope);
2480 }
2481 break;
2482 case TAG_global_variable:
2483 if (dip -> at_location != NULL)
2484 {
2485 SYMBOL_VALUE (sym) = locval (dip -> at_location);
2486 add_symbol_to_list (sym, &global_symbols);
2487 SYMBOL_CLASS (sym) = LOC_STATIC;
2488 SYMBOL_VALUE (sym) += baseaddr;
2489 }
2490 break;
2491 case TAG_local_variable:
2492 if (dip -> at_location != NULL)
2493 {
2494 SYMBOL_VALUE (sym) = locval (dip -> at_location);
2495 add_symbol_to_list (sym, list_in_scope);
2496 if (isreg)
2497 {
2498 SYMBOL_CLASS (sym) = LOC_REGISTER;
2499 }
2500 else if (offreg)
2501 {
2502 SYMBOL_CLASS (sym) = LOC_LOCAL;
2503 }
2504 else
2505 {
2506 SYMBOL_CLASS (sym) = LOC_STATIC;
2507 SYMBOL_VALUE (sym) += baseaddr;
2508 }
2509 }
2510 break;
2511 case TAG_formal_parameter:
2512 if (dip -> at_location != NULL)
2513 {
2514 SYMBOL_VALUE (sym) = locval (dip -> at_location);
2515 }
2516 add_symbol_to_list (sym, list_in_scope);
2517 if (isreg)
2518 {
2519 SYMBOL_CLASS (sym) = LOC_REGPARM;
2520 }
2521 else
2522 {
2523 SYMBOL_CLASS (sym) = LOC_ARG;
2524 }
2525 break;
2526 case TAG_unspecified_parameters:
2527 /* From varargs functions; gdb doesn't seem to have any interest in
2528 this information, so just ignore it for now. (FIXME?) */
2529 break;
2530 case TAG_structure_type:
2531 case TAG_union_type:
2532 case TAG_enumeration_type:
2533 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
2534 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
2535 add_symbol_to_list (sym, list_in_scope);
2536 break;
2537 case TAG_typedef:
2538 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
2539 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2540 add_symbol_to_list (sym, list_in_scope);
2541 break;
2542 default:
2543 /* Not a tag we recognize. Hopefully we aren't processing trash
2544 data, but since we must specifically ignore things we don't
2545 recognize, there is nothing else we should do at this point. */
2546 break;
2547 }
2548 }
2549 return (sym);
2550 }
2551
2552 /*
2553
2554 LOCAL FUNCTION
2555
2556 decode_mod_fund_type -- decode a modified fundamental type
2557
2558 SYNOPSIS
2559
2560 static struct type *decode_mod_fund_type (char *typedata)
2561
2562 DESCRIPTION
2563
2564 Decode a block of data containing a modified fundamental
2565 type specification. TYPEDATA is a pointer to the block,
2566 which consists of a two byte length, containing the size
2567 of the rest of the block. At the end of the block is a
2568 two byte value that gives the fundamental type. Everything
2569 in between are type modifiers.
2570
2571 We simply compute the number of modifiers and call the general
2572 function decode_modified_type to do the actual work.
2573 */
2574
2575 static struct type *
2576 DEFUN(decode_mod_fund_type, (typedata), char *typedata)
2577 {
2578 struct type *typep = NULL;
2579 unsigned short modcount;
2580 unsigned char *modifiers;
2581
2582 /* Get the total size of the block, exclusive of the size itself */
2583 (void) memcpy (&modcount, typedata, sizeof (short));
2584 /* Deduct the size of the fundamental type bytes at the end of the block. */
2585 modcount -= sizeof (short);
2586 /* Skip over the two size bytes at the beginning of the block. */
2587 modifiers = (unsigned char *) typedata + sizeof (short);
2588 /* Now do the actual decoding */
2589 typep = decode_modified_type (modifiers, modcount, AT_mod_fund_type);
2590 return (typep);
2591 }
2592
2593 /*
2594
2595 LOCAL FUNCTION
2596
2597 decode_mod_u_d_type -- decode a modified user defined type
2598
2599 SYNOPSIS
2600
2601 static struct type *decode_mod_u_d_type (char *typedata)
2602
2603 DESCRIPTION
2604
2605 Decode a block of data containing a modified user defined
2606 type specification. TYPEDATA is a pointer to the block,
2607 which consists of a two byte length, containing the size
2608 of the rest of the block. At the end of the block is a
2609 four byte value that gives a reference to a user defined type.
2610 Everything in between are type modifiers.
2611
2612 We simply compute the number of modifiers and call the general
2613 function decode_modified_type to do the actual work.
2614 */
2615
2616 static struct type *
2617 DEFUN(decode_mod_u_d_type, (typedata), char *typedata)
2618 {
2619 struct type *typep = NULL;
2620 unsigned short modcount;
2621 unsigned char *modifiers;
2622
2623 /* Get the total size of the block, exclusive of the size itself */
2624 (void) memcpy (&modcount, typedata, sizeof (short));
2625 /* Deduct the size of the reference type bytes at the end of the block. */
2626 modcount -= sizeof (long);
2627 /* Skip over the two size bytes at the beginning of the block. */
2628 modifiers = (unsigned char *) typedata + sizeof (short);
2629 /* Now do the actual decoding */
2630 typep = decode_modified_type (modifiers, modcount, AT_mod_u_d_type);
2631 return (typep);
2632 }
2633
2634 /*
2635
2636 LOCAL FUNCTION
2637
2638 decode_modified_type -- decode modified user or fundamental type
2639
2640 SYNOPSIS
2641
2642 static struct type *decode_modified_type (unsigned char *modifiers,
2643 unsigned short modcount, int mtype)
2644
2645 DESCRIPTION
2646
2647 Decode a modified type, either a modified fundamental type or
2648 a modified user defined type. MODIFIERS is a pointer to the
2649 block of bytes that define MODCOUNT modifiers. Immediately
2650 following the last modifier is a short containing the fundamental
2651 type or a long containing the reference to the user defined
2652 type. Which one is determined by MTYPE, which is either
2653 AT_mod_fund_type or AT_mod_u_d_type to indicate what modified
2654 type we are generating.
2655
2656 We call ourself recursively to generate each modified type,`
2657 until MODCOUNT reaches zero, at which point we have consumed
2658 all the modifiers and generate either the fundamental type or
2659 user defined type. When the recursion unwinds, each modifier
2660 is applied in turn to generate the full modified type.
2661
2662 NOTES
2663
2664 If we find a modifier that we don't recognize, and it is not one
2665 of those reserved for application specific use, then we issue a
2666 warning and simply ignore the modifier.
2667
2668 BUGS
2669
2670 We currently ignore MOD_const and MOD_volatile. (FIXME)
2671
2672 */
2673
2674 static struct type *
2675 DEFUN(decode_modified_type,
2676 (modifiers, modcount, mtype),
2677 unsigned char *modifiers AND unsigned short modcount AND int mtype)
2678 {
2679 struct type *typep = NULL;
2680 unsigned short fundtype;
2681 DIEREF dieref;
2682 unsigned char modifier;
2683
2684 if (modcount == 0)
2685 {
2686 switch (mtype)
2687 {
2688 case AT_mod_fund_type:
2689 (void) memcpy (&fundtype, modifiers, sizeof (short));
2690 typep = decode_fund_type (fundtype);
2691 break;
2692 case AT_mod_u_d_type:
2693 (void) memcpy (&dieref, modifiers, sizeof (DIEREF));
2694 if ((typep = lookup_utype (dieref)) == NULL)
2695 {
2696 typep = alloc_utype (dieref, NULL);
2697 }
2698 break;
2699 default:
2700 SQUAWK (("botched modified type decoding (mtype 0x%x)", mtype));
2701 typep = builtin_type_int;
2702 break;
2703 }
2704 }
2705 else
2706 {
2707 modifier = *modifiers++;
2708 typep = decode_modified_type (modifiers, --modcount, mtype);
2709 switch (modifier)
2710 {
2711 case MOD_pointer_to:
2712 typep = lookup_pointer_type (typep);
2713 break;
2714 case MOD_reference_to:
2715 typep = lookup_reference_type (typep);
2716 break;
2717 case MOD_const:
2718 SQUAWK (("type modifier 'const' ignored")); /* FIXME */
2719 break;
2720 case MOD_volatile:
2721 SQUAWK (("type modifier 'volatile' ignored")); /* FIXME */
2722 break;
2723 default:
2724 if (!(MOD_lo_user <= modifier && modifier <= MOD_hi_user))
2725 {
2726 SQUAWK (("unknown type modifier %u", modifier));
2727 }
2728 break;
2729 }
2730 }
2731 return (typep);
2732 }
2733
2734 /*
2735
2736 LOCAL FUNCTION
2737
2738 decode_fund_type -- translate basic DWARF type to gdb base type
2739
2740 DESCRIPTION
2741
2742 Given an integer that is one of the fundamental DWARF types,
2743 translate it to one of the basic internal gdb types and return
2744 a pointer to the appropriate gdb type (a "struct type *").
2745
2746 NOTES
2747
2748 If we encounter a fundamental type that we are unprepared to
2749 deal with, and it is not in the range of those types defined
2750 as application specific types, then we issue a warning and
2751 treat the type as builtin_type_int.
2752 */
2753
2754 static struct type *
2755 DEFUN(decode_fund_type, (fundtype), unsigned short fundtype)
2756 {
2757 struct type *typep = NULL;
2758
2759 switch (fundtype)
2760 {
2761
2762 case FT_void:
2763 typep = builtin_type_void;
2764 break;
2765
2766 case FT_pointer: /* (void *) */
2767 typep = lookup_pointer_type (builtin_type_void);
2768 break;
2769
2770 case FT_char:
2771 case FT_signed_char:
2772 typep = builtin_type_char;
2773 break;
2774
2775 case FT_short:
2776 case FT_signed_short:
2777 typep = builtin_type_short;
2778 break;
2779
2780 case FT_integer:
2781 case FT_signed_integer:
2782 case FT_boolean: /* Was FT_set in AT&T version */
2783 typep = builtin_type_int;
2784 break;
2785
2786 case FT_long:
2787 case FT_signed_long:
2788 typep = builtin_type_long;
2789 break;
2790
2791 case FT_float:
2792 typep = builtin_type_float;
2793 break;
2794
2795 case FT_dbl_prec_float:
2796 typep = builtin_type_double;
2797 break;
2798
2799 case FT_unsigned_char:
2800 typep = builtin_type_unsigned_char;
2801 break;
2802
2803 case FT_unsigned_short:
2804 typep = builtin_type_unsigned_short;
2805 break;
2806
2807 case FT_unsigned_integer:
2808 typep = builtin_type_unsigned_int;
2809 break;
2810
2811 case FT_unsigned_long:
2812 typep = builtin_type_unsigned_long;
2813 break;
2814
2815 case FT_ext_prec_float:
2816 typep = builtin_type_long_double;
2817 break;
2818
2819 case FT_complex:
2820 typep = builtin_type_complex;
2821 break;
2822
2823 case FT_dbl_prec_complex:
2824 typep = builtin_type_double_complex;
2825 break;
2826
2827 case FT_long_long:
2828 case FT_signed_long_long:
2829 typep = builtin_type_long_long;
2830 break;
2831
2832 case FT_unsigned_long_long:
2833 typep = builtin_type_unsigned_long_long;
2834 break;
2835
2836 }
2837
2838 if ((typep == NULL) && !(FT_lo_user <= fundtype && fundtype <= FT_hi_user))
2839 {
2840 SQUAWK (("unexpected fundamental type 0x%x", fundtype));
2841 typep = builtin_type_void;
2842 }
2843
2844 return (typep);
2845 }
2846
2847 /*
2848
2849 LOCAL FUNCTION
2850
2851 create_name -- allocate a fresh copy of a string on an obstack
2852
2853 DESCRIPTION
2854
2855 Given a pointer to a string and a pointer to an obstack, allocates
2856 a fresh copy of the string on the specified obstack.
2857
2858 */
2859
2860 static char *
2861 DEFUN(create_name, (name, obstackp), char *name AND struct obstack *obstackp)
2862 {
2863 int length;
2864 char *newname;
2865
2866 length = strlen (name) + 1;
2867 newname = (char *) obstack_alloc (obstackp, length);
2868 (void) strcpy (newname, name);
2869 return (newname);
2870 }
2871
2872 /*
2873
2874 LOCAL FUNCTION
2875
2876 basicdieinfo -- extract the minimal die info from raw die data
2877
2878 SYNOPSIS
2879
2880 void basicdieinfo (char *diep, struct dieinfo *dip)
2881
2882 DESCRIPTION
2883
2884 Given a pointer to raw DIE data, and a pointer to an instance of a
2885 die info structure, this function extracts the basic information
2886 from the DIE data required to continue processing this DIE, along
2887 with some bookkeeping information about the DIE.
2888
2889 The information we absolutely must have includes the DIE tag,
2890 and the DIE length. If we need the sibling reference, then we
2891 will have to call completedieinfo() to process all the remaining
2892 DIE information.
2893
2894 Note that since there is no guarantee that the data is properly
2895 aligned in memory for the type of access required (indirection
2896 through anything other than a char pointer), we use memcpy to
2897 shuffle data items larger than a char. Possibly inefficient, but
2898 quite portable.
2899
2900 We also take care of some other basic things at this point, such
2901 as ensuring that the instance of the die info structure starts
2902 out completely zero'd and that curdie is initialized for use
2903 in error reporting if we have a problem with the current die.
2904
2905 NOTES
2906
2907 All DIE's must have at least a valid length, thus the minimum
2908 DIE size is sizeof (long). In order to have a valid tag, the
2909 DIE size must be at least sizeof (short) larger, otherwise they
2910 are forced to be TAG_padding DIES.
2911
2912 Padding DIES must be at least sizeof(long) in length, implying that
2913 if a padding DIE is used for alignment and the amount needed is less
2914 than sizeof(long) then the padding DIE has to be big enough to align
2915 to the next alignment boundry.
2916 */
2917
2918 static void
2919 DEFUN(basicdieinfo, (dip, diep), struct dieinfo *dip AND char *diep)
2920 {
2921 curdie = dip;
2922 (void) memset (dip, 0, sizeof (struct dieinfo));
2923 dip -> die = diep;
2924 dip -> dieref = dbroff + (diep - dbbase);
2925 (void) memcpy (&dip -> dielength, diep, sizeof (long));
2926 if (dip -> dielength < sizeof (long))
2927 {
2928 dwarfwarn ("malformed DIE, bad length (%d bytes)", dip -> dielength);
2929 }
2930 else if (dip -> dielength < (sizeof (long) + sizeof (short)))
2931 {
2932 dip -> dietag = TAG_padding;
2933 }
2934 else
2935 {
2936 (void) memcpy (&dip -> dietag, diep + sizeof (long), sizeof (short));
2937 }
2938 }
2939
2940 /*
2941
2942 LOCAL FUNCTION
2943
2944 completedieinfo -- finish reading the information for a given DIE
2945
2946 SYNOPSIS
2947
2948 void completedieinfo (struct dieinfo *dip)
2949
2950 DESCRIPTION
2951
2952 Given a pointer to an already partially initialized die info structure,
2953 scan the raw DIE data and finish filling in the die info structure
2954 from the various attributes found.
2955
2956 Note that since there is no guarantee that the data is properly
2957 aligned in memory for the type of access required (indirection
2958 through anything other than a char pointer), we use memcpy to
2959 shuffle data items larger than a char. Possibly inefficient, but
2960 quite portable.
2961
2962 NOTES
2963
2964 Each time we are called, we increment the diecount variable, which
2965 keeps an approximate count of the number of dies processed for
2966 each compilation unit. This information is presented to the user
2967 if the info_verbose flag is set.
2968
2969 */
2970
2971 static void
2972 DEFUN(completedieinfo, (dip), struct dieinfo *dip)
2973 {
2974 char *diep; /* Current pointer into raw DIE data */
2975 char *end; /* Terminate DIE scan here */
2976 unsigned short attr; /* Current attribute being scanned */
2977 unsigned short form; /* Form of the attribute */
2978 short block2sz; /* Size of a block2 attribute field */
2979 long block4sz; /* Size of a block4 attribute field */
2980
2981 diecount++;
2982 diep = dip -> die;
2983 end = diep + dip -> dielength;
2984 diep += sizeof (long) + sizeof (short);
2985 while (diep < end)
2986 {
2987 (void) memcpy (&attr, diep, sizeof (short));
2988 diep += sizeof (short);
2989 switch (attr)
2990 {
2991 case AT_fund_type:
2992 (void) memcpy (&dip -> at_fund_type, diep, sizeof (short));
2993 break;
2994 case AT_ordering:
2995 (void) memcpy (&dip -> at_ordering, diep, sizeof (short));
2996 break;
2997 case AT_bit_offset:
2998 (void) memcpy (&dip -> at_bit_offset, diep, sizeof (short));
2999 break;
3000 case AT_visibility:
3001 (void) memcpy (&dip -> at_visibility, diep, sizeof (short));
3002 break;
3003 case AT_sibling:
3004 (void) memcpy (&dip -> at_sibling, diep, sizeof (long));
3005 break;
3006 case AT_stmt_list:
3007 (void) memcpy (&dip -> at_stmt_list, diep, sizeof (long));
3008 dip -> has_at_stmt_list = 1;
3009 break;
3010 case AT_low_pc:
3011 (void) memcpy (&dip -> at_low_pc, diep, sizeof (long));
3012 dip -> at_low_pc += baseaddr;
3013 dip -> has_at_low_pc = 1;
3014 break;
3015 case AT_high_pc:
3016 (void) memcpy (&dip -> at_high_pc, diep, sizeof (long));
3017 dip -> at_high_pc += baseaddr;
3018 break;
3019 case AT_language:
3020 (void) memcpy (&dip -> at_language, diep, sizeof (long));
3021 break;
3022 case AT_user_def_type:
3023 (void) memcpy (&dip -> at_user_def_type, diep, sizeof (long));
3024 break;
3025 case AT_byte_size:
3026 (void) memcpy (&dip -> at_byte_size, diep, sizeof (long));
3027 break;
3028 case AT_bit_size:
3029 (void) memcpy (&dip -> at_bit_size, diep, sizeof (long));
3030 break;
3031 case AT_member:
3032 (void) memcpy (&dip -> at_member, diep, sizeof (long));
3033 break;
3034 case AT_discr:
3035 (void) memcpy (&dip -> at_discr, diep, sizeof (long));
3036 break;
3037 case AT_import:
3038 (void) memcpy (&dip -> at_import, diep, sizeof (long));
3039 break;
3040 case AT_location:
3041 dip -> at_location = diep;
3042 break;
3043 case AT_mod_fund_type:
3044 dip -> at_mod_fund_type = diep;
3045 break;
3046 case AT_subscr_data:
3047 dip -> at_subscr_data = diep;
3048 break;
3049 case AT_mod_u_d_type:
3050 dip -> at_mod_u_d_type = diep;
3051 break;
3052 case AT_element_list:
3053 dip -> at_element_list = diep;
3054 dip -> short_element_list = 0;
3055 break;
3056 case AT_short_element_list:
3057 dip -> at_element_list = diep;
3058 dip -> short_element_list = 1;
3059 break;
3060 case AT_discr_value:
3061 dip -> at_discr_value = diep;
3062 break;
3063 case AT_string_length:
3064 dip -> at_string_length = diep;
3065 break;
3066 case AT_name:
3067 dip -> at_name = diep;
3068 break;
3069 case AT_comp_dir:
3070 dip -> at_comp_dir = diep;
3071 break;
3072 case AT_producer:
3073 dip -> at_producer = diep;
3074 break;
3075 case AT_frame_base:
3076 (void) memcpy (&dip -> at_frame_base, diep, sizeof (long));
3077 break;
3078 case AT_start_scope:
3079 (void) memcpy (&dip -> at_start_scope, diep, sizeof (long));
3080 break;
3081 case AT_stride_size:
3082 (void) memcpy (&dip -> at_stride_size, diep, sizeof (long));
3083 break;
3084 case AT_src_info:
3085 (void) memcpy (&dip -> at_src_info, diep, sizeof (long));
3086 break;
3087 case AT_prototyped:
3088 (void) memcpy (&dip -> at_prototyped, diep, sizeof (short));
3089 break;
3090 default:
3091 /* Found an attribute that we are unprepared to handle. However
3092 it is specifically one of the design goals of DWARF that
3093 consumers should ignore unknown attributes. As long as the
3094 form is one that we recognize (so we know how to skip it),
3095 we can just ignore the unknown attribute. */
3096 break;
3097 }
3098 form = attr & 0xF;
3099 switch (form)
3100 {
3101 case FORM_DATA2:
3102 diep += sizeof (short);
3103 break;
3104 case FORM_DATA4:
3105 diep += sizeof (long);
3106 break;
3107 case FORM_DATA8:
3108 diep += 8 * sizeof (char); /* sizeof (long long) ? */
3109 break;
3110 case FORM_ADDR:
3111 case FORM_REF:
3112 diep += sizeof (long);
3113 break;
3114 case FORM_BLOCK2:
3115 (void) memcpy (&block2sz, diep, sizeof (short));
3116 block2sz += sizeof (short);
3117 diep += block2sz;
3118 break;
3119 case FORM_BLOCK4:
3120 (void) memcpy (&block4sz, diep, sizeof (long));
3121 block4sz += sizeof (long);
3122 diep += block4sz;
3123 break;
3124 case FORM_STRING:
3125 diep += strlen (diep) + 1;
3126 break;
3127 default:
3128 SQUAWK (("unknown attribute form (0x%x), skipped rest", form));
3129 diep = end;
3130 break;
3131 }
3132 }
3133 }